feat: standardise sizes of ./site/static/icon/*.svg (#21347)

Related to #21320

This pull-request ensures that all the icons are now `256px * 256px` so
that they're standardised across all rendering situations.

| Previous | Now |
| --- | --- |
| <img width="886" height="1652" alt="CleanShot 2025-12-21 at 12 25
03@2x"
src="https://github.com/user-attachments/assets/c298325c-4419-485b-97e2-bb54e6ccc8c0"
/> | <img width="962" height="980" alt="CleanShot 2025-12-21 at 12 26
35@2x"
src="https://github.com/user-attachments/assets/c9cef5ee-115d-4318-8e12-188ea79cc88b"
/> |

* All `*.svg` files are now `256px * 256px` and..
  * Added a `do.svg` file.
  * Added a `ruby.svg` file.
  * Added a `gcp.svg` file.
* All `*.png` files are now `256px * 256px` and..
  * Updated the `aws.png` file to match `aws.svg` (deprecated).
  * Updated the `azure.png` file to match `azure.svg` (deprecated).
  * Updated the `docker.png` file to match `docker.svg` (deprecated).
  * Updated the `do.png` file to fill the full `256px` width.
  * Deprecated the `do.png`.
  * Deprecated the `ruby.png`.
  * Deprecated the `gcp.png`.
This commit is contained in:
Jake Howell
2026-01-08 13:39:31 +11:00
committed by GitHub
parent 1a9a1106ca
commit d1b0722034
142 changed files with 2203 additions and 2252 deletions
@@ -0,0 +1,97 @@
package main
import (
"os"
"path/filepath"
"regexp"
"runtime"
"strings"
"testing"
"github.com/stretchr/testify/require"
"golang.org/x/xerrors"
)
// TestSVGIconAttributes validates that all SVG icons have the required
// attributes: width="256", height="256", and viewBox="0 0 256 256".
func TestSVGIconAttributes(t *testing.T) {
t.Parallel()
_, testFile, _, ok := runtime.Caller(0)
require.True(t, ok, "failed to get test file location")
testDir := filepath.Dir(testFile)
repoRoot := filepath.Join(testDir, "..", "..")
iconDir := filepath.Join(repoRoot, "site", "static", "icon")
files, err := os.ReadDir(iconDir)
require.NoError(t, err, "failed to read icon directory")
for _, file := range files {
if !file.Type().IsRegular() {
continue
}
fileName := file.Name()
if !strings.HasSuffix(fileName, ".svg") {
continue
}
t.Run(fileName, func(t *testing.T) {
t.Parallel()
filePath := filepath.Join(iconDir, fileName)
content, err := os.ReadFile(filePath)
require.NoError(t, err, "failed to read SVG file")
attrs, err := parseSVGAttributes(string(content))
require.NoError(t, err, "failed to parse SVG")
require.Equal(t, "256", attrs["width"],
"SVG must have width=\"256\"")
require.Equal(t, "256", attrs["height"],
"SVG must have height=\"256\"")
require.Equal(t, "0 0 256 256", attrs["viewBox"],
"SVG must have viewBox=\"0 0 256 256\"")
})
}
}
// parseSVGAttributes parses the root SVG element and returns its attributes.
func parseSVGAttributes(content string) (map[string]string, error) {
// Match the opening <svg> tag with optional attributes
svgTagRegex := regexp.MustCompile(`<svg(\s+[^>]*)?>`)
matches := svgTagRegex.FindStringSubmatch(content)
if len(matches) == 0 {
return nil, xerrors.New("no <svg> tag found")
}
var attrsStr string
if len(matches) >= 2 && matches[1] != "" {
attrsStr = strings.TrimSpace(matches[1])
}
attrs := parseAttributes(attrsStr)
return attrs, nil
}
// parseAttributes parses a string of XML attributes into a map.
func parseAttributes(attrsStr string) map[string]string {
attrs := make(map[string]string)
if attrsStr == "" {
return attrs
}
// Match attribute="value" or attribute='value' patterns
attrRegex := regexp.MustCompile(`(\S+)=["']([^"']*)["']`)
matches := attrRegex.FindAllStringSubmatch(attrsStr, -1)
for _, match := range matches {
if len(match) >= 3 {
key := strings.TrimSpace(match[1])
value := match[2]
attrs[key] = value
}
}
return attrs
}
+6
View File
@@ -14,10 +14,16 @@ export const DEPRECATED_ICONS = [
"aws.png",
// we already serve this in `azure.svg`.
"azure.png",
// we already serve this in `do.svg`.
"do.png",
// we already serve this in `docker.svg`.
"docker.png",
// we have alternatives in `docker.svg`.
"docker-white.svg",
// we already serve this in `gcp.svg`.
"gcp.png",
// we already serve this in `k8s.svg`.
"k8s.png",
// we already serve this in `ruby.svg`.
"ruby.png",
] satisfies string[];
+1 -1
View File
@@ -145,7 +145,7 @@ export const defaultParametersForBuiltinIcons = new Map<string, string>([
["/icon/auggie.svg", "monochrome"],
["/icon/auto-dev-server.svg", "monochrome"],
["/icon/aws.png", "whiteWithColor&brightness=1.5"],
["/icon/aws.svg", "blackWithColor&brightness=1.5"],
["/icon/aws.svg", "whiteWithColor&brightness=1.5"],
["/icon/aws-monochrome.svg", "monochrome"],
["/icon/coder.svg", "monochrome"],
["/icon/container.svg", "monochrome"],
+3
View File
@@ -41,6 +41,7 @@
"desktop.svg",
"discord.svg",
"do.png",
"do.svg",
"docker-white.svg",
"docker.png",
"docker.svg",
@@ -54,6 +55,7 @@
"folder.svg",
"gateway.svg",
"gcp.png",
"gcp.svg",
"gemini.svg",
"git.svg",
"gitea.svg",
@@ -112,6 +114,7 @@
"rockylinux.svg",
"rstudio.svg",
"ruby.png",
"ruby.svg",
"rubymine.svg",
"rust.svg",
"rustdesk.svg",
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 15 KiB

+18 -13
View File
@@ -1,18 +1,23 @@
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_291_81)">
<path d="M2.3851 119.063L59.3935 60.6262C59.5695 60.4524 59.6787 60.2222 59.702 59.9759C59.7253 59.7296 59.6612 59.483 59.5209 59.2793C56.0543 54.4394 49.6575 53.6001 47.2866 50.3479C40.2644 40.7151 38.4826 35.2616 35.4647 35.6001C35.2541 35.6304 35.0605 35.7325 34.9166 35.8893L14.3235 56.9999C2.47534 69.1349 0.772844 95.8827 0.465344 118.281C0.464324 118.504 0.530042 118.722 0.654038 118.908C0.778034 119.093 0.95463 119.237 1.16109 119.321C1.36755 119.405 1.59442 119.425 1.81249 119.379C2.03056 119.333 2.23026 119.223 2.3851 119.063Z" fill="#017CEE"/>
<path d="M119.053 117.619L60.6169 60.6066C60.4429 60.4301 60.2123 60.3206 59.9656 60.2973C59.7189 60.274 59.4719 60.3384 59.2679 60.4792C54.4281 63.9477 53.5887 70.3426 50.3365 72.7135C40.7037 79.7357 35.2503 81.5175 35.5887 84.5354C35.6195 84.7453 35.7216 84.9381 35.8779 85.0815L56.9886 105.675C69.1236 117.523 95.8714 119.225 118.27 119.533C118.492 119.533 118.709 119.467 118.893 119.343C119.077 119.22 119.22 119.044 119.304 118.839C119.388 118.634 119.409 118.408 119.364 118.191C119.32 117.974 119.211 117.774 119.053 117.619Z" fill="#00AD46"/>
<path d="M56.9925 105.675C50.3587 99.203 47.2847 86.4009 59.9979 60.0009C39.3298 69.2377 32.0876 81.3788 35.6492 84.855L56.9925 105.675Z" fill="#04D659"/>
<path d="M117.609 0.948092L60.6028 59.3843C60.4265 59.558 60.317 59.7883 60.2937 60.0346C60.2704 60.281 60.3348 60.5277 60.4754 60.7313C63.944 65.5712 70.337 66.4105 72.7098 69.6627C79.7319 79.2955 81.5157 84.749 84.5317 84.4105C84.7423 84.3806 84.9361 84.2783 85.0798 84.1213L105.673 63.0107C117.521 50.8757 119.224 24.1279 119.531 1.72912C119.531 1.50626 119.465 1.28836 119.341 1.10336C119.217 0.918362 119.04 0.774705 118.834 0.690815C118.627 0.606926 118.4 0.58663 118.182 0.632532C117.964 0.678434 117.765 0.788093 117.609 0.948092Z" fill="#00C7D4"/>
<path d="M105.684 63.0103C99.2123 69.6441 86.4103 72.7181 60.0084 60.0049C69.2451 80.673 81.3862 87.9152 84.8625 84.3536L105.684 63.0103Z" fill="#11E1EE"/>
<path d="M0.939104 2.39015L59.3753 59.3967C59.5492 59.5727 59.7794 59.6819 60.0257 59.7052C60.272 59.7285 60.5186 59.6644 60.7223 59.5241C65.5622 56.0556 66.4015 49.6607 69.6537 47.2897C79.2865 40.2676 84.74 38.4858 84.4015 35.4679C84.3708 35.2574 84.2687 35.064 84.1123 34.9198L63.0017 14.3267C50.8667 2.47853 24.1189 0.77603 1.72014 0.468529C1.49682 0.467076 1.2782 0.532634 1.09253 0.656729C0.906857 0.780825 0.762673 0.957754 0.678609 1.16465C0.594545 1.37155 0.574465 1.5989 0.620965 1.81733C0.667465 2.03576 0.778059 2.23543 0.939104 2.39015Z" fill="#E43921"/>
<path d="M63.0112 14.3288C69.645 20.8008 72.719 33.6028 60.0058 60.0047C80.6739 50.768 87.9161 38.625 84.3545 35.1506L63.0112 14.3288Z" fill="#FF7557"/>
<path d="M14.3241 57C20.7961 50.3662 33.5981 47.2922 60 60.0054C50.7633 39.3373 38.6222 32.0951 35.1459 35.6567L14.3241 57Z" fill="#0CB6FF"/>
<path d="M60.0084 62.5436C61.4158 62.5436 62.5567 61.4027 62.5567 59.9953C62.5567 58.5879 61.4158 57.447 60.0084 57.447C58.601 57.447 57.4601 58.5879 57.4601 59.9953C57.4601 61.4027 58.601 62.5436 60.0084 62.5436Z" fill="#4A4848"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2201_2)">
<mask id="mask0_2201_2" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="256" height="256">
<path d="M256 0H0V256H256V0Z" fill="white"/>
</mask>
<g mask="url(#mask0_2201_2)">
<path d="M5.08818 254.001L126.706 129.336C127.082 128.965 127.315 128.474 127.364 127.949C127.414 127.423 127.277 126.897 126.978 126.462C119.582 116.137 105.936 114.347 100.878 107.409C85.8974 86.8588 82.0962 75.2247 75.658 75.9468C75.2087 76.0115 74.7957 76.2293 74.4887 76.5638L30.5568 121.6C5.28069 147.488 1.6487 204.55 0.992701 252.333C0.990525 252.809 1.13072 253.274 1.39525 253.67C1.65977 254.065 2.03651 254.372 2.47696 254.551C2.91741 254.731 3.4014 254.773 3.86661 254.675C4.33183 254.577 4.75785 254.342 5.08818 254.001Z" fill="#017CEE"/>
<path d="M253.98 250.921L129.316 129.294C128.945 128.918 128.453 128.684 127.927 128.634C127.4 128.585 126.873 128.722 126.438 129.022C116.113 136.422 114.322 150.064 107.384 155.122C86.8345 170.103 75.2005 173.904 75.9225 180.342C75.9882 180.79 76.206 181.201 76.5394 181.507L121.576 225.44C147.464 250.716 204.526 254.347 252.309 255.004C252.783 255.004 253.246 254.863 253.638 254.598C254.031 254.336 254.336 253.961 254.515 253.523C254.694 253.086 254.739 252.604 254.643 252.141C254.549 251.678 254.317 251.251 253.98 250.921Z" fill="#00AD46"/>
<path d="M121.584 225.44C107.432 211.633 100.874 184.322 127.995 128.002C83.9035 147.707 68.4535 173.608 76.0515 181.024L121.584 225.44Z" fill="#04D659"/>
<path d="M250.899 2.02257L129.286 126.686C128.91 127.057 128.676 127.548 128.627 128.074C128.577 128.599 128.714 129.126 129.014 129.56C136.414 139.885 150.052 141.676 155.114 148.614C170.095 169.164 173.9 180.798 180.334 180.076C180.784 180.012 181.197 179.794 181.504 179.459L225.436 134.423C250.711 108.535 254.344 51.4728 254.999 3.68877C254.999 3.21333 254.859 2.74848 254.594 2.35381C254.33 1.95915 253.952 1.65268 253.513 1.47371C253.071 1.29475 252.587 1.25145 252.122 1.34938C251.656 1.4473 251.232 1.68124 250.899 2.02257Z" fill="#00C7D4"/>
<path d="M225.459 134.422C211.653 148.574 184.342 155.132 128.018 128.01C147.723 172.102 173.624 187.552 181.04 179.954L225.459 134.422Z" fill="#11E1EE"/>
<path d="M2.00336 5.09896L126.667 126.713C127.038 127.088 127.529 127.321 128.055 127.371C128.58 127.421 129.106 127.284 129.541 126.985C139.866 119.585 141.656 105.943 148.594 100.885C169.144 85.9042 180.779 82.103 180.056 75.6648C179.991 75.2158 179.773 74.8032 179.439 74.4955L134.404 30.5636C108.516 5.2875 51.4536 1.6555 3.66957 0.999501C3.19315 0.996401 2.72676 1.13626 2.33067 1.40099C1.93456 1.66573 1.62697 2.04318 1.44763 2.48456C1.2683 2.92595 1.22546 3.41096 1.32466 3.87694C1.42386 4.34293 1.65979 4.76889 2.00336 5.09896Z" fill="#E43921"/>
<path d="M134.424 30.5681C148.576 44.375 155.134 71.6859 128.012 128.01C172.104 108.305 187.554 82.3999 179.956 74.9879L134.424 30.5681Z" fill="#FF7557"/>
<path d="M30.5581 121.6C44.365 107.448 71.676 100.89 128 128.011C108.295 83.9195 82.394 68.4695 74.9779 76.0676L30.5581 121.6Z" fill="#0CB6FF"/>
<path d="M128.018 133.426C131.02 133.426 133.454 130.992 133.454 127.99C133.454 124.988 131.02 122.554 128.018 122.554C125.015 122.554 122.582 124.988 122.582 127.99C122.582 130.992 125.015 133.426 128.018 133.426Z" fill="#4A4848"/>
</g>
</g>
<defs>
<clipPath id="clip0_291_81">
<rect width="120" height="120" fill="white"/>
<clipPath id="clip0_2201_2">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

+16 -15
View File
@@ -1,16 +1,17 @@
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" xml:space="preserve" viewBox="0 0 61.028259 59.731277">
<defs/>
<style id="style2" type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
<path id="path22" d="M56.11382 33.731278c2.6-.2 4.7 1.5 4.9 4.1.2 2.7-1.7 4.9-4.3 5.1-2.5.2-4.7-1.7-4.9-4.2-.2-2.7 1.6-4.7 4.3-5z" class="st1"/>
<path id="path24" d="M24.51382 55.031278c0-2.6 2-4.6 4.4-4.6 2.4 0 4.7 2.2 4.7 4.7 0 2.4-2 4.5-4.3 4.6-2.9 0-4.8-1.8-4.8-4.7z" class="st2"/>
<path id="path26" d="M31.61382 25.831278c-.4.2-.6-.1-.7-.4-3.7-6.9-2.6-15.6000004 3.9-20.8000004 1.7-1.4 4.9-1.7 6.3-.3.6.5.7 1.1.8 1.8.2 1.5.5 3 1.5 4.2000004 1.1 1.3 2.5 1.8 4.1 1.7 1.4 0 2.8-.2 3.7 1.4.5.9.3 4.4-.5 5.1-.4.3-.7.1-1 0-2.3-.9-4.7-.9-7.1-.5-.8.1-1.2-.1-1.2-1-.1-1.5-.4-2.9-1.2-4.2-1.5-2.7-4.3-2.8-6.1-.3-1.5 2-1.9 4.4-2.3 6.8-.4 2.1-.3 4.3-.2 6.5 0 0-.1 0 0 0z" class="st3"/>
<path id="path28" d="M34.11382 27.331278c-.2-.3-.1-.6.2-.8 5.7-5.2 14.2-6.2 20.8-1.1 1.7 1.4 2.8 4.3 1.9 6-.4.7-.9 1-1.5 1.2-1.4.6-2.7 1.2-3.6 2.5-.9 1.3-1.1 2.8-.7 4.4.3 1.3.8 2.7-.5 3.9-.7.7-4.1 1.3-5 .7-.4-.3-.3-.6-.2-1 .3-2.5-.3-4.8-1.2-7-.3-.8-.2-1.2.6-1.4 1.4-.4 2.7-1.1 3.7-2.1 2.2-2.1 1.7-4.8-1.2-6-2.3-1-4.7-.8-7-.6-2.2.1-4.3.7-6.3 1.3z" class="st1"/>
<path id="path30" d="M32.81382 29.931278c.3-.3.5-.2.8 0 6.6 4 10 11.9 7 19.6-.8 2-3.4 4-5.3 3.5-.8-.2-1.2-.6-1.6-1.1-.9-1.2-1.9-2.3-3.4-2.8-1.6-.5-3-.2-4.4.6-1.2.7-2.4 1.6-3.9.7-.9-.5-2.4-3.6-2.1-4.6.2-.4.6-.4 1-.4 2.5-.4 4.5-1.6 6.4-3.2.6-.5 1.1-.5 1.6.2.8 1.2 1.8 2.2 3.1 2.9 2.6 1.5 5.1.2 5.4-2.8.3-2.5-.6-4.7-1.4-6.9-.9-2-2-3.9-3.2-5.7z" class="st2"/>
<path id="path32" d="M29.61382 30.531278c-.4 2-1.3 3.9-2.5 5.6-3.6 5.4-8.8 7.6-15.2 7-2.2999997-.2-4.1999997-2.1-4.3999997-4-.1-.8.1-1.4.6-2 .7-.9 1.3-1.7 1.6-2.8.5999997-2.2-.2-4-1.8-5.6-2.2-2.2-1.9-4.2.7-5.8.3-.2.7-.4 1.1-.6.5999997-.3 1.0999997-.3 1.2999997.4.9 2.3 2.7 4 4.7 5.4.7.6.7 1 .1 1.7-1.2 1.3-1.9 2.9-2 4.7-.2 2.2 1.1 3.6 3.3 3.6 1.4 0 2.7-.5 3.9-1.1 3.1-1.6 5.5-3.9 7.8-6.3.3-.1.4-.3.8-.2z" class="st4"/>
<path id="path34" d="M13.21382 9.5312776c.2 0 .7.1 1.2.2 3.7.7000004 6-.6 7.2-4.1.8-2.3 2.5-3 4.7-1.8.1 0 .1.1.2.1 2.3 1.3 2.3 1.5.9 3.5-1.2 1.6-1.8 3.4000004-2.1 5.3000004-.2 1.1-.6 1.3-1.6.9-1.6-.6-3.3-.6-5 0-1.9.6-2.7 2.3-2.1 4.2.8 2.5 3 3.6 4.9 4.9 1.9 1.3 4.1 2 6.2 2.9.3.1.8.1.7.6-.1.3-.5.3-.9.3-4.5.2-8.8-.5-12.3-3.5-3.3-2.7-5.6999997-6-5.2999997-10.6.2999997-1.5 1.3999997-2.6000004 3.2999997-2.9000004z" class="st5"/>
<path id="path36" d="M5.0138203 37.631278c-2.4.3-4.80000003-1.7-5.00000003-4.2-.2-2.4 1.80000003-4.8 4.10000003-5 2.6-.3 5 1.5 5.2 3.9.1 2.3-1.4 5.1-4.3 5.3z" class="st4"/>
<path id="path38" d="M47.01382 2.0312776c2.5-.2 4.9 1.8 5.1 4.3.2 2.4-1.8 4.7000004-4.2 4.9000004-2.6.2-4.9-1.7000004-5.1-4.2000004-.2-2.5 1.6-4.8 4.2-5z" class="st3"/>
<path id="path40" d="M20.91382 3.9312776c.3 2.6-1.5 4.8-4.2 5.2-2.3.3-4.7-1.6-5-3.8-.3-2.9 1.3-4.99999996 4-5.29999996 2.5-.3 4.9 1.59999996 5.2 3.89999996z" class="st5"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_2118_879" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="2" width="256" height="251">
<path d="M256 2H0V253H256V2Z" fill="white"/>
</mask>
<g mask="url(#mask0_2118_879)">
<path d="M235.385 143.744C246.291 142.904 255.101 150.047 255.939 160.973C256.778 172.319 248.808 181.563 237.902 182.404C227.415 183.244 218.186 175.26 217.348 164.755C216.509 153.409 224.059 145.005 235.385 143.744Z" fill="#86DA2F"/>
<path d="M143.1 116.85C142.261 115.59 142.68 114.329 143.939 113.489C167.849 91.6373 203.505 87.4352 231.19 108.866C238.321 114.749 242.936 126.935 239.16 134.079C237.482 137.021 235.385 138.281 232.868 139.122C226.995 141.643 221.542 144.164 217.767 149.627C213.992 155.09 213.153 161.393 214.831 168.116C216.089 173.579 218.186 179.462 212.733 184.505C209.797 187.446 195.535 189.968 191.759 187.446C190.081 186.186 190.501 184.925 190.92 183.244C192.179 172.739 189.662 163.074 185.887 153.829C184.628 150.467 185.048 148.787 188.404 147.946C194.276 146.265 199.729 143.324 203.924 139.122C213.153 130.297 211.055 118.951 198.89 113.909C189.242 109.707 179.175 110.547 169.527 111.387C160.299 111.808 151.489 114.329 143.1 116.85Z" fill="#86DA2F"/>
<path d="M102.83 233.25C102.83 222.324 111.22 213.92 121.287 213.92C131.354 213.92 141.002 223.165 141.002 233.67C141.002 243.755 132.613 252.58 122.965 253C110.8 253 102.83 245.436 102.83 233.25Z" fill="#24C2FF"/>
<path d="M137.647 127.776C138.905 126.515 139.744 126.935 141.002 127.776C168.688 144.584 182.95 177.781 170.366 210.138C167.01 218.542 156.104 226.947 148.134 224.846C144.778 224.005 143.1 222.324 141.422 220.223C137.647 215.181 133.452 210.558 127.16 208.457C120.448 206.356 114.575 207.617 108.703 210.978C103.669 213.92 98.6352 217.702 92.3431 213.92C88.5678 211.819 82.2756 198.792 83.534 194.59C84.373 192.909 86.0509 192.909 87.7288 192.909C98.2158 191.228 106.605 186.186 114.575 179.462C117.092 177.361 119.19 177.361 121.287 180.303C124.643 185.345 128.838 189.547 134.291 192.489C145.197 198.792 155.684 193.329 156.943 180.723C158.201 170.218 154.426 160.973 151.07 151.728C147.295 143.324 142.68 135.34 137.647 127.776Z" fill="#24C2FF"/>
<path d="M124.223 130.297C122.545 138.701 118.77 146.686 113.736 153.829C98.6353 176.521 76.8224 185.766 49.9758 183.244C40.3278 182.404 32.3578 174.42 31.5188 166.436C31.0993 163.074 31.9383 160.553 34.0357 158.031C36.972 154.249 39.4889 150.888 40.7473 146.265C43.2642 137.021 39.9084 129.457 33.1967 122.733C23.9682 113.489 25.2266 105.084 36.1331 98.3608C37.3915 97.5203 39.0694 96.6799 40.7473 95.8395C43.2642 94.5788 45.3616 94.5788 46.2005 97.5203C49.9758 107.185 57.5264 114.329 65.916 120.212C68.8523 122.733 68.8523 124.414 66.3355 127.356C61.3017 132.818 58.3654 139.542 57.9459 147.106C57.107 156.35 62.5602 162.233 71.7887 162.233C77.6614 162.233 83.1146 160.132 88.1483 157.611C101.152 150.888 111.22 141.223 120.868 131.138C122.126 130.717 122.545 129.877 124.223 130.297Z" fill="#0069DA"/>
<path d="M21.0319 160.132C10.9644 161.393 0.896929 152.989 0.057973 142.483C-0.780983 132.398 7.60857 122.313 17.2566 121.473C28.163 120.212 38.2304 127.776 39.0694 137.861C39.4889 147.526 33.1967 159.292 21.0319 160.132Z" fill="#0069DA"/>
<path d="M132.613 110.547C130.935 111.387 130.096 110.127 129.677 108.866C114.156 79.8713 118.77 43.3125 146.036 21.4613C153.167 15.5783 166.591 14.3177 172.463 20.2007C174.98 22.3018 175.4 24.8231 175.819 27.7646C176.658 34.0678 177.917 40.371 182.111 45.4136C186.726 50.8764 192.598 52.9775 199.31 52.5573C205.183 52.5573 211.055 51.7169 214.831 58.4403C216.928 62.2222 216.089 76.9298 212.733 79.8713C211.055 81.1319 209.797 80.2915 208.538 79.8713C198.89 76.0893 188.823 76.0893 178.755 77.7702C175.4 78.1904 173.722 77.35 173.722 73.5681C173.302 67.2648 172.044 61.3818 168.688 55.919C162.396 44.5732 150.65 44.153 143.1 54.6584C136.808 63.0627 135.13 73.1478 133.452 83.233C131.774 92.0575 132.193 101.302 132.613 110.547Z" fill="#FFCB12"/>
<path d="M197.213 10.5358C207.699 9.69534 217.767 18.0996 218.606 28.605C219.445 38.6902 211.055 48.3551 200.988 49.1956C190.081 50.036 180.433 42.0519 179.594 31.5465C178.756 21.0411 186.306 11.3762 197.213 10.5358Z" fill="#FFCB12"/>
<path d="M55.4292 42.0518C56.2681 42.0518 58.3655 42.472 60.4629 42.8922C75.9836 45.8337 85.6316 40.3709 90.6653 25.6634C94.0211 15.9984 101.152 13.0569 110.381 18.0995C110.8 18.0995 110.8 18.5197 111.22 18.5197C120.868 23.9825 120.868 24.823 114.995 33.2273C109.961 39.9507 107.444 47.5146 106.186 55.4987C105.347 60.1211 103.669 60.9615 99.4743 59.2806C92.7627 56.7593 85.6316 56.7593 78.5004 59.2806C70.5304 61.8019 67.1745 68.9456 69.6914 76.9297C73.0472 87.435 82.2757 92.0574 90.2458 97.5202C98.2159 102.983 107.444 105.925 116.253 109.707C117.512 110.127 119.609 110.127 119.19 112.228C118.77 113.489 117.092 113.489 115.414 113.489C96.538 114.329 78.5004 111.387 63.8187 98.7809C49.976 87.4351 39.9085 73.5679 41.5864 54.238C42.8448 47.9348 47.4591 43.3124 55.4292 42.0518Z" fill="#FF4649"/>
<path d="M87.7288 18.5198C88.9872 29.4454 81.4366 38.6902 70.1107 40.371C60.4627 41.6317 50.3952 33.6476 49.1368 24.4028C47.8784 12.2166 54.59 3.39208 65.9159 2.13143C76.4029 0.87079 86.4703 8.85488 87.7288 18.5198Z" fill="#FF4649"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

+17 -16
View File
@@ -1,17 +1,18 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 106.14 115.53">
<path
d="M60.78,7.84c-4.36-2.52-9.73-2.52-14.08,0L14.44,26.47c-4.36,2.52-7.04,7.17-7.04,12.2v37.26c0,5.03,2.68,9.68,7.04,12.2l32.26,18.63c4.36,2.52,9.73,2.52,14.08,0l32.26-18.63c4.36-2.52,7.04-7.17,7.04-12.2v-37.26c0-5.03-2.68-9.68-7.04-12.2L60.78,7.84Z"
style="fill:url(#gradient)" />
<linearGradient id="gradient" x1="-228.54" y1="480.48" x2="-246.11" y2="446.65"
gradientTransform="translate(569.95 1056) scale(2.16 -2.16)"
gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#2fabff" />
<stop offset=".31" stop-color="#5570ff" />
<stop offset=".62" stop-color="#7b36ff" />
<stop offset=".81" stop-color="#6a2cdc" />
<stop offset="1" stop-color="#5921b8" />
</linearGradient>
<path
d="M48.26,21.44l-22.88,13.21c-3.49,2.01-5.63,5.73-5.63,9.76v26.43c0,4.03,2.15,7.74,5.63,9.76l22.88,13.21c3.49,2.01,7.78,2.01,11.27,0l22.88-13.21c3.49-2.01,5.63-5.73,5.63-9.76v-26.43c0-4.03-2.15-7.74-5.63-9.76l-22.88-13.21c-3.49-2.01-7.78-2.01-11.27,0ZM51.78,27.7c1.74-1.01,3.89-1.01,5.63,0l21.81,12.59c1.74,1.01,2.82,2.86,2.82,4.88v25.19c0,2.01-1.07,3.87-2.82,4.88l-21.81,12.59c-1.74,1.01-3.89,1.01-5.63,0l-21.81-12.59c-1.74-1.01-2.82-2.86-2.82-4.88v-25.19c0-2.01,1.07-3.87,2.82-4.88l21.81-12.59ZM54.25,51.32c-.44-.25-.97-.25-1.41,0l-4.69,2.71c-.44.25-.7.72-.7,1.22v5.42c0,.5.27.97.7,1.22l4.69,2.71c.44.25.97.25,1.41,0l4.69-2.71c.44-.25.7-.72.7-1.22v-5.42c0-.5-.27-.97-.7-1.22l-4.69-2.71ZM57.77,56.55l-2.82,5.63,26.76,15.49,2.82-5.63-26.76-15.49Z"
style="fill:#fff; stroke:#fff; stroke-width:2.93px;" />
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1892)">
<path d="M145.314 4.21757C134.461 -2.03916 121.062 -2.03916 110.21 4.21757L29.7581 50.6724C18.9057 56.9291 12.2061 68.5567 12.2061 81.0702V173.98C12.2061 186.549 18.9057 198.121 29.7581 204.378L110.21 250.832C121.062 257.089 134.461 257.089 145.314 250.832L225.765 204.378C236.618 198.121 243.318 186.493 243.318 173.98V81.0702C243.318 68.5013 236.618 56.9291 225.765 50.6724L145.314 4.21757Z" fill="url(#paint0_linear_2115_1892)"/>
<path d="M137.84 125.698L130.808 139.762L197.528 178.409L204.56 164.346L137.84 125.698ZM129.036 112.631C127.929 112.022 126.6 112.022 125.548 112.631L113.865 119.386C112.757 119.995 112.093 121.158 112.093 122.431V135.941C112.093 137.215 112.757 138.377 113.865 138.986L125.548 145.742C126.655 146.351 127.984 146.351 129.036 145.742L140.719 138.986C141.826 138.377 142.491 137.215 142.491 135.941V122.431C142.491 121.158 141.826 119.995 140.719 119.386L129.036 112.631ZM122.89 53.7177C127.264 51.2261 132.58 51.2261 136.954 53.7177L191.326 85.1121C195.701 87.6037 198.358 92.2548 198.358 97.2934V160.082C198.358 165.121 195.701 169.716 191.326 172.263L136.954 203.658C132.58 206.149 127.264 206.149 122.89 203.658L68.5173 172.263C64.1431 169.772 61.4854 165.121 61.4854 160.082V97.2934C61.4854 92.2548 64.1431 87.6591 68.5173 85.1121L122.89 53.7177ZM114.086 38.1036L57.0004 71.0483C48.3075 76.0869 42.9366 85.3336 42.9366 95.4108V161.3C42.9366 171.322 48.3075 180.624 57.0004 185.663L114.086 218.608C122.779 223.646 133.465 223.646 142.214 218.608L199.3 185.663C207.993 180.624 213.363 171.377 213.363 161.3V95.4108C213.363 85.389 207.993 76.0869 199.3 71.0483L142.214 38.1036C133.521 33.065 122.835 33.065 114.086 38.1036Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_1892" x1="182.743" y1="9.64377" x2="86.567" y2="194.854" gradientUnits="userSpaceOnUse">
<stop stop-color="#2FABFF"/>
<stop offset="0.3" stop-color="#5570FF"/>
<stop offset="0.6" stop-color="#7B36FF"/>
<stop offset="0.8" stop-color="#6A2CDC"/>
<stop offset="1" stop-color="#5921B8"/>
</linearGradient>
<clipPath id="clip0_2115_1892">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

+17 -1
View File
@@ -1 +1,17 @@
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="0 0 409.24 496.55" width="409.24px" height="496.55px"><defs><style>.cls-1{fill:#073042}.cls-2{fill:#4285f4}.cls-3{fill:#3870b2}.cls-4{fill:#fff}.cls-5{fill:#3ddc84}</style></defs><title>android-studio</title><path d="M153.34,62.74H41.18A41.3,41.3,0,0,0,0,104a40,40,0,0,0,38.74,41.14l1.22,0H154.54Z" class="cls-1"/><path d="M408.84,429.74H41.05A41.3,41.3,0,0,1,0,388.58V103.77A41.3,41.3,0,0,0,41.1,145.28c.92,0,1.83,0,2.74-.08H348.9s59.94-5.2,59.94,40Z" class="cls-2"/><path d="M214.62,231.65a22.78,22.78,0,1,0,21.6,14.41A22.92,22.92,0,0,0,214.62,231.65Z"/><path d="M237.27,283.87a37,37,0,0,0-21.18-66.6h1.2a33.82,33.82,0,0,1,6.52,0V194.35a7.3,7.3,0,0,0-3.46-6.52,7.19,7.19,0,0,0-7.33,0,7.3,7.3,0,0,0-3.46,6.52v23.32a37.16,37.16,0,0,0-16.25,66.6L125.5,429.21h44.23L201,362.6a16.26,16.26,0,0,1,14.66-9.19,16,16,0,0,1,14.52,9.19l32.23,66.61H307.2Zm-22.65-6.53a23,23,0,1,1,22.91-22.91,22.91,22.91,0,0,1-22.91,22.91Z" class="cls-3"/><path d="M129.1,83H286.42V111.9H129.1Z" class="cls-4"/><path d="M202.37,231.65a22.77,22.77,0,1,1-16.26,6.66A23.25,23.25,0,0,1,202.37,231.65Zm9-13.32v-24a7.3,7.3,0,0,0-3.46-6.52,7.19,7.19,0,0,0-7.33,0,7.32,7.32,0,0,0-3.46,6.52v23.32a37.16,37.16,0,0,0-16.25,66.6L95.8,467.44a20.24,20.24,0,0,0,1.46,20.38,20.54,20.54,0,0,0,18.52,8.66,20.13,20.13,0,0,0,16.52-12L189,362.6a16.39,16.39,0,0,1,14.66-9.19,16,16,0,0,1,14.52,9.19l58.21,121.22a20.13,20.13,0,1,0,36.23-17.58L225,283.87a37.48,37.48,0,0,0-13.32-65.4" class="cls-1"/><path d="M263.64,108.43a10.66,10.66,0,0,1-7.72-18.25,10.79,10.79,0,0,1,18.38,7.6,10.65,10.65,0,0,1-10.66,10.65h0m-118.42,0a10.66,10.66,0,0,1-7.6-18.25,10.79,10.79,0,0,1,16.69,13.69,10.63,10.63,0,0,1-1.5,1.5,10.51,10.51,0,0,1-7.59,3.06m122.29-64.6,21.31-37a4.53,4.53,0,0,0-7.73-4.53L259.51,39.83a134.25,134.25,0,0,0-110,0L127.77,2.26A4.54,4.54,0,0,0,123.9,0,4.92,4.92,0,0,0,120,2.26a4.53,4.53,0,0,0,0,4.53l21.45,37A126.8,126.8,0,0,0,76,145.2h257.1A126.85,126.85,0,0,0,267.51,43.83" class="cls-5"/><path d="M371.94,224.19H355a2.14,2.14,0,0,0-2.14,2.14h0V493.41a2.13,2.13,0,0,0,2,2.13h17.45a37,37,0,0,0,36.9-37V187.16a37,37,0,0,1-37,37Z" class="cls-1"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1569)">
<path d="M102.194 32.3462H44.64C39.0335 32.3626 33.6619 34.6103 29.7014 38.5972C25.7408 42.584 23.514 47.9852 23.5086 53.6181C23.3511 59.0777 25.3557 64.3771 29.0826 68.3534C32.8095 72.3298 37.9542 74.6584 43.3879 74.8281H44.014H102.81L102.194 32.3462Z" fill="#073042"/>
<path d="M233.303 221.556H44.5732C38.9872 221.522 33.6404 219.273 29.6957 215.3C25.751 211.326 23.5274 205.948 23.5086 200.335V53.4995C23.4944 56.2961 24.0287 59.0682 25.081 61.6573C26.1333 64.2464 27.6829 66.6019 29.6414 68.5892C31.5999 70.5765 33.9288 72.1568 36.4953 73.2396C39.0617 74.3225 41.8154 74.8868 44.5989 74.9003C45.071 74.9003 45.5379 74.9003 46.0049 74.8591H202.545C202.545 74.8591 233.303 72.1782 233.303 95.4813V221.556Z" fill="#4285F4"/>
<path d="M133.64 119.429C131.15 119.474 128.74 120.317 126.76 121.835C124.78 123.353 123.335 125.467 122.634 127.868C121.934 130.269 122.015 132.832 122.866 135.184C123.716 137.535 125.293 139.553 127.364 140.941C129.436 142.33 131.895 143.017 134.383 142.904C136.871 142.79 139.258 141.881 141.195 140.309C143.133 138.737 144.52 136.584 145.155 134.165C145.79 131.745 145.639 129.185 144.724 126.858C143.841 124.639 142.309 122.741 140.33 121.414C138.351 120.088 136.019 119.396 133.64 119.429Z" fill="black"/>
<path d="M145.263 146.351C148.418 143.977 150.759 140.675 151.962 136.903C153.164 133.131 153.169 129.077 151.974 125.303C150.779 121.528 148.445 118.221 145.295 115.84C142.145 113.459 138.335 112.122 134.395 112.015H135.01C136.123 111.907 137.243 111.907 138.356 112.015V100.199C138.384 99.5302 138.234 98.8665 137.922 98.2757C137.61 97.6849 137.147 97.1883 136.581 96.8371C136.011 96.4982 135.362 96.3193 134.7 96.3193C134.038 96.3193 133.389 96.4982 132.819 96.8371C132.253 97.1883 131.79 97.6849 131.478 98.2757C131.165 98.8665 131.016 99.5302 131.044 100.199V112.221C127.331 112.813 123.875 114.493 121.11 117.052C118.345 119.61 116.395 122.933 115.504 126.602C114.613 130.271 114.821 134.123 116.102 137.673C117.384 141.224 119.681 144.315 122.705 146.557L87.9087 221.282H110.605L126.651 186.941C127.334 185.52 128.402 184.321 129.733 183.483C131.064 182.645 132.603 182.201 134.174 182.203C135.736 182.199 137.266 182.643 138.586 183.482C139.906 184.321 140.96 185.521 141.625 186.941L158.164 221.282H181.147L145.263 146.351ZM133.64 142.985C131.302 142.994 129.014 142.305 127.066 141.006C125.118 139.706 123.598 137.855 122.699 135.686C121.8 133.517 121.562 131.129 122.016 128.825C122.47 126.52 123.595 124.403 125.249 122.742C126.902 121.081 129.009 119.951 131.303 119.495C133.597 119.039 135.974 119.277 138.132 120.181C140.291 121.084 142.133 122.611 143.427 124.568C144.72 126.525 145.406 128.824 145.396 131.173C145.396 134.306 144.158 137.31 141.953 139.525C139.748 141.74 136.758 142.985 133.64 142.985Z" fill="#3870B2"/>
<path d="M89.7559 42.791H170.484V57.6906H89.7559V42.791Z" fill="white"/>
<path d="M127.354 119.429C130.054 119.449 132.663 120.408 134.739 122.142C136.815 123.876 138.229 126.279 138.741 128.943C139.252 131.606 138.83 134.365 137.546 136.751C136.262 139.137 134.195 141.003 131.697 142.031C129.198 143.059 126.423 143.186 123.842 142.391C121.261 141.595 119.033 139.927 117.538 137.668C116.043 135.409 115.373 132.7 115.642 130.001C115.91 127.302 117.1 124.779 119.01 122.862C121.237 120.665 124.233 119.433 127.354 119.429ZM131.972 112.562V100.188C132 99.52 131.851 98.8563 131.539 98.2655C131.227 97.6746 130.763 97.1781 130.197 96.8268C129.628 96.4879 128.978 96.3091 128.316 96.3091C127.654 96.3091 127.005 96.4879 126.436 96.8268C125.87 97.1789 125.407 97.6756 125.095 98.2662C124.783 98.8569 124.633 99.5202 124.66 100.188V112.211C120.947 112.802 117.491 114.483 114.727 117.041C111.962 119.6 110.011 122.923 109.12 126.592C108.229 130.261 108.437 134.113 109.719 137.663C111 141.214 113.297 144.304 116.321 146.547L72.6681 240.992C71.8541 242.653 71.4945 244.501 71.6262 246.348C71.7578 248.194 72.376 249.972 73.4173 251.499C74.4754 253.012 75.9095 254.221 77.5768 255.004C79.2441 255.787 81.0865 256.118 82.9207 255.964C84.7545 255.786 86.5075 255.118 87.998 254.031C89.4885 252.943 90.6624 251.474 91.3979 249.777L120.493 186.941C121.183 185.525 122.252 184.331 123.582 183.493C124.911 182.656 126.447 182.209 128.016 182.203C129.578 182.199 131.109 182.643 132.428 183.482C133.748 184.321 134.802 185.521 135.467 186.941L165.337 249.437C165.93 250.663 166.756 251.761 167.771 252.666C168.785 253.571 169.967 254.267 171.249 254.714C172.531 255.16 173.888 255.348 175.243 255.268C176.597 255.187 177.923 254.84 179.143 254.245C180.364 253.649 181.456 252.819 182.357 251.799C183.258 250.78 183.951 249.593 184.395 248.305C184.84 247.017 185.027 245.653 184.947 244.292C184.867 242.932 184.521 241.6 183.928 240.373L138.967 146.351C141.735 144.131 143.84 141.186 145.049 137.841C146.257 134.495 146.523 130.879 145.816 127.392C145.109 123.904 143.457 120.681 141.042 118.077C138.628 115.472 135.544 113.589 132.131 112.634" fill="#073042"/>
<path d="M158.795 55.9019C157.699 55.9264 156.622 55.6199 155.702 55.022C154.782 54.4241 154.062 53.5624 153.635 52.5485C153.208 51.5347 153.094 50.4154 153.308 49.3357C153.521 48.256 154.053 47.2657 154.833 46.493C155.608 45.7229 156.591 45.1995 157.66 44.9883C158.729 44.7772 159.837 44.8877 160.844 45.306C161.851 45.7243 162.712 46.4319 163.321 47.34C163.929 48.2481 164.258 49.3165 164.265 50.4112C164.265 51.1327 164.123 51.8471 163.848 52.5136C163.573 53.1801 163.17 53.7856 162.662 54.2955C162.154 54.8055 161.551 55.2098 160.888 55.4854C160.224 55.761 159.513 55.9026 158.795 55.9019ZM98.0278 55.9019C96.9376 55.9138 95.8688 55.5981 94.9585 54.9953C94.0482 54.3926 93.3379 53.5303 92.9188 52.5192C92.4996 51.508 92.3908 50.3941 92.6063 49.3203C92.8217 48.2466 93.3516 47.262 94.1279 46.493C94.5892 45.928 95.1567 45.4598 95.798 45.1152C96.4394 44.7705 97.142 44.5562 97.8658 44.4844C98.5896 44.4126 99.3204 44.4847 100.016 44.6966C100.713 44.9086 101.36 45.2562 101.923 45.7196C102.485 46.1831 102.951 46.7532 103.294 47.3976C103.637 48.042 103.85 48.7479 103.922 49.4751C103.993 50.2023 103.921 50.9366 103.711 51.6359C103.5 52.3352 103.154 52.986 102.692 53.5509C102.462 53.8339 102.204 54.0929 101.923 54.3243C101.411 54.8356 100.803 55.2386 100.134 55.5096C99.4653 55.7806 98.749 55.914 98.0278 55.9019ZM160.78 22.5969L171.716 3.52126C171.923 3.00206 171.937 2.42545 171.757 1.89629C171.577 1.36712 171.213 0.920541 170.733 0.637749C170.253 0.354956 169.687 0.254734 169.14 0.355306C168.592 0.455878 168.099 0.750565 167.749 1.18578L156.675 20.5347C147.8 16.5301 138.181 14.4596 128.452 14.4596C118.723 14.4596 109.104 16.5301 100.229 20.5347L89.0734 1.16516C88.871 0.814933 88.5816 0.52346 88.2335 0.319233C87.8854 0.115005 87.4906 0.00501025 87.0875 0C86.6857 0.0199473 86.2944 0.136099 85.9463 0.338776C85.5981 0.541452 85.3033 0.824784 85.0862 1.16516C84.8822 1.5202 84.7748 1.92294 84.7748 2.3329C84.7748 2.74286 84.8822 3.1456 85.0862 3.50063L96.0932 22.5763C86.6118 27.8006 78.5758 35.3168 72.7118 44.4453C66.8479 53.5737 63.3408 64.0266 62.5078 74.8589H194.438C193.592 64.0239 190.071 53.5715 184.195 44.4466C178.318 35.3218 170.271 27.8123 160.78 22.5969Z" fill="#3DDC84"/>
<path d="M214.368 115.583H205.676C205.385 115.583 205.105 115.699 204.899 115.906C204.693 116.113 204.578 116.393 204.578 116.686V254.381C204.577 254.661 204.683 254.931 204.874 255.135C205.065 255.339 205.326 255.462 205.604 255.479H214.558C219.585 255.466 224.401 253.45 227.951 249.874C231.5 246.298 233.493 241.454 233.493 236.404V96.4917C233.493 101.551 231.493 106.403 227.932 109.98C224.372 113.558 219.543 115.567 214.507 115.567L214.368 115.583Z" fill="#073042"/>
</g>
<defs>
<clipPath id="clip0_2115_1569">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

+12 -2
View File
@@ -1,2 +1,12 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_ansible</title><path d="M16,29.951a13.952,13.952,0,1,1,.193-27.9A13.951,13.951,0,0,1,16,29.951Zm-2.221-13.13c.1.1.1.1.193.1C16,18.559,18.027,20.1,19.958,21.745a10.928,10.928,0,0,0,1.255.965.99.99,0,0,0,1.545-.676,1.643,1.643,0,0,0-.1-.676L18.9,12.38c-.579-1.352-1.159-2.8-1.738-4.151a.87.87,0,0,0-.579-.579c-.579-.193-.965.1-1.255.676-2.027,4.731-3.958,9.558-5.986,14.289,0,.1-.1.193-.1.29h1.931c.193,0,.193-.1.29-.193.386-.869.676-1.834,1.062-2.7A31.234,31.234,0,0,1,13.779,16.821Z"/><path d="M13.779,16.821c-.386,1.062-.869,2.124-1.255,3.186-.386.869-.772,1.834-1.062,2.7a.355.355,0,0,1-.29.1H9.242c0-.1.1-.193.1-.29,2.027-4.731,3.958-9.558,5.986-14.289.29-.579.676-.869,1.255-.676a.87.87,0,0,1,.579.579c.579,1.352,1.159,2.8,1.738,4.151l3.765,8.979a2.978,2.978,0,0,1,.1.869.99.99,0,0,1-1.545.676,14.191,14.191,0,0,1-1.255-.965c-2.027-1.641-4.055-3.186-5.986-4.827C13.876,16.821,13.876,16.821,13.779,16.821Zm2.51-6.275c-.579,1.545-1.159,2.993-1.834,4.441-.1.1,0,.193.1.29C16,16.435,17.448,17.5,18.9,18.656c.29.193.579.483.869.676h0C18.607,16.435,17.448,13.539,16.29,10.546Z" style="fill:#fff"/><path d="M16.29,10.546c1.159,2.993,2.414,5.889,3.572,8.786h0c-.29-.193-.579-.483-.869-.676-1.448-1.159-2.9-2.221-4.344-3.379-.1-.1-.193-.1-.1-.29C15.035,13.539,15.614,12.091,16.29,10.546Z"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1579)">
<path d="M129.021 254.991C112.093 255.135 95.3062 251.927 79.6365 245.555C63.9668 239.182 49.7276 229.772 37.7479 217.871C25.7682 205.971 16.2872 191.819 9.85686 176.238C3.42651 160.658 0.175262 143.96 0.292361 127.118C0.40946 110.275 3.89257 93.6237 10.5389 78.1331C17.1853 62.6426 26.8622 48.6222 39.0062 36.888C51.1502 25.1539 65.5189 15.9404 81.2757 9.78398C97.0325 3.62753 113.863 0.651066 130.787 1.02786C164.416 1.58638 196.465 15.3301 219.966 39.2711C243.466 63.2122 256.519 95.4152 256.286 128.88C256.054 162.344 242.554 194.364 218.723 217.979C194.892 241.595 162.655 254.896 129.021 254.991ZM108.702 135.474C109.617 136.384 109.617 136.384 110.468 136.384C129.021 151.294 147.565 165.321 165.231 180.295C168.84 183.496 172.677 186.431 176.713 189.079C177.984 189.957 179.459 190.496 180.999 190.646C182.539 190.795 184.091 190.549 185.508 189.932C186.926 189.315 188.16 188.348 189.095 187.121C190.03 185.894 190.633 184.45 190.848 182.926C190.979 180.834 190.668 178.737 189.933 176.772L155.552 95.049C150.255 82.7422 144.949 69.5616 139.652 57.2639C139.271 56.0204 138.589 54.8891 137.665 53.9699C136.741 53.0508 135.604 52.372 134.355 51.9935C129.058 50.2367 125.526 52.9038 122.873 58.1469C104.329 101.211 86.6627 145.15 68.1093 188.214C68.1093 189.125 67.1944 189.971 67.1944 190.854H84.8605C86.6261 190.854 86.6261 189.944 87.5136 189.097C91.0449 181.187 93.698 172.403 97.2294 164.52C100.516 154.636 104.346 144.94 108.702 135.474Z" fill="black"/>
<path d="M109.551 135.511C106.041 145.246 101.648 154.982 98.1376 164.717C94.6271 172.683 91.1166 181.53 88.4792 189.468C88.1355 189.81 87.7202 190.07 87.2638 190.229C86.8073 190.387 86.3214 190.441 85.8418 190.385H68.2893C68.2893 189.468 69.1988 188.616 69.1988 187.726C87.6334 144.357 105.195 100.108 123.639 56.7383C126.276 51.4306 129.787 48.7722 135.052 50.5414C136.295 50.9226 137.425 51.6061 138.343 52.5318C139.262 53.4575 139.94 54.5968 140.318 55.8491C145.584 68.243 150.859 81.5169 156.124 93.9016L190.365 176.213C191.056 178.808 191.362 181.493 191.275 184.179C191.062 185.714 190.462 187.168 189.533 188.404C188.604 189.639 187.376 190.614 185.967 191.235C184.558 191.856 183.015 192.104 181.484 191.953C179.954 191.803 178.487 191.26 177.224 190.376C173.259 187.643 169.448 184.69 165.81 181.53C147.375 166.486 128.932 152.323 111.37 137.28C110.433 135.511 110.433 135.511 109.551 135.511ZM132.378 77.9876C127.113 92.1507 121.838 105.425 115.699 118.699C114.79 119.615 115.699 120.468 116.609 121.357C129.75 131.972 142.919 141.735 156.124 152.332C158.762 154.102 161.39 156.76 164.027 158.529C153.46 131.972 142.919 105.425 132.388 77.9876H132.378Z" fill="white"/>
<path d="M132.25 77.9961C142.645 105.249 153.902 131.618 164.289 157.996C161.688 156.239 159.096 153.598 156.495 151.841C143.507 141.288 130.483 131.618 117.53 121.074C116.633 120.163 115.799 120.163 116.633 118.433C120.993 105.249 126.186 92.0639 132.25 77.9961Z" fill="black"/>
</g>
<defs>
<clipPath id="clip0_2115_1579">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 95 KiB

+3 -3
View File
@@ -1,3 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="814" height="1000">
<path d="M788.1 340.9c-5.8 4.5-108.2 62.2-108.2 190.5 0 148.4 130.3 200.9 134.2 202.2-.6 3.2-20.7 71.9-68.7 141.9-42.8 61.6-87.5 123.1-155.5 123.1s-85.5-39.5-164-39.5c-76.5 0-103.7 40.8-165.9 40.8s-105.6-57-155.5-127C46.7 790.7 0 663 0 541.8c0-194.4 126.4-297.5 250.8-297.5 66.1 0 121.2 43.4 162.7 43.4 39.5 0 101.1-46 176.3-46 28.5 0 130.9 2.6 198.3 99.2zm-234-181.5c31.1-36.9 53.1-88.1 53.1-139.3 0-7.1-.6-14.3-1.9-20.1-50.6 1.9-110.8 33.7-147.1 75.8-28.5 32.4-55.1 83.6-55.1 135.5 0 7.8 1.3 15.6 1.9 18.1 3.2.6 8.4 1.3 13.6 1.3 45.4 0 102.5-30.4 135.5-71.3z"/>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M224.882 87.2704C223.4 88.4224 197.234 103.194 197.234 136.038C197.234 174.029 230.529 187.469 231.526 187.802C231.372 188.621 226.236 206.208 213.971 224.128C203.034 239.898 191.612 255.642 174.236 255.642C156.86 255.642 152.388 245.53 132.329 245.53C112.782 245.53 105.831 255.974 89.9373 255.974C74.0435 255.974 62.9536 241.382 50.2027 223.462C35.4332 202.419 23.5 169.728 23.5 138.701C23.5 88.9344 55.7988 62.5408 87.5865 62.5408C104.477 62.5408 118.557 73.6512 129.161 73.6512C139.254 73.6512 154.995 61.8752 174.211 61.8752C181.493 61.8752 207.659 62.5408 224.882 87.2704ZM165.088 40.8064C173.035 31.36 178.657 18.2528 178.657 5.1456C178.657 3.328 178.503 1.4848 178.171 0C165.242 0.4864 149.859 8.6272 140.583 19.4048C133.3 27.6992 126.503 40.8064 126.503 54.0928C126.503 56.0896 126.836 58.0864 126.989 58.7264C127.807 58.88 129.135 59.0592 130.464 59.0592C142.065 59.0592 156.656 51.2768 165.088 40.8064Z" fill="black"/>
</svg>

Before

Width:  |  Height:  |  Size: 660 B

After

Width:  |  Height:  |  Size: 1.0 KiB

+3 -4
View File
@@ -1,4 +1,3 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="842.32007" height="1000.0001">
<path fill="#b3b3b3" d="M824.66636 779.30363c-15.12299 34.93724-33.02368 67.09674-53.7638 96.66374-28.27076 40.3074-51.4182 68.2078-69.25717 83.7012-27.65347 25.4313-57.2822 38.4556-89.00964 39.1963-22.77708 0-50.24539-6.4813-82.21973-19.629-32.07926-13.0861-61.55985-19.5673-88.51583-19.5673-28.27075 0-58.59083 6.4812-91.02193 19.5673-32.48053 13.1477-58.64639 19.9994-78.65196 20.6784-30.42501 1.29623-60.75123-12.0985-91.02193-40.2457-19.32039-16.8514-43.48632-45.7394-72.43607-86.6641-31.060778-43.7024-56.597041-94.37983-76.602609-152.15586C10.740416 658.44309 0 598.01283 0 539.50845c0-67.01648 14.481044-124.8172 43.486336-173.25401C66.28194 327.34823 96.60818 296.6578 134.5638 274.1276c37.95566-22.53016 78.96676-34.01129 123.1321-34.74585 24.16591 0 55.85633 7.47508 95.23784 22.166 39.27042 14.74029 64.48571 22.21538 75.54091 22.21538 8.26518 0 36.27668-8.7405 83.7629-26.16587 44.90607-16.16001 82.80614-22.85118 113.85458-20.21546 84.13326 6.78992 147.34122 39.95559 189.37699 99.70686-75.24463 45.59122-112.46573 109.4473-111.72502 191.36456.67899 63.8067 23.82643 116.90384 69.31888 159.06309 20.61664 19.56727 43.64066 34.69027 69.2571 45.4307-5.55531 16.11062-11.41933 31.54225-17.65372 46.35662zM631.70926 20.0057c0 50.01141-18.27108 96.70693-54.6897 139.92782-43.94932 51.38118-97.10817 81.07162-154.75459 76.38659-.73454-5.99983-1.16045-12.31444-1.16045-18.95003 0-48.01091 20.9006-99.39207 58.01678-141.40314 18.53027-21.27094 42.09746-38.95744 70.67685-53.0663C578.3158 9.00229 605.2903 1.31621 630.65988 0c.74076 6.68575 1.04938 13.37191 1.04938 20.00505z"/>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M224.882 87.2704C223.4 88.4224 197.234 103.194 197.234 136.038C197.234 174.029 230.529 187.469 231.526 187.802C231.372 188.621 226.236 206.208 213.971 224.128C203.034 239.898 191.612 255.642 174.236 255.642C156.86 255.642 152.388 245.53 132.329 245.53C112.782 245.53 105.831 255.974 89.9373 255.974C74.0435 255.974 62.9536 241.382 50.2027 223.462C35.4332 202.419 23.5 169.728 23.5 138.701C23.5 88.9344 55.7988 62.5408 87.5865 62.5408C104.477 62.5408 118.557 73.6512 129.161 73.6512C139.254 73.6512 154.995 61.8752 174.211 61.8752C181.493 61.8752 207.659 62.5408 224.882 87.2704ZM165.088 40.8064C173.035 31.36 178.657 18.2528 178.657 5.1456C178.657 3.328 178.503 1.4848 178.171 0C165.242 0.4864 149.859 8.6272 140.583 19.4048C133.3 27.6992 126.503 40.8064 126.503 54.0928C126.503 56.0896 126.836 58.0864 126.989 58.7264C127.807 58.88 129.135 59.0592 130.464 59.0592C142.065 59.0592 156.656 51.2768 165.088 40.8064Z" fill="#B3B3B3"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

+23 -1
View File
@@ -1 +1,23 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" viewBox="0 0 581 747"><path id="a" fill="#fff" d="M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z"/><path fill="#E2F5FC" d="M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z"/><path fill="#CDECF6" d="M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z"/><path fill="#fff" d="M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z"/><path fill="#B5D2F3" d="M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z"/><path fill="#B5D2F3" d="M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z"/><path fill="#FE733E" d="M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z"/><path fill="#FE6446" d="M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z"/><path fill="#FE6446" d="m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z" opacity=".3"/><path fill="#FEA777" d="M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z" opacity=".5"/><path fill="#FE6B3C" d="M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z"/><use xlink:href="#a"/><use xlink:href="#a"/><path fill="#fff" d="M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z"/><path fill="#070909" d="M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z"/><path fill="#FE6446" d="M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z"/><path fill="#fff" d="M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z"/><path fill="#090B0B" d="M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z"/><path fill="#FE6446" d="M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z"/><path fill="#fff" d="M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z"/><path fill="#090B0B" d="M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M144.301 149.971C144.301 159.673 137.826 164.83 127.352 164.83C116.882 164.83 111.122 158.717 111.122 149.971C111.122 149.971 116.882 158.076 127.352 158.076C137.826 158.076 144.304 149.971 144.304 149.971H144.301Z" fill="white"/>
<path d="M128.394 187.795C179.447 187.795 220.837 146.516 220.837 95.5937C220.837 44.6747 179.447 3.396 128.394 3.396C77.3421 3.396 35.9521 44.6747 35.9521 95.5937C35.9521 146.516 77.3421 187.795 128.394 187.795Z" fill="#E2F5FC"/>
<path d="M128.394 172.736C170.124 172.736 203.953 138.997 203.953 97.3758C203.953 55.7544 170.124 22.0151 128.394 22.0151C86.6635 22.0151 52.835 55.7544 52.835 97.3758C52.835 138.997 86.6635 172.736 128.394 172.736Z" fill="#CDECF6"/>
<path d="M100.133 31.361C100.719 31.361 101.299 31.2459 101.841 31.0223C102.382 30.7988 102.874 30.4711 103.289 30.0581C103.703 29.645 104.032 29.1546 104.256 28.6149C104.48 28.0753 104.596 27.4968 104.596 26.9127C104.596 26.3285 104.48 25.7501 104.256 25.2104C104.032 24.6707 103.703 24.1803 103.289 23.7672C102.874 23.3542 102.382 23.0265 101.841 22.803C101.299 22.5794 100.719 22.4644 100.133 22.4644C98.9489 22.4644 97.8137 22.933 96.9767 23.7672C96.1396 24.6014 95.6694 25.7329 95.6694 26.9127C95.6694 28.0924 96.1396 29.2239 96.9767 30.0581C97.8137 30.8923 98.9489 31.361 100.133 31.361ZM66.9265 143.021C67.0475 143.191 67.202 143.335 67.3805 143.444C67.5591 143.553 67.7579 143.625 67.9651 143.655C68.1723 143.685 68.3835 143.673 68.5858 143.62C68.7882 143.566 68.9776 143.472 69.1425 143.344C69.3074 143.215 69.4444 143.054 69.5452 142.872C69.646 142.689 69.7085 142.487 69.7289 142.28C69.7493 142.072 69.7272 141.862 69.664 141.663C69.6008 141.464 69.4977 141.28 69.361 141.122C39.1704 102.667 56.5867 52.8245 90.852 33.2595C91.1874 33.0465 91.4276 32.7128 91.5228 32.3279C91.6179 31.9429 91.5606 31.5362 91.3628 31.1923C91.1651 30.8483 90.842 30.5934 90.4606 30.4806C90.0793 30.3678 89.669 30.4057 89.3149 30.5864C53.6846 50.9259 35.3914 102.852 66.9265 143.021Z" fill="white"/>
<path d="M35.1267 77.2935C35.1267 77.136 35.0956 76.98 35.0351 76.8345C34.9746 76.689 34.886 76.5568 34.7742 76.4454C34.6625 76.334 34.5298 76.2456 34.3838 76.1854C34.2378 76.1251 34.0813 76.0941 33.9232 76.0941C33.7652 76.0941 33.6087 76.1251 33.4627 76.1854C33.3166 76.2456 33.184 76.334 33.0722 76.4454C32.9605 76.5568 32.8718 76.689 32.8113 76.8345C32.7509 76.98 32.7197 77.136 32.7197 77.2935H35.1267ZM32.7197 113.408C32.7197 113.565 32.7509 113.721 32.8113 113.867C32.8718 114.012 32.9605 114.144 33.0722 114.256C33.184 114.367 33.3166 114.456 33.4627 114.516C33.6087 114.576 33.7652 114.607 33.9232 114.607C34.0813 114.607 34.2378 114.576 34.3838 114.516C34.5298 114.456 34.6625 114.367 34.7742 114.256C34.886 114.144 34.9746 114.012 35.0351 113.867C35.0956 113.721 35.1267 113.565 35.1267 113.408H32.7197ZM223.584 77.1222C223.584 76.8041 223.457 76.499 223.231 76.274C223.006 76.0491 222.7 75.9227 222.38 75.9227C222.061 75.9227 221.755 76.0491 221.529 76.274C221.304 76.499 221.177 76.8041 221.177 77.1222H223.584ZM221.177 113.236C221.177 113.554 221.304 113.86 221.529 114.084C221.755 114.309 222.061 114.436 222.38 114.436C222.7 114.436 223.006 114.309 223.231 114.084C223.457 113.86 223.584 113.554 223.584 113.236H221.177ZM128.15 190.533C180.856 190.533 223.584 147.918 223.584 95.354H221.177C221.177 146.595 179.526 188.134 128.15 188.134V190.533ZM223.584 95.354C223.584 42.7832 180.856 0.171387 128.15 0.171387V2.57032C179.526 2.57032 221.177 44.1095 221.177 95.354H223.584ZM128.15 0.171387C75.4438 0.171387 32.7197 42.7866 32.7197 95.354H35.1267C35.1267 44.1061 76.7746 2.57032 128.15 2.57032V0.171387ZM32.7197 95.354C32.7197 147.918 75.4438 190.533 128.15 190.533V188.134C76.778 188.134 35.1267 146.599 35.1267 95.354H32.7197ZM32.7197 77.2935V113.408H35.1267V77.2935H32.7197ZM221.177 77.1222V113.236H223.584V77.1222H221.177Z" fill="#B5D2F3"/>
<path d="M35.9514 77.3588C35.973 76.858 35.8926 76.358 35.7152 75.8889C35.5378 75.4199 35.267 74.9915 34.9191 74.6295C34.5711 74.2675 34.1533 73.9794 33.6907 73.7826C33.2281 73.5858 32.7304 73.4844 32.2274 73.4844C31.7244 73.4844 31.2267 73.5858 30.7641 73.7826C30.3015 73.9794 29.8837 74.2675 29.5357 74.6295C29.1878 74.9915 28.917 75.4199 28.7396 75.8889C28.5622 76.358 28.4818 76.858 28.5034 77.3588V113.833C28.4818 114.334 28.5622 114.834 28.7396 115.303C28.917 115.772 29.1878 116.2 29.5357 116.562C29.8837 116.924 30.3015 117.212 30.7641 117.409C31.2267 117.606 31.7244 117.707 32.2274 117.707C32.7304 117.707 33.2281 117.606 33.6907 117.409C34.1533 117.212 34.5711 116.924 34.9191 116.562C35.267 116.2 35.5378 115.772 35.7152 115.303C35.8926 114.834 35.973 114.334 35.9514 113.833V77.3588ZM228.284 77.3588C228.305 76.858 228.225 76.358 228.048 75.8889C227.87 75.4199 227.599 74.9915 227.252 74.6295C226.904 74.2675 226.486 73.9794 226.023 73.7826C225.561 73.5858 225.063 73.4844 224.56 73.4844C224.057 73.4844 223.559 73.5858 223.097 73.7826C222.634 73.9794 222.216 74.2675 221.868 74.6295C221.52 74.9915 221.249 75.4199 221.072 75.8889C220.895 76.358 220.814 76.858 220.836 77.3588V113.833C220.814 114.334 220.895 114.834 221.072 115.303C221.249 115.772 221.52 116.2 221.868 116.562C222.216 116.924 222.634 117.212 223.097 117.409C223.559 117.606 224.057 117.707 224.56 117.707C225.063 117.707 225.561 117.606 226.023 117.409C226.486 117.212 226.904 116.924 227.252 116.562C227.599 116.2 227.87 115.772 228.048 115.303C228.225 114.834 228.305 114.334 228.284 113.833V77.3588Z" fill="#B5D2F3"/>
<path d="M87.3616 235.698C91.6701 233.951 90.7932 232.203 90.7932 231.332L88.6957 199.615L86.8492 183.748L84.0571 84.6824C84.0571 61.1729 101.501 39.1987 127.83 39.1987C154.159 39.1987 172.793 60.347 172.834 84.6996C172.077 131.732 170.805 149.632 169.027 183.405C168.811 188.021 168.209 195.009 168.01 199.279C167.019 220.41 165.898 230.763 165.898 231.332C165.898 232.206 165.025 233.951 169.33 235.698C173.635 237.446 183.586 239.712 183.586 240.267C183.586 240.815 166.775 240.267 166.775 240.267C157.14 240.267 157.14 233.077 157.14 231.332C157.14 229.585 154.513 199.598 154.513 199.598L153.636 238.32C153.636 240.068 154.513 242.686 160.644 244.434C160.644 244.434 174.024 246.452 174.024 247.179C174.024 247.909 158.017 247.179 158.017 247.179C145.827 247.179 145.827 240.068 145.827 240.068L143.2 208.333C143.2 208.333 142.32 240.064 142.32 244.431C142.32 247.854 142.915 250.472 152.478 252.22C157.096 253.498 166.418 255.082 166.418 255.716C166.418 256.35 145.147 255.716 145.147 255.716C133.761 254.842 132.685 246.977 132.685 246.977L128.37 231.164L124.072 246.98C124.072 246.98 122.321 254.842 110.936 255.716C110.936 255.716 91.6219 256.35 91.6219 255.716C91.6219 255.082 99.3587 253.663 104.279 252.22C110.936 250.27 114.44 247.854 114.44 244.431C114.44 240.064 113.563 208.327 113.563 208.327L110.936 240.061C110.936 240.061 110.936 247.854 98.7466 247.854C98.7466 247.854 81.3819 247.906 81.3819 247.176C81.3819 246.449 96.0439 244.434 96.0439 244.434C102.175 242.686 103.052 240.064 103.052 238.317L102.175 199.591C102.175 199.591 99.5478 229.578 99.5478 231.326C99.5478 233.073 99.5478 240.938 89.913 240.938C89.913 240.938 73.707 240.14 73.707 239.585C73.707 239.036 83.053 237.443 87.3581 235.695L87.3616 235.698Z" fill="#FE733E"/>
<path d="M86.849 183.744C86.849 183.744 85.0507 188.131 80.9863 190.495C76.9254 192.86 72.2145 193.628 67.7822 194.21C67.7822 194.21 73.8754 197.25 81.3267 196.575C85.9963 196.198 87.9563 197.384 88.6921 199.615L86.849 183.747V183.744ZM169.027 183.405C169.027 183.405 171.651 187.791 175.715 190.156C179.78 192.521 184.487 193.292 188.919 193.874C188.919 193.874 182.826 196.914 175.378 196.239C170.709 195.862 168.745 197.044 168.009 199.279L169.027 183.405Z" fill="#FE6446"/>
<path opacity="0.3" d="M169.076 182.661L169.416 177.171C147.905 187.294 127.913 186.229 127.913 186.229C127.913 186.229 107.801 187.068 86.6777 177.123L86.8153 182.459C86.8153 182.459 101.883 191.691 127.913 191.691C153.943 191.691 169.076 182.661 169.076 182.661Z" fill="#FE6446"/>
<path opacity="0.5" d="M110.609 66.5702C111.427 66.5893 112.24 66.4453 113.001 66.1466C113.762 65.8478 114.455 65.4005 115.04 64.8309C115.625 64.2613 116.089 63.5808 116.407 62.8296C116.724 62.0783 116.887 61.2714 116.887 60.4564C116.887 59.6413 116.723 58.8345 116.405 58.0834C116.088 57.3324 115.623 56.6522 115.037 56.0829C114.452 55.5136 113.759 55.0666 112.997 54.7683C112.236 54.4701 111.423 54.3265 110.606 54.346C109.004 54.3842 107.481 55.0452 106.363 56.1876C105.244 57.3301 104.618 58.8634 104.618 60.4598C104.619 62.0562 105.246 63.5892 106.365 64.731C107.485 65.8728 109.008 66.5329 110.609 66.5702Z" fill="#FEA777"/>
<path d="M172.752 85.3537C172.752 85.3537 173.398 77.6977 170.042 68.5818C160.837 43.5609 138.215 38.5232 126.021 39.2326C126.021 39.2326 143.311 47.3752 144.112 73.4345C144.476 84.9904 144.476 85.3537 144.476 85.3537H172.752Z" fill="#FE6B3C"/>
<path d="M144.301 149.971C144.301 159.673 137.826 164.83 127.352 164.83C116.882 164.83 111.122 158.717 111.122 149.971C111.122 149.971 116.882 158.076 127.352 158.076C137.826 158.076 144.304 149.971 144.304 149.971H144.301Z" fill="white"/>
<path d="M144.301 149.971C144.301 159.673 137.826 164.83 127.352 164.83C116.882 164.83 111.122 158.717 111.122 149.971C111.122 149.971 116.882 158.076 127.352 158.076C137.826 158.076 144.304 149.971 144.304 149.971H144.301Z" fill="white"/>
<path d="M144.301 149.971C144.301 159.673 140.384 174.961 127.352 174.961C114.32 174.961 111.122 158.717 111.122 149.971C111.122 149.971 111.122 164.83 127.352 164.83C145.102 164.83 144.304 149.971 144.304 149.971H144.301Z" fill="white"/>
<path d="M144.301 149.971C144.301 159.673 140.384 174.961 127.352 174.961C114.32 174.961 111.122 158.717 111.122 149.971C111.122 149.971 111.122 164.83 127.352 164.83C145.102 164.83 144.304 149.971 144.304 149.971H144.301Z" fill="#070909"/>
<path d="M96.5635 135.111C100.078 135.11 103.558 134.419 106.804 133.078C110.05 131.737 113 129.771 115.484 127.294C117.968 124.816 119.939 121.875 121.282 118.639C122.626 115.403 123.317 111.934 123.316 108.431C123.316 93.6952 111.339 81.752 96.5635 81.752C93.0492 81.7529 89.5695 82.4437 86.3231 83.785C83.0767 85.1263 80.1271 87.0918 77.6429 89.5692C75.1587 92.0467 73.1885 94.9876 71.8448 98.224C70.5011 101.46 69.8102 104.929 69.8115 108.431C69.8115 123.168 81.7915 135.111 96.5635 135.111Z" fill="#FE6446"/>
<path d="M96.4946 129.652C99.2464 129.651 101.971 129.11 104.513 128.059C107.055 127.009 109.365 125.47 111.31 123.53C113.255 121.59 114.798 119.287 115.85 116.753C116.902 114.219 117.443 111.503 117.442 108.76C117.444 106.018 116.903 103.301 115.851 100.767C114.799 98.2322 113.256 95.929 111.311 93.9887C109.366 92.0484 107.056 90.509 104.514 89.4584C101.972 88.4078 99.2467 87.8666 96.4946 87.8657C93.7425 87.8666 91.0176 88.4078 88.4753 89.4584C85.9331 90.509 83.6235 92.0484 81.6783 93.9887C79.733 95.929 78.1904 98.2322 77.1383 100.767C76.0863 103.301 75.5455 106.018 75.5469 108.76C75.546 111.503 76.0871 114.219 77.1393 116.753C78.1916 119.287 79.7343 121.59 81.6795 123.53C83.6246 125.47 85.9342 127.009 88.4761 128.059C91.0181 129.11 93.7428 129.651 96.4946 129.652Z" fill="white"/>
<path d="M95.886 111.471C96.7313 111.471 97.5683 111.305 98.3492 110.982C99.1301 110.66 99.8395 110.187 100.437 109.591C101.035 108.995 101.509 108.288 101.832 107.51C102.155 106.731 102.321 105.897 102.321 105.054C102.321 104.212 102.154 103.378 101.831 102.599C101.507 101.821 101.033 101.114 100.435 100.518C99.8368 99.9229 99.127 99.4505 98.346 99.1283C97.5649 98.8061 96.7278 98.6404 95.8825 98.6406C94.1753 98.6411 92.5382 99.3174 91.3314 100.521C90.1246 101.724 89.4468 103.356 89.4473 105.058C89.4477 106.759 90.1263 108.391 91.3338 109.594C92.5413 110.796 94.1788 111.472 95.886 111.471Z" fill="#090B0B"/>
<path d="M159.547 135.111C163.061 135.11 166.54 134.418 169.786 133.077C173.032 131.735 175.981 129.77 178.465 127.292C180.949 124.815 182.919 121.874 184.263 118.638C185.606 115.402 186.297 111.934 186.296 108.431C186.296 93.6952 174.319 81.752 159.543 81.752C156.029 81.7533 152.55 82.4445 149.304 83.786C146.058 85.1275 143.109 87.093 140.625 89.5705C138.141 92.0479 136.171 94.9886 134.828 98.2248C133.484 101.461 132.794 104.929 132.795 108.431C132.795 123.168 144.771 135.111 159.547 135.111Z" fill="#FE6446"/>
<path d="M158.481 129.614C161.233 129.614 163.958 129.073 166.5 128.023C169.043 126.972 171.353 125.433 173.298 123.494C175.244 121.554 176.787 119.251 177.839 116.716C178.892 114.182 179.433 111.466 179.432 108.723C179.433 105.98 178.892 103.264 177.839 100.729C176.787 98.195 175.244 95.892 173.298 93.9521C171.353 92.0121 169.043 90.4731 166.5 89.4229C163.958 88.3727 161.233 87.832 158.481 87.8315C155.729 87.8324 153.004 88.3735 150.462 89.4239C147.92 90.4743 145.611 92.0133 143.666 93.9533C141.721 95.8932 140.178 98.196 139.126 100.73C138.073 103.264 137.532 105.98 137.533 108.723C137.532 111.465 138.073 114.181 139.126 116.715C140.178 119.25 141.721 121.552 143.666 123.492C145.611 125.432 147.92 126.971 150.462 128.022C153.004 129.072 155.729 129.613 158.481 129.614Z" fill="white"/>
<path d="M158.87 111.471C160.577 111.471 162.214 110.794 163.421 109.59C164.627 108.386 165.304 106.754 165.303 105.053C165.303 103.351 164.623 101.72 163.416 100.517C162.208 99.3148 160.57 98.6397 158.863 98.6406C158.018 98.6409 157.181 98.807 156.4 99.1296C155.619 99.4522 154.909 99.925 154.312 100.521C153.714 101.117 153.24 101.824 152.917 102.603C152.594 103.381 152.428 104.215 152.428 105.058C152.428 105.9 152.595 106.734 152.918 107.513C153.242 108.291 153.716 108.998 154.314 109.594C154.912 110.189 155.622 110.662 156.403 110.984C157.184 111.306 158.021 111.472 158.866 111.471H158.87Z" fill="#090B0B"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 13 KiB

+11 -7
View File
@@ -1,8 +1,12 @@
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="25" height="25"/>
<path d="M5.50694 21.1637C5.17323 21.1637 4.89218 21.1064 4.66378 20.9926C4.436 20.8787 4.26333 20.7052 4.1476 20.4763C4.03187 20.2473 3.97247 19.9672 3.97247 19.6382V16.2463C3.97247 15.8281 3.88859 15.5239 3.72265 15.3341C3.55549 15.1449 3.25912 15.0449 2.83418 15.0353C2.70191 15.0353 2.59598 14.9859 2.51577 14.8853C2.43433 14.7859 2.39453 14.6708 2.39453 14.5425C2.39453 14.4033 2.43433 14.2882 2.51577 14.1984C2.5966 14.1087 2.70375 14.0593 2.83418 14.0496C3.25912 14.0394 3.55549 13.94 3.72265 13.7508C3.88981 13.5616 3.97247 13.2622 3.97247 12.8537V9.46177C3.97247 8.96352 4.10474 8.58456 4.36742 8.3261C4.6301 8.06763 5.01035 7.9375 5.50694 7.9375H9.55926C9.71173 7.9375 9.83725 7.98269 9.9389 8.07185C10.0399 8.16162 10.0914 8.27669 10.0914 8.41466C10.0914 8.5448 10.0485 8.65626 9.96278 8.75145C9.87706 8.84664 9.76316 8.89423 9.62049 8.89423H5.8578C5.6441 8.89423 5.48245 8.94906 5.37162 9.05871C5.26018 9.16836 5.20446 9.33766 5.20446 9.5678V12.9754C5.20446 13.2742 5.14323 13.5454 5.02199 13.7894C4.90075 14.034 4.73848 14.2256 4.53581 14.3659C4.33313 14.5051 4.09616 14.575 3.82246 14.575V14.5147C4.09616 14.5147 4.33313 14.5846 4.53581 14.7238C4.73848 14.863 4.90075 15.0552 5.02199 15.3004C5.14323 15.5444 5.20446 15.8155 5.20446 16.1143V19.537C5.20446 19.7671 5.26018 19.9358 5.37162 20.0461C5.48306 20.1569 5.64533 20.2106 5.8578 20.2106H9.62049C9.76194 20.2106 9.87583 20.2582 9.96278 20.3527C10.0497 20.4479 10.0914 20.56 10.0914 20.6895C10.0914 20.8191 10.0412 20.9299 9.9389 21.0251C9.83725 21.1203 9.71112 21.1673 9.55926 21.1673H5.50694V21.1643V21.1637Z" fill="#F8F7F7" stroke="#F8F7F7" stroke-width="0.259057" stroke-miterlimit="10"/>
<path d="M15.4423 21.1634C15.2898 21.1634 15.1643 21.1158 15.0626 21.0212C14.961 20.926 14.9102 20.8139 14.9102 20.6856C14.9102 20.5573 14.953 20.444 15.0387 20.3488C15.1245 20.2536 15.2384 20.2067 15.381 20.2067H19.1437C19.3574 20.2067 19.5191 20.153 19.6299 20.0422C19.7413 19.9325 19.7971 19.7632 19.7971 19.5331V16.1104C19.7971 15.8116 19.8583 15.5405 19.9795 15.2965C20.1008 15.0519 20.263 14.8603 20.4657 14.7199C20.6684 14.5807 20.9054 14.5108 21.1791 14.5108V14.5711C20.9054 14.5711 20.6684 14.5012 20.4657 14.362C20.263 14.2229 20.1008 14.0307 19.9795 13.7855C19.8583 13.5415 19.7971 13.2703 19.7971 12.9715V9.5639C19.7971 9.33496 19.7413 9.16566 19.6299 9.0548C19.5185 8.94515 19.3562 8.89033 19.1437 8.89033H15.381C15.2396 8.89033 15.1257 8.84273 15.0387 8.74754C14.953 8.65355 14.9102 8.54089 14.9102 8.41076C14.9102 8.27158 14.9604 8.15771 15.0626 8.06795C15.1637 7.97818 15.2898 7.93359 15.4423 7.93359H19.4946C19.9912 7.93359 20.3702 8.06373 20.6341 8.32219C20.898 8.58065 21.029 8.95961 21.029 9.45786V12.8498C21.029 13.2583 21.1129 13.5583 21.2789 13.7469C21.446 13.9361 21.7424 14.0361 22.1673 14.0457C22.2996 14.0554 22.4055 14.1048 22.4858 14.1945C22.5672 14.2843 22.607 14.3994 22.607 14.5385C22.607 14.6687 22.5672 14.7826 22.4858 14.8814C22.4055 14.9808 22.2978 15.0314 22.1673 15.0314C21.7424 15.041 21.4466 15.141 21.2789 15.3302C21.1117 15.5194 21.029 15.823 21.029 16.2424V19.6343C21.029 19.9639 20.9709 20.2422 20.8539 20.4723C20.737 20.7025 20.5655 20.8736 20.3377 20.9887C20.1093 21.1025 19.8283 21.1598 19.4946 21.1598H15.4423V21.1628V21.1634Z" fill="#F8F7F7" stroke="#F8F7F7" stroke-width="0.259057" stroke-miterlimit="10"/>
<path d="M16.4845 15.8401C17.2224 15.8401 17.8206 15.2515 17.8206 14.5255C17.8206 13.7996 17.2224 13.2109 16.4845 13.2109C15.7467 13.2109 15.1484 13.7996 15.1484 14.5255C15.1484 15.2515 15.7467 15.8401 16.4845 15.8401Z" fill="#F8F7F7" stroke="#F8F7F7" stroke-width="0.259057" stroke-miterlimit="10"/>
<path d="M9.00014 15.8401C9.73798 15.8401 10.3362 15.2515 10.3362 14.5255C10.3362 13.7996 9.73798 13.2109 9.00014 13.2109C8.2623 13.2109 7.66406 13.7996 7.66406 14.5255C7.66406 15.2515 8.2623 15.8401 9.00014 15.8401Z" fill="#F8F7F7" stroke="#F8F7F7" stroke-width="0.259057" stroke-miterlimit="10"/>
<path d="M12.0442 4.13327L11.942 6.81971C11.942 6.97033 11.7974 7.04564 11.5084 7.04564C11.2194 7.04564 11.0749 6.97033 11.0749 6.81971C11.0492 6.15036 11.0284 5.63103 11.0112 5.26291C11.0027 4.88637 10.9941 4.61826 10.9855 4.45921C10.9769 4.30016 10.9727 4.20376 10.9727 4.17062V4.12062C10.9727 3.92843 11.1515 3.83203 11.5084 3.83203C11.8654 3.83203 12.0442 3.93264 12.0442 4.13327ZM14.213 4.13327L14.1108 6.81971C14.1108 6.97033 13.9663 7.04564 13.6773 7.04564C13.3883 7.04564 13.2437 6.97033 13.2437 6.81971C13.218 6.15036 13.1972 5.63103 13.1801 5.26291C13.1715 4.88637 13.1629 4.61826 13.1543 4.45921C13.1458 4.30016 13.1415 4.20376 13.1415 4.17062V4.12062C13.1415 3.92843 13.3203 3.83203 13.6773 3.83203C14.0342 3.83203 14.213 3.93264 14.213 4.13327Z" fill="#F8F7F7" stroke="#F8F7F7" stroke-width="0.259057" stroke-miterlimit="10"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M56.391 216.716C52.9738 216.716 50.0959 216.13 47.7571 214.964C45.4246 213.798 43.6565 212.021 42.4714 209.677C41.2863 207.332 40.678 204.464 40.678 201.095V166.362C40.678 162.08 39.8191 158.965 38.1199 157.021C36.4082 155.084 33.3733 154.06 29.022 153.961C27.6675 153.961 26.5828 153.456 25.7614 152.425C24.9275 151.408 24.5199 150.229 24.5199 148.915C24.5199 147.49 24.9275 146.311 25.7614 145.392C26.5891 144.473 27.6864 143.967 29.022 143.868C33.3733 143.763 36.4082 142.746 38.1199 140.808C39.8316 138.871 40.678 135.805 40.678 131.622V96.8885C40.678 91.7864 42.0325 87.9059 44.7223 85.2593C47.4122 82.6125 51.3059 81.28 56.391 81.28H97.8868C99.4481 81.28 100.733 81.7427 101.774 82.6557C102.809 83.575 103.336 84.7533 103.336 86.1661C103.336 87.4988 102.897 88.6401 102.019 89.6148C101.141 90.5896 99.9747 91.0769 98.5138 91.0769H59.9838C57.7955 91.0769 56.1402 91.6384 55.0053 92.7612C53.8642 93.884 53.2936 95.6176 53.2936 97.9743V132.868C53.2936 135.928 52.6666 138.705 51.4251 141.203C50.1836 143.708 48.522 145.67 46.4466 147.107C44.3712 148.532 41.9446 149.248 39.1419 149.248V148.631C41.9446 148.631 44.3712 149.346 46.4466 150.772C48.522 152.197 50.1836 154.165 51.4251 156.676C52.6666 159.175 53.2936 161.951 53.2936 165.01V200.059C53.2936 202.415 53.8642 204.143 55.0053 205.272C56.1465 206.407 57.8081 206.957 59.9838 206.957H98.5138C99.9622 206.957 101.128 207.444 102.019 208.412C102.909 209.386 103.336 210.534 103.336 211.86C103.336 213.188 102.822 214.322 101.774 215.297C100.733 216.272 99.4418 216.753 97.8868 216.753H56.391V216.716Z" fill="#F8F7F7"/>
<path d="M102.01 86.17C102.01 85.1303 101.637 84.3137 100.89 83.65C100.119 82.9789 99.1572 82.6106 97.8899 82.61H56.3899C51.5317 82.6102 48.0161 83.8724 45.6499 86.2C43.2917 88.5204 41.9999 92.0163 41.9999 96.89V131.62C41.9999 135.935 41.1357 139.397 39.1099 141.69C37.0383 144.032 33.5591 145.065 29.1099 145.18L29.1199 145.19C28.087 145.267 27.324 145.644 26.7499 146.28C26.1755 146.914 25.8499 147.763 25.8499 148.92C25.8507 149.679 26.0186 150.361 26.3699 150.98L26.7899 151.58L26.7999 151.6C27.3574 152.298 28.052 152.64 29.0199 152.64H29.0499C33.5297 152.741 37.0301 153.789 39.1099 156.14L39.1199 156.15C41.1288 158.449 41.9997 161.952 41.9999 166.36V201.1C42.0005 204.311 42.5902 206.963 43.6599 209.08C44.7189 211.173 46.2781 212.744 48.3499 213.78L50.0299 214.47C51.8225 215.072 53.9347 215.39 56.3899 215.39H57.7199V215.43H97.8899C99.1424 215.429 100.1 215.051 100.87 214.33L101.39 213.76C101.823 213.18 102.01 212.557 102.01 211.86C102.01 211.105 101.834 210.452 101.47 209.87L101.04 209.31C100.426 208.643 99.6251 208.28 98.5099 208.28H59.9799C57.5932 208.279 55.5419 207.673 54.0699 206.21C52.5842 204.737 51.9701 202.606 51.9699 200.06V165.01C51.9699 162.139 51.3813 159.569 50.2399 157.27C49.0889 154.943 47.566 153.153 45.6999 151.87C44.6084 151.12 43.3902 150.609 42.0499 150.3C41.1185 150.473 40.1487 150.57 39.1399 150.57H37.8199V147.3H39.1399C40.1482 147.3 41.119 147.397 42.0499 147.57C43.3895 147.261 44.6089 146.759 45.6999 146.01C47.5698 144.713 49.0903 142.929 50.2399 140.61C51.3812 138.312 51.9697 135.741 51.9699 132.87V97.97C51.9706 95.4287 52.5816 93.2877 54.0699 91.82L54.6499 91.31C56.0524 90.2241 57.8774 89.7506 59.9799 89.75H98.5099C99.6399 89.75 100.434 89.3905 101.03 88.73C101.686 88.0013 102.009 87.1751 102.01 86.17ZM104.66 86.17C104.659 87.8268 104.098 89.2811 103 90.5C101.841 91.7864 100.3 92.4 98.5099 92.4H59.9799C58.0146 92.4007 56.7464 92.9039 55.9399 93.7C55.1508 94.4765 54.6206 95.8051 54.6199 97.97V132.87C54.6197 136.115 53.9494 139.094 52.6099 141.79C51.6111 143.805 50.3504 145.517 48.8199 146.91L47.1999 148.2C46.8005 148.474 46.3815 148.714 45.9599 148.94C46.3813 149.166 46.8007 149.406 47.1999 149.68C49.4806 151.247 51.2796 153.4 52.6099 156.09C53.9494 158.787 54.6199 161.764 54.6199 165.01V200.06C54.6201 202.224 55.1464 203.545 55.9399 204.33L56.6399 204.87C57.4302 205.348 58.5096 205.63 59.9799 205.63H98.5099C100.289 205.63 101.824 206.245 102.99 207.51L103 207.52C104.121 208.749 104.66 210.218 104.66 211.86C104.66 213.154 104.27 214.305 103.53 215.31L102.68 216.27C101.37 217.496 99.7433 218.079 97.8899 218.08H55.0599V217.98C52.0548 217.844 49.4127 217.267 47.1699 216.15C44.5809 214.855 42.6006 212.87 41.2899 210.28C39.9907 207.709 39.3505 204.622 39.3499 201.1V166.36C39.3497 162.213 38.5139 159.489 37.1299 157.9L36.5599 157.35C35.1096 156.141 32.6794 155.373 28.9899 155.29C27.2647 155.282 25.7979 154.602 24.7199 153.25C23.6996 151.994 23.1909 150.519 23.1899 148.92C23.1899 147.226 23.6868 145.705 24.7799 144.5C25.8598 143.304 27.286 142.672 28.9199 142.55L28.9899 142.54C33.214 142.439 35.7865 141.451 37.1299 139.93C38.5265 138.348 39.3499 135.67 39.3499 131.62V96.89C39.3499 91.5595 40.7685 87.2829 43.7899 84.31C46.803 81.3457 51.0802 79.9502 56.3899 79.95H97.8899C99.7359 79.9506 101.342 80.5129 102.65 81.66C103.971 82.8347 104.66 84.3842 104.66 86.17Z" fill="#F8F7F7"/>
<path d="M158.129 216.713C156.568 216.713 155.282 216.226 154.241 215.257C153.201 214.282 152.68 213.134 152.68 211.821C152.68 210.507 153.119 209.347 153.996 208.372C154.875 207.397 156.041 206.917 157.501 206.917H196.031C198.22 206.917 199.876 206.367 201.01 205.232C202.151 204.109 202.722 202.375 202.722 200.019V164.97C202.722 161.911 203.349 159.135 204.59 156.636C205.832 154.131 207.493 152.169 209.569 150.732C211.644 149.306 214.071 148.591 216.874 148.591V149.208C214.071 149.208 211.644 148.492 209.569 147.067C207.493 145.642 205.832 143.674 204.59 141.164C203.349 138.665 202.722 135.888 202.722 132.828V97.9343C202.722 95.59 202.151 93.8564 201.01 92.7211C199.869 91.5983 198.207 91.037 196.031 91.037H157.501C156.053 91.037 154.887 90.5496 153.996 89.5748C153.119 88.6124 152.68 87.4587 152.68 86.1262C152.68 84.701 153.194 83.5349 154.241 82.6158C155.276 81.6966 156.568 81.24 158.129 81.24H199.625C204.71 81.24 208.591 82.5726 211.293 85.2192C213.995 87.8659 215.337 91.7464 215.337 96.8485V131.582C215.337 135.765 216.196 138.837 217.896 140.768C219.607 142.706 222.642 143.73 226.993 143.828C228.348 143.927 229.432 144.433 230.255 145.352C231.088 146.271 231.496 147.45 231.496 148.874C231.496 150.207 231.088 151.374 230.255 152.386C229.432 153.403 228.329 153.922 226.993 153.922C222.642 154.02 219.613 155.044 217.896 156.981C216.184 158.919 215.337 162.028 215.337 166.322V201.055C215.337 204.43 214.742 207.28 213.544 209.636C212.347 211.994 210.591 213.746 208.258 214.924C205.919 216.09 203.042 216.676 199.625 216.676H158.129V216.713Z" fill="#F8F7F7"/>
<path d="M151.35 86.13C151.35 84.3393 152.019 82.8001 153.36 81.62L154.4 80.87C155.494 80.2252 156.749 79.91 158.13 79.91H199.62C204.933 79.91 209.196 81.3091 212.22 84.27C215.258 87.2451 216.66 91.5227 216.66 96.85V131.58C216.66 135.627 217.502 138.312 218.89 139.89L219.45 140.44C220.9 141.65 223.33 142.416 227.02 142.5H227.09C228.744 142.621 230.155 143.264 231.23 144.46C232.322 145.664 232.82 147.179 232.82 148.87C232.82 150.495 232.31 151.955 231.28 153.21C230.203 154.544 228.729 155.235 227.01 155.24L227.02 155.25C223.327 155.334 220.903 156.106 219.45 157.32L218.89 157.86C217.496 159.437 216.661 162.149 216.66 166.32V201.06C216.66 204.586 216.045 207.654 214.73 210.24C213.407 212.846 211.445 214.803 208.86 216.11C206.291 217.39 203.183 218 199.62 218H159.46V218.04H158.13C156.264 218.04 154.648 217.445 153.34 216.23C152.057 215.027 151.35 213.533 151.35 211.82C151.351 210.184 151.91 208.702 153.01 207.48C154.173 206.191 155.717 205.59 157.5 205.59H196.03C198.007 205.59 199.269 205.092 200.07 204.29C200.86 203.512 201.4 202.186 201.4 200.02V164.97C201.4 161.725 202.062 158.746 203.4 156.05C204.732 153.364 206.534 151.217 208.81 149.64C209.206 149.369 209.623 149.124 210.04 148.9C209.623 148.676 209.216 148.431 208.82 148.16C206.538 146.594 204.732 144.441 203.4 141.75C202.062 139.054 201.401 136.074 201.4 132.83V97.93C201.4 95.7882 200.872 94.463 200.08 93.67L199.38 93.12C198.586 92.6412 197.497 92.36 196.03 92.36H157.5C155.72 92.3597 154.187 91.7458 153.02 90.47C151.914 89.2564 151.351 87.7811 151.35 86.13ZM154.01 86.13C154.011 87.1407 154.333 87.9704 154.98 88.68C155.594 89.3503 156.388 89.7097 157.5 89.71H196.03C198.426 89.71 200.473 90.3354 201.94 91.78C203.423 93.2567 204.05 95.3951 204.05 97.93V132.83C204.051 135.701 204.639 138.271 205.78 140.57C206.933 142.898 208.453 144.688 210.32 145.97C211.41 146.718 212.623 147.221 213.96 147.53C214.892 147.357 215.862 147.26 216.87 147.26H218.2V150.53H216.87C215.861 150.53 214.892 150.433 213.96 150.26C212.622 150.569 211.411 151.081 210.32 151.83L210.31 151.82C208.44 153.118 206.931 154.91 205.78 157.23C204.639 159.529 204.05 162.098 204.05 164.97V200.02C204.05 202.561 203.436 204.702 201.95 206.17C200.483 207.638 198.43 208.24 196.03 208.24H157.5C156.365 208.24 155.575 208.6 154.98 209.26C154.327 209.987 154.011 210.829 154.01 211.82C154.01 212.735 154.353 213.543 155.15 214.29C155.816 214.907 156.614 215.259 157.62 215.35H199.62C202.888 215.35 205.553 214.789 207.66 213.74L209.12 212.86C210.484 211.884 211.558 210.619 212.36 209.04C213.441 206.916 214.01 204.28 214.01 201.06V166.32C214.011 161.904 214.871 158.397 216.9 156.1C218.984 153.749 222.478 152.702 226.96 152.6L226.99 152.59C227.937 152.59 228.657 152.247 229.22 151.55L229.23 151.54C229.861 150.774 230.17 149.906 230.17 148.87C230.17 148.005 229.983 147.318 229.65 146.76L229.27 146.24C228.703 145.606 227.949 145.228 226.9 145.15C222.45 145.04 218.97 143.992 216.9 141.65C214.891 139.365 214.01 135.896 214.01 131.58V96.85C214.01 91.973 212.727 88.4881 210.36 86.17C207.98 83.8389 204.477 82.57 199.62 82.57H158.13C157.168 82.57 156.383 82.7715 155.73 83.16L155.12 83.61C154.371 84.2677 154.01 85.0717 154.01 86.13Z" fill="#F8F7F7"/>
<path d="M168.801 162.203C176.357 162.203 182.483 156.175 182.483 148.741C182.483 141.308 176.357 135.28 168.801 135.28C161.246 135.28 155.12 141.308 155.12 148.741C155.12 156.175 161.246 162.203 168.801 162.203Z" fill="#F8F7F7"/>
<path d="M181.16 148.74C181.159 142.06 175.643 136.61 168.8 136.61C161.958 136.61 156.45 142.06 156.45 148.74C156.45 155.421 161.957 160.879 168.8 160.88C175.643 160.88 181.16 155.421 181.16 148.74ZM183.81 148.74C183.81 156.927 177.068 163.53 168.8 163.53C160.533 163.529 153.79 156.926 153.79 148.74C153.79 140.555 160.534 133.951 168.8 133.95C177.067 133.95 183.809 140.554 183.81 148.74Z" fill="#F8F7F7"/>
<path d="M92.1614 162.203C99.7169 162.203 105.843 156.175 105.843 148.741C105.843 141.308 99.7169 135.28 92.1614 135.28C84.6059 135.28 78.4799 141.308 78.4799 148.741C78.4799 156.175 84.6059 162.203 92.1614 162.203Z" fill="#F8F7F7"/>
<path d="M104.52 148.74C104.519 142.06 99.0026 136.61 92.1599 136.61C85.3179 136.61 79.8108 142.06 79.8099 148.74C79.8099 155.421 85.3173 160.879 92.1599 160.88C99.0032 160.88 104.52 155.421 104.52 148.74ZM107.17 148.74C107.17 156.927 100.428 163.53 92.1599 163.53C83.8929 163.529 77.1499 156.926 77.1499 148.74C77.1508 140.555 83.8934 133.95 92.1599 133.95C100.427 133.95 107.169 140.554 107.17 148.74Z" fill="#F8F7F7"/>
<path d="M123.333 42.3247L122.286 69.8338C122.286 71.3762 120.805 72.1474 117.846 72.1474C114.887 72.1474 113.407 71.3762 113.407 69.8338C113.144 62.9797 112.931 57.6617 112.755 53.8922C112.668 50.0364 112.58 47.291 112.491 45.6623C112.403 44.0336 112.36 43.0465 112.36 42.7071V42.1951C112.36 40.2271 114.191 39.24 117.846 39.24C121.502 39.24 123.333 40.2702 123.333 42.3247ZM145.541 42.3247L144.495 69.8338C144.495 71.3762 143.015 72.1474 140.056 72.1474C137.096 72.1474 135.615 71.3762 135.615 69.8338C135.352 62.9797 135.139 57.6617 134.964 53.8922C134.876 50.0364 134.788 47.291 134.7 45.6623C134.613 44.0336 134.569 43.0465 134.569 42.7071V42.1951C134.569 40.2271 136.4 39.24 140.056 39.24C143.71 39.24 145.541 40.2702 145.541 42.3247Z" fill="#F8F7F7"/>
<path d="M117.85 37.91C119.758 37.9104 121.401 38.1798 122.61 38.86C123.929 39.6022 124.659 40.8036 124.66 42.32V42.38L123.61 69.88L123.6 69.87C123.595 70.4631 123.46 71.0431 123.13 71.56C122.796 72.0824 122.322 72.4731 121.79 72.75C120.767 73.2828 119.4 73.4696 117.85 73.47C116.299 73.47 114.924 73.2836 113.9 72.75C113.37 72.4732 112.904 72.0817 112.57 71.56C112.239 71.0424 112.096 70.464 112.09 69.87L112.08 69.88C111.817 63.0278 111.606 57.7124 111.43 53.95V53.92C111.343 50.0658 111.257 47.3356 111.17 45.73C111.084 44.1234 111.031 43.0958 111.03 42.71V42.2C111.03 41.4947 111.205 40.8058 111.58 40.2C111.953 39.6012 112.481 39.1438 113.1 38.81C114.304 38.1614 115.947 37.91 117.85 37.91ZM140.06 37.91C141.967 37.9104 143.611 38.1798 144.82 38.86C146.138 39.6023 146.869 40.804 146.87 42.32V42.38L145.82 69.88L145.81 69.87C145.805 70.464 145.661 71.0424 145.33 71.56C144.996 72.0817 144.531 72.4733 144 72.75C142.978 73.283 141.61 73.4696 140.06 73.47C138.509 73.47 137.134 73.2835 136.11 72.75C135.579 72.4734 135.115 72.0817 134.78 71.56C134.449 71.0423 134.296 70.4642 134.29 69.87C134.027 63.0179 133.815 57.7127 133.64 53.95V53.92C133.552 50.0658 133.467 47.3356 133.38 45.73C133.295 44.1249 133.241 43.0959 133.24 42.71V42.2C133.24 41.4947 133.405 40.8058 133.78 40.2C134.153 39.5989 134.69 39.1446 135.31 38.81C136.514 38.1615 138.156 37.91 140.06 37.91ZM113.69 42.71C113.691 43.0079 113.732 43.9509 113.82 45.59C113.909 47.2368 113.994 49.9905 114.08 53.83L114.73 69.78V69.83C114.73 69.9928 114.769 70.0796 114.8 70.13C114.836 70.1858 114.922 70.2815 115.13 70.39C115.586 70.6276 116.443 70.82 117.85 70.82C119.254 70.8196 120.104 70.6272 120.56 70.39C120.769 70.2813 120.855 70.1859 120.89 70.13C120.922 70.0797 120.96 69.9939 120.96 69.83V69.78L122.01 42.32L121.97 41.96C121.894 41.6258 121.692 41.3846 121.31 41.17C120.692 40.8222 119.594 40.5704 117.85 40.57C116.099 40.57 114.986 40.813 114.36 41.15C114.069 41.3072 113.915 41.4639 113.83 41.6C113.748 41.7328 113.69 41.9213 113.69 42.2V42.71ZM135.89 42.71C135.891 43.0079 135.933 43.9496 136.02 45.59C136.109 47.2368 136.203 49.9906 136.29 53.83L136.94 69.78V69.83C136.94 69.9935 136.978 70.0797 137.01 70.13C137.046 70.1859 137.132 70.2813 137.34 70.39C137.797 70.6276 138.653 70.82 140.06 70.82C141.465 70.8195 142.315 70.6273 142.77 70.39C142.979 70.2814 143.065 70.1859 143.1 70.13C143.132 70.0796 143.17 69.9931 143.17 69.83V69.78L144.22 42.32C144.219 41.7884 144.025 41.4547 143.52 41.17C142.902 40.8223 141.804 40.5705 140.06 40.57C138.309 40.57 137.196 40.813 136.57 41.15C136.279 41.3071 136.125 41.4639 136.04 41.6C135.958 41.7327 135.89 41.9213 135.89 42.2V42.71Z" fill="#F8F7F7"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

+6 -38
View File
@@ -1,38 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 304 182" style="enable-background:new 0 0 304 182;" xml:space="preserve">
<style type="text/css">
.st0{fill:#fff;}
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#fff;}
</style>
<g>
<path class="st0" d="M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2
c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8
c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8
c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4
c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1
c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6
c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7
c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6
C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4
c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1
h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5
c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1
c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8
c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3
c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5
c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1
c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1
c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2
c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1
c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6
c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z"/>
<g>
<path class="st1" d="M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4
c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z"/>
<path class="st1" d="M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5
c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z"/>
</g>
</g>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M209.268 152.965C211.578 155.967 206.708 168.319 204.525 173.848C203.86 175.525 205.28 176.184 206.765 174.924C216.448 166.706 218.957 149.484 216.967 147C215.002 144.53 198.08 142.412 187.764 149.765C186.17 150.898 186.445 152.46 188.205 152.255C194.016 151.538 206.964 149.97 209.268 152.965ZM203.879 165.823C207.194 163.404 204.352 159.8 200.973 161.215C178.49 170.584 154.08 175.122 131.853 175.122C98.9379 175.122 67.0403 166.232 41.2547 151.474C39.0019 150.181 37.3315 152.466 39.2131 154.124C63.1043 175.346 94.6947 188.101 129.754 188.101C154.778 188.101 183.84 180.37 203.879 165.823Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M190.157 132.447C186.97 132.447 183.853 132.108 180.819 131.416C177.773 130.719 175.443 129.932 173.824 129.029C172.832 128.492 172.211 127.928 171.962 127.378C171.719 126.815 171.591 126.264 171.591 125.714V122.712C171.591 121.471 172.058 120.837 172.973 120.837C173.325 120.837 173.696 120.92 174.08 121.048C174.471 121.196 174.983 121.4 175.623 121.676C177.671 122.578 179.891 123.263 182.304 123.749C184.711 124.229 187.111 124.472 189.511 124.472C193.331 124.472 196.282 123.82 198.368 122.501C200.461 121.196 201.498 119.333 201.498 116.914C201.498 115.25 200.954 113.874 199.853 112.76C198.759 111.647 196.723 110.629 193.76 109.656L184.96 106.962C180.499 105.58 177.267 103.576 175.251 100.959C173.235 98.322 172.231 95.4612 172.231 92.338C172.231 89.8612 172.775 87.6724 173.882 85.7652C174.97 83.8644 176.41 82.2452 178.208 80.8948C180.032 79.5508 182.138 78.5396 184.538 77.8356C186.931 77.1508 189.479 76.7988 192.167 76.7988C193.511 76.7988 194.874 76.8884 196.263 77.0612C197.639 77.2276 198.944 77.458 200.179 77.7332C201.415 78.0212 202.567 78.3284 203.623 78.6676C204.685 79.0196 205.53 79.3652 206.176 79.7044C207.015 80.1844 207.61 80.6708 207.975 81.1572C208.327 81.6372 208.506 82.29 208.506 83.1284V85.9188C208.506 87.1668 208.045 87.7812 207.117 87.7812C206.624 87.7812 205.856 87.5508 204.787 87.0644C201.331 85.5348 197.427 84.786 193.133 84.786C189.664 84.786 186.97 85.3364 185.063 86.4372C183.149 87.5508 182.195 89.3108 182.195 91.73C182.195 93.3812 182.797 94.7828 184.007 95.922C185.21 97.0612 187.431 98.1492 190.688 99.1924L199.277 101.893C203.661 103.263 206.791 105.17 208.659 107.576C210.541 110.002 211.482 112.76 211.482 115.864C211.482 118.431 210.951 120.728 209.882 122.764C208.819 124.805 207.354 126.54 205.472 127.992C203.603 129.445 201.363 130.546 198.746 131.308C196.122 132.076 193.261 132.447 190.157 132.447Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M112.301 130.885C111.239 130.885 110.464 130.712 109.965 130.328C109.466 129.938 109.043 129.17 108.691 127.992L94.4707 82.1876C94.1315 81.01 93.9459 80.2228 93.9459 79.8132C93.9459 78.8468 94.4451 78.3604 95.4371 78.3604H101.37C102.503 78.3604 103.296 78.5524 103.763 78.9364C104.218 79.3076 104.621 80.0756 104.973 81.266L115.155 120.434L124.608 81.266C124.89 80.0756 125.274 79.3076 125.767 78.9364C126.259 78.5524 127.072 78.3604 128.199 78.3604H133.095C134.215 78.3604 135.027 78.5524 135.527 78.9364C136.019 79.3076 136.41 80.0756 136.691 81.266L146.247 120.952L156.743 81.266C157.095 80.0756 157.498 79.3076 157.959 78.9364C158.426 78.5524 159.213 78.3604 160.346 78.3604H165.965C166.963 78.3604 167.456 78.8468 167.456 79.8132C167.456 80.0756 167.411 80.3956 167.354 80.7348C167.271 81.0932 167.143 81.5732 166.919 82.1876L152.288 127.992C151.936 129.17 151.507 129.938 151.008 130.328C150.515 130.712 149.735 130.885 148.679 130.885H143.475C142.349 130.885 141.536 130.693 141.043 130.284C140.551 129.868 140.16 129.061 139.879 127.896L130.432 89.7524L121.107 127.896C120.826 129.061 120.429 129.868 119.936 130.284C119.437 130.693 118.631 130.885 117.498 130.885H112.301Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.6099 124.472C65.6003 124.472 67.6803 124.108 69.8755 123.384C72.0643 122.655 73.9715 121.4 75.5971 119.596C76.5955 118.495 77.2739 117.234 77.6707 115.813C78.0547 114.405 78.2403 112.696 78.2403 110.687V108.204C76.4867 107.788 74.6307 107.461 72.6787 107.218C70.7331 106.981 68.8451 106.853 67.0019 106.853C62.9763 106.853 59.9619 107.647 57.9907 109.24C56.0131 110.828 55.0147 113.1 55.0147 116.088C55.0147 118.847 55.7635 120.927 57.2483 122.348C58.7331 123.768 60.8579 124.472 63.6099 124.472ZM88.2243 115.461C88.2243 117.669 88.4483 119.423 88.9091 120.741C89.3763 122.06 90.0291 123.48 90.8739 124.991C91.1555 125.477 91.2963 125.925 91.2963 126.328C91.2963 126.962 90.9059 127.551 90.1315 128.095L86.3107 130.591C85.7475 130.93 85.2163 131.109 84.7235 131.109C84.0771 131.109 83.4819 130.834 82.9187 130.284C82.0611 129.445 81.3443 128.536 80.7491 127.532C80.1347 126.533 79.5203 125.362 78.8867 124.05C74.1443 129.509 68.2115 132.242 61.0691 132.242C55.9747 132.242 51.9427 130.834 48.9667 127.992C46.0035 125.164 44.5187 121.362 44.5187 116.6C44.5187 111.564 46.3555 107.493 50.0419 104.421C53.7091 101.349 58.6691 99.8068 64.8835 99.8068C66.9379 99.8068 69.0755 99.9668 71.3027 100.274C73.5235 100.581 75.8467 101.023 78.2403 101.573V97.2276C78.2403 92.7348 77.2995 89.5732 75.3859 87.7364C73.4787 85.906 70.1955 84.9972 65.5299 84.9972C63.3987 84.9972 61.2227 85.2468 58.9955 85.7652C56.7747 86.2836 54.5923 86.9556 52.4739 87.7812C51.4819 88.1972 50.7715 88.4596 50.3555 88.562C49.9331 88.6644 49.6131 88.7156 49.4019 88.7156C48.5571 88.7156 48.1219 88.1012 48.1219 86.8468V83.954C48.1219 82.9812 48.2755 82.29 48.5571 81.8868C48.8387 81.4644 49.4019 81.0484 50.2531 80.6388C52.3715 79.5956 54.9187 78.6996 57.8819 77.9444C60.8579 77.1828 64.0003 76.7988 67.3283 76.7988C74.5347 76.7988 79.8211 78.418 83.1811 81.618C86.5347 84.8308 88.2243 89.682 88.2243 96.178V115.461Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

+6 -38
View File
@@ -1,38 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 304 182" style="enable-background:new 0 0 304 182;" xml:space="preserve">
<style type="text/css">
.st0{fill:#252F3E;}
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}
</style>
<g>
<path class="st0" d="M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2
c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8
c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8
c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4
c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1
c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6
c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7
c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6
C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4
c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1
h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5
c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1
c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8
c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3
c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5
c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1
c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1
c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2
c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1
c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6
c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z"/>
<g>
<path class="st1" d="M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4
c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z"/>
<path class="st1" d="M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5
c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z"/>
</g>
</g>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M209.268 152.965C211.578 155.967 206.708 168.319 204.525 173.848C203.86 175.525 205.28 176.184 206.765 174.924C216.448 166.706 218.957 149.484 216.967 147C215.002 144.53 198.08 142.412 187.764 149.765C186.17 150.898 186.445 152.46 188.205 152.255C194.016 151.538 206.964 149.97 209.268 152.965ZM203.879 165.823C207.194 163.404 204.352 159.8 200.973 161.215C178.49 170.584 154.08 175.122 131.853 175.122C98.9379 175.122 67.0403 166.232 41.2547 151.474C39.0019 150.181 37.3315 152.466 39.2131 154.124C63.1043 175.346 94.6947 188.101 129.754 188.101C154.778 188.101 183.84 180.37 203.879 165.823Z" fill="#FF9900"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M190.157 132.447C186.97 132.447 183.853 132.108 180.819 131.416C177.773 130.719 175.443 129.932 173.824 129.029C172.832 128.492 172.211 127.928 171.962 127.378C171.719 126.815 171.591 126.264 171.591 125.714V122.712C171.591 121.471 172.058 120.837 172.973 120.837C173.325 120.837 173.696 120.92 174.08 121.048C174.471 121.196 174.983 121.4 175.623 121.676C177.671 122.578 179.891 123.263 182.304 123.749C184.711 124.229 187.111 124.472 189.511 124.472C193.331 124.472 196.282 123.82 198.368 122.501C200.461 121.196 201.498 119.333 201.498 116.914C201.498 115.25 200.954 113.874 199.853 112.76C198.759 111.647 196.723 110.629 193.76 109.656L184.96 106.962C180.499 105.58 177.267 103.576 175.251 100.959C173.235 98.322 172.231 95.4612 172.231 92.338C172.231 89.8612 172.775 87.6724 173.882 85.7652C174.97 83.8644 176.41 82.2452 178.208 80.8948C180.032 79.5508 182.138 78.5396 184.538 77.8356C186.931 77.1508 189.479 76.7988 192.167 76.7988C193.511 76.7988 194.874 76.8884 196.263 77.0612C197.639 77.2276 198.944 77.458 200.179 77.7332C201.415 78.0212 202.567 78.3284 203.623 78.6676C204.685 79.0196 205.53 79.3652 206.176 79.7044C207.015 80.1844 207.61 80.6708 207.975 81.1572C208.327 81.6372 208.506 82.29 208.506 83.1284V85.9188C208.506 87.1668 208.045 87.7812 207.117 87.7812C206.624 87.7812 205.856 87.5508 204.787 87.0644C201.331 85.5348 197.427 84.786 193.133 84.786C189.664 84.786 186.97 85.3364 185.063 86.4372C183.149 87.5508 182.195 89.3108 182.195 91.73C182.195 93.3812 182.797 94.7828 184.007 95.922C185.21 97.0612 187.431 98.1492 190.688 99.1924L199.277 101.893C203.661 103.263 206.791 105.17 208.659 107.576C210.541 110.002 211.482 112.76 211.482 115.864C211.482 118.431 210.951 120.728 209.882 122.764C208.819 124.805 207.354 126.54 205.472 127.992C203.603 129.445 201.363 130.546 198.746 131.308C196.122 132.076 193.261 132.447 190.157 132.447Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M112.301 130.885C111.239 130.885 110.464 130.712 109.965 130.328C109.466 129.938 109.043 129.17 108.691 127.992L94.4707 82.1876C94.1315 81.01 93.9459 80.2228 93.9459 79.8132C93.9459 78.8468 94.4451 78.3604 95.4371 78.3604H101.37C102.503 78.3604 103.296 78.5524 103.763 78.9364C104.218 79.3076 104.621 80.0756 104.973 81.266L115.155 120.434L124.608 81.266C124.89 80.0756 125.274 79.3076 125.767 78.9364C126.259 78.5524 127.072 78.3604 128.199 78.3604H133.095C134.215 78.3604 135.027 78.5524 135.527 78.9364C136.019 79.3076 136.41 80.0756 136.691 81.266L146.247 120.952L156.743 81.266C157.095 80.0756 157.498 79.3076 157.959 78.9364C158.426 78.5524 159.213 78.3604 160.346 78.3604H165.965C166.963 78.3604 167.456 78.8468 167.456 79.8132C167.456 80.0756 167.411 80.3956 167.354 80.7348C167.271 81.0932 167.143 81.5732 166.919 82.1876L152.288 127.992C151.936 129.17 151.507 129.938 151.008 130.328C150.515 130.712 149.735 130.885 148.679 130.885H143.475C142.349 130.885 141.536 130.693 141.043 130.284C140.551 129.868 140.16 129.061 139.879 127.896L130.432 89.7524L121.107 127.896C120.826 129.061 120.429 129.868 119.936 130.284C119.437 130.693 118.631 130.885 117.498 130.885H112.301Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.6099 124.472C65.6003 124.472 67.6803 124.108 69.8755 123.384C72.0643 122.655 73.9715 121.4 75.5971 119.596C76.5955 118.495 77.2739 117.234 77.6707 115.813C78.0547 114.405 78.2403 112.696 78.2403 110.687V108.204C76.4867 107.788 74.6307 107.461 72.6787 107.218C70.7331 106.981 68.8451 106.853 67.0019 106.853C62.9763 106.853 59.9619 107.647 57.9907 109.24C56.0131 110.828 55.0147 113.1 55.0147 116.088C55.0147 118.847 55.7635 120.927 57.2483 122.348C58.7331 123.768 60.8579 124.472 63.6099 124.472ZM88.2243 115.461C88.2243 117.669 88.4483 119.423 88.9091 120.741C89.3763 122.06 90.0291 123.48 90.8739 124.991C91.1555 125.477 91.2963 125.925 91.2963 126.328C91.2963 126.962 90.9059 127.551 90.1315 128.095L86.3107 130.591C85.7475 130.93 85.2163 131.109 84.7235 131.109C84.0771 131.109 83.4819 130.834 82.9187 130.284C82.0611 129.445 81.3443 128.536 80.7491 127.532C80.1347 126.533 79.5203 125.362 78.8867 124.05C74.1443 129.509 68.2115 132.242 61.0691 132.242C55.9747 132.242 51.9427 130.834 48.9667 127.992C46.0035 125.164 44.5187 121.362 44.5187 116.6C44.5187 111.564 46.3555 107.493 50.0419 104.421C53.7091 101.349 58.6691 99.8068 64.8835 99.8068C66.9379 99.8068 69.0755 99.9668 71.3027 100.274C73.5235 100.581 75.8467 101.023 78.2403 101.573V97.2276C78.2403 92.7348 77.2995 89.5732 75.3859 87.7364C73.4787 85.906 70.1955 84.9972 65.5299 84.9972C63.3987 84.9972 61.2227 85.2468 58.9955 85.7652C56.7747 86.2836 54.5923 86.9556 52.4739 87.7812C51.4819 88.1972 50.7715 88.4596 50.3555 88.562C49.9331 88.6644 49.6131 88.7156 49.4019 88.7156C48.5571 88.7156 48.1219 88.1012 48.1219 86.8468V83.954C48.1219 82.9812 48.2755 82.29 48.5571 81.8868C48.8387 81.4644 49.4019 81.0484 50.2531 80.6388C52.3715 79.5956 54.9187 78.6996 57.8819 77.9444C60.8579 77.1828 64.0003 76.7988 67.3283 76.7988C74.5347 76.7988 79.8211 78.418 83.1811 81.618C86.5347 84.8308 88.2243 89.682 88.2243 96.178V115.461Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

+12 -21
View File
@@ -1,21 +1,12 @@
<svg viewBox="0 0 111 110" xmlns="http://www.w3.org/2000/svg" width="111px" height="110px">
<g clipPath="url(#clip0_1916_993)">
<path
d="M83.0365 94.769L0 82.288L83.0365 110L111 98.365V11.2115L83.0365 0V94.769Z"
fill="#0078D7"
/>
<path
d="M69 27L53.7692 29.7741V63.7029L14 58.5816L30.2885 78V69.8912L53.7692 78L68.7885 65.41"
fill="#0078D7"
/>
<path
d="M53 30C50.0594 27.7015 34.3059 16 34.3059 16V22.4776L13.0913 30.8358L7 38.7761V55.9104L13.5114 58V37.3134L53 30Z"
fill="#0078D7"
/>
</g>
<defs>
<clipPath id="clip0_1916_993">
<rect width="111" height="110" fill="white" />
</clipPath>
</defs>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1774)">
<path d="M191.508 220.553L0 191.507L191.508 256L256 228.922V26.0922L191.508 0V220.553Z" fill="#0078D7"/>
<path d="M159.135 62.8364L124.008 69.2924V148.254L32.2883 136.335L69.8546 181.527V162.656L124.008 181.527L158.647 152.227" fill="#0078D7"/>
<path d="M122.234 69.8182C115.452 64.4689 79.1199 37.2364 79.1199 37.2364V52.3115L30.1926 71.7633L16.1442 90.2426V130.119L31.1614 134.982V86.8385L122.234 69.8182Z" fill="#0078D7"/>
</g>
<defs>
<clipPath id="clip0_2115_1774">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 724 B

After

Width:  |  Height:  |  Size: 681 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 39 KiB

+23 -1
View File
@@ -1 +1,23 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.33492 1.37491C5.44717 1.04229 5.75909 0.818359 6.11014 0.818359H11.25L5.91513 16.6255C5.80287 16.9581 5.49095 17.182 5.13991 17.182H1.13968C0.579936 17.182 0.185466 16.6325 0.364461 16.1022L5.33492 1.37491Z" fill="url(#paint0_linear_6102_134469)" /><path d="M13.5517 11.4546H5.45126C5.1109 11.4546 4.94657 11.8715 5.19539 12.1037L10.4005 16.9618C10.552 17.1032 10.7515 17.1819 10.9587 17.1819H15.5453L13.5517 11.4546Z" fill="#0078D4" /><path d="M6.11014 0.818359C5.75909 0.818359 5.44717 1.04229 5.33492 1.37491L0.364461 16.1022C0.185466 16.6325 0.579936 17.182 1.13968 17.182H5.13991C5.49095 17.182 5.80287 16.9581 5.91513 16.6255L6.90327 13.6976L10.4005 16.9617C10.552 17.1032 10.7515 17.1818 10.9588 17.1818H15.5454L13.5517 11.4545H7.66032L11.25 0.818359H6.11014Z" fill="url(#paint1_linear_6102_134469)" /><path d="M12.665 1.37478C12.5528 1.04217 12.2409 0.818237 11.8898 0.818237H6.13629H6.16254C6.51358 0.818237 6.82551 1.04217 6.93776 1.37478L11.9082 16.1021C12.0872 16.6324 11.6927 17.1819 11.133 17.1819H11.0454H16.8603C17.42 17.1819 17.8145 16.6324 17.6355 16.1021L12.665 1.37478Z" fill="url(#paint2_linear_6102_134469)" /><defs><linearGradient id="paint0_linear_6102_134469" x1="6.07512" y1="1.38476" x2="0.738178" y2="17.1514" gradientUnits="userSpaceOnUse"><stop stop-color="#114A8B" /><stop offset="1" stop-color="#0669BC" /></linearGradient><linearGradient id="paint1_linear_6102_134469" x1="10.3402" y1="11.4564" x2="9.107" y2="11.8734" gradientUnits="userSpaceOnUse"><stop stop-opacity="0.3" /><stop offset="0.0711768" stop-opacity="0.2" /><stop offset="0.321031" stop-opacity="0.1" /><stop offset="0.623053" stop-opacity="0.05" /><stop offset="1" stop-opacity="0" /></linearGradient><linearGradient id="paint2_linear_6102_134469" x1="9.45858" y1="1.38467" x2="15.3168" y2="16.9926" gradientUnits="userSpaceOnUse"><stop stop-color="#3CCBF4" /><stop offset="1" stop-color="#2892DF" /></linearGradient></defs></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M75.8744 19.5543C77.4709 14.8237 81.907 11.6389 86.8998 11.6389H160L84.1263 236.452C82.5297 241.182 78.0935 244.366 73.1009 244.366H16.2088C8.24797 244.366 2.63773 236.551 5.18344 229.009L75.8744 19.5543Z" fill="url(#paint0_linear_2115_1897)"/>
<path d="M192.735 162.91H77.529C72.6883 162.91 70.3512 168.839 73.89 172.141L147.918 241.234C150.073 243.245 152.91 244.365 155.857 244.365H221.089L192.735 162.91Z" fill="#0078D4"/>
<path d="M86.8998 11.6389C81.907 11.6389 77.4709 14.8237 75.8744 19.5543L5.18344 229.009C2.63773 236.551 8.24797 244.366 16.2088 244.366H73.1009C78.0935 244.366 82.5297 241.182 84.1263 236.452L98.1798 194.81L147.918 241.233C150.073 243.246 152.91 244.363 155.858 244.363H221.09L192.735 162.908H108.947L160 11.6389H86.8998Z" fill="url(#paint1_linear_2115_1897)"/>
<path d="M180.124 19.5524C178.529 14.822 174.093 11.6371 169.099 11.6371H87.2717H87.6451C92.6376 11.6371 97.074 14.822 98.6704 19.5524L169.361 229.008C171.907 236.55 166.296 244.365 158.336 244.365H157.09H239.791C247.751 244.365 253.362 236.55 250.816 229.008L180.124 19.5524Z" fill="url(#paint2_linear_2115_1897)"/>
<defs>
<linearGradient id="paint0_linear_2115_1897" x1="86.4017" y1="19.6944" x2="10.4985" y2="243.931" gradientUnits="userSpaceOnUse">
<stop stop-color="#114A8B"/>
<stop offset="1" stop-color="#0669BC"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_1897" x1="147.061" y1="162.935" x2="129.522" y2="168.866" gradientUnits="userSpaceOnUse">
<stop stop-opacity="0.3"/>
<stop offset="0.0711768" stop-opacity="0.2"/>
<stop offset="0.321031" stop-opacity="0.1"/>
<stop offset="0.623053" stop-opacity="0.05"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint2_linear_2115_1897" x1="134.522" y1="19.6931" x2="217.839" y2="241.673" gradientUnits="userSpaceOnUse">
<stop stop-color="#3CCBF4"/>
<stop offset="1" stop-color="#2892DF"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

+15 -28
View File
@@ -1,28 +1,15 @@
<svg viewBox="0 0 501 450" xmlns="http://www.w3.org/2000/svg" width="501px" height="450px">
<g clip-path="url(#clip0_1917_1001)">
<path
d="M17.0206 0.0721333C14.6826 0.0419786 12.3663 0.523969 10.2344 1.48427C8.10245 2.44457 6.20658 3.8599 4.67987 5.63088C3.15316 7.40186 2.03262 9.48557 1.39691 11.7357C0.761211 13.9858 0.625758 16.3479 1.00007 18.6559L69.0071 431.504C69.8544 436.556 72.4548 441.148 76.3515 444.474C80.2481 447.799 85.1919 449.645 90.3144 449.688H416.572C420.412 449.737 424.142 448.405 427.082 445.935C430.023 443.465 431.978 440.021 432.592 436.23L500.6 18.736C500.974 16.428 500.838 14.0659 500.203 11.8158C499.567 9.56568 498.446 7.48197 496.92 5.71098C495.393 3.94 493.497 2.52467 491.365 1.56437C489.233 0.604073 486.917 0.122079 484.579 0.152234L17.0206 0.0721333ZM303.387 298.454H199.254L171.058 151.146H328.619L303.387 298.454Z"
fill="#2684FF"
/>
<path
d="M478.972 151.146H328.619L303.387 298.454H199.254L76.2964 444.401C80.1936 447.771 85.1624 449.645 90.3143 449.688H416.652C420.492 449.737 424.222 448.405 427.162 445.935C430.103 443.465 432.058 440.021 432.673 436.23L478.972 151.146Z"
fill="url(#paint0_linear_1917_1001)"
/>
</g>
<defs>
<linearGradient
id="paint0_linear_1917_1001"
x1="513.736"
y1="192.398"
x2="265.258"
y2="386.327"
gradientUnits="userSpaceOnUse"
>
<stop offset="0.18" stop-color="#0052CC" />
<stop offset="1" stop-color="#2684FF" />
</linearGradient>
<clipPath id="clip0_1917_1001">
<rect width="501" height="450" fill="white" />
</clipPath>
</defs>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1779)">
<path d="M9.19711 13.0369C8.00244 13.0215 6.81886 13.2678 5.72951 13.7586C4.64013 14.2495 3.67138 14.9728 2.89127 15.878C2.11115 16.7832 1.53858 17.8482 1.21375 18.9983C0.888918 20.1483 0.819704 21.3556 1.01097 22.5352L35.7611 233.546C36.194 236.129 37.5228 238.476 39.5139 240.176C41.505 241.875 44.0311 242.819 46.6486 242.841H213.359C215.321 242.866 217.227 242.185 218.729 240.922C220.232 239.66 221.231 237.9 221.545 235.962L256.296 22.5762C256.487 21.3965 256.417 20.1892 256.093 19.0392C255.768 17.8891 255.195 16.8241 254.415 15.919C253.635 15.0138 252.666 14.2904 251.577 13.7996C250.487 13.3088 249.304 13.0624 248.109 13.0778L9.19711 13.0369ZM155.524 165.543H102.314L87.9068 90.2524H168.417L155.524 165.543Z" fill="#2684FF"/>
<path d="M245.244 90.2525H168.417L155.524 165.543H102.314L39.4855 240.138C41.4769 241.861 44.0158 242.819 46.6483 242.841H213.4C215.362 242.866 217.268 242.185 218.77 240.922C220.273 239.66 221.272 237.9 221.586 235.962L245.244 90.2525Z" fill="url(#paint0_linear_2115_1779)"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_1779" x1="263.007" y1="111.337" x2="136.016" y2="210.424" gradientUnits="userSpaceOnUse">
<stop offset="0.18" stop-color="#0052CC"/>
<stop offset="1" stop-color="#2684FF"/>
</linearGradient>
<clipPath id="clip0_2115_1779">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

+22 -213
View File
@@ -1,214 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="100"
height="100"
id="svg10573"
version="1.1"
inkscape:version="0.91 r13258 custom"
sodipodi:docname="centos-docker-platformlogo.svg"
inkscape:export-filename="/home/tigert/SparkleShare/osas-branding/logos/CentOS/web/centos-docker-platformlogo.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs10575" />
<sodipodi:namedview
id="base"
pagecolor="#d9d9d9"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="1.2145"
inkscape:cx="74.47743"
inkscape:cy="85.000462"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
fit-margin-top="10"
fit-margin-left="10"
fit-margin-right="10"
fit-margin-bottom="10"
inkscape:showpageshadow="false"
borderlayer="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-page="true"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-global="true">
<inkscape:grid
type="xygrid"
id="grid4177"
originx="-48.119695px"
originy="-46.748752px" />
</sodipodi:namedview>
<metadata
id="metadata10578"
xml:space="default">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(663.41064,-2140.2902)">
<rect
transform="matrix(-0.70494576,-0.70926122,0.70494576,-0.70926122,0,0)"
y="-1975.5764"
x="-1106.7324"
height="28.06876"
width="28.06876"
id="rect4182"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#b4bec1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.0015676;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
inkscape:transform-center-x="-0.00019222452"
inkscape:transform-center-y="-12.450121"
xml:space="default" />
<rect
inkscape:transform-center-y="-12.450121"
inkscape:transform-center-x="-0.00019222452"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#394d54;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.0015676;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
id="rect4186"
width="28.06876"
height="28.06876"
x="-1140.7004"
y="-1975.4767"
transform="matrix(-0.70494576,-0.70926122,0.70494576,-0.70926122,0,0)"
xml:space="default" />
<rect
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#fce94f;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
id="rect4188"
width="27.019527"
height="26.895521"
x="-643.57916"
y="2159.0557"
xml:space="default" />
<rect
y="2194.1335"
x="-608.55194"
height="27.020786"
width="26.822252"
id="rect4190"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#b4bec1;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
xml:space="default" />
<rect
inkscape:transform-center-x="12.562506"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#4f6a74;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.00166607;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
id="rect4180"
width="28.193838"
height="28.193838"
x="1993.4576"
y="-1127.9492"
transform="matrix(-0.71249676,0.7016754,-0.71249676,-0.7016754,0,0)"
xml:space="default" />
<rect
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#4f6a74;fill-opacity:1;stroke:none;stroke-width:0.99999988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
id="rect4192"
width="26.912663"
height="26.884657"
x="-608.44379"
y="2159.2424"
xml:space="default" />
<rect
transform="matrix(-0.71249676,0.7016754,-0.71249676,-0.7016754,0,0)"
y="-1161.9203"
x="1993.7214"
height="28.193838"
width="28.193838"
id="rect4184"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#8a9aa0;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.00166607;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
inkscape:transform-center-x="12.562506"
xml:space="default" />
<rect
y="2158.1057"
x="-644.57996"
height="27.857422"
width="28.020391"
id="rect4168"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#8a9aa0;fill-opacity:1;stroke:#ffffff;stroke-width:2.00154901;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
xml:space="default" />
<rect
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#ffffff;stroke-width:2.00154877;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
id="rect4170"
width="27.848631"
height="28.021563"
x="-608.55194"
y="2194.1335"
xml:space="default" />
<rect
y="2158.2695"
x="-608.45105"
height="27.857422"
width="27.920647"
id="rect4172"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#ffffff;stroke-width:2.00154901;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
xml:space="default" />
<rect
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#394d54;fill-opacity:1;stroke:#ffffff;stroke-width:2.00154901;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
id="rect4174"
width="28.019245"
height="28.019196"
x="-644.57764"
y="2194.1345"
xml:space="default" />
<rect
transform="matrix(-0.71249676,0.7016754,-0.71249676,-0.7016754,0,0)"
y="-1127.9492"
x="1993.4576"
height="28.193838"
width="28.193838"
id="rect4208"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#ffffff;stroke-width:2.00166607;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
inkscape:transform-center-x="12.562506"
xml:space="default" />
<rect
inkscape:transform-center-y="-12.450121"
inkscape:transform-center-x="-0.00019222452"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#ffffff;stroke-width:2.0015676;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
id="rect4210"
width="28.06876"
height="28.06876"
x="-1106.7319"
y="-1975.5764"
transform="matrix(-0.70494576,-0.70926122,0.70494576,-0.70926122,0,0)"
xml:space="default" />
<rect
inkscape:transform-center-x="12.562506"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#ffffff;stroke-width:2.00166607;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
id="rect4212"
width="28.193838"
height="28.193838"
x="1993.7214"
y="-1161.9203"
transform="matrix(-0.71249676,0.7016754,-0.71249676,-0.7016754,0,0)"
xml:space="default" />
<rect
transform="matrix(-0.70494576,-0.70926122,0.70494576,-0.70926122,0,0)"
y="-1975.4767"
x="-1140.7002"
height="28.06876"
width="28.06876"
id="rect4214"
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#ffffff;stroke-width:2.0015676;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
inkscape:transform-center-x="-0.00019222452"
inkscape:transform-center-y="-12.450121"
xml:space="default" />
</g>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M79.7075 66.4673L130.362 117.432L181.017 66.4673L130.362 15.5026L79.7075 66.4673Z" fill="#B4BEC1"/>
<path d="M78.2966 66.4676L130.362 14.0834L182.428 66.4676L130.362 118.852L78.2966 66.4676ZM179.606 66.4669L130.362 16.9218L81.1184 66.4669L130.362 116.012L179.606 66.4669Z" fill="white"/>
<path d="M141.188 127.962L191.843 178.927L242.497 127.962L191.843 76.9974L141.188 127.962Z" fill="#394D54"/>
<path d="M139.777 127.962L191.842 75.5777L243.908 127.963L191.843 180.347L139.777 127.962ZM241.086 127.962L191.843 78.4168L142.599 127.962L191.843 177.507L241.086 127.962Z" fill="white"/>
<path d="M119.939 48.0394H50.7686V116.892H119.939V48.0394Z" fill="#FCE94F"/>
<path d="M209.103 137.839H140.438V207.012H209.103V137.839Z" fill="#B4BEC1"/>
<path d="M68.2258 178.45L119.651 127.806L68.2258 77.1613L16.8004 127.806L68.2258 178.45Z" fill="#4F6A74"/>
<path d="M68.226 179.854L15.3746 127.806L68.226 75.7569L121.077 127.806L68.226 179.854ZM68.2253 78.5657L18.226 127.806L68.2253 177.046L118.225 127.806L68.2253 78.5657Z" fill="white"/>
<path d="M209.611 48.5175H140.715V117.342H209.611V48.5175Z" fill="#4F6A74"/>
<path d="M129.707 239.946L181.133 189.301L129.707 138.657L78.2821 189.301L129.707 239.946Z" fill="#8A9AA0"/>
<path d="M129.708 241.35L76.8563 189.301L129.708 137.253L182.559 189.301L129.708 241.35ZM129.707 140.061L79.7077 189.301L129.707 238.541L179.706 189.301L129.707 140.061Z" fill="white"/>
<path d="M119.939 45.6075H48.2065V116.923H119.939V45.6075Z" fill="#8A9AA0"/>
<path d="M120.94 44.6065V117.923H47.2056V44.6065H120.94ZM49.2075 115.922H118.938V46.6085H49.2075V115.922Z" fill="white"/>
<path d="M212.731 136.838V210.574H139.437V136.838H212.731ZM141.439 208.573H210.73V138.84H141.439V208.573Z" fill="white"/>
<path d="M213.174 45.0259V118.342H139.696V45.0259H213.174ZM141.698 116.341H211.173V47.0279H141.698V116.341Z" fill="white"/>
<path d="M119.942 137.841H48.2124V209.571H119.942V137.841Z" fill="#394D54"/>
<path d="M120.943 136.84V210.572H47.2114V136.84H120.943ZM49.2134 208.57H118.941V138.842H49.2134V208.57Z" fill="white"/>
<path d="M68.226 179.854L15.3746 127.806L68.226 75.7569L121.077 127.806L68.226 179.854ZM68.2253 78.5657L18.226 127.806L68.2253 177.046L118.225 127.806L68.2253 78.5657Z" fill="white"/>
<path d="M78.2952 66.4663L130.361 14.0821L182.427 66.467L130.361 118.851L78.2952 66.4663ZM179.605 66.4663L130.361 16.9212L81.1177 66.4663L130.361 116.011L179.605 66.4663Z" fill="white"/>
<path d="M129.708 241.35L76.8563 189.301L129.708 137.253L182.559 189.301L129.708 241.35ZM129.707 140.061L79.7077 189.301L129.707 238.541L179.706 189.301L129.707 140.061Z" fill="white"/>
<path d="M139.777 127.962L191.843 75.5778L243.908 127.962L191.843 180.346L139.777 127.962ZM241.086 127.961L191.843 78.4162L142.599 127.961L191.843 177.506L241.086 127.961Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

+2 -2
View File
@@ -1,3 +1,3 @@
<svg width="800" height="800" viewBox="0 0 800 800" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M188.146 515.368L325.645 438.161L327.946 431.432L325.645 427.713H318.921L295.915 426.296L217.344 424.172L149.214 421.338L83.2071 417.797L66.5727 414.255L51 393.714L52.5927 383.443L66.5727 374.058L86.5694 375.829L130.81 378.839L197.171 383.443L245.304 386.276L316.62 393.714H327.946L329.538 389.11L325.645 386.276L322.637 383.443L253.975 336.871L179.651 287.642L140.72 259.309L119.661 244.966L109.044 231.508L104.443 202.112L123.554 181.04L149.214 182.811L155.762 184.581L181.775 204.591L237.341 247.622L309.895 301.1L320.513 309.954L324.76 306.944L325.291 304.819L320.513 296.851L281.051 225.487L238.934 152.884L220.176 122.78L215.221 104.718C213.451 97.2806 212.212 91.0827 212.212 83.4683L233.979 53.8958L246.012 50L275.034 53.8958L287.244 64.5206L305.294 105.78L334.493 170.769L379.795 259.132L393.068 285.34L400.146 309.6L402.801 317.038H407.402V312.788L411.118 263.028L418.019 201.935L424.744 123.311L427.044 101.176L438.016 74.6142L459.782 60.2707L476.771 68.4164L490.751 88.4265L488.804 101.353L480.487 155.363L464.206 240.008L453.589 296.673H459.782L466.861 289.59L495.529 251.518L543.662 191.31L564.898 167.405L589.672 141.019L605.599 128.447H635.683L657.803 161.384L647.893 195.383L616.925 234.695L591.265 267.986L554.457 317.569L531.452 357.235L533.575 360.422L539.061 359.891L622.233 342.183L667.182 334.037L720.801 324.829L745.045 336.162L747.7 347.673L738.144 371.224L680.808 385.391L613.562 398.849L513.402 422.578L512.163 423.463L513.579 425.234L558.704 429.484L577.993 430.546H625.242L713.192 437.098L736.197 452.327L750 470.921L747.7 485.087L712.307 503.15L664.527 491.816L553.041 465.254L514.817 455.692H509.509V458.879L541.362 490.046L599.759 542.816L672.845 610.815L676.561 627.637L667.182 640.918L657.272 639.502L593.035 591.159L568.26 569.378L512.163 522.097H508.447V527.055L521.365 546.003L589.672 648.71L593.212 680.23L588.257 690.501L570.56 696.699L551.095 693.157L511.101 637.023L469.869 573.805L436.6 517.139L432.53 519.441L412.887 731.052L403.685 741.854L382.45 750L364.754 736.542L355.375 714.761L364.754 671.73L376.079 615.596L385.281 570.971L393.598 515.545L398.553 497.129L398.2 495.889L394.129 496.42L352.366 553.795L288.837 639.679L238.58 693.511L226.546 698.292L205.665 687.491L207.611 668.189L219.291 651.012L288.837 562.472L330.777 507.577L357.852 475.879L357.675 471.275H356.083L171.334 591.336L138.419 595.586L124.262 582.305L126.032 560.524L132.756 553.44L188.323 515.191L188.146 515.368Z" fill="#D97757"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M60.2068 164.918L104.206 140.212L104.943 138.058L104.206 136.868H102.055L94.6929 136.415L69.5502 135.735L47.7486 134.828L26.6263 133.695L21.3033 132.562L16.3201 125.988L16.8297 122.702L21.3033 119.699L27.7023 120.265L41.8593 121.228L63.0948 122.702L78.4974 123.608L101.318 125.988H104.943L105.452 124.515L104.206 123.608L103.244 122.702L81.2721 107.799L57.4884 92.0454L45.0305 82.9789L38.2916 78.3891L34.8941 74.0826L33.4218 64.6758L39.5374 57.9328L47.7486 58.4995L49.8439 59.0659L58.1681 65.4691L75.9492 79.239L99.1665 96.352L102.564 99.1853L103.923 98.2221L104.093 97.5421L102.564 94.9923L89.9364 72.1558L76.459 48.9229L70.4564 39.2896L68.8708 33.5098C68.3044 31.1298 67.9079 29.1465 67.9079 26.7099L74.8734 17.2467L78.7239 16L88.011 17.2467L91.9181 20.6466L97.6942 33.8496L107.038 54.6461L121.534 82.9222L125.782 91.3088L128.047 99.072L128.896 101.452H130.369V100.092L131.558 84.169L133.766 64.6192L135.918 39.4595L136.654 32.3763L140.165 23.8765L147.13 19.2866L152.567 21.8932L157.04 28.2965L156.417 32.433L153.756 49.7162L148.546 76.8026L145.149 94.9354H147.13L149.396 92.6688L158.569 80.4858L173.972 61.2192L180.767 53.5696L188.695 45.1261L193.792 41.103H203.419L210.497 51.6429L207.326 62.5226L197.416 75.1024L189.205 85.7555L177.426 101.622L170.065 114.315L170.744 115.335L172.5 115.165L199.115 109.499L213.498 106.892L230.656 103.945L238.414 107.572L239.264 111.255L236.206 118.792L217.859 123.325L196.34 127.632L164.289 135.225L163.892 135.508L164.345 136.075L178.785 137.435L184.958 137.775H200.078L228.222 139.871L235.583 144.745L240 150.695L239.264 155.228L227.938 161.008L212.649 157.381L176.973 148.881L164.742 145.821H163.043V146.841L173.236 156.815L191.923 173.701L215.31 195.461L216.5 200.844L213.498 205.094L210.327 204.641L189.771 189.171L181.843 182.201L163.892 167.071H162.703V168.658L166.837 174.721L188.695 207.587L189.828 217.674L188.242 220.96L182.579 222.944L176.35 221.81L163.552 203.847L150.358 183.618L139.712 165.484L138.41 166.221L132.124 233.937L129.179 237.393L122.384 240L116.721 235.693L113.72 228.724L116.721 214.954L120.345 196.991L123.29 182.711L125.951 164.974L127.537 159.081L127.424 158.684L126.121 158.854L112.757 177.214L92.4279 204.697L76.3457 221.924L72.4948 223.453L65.8129 219.997L66.4356 213.82L70.1732 208.324L92.4279 179.991L105.849 162.425L114.513 152.281L114.456 150.808H113.947L54.827 189.228L44.2942 190.588L39.7639 186.338L40.3303 179.368L42.482 177.101L60.2634 164.861L60.2068 164.918Z" fill="#D97757"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

+23 -18
View File
@@ -1,19 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" fill="none" viewBox="0 0 64 64">
<defs>
<linearGradient id="a" x1="3.98138" x2="62.6868" y1="4.22048" y2="62.9254" gradientUnits="userSpaceOnUse">
<stop offset=".29" stop-color="#009AE5"/>
<stop offset=".7" stop-color="#00D980"/>
</linearGradient>
<linearGradient id="b" x1="56.3788" x2="2.75258" y1="-.71738" y2="24.1455" gradientUnits="userSpaceOnUse">
<stop offset=".3" stop-color="#FF318C"/>
<stop offset=".54" stop-color="#009AE5"/>
</linearGradient>
</defs>
<path fill="url(#a)" d="M64 59.9255V25.9572c0-1.6291-.9711-3.1017-2.4681-3.7434L24.0413 6.14572c-.5068-.21702-1.0531-.32931-1.6046-.32931H4.07273C1.82342 5.81641 0 7.63982 0 9.88913V27.8551c0 .8047.238545 1.5913.685382 2.2609L22.0887 62.1847c.7552 1.1322 2.0265 1.8118 3.3874 1.8118l34.4512.0017c2.2493 0 4.0727-1.8234 4.0727-4.0727Z"/>
<path fill="url(#b)" d="M58.1818 14.5193V4.07273C58.1818 1.82342 56.3584 0 54.1091 0H41.0164c-.1925 0-.3851.013964-.576.040727L3.49673 5.3184C1.49004 5.60465 0 7.32334 0 9.34982V25.0228c0 2.2499 1.824 4.0733 4.07389 4.0728l18.53851-.0047c.4375 0 .8721-.0704 1.2869-.2089l31.4979-10.4995c1.6629-.5544 2.7846-2.1108 2.7846-3.8638v.0006Z"/>
<path fill="#FF318C" d="m58.1814 15.9476-.0017-11.87545C58.1797 1.82342 56.3562 0 54.1069 0H42.6003c-1.1886 0-2.3185.519564-3.0923 1.42196L6.79872 39.5834c-.63243.7383-.98036 1.6786-.98036 2.6508v11.8755c0 2.2493 1.82342 4.0727 4.07273 4.0727H21.3994c1.1887 0 2.3186-.5196 3.0924-1.422L57.201 18.599c.6331-.7383.9804-1.6786.9804-2.6514Z"/>
<path fill="#000" d="M52 12H12v40h40V12Z"/>
<path fill="#fff" d="M20.0471 31.161c1.1594.668 2.4537 1.0029 3.8828 1.0029v-.0011c1.2086 0 2.3183-.2241 3.328-.6721 1.0097-.448 1.8486-1.0731 2.5172-1.8771.6754-.8108 1.1274-1.7388 1.3548-2.784h-3.0508c-.1995.54-.4977 1.0172-.896 1.4292-.3915.4057-.864.7188-1.4189.9388-.5543.22-1.1588.3309-1.8131.3309-.8817 0-1.6783-.22-2.3892-.6612-.7114-.4411-1.2697-1.0451-1.6748-1.8131-.3983-.7743-.5972-1.6463-.5972-2.6132 0-.9668.1989-1.8348.5972-2.6028.4057-.7749.964-1.3829 1.6748-1.824.7109-.4412 1.5075-.6612 2.3892-.6612.6537 0 1.2583.1109 1.8131.3309.5549.22 1.0274.5371 1.4189.9491.3983.4057.6965.8789.896 1.4189h3.0508c-.228-1.0451-.6794-1.9691-1.3548-2.7731-.6686-.8109-1.5075-1.44-2.5172-1.888-1.0097-.448-2.1194-.672-3.328-.672-1.4297 0-2.724.3371-3.8828 1.0131-1.1595.668-2.0697 1.5931-2.7309 2.7731-.6611 1.1732-.992 2.4852-.992 3.936 0 1.4509.3309 2.7669.992 3.9469.6617 1.1731 1.572 2.0971 2.7309 2.7731Z"/>
<path fill="#fff" d="M36.1248 29.2833V16.9742h-2.9012v14.9331h9.984v-2.624h-7.0828Z"/>
<path fill="#fff" d="M16.9941 43.9988h16v3h-16v-3Z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1805)">
<path d="M256 239.702V103.829C256 97.3124 252.116 91.422 246.128 88.8552L96.1652 24.5829C94.138 23.7148 91.9528 23.2656 89.7468 23.2656H16.2909C7.29368 23.2656 0 30.5593 0 39.5565V111.42C0 114.639 0.95418 117.786 2.74153 120.464L88.3548 248.739C91.3756 253.268 96.4608 255.986 101.904 255.986L239.709 255.993C248.706 255.993 256 248.699 256 239.702Z" fill="url(#paint0_linear_2115_1805)"/>
<path d="M232.727 58.0772V16.2909C232.727 7.29368 225.434 0 216.436 0H164.066C163.296 0 162.525 0.055856 161.762 0.162908L13.9869 21.2736C5.96016 22.4186 0 29.2934 0 37.3993V100.091C0 109.091 7.296 116.384 16.2956 116.382L90.4496 116.364C92.1996 116.364 93.938 116.082 95.5972 115.528L221.589 73.53C228.24 71.3124 232.727 65.0892 232.727 58.0772Z" fill="url(#paint1_linear_2115_1805)"/>
<path d="M232.726 63.7904L232.719 16.2886C232.719 7.29368 225.425 0 216.428 0H170.401C165.647 0 161.127 2.07826 158.032 5.68784L27.1949 158.334C24.6652 161.287 23.2734 165.048 23.2734 168.937V216.439C23.2734 225.436 30.5671 232.73 39.5644 232.73H85.5976C90.3524 232.73 94.872 230.651 97.9672 227.042L228.804 74.396C231.336 71.4428 232.726 67.6816 232.726 63.7904Z" fill="#FF318C"/>
<path d="M208 48H48V208H208V48Z" fill="black"/>
<path d="M80.1885 124.644C84.8261 127.316 90.0033 128.656 95.7197 128.656V128.651C100.554 128.651 104.993 127.755 109.032 125.963C113.07 124.171 116.426 121.67 119.1 118.454C121.802 115.211 123.61 111.499 124.52 107.318H112.316C111.518 109.478 110.326 111.387 108.732 113.035C107.166 114.658 105.276 115.91 103.057 116.79C100.84 117.67 98.4217 118.114 95.8045 118.114C92.2777 118.114 89.0913 117.234 86.2477 115.469C83.4021 113.705 81.1689 111.289 79.5485 108.217C77.9553 105.12 77.1597 101.632 77.1597 97.764C77.1597 93.8968 77.9553 90.4248 79.5485 87.3528C81.1713 84.2532 83.4045 81.8212 86.2477 80.0568C89.0913 78.292 92.2777 77.412 95.8045 77.412C98.4193 77.412 100.838 77.8556 103.057 78.7356C105.276 79.6156 107.166 80.884 108.732 82.532C110.326 84.1548 111.518 86.0476 112.316 88.2076H124.52C123.608 84.0272 121.802 80.3312 119.1 77.1152C116.426 73.8716 113.07 71.3552 109.032 69.5632C104.993 67.7712 100.554 66.8752 95.7197 66.8752C90.0009 66.8752 84.8237 68.2236 80.1885 70.9276C75.5505 73.5996 71.9097 77.3 69.2649 82.02C66.6205 86.7128 65.2969 91.9608 65.2969 97.764C65.2969 103.568 66.6205 108.832 69.2649 113.552C71.9117 118.244 75.5529 121.94 80.1885 124.644Z" fill="white"/>
<path d="M144.499 117.133V67.8968H132.894V127.629H172.83V117.133H144.499Z" fill="white"/>
<path d="M67.9763 175.995H131.976V187.995H67.9763V175.995Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_1805" x1="15.9255" y1="16.8819" x2="250.747" y2="251.702" gradientUnits="userSpaceOnUse">
<stop offset="0.29" stop-color="#009AE5"/>
<stop offset="0.7" stop-color="#00D980"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_1805" x1="225.515" y1="-2.86953" x2="11.0103" y2="96.582" gradientUnits="userSpaceOnUse">
<stop offset="0.3" stop-color="#FF318C"/>
<stop offset="0.54" stop-color="#009AE5"/>
</linearGradient>
<clipPath id="clip0_2115_1805">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

+42 -37
View File
@@ -1,37 +1,42 @@
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="256" height="256">
<path d="M176.049 250.669C180.838 255.459 188.13 256.7 194.234 253.764L246.94 228.419C252.478 225.755 256 220.154 256 214.008V42.1479C256 36.0025 252.478 30.4008 246.94 27.7374L194.234 2.39089C188.13 -0.544416 180.838 0.696607 176.049 5.48572C181.95 -0.41506 192.039 3.76413 192.039 12.1091V244.046C192.039 252.391 181.95 256.57 176.049 250.669Z" fill="white"/>
<path d="M181.379 180.646L114.33 128.633L181.379 75.5114V17.794C181.379 10.8477 173.128 7.20673 167.996 11.8862L74.6514 97.8518L31.1994 64.1438C27.1081 61.039 21.3851 61.294 17.5853 64.7476L3.48974 77.5627C-1.15847 81.7893 -1.16367 89.0948 3.47672 93.3292L167.98 244.185C173.107 248.887 181.379 245.249 181.379 238.292V180.646Z" fill="white"/>
<path d="M36.6937 134.195L3.47672 162.828C-1.16367 167.062 -1.15847 174.37 3.48974 178.594L17.5853 191.409C21.3851 194.863 27.1081 195.118 31.1994 192.013L69.4472 164.057L36.6937 134.195Z" fill="white"/>
</mask>
<g mask="url(#mask0)">
<path d="M167.996 11.8857C173.128 7.20627 181.379 10.8473 181.379 17.7936V75.5109L104.938 136.073L65.5742 106.211L167.996 11.8857Z" fill="#009A7C"/>
<path d="M36.6937 134.194L3.47672 162.827C-1.16367 167.062 -1.15847 174.37 3.48974 178.594L17.5853 191.409C21.3851 194.863 27.1081 195.118 31.1994 192.013L69.4472 164.056L36.6937 134.194Z" fill="#009A7C"/>
<g filter="url(#filter0_d)">
<path d="M181.379 180.645L31.1994 64.1427C27.1081 61.0379 21.3851 61.2929 17.5853 64.7465L3.48974 77.5616C-1.15847 81.7882 -1.16367 89.0937 3.47672 93.3281L167.972 244.176C173.102 248.881 181.379 245.241 181.379 238.28V180.645Z" fill="#00B294"/>
</g>
<g filter="url(#filter1_d)">
<path d="M194.233 253.766C188.13 256.701 180.837 255.46 176.048 250.671C181.949 256.571 192.039 252.392 192.039 244.047V12.1103C192.039 3.76535 181.949 -0.413839 176.048 5.48694C180.837 0.697824 188.129 -0.543191 194.233 2.3921L246.939 27.7386C252.478 30.402 256 36.0037 256 42.1491V214.009C256 220.155 252.478 225.757 246.939 228.42L194.233 253.766Z" fill="#24BFA5"/>
</g>
</g>
<defs>
<filter id="filter0_d" x="-21.3333" y="40.6413" width="224.045" height="226.988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset/>
<feGaussianBlur stdDeviation="10.6667"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="154.715" y="-20.5169" width="122.618" height="297.191" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset/>
<feGaussianBlur stdDeviation="10.6667"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1902)">
<mask id="mask0_2115_1902" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="256" height="256">
<path d="M176.049 250.669C180.838 255.459 188.13 256.7 194.234 253.764L246.94 228.419C252.478 225.755 256 220.154 256 214.008V42.1479C256 36.0025 252.478 30.4008 246.94 27.7374L194.234 2.39089C188.13 -0.544418 180.838 0.696606 176.049 5.48572C181.95 -0.415061 192.039 3.76413 192.039 12.1091V244.046C192.039 252.391 181.95 256.57 176.049 250.669Z" fill="white"/>
<path d="M181.379 180.646L114.33 128.633L181.379 75.5114V17.794C181.379 10.8477 173.128 7.20672 167.996 11.8862L74.6514 97.8518L31.1994 64.1438C27.1081 61.039 21.3851 61.294 17.5853 64.7476L3.48974 77.5627C-1.15847 81.7893 -1.16367 89.0948 3.47672 93.3292L167.98 244.185C173.107 248.887 181.379 245.249 181.379 238.292V180.646Z" fill="white"/>
<path d="M36.6937 134.195L3.47672 162.828C-1.16367 167.062 -1.15847 174.37 3.48974 178.594L17.5853 191.409C21.3851 194.863 27.1081 195.118 31.1994 192.013L69.4472 164.057L36.6937 134.195Z" fill="white"/>
</mask>
<g mask="url(#mask0_2115_1902)">
<path d="M167.996 11.8857C173.128 7.20626 181.379 10.8473 181.379 17.7936V75.5109L104.938 136.073L65.5742 106.211L167.996 11.8857Z" fill="#009A7C"/>
<path d="M36.6937 134.194L3.47672 162.827C-1.16367 167.062 -1.15847 174.37 3.48974 178.594L17.5853 191.409C21.3851 194.863 27.1081 195.118 31.1994 192.013L69.4472 164.056L36.6937 134.194Z" fill="#009A7C"/>
<g filter="url(#filter0_d_2115_1902)">
<path d="M181.379 180.645L31.1994 64.1427C27.1081 61.0379 21.3851 61.2929 17.5853 64.7465L3.48974 77.5616C-1.15847 81.7882 -1.16367 89.0937 3.47672 93.3281L167.972 244.176C173.102 248.881 181.379 245.241 181.379 238.28V180.645Z" fill="#00B294"/>
</g>
<g filter="url(#filter1_d_2115_1902)">
<path d="M194.233 253.766C188.13 256.701 180.837 255.46 176.048 250.671C181.949 256.571 192.039 252.392 192.039 244.047V12.1103C192.039 3.76535 181.949 -0.413838 176.048 5.48694C180.837 0.697824 188.129 -0.543191 194.233 2.3921L246.939 27.7386C252.478 30.402 256 36.0037 256 42.1491V214.009C256 220.155 252.478 225.757 246.939 228.42L194.233 253.766Z" fill="#24BFA5"/>
</g>
</g>
</g>
<defs>
<filter id="filter0_d_2115_1902" x="-21.3334" y="40.6413" width="224.046" height="226.988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="10.6667"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2115_1902"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2115_1902" result="shape"/>
</filter>
<filter id="filter1_d_2115_1902" x="154.715" y="-20.517" width="122.619" height="297.192" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="10.6667"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow_2115_1902"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2115_1902" result="shape"/>
</filter>
<clipPath id="clip0_2115_1902">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

+24 -19
View File
@@ -1,41 +1,46 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none" width="100px" height="100px">
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="100" height="100">
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.9119 99.3171C72.4869 99.9307 74.2828 99.8914 75.8725 99.1264L96.4608 89.2197C98.6242 88.1787 100 85.9892 100 83.5872V16.4133C100 14.0113 98.6243 11.8218 96.4609 10.7808L75.8725 0.873756C73.7862 -0.130129 71.3446 0.11576 69.5135 1.44695C69.252 1.63711 69.0028 1.84943 68.769 2.08341L29.3551 38.0415L12.1872 25.0096C10.589 23.7965 8.35363 23.8959 6.86933 25.2461L1.36303 30.2549C-0.452552 31.9064 -0.454633 34.7627 1.35853 36.417L16.2471 50.0001L1.35853 63.5832C-0.454633 65.2374 -0.452552 68.0938 1.36303 69.7453L6.86933 74.7541C8.35363 76.1043 10.589 76.2037 12.1872 74.9905L29.3551 61.9587L68.769 97.9167C69.3925 98.5406 70.1246 99.0104 70.9119 99.3171ZM75.0152 27.2989L45.1091 50.0001L75.0152 72.7012V27.2989Z" fill="white"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1915)">
<mask id="mask0_2115_1915" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="256" height="256">
<path fill-rule="evenodd" clip-rule="evenodd" d="M181.534 254.252C185.566 255.823 190.164 255.722 194.234 253.764L246.94 228.402C252.478 225.737 256 220.132 256 213.983V42.018C256 35.8689 252.478 30.2638 246.94 27.5988L194.234 2.23681C188.893 -0.333132 182.642 0.296344 177.955 3.70419C177.285 4.191 176.647 4.73454 176.049 5.33353L75.1491 97.3862L31.1992 64.0246C27.1078 60.919 21.3853 61.1735 17.5855 64.63L3.48936 77.4525C-1.15853 81.6804 -1.16386 88.9925 3.47784 93.2275L41.5926 128L3.47784 162.773C-1.16386 167.008 -1.15853 174.32 3.48936 178.548L17.5855 191.371C21.3853 194.827 27.1078 195.081 31.1992 191.976L75.1491 158.614L176.049 250.667C177.645 252.264 179.519 253.467 181.534 254.252ZM192.039 69.8852L115.479 128L192.039 186.115V69.8852Z" fill="white"/>
</mask>
<g mask="url(#mask0)">
<path d="M96.4614 10.7962L75.8569 0.875542C73.4719 -0.272773 70.6217 0.211611 68.75 2.08333L1.29858 63.5832C-0.515693 65.2373 -0.513607 68.0937 1.30308 69.7452L6.81272 74.754C8.29793 76.1042 10.5347 76.2036 12.1338 74.9905L93.3609 13.3699C96.086 11.3026 100 13.2462 100 16.6667V16.4275C100 14.0265 98.6246 11.8378 96.4614 10.7962Z" fill="#0065A9"/>
<g filter="url(#filter0_d)">
<path d="M96.4614 89.2038L75.8569 99.1245C73.4719 100.273 70.6217 99.7884 68.75 97.9167L1.29858 36.4169C-0.515693 34.7627 -0.513607 31.9063 1.30308 30.2548L6.81272 25.246C8.29793 23.8958 10.5347 23.7964 12.1338 25.0095L93.3609 86.6301C96.086 88.6974 100 86.7538 100 83.3334V83.5726C100 85.9735 98.6246 88.1622 96.4614 89.2038Z" fill="#007ACC"/>
<g mask="url(#mask0_2115_1915)">
<path d="M246.941 27.6383L194.194 2.24141C188.088 -0.698271 180.792 0.541751 176 5.33335L3.32436 162.773C-1.32017 167.008 -1.31483 174.32 3.33588 178.548L17.4406 191.37C21.2427 194.827 26.9688 195.081 31.0625 191.976L239.004 34.227C245.98 28.9347 256 33.9103 256 42.6668V42.0544C256 35.9079 252.479 30.3048 246.941 27.6383Z" fill="#0065A9"/>
<g filter="url(#filter0_d_2115_1915)">
<path d="M246.941 228.362L194.194 253.759C188.088 256.699 180.792 255.458 176 250.667L3.32436 93.2273C-1.32017 88.9925 -1.31483 81.6801 3.33588 77.4523L17.4406 64.6298C21.2427 61.1732 26.9688 60.9188 31.0625 64.0243L239.004 221.773C245.98 227.065 256 222.09 256 213.333V213.946C256 220.092 252.479 225.695 246.941 228.362Z" fill="#007ACC"/>
</g>
<g filter="url(#filter1_d)">
<path d="M75.8578 99.1263C73.4721 100.274 70.6219 99.7885 68.75 97.9166C71.0564 100.223 75 98.5895 75 95.3278V4.67213C75 1.41039 71.0564 -0.223106 68.75 2.08329C70.6219 0.211402 73.4721 -0.273666 75.8578 0.873633L96.4587 10.7807C98.6234 11.8217 100 14.0112 100 16.4132V83.5871C100 85.9891 98.6234 88.1786 96.4586 89.2196L75.8578 99.1263Z" fill="#1F9CF0"/>
<g filter="url(#filter1_d_2115_1915)">
<path d="M194.196 253.763C188.089 256.701 180.792 255.459 176 250.667C181.904 256.571 192 252.389 192 244.039V11.9607C192 3.61061 181.904 -0.571143 176 5.33323C180.792 0.541198 188.089 -0.700577 194.196 2.23651L246.934 27.5986C252.476 30.2636 256 35.8687 256 42.0178V213.983C256 220.132 252.476 225.737 246.934 228.402L194.196 253.763Z" fill="#1F9CF0"/>
</g>
<g style="mix-blend-mode:overlay" opacity="0.25">
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.8511 99.3171C72.4261 99.9306 74.2221 99.8913 75.8117 99.1264L96.4 89.2197C98.5634 88.1787 99.9392 85.9892 99.9392 83.5871V16.4133C99.9392 14.0112 98.5635 11.8217 96.4001 10.7807L75.8117 0.873695C73.7255 -0.13019 71.2838 0.115699 69.4527 1.44688C69.1912 1.63705 68.942 1.84937 68.7082 2.08335L29.2943 38.0414L12.1264 25.0096C10.5283 23.7964 8.29285 23.8959 6.80855 25.246L1.30225 30.2548C-0.513334 31.9064 -0.515415 34.7627 1.29775 36.4169L16.1863 50L1.29775 63.5832C-0.515415 65.2374 -0.513334 68.0937 1.30225 69.7452L6.80855 74.754C8.29285 76.1042 10.5283 76.2036 12.1264 74.9905L29.2943 61.9586L68.7082 97.9167C69.3317 98.5405 70.0638 99.0104 70.8511 99.3171ZM74.9544 27.2989L45.0483 50L74.9544 72.7012V27.2989Z" fill="url(#paint0_linear)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M181.379 254.252C185.411 255.822 190.009 255.722 194.078 253.764L246.784 228.402C252.322 225.737 255.844 220.132 255.844 213.983V42.018C255.844 35.8686 252.323 30.2635 246.784 27.5985L194.078 2.23657C188.737 -0.333374 182.487 0.296101 177.799 3.70392C177.129 4.19076 176.492 4.7343 175.893 5.33329L74.9934 97.3859L31.0436 64.0245C26.9524 60.9187 21.2297 61.1734 17.4299 64.6297L3.33376 77.4522C-1.31413 81.6803 -1.31946 88.9924 3.32224 93.2272L41.4369 128L3.32224 162.773C-1.31946 167.008 -1.31413 174.32 3.33376 178.548L17.4299 191.37C21.2297 194.827 26.9524 195.081 31.0436 191.976L74.9934 158.614L175.893 250.667C177.489 252.264 179.363 253.467 181.379 254.252ZM191.883 69.8851L115.324 128L191.883 186.115V69.8851Z" fill="url(#paint0_linear_2115_1915)"/>
</g>
</g>
</g>
<defs>
<filter id="filter0_d" x="-8.39411" y="15.8291" width="116.727" height="92.2456" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<filter id="filter0_d_2115_1915" x="-8.48894" y="53.5224" width="272.822" height="210.149" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="4.16667"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow_2115_1915"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2115_1915" result="shape"/>
</filter>
<filter id="filter1_d" x="60.4167" y="-8.07558" width="47.9167" height="116.151" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<filter id="filter1_d_2115_1915" x="167.667" y="-7.67349" width="96.6667" height="271.347" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="4.16667"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow_2115_1915"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2115_1915" result="shape"/>
</filter>
<linearGradient id="paint0_linear" x1="49.9392" y1="0.257812" x2="49.9392" y2="99.7423" gradientUnits="userSpaceOnUse">
<linearGradient id="paint0_linear_2115_1915" x1="127.844" y1="0.659911" x2="127.844" y2="255.34" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
</linearGradient>
<clipPath id="clip0_2115_1915">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

+2 -2
View File
@@ -1,3 +1,3 @@
<svg width="66" height="48" viewBox="0 0 66 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.996 7C29.9934 7.00003 36.1588 12.5745 36.3671 20.7799L26.8691 21.0919C26.6191 16.5433 22.8492 13.5554 18.996 13.6445C13.7055 13.756 9.78938 17.5243 9.78934 23.5C9.78934 29.4757 13.7054 33.1773 18.996 33.1773C22.8492 33.177 26.5357 30.323 26.9524 25.7743L36.4503 25.9974C36.2004 34.3365 29.6602 40 18.996 40C8.33164 40 0 33.5338 0 23.5C3.90577e-05 13.4216 7.9984 7 18.996 7ZM66 7.97504V39.1914H41.0058V7.97504H66Z" fill="white"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M73.6815 64C116.338 64.0001 140.252 85.6012 141.06 117.397L104.22 118.606C103.25 100.98 88.6272 89.4022 73.6815 89.7474C53.1607 90.1795 37.9709 104.782 37.9708 127.938C37.9708 151.093 53.1603 165.437 73.6815 165.437C88.6272 165.436 102.926 154.377 104.543 136.75L141.383 137.615C140.414 169.929 115.046 191.875 73.6815 191.875C32.3167 191.875 0 166.818 0 127.938C0.000151497 88.8837 31.0241 64 73.6815 64ZM256 67.7783V188.742H159.053V67.7783H256Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 545 B

After

Width:  |  Height:  |  Size: 579 B

+8 -40
View File
@@ -1,41 +1,9 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="48px" height="48px"
viewBox="0 0 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
<g id="&#x421;&#x43B;&#x43E;&#x439;_1">
</g>
<g id="&#x421;&#x43B;&#x43E;&#x439;_2">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="20.8368" y1="4.2341" x2="26.7694" y2="41.1779">
<stop offset="0" style="stop-color:#50D133"/>
<stop offset="1" style="stop-color:#3DA126"/>
</linearGradient>
<path style="fill:url(#SVGID_1_);" d="M11.575,8.758c1.128,0.177,2.553,0.46,4.074,0.892c-0.343,0.977-0.636,2.004-0.856,3.057
c-1.093-0.01-2.173,0.066-3.212,0.201C11.482,11.344,11.508,9.907,11.575,8.758z M10.082,13.144
c-0.086-1.246-0.092-2.411-0.06-3.435C9.969,9.761,9.91,9.805,9.857,9.858c-1.25,1.25-2.277,2.636-3.127,4.097
C7.717,13.663,8.842,13.373,10.082,13.144z M12.205,17.121c0.579-0.994,1.279-1.936,2.129-2.787
c0.045-0.045,0.094-0.082,0.139-0.126c-0.935,0.008-1.862,0.082-2.759,0.202C11.818,15.306,11.988,16.217,12.205,17.121z
M10.929,18.242c-0.335-1.195-0.563-2.408-0.706-3.588c-1.763,0.336-3.316,0.797-4.461,1.189c-0.02,0.045-0.042,0.088-0.062,0.133
c0.502,1.124,1.236,2.597,2.204,4.132C8.84,19.432,9.852,18.793,10.929,18.242z M6.776,20.965c-0.716-1.122-1.297-2.2-1.77-3.162
c-0.593,1.827-0.915,3.719-0.969,5.621C4.795,22.666,5.717,21.813,6.776,20.965z M4.202,26.624
c0.252,1.922,0.784,3.808,1.593,5.604c0.371-1.03,0.848-2.205,1.45-3.425C6.083,28.069,5.056,27.31,4.202,26.624z M4.32,25.153
c0.907,0.765,2.102,1.686,3.489,2.571C8.361,26.718,9,25.715,9.732,24.763c-0.801-0.832-1.522-1.721-2.164-2.622
C6.243,23.212,5.127,24.298,4.32,25.153z M8.688,21.282c0.506,0.717,1.073,1.417,1.68,2.087c0.055-1.206,0.265-2.404,0.637-3.564
C10.193,20.258,9.413,20.754,8.688,21.282z M16.231,8.138c0.477-1.151,0.988-2.194,1.472-3.096
c-1.67,0.552-3.285,1.313-4.789,2.315C13.91,7.542,15.035,7.791,16.231,8.138z M17.774,8.625c0.919,0.321,1.849,0.705,2.762,1.151
c0.862-0.998,1.601-1.839,2.097-2.4c-0.72-0.597-1.862-1.515-3.063-2.385C19.007,5.977,18.364,7.222,17.774,8.625z M11.168,35.604
c-1.438-0.131-2.76-0.357-3.867-0.593c0.731,1.108,1.583,2.158,2.557,3.132c0.513,0.513,1.049,0.987,1.601,1.432
C11.307,38.432,11.184,37.07,11.168,35.604z M38.142,9.857C33.68,5.396,27.617,3.499,21.785,4.144
c1.581,1.206,2.84,2.294,2.932,2.375l0.767,0.667l-0.679,0.756c-0.016,0.018-0.896,1.001-2.17,2.466
c0.454-0.045,0.909-0.07,1.365-0.07c3.5,0,7.001,1.333,9.666,3.997c5.33,5.33,5.33,14.002,0,19.332
c-4.618,4.617-11.744,5.226-17.032,1.842c-1.014,0.147-2.034,0.214-3.031,0.214c-0.447,0-0.886-0.016-1.321-0.038
c0.027,1.87,0.233,3.567,0.436,4.817c3.389,2.319,7.333,3.492,11.283,3.492c5.122,0,10.243-1.95,14.142-5.848l0,0
C45.94,30.344,45.94,17.656,38.142,9.857z M15.296,34.535c-0.33-0.273-0.652-0.56-0.961-0.868c-0.671-0.671-1.257-1.396-1.759-2.16
c-0.169,1.027-0.26,2.057-0.286,3.06C13.268,34.62,14.282,34.611,15.296,34.535z M17.185,10.131
c-0.282,0.793-0.523,1.621-0.721,2.464c0.91-0.602,1.88-1.069,2.88-1.43c0.035-0.041,0.074-0.088,0.109-0.129
C18.703,10.69,17.941,10.391,17.185,10.131z M10.47,25.799c-0.606,0.824-1.151,1.685-1.624,2.554
c0.865,0.5,1.789,0.957,2.748,1.349C11.022,28.453,10.646,27.138,10.47,25.799z M11.541,30.983
c-1.146-0.437-2.237-0.972-3.252-1.553c-0.775,1.586-1.341,3.103-1.722,4.276c1.202,0.291,2.823,0.608,4.613,0.779
C11.214,33.341,11.324,32.161,11.541,30.983z"/>
</g>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M61.7339 46.7097C67.7499 47.6537 75.3499 49.163 83.4619 51.467C81.6326 56.6777 80.0699 62.155 78.8966 67.771C73.0673 67.7177 67.3073 68.123 61.7659 68.843C61.2379 60.5017 61.3766 52.8377 61.7339 46.7097ZM53.7712 70.1017C53.3126 63.4563 53.2806 57.243 53.4513 51.7817C53.1686 52.059 52.8539 52.2937 52.5713 52.5763C45.9046 59.243 40.4272 66.635 35.8939 74.427C41.1579 72.8697 47.1579 71.323 53.7712 70.1017ZM65.0939 91.3123C68.1819 86.011 71.9152 80.987 76.4486 76.4483C76.6886 76.2083 76.9499 76.011 77.1899 75.7763C72.2032 75.819 67.2592 76.2137 62.4752 76.8537C63.0299 81.6323 63.9366 86.491 65.0939 91.3123ZM58.2886 97.291C56.5019 90.9177 55.2859 84.4483 54.5232 78.155C45.1206 79.947 36.8379 82.4057 30.7312 84.4963C30.6246 84.7363 30.5072 84.9657 30.4006 85.2057C33.0779 91.2003 36.9926 99.0563 42.1552 107.243C47.1472 103.638 52.5446 100.23 58.2886 97.291ZM36.1392 111.814C32.3206 105.83 29.2219 100.08 26.6992 94.9497C23.5366 104.694 21.8193 114.784 21.5312 124.928C25.5739 120.886 30.4912 116.336 36.1392 111.814ZM22.4112 141.995C23.7552 152.246 26.5926 162.304 30.9072 171.883C32.8859 166.39 35.4299 160.123 38.6406 153.616C32.4432 149.702 26.9659 145.654 22.4112 141.995ZM23.0406 134.15C27.8779 138.23 34.2512 143.142 41.6486 147.862C44.5926 142.496 48.0006 137.147 51.9046 132.07C47.6326 127.632 43.7872 122.891 40.3632 118.086C33.2966 123.798 27.3446 129.59 23.0406 134.15ZM46.3366 113.504C49.0352 117.328 52.0593 121.062 55.2966 124.635C55.5899 118.203 56.7099 111.814 58.6939 105.627C54.3633 108.043 50.2032 110.688 46.3366 113.504ZM86.5659 43.403C89.1099 37.2643 91.8352 31.7017 94.4166 26.891C85.5099 29.835 76.8966 33.8937 68.8752 39.2377C74.1872 40.2243 80.1873 41.5523 86.5659 43.403ZM94.7952 46.0003C99.6966 47.7123 104.657 49.7603 109.526 52.139C114.123 46.8163 118.065 42.331 120.71 39.339C116.87 36.155 110.779 31.259 104.374 26.619C101.371 31.8777 97.9419 38.5177 94.7952 46.0003ZM59.5633 189.888C51.8939 189.19 44.8433 187.984 38.9393 186.726C42.8379 192.635 47.3819 198.235 52.5766 203.43C55.3126 206.166 58.1712 208.694 61.1152 211.067C60.3046 204.971 59.6486 197.707 59.5633 189.888ZM203.425 52.571C179.627 28.779 147.291 18.6617 116.187 22.1017C124.619 28.5337 131.334 34.3363 131.825 34.7683L135.915 38.3257L132.294 42.3577C132.209 42.4537 127.515 47.6963 120.721 55.5097C123.142 55.2697 125.569 55.1363 128.001 55.1363C146.667 55.1363 165.339 62.2457 179.553 76.4537C207.979 104.88 207.979 151.131 179.553 179.558C154.923 204.182 116.918 207.43 88.7153 189.382C83.3073 190.166 77.8673 190.523 72.5499 190.523C70.1659 190.523 67.8246 190.438 65.5046 190.32C65.6486 200.294 66.7473 209.344 67.8299 216.011C85.9046 228.379 106.939 234.635 128.006 234.635C155.323 234.635 182.635 224.235 203.43 203.446C245.014 161.835 245.014 94.1657 203.425 52.571ZM81.5792 184.187C79.8192 182.731 78.1019 181.2 76.4539 179.558C72.8753 175.979 69.7499 172.112 67.0726 168.038C66.1712 173.515 65.6859 179.008 65.5473 184.358C70.7633 184.64 76.1712 184.592 81.5792 184.187ZM91.6539 54.0323C90.1499 58.2617 88.8646 62.6777 87.8086 67.1737C92.6619 63.963 97.8352 61.4723 103.169 59.547C103.355 59.3283 103.563 59.0777 103.75 58.859C99.7499 57.0137 95.6859 55.419 91.6539 54.0323ZM55.8406 137.595C52.6086 141.99 49.7019 146.582 47.1792 151.216C51.7926 153.883 56.7206 156.32 61.8352 158.411C58.7846 151.75 56.7793 144.736 55.8406 137.595ZM61.5526 165.243C55.4406 162.912 49.6219 160.059 44.2086 156.96C40.0752 165.419 37.0566 173.51 35.0246 179.766C41.4352 181.318 50.0806 183.008 59.6273 183.92C59.8086 177.819 60.3953 171.526 61.5526 165.243Z" fill="url(#paint0_linear_2115_1929)"/>
<defs>
<linearGradient id="paint0_linear_2115_1929" x1="111.13" y1="22.5822" x2="142.771" y2="219.616" gradientUnits="userSpaceOnUse">
<stop stop-color="#50D133"/>
<stop offset="1" stop-color="#3DA126"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

+14 -2
View File
@@ -1,2 +1,14 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><linearGradient id="a" x1="28.607" y1="-60.825" x2="11.085" y2="-50.756" gradientTransform="matrix(1, 0, 0, -1, 0, -29.66)" gradientUnits="userSpaceOnUse"><stop offset="0.18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="b" x1="621.442" y1="1817.567" x2="603.915" y2="1827.64" gradientTransform="matrix(-1, 0, 0, 1, 624.83, -1816.71)" xlink:href="#a"/></defs><title>file_type_confluence</title><path d="M3.015,23.087c-.289.472-.614,1.02-.891,1.456a.892.892,0,0,0,.3,1.212l5.792,3.564a.89.89,0,0,0,1.226-.29l.008-.013c.231-.387.53-.891.855-1.43,2.294-3.787,4.6-3.323,8.763-1.336l5.743,2.731A.892.892,0,0,0,26,28.559l.011-.024L28.766,22.3a.891.891,0,0,0-.445-1.167c-1.212-.57-3.622-1.707-5.792-2.754C14.724,14.586,8.09,14.831,3.015,23.087Z" style="fill:url(#a)"/><path d="M28.985,8.932c.289-.472.614-1.02.891-1.456a.892.892,0,0,0-.3-1.212L23.785,2.7a.89.89,0,0,0-1.236.241.584.584,0,0,0-.033.053c-.232.387-.53.891-.856,1.43-2.294,3.787-4.6,3.323-8.763,1.336L7.172,3.043a.89.89,0,0,0-1.187.421l-.011.024L3.216,9.726a.891.891,0,0,0,.445,1.167c1.212.57,3.622,1.706,5.792,2.753C17.276,17.433,23.91,17.179,28.985,8.932Z" style="fill:url(#b)"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M24.12 184.696C21.808 188.472 19.208 192.856 16.992 196.344C16.0438 197.953 15.764 199.869 16.2127 201.682C16.6614 203.495 17.8028 205.059 19.392 206.04L65.728 234.552C66.5241 235.045 67.4095 235.375 68.3335 235.525C69.2576 235.675 70.2021 235.641 71.1131 235.426C72.0241 235.21 72.8837 234.817 73.6426 234.269C74.4015 233.721 75.045 233.029 75.536 232.232L75.6 232.128C77.448 229.032 79.84 225 82.44 220.688C100.792 190.392 119.24 194.104 152.544 210L198.488 231.848C199.334 232.251 200.252 232.483 201.188 232.532C202.124 232.58 203.06 232.444 203.943 232.13C204.827 231.817 205.64 231.332 206.336 230.705C207.032 230.077 207.597 229.318 208 228.472L208.088 228.28L230.128 178.4C230.877 176.688 230.923 174.75 230.258 173.004C229.592 171.258 228.267 169.843 226.568 169.064C216.872 164.504 197.592 155.408 180.232 147.032C117.792 116.688 64.72 118.648 24.12 184.696Z" fill="url(#paint0_linear_2115_1931)"/>
<path d="M231.88 71.456C234.192 67.68 236.792 63.296 239.008 59.808C239.956 58.1992 240.236 56.2828 239.787 54.4701C239.339 52.6573 238.197 51.0927 236.608 50.112L190.28 21.6C189.504 21.0769 188.633 20.7117 187.716 20.5255C186.799 20.3393 185.855 20.3356 184.936 20.5147C184.018 20.6937 183.144 21.052 182.364 21.5691C181.585 22.0861 180.914 22.7518 180.392 23.528C180.297 23.6645 180.208 23.806 180.128 23.952C178.272 27.048 175.888 31.08 173.28 35.392C154.928 65.688 136.48 61.976 103.176 46.08L57.376 24.344C56.5315 23.941 55.6157 23.7085 54.6812 23.6596C53.7467 23.6108 52.8118 23.7467 51.9299 24.0595C51.0479 24.3723 50.2363 24.8559 49.5414 25.4826C48.8465 26.1094 48.2819 26.8669 47.88 27.712L47.792 27.904L25.728 77.808C24.9791 79.5202 24.9326 81.458 25.5984 83.2041C26.2642 84.9503 27.5892 86.3651 29.288 87.144C38.984 91.704 58.264 100.792 75.624 109.168C138.208 139.464 191.28 137.432 231.88 71.456Z" fill="url(#paint1_linear_2115_1931)"/>
<defs>
<linearGradient id="paint0_linear_2115_1931" x1="228.856" y1="249.32" x2="88.68" y2="168.768" gradientUnits="userSpaceOnUse">
<stop offset="0.18" stop-color="#0052CC"/>
<stop offset="1" stop-color="#2684FF"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_1931" x1="27.104" y1="6.85597" x2="167.32" y2="87.44" gradientUnits="userSpaceOnUse">
<stop offset="0.18" stop-color="#0052CC"/>
<stop offset="1" stop-color="#2684FF"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

+3 -1
View File
@@ -1 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-container"><path d="M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z"/><path d="M10 21.9V14L2.1 9.1"/><path d="m10 14 11.9-6.9"/><path d="M14 19.8v-8.1"/><path d="M18 17.5V9.4"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M224 93.626L202.667 105.991V168.168L219.615 158.293C220.389 157.814 221.625 156.643 222.687 154.845C223.189 153.996 223.541 153.173 223.76 152.491C223.965 151.854 223.997 151.514 224 151.47V93.626ZM117.333 155.48V217.876L138.667 205.449V143.105L117.333 155.48ZM160 130.741V193.022L181.333 180.595V118.366L160 130.741ZM149.865 32.8031C148.536 32.8035 147.228 33.1468 146.073 33.8031L40.1354 95.5115L106.844 136.886L217 73.0219L153.552 33.751C152.422 33.1324 151.154 32.8031 149.865 32.8031ZM32.25 175.001C32.4813 175.744 32.8567 176.633 33.3645 177.564C34.3541 179.377 35.4494 180.61 36.0729 181.157L96 218.261V155.261L32 115.574V173.866C32.0006 173.866 32.0135 174.241 32.25 175.001ZM245.333 151.47C245.333 156.649 243.391 161.729 241.052 165.689C238.666 169.726 235.114 173.879 230.552 176.616L230.437 176.689L120.573 240.689L120.469 240.741C116.1 243.224 111.161 244.532 106.135 244.532C101.108 244.532 96.1619 243.225 91.7916 240.741C91.6768 240.675 91.5602 240.602 91.4479 240.532L24.25 198.939C23.9805 198.772 23.7223 198.587 23.4687 198.397C19.7682 195.621 16.7272 191.607 14.6354 187.772C12.5833 184.009 10.6666 179.001 10.6666 173.866V103.47C10.6666 100.925 11.076 98.3759 11.8125 95.9177C11.9783 94.3795 12.464 92.8518 13.3333 91.449C13.5893 91.0362 13.8767 90.6472 14.177 90.2823C16.8703 85.4243 20.9693 81.3699 25.9479 79.0844L135.427 15.3135L135.531 15.2615C139.901 12.778 144.839 11.4701 149.865 11.4698C154.264 11.4698 158.599 12.4715 162.542 14.3865L164.208 15.2615L164.552 15.4594L231.75 57.0635L232.531 57.6052C236.071 60.2604 239.733 64.42 242.229 69.4698C242.44 69.7617 242.638 70.0679 242.823 70.3865C243.567 71.6705 244.017 73.0425 244.187 74.4281C244.913 76.8784 245.333 79.4674 245.333 82.1365V151.47Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 490 B

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 12 KiB

+8 -25
View File
@@ -1,25 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="306px" height="344.35px" viewBox="0 0 306 344.35" enable-background="new 0 0 306 344.35" xml:space="preserve">
<path fill="#00599C" d="M302.107,258.262c2.401-4.159,3.893-8.845,3.893-13.053V99.14c0-4.208-1.49-8.893-3.892-13.052L153,172.175
L302.107,258.262z"/>
<path fill="#004482" d="M166.25,341.193l126.5-73.034c3.644-2.104,6.956-5.737,9.357-9.897L153,172.175L3.893,258.263
c2.401,4.159,5.714,7.793,9.357,9.896l126.5,73.034C147.037,345.401,158.963,345.401,166.25,341.193z"/>
<path fill="#659AD2" d="M302.108,86.087c-2.402-4.16-5.715-7.793-9.358-9.897L166.25,3.156c-7.287-4.208-19.213-4.208-26.5,0
L13.25,76.19C5.962,80.397,0,90.725,0,99.14v146.069c0,4.208,1.491,8.894,3.893,13.053L153,172.175L302.108,86.087z"/>
<g>
<path fill="#FFFFFF" d="M153,274.175c-56.243,0-102-45.757-102-102s45.757-102,102-102c36.292,0,70.139,19.53,88.331,50.968
l-44.143,25.544c-9.105-15.736-26.038-25.512-44.188-25.512c-28.122,0-51,22.878-51,51c0,28.121,22.878,51,51,51
c18.152,0,35.085-9.776,44.191-25.515l44.143,25.543C223.142,254.644,189.294,274.175,153,274.175z"/>
</g>
<g>
<polygon fill="#FFFFFF" points="255,166.508 243.666,166.508 243.666,155.175 232.334,155.175 232.334,166.508 221,166.508
221,177.841 232.334,177.841 232.334,189.175 243.666,189.175 243.666,177.841 255,177.841 "/>
</g>
<g>
<polygon fill="#FFFFFF" points="297.5,166.508 286.166,166.508 286.166,155.175 274.834,155.175 274.834,166.508 263.5,166.508
263.5,177.841 274.834,177.841 274.834,189.175 286.166,189.175 286.166,177.841 297.5,177.841 "/>
</g>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M239.491 192C241.279 188.908 242.39 185.424 242.39 182.296V73.7037C242.39 70.5754 241.281 67.0924 239.492 64.0005L128.445 128L239.491 192Z" fill="#00599C"/>
<path d="M138.313 253.653L232.523 199.357C235.236 197.793 237.703 195.092 239.491 192L128.445 128L17.3994 192C19.1875 195.092 21.6549 197.794 24.3679 199.357L118.577 253.653C124.004 256.781 132.886 256.781 138.313 253.653Z" fill="#004482"/>
<path d="M239.492 63.9996C237.703 60.907 235.235 58.2061 232.522 56.6419L138.313 2.34626C132.886 -0.782088 124.004 -0.782088 118.577 2.34626L24.3678 56.6419C18.9401 59.7695 14.5 67.4477 14.5 73.7036V182.296C14.5 185.424 15.6104 188.908 17.3993 192L128.445 128L239.492 63.9996Z" fill="#659AD2"/>
<path d="M128.445 203.83C86.5585 203.83 52.4814 169.813 52.4814 128C52.4814 86.1875 86.5585 52.1704 128.445 52.1704C155.473 52.1704 180.68 66.6896 194.228 90.0615L161.353 109.052C154.573 97.3531 141.962 90.0853 128.445 90.0853C107.501 90.0853 90.4631 107.094 90.4631 128C90.4631 148.906 107.501 165.915 128.445 165.915C141.963 165.915 154.574 158.647 161.356 146.947L194.231 165.936C180.682 189.31 155.474 203.83 128.445 203.83Z" fill="white"/>
<path d="M204.408 123.787H195.967V115.362H187.528V123.787H179.087V132.212H187.528V140.638H195.967V132.212H204.408V123.787Z" fill="white"/>
<path d="M236.06 123.787H227.62V115.362H219.18V123.787H210.739V132.212H219.18V140.638H227.62V132.212H236.06V123.787Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

+20 -47
View File
@@ -1,48 +1,21 @@
<?xml version="1.0"?>
<!-- MIT License
Copyright (c) 2023 LobeHub
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.-->
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<title>Cursor</title>
<defs>
<linearGradient fx="0.21" fy="0.75" id="svg_24" x1="1" x2="0.55" y1="0.34" y2="0.88">
<stop offset="0.18" stop-color="#666666" stop-opacity="1"/>
<stop offset="0.71" stop-color="#000000" stop-opacity="1"/>
</linearGradient>
<linearGradient fx="0.39" fy="0.45" id="svg_25" x1="0.48" x2="1" y1="0.26" y2="0.86">
<stop offset="0.16" stop-color="#7f7f7f" stop-opacity="1"/>
<stop offset="0.66" stop-color="#e5e5e5" stop-opacity="1"/>
</linearGradient>
<linearGradient fx="0.68" fy="0.53" id="svg_27" x1="0.36" x2="0.58" y1="0" y2="0.57">
<stop stop-color="#b2b2b2" stop-opacity="1"/>
<stop offset="0.67" stop-color="#666666" stop-opacity="1"/>
</linearGradient>
</defs>
<g class="layer">
<title>Layer 1</title>
<path d="m11.93,24l10.42,-6l-10.42,-6l-10.43,6l10.43,6z" fill="url(#svg_25)" id="svg_1" transform="matrix(1 0 0 1 0 0)"/>
<path d="m22.35,18l0,-12l-10.42,-6l0,12l10.42,6z" fill="url(#svg_24)" id="svg_2" transform="matrix(1 0 0 1 0 0)"/>
<path d="m11.93,0l-10.43,6l0,12l10.43,-6l0,-12z" fill="url(#svg_27)" id="svg_3"/>
<path d="m22.35,6l-10.42,18l0,-12l10.42,-6z" fill="#cccccc" id="svg_4"/>
<path d="m22.35,6l-10.42,6l-10.43,-6l20.85,0z" fill="#FFF" id="svg_5"/>
</g>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M127.253 256L238.4 192L127.253 128L16 192L127.253 256Z" fill="url(#paint0_linear_2115_1834)"/>
<path d="M238.401 192V64L127.254 0V128L238.401 192Z" fill="url(#paint1_linear_2115_1834)"/>
<path d="M127.253 0L16 64V192L127.253 128V0Z" fill="url(#paint2_linear_2115_1834)"/>
<path d="M238.401 64L127.254 256V128L238.401 64Z" fill="#CCCCCC"/>
<path d="M238.4 64L127.253 128L16 64H238.4Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_2115_1834" x1="122.752" y1="161.28" x2="176.469" y2="268.971" gradientUnits="userSpaceOnUse">
<stop offset="0.16" stop-color="#7F7F7F"/>
<stop offset="0.66" stop-color="#E5E5E5"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_1834" x1="238.401" y1="65.28" x2="156.084" y2="122.462" gradientUnits="userSpaceOnUse">
<stop offset="0.18" stop-color="#666666"/>
<stop offset="0.71"/>
</linearGradient>
<linearGradient id="paint2_linear_2115_1834" x1="56.0512" y1="-1.76125e-06" x2="114.067" y2="87.0989" gradientUnits="userSpaceOnUse">
<stop stop-color="#B2B2B2"/>
<stop offset="0.67" stop-color="#666666"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

+3 -1
View File
@@ -1 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-database"><ellipse cx="12" cy="5" rx="9" ry="3"/><path d="M3 5V19A9 3 0 0 0 21 19V5"/><path d="M3 12A9 3 0 0 0 21 12"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M213.333 154.917C209.096 157.089 204.37 159.047 199.26 160.75C179.869 167.214 154.241 170.667 128 170.667C101.759 170.667 76.1306 167.214 56.7395 160.75C51.6295 159.047 46.904 157.089 42.6666 154.917V202.688C42.669 202.703 42.6735 202.734 42.6874 202.781C42.7193 202.888 42.8088 203.111 43.0103 203.448C43.4345 204.155 44.3186 205.251 45.9999 206.604C49.4251 209.359 55.1498 212.397 63.4895 215.177C80.1054 220.716 103.32 224 128 224C152.68 224 175.894 220.716 192.51 215.177C200.85 212.397 206.575 209.359 210 206.604C211.681 205.251 212.565 204.155 212.989 203.448C213.191 203.111 213.281 202.888 213.312 202.781C213.326 202.734 213.331 202.703 213.333 202.688V154.917ZM213.333 80.2604C209.052 82.4505 204.31 84.4001 199.26 86.0834C180.534 92.3255 155.337 96 128 96C100.663 96 75.4659 92.3255 56.7395 86.0834C51.6901 84.4001 46.9478 82.4505 42.6666 80.2604V128.021C42.669 128.036 42.6735 128.067 42.6874 128.115C42.7193 128.222 42.8088 128.445 43.0103 128.781C43.4345 129.489 44.3186 130.584 45.9999 131.938C49.4251 134.693 55.1498 137.73 63.4895 140.51C80.1054 146.049 103.32 149.333 128 149.333C152.68 149.333 175.894 146.049 192.51 140.51C200.85 137.73 206.575 134.693 210 131.938C211.681 130.584 212.565 129.489 212.989 128.781C213.191 128.445 213.281 128.222 213.312 128.115C213.326 128.067 213.331 128.036 213.333 128.021V80.2604ZM213.302 53.1667C213.265 53.0472 213.171 52.8164 212.958 52.4688C212.506 51.7317 211.582 50.6225 209.854 49.2604C206.332 46.4849 200.575 43.5113 192.51 40.8229C176.492 35.4834 153.682 32 128 32C102.318 32 79.5082 35.4834 63.4895 40.8229C55.4246 43.5113 49.6676 46.4849 46.1458 49.2604C44.418 50.6225 43.4941 51.7317 43.0416 52.4688C42.8285 52.8164 42.7345 53.0472 42.6978 53.1667C42.6642 53.2771 42.6666 53.3256 42.6666 53.3334C42.6666 53.3411 42.6642 53.3896 42.6978 53.5C42.7345 53.6195 42.8285 53.8504 43.0416 54.1979C43.4941 54.935 44.418 56.0442 46.1458 57.4063C49.6676 60.1818 55.4246 63.1554 63.4895 65.8438C79.5082 71.1834 102.318 74.6667 128 74.6667C153.682 74.6667 176.492 71.1834 192.51 65.8438C200.575 63.1554 206.332 60.1818 209.854 57.4063C211.582 56.0442 212.506 54.935 212.958 54.1979C213.171 53.8504 213.265 53.6195 213.302 53.5C213.336 53.3896 213.333 53.3411 213.333 53.3334C213.333 53.3256 213.336 53.2771 213.302 53.1667ZM234.667 202.667C234.667 211.469 229.41 218.362 223.375 223.219C217.243 228.153 208.919 232.197 199.26 235.417C179.869 241.88 154.241 245.333 128 245.333C101.759 245.333 76.1306 241.88 56.7395 235.417C47.0812 232.197 38.7572 228.153 32.6249 223.219C26.9667 218.665 21.9939 212.322 21.3958 204.292L21.3333 202.667V53.3334C21.3333 44.2473 26.8649 37.2865 32.9374 32.5C39.1305 27.6194 47.4335 23.6857 56.7395 20.5834C75.4659 14.3412 100.663 10.6667 128 10.6667C155.337 10.6667 180.534 14.3412 199.26 20.5834C208.566 23.6857 216.869 27.6194 223.062 32.5C229.135 37.2865 234.667 44.2473 234.667 53.3334V202.667Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 320 B

After

Width:  |  Height:  |  Size: 2.9 KiB

+23 -18
View File
@@ -1,19 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" fill="none" viewBox="0 0 64 64">
<defs>
<linearGradient id="a" x1="59.7777" x2="1.07287" y1="3.98196" y2="62.6868" gradientUnits="userSpaceOnUse">
<stop offset=".28" stop-color="#7256FF"/>
<stop offset=".66" stop-color="#00D980"/>
</linearGradient>
<linearGradient id="b" x1="64.7178" x2="39.4774" y1="56.3788" y2="1.93862" gradientUnits="userSpaceOnUse">
<stop offset=".3" stop-color="#FF43F2"/>
<stop offset=".54" stop-color="#7256FF"/>
</linearGradient>
</defs>
<path fill="url(#a)" d="M4.07273 64H38.041c1.6291 0 3.1017-.9711 3.7434-2.4681l16.0681-37.4906c.217-.5068.3293-1.0531.3293-1.6046V4.07273C58.1818 1.82342 56.3584 0 54.1091 0h-17.966c-.8046 0-1.5912.238545-2.2609.685382L1.81353 22.0881C.681309 22.8439.001745 24.1146.001745 25.4755L0 59.9273C0 62.1766 1.82342 64 4.07273 64Z"/>
<path fill="url(#b)" d="M49.4812 58.1818h10.4465c2.2493 0 4.0727-1.8234 4.0727-4.0727V41.0164c0-.1925-.0139-.3851-.0407-.576L58.682 3.49673C58.3952 1.49004 56.6771 0 54.65 0H38.977c-2.2499 0-4.0733 1.824-4.0727 4.07389l.0047 18.53851c0 .4375.0704.8721.2088 1.2869l10.4995 31.4979c.5545 1.6629 2.1109 2.7846 3.8639 2.7846Z"/>
<path fill="#FF43F2" d="m48.0521 58.18 11.8755-.0017c2.2493 0 4.0722-1.8234 4.0722-4.0727V42.599c0-1.1887-.5196-2.3186-1.422-3.0924L24.4164 6.79677c-.7384-.63244-1.6786-.98036-2.6508-.98036H9.89011c-2.24931 0-4.07273 1.82341-4.07273 4.07272V21.3975c0 1.1887.51957 2.3185 1.42197 3.0924L45.4002 57.1991c.7383.633 1.6786.9804 2.6514.9804l.0005.0005Z"/>
<path fill="#000" d="M52 12H12v40h40V12Z"/>
<path fill="#fff" fill-rule="evenodd" d="M22.751 17.3641h-5.7569v15.1222h5.7569c1.4327 0 2.7144-.3241 3.8451-.9721 1.1376-.6481 2.027-1.5444 2.6681-2.6896.6405-1.152.9611-2.4522.9611-3.8994s-.3206-2.7433-.9611-3.8885c-.6411-1.152-1.5305-2.0524-2.6681-2.7005-1.1307-.648-2.4124-.9721-3.8451-.9721Zm2.3331 11.968c-.677.4033-1.4651.6047-2.3655.6047l-2.7757.0006V19.9136h2.7757c.8998 0 1.6885.2008 2.3655.6047.677.4033 1.1989.9825 1.5664 1.7388.3674.7493.5508 1.6381.5508 2.6681s-.1834 1.9222-.5508 2.6785c-.3675.7494-.8894 1.3245-1.5664 1.7284Z" clip-rule="evenodd"/>
<path fill="#fff" d="M35.3272 31.73c1.174.6764 2.4846 1.0155 3.9318 1.0155 1.3899 0 2.6427-.3096 3.7589-.9293 1.1231-.6197 2.0055-1.4651 2.6461-2.5385.6481-1.0797.9721-2.2856.9721-3.6182v-1.188h-6.405v2.3221h3.5161c-.0722.5605-.2757 1.0719-.6107 1.534-.3958.5468-.9322.9762-1.6092 1.2852-.6701.3095-1.4188.4646-2.2469.4646-.8928 0-1.6989-.2228-2.4193-.6695-.7204-.4467-1.2857-1.0583-1.696-1.836-.4027-.7841-.6046-1.6671-.6046-2.6461 0-.9791.2013-1.858.6046-2.6357.4109-.7847.9762-1.4003 1.696-1.847.7199-.4467 1.5265-.6695 2.4193-.6695.6053 0 1.1706.0972 1.696.2916.526.1875.9831.4577 1.372.8101.3963.3455.7094.7563.9397 1.2313h3.1541c-.2736-.9865-.7528-1.8574-1.4367-2.6137-.677-.7562-1.5126-1.3436-2.5061-1.7608-.9866-.4172-2.0663-.6266-3.2404-.6266-1.4477 0-2.7578.3414-3.9318 1.0259-1.1741.6764-2.0959 1.6132-2.7653 2.8081-.6695 1.188-1.0046 2.5165-1.0046 3.9857 0 1.4692.3351 2.8018 1.0046 3.9967.67 1.1879 1.5918 2.1236 2.7653 2.8081Z"/>
<path fill="#fff" d="M16.9941 43.9998h16v3h-16v-3Z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1842)">
<path d="M16.2909 256H152.164C158.68 256 164.571 252.116 167.138 246.128L231.41 96.1652C232.278 94.138 232.727 91.9528 232.727 89.7468V16.2909C232.727 7.29368 225.434 0 216.436 0H144.572C141.354 0 138.208 0.95418 135.529 2.74153L7.25412 88.3524C2.72524 91.3756 0.00698 96.4584 0.00698 101.902L0 239.709C0 248.706 7.29368 256 16.2909 256Z" fill="url(#paint0_linear_2115_1842)"/>
<path d="M197.925 232.727H239.711C248.708 232.727 256.002 225.434 256.002 216.436V164.066C256.002 163.296 255.946 162.525 255.839 161.762L234.728 13.9869C233.581 5.96016 226.708 0 218.6 0H155.908C146.908 0 139.615 7.296 139.617 16.2956L139.636 90.4496C139.636 92.1996 139.918 93.938 140.471 95.5972L182.469 221.589C184.687 228.24 190.913 232.727 197.925 232.727Z" fill="url(#paint1_linear_2115_1842)"/>
<path d="M192.208 232.72L239.71 232.713C248.708 232.713 255.999 225.42 255.999 216.422V170.396C255.999 165.641 253.921 161.122 250.311 158.026L97.6656 27.1871C94.712 24.6573 90.9512 23.2656 87.0624 23.2656H39.5605C30.5632 23.2656 23.2695 30.5593 23.2695 39.5565V85.59C23.2695 90.3448 25.3478 94.864 28.9574 97.9596L181.601 228.796C184.554 231.328 188.317 232.72 192.208 232.72Z" fill="#FF43F2"/>
<path d="M208 48H48V208H208V48Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.0039 69.4564H67.9763V129.945H91.0039C96.7347 129.945 101.862 128.649 106.384 126.057C110.935 123.464 114.492 119.879 117.057 115.298C119.619 110.69 120.901 105.49 120.901 99.7008C120.901 93.912 119.619 88.7276 117.057 84.1468C114.492 79.5388 110.935 75.9372 106.384 73.3448C101.862 70.7528 96.7347 69.4564 91.0039 69.4564ZM100.336 117.328C97.6283 118.942 94.4759 119.747 90.8743 119.747L79.7715 119.75V79.6544H90.8743C94.4735 79.6544 97.6283 80.4576 100.336 82.0732C103.044 83.6864 105.132 86.0032 106.602 89.0284C108.072 92.0256 108.805 95.5808 108.805 99.7008C108.805 103.821 108.072 107.39 106.602 110.415C105.132 113.412 103.044 115.713 100.336 117.328Z" fill="white"/>
<path d="M141.309 126.92C146.005 129.626 151.247 130.982 157.036 130.982C162.596 130.982 167.607 129.744 172.072 127.265C176.564 124.786 180.094 121.404 182.656 117.111C185.248 112.792 186.544 107.968 186.544 102.638V97.886H160.924V107.174H174.989C174.7 109.416 173.886 111.462 172.546 113.31C170.963 115.498 168.817 117.215 166.109 118.451C163.429 119.689 160.434 120.31 157.122 120.31C153.55 120.31 150.326 119.418 147.444 117.632C144.563 115.845 142.302 113.398 140.66 110.288C139.05 107.151 138.242 103.619 138.242 99.7032C138.242 95.7868 139.047 92.2712 140.66 89.1604C142.304 86.0216 144.565 83.5592 147.444 81.7724C150.324 79.9856 153.55 79.0944 157.122 79.0944C159.543 79.0944 161.804 79.4832 163.906 80.2608C166.01 81.0108 167.838 82.0916 169.394 83.5012C170.979 84.8832 172.231 86.5264 173.152 88.4264H185.769C184.674 84.4804 182.758 80.9968 180.022 77.9716C177.314 74.9468 173.972 72.5972 169.998 70.9284C166.051 69.2596 161.732 68.422 157.036 68.422C151.245 68.422 146.005 69.7876 141.309 72.5256C136.612 75.2312 132.925 78.9784 130.248 83.758C127.57 88.51 126.229 93.824 126.229 99.7008C126.229 105.578 127.57 110.908 130.248 115.688C132.928 120.439 136.615 124.182 141.309 126.92Z" fill="white"/>
<path d="M67.9763 175.999H131.976V187.999H67.9763V175.999Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_1842" x1="239.111" y1="15.9278" x2="4.29148" y2="250.747" gradientUnits="userSpaceOnUse">
<stop offset="0.28" stop-color="#7256FF"/>
<stop offset="0.66" stop-color="#00D980"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_1842" x1="258.871" y1="225.515" x2="157.91" y2="7.75448" gradientUnits="userSpaceOnUse">
<stop offset="0.3" stop-color="#FF43F2"/>
<stop offset="0.54" stop-color="#7256FF"/>
</linearGradient>
<clipPath id="clip0_2115_1842">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

+23 -18
View File
@@ -1,19 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" fill="none" viewBox="0 0 64 64">
<defs>
<linearGradient id="a" x1="3.98196" x2="62.6868" y1="4.22048" y2="62.9254" gradientUnits="userSpaceOnUse">
<stop offset=".28" stop-color="#007DFE"/>
<stop offset=".73" stop-color="#00D980"/>
</linearGradient>
<linearGradient id="b" x1="56.3788" x2="1.93862" y1="-.717381" y2="24.5231" gradientUnits="userSpaceOnUse">
<stop offset=".32" stop-color="#F0EB18"/>
<stop offset=".55" stop-color="#007DFE"/>
</linearGradient>
</defs>
<path fill="url(#a)" d="M64 59.9255V25.9572c0-1.6291-.9711-3.1017-2.4681-3.7434L24.0413 6.14572c-.5068-.21702-1.0531-.32931-1.6046-.32931H4.07273C1.82342 5.81641 0 7.63982 0 9.88913V27.8551c0 .8047.238545 1.5913.685382 2.2609L22.0887 62.1847c.7552 1.1322 2.0265 1.8118 3.3874 1.8118l34.4512.0017c2.2493 0 4.0727-1.8234 4.0727-4.0727Z"/>
<path fill="url(#b)" d="M58.1818 14.5193V4.07273C58.1818 1.82342 56.3584 0 54.1091 0H41.0164c-.1925 0-.3851.013964-.576.040727L3.49673 5.3184C1.49062 5.60465 0 7.32334 0 9.34982V25.0228c0 2.2499 1.824 4.0733 4.07389 4.0728l18.53851-.0047c.4375 0 .8721-.0704 1.2869-.2089l31.4979-10.4995c1.6629-.5544 2.7846-2.1108 2.7846-3.8638v.0006Z"/>
<path fill="#F0EB18" d="m58.182 15.9476-.0018-11.87545C58.1797 1.82342 56.3562 0 54.1075 0H42.6009c-1.1886 0-2.3185.519564-3.0924 1.42196L6.79872 39.5834c-.63243.7383-.98036 1.6786-.98036 2.6508v11.8755c0 2.2493 1.82342 4.0727 4.07273 4.0727H21.3994c1.1887 0 2.3186-.5196 3.0924-1.422L57.2016 18.599c.6331-.7383.9804-1.6786.9804-2.6514Z"/>
<path fill="#000" d="M52 12H12v40h40V12Z"/>
<path fill="#fff" fill-rule="evenodd" d="M22.8086 16.966h-5.7144v15.0099h5.7144c1.4222 0 2.6944-.3216 3.8167-.9649 1.1292-.6433 2.012-1.5278 2.6484-2.6668.6358-1.1522.954-2.4388.954-3.873 0-1.4342-.3182-2.7208-.954-3.8597-.6364-1.1396-1.5192-2.0373-2.6484-2.6806-1.1223-.6433-2.3945-.9649-3.8167-.9649Zm2.3159 11.8744c-.672.4021-1.4543.6031-2.348.6031l-2.7553-.0005v-9.9441h2.7553c.8931 0 1.676.201 2.348.6031.672.3889 1.1901.9649 1.5548 1.7156s.5468 1.6353.5468 2.6536c0 1.0184-.1821 1.9029-.5468 2.6536-.3647.7507-.8828 1.3268-1.5548 1.7156Z" clip-rule="evenodd"/>
<path fill="#fff" d="M34.3597 31.6411c.8438.402 1.8087.5898 2.8949.5898 1.0867 0 2.0522-.2016 2.8954-.6036.8437-.3889 1.4973-.9517 1.962-1.6485.4715-.7099.7076-1.5008.7076-2.3853 0-.7237-.1608-1.394-.4825-1.9971-.3216-.6163-.7719-1.1257-1.3509-1.541-.5715-.4285-1.2257-.7099-1.962-.8575l-2.5519-.5629c-.4647-.1069-.8329-.3079-1.1045-.5761-.2648-.2683-.3969-.6169-.3969-1.0322 0-.3618.0965-.6835.2895-.9517.1929-.2814.4612-.4957.8041-.6433.3503-.1608.7541-.2412 1.2113-.2412.4572 0 .861.0936 1.2114.2544.3572.1609.6323.3757.8253.6703.193.2947.2895.6163.2895.9782h2.927c-.0075-.8581-.2361-1.6221-.6864-2.2786-.4428-.657-1.0649-1.1797-1.8655-1.5548-.8007-.3618-1.726-.5491-2.734-.5491s-1.9087.1873-2.7019.5761c-.7932.3757-1.4112.9116-1.8546 1.595-.4428.683-.6645 1.4475-.6645 2.305 0 .7105.1464 1.3406.4394 1.9167.2935.5628.7041 1.0315 1.2331 1.4204.529.375 1.1511.6433 1.8656.8041l2.6484.5899c.5077.1206.904.3348 1.1901.6565.2929.3084.4394.7105.4394 1.1929 0 .3751-.1074.7237-.3217 1.0184-.2067.3084-.5037.5364-.8897.7105-.3791.1608-.8012.2544-1.3296.2544-.5285 0-.9971-.0936-1.4044-.2814-.4072-.1873-.7254-.4423-.954-.7771-.2286-.3217-.3429-.71-.3429-1.139h-2.9379c.0144.9115.2573 1.7288.7289 2.4393.479.7105 1.1367 1.2602 1.9729 1.6485Z"/>
<path fill="#fff" d="M16.9941 44.0009h16v3h-16v-3Z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1850)">
<path d="M256 239.702V103.829C256 97.3124 252.116 91.422 246.128 88.8552L96.1652 24.5829C94.138 23.7148 91.9528 23.2656 89.7468 23.2656H16.2909C7.29368 23.2656 0 30.5593 0 39.5565V111.42C0 114.639 0.95418 117.786 2.74153 120.464L88.3548 248.739C91.3756 253.268 96.4608 255.986 101.904 255.986L239.709 255.993C248.706 255.993 256 248.699 256 239.702Z" fill="url(#paint0_linear_2115_1850)"/>
<path d="M232.727 58.0772V16.2909C232.727 7.29368 225.434 0 216.436 0H164.066C163.296 0 162.525 0.055856 161.762 0.162908L13.9869 21.2736C5.96248 22.4186 0 29.2934 0 37.3993V100.091C0 109.091 7.296 116.384 16.2956 116.382L90.4496 116.364C92.1996 116.364 93.938 116.082 95.5972 115.528L221.589 73.53C228.24 71.3124 232.727 65.0892 232.727 58.0772Z" fill="url(#paint1_linear_2115_1850)"/>
<path d="M232.728 63.7904L232.721 16.2886C232.719 7.29368 225.425 0 216.43 0H170.404C165.649 0 161.13 2.07826 158.034 5.68784L27.1949 158.334C24.6652 161.287 23.2734 165.048 23.2734 168.937V216.439C23.2734 225.436 30.5671 232.73 39.5644 232.73H85.5976C90.3524 232.73 94.872 230.651 97.9672 227.042L228.806 74.396C231.339 71.4428 232.728 67.6816 232.728 63.7904Z" fill="#F0EB18"/>
<path d="M208 48H48V208H208V48Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.2343 67.864H68.3767V127.904H91.2343C96.9231 127.904 102.012 126.617 106.501 124.044C111.018 121.471 114.549 117.933 117.095 113.377C119.638 108.768 120.911 103.622 120.911 97.8848C120.911 92.148 119.638 87.0016 117.095 82.446C114.549 77.8876 111.018 74.2968 106.501 71.7236C102.012 69.1504 96.9231 67.864 91.2343 67.864ZM100.498 115.362C97.8099 116.97 94.6807 117.774 91.1059 117.774L80.0847 117.772V77.9956H91.1059C94.6783 77.9956 97.8099 78.7996 100.498 80.408C103.186 81.9636 105.258 84.2676 106.717 87.2704C108.176 90.2732 108.904 93.8116 108.904 97.8848C108.904 101.958 108.176 105.496 106.717 108.499C105.258 111.502 103.186 113.806 100.498 115.362Z" fill="white"/>
<path d="M137.439 126.564C140.814 128.172 144.674 128.924 149.018 128.924C153.365 128.924 157.227 128.117 160.6 126.509C163.975 124.954 166.589 122.702 168.448 119.915C170.334 117.076 171.278 113.912 171.278 110.374C171.278 107.479 170.635 104.798 169.348 102.386C168.062 99.9204 166.261 97.8828 163.945 96.2216C161.659 94.5076 159.042 93.382 156.097 92.7916L145.889 90.54C144.03 90.1124 142.558 89.3084 141.471 88.2356C140.412 87.1624 139.884 85.768 139.884 84.1068C139.884 82.6596 140.27 81.3728 141.042 80.3C141.813 79.1744 142.886 78.3172 144.258 77.7268C145.659 77.0836 147.274 76.762 149.103 76.762C150.932 76.762 152.547 77.1364 153.949 77.7796C155.378 78.4232 156.478 79.2824 157.25 80.4608C158.022 81.6396 158.408 82.926 158.408 84.3736H170.116C170.086 80.9412 169.172 77.8852 167.37 75.2592C165.599 72.6312 163.111 70.5404 159.908 69.04C156.706 67.5928 153.004 66.8436 148.972 66.8436C144.94 66.8436 141.338 67.5928 138.165 69.148C134.992 70.6508 132.52 72.7944 130.746 75.528C128.975 78.26 128.088 81.318 128.088 84.748C128.088 87.59 128.674 90.1104 129.846 92.4148C131.02 94.666 132.662 96.5408 134.778 98.0964C136.894 99.5964 139.383 100.67 142.241 101.313L152.834 103.672C154.865 104.155 156.45 105.012 157.595 106.298C158.766 107.532 159.352 109.14 159.352 111.07C159.352 112.57 158.923 113.965 158.066 115.144C157.239 116.377 156.051 117.289 154.507 117.986C152.99 118.629 151.302 119.003 149.188 119.003C147.074 119.003 145.2 118.629 143.571 117.878C141.942 117.128 140.669 116.108 139.755 114.769C138.84 113.482 138.383 111.929 138.383 110.213H126.632C126.689 113.859 127.661 117.128 129.547 119.97C131.463 122.812 134.094 125.011 137.439 126.564Z" fill="white"/>
<path d="M67.9763 176.004H131.976V188.004H67.9763V176.004Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_1850" x1="15.9278" y1="16.8819" x2="250.747" y2="251.702" gradientUnits="userSpaceOnUse">
<stop offset="0.28" stop-color="#007DFE"/>
<stop offset="0.73" stop-color="#00D980"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_1850" x1="225.515" y1="-2.86952" x2="7.75448" y2="98.0924" gradientUnits="userSpaceOnUse">
<stop offset="0.32" stop-color="#F0EB18"/>
<stop offset="0.55" stop-color="#007DFE"/>
</linearGradient>
<clipPath id="clip0_2115_1850">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

+4 -1
View File
@@ -1 +1,4 @@
<svg width="82" height="80" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><g transform="translate(-550 -124)"><g><g><g><g><path d="M551 124 631 124 631 204 551 204Z" fill="#ED7100" fill-rule="evenodd" fill-opacity="1"/><path d="M612.069 162.386C607.327 165.345 600.717 168.353 593.46 170.855 588.339 172.62 583.33 173.978 578.865 174.838 582.727 184.68 589.944 191.037 596.977 189.853 603.514 188.75 608.387 181.093 609.1 170.801L611.096 170.939C610.304 182.347 604.893 190.545 597.309 191.825 596.648 191.937 595.984 191.991 595.323 191.991 587.945 191.991 580.718 185.209 576.871 175.194 575.733 175.38 574.625 175.542 573.584 175.653 572.173 175.803 570.901 175.879 569.769 175.879 565.95 175.879 563.726 175.025 563.141 173.328 562.414 171.218 564.496 168.566 569.328 165.445L570.414 167.125C565.704 170.167 564.814 172.046 565.032 172.677 565.263 173.348 567.279 174.313 573.372 173.665 574.267 173.57 575.216 173.433 576.187 173.28 575.537 171.297 575.014 169.205 574.647 167.028 573.406 159.673 574.056 152.438 576.48 146.654 578.969 140.715 583.031 136.99 587.917 136.166 593.803 135.171 600.075 138.691 604.679 145.579L603.017 146.69C598.862 140.476 593.349 137.28 588.249 138.138 584.063 138.844 580.539 142.143 578.325 147.427 576.046 152.866 575.44 159.709 576.62 166.695 576.988 168.876 577.515 170.966 578.173 172.937 582.618 172.1 587.651 170.742 592.807 168.965 599.927 166.51 606.392 163.572 611.01 160.689 616.207 157.447 617.201 155.444 616.969 154.772 616.769 154.189 615.095 153.299 610.097 153.653L609.957 151.657C615.171 151.289 618.171 152.116 618.86 154.12 619.619 156.32 617.334 159.101 612.069 162.386" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/></g></g></g></g></g></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H256V256H0V0Z" fill="#ED7100"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M195.422 122.836C180.248 132.304 159.096 141.93 135.873 149.936C119.486 155.584 103.457 159.93 89.1692 162.682C101.528 194.176 124.622 214.519 147.128 210.73C168.046 207.2 183.64 182.698 185.921 149.764L192.308 150.205C189.774 186.711 172.459 212.944 148.19 217.04C146.075 217.399 143.95 217.572 141.835 217.572C118.225 217.572 95.0987 195.869 82.7883 163.821C79.1467 164.416 75.6011 164.935 72.2699 165.29C67.7547 165.77 63.6843 166.013 60.0619 166.013C47.8411 166.013 40.7244 163.28 38.8524 157.85C36.526 151.098 43.1884 142.612 58.6508 132.624L62.126 138C47.054 147.735 44.2059 153.748 44.9035 155.767C45.6427 157.914 52.094 161.002 71.5916 158.928C74.4556 158.624 77.4924 158.186 80.5996 157.696C78.5196 151.351 76.8459 144.656 75.6715 137.69C71.7003 114.154 73.7803 91.0021 81.5371 72.4933C89.5019 53.4885 102.5 41.5685 118.136 38.9317C136.971 35.7477 157.041 47.0117 171.774 69.0533L166.456 72.6085C153.16 52.7237 135.518 42.4965 119.198 45.2421C105.803 47.5013 94.526 58.0581 87.4412 74.9669C80.1484 92.3717 78.2092 114.269 81.9852 136.624C83.1628 143.604 84.8491 150.292 86.9547 156.599C101.179 153.92 117.284 149.575 133.784 143.888C156.568 136.032 177.256 126.631 192.033 117.405C208.664 107.031 211.844 100.621 211.102 98.4709C210.462 96.6053 205.105 93.7573 189.112 94.8901L188.664 88.5029C205.348 87.3253 214.948 89.9716 217.153 96.3844C219.582 103.424 212.27 112.324 195.422 122.836Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

+21 -86
View File
@@ -1,86 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
<!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
<!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
<!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
<!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
<!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg
xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" i:viewOrigin="262 450" i:rulerOrigin="0 0" i:pageBounds="0 792 612 0"
xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
width="87.041" height="108.445" viewBox="0 0 87.041 108.445" overflow="visible" enable-background="new 0 0 87.041 108.445"
xml:space="preserve">
<metadata>
<variableSets xmlns="&ns_vars;">
<variableSet varSetName="binding1" locked="none">
<variables></variables>
<v:sampleDataSets xmlns="&ns_custom;" xmlns:v="&ns_vars;"></v:sampleDataSets>
</variableSet>
</variableSets>
<sfw xmlns="&ns_sfw;">
<slices></slices>
<sliceSourceBounds y="341.555" x="262" width="87.041" height="108.445" bottomLeftOrigin="true"></sliceSourceBounds>
</sfw>
</metadata>
<g id="Layer_1" i:layer="yes" i:dimmedPercent="50" i:rgbTrio="#4F008000FFFF">
<g>
<path i:knockout="Off" fill="#A80030" d="M51.986,57.297c-1.797,0.025,0.34,0.926,2.686,1.287
c0.648-0.506,1.236-1.018,1.76-1.516C54.971,57.426,53.484,57.434,51.986,57.297"/>
<path i:knockout="Off" fill="#A80030" d="M61.631,54.893c1.07-1.477,1.85-3.094,2.125-4.766c-0.24,1.192-0.887,2.221-1.496,3.307
c-3.359,2.115-0.316-1.256-0.002-2.537C58.646,55.443,61.762,53.623,61.631,54.893"/>
<path i:knockout="Off" fill="#A80030" d="M65.191,45.629c0.217-3.236-0.637-2.213-0.924-0.978
C64.602,44.825,64.867,46.932,65.191,45.629"/>
<path i:knockout="Off" fill="#A80030" d="M45.172,1.399c0.959,0.172,2.072,0.304,1.916,0.533
C48.137,1.702,48.375,1.49,45.172,1.399"/>
<path i:knockout="Off" fill="#A80030" d="M47.088,1.932l-0.678,0.14l0.631-0.056L47.088,1.932"/>
<path i:knockout="Off" fill="#A80030" d="M76.992,46.856c0.107,2.906-0.85,4.316-1.713,6.812l-1.553,0.776
c-1.271,2.468,0.123,1.567-0.787,3.53c-1.984,1.764-6.021,5.52-7.313,5.863c-0.943-0.021,0.639-1.113,0.846-1.541
c-2.656,1.824-2.131,2.738-6.193,3.846l-0.119-0.264c-10.018,4.713-23.934-4.627-23.751-17.371
c-0.107,0.809-0.304,0.607-0.526,0.934c-0.517-6.557,3.028-13.143,9.007-15.832c5.848-2.895,12.704-1.707,16.893,2.197
c-2.301-3.014-6.881-6.209-12.309-5.91c-5.317,0.084-10.291,3.463-11.951,7.131c-2.724,1.715-3.04,6.611-4.227,7.507
C31.699,56.271,36.3,61.342,44.083,67.307c1.225,0.826,0.345,0.951,0.511,1.58c-2.586-1.211-4.954-3.039-6.901-5.277
c1.033,1.512,2.148,2.982,3.589,4.137c-2.438-0.826-5.695-5.908-6.646-6.115c4.203,7.525,17.052,13.197,23.78,10.383
c-3.113,0.115-7.068,0.064-10.566-1.229c-1.469-0.756-3.467-2.322-3.11-2.615c9.182,3.43,18.667,2.598,26.612-3.771
c2.021-1.574,4.229-4.252,4.867-4.289c-0.961,1.445,0.164,0.695-0.574,1.971c2.014-3.248-0.875-1.322,2.082-5.609l1.092,1.504
c-0.406-2.696,3.348-5.97,2.967-10.234c0.861-1.304,0.961,1.403,0.047,4.403c1.268-3.328,0.334-3.863,0.66-6.609
c0.352,0.923,0.814,1.904,1.051,2.878c-0.826-3.216,0.848-5.416,1.262-7.285c-0.408-0.181-1.275,1.422-1.473-2.377
c0.029-1.65,0.459-0.865,0.625-1.271c-0.324-0.186-1.174-1.451-1.691-3.877c0.375-0.57,1.002,1.478,1.512,1.562
c-0.328-1.929-0.893-3.4-0.916-4.88c-1.49-3.114-0.527,0.415-1.736-1.337c-1.586-4.947,1.316-1.148,1.512-3.396
c2.404,3.483,3.775,8.881,4.404,11.117c-0.48-2.726-1.256-5.367-2.203-7.922c0.73,0.307-1.176-5.609,0.949-1.691
c-2.27-8.352-9.715-16.156-16.564-19.818c0.838,0.767,1.896,1.73,1.516,1.881c-3.406-2.028-2.807-2.186-3.295-3.043
c-2.775-1.129-2.957,0.091-4.795,0.002c-5.23-2.774-6.238-2.479-11.051-4.217l0.219,1.023c-3.465-1.154-4.037,0.438-7.782,0.004
c-0.228-0.178,1.2-0.644,2.375-0.815c-3.35,0.442-3.193-0.66-6.471,0.122c0.808-0.567,1.662-0.942,2.524-1.424
c-2.732,0.166-6.522,1.59-5.352,0.295c-4.456,1.988-12.37,4.779-16.811,8.943l-0.14-0.933c-2.035,2.443-8.874,7.296-9.419,10.46
l-0.544,0.127c-1.059,1.793-1.744,3.825-2.584,5.67c-1.385,2.36-2.03,0.908-1.833,1.278c-2.724,5.523-4.077,10.164-5.246,13.97
c0.833,1.245,0.02,7.495,0.335,12.497c-1.368,24.704,17.338,48.69,37.785,54.228c2.997,1.072,7.454,1.031,11.245,1.141
c-4.473-1.279-5.051-0.678-9.408-2.197c-3.143-1.48-3.832-3.17-6.058-5.102l0.881,1.557c-4.366-1.545-2.539-1.912-6.091-3.037
l0.941-1.229c-1.415-0.107-3.748-2.385-4.386-3.646l-1.548,0.061c-1.86-2.295-2.851-3.949-2.779-5.23l-0.5,0.891
c-0.567-0.973-6.843-8.607-3.587-6.83c-0.605-0.553-1.409-0.9-2.281-2.484l0.663-0.758c-1.567-2.016-2.884-4.6-2.784-5.461
c0.836,1.129,1.416,1.34,1.99,1.533c-3.957-9.818-4.179-0.541-7.176-9.994l0.634-0.051c-0.486-0.732-0.781-1.527-1.172-2.307
l0.276-2.75C4.667,58.121,6.719,47.409,7.13,41.534c0.285-2.389,2.378-4.932,3.97-8.92l-0.97-0.167
c1.854-3.234,10.586-12.988,14.63-12.486c1.959-2.461-0.389-0.009-0.772-0.629c4.303-4.453,5.656-3.146,8.56-3.947
c3.132-1.859-2.688,0.725-1.203-0.709c5.414-1.383,3.837-3.144,10.9-3.846c0.745,0.424-1.729,0.655-2.35,1.205
c4.511-2.207,14.275-1.705,20.617,1.225c7.359,3.439,15.627,13.605,15.953,23.17l0.371,0.1
c-0.188,3.802,0.582,8.199-0.752,12.238L76.992,46.856"/>
<path i:knockout="Off" fill="#A80030" d="M32.372,59.764l-0.252,1.26c1.181,1.604,2.118,3.342,3.626,4.596
C34.661,63.502,33.855,62.627,32.372,59.764"/>
<path i:knockout="Off" fill="#A80030" d="M35.164,59.654c-0.625-0.691-0.995-1.523-1.409-2.352
c0.396,1.457,1.207,2.709,1.962,3.982L35.164,59.654"/>
<path i:knockout="Off" fill="#A80030" d="M84.568,48.916l-0.264,0.662c-0.484,3.438-1.529,6.84-3.131,9.994
C82.943,56.244,84.088,52.604,84.568,48.916"/>
<path i:knockout="Off" fill="#A80030" d="M45.527,0.537C46.742,0.092,48.514,0.293,49.803,0c-1.68,0.141-3.352,0.225-5.003,0.438
L45.527,0.537"/>
<path i:knockout="Off" fill="#A80030" d="M2.872,23.219c0.28,2.592-1.95,3.598,0.494,1.889
C4.676,22.157,2.854,24.293,2.872,23.219"/>
<path i:knockout="Off" fill="#A80030" d="M0,35.215c0.563-1.728,0.665-2.766,0.88-3.766C-0.676,33.438,0.164,33.862,0,35.215"/>
</g>
</g>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2221_50)">
<path d="M148.131 135.257C143.899 135.316 148.932 137.443 154.457 138.296C155.983 137.101 157.368 135.892 158.602 134.717C155.161 135.562 151.659 135.581 148.131 135.257Z" fill="#A80030"/>
<path d="M170.847 129.583C173.368 126.096 175.205 122.279 175.852 118.332C175.287 121.146 173.763 123.575 172.329 126.139C164.418 131.131 171.585 123.174 172.324 120.15C163.817 130.881 171.156 126.585 170.847 129.583Z" fill="#A80030"/>
<path d="M179.233 107.714C179.744 100.075 177.733 102.49 177.057 105.405C177.846 105.816 178.47 110.79 179.233 107.714Z" fill="#A80030"/>
<path d="M132.084 3.30273C134.343 3.70877 136.964 4.02037 136.597 4.56096C139.067 4.01801 139.628 3.51755 132.084 3.30273Z" fill="#A80030"/>
<path d="M136.595 4.56055L134.998 4.89104L136.484 4.75884L136.595 4.56055Z" fill="#A80030"/>
<path d="M207.025 110.611C207.277 117.471 205.023 120.799 202.991 126.691L199.333 128.523C196.34 134.349 199.623 132.222 197.479 136.856C192.807 141.021 183.299 149.887 180.256 150.697C178.035 150.647 181.761 148.069 182.248 147.059C175.993 151.365 177.229 153.522 167.663 156.138L167.382 155.515C143.788 166.641 111.013 144.592 111.444 114.508C111.192 116.418 110.728 115.941 110.205 116.713C108.987 101.234 117.336 85.6871 131.418 79.3393C145.191 72.5052 161.339 75.3097 171.205 84.5256C165.785 77.4106 154.999 69.8684 142.214 70.5742C129.692 70.7725 117.977 78.7491 114.067 87.408C107.652 91.4565 106.907 103.014 104.112 105.129C100.351 132.836 111.187 144.807 129.517 158.888C132.403 160.838 130.33 161.133 130.721 162.618C124.63 159.759 119.053 155.444 114.468 150.161C116.901 153.73 119.527 157.2 122.921 159.927C117.179 157.977 109.508 145.98 107.268 145.492C117.167 163.255 147.429 176.645 163.275 170.002C155.943 170.274 146.628 170.153 138.39 167.101C134.93 165.316 130.224 161.62 131.065 160.928C152.69 169.025 175.03 167.061 193.742 152.026C198.502 148.31 203.702 141.988 205.205 141.901C202.941 145.312 205.591 143.542 203.853 146.554C208.596 138.887 201.792 143.433 208.756 133.313L211.328 136.863C210.372 130.499 219.213 122.77 218.316 112.705C220.344 109.626 220.579 116.017 218.427 123.099C221.413 115.242 219.213 113.979 219.981 107.497C220.81 109.676 221.898 111.992 222.456 114.291C220.511 106.699 224.454 101.506 225.429 97.0937C224.468 96.6664 222.426 100.451 221.96 91.4824C222.028 87.5874 223.041 89.4405 223.432 88.4821C222.668 88.043 220.667 85.0568 219.449 79.3298C220.332 77.9843 221.809 82.8189 223.01 83.0172C222.237 78.4635 220.907 74.991 220.853 71.4972C217.343 64.1462 219.611 72.4769 216.764 68.341C213.029 56.6629 219.863 65.631 220.325 60.3243C225.987 68.5464 229.216 81.2892 230.697 86.5676C229.567 80.1325 227.739 73.898 225.509 67.8666C227.228 68.5913 222.739 54.6257 227.744 63.8747C222.398 44.1586 204.863 25.7362 188.732 17.0915C190.706 18.9021 193.198 21.1754 192.303 21.5318C184.281 16.7445 185.692 16.3715 184.542 14.3484C178.007 11.6832 177.578 14.5632 173.249 14.3531C160.931 7.80471 158.557 8.5011 147.222 4.3983L147.737 6.81324C139.577 4.08905 138.229 7.8472 129.409 6.82268C128.872 6.40248 132.235 5.30242 135.003 4.89875C127.113 5.94216 127.483 3.34073 119.762 5.18675C121.665 3.84827 123.677 2.96303 125.707 1.8252C119.272 2.21706 110.346 5.57862 113.102 2.52158C102.607 7.21454 83.9677 13.8031 73.5082 23.6328L73.1785 21.4303C68.3856 27.1974 52.2783 38.6536 50.9947 46.1227L49.7135 46.4225C47.2193 50.6551 45.606 55.4519 43.6276 59.8073C40.3657 65.3784 38.8465 61.9508 39.3105 62.8242C32.8949 75.8621 29.7083 86.8178 26.9551 95.8024C28.917 98.7414 27.0022 113.495 27.7441 125.303C24.5221 183.621 68.5787 240.243 116.736 253.316C123.794 255.847 134.292 255.75 143.22 256.01C132.685 252.991 131.324 254.409 121.062 250.824C113.66 247.33 112.037 243.34 106.794 238.78L108.869 242.455C98.5865 238.808 102.889 237.941 94.5238 235.286L96.74 232.385C93.4074 232.132 87.9127 226.754 86.4101 223.778L82.7642 223.922C78.3835 218.504 76.0495 214.599 76.219 211.575L75.0414 213.679C73.706 211.382 58.9247 193.361 66.5933 197.556C65.1684 196.25 63.2748 195.431 61.2211 191.692L62.7826 189.902C59.0919 185.143 55.9901 179.043 56.2257 177.011C58.1946 179.676 59.5606 180.174 60.9125 180.63C51.593 157.453 51.0701 179.353 44.0115 157.038L45.5047 156.917C44.3601 155.189 43.6653 153.312 42.7444 151.471L43.3945 144.979C36.6845 137.203 41.5174 111.916 42.4853 98.0474C43.1566 92.4078 48.086 86.4047 51.8355 76.9904L49.551 76.5962C53.9175 68.9619 74.4833 45.9362 84.0077 47.1212C88.6216 41.3117 83.0916 47.1 82.1895 45.6364C92.324 35.1244 95.5106 38.2098 102.35 36.3189C109.727 31.9305 96.0193 38.0304 99.5168 34.6452C112.268 31.3805 108.554 27.2234 125.189 25.5662C126.943 26.5671 121.116 27.1124 119.654 28.4108C130.278 23.2008 153.275 24.3859 168.211 31.3026C185.543 39.4208 205.016 63.4191 205.784 85.9987L206.658 86.2347C206.215 95.2099 208.028 105.59 204.887 115.124L207.025 110.611Z" fill="#A80030"/>
<path d="M101.937 141.081L101.344 144.055C104.125 147.842 106.332 151.945 109.884 154.905C107.328 149.905 105.43 147.84 101.937 141.081Z" fill="#A80030"/>
<path d="M108.512 140.822C107.04 139.191 106.169 137.227 105.194 135.27C106.126 138.709 108.036 141.665 109.814 144.67L108.512 140.822Z" fill="#A80030"/>
<path d="M224.869 115.474L224.247 117.036C223.107 125.152 220.646 133.183 216.873 140.629C221.042 132.772 223.739 124.18 224.869 115.474Z" fill="#A80030"/>
<path d="M132.919 1.26767C135.781 0.217179 139.954 0.691669 142.99 0C139.033 0.332851 135.095 0.531145 131.207 1.03396L132.919 1.26767Z" fill="#A80030"/>
<path d="M32.4572 54.8115C33.1166 60.9303 27.8645 63.3051 33.6206 59.2708C36.706 52.3045 32.4148 57.3469 32.4572 54.8115Z" fill="#A80030"/>
<path d="M25.6934 83.1304C27.0194 79.0512 27.2596 76.6009 27.766 74.2402C24.1013 78.9356 26.0796 79.9365 25.6934 83.1304Z" fill="#A80030"/>
</g>
<defs>
<clipPath id="clip0_2221_50">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

+4 -6
View File
@@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M31 6V22C31 23.65 29.65 25 28 25H4C2.35 25 1 23.65 1 22V6C1 4.35 2.35 3 4 3H28C29.65 3 31 4.35 31 6Z" fill="#2197F3"/>
<path d="M21 27H17V24C17 23.4478 16.5522 23 16 23C15.4478 23 15 23.4478 15 24V27H11C10.4478 27 10 27.4478 10 28C10 28.5522 10.4478 29 11 29H21C21.5522 29 22 28.5522 22 28C22 27.4478 21.5522 27 21 27Z" fill="#FFC10A"/>
<path d="M31 17V22C31 23.65 29.65 25 28 25H4C2.35 25 1 23.65 1 22V17H31Z" fill="#3F51B5"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M248 48V176C248 189.2 237.2 200 224 200H32C18.8 200 8 189.2 8 176V48C8 34.8 18.8 24 32 24H224C237.2 24 248 34.8 248 48Z" fill="#2197F3"/>
<path d="M168 216H136V192C136 187.582 132.418 184 128 184C123.582 184 120 187.582 120 192V216H88C83.5824 216 80 219.582 80 224C80 228.418 83.5824 232 88 232H168C172.418 232 176 228.418 176 224C176 219.582 172.418 216 168 216Z" fill="#FFC10A"/>
<path d="M248 136V176C248 189.2 237.2 200 224 200H32C18.8 200 8 189.2 8 176V136H248Z" fill="#3F51B5"/>
</svg>

Before

Width:  |  Height:  |  Size: 684 B

After

Width:  |  Height:  |  Size: 601 B

+10 -1
View File
@@ -1 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127.14 96.36"><defs><style>.cls-1{fill:#5865f2;}</style></defs><g id="图层_2" data-name="图层 2"><g id="Discord_Logos" data-name="Discord Logos"><g id="Discord_Logo_-_Large_-_White" data-name="Discord Logo - Large - White"><path class="cls-1" d="M107.7,8.07A105.15,105.15,0,0,0,81.47,0a72.06,72.06,0,0,0-3.36,6.83A97.68,97.68,0,0,0,49,6.83,72.37,72.37,0,0,0,45.64,0,105.89,105.89,0,0,0,19.39,8.09C2.79,32.65-1.71,56.6.54,80.21h0A105.73,105.73,0,0,0,32.71,96.36,77.7,77.7,0,0,0,39.6,85.25a68.42,68.42,0,0,1-10.85-5.18c.91-.66,1.8-1.34,2.66-2a75.57,75.57,0,0,0,64.32,0c.87.71,1.76,1.39,2.66,2a68.68,68.68,0,0,1-10.87,5.19,77,77,0,0,0,6.89,11.1A105.25,105.25,0,0,0,126.6,80.22h0C129.24,52.84,122.09,29.11,107.7,8.07ZM42.45,65.69C36.18,65.69,31,60,31,53s5-12.74,11.43-12.74S54,46,53.89,53,48.84,65.69,42.45,65.69Zm42.24,0C78.41,65.69,73.25,60,73.25,53s5-12.74,11.44-12.74S96.23,46,96.12,53,91.08,65.69,84.69,65.69Z"/></g></g></g></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1942)">
<path d="M216.857 47.2472C200.037 39.5478 182.281 34.0855 164.042 31C161.546 35.4612 159.288 40.0512 157.277 44.7507C137.848 41.8235 118.091 41.8235 98.6627 44.7507C96.6503 40.0517 94.3921 35.4617 91.8972 31C73.6463 34.1116 55.8785 39.5868 39.0421 47.2875C5.61755 96.7337 -3.44333 144.952 1.08711 192.485C20.6614 206.946 42.5706 217.944 65.8623 225C71.1069 217.947 75.7477 210.465 79.7355 202.632C72.1613 199.804 64.8508 196.314 57.8887 192.204C59.7211 190.875 61.5131 189.506 63.2447 188.177C83.5028 197.703 105.613 202.642 128 202.642C150.386 202.642 172.497 197.703 192.755 188.177C194.507 189.606 196.299 190.976 198.111 192.204C191.135 196.321 183.811 199.817 176.224 202.653C180.207 210.481 184.848 217.957 190.097 225C213.409 217.972 235.335 206.98 254.912 192.506C260.228 137.382 245.831 89.6067 216.857 47.2472ZM85.4741 163.253C72.8493 163.253 62.4192 151.797 62.4192 137.704C62.4192 123.611 72.4868 112.055 85.4338 112.055C98.3808 112.055 108.73 123.611 108.509 137.704C108.287 151.797 98.3405 163.253 85.4741 163.253ZM170.526 163.253C157.881 163.253 147.491 151.797 147.491 137.704C147.491 123.611 157.558 112.055 170.526 112.055C183.493 112.055 193.762 123.611 193.54 137.704C193.319 151.797 183.392 163.253 170.526 163.253Z" fill="#5865F2"/>
</g>
<defs>
<clipPath id="clip0_2115_1942">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 988 B

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

+13
View File
@@ -0,0 +1,13 @@
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_3741)">
<path d="M128.002 255.999V206.431C180.614 206.431 221.28 154.353 201.202 99.0493C193.759 78.5683 177.424 62.2246 156.935 54.79C101.633 34.7201 49.5834 75.3871 49.5744 127.984L49.5655 128.001H-6.10352e-05C-6.10352e-05 44.1831 80.974 -21.0754 168.793 6.34875C207.171 18.3228 237.668 48.8209 249.651 87.2003C277.074 175.031 211.808 255.999 128.002 255.999Z" fill="#0069FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.115 206.555H78.6928V157.139L78.7017 157.13H128.106L128.115 157.139V206.555Z" fill="#0069FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M78.682 244.527H40.7148L40.7059 244.518V206.55H78.691V244.518L78.682 244.527Z" fill="#0069FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M40.7363 206.555H8.90785L8.88998 206.546V174.734L8.90785 174.707H40.7184L40.7363 174.716V206.555Z" fill="#0069FF"/>
</g>
<defs>
<clipPath id="clip0_2115_3741">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+9 -13
View File
@@ -1,14 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 27.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 439 309" style="enable-background:new 0 0 439 309;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M379.6,111.7c-2.3-16.7-11.5-31.2-28.1-44.3l-9.6-6.5l-6.4,9.7c-8.2,12.5-12.3,29.9-11,46.6
c0.6,5.8,2.5,16.4,8.4,25.5c-5.9,3.3-17.6,7.7-33.2,7.4H1.7l-0.6,3.5c-2.8,16.7-2.8,69,30.7,109.1c25.5,30.5,63.6,46,113.4,46
c108,0,187.8-50.3,225.3-141.9c14.7,0.3,46.4,0.1,62.7-31.4c0.4-0.7,1.4-2.6,4.2-8.6l1.6-3.3l-9.1-6.2
C419.9,110.8,397.2,108.3,379.6,111.7L379.6,111.7z M240,0h-45.3v41.7H240V0z M240,50.1h-45.3v41.7H240V50.1z M186.4,50.1h-45.3
v41.7h45.3V50.1z M132.9,50.1H87.6v41.7h45.3V50.1z M79.3,100.2H34v41.7h45.3V100.2z M132.9,100.2H87.6v41.7h45.3V100.2z
M186.4,100.2h-45.3v41.7h45.3V100.2z M240,100.2h-45.3v41.7H240V100.2z M293.6,100.2h-45.3v41.7h45.3V100.2z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1944)">
<path d="M221.862 103.131C220.521 93.3936 215.157 84.9388 205.477 77.3003L199.879 73.5102L196.147 79.1662C191.365 86.4548 188.974 96.6006 189.732 106.338C190.082 109.72 191.19 115.901 194.631 121.207C191.19 123.131 184.368 125.697 175.271 125.522H1.5001L1.15023 127.563C-0.48252 137.3 -0.482521 167.796 19.0521 191.178C33.9218 208.962 56.1388 218 85.1783 218C148.156 218 194.689 188.671 216.556 135.259C225.128 135.434 243.613 135.318 253.118 116.95C253.351 116.542 253.934 115.434 255.567 111.936L256.5 110.012L251.194 106.397C245.362 102.606 232.125 101.149 221.862 103.131ZM140.458 38H114.043V62.3149H140.458V38ZM140.458 67.2128H114.043V91.5277H140.458V67.2128ZM109.203 67.2128H82.7875V91.5277H109.203V67.2128ZM78.0059 67.2128H51.5904V91.5277H78.0059V67.2128ZM46.7505 96.4257H20.335V120.741H46.7505V96.4257ZM78.0059 96.4257H51.5904V120.741H78.0059V96.4257ZM109.203 96.4257H82.7875V120.741H109.203V96.4257ZM140.458 96.4257H114.043V120.741H140.458V96.4257ZM171.714 96.4257H145.298V120.741H171.714V96.4257Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2115_1944">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

+9 -13
View File
@@ -1,14 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 27.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 439 309" style="enable-background:new 0 0 439 309;" xml:space="preserve">
<style type="text/css">
.st0{fill:#1D63ED;}
</style>
<path class="st0" d="M379.6,111.7c-2.3-16.7-11.5-31.2-28.1-44.3l-9.6-6.5l-6.4,9.7c-8.2,12.5-12.3,29.9-11,46.6
c0.6,5.8,2.5,16.4,8.4,25.5c-5.9,3.3-17.6,7.7-33.2,7.4H1.7l-0.6,3.5c-2.8,16.7-2.8,69,30.7,109.1c25.5,30.5,63.6,46,113.4,46
c108,0,187.8-50.3,225.3-141.9c14.7,0.3,46.4,0.1,62.7-31.4c0.4-0.7,1.4-2.6,4.2-8.6l1.6-3.3l-9.1-6.2
C419.9,110.8,397.2,108.3,379.6,111.7L379.6,111.7z M240,0h-45.3v41.7H240V0z M240,50.1h-45.3v41.7H240V50.1z M186.4,50.1h-45.3
v41.7h45.3V50.1z M132.9,50.1H87.6v41.7h45.3V50.1z M79.3,100.2H34v41.7h45.3V100.2z M132.9,100.2H87.6v41.7h45.3V100.2z
M186.4,100.2h-45.3v41.7h45.3V100.2z M240,100.2h-45.3v41.7H240V100.2z M293.6,100.2h-45.3v41.7h45.3V100.2z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1946)">
<path d="M221.862 103.131C220.521 93.3936 215.157 84.9388 205.477 77.3003L199.879 73.5102L196.147 79.1662C191.365 86.4548 188.974 96.6006 189.732 106.338C190.082 109.72 191.19 115.901 194.631 121.207C191.19 123.131 184.368 125.697 175.271 125.522H1.5001L1.15023 127.563C-0.48252 137.3 -0.482521 167.796 19.0521 191.178C33.9218 208.962 56.1388 218 85.1783 218C148.156 218 194.689 188.671 216.556 135.259C225.128 135.434 243.613 135.318 253.118 116.95C253.351 116.542 253.934 115.434 255.567 111.936L256.5 110.012L251.194 106.397C245.362 102.606 232.125 101.149 221.862 103.131ZM140.458 38H114.043V62.3149H140.458V38ZM140.458 67.2128H114.043V91.5277H140.458V67.2128ZM109.203 67.2128H82.7875V91.5277H109.203V67.2128ZM78.0059 67.2128H51.5904V91.5277H78.0059V67.2128ZM46.7505 96.4257H20.335V120.741H46.7505V96.4257ZM78.0059 96.4257H51.5904V120.741H78.0059V96.4257ZM109.203 96.4257H82.7875V120.741H109.203V96.4257ZM140.458 96.4257H114.043V120.741H140.458V96.4257ZM171.714 96.4257H145.298V120.741H171.714V96.4257Z" fill="#1D63ED"/>
</g>
<defs>
<clipPath id="clip0_2115_1946">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

+4 -10
View File
@@ -1,11 +1,5 @@
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="185.69px" height="237px"
viewBox="0 0 185.69 237" enable-background="new 0 0 185.69 237" xml:space="preserve">
<g>
<path fill="#333333" d="M135.96,0h-1.06H16.93C7.58,0,0,7.58,0,16.93v203.14C0,229.42,7.58,237,16.93,237h151.83
c9.35,0,16.93-7.58,16.93-16.93V50.79v-1.06L135.96,0z"/>
<circle fill="#3FA9F5" cx="92.84" cy="118.5" r="25.39"/>
<line fill="#1A1A1A" x1="185.69" y1="50.79" x2="134.9" y2="0"/>
<path fill="#3FA9F5" d="M135.96,32.8c0,9.35,7.58,16.93,16.93,16.93h32.8L135.96,0V32.8z"/>
</g>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M174.17 0H173.022H45.3259C35.205 0 27 8.18768 27 18.2873V237.713C27 247.812 35.205 256 45.3259 256H209.674C219.795 256 228 247.812 228 237.713V54.8618V53.7168L174.17 0Z" fill="#333333"/>
<path d="M127.494 155.426C142.673 155.426 154.978 143.147 154.978 128C154.978 112.854 142.673 100.575 127.494 100.575C112.315 100.575 100.011 112.854 100.011 128C100.011 143.147 112.315 155.426 127.494 155.426Z" fill="#3FA9F5"/>
<path d="M174.17 35.4295C174.17 45.5291 182.375 53.7168 192.496 53.7168H228L174.17 0V35.4295Z" fill="#3FA9F5"/>
</svg>

Before

Width:  |  Height:  |  Size: 634 B

After

Width:  |  Height:  |  Size: 644 B

+12 -1
View File
@@ -1 +1,12 @@
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><circle cx="32" cy="32" fill="#5c2d91" r="32"/><g fill="#fff"><path d="m9.82 9a32 32 0 1 0 45.18 45.18z" opacity=".1"/><path d="m7.4 41.25a1.35 1.35 0 0 1 -1-.42 1.38 1.38 0 0 1 -.41-1 1.4 1.4 0 0 1 .41-1 1.34 1.34 0 0 1 1-.43 1.37 1.37 0 0 1 1 .43 1.39 1.39 0 0 1 .42 1 1.37 1.37 0 0 1 -.42 1 1.38 1.38 0 0 1 -1 .42zm19.87-.25h-2.62l-9.37-14.54a6.06 6.06 0 0 1 -.58-1.14h-.08a18.71 18.71 0 0 1 .1 2.5v13.18h-2.13v-18.23h2.77l9.12 14.28q.57.89.74 1.22h.05a19.29 19.29 0 0 1 -.13-2.68v-12.82h2.13zm14.42 0h-9.69v-18.23h9.24v1.93h-7.06v6.06h6.58v1.92h-6.58v6.32h7.52zm14.31-16.3h-5.3v16.3h-2.13v-16.3h-5.24v-1.93h12.67z"/></g></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1953)">
<path d="M128 256C198.692 256 256 198.692 256 128C256 57.3075 198.692 0 128 0C57.3075 0 0 57.3075 0 128C0 198.692 57.3075 256 128 256Z" fill="#5C2D91"/>
<path opacity="0.1" d="M39.2804 36C26.2683 47.5953 15.7612 61.7257 8.40329 77.5253C1.04537 93.3249 -3.00842 110.461 -3.50957 127.882C-4.01072 145.304 -0.948693 162.645 5.48883 178.841C11.9264 195.037 21.6038 209.749 33.9278 222.073C46.2519 234.397 60.963 244.074 77.1595 250.512C93.3559 256.949 110.696 260.011 128.118 259.51C145.54 259.009 162.676 254.955 178.475 247.597C194.275 240.239 208.405 229.732 220 216.72L39.2804 36Z" fill="white"/>
<path d="M29.5995 165C28.8528 165.012 28.1118 164.869 27.4233 164.579C26.7348 164.29 26.1138 163.861 25.5995 163.32C25.071 162.798 24.6534 162.175 24.3716 161.487C24.0898 160.8 23.9496 160.063 23.9595 159.32C23.9541 158.578 24.0964 157.842 24.3779 157.155C24.6595 156.469 25.0747 155.845 25.5995 155.32C26.1088 154.769 26.7279 154.332 27.417 154.036C28.106 153.739 28.8495 153.591 29.5995 153.6C30.3483 153.598 31.0897 153.75 31.7776 154.046C32.4656 154.342 33.0856 154.775 33.5995 155.32C34.1333 155.84 34.5571 156.462 34.8457 157.149C35.1343 157.837 35.2818 158.575 35.2795 159.32C35.2865 160.066 35.1411 160.806 34.8522 161.493C34.5633 162.181 34.137 162.803 33.5995 163.32C33.0808 163.856 32.4589 164.281 31.7714 164.57C31.084 164.858 30.3451 165.005 29.5995 165ZM109.079 164H98.5995L61.1195 105.84C60.1874 104.406 59.4098 102.878 58.7995 101.28H58.4795C58.8358 104.601 58.9694 107.942 58.8795 111.28V164H50.3595V91.0801H61.4395L97.9195 148.2C99.4395 150.573 100.426 152.2 100.879 153.08H101.079C100.658 149.523 100.484 145.941 100.559 142.36V91.0801H109.079V164ZM166.759 164H127.999V91.0801H164.959V98.8001H136.719V123.04H163.039V130.72H136.719V156H166.799L166.759 164ZM223.999 98.8001H202.799V164H194.279V98.8001H173.319V91.0801H223.999V98.8001Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2115_1953">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 690 B

After

Width:  |  Height:  |  Size: 2.1 KiB

+42 -1
View File
@@ -1 +1,42 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><linearGradient id="elixir-original-a" gradientUnits="userSpaceOnUse" x1="835.592" y1="-36.546" x2="821.211" y2="553.414" gradientTransform="matrix(.1297 0 0 .2 -46.03 17.198)"><stop offset="0" stop-color="#d9d8dc"/><stop offset="1" stop-color="#fff" stop-opacity=".385"/></linearGradient><path fill-rule="evenodd" clip-rule="evenodd" fill="url(#elixir-original-a)" d="M64.4.5C36.7 13.9 1.9 83.4 30.9 113.9c26.8 33.5 85.4 1.3 68.4-40.5-21.5-36-35-37.9-34.9-72.9z"/><linearGradient id="elixir-original-b" gradientUnits="userSpaceOnUse" x1="942.357" y1="-40.593" x2="824.692" y2="472.243" gradientTransform="matrix(.1142 0 0 .2271 -47.053 17.229)"><stop offset="0" stop-color="#8d67af" stop-opacity=".672"/><stop offset="1" stop-color="#9f8daf"/></linearGradient><path fill-rule="evenodd" clip-rule="evenodd" fill="url(#elixir-original-b)" d="M64.4.2C36.8 13.6 1.9 82.9 31 113.5c10.7 12.4 28 16.5 37.7 9.1 26.4-18.8 7.4-53.1 10.4-78.5C68.1 33.9 64.2 11.3 64.4.2z"/><linearGradient id="elixir-original-c" gradientUnits="userSpaceOnUse" x1="924.646" y1="120.513" x2="924.646" y2="505.851" gradientTransform="matrix(.1227 0 0 .2115 -46.493 17.206)"><stop offset="0" stop-color="#26053d" stop-opacity=".762"/><stop offset="1" stop-color="#b7b4b4" stop-opacity=".278"/></linearGradient><path fill-rule="evenodd" clip-rule="evenodd" fill="url(#elixir-original-c)" d="M56.7 4.3c-22.3 15.9-28.2 75-24.1 94.2 8.2 48.1 75.2 28.3 69.6-16.5-6-29.2-48.8-39.2-45.5-77.7z"/><linearGradient id="elixir-original-d" gradientUnits="userSpaceOnUse" x1="428.034" y1="198.448" x2="607.325" y2="559.255" gradientTransform="matrix(.1848 0 0 .1404 -42.394 17.138)"><stop offset="0" stop-color="#91739f" stop-opacity=".46"/><stop offset="1" stop-color="#32054f" stop-opacity=".54"/></linearGradient><path fill-rule="evenodd" clip-rule="evenodd" fill="url(#elixir-original-d)" d="M78.8 49.8c10.4 13.4 12.7 22.6 6.8 27.9-27.7 19.4-61.3 7.4-54-37.3C22.1 63 4.5 96.8 43.3 101.6c20.8 3.6 54 2 58.9-16.1-.2-15.9-10.8-22.9-23.4-35.7z"/><linearGradient id="elixir-original-e" gradientUnits="userSpaceOnUse" x1="907.895" y1="540.636" x2="590.242" y2="201.281" gradientTransform="matrix(.1418 0 0 .1829 -45.23 17.18)"><stop offset="0" stop-color="#463d49" stop-opacity=".331"/><stop offset="1" stop-color="#340a50" stop-opacity=".821"/></linearGradient><path fill-rule="evenodd" clip-rule="evenodd" fill="url(#elixir-original-e)" d="M38.1 36.4c-2.9 21.2 35.1 77.9 58.3 71-17.7 35.6-56.9-21.2-64-41.7 1.5-11 2.2-16.4 5.7-29.3z"/><linearGradient id="elixir-original-f" gradientUnits="userSpaceOnUse" x1="1102.297" y1="100.542" x2="1008.071" y2="431.648" gradientTransform="matrix(.106 0 0 .2448 -47.595 17.242)"><stop offset="0" stop-color="#715383" stop-opacity=".145"/><stop offset="1" stop-color="#f4f4f4" stop-opacity=".234"/></linearGradient><path fill-rule="evenodd" clip-rule="evenodd" fill="url(#elixir-original-f)" d="M60.4 49.7c.8 7.9 3.9 20.5 0 28.8S38.7 102 43.6 115.3c11.4 24.8 37.1-4.4 36.9-19 1.1-11.8-6.6-38.7-1.8-52.5L76.5 41l-13.6-4c-2.2 3.2-3 7.5-2.5 12.7z"/><linearGradient id="elixir-original-g" gradientUnits="userSpaceOnUse" x1="1354.664" y1="140.06" x2="1059.233" y2="84.466" gradientTransform="matrix(.09173 0 0 .2828 -48.536 17.28)"><stop offset="0" stop-color="#a5a1a8" stop-opacity=".356"/><stop offset="1" stop-color="#370c50" stop-opacity=".582"/></linearGradient><path fill-rule="evenodd" clip-rule="evenodd" fill="url(#elixir-original-g)" d="M65.3 10.8C36 27.4 48 53.4 49.3 81.6l19.1-55.4c-1.4-5.7-2.3-9.5-3.1-15.4z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#330A4C" fill-opacity=".316" d="M68.3 26.1c-14.8 11.7-14.1 31.3-18.6 54 8.1-21.3 4.1-38.2 18.6-54z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#FFF" d="M45.8 119.7c8 1.1 12.1 2.2 12.5 3 .3 4.2-11.1 1.2-12.5-3z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#EDEDED" fill-opacity=".603" d="M49.8 10.8c-6.9 7.7-14.4 21.8-18.2 29.7-1 6.5-.5 15.7.6 23.5.9-18.2 7.5-39.2 17.6-53.2z"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.8 1C73.4 27.8 3.8 166.8 61.8 227.8C115.4 294.8 232.6 230.4 198.6 146.8C155.6 74.8 128.6 71 128.8 1Z" fill="url(#paint0_linear_2115_1957)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.8 0.400024C73.6 27.2 3.79998 165.8 62 227C83.4 251.8 118 260 137.4 245.2C190.2 207.6 152.2 139 158.2 88.2C136.2 67.8 128.4 22.6 128.8 0.400024Z" fill="url(#paint1_linear_2115_1957)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M113.4 8.59998C68.7999 40.4 56.9999 158.6 65.1999 197C81.5999 293.2 215.6 253.6 204.4 164C192.4 105.6 106.8 85.6 113.4 8.59998Z" fill="url(#paint2_linear_2115_1957)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M157.6 99.6C178.4 126.4 183 144.8 171.2 155.4C115.8 194.2 48.6001 170.2 63.2001 80.8C44.2001 126 9.00012 193.6 86.6001 203.2C128.2 210.4 194.6 207.2 204.4 171C204 139.2 182.8 125.2 157.6 99.6Z" fill="url(#paint3_linear_2115_1957)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.2 72.8C70.4 115.2 146.4 228.6 192.8 214.8C157.4 286 79 172.4 64.8 131.4C67.8 109.4 69.2 98.6 76.2 72.8Z" fill="url(#paint4_linear_2115_1957)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M120.8 99.4C122.4 115.2 128.6 140.4 120.8 157C113 173.6 77.4001 204 87.2001 230.6C110 280.2 161.4 221.8 161 192.6C163.2 169 147.8 115.2 157.4 87.6L153 82L125.8 74C121.4 80.4 119.8 89 120.8 99.4Z" fill="url(#paint5_linear_2115_1957)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.6 21.6C72.0001 54.8 96.0001 106.8 98.6001 163.2L136.8 52.4C134 41 132.2 33.4 130.6 21.6Z" fill="url(#paint6_linear_2115_1957)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M136.6 52.2C107 75.6 108.4 114.8 99.3999 160.2C115.6 117.6 107.6 83.8 136.6 52.2Z" fill="#330A4C" fill-opacity="0.316"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.6001 239.4C107.6 241.6 115.8 243.8 116.6 245.4C117.2 253.8 94.4001 247.8 91.6001 239.4Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M99.5999 21.6C85.7999 37 70.7999 65.2 63.1999 81C61.1999 94 62.1999 112.4 64.3999 128C66.1999 91.6 79.3999 49.6 99.5999 21.6Z" fill="#EDEDED" fill-opacity="0.603"/>
<defs>
<linearGradient id="paint0_linear_2115_1957" x1="124.693" y1="19.7776" x2="115.829" y2="255.569" gradientUnits="userSpaceOnUse">
<stop stop-color="#D9D8DC"/>
<stop offset="1" stop-color="white" stop-opacity="0.385"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_1957" x1="121.128" y1="16.0207" x2="28.5318" y2="218.964" gradientUnits="userSpaceOnUse">
<stop stop-color="#8D67AF" stop-opacity="0.672"/>
<stop offset="1" stop-color="#9F8DAF"/>
</linearGradient>
<linearGradient id="paint2_linear_2115_1957" x1="133.922" y1="85.389" x2="133.922" y2="248.387" gradientUnits="userSpaceOnUse">
<stop stop-color="#26053D" stop-opacity="0.762"/>
<stop offset="1" stop-color="#B7B4B4" stop-opacity="0.278"/>
</linearGradient>
<linearGradient id="paint3_linear_2115_1957" x1="73.4135" y1="90.0002" x2="115.158" y2="200.572" gradientUnits="userSpaceOnUse">
<stop stop-color="#91739F" stop-opacity="0.46"/>
<stop offset="1" stop-color="#32054F" stop-opacity="0.54"/>
</linearGradient>
<linearGradient id="paint4_linear_2115_1957" x1="167.019" y1="232.125" x2="52.6051" y2="137.361" gradientUnits="userSpaceOnUse">
<stop stop-color="#463D49" stop-opacity="0.331"/>
<stop offset="1" stop-color="#340A50" stop-opacity="0.821"/>
</linearGradient>
<linearGradient id="paint5_linear_2115_1957" x1="138.497" y1="83.7094" x2="58.0677" y2="206.088" gradientUnits="userSpaceOnUse">
<stop stop-color="#715383" stop-opacity="0.145"/>
<stop offset="1" stop-color="#F4F4F4" stop-opacity="0.234"/>
</linearGradient>
<linearGradient id="paint6_linear_2115_1957" x1="151.455" y1="113.778" x2="95.544" y2="110.365" gradientUnits="userSpaceOnUse">
<stop stop-color="#A5A1A8" stop-opacity="0.356"/>
<stop offset="1" stop-color="#370C50" stop-opacity="0.582"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

+15 -36
View File
@@ -1,36 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.0"
width="267"
height="267"
id="svg2">
<defs
id="defs5" />
<path
d="M 266.62575,133.50613 C 266.62575,59.98128 207.02222,0.37583 133.49792,0.37583 C 60.00668,0.37583 0.42639,59.93123 0.37425,133.41225 L 0.37425,236.4333 C 0.4138,253.11763 13.94545,266.62417 30.64027,266.62417 L 133.55192,266.62417 C 207.05167,266.59532 266.62575,207.01142 266.62575,133.50613"
id="voice"
style="fill:#294172" />
<path
d="M 77.126289,142.09756 C 77.126289,142.09756 124.97104,142.09756 124.97104,142.09756 C 124.97104,142.09756 124.97104,189.94234 124.97104,189.94234 C 124.97104,216.35263 103.53659,237.78707 77.126289,237.78707 C 50.715979,237.78707 29.28153,216.35263 29.28153,189.94234 C 29.28153,163.53203 50.715979,142.09756 77.126289,142.09756 z"
id="in"
style="fill:none;stroke:#3c6eb4;stroke-width:29.21" />
<use
transform="matrix(-1,0,0,-1,249.71151,284.2882)"
id="finity"
xlink:href="#in" />
<path
d="M 139.6074,127.52923 L 139.6074,189.87541 C 139.6074,224.37943 111.63203,252.35541 77.12679,252.35541 C 71.89185,252.35541 68.1703,251.7644 63.32444,250.49771 C 56.25849,248.64859 50.48398,242.85518 50.48158,236.1166 C 50.48158,227.97147 56.39394,222.0467 65.23187,222.0467 C 69.43824,222.0467 70.96454,222.85435 77.12679,222.85435 C 95.3184,222.85435 110.07443,208.11916 110.10634,189.92756 L 110.10634,161.27099 C 110.10634,158.70324 108.01971,156.62274 105.44767,156.62274 L 83.78246,156.61846 C 75.71034,156.61846 69.18845,150.18003 69.18845,142.0858 C 69.18414,133.94124 75.77725,127.52923 83.93653,127.52923"
id="free"
style="fill:#ffffff" />
<use
transform="matrix(-1,0,0,-1,249.71152,284.28821)"
id="dom"
xlink:href="#free" />
<path
d="M 243.65456,243.58425 C 243.65456,243.58425 243.6546,238.05286 243.6546,238.05286 L 241.12607,243.85062 C 241.12607,243.85062 238.66466,238.05286 238.66466,238.05286 L 238.66513,243.58425 L 237.24683,243.58425 L 237.24683,234.84933 L 238.73387,234.84933 C 238.73387,234.84933 241.16784,240.42984 241.16784,240.42984 L 243.56495,234.84933 L 245.07039,234.84933 L 245.07039,243.58425 L 243.65456,243.58425 z M 233.32154,236.31241 L 233.32154,243.58425 L 231.83941,243.58425 L 231.83941,236.31241 L 229.35453,236.31241 L 229.35453,234.84933 L 235.80399,234.84933 L 235.80399,236.31241"
id="TM"
style="fill:#3c6eb4" />
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1968)">
<path d="M255.641 128.006C255.641 57.5102 198.493 0.360352 127.998 0.360352C57.5346 0.360352 0.408879 57.4622 0.358887 127.916V226.693C0.396807 242.69 13.371 255.64 29.378 255.64H128.05C198.522 255.612 255.641 198.483 255.641 128.006Z" fill="#294172"/>
<path d="M73.9488 136.243H119.822V182.117C119.822 207.439 99.2711 227.991 73.9488 227.991C48.6266 227.991 28.0752 207.439 28.0752 182.117C28.0752 156.795 48.6266 136.243 73.9488 136.243Z" stroke="#3C6EB4" stroke-width="29.21"/>
<path d="M165.475 136.333H119.601V90.4589C119.601 65.1367 140.153 44.5853 165.475 44.5853C190.797 44.5853 211.349 65.1367 211.349 90.4589C211.349 115.781 190.797 136.333 165.475 136.333Z" stroke="#3C6EB4" stroke-width="29.21"/>
<path d="M133.856 122.275V182.053C133.856 215.135 107.033 241.959 73.9493 241.959C68.9301 241.959 65.3618 241.392 60.7156 240.178C53.9408 238.405 48.4042 232.85 48.4019 226.389C48.4019 218.579 54.0706 212.899 62.5445 212.899C66.5775 212.899 68.041 213.673 73.9493 213.673C91.3915 213.673 105.54 199.545 105.57 182.103V154.627C105.57 152.165 103.57 150.17 101.103 150.17L80.3308 150.166C72.5912 150.166 66.338 143.993 66.338 136.232C66.3339 128.423 72.6554 122.275 80.4785 122.275" fill="white"/>
<path d="M105.568 150.301V90.5232C105.568 57.4407 132.391 30.6173 165.475 30.6173C170.494 30.6173 174.062 31.1839 178.708 32.3984C185.483 34.1714 191.02 39.7261 191.022 46.1871C191.022 53.9966 185.353 59.6773 176.879 59.6773C172.846 59.6773 171.383 58.9029 165.475 58.9029C148.032 58.9029 133.884 73.031 133.854 90.4732V117.949C133.854 120.411 135.854 122.406 138.32 122.406L159.093 122.41C166.833 122.41 173.086 128.583 173.086 136.344C173.09 144.153 166.768 150.301 158.945 150.301" fill="white"/>
<path d="M233.616 233.549L233.616 228.245L231.192 233.804L228.832 228.245L228.833 233.549H227.473V225.174H228.898L231.232 230.524L233.531 225.174H234.974V233.549H233.616ZM223.709 226.577V233.549H222.288V226.577H219.906V225.174H226.089V226.577" fill="#3C6EB4"/>
</g>
<defs>
<clipPath id="clip0_2115_1968">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

+26 -147
View File
@@ -1,147 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xml:space="preserve"
width="560"
height="560"
version="1.1"
style="clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
viewBox="0 0 560 560"
id="svg44"
sodipodi:docname="icon_raw.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
inkscape:export-filename="/home/umarcor/filebrowser/logo/icon_raw.svg.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"><metadata
id="metadata48"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="711"
id="namedview46"
showgrid="false"
inkscape:zoom="0.33714286"
inkscape:cx="-172.33051"
inkscape:cy="280"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="1"
inkscape:current-layer="svg44" />
<defs
id="defs4">
<style
type="text/css"
id="style2">
<![CDATA[
.fil1 {fill:#FEFEFE}
.fil6 {fill:#006498}
.fil7 {fill:#0EA5EB}
.fil8 {fill:#2979FF}
.fil3 {fill:#2BBCFF}
.fil0 {fill:#455A64}
.fil4 {fill:#53C6FC}
.fil5 {fill:#BDEAFF}
.fil2 {fill:#332C2B;fill-opacity:0.149020}
]]>
</style>
</defs>
<g
id="g85"
transform="translate(-70,-70)"><path
class="fil1"
d="M 350,71 C 504,71 629,196 629,350 629,504 504,629 350,629 196,629 71,504 71,350 71,196 196,71 350,71 Z"
id="path9"
inkscape:connector-curvature="0"
style="fill:#fefefe" /><path
class="fil2"
d="M 475,236 593,387 C 596,503 444,639 301,585 L 225,486 339,330 c 0,0 138,-95 136,-94 z"
id="path11"
inkscape:connector-curvature="0"
style="fill:#332c2b;fill-opacity:0.14902003" /><path
class="fil3"
d="m 231,211 h 208 l 38,24 v 246 c 0,5 -3,8 -8,8 H 231 c -5,0 -8,-3 -8,-8 V 219 c 0,-5 3,-8 8,-8 z"
id="path13"
inkscape:connector-curvature="0"
style="fill:#2bbcff" /><path
class="fil4"
d="m 231,211 h 208 l 38,24 v 2 L 440,214 H 231 c -4,0 -7,3 -7,7 v 263 c -1,-1 -1,-2 -1,-3 V 219 c 0,-5 3,-8 8,-8 z"
id="path15"
inkscape:connector-curvature="0"
style="fill:#53c6fc" /><polygon
class="fil5"
points="305,212 418,212 418,310 305,310 "
id="polygon17"
style="fill:#bdeaff" /><path
class="fil5"
d="m 255,363 h 189 c 3,0 5,2 5,4 V 483 H 250 V 367 c 0,-2 2,-4 5,-4 z"
id="path19"
inkscape:connector-curvature="0"
style="fill:#bdeaff" /><polygon
class="fil6"
points="250,470 449,470 449,483 250,483 "
id="polygon21"
style="fill:#006498" /><path
class="fil6"
d="m 380,226 h 10 c 3,0 6,2 6,5 v 40 c 0,3 -3,6 -6,6 h -10 c -3,0 -6,-3 -6,-6 v -40 c 0,-3 3,-5 6,-5 z"
id="path23"
inkscape:connector-curvature="0"
style="fill:#006498" /><path
class="fil1"
d="m 254,226 c 10,0 17,7 17,17 0,9 -7,16 -17,16 -9,0 -17,-7 -17,-16 0,-10 8,-17 17,-17 z"
id="path25"
inkscape:connector-curvature="0"
style="fill:#fefefe" /><path
class="fil6"
d="m 267,448 h 165 c 2,0 3,1 3,3 v 0 c 0,1 -1,3 -3,3 H 267 c -2,0 -3,-2 -3,-3 v 0 c 0,-2 1,-3 3,-3 z"
id="path27"
inkscape:connector-curvature="0"
style="fill:#006498" /><path
class="fil6"
d="m 267,415 h 165 c 2,0 3,1 3,3 v 0 c 0,1 -1,2 -3,2 H 267 c -2,0 -3,-1 -3,-2 v 0 c 0,-2 1,-3 3,-3 z"
id="path29"
inkscape:connector-curvature="0"
style="fill:#006498" /><path
class="fil6"
d="m 267,381 h 165 c 2,0 3,2 3,3 v 0 c 0,2 -1,3 -3,3 H 267 c -2,0 -3,-1 -3,-3 v 0 c 0,-1 1,-3 3,-3 z"
id="path31"
inkscape:connector-curvature="0"
style="fill:#006498" /><path
class="fil1"
d="m 236,472 c 3,0 5,2 5,5 0,2 -2,4 -5,4 -3,0 -5,-2 -5,-4 0,-3 2,-5 5,-5 z"
id="path33"
inkscape:connector-curvature="0"
style="fill:#fefefe" /><path
class="fil1"
d="m 463,472 c 3,0 5,2 5,5 0,2 -2,4 -5,4 -3,0 -5,-2 -5,-4 0,-3 2,-5 5,-5 z"
id="path35"
inkscape:connector-curvature="0"
style="fill:#fefefe" /><polygon
class="fil6"
points="305,212 284,212 284,310 305,310 "
id="polygon37"
style="fill:#006498" /><path
class="fil7"
d="m 477,479 v 2 c 0,5 -3,8 -8,8 H 231 c -5,0 -8,-3 -8,-8 v -2 c 0,4 3,8 8,8 h 238 c 5,0 8,-4 8,-8 z"
id="path39"
inkscape:connector-curvature="0"
style="fill:#0ea5eb" /><path
class="fil8"
d="M 350,70 C 505,70 630,195 630,350 630,505 505,630 350,630 195,630 70,505 70,350 70,195 195,70 350,70 Z m 0,46 C 479,116 584,221 584,350 584,479 479,584 350,584 221,584 116,479 116,350 116,221 221,116 350,116 Z"
id="path41"
inkscape:connector-curvature="0"
style="fill:#2979ff" /></g>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1975)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M128 0.457153C198.4 0.457153 255.543 57.6 255.543 128C255.543 198.4 198.4 255.543 128 255.543C57.5999 255.543 0.457031 198.4 0.457031 128C0.457031 57.6 57.5999 0.457153 128 0.457153Z" fill="#FEFEFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M185.143 75.8857L239.086 144.914C240.457 197.943 170.971 260.114 105.6 235.429L70.8572 190.171L122.971 118.857C122.971 118.857 186.057 75.4286 185.143 75.8857Z" fill="#332C2B" fill-opacity="0.14902"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M73.6 64.4572H168.686L186.057 75.4286V187.886C186.057 190.171 184.686 191.543 182.4 191.543H73.6C71.3143 191.543 69.9429 190.171 69.9429 187.886V68.1143C69.9429 65.8286 71.3143 64.4572 73.6 64.4572Z" fill="#2BBCFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M73.6 64.4572H168.686L186.057 75.4286V76.3429L169.143 65.8286H73.6C71.7714 65.8286 70.4 67.2 70.4 69.0286V189.257C69.9429 188.8 69.9429 188.343 69.9429 187.886V68.1143C69.9429 65.8286 71.3143 64.4572 73.6 64.4572Z" fill="#53C6FC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M107.428 64.9143H159.086V109.714H107.428V64.9143Z" fill="#BDEAFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M84.5714 133.943H170.971C172.343 133.943 173.257 134.857 173.257 135.771V188.8H82.2856V135.771C82.2856 134.857 83.1999 133.943 84.5714 133.943Z" fill="#BDEAFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M82.2856 182.857H173.257V188.8H82.2856V182.857Z" fill="#006498"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M141.714 71.3143H146.286C147.657 71.3143 149.029 72.2286 149.029 73.6V91.8857C149.029 93.2571 147.657 94.6286 146.286 94.6286H141.714C140.343 94.6286 138.971 93.2571 138.971 91.8857V73.6C138.971 72.2286 140.343 71.3143 141.714 71.3143Z" fill="#006498"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M84.1142 71.3143C88.6856 71.3143 91.8856 74.5143 91.8856 79.0857C91.8856 83.2 88.6856 86.4 84.1142 86.4C79.9999 86.4 76.3428 83.2 76.3428 79.0857C76.3428 74.5143 79.9999 71.3143 84.1142 71.3143Z" fill="#FEFEFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.0572 172.8H165.486C166.4 172.8 166.857 173.257 166.857 174.171C166.857 174.629 166.4 175.543 165.486 175.543H90.0572C89.1429 175.543 88.6858 174.629 88.6858 174.171C88.6858 173.257 89.1429 172.8 90.0572 172.8Z" fill="#006498"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.0572 157.714H165.486C166.4 157.714 166.857 158.171 166.857 159.086C166.857 159.543 166.4 160 165.486 160H90.0572C89.1429 160 88.6858 159.543 88.6858 159.086C88.6858 158.171 89.1429 157.714 90.0572 157.714Z" fill="#006498"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.0572 142.171H165.486C166.4 142.171 166.857 143.086 166.857 143.543C166.857 144.457 166.4 144.914 165.486 144.914H90.0572C89.1429 144.914 88.6858 144.457 88.6858 143.543C88.6858 143.086 89.1429 142.171 90.0572 142.171Z" fill="#006498"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M75.8858 183.771C77.2572 183.771 78.1715 184.686 78.1715 186.057C78.1715 186.971 77.2572 187.886 75.8858 187.886C74.5144 187.886 73.6001 186.971 73.6001 186.057C73.6001 184.686 74.5144 183.771 75.8858 183.771Z" fill="#FEFEFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M179.657 183.771C181.028 183.771 181.943 184.686 181.943 186.057C181.943 186.971 181.028 187.886 179.657 187.886C178.286 187.886 177.371 186.971 177.371 186.057C177.371 184.686 178.286 183.771 179.657 183.771Z" fill="#FEFEFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M107.429 64.9143H97.8286V109.714H107.429V64.9143Z" fill="#006498"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M186.057 186.971V187.886C186.057 190.171 184.686 191.543 182.4 191.543H73.6C71.3143 191.543 69.9429 190.171 69.9429 187.886V186.971C69.9429 188.8 71.3143 190.629 73.6 190.629H182.4C184.686 190.629 186.057 188.8 186.057 186.971Z" fill="#0EA5EB"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M128 0C198.857 0 256 57.1429 256 128C256 198.857 198.857 256 128 256C57.1429 256 0 198.857 0 128C0 57.1429 57.1429 0 128 0ZM128 21.0286C186.971 21.0286 234.971 69.0286 234.971 128C234.971 186.971 186.971 234.971 128 234.971C69.0286 234.971 21.0286 186.971 21.0286 128C21.0286 69.0286 69.0286 21.0286 128 21.0286Z" fill="#2979FF"/>
</g>
<defs>
<clipPath id="clip0_2115_1975">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

+50 -59
View File
@@ -1,60 +1,51 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" fill="none" viewBox="0 0 64 64">
<defs>
<radialGradient id="a" cx="0" cy="0" r="1" gradientTransform="rotate(49.385 -18.029987 36.649084) scale(49.4299)" gradientUnits="userSpaceOnUse">
<stop offset=".026042" stop-color="#8DFDFD"/>
<stop offset=".270833" stop-color="#87FBFB"/>
<stop offset=".484416" stop-color="#74D6F4"/>
<stop offset=".931964" stop-color="#0038FF"/>
</radialGradient>
<radialGradient id="b" cx="0" cy="0" r="1" gradientTransform="rotate(132.274 3.919184 20.864728) scale(23.7857)" gradientUnits="userSpaceOnUse">
<stop stop-color="#0500FF" stop-opacity="0"/>
<stop offset="1" stop-color="#0100FF" stop-opacity=".15"/>
</radialGradient>
<radialGradient id="c" cx="0" cy="0" r="1" gradientTransform="rotate(42.678 -19.143042 44.644478) scale(41.8951)" gradientUnits="userSpaceOnUse">
<stop offset=".520394" stop-color="#FF00E5" stop-opacity="0"/>
<stop offset="1" stop-color="#FF00E5" stop-opacity=".65"/>
</radialGradient>
<radialGradient id="e" cx="0" cy="0" r="1" gradientTransform="matrix(30.00005 -22.00001 19.46596 26.54453 32.3943 42.4)" gradientUnits="userSpaceOnUse">
<stop offset=".777466" stop-color="#001AFF"/>
<stop offset="1" stop-color="#8ACEFF"/>
</radialGradient>
<radialGradient id="f" cx="0" cy="0" r="1" gradientTransform="matrix(14.91531 -8.80077 11.61873 19.69112 44.057 27.7156)" gradientUnits="userSpaceOnUse">
<stop offset=".71875" stop-color="#FA00FF" stop-opacity="0"/>
<stop offset="1" stop-color="#FF00D6" stop-opacity=".44"/>
</radialGradient>
<radialGradient id="h" cx="0" cy="0" r="1" gradientTransform="rotate(63.435 -9.856848 34.706598) scale(30.4105 69.8305)" gradientUnits="userSpaceOnUse">
<stop stop-color="#0D67A9"/>
<stop offset="1" stop-color="#AEDDFF"/>
</radialGradient>
<radialGradient id="j" cx="0" cy="0" r="1" gradientTransform="rotate(73.835 -3.838438 33.695644) scale(28.736 56.1739)" gradientUnits="userSpaceOnUse">
<stop stop-color="#0068C9"/>
<stop offset="1" stop-color="#fff"/>
</radialGradient>
<filter id="g" width="48.3057" height="34.5039" x="8.25781" y="24.2656" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur result="effect1_foregroundBlur_6490_3223" stdDeviation="1"/>
</filter>
<filter id="i" width="45.7057" height="31.9039" x="9.55781" y="25.5656" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur result="effect1_foregroundBlur_6490_3223" stdDeviation=".35"/>
</filter>
<linearGradient id="d" x1="63.9941" x2="37.1941" y1="33.6" y2="34.4" gradientUnits="userSpaceOnUse">
<stop stop-color="#FD3AF5"/>
<stop offset="1" stop-color="#FD3AF5" stop-opacity="0"/>
</linearGradient>
</defs>
<path fill="url(#a)" d="M63.9941 32c0 17.6731-14.3268 32-32 32C14.3211 64-.00586 49.6731-.00586 32c0-17.6731 14.32696-32 31.99996-32 8.306 3.75956 16.9952 17.7487 20.6338 22.1202 3.6389 4.3715 13.0573 9.8798 8.4414-1.6751 1.9681 3.1232 2.9248 8.3051 2.9248 11.5549Z"/>
<path fill="url(#b)" d="M63.9941 32c0 17.6731-14.3268 32-32 32C14.3211 64-.00586 49.6731-.00586 32c0-17.6731 14.32696-32 31.99996-32 8.306 3.75956 16.9952 17.7487 20.6338 22.1202 3.6389 4.3715 13.0573 9.8798 8.4414-1.6751 1.9681 3.1232 2.9248 8.3051 2.9248 11.5549Z"/>
<path fill="url(#c)" d="M63.9941 32c0 17.6731-14.3268 32-32 32C14.3211 64-.00586 49.6731-.00586 32c0-17.6731 14.32696-32 31.99996-32 8.306 3.75956 16.9952 17.7487 20.6338 22.1202 3.6389 4.3715 13.0573 9.8798 8.4414-1.6751 1.9681 3.1232 2.9248 8.3051 2.9248 11.5549Z"/>
<path fill="url(#d)" fill-opacity=".3" d="M63.9941 32c0 17.6731-14.3268 32-32 32C14.3211 64-.00586 49.6731-.00586 32c0-17.6731 14.32696-32 31.99996-32 8.306 3.75956 16.9952 17.7487 20.6338 22.1202 3.6389 4.3715 13.0573 9.8798 8.4414-1.6751 1.9681 3.1232 2.9248 8.3051 2.9248 11.5549Z"/>
<path fill="url(#e)" d="M61.0886 20.4758c-3.1529-5.3391-9.686-9.2821-17.5378-10.2688 2.2608 2.7375 4.3175 5.5453 6.0172 7.8664 1.2242 1.6711 2.2633 3.0899 3.0601 4.0469 3.6389 4.3711 13.0573 9.8797 8.4414-1.675.0063.0102.0127.0203.0191.0305Z"/>
<path fill="url(#f)" d="M61.0886 20.4758c-3.1529-5.3391-9.686-9.2821-17.5378-10.2688 2.2608 2.7375 4.3175 5.5453 6.0172 7.8664 1.2242 1.6711 2.2633 3.0899 3.0601 4.0469 3.6389 4.3711 13.0573 9.8797 8.4414-1.675.0063.0102.0127.0203.0191.0305Z"/>
<g filter="url(#g)">
<path fill="url(#h)" d="M29.3127 27.0066c12.113-2.5862 23.3196 1.8139 25.0306 9.8279 1.711 8.014-6.7214 16.6071-18.8343 19.1933C23.396 58.614 12.1894 54.214 10.4783 46.2c-1.711-8.014 6.7215-16.6072 18.8344-19.1934Z"/>
</g>
<g filter="url(#i)">
<path fill="url(#j)" fill-opacity=".2" fill-rule="evenodd" d="M48.9867 47.3643c3.1734-3.2337 4.5278-6.8744 3.8174-10.2012-.7102-3.3268-3.4332-6.0967-7.6507-7.7527-4.2039-1.6506-9.7148-2.1025-15.5122-.8645-5.7973 1.2377-10.6433 3.9007-13.8065 7.1243-3.1734 3.2339-4.5276 6.8744-3.8173 10.2012.7103 3.3267 3.4332 6.0968 7.6506 7.7527 4.2039 1.6506 9.7148 2.1024 15.5122.8647 5.7974-1.2377 10.6433-3.9009 13.8065-7.1245Zm-13.4778 8.6636c12.1128-2.5862 20.5452-11.1793 18.8343-19.1933-1.7112-8.0141-12.9177-12.4142-25.0305-9.828-12.1131 2.5862-20.54545 11.1795-18.8344 19.1935 1.711 8.0138 12.9176 12.414 25.0306 9.8278Z" clip-rule="evenodd"/>
</g>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1861)">
<path d="M255.976 128C255.976 198.692 198.669 256 127.976 256C57.2844 256 -0.02344 198.692 -0.02344 128C-0.02344 57.3076 57.2844 0 127.976 0C161.2 15.0382 195.957 70.9948 210.512 88.4808C225.067 105.967 262.741 128 244.277 81.7804C252.15 94.2732 255.976 115.001 255.976 128Z" fill="url(#paint0_radial_2115_1861)"/>
<path d="M255.976 128C255.976 198.692 198.669 256 127.976 256C57.2844 256 -0.02344 198.692 -0.02344 128C-0.02344 57.3076 57.2844 0 127.976 0C161.2 15.0382 195.957 70.9948 210.512 88.4808C225.067 105.967 262.741 128 244.277 81.7804C252.15 94.2732 255.976 115.001 255.976 128Z" fill="url(#paint1_radial_2115_1861)"/>
<path d="M255.976 128C255.976 198.692 198.669 256 127.976 256C57.2844 256 -0.02344 198.692 -0.02344 128C-0.02344 57.3076 57.2844 0 127.976 0C161.2 15.0382 195.957 70.9948 210.512 88.4808C225.067 105.967 262.741 128 244.277 81.7804C252.15 94.2732 255.976 115.001 255.976 128Z" fill="url(#paint2_radial_2115_1861)"/>
<path d="M255.976 128C255.976 198.692 198.669 256 127.976 256C57.2844 256 -0.02344 198.692 -0.02344 128C-0.02344 57.3076 57.2844 0 127.976 0C161.2 15.0382 195.957 70.9948 210.512 88.4808C225.067 105.967 262.741 128 244.277 81.7804C252.15 94.2732 255.976 115.001 255.976 128Z" fill="url(#paint3_linear_2115_1861)" fill-opacity="0.3"/>
<path d="M244.354 81.9032C231.743 60.5468 205.61 44.7748 174.203 40.828C183.246 51.778 191.473 63.0092 198.272 72.2936C203.169 78.978 207.325 84.6532 210.512 88.4812C225.068 105.966 262.742 128 244.278 81.7812C244.303 81.822 244.329 81.8624 244.354 81.9032Z" fill="url(#paint4_radial_2115_1861)"/>
<path d="M244.354 81.9032C231.743 60.5468 205.61 44.7748 174.203 40.828C183.246 51.778 191.473 63.0092 198.272 72.2936C203.169 78.978 207.325 84.6532 210.512 88.4812C225.068 105.966 262.742 128 244.278 81.7812C244.303 81.822 244.329 81.8624 244.354 81.9032Z" fill="url(#paint5_radial_2115_1861)"/>
<path d="M117.251 108.026C165.703 97.6816 210.529 115.282 217.373 147.338C224.217 179.394 190.488 213.766 142.036 224.111C93.584 234.456 48.7576 216.856 41.9132 184.8C35.0692 152.744 68.7992 118.371 117.251 108.026Z" fill="url(#paint6_radial_2115_1861)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M195.947 189.457C208.64 176.522 214.058 161.96 211.216 148.652C208.376 135.345 197.484 124.266 180.614 117.642C163.798 111.039 141.754 109.232 118.565 114.184C95.3756 119.134 75.9916 129.786 63.3388 142.681C50.6452 155.616 45.2284 170.178 48.0696 183.486C50.9108 196.792 61.8024 207.873 78.672 214.496C95.4876 221.099 117.531 222.906 140.721 217.955C163.91 213.004 183.294 202.352 195.947 189.457ZM142.036 224.112C190.487 213.767 224.216 179.394 217.373 147.338C210.528 115.282 165.702 97.6816 117.251 108.026C68.7984 118.371 35.069 152.744 41.9132 184.8C48.7572 216.856 93.5836 234.456 142.036 224.112Z" fill="url(#paint7_radial_2115_1861)" fill-opacity="0.2"/>
</g>
<defs>
<radialGradient id="paint0_radial_2115_1861" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(86.1096 105.912) rotate(49.385) scale(197.72 197.72)">
<stop offset="0.026042" stop-color="#8DFDFD"/>
<stop offset="0.270833" stop-color="#87FBFB"/>
<stop offset="0.484416" stop-color="#74D6F4"/>
<stop offset="0.931964" stop-color="#0038FF"/>
</radialGradient>
<radialGradient id="paint1_radial_2115_1861" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(87.9764 128) rotate(132.274) scale(95.1428)">
<stop stop-color="#0500FF" stop-opacity="0"/>
<stop offset="1" stop-color="#0100FF" stop-opacity="0.15"/>
</radialGradient>
<radialGradient id="paint2_radial_2115_1861" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(100.776 99.1985) rotate(42.678) scale(167.58 167.58)">
<stop offset="0.520394" stop-color="#FF00E5" stop-opacity="0"/>
<stop offset="1" stop-color="#FF00E5" stop-opacity="0.65"/>
</radialGradient>
<linearGradient id="paint3_linear_2115_1861" x1="255.976" y1="134.4" x2="148.776" y2="137.6" gradientUnits="userSpaceOnUse">
<stop stop-color="#FD3AF5"/>
<stop offset="1" stop-color="#FD3AF5" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint4_radial_2115_1861" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(129.577 169.6) rotate(-36.2538) scale(148.809 131.668)">
<stop offset="0.777466" stop-color="#001AFF"/>
<stop offset="1" stop-color="#8ACEFF"/>
</radialGradient>
<radialGradient id="paint5_radial_2115_1861" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(176.228 110.862) rotate(-30.5427) scale(69.2728 91.4536)">
<stop offset="0.71875" stop-color="#FA00FF" stop-opacity="0"/>
<stop offset="1" stop-color="#FF00D6" stop-opacity="0.44"/>
</radialGradient>
<radialGradient id="paint6_radial_2115_1861" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(102.375 112.006) rotate(63.435) scale(121.642 279.322)">
<stop stop-color="#0D67A9"/>
<stop offset="1" stop-color="#AEDDFF"/>
</radialGradient>
<radialGradient id="paint7_radial_2115_1861" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(118.375 112.005) rotate(73.835) scale(114.944 224.696)">
<stop stop-color="#0068C9"/>
<stop offset="1" stop-color="white"/>
</radialGradient>
<clipPath id="clip0_2115_1861">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 10 KiB

+3 -1
View File
@@ -1 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48" fill="#FFF"><path d="M7.05 40q-1.2 0-2.1-.925-.9-.925-.9-2.075V11q0-1.15.9-2.075Q5.85 8 7.05 8h14l3 3h17q1.15 0 2.075.925.925.925.925 2.075v23q0 1.15-.925 2.075Q42.2 40 41.05 40Zm0-29v26h34V14H22.8l-3-3H7.05Zm0 0v26Z"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M37.6 213.333C33.3333 213.333 29.6 211.689 26.4 208.4C23.2 205.111 21.6 201.422 21.6 197.333V58.6666C21.6 54.5777 23.2 50.8888 26.4 47.6C29.6 44.3111 33.3333 42.6666 37.6 42.6666H112.267L128.267 58.6666H218.933C223.022 58.6666 226.711 60.3111 230 63.6C233.289 66.8888 234.933 70.5777 234.933 74.6666V197.333C234.933 201.422 233.289 205.111 230 208.4C226.711 211.689 223.022 213.333 218.933 213.333H37.6ZM37.6 58.6666V197.333H218.933V74.6666H121.6L105.6 58.6666H37.6Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 289 B

After

Width:  |  Height:  |  Size: 599 B

+27 -27
View File
@@ -1,62 +1,62 @@
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M32 62L57.975 46.98V16.964L32 2L6.02602 16.964H6.02502L32 31.984V62Z" fill="url(#paint0_linear_1725:872)"/>
<path d="M57.975 16.964L32 2L6.02602 16.964H6.02502L32 31.984L57.975 16.964Z" fill="url(#paint1_linear_1725:872)"/>
<path d="M57.975 16.964L32 2L6.02602 16.964H6.02502L32 31.984L57.975 16.964Z" fill="url(#paint2_linear_1725:872)"/>
<path d="M57.975 16.964L32 2L6.02602 16.964H6.02502L32 31.984L57.975 16.964Z" fill="url(#paint3_linear_1725:872)"/>
<path d="M6.026 46.9799V16.9639L32 31.9839L6.026 46.9799Z" fill="url(#paint4_linear_1725:872)"/>
<path d="M32 31.9844L6.026 46.9804L32 62.0004V31.9844Z" fill="url(#paint5_linear_1725:872)" style="mix-blend-mode:overlay"/>
<path d="M32 61.9999L57.975 46.9799V16.9639L32 31.9839V61.9999Z" fill="url(#paint6_linear_1725:872)"/>
<path d="M32 61.9999L57.975 46.9799V16.9639L32 31.9839V61.9999Z" fill="url(#paint7_linear_1725:872)"/>
<path d="M32 61.9999L57.975 46.9799V16.9639L32 31.9839V61.9999Z" fill="url(#paint8_linear_1725:872)"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M128 248L231.9 187.92V67.856L128 8L24.1041 67.856L128 127.936V248Z" fill="url(#paint0_linear_2115_2000)"/>
<path d="M231.9 67.856L128 8L24.1041 67.856L128 127.936L231.9 67.856Z" fill="url(#paint1_linear_2115_2000)"/>
<path d="M231.9 67.856L128 8L24.1041 67.856L128 127.936L231.9 67.856Z" fill="url(#paint2_linear_2115_2000)"/>
<path d="M231.9 67.856L128 8L24.1041 67.856L128 127.936L231.9 67.856Z" fill="url(#paint3_linear_2115_2000)"/>
<path d="M24.104 187.92V67.8556L128 127.936L24.104 187.92Z" fill="url(#paint4_linear_2115_2000)"/>
<path style="mix-blend-mode:overlay" d="M128 127.938L24.104 187.922L128 248.002V127.938Z" fill="url(#paint5_linear_2115_2000)"/>
<path d="M128 248L231.9 187.92V67.8556L128 127.936V248Z" fill="url(#paint6_linear_2115_2000)"/>
<path d="M128 248L231.9 187.92V67.8556L128 127.936V248Z" fill="url(#paint7_linear_2115_2000)"/>
<path d="M128 248L231.9 187.92V67.8556L128 127.936V248Z" fill="url(#paint8_linear_2115_2000)"/>
<g opacity="0.8">
<path d="M25.028 27.9699L32 32V2L6 16.972L25.028 27.9699Z" fill="url(#paint9_linear_1725:872)" style="mix-blend-mode:overlay"/>
<path style="mix-blend-mode:overlay" d="M100.112 111.88L128 128V8L24 67.888L100.112 111.88Z" fill="url(#paint9_linear_2115_2000)"/>
</g>
<defs>
<linearGradient id="paint0_linear_1725:872" x1="17.0683" y1="11.5629" x2="61.3962" y2="55.8908" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#FDB60D"/>
<linearGradient id="paint0_linear_2115_2000" x1="68.2732" y1="46.2516" x2="245.585" y2="223.563" gradientUnits="userSpaceOnUse">
<stop stop-color="#FDB60D"/>
<stop offset="0.54795" stop-color="#FF318C"/>
<stop offset="0.88765" stop-color="#6B57FF"/>
</linearGradient>
<linearGradient id="paint1_linear_1725:872" x1="25.5898" y1="28.0668" x2="28.4505" y2="23.112" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="white" stop-opacity="0.6"/>
<linearGradient id="paint1_linear_2115_2000" x1="102.359" y1="112.267" x2="113.802" y2="92.448" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.6"/>
<stop offset="0.08098" stop-color="#FFC524" stop-opacity="0.4"/>
<stop offset="0.70457" stop-color="#FFC524" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint2_linear_1725:872" x1="25.4334" y1="5.59024" x2="29.6963" y2="12.9738" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#F9ED32" stop-opacity="0.6"/>
<linearGradient id="paint2_linear_2115_2000" x1="101.734" y1="22.361" x2="118.785" y2="51.8952" gradientUnits="userSpaceOnUse">
<stop stop-color="#F9ED32" stop-opacity="0.6"/>
<stop offset="0.19796" stop-color="#FFC524" stop-opacity="0.4"/>
<stop offset="0.70457" stop-color="#FFC524" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint3_linear_1725:872" x1="38.9129" y1="4.99057" x2="37.0135" y2="8.28029" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#FDB60D" stop-opacity="0.6"/>
<linearGradient id="paint3_linear_2115_2000" x1="155.652" y1="19.9623" x2="148.054" y2="33.1212" gradientUnits="userSpaceOnUse">
<stop stop-color="#FDB60D" stop-opacity="0.6"/>
<stop offset="0.23369" stop-color="#FDB60D" stop-opacity="0.4"/>
<stop offset="0.5185" stop-color="#FF318C" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear_1725:872" x1="6.02553" y1="31.972" x2="48.2774" y2="31.972" gradientUnits="userSpaceOnUse">
<linearGradient id="paint4_linear_2115_2000" x1="24.1021" y1="127.888" x2="193.11" y2="127.888" gradientUnits="userSpaceOnUse">
<stop offset="0.01477"/>
<stop offset="0.19258"/>
<stop offset="0.57156" stop-color="#6B57FF"/>
<stop offset="0.82576" stop-color="#FF318C"/>
</linearGradient>
<linearGradient id="paint5_linear_1725:872" x1="25.2369" y1="19.192" x2="18.7738" y2="55.8462" gradientUnits="userSpaceOnUse">
<linearGradient id="paint5_linear_2115_2000" x1="100.948" y1="76.768" x2="75.0952" y2="223.385" gradientUnits="userSpaceOnUse">
<stop offset="0.046628" stop-color="white" stop-opacity="0.86"/>
<stop offset="0.766654" stop-color="#CBCAA4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint6_linear_1725:872" x1="32.0001" y1="39.4819" x2="38.997" y2="39.4819" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#FFB2FF" stop-opacity="0.6"/>
<linearGradient id="paint6_linear_2115_2000" x1="128" y1="157.928" x2="155.988" y2="157.928" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB2FF" stop-opacity="0.6"/>
<stop offset="0.08098" stop-color="#D828FF" stop-opacity="0.4"/>
<stop offset="0.70457" stop-color="#FF318C" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint7_linear_1725:872" x1="58.0814" y1="39.4819" x2="50.9352" y2="39.4819" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#6644FF" stop-opacity="0.8"/>
<linearGradient id="paint7_linear_2115_2000" x1="232.326" y1="157.928" x2="203.741" y2="157.928" gradientUnits="userSpaceOnUse">
<stop stop-color="#6644FF" stop-opacity="0.8"/>
<stop offset="0.09676" stop-color="#6B57FF" stop-opacity="0.4"/>
<stop offset="0.70457" stop-color="#FF318C" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint8_linear_1725:872" x1="51.8655" y1="51.3952" x2="49.8093" y2="47.8337" gradientUnits="userSpaceOnUse">
<linearGradient id="paint8_linear_2115_2000" x1="207.462" y1="205.581" x2="199.237" y2="191.335" gradientUnits="userSpaceOnUse">
<stop offset="0.00572" stop-color="#FF318C"/>
<stop offset="0.46934" stop-color="#6B57FF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint9_linear_1725:872" x1="18.9999" y1="2.93734" x2="18.9999" y2="20.5615" gradientUnits="userSpaceOnUse">
<linearGradient id="paint9_linear_2115_2000" x1="75.9996" y1="11.7494" x2="75.9996" y2="82.246" gradientUnits="userSpaceOnUse">
<stop offset="0.23873" stop-color="#FF5592" stop-opacity="0.65"/>
<stop offset="0.8289" stop-color="#FF57E4" stop-opacity="0"/>
</linearGradient>

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

+6
View File
@@ -0,0 +1,6 @@
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M163.955 82.2727H164.83L164.393 81.8383L195 51.4251V50.7734C169.202 28.1807 133.567 20.3602 100.555 30.1358C67.5425 39.9115 42.1822 65.98 33 99C33.4372 98.7828 34.0931 98.5655 34.749 98.5655C46.1174 91.1795 59.6721 86.8347 73.8826 86.8347C78.6923 86.8347 83.2834 87.2692 87.8745 88.1381C88.0931 87.9209 88.3117 87.9209 88.5304 87.9209C108.206 66.4144 141.437 63.8076 164.174 82.2727H163.955Z" fill="#EA4535"/>
<path d="M224.47 98.4526C219.461 79.817 209.009 62.9353 194.418 50L163.278 81.1325C176.344 91.8754 183.966 108.099 183.53 124.981V130.462C220.332 130.462 220.332 185.711 183.53 185.711H128.218V229.56H128L128.218 229.998H183.53C215.324 230.218 243.416 209.609 252.78 179.353C262.143 149.098 250.602 116.211 224.47 98.4526Z" fill="#557EBF"/>
<path d="M73.2409 229.78H131V185.416H73.2409C69.0682 185.416 65.1151 184.537 61.3817 183L28 215.065V215.505C41.177 224.949 56.9893 230 73.4606 230L73.2409 229.78Z" fill="#36A852"/>
<path d="M76.1041 86C43.4657 86.218 14.5511 106.271 4.03674 135.697C-6.47766 165.341 4.03674 197.819 29.8846 217L64.0564 184.522C45.2181 176.458 40.8371 152.917 55.2944 139.185C69.7517 125.235 94.2853 129.594 102.828 147.468L137 114.99C122.543 96.8985 99.9806 86.218 76.1041 86.4359V86Z" fill="#F9BC15"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+20 -1
View File
@@ -1 +1,20 @@
<svg height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Gemini</title><path d="M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z" fill="#3186FF"></path><path d="M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z" fill="url(#lobe-icons-gemini-fill-0)"></path><path d="M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z" fill="url(#lobe-icons-gemini-fill-1)"></path><path d="M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z" fill="url(#lobe-icons-gemini-fill-2)"></path><defs><linearGradient gradientUnits="userSpaceOnUse" id="lobe-icons-gemini-fill-0" x1="7" x2="11" y1="15.5" y2="12"><stop stop-color="#08B962"></stop><stop offset="1" stop-color="#08B962" stop-opacity="0"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="lobe-icons-gemini-fill-1" x1="8" x2="11.5" y1="5.5" y2="11"><stop stop-color="#F94543"></stop><stop offset="1" stop-color="#F94543" stop-opacity="0"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="lobe-icons-gemini-fill-2" x1="3.5" x2="17.5" y1="13.5" y2="12"><stop stop-color="#FABC12"></stop><stop offset=".46" stop-color="#FABC12" stop-opacity="0"></stop></linearGradient></defs></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M219.904 115.573C202.184 108.03 186.072 97.1641 172.437 83.5626C153.449 64.5368 139.903 40.7733 133.205 14.7413C132.911 13.5851 132.241 12.5598 131.299 11.8275C130.357 11.0952 129.198 10.6976 128.005 10.6976C126.812 10.6976 125.653 11.0952 124.712 11.8275C123.77 12.5598 123.099 13.5851 122.805 14.7413C116.094 40.7699 102.545 64.5308 83.5626 83.5626C69.9267 97.1624 53.8149 108.028 36.096 115.573C29.1626 118.56 22.0373 120.96 14.7413 122.805C13.578 123.091 12.5442 123.759 11.8051 124.701C11.066 125.644 10.6643 126.807 10.6643 128.005C10.6643 129.203 11.066 130.366 11.8051 131.309C12.5442 132.252 13.578 132.919 14.7413 133.205C22.0373 135.04 29.1413 137.44 36.096 140.427C53.8159 147.97 69.9281 158.836 83.5626 172.437C102.556 191.465 116.106 215.233 122.805 241.269C123.091 242.433 123.759 243.466 124.701 244.206C125.644 244.945 126.807 245.346 128.005 245.346C129.203 245.346 130.366 244.945 131.309 244.206C132.252 243.466 132.919 242.433 133.205 241.269C135.04 233.963 137.44 226.859 140.427 219.904C147.97 202.184 158.835 186.072 172.437 172.437C191.467 153.449 215.234 139.902 241.269 133.205C242.425 132.911 243.451 132.241 244.183 131.299C244.915 130.357 245.313 129.198 245.313 128.005C245.313 126.812 244.915 125.653 244.183 124.712C243.451 123.77 242.425 123.099 241.269 122.805C233.966 120.968 226.822 118.55 219.904 115.573Z" fill="#3186FF"/>
<path d="M219.904 115.573C202.184 108.03 186.072 97.1641 172.437 83.5626C153.449 64.5368 139.903 40.7733 133.205 14.7413C132.911 13.5851 132.241 12.5598 131.299 11.8275C130.357 11.0952 129.198 10.6976 128.005 10.6976C126.812 10.6976 125.653 11.0952 124.712 11.8275C123.77 12.5598 123.099 13.5851 122.805 14.7413C116.094 40.7699 102.545 64.5308 83.5626 83.5626C69.9267 97.1624 53.8149 108.028 36.096 115.573C29.1626 118.56 22.0373 120.96 14.7413 122.805C13.578 123.091 12.5442 123.759 11.8051 124.701C11.066 125.644 10.6643 126.807 10.6643 128.005C10.6643 129.203 11.066 130.366 11.8051 131.309C12.5442 132.252 13.578 132.919 14.7413 133.205C22.0373 135.04 29.1413 137.44 36.096 140.427C53.8159 147.97 69.9281 158.836 83.5626 172.437C102.556 191.465 116.106 215.233 122.805 241.269C123.091 242.433 123.759 243.466 124.701 244.206C125.644 244.945 126.807 245.346 128.005 245.346C129.203 245.346 130.366 244.945 131.309 244.206C132.252 243.466 132.919 242.433 133.205 241.269C135.04 233.963 137.44 226.859 140.427 219.904C147.97 202.184 158.835 186.072 172.437 172.437C191.467 153.449 215.234 139.902 241.269 133.205C242.425 132.911 243.451 132.241 244.183 131.299C244.915 130.357 245.313 129.198 245.313 128.005C245.313 126.812 244.915 125.653 244.183 124.712C243.451 123.77 242.425 123.099 241.269 122.805C233.966 120.968 226.822 118.55 219.904 115.573Z" fill="url(#paint0_linear_2115_2012)"/>
<path d="M219.904 115.573C202.184 108.03 186.072 97.1641 172.437 83.5626C153.449 64.5368 139.903 40.7733 133.205 14.7413C132.911 13.5851 132.241 12.5598 131.299 11.8275C130.357 11.0952 129.198 10.6976 128.005 10.6976C126.812 10.6976 125.653 11.0952 124.712 11.8275C123.77 12.5598 123.099 13.5851 122.805 14.7413C116.094 40.7699 102.545 64.5308 83.5626 83.5626C69.9267 97.1624 53.8149 108.028 36.096 115.573C29.1626 118.56 22.0373 120.96 14.7413 122.805C13.578 123.091 12.5442 123.759 11.8051 124.701C11.066 125.644 10.6643 126.807 10.6643 128.005C10.6643 129.203 11.066 130.366 11.8051 131.309C12.5442 132.252 13.578 132.919 14.7413 133.205C22.0373 135.04 29.1413 137.44 36.096 140.427C53.8159 147.97 69.9281 158.836 83.5626 172.437C102.556 191.465 116.106 215.233 122.805 241.269C123.091 242.433 123.759 243.466 124.701 244.206C125.644 244.945 126.807 245.346 128.005 245.346C129.203 245.346 130.366 244.945 131.309 244.206C132.252 243.466 132.919 242.433 133.205 241.269C135.04 233.963 137.44 226.859 140.427 219.904C147.97 202.184 158.835 186.072 172.437 172.437C191.467 153.449 215.234 139.902 241.269 133.205C242.425 132.911 243.451 132.241 244.183 131.299C244.915 130.357 245.313 129.198 245.313 128.005C245.313 126.812 244.915 125.653 244.183 124.712C243.451 123.77 242.425 123.099 241.269 122.805C233.966 120.968 226.822 118.55 219.904 115.573Z" fill="url(#paint1_linear_2115_2012)"/>
<path d="M219.904 115.573C202.184 108.03 186.072 97.1641 172.437 83.5626C153.449 64.5368 139.903 40.7733 133.205 14.7413C132.911 13.5851 132.241 12.5598 131.299 11.8275C130.357 11.0952 129.198 10.6976 128.005 10.6976C126.812 10.6976 125.653 11.0952 124.712 11.8275C123.77 12.5598 123.099 13.5851 122.805 14.7413C116.094 40.7699 102.545 64.5308 83.5626 83.5626C69.9267 97.1624 53.8149 108.028 36.096 115.573C29.1626 118.56 22.0373 120.96 14.7413 122.805C13.578 123.091 12.5442 123.759 11.8051 124.701C11.066 125.644 10.6643 126.807 10.6643 128.005C10.6643 129.203 11.066 130.366 11.8051 131.309C12.5442 132.252 13.578 132.919 14.7413 133.205C22.0373 135.04 29.1413 137.44 36.096 140.427C53.8159 147.97 69.9281 158.836 83.5626 172.437C102.556 191.465 116.106 215.233 122.805 241.269C123.091 242.433 123.759 243.466 124.701 244.206C125.644 244.945 126.807 245.346 128.005 245.346C129.203 245.346 130.366 244.945 131.309 244.206C132.252 243.466 132.919 242.433 133.205 241.269C135.04 233.963 137.44 226.859 140.427 219.904C147.97 202.184 158.835 186.072 172.437 172.437C191.467 153.449 215.234 139.902 241.269 133.205C242.425 132.911 243.451 132.241 244.183 131.299C244.915 130.357 245.313 129.198 245.313 128.005C245.313 126.812 244.915 125.653 244.183 124.712C243.451 123.77 242.425 123.099 241.269 122.805C233.966 120.968 226.822 118.55 219.904 115.573Z" fill="url(#paint2_linear_2115_2012)"/>
<defs>
<linearGradient id="paint0_linear_2115_2012" x1="74.6666" y1="165.333" x2="117.333" y2="128" gradientUnits="userSpaceOnUse">
<stop stop-color="#08B962"/>
<stop offset="1" stop-color="#08B962" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_2012" x1="85.3333" y1="58.6666" x2="122.667" y2="117.333" gradientUnits="userSpaceOnUse">
<stop stop-color="#F94543"/>
<stop offset="1" stop-color="#F94543" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint2_linear_2115_2012" x1="37.3333" y1="144" x2="186.667" y2="128" gradientUnits="userSpaceOnUse">
<stop stop-color="#FABC12"/>
<stop offset="0.46" stop-color="#FABC12" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

+2 -2
View File
@@ -1,3 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="97" height="97">
<path fill="#F05133" d="M92.71 44.408 52.591 4.291c-2.31-2.311-6.057-2.311-8.369 0l-8.33 8.332L46.459 23.19c2.456-.83 5.272-.273 7.229 1.685 1.969 1.97 2.521 4.81 1.67 7.275l10.186 10.185c2.465-.85 5.307-.3 7.275 1.671 2.75 2.75 2.75 7.206 0 9.958-2.752 2.751-7.208 2.751-9.961 0-2.068-2.07-2.58-5.11-1.531-7.658l-9.5-9.499v24.997c.67.332 1.303.774 1.861 1.332 2.75 2.75 2.75 7.206 0 9.959-2.75 2.749-7.209 2.749-9.957 0-2.75-2.754-2.75-7.21 0-9.959.68-.679 1.467-1.193 2.307-1.537v-25.23c-.84-.344-1.625-.853-2.307-1.537-2.083-2.082-2.584-5.14-1.516-7.698L31.798 16.715 4.288 44.222c-2.311 2.313-2.311 6.06 0 8.371l40.121 40.118c2.31 2.311 6.056 2.311 8.369 0L92.71 52.779c2.311-2.311 2.311-6.06 0-8.371z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M244.678 117.201L138.797 11.3247C132.7 5.22558 122.811 5.22558 116.71 11.3247L94.7253 33.3143L122.613 61.2025C129.095 59.012 136.527 60.482 141.692 65.6495C146.889 70.8487 148.345 78.3439 146.099 84.8495L172.982 111.73C179.488 109.486 186.988 110.938 192.182 116.14C199.44 123.397 199.44 135.157 192.182 142.42C184.919 149.681 173.159 149.681 165.893 142.42C160.435 136.957 159.084 128.934 161.853 122.21L136.781 97.1401V163.112C138.549 163.988 140.219 165.154 141.692 166.627C148.95 173.885 148.95 185.645 141.692 192.911C134.434 200.166 122.666 200.166 115.414 192.911C108.156 185.642 108.156 173.882 115.414 166.627C117.208 164.835 119.285 163.478 121.502 162.571V95.9842C119.285 95.0763 117.214 93.733 115.414 91.9278C109.916 86.433 108.594 78.3624 111.413 71.6114L83.9205 44.1138L11.3168 116.71C5.21765 122.814 5.21765 132.703 11.3168 138.802L117.203 244.681C123.3 250.78 133.186 250.78 139.29 244.681L244.678 139.293C250.777 133.194 250.777 123.3 244.678 117.201Z" fill="#F05133"/>
</svg>

Before

Width:  |  Height:  |  Size: 803 B

After

Width:  |  Height:  |  Size: 1.1 KiB

+5 -12
View File
@@ -1,12 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.1" id="main_outline" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 640 640" style="enable-background:new 0 0 640 640;" xml:space="preserve">
<g>
<path id="teabag" style="fill:#FFFFFF" d="M395.9,484.2l-126.9-61c-12.5-6-17.9-21.2-11.8-33.8l61-126.9c6-12.5,21.2-17.9,33.8-11.8 c17.2,8.3,27.1,13,27.1,13l-0.1-109.2l16.7-0.1l0.1,117.1c0,0,57.4,24.2,83.1,40.1c3.7,2.3,10.2,6.8,12.9,14.4 c2.1,6.1,2,13.1-1,19.3l-61,126.9C423.6,484.9,408.4,490.3,395.9,484.2z"/>
<g>
<g>
<path style="fill:#609926" d="M622.7,149.8c-4.1-4.1-9.6-4-9.6-4s-117.2,6.6-177.9,8c-13.3,0.3-26.5,0.6-39.6,0.7c0,39.1,0,78.2,0,117.2 c-5.5-2.6-11.1-5.3-16.6-7.9c0-36.4-0.1-109.2-0.1-109.2c-29,0.4-89.2-2.2-89.2-2.2s-141.4-7.1-156.8-8.5 c-9.8-0.6-22.5-2.1-39,1.5c-8.7,1.8-33.5,7.4-53.8,26.9C-4.9,212.4,6.6,276.2,8,285.8c1.7,11.7,6.9,44.2,31.7,72.5 c45.8,56.1,144.4,54.8,144.4,54.8s12.1,28.9,30.6,55.5c25,33.1,50.7,58.9,75.7,62c63,0,188.9-0.1,188.9-0.1s12,0.1,28.3-10.3 c14-8.5,26.5-23.4,26.5-23.4s12.9-13.8,30.9-45.3c5.5-9.7,10.1-19.1,14.1-28c0,0,55.2-117.1,55.2-231.1 C633.2,157.9,624.7,151.8,622.7,149.8z M125.6,353.9c-25.9-8.5-36.9-18.7-36.9-18.7S69.6,321.8,60,295.4 c-16.5-44.2-1.4-71.2-1.4-71.2s8.4-22.5,38.5-30c13.8-3.7,31-3.1,31-3.1s7.1,59.4,15.7,94.2c7.2,29.2,24.8,77.7,24.8,77.7 S142.5,359.9,125.6,353.9z M425.9,461.5c0,0-6.1,14.5-19.6,15.4c-5.8,0.4-10.3-1.2-10.3-1.2s-0.3-0.1-5.3-2.1l-112.9-55 c0,0-10.9-5.7-12.8-15.6c-2.2-8.1,2.7-18.1,2.7-18.1L322,273c0,0,4.8-9.7,12.2-13c0.6-0.3,2.3-1,4.5-1.5c8.1-2.1,18,2.8,18,2.8 l110.7,53.7c0,0,12.6,5.7,15.3,16.2c1.9,7.4-0.5,14-1.8,17.2C474.6,363.8,425.9,461.5,425.9,461.5z"/>
<path style="fill:#609926" d="M326.8,380.1c-8.2,0.1-15.4,5.8-17.3,13.8c-1.9,8,2,16.3,9.1,20c7.7,4,17.5,1.8,22.7-5.4 c5.1-7.1,4.3-16.9-1.8-23.1l24-49.1c1.5,0.1,3.7,0.2,6.2-0.5c4.1-0.9,7.1-3.6,7.1-3.6c4.2,1.8,8.6,3.8,13.2,6.1 c4.8,2.4,9.3,4.9,13.4,7.3c0.9,0.5,1.8,1.1,2.8,1.9c1.6,1.3,3.4,3.1,4.7,5.5c1.9,5.5-1.9,14.9-1.9,14.9 c-2.3,7.6-18.4,40.6-18.4,40.6c-8.1-0.2-15.3,5-17.7,12.5c-2.6,8.1,1.1,17.3,8.9,21.3c7.8,4,17.4,1.7,22.5-5.3 c5-6.8,4.6-16.3-1.1-22.6c1.9-3.7,3.7-7.4,5.6-11.3c5-10.4,13.5-30.4,13.5-30.4c0.9-1.7,5.7-10.3,2.7-21.3 c-2.5-11.4-12.6-16.7-12.6-16.7c-12.2-7.9-29.2-15.2-29.2-15.2s0-4.1-1.1-7.1c-1.1-3.1-2.8-5.1-3.9-6.3c4.7-9.7,9.4-19.3,14.1-29 c-4.1-2-8.1-4-12.2-6.1c-4.8,9.8-9.7,19.7-14.5,29.5c-6.7-0.1-12.9,3.5-16.1,9.4c-3.4,6.3-2.7,14.1,1.9,19.8 C343.2,346.5,335,363.3,326.8,380.1z"/>
</g>
</g>
</g>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M158.359 193.681L107.599 169.281C102.599 166.881 100.439 160.801 102.879 155.761L127.279 105.001C129.679 100.001 135.759 97.8407 140.799 100.281C147.679 103.601 151.639 105.481 151.639 105.481L151.599 61.8007L158.279 61.7607L158.319 108.601C158.319 108.601 181.279 118.281 191.559 124.641C193.039 125.561 195.639 127.361 196.719 130.401C197.559 132.841 197.519 135.641 196.319 138.121L171.919 188.881C169.439 193.961 163.359 196.121 158.359 193.681Z" fill="white"/>
<path d="M249.08 59.9205C247.44 58.2805 245.24 58.3205 245.24 58.3205C245.24 58.3205 198.36 60.9605 174.08 61.5205C168.76 61.6405 163.48 61.7605 158.24 61.8005C158.24 77.4405 158.24 93.0805 158.24 108.68C156.04 107.64 153.8 106.56 151.6 105.52C151.6 90.9605 151.56 61.8405 151.56 61.8405C139.96 62.0005 115.88 60.9605 115.88 60.9605C115.88 60.9605 59.3202 58.1205 53.1602 57.5605C49.2402 57.3205 44.1603 56.7205 37.5603 58.1605C34.0803 58.8805 24.1602 61.1205 16.0402 68.9205C-1.95975 84.9605 2.64025 110.48 3.20025 114.32C3.88025 119 5.96025 132 15.8803 143.32C34.2003 165.76 73.6403 165.24 73.6403 165.24C73.6403 165.24 78.4803 176.8 85.8803 187.44C95.8803 200.68 106.16 211 116.16 212.24C141.36 212.24 191.72 212.2 191.72 212.2C191.72 212.2 196.52 212.24 203.04 208.08C208.64 204.68 213.64 198.72 213.64 198.72C213.64 198.72 218.8 193.2 226 180.6C228.2 176.72 230.04 172.96 231.64 169.4C231.64 169.4 253.72 122.56 253.72 76.9605C253.28 63.1605 249.88 60.7205 249.08 59.9205ZM50.2403 141.56C39.8803 138.16 35.4802 134.08 35.4802 134.08C35.4802 134.08 27.8403 128.72 24.0003 118.16C17.4003 100.48 23.4402 89.6805 23.4402 89.6805C23.4402 89.6805 26.8002 80.6805 38.8403 77.6805C44.3603 76.2005 51.2403 76.4405 51.2403 76.4405C51.2403 76.4405 54.0803 100.2 57.5203 114.12C60.4003 125.8 67.4403 145.2 67.4403 145.2C67.4403 145.2 57.0003 143.96 50.2403 141.56ZM170.36 184.6C170.36 184.6 167.92 190.4 162.52 190.76C160.2 190.92 158.4 190.28 158.4 190.28C158.4 190.28 158.28 190.24 156.28 189.44L111.12 167.44C111.12 167.44 106.76 165.16 106 161.2C105.12 157.96 107.08 153.96 107.08 153.96L128.8 109.2C128.8 109.2 130.72 105.32 133.68 104C133.92 103.88 134.6 103.6 135.48 103.4C138.72 102.56 142.68 104.52 142.68 104.52L186.96 126C186.96 126 192 128.28 193.08 132.48C193.84 135.44 192.88 138.08 192.36 139.36C189.84 145.52 170.36 184.6 170.36 184.6Z" fill="#609926"/>
<path d="M130.721 152.04C127.441 152.08 124.561 154.36 123.801 157.56C123.041 160.76 124.601 164.08 127.441 165.56C130.521 167.16 134.441 166.28 136.521 163.4C138.561 160.56 138.241 156.64 135.801 154.16L145.401 134.52C146.001 134.56 146.881 134.6 147.881 134.32C149.521 133.96 150.721 132.88 150.721 132.88C152.401 133.6 154.161 134.4 156.001 135.32C157.921 136.28 159.721 137.28 161.361 138.24C161.721 138.44 162.081 138.68 162.481 139C163.121 139.52 163.841 140.24 164.361 141.2C165.121 143.4 163.601 147.16 163.601 147.16C162.681 150.2 156.241 163.4 156.241 163.4C153.001 163.32 150.121 165.4 149.161 168.4C148.121 171.64 149.601 175.32 152.721 176.92C155.841 178.52 159.681 177.6 161.721 174.8C163.721 172.08 163.561 168.28 161.281 165.76C162.041 164.28 162.761 162.8 163.521 161.24C165.521 157.08 168.921 149.08 168.921 149.08C169.281 148.4 171.201 144.96 170.001 140.56C169.001 136 164.961 133.88 164.961 133.88C160.081 130.72 153.281 127.8 153.281 127.8C153.281 127.8 153.281 126.16 152.841 124.96C152.401 123.72 151.721 122.92 151.281 122.44C153.161 118.56 155.041 114.72 156.921 110.84C155.281 110.04 153.681 109.24 152.041 108.4C150.121 112.32 148.161 116.28 146.241 120.2C143.561 120.16 141.081 121.6 139.801 123.96C138.441 126.48 138.721 129.6 140.561 131.88C137.281 138.6 134.001 145.32 130.721 152.04Z" fill="#609926"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

+15 -1
View File
@@ -1 +1,15 @@
<svg width="98" height="96" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="#fff"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2118_1435)">
<mask id="mask0_2118_1435" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="262" height="256">
<path d="M262 0H0V256H262V0Z" fill="white"/>
</mask>
<g mask="url(#mask0_2118_1435)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.106 2C57.2666 2 0 59.7497 0 131.194C0 188.303 36.6927 236.645 87.5951 253.754C93.9592 255.041 96.2905 250.975 96.2905 247.554C96.2905 244.559 96.0807 234.293 96.0807 223.596C60.4447 231.298 53.0238 208.195 53.0238 208.195C47.297 193.223 38.8114 189.374 38.8114 189.374C27.1478 181.459 39.661 181.459 39.661 181.459C52.599 182.316 59.3879 194.721 59.3879 194.721C70.8392 214.398 89.2918 208.839 96.7153 205.415C97.7746 197.074 101.171 191.298 104.776 188.09C76.3537 185.096 46.4499 173.973 46.4499 124.348C46.4499 110.23 51.5371 98.6808 59.5977 89.6982C58.326 86.4904 53.8709 73.2263 60.8721 55.4736C60.8721 55.4736 71.6888 52.0506 96.078 68.735C106.52 65.907 117.289 64.4684 128.106 64.4563C138.923 64.4563 149.949 65.9552 160.131 68.735C184.522 52.0506 195.339 55.4736 195.339 55.4736C202.341 73.2263 197.883 86.4904 196.611 89.6982C204.884 98.6808 209.762 110.23 209.762 124.348C209.762 173.973 179.858 184.88 151.223 188.09C155.891 192.154 159.918 199.853 159.918 212.046C159.918 229.371 159.708 243.276 159.708 247.552C159.708 250.975 162.043 255.041 168.404 253.757C219.307 236.642 255.999 188.303 255.999 131.194C256.209 59.7497 198.733 2 128.106 2Z" fill="white"/>
</g>
</g>
<defs>
<clipPath id="clip0_2118_1435">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 961 B

After

Width:  |  Height:  |  Size: 1.7 KiB

+6 -25
View File
@@ -1,25 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 194 186" width="194px" height="186px">
<g clipPath="url(#clip0_1915_987)">
<path
d="M189.83 73.7299L189.56 73.0399L163.42 4.81995C162.888 3.48288 161.946 2.34863 160.73 1.57996C159.513 0.82434 158.093 0.460411 156.662 0.537307C155.232 0.614203 153.859 1.12822 152.73 2.00996C151.613 2.91701 150.803 4.14609 150.41 5.52995L132.76 59.53H61.2899L43.6399 5.52995C43.2571 4.13855 42.4453 2.90331 41.3199 1.99995C40.1907 1.11822 38.8181 0.6042 37.3875 0.527305C35.9569 0.450409 34.5371 0.814338 33.3199 1.56995C32.1062 2.34173 31.1653 3.47499 30.6299 4.80995L4.43991 73L4.17991 73.69C0.416933 83.522 -0.0475445 94.3109 2.8565 104.43C5.76055 114.549 11.8757 123.45 20.2799 129.79L20.3699 129.86L20.6099 130.03L60.4299 159.85L80.1299 174.76L92.1299 183.82C93.5336 184.886 95.2475 185.463 97.0099 185.463C98.7723 185.463 100.486 184.886 101.89 183.82L113.89 174.76L133.59 159.85L173.65 129.85L173.75 129.77C182.135 123.429 188.236 114.537 191.136 104.432C194.035 94.3262 193.577 83.5527 189.83 73.7299Z"
fill="#E24329"
/>
<path
d="M189.83 73.7299L189.56 73.0399C176.823 75.6543 164.82 81.0495 154.41 88.8399L97 132.25C116.55 147.04 133.57 159.89 133.57 159.89L173.63 129.89L173.73 129.81C182.127 123.469 188.238 114.572 191.141 104.457C194.045 94.3434 193.585 83.5598 189.83 73.7299Z"
fill="#FC6D26"
/>
<path
d="M60.4299 159.89L80.1299 174.8L92.1299 183.86C93.5336 184.926 95.2475 185.503 97.0099 185.503C98.7723 185.503 100.486 184.926 101.89 183.86L113.89 174.8L133.59 159.89C133.59 159.89 116.55 147 96.9999 132.25C77.4499 147 60.4299 159.89 60.4299 159.89Z"
fill="#FCA326"
/>
<path
d="M39.5799 88.84C29.1778 81.0335 17.1779 75.6243 4.43991 73L4.17991 73.69C0.416933 83.5221 -0.0475445 94.311 2.8565 104.43C5.76055 114.549 11.8757 123.45 20.2799 129.79L20.3699 129.86L20.6099 130.03L60.4299 159.85C60.4299 159.85 77.4299 147 96.9999 132.21L39.5799 88.84Z"
fill="#FC6D26"
/>
</g>
<defs>
<clipPath id="clip0_1915_987">
<rect width="194" height="186" fill="white" />
</clipPath>
</defs>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M250.213 102.436L249.857 101.527L215.363 11.6676C214.661 9.90639 213.418 8.41235 211.813 7.39986C210.207 6.40455 208.333 5.92518 206.445 6.02647C204.558 6.12776 202.746 6.80482 201.256 7.96625C199.782 9.16102 198.714 10.78 198.195 12.6028L174.904 83.7319H80.5932L57.3025 12.6028C56.7974 10.77 55.7261 9.14298 54.2411 7.95307C52.751 6.79165 50.9397 6.11458 49.0519 6.01329C47.1641 5.91201 45.2906 6.39138 43.6844 7.38667C42.0828 8.40326 40.8412 9.896 40.1347 11.6544L5.5747 101.475L5.23161 102.384C0.266031 115.334 -0.346888 129.545 3.48525 142.874C7.3174 156.203 15.3869 167.928 26.477 176.279L26.5957 176.371L26.9124 176.595L79.4584 215.874L105.454 235.513L121.289 247.447C123.142 248.851 125.403 249.611 127.729 249.611C130.055 249.611 132.316 248.851 134.169 247.447L150.004 235.513L176 215.874L228.862 176.358L228.994 176.252C240.059 167.9 248.11 156.187 251.937 142.877C255.762 129.566 255.158 115.375 250.213 102.436Z" fill="#E24329"/>
<path d="M250.214 102.436L249.858 101.527C233.05 104.971 217.211 112.078 203.474 122.339L127.717 179.519C153.515 199.001 175.974 215.927 175.974 215.927L228.837 176.411L228.969 176.305C240.049 167.953 248.113 156.234 251.944 142.91C255.776 129.588 255.169 115.384 250.214 102.436Z" fill="#FC6D26"/>
<path d="M79.459 215.926L105.455 235.566L121.29 247.499C123.142 248.904 125.404 249.664 127.73 249.664C130.055 249.664 132.317 248.904 134.169 247.499L150.004 235.566L176 215.926C176 215.926 153.514 198.947 127.716 179.519C101.918 198.947 79.459 215.926 79.459 215.926Z" fill="#FCA326"/>
<path d="M51.945 122.339C38.2185 112.056 22.3836 104.931 5.5747 101.475L5.23161 102.383C0.266031 115.334 -0.346888 129.546 3.48525 142.874C7.3174 156.203 15.3869 167.928 26.477 176.279L26.5957 176.371L26.9124 176.595L79.4584 215.874C79.4584 215.874 101.891 198.948 127.716 179.466L51.945 122.339Z" fill="#FC6D26"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

+9 -1
View File
@@ -1 +1,9 @@
<svg height="77" viewBox="0 0 206 77" width="206" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" x1="100%" x2="0%" y1="50%" y2="50%"><stop offset="0" stop-color="#00a29c"/><stop offset="1" stop-color="#00add8"/></linearGradient><path d="m127.481483 31.4343267c1.445351-4.5790807 3.790459-8.9059246 6.918517-13 7.3-9.59999996 16.1-14.59999996 28-16.69999996 10.2-1.8 19.8-.8 28.5 5.1 7.9 5.39999996 12.8 12.69999996 14.1 22.29999996 1.7 13.5-2.2 24.5-11.5 33.9-6.6 6.7-14.7 10.9-24 12.8-2.7.5-5.4.6-8 .9-9.1-.2-17.4-2.8-24.4-8.8-4.923224-4.2556681-8.314592-9.4861534-9.999798-15.5752516-1.1695 2.3617137-2.567865 4.6235348-4.200202 6.7752516-7.2 9.5-16.6 15.4-28.5 17-9.8 1.3-18.9-.6-26.9-6.6-7.4-5.6-11.6-13-12.7-22.2-1.3-10.9 1.9-20.7 8.5-29.3 7.1-9.29999996 16.5-15.19999996 28-17.29999996 9.4-1.70000001 18.4-.6 26.5 4.9 5.3 3.5 9.1 8.29999996 11.6 14.09999996.6.9.2 1.4-1 1.7-6.3 1.6-10.6 2.8-16.8 4.4-1.5.4-1.6.5-2.9-1-1.5-1.7-2.6-2.8-4.7-3.8-6.3-3.1-12.4-2.2-18.1 1.5-6.8 4.4-10.3 10.9-10.2 19 .1 8 5.6 14.6 13.5 15.7 6.8.9 12.5-1.5 17-6.6.9-1.1 1.7-2.3 2.7-3.7-3.6 0-8.1 0-19.3 0-2.1 0-2.6-1.3-1.9-3 1.3-3.1 3.7-8.3 5.1-10.9.3-.6 1-1.6 2.5-1.6zm-111.981483-8.2c-.4 0-.5-.2-.3-.5l2.1-2.7c.2-.3.7-.5 1.1-.5h35.7c.4 0 .5.3.3.6l-1.7 2.6c-.2.3-.7.6-1 .6zm-15.1 9.2c-.4 0-.5-.2-.3-.5l2.1-2.7c.2-.3.7-.5 1.1-.5h45.6c.4 0 .6.3.5.6l-.8 2.4c-.1.4-.5.6-.9.6zm24.2 9.2c-.4 0-.5-.3-.3-.6l1.4-2.5c.2-.3.6-.6 1-.6h20c.4 0 .6.3.6.7l-.2 2.4c0 .4-.4.7-.7.7zm160.7-5.3c-.1-1.3-.1-2.3-.3-3.3-1.8-9.9-10.9-15.5-20.4-13.3-9.3 2.1-15.3 8-17.5 17.4-1.8 7.8 2 15.7 9.2 18.9 5.5 2.4 11 2.1 16.3-.6 7.9-4.1 12.2-10.5 12.7-19.1z" fill="url(#a)"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M158.424 119.191C160.22 113.482 163.134 108.087 167.021 102.983C176.093 91.0142 187.029 84.7805 201.817 82.1623C214.493 79.9181 226.423 81.1649 237.235 88.5207C247.052 95.2532 253.142 104.354 254.757 116.323C256.87 133.154 252.023 146.869 240.466 158.588C232.264 166.942 222.198 172.178 210.641 174.547C207.285 175.17 203.93 175.295 200.699 175.669C189.39 175.419 179.076 172.178 170.377 164.697C164.259 159.392 160.044 152.87 157.95 145.279C156.496 148.223 154.759 151.043 152.73 153.726C143.783 165.57 132.101 172.926 117.313 174.921C105.134 176.542 93.8252 174.173 83.8835 166.692C74.6874 159.71 69.468 150.484 68.101 139.014C66.4854 125.425 70.4621 113.206 78.6641 102.484C87.4874 90.8896 99.1689 83.5337 113.46 80.9155C125.142 78.796 136.326 80.1675 146.392 87.0246C152.979 91.3883 157.701 97.3727 160.808 104.604C161.553 105.726 161.056 106.349 159.565 106.723C151.736 108.718 146.392 110.214 138.687 112.209C136.823 112.708 136.699 112.832 135.083 110.962C133.219 108.843 131.852 107.471 129.243 106.225C121.414 102.36 113.833 103.482 106.75 108.095C98.299 113.58 93.9495 121.684 94.0738 131.783C94.1981 141.757 101.033 149.986 110.85 151.357C119.301 152.479 126.384 149.487 131.977 143.129C133.095 141.757 134.089 140.261 135.332 138.516C130.858 138.516 125.266 138.516 111.348 138.516C108.738 138.516 108.117 136.895 108.986 134.775C110.602 130.91 113.584 124.427 115.324 121.186C115.697 120.438 116.567 119.191 118.431 119.191H158.424ZM19.2621 108.967C18.765 108.967 18.6408 108.718 18.8893 108.344L21.499 104.978C21.7476 104.604 22.3689 104.354 22.866 104.354H67.2311C67.7282 104.354 67.8524 104.729 67.6039 105.103L65.4913 108.344C65.2427 108.718 64.6214 109.092 64.2485 109.092L19.2621 108.967ZM0.497087 120.438C0 120.438 -0.124272 120.188 0.124272 119.814L2.73398 116.448C2.98252 116.074 3.60388 115.825 4.10097 115.825H60.7689C61.266 115.825 61.5146 116.199 61.3903 116.573L60.3961 119.565C60.2718 120.064 59.7748 120.313 59.2777 120.313L0.497087 120.438ZM30.5709 131.908C30.0738 131.908 29.9495 131.534 30.1981 131.16L31.9379 128.043C32.1864 127.669 32.6835 127.295 33.1806 127.295H58.035C58.532 127.295 58.7806 127.669 58.7806 128.167L58.532 131.16C58.532 131.658 58.035 132.032 57.6621 132.032L30.5709 131.908ZM230.276 125.3C230.151 123.679 230.151 122.432 229.903 121.186C227.666 108.843 216.357 101.861 204.551 104.604C192.994 107.222 185.538 114.578 182.804 126.297C180.567 136.022 185.289 145.871 194.237 149.861C201.072 152.853 207.907 152.479 214.493 149.113C224.311 144.001 229.654 136.022 230.276 125.3Z" fill="url(#paint0_linear_2115_2031)"/>
<defs>
<linearGradient id="paint0_linear_2115_2031" x1="52579.3" y1="3763.25" x2="0" y2="3763.25" gradientUnits="userSpaceOnUse">
<stop stop-color="#00A29C"/>
<stop offset="1" stop-color="#00ADD8"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

+23 -18
View File
@@ -1,19 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" fill="none" viewBox="0 0 64 64">
<defs>
<linearGradient id="a" x1="63.6351" x2="39.318" y1="54.0451" y2="1.59593" gradientUnits="userSpaceOnUse">
<stop offset=".24" stop-color="#00D886"/>
<stop offset=".51" stop-color="#007DFE"/>
</linearGradient>
<linearGradient id="b" x1="59.3792" x2=".674325" y1="4.38051" y2="63.0854" gradientUnits="userSpaceOnUse">
<stop offset=".27" stop-color="#007DFE"/>
<stop offset=".7" stop-color="#D249FC"/>
</linearGradient>
</defs>
<path fill="#00D886" d="m48.0521 58.18 11.8755-.0017c2.2493 0 4.0722-1.8234 4.0722-4.0727V42.599c0-1.1887-.5196-2.3186-1.422-3.0924L24.4164 6.79677c-.7384-.63244-1.6786-.98036-2.6508-.98036H9.89011c-2.24931 0-4.07273 1.82341-4.07273 4.07272V21.3975c0 1.1887.51957 2.3185 1.42197 3.0924L45.4002 57.1991c.7383.633 1.6786.9804 2.6514.9804l.0005.0005Z"/>
<path fill="url(#a)" d="M49.4806 58.1818h10.4465c2.2493 0 4.0728-1.8234 4.0728-4.0727V41.0164c0-.1925-.014-.3851-.0408-.576L58.6815 3.49673C58.3952 1.49062 56.6765 0 54.65 0H38.977c-2.2499 0-4.0733 1.824-4.0727 4.07389l.0047 18.53851c0 .4375.0704.8721.2088 1.2869l10.4995 31.4979c.5545 1.6629 2.1109 2.7846 3.8639 2.7846h-.0006Z"/>
<path fill="url(#b)" d="M4.07273 64H38.041c1.6291 0 3.1017-.9711 3.7434-2.4681l16.0681-37.4906c.217-.5068.3293-1.0531.3293-1.6046V4.07273C58.1818 1.82342 56.3584 0 54.1091 0h-17.966c-.8046 0-1.5912.238545-2.2609.685382L1.81353 22.0881C.681309 22.8439.001745 24.1146.001745 25.4755L0 59.9273C0 62.1766 1.82342 64 4.07273 64Z"/>
<path fill="#000" d="M52 12H12v40h40V12Z"/>
<path fill="#fff" d="M19.764 31.6245c1.174.6765 2.4847 1.0155 3.9318 1.0155 1.3899 0 2.6427-.3095 3.7589-.9293 1.1231-.6197 2.005-1.4651 2.6461-2.5384.6481-1.0798.9721-2.2857.9721-3.6183v-1.1879h-6.405v2.3221h3.516c-.0722.5605-.2761 1.0718-.6106 1.5339-.3958.5468-.9322.9762-1.6092 1.2852-.6701.3096-1.4188.4646-2.2469.4646-.8928 0-1.6988-.2227-2.4193-.6695-.7204-.4467-1.2857-1.0583-1.6959-1.836-.4034-.784-.6047-1.667-.6047-2.6461 0-.979.2013-1.858.6047-2.6357.4108-.7846.9761-1.4003 1.6959-1.847.7199-.4467 1.5265-.6695 2.4193-.6695.6053 0 1.1706.0972 1.696.2916.526.1875.9831.4577 1.372.8101.3958.3455.7094.7563.9397 1.2314h3.1542c-.2737-.9866-.7529-1.8575-1.4368-2.6137-.677-.7563-1.5126-1.3436-2.5061-1.7608-.9866-.4172-2.0669-.6267-3.2404-.6267-1.4477 0-2.7583.3414-3.9318 1.0259-1.1741.6765-2.0959 1.6133-2.7653 2.8082-.6695 1.1879-1.0046 2.5165-1.0046 3.9856 0 1.4692.3351 2.8018 1.0046 3.9967.67 1.1879 1.5918 2.1236 2.7653 2.8081Z"/>
<path fill="#fff" fill-rule="evenodd" d="M36.1829 31.6245c1.181.6765 2.4951 1.0155 3.9422 1.0155 1.4541 0 2.7688-.339 3.9423-1.0155 1.181-.6845 2.1062-1.6202 2.7757-2.8081.6695-1.1949 1.0045-2.5275 1.0045-3.9967 0-1.4691-.335-2.7977-1.0045-3.9856-.6695-1.1949-1.5947-2.1317-2.7757-2.8082C42.8939 17.3414 41.5723 17 40.1251 17c-1.4471 0-2.7612.3414-3.9422 1.0259-1.1735.6765-2.0988 1.6133-2.7758 2.8082-.6695 1.1879-1.0045 2.5165-1.0045 3.9856 0 1.4692.335 2.8018 1.0045 3.9967.6765 1.1879 1.6023 2.1236 2.7758 2.8081Zm6.3621-2.2463c-.7129.4468-1.516.6695-2.4089.6695-.8928 0-1.6994-.2227-2.4193-.6695-.7128-.4536-1.2747-1.0756-1.685-1.8684-.4033-.7991-.6046-1.696-.6046-2.6895 0-.9935.2013-1.8858.6046-2.6785.4103-.7991.9722-1.4217 1.685-1.8684.7199-.4537 1.5265-.6805 2.4193-.6805.8929 0 1.696.2268 2.4089.6805.7129.4467 1.2707 1.0693 1.674 1.8684.4033.7921.6047 1.685.6047 2.6785s-.2014 1.8904-.6047 2.6895c-.4033.7922-.9611 1.4148-1.674 1.8684Z" clip-rule="evenodd"/>
<path fill="#fff" d="M16.9941 44h16v3h-16v-3Z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_2033)">
<path d="M192.208 232.72L239.71 232.713C248.708 232.713 255.999 225.42 255.999 216.422V170.396C255.999 165.641 253.921 161.122 250.311 158.026L97.6656 27.1871C94.712 24.6573 90.9512 23.2656 87.0624 23.2656H39.5605C30.5632 23.2656 23.2695 30.5593 23.2695 39.5565V85.59C23.2695 90.3448 25.3478 94.864 28.9574 97.9596L181.601 228.796C184.554 231.328 188.317 232.72 192.208 232.72Z" fill="#00D886"/>
<path d="M197.922 232.727H239.708C248.706 232.727 256 225.434 256 216.436V164.066C256 163.296 255.944 162.525 255.836 161.762L234.726 13.9869C233.581 5.96248 226.706 0 218.6 0H155.908C146.908 0 139.615 7.296 139.617 16.2956L139.636 90.4496C139.636 92.1996 139.918 93.938 140.471 95.5972L182.469 221.589C184.687 228.24 190.91 232.727 197.922 232.727Z" fill="url(#paint0_linear_2115_2033)"/>
<path d="M16.2909 256H152.164C158.68 256 164.571 252.116 167.138 246.128L231.41 96.1652C232.278 94.138 232.727 91.9528 232.727 89.7468V16.2909C232.727 7.29368 225.434 0 216.436 0H144.572C141.354 0 138.208 0.95418 135.529 2.74153L7.25412 88.3524C2.72524 91.3756 0.00698 96.4584 0.00698 101.902L0 239.709C0 248.706 7.29368 256 16.2909 256Z" fill="url(#paint1_linear_2115_2033)"/>
<path d="M208 48H48V208H208V48Z" fill="black"/>
<path d="M79.0559 126.498C83.7519 129.204 88.9947 130.56 94.7831 130.56C100.343 130.56 105.354 129.322 109.819 126.843C114.311 124.364 117.839 120.982 120.403 116.689C122.996 112.37 124.292 107.546 124.292 102.216V97.4644H98.6715V106.753H112.736C112.447 108.995 111.631 111.04 110.293 112.888C108.71 115.076 106.564 116.793 103.856 118.029C101.176 119.268 98.1811 119.888 94.8687 119.888C91.2975 119.888 88.0735 118.997 85.1915 117.21C82.3099 115.423 80.0487 112.976 78.4079 109.866C76.7943 106.73 75.9891 103.198 75.9891 99.2812C75.9891 95.3652 76.7943 91.8492 78.4079 88.7384C80.0511 85.6 82.3123 83.1372 85.1915 81.3504C88.0711 79.5636 91.2975 78.6724 94.8687 78.6724C97.2899 78.6724 99.5511 79.0612 101.653 79.8388C103.757 80.5888 105.585 81.6696 107.141 83.0792C108.724 84.4612 109.978 86.1044 110.9 88.0048H123.516C122.422 84.0584 120.505 80.5748 117.769 77.55C115.061 74.5248 111.719 72.1756 107.745 70.5068C103.798 68.838 99.4771 68 94.7831 68C88.9923 68 83.7499 69.3656 79.0559 72.1036C74.3595 74.8096 70.6723 78.5568 67.9947 83.3364C65.3167 88.088 63.9763 93.4024 63.9763 99.2788C63.9763 105.156 65.3167 110.486 67.9947 115.266C70.6747 120.017 74.3619 123.76 79.0559 126.498Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M144.732 126.498C149.456 129.204 154.712 130.56 160.5 130.56C166.317 130.56 171.576 129.204 176.27 126.498C180.994 123.76 184.694 120.017 187.372 115.266C190.05 110.486 191.39 105.156 191.39 99.2788C191.39 93.4024 190.05 88.088 187.372 83.3364C184.694 78.5568 180.994 74.8096 176.27 72.1036C171.576 69.3656 166.289 68 160.5 68C154.712 68 149.456 69.3656 144.732 72.1036C140.038 74.8096 136.336 78.5568 133.628 83.3364C130.95 88.088 129.61 93.4024 129.61 99.2788C129.61 105.156 130.95 110.486 133.628 115.266C136.334 120.017 140.038 123.76 144.732 126.498ZM170.18 117.513C167.328 119.3 164.116 120.191 160.544 120.191C156.973 120.191 153.747 119.3 150.867 117.513C148.016 115.698 145.768 113.21 144.127 110.039C142.514 106.843 141.709 103.255 141.709 99.2812C141.709 95.3072 142.514 91.738 144.127 88.5672C145.768 85.3708 148.016 82.8804 150.867 81.0936C153.747 79.2788 156.973 78.3716 160.544 78.3716C164.116 78.3716 167.328 79.2788 170.18 81.0936C173.032 82.8804 175.263 85.3708 176.876 88.5672C178.489 91.7356 179.295 95.3072 179.295 99.2812C179.295 103.255 178.489 106.843 176.876 110.039C175.263 113.208 173.032 115.698 170.18 117.513Z" fill="white"/>
<path d="M67.9763 176H131.976V188H67.9763V176Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_2033" x1="254.54" y1="216.18" x2="157.272" y2="6.38372" gradientUnits="userSpaceOnUse">
<stop offset="0.24" stop-color="#00D886"/>
<stop offset="0.51" stop-color="#007DFE"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_2033" x1="237.517" y1="17.522" x2="2.6973" y2="252.342" gradientUnits="userSpaceOnUse">
<stop offset="0.27" stop-color="#007DFE"/>
<stop offset="0.7" stop-color="#D249FC"/>
</linearGradient>
<clipPath id="clip0_2115_2033">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

+6 -1
View File
@@ -1 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z" fill="#4285F4"/><path d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z" fill="#34A853"/><path d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z" fill="#FBBC05"/><path d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z" fill="#EA4335"/><path d="M1 1h22v22H1z" fill="none"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M240.64 130.667C240.64 122.347 239.893 114.347 238.507 106.667H128V152.107H191.147C188.373 166.72 180.053 179.093 167.573 187.413V216.96H205.653C227.84 196.48 240.64 166.4 240.64 130.667Z" fill="#4285F4"/>
<path d="M128 245.333C159.68 245.333 186.24 234.88 205.653 216.96L167.573 187.413C157.12 194.453 143.787 198.72 128 198.72C97.4933 198.72 71.5733 178.133 62.2933 150.4H23.2533V180.693C42.56 218.987 82.1333 245.333 128 245.333Z" fill="#34A853"/>
<path d="M62.2933 150.293C59.9467 143.253 58.56 135.787 58.56 128C58.56 120.213 59.9467 112.747 62.2933 105.707V75.4133H23.2533C15.2533 91.2 10.6667 109.013 10.6667 128C10.6667 146.987 15.2533 164.8 23.2533 180.587L53.6533 156.907L62.2933 150.293Z" fill="#FBBC05"/>
<path d="M128 57.3866C145.28 57.3866 160.64 63.36 172.907 74.88L206.507 41.28C186.133 22.2933 159.68 10.6666 128 10.6666C82.1333 10.6666 42.56 37.0133 23.2533 75.4133L62.2933 105.707C71.5733 77.9733 97.4933 57.3866 128 57.3866Z" fill="#EA4335"/>
</svg>

Before

Width:  |  Height:  |  Size: 742 B

After

Width:  |  Height:  |  Size: 1.1 KiB

+10 -3
View File
@@ -1,4 +1,11 @@
<svg width="1648" height="1648" viewBox="0 0 1648 1648" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1248 0H400C179.086 0 0 179.086 0 400V1248C0 1468.91 179.086 1648 400 1648H1248C1468.91 1648 1648 1468.91 1648 1248V400C1648 179.086 1468.91 0 1248 0Z" fill="white"/>
<path d="M1293.43 1351.06C1349.36 1338.92 1408.68 1305.87 1408.68 1305.87L1304.86 1220.35C1253.53 1178.1 1209.85 1127.35 1175.69 1070.32C1128.5 991.535 1063.29 925.049 985.455 876.335L947.439 854.198C934.413 845.144 925.332 831.032 924.039 815.111C923.211 804.845 925.671 795.668 931.41 787.592C951.204 759.692 1053.52 638.291 1072.27 622.778C1096.41 602.819 1123.32 586.217 1148.28 567.209C1151.83 564.503 1155.39 561.812 1158.9 559.067C1159.02 558.944 1159.2 558.848 1159.31 558.74C1167.32 552.416 1174.88 545.699 1180.89 537.734C1202.59 512.606 1207.86 490.391 1209.15 480.56C1206.22 471.098 1197.46 449.942 1173.05 425.537C1188.35 426.476 1206.87 438.575 1223.66 452.81C1234.93 434.795 1246.73 415.76 1258.52 396.686C1266.39 383.945 1254.71 374.414 1254.39 374.117L1254.32 374.102C1254.32 374.102 1254.32 374.048 1254.31 374.036C1254.01 373.709 1244.48 362.03 1231.76 369.902C1204.58 386.72 1177.42 403.553 1153.26 418.847C1153.26 418.847 1124.62 418.25 1090.72 447.536C1082.74 453.56 1076.02 461.117 1069.71 469.112C1069.59 469.235 1069.48 469.397 1069.38 469.52C1066.62 473.015 1063.93 476.576 1061.24 480.14C1042.22 505.115 1025.63 532.01 1005.67 556.157C990.171 574.919 868.758 677.216 840.858 697.013C832.782 702.752 823.617 705.224 813.339 704.381C797.433 703.103 783.306 694.007 774.249 680.984L752.115 642.968C703.401 565.103 636.915 499.922 558.126 452.729C501.102 418.577 450.36 374.876 408.105 323.564L322.557 219.743C322.557 219.743 289.491 279.05 277.362 334.985C294.234 355.502 338.247 406.421 389.478 445.307C334.398 419.405 293.679 399.377 261.564 382.628C256.614 419.255 258.546 474.647 263.643 517.544C298.41 532.757 357.606 556.196 417.867 568.652C369.666 579.923 316.791 581.975 275.961 581.174C283.155 607.727 293.16 634.811 306.621 662.057C312.345 674.66 318.612 686.966 325.383 699.011C346.989 704.954 431.817 717.311 476.955 707.168C432.048 723.2 356.655 750.134 356.655 750.134C414.561 822.179 478.56 880.793 478.56 880.793C575.907 828.449 598.098 821.297 671.109 773.546C552.876 869.753 522.189 909.032 489 949.4L465.873 981.854C453.855 998.714 443.427 1016.62 434.712 1035.4C405.549 1098.14 364.269 1231.85 364.269 1231.85C356.901 1255.15 373.977 1272.23 396.6 1264.18C396.6 1264.18 530.28 1222.9 593.052 1193.74C611.817 1185.01 629.751 1174.58 646.596 1162.57L679.05 1139.45C689.94 1130.49 700.764 1121.71 712.647 1111.35C712.647 1111.35 794.346 1208.14 878.328 1271.81C878.328 1271.81 905.265 1196.42 921.294 1151.51C911.136 1196.66 923.496 1281.49 929.451 1303.08C941.469 1309.85 953.802 1316.12 966.405 1321.84C993.666 1335.31 1020.73 1345.31 1047.29 1352.5C1046.5 1311.66 1048.54 1258.8 1059.81 1210.6C1072.27 1270.86 1095.69 1330.07 1110.92 1364.82C1153.81 1369.92 1209.21 1371.85 1245.84 1366.9C1229.08 1334.79 1209.06 1294.04 1183.16 1238.99C1222.04 1290.22 1272.96 1334.23 1293.48 1351.1L1293.43 1351.06Z" fill="black"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_2046)">
<path d="M193.864 0H62.1359C27.8192 0 0 27.8192 0 62.1359V193.864C0 228.18 27.8192 256 62.1359 256H193.864C228.18 256 256 228.18 256 193.864V62.1359C256 27.8192 228.18 0 193.864 0Z" fill="white"/>
<path d="M200.921 209.873C209.609 207.988 218.824 202.854 218.824 202.854L202.697 189.569C194.723 183.006 187.938 175.122 182.631 166.263C175.301 154.025 165.171 143.697 153.08 136.13L147.175 132.691C145.152 131.285 143.741 129.092 143.54 126.619C143.411 125.025 143.794 123.599 144.685 122.344C147.76 118.01 163.654 99.1521 166.566 96.7423C170.316 93.6418 174.496 91.0629 178.374 88.1102C178.925 87.6898 179.478 87.2718 180.023 86.8454C180.042 86.8263 180.07 86.8114 180.087 86.7946C181.331 85.8122 182.506 84.7688 183.439 83.5316C186.81 79.6282 187.629 76.1773 187.829 74.6502C187.374 73.1803 186.013 69.894 182.221 66.1029C184.598 66.2488 187.475 68.1282 190.083 70.3395C191.834 67.541 193.667 64.5841 195.498 61.6212C196.721 59.642 194.906 58.1615 194.857 58.1153L194.846 58.113C194.846 58.113 194.846 58.1046 194.844 58.1027C194.798 58.0519 193.317 56.2377 191.341 57.4606C187.119 60.0731 182.9 62.6879 179.147 65.0637C179.147 65.0637 174.698 64.9709 169.432 69.5202C168.193 70.456 167.149 71.6299 166.169 72.8718C166.15 72.8909 166.133 72.9161 166.117 72.9352C165.689 73.4781 165.271 74.0313 164.853 74.5849C161.898 78.4645 159.321 82.6424 156.221 86.3934C153.813 89.3079 134.953 105.199 130.619 108.274C129.364 109.165 127.941 109.549 126.344 109.418C123.873 109.22 121.679 107.807 120.272 105.784L116.833 99.8786C109.266 87.783 98.9383 77.6578 86.6992 70.3269C77.8411 65.0217 69.9589 58.2332 63.395 50.2624L50.106 34.1349C50.106 34.1349 44.9695 43.3476 43.0854 52.0366C45.7063 55.2237 52.5432 63.1334 60.5015 69.174C51.9453 65.1503 45.6201 62.0392 40.6313 59.4374C39.8624 65.127 40.1625 73.7316 40.9543 80.3952C46.355 82.7584 55.5505 86.3994 64.9114 88.3343C57.4239 90.0852 49.2103 90.4039 42.8677 90.2795C43.9853 94.4043 45.5394 98.6115 47.6305 102.844C48.5196 104.802 49.4931 106.713 50.5449 108.584C53.9012 109.507 67.0784 111.427 74.0901 109.851C67.1143 112.342 55.4027 116.526 55.4027 116.526C64.3978 127.717 74.3394 136.822 74.3394 136.822C89.4613 128.691 92.9084 127.58 104.25 120.163C85.8837 135.107 81.1168 141.209 75.9612 147.48L72.3686 152.521C70.5018 155.14 68.8819 157.922 67.5281 160.839C62.9979 170.585 56.5855 191.355 56.5855 191.355C55.4409 194.975 58.0935 197.628 61.6078 196.378C61.6078 196.378 82.3736 189.965 92.1246 185.435C95.0395 184.079 97.8254 182.459 100.442 180.593L105.484 177.002C107.175 175.61 108.857 174.246 110.702 172.637C110.702 172.637 123.394 187.672 136.439 197.563C136.439 197.563 140.624 185.852 143.114 178.875C141.536 185.889 143.456 199.066 144.381 202.42C146.248 203.472 148.163 204.446 150.121 205.334C154.356 207.427 158.56 208.98 162.686 210.097C162.563 203.753 162.88 195.542 164.631 188.054C166.566 197.415 170.204 206.613 172.57 212.011C179.233 212.803 187.838 213.103 193.529 212.334C190.925 207.346 187.815 201.016 183.792 192.465C189.831 200.423 197.741 207.259 200.929 209.88L200.921 209.873Z" fill="black"/>
</g>
<defs>
<clipPath id="clip0_2115_2046">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

+3 -1
View File
@@ -1 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48" fill="#FFF"><path d="M9 42q-1.2 0-2.1-.9Q6 40.2 6 39V9q0-1.2.9-2.1Q7.8 6 9 6h30q1.2 0 2.1.9.9.9.9 2.1v30q0 1.2-.9 2.1-.9.9-2.1.9Zm0-3h30V9H9v30Zm2.8-4.85h24.45l-7.35-9.8-6.6 8.55-4.65-6.35ZM9 39V9v30Z"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M48 224C43.7333 224 40 222.4 36.8 219.2C33.6 216 32 212.267 32 208V48C32 43.7333 33.6 40 36.8 36.8C40 33.6 43.7333 32 48 32H208C212.267 32 216 33.6 219.2 36.8C222.4 40 224 43.7333 224 48V208C224 212.267 222.4 216 219.2 219.2C216 222.4 212.267 224 208 224H48ZM48 208H208V48H48V208ZM62.9333 182.133H193.333L154.133 129.867L118.933 175.467L94.1333 141.6L62.9333 182.133Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 273 B

After

Width:  |  Height:  |  Size: 500 B

+23 -18
View File
@@ -1,19 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" fill="none" viewBox="0 0 64 64">
<defs>
<linearGradient id="a" x1="-.717383" x2="24.1455" y1="7.61946" y2="61.2456" gradientUnits="userSpaceOnUse">
<stop offset=".1" stop-color="#FC801D"/>
<stop offset=".59" stop-color="#FE2857"/>
</linearGradient>
<linearGradient id="b" x1="4.22243" x2="62.9273" y1="60.0186" y2="1.31316" gradientUnits="userSpaceOnUse">
<stop offset=".21" stop-color="#FE2857"/>
<stop offset=".7" stop-color="#007EFF"/>
</linearGradient>
</defs>
<path fill="#FF8100" d="m15.9476 5.81641-11.87545.00174C1.82284 5.81815 0 7.64157 0 9.89088V21.3975c0 1.1887.519564 2.3185 1.42196 3.0924L39.5828 57.1997c.7384.6324 1.6786.9803 2.6508.9803h11.8755c2.2493 0 4.0727-1.8234 4.0727-4.0727V42.599c0-1.1887-.5195-2.3186-1.4219-3.0924L18.599 6.79735c-.7383-.63302-1.6786-.98036-2.6514-.98036v-.00058Z"/>
<path fill="url(#a)" d="M14.5193 5.81641H4.07273C1.82342 5.81641 0 7.63982 0 9.88913V22.9818c0 .1926.013964.3852.040727.576L5.31782 60.5015c.28683 2.0067 2.00494 3.4967 4.032 3.4967H25.0228c2.2499 0 4.0733-1.824 4.0728-4.0739l-.0047-18.5384c0-.4376-.0704-.8722-.2089-1.287L18.3825 8.60099c-.5544-1.66284-2.1108-2.78458-3.8638-2.78458h.0006Z"/>
<path fill="url(#b)" d="M59.9275 0H25.9592c-1.6291 0-3.1017.971054-3.7435 2.46807L6.14767 39.9587c-.21702.5068-.32931 1.0531-.32931 1.6046v18.364C5.81836 62.1766 7.64178 64 9.89109 64H27.8571c.8046 0 1.5912-.2385 2.2609-.6854l32.0687-21.4033c1.1322-.7552 1.8117-2.0265 1.8117-3.3874l.0018-34.45117C64.0002 1.82342 62.1768 0 59.9275 0Z"/>
<path fill="#000" d="M52 12H12v40h40V12Z"/>
<path fill="#fff" d="M17 29.3856h2.9788v-9.7712H17V17h8.839v2.6144h-2.9788v9.7712h2.9788V32H17v-2.6144Z"/>
<path fill="#fff" d="M27.3389 29.3002h2.1538c.4354 0 .8233-.0928 1.1625-.2784.3392-.1857.6016-.4481.7872-.7873.1857-.3392.2785-.7265.2785-1.1625V17h2.9249v10.2748c0 .9001-.2074 1.7092-.6216 2.4271-.4143.7179-.9855 1.2805-1.7143 1.6873-.7288.4074-1.5464.6108-2.4534.6108h-2.5176v-2.6998Z"/>
<path fill="#fff" d="M17 44h16v3H17v-3Z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_2049)">
<path d="M63.7904 23.2656L16.2886 23.2726C7.29136 23.2726 0 30.5663 0 39.5635V85.59C0 90.3448 2.07826 94.864 5.68784 97.9596L158.331 228.799C161.285 231.328 165.046 232.72 168.934 232.72H216.436C225.434 232.72 232.727 225.426 232.727 216.429V170.396C232.727 165.641 230.649 161.122 227.04 158.026L74.396 27.1894C71.4428 24.6573 67.6816 23.2656 63.7904 23.2656Z" fill="#FF8100"/>
<path d="M58.0772 23.2656H16.2909C7.29368 23.2656 0 30.5593 0 39.5565V91.9272C0 92.6976 0.055856 93.468 0.162908 94.2312L21.2713 242.006C22.4186 250.033 29.291 255.993 37.3993 255.993H100.091C109.091 255.993 116.384 248.697 116.382 239.697L116.364 165.544C116.364 163.793 116.082 162.055 115.528 160.396L73.53 34.4039C71.3124 27.7526 65.0892 23.2656 58.0772 23.2656Z" fill="url(#paint0_linear_2115_2049)"/>
<path d="M239.71 0H103.837C97.3204 0 91.43 3.88422 88.8628 9.87228L24.5907 159.835C23.7226 161.862 23.2734 164.047 23.2734 166.253V239.709C23.2734 248.706 30.5671 256 39.5644 256H111.428C114.647 256 117.793 255.046 120.472 253.258L248.747 167.645C253.276 164.624 255.994 159.539 255.994 154.096L256.001 16.2909C256.001 7.29368 248.707 0 239.71 0Z" fill="url(#paint1_linear_2115_2049)"/>
<path d="M208 48H48V208H208V48Z" fill="black"/>
<path d="M68 117.542H79.9152V78.4576H68V68H103.356V78.4576H91.4408V117.542H103.356V128H68V117.542Z" fill="white"/>
<path d="M109.356 117.201H117.971C119.712 117.201 121.264 116.83 122.621 116.087C123.978 115.344 125.027 114.295 125.77 112.938C126.512 111.581 126.884 110.032 126.884 108.288V68H138.583V109.099C138.583 112.7 137.754 115.936 136.097 118.808C134.44 121.679 132.155 123.93 129.24 125.557C126.324 127.186 123.054 128 119.426 128H109.356V117.201Z" fill="white"/>
<path d="M68 176H132V188H68V176Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_2049" x1="-2.86953" y1="30.4778" x2="96.582" y2="244.982" gradientUnits="userSpaceOnUse">
<stop offset="0.1" stop-color="#FC801D"/>
<stop offset="0.59" stop-color="#FE2857"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_2049" x1="16.8897" y1="240.074" x2="251.709" y2="5.25263" gradientUnits="userSpaceOnUse">
<stop offset="0.21" stop-color="#FE2857"/>
<stop offset="0.7" stop-color="#007EFF"/>
</linearGradient>
<clipPath id="clip0_2115_2049">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

+14 -40
View File
@@ -1,41 +1,15 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="550px" viewBox="0 0 300 550" style="enable-background:new 0 0 300 550;" xml:space="preserve">
<path style="fill:#E76F00;" d="M285.104,430.945h-2.038v-1.14h5.486v1.14h-2.024v5.688h-1.424V430.945z M296.046,431.242h-0.032
l-2.019,5.392h-0.924l-2.006-5.392h-0.025v5.392h-1.342v-6.828h1.975l1.86,4.835l1.854-4.835h1.968v6.828h-1.31V431.242z"/>
<path style="fill:#5382A1;" d="M102.681,291.324c0,0-14.178,8.245,10.09,11.035c29.4,3.354,44.426,2.873,76.825-3.259
c0,0,8.518,5.341,20.414,9.967C137.38,340.195,45.634,307.264,102.681,291.324"/>
<path style="fill:#5382A1;" d="M93.806,250.704c0,0-15.902,11.771,8.384,14.283c31.406,3.24,56.208,3.505,99.125-4.759
c0,0,5.936,6.018,15.27,9.309C128.771,295.215,30.962,271.562,93.806,250.704"/>
<path style="fill:#E76F00;" d="M168.625,181.799c17.896,20.604-4.702,39.145-4.702,39.145s45.441-23.458,24.572-52.833
c-19.491-27.394-34.438-41.005,46.479-87.934C234.974,80.177,107.961,111.899,168.625,181.799"/>
<path style="fill:#5382A1;" d="M264.684,321.369c0,0,10.492,8.645-11.555,15.333c-41.923,12.7-174.488,16.535-211.314,0.506
c-13.238-5.759,11.587-13.751,19.396-15.428c8.144-1.766,12.798-1.437,12.798-1.437c-14.722-10.371-95.157,20.364-40.857,29.166
C181.236,373.524,303.095,338.695,264.684,321.369"/>
<path style="fill:#5382A1;" d="M109.499,208.617c0,0-67.431,16.016-23.879,21.832c18.389,2.462,55.047,1.905,89.193-0.956
c27.906-2.354,55.927-7.359,55.927-7.359s-9.84,4.214-16.959,9.075c-68.475,18.009-200.756,9.631-162.674-8.79
C83.313,206.851,109.499,208.617,109.499,208.617"/>
<path style="fill:#5382A1;" d="M230.462,276.231c69.608-36.171,37.424-70.931,14.96-66.248c-5.506,1.146-7.961,2.139-7.961,2.139
s2.044-3.202,5.948-4.588c44.441-15.624,78.619,46.081-14.346,70.52C229.063,278.055,230.14,277.092,230.462,276.231"/>
<path style="fill:#E76F00;" d="M188.495,4.399c0,0,38.55,38.563-36.563,97.862c-60.233,47.568-13.735,74.69-0.025,105.678
c-35.159-31.722-60.961-59.647-43.651-85.637C133.663,84.151,204.049,65.654,188.495,4.399"/>
<path style="fill:#5382A1;" d="M116.339,374.246c66.815,4.277,169.417-2.373,171.847-33.988c0,0-4.671,11.985-55.219,21.503
c-57.028,10.732-127.364,9.479-169.081,2.601C63.887,364.361,72.426,371.43,116.339,374.246"/>
<path style="fill:#E76F00;" d="M105.389,495.048c-6.303,5.467-12.96,8.536-18.934,8.536c-8.527,0-13.134-5.113-13.134-13.314
c0-8.871,4.936-15.357,24.739-15.357h7.328V495.048 M122.781,514.671v-60.742c0-15.517-8.85-25.756-30.188-25.756
c-12.457,0-23.369,3.076-32.238,6.999l2.56,10.752c6.983-2.563,16.022-4.949,24.894-4.949c12.292,0,17.58,4.949,17.58,15.181v7.677
h-6.135c-29.865,0-43.337,11.593-43.337,28.994c0,15.017,8.878,23.553,25.594,23.553c10.745,0,18.766-4.436,26.264-10.928
l1.361,9.22H122.781z"/>
<path style="fill:#E76F00;" d="M180.825,514.671h-21.692l-26.106-84.96h18.943l16.199,52.2l3.601,15.699
c8.195-22.698,13.991-45.726,16.89-67.899h18.427C202.15,457.688,193.266,488.396,180.825,514.671"/>
<path style="fill:#E76F00;" d="M264.038,495.048c-6.315,5.467-12.984,8.536-18.958,8.536c-8.512,0-13.131-5.113-13.131-13.314
c0-8.871,4.948-15.357,24.749-15.357h7.34V495.048 M281.428,514.671v-60.742c0-15.517-8.872-25.756-30.185-25.756
c-12.466,0-23.382,3.076-32.247,6.999l2.556,10.752c6.986-2.563,16.042-4.949,24.907-4.949c12.283,0,17.579,4.949,17.579,15.181
v7.677h-6.145c-29.874,0-43.34,11.593-43.34,28.994c0,15.017,8.871,23.553,25.584,23.553c10.751,0,18.769-4.436,26.28-10.928
l1.366,9.22H281.428z"/>
<path style="fill:#E76F00;" d="M36.847,529.099c-4.958,7.239-12.966,12.966-21.733,16.206l-8.587-10.105
c6.673-3.424,12.396-8.954,15.055-14.105c2.3-4.581,3.252-10.485,3.252-24.604v-96.995h18.478v95.666
C43.311,514.038,41.802,521.663,36.847,529.099"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M135.605 84.5709C143.897 94.1611 133.427 102.791 133.427 102.791C133.427 102.791 154.481 91.8725 144.812 78.1998C135.781 65.4491 128.856 59.1138 166.347 37.2705C166.347 37.2705 107.498 52.0357 135.605 84.5709Z" fill="#E76F00"/>
<path d="M144.813 2C144.813 2 162.675 19.9493 127.872 47.5503C99.9643 69.6911 121.508 82.3151 127.861 96.7386C111.57 81.9735 99.6154 68.9756 107.636 56.8785C119.408 39.1209 152.02 30.5114 144.813 2Z" fill="#E76F00"/>
<path d="M105.052 135.55C105.052 135.55 98.4834 139.387 109.728 140.686C123.35 142.247 130.312 142.023 145.323 139.169C145.323 139.169 149.27 141.655 154.782 143.808C121.13 158.297 78.6207 142.969 105.052 135.55Z" fill="#5382A1"/>
<path d="M100.939 116.644C100.939 116.644 93.5716 122.122 104.824 123.292C119.376 124.8 130.867 124.923 150.752 121.077C150.752 121.077 153.502 123.878 157.827 125.409C117.14 137.361 71.8218 126.352 100.939 116.644Z" fill="#5382A1"/>
<path d="M180.114 149.535C180.114 149.535 184.975 153.559 174.76 156.672C155.336 162.583 93.9138 164.368 76.8511 156.907C70.7175 154.227 82.2197 150.507 85.8379 149.726C89.6113 148.904 91.7676 149.057 91.7676 149.057C84.9464 144.23 47.6782 158.536 72.8372 162.633C141.449 173.811 197.911 157.599 180.114 149.535Z" fill="#5382A1"/>
<path d="M108.211 97.0535C108.211 97.0535 76.9677 104.508 97.1468 107.215C105.667 108.361 122.652 108.102 138.473 106.77C151.403 105.675 164.386 103.345 164.386 103.345C164.386 103.345 159.827 105.306 156.528 107.569C124.801 115.951 63.5111 112.052 81.1558 103.478C96.0779 96.2315 108.211 97.0535 108.211 97.0535Z" fill="#5382A1"/>
<path d="M164.258 128.525C196.509 111.689 181.597 95.5102 171.189 97.6899C168.638 98.2233 167.5 98.6855 167.5 98.6855C167.5 98.6855 168.448 97.1952 170.256 96.55C190.847 89.2778 206.683 117.999 163.609 129.374C163.609 129.374 164.108 128.926 164.258 128.525Z" fill="#5382A1"/>
<path d="M111.379 174.147C142.337 176.138 189.876 173.042 191.002 158.327C191.002 158.327 188.838 163.906 165.417 168.336C138.994 173.331 106.405 172.748 87.0762 169.546C87.0762 169.546 91.033 172.836 111.379 174.147Z" fill="#5382A1"/>
<path d="M189.575 200.537H188.631V200.007H191.173V200.537H190.235V203.185H189.575V200.537ZM194.645 200.676H194.63L193.695 203.185H193.267L192.337 200.676H192.325V203.185H191.704V200.007H192.619L193.481 202.258L194.34 200.007H195.251V203.185H194.644L194.645 200.676Z" fill="#E76F00"/>
<path d="M106.307 230.374C103.386 232.919 100.302 234.347 97.534 234.347C93.5832 234.347 91.4486 231.968 91.4486 228.15C91.4486 224.021 93.7356 221.002 102.911 221.002H106.306L106.307 230.374ZM114.365 239.508V211.235C114.365 204.013 110.265 199.247 100.378 199.247C94.6062 199.247 89.5503 200.679 85.441 202.505L86.6272 207.509C89.8626 206.316 94.0507 205.206 98.1614 205.206C103.857 205.206 106.307 207.509 106.307 212.272V215.845H103.464C89.6268 215.845 83.3848 221.241 83.3848 229.341C83.3848 236.33 87.4982 240.303 95.2433 240.303C100.222 240.303 103.938 238.239 107.412 235.217L108.043 239.508L114.365 239.508Z" fill="#E76F00"/>
<path d="M141.26 239.508H131.209L119.113 199.963H127.89L135.396 224.26L137.064 231.567C140.861 221.002 143.547 210.283 144.89 199.963H153.428C151.14 212.985 147.024 227.278 141.26 239.508Z" fill="#E76F00"/>
<path d="M179.815 230.374C176.889 232.919 173.799 234.347 171.031 234.347C167.087 234.347 164.947 231.968 164.947 228.15C164.947 224.021 167.239 221.002 176.414 221.002H179.815V230.374ZM187.872 239.508V211.235C187.872 204.013 183.761 199.247 173.886 199.247C168.111 199.247 163.053 200.679 158.945 202.505L160.13 207.509C163.366 206.316 167.562 205.206 171.67 205.206C177.361 205.206 179.815 207.509 179.815 212.272V215.845H176.968C163.126 215.845 156.887 221.241 156.887 229.341C156.887 236.33 160.997 240.303 168.741 240.303C173.722 240.303 177.437 238.239 180.917 235.217L181.55 239.508L187.872 239.508Z" fill="#E76F00"/>
<path d="M74.5483 246.224C72.2511 249.593 68.5407 252.259 64.4786 253.767L60.5 249.063C63.5918 247.47 66.2435 244.896 67.4755 242.498C68.5412 240.366 68.9822 237.618 68.9822 231.046V185.899H77.5437V230.428C77.5433 239.213 76.8441 242.763 74.5483 246.224Z" fill="#E76F00"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

+10 -29
View File
@@ -1,31 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 630 630" width="630px" height="630px">
<!--
The MIT License (MIT)
Copyright (c) 2011 Christopher Williams <chris@iterativedesigns.com>,
Manuel Strehl <boldewyn@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<g id="logo">
<rect id="background" x="0" y="0" width="630" height="630" fill="#f7df1e" />
<path id="j" d="m 165.65,526.47375 48.2125,-29.1775 C 223.16375,513.7875 231.625,527.74 251.92,527.74 c 19.45375,0 31.71875,-7.60975 31.71875,-37.21 l 0,-201.3 59.20375,0 0,202.1375 c 0,61.32 -35.94375,89.23125 -88.385,89.23125 -47.36125,0 -74.8525,-24.52875 -88.8075,-54.13" />
<path id="s" d="m 375,520.13 48.20625,-27.91125 c 12.69,20.72375 29.1825,35.9475 58.36125,35.9475 24.53125,0 40.17375,-12.26475 40.17375,-29.18125 0,-20.29875 -16.06875,-27.48875 -43.135,-39.32625 l -14.7975,-6.3475 c -42.715,-18.18125 -71.05,-41.0175 -71.05,-89.2275 0,-44.40375 33.83125,-78.2375 86.695,-78.2375 37.6375,0 64.7025,13.11125 84.15375,47.36625 l -46.09625,29.60125 c -10.15,-18.1825 -21.1425,-25.37125 -38.0575,-25.37125 -17.33875,0 -28.335,10.995 -28.335,25.37125 0,17.7625 10.99625,24.9525 36.3675,35.94875 l 14.8,6.3425 c 50.325,21.56875 78.66,43.5575 78.66,93.03375 0,53.2875 -41.86625,82.465 -98.11,82.465 -54.97625,0 -90.5,-26.2175 -107.83625,-60.47375" />
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_2062)">
<path d="M256 0H0V256H256V0Z" fill="#F7DF1E"/>
<path d="M67.3118 213.932L86.9029 202.076C90.6824 208.777 94.1207 214.447 102.368 214.447C110.273 214.447 115.256 211.355 115.256 199.327V117.528H139.314V199.667C139.314 224.584 124.708 235.926 103.399 235.926C84.1534 235.926 72.9824 225.959 67.3118 213.93" fill="black"/>
<path d="M152.381 211.354L171.97 200.013C177.126 208.434 183.828 214.62 195.685 214.62C205.653 214.62 212.009 209.636 212.009 202.762C212.009 194.514 205.48 191.592 194.481 186.782L188.468 184.203C171.111 176.815 159.597 167.535 159.597 147.945C159.597 129.902 173.345 116.153 194.826 116.153C210.12 116.153 221.117 121.481 229.021 135.401L210.29 147.429C206.166 140.041 201.699 137.12 194.826 137.12C187.78 137.12 183.312 141.587 183.312 147.429C183.312 154.647 187.78 157.569 198.09 162.037L204.104 164.614C224.553 173.379 236.067 182.314 236.067 202.418C236.067 224.072 219.055 235.928 196.2 235.928C173.861 235.928 159.426 225.274 152.381 211.354Z" fill="black"/>
</g>
<defs>
<clipPath id="clip0_2115_2062">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

+39 -39
View File
@@ -1,40 +1,40 @@
<svg width="92px" height="92px" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.3016 49.404L9.20178 58.2389H19.4013L24.5011 49.404H14.3016Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M4.10199 67.0716L9.20177 58.2388H19.4013L14.3015 67.0716H4.10199Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M29.6009 58.2388H19.4013L14.3015 67.0716H24.5011L29.6009 58.2388Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M39.8004 58.2388H29.6009L24.5011 67.0716H34.7007L39.8004 58.2388Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M34.7007 49.404L29.6009 58.2389H39.8004L44.9002 49.404H34.7007Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M39.8004 40.5712L34.7007 49.404H44.9002L50 40.5712H39.8004Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M44.9002 31.7383L39.8004 40.5712H50L55.0998 31.7383H44.9002Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M50 22.9055L44.9002 31.7383H55.0998L60.1995 22.9055H50Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M4.10199 67.0717L9.20177 75.9045H19.4013L14.3015 67.0717H4.10199Z" fill="#2A56C6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M29.6009 75.9045H19.4013L14.3015 67.0717H24.5011L29.6009 75.9045Z" fill="#2A56C6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M39.8004 75.9045H29.6009L24.5011 67.0717H34.7007L39.8004 75.9045Z" fill="#2A56C6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M44.9002 67.0716L39.8004 58.2388L34.7007 67.0716L39.8004 75.9045L44.9002 67.0716Z" fill="#00796B" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M55.0998 49.404L50 40.5712L44.9002 49.404H55.0998Z" fill="#00796B" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M55.0998 31.7383L50 40.5712L55.0998 49.404L60.1996 40.5712L55.0998 31.7383Z" fill="#00796B" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M29.6009 58.2389L24.5011 49.404L19.4013 58.2389H29.6009Z" fill="#3367D6" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M55.0998 49.404H44.9002L39.8004 58.2389H50L55.0998 49.404Z" fill="#26A69A" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M65.2993 49.404H55.0998L50 58.2389H60.1996L65.2993 49.404Z" fill="#26A69A" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M75.4989 31.7383L70.3991 22.9055L65.2993 31.7383L70.3991 40.5712L75.4989 31.7383Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M80.5987 40.5712L75.4989 31.7383L70.3991 40.5712L75.4989 49.404L80.5987 40.5712Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M85.6985 49.404L80.5987 40.5712L75.4989 49.404L80.5987 58.2388L85.6985 49.404Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M90.7982 58.2388L85.6984 49.404L80.5987 58.2388L85.6984 67.0717L90.7982 58.2388Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M95.898 67.0716L90.7982 58.2388L85.6984 67.0716L90.7982 75.9045L95.898 67.0716Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M90.7982 22.9055L85.6984 31.7383L90.7982 40.5712L95.898 31.7383L90.7982 22.9055Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M80.5987 40.5712L85.6984 31.7383L90.7982 40.5712L85.6984 49.404L80.5987 40.5712Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M75.4989 49.404L70.3991 58.2388L75.4989 67.0717L80.5987 58.2388L75.4989 49.404Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M70.3991 75.9045L65.2993 67.0716L70.3991 58.2388L75.4989 67.0716L70.3991 75.9045Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M60.1995 75.9045L55.0998 67.0717H65.2993L70.3991 75.9045H60.1995Z" fill="#6A1B9A" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M50 58.2388H39.8004L44.9002 67.0716H55.0998L50 58.2388Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M60.1996 58.2388H50L55.0998 67.0716L60.1996 58.2388Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M60.1996 40.5712L65.2993 49.404H75.4989L70.3991 40.5712H60.1996Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M65.2993 31.7383H55.0998L60.1995 40.5712H70.3991L65.2993 31.7383Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M90.7982 75.9045L85.6985 67.0717H75.4989L80.5987 75.9045H90.7982Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M80.5987 58.2388L75.4989 67.0716H85.6985L80.5987 58.2388Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M70.3991 22.9055H60.1995L55.0998 31.7383H65.2993L70.3991 22.9055Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M70.3991 58.2388H60.1995L55.0998 67.0716H65.2993L70.3991 58.2388Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M75.4989 49.404H65.2993L60.1996 58.2389H70.3991L75.4989 49.404Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M90.7982 22.9055H80.5987L75.4989 31.7383H85.6985L90.7982 22.9055Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<path d="M80.5987 40.5712L75.4989 31.7383H85.6985L80.5987 40.5712Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.203991" stroke-linejoin="round"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M36.6121 126.474L23.5565 149.092H49.6673L62.7228 126.474H36.6121Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M10.5011 171.703L23.5565 149.091H49.6673L36.6118 171.703H10.5011Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M75.7783 149.091H49.6673L36.6118 171.703H62.7228L75.7783 149.091Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M101.889 149.091H75.7783L62.7228 171.703H88.8337L101.889 149.091Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M88.8338 126.474L75.7783 149.092H101.889L114.945 126.474H88.8338Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M101.889 103.862L88.8337 126.474H114.944L128 103.862H101.889Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M114.945 81.25L101.889 103.862H128L141.056 81.25H114.945Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M128 58.6381L114.945 81.25H141.056L154.111 58.6381H128Z" fill="#5E97F6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M10.5011 171.704L23.5565 194.316H49.6673L36.6118 171.704H10.5011Z" fill="#2A56C6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M75.7783 194.316H49.6673L36.6118 171.704H62.7228L75.7783 194.316Z" fill="#2A56C6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M101.889 194.316H75.7783L62.7228 171.704H88.8337L101.889 194.316Z" fill="#2A56C6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M114.944 171.703L101.889 149.091L88.8337 171.703L101.889 194.316L114.944 171.703Z" fill="#00796B" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M141.056 126.474L128 103.862L114.945 126.474H141.056Z" fill="#00796B" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M141.055 81.25L128 103.862L141.055 126.474L154.111 103.862L141.055 81.25Z" fill="#00796B" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M75.7783 149.092L62.7228 126.474L49.6674 149.092H75.7783Z" fill="#3367D6" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M141.056 126.474H114.945L101.889 149.092H128L141.056 126.474Z" fill="#26A69A" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M167.166 126.474H141.055L128 149.092H154.111L167.166 126.474Z" fill="#26A69A" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M193.277 81.25L180.222 58.6381L167.166 81.25L180.222 103.862L193.277 81.25Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M206.333 103.862L193.277 81.25L180.222 103.862L193.277 126.474L206.333 103.862Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M219.388 126.474L206.333 103.862L193.277 126.474L206.333 149.091L219.388 126.474Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M232.443 149.091L219.388 126.474L206.333 149.091L219.388 171.704L232.443 149.091Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M245.499 171.703L232.443 149.091L219.388 171.703L232.443 194.316L245.499 171.703Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M232.443 58.6381L219.388 81.25L232.443 103.862L245.499 81.25L232.443 58.6381Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M206.333 103.862L219.388 81.25L232.443 103.862L219.388 126.474L206.333 103.862Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M193.277 126.474L180.222 149.091L193.277 171.704L206.333 149.091L193.277 126.474Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M180.222 194.316L167.166 171.703L180.222 149.091L193.277 171.703L180.222 194.316Z" fill="#9C27B0" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M154.111 194.316L141.055 171.704H167.166L180.222 194.316H154.111Z" fill="#6A1B9A" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M128 149.091H101.889L114.945 171.703H141.056L128 149.091Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M154.111 149.091H128L141.055 171.703L154.111 149.091Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M154.111 103.862L167.166 126.474H193.277L180.222 103.862H154.111Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M167.166 81.25H141.055L154.111 103.862H180.222L167.166 81.25Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M232.443 194.316L219.388 171.704H193.277L206.333 194.316H232.443Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M206.333 149.091L193.277 171.703H219.388L206.333 149.091Z" fill="#00695C" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M180.222 58.6381H154.111L141.055 81.25H167.166L180.222 58.6381Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M180.222 149.091H154.111L141.055 171.703H167.166L180.222 149.091Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M193.277 126.474H167.166L154.111 149.092H180.222L193.277 126.474Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M232.443 58.6381H206.333L193.277 81.25H219.388L232.443 58.6381Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
<path d="M206.333 103.862L193.277 81.25H219.388L206.333 103.862Z" fill="#EA80FC" stroke="#DCE0DF" stroke-width="0.187672" stroke-linejoin="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

+11 -11
View File
@@ -1,12 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="56" fill="none" viewBox="0 0 48 56">
<defs>
<linearGradient id="a" x1=".254835" x2="48.1428" y1="40.072" y2="15.2" gradientUnits="userSpaceOnUse">
<stop offset=".04" stop-color="#FC801D"/>
<stop offset=".38" stop-color="#FE2857"/>
<stop offset=".99" stop-color="#AF1DF5"/>
</linearGradient>
</defs>
<path fill="#000" d="m24.0068 56 24-14V14l-24 13.9999V56Z"/>
<path fill="#fff" d="m39.0068 42-10 6v-4l10-6v4Z"/>
<path fill="url(#a)" d="M24.0068 0 .006836 14v28L24.0068 56V28l24-14-24-14Z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M128.5 256L238 192V64L128.5 128V256Z" fill="black"/>
<path d="M196.938 192L151.312 219.428V201.142L196.938 173.714V192Z" fill="white"/>
<path d="M128.5 0L19 64V192L128.5 256V128L238 64L128.5 0Z" fill="url(#paint0_linear_2115_2106)"/>
<defs>
<linearGradient id="paint0_linear_2115_2106" x1="20.1315" y1="183.186" x2="238.802" y2="69.8354" gradientUnits="userSpaceOnUse">
<stop offset="0.04" stop-color="#FC801D"/>
<stop offset="0.38" stop-color="#FE2857"/>
<stop offset="0.99" stop-color="#AF1DF5"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 593 B

After

Width:  |  Height:  |  Size: 641 B

+17 -1
View File
@@ -1 +1,17 @@
<svg fill="none" height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1=".850001" x2="62.62" y1="62.72" y2="1.81"><stop offset="0" stop-color="#ff9419"/><stop offset=".43" stop-color="#ff021d"/><stop offset=".99" stop-color="#e600ff"/></linearGradient><clipPath id="b"><path d="m0 0h64v64h-64z"/></clipPath><g clip-path="url(#b)"><path d="m20.34 3.66-16.68 16.68c-2.34 2.34-3.66 5.52-3.66 8.84v29.82c0 2.76 2.24 5 5 5h29.82c3.32 0 6.49-1.32 8.84-3.66l16.68-16.68c2.34-2.34 3.66-5.52 3.66-8.84v-29.82c0-2.76-2.24-5-5-5h-29.82c-3.32 0-6.49 1.32-8.84 3.66z" fill="url(#a)"/><path d="m48 16h-40v40h40z" fill="#000"/><path d="m30 47h-17v4h17z" fill="#fff"/></g></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1874)">
<path d="M81.36 14.64L14.64 81.36C5.28 90.72 0 103.44 0 116.72V236C0 247.04 8.96 256 20 256H139.28C152.56 256 165.24 250.72 174.64 241.36L241.36 174.64C250.72 165.28 256 152.56 256 139.28V20C256 8.96 247.04 0 236 0H116.72C103.44 0 90.76 5.28 81.36 14.64Z" fill="url(#paint0_linear_2115_1874)"/>
<path d="M192 64H32V224H192V64Z" fill="black"/>
<path d="M120 188H52V204H120V188Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_1874" x1="3.4" y1="250.88" x2="250.48" y2="7.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF9419"/>
<stop offset="0.43" stop-color="#FF021D"/>
<stop offset="0.99" stop-color="#E600FF"/>
</linearGradient>
<clipPath id="clip0_2115_1874">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 785 B

After

Width:  |  Height:  |  Size: 901 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

+14 -1
View File
@@ -1 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="2.0" viewBox="0 0 44 51" width="44px" height="51px"><g style="mix-blend-mode:normal"><g style="mix-blend-mode:normal"><use fill="#4E4E4E" transform="translate(.54 21.36)" xlink:href="#path0_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(5.68 21.37)" xlink:href="#path1_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(13.39 21.26)" xlink:href="#path2_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(20.43 21.39)" xlink:href="#path3_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(27.55 19.54)" xlink:href="#path4_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(32.47 21.29)" xlink:href="#path5_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(39.98 21.24)" xlink:href="#path6_fill" style="mix-blend-mode:normal"/></g><g style="mix-blend-mode:normal"><use fill="#767677" transform="translate(33.48 .69)" xlink:href="#path7_fill" style="mix-blend-mode:normal"/><use fill="#F37726" transform="translate(3.21 31.27)" xlink:href="#path8_fill" style="mix-blend-mode:normal"/><use fill="#F37726" transform="translate(3.21 4.88)" xlink:href="#path9_fill" style="mix-blend-mode:normal"/><use fill="#9E9E9E" transform="translate(3.28 43.09)" xlink:href="#path10_fill" style="mix-blend-mode:normal"/><use fill="#616262" transform="translate(1.87 5.43)" xlink:href="#path11_fill" style="mix-blend-mode:normal"/></g></g><defs><path id="path0_fill" d="M1.745 5.475c0 1.558-.125 2.066-.445 2.44a1.94 1.94 0 01-1.3.498l.125.89a3.045 3.045 0 002.03-.738 3.561 3.561 0 00.783-2.671V0H1.745V5.475z"/><path id="path1_fill" d="M5.502 4.763c0 .668 0 1.264.053 1.78H4.496l-.071-1.059A2.466 2.466 0 012.26 6.695C1.23 6.695 0 6.135 0 3.846V.045h1.193v3.56c0 1.238.383 2.066 1.46 2.066A1.665 1.665 0 004.336 3.99V0h1.193v4.727l-.027.036z"/><path id="path2_fill" d="M.053 2.273c0-.828 0-1.505-.053-2.12h1.068l.054 1.114A2.582 2.582 0 013.454.002c1.585 0 2.778 1.327 2.778 3.303 0 2.333-1.433 3.49-2.982 3.49a2.306 2.306 0 01-2.021-1.023v3.56H.053V2.274zM1.23 4.009c.003.161.02.322.053.48a1.834 1.834 0 001.78 1.38c1.256 0 1.995-1.023 1.995-2.51 0-1.3-.695-2.413-1.95-2.413a2.048 2.048 0 00-1.878 1.95v1.113z"/><path id="path3_fill" d="M1.318.018L2.75 3.855c.151.427.312.944.418 1.327.125-.392.259-.89.419-1.354l1.3-3.81h1.255l-1.78 4.63c-.89 2.225-1.434 3.374-2.253 4.068a3.24 3.24 0 01-1.46.766l-.294-.997a3.16 3.16 0 001.042-.58 3.561 3.561 0 001.006-1.317.89.89 0 00.098-.285 1.024 1.024 0 00-.08-.311L0 0h1.3l.018.018z"/><path id="path4_fill" d="M2.19 0v1.87H3.9v.89H2.19v3.508c0 .801.232 1.264.89 1.264.234.004.468-.023.695-.08l.053.89c-.34.118-.7.172-1.06.16a1.656 1.656 0 01-1.29-.498 2.395 2.395 0 01-.463-1.692V2.751H0v-.89h1.033V.276L2.19 0z"/><path id="path5_fill" d="M1.177 3.579A2.092 2.092 0 003.43 5.831a4.345 4.345 0 001.78-.338l.205.89a5.342 5.342 0 01-2.181.401A3.027 3.027 0 01.01 3.508C.01 1.549 1.177 0 3.082 0 5.22 0 5.753 1.87 5.753 3.063c.012.183.012.368 0 .552H1.15l.027-.036zm3.49-.89A1.683 1.683 0 003.011.766a1.968 1.968 0 00-1.825 1.923h3.481z"/><path id="path6_fill" d="M.053 2.192c0-.765 0-1.424-.053-2.03h1.068v1.274h.054A1.968 1.968 0 012.902.01a1.3 1.3 0 01.339 0v1.113a1.78 1.78 0 00-.41 0 1.665 1.665 0 00-1.593 1.513 3.293 3.293 0 00-.054.552v3.464H.01V2.2l.044-.009z"/><path id="path7_fill" d="M6.03 2.836A3.018 3.018 0 112.889.005a2.982 2.982 0 013.143 2.83z"/><path id="path8_fill" d="M18.696 7.122C10.684 7.122 3.641 4.247 0 0a19.934 19.934 0 0037.392 0C33.76 4.247 26.744 7.122 18.696 7.122z"/><path id="path9_fill" d="M18.696 5.897c8.013 0 15.055 2.876 18.696 7.123A19.934 19.934 0 000 13.02c3.641-4.256 10.648-7.123 18.696-7.123z"/><path id="path10_fill" d="M7.596 3.567A3.802 3.802 0 113.634.005a3.766 3.766 0 013.962 3.562z"/><path id="path11_fill" d="M2.25 4.38A2.19 2.19 0 114.379 2.1a2.217 2.217 0 01-2.127 2.28z"/></defs></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M29.2647 134.701C29.2647 142.522 28.6368 145.072 27.0295 146.949C25.2374 148.561 22.911 149.451 20.5 149.449L21.1278 153.916C24.8653 153.968 28.4924 152.65 31.324 150.212C32.8467 148.355 33.9797 146.211 34.6554 143.908C35.3311 141.604 35.5356 139.188 35.2568 136.804V107.219H29.2647V134.701Z" fill="#4E4E4E"/>
<path d="M73.9515 131.177C73.9515 134.531 73.9515 137.522 74.2177 140.112H68.8986L68.542 134.797C67.4284 136.68 65.8355 138.234 63.9254 139.302C62.0152 140.37 59.8561 140.913 57.6678 140.875C52.4944 140.875 46.3164 138.064 46.3164 126.574V107.495H52.3085V125.365C52.3085 131.579 54.2322 135.735 59.6417 135.735C60.7543 135.747 61.8581 135.537 62.8885 135.118C63.9189 134.698 64.8552 134.077 65.6424 133.291C66.4297 132.506 67.0521 131.571 67.4732 130.541C67.8943 129.512 68.1057 128.409 68.095 127.297V107.269H74.0871V130.997L73.9515 131.177Z" fill="#4E4E4E"/>
<path d="M85.3083 118.126C85.3083 113.97 85.3083 110.572 85.042 107.485H90.4063L90.6775 113.077C91.8724 111.058 93.5929 109.401 95.6556 108.283C97.7183 107.165 100.046 106.627 102.391 106.727C110.352 106.727 116.344 113.388 116.344 123.307C116.344 135.017 109.146 140.825 101.366 140.825C99.3748 140.914 97.3943 140.488 95.6161 139.589C93.8378 138.689 92.3219 137.346 91.215 135.69V153.56H85.3083V118.126ZM91.22 126.84C91.2351 127.648 91.3205 128.457 91.4862 129.25C91.9934 131.234 93.1479 132.992 94.7671 134.246C96.3863 135.501 98.3778 136.18 100.427 136.177C106.735 136.177 110.447 131.042 110.447 123.578C110.447 117.052 106.956 111.465 100.653 111.465C98.1579 111.67 95.8236 112.778 94.0872 114.58C92.3507 116.382 91.3313 118.754 91.22 121.254V126.84Z" fill="#4E4E4E"/>
<path d="M127.022 107.459L134.215 126.72C134.973 128.863 135.782 131.458 136.314 133.381C136.942 131.413 137.615 128.913 138.419 126.584L144.948 107.459H151.252L142.311 130.7C137.841 141.869 135.109 147.636 130.995 151.12C128.924 153.012 126.397 154.337 123.662 154.965L122.185 149.961C124.099 149.331 125.875 148.343 127.419 147.049C129.6 145.273 131.331 143.008 132.472 140.438C132.716 139.993 132.883 139.509 132.964 139.008C132.913 138.469 132.778 137.943 132.562 137.447L120.402 107.369H126.932L127.022 107.459Z" fill="#4E4E4E"/>
<path d="M167.164 98.083V107.47H175.752V111.937H167.164V129.546C167.164 133.567 168.329 135.891 171.634 135.891C172.809 135.911 173.984 135.775 175.125 135.489L175.391 139.957C173.683 140.549 171.875 140.82 170.067 140.76C168.87 140.834 167.672 140.65 166.554 140.218C165.435 139.787 164.423 139.119 163.587 138.26C161.765 135.825 160.934 132.79 161.262 129.767V111.892H156.164V107.424H161.352V99.4684L167.164 98.083Z" fill="#4E4E4E"/>
<path d="M186.787 124.832C186.666 126.348 186.875 127.872 187.401 129.299C187.927 130.726 188.757 132.021 189.833 133.096C190.909 134.171 192.206 135 193.634 135.525C195.062 136.05 196.587 136.258 198.103 136.137C201.17 136.205 204.216 135.627 207.044 134.44L208.073 138.907C204.603 140.337 200.871 141.022 197.119 140.92C194.931 141.071 192.736 140.746 190.686 139.97C188.635 139.193 186.777 137.982 185.239 136.419C183.7 134.857 182.518 132.981 181.774 130.92C181.029 128.858 180.74 126.66 180.926 124.476C180.926 114.643 186.787 106.867 196.355 106.867C207.094 106.867 209.771 116.254 209.771 122.242C209.831 123.161 209.831 124.089 209.771 125.013H186.652L186.787 124.832ZM204.316 120.365C204.489 119.17 204.403 117.952 204.064 116.794C203.726 115.635 203.143 114.562 202.355 113.647C201.567 112.733 200.592 111.997 199.495 111.491C198.399 110.985 197.207 110.719 195.999 110.712C193.542 110.891 191.241 111.979 189.545 113.765C187.85 115.55 186.882 117.904 186.832 120.365H204.316Z" fill="#4E4E4E"/>
<path d="M218.863 117.619C218.863 113.779 218.863 110.471 218.597 107.43H223.961V113.825H224.232C224.794 111.851 225.957 110.102 227.559 108.819C229.161 107.537 231.123 106.784 233.173 106.667C233.738 106.592 234.31 106.592 234.875 106.667V112.253C234.191 112.174 233.5 112.174 232.816 112.253C230.787 112.333 228.856 113.147 227.384 114.545C225.912 115.942 224.999 117.827 224.815 119.848C224.647 120.762 224.556 121.689 224.544 122.619V140.007H218.647V117.659L218.868 117.614L218.863 117.619Z" fill="#4E4E4E"/>
<path d="M216.235 17.6992C216.419 20.7017 215.704 23.6909 214.182 26.2859C212.659 28.881 210.399 30.9643 207.687 32.2705C204.976 33.5767 201.937 34.0466 198.957 33.6204C195.977 33.1941 193.192 31.891 190.956 29.877C188.72 27.8631 187.135 25.2295 186.402 22.3119C185.67 19.3942 185.823 16.3247 186.842 13.4942C187.861 10.6638 189.7 8.20073 192.125 6.41882C194.551 4.63691 197.452 3.61686 200.459 3.48865C202.43 3.37972 204.403 3.66131 206.265 4.31722C208.127 4.97313 209.841 5.99043 211.308 7.3106C212.775 8.63078 213.967 10.2278 214.814 12.0098C215.661 13.7918 216.148 15.7236 216.245 17.6941L216.235 17.6992Z" fill="#767677"/>
<path d="M127.815 192.713C87.573 192.713 52.1979 178.282 33.9102 156.963C41.0075 176.139 53.8122 192.682 70.601 204.365C87.3899 216.048 107.357 222.311 127.815 222.311C148.273 222.311 168.24 216.048 185.029 204.365C201.818 192.682 214.623 176.139 221.72 156.963C203.477 178.282 168.238 192.713 127.815 192.713Z" fill="#F37726"/>
<path d="M127.815 54.0961C168.062 54.0961 203.432 68.5325 221.72 89.8508C214.623 70.6752 201.818 54.1325 185.029 42.4493C168.24 30.766 148.273 24.5029 127.815 24.5029C107.357 24.5029 87.3899 30.766 70.601 42.4493C53.8122 54.1325 41.0075 70.6752 33.9102 89.8508C52.1979 68.4873 87.3922 54.0961 127.815 54.0961Z" fill="#F37726"/>
<path d="M72.4147 234.2C72.6504 237.982 71.7541 241.748 69.8402 245.019C67.9262 248.291 65.0812 250.918 61.6676 252.568C58.2539 254.217 54.4262 254.814 50.6722 254.281C46.9181 253.749 43.4076 252.112 40.5879 249.578C37.7682 247.045 35.767 243.73 34.8393 240.056C33.9115 236.382 34.0992 232.515 35.3784 228.947C36.6576 225.38 38.9705 222.274 42.0223 220.026C45.074 217.777 48.7266 216.487 52.5146 216.32C54.9962 216.187 57.4797 216.545 59.823 217.371C62.1664 218.198 64.3238 219.479 66.1718 221.139C68.0199 222.799 69.5225 224.808 70.5936 227.049C71.6648 229.29 72.2836 231.72 72.4147 234.2V234.2Z" fill="#9E9E9E"/>
<path d="M38.4813 49.2426C36.3133 49.3011 34.1764 48.7178 32.3392 47.5661C30.5019 46.4143 29.0464 44.7455 28.1555 42.7694C27.2646 40.7933 26.9781 38.5981 27.332 36.4597C27.686 34.3214 28.6645 32.3353 30.1447 30.7511C31.6248 29.167 33.5406 28.0554 35.651 27.5563C37.7615 27.0571 39.9725 27.1925 42.0062 27.9456C44.0398 28.6987 45.8054 30.0357 47.0808 31.7887C48.3563 33.5417 49.0847 35.6324 49.1747 37.7979C49.2604 40.727 48.1866 43.5717 46.1864 45.7144C44.1862 47.8571 41.4211 49.1249 38.4913 49.2426H38.4813Z" fill="#616262"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

+5 -6
View File
@@ -1,7 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 328.5 120 135" width="120px" height="135px" enable-background="new 0 328.5 612 135" xml:space="preserve" style="&#10;">
<polygon fill="#185F85" points="29,434.2 29,439.3 29,446.3 47.4,457.1 51.9,459.7 58.3,463.2 62.7,455.5 64.3,447.3 58.3,441.9 29,425 "/>
<path fill="#0D84BE" d="M116.5,429.8V396c0-11.1,0-22.3,0-33.4l-12.1-0.3l-2.9,3.8l-3.8,7V419L58,442.2v8.9v12.4 C77.4,452,97.1,440.9,116.5,429.8z"/>
<polygon fill="#FFFFFF" points="18.5,385.5 18.5,351.7 0,362.6 0,429.8 18.5,440.3 18.5,406.8 58.3,429.8 58.3,429.8 58.3,408.4 36.9,396 58.3,383.9 58.3,362.6 "/>
<path fill="#1A9BD7" d="M58.3,328.8c19.1,11.1,38.8,22.6,58.3,33.8l-10.8,6l-8,4.5l-39.5-22.9L29,366.7c0-7,0-14.3,0-21.3 L58.3,328.8z"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M72.8584 200.438V210.109V223.383L107.665 243.863L116.178 248.794L128.284 255.431L136.608 240.829L139.634 225.28L128.284 215.04L72.8584 182.992V200.438Z" fill="#185F85"/>
<path d="M238.379 192.095V128C238.379 106.951 238.379 85.7125 238.379 64.6637L215.49 64.0947L210.004 71.3007L202.816 84.5748V171.615L127.717 215.609V232.486V256C164.415 234.193 201.681 213.144 238.379 192.095Z" fill="#0D84BE"/>
<path d="M52.9958 108.089V43.9941L18 64.6638V192.095L52.9958 212.006V148.48L128.284 192.095V151.514L87.8025 128L128.284 105.055V64.6638L52.9958 108.089Z" fill="white"/>
<path d="M128.284 0.569336C164.415 21.6182 201.681 43.4257 238.568 64.6642L218.138 76.042L203.005 84.5753L128.284 41.1501L72.8584 72.439C72.8584 59.1649 72.8584 45.3219 72.8584 32.0479L128.284 0.569336Z" fill="#1A9BD7"/>
</svg>

Before

Width:  |  Height:  |  Size: 849 B

After

Width:  |  Height:  |  Size: 904 B

+23 -1
View File
@@ -1 +1,23 @@
<svg xmlns="http://www.w3.org/2000/svg" width="167.117" height="150.658" viewBox="0 0 44.216 39.861"><path d="m88.61 138.456 5.716-9.865 23.018-.004 5.686 9.965.007 19.932-5.691 9.957-23.012.008-5.782-9.965z" style="display:inline;fill:#4d4d4d;fill-opacity:1;stroke-width:.264583" transform="translate(-82.815 -128.588)"/><path d="M88.552 158.481h10.375l-5.699-10.041 4.634-9.982-9.252-.002-5.795 10.065" style="fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="M102.073 158.481h7.582l6.706-9.773-6.589-10.156h-8.921l-5.373 9.814z" style="fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="m82.815 148.52 5.738 9.964h10.374l-5.636-9.93z" style="fill:#acacac;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="m95.589 148.522 6.484 9.963h7.582l6.601-9.959z" style="fill:#9e9e9e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="m98.157 148.529-1.958.569-1.877-.572 7.667-13.288 1.918 3.316" style="fill:#00b8e3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="m103.9 158.482-1.909 3.332-5.093-5.487-2.58-7.797v-.004h3.838" style="fill:#33c6e9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="M94.322 148.526h-.003v.003l-1.918 3.322-1.925-3.307 1.952-3.386 5.728-9.92h3.834" style="fill:#008aaa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="M115.42 158.481h11.611l-.007-19.93h-11.605z" style="fill:#d4d4d4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="M115.42 148.554v9.93h11.59v-9.93z" style="fill:#919191;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="M101.992 161.817h-3.836l-5.755-9.966 1.918-3.321z" style="fill:#00b8e3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="m117.333 148.526-7.669 13.289c-.705-1.036-1.913-3.331-1.913-3.331l5.753-9.959z" style="fill:#008aaa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="m113.495 161.815-3.831-.001 7.67-13.288 1.917-3.317 1.921 3.34m-3.839-.023h-3.828l-5.755-9.973 1.905-3.314 4.658 5.922z" style="fill:#00b8e3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/><path d="M119.25 145.205v.003l-1.917 3.318-7.677-13.286 3.841.002z" style="fill:#33c6e9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.330729" transform="translate(-82.815 -128.588)"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_2128)">
<path d="M33.5516 69.1918L66.6459 12.0232L199.915 12L232.835 69.7482L232.876 185.256L199.926 242.958L66.6922 243.004L33.2158 185.256L33.5516 69.1918Z" fill="#4D4D4D"/>
<path d="M33.2158 185.238H93.2846L60.2887 127.05L87.1185 69.203L33.5516 69.1914L0 127.519" fill="#EDEDED"/>
<path d="M111.499 185.239H155.397L194.223 128.603L156.075 69.748H104.424L73.3159 126.621L111.499 185.239Z" fill="#E0E0E0"/>
<path d="M0 127.514L33.2216 185.256H93.2846L60.6535 127.711L0 127.514Z" fill="#ACACAC"/>
<path d="M73.9585 127.525L111.499 185.262H155.397L193.615 127.549L73.9585 127.525Z" fill="#9E9E9E"/>
<path d="M88.8263 127.566L77.4899 130.863L66.6226 127.548L111.013 50.543L122.117 69.7595" fill="#00B8E3"/>
<path d="M122.077 185.245L111.024 204.554L81.5372 172.756L66.5996 127.572V127.549H88.8207" fill="#33C6E9"/>
<path d="M66.6229 127.548H66.6055V127.566L55.5008 146.817L44.3555 127.653L55.6571 108.03L88.8208 50.543H111.019" fill="#008AAA"/>
<path d="M188.775 185.239H256L255.96 69.7422H188.77L188.775 185.239Z" fill="#D4D4D4"/>
<path d="M188.775 127.711V185.256H255.878V127.711H188.775Z" fill="#919191"/>
<path d="M111.03 204.571H88.8205L55.5005 146.817L66.6052 127.571L111.03 204.571Z" fill="#00B8E3"/>
<path d="M199.851 127.549L155.449 204.56C151.368 198.556 144.374 185.256 144.374 185.256L177.682 127.543L199.851 127.549Z" fill="#008AAA"/>
<path d="M177.63 204.559L155.449 204.554L199.857 127.548L210.956 108.326L222.078 127.682M199.857 127.548H177.688L144.368 69.7538L155.397 50.5488L182.366 84.8674L199.857 127.548Z" fill="#00B8E3"/>
<path d="M210.95 108.303V108.32L199.851 127.548L155.403 50.5547L177.641 50.5663L210.95 108.303Z" fill="#33C6E9"/>
</g>
<defs>
<clipPath id="clip0_2115_2128">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

+5 -1
View File
@@ -1 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="24" viewBox="0 0 20 24" fill="none"><path d="M3.80081 18.5661C1.32306 24.0572 6.59904 25.434 10.4904 22.2205C11.6339 25.8242 15.926 23.1361 17.4652 20.3445C20.8578 14.1915 19.4877 7.91459 19.1361 6.61988C16.7244 -2.20972 4.67055 -2.21852 2.59581 6.6649C2.11136 8.21946 2.10284 9.98752 1.82846 11.8233C1.69011 12.749 1.59258 13.3398 1.23436 14.3135C1.02841 14.8733 0.745043 15.3704 0.299833 16.2082C-0.391594 17.5095 -0.0998802 20.021 3.46397 18.7186V18.7195L3.80081 18.5661Z" fill="white"></path><path d="M10.9614 10.4413C9.97202 10.4413 9.82422 9.25893 9.82422 8.55407C9.82422 7.91791 9.93824 7.4124 10.1542 7.09197C10.3441 6.81003 10.6158 6.66699 10.9614 6.66699C11.3071 6.66699 11.6036 6.81228 11.8128 7.09892C12.0511 7.42554 12.177 7.92861 12.177 8.55407C12.177 9.73591 11.7226 10.4413 10.9616 10.4413H10.9614Z" fill="black"></path><path d="M15.0318 10.4413C14.0423 10.4413 13.8945 9.25893 13.8945 8.55407C13.8945 7.91791 14.0086 7.4124 14.2245 7.09197C14.4144 6.81003 14.6861 6.66699 15.0318 6.66699C15.3774 6.66699 15.6739 6.81228 15.8831 7.09892C16.1214 7.42554 16.2474 7.92861 16.2474 8.55407C16.2474 9.73591 15.793 10.4413 15.0319 10.4413H15.0318Z" fill="black"></path></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M63.9805 198.038C37.5924 256.61 93.7816 271.296 135.225 237.019C147.403 275.458 193.114 246.785 209.506 217.008C245.637 151.376 231.046 84.4223 227.301 70.6121C201.617 -23.5704 73.2432 -23.6642 51.1472 71.0923C45.9878 87.6742 45.8971 106.534 42.975 126.115C41.5015 135.989 40.4628 142.291 36.6478 152.677C34.4544 158.649 31.4366 163.951 26.6951 172.887C19.3314 186.768 22.4381 213.557 60.3931 199.665L63.9805 198.038Z" fill="white"/>
<path d="M140.24 111.374C129.703 111.374 128.129 98.7616 128.129 91.2431C128.129 84.4574 129.343 79.0653 131.643 75.6474C133.666 72.64 136.559 71.1143 140.24 71.1143C143.922 71.1143 147.079 72.664 149.307 75.7215C151.845 79.2055 153.186 84.5715 153.186 91.2431C153.186 103.849 148.345 111.374 140.24 111.374Z" fill="black"/>
<path d="M183.589 111.374C173.051 111.374 171.477 98.7616 171.477 91.2431C171.477 84.4574 172.692 79.0653 174.991 75.6474C177.013 72.64 179.907 71.1143 183.589 71.1143C187.269 71.1143 190.427 72.664 192.655 75.7215C195.193 79.2055 196.535 84.5715 196.535 91.2431C196.535 103.849 191.695 111.374 183.589 111.374Z" fill="black"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

+13 -18
View File
@@ -1,20 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="500px" height="500px"
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
</style>
<g id="Logotypes">
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="500.0035" y1="579.1058" x2="-9.653803e-02" y2="1079.2058" gradientTransform="matrix(0.9998 0 0 0.9998 9.651873e-02 -578.99)">
<stop offset="3.435144e-03" style="stop-color:#E44857"/>
<stop offset="0.4689" style="stop-color:#C711E1"/>
<stop offset="1" style="stop-color:#7F52FF"/>
</linearGradient>
<polygon class="st0" points="500,500 0,500 0,0 500,0 250,250 "/>
</g>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_2153)">
<path d="M256 256H0V0H256L128 128L256 256Z" fill="url(#paint0_linear_2115_2153)"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_2153" x1="256" y1="-7.62939e-06" x2="7.62939e-06" y2="256" gradientUnits="userSpaceOnUse">
<stop offset="0.00343514" stop-color="#E44857"/>
<stop offset="0.4689" stop-color="#C711E1"/>
<stop offset="1" stop-color="#7F52FF"/>
</linearGradient>
<clipPath id="clip0_2115_2153">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 933 B

After

Width:  |  Height:  |  Size: 620 B

+4 -7
View File
@@ -1,8 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="131" height="30" viewBox="0 0 131 30">
<g fill="none">
<path fill="#258C82" d="M52.187 14.507c-.353-1.27-.97-2.452-1.813-3.467-.41-2.053-1.284-3.99-2.728-5.194-.897-.799-1.971-1.374-3.133-1.679-.129-.027-.261.017-.348.116-.086.098-.113.236-.07.36.363.946.958 2.9.693 4.428-.298-.727-.694-1.41-1.175-2.031-.678-.878-1.059-1.368-.852-2.412.178-.907 1.382-1.661 2.861-1.919.125-.03.225-.124.262-.247.038-.123.007-.257-.08-.351C44.962 1.353 43.222 0 41.172 0c-2.865 0-4.403 1.472-4.838 3.942-.362 2.1.2 3.598.613 4.693.069.175.127.334.178.476-.334-.229-.726-.468-1.128-.708-2.956-1.658-6.294-2.515-9.684-2.484-3.388-.03-6.725.826-9.68 2.484-.417.24-.794.48-1.128.708.051-.142.11-.301.178-.476.414-1.088.983-2.593.613-4.693C15.857 1.472 14.323 0 11.458 0 9.42 0 7.664 1.353 6.838 2.125c-.088.095-.118.228-.081.351.037.123.137.218.262.248 1.48.257 2.684 1.012 2.861 1.918.207 1.045-.174 1.534-.852 2.412-.483.62-.878 1.304-1.175 2.031-.265-1.534.34-3.482.693-4.428.044-.125.017-.263-.07-.362-.088-.098-.222-.142-.351-.113-1.16.306-2.233.881-3.13 1.679C3.545 7.08 2.677 9 2.268 11.055 1.425 12.069.807 13.25.454 14.522c-.689 2.927-.907 6.086 1.665 9.107 1.646 1.936 4.287 2.941 7.55 2.941.676.114 1.335.31 1.963.584 2.506.925 6.706 2.47 14.692 2.47s12.19-1.545 14.696-2.47c.628-.274 1.287-.47 1.962-.584 3.264 0 5.901-1.005 7.551-2.941 2.56-3.021 2.343-6.18 1.654-9.122z" transform="translate(.01)"/>
<path fill="#2CE5B5" d="M42.971 24.793c-2.223 0-5.552 3.054-16.658 3.054-11.105 0-14.434-3.054-16.654-3.054-8.882 0-7.885-8.382-7.885-8.382s1.647 4.186 5.832 4.186c.507-.002 1.013-.055 1.509-.16.088-.024.15-.104.15-.196 0-.091-.062-.171-.15-.196-6.47-1.933-6.528-9.491-2.684-13.129-1.625 6.913 3.22 9.067 5.078 9.651.08.023.165-.01.208-.082.043-.07.034-.162-.023-.222-1.186-1.237-3.92-4.657-1.259-8.124 3.337-4.33-1.11-5.996-1.11-5.996.688-.23 1.408-.353 2.133-.362 1.284 0 2.735.468 3.086 2.473.657 3.71-2.538 5.009-.239 8.001.028.038.072.06.12.06.047 0 .091-.022.12-.06 0 0 3.989-4.552 11.768-4.552 7.78 0 11.758 4.545 11.758 4.545.028.038.073.06.12.06s.092-.022.12-.06c2.31-2.992-.896-4.29-.24-8.001.363-2.006 1.814-2.473 3.087-2.473.725.009 1.445.131 2.132.362 0 0-4.442 1.665-1.113 5.995 2.662 3.46-.065 6.891-1.266 8.124-.057.06-.066.152-.023.223.043.071.128.105.208.082 1.86-.566 6.706-2.738 5.078-9.65 3.851 3.626 3.783 11.195-2.684 13.128-.088.024-.15.105-.15.196 0 .091.062.172.15.196.496.105 1.002.158 1.509.16 4.178 0 5.82-4.186 5.82-4.186s1.034 8.389-7.848 8.389z" transform="translate(.01)"/>
<path fill="#258C82" d="M18.987 17.409c.028-.573-.262-1.115-.754-1.41-.493-.295-1.107-.295-1.6 0-.492.295-.782.837-.754 1.41 0 .856.696 1.11 1.552 1.11.856 0 1.556-.243 1.556-1.11zM36.751 17.409c.028-.573-.262-1.115-.754-1.41-.493-.295-1.107-.295-1.6 0-.492.295-.782.837-.754 1.41 0 .856.696 1.11 1.556 1.11.86 0 1.552-.243 1.552-1.11zM26.313 23.527c-2.38-.015-4.72-.622-6.807-1.766-.2-.119-.33-.325-.352-.556-.021-.231.069-.459.243-.612.226-.19.544-.224.805-.087 1.378.765 3.656 1.233 6.111 1.233 2.456 0 4.715-.468 6.115-1.233.261-.137.58-.103.805.087.174.153.265.38.243.612-.021.23-.152.437-.352.556-2.088 1.145-4.429 1.752-6.81 1.766zM12.44 25.576c-.91-.364-1.667-1.033-2.139-1.893-.019-.034-.059-.052-.097-.042-.038.009-.065.043-.066.082v.214c0 .325-.155.63-.417.823l-.07.051.487.05 2.303.715zM40.175 25.576c.912-.364 1.67-1.033 2.143-1.893.02-.034.06-.052.097-.042.038.009.066.043.067.082v.214c0 .325.155.63.417.823l.069.051-.486.05-2.307.715zM15.096 11.707c-.381.356-.734.74-1.056 1.15-.024.028-.065.037-.098.02-.034-.015-.053-.052-.047-.089.047-.236.094-.453.13-.61.034-.154.008-.316-.072-.453l-.127-.206 1.27.188zM37.538 11.707c.38.356.734.74 1.056 1.15.023.033.066.044.103.027.036-.017.055-.057.045-.096-.05-.236-.098-.453-.134-.61-.033-.154-.007-.316.073-.453l.127-.206-1.27.188zM64.649 24.695L64.649 10.333 67.84 10.333 67.84 24.695zM80.886 24.695h-3.192v-.798c-.86.746-1.973 1.135-3.111 1.088-1.312.02-2.57-.52-3.46-1.483-.967-1.032-1.48-2.407-1.426-3.82-.05-1.409.462-2.78 1.426-3.811.886-.97 2.146-1.513 3.46-1.494 1.137-.046 2.25.343 3.111 1.088v-.798h3.192v10.028zm-3.92-3.14c.972-1.05.972-2.672 0-3.722-.45-.472-1.076-.735-1.727-.725-.655-.02-1.287.245-1.734.725-.461.51-.705 1.18-.678 1.868-.03.69.214 1.364.678 1.875.447.48 1.079.744 1.734.725.654.002 1.28-.269 1.726-.747zM90.421 24.695L87.157 21.068 86.58 21.068 86.58 24.695 83.407 24.695 83.407 10.333 86.598 10.333 86.598 18.094 87.033 18.094 90.203 14.681 94.055 14.681 89.666 19.451 94.512 24.695zM104.96 20.506h-7.336c.101.543.373 1.04.776 1.418.376.342.87.528 1.378.519.873.062 1.703-.39 2.125-1.157l2.833.576c-.37.97-1.047 1.792-1.926 2.343-.92.542-1.972.815-3.04.787-1.398.032-2.75-.503-3.75-1.483-1.028-.999-1.587-2.386-1.537-3.819-.048-1.43.51-2.815 1.538-3.812 1.001-.988 2.361-1.528 3.768-1.494 1.363-.035 2.681.49 3.648 1.45 1.008 1.025 1.556 2.416 1.516 3.852l.008.82zm-6.459-3.097c-.399.279-.688.688-.82 1.157h4.128c-.112-.467-.379-.881-.758-1.175-.362-.269-.804-.41-1.255-.4-.465 0-.918.146-1.295.418z" transform="translate(.01)"/>
<path fill="#2CE5B5" d="M110.111 17.046L116.371 17.046 116.371 19.918 110.111 19.918 110.111 24.706 106.818 24.706 106.818 11.33 117.136 11.33 117.136 14.232 110.111 14.232zM127.78 12.06c.972.663 1.64 1.686 1.858 2.843l-3.232.656c-.09-.552-.39-1.049-.838-1.385-.431-.324-.958-.496-1.498-.49-.463-.02-.92.118-1.294.392-.314.22-.5.58-.497.964 0 .588.362.958 1.088 1.117l2.774.62c2.435.545 3.654 1.843 3.656 3.896.053 1.263-.542 2.466-1.578 3.191-1.153.79-2.53 1.188-3.927 1.136-1.397.045-2.775-.325-3.96-1.063-1.05-.655-1.743-1.752-1.883-2.981l3.402-.668c.319 1.313 1.195 1.971 2.63 1.973.509.033 1.016-.094 1.45-.362.335-.221.534-.597.53-.998.014-.278-.083-.55-.269-.758-.275-.23-.612-.377-.968-.42l-2.793-.599c-2.394-.544-3.59-1.834-3.59-3.87-.044-1.198.497-2.344 1.45-3.072.967-.756 2.243-1.135 3.827-1.135 1.296-.05 2.576.303 3.663 1.012z" transform="translate(.01)"/>
</g>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M253.789 126.997C252.072 120.784 249.073 114.998 244.972 110.031C242.978 99.982 238.728 90.5033 231.706 84.6105C227.344 80.701 222.121 77.8865 216.47 76.3934C215.843 76.2615 215.201 76.478 214.778 76.9608C214.359 77.441 214.228 78.1154 214.437 78.7226C216.202 83.3538 219.096 92.9171 217.807 100.395C216.358 96.8365 214.432 93.4945 212.093 90.4535C208.796 86.1583 206.943 83.7594 207.95 78.6505C208.816 74.2109 214.67 70.5205 221.863 69.2588C222.471 69.112 222.957 68.6516 223.137 68.0494C223.322 67.4472 223.171 66.7927 222.748 66.3323C218.653 62.6219 210.192 56 200.222 56C186.29 56 178.811 63.2042 176.695 75.2935C174.935 85.571 177.668 92.9022 179.676 98.26C180.012 99.116 180.294 99.8949 180.542 100.589C178.918 99.4694 177.011 98.2998 175.056 97.1252C160.681 89.0102 144.448 84.817 127.962 84.9688C111.486 84.822 95.2584 89.0102 80.8879 97.1252C78.86 98.2998 77.0268 99.4744 75.4025 100.589C75.6506 99.8949 75.9375 99.116 76.2682 98.26C78.2815 92.9345 81.0484 85.571 79.2492 75.2935C77.1143 63.2042 69.6543 56 55.7218 56C45.8108 56 37.2712 62.6219 33.2545 66.3995C32.8265 66.8649 32.6807 67.5169 32.8606 68.1166C33.0405 68.7188 33.5268 69.1842 34.1347 69.331C41.332 70.5902 47.187 74.2831 48.0477 78.7176C49.0546 83.8315 47.2017 86.2255 43.9046 90.5232C41.5557 93.5567 39.6348 96.9037 38.1905 100.462C36.9017 92.9544 39.8439 83.4209 41.5604 78.7923C41.7744 78.1801 41.6433 77.5057 41.22 77.0205C40.7922 76.5402 40.1405 76.3262 39.5131 76.468C33.8722 77.9636 28.654 80.7781 24.2919 84.6851C17.2404 90.6501 13.0193 100.047 11.0303 110.105C6.93074 115.067 3.92539 120.846 2.20871 127.072C-1.14193 141.396 -2.20207 156.857 10.3057 171.641C18.3103 181.118 31.1537 186.035 47.0217 186.035C50.3091 186.595 53.514 187.553 56.5679 188.894C68.7547 193.421 89.1794 200.983 128.016 200.983C166.852 200.983 187.297 193.421 199.483 188.894C202.537 187.553 205.742 186.595 209.025 186.035C224.898 186.035 237.721 181.118 245.746 171.641C258.196 156.857 257.141 141.396 253.789 126.997Z" fill="#258C82"/>
<path d="M208.968 177.34C198.158 177.34 181.969 192.286 127.96 192.286C73.9553 192.286 57.7663 177.34 46.9701 177.34C3.77658 177.34 8.62503 136.317 8.62503 136.317C8.62503 136.317 16.6345 156.805 36.9864 156.805C39.4518 156.795 41.9127 156.536 44.3248 156.021C44.7526 155.904 45.0542 155.513 45.0542 155.063C45.0542 154.617 44.7526 154.224 44.3248 154.102C12.8608 144.643 12.5787 107.654 31.2723 89.8488C23.3698 123.68 46.9313 134.224 55.9668 137.081C56.3558 137.193 56.7691 137.031 56.9784 136.68C57.1875 136.337 57.1437 135.886 56.8664 135.593C51.099 129.541 37.8034 112.803 50.7439 95.8337C66.972 74.6415 45.3459 66.4891 45.3459 66.4891C48.6917 65.3643 52.193 64.7621 55.7187 64.7173C61.9629 64.7173 69.0193 67.0067 70.7262 76.8214C73.9212 94.9776 58.3837 101.336 69.5638 115.978C69.7002 116.165 69.914 116.272 70.1474 116.272C70.3761 116.272 70.5901 116.165 70.7312 115.978C70.7312 115.978 90.1297 93.701 127.96 93.701C165.794 93.701 185.139 115.943 185.139 115.943C185.275 116.13 185.494 116.237 185.723 116.237C185.951 116.237 186.17 116.13 186.306 115.943C197.54 101.301 181.949 94.9477 185.139 76.7866C186.905 66.9694 193.961 64.6824 200.151 64.6824C203.677 64.7272 207.179 65.3245 210.52 66.4542C210.52 66.4542 188.918 74.6041 205.107 95.7938C218.052 112.728 204.791 129.521 198.95 135.555C198.673 135.849 198.629 136.297 198.838 136.645C199.047 136.994 199.461 137.16 199.85 137.046C208.895 134.276 232.462 123.648 224.545 89.8189C243.272 107.565 242.941 144.609 211.492 154.067C211.064 154.187 210.763 154.583 210.763 155.028C210.763 155.473 211.064 155.869 211.492 155.986C213.904 156.501 216.365 156.76 218.83 156.77C239.148 156.77 247.135 136.284 247.135 136.284C247.135 136.284 252.161 177.34 208.968 177.34Z" fill="#2CE5B5"/>
<path d="M92.3332 141.199C92.4693 138.397 91.0591 135.745 88.6663 134.299C86.2689 132.855 83.2829 132.855 80.8855 134.299C78.4928 135.745 77.0826 138.397 77.2187 141.199C77.2187 145.39 80.6033 146.632 84.7661 146.632C88.9289 146.632 92.3332 145.445 92.3332 141.199ZM178.72 141.199C178.857 138.397 177.446 135.745 175.054 134.299C172.656 132.855 169.67 132.855 167.273 134.299C164.88 135.745 163.47 138.397 163.606 141.199C163.606 145.39 166.991 146.632 171.173 146.632C175.355 146.632 178.72 145.445 178.72 141.199ZM127.96 171.141C116.386 171.069 105.006 168.098 94.857 162.499C93.8845 161.916 93.2522 160.908 93.1452 159.779C93.0432 158.649 93.4809 157.531 94.327 156.782C95.4259 155.854 96.9725 155.687 98.2417 156.357C104.943 160.102 116.021 162.392 127.96 162.392C139.903 162.392 150.889 160.102 157.698 156.357C158.967 155.687 160.518 155.854 161.612 156.782C162.458 157.531 162.901 158.644 162.794 159.779C162.692 160.903 162.055 161.916 161.082 162.499C150.928 168.103 139.539 171.074 127.96 171.141ZM60.4946 181.17C56.0693 179.388 52.388 176.116 50.0926 171.905C50.0003 171.738 49.8057 171.651 49.6208 171.701C49.4362 171.743 49.3048 171.91 49.3 172.102V173.149C49.3 174.74 48.5463 176.233 47.2721 177.176L46.9317 177.427L49.3 177.671L60.4996 181.17H60.4946ZM195.371 181.17C199.807 179.388 203.493 176.116 205.793 171.905C205.89 171.738 206.085 171.651 206.265 171.701C206.45 171.743 206.586 171.91 206.591 172.102V173.149C206.591 174.74 207.344 176.233 208.619 177.176L208.954 177.427L206.591 177.671L195.371 181.17ZM73.411 113.293C71.5581 115.038 69.8415 116.916 68.2757 118.922C68.159 119.059 67.9594 119.104 67.7989 119.019C67.6337 118.947 67.5413 118.765 67.5705 118.584C67.7989 117.429 68.0276 116.369 68.2025 115.6C68.368 114.846 68.2416 114.052 67.8524 113.383L67.235 112.375L73.411 113.293ZM182.548 113.293C184.396 115.038 186.117 116.916 187.683 118.922C187.795 119.084 188.004 119.139 188.184 119.054C188.359 118.972 188.451 118.775 188.403 118.584C188.16 117.429 187.926 116.369 187.751 115.6C187.591 114.846 187.717 114.052 188.106 113.383L188.724 112.375L182.548 113.293Z" fill="#258C82"/>
</svg>

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

+17 -20
View File
@@ -1,21 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" baseProfile="full" width="340" height="310" xmlns="http://www.w3.org/2000/svg">
<g stroke="white" stroke-width="1.5">
<g transform="rotate(30) skewX(30)">
<rect x="110" y="-72" width="175" height="75" fill="#333333" transform="skewX(-50)"/>
<rect x="110" y="3" width="87.5" height="75" fill="#CDCDCD" transform="skewX(-50)"/>
<rect x="16.5" y="78.9" width="87.5" height="25" fill="#CDCDCD" />
<rect x="16.5" y="104.5" width="175" height="25" fill="#888888" />
<rect x="16.5" y="130" width="175" height="50" fill="#DD4814" />
<rect x="104" y="166" width="89.5" height="25" fill="#CDCDCD" transform="skewY(-40)"/>
<rect x="228.3" y="29.5" width="87.5" height="75" fill="#888888" transform="skewX(-50)"/>
<rect x="191.8" y="266" width="89.5" height="25" fill="#888888" transform="skewY(-40)"/>
<rect x="192" y="291" width="179.5" height="50" fill="#DD4814" transform="skewY(-40)"/>
<rect x="282.3" y="240" width="89.1" height="50" fill="#333333" transform="skewY(-40)"/>
<rect x="194" y="3.7" width="87.5" height="25" fill="#333333" />
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_2163)">
<path d="M128.417 178.162L0 104.482L68.2478 66.1796L199.311 137.909L128.417 178.162Z" fill="#888888" stroke="white" stroke-miterlimit="10"/>
<path d="M61.8398 140.556L0.277466 104.064L75.9072 61.3047L140.812 95.8464L61.8398 140.556Z" fill="#DCDCDC" stroke="white" stroke-miterlimit="10"/>
<path d="M256 169.666L128.418 243.207V200.169L256 126.628V169.666ZM0.418945 169.666L127.861 243.207V200.169L0.418945 126.628V169.666Z" fill="#DD4814" stroke="white" stroke-miterlimit="10"/>
<path d="M128.14 178.162L0.418945 104.761V126.349L128.14 199.89V178.162ZM128.418 178.162L192.906 141.113V162.702L128.418 199.89V178.162Z" fill="#888888" stroke="white" stroke-miterlimit="10"/>
<path d="M255.999 105.457V83.8685L193.044 119.525V162.702L255.999 127.046V105.457ZM192.905 119.525L128 81.7793V103.507L192.905 141.252V119.525Z" fill="#333333" stroke="white" stroke-miterlimit="10"/>
<path d="M127.583 81.7797L64.6276 45.9844V67.7122L127.583 103.508V81.7797ZM0.418945 82.6153L64.4883 45.8451V67.573L0.418945 104.343V82.6153Z" fill="#DCDCDC" stroke="white" stroke-miterlimit="10"/>
<path d="M63.2343 118.55L127.443 81.7793V103.507L63.2343 140.277V118.55Z" stroke="white" stroke-miterlimit="10"/>
<path d="M193.322 119.386L64.7657 45.9846L125.075 12L255.999 83.7298L193.322 119.386Z" fill="#333333" stroke="white" stroke-miterlimit="10"/>
<path d="M63.2348 118.828L0.418945 82.6145V104.342L63.2348 140.555V118.828Z" stroke="white" stroke-miterlimit="10"/>
</g>
<line x1="93" y1="57" x2="93" y2="88" />
<line x1="169" y1="131" x2="92" y2="88" />
<line x1="92" y1="88" x2="14" y2="128" />
</g>
</svg>
<defs>
<clipPath id="clip0_2115_2163">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

+31 -1
View File
@@ -1 +1,31 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px"><linearGradient id="Z8bG89TnZW8~BwJjzqmnXa" x1="22.645" x2="26.757" y1="10.881" y2="23.854" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#4adddf"/><stop offset=".699" stop-color="#3f5352"/><stop offset=".863" stop-color="#442729"/></linearGradient><path fill="url(#Z8bG89TnZW8~BwJjzqmnXa)" d="M21,27l-7-6c0,0,1-1.5,2.5-3s2.736-1.852,4.5-3c3.511-2.284,6.5-12,11-12L21,27z"/><linearGradient id="Z8bG89TnZW8~BwJjzqmnXb" x1="1" x2="37.775" y1="27.033" y2="27.033" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#4adddf"/><stop offset=".792" stop-color="#3f5352"/><stop offset="1" stop-color="#442729"/></linearGradient><polygon fill="url(#Z8bG89TnZW8~BwJjzqmnXb)" points="11,33.066 1,26 14,21 21.277,26.465 14,32.066"/><linearGradient id="Z8bG89TnZW8~BwJjzqmnXc" x1="11" x2="47" y1="24" y2="24" gradientUnits="userSpaceOnUse"><stop offset=".206" stop-color="#53140f"/><stop offset=".3" stop-color="#84360f"/><stop offset=".413" stop-color="#b85b10"/><stop offset=".511" stop-color="#df7610"/><stop offset=".59" stop-color="#f68710"/><stop offset=".639" stop-color="#ff8d10"/><stop offset=".729" stop-color="#fd8a10"/><stop offset=".8" stop-color="#f58010"/><stop offset=".865" stop-color="#e86f10"/><stop offset=".925" stop-color="#d65811"/><stop offset=".982" stop-color="#c03a11"/><stop offset="1" stop-color="#b72f11"/></linearGradient><path fill="url(#Z8bG89TnZW8~BwJjzqmnXc)" d="M32,3c5,0,13,27,15,34c0,0-7.017-6.63-11-6s-5.47,6.548-9.725,10.756C23.5,44.5,21,45,21,45 s-0.206-8.124-5-11c-2.5-1.5-5-1-5-1s6.049-2.901,9.474-8.174S28.5,3,32,3z"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M112 144L74.6667 112C74.6667 112 80.0001 104 88.0001 96C96.0001 88 102.592 86.1227 112 80C130.725 67.8187 146.667 16 170.667 16L112 144Z" fill="url(#paint0_linear_2115_2174)"/>
<path d="M58.6666 176.352L5.33325 138.667L74.6666 112L113.477 141.147L74.6666 171.019L58.6666 176.352Z" fill="url(#paint1_linear_2115_2174)"/>
<path d="M170.667 16C197.333 16 240 160 250.667 197.333C250.667 197.333 213.243 161.973 192 165.333C170.757 168.693 162.827 200.256 140.133 222.699C125.333 237.333 112 240 112 240C112 240 110.901 196.672 85.3334 181.333C72.0001 173.333 58.6667 176 58.6667 176C58.6667 176 90.9281 160.528 109.195 132.405C127.461 104.283 152 16 170.667 16Z" fill="url(#paint2_linear_2115_2174)"/>
<defs>
<linearGradient id="paint0_linear_2115_2174" x1="120.773" y1="58.032" x2="142.704" y2="127.221" gradientUnits="userSpaceOnUse">
<stop stop-color="#4ADDDF"/>
<stop offset="0.699" stop-color="#3F5352"/>
<stop offset="0.863" stop-color="#442729"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_2174" x1="5.33325" y1="144.176" x2="201.467" y2="144.176" gradientUnits="userSpaceOnUse">
<stop stop-color="#4ADDDF"/>
<stop offset="0.792" stop-color="#3F5352"/>
<stop offset="1" stop-color="#442729"/>
</linearGradient>
<linearGradient id="paint2_linear_2115_2174" x1="58.6667" y1="128" x2="250.667" y2="128" gradientUnits="userSpaceOnUse">
<stop offset="0.206" stop-color="#53140F"/>
<stop offset="0.3" stop-color="#84360F"/>
<stop offset="0.413" stop-color="#B85B10"/>
<stop offset="0.511" stop-color="#DF7610"/>
<stop offset="0.59" stop-color="#F68710"/>
<stop offset="0.639" stop-color="#FF8D10"/>
<stop offset="0.729" stop-color="#FD8A10"/>
<stop offset="0.8" stop-color="#F58010"/>
<stop offset="0.865" stop-color="#E86F10"/>
<stop offset="0.925" stop-color="#D65811"/>
<stop offset="0.982" stop-color="#C03A11"/>
<stop offset="1" stop-color="#B72F11"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

+5 -14
View File
@@ -1,19 +1,10 @@
<svg width="24" height="24" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_197_2)">
<path d="M9 2H3C2.44772 2 2 2.44772 2 3V9C2 9.55228 2.44772 10 3 10H9C9.55228 10 10 9.55228 10 9V3C10 2.44772 9.55228 2 9 2Z" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 4.5H4.5V7.5H7.5V4.5Z" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.5 0.5V2" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 0.5V2" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.5 10V11.5" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 10V11.5" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 4.5H11.5" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 7H11.5" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M0.5 4.5H2" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M0.5 7H2" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_2178)">
<path d="M202.667 64C202.667 58.1091 197.891 53.3333 192 53.3333H64C58.1091 53.3333 53.3333 58.1091 53.3333 64V192C53.3333 197.891 58.1091 202.667 64 202.667H192C197.891 202.667 202.667 197.891 202.667 192V64ZM160 85.3333C165.891 85.3333 170.667 90.109 170.667 96V160C170.667 165.891 165.891 170.667 160 170.667H96C90.109 170.667 85.3333 165.891 85.3333 160V96C85.3333 90.109 90.109 85.3333 96 85.3333H160ZM106.667 149.333H149.333V106.667H106.667V149.333ZM224 85.3333H245.333C251.224 85.3333 256 90.109 256 96C256 101.891 251.224 106.667 245.333 106.667H224V138.667H245.333C251.224 138.667 256 143.442 256 149.333C256 155.224 251.224 160 245.333 160H224V192C224 209.673 209.673 224 192 224H170.667V245.333C170.667 251.224 165.891 256 160 256C154.109 256 149.333 251.224 149.333 245.333V224H106.667V245.333C106.667 251.224 101.891 256 96 256C90.109 256 85.3333 251.224 85.3333 245.333V224H64C46.327 224 32 209.673 32 192V160H10.6667C4.77563 160 0 155.224 0 149.333C0 143.442 4.77563 138.667 10.6667 138.667H32V106.667H10.6667C4.77563 106.667 0 101.891 0 96C0 90.109 4.77563 85.3333 10.6667 85.3333H32V64C32 46.327 46.327 32 64 32H85.3333V10.6667C85.3333 4.77563 90.109 0 96 0C101.891 0 106.667 4.77563 106.667 10.6667V32H149.333V10.6667C149.333 4.77563 154.109 0 160 0C165.891 0 170.667 4.77563 170.667 10.6667V32H192C209.673 32 224 46.327 224 64V85.3333Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_197_2">
<rect width="12" height="12" fill="#fff"/>
<clipPath id="clip0_2115_2178">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

+46 -48
View File
@@ -1,48 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19 13.9032C19 13.4044 19.4044 13 19.9032 13H31.0968C31.5956 13 32 13.4044 32 13.9032V20.5C32 24.0899 29.0899 27 25.5 27C21.9101 27 19 24.0899 19 20.5V13.9032Z" fill="url(#paint0_linear_87_7777)"/>
<path d="M9 12.2258C9 11.5488 9.54881 11 10.2258 11H23.7742C24.4512 11 25 11.5488 25 12.2258V22C25 26.4183 21.4183 30 17 30C12.5817 30 9 26.4183 9 22V12.2258Z" fill="url(#paint1_linear_87_7777)"/>
<circle cx="27" cy="8" r="3" fill="#34439E"/>
<circle cx="27" cy="8" r="3" fill="url(#paint2_linear_87_7777)"/>
<circle cx="18" cy="6" r="4" fill="url(#paint3_linear_87_7777)"/>
<mask id="mask0_87_7777" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="9" y="0" width="16" height="30">
<path d="M17 10C19.7615 10 22 7.76147 22 5C22 2.23853 19.7615 0 17 0C14.2385 0 12 2.23853 12 5C12 7.76147 14.2385 10 17 10Z" fill="url(#paint4_linear_87_7777)"/>
<path d="M10.2258 11C9.54883 11 9 11.5488 9 12.2258V22C9 26.4183 12.5817 30 17 30C21.4183 30 25 26.4183 25 22V12.2258C25 11.5488 24.4512 11 23.7742 11H10.2258Z" fill="url(#paint5_linear_87_7777)"/>
</mask>
<g mask="url(#mask0_87_7777)">
<path d="M7 12C7 10.3431 8.34315 9 10 9H17C18.6569 9 20 10.3431 20 12V24C20 25.6569 18.6569 27 17 27H7V12Z" fill="#000000" fill-opacity="0.3"/>
</g>
<rect y="7" width="18" height="18" rx="2" fill="url(#paint6_linear_87_7777)"/>
<path d="M13 11H5V12.8347H7.99494V21H10.0051V12.8347H13V11Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_87_7777" x1="19" y1="13.7368" x2="32.1591" y2="22.3355" gradientUnits="userSpaceOnUse">
<stop stop-color="#364088"/>
<stop offset="1" stop-color="#6E7EE1"/>
</linearGradient>
<linearGradient id="paint1_linear_87_7777" x1="9" y1="19.4038" x2="25" y2="19.4038" gradientUnits="userSpaceOnUse">
<stop stop-color="#515FC4"/>
<stop offset="1" stop-color="#7084EA"/>
</linearGradient>
<linearGradient id="paint2_linear_87_7777" x1="24" y1="5.31579" x2="29.7963" y2="9.39469" gradientUnits="userSpaceOnUse">
<stop stop-color="#364088"/>
<stop offset="1" stop-color="#6E7EE1"/>
</linearGradient>
<linearGradient id="paint3_linear_87_7777" x1="15.1429" y1="3.14286" x2="20.2857" y2="9.14286" gradientUnits="userSpaceOnUse">
<stop stop-color="#4858AE"/>
<stop offset="1" stop-color="#4E60CE"/>
</linearGradient>
<linearGradient id="paint4_linear_87_7777" x1="13.4286" y1="1.42857" x2="19.8571" y2="8.92857" gradientUnits="userSpaceOnUse">
<stop stop-color="#4858AE"/>
<stop offset="1" stop-color="#4E60CE"/>
</linearGradient>
<linearGradient id="paint5_linear_87_7777" x1="13.4286" y1="1.42857" x2="19.8571" y2="8.92857" gradientUnits="userSpaceOnUse">
<stop stop-color="#4858AE"/>
<stop offset="1" stop-color="#4E60CE"/>
</linearGradient>
<linearGradient id="paint6_linear_87_7777" x1="-5.21539e-08" y1="16" x2="18" y2="16" gradientUnits="userSpaceOnUse">
<stop stop-color="#2A3887"/>
<stop offset="1" stop-color="#4C56B9"/>
</linearGradient>
</defs>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M152 111.226C152 107.235 155.235 104 159.226 104H248.774C252.765 104 256 107.235 256 111.226V164C256 192.719 232.719 216 204 216C175.281 216 152 192.719 152 164V111.226Z" fill="url(#paint0_linear_2115_2180)"/>
<path d="M72 97.8064C72 92.3904 76.3905 88 81.8064 88H190.194C195.61 88 200 92.3904 200 97.8064V176C200 211.346 171.346 240 136 240C100.654 240 72 211.346 72 176V97.8064Z" fill="url(#paint1_linear_2115_2180)"/>
<path d="M216 88C229.255 88 240 77.2548 240 64C240 50.7452 229.255 40 216 40C202.745 40 192 50.7452 192 64C192 77.2548 202.745 88 216 88Z" fill="#34439E"/>
<path d="M216 88C229.255 88 240 77.2548 240 64C240 50.7452 229.255 40 216 40C202.745 40 192 50.7452 192 64C192 77.2548 202.745 88 216 88Z" fill="url(#paint2_linear_2115_2180)"/>
<path d="M144 80C161.673 80 176 65.6731 176 48C176 30.3269 161.673 16 144 16C126.327 16 112 30.3269 112 48C112 65.6731 126.327 80 144 80Z" fill="url(#paint3_linear_2115_2180)"/>
<mask id="mask0_2115_2180" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="72" y="0" width="128" height="240">
<path d="M136 80C158.092 80 176 62.0918 176 40C176 17.9082 158.092 0 136 0C113.908 0 96 17.9082 96 40C96 62.0918 113.908 80 136 80Z" fill="url(#paint4_linear_2115_2180)"/>
<path d="M81.8064 88C76.3906 88 72 92.3904 72 97.8064V176C72 211.346 100.654 240 136 240C171.346 240 200 211.346 200 176V97.8064C200 92.3904 195.61 88 190.194 88H81.8064Z" fill="url(#paint5_linear_2115_2180)"/>
</mask>
<g mask="url(#mask0_2115_2180)">
<path d="M56 96C56 82.7448 66.7452 72 80 72H136C149.255 72 160 82.7448 160 96V192C160 205.255 149.255 216 136 216H56V96Z" fill="black" fill-opacity="0.3"/>
</g>
<path d="M128 56H16C7.16344 56 0 63.1634 0 72V184C0 192.837 7.16344 200 16 200H128C136.837 200 144 192.837 144 184V72C144 63.1634 136.837 56 128 56Z" fill="url(#paint6_linear_2115_2180)"/>
<path d="M104 88H40V102.678H63.9595V168H80.0408V102.678H104V88Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_2115_2180" x1="152" y1="109.894" x2="257.273" y2="178.684" gradientUnits="userSpaceOnUse">
<stop stop-color="#364088"/>
<stop offset="1" stop-color="#6E7EE1"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_2180" x1="72" y1="155.23" x2="200" y2="155.23" gradientUnits="userSpaceOnUse">
<stop stop-color="#515FC4"/>
<stop offset="1" stop-color="#7084EA"/>
</linearGradient>
<linearGradient id="paint2_linear_2115_2180" x1="192" y1="42.5263" x2="238.37" y2="75.1575" gradientUnits="userSpaceOnUse">
<stop stop-color="#364088"/>
<stop offset="1" stop-color="#6E7EE1"/>
</linearGradient>
<linearGradient id="paint3_linear_2115_2180" x1="121.143" y1="25.1429" x2="162.286" y2="73.1429" gradientUnits="userSpaceOnUse">
<stop stop-color="#4858AE"/>
<stop offset="1" stop-color="#4E60CE"/>
</linearGradient>
<linearGradient id="paint4_linear_2115_2180" x1="107.429" y1="11.4286" x2="158.857" y2="71.4286" gradientUnits="userSpaceOnUse">
<stop stop-color="#4858AE"/>
<stop offset="1" stop-color="#4E60CE"/>
</linearGradient>
<linearGradient id="paint5_linear_2115_2180" x1="107.429" y1="11.4286" x2="158.857" y2="71.4286" gradientUnits="userSpaceOnUse">
<stop stop-color="#4858AE"/>
<stop offset="1" stop-color="#4E60CE"/>
</linearGradient>
<linearGradient id="paint6_linear_2115_2180" x1="-4.17231e-07" y1="128" x2="144" y2="128" gradientUnits="userSpaceOnUse">
<stop stop-color="#2A3887"/>
<stop offset="1" stop-color="#4C56B9"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

+14 -1
View File
@@ -1 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><path fill="#f3f3f3" d="M0 0h23v23H0z"/><path fill="#f35325" d="M1 1h10v10H1z"/><path fill="#81bc06" d="M12 1h10v10H12z"/><path fill="#05a6f0" d="M1 12h10v10H1z"/><path fill="#ffba08" d="M12 12h10v10H12z"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_1882)">
<path d="M0 0H256V256H0V0Z" fill="#F3F3F3"/>
<path d="M11.1304 11.1305H122.435V122.435H11.1304V11.1305Z" fill="#F35325"/>
<path d="M133.565 11.1305H244.87V122.435H133.565V11.1305Z" fill="#81BC06"/>
<path d="M11.1304 133.565H122.435V244.87H11.1304V133.565Z" fill="#05A6F0"/>
<path d="M133.565 133.565H244.87V244.87H133.565V133.565Z" fill="#FFBA08"/>
</g>
<defs>
<clipPath id="clip0_2115_1882">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 272 B

After

Width:  |  Height:  |  Size: 604 B

+10 -10
View File
@@ -1,11 +1,11 @@
<svg width="109" height="40" viewBox="0 0 109 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 31.0316V15.5024H3.54258V17.4699C4.43636 15.8756 6.38278 15.045 8.13589 15.045C10.178 15.045 11.9636 15.9713 12.7943 17.7895C14.0096 15.7474 15.8278 15.045 17.8373 15.045C20.6469 15.045 23.3263 16.8325 23.3263 20.9493V31.0316H19.7531V21.5541C19.7531 19.7359 18.8268 18.3636 16.7522 18.3636C14.8057 18.3636 13.5292 19.8947 13.5292 21.8086V31.0297H9.89282V21.5541C9.89282 19.7684 8.99522 18.3732 6.88995 18.3732C4.91292 18.3732 3.66699 19.8412 3.66699 21.8182V31.0392Z" fill="#333333"/>
<path d="M27.8546 31.0316V7.92917H31.5579V31.0316Z" fill="#333333"/>
<path d="M30.0708 39.4871C30.9033 39.7187 31.6517 39.8699 33.2402 39.8699C36.1933 39.8699 39.6765 38.2048 40.5933 33.5311L44.3789 14.7923H50.0076L50.6947 11.6746H45.0086L45.7741 7.95023C46.3598 5.05837 47.9598 3.59234 50.5282 3.59234C51.1962 3.59234 51.0086 3.64975 51.6038 3.76267L52.4268 0.570327C51.6344 0.333006 50.9244 0.191379 49.378 0.191379C47.7454 0.166831 46.1514 0.688934 44.8497 1.67463C43.4086 2.78851 42.4574 4.42487 42.023 6.53779L40.9569 11.6746H35.9234L35.5119 14.7943H40.3349L36.8593 32.1206C36.4765 34.0861 35.3588 36.4364 32.1512 36.4364C31.4239 36.4364 31.688 36.3809 31.0297 36.2737Z" fill="#0194E2"/>
<path d="M53.3416 30.9053H49.6402L54.7139 7.59616H58.4153Z" fill="#0194E2"/>
<path d="M71.8067 16.4766C68.5762 14.2161 64.1778 14.6606 61.4649 17.5216C58.7519 20.3826 58.5416 24.7984 60.9703 27.9043L63.3952 26.1244C62.1915 24.6312 61.9471 22.5815 62.7658 20.8471C63.5845 19.1127 65.3224 17.9987 67.2402 17.979V19.8737Z" fill="#43C9ED"/>
<path d="M62.6179 29.4717C65.8484 31.7322 70.2468 31.2877 72.9597 28.4267C75.6727 25.5657 75.883 21.1499 73.4543 18.044L71.0294 19.8239C72.2331 21.3171 72.4775 23.3668 71.6588 25.1012C70.8401 26.8356 69.1022 27.9496 67.1844 27.9693V26.0746Z" fill="#0194E2"/>
<path d="M78.0919 15.4928H82.1359L82.9588 26.1053L88.7177 15.4928L92.5569 15.5483L94.0651 26.1053L99.1387 15.4928L102.84 15.5483L95.1617 31.0412H91.4603L89.6765 19.9349L83.7818 31.0412H79.9426Z" fill="#0194E2"/>
<path d="M105.072 15.7684H104.306V15.5024H106.151V15.7741H105.386V18.0172H105.072Z" fill="#0194E2"/>
<path d="M106.614 15.5024H106.997L107.479 16.8421C107.541 17.0143 107.598 17.1904 107.657 17.3665H107.675C107.734 17.1904 107.788 17.0143 107.847 16.8421L108.325 15.5024H108.708V18.0172H108.41V16.6297C108.41 16.4096 108.434 16.1072 108.45 15.8832H108.434L108.243 16.4574L107.768 17.7608H107.56L107.079 16.4593L106.888 15.8852H106.873C106.89 16.1091 106.915 16.4115 106.915 16.6316V18.0191H106.624Z" fill="#0194E2"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 151.983V118.001H21.8973V122.307C23.8897 118.818 28.2287 117 32.1368 117C36.6892 117 40.6698 119.027 42.5216 123.006C45.2308 118.537 49.284 117 53.7637 117C60.027 117 66 120.912 66 129.92V151.983H58.0345V131.244C58.0345 127.265 55.9696 124.262 51.3447 124.262C47.0055 124.262 44.1599 127.613 44.1599 131.801V151.979H36.0535V131.244C36.0535 127.336 34.0525 124.283 29.3594 124.283C24.9521 124.283 22.1746 127.495 22.1746 131.821V152L14 151.983Z" fill="#333333"/>
<path d="M76 152V101H84V152H76Z" fill="#333333"/>
<path d="M81 171.142C82.8619 171.661 84.5357 172 88.0884 172C94.6931 172 102.483 168.265 104.534 157.782L113 115.752H125.589L127.126 108.759H114.409L116.121 100.405C117.431 93.9185 121.01 90.6302 126.754 90.6302C128.248 90.6302 127.828 90.759 129.159 91.0123L131 83.8519C129.228 83.3196 127.639 83.0019 124.181 83.0019C120.53 82.9469 116.964 84.1179 114.053 86.3288C110.83 88.8272 108.703 92.4975 107.731 97.2368L105.347 108.759H94.0896L93.1692 115.756H103.956L96.1826 154.619C95.3266 159.028 92.8267 164.299 85.6529 164.299C84.0262 164.299 84.6169 164.174 83.1446 163.934L81 171.142Z" fill="#0194E2"/>
<path d="M133.014 152H125L135.986 100H144L133.014 152Z" fill="#0194E2"/>
<path d="M174 119.242C166.779 114.147 156.948 115.15 150.883 121.598C144.819 128.046 144.349 137.999 149.777 145L155.198 140.989C152.508 137.623 151.961 133.003 153.791 129.094C155.621 125.184 159.506 122.673 163.793 122.629V126.899L174 119.242Z" fill="#43C9ED"/>
<path d="M154 148.757C160.964 153.852 170.444 152.851 176.291 146.402C182.139 139.954 182.592 130.001 177.358 123L172.131 127.012C174.726 130.378 175.252 134.998 173.488 138.906C171.723 142.816 167.977 145.327 163.843 145.372V141.101L154 148.757Z" fill="#0194E2"/>
<path d="M188 118H196.988L198.817 141.206L211.615 118L220.147 118.121L223.499 141.206L234.774 118L243 118.121L225.936 152H217.71L213.746 127.714L200.646 152H192.113L188 118Z" fill="#0194E2"/>
<path d="M248.661 118.53H247V118H251V118.541H249.341V123H248.661V118.53Z" fill="#0194E2"/>
<path d="M252 118H252.732L253.652 120.662C253.771 121.003 253.88 121.353 253.992 121.703H254.026C254.139 121.353 254.243 121.003 254.355 120.662L255.268 118H256V122.996H255.431V120.24C255.431 119.802 255.476 119.202 255.507 118.757H255.476L255.111 119.898L254.205 122.487H253.807L252.889 119.901L252.524 118.761H252.495C252.528 119.205 252.575 119.806 252.575 120.243V123H252.02L252 118Z" fill="#0194E2"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

+4 -5
View File
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="135" height="62" viewBox="0 0 135 62" fill="none">
<path d="M3.168 48V22.272H9.648L9.888 28.464L9.216 28.176C9.568 26.8 10.096 25.632 10.8 24.672C11.536 23.712 12.416 22.976 13.44 22.464C14.464 21.952 15.584 21.696 16.8 21.696C18.944 21.696 20.672 22.32 21.984 23.568C23.328 24.816 24.192 26.496 24.576 28.608L23.664 28.656C23.952 27.152 24.448 25.888 25.152 24.864C25.888 23.808 26.784 23.024 27.84 22.512C28.896 21.968 30.08 21.696 31.392 21.696C33.184 21.696 34.72 22.064 36 22.8C37.28 23.536 38.272 24.64 38.976 26.112C39.68 27.552 40.032 29.328 40.032 31.44V48H32.832V33.456C32.832 31.44 32.528 29.936 31.92 28.944C31.312 27.92 30.32 27.408 28.944 27.408C28.08 27.408 27.344 27.648 26.736 28.128C26.128 28.608 25.648 29.312 25.296 30.24C24.976 31.136 24.816 32.24 24.816 33.552V48H18.336V33.552C18.336 31.568 18.048 30.048 17.472 28.992C16.896 27.936 15.904 27.408 14.496 27.408C13.632 27.408 12.88 27.648 12.24 28.128C11.632 28.608 11.168 29.312 10.848 30.24C10.528 31.168 10.368 32.272 10.368 33.552V48H3.168ZM54.2254 48.576C51.5694 48.576 49.4894 47.728 47.9854 46.032C46.5134 44.304 45.7774 41.904 45.7774 38.832V22.272H52.9774V37.152C52.9774 39.136 53.2814 40.592 53.8894 41.52C54.4974 42.416 55.4574 42.864 56.7694 42.864C58.2414 42.864 59.3774 42.368 60.1774 41.376C61.0094 40.352 61.4254 38.832 61.4254 36.816V22.272H68.6254V48H62.0494L61.8574 40.608L62.7694 40.8C62.3854 43.36 61.4734 45.296 60.0334 46.608C58.5934 47.92 56.6574 48.576 54.2254 48.576ZM72.8486 48L82.0166 34.944L73.0886 22.272H80.7206L86.2406 30.528L91.5686 22.272H99.3926L90.5126 34.992L99.6326 48H92.0006L86.3366 39.264L80.6246 48H72.8486Z" fill="black"/>
<rect x="109" y="13" width="26" height="35" fill="black"/>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 160.613V111.647H15.288L15.7431 123.431L14.4688 122.883C15.1363 120.265 16.1375 118.042 17.4725 116.214C18.8682 114.387 20.5369 112.987 22.4788 112.012C24.4206 111.038 26.5444 110.55 28.8503 110.55C32.916 110.55 36.1928 111.738 38.6807 114.113C41.2293 116.489 42.8677 119.686 43.5959 123.706L41.8665 123.797C42.4126 120.934 43.3532 118.529 44.6882 116.58C46.0839 114.57 47.7829 113.078 49.7854 112.103C51.7879 111.068 54.0331 110.55 56.5211 110.55C59.9192 110.55 62.8319 111.251 65.2592 112.652C67.6865 114.052 69.5676 116.154 70.9026 118.955C72.2376 121.696 72.9051 125.076 72.9051 129.095V160.613H59.2517V132.932C59.2517 129.095 58.6753 126.233 57.5223 124.345C56.3694 122.396 54.4882 121.422 51.8789 121.422C50.2405 121.422 48.8449 121.878 47.6919 122.792C46.539 123.706 45.6287 125.045 44.9612 126.812C44.3544 128.517 44.051 130.618 44.051 133.115V160.613H31.763V133.115C31.763 129.339 31.2169 126.446 30.1246 124.436C29.0324 122.427 27.1512 121.422 24.4812 121.422C22.8428 121.422 21.4168 121.878 20.2032 122.792C19.0503 123.706 18.1704 125.045 17.5636 126.812C16.9567 128.578 16.6533 130.679 16.6533 133.115V160.613H3ZM99.82 161.709C94.7834 161.709 90.8391 160.095 87.9871 156.867C85.1957 153.579 83.8001 149.011 83.8001 143.164V111.647H97.4534V139.967C97.4534 143.743 98.0299 146.514 99.1828 148.28C100.336 149.985 102.156 150.838 104.644 150.838C107.435 150.838 109.59 149.894 111.107 148.006C112.684 146.057 113.473 143.164 113.473 139.327V111.647H127.127V160.613H114.657L114.292 146.544L116.022 146.91C115.294 151.782 113.564 155.467 110.834 157.964C108.103 160.461 104.432 161.709 99.82 161.709ZM135.135 160.613L152.52 135.764L135.59 111.647H150.063L160.53 127.36L170.634 111.647H185.47L168.631 135.856L185.925 160.613H171.453L160.712 143.986L149.881 160.613H135.135Z" fill="black"/>
<path d="M252.993 94H203.689V160.613H252.993V94Z" fill="black"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

+5 -5
View File
@@ -1,6 +1,6 @@
<svg width="251" height="251" viewBox="0 0 251 251" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 47.0195C39.45 49.6394 71.06 81.3272 73.54 120.815H119.61C117.05 55.8589 64.93 3.64245 0 0.942627V47.0195Z" fill="#0DC09D"/>
<path d="M73.8 131.324C71.18 170.771 39.49 202.379 0 204.859V250.926C64.96 248.366 117.18 196.249 119.88 131.324H73.8Z" fill="#0DC09D"/>
<path d="M176.201 120.545C178.821 81.0972 210.511 49.4894 250.001 47.0095V0.942627C185.041 3.50245 132.821 55.619 130.121 120.545H176.201Z" fill="#0DC09D"/>
<path d="M250.001 204.849C210.551 202.229 178.941 170.542 176.461 131.054H130.391C132.951 196.01 185.071 248.226 250.001 250.926V204.849Z" fill="#0DC09D"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 47.9562C40.2359 50.6283 72.4755 82.9473 75.0049 123.222H121.993C119.382 56.9717 66.2234 3.71503 0 0.961426V47.9562Z" fill="#0DC09D"/>
<path d="M75.2701 133.94C72.5979 174.173 40.2767 206.41 0 208.94V255.924C66.254 253.313 119.514 200.158 122.268 133.94H75.2701Z" fill="#0DC09D"/>
<path d="M179.711 122.946C182.383 82.7127 214.704 50.4753 254.981 47.946V0.961426C188.727 3.57224 135.467 56.727 132.713 122.946H179.711Z" fill="#0DC09D"/>
<path d="M254.981 208.93C214.745 206.257 182.506 173.939 179.976 133.665H132.988C135.599 199.914 188.758 253.171 254.981 255.924V208.93Z" fill="#0DC09D"/>
</svg>

Before

Width:  |  Height:  |  Size: 693 B

After

Width:  |  Height:  |  Size: 710 B

+4 -4
View File
@@ -1,5 +1,5 @@
<svg width="144" height="144" viewBox="0 0 144 144" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M74.1175 91.8918V66.5908C75.7822 64.1363 80.2215 62.2333 83.5509 62.2333C84.7356 62.2333 85.6071 62.315 86.3221 62.4716V52.6433C81.5662 52.6433 76.8954 55.4178 74.1175 58.7472V53.5999H64.0645V91.8918H74.1175Z" fill="#29B473"/>
<path d="M9 34.6697V107.444L71.987 143.833L134.96 107.444V38.4622L119.501 47.3951V98.5078L71.987 125.967L24.4659 98.5078V43.6027L69.0082 17.866V1.54972e-05L9 34.6697Z" fill="#1B1F2A"/>
<path d="M75.1909 0.0114811V17.8672L117.01 42.0584L132.472 33.1288L75.1909 0.0114811Z" fill="#29B473"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M131.764 163.363V118.384C134.724 114.02 142.616 110.637 148.535 110.637C150.641 110.637 152.19 110.782 153.462 111.061V93.5881C145.007 93.5881 136.703 98.5206 131.764 104.44V95.2888H113.892V163.363H131.764Z" fill="#29B473"/>
<path d="M16 61.635V191.012L127.977 255.703L239.929 191.012V68.3772L212.446 84.2579V175.125L127.977 223.941L43.4949 175.125V77.5159L122.681 31.7617V0L16 61.635Z" fill="#1B1F2A"/>
<path d="M133.673 0.0205078V31.764L208.018 74.7706L235.506 58.8957L133.673 0.0205078Z" fill="#29B473"/>
</svg>

Before

Width:  |  Height:  |  Size: 632 B

After

Width:  |  Height:  |  Size: 624 B

+51 -89
View File
@@ -1,89 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="141.5919mm" height="122.80626mm" viewBox="0 0 501.70361 435.14028" id="svg2" version="1.1" inkscape:version="0.92.0 r15299" sodipodi:docname="nix-snowflake.svg">
<defs id="defs4">
<linearGradient inkscape:collect="always" id="linearGradient5562">
<stop style="stop-color:#699ad7;stop-opacity:1" offset="0" id="stop5564"/>
<stop id="stop5566" offset="0.24345198" style="stop-color:#7eb1dd;stop-opacity:1"/>
<stop style="stop-color:#7ebae4;stop-opacity:1" offset="1" id="stop5568"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient5053">
<stop style="stop-color:#415e9a;stop-opacity:1" offset="0" id="stop5055"/>
<stop id="stop5057" offset="0.23168644" style="stop-color:#4a6baf;stop-opacity:1"/>
<stop style="stop-color:#5277c3;stop-opacity:1" offset="1" id="stop5059"/>
</linearGradient>
<linearGradient id="linearGradient5960" inkscape:collect="always">
<stop id="stop5962" offset="0" style="stop-color:#637ddf;stop-opacity:1"/>
<stop style="stop-color:#649afa;stop-opacity:1" offset="0.23168644" id="stop5964"/>
<stop id="stop5966" offset="1" style="stop-color:#719efa;stop-opacity:1"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient5867">
<stop style="stop-color:#7363df;stop-opacity:1" offset="0" id="stop5869"/>
<stop id="stop5871" offset="0.23168644" style="stop-color:#6478fa;stop-opacity:1"/>
<stop style="stop-color:#719efa;stop-opacity:1" offset="1" id="stop5873"/>
</linearGradient>
<linearGradient y2="515.97058" x2="282.26105" y1="338.62445" x1="213.95642" gradientTransform="translate(983.36076,601.38885)" gradientUnits="userSpaceOnUse" id="linearGradient5855" xlink:href="#linearGradient5960" inkscape:collect="always"/>
<linearGradient y2="515.97058" x2="282.26105" y1="338.62445" x1="213.95642" gradientTransform="translate(-197.75174,-337.1451)" gradientUnits="userSpaceOnUse" id="linearGradient5855-8" xlink:href="#linearGradient5867" inkscape:collect="always"/>
<linearGradient y2="247.58188" x2="-702.75317" y1="102.74675" x1="-775.20807" gradientTransform="translate(983.36076,601.38885)" gradientUnits="userSpaceOnUse" id="linearGradient4544" xlink:href="#linearGradient5960" inkscape:collect="always"/>
<clipPath id="clipPath4501" clipPathUnits="userSpaceOnUse">
<circle r="241.06563" cy="686.09473" cx="335.13995" id="circle4503" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#adadad;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
</clipPath>
<clipPath id="clipPath5410" clipPathUnits="userSpaceOnUse">
<circle r="241.13741" cy="340.98975" cx="335.98114" id="circle5412" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
</clipPath>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5053" id="linearGradient5137" gradientUnits="userSpaceOnUse" gradientTransform="translate(864.55062,-2197.497)" x1="-584.19934" y1="782.33563" x2="-496.29703" y2="937.71399"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5053" id="linearGradient5147" gradientUnits="userSpaceOnUse" gradientTransform="translate(864.55062,-2197.497)" x1="-584.19934" y1="782.33563" x2="-496.29703" y2="937.71399"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5562" id="linearGradient5162" gradientUnits="userSpaceOnUse" gradientTransform="translate(70.505061,-1761.3076)" x1="200.59668" y1="351.41116" x2="290.08701" y2="506.18814"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5562" id="linearGradient5172" gradientUnits="userSpaceOnUse" gradientTransform="translate(70.505061,-1761.3076)" x1="200.59668" y1="351.41116" x2="290.08701" y2="506.18814"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5562" id="linearGradient5182" gradientUnits="userSpaceOnUse" gradientTransform="translate(70.505061,-1761.3076)" x1="200.59668" y1="351.41116" x2="290.08701" y2="506.18814"/>
<linearGradient y2="506.18814" x2="290.08701" y1="351.41116" x1="200.59668" gradientTransform="translate(70.505061,-1761.3076)" gradientUnits="userSpaceOnUse" id="linearGradient5201" xlink:href="#linearGradient5562" inkscape:collect="always"/>
<linearGradient y2="937.71399" x2="-496.29703" y1="782.33563" x1="-584.19934" gradientTransform="translate(864.55062,-2197.497)" gradientUnits="userSpaceOnUse" id="linearGradient5205" xlink:href="#linearGradient5053" inkscape:collect="always"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5562" id="linearGradient4328" gradientUnits="userSpaceOnUse" gradientTransform="translate(70.650339,-1055.1511)" x1="200.59668" y1="351.41116" x2="290.08701" y2="506.18814"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5053" id="linearGradient4330" gradientUnits="userSpaceOnUse" gradientTransform="translate(864.69589,-1491.3405)" x1="-584.19934" y1="782.33563" x2="-496.29703" y2="937.71399"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.98318225" inkscape:cx="113.58176" inkscape:cy="-45.193301" inkscape:document-units="px" inkscape:current-layer="layer3" showgrid="false" inkscape:window-width="2560" inkscape:window-height="1577" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:snap-global="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0"/>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:groupmode="layer" id="layer7" inkscape:label="bg" style="display:none" transform="translate(-23.75651,-24.84972)">
<rect transform="translate(-132.5822,958.04022)" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect5389" width="1543.4283" height="483.7439" x="132.5822" y="-957.77832"/>
</g>
<g inkscape:groupmode="layer" id="layer6" inkscape:label="logo-guide" style="display:none" transform="translate(-156.33871,933.1905)">
<rect y="-958.02759" x="132.65129" height="484.30399" width="550.41602" id="rect5379" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5c201e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" inkscape:export-filename="/home/tim/dev/nix/homepage/logo/nix-wiki.png" inkscape:export-xdpi="22.07" inkscape:export-ydpi="22.07"/>
<rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c24a46;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect5372" width="501.94415" height="434.30405" x="156.12303" y="-933.02759" inkscape:export-filename="/home/tim/dev/nix/homepage/logo/nixos-logo-only-hires-print.png" inkscape:export-xdpi="212.2" inkscape:export-ydpi="212.2"/>
<rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d98d8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect5381" width="24.939611" height="24.939611" x="658.02826" y="-958.04022"/>
</g>
<g inkscape:label="print-logo" inkscape:groupmode="layer" id="layer1" style="display:inline" transform="translate(-156.33871,933.1905)" sodipodi:insensitive="true">
<path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 309.40365,-710.2521 122.19683,211.6751 -56.15706,0.5268 -32.6236,-56.8692 -32.85645,56.5653 -27.90237,-0.011 -14.29086,-24.6896 46.81047,-80.4902 -33.22946,-57.8256 z" id="path4861" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccc"/>
<path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7ebae4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 353.50926,-797.4433 -122.21756,211.6631 -28.53477,-48.37 32.93839,-56.6875 -65.41521,-0.1719 -13.9414,-24.1698 14.23637,-24.721 93.11177,0.2939 33.46371,-57.6903 z" id="use4863" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccc"/>
<path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7ebae4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 362.88537,-628.243 244.41439,0.012 -27.62229,48.8968 -65.56199,-0.1817 32.55876,56.7371 -13.96098,24.1585 -28.52722,0.032 -46.3013,-80.7841 -66.69317,-0.1353 z" id="use4865" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccc"/>
<path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7ebae4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 505.14318,-720.9886 -122.19683,-211.6751 56.15706,-0.5268 32.6236,56.8692 32.85645,-56.5653 27.90237,0.011 14.29086,24.6896 -46.81047,80.4902 33.22946,57.8256 z" id="use4867" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccc"/>
<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="path4873" d="m 309.40365,-710.2521 122.19683,211.6751 -56.15706,0.5268 -32.6236,-56.8692 -32.85645,56.5653 -27.90237,-0.011 -14.29086,-24.6896 46.81047,-80.4902 -33.22946,-57.8256 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="use4875" d="m 451.3364,-803.53264 -244.4144,-0.012 27.62229,-48.89685 65.56199,0.18175 -32.55875,-56.73717 13.96097,-24.15851 28.52722,-0.0315 46.3013,80.78414 66.69317,0.13524 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="use4877" d="m 460.87178,-633.8425 122.21757,-211.66304 28.53477,48.37003 -32.93839,56.68751 65.4152,0.1718 13.9414,24.1698 -14.23636,24.7211 -93.11177,-0.294 -33.46371,57.6904 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
<g id="layer2" inkscape:label="guides" style="display:none" transform="translate(72.039038,-1799.4476)">
<path d="M 460.60629,594.72881 209.74183,594.7288 84.309616,377.4738 209.74185,160.21882 l 250.86446,1e-5 125.43222,217.255 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="true" sodipodi:arg2="1.5707963" sodipodi:arg1="1.0471976" sodipodi:r2="217.25499" sodipodi:r1="250.86446" sodipodi:cy="377.47382" sodipodi:cx="335.17407" sodipodi:sides="6" id="path6032" style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.23600003;fill:#4e4d52;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" sodipodi:type="star"/>
<path transform="translate(0,-308.26772)" sodipodi:type="star" style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#4e4d52;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" id="path5875" sodipodi:sides="6" sodipodi:cx="335.17407" sodipodi:cy="685.74158" sodipodi:r1="100.83495" sodipodi:r2="87.32563" sodipodi:arg1="1.0471976" sodipodi:arg2="1.5707963" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 385.59154,773.06721 -100.83495,0 -50.41747,-87.32564 50.41748,-87.32563 100.83495,10e-6 50.41748,87.32563 z"/>
<path transform="translate(0,-308.26772)" sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path5851" d="m 1216.5591,938.53395 123.0545,228.14035 -42.6807,-1.2616 -43.4823,-79.7725 -39.6506,80.3267 -32.6875,-19.7984 53.4737,-100.2848 -37.1157,-73.88955 z" style="fill:url(#linearGradient5855);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.41499999;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c53a3a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect5884" width="48.834862" height="226.22897" x="-34.74221" y="446.17056" transform="rotate(-30)"/>
<path transform="translate(0,-308.26772)" sodipodi:type="star" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.50899999;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="path3428" sodipodi:sides="6" sodipodi:cx="223.93674" sodipodi:cy="878.63831" sodipodi:r1="28.048939" sodipodi:r2="24.291094" sodipodi:arg1="0" sodipodi:arg2="0.52359878" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 251.98568,878.63831 -14.02447,24.29109 h -28.04894 l -14.02447,-24.29109 14.02447,-24.2911 h 28.04894 z"/>
<use x="0" y="0" xlink:href="#rect5884" id="use4252" transform="rotate(60,268.29786,489.4515)" width="100%" height="100%"/>
<rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:0.6507937;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4254" width="5.3947482" height="115.12564" x="545.71014" y="467.07007" transform="rotate(30,575.23539,-154.13386)"/>
</g>
</g>
<g inkscape:groupmode="layer" id="layer3" inkscape:label="gradient-logo" style="display:inline;opacity:1" sodipodi:insensitive="true" transform="translate(-156.33871,933.1905)">
<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="path3336-6" d="m 309.54892,-710.38827 122.19683,211.67512 -56.15706,0.5268 -32.6236,-56.8692 -32.85645,56.5653 -27.90237,-0.011 -14.29086,-24.6896 46.81047,-80.4901 -33.22946,-57.8257 z" style="opacity:1;fill:url(#linearGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<use height="100%" width="100%" transform="rotate(60,407.11155,-715.78724)" id="use3439-6" inkscape:transform-center-y="151.59082" inkscape:transform-center-x="124.43045" xlink:href="#path3336-6" y="0" x="0"/>
<use height="100%" width="100%" transform="rotate(-60,407.31177,-715.70016)" id="use3445-0" inkscape:transform-center-y="75.573958" inkscape:transform-center-x="-168.20651" xlink:href="#path3336-6" y="0" x="0"/>
<use height="100%" width="100%" transform="rotate(180,407.41868,-715.7565)" id="use3449-5" inkscape:transform-center-y="-139.94592" inkscape:transform-center-x="59.669705" xlink:href="#path3336-6" y="0" x="0"/>
<path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4330);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 309.54892,-710.38827 122.19683,211.67512 -56.15706,0.5268 -32.6236,-56.8692 -32.85645,56.5653 -27.90237,-0.011 -14.29086,-24.6896 46.81047,-80.4901 -33.22946,-57.8256 z" id="path4260-0" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccc"/>
<use height="100%" width="100%" transform="rotate(120,407.33916,-716.08356)" id="use4354-5" xlink:href="#path4260-0" y="0" x="0" style="display:inline"/>
<use height="100%" width="100%" transform="rotate(-120,407.28823,-715.86995)" id="use4362-2" xlink:href="#path4260-0" y="0" x="0" style="display:inline"/>
</g>
</svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2115_2254)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M78.3875 131.09L140.74 239.082L112.085 239.351L95.4385 210.338L78.6731 239.196L64.4356 239.19L57.1436 226.594L81.0291 185.53L64.0734 156.028L78.3875 131.09Z" fill="url(#paint0_linear_2115_2254)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M100.893 86.6058L38.5306 194.592L23.9704 169.915L40.7775 140.994L7.3987 140.906L0.284805 128.575L7.54909 115.963L55.0604 116.113L72.1357 86.6806L100.893 86.6058Z" fill="url(#paint1_linear_2115_2254)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M105.678 172.929L230.393 172.935L216.298 197.882L182.845 197.789L199.458 226.735L192.334 239.06L177.778 239.076L154.152 197.862L120.121 197.793L105.678 172.929Z" fill="url(#paint2_linear_2115_2254)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M178.266 125.612L115.913 17.6198L144.568 17.3511L161.215 46.3646L177.98 17.5061L192.218 17.5117L199.51 30.1079L175.624 71.1724L192.58 100.674L178.266 125.612Z" fill="url(#paint3_linear_2115_2254)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M78.3875 131.09L140.74 239.082L112.085 239.351L95.4385 210.338L78.6731 239.196L64.4356 239.19L57.1436 226.594L81.0291 185.53L64.0734 156.028L78.3875 131.09Z" fill="url(#paint4_linear_2115_2254)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M150.719 83.5248L26.0036 83.5187L40.0982 58.5725L73.5519 58.6652L56.9385 29.719L64.0621 17.3937L78.6184 17.3777L102.244 58.5921L136.275 58.6611L150.719 83.5248Z" fill="url(#paint5_linear_2115_2254)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M155.619 170.079L217.982 62.0924L232.542 86.7698L215.735 115.691L249.114 115.778L256.228 128.109L248.964 140.721L201.452 140.571L184.377 170.004L155.619 170.079Z" fill="url(#paint6_linear_2115_2254)"/>
</g>
<defs>
<linearGradient id="paint0_linear_2115_2254" x1="58.8435" y1="134.482" x2="104.496" y2="213.452" gradientUnits="userSpaceOnUse">
<stop stop-color="#699AD7"/>
<stop offset="0.243452" stop-color="#7EB1DD"/>
<stop offset="1" stop-color="#7EBAE4"/>
</linearGradient>
<linearGradient id="paint1_linear_2115_2254" x1="88.1836" y1="71.3789" x2="42.6303" y2="150.407" gradientUnits="userSpaceOnUse">
<stop stop-color="#699AD7"/>
<stop offset="0.243452" stop-color="#7EB1DD"/>
<stop offset="1" stop-color="#7EBAE4"/>
</linearGradient>
<linearGradient id="paint2_linear_2115_2254" x1="98.8436" y1="191.548" x2="190.071" y2="191.491" gradientUnits="userSpaceOnUse">
<stop stop-color="#699AD7"/>
<stop offset="0.243452" stop-color="#7EB1DD"/>
<stop offset="1" stop-color="#7EBAE4"/>
</linearGradient>
<linearGradient id="paint3_linear_2115_2254" x1="197.81" y1="122.22" x2="152.157" y2="43.25" gradientUnits="userSpaceOnUse">
<stop stop-color="#699AD7"/>
<stop offset="0.243452" stop-color="#7EB1DD"/>
<stop offset="1" stop-color="#7EBAE4"/>
</linearGradient>
<linearGradient id="paint4_linear_2115_2254" x1="63.5632" y1="131.796" x2="108.406" y2="211.073" gradientUnits="userSpaceOnUse">
<stop stop-color="#415E9A"/>
<stop offset="0.231686" stop-color="#4A6BAF"/>
<stop offset="1" stop-color="#5277C3"/>
</linearGradient>
<linearGradient id="paint5_linear_2115_2254" x1="157.52" y1="70.3357" x2="66.4315" y2="69.5378" gradientUnits="userSpaceOnUse">
<stop stop-color="#415E9A"/>
<stop offset="0.231686" stop-color="#4A6BAF"/>
<stop offset="1" stop-color="#5277C3"/>
</linearGradient>
<linearGradient id="paint6_linear_2115_2254" x1="163.643" y1="182.562" x2="209.867" y2="104.082" gradientUnits="userSpaceOnUse">
<stop stop-color="#415E9A"/>
<stop offset="0.231686" stop-color="#4A6BAF"/>
<stop offset="1" stop-color="#5277C3"/>
</linearGradient>
<clipPath id="clip0_2115_2254">
<rect width="256" height="256" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

+14 -14
View File
@@ -1,41 +1,41 @@
<svg width="121" height="121" viewBox="0 0 121 121" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M62.8005 6.66987C62.0404 6.23103 61.1782 6 60.3005 6C59.4228 6 58.5606 6.23103 57.8005 6.66987L15.5005 31.0699C14.73 31.5146 14.0922 32.1568 13.6527 32.9302C13.2133 33.7037 12.9881 34.5804 13.0005 35.4699V84.0699C12.9881 84.9594 13.2133 85.8361 13.6527 86.6095C14.0922 87.383 14.73 88.0252 15.5005 88.4699L57.6005 112.77C58.3606 113.209 59.2228 113.44 60.1005 113.44C60.9782 113.44 61.8404 113.209 62.6005 112.77L104.8 88.4699C105.59 88.0381 106.248 87.4015 106.705 86.6272C107.163 85.8528 107.403 84.9693 107.4 84.0699V35.3699C107.403 34.4704 107.163 33.587 106.705 32.8126C106.248 32.0382 105.59 31.4016 104.8 30.9699L62.8005 6.66987Z" fill="url(#paint0_linear_1_2)"/>
<mask id="mask0_1_2" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="13" y="6" width="95" height="108">
<path fill-rule="evenodd" clip-rule="evenodd" d="M62.8005 6.66987C62.0404 6.23103 61.1782 6 60.3005 6C59.4228 6 58.5606 6.23103 57.8005 6.66987L15.5005 31.0699C14.73 31.5146 14.0922 32.1568 13.6527 32.9302C13.2133 33.7037 12.9881 34.5804 13.0005 35.4699V84.0699C12.9881 84.9594 13.2133 85.8361 13.6527 86.6095C14.0922 87.383 14.73 88.0252 15.5005 88.4699L57.6005 112.77C58.3606 113.209 59.2228 113.44 60.1005 113.44C60.9782 113.44 61.8404 113.209 62.6005 112.77L104.8 88.4699C105.59 88.0381 106.248 87.4015 106.705 86.6272C107.163 85.8528 107.403 84.9693 107.4 84.0699V35.3699C107.403 34.4704 107.163 33.587 106.705 32.8126C106.248 32.0382 105.59 31.4016 104.8 30.9699L62.8005 6.66987Z" fill="white"/>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M132.867 14.1116C131.259 13.1831 129.435 12.6943 127.578 12.6943C125.721 12.6943 123.897 13.1831 122.289 14.1116L32.7944 65.7348C31.1643 66.6756 29.8149 68.0343 28.885 69.6706C27.9554 71.3071 27.4789 73.162 27.5052 75.0439V177.867C27.4789 179.749 27.9554 181.604 28.885 183.24C29.8149 184.877 31.1643 186.235 32.7944 187.176L121.865 238.588C123.474 239.517 125.298 240.005 127.155 240.005C129.012 240.005 130.836 239.517 132.444 238.588L221.726 187.176C223.397 186.263 224.789 184.916 225.756 183.277C226.725 181.639 227.233 179.77 227.226 177.867V74.8323C227.233 72.9292 226.725 71.0602 225.756 69.4218C224.789 67.7834 223.397 66.4366 221.726 65.5232L132.867 14.1116Z" fill="url(#paint0_linear_2115_2283)"/>
<mask id="mask0_2115_2283" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="27" y="12" width="201" height="229">
<path fill-rule="evenodd" clip-rule="evenodd" d="M132.867 14.1116C131.259 13.1831 129.435 12.6943 127.578 12.6943C125.721 12.6943 123.897 13.1831 122.289 14.1116L32.7944 65.7348C31.1643 66.6756 29.8149 68.0343 28.885 69.6706C27.9554 71.3071 27.4789 73.162 27.5052 75.0439V177.867C27.4789 179.749 27.9554 181.604 28.885 183.24C29.8149 184.877 31.1643 186.235 32.7944 187.176L121.865 238.588C123.474 239.517 125.298 240.005 127.155 240.005C129.012 240.005 130.836 239.517 132.444 238.588L221.726 187.176C223.397 186.263 224.789 184.916 225.756 183.277C226.725 181.639 227.233 179.77 227.226 177.867V74.8323C227.233 72.9292 226.725 71.0602 225.756 69.4218C224.789 67.7834 223.397 66.4366 221.726 65.5232L132.867 14.1116Z" fill="white"/>
</mask>
<g mask="url(#mask0_1_2)">
<path d="M105 31.0699L62.8005 6.66988C62.3926 6.44337 61.955 6.27507 61.5005 6.16988L14.0005 87.2699C14.4025 87.7396 14.8748 88.1444 15.4005 88.4699L57.8005 112.77C58.9849 113.441 60.3851 113.62 61.7005 113.27L106.2 31.8699C105.84 31.5209 105.437 31.2185 105 30.9699V31.0699Z" fill="url(#paint1_linear_1_2)"/>
<path d="M105 88.4699C105.607 88.127 106.14 87.6679 106.569 87.1188C106.998 86.5697 107.315 85.9414 107.5 85.2699L61.2005 6.06987C59.9674 5.82836 58.6886 6.04149 57.6005 6.66987L15.7005 30.8699L61.0005 113.47C61.6736 113.363 62.3191 113.125 62.9005 112.77L105 88.4699Z" fill="url(#paint2_linear_1_2)"/>
<path d="M105 88.4699L62.9005 112.77C62.3191 113.125 61.6736 113.363 61.0005 113.47L61.8005 114.97L108.7 87.8699V87.1699L107.5 85.1699C107.327 85.8596 107.016 86.5071 106.586 87.0741C106.157 87.641 105.617 88.1157 105 88.4699Z" fill="url(#paint3_linear_1_2)"/>
<path d="M105 88.4699L62.9005 112.77C62.3191 113.125 61.6736 113.363 61.0005 113.47L61.8005 114.97L108.7 87.8699V87.1699L107.5 85.1699C107.327 85.8596 107.016 86.5071 106.586 87.0741C106.157 87.641 105.617 88.1157 105 88.4699Z" fill="url(#paint4_linear_1_2)"/>
<g mask="url(#mask0_2115_2283)">
<path d="M222.149 65.7347L132.867 14.1116C132.004 13.6323 131.078 13.2763 130.117 13.0537L29.6208 184.637C30.4714 185.631 31.4706 186.487 32.5828 187.176L122.289 238.588C124.794 240.007 127.757 240.386 130.54 239.646L224.688 67.4273C223.926 66.6889 223.073 66.0491 222.149 65.5232V65.7347Z" fill="url(#paint1_linear_2115_2283)"/>
<path d="M222.149 187.176C223.433 186.451 224.561 185.479 225.468 184.318C226.376 183.156 227.047 181.827 227.438 180.406L129.482 12.8421C126.873 12.3312 124.168 12.7821 121.865 14.1115L33.2175 65.3116L129.059 240.069C130.483 239.842 131.849 239.339 133.079 238.588L222.149 187.176Z" fill="url(#paint2_linear_2115_2283)"/>
<path d="M222.149 187.176L133.079 238.588C131.849 239.339 130.483 239.843 129.059 240.069L130.751 243.242L229.977 185.907V184.426L227.438 180.194C227.072 181.654 226.414 183.023 225.504 184.223C224.597 185.422 223.454 186.427 222.149 187.176Z" fill="url(#paint3_linear_2115_2283)"/>
<path d="M222.149 187.176L133.079 238.588C131.849 239.339 130.483 239.843 129.059 240.069L130.751 243.242L229.977 185.907V184.426L227.438 180.194C227.072 181.654 226.414 183.023 225.504 184.223C224.597 185.422 223.454 186.427 222.149 187.176Z" fill="url(#paint4_linear_2115_2283)"/>
</g>
<defs>
<linearGradient id="paint0_linear_1_2" x1="77.4005" y1="24.7699" x2="39.3005" y2="102.47" gradientUnits="userSpaceOnUse">
<linearGradient id="paint0_linear_2115_2283" x1="163.756" y1="52.4059" x2="83.1482" y2="216.796" gradientUnits="userSpaceOnUse">
<stop stop-color="#3F873F"/>
<stop offset="0.3" stop-color="#3F8B3D"/>
<stop offset="0.6" stop-color="#3E9637"/>
<stop offset="0.9" stop-color="#3DA92E"/>
<stop offset="1" stop-color="#3DAE2B"/>
</linearGradient>
<linearGradient id="paint1_linear_1_2" x1="53.9005" y1="65.3699" x2="160.7" y2="-13.5301" gradientUnits="userSpaceOnUse">
<linearGradient id="paint1_linear_2115_2283" x1="114.037" y1="138.303" x2="339.993" y2="-28.6256" gradientUnits="userSpaceOnUse">
<stop offset="0.1" stop-color="#3F873F"/>
<stop offset="0.4" stop-color="#529F44"/>
<stop offset="0.7" stop-color="#63B649"/>
<stop offset="0.9" stop-color="#6ABF4B"/>
</linearGradient>
<linearGradient id="paint2_linear_1_2" x1="11.6005" y1="59.7699" x2="109" y2="59.7699" gradientUnits="userSpaceOnUse">
<linearGradient id="paint2_linear_2115_2283" x1="24.5431" y1="126.455" x2="230.612" y2="126.455" gradientUnits="userSpaceOnUse">
<stop offset="0.1" stop-color="#6ABF4B"/>
<stop offset="0.3" stop-color="#63B649"/>
<stop offset="0.6" stop-color="#529F44"/>
<stop offset="0.9" stop-color="#3F873F"/>
</linearGradient>
<linearGradient id="paint3_linear_1_2" x1="11.6005" y1="100.07" x2="109" y2="100.07" gradientUnits="userSpaceOnUse">
<linearGradient id="paint3_linear_2115_2283" x1="24.5431" y1="211.719" x2="230.611" y2="211.719" gradientUnits="userSpaceOnUse">
<stop offset="0.1" stop-color="#6ABF4B"/>
<stop offset="0.3" stop-color="#63B649"/>
<stop offset="0.6" stop-color="#529F44"/>
<stop offset="0.9" stop-color="#3F873F"/>
</linearGradient>
<linearGradient id="paint4_linear_1_2" x1="123.2" y1="22.4699" x2="63.1005" y2="145.07" gradientUnits="userSpaceOnUse">
<linearGradient id="paint4_linear_2115_2283" x1="260.654" y1="47.5398" x2="133.502" y2="306.925" gradientUnits="userSpaceOnUse">
<stop stop-color="#3F873F"/>
<stop offset="0.3" stop-color="#3F8B3D"/>
<stop offset="0.6" stop-color="#3E9637"/>

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

+3 -2
View File
@@ -1,2 +1,3 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="none"><path fill="#06D092" d="M8 0L1 4v8l7 4 7-4V4L8 0zm3.119 8.797L9.254 9.863 7.001 8.65v2.549l-2.118 1.33v-5.33l1.68-1.018 2.332 1.216V4.794l2.23-1.322-.006 5.325z"/></svg>
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M128 0L16 64V192L128 256L240 192V64L128 0ZM177.904 140.752L148.064 157.808L112.016 138.4V179.184L78.128 200.464V115.184L105.008 98.896L142.32 118.352V76.704L178 55.552L177.904 140.752Z" fill="#06D092"/>
</svg>

Before

Width:  |  Height:  |  Size: 390 B

After

Width:  |  Height:  |  Size: 319 B

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