Compare commits
37 Commits
0f64b1f98f
...
ef27acd232
Author | SHA1 | Date | |
---|---|---|---|
|
ef27acd232 | ||
|
93ab09fc0a | ||
|
50b3dbe8e1 | ||
|
4aea69c7b7 | ||
|
3076b8db23 | ||
|
08e619ce17 | ||
|
377707a23b | ||
|
94eacc85bd | ||
|
2904ba565e | ||
|
d2c490a2c1 | ||
|
55845cde01 | ||
|
3c064761b8 | ||
|
174e7ac143 | ||
|
0a8e829186 | ||
|
d4b1bbd17a | ||
|
adf62a7894 | ||
|
d220d7968d | ||
|
336770d847 | ||
|
08a78b655b | ||
|
b970b83a12 | ||
|
a581b73dbd | ||
|
cd32af95a0 | ||
|
fc769a6622 | ||
|
51585f0e79 | ||
|
9230cab619 | ||
|
f4775ba542 | ||
|
dcff397bd5 | ||
|
fbb176f69d | ||
|
1e70dc1492 | ||
|
d23893282b | ||
|
994e04304b | ||
|
1516a419cb | ||
|
5b17a4539f | ||
|
9b22c535fa | ||
|
b7220ad9ab | ||
|
ee7b4ec4e5 | ||
|
ffe77e2f2e |
4
.github/ISSUE_TEMPLATE/request_suggest.yml
vendored
@@ -5,12 +5,12 @@ assignees: walkxcode
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "Thank you for your interest in contributing to our icon repository! To ensure that everything runs smoothly, we've set out some guidelines for contributors.\n## 🌟 Icon Specifications\n\n- Each icon should include both a **PNG** and **SVG** version. If an **SVG** cannot be found, then only a **PNG** version is required.\n\n- Each icon should be in **PNG** format and have a height of exactly **512px**. Width does not matter. ❗️(No upscales! If the correct size cannot be found, a smaller height will be accepted.)\n\n- Icons should be named after their full name, using the [Kebab Case](https://wiki.c2.com/?KebabCase) naming convention. For example, \"Facebook Messenger\" should be named `facebook-messenger.png`.\n\n- Monochrome icons should default to a dark version. Light versions should be named `service-light.png`. If a light version is not available, use [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to change its color.\n"
|
||||
value: "Thank you for your interest in contributing to our icon repository! To ensure smooth collaboration, we've established clear guidelines for contributors.\n## 🌟 Icon Specifications\n\n- Icons should be provided in both `PNG` and `SVG` formats. Formats like `JPEG` or `WEBP` will not be accepted.\n - If an `SVG` version is unavailable, a `PNG` version alone suffices.\n - Conversely, if a `PNG` version is missing, it can be generated using [Ezgif SVG to PNG](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md#-converting-svg-to-png).\n\n- `PNG` files should have a height of exactly `512px` Width can vary, but a 1:1 aspect ratio is preferred.\n - ❗ Exceptions for upscales will be made only if the correct or a downscaled version cannot be obtained.\n - Downsizing can be accomplished using [iLoveIMG Resize](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md#-downscaling-pngs).\n\n- Icons should be named using the [Kebab Case](https://wiki.c2.com/?KebabCase) convention, reflecting their full name. For instance, \"Facebook Messenger\" should be named `facebook-messenger.png`.\n\n- Monochrome icons should default to a dark version. Light versions should be named `name-light.png`. If a light version is absent, utilize [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to adjust its color.\n"
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Contribution Guidelines
|
||||
options:
|
||||
- label: I have read and agree to the [Contribution Guidelines](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md)
|
||||
- label: I have read and agree to the [Contribution Guidelines](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md)
|
||||
required: true
|
||||
- type: textarea
|
||||
id: icon-name
|
||||
|
2
.github/workflows/icons-page-generation.yml
vendored
@@ -28,5 +28,5 @@ jobs:
|
||||
git config --global user.email "noreply@walkx.fyi"
|
||||
git config --global user.name "Dashboard Icons Bot"
|
||||
git add -A
|
||||
git commit -m ":rocket: Generates ICONS" || exit 0
|
||||
git commit -m ":construction_worker: Generates ICONS.md" || exit 0
|
||||
git push
|
||||
|
12
.github/workflows/png-compression.yml
vendored
@@ -2,9 +2,9 @@ name: 🗜️ PNG Compression
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * 0'
|
||||
- cron: "0 0 * * 0"
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
jobs:
|
||||
compress-images:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -15,18 +15,18 @@ jobs:
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y zopfli
|
||||
|
||||
|
||||
- name: Compress PNGs
|
||||
run: |
|
||||
echo "🖼️ Compressing PNGs..."
|
||||
echo "Compressing PNGs..."
|
||||
find png/ -iname "*.png" -print0 | xargs -0 -P 4 -I{} sh -c 'echo "Compressing {}"; zopflipng -y {} {}' || true
|
||||
|
||||
|
||||
- name: Load to GitHub
|
||||
run: |-
|
||||
git diff
|
||||
git config --global user.email "noreply@walkx.fyi"
|
||||
git config --global user.name "Dashboard Icons Bot"
|
||||
git add -A
|
||||
git commit -m ":clamp: Compresses PNGs" || exit 0
|
||||
git commit -m ":children_crossing: Compresses PNGs" || exit 0
|
||||
git pull --ff-only
|
||||
git push
|
||||
|
@@ -12,7 +12,7 @@ Harassment, intimidation, discrimination, or any other inappropriate conduct or
|
||||
|
||||
## 📢 Reporting
|
||||
|
||||
If you believe someone is violating the code of conduct, please report it immediately to contact@walkx.fyi. All reports will be reviewed and investigated promptly and confidentially.
|
||||
If you believe someone is violating the code of conduct, please report it immediately to walkxnl@gmail.com. All reports will be reviewed and investigated promptly and confidentially.
|
||||
|
||||
## 🚨 Consequences
|
||||
|
||||
|
@@ -1,32 +1,50 @@
|
||||
# 🎉 Contributing Guidelines
|
||||
# 🤝 Contribution Guidelines
|
||||
|
||||
Thank you for your interest in contributing to our icon repository! To ensure that everything runs smoothly, we've set out some guidelines for contributors.
|
||||
We appreciate your interest in contributing to our icon repository! To ensure smooth collaboration, kindly adhere to the following guidelines:
|
||||
|
||||
## 🌟 Icon Specifications
|
||||
|
||||
- Each icon should include both a **PNG** and **SVG** version. If an **SVG** cannot be found, then only a **PNG** version is required.
|
||||
- Each icon should be in **PNG** format and have a height of exactly **512px**. Width does not matter. ❗️(No upscales! If the correct size cannot be found, a smaller height will be accepted.)
|
||||
- Icons should be named after their full name, using the [Kebab Case](https://wiki.c2.com/?KebabCase) naming convention. For example, "Facebook Messenger" should be named `facebook-messenger.png`.
|
||||
- Monochrome icons should default to a dark version. Light versions should be named `service-light.png`. If a light version is not available, use [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to change its color.
|
||||
|
||||
- Icons should be provided in both `PNG` and `SVG` formats. Other formats like `JPEG` or `WEBP` will not be accepted.
|
||||
- In cases where an `SVG` version is unavailable, a `PNG` version alone suffices.
|
||||
- Conversely, if a `PNG` version is missing, it can be generated using [Ezgif SVG to PNG](#-converting-svg-to-png).
|
||||
- `PNG`s should maintain a height of exactly `512px`, while width can vary. However, a 1:1 aspect ratio is preferred.
|
||||
- ❗ Avoid upscales! Exceptions will be made only if the correct or a downscaled version cannot be obtained.
|
||||
- Downsizing can be accomplished using [iLoveIMG Resize](#-downscaling-pngs).
|
||||
- Icons should be named using the [Kebab Case](https://wiki.c2.com/?KebabCase) convention, reflecting their full name. For instance, "Facebook Messenger" should be named `facebook-messenger.png`.
|
||||
- Icons that are predominantly monochrome should default to a dark version. Light versions should be named `name-light.png`. If a light version is not available, use [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to adjust its color.
|
||||
|
||||
## 💻 Gitmoji Commits
|
||||
|
||||
- Please use [Gitmoji](https://gitmoji.dev/) in your commit messages. This helps us keep our commit history clear and easy to understand. For example, you might use the `🍱` emoji for a commit that updates an icon's color, or the `📝` emoji for a commit that updates the documentation.
|
||||
- Use [Gitmoji](https://gitmoji.dev/) in your commit messages. This helps us keep our commit history clear and easy to understand. For instance, use the `🍱` emoji for commits related to updating icon colors, and `📝` for documentation updates.
|
||||
|
||||
## 🔀 Converting SVG to PNG
|
||||
|
||||
1. Go to https://ezgif.com/svg-to-png.
|
||||
2. Upload the `SVG` file by clicking "Upload".
|
||||
3. Set the "Height (optional)" field to `512`, leaving other settings as default.
|
||||
4. Click "Convert to PNG!".
|
||||
5. Click "Save" located at the bottom right under the converted image.
|
||||
|
||||
## ⤵️ Downscaling PNGs
|
||||
|
||||
1. Go to https://www.iloveimg.com/resize-image.
|
||||
2. Upload the `PNG` file(s).
|
||||
3. Adjust the "Height (px)" field to `512`, leaving other settings as default.
|
||||
4. Click "Resize IMAGES".
|
||||
5. Download the resized icon(s).
|
||||
|
||||
## 🤝 Contributing
|
||||
|
||||
1. Fork the repository to your own GitHub account.
|
||||
1. Fork the repository to your GitHub account.
|
||||
2. Clone the repository to your local machine.
|
||||
3. Add your icon(s) to the repository, following the specifications listed above.
|
||||
3. Add your icon(s) to the repository, adhering to the specified guidelines.
|
||||
4. Push your changes to your fork.
|
||||
5. Create a pull request in the main repository.
|
||||
|
||||
## 🚨 Code of Conduct
|
||||
|
||||
Please note that by contributing to this repository, you agree to abide by our code of conduct, which can be found in the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file in the repository.
|
||||
Kindly note that contributing to this repository necessitates adherence to our code of conduct, outlined in the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file within the repository.
|
||||
|
||||
---
|
||||
|
||||
If you have any questions or concerns, please don't hesitate to reach out to me at contact@walkx.fyi. Happy contributing! 🙌
|
||||
Should you have any queries or concerns, feel free to reach out to me using walkxnl@gmail.com. Happy contributing! 🙌
|
||||
|
4
LICENSE
@@ -2,11 +2,11 @@
|
||||
|
||||
Unless otherwise indicated, all images and assets in this repository, including product names, trademarks, and registered trademarks, are the property of their respective owners. These images and assets are used for identification purposes only and their use does not imply endorsement.
|
||||
|
||||
--------------------------------
|
||||
---
|
||||
|
||||
**Code and Documentation**
|
||||
|
||||
Copyright (c) 2023 Bjorn Lammers
|
||||
Copyright (c) 2024 Bjorn Lammers (walkxcode)
|
||||
|
||||
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:
|
||||
|
||||
|
68
README.md
@@ -1,79 +1,73 @@
|
||||
<p align="center">
|
||||
<h2 align="center"> 🟣 Dashboard Icons </h3>
|
||||
<div align="center">
|
||||
<h2 align="center"> 🚀 Dashboard Icons </h2>
|
||||
<p align="center">
|
||||
<a href="https://www.jsdelivr.com/package/gh/walkxcode/dashboard-icons">
|
||||
<img src="https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?color=%23A020F0" alt="JSdelivr weekly downloads badge">
|
||||
</a>
|
||||
</p>
|
||||
<p align="center">
|
||||
🚀 The best place to find icons for your dashboards.
|
||||
The best source for dashboard icons.
|
||||
<br />
|
||||
<a href="#-icons"><strong>👀 See the icons</strong></a> • <a href="https://shop.walkx.fyi/l/donate" target="_blank"><strong>🙌🏻 Donate</strong></a>
|
||||
<a href="#-icons"><strong>➡️ Explore the icons</strong></a>
|
||||
<br />
|
||||
<br />
|
||||
</p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
# 📖 Table of Contents
|
||||
|
||||
- [🚀 Getting Started](#-getting-started)
|
||||
- [📊 Dashboards](#-dashboards)
|
||||
- [🛠️ Installation](#️-installation)
|
||||
- [🎨 Icons](#-icons)
|
||||
- [🎉 Contributing Guidelines](#-contributing-guidelines)
|
||||
- [📜 Legal](#-legal)
|
||||
- [📖 Table of Contents](#-table-of-contents)
|
||||
- [🚀 Getting Started](#-getting-started)
|
||||
- [📊 Dashboards](#-dashboards)
|
||||
- [✨ Usage](#-usage)
|
||||
- [🎨 Icons](#-icons)
|
||||
- [🎉 Contribution Guidelines](#-contribution-guidelines)
|
||||
- [📜 Legal](#-legal)
|
||||
|
||||
## 🚀 Getting Started
|
||||
|
||||
### 📊 Dashboards
|
||||
|
||||
There are many Dashboards available that you can use with Dashboard Icons. Here are some of the popular ones.
|
||||
Several dashboards now offer seamless integration with Dashboard Icons. Here are some of the top choices:
|
||||
|
||||
- [Homarr](https://github.com/ajnart/homarr)\*
|
||||
- [Dashy](https://github.com/Lissy93/dashy)\*
|
||||
- [Homer Dashboard](https://github.com/bastienwirtz/homer)
|
||||
- [Heimdall](https://github.com/linuxserver/Heimdall)
|
||||
- [Organizr(v2)](https://github.com/causefx/Organizr)
|
||||
- [Flame](https://github.com/pawelmalak/flame)
|
||||
- [SUI](https://github.com/jeroenpardon/sui)
|
||||
- [Homepage](https://github.com/gethomepage/homepage)\*
|
||||
- [Homepage](https://github.com/gethomepage/homepage)
|
||||
- [Homarr](https://github.com/ajnart/homarr)
|
||||
- [Dashy](https://github.com/Lissy93/dashy)
|
||||
|
||||
**Note:** Dashboards with a \* have native integration with Dashboard Icons.
|
||||
|
||||
### 🛠️ Installation
|
||||
|
||||
**Tip!** You can access Dashboard Icons online, faster, by using `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png`. Just replace `example` with the name of the icon!
|
||||
### ✨ Usage
|
||||
|
||||
To download an icon from the [icons page](#-icons), simply `Right click > Save link as`.
|
||||
|
||||
For non-desktop operating systems or people who prefer to use the terminal:
|
||||
For non-desktop operating systems or those who prefer using the terminal:
|
||||
*Replace `example` with the icon's name, and `png` with `svg` if needed.*
|
||||
|
||||
```sh
|
||||
$ curl -O https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
|
||||
curl -O https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```sh
|
||||
$ wget https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
|
||||
wget https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
|
||||
```
|
||||
|
||||
**💡 Tip!** Access Dashboard Icons online faster via `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png`, replacing `example` with the icon name!
|
||||
|
||||
## 🎨 Icons
|
||||
**⚠️ Warning!** Going to this page will load every single icon in the repository. This might cause:
|
||||
- 📉 An excessive amount of data use.
|
||||
**⚠️ Warning!** Visiting this page will load every single icon in the repository. This may cause:
|
||||
- 📉 Excessive data usage.
|
||||
- 💻 System slowdowns.
|
||||
- 🌐 Browser crashes.
|
||||
|
||||
*If your device cannot handle loading more than 1000 images, we advise to not go to this page.*
|
||||
*If your device cannot handle loading more than 1000 images or if you are on a limited data connection, we advise against visiting this page.*
|
||||
|
||||
➡️ Click [**here**](ICONS.md) to display all icons.
|
||||
➡️ Click [**here**](ICONS.md) to view all icons.
|
||||
|
||||
## 🎉 Contributing Guidelines
|
||||
Please read the [Contributing Guidelines](CONTRIBUTING.md) before contributing to this project.
|
||||
## 🎉 Contribution Guidelines
|
||||
Please review the [Contribution Guidelines](CONTRIBUTING.md) before contributing to this project.
|
||||
|
||||
## 📜 Legal
|
||||
|
||||
Please read our [LICENSE](LICENSE) for information regarding the use of our software and assets. By accessing or using this repository, you agree to be bound by the terms and conditions of the license.
|
||||
|
||||
If you have any questions or concerns regarding the license, please contact us at contact@walkx.fyi before using or distributing the contents of this repository.
|
||||
Read our [LICENSE](LICENSE) for information regarding the use of our software and assets. By accessing or using this repository, you agree to be bound by the terms and conditions of the license.
|
||||
|
||||
For questions or concerns regarding the license, contact me at walkxnl@gmail.com before using or distributing the contents of this repository.
|
@@ -1,14 +1,14 @@
|
||||
<p align="center">
|
||||
<h2 align="center"> 🟣 Dashboard Icons </h3>
|
||||
<h2 align="center"> 🚀 Dashboard Icons </h3>
|
||||
<p align="center">
|
||||
<a href="https://www.jsdelivr.com/package/gh/walkxcode/dashboard-icons">
|
||||
<img src="https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?color=%23A020F0" alt="JSdelivr weekly downloads badge">
|
||||
</a>
|
||||
</p>
|
||||
<p align="center">
|
||||
🚀 The best place to find icons for your dashboards.
|
||||
The best source for dashboard icons.
|
||||
<br />
|
||||
<a href="https://github.com/walkxcode/dashboard-icons/"><strong>⬅️ Back to repo</strong></a> • <a href="https://shop.walkx.fyi/l/donate" target="_blank"><strong>🙌🏻 Donate</strong></a>
|
||||
<a href="https://github.com/walkxcode/dashboard-icons/"><strong>⬅️ Back to repo</strong></a>
|
||||
<br />
|
||||
<br />
|
||||
</p>
|
||||
|
BIN
png/apache-airflow.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
png/caldera.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
png/cribl-light.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
png/cribl.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
png/f5-networks.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
png/feishin.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
png/flarum.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
png/hostinger.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
png/misp.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
png/mkdocs.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
png/observo-ai.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
png/open-webui-light.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
png/open-webui.png
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
png/palo-alto.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
png/perlite.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
png/porkbun.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
png/prusa-research-light.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
png/prusa-research.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
png/purelymail.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
png/reolink.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
png/sonatype-repository-light.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
png/sonatype-repository.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
png/sophos.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
png/speedtest-tracker-old.png
Normal file
After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 3.8 KiB |
BIN
png/stb-proxy.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
png/warpgate.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
png/wyze.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
11
svg/apache-airflow.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m2.5441 127 60.809-62.332a1.124 1.124 0 0 0 0.1359-1.4368c-3.6977-5.1625-10.521-6.0578-13.05-9.5268-7.4903-10.275-9.3909-16.092-12.61-15.731a0.98374 0.98374 0 0 0-0.58464 0.3085l-21.966 22.518c-12.638 12.944-14.454 41.475-14.782 65.367a1.1908 1.1908 0 0 0 2.0473 0.83273z" fill="#017cee"/>
|
||||
<path d="m126.99 125.46-62.332-60.813a1.124 1.124 0 0 0-1.4389-0.1359c-5.1625 3.6998-6.0578 10.521-9.5268 13.05-10.275 7.4903-16.092 9.3909-15.731 12.61a0.98374 0.98374 0 0 0 0.3085 0.58248l22.518 21.966c12.944 12.638 41.475 14.454 65.367 14.782a1.1908 1.1908 0 0 0 0.83489-2.0408z" fill="#00ad46"/>
|
||||
<path d="m60.792 112.72c-7.076-6.9035-10.355-20.559 3.2058-48.719-22.046 9.8525-29.771 22.803-25.972 26.511z" fill="#04d659"/>
|
||||
<path d="m125.45 1.0113-60.807 62.332a1.1218 1.1218 0 0 0-0.1359 1.4368c3.6998 5.1625 10.519 6.0578 13.05 9.5268 7.4903 10.275 9.393 16.092 12.61 15.731a0.97943 0.97943 0 0 0 0.58464-0.3085l21.966-22.518c12.638-12.944 14.454-41.475 14.782-65.367a1.193 1.193 0 0 0-2.0495-0.83273z" fill="#00c7d4"/>
|
||||
<path d="m112.73 67.211c-6.9035 7.076-20.559 10.355-48.721-3.2058 9.8525 22.046 22.803 29.771 26.511 25.972z" fill="#11e1ee"/>
|
||||
<path d="m1.0017 2.5495 62.332 60.807a1.124 1.124 0 0 0 1.4368 0.1359c5.1625-3.6998 6.0578-10.521 9.5268-13.05 10.275-7.4903 16.092-9.3909 15.731-12.61a0.99022 0.99022 0 0 0-0.3085-0.58463l-22.518-21.966c-12.944-12.638-41.475-14.454-65.367-14.782a1.1908 1.1908 0 0 0-0.83273 2.0495z" fill="#e43921"/>
|
||||
<path d="m67.212 15.284c7.076 6.9035 10.355 20.559-3.2058 48.721 22.046-9.8525 29.771-22.805 25.972-26.511z" fill="#ff7557"/>
|
||||
<path d="m15.279 60.8c6.9035-7.076 20.559-10.355 48.721 3.2058-9.8525-22.046-22.803-29.771-26.511-25.972z" fill="#0cb6ff"/>
|
||||
<circle cx="64.009" cy="63.995" r="2.7182" fill="#4a4848"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
21
svg/flarum.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 300 300">
|
||||
<defs>
|
||||
<linearGradient id="b" x1="50%" x2="50%" y1="0%" y2="100%">
|
||||
<stop offset="0%" stop-color="#EA3636"/>
|
||||
<stop offset="100%" stop-color="#F37440"/>
|
||||
</linearGradient>
|
||||
<pattern id="d" width="512" height="512" x="-512" y="-512" patternUnits="userSpaceOnUse">
|
||||
<use xlink:href="#a"/>
|
||||
</pattern>
|
||||
<path id="c" d="M0 0h300v300H0z"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<use xlink:href="#c" fill="url(#b)"/>
|
||||
<use xlink:href="#c" fill="url(#d)" fill-opacity=".03"/>
|
||||
<g>
|
||||
<path fill="#DCDCDC" d="M160.24 178v55.15L91.8 188.38l-2.75-1.8-5.97-3.9a8.84 8.84 0 0 1-2.6-2.65l79.76-2.03Z"/>
|
||||
<path fill="#FFF" d="M82.38 66.09A3.38 3.38 0 0 0 79 69.47v105.65c0 1.73.5 3.43 1.44 4.88a8.84 8.84 0 0 0 2.6 2.65l5.97 3.9 2.75 1.8s-11.35-8.37 2.46-8.37h126.95V66.1H82.38Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 996 B |
1
svg/hostinger.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg clip-rule="evenodd" fill-rule="evenodd" height="2500" stroke-linejoin="round" stroke-miterlimit="2" viewBox="7.002 8.287 148.203 175.426" width="2112" xmlns="http://www.w3.org/2000/svg"><path d="m7.002 8.287 39.319 21.172v39.32h57.467l36.295 21.172h-133.081zm148.203 75.615v-54.443l-42.344-21.172v51.418zm0 99.811-39.319-21.172v-39.32h-57.467l-36.295-21.172h133.081zm-148.203-75.615v54.443l42.343 21.172v-51.418z" fill="#6747c7"/></svg>
|
After Width: | Height: | Size: 441 B |
14
svg/mkdocs.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1_58)">
|
||||
<path d="M63.2984 17.6859C72.536 8.5954 83.6271 -1.05413 97.5718 0.0932232C207.511 0.2109 317.481 0.416834 427.421 0.681608C445.719 -0.318647 462.459 16.1267 461.694 34.4843C461.841 159.075 461.664 283.636 461.782 408.226C461.841 418.199 460.252 429.32 452.456 436.381C446.719 443 437.54 443.5 429.538 445.177C427.803 463.476 434.628 484.775 422.272 500.456C417.359 507.34 409.416 512.253 400.737 511.605C299.682 511.635 198.656 511.576 97.6012 511.665C83.3917 512.812 71.5063 503.457 61.9745 494.101C52.4721 484.834 49.03 471.037 49.7067 458.122C49.8832 321.881 49.7361 185.67 49.7655 49.4293C49.9126 37.6616 54.6491 25.8056 63.2984 17.6859ZM129.58 40.3682C129.492 162.046 129.462 283.724 129.609 405.402C128.285 411.433 134.11 412.963 138.788 412.345C235.225 412.139 331.631 412.639 428.068 412.08C428.421 407.844 428.715 403.549 428.774 399.283C428.685 279.635 428.803 159.928 428.715 40.2799C428.921 37.3086 428.097 32.2485 423.949 32.9545C327.954 32.6603 231.959 32.8074 135.993 32.8662C131.669 32.2485 128.874 36.3377 129.58 40.3682ZM59.974 413.698C59.1796 423.436 59.8563 433.203 59.7092 442.941C69.3587 429.026 79.7143 412.345 97.8071 409.227C97.8366 400.401 97.8366 391.575 97.8071 382.779C80.3321 384.132 66.6521 398.371 59.974 413.698ZM86.1865 469.36C91.5702 474.537 98.3073 479.657 106.25 478.832C199.51 478.774 292.768 478.832 386.028 478.803C391.529 478.832 397.678 478.274 401.443 473.684C409.387 466.771 407.092 455.091 408.004 445.765C307.478 445.765 206.923 445.765 106.398 445.765C94.571 444.736 78.6258 456.562 86.1865 469.36Z" fill="black"/>
|
||||
<path d="M207.511 91.9403C255.082 91.2927 302.712 91.7344 350.312 91.7344C354.667 91.0281 357.815 95.0289 357.05 99.2068C357.138 123.801 357.138 148.425 357.05 173.019C358.314 178.727 351.666 179.462 347.753 179.139C302.565 179.109 257.407 179.109 212.218 179.139C208.306 179.433 201.893 178.845 203.187 173.137C203.01 149.484 203.246 125.801 203.099 102.119C203.422 98.5299 202.275 92.2934 207.511 91.9403Z" fill="black"/>
|
||||
<path d="M129.58 40.3682C128.874 36.3377 131.669 32.2485 135.993 32.8663C231.959 32.8074 327.954 32.6603 423.949 32.9545C428.097 32.2485 428.921 37.3086 428.715 40.2799C428.803 159.928 428.685 279.635 428.774 399.283C428.715 403.549 428.421 407.844 428.068 412.08C331.631 412.639 235.225 412.139 138.788 412.345C134.11 412.963 128.285 411.433 129.609 405.402C129.462 283.724 129.492 162.046 129.58 40.3682ZM207.511 91.9403C202.275 92.2934 203.422 98.5298 203.099 102.119C203.246 125.801 203.01 149.484 203.187 173.137C201.893 178.845 208.306 179.433 212.218 179.139C257.407 179.109 302.565 179.109 347.753 179.139C351.666 179.462 358.314 178.727 357.05 173.019C357.138 148.425 357.138 123.801 357.05 99.2068C357.815 95.0289 354.667 91.0281 350.312 91.7344C302.712 91.7344 255.082 91.2927 207.511 91.9403Z" fill="white"/>
|
||||
<path d="M59.974 413.698C66.6521 398.371 80.3321 384.132 97.8071 382.779C97.8366 391.575 97.8366 400.401 97.8071 409.227C79.7143 412.345 69.3587 429.026 59.7092 442.941C59.8563 433.203 59.1796 423.436 59.974 413.698Z" fill="white"/>
|
||||
<path d="M86.1865 469.359C78.6258 456.562 94.571 444.736 106.398 445.765C206.923 445.765 307.478 445.765 408.004 445.765C407.092 455.091 409.387 466.771 401.443 473.684C397.677 478.274 391.529 478.832 386.028 478.803C292.768 478.832 199.51 478.774 106.25 478.832C98.3073 479.657 91.5702 474.537 86.1865 469.359Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1_58">
|
||||
<rect width="412.368" height="512" fill="white" transform="translate(49.6243)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
svg/palo-alto.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg width="512px" height="512px" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path cx="512" cy="512" r="512" style="fill:#fa582d" d="M512 256A256 256 0 0 1 256 512A256 256 0 0 1 0 256A256 256 0 0 1 512 256z"/><path d="M296.465 155.255 256.21 195.5l20 20.03L175.29 316.5l40.255 40.255L255.8 316.5l-20 -20 100.92 -101zM115 256.2l100.945 -100.945L256.205 195.5l-100.95 100.955zM255.795 316.5l100.95 -100.955L397 255.8 296.055 356.745z" style="fill:#fff"/></svg>
|
After Width: | Height: | Size: 472 B |
44
svg/perlite.svg
Normal file
@@ -0,0 +1,44 @@
|
||||
<?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 enable-background="new 0 0 163.25 131.9" version="1.1" viewBox="0 0 163.25 131.9" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-rule="evenodd" fill-rule="evenodd">
|
||||
<radialGradient id="e" cx="81.4" cy="114.8" r="70.362" gradientTransform="matrix(1 0 0 -.2667 0 145.41)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".4" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</radialGradient>
|
||||
<path d="m23.9 98.7c15.934-4.367 35.184-6.55 57.75-6.55 22.533 0 41.767 2.183 57.699 6.55 15.934 4.366 23.9 9.633 23.9 15.8 0 6.2-7.967 11.483-23.9 15.85s-35.166 6.551-57.699 6.551c-22.567 0-41.817-2.184-57.75-6.551-15.934-4.37-23.901-9.65-23.901-15.85 0-6.17 7.967-11.43 23.9-15.8z" fill="url(#e)"/>
|
||||
<radialGradient id="f" cx="81.75" cy="114.35" r="43.818" gradientTransform="matrix(1 0 0 -1 0 228.7)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".1373" offset=".0902"/>
|
||||
<stop stop-opacity=".1373" offset=".1765"/>
|
||||
</radialGradient>
|
||||
<path d="m27.8 108.25c0.567 0 0.9-0.6 1-1.8v-1.85c5.967-0.233 15.567-1.116 28.8-2.649 7.633-0.9 13.4-0.967 17.3-0.2 1.567 0.366 2.667 0.6 3.3 0.7 1.033 0.166 2.167 0.1 3.399-0.2 2.233-0.5 6.75-0.8 13.551-0.9 7.366-0.1 11.566-0.216 12.6-0.35 1.8-0.2 6.167 0.1 13.1 0.9 7.434 0.899 11.268 1.35 11.5 1.35 0.9 0 1.5 0.134 1.801 0.4 0.366 0.333 0.783 0.533 1.25 0.6 0.732 0.134 1.066 0.566 1 1.3-0.033 0.367-0.134 0.717-0.301 1.05l6.15 1.65-1.5 0.5c-1.066 0.333-1.816 0.5-2.25 0.5-0.467 0-1.05 0.2-1.75 0.6-0.566 0.334-1.583 1.034-3.05 2.101-1.134 0.833-1.767 1.366-1.9 1.6-0.021 0.065 3e-3 0.099 0.075 0.101l-0.925 0.25c-0.767 0.3-1.217 0.649-1.351 1.05-0.133 0.399-0.649 0.767-1.55 1.1-0.5 0.2-1.35 0.5-2.55 0.9-0.767 0.3-1.217 0.717-1.35 1.25-0.033 0.1-0.051 0.684-0.051 1.75 0 0.434-0.633 0.85-1.899 1.25-1.733 0.533-3.033 1.116-3.9 1.75-1.167 0.866-2.45 1.383-3.85 1.55-1.167 0.134-4.351 0.384-9.55 0.75-4.101 0.4-6.051 0.7-5.851 0.9 0.033 0.033 0.217 0.066 0.55 0.1h-0.5c-0.866 0-2.433 0.116-4.699 0.35-2.301 0.233-3.717 0.351-4.25 0.351-1.134 0-2.95 0.217-5.45 0.649l-3.7 0.15c-2.6 0.033-4.333-0.017-5.2-0.15-0.866-0.133-2.483-0.183-4.85-0.149-1.233 0.033-2.6 0.083-4.1 0.149-0.7 0-1.717-0.666-3.05-2-0.433-0.433-1.116-0.666-2.05-0.699-0.533-0.034-1.233-0.017-2.1 0.05-0.667 0-2.15-0.233-4.45-0.7l-5.8-1.65-3.05-0.05c-2.1-0.066-3.367-0.166-3.8-0.3-0.8-0.233-2.033-0.75-3.7-1.55-1.967-0.967-3.034-1.667-3.2-2.101-0.133-0.399-0.617-0.683-1.45-0.85-0.434-0.1-0.85-0.15-1.25-0.15l-1.05-0.1c-0.8-0.1-1.483-0.283-2.05-0.55-0.8-0.4-1.333-0.717-1.6-0.95-0.367-0.4-0.633-0.983-0.8-1.75-0.134-0.6-0.917-1.1-2.35-1.5-1.867-0.5-3.15-1-3.85-1.5l3.1-2c1.357-0.67 2.507-1 3.44-1z" fill="url(#f)"/>
|
||||
<radialGradient id="g" cx="-122.5" cy="84.543" r="99.922" gradientTransform="matrix(.021 -.9998 -.9998 -.021 169.05 3.554)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9DDABE" offset=".0235"/>
|
||||
<stop stop-color="#A0DCC1" offset=".2353"/>
|
||||
<stop stop-color="#A9E1C8" offset=".451"/>
|
||||
<stop stop-color="#B7EAD4" offset=".6627"/>
|
||||
<stop stop-color="#CCF6E4" offset=".8784"/>
|
||||
<stop stop-color="#D8FDED" offset=".9765"/>
|
||||
</radialGradient>
|
||||
<path d="m114.25 45c0.667 0.833 1.4 1.8 2.2 2.9 1.633 2.2 2.816 3.983 3.55 5.35 0.1 0.167 0.733 1.5 1.9 4 0.6 1.267 1.3 2.35 2.1 3.25l2 2.25 0.15 5.95c0.166 4.3 0.449 7.233 0.85 8.8 0.233 0.866 0.566 3.15 1 6.85 0.4 3.467 0.983 6.434 1.75 8.9 0.833 2.7 1.383 5.884 1.65 9.55 0.1 1.834 0.133 3.4 0.1 4.7l-7.1 4.55c-5.134 3.334-8.684 5.733-10.65 7.2-2.333 1.733-4.417 2.884-6.25 3.45-1.733 0.533-4.066 0.8-7 0.8-1.967 0-4.483 0.384-7.55 1.15-3.101 0.733-5.5 1.1-7.2 1.1-1.733 0-4.2 0.083-7.4 0.25-2.733 0.066-5.017-0.1-6.85-0.5-1.434-0.333-3.283-1.017-5.55-2.05-2-0.967-3.65-1.533-4.95-1.7-0.934-0.134-2.133-0.2-3.6-0.2-1.267 0-2.983-0.184-5.15-0.55-5.566-0.967-9.4-2.05-11.5-3.25-1.167-0.667-2.083-1.25-2.75-1.75l-2.8-3.05c-2-2.033-3.317-3.101-3.95-3.2 0.8-0.667 1.617-1.6 2.45-2.8 1.733-2.434 2.75-5 3.05-7.7 0.267-2.167 0.25-4.366-0.05-6.6-0.3-2.601-0.367-5.317-0.2-8.15 0.2-3.333 0.767-6.566 1.7-9.7 1.4-4.5 2.167-7.1 2.3-7.8 0.633-4.367 1.1-7.633 1.4-9.8 0.567-3.833 1.35-6.4 2.35-7.7 0.767-1 1.45-2.15 2.05-3.45 0.733-1.5 1.8-3.267 3.2-5.3l6-8.5c0.367-1.233 0.883-2.617 1.55-4.15 1.333-3.033 2.733-5.233 4.2-6.6 4.167-3.867 7.417-7.033 9.75-9.5 1.867-1.967 3.684-3.733 5.45-5.3l2.05-1.7c0.667 0.267 1.434 0.65 2.3 1.15 1.767 1 3.167 2.117 4.2 3.35 0.5 0.6 1.967 1.55 4.4 2.85 1.933 1.066 3.383 2.7 4.35 4.9 0.633 1.467 1.283 4.517 1.95 9.15 0.6 4.033 1.7 7.317 3.3 9.85 1.767 2.8 3.25 5.733 4.45 8.8 0.633 1.5 1.066 2.733 1.3 3.7 0.7-0.067 1.467-0.233 2.3-0.5 1.667-0.5 2.817-1.167 3.45-2s1.45-1.283 2.45-1.35l1.3 0.1z" fill="url(#g)"/>
|
||||
<path d="m70.1 46.35l1.5-7.75 0.35 0.85c0.3 0.667 0.517 1.267 0.65 1.8 0.233 0.9 0.35 2.567 0.35 5 0 0.333 0.033 1 0.1 2 0.067 1.067 0.034 2.067-0.1 3-0.233 1.567-1.9 4.233-5 8v5.35l-0.85 0.5c-0.667 0.333-1.284 0.5-1.85 0.5-0.434 0-0.983-0.05-1.65-0.15-0.667-0.133-1.217-0.2-1.65-0.2-0.3 0-0.934 0.167-1.9 0.5-0.933 0.333-1.966 0.5-3.1 0.5-2 0-4.117-0.433-6.35-1.3 2.433-0.233 4.433-0.8 6-1.7 0.966-0.533 1.7-1.133 2.2-1.8 0.434-0.767 0.817-1.383 1.15-1.85 0.366-0.467 1.1-1.333 2.2-2.6 1.767-1.967 3.25-3.65 4.45-5.05 1.667-1.967 2.834-3.833 3.5-5.6z" fill="#84C5A2"/>
|
||||
<path d="m78.6 79.6c-1.567 0-3.117-0.333-4.65-1 3.333-0.433 6-0.983 8-1.649 1.267-0.4 2.483-1.584 3.649-3.55l1.351-2.801v5.351c0 0.7-0.283 1.25-0.851 1.649-0.366 0.267-1.316 0.817-2.85 1.65-1.066 0.667-1.883 0.934-2.45 0.8-1.299-0.3-2.032-0.45-2.199-0.45z" fill="#84C5A2"/>
|
||||
<path d="m62.95 39.25c0.433-0.2 3.316-0.417 8.65-0.65l-0.35 2v2.35c0 1.533-0.55 2.867-1.65 4l-1.5 0.3c-1.333 0.133-2.833 0.133-4.5 0-1.633-0.133-2.833-0.05-3.6 0.25-0.6 0.233-2.066 0.817-4.4 1.75-3.333 1.133-5.117 1.7-5.35 1.7l12.7-11.7z" fill="#DEF4EB"/>
|
||||
<path d="m85.05 70.55l1.9 0.05-1.25 2.15c-1.134 1.667-2.384 3.066-3.75 4.2-1.4 1.1-3.15 1.7-5.25 1.8-1.067 0.066-1.983 0.017-2.75-0.15 1.767-2.233 3.2-3.566 4.3-4 0.6-0.233 1.217-0.75 1.85-1.55 0.7-0.899 1.317-1.5 1.85-1.8 0.7-0.4 1.734-0.634 3.1-0.7z" fill="#CFF3E4"/>
|
||||
<g fill="#9DDABE">
|
||||
<path d="m98.95 45.6c0.667-1.733 1.1-2.267 1.3-1.6 0.2 0.533 0.316 0.733 0.35 0.6 0.134-0.467 0.184-1.283 0.15-2.45-0.033-1.4-0.066-2.45-0.1-3.15 1.267 2.3 2.333 4.617 3.199 6.95 0.434 1.167 0.733 2.1 0.9 2.8l0.65-0.1c-1.934 1.833-3.434 4.583-4.5 8.25-0.733 2.4-1.184 4.733-1.351 7-0.066-0.6-0.433-2.05-1.1-4.35-0.7-2.333-1.101-4.1-1.2-5.3-0.133-1.733-0.1-3.083 0.1-4.05 0.168-0.733 0.701-2.267 1.601-4.6z"/>
|
||||
<path d="m93.25 26.95c0.967-0.6 1.717-1.4 2.25-2.4 0.267 2.1 0.533 3.733 0.8 4.9 0.4 1.833 0.983 3.517 1.75 5.05-0.366-0.333-0.633-0.633-0.8-0.9-0.333-0.733-0.7-1.1-1.1-1.1-0.5-0.033-1.467 0.333-2.9 1.1-1.233 0.7-2.383 1.633-3.45 2.8-0.533 0.6-0.933 1.117-1.2 1.55v-8l4.65-3z"/>
|
||||
</g>
|
||||
<path d="m92.8 15.45c-0.667 0.267-1.433 0.45-2.3 0.55-2.033 0.3-4.367 1.3-7 3l-5.1-0.1c-3.667-0.033-6.267 0.083-7.8 0.35-1.2 0.233-2.467 0.45-3.8 0.65-0.833 0.2-1.683 0.65-2.55 1.35-0.8 0.7-1.566 1.867-2.3 3.5-0.467 0.967-1.25 2.7-2.35 5.2-0.733 1.5-2.967 3.517-6.7 6.05l2.6-3.75c0.367-1.233 0.883-2.617 1.55-4.15 1.333-3.033 2.733-5.233 4.2-6.6 4.167-3.867 7.417-7.033 9.75-9.5 1.867-1.967 3.684-3.733 5.45-5.3l2.05-1.7c0.667 0.267 1.434 0.65 2.3 1.15 1.767 1 3.167 2.117 4.2 3.35 0.6 0.733 1.883 1.583 3.85 2.55 1.767 0.9 3.084 2.033 3.95 3.4z" fill="#EAFEF5"/>
|
||||
<path d="m63.2 79.55c0.633-0.166 1.316 0.066 2.05 0.7 1.167 0.967 2 1.667 2.5 2.1 0.867 0.733 1.45 1.367 1.75 1.9 0.267 0.434 0.833 0.967 1.7 1.6 0.866 0.601 1.383 1.067 1.55 1.4 0.333 0.667 1.75 1.833 4.25 3.5l0.35 1.45c0.466 1.066 1.267 1.916 2.4 2.55 1.767 0.967 2.733 1.483 2.9 1.55 0.633 0.2 1.166 0.017 1.6-0.55 0.667-1 1.5-2.167 2.5-3.5 0.934-1.233 1.483-1.983 1.65-2.25 0.333-0.6 0.616-1.35 0.85-2.25 0.2-0.833 0.3-1.667 0.3-2.5l-0.05-1c-0.667-2.667-1-4.167-1-4.5 0-0.366 0.4-1.233 1.2-2.6 0.833-1.334 1.433-2.134 1.8-2.4 0.3-0.2 0.934-0.434 1.9-0.7l1.35-0.3 2.25 5 2.75 3.5c0-0.2 0.05-0.316 0.15-0.35 0.199-0.034 0.566 0.416 1.1 1.35s0.934 1.917 1.2 2.95c0.167 0.533 0.267 0.967 0.3 1.3l1.25 3c0.167 0.5 0.733 0.95 1.7 1.35 1.033 0.434 1.717 0.317 2.05-0.35 0.5-1 1.083-2.083 1.75-3.25 0.267-0.467 0.816-1.184 1.65-2.15 0.566-0.699 0.85-1.233 0.85-1.6 0-0.033 0.2-0.417 0.6-1.15 0.367-0.699 0.5-1.899 0.4-3.6-0.133-2.066-0.15-3.934-0.05-5.6 0.1-1.601 0.283-2.65 0.55-3.15 0.133-0.3 0.434-0.733 0.9-1.3 0.467-0.601 0.833-1.167 1.1-1.7l1.4-2.05c0.566-0.833 0.85-1.65 0.85-2.45v-3.25c0.167-0.5 0.167-1.333 0-2.5-0.066-0.467-0.217-1.167-0.45-2.1-0.2-0.7-0.3-1.333-0.3-1.9 0-0.633 0.133-1.317 0.4-2.05l0.35-0.95v-1.4c1.2 1.7 2.033 3 2.5 3.9 0.1 0.167 0.733 1.5 1.9 4 0.6 1.267 1.3 2.35 2.1 3.25l2 2.25 0.15 5.95c0.166 4.3 0.449 7.233 0.85 8.8 0.233 0.866 0.566 3.15 1 6.85 0.4 3.467 0.983 6.434 1.75 8.9 0.833 2.7 1.383 5.884 1.65 9.55 0.1 1.834 0.133 3.4 0.1 4.7l-7.1 4.55c-5.134 3.334-8.684 5.733-10.65 7.2-2.333 1.733-4.417 2.884-6.25 3.45-1.733 0.533-4.066 0.8-7 0.8-1.967 0-4.483 0.384-7.55 1.15-3.101 0.733-5.5 1.1-7.2 1.1-1.733 0-4.2 0.083-7.4 0.25-2.733 0.066-5.017-0.1-6.85-0.5-1.434-0.333-3.283-1.017-5.55-2.05-2-0.967-3.65-1.533-4.95-1.7-0.934-0.134-2.133-0.2-3.6-0.2-1.267 0-2.983-0.184-5.15-0.55-5.566-0.967-9.4-2.05-11.5-3.25-1.167-0.667-2.083-1.25-2.75-1.75l-2.8-3.05c-2-2.033-3.317-3.101-3.95-3.2 1.5 0 2.667-0.5 3.5-1.5 0.3-0.5 0.517-0.833 0.65-1 0.167-0.233 1.117-1.066 2.85-2.5 1.833-1.5 2.967-2.566 3.4-3.2 0.333-0.767 0.7-1.533 1.1-2.3 0.033-0.066 0.5-0.85 1.4-2.35 0.3-0.534 0.5-1 0.6-1.4 0.333-2 0.583-3.25 0.75-3.75 0.333-0.566 0.617-1.1 0.85-1.6 0.433-0.9 0.65-1.867 0.65-2.9 0-0.8 0.117-2 0.35-3.6 0.2-1.334 0.25-2.217 0.15-2.65-0.1-0.533 0-1.233 0.3-2.1l0.45-1.15c0.333-0.833 0.583-1.917 0.75-3.25l0.5-4.25c0.467 0.533 0.967 1.15 1.5 1.85 1.1 1.367 1.85 2.417 2.25 3.15 0.667 1.167 2 2.583 4 4.25 0 0.3 0.133 0.566 0.4 0.8 0.5 0.434 1.367 0.5 2.6 0.2 1.533-0.533 2.517-0.85 2.95-0.95z" fill="#9DDABE"/>
|
||||
<path d="m61.75 88.5l1.25-1 0.8 3.2c0.534 2.733 0.85 5.5 0.95 8.3 0.1 2.733 1.1 4.533 3 5.4 2.267 0.566 3.767 1.183 4.5 1.85 0.9 0.8 1.65 1.333 2.25 1.6 1.566 0.7 2.566 1.167 3 1.4 1.533 0.833 3.066 1.4 4.6 1.7 1.4 0.3 2.367 0.316 2.9 0.05 1-0.167 1.8-0.3 2.4-0.4 1.066-0.199 1.6-0.649 1.6-1.35 0-0.833 0.2-1.9 0.6-3.2 0.367-1.2 0.75-2.133 1.15-2.8 1.333-1.833 2.417-3.583 3.25-5.25 1.333-2.667 2.333-4.333 3-5l3-2.5c0.267-0.2 0.55-0.35 0.85-0.45 0.634-0.233 1.101-0.083 1.4 0.45 0.3 0.5 0.833 1.616 1.6 3.35 0.867 1.967 1.334 3.017 1.4 3.15 0.333 0.667 1 1.583 2 2.75l0.75 1.25c0.2 0.333 0.483 0.517 0.85 0.55 0.7 0.033 1.417-0.733 2.15-2.3 0.633-1.366 1.184-2.8 1.65-4.3 0.366-1.3 0.649-2.117 0.85-2.45 0.3-0.5 0.767-0.934 1.4-1.3l1.6-0.95c0.066-0.066 0.717-0.15 1.95-0.25 0.833-0.066 1.35-0.65 1.55-1.75 0.1-0.566 0.2-1.717 0.3-3.45 0.101-1.233 0.333-2.333 0.7-3.3 0.2-0.467 0.467-1.667 0.8-3.6 0.167-0.934 0.483-1.067 0.95-0.4 1.3 1.8 2.05 3.217 2.25 4.25 0.066 0.333 0.267 0.733 0.6 1.2 0.268 0.366 0.4 0.883 0.4 1.55 0 1.167 0.667 2.333 2 3.5l0.55 0.05c0.367 2.101 0.767 3.834 1.2 5.2 0.833 2.7 1.383 5.884 1.65 9.55 0.1 1.834 0.133 3.4 0.1 4.7l-7.1 4.55c-5.134 3.334-8.684 5.733-10.65 7.2-2.333 1.733-4.417 2.884-6.25 3.45-1.733 0.533-4.066 0.8-7 0.8-1.967 0-4.483 0.384-7.55 1.15-3.101 0.733-5.5 1.1-7.2 1.1-1.733 0-4.2 0.083-7.4 0.25-2.733 0.066-5.017-0.1-6.85-0.5-1.434-0.333-3.283-1.017-5.55-2.05-2-0.967-3.65-1.533-4.95-1.7-0.934-0.134-2.133-0.2-3.6-0.2-1.267 0-2.983-0.184-5.15-0.55-5.566-0.967-9.4-2.05-11.5-3.25-1.167-0.667-2.083-1.25-2.75-1.75l-3.1-3.3c0.934-0.634 1.583-1.066 1.95-1.3 0.733-0.4 1.533-0.7 2.4-0.9 0.133-0.033 1.75-0.116 4.85-0.25 1.6-0.066 2.65-0.65 3.15-1.75 0.767-1.866 1.333-3.2 1.7-4 0.633-1.366 1.316-2.2 2.05-2.5 0.267-0.134 1.083-0.167 2.45-0.1 0.866 0.033 1.55-0.434 2.05-1.4 0.3-0.566 0.867-1.533 1.7-2.9 0.667-1.033 1.183-2.066 1.55-3.1 0.434-1.134 1.066-2.483 1.9-4.05l1.1-1.95z" fill="#84C5A2"/>
|
||||
<path d="m62.25 92.75c0-0.533 0.217-1.1 0.65-1.7l0.6-0.8 1.15 6.85 0.1 1.9c0.033 1.233 0.25 2.267 0.65 3.1 0.467 3.601 0.667 5.817 0.6 6.65-0.133 1.434 0.05 3 0.55 4.7 0.467 1.566 1.034 2.75 1.7 3.55 0.533 0.767 0.917 1.233 1.15 1.4 0.267 0.233 0.967 0.517 2.1 0.85 0.733 0.233 1.6 0.333 2.6 0.3 1.233-0.066 2.783 0.084 4.65 0.45 2.3 0.434 3.85 0.7 4.65 0.8 1 0.066 2.033 0.134 3.1 0.2 0.633 0.033 1.767 0.2 3.4 0.5 0.699 0.134 1.149 0.05 1.35-0.25 0.4-0.6 0.667-1.05 0.8-1.35 0.233-0.667 0.3-1.384 0.2-2.15-0.167-0.8-0.267-1.35-0.3-1.65-0.067-0.466-0.05-1.333 0.05-2.6 0.1-1.233 0.3-2.35 0.6-3.35l0.4-1.15 2.25 5c0.667 2 1.917 3 3.75 3 1.833 0.134 3.117 0.217 3.85 0.25 1.233 0.066 1.95-0.1 2.15-0.5s0.55-0.9 1.05-1.5l0.7-0.75 2.25-1.75h2.25c3.167-2.167 4.917-3.667 5.25-4.5 0.2-0.533 0.517-1.066 0.95-1.6l0.55-0.65c0.167-1 0.417-1.75 0.75-2.25 0.033-0.667 0.1-1.316 0.2-1.95 0.233-1.267 1-2.616 2.3-4.05 1.367-1.5 2.333-2.983 2.9-4.45 0.1-0.3 0.3-1.233 0.6-2.8l0.25-1.25c0.533 0.3 1.1 0.65 1.7 1.05 1.167 0.834 1.85 1.566 2.05 2.2 0.4 1.134 0.9 2 1.5 2.6 1 4.034 1.417 8.167 1.25 12.4l-7.1 4.55c-5.134 3.334-8.684 5.733-10.65 7.2-2.333 1.733-4.417 2.884-6.25 3.45-1.733 0.533-4.066 0.8-7 0.8-1.967 0-4.483 0.384-7.55 1.15-3.101 0.733-5.5 1.1-7.2 1.1-1.733 0-4.2 0.083-7.4 0.25-2.733 0.066-5.017-0.1-6.85-0.5-1.434-0.333-3.283-1.017-5.55-2.05-2-0.967-3.65-1.533-4.95-1.7-0.934-0.134-2.133-0.2-3.6-0.2-1.267 0-2.983-0.184-5.15-0.55-5.566-0.967-9.4-2.05-11.5-3.25l-0.1-0.05c1.934-0.134 3.633-0.417 5.1-0.851 1.434-0.533 2.6-0.899 3.5-1.1 0.367-0.066 1.5-0.184 3.4-0.35 0.633-0.067 1.25-0.45 1.85-1.15 2-2.333 3-4 3-5 0-0.434 0.316-0.983 0.95-1.65 0.7-0.767 1.133-1.383 1.3-1.85 0.1-0.3 0.167-0.85 0.2-1.65 0.066-0.666 0.333-1.533 0.8-2.6 0.267-0.6 0.783-1.417 1.55-2.45 0.4-0.5 0.55-1.184 0.45-2.05-0.333-2-0.5-3.417-0.5-4.25z" fill="#70AC8B"/>
|
||||
<path d="m61 121.75c-0.934-0.134-2.133-0.2-3.6-0.2-1.267 0-2.983-0.184-5.15-0.55-3.633-0.634-6.6-1.35-8.9-2.15 1.966 0.067 4.15 0.084 6.55 0.051 3.2-0.101 4.983-0.15 5.35-0.15 1.9 0 3.35-0.233 4.35-0.7 0.867-0.6 1.5-1.033 1.9-1.3 0.566-0.333 1-0.417 1.3-0.25 0.467 0.434 0.95 0.85 1.45 1.25 1.434 1.2 3.1 2.366 5 3.5 0.633 0.767 1.05 1.233 1.25 1.4 0.3 0.267 1.967 0.55 5 0.85 3.133 0.3 6.1 0.283 8.9-0.05 2.833-0.467 4.866-0.783 6.1-0.95 1.566-0.2 2.867-0.6 3.9-1.2l1.1-0.8c0.467 0.533 1.15 1 2.05 1.4 1.767 0.8 3.75 0.833 5.95 0.1 2.633-0.866 4.117-1.384 4.45-1.55 0.333-0.167 1.183-0.816 2.55-1.95 2.4-1.967 4.983-3.8 7.75-5.5 2.6-1.6 4.684-3.184 6.25-4.75 0.633-0.634 1.283-1.116 1.95-1.45l0.8-0.3c1.3 0.3 2.733 0.517 4.3 0.65l-0.05 0.35-7.1 4.55c-5.134 3.334-8.684 5.733-10.65 7.2-2.333 1.733-4.417 2.884-6.25 3.45-1.733 0.533-4.066 0.8-7 0.8-1.967 0-4.483 0.384-7.55 1.15-3.101 0.733-5.5 1.1-7.2 1.1-1.733 0-4.2 0.083-7.4 0.25-2.733 0.066-5.017-0.1-6.85-0.5-1.434-0.333-3.283-1.017-5.55-2.05-2-0.97-3.65-1.53-4.95-1.7z" fill="#578E6D"/>
|
||||
<radialGradient id="h" cx="107.51" cy="69.45" r="41.819" gradientTransform="matrix(1 0 0 -1 0 138.9)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#437052" stop-opacity=".4392" offset=".1765"/>
|
||||
<stop stop-color="#437052" stop-opacity=".4392" offset=".5569"/>
|
||||
</radialGradient>
|
||||
<path d="m88 45.05c-0.167-4.466-0.333-7.4-0.5-8.8-0.2-1.667-0.934-5.033-2.2-10.1l-1.8-7.15c3-2 5.333-3 7-3 0.733 0 1.5-0.2 2.3-0.6 0.333 0.5 0.65 1.117 0.95 1.85 0.633 1.467 1.283 4.517 1.95 9.15 0.6 4.033 1.7 7.317 3.3 9.85 1.767 2.8 3.25 5.717 4.45 8.75 0.633 1.533 1.066 2.783 1.3 3.75-0.566 0.733-1.066 1.483-1.5 2.25-1.367 2.533-2.617 7.033-3.75 13.5-0.4 2.4-0.066 4.783 1 7.15 0.533 1.199 1.117 2.149 1.75 2.85 1-2.5 1.667-5.5 2-9 0.2-1.967 0.75-3.217 1.65-3.75 1.199-0.7 1.982-1.45 2.35-2.25 0.6-1.333 1.033-2.2 1.3-2.6 0.4-0.6 0.884-1.4 1.45-2.4 2.434-4.3 3.934-6.95 4.5-7.95 2.233 3 3.733 5.233 4.5 6.7 0.1 0.167 0.733 1.5 1.9 4 0.6 1.267 1.3 2.35 2.1 3.25l2 2.25 0.15 5.95c0.166 4.3 0.449 7.233 0.85 8.8 0.233 0.866 0.566 3.15 1 6.85 0.4 3.467 0.983 6.434 1.75 8.9 0.833 2.7 1.383 5.884 1.65 9.55 0.1 1.834 0.133 3.4 0.1 4.7l-7.1 4.55c-5.134 3.334-8.684 5.733-10.65 7.2-2.233 1.667-4.217 2.783-5.95 3.35-1.667 0.567-3.816 0.867-6.45 0.9 1.533-1.233 2.884-2.866 4.051-4.9 1.133-1.966 1.583-3.333 1.35-4.1-0.133-0.467-0.733-1.184-1.8-2.15-1.134-1.066-2.033-2.35-2.7-3.85-3.133-7.2-5.383-12.45-6.75-15.75-0.7-1.733-1.483-4.083-2.35-7.05-0.801-2.733-1.601-4.967-2.4-6.7-0.833-1.9-1.117-4.65-0.85-8.25 0.3-3.8 0.333-6.05 0.1-6.75-0.467-1.433-0.783-2.617-0.95-3.55-0.1-0.7-0.283-2.517-0.55-5.45-0.167-1.767-0.333-5.083-0.5-9.95z" fill="url(#h)"/>
|
||||
<path d="m88 47.5l1.4 6.1c0.899 4.467 1.35 7.733 1.35 9.8 0 2.9 0.117 5.284 0.35 7.15 0.301 2.434 0.851 4.75 1.65 6.95 0.6 1.667 1.333 4.15 2.2 7.45 0.8 3.2 1.399 5.3 1.8 6.3 0.367 0.967 1.2 3.45 2.5 7.45 1.233 3.8 2.066 6.233 2.5 7.3 0.333 0.8 1.3 2.25 2.9 4.35 1.3 1.733 2 3.117 2.1 4.15 0.1 1.267-0.133 2.483-0.7 3.65-0.399 0.8-1.25 2.083-2.55 3.85-0.934 1.267-2.45 1.483-4.55 0.65-0.79-0.332-1.532-0.731-2.226-1.2 0.457 0.166 1.133 0.25 2.025 0.25 1.233 0 2.2-0.184 2.9-0.55 0.866-0.434 1.649-1.233 2.35-2.4 0.733-1.233 0.917-2.767 0.55-4.6-0.366-1.767-1.183-3.417-2.45-4.95-0.967-1.134-2-3.267-3.1-6.4-1.566-4.233-2.617-6.916-3.15-8.05-1.033-2.167-2.267-5.467-3.699-9.9-1.334-4.366-2.134-6.933-2.4-7.699-0.267-0.834-0.5-2.834-0.7-6-0.233-3.767-0.417-6.067-0.55-6.9-0.2-1.467-0.35-4.7-0.45-9.7l-0.051-7.051z" fill="#9DDABE"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
29
svg/prusa-research.svg
Normal file
@@ -0,0 +1,29 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 839 512" width="839" height="512">
|
||||
<title>Nový projekt</title>
|
||||
<style>
|
||||
.s0 { fill: #000000 }
|
||||
</style>
|
||||
<g id="Layer 1">
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m41.2 117h40.7q16.5 0 28.1-4.8 11.5-4.8 18.8-12.7 7.3-7.9 10.6-18.1 3.3-10.2 3.3-20.8 0-10.9-3.3-21-3.3-10-10.6-17.9-7.3-7.9-18.8-12.7-11.6-4.8-28.1-4.8h-79.3v175.8h38.6zm0-82.7h30.1q6.6 0 12.8 1 6.2 0.9 10.8 3.8 4.7 2.8 7.5 8 2.9 5.2 2.9 13.5 0 8.4-2.9 13.6-2.8 5.1-7.5 8-4.6 2.8-10.8 3.8-6.2 1-12.8 1h-30.1z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m205 111.3h38.7q14.5 0 20.9 6.4 6.4 6.4 8.4 20.2 1.5 10.6 2.2 22.2 0.7 11.5 3.9 19.9h38.7q-2.7-3.7-4.1-9-1.3-5.3-1.9-11.2-0.7-5.9-0.9-11.6-0.3-5.6-0.5-9.8-0.5-6.7-1.8-13.3-1.4-6.6-4.4-12.2-2.9-5.5-7.6-9.6-4.7-4.1-11.8-6v-0.5q14.8-5.9 21.3-17.3 6.5-11.3 6.5-26.8 0-10.1-3.5-18.8-3.6-8.8-10.4-15.4-6.8-6.7-16.2-10.5-9.5-3.8-21.3-3.8h-94.9v175.8h38.7zm0-77.1h42.4q13.3 0 19.9 5.8 6.7 5.8 6.7 18.6 0 13.3-6.7 19.2-6.6 5.9-19.9 5.9h-42.4z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m417.8 184q35.2 0 55.1-17.4 20-17.4 20-53.1v-109.3h-38.7v109.3q0 19.7-7.9 29-7.8 9.2-28.5 9.2-11.8 0-18.9-3.3-7-3.4-10.9-8.6-4-5.3-5.2-12.2-1.2-6.9-1.2-14.1v-109.3h-38.7v109.3q0 36 19.6 53.2 19.6 17.3 55.3 17.3z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m613.1 150q-5.2 2.4-11.1 3.3-5.9 0.9-11.1 0.9-7.6 0-14.8-1.9-7.1-1.8-12.4-5.7-5.3-3.8-8.5-9.9-3.2-6.2-3.2-15h-37.5q-0.2 16.2 6 28 6.1 11.8 16.6 19.5 10.4 7.6 24.1 11.2 13.7 3.6 28.2 3.6 18 0 31.7-4.2 13.6-4.2 22.9-11.7 9.2-7.5 13.9-17.9 4.6-10.3 4.6-22.4 0-14.8-6.2-24.2-6.3-9.5-14.9-15.2-8.7-5.7-17.4-8.2-8.7-2.6-13.7-3.6-16.5-4.2-26.7-6.9-10.2-2.7-16-5.4-5.8-2.7-7.7-5.9-2-3.2-2-8.4 0-5.7 2.5-9.4 2.4-3.7 6.2-6.1 3.8-2.5 8.5-3.5 4.7-1 9.4-1 7.1 0 13.2 1.3 6 1.2 10.7 4.2 4.6 2.9 7.5 8.1 2.8 5.2 3.3 13h37.4q0-15.2-5.7-25.9-5.8-10.8-15.7-17.6-9.8-6.9-22.5-10-12.7-3.1-26.5-3.1-11.8 0-23.6 3.2-11.9 3.2-21.2 9.9-9.4 6.6-15.2 16.6-5.7 9.9-5.7 23.5 0 12.1 4.5 20.6 4.6 8.5 12 14.1 7.3 5.7 16.7 9.2 9.4 3.6 19.2 6.1 9.6 2.7 19 4.9 9.3 2.2 16.7 5.2 7.4 2.9 12 7.4 4.5 4.4 4.5 11.5 0 6.7-3.4 11-3.5 4.3-8.6 6.8z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m719.2 140.9h65.7l13.3 39.1h40.2l-65.8-175.8h-39.6l-66.5 175.8h38.9zm33-93.3h0.5l22.2 64.5h-45.6z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m102.2 292.9q3.8-3.4 3.8-10.8 0-7.2-3.8-10.5-3.7-3.3-11.2-3.3h-23.8v27.9h23.8q7.5 0 11.2-3.3z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m565.2 292.9q3.7-3.4 3.7-10.8 0-7.2-3.7-10.5-3.8-3.3-11.3-3.3h-23.8v27.9h23.8q7.5 0 11.3-3.3z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m451.8 275.8h-0.2l-12.9 36.3h25.6z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m2 200.5h835.2v199.1h-835.2zm708.5 50.9h21.7v38h40v-38h21.8v98.9h-21.8v-42.7h-40v42.7h-21.7zm-103.4 29.3q3.3-9.5 9.6-16.6 6.2-7 15.3-11 9.1-4.1 20.4-4.1 8.2 0 15.5 2.4 7.2 2.4 13 6.9 5.7 4.5 9.5 11.1 3.7 6.7 4.7 15.2h-21.1q-0.5-3.7-2.5-6.8-1.9-3.1-4.8-5.5-2.9-2.3-6.6-3.7-3.7-1.3-7.7-1.3-7.3 0-12.4 2.9-5.2 2.8-8.4 7.6-3.1 4.8-4.6 10.9-1.5 6.1-1.5 12.6 0 6.2 1.5 12.1 1.5 5.9 4.6 10.6 3.2 4.7 8.4 7.5 5.1 2.9 12.4 2.9 10 0 15.6-6.1 5.6-6.1 6.9-16.1h21q-0.8 9.3-4.3 16.8-3.4 7.5-9.1 12.7-5.7 5.3-13.3 8.1-7.6 2.7-16.8 2.7-11.3 0-20.4-3.9-9.1-4-15.3-10.9-6.3-6.9-9.6-16.3-3.3-9.3-3.3-20.1 0-11.1 3.3-20.6zm-98.7-29.3h53.3q6.6 0 12 2.1 5.3 2.2 9.1 5.9 3.8 3.8 5.8 8.7 2 4.9 2 10.6 0 8.7-3.6 15.1-3.7 6.4-12 9.7v0.3q4 1.1 6.6 3.4 2.7 2.2 4.3 5.4 1.7 3.1 2.5 6.8 0.7 3.8 1 7.5 0.1 2.4 0.3 5.5 0.1 3.2 0.5 6.5 0.3 3.4 1.1 6.3 0.7 3 2.2 5.1h-21.7q-1.8-4.7-2.2-11.2-0.4-6.5-1.3-12.5-1.1-7.7-4.7-11.3-3.6-3.6-11.7-3.6h-21.8v38.6h-21.7zm-67.6 0h22.3l36.9 98.9h-22.5l-7.5-22h-37l-7.8 22h-21.8zm-116.5 0h73.9v18.3h-52.2v21.2h47.9v16.9h-47.9v24.2h53.3v18.3h-75zm-36.3 65.5q-2.5-2.5-6.7-4.1-4.1-1.7-9.4-2.9-5.3-1.3-10.7-2.8-5.5-1.4-10.8-3.4-5.2-2-9.4-5.2-4.1-3.2-6.7-8-2.6-4.7-2.6-11.5 0-7.6 3.3-13.3 3.2-5.6 8.5-9.3 5.3-3.7 11.9-5.5 6.7-1.8 13.3-1.8 7.8 0 14.9 1.7 7.1 1.7 12.7 5.6 5.5 3.9 8.8 9.9 3.2 6 3.2 14.6h-21q-0.3-4.4-1.9-7.3-1.6-2.9-4.2-4.6-2.6-1.7-6-2.4-3.4-0.6-7.4-0.6-2.7 0-5.3 0.5-2.6 0.6-4.8 1.9-2.1 1.4-3.5 3.5-1.4 2.1-1.4 5.3 0 2.9 1.1 4.7 1.1 1.8 4.4 3.3 3.2 1.5 9 3.1 5.7 1.5 15 3.8 2.8 0.6 7.7 2 4.9 1.5 9.7 4.7 4.9 3.2 8.4 8.5 3.6 5.3 3.6 13.6 0 6.8-2.7 12.7-2.6 5.8-7.8 10-5.2 4.2-12.9 6.6-7.7 2.3-17.8 2.3-8.2 0-15.8-2-7.7-2-13.6-6.3-5.9-4.3-9.4-10.9-3.4-6.7-3.3-15.8h21.1q0 5 1.8 8.4 1.8 3.5 4.7 5.6 3 2.2 7 3.2 4.1 1.1 8.4 1.1 2.9 0 6.2-0.5 3.3-0.5 6.2-1.9 2.9-1.4 4.9-3.8 1.9-2.4 1.9-6.2 0-4-2.6-6.5zm-142.8-65.5h73.9v18.3h-52.2v21.2h47.9v16.9h-47.9v24.2h53.3v18.3h-75zm-99.8 0h53.4q6.6 0 11.9 2.2 5.4 2.1 9.2 5.8 3.8 3.8 5.8 8.7 2 4.9 2 10.6 0 8.7-3.7 15.1-3.6 6.4-11.9 9.7v0.3q4 1.1 6.6 3.4 2.6 2.3 4.3 5.4 1.7 3.1 2.4 6.8 0.8 3.8 1.1 7.5 0.1 2.4 0.2 5.5 0.2 3.2 0.5 6.6 0.4 3.3 1.1 6.3 0.8 2.9 2.3 5h-21.7q-1.8-4.7-2.2-11.2-0.5-6.5-1.3-12.5-1.1-7.7-4.7-11.3-3.6-3.6-11.8-3.6h-21.7v38.6h-21.8z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m19.8 460.6q-3.9 0-6.5 1.6-2.2 1.4-4 3.9v-17.4h-9.4v48.7h9.3v-4.5q1.9 2.6 3.5 3.7 2.8 1.8 7.2 1.8 7.2 0 11.2-5.5 4-5.6 4-14 0-8.1-4.1-13.2-4-5.1-11.2-5.1zm3.3 27.1q-2 2.9-5.7 2.9-4.2 0-6.3-3-2-3.1-2-7.7 0-3.9 1-6.4 1.9-4.7 7.1-4.7 5.1 0 7 4.8 1 2.5 1 6.3 0 4.8-2.1 7.8z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m56.2 488l-7.8-26.6h-10.5l13.2 37.6q0.1 0.4-0.6 2.2-0.7 1.8-1.5 2.3-0.9 0.6-2.1 0.8-1.3 0.2-2.7 0.1l-1.2-0.1v7.6q1.6 0.1 2.3 0.1 0.8 0 2 0 6.3 0 8.4-2.5 2.1-2.4 5.7-12.7l12.3-35.4h-10z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m127.5 474.8q0 5.4-1 7.7-1.7 3.9-6.9 3.9-5.3 0-6.9-3.5-1.6-3.6-1.8-12.3v-1.7h-14.9v1.7q0 13.3 4.9 21 4.9 7.7 19.2 7.7 14.4 0 19.9-9.5 3.2-5.7 3.2-15.3v-52.4h-15.7z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m193.2 419.8q-16.2 0-24.7 8.8-11.4 10.4-11.4 31.1 0 20.2 11.4 31 8.5 8.8 24.7 8.8 16.1 0 24.7-8.8 11.4-10.8 11.4-31 0-20.7-11.4-31.1-8.6-8.8-24.7-8.8zm14.8 59.5q-5.5 6.9-14.8 6.9-9.4 0-14.9-6.9-5.6-6.9-5.6-19.6 0-12.8 5.6-19.7 5.5-6.9 14.9-6.9 9.3 0 14.8 7 5.5 6.9 5.5 19.6 0 12.7-5.5 19.6z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m293.3 460q-4.3-3.4-13-5.5l-13.2-3.1q-7.7-1.8-10-3.1-3.7-2-3.7-6 0-4.4 3.7-6.9 3.7-2.4 10-2.4 5.6 0 9.3 1.9 5.7 2.8 6.1 9.6h15.2q-0.5-12-9-18.3-8.5-6.3-20.5-6.3-14.5 0-21.9 6.7-7.5 6.7-7.5 16.8 0 11.1 7.6 16.3 4.5 3.1 16.6 5.8l8.1 1.8q7.2 1.5 10.5 3.5 3.3 2 3.3 5.8 0 6.4-6.8 8.7-3.5 1.2-9.2 1.2-9.5 0-13.4-4.6-2.1-2.6-2.9-7.7h-15q0 11.7 8.5 18.4 8.5 6.8 23.4 6.8 14.6 0 22.6-6.9 8-6.8 8-17.1 0-10.1-6.8-15.4z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m326.9 464.5h36.6v-13.1h-36.6v-16h39.9v-13.3h-55.2v75.3h57v-13.5h-41.7z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m380.9 497.4h15.6v-31.6h33.4v-13h-33.4v-17.4h38.1v-13.2h-53.7z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m524.4 427.9q-6.6-5.8-17.8-5.8h-32.3v75.3h15.6v-27.1h15.7q12.3 0 18.9-5.5 6.6-5.5 6.6-18.8 0-12.3-6.7-18.1zm-11.9 26.7q-3 2.8-8.4 2.8h-14.2v-22.2h14.2q5.4 0 8.4 2.5 3 2.5 3 8.4 0 5.8-3 8.5z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m602.5 491.2q-0.4-1.8-0.4-7v-5q0-7.9-2.1-11.8-2.2-3.9-7.4-6 6.2-2.1 8.9-7.3 2.7-5.2 2.7-10.5 0-4.5-1.4-8-1.4-3.4-3.8-6.3-2.9-3.5-7-5.3-4.2-1.8-11.9-1.9h-36v75.3h15.4v-29.5h15.3q6.6 0 9 2.4 2.4 2.4 2.5 9.6l0.1 7q0 3.3 0.7 6.5 0.3 1.5 1 4h17.3v-1.9q-2.2-1.4-2.9-4.3zm-18.5-37q-2.6 1.2-7.6 1.2h-16.9v-20.2h17.3q4.9 0 7.3 1.3 4.3 2.4 4.3 9.2 0 6.3-4.4 8.5z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m663.8 468.4q0 7.7-1.9 11.3-2.8 6.3-12.3 6.3-9.6 0-12.5-6.3-1.8-3.6-1.8-11.3v-46.3h-16v46.3q0 12 3.7 18.7 7 12.3 26.6 12.3 19.5 0 26.4-12.3 3.8-6.7 3.8-18.7v-46.3h-16z"/>
|
||||
<path id="<Path>" fill-rule="evenodd" class="s0" d="m746.9 460q-4.3-3.4-13-5.5l-13.2-3.1q-7.7-1.8-10-3.1-3.7-2-3.7-6 0-4.4 3.7-6.9 3.7-2.4 10-2.4 5.6 0 9.3 1.9 5.7 2.8 6.1 9.6h15.1q-0.4-12-8.9-18.3-8.5-6.3-20.5-6.3-14.5 0-21.9 6.7-7.5 6.7-7.5 16.8 0 11.1 7.6 16.3 4.5 3.1 16.6 5.8l8.1 1.8q7.2 1.5 10.5 3.5 3.3 2 3.3 5.8 0 6.4-6.8 8.7-3.5 1.2-9.2 1.2-9.5 0-13.4-4.6-2.1-2.6-2.9-7.7h-15q0 11.7 8.5 18.4 8.5 6.8 23.4 6.8 14.6 0 22.6-6.9 7.9-6.8 7.9-17.1 0-10.1-6.7-15.4z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m786.2 422.1l-26.9 75.3h16.5l5.1-15.5h27.7l5 15.5h17.1l-26.7-75.3zm-1 46.9l9.8-29.7 9.5 29.7z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.4 KiB |
31
svg/purelymail.svg
Normal file
@@ -0,0 +1,31 @@
|
||||
<svg width="192" height="192" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<!-- Created with SVG-edit - https://github.com/SVG-Edit/svgedit-->
|
||||
|
||||
<g class="layer">
|
||||
<title>Layer 3</title>
|
||||
<path d="m5.521525,15.813595l183.40726,-0.327651l-2.487703,153.965389l-182.200332,2.855393l1.280775,-156.493131z" fill="#ffffff" id="svg_7" stroke="#4c4c4c" stroke-dasharray="null" stroke-linecap="null" stroke-linejoin="null" stroke-width="12"/>
|
||||
<polygon fill="#ffffff" id="svg_16" stroke-width="12"/>
|
||||
<polygon fill="#ffffff" id="svg_17" stroke-width="12"/>
|
||||
<polygon fill="#ffffff" id="svg_18" stroke-width="12"/>
|
||||
<polygon fill="#ffffff" id="svg_19" stroke-width="12"/>
|
||||
<polygon fill="#ffffff" id="svg_20" stroke-width="12"/>
|
||||
<polygon fill="#ffffff" id="svg_21" stroke-width="12"/>
|
||||
<polygon fill="#ffffff" id="svg_22" stroke-width="12"/>
|
||||
<polygon fill="#ffffff" id="svg_25" stroke-width="12"/>
|
||||
<polygon fill="#ffffff" id="svg_26" stroke-width="12"/>
|
||||
<line fill="none" id="svg_30" stroke="#cccccc" stroke-dasharray="null" stroke-linecap="null" stroke-linejoin="null" stroke-width="9" x1="7.94331" x2="71.680493" y1="168.387412" y2="119.435089"/>
|
||||
<line fill="none" id="svg_31" stroke="#cccccc" stroke-dasharray="null" stroke-linecap="null" stroke-linejoin="null" stroke-width="9" x1="182.611667" x2="118.874481" y1="165.46188" y2="117.791969"/>
|
||||
</g>
|
||||
<g class="layer" display="inline">
|
||||
<title>Layer 2</title>
|
||||
<path d="m1.514762,13.947336l92.30845,134.939874l97.654719,-134.450606l-189.963169,-0.489268z" fill="#ffffff" id="svg_12" stroke="#310035" stroke-dasharray="null" stroke-linecap="null" stroke-linejoin="null" stroke-width="9"/>
|
||||
</g>
|
||||
<g class="layer">
|
||||
<title>Layer 5</title>
|
||||
<g id="svg_4">
|
||||
<circle cx="94.512235" cy="64.888373" fill="#ed9ff4" id="svg_5" r="45.947662" stroke="#000000" stroke-dasharray="null" stroke-linecap="null" stroke-linejoin="null" stroke-width="2"/>
|
||||
<circle cx="94.512235" cy="67.416129" fill="#000000" id="svg_6" r="27.421291" stroke="#000000" stroke-dasharray="null" stroke-linecap="null" stroke-linejoin="null" stroke-width="2"/>
|
||||
<circle cx="133.066652" cy="38.129528" fill="#ffffff" id="svg_10" r="2.236069" stroke="#000000" stroke-dasharray="null" stroke-linecap="null" stroke-linejoin="null" stroke-width="0" transform="matrix(2.36481, 0.460277, -0.437926, 2.4855, -222.707, -98.7136)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
567
svg/reolink.svg
Normal file
@@ -0,0 +1,567 @@
|
||||
<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="100%" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
|
||||
<path fill="#1788ED" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M254.742737,1.243854
|
||||
C280.687561,1.000000 306.375122,1.000000 332.531342,1.000000
|
||||
C335.444855,4.767678 332.161377,6.576005 330.120331,8.386792
|
||||
C323.897644,13.907436 317.795837,19.570431 311.512085,25.010353
|
||||
C300.695038,34.374763 290.102264,43.991856 279.427856,53.509052
|
||||
C265.648621,65.794472 251.854706,78.069565 238.201996,90.498703
|
||||
C237.010468,91.583466 235.370193,92.401245 235.264160,94.730522
|
||||
C233.701019,97.170906 231.470047,97.762512 229.187759,98.352608
|
||||
C199.921814,105.919395 175.131149,121.048859 154.683151,143.169983
|
||||
C143.002563,155.806305 133.551956,170.016556 126.955391,186.021866
|
||||
C125.825676,188.762894 124.781548,191.605698 122.372627,194.042389
|
||||
C117.185287,196.085022 114.710403,200.725143 111.033432,203.948532
|
||||
C95.562408,217.511032 80.230499,231.238510 64.959999,245.028183
|
||||
C53.995892,254.929062 42.971592,264.764191 31.958712,274.608765
|
||||
C23.796967,281.904663 15.898379,289.506958 7.350347,296.368378
|
||||
C5.605005,297.769348 3.835992,299.013000 1.266068,297.241577
|
||||
C1.000000,274.312439 1.000000,251.624878 1.000000,228.468658
|
||||
C6.543790,219.941528 14.629287,214.451233 21.682152,207.967682
|
||||
C29.374380,200.896393 37.245605,193.987488 45.092522,187.069290
|
||||
C60.166199,173.779663 75.086090,160.314377 90.072556,146.925980
|
||||
C100.972969,137.187912 111.817039,127.379539 122.720276,117.642738
|
||||
C137.213852,104.699692 151.625488,91.664642 166.227295,78.840538
|
||||
C173.214066,72.704384 180.128220,66.472595 187.028732,60.234200
|
||||
C202.432205,46.308708 217.940811,32.502468 233.423721,18.666550
|
||||
C237.509613,15.015305 241.843750,11.616801 245.633682,7.644464
|
||||
C248.183228,4.972206 250.917130,2.653356 254.742737,1.243854
|
||||
z"/>
|
||||
<path fill="#1980EF" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M254.531342,0.999997
|
||||
C254.523026,1.850646 254.230011,2.906923 253.542358,3.522058
|
||||
C233.486725,21.463133 213.352722,39.316696 193.316071,57.278881
|
||||
C178.842178,70.254257 164.555542,83.438705 150.065231,96.395523
|
||||
C132.979080,111.673485 115.724228,126.762642 98.617851,142.018143
|
||||
C87.582085,151.859863 76.731041,161.908569 65.708321,171.765121
|
||||
C51.470131,184.496964 37.126385,197.110687 22.864050,209.815628
|
||||
C18.148743,214.016022 13.501356,218.295410 8.908903,222.629791
|
||||
C6.715239,224.700180 4.517133,226.700439 1.338196,227.922028
|
||||
C1.000000,201.645767 1.000000,175.291550 1.000000,148.468658
|
||||
C6.725938,139.885422 14.849655,134.213699 22.037745,127.618233
|
||||
C29.742350,120.548836 37.661831,113.698708 45.469116,106.735313
|
||||
C60.716743,93.135841 75.967583,79.539284 91.185181,65.906631
|
||||
C101.826591,56.373550 112.451904,46.819820 123.077919,37.268429
|
||||
C135.430695,26.164890 147.749619,15.022576 160.235855,4.067756
|
||||
C161.514786,2.945679 163.214493,2.582725 164.743683,1.244220
|
||||
C194.687561,1.000000 224.375122,1.000000 254.531342,0.999997
|
||||
z"/>
|
||||
<path fill="#0F9FE9" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M506.747009,1.250805
|
||||
C512.054260,-0.102316 513.219177,1.779460 513.154785,6.945198
|
||||
C512.821655,33.647514 513.000000,60.356213 513.000000,87.531342
|
||||
C509.197083,95.557602 501.965729,99.828613 496.053528,105.292213
|
||||
C488.266479,112.488441 480.187836,119.389107 472.288727,126.472389
|
||||
C452.655090,144.078232 433.025696,161.688782 413.356323,179.254745
|
||||
C411.937561,180.521790 410.418671,181.422546 408.072754,181.130478
|
||||
C405.668762,180.283203 404.707703,178.513626 403.800293,176.732864
|
||||
C395.963348,161.353027 385.774963,147.751373 373.203156,135.909943
|
||||
C371.062958,133.894089 368.586670,132.029373 367.714478,128.575104
|
||||
C368.272430,123.154900 372.423248,120.681229 375.730103,117.863457
|
||||
C383.702972,111.069786 391.351471,103.919792 399.206268,96.999886
|
||||
C414.299835,83.702820 429.248077,70.238678 444.222992,56.808342
|
||||
C455.116302,47.038670 465.977875,37.227219 476.880798,27.467237
|
||||
C486.660858,18.712444 496.128876,9.592028 506.747009,1.250805
|
||||
z"/>
|
||||
<path fill="#09B2E5" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M512.732178,183.758224
|
||||
C513.000000,204.020889 513.000000,224.041794 513.000000,244.531342
|
||||
C510.312134,250.404404 505.287781,253.654999 501.018738,257.486145
|
||||
C485.176178,271.703705 469.394104,285.992920 453.442169,300.084503
|
||||
C436.367188,315.168121 419.405212,330.380859 402.405396,345.545654
|
||||
C387.761200,358.609070 373.211700,371.792114 358.577850,384.868256
|
||||
C341.591217,400.046753 324.643311,415.273590 307.582855,430.372162
|
||||
C296.501892,440.178894 285.584167,450.186493 274.544159,460.044922
|
||||
C260.407043,472.668915 246.440201,485.484833 232.095810,497.879486
|
||||
C226.322235,502.868286 221.222305,508.649017 214.256790,512.755676
|
||||
C205.645767,513.000000 197.291534,513.000000 188.468658,513.000000
|
||||
C185.440918,509.557953 187.943466,507.308289 190.119614,505.359711
|
||||
C197.055191,499.149384 203.875748,492.807678 210.883972,486.683960
|
||||
C218.640640,479.906158 226.278168,472.994629 233.987549,466.166077
|
||||
C249.410782,452.505005 264.696320,438.687225 280.055695,424.953064
|
||||
C287.984009,417.863647 296.216858,411.078979 303.643494,403.469330
|
||||
C306.171082,400.879517 310.561493,400.551544 311.839233,396.147064
|
||||
C316.740356,391.541809 323.052948,390.641174 328.638794,388.216034
|
||||
C343.752686,381.654144 357.190399,372.663605 369.558746,361.836975
|
||||
C383.775909,349.391937 394.941772,334.589417 403.669067,317.997620
|
||||
C412.262604,301.660156 417.420898,284.129089 419.738281,265.793518
|
||||
C419.968201,263.974274 419.994049,262.116974 421.587341,260.384827
|
||||
C427.546387,257.110413 431.397003,251.908981 436.106384,247.766464
|
||||
C447.322754,237.900299 458.451538,227.918640 469.516693,217.872971
|
||||
C481.807648,206.714447 494.295868,195.768387 506.676300,184.705154
|
||||
C508.355469,183.204620 510.144989,182.009445 512.732178,183.758224
|
||||
z"/>
|
||||
<path fill="#0F9EE9" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M26.264629,512.753601
|
||||
C19.198973,513.000000 12.389037,512.792969 5.600581,513.085144
|
||||
C2.066513,513.237183 0.832087,512.642761 0.880980,508.638000
|
||||
C1.136112,487.740387 1.000000,466.838043 1.000000,445.468658
|
||||
C7.719758,437.602814 15.564419,431.408752 22.922731,424.703674
|
||||
C30.900642,417.434052 39.037762,410.328674 47.097874,403.144867
|
||||
C62.104019,389.770233 77.048340,376.326233 92.053612,362.950195
|
||||
C96.765335,358.750000 101.646942,354.723755 106.127174,350.255066
|
||||
C108.106544,348.280853 110.349602,346.812531 113.355865,349.430298
|
||||
C114.898956,354.322174 114.266815,358.999207 114.330345,363.626038
|
||||
C114.451225,372.430481 114.220917,381.239441 114.430275,390.042450
|
||||
C114.600769,397.210938 117.755348,400.303802 124.849457,400.592651
|
||||
C130.987671,400.842651 137.146042,400.282104 143.655762,401.167847
|
||||
C147.360580,403.648376 146.154846,406.136108 144.105637,408.458740
|
||||
C141.126419,411.835327 137.457764,414.493683 134.101089,417.460175
|
||||
C116.537849,432.982056 99.195374,448.750763 81.650543,464.293304
|
||||
C70.701141,473.993164 59.939114,483.917328 48.954697,493.578766
|
||||
C41.614956,500.034515 35.005871,507.390137 26.264629,512.753601
|
||||
z"/>
|
||||
<path fill="#0DA7E8" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M26.468658,513.000000
|
||||
C27.036581,509.185913 30.273190,507.100891 32.919369,504.709015
|
||||
C51.749599,487.688507 70.675743,470.773529 89.638344,453.900208
|
||||
C106.615753,438.793335 123.687874,423.792969 140.689377,408.713104
|
||||
C142.289032,407.294220 144.043823,405.945740 144.913940,403.489594
|
||||
C146.123444,400.674133 148.475723,400.768036 150.577621,400.758972
|
||||
C176.541794,400.647156 202.506866,400.330536 228.894867,400.970001
|
||||
C232.871384,403.617340 233.300766,405.510010 230.806213,408.677307
|
||||
C228.843674,411.169159 226.187912,412.962250 223.874603,415.095490
|
||||
C213.252655,424.890930 202.392471,434.419647 191.616989,444.040619
|
||||
C177.003403,457.088470 162.451233,470.205444 147.768341,483.177094
|
||||
C138.063660,491.750671 128.554382,500.547791 118.781250,509.049103
|
||||
C117.397758,510.252533 115.791718,511.161835 114.259155,512.744263
|
||||
C84.979103,513.000000 55.958210,513.000000 26.468658,513.000000
|
||||
z"/>
|
||||
<path fill="#0CA9E7" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M513.000000,183.531342
|
||||
C506.569122,185.501831 503.196686,191.139847 498.677399,195.049606
|
||||
C480.107300,211.114929 461.921143,227.624557 443.623169,244.003677
|
||||
C438.922699,248.211273 434.301514,252.508896 429.701599,256.826630
|
||||
C427.871399,258.544586 426.146545,260.351959 423.192322,260.934937
|
||||
C419.794464,258.866547 420.665771,255.587173 420.738068,252.773560
|
||||
C421.127991,237.594971 419.623413,222.662720 415.736206,207.966614
|
||||
C413.781281,200.575790 411.094452,193.448990 408.386078,186.320709
|
||||
C407.693695,184.498383 406.570496,182.693863 407.919922,180.307098
|
||||
C412.985352,178.014755 415.947632,173.755615 419.664368,170.541214
|
||||
C433.983582,158.157410 447.845123,145.245575 461.929504,132.588699
|
||||
C478.112732,118.045708 494.348511,103.561134 510.580017,89.072029
|
||||
C511.057190,88.646103 511.743561,88.454559 512.666199,88.076874
|
||||
C513.000000,119.687561 513.000000,151.375122 513.000000,183.531342
|
||||
z"/>
|
||||
<path fill="#05C0E3" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M384.255981,512.755859
|
||||
C363.979095,513.000000 343.958221,513.000000 323.468658,513.000000
|
||||
C320.920197,510.602051 322.116943,508.737000 323.996094,507.007996
|
||||
C336.835815,495.194305 349.924011,483.659088 362.950409,472.052979
|
||||
C373.744049,462.436218 384.447754,452.711670 395.215424,443.062775
|
||||
C409.690887,430.091370 424.250854,417.212158 438.711670,404.225922
|
||||
C449.591431,394.455658 460.470642,384.683014 471.393677,374.961243
|
||||
C483.306580,364.358429 494.927002,353.426575 507.130463,343.150330
|
||||
C508.677704,341.847443 510.186371,340.455078 512.726013,341.766266
|
||||
C513.000000,360.354218 513.000000,378.708466 513.000000,397.531342
|
||||
C505.238922,407.644348 495.135010,414.816864 486.155670,423.164490
|
||||
C478.510681,430.271606 470.594360,437.126740 462.750488,444.038757
|
||||
C447.682251,457.316833 432.798004,470.803741 417.793152,484.154938
|
||||
C410.478180,490.663757 403.072937,497.089142 395.976044,503.837067
|
||||
C392.455627,507.184296 388.835449,510.281464 384.255981,512.755859
|
||||
z"/>
|
||||
<path fill="#1C78F1" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M164.531342,1.000000
|
||||
C163.918091,4.790926 160.694946,6.829067 158.026199,9.232719
|
||||
C146.686066,19.446375 135.230972,29.532310 123.827232,39.675438
|
||||
C109.200203,52.685551 94.562759,65.684052 79.966759,78.728912
|
||||
C69.326180,88.238701 58.741394,97.810944 48.138882,107.363274
|
||||
C34.207916,119.914360 20.302740,132.494217 6.326701,144.994873
|
||||
C4.993608,146.187241 3.236600,146.905655 1.338196,147.922043
|
||||
C1.000000,125.312439 1.000000,102.624878 1.000000,79.468658
|
||||
C3.680871,73.607368 8.697011,70.369186 12.957517,66.549774
|
||||
C28.769938,52.374382 44.686752,38.316055 60.411747,24.040842
|
||||
C66.921295,18.131447 73.694687,12.513441 80.016571,6.390398
|
||||
C82.182350,4.292752 84.936928,3.031007 87.744209,1.244114
|
||||
C113.354225,1.000000 138.708450,1.000000 164.531342,1.000000
|
||||
z"/>
|
||||
<path fill="#08B5E5" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M214.468658,513.000000
|
||||
C214.864227,509.482880 217.815857,507.588531 220.227951,505.406860
|
||||
C235.877441,491.252197 251.607544,477.186157 267.368988,463.155945
|
||||
C287.720673,445.039703 308.163116,427.025330 328.494202,408.886078
|
||||
C339.654816,398.928711 350.609741,388.740936 361.760284,378.772125
|
||||
C375.879486,366.149353 390.138123,353.682587 404.270813,341.074768
|
||||
C415.059601,331.450012 425.709839,321.670105 436.486816,312.032013
|
||||
C450.975800,299.074188 465.531952,286.191498 480.050598,273.266754
|
||||
C489.855652,264.538147 499.637390,255.783340 509.456879,247.071014
|
||||
C510.309509,246.314514 511.366669,245.788437 512.664429,245.077652
|
||||
C513.000000,255.020889 513.000000,265.041779 513.000000,275.531342
|
||||
C507.258698,284.560577 498.633209,290.200256 491.258026,297.064331
|
||||
C483.604645,304.187225 475.687195,311.067291 467.829956,317.990570
|
||||
C452.736664,331.289795 437.804932,344.773438 422.799316,358.172089
|
||||
C411.885345,367.917267 401.034790,377.741150 390.115997,387.482819
|
||||
C375.725677,400.321808 361.372742,413.203918 346.959320,426.017334
|
||||
C336.148529,435.628113 325.427887,445.348175 314.645081,454.994019
|
||||
C300.147766,467.962738 285.804077,481.103577 271.103790,493.846436
|
||||
C267.085083,497.330048 263.233643,501.013550 259.298615,504.593628
|
||||
C255.949554,507.640594 252.633301,510.580933 248.256744,512.755737
|
||||
C236.979111,513.000000 225.958206,513.000000 214.468658,513.000000
|
||||
z"/>
|
||||
<path fill="#1297EB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M506.531342,1.000000
|
||||
C507.122131,3.662830 505.377319,5.289742 503.631042,6.837972
|
||||
C486.600922,21.936901 469.502716,36.959259 452.516296,52.107048
|
||||
C441.353760,62.061352 430.399811,72.249443 419.249756,82.217995
|
||||
C405.131256,94.840538 390.876678,107.310867 376.758362,119.933632
|
||||
C374.042267,122.361992 371.684540,125.191154 368.991943,128.156830
|
||||
C367.127686,129.513153 365.650238,128.919037 364.274597,127.827621
|
||||
C352.700470,118.644753 340.257751,110.913849 326.597687,105.202423
|
||||
C325.672363,104.815552 324.997864,104.047424 324.237183,102.898438
|
||||
C323.021515,99.501053 324.730804,97.411118 326.774750,95.625031
|
||||
C337.647583,86.123940 348.237061,76.306480 359.085724,66.778694
|
||||
C366.441254,60.318726 373.677399,53.723961 380.992523,47.217777
|
||||
C396.988190,32.990997 412.797546,18.555140 428.847565,4.387886
|
||||
C430.254974,3.145579 432.062225,2.655539 433.738953,1.245447
|
||||
C458.020905,1.000000 482.041779,1.000000 506.531342,1.000000
|
||||
z"/>
|
||||
<path fill="#06BBE4" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M513.000000,341.531342
|
||||
C509.105530,343.375275 506.443512,346.503540 503.528351,349.105927
|
||||
C482.589996,367.797852 461.843933,386.704865 440.971832,405.471283
|
||||
C422.201843,422.347565 403.353790,439.136993 384.531372,455.954926
|
||||
C364.841278,473.548126 345.150299,491.140381 325.420319,508.688782
|
||||
C324.261047,509.719818 323.131470,510.611267 323.026428,512.640991
|
||||
C309.645782,513.000000 296.291534,513.000000 282.468658,513.000000
|
||||
C279.983368,510.419769 281.835876,508.689697 283.378723,506.945068
|
||||
C288.359192,501.313354 294.309814,496.708344 299.882202,491.723633
|
||||
C307.808777,484.633026 315.795135,477.600800 323.727631,470.515472
|
||||
C338.854736,457.003815 353.949982,443.456818 369.090332,429.959534
|
||||
C379.888275,420.333374 390.611938,410.617493 401.375610,400.950836
|
||||
C415.847076,387.954285 430.381561,375.026093 444.924835,362.108765
|
||||
C455.365662,352.835266 465.721039,343.461517 476.097656,334.113800
|
||||
C486.230591,324.985535 496.474060,315.981567 506.603882,306.850067
|
||||
C508.271973,305.346405 510.119232,304.240570 512.730408,305.762390
|
||||
C513.000000,317.687561 513.000000,329.375122 513.000000,341.531342
|
||||
z"/>
|
||||
<path fill="#07B8E4" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M513.000000,305.531342
|
||||
C507.299103,307.102600 504.304565,312.056885 500.390167,315.436127
|
||||
C485.677765,328.137024 471.518524,341.475983 457.025482,354.434387
|
||||
C439.936157,369.714203 422.675415,384.802185 405.566162,400.059906
|
||||
C394.528534,409.903046 383.680573,419.958801 372.655792,429.816589
|
||||
C358.415009,442.550018 344.046112,455.140167 329.801300,467.869171
|
||||
C318.773529,477.723511 307.826477,487.668732 296.894012,497.628876
|
||||
C291.761444,502.304962 285.848724,506.211639 282.076782,512.666382
|
||||
C270.979095,513.000000 259.958221,513.000000 248.468658,513.000000
|
||||
C250.495438,507.419617 256.006165,504.753540 260.114227,500.777496
|
||||
C267.742584,493.394348 275.977173,486.639832 283.914734,479.573456
|
||||
C299.048187,466.101105 314.169983,452.615540 329.258698,439.093170
|
||||
C340.021362,429.447693 350.686890,419.693787 361.459198,410.059174
|
||||
C375.941956,397.106049 390.503754,384.241333 404.997375,371.300323
|
||||
C415.529694,361.896301 425.986938,352.408203 436.512848,342.996948
|
||||
C451.369446,329.713684 466.256958,316.464996 481.134277,303.204895
|
||||
C490.681366,294.695587 500.226013,286.183411 509.799713,277.704102
|
||||
C510.527954,277.059082 511.479523,276.666199 512.663696,276.078064
|
||||
C513.000000,285.687561 513.000000,295.375122 513.000000,305.531342
|
||||
z"/>
|
||||
<path fill="#1296EB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M112.264664,348.768860
|
||||
C106.734238,351.100128 103.717018,355.765625 99.698425,359.156982
|
||||
C88.411591,368.682220 77.723946,378.914154 66.708443,388.765045
|
||||
C52.479580,401.489532 38.143501,414.094055 23.892879,426.794342
|
||||
C19.057413,431.103790 14.325458,435.530090 9.577033,439.936218
|
||||
C7.256536,442.089417 5.025788,444.348633 1.361823,444.974274
|
||||
C1.000000,425.312439 1.000000,405.624878 1.000000,385.468658
|
||||
C3.995224,379.654999 8.963995,376.143127 13.369843,372.215485
|
||||
C28.730925,358.521790 43.995689,344.720581 59.367706,331.040283
|
||||
C74.740517,317.359253 90.016029,303.569336 105.431877,289.936859
|
||||
C108.037376,287.632812 110.709518,286.255432 113.725189,290.014709
|
||||
C114.851379,308.422607 114.329224,326.444702 114.178940,344.464142
|
||||
C114.166557,345.948486 113.942986,347.454407 112.264664,348.768860
|
||||
z"/>
|
||||
<path fill="#02C6E2" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M384.468658,513.000000
|
||||
C387.113739,506.628418 393.375488,503.305084 398.239960,498.696686
|
||||
C408.833344,488.660919 420.026794,479.260071 430.934357,469.554077
|
||||
C446.057861,456.096588 461.153870,442.608185 476.242767,429.111938
|
||||
C486.510345,419.928192 496.749237,410.712372 506.991547,401.500427
|
||||
C508.579834,400.071960 509.847443,398.173889 512.640503,398.024963
|
||||
C513.000000,418.687561 513.000000,439.375122 513.000000,460.531342
|
||||
C506.263519,468.380707 498.469299,474.631836 491.072754,481.294159
|
||||
C482.803497,488.742615 474.434479,496.086151 466.205078,503.580383
|
||||
C462.760773,506.717010 459.283142,509.785675 455.253632,512.756042
|
||||
C431.645782,513.000000 408.291534,513.000000 384.468658,513.000000
|
||||
z"/>
|
||||
<path fill="#158EEC" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M1.000000,297.468658
|
||||
C4.947152,296.925507 7.187331,293.799927 9.675172,291.600525
|
||||
C24.223131,278.739227 38.469902,265.538055 52.945431,252.593781
|
||||
C70.014160,237.330536 87.249626,222.253845 104.331978,207.005722
|
||||
C109.634895,202.272217 114.431427,196.959549 120.897896,193.130646
|
||||
C123.335396,194.909973 122.345856,196.997391 121.772499,199.067902
|
||||
C118.979454,209.154251 116.018898,219.182953 114.795769,229.652344
|
||||
C114.097412,235.629929 114.820183,241.626877 113.905411,247.960968
|
||||
C106.294151,256.295166 97.862762,263.261871 89.763008,270.578522
|
||||
C78.552216,280.705444 67.270683,290.756500 55.960346,300.772949
|
||||
C41.293564,313.761871 26.965111,327.130890 12.051253,339.841278
|
||||
C10.401687,341.247131 8.940508,342.846466 7.323579,344.281677
|
||||
C5.635565,345.780060 3.864290,346.988159 1.270652,345.242432
|
||||
C1.000000,329.312439 1.000000,313.624878 1.000000,297.468658
|
||||
z"/>
|
||||
<path fill="#0BADE6" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M114.468658,513.000000
|
||||
C113.877907,510.343811 115.615059,508.718048 117.357971,507.172516
|
||||
C134.350006,492.105133 151.402740,477.105988 168.360321,462.000000
|
||||
C179.256104,452.293945 189.990356,442.406799 200.855667,432.666229
|
||||
C208.877731,425.474518 217.034454,418.432831 225.043854,411.227264
|
||||
C227.343323,409.158569 230.178436,407.436707 230.967529,403.726135
|
||||
C231.933121,400.795837 234.234253,400.778717 236.346710,400.768738
|
||||
C244.916702,400.728271 253.504822,400.063629 262.046021,401.337189
|
||||
C267.326080,402.124481 272.537628,399.954559 278.236511,401.050171
|
||||
C281.924042,404.045746 282.112122,405.938507 279.186646,408.809387
|
||||
C270.162842,417.664734 260.500610,425.826813 251.099411,434.264740
|
||||
C240.094620,444.141907 229.101288,454.038330 217.985840,463.795105
|
||||
C206.247879,474.098328 194.864853,484.799896 182.980881,494.942596
|
||||
C179.065445,498.284302 175.381973,501.902679 171.574890,505.372437
|
||||
C168.479675,508.193390 165.426758,510.889923 161.266724,512.753052
|
||||
C145.645767,513.000000 130.291550,513.000000 114.468658,513.000000
|
||||
z"/>
|
||||
<path fill="#148EEC" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M235.055649,94.766983
|
||||
C232.259460,92.119438 234.656555,90.816017 235.949890,89.621559
|
||||
C244.002396,82.184746 252.122330,74.819969 260.281433,67.499886
|
||||
C268.313263,60.293995 276.423920,53.176022 284.489532,46.007721
|
||||
C299.008667,33.103840 313.525574,20.197447 328.027618,7.274379
|
||||
C329.876648,5.626650 331.955902,4.151088 332.922974,1.334001
|
||||
C350.354218,1.000000 367.708466,1.000000 385.531342,1.000000
|
||||
C388.267731,3.600950 386.865417,5.702733 384.881317,7.435892
|
||||
C368.374725,21.854673 352.205292,36.652073 335.803833,51.189117
|
||||
C324.995544,60.768784 314.229828,70.410492 303.559662,80.151848
|
||||
C298.662964,84.622322 293.611420,88.922783 288.434692,93.672714
|
||||
C283.744019,94.943970 279.510803,93.481194 275.225800,93.365761
|
||||
C263.931549,93.061508 252.729340,93.972153 241.576187,95.652924
|
||||
C239.447311,95.973740 237.319412,96.530426 235.055649,94.766983
|
||||
z"/>
|
||||
<path fill="#1491EC" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M288.954376,92.657654
|
||||
C289.749420,88.509201 292.848358,86.493179 295.377472,84.228905
|
||||
C315.760651,65.980209 336.273682,47.876671 356.723450,29.702227
|
||||
C365.895844,21.550369 375.009705,13.332700 384.163300,5.159652
|
||||
C385.210785,4.224378 385.845520,3.124409 385.974274,1.361549
|
||||
C401.687561,1.000000 417.375122,1.000000 433.531342,1.000000
|
||||
C432.917847,4.791292 429.694275,6.829563 427.025238,9.233513
|
||||
C415.683838,19.448433 404.227631,29.535835 392.822479,39.680038
|
||||
C378.193604,52.691544 363.385071,65.509422 349.023682,78.809929
|
||||
C341.020294,86.222145 332.026917,92.605400 325.084167,101.560852
|
||||
C323.506073,103.487587 321.682587,103.200485 319.933838,102.599701
|
||||
C310.996643,99.529366 301.810852,97.410072 292.611725,95.333389
|
||||
C291.144440,95.002159 289.686432,94.636497 288.954376,92.657654
|
||||
z"/>
|
||||
<path fill="#1391EC" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M1.000000,345.468658
|
||||
C7.291076,343.596863 10.582328,338.094604 14.974538,334.292023
|
||||
C33.675991,318.101166 52.004341,301.478424 70.421684,284.960724
|
||||
C81.425385,275.091949 92.363785,265.149963 103.280319,255.184769
|
||||
C105.744591,252.935257 108.280029,250.824005 111.507553,249.086426
|
||||
C113.858955,249.884079 114.113541,251.736526 114.173912,253.573975
|
||||
C114.511459,263.848175 114.501678,274.124664 114.179474,284.399261
|
||||
C114.132729,285.889893 113.943108,287.394928 112.275925,288.749023
|
||||
C105.655800,290.598450 102.313004,296.005066 97.910873,299.817413
|
||||
C79.215096,316.008484 60.883919,332.621552 42.469131,349.135712
|
||||
C31.467010,359.002319 20.540379,368.953400 9.617567,378.907928
|
||||
C7.154554,381.152618 4.651246,383.306549 1.336361,384.921967
|
||||
C1.000000,371.979095 1.000000,358.958221 1.000000,345.468658
|
||||
z"/>
|
||||
<path fill="#1E71F2" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M87.531342,1.000000
|
||||
C84.880219,7.373774 78.617004,10.702546 73.748306,15.314901
|
||||
C62.662807,25.816740 51.145889,35.875862 39.577454,45.851841
|
||||
C26.891054,56.791897 15.238242,68.919724 1.335592,78.922363
|
||||
C1.000000,54.066456 1.062449,29.132542 0.914596,4.199875
|
||||
C0.897650,1.342292 1.604711,0.915526 4.283667,0.927064
|
||||
C31.876265,1.045900 59.469574,1.000000 87.531342,1.000000
|
||||
z"/>
|
||||
<path fill="#0AB0E6" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M161.468658,513.000000
|
||||
C163.415787,508.035309 168.220367,505.347595 172.043335,501.803589
|
||||
C183.127167,491.528534 194.586563,481.658966 205.882706,471.612457
|
||||
C220.655380,458.474060 235.432999,445.341034 250.169708,432.162384
|
||||
C259.708557,423.632019 269.193054,415.040497 278.646606,406.415802
|
||||
C279.312805,405.808044 279.521606,404.699005 279.971680,403.471466
|
||||
C280.788910,400.819550 282.961029,400.444550 284.812897,400.178894
|
||||
C292.514862,399.074036 300.087189,397.362396 307.676056,395.708130
|
||||
C309.289703,395.356384 310.949402,395.024658 312.711548,396.537720
|
||||
C310.242279,402.860657 304.362244,405.850861 299.927795,410.180481
|
||||
C292.583221,417.351471 284.548157,423.811493 276.872009,430.647400
|
||||
C261.392487,444.432617 245.932480,458.239990 230.514725,472.094238
|
||||
C219.411026,482.071869 208.335785,492.082672 197.362259,502.202789
|
||||
C194.015594,505.289154 189.346024,507.244141 188.070145,512.653809
|
||||
C179.312439,513.000000 170.624863,513.000000 161.468658,513.000000
|
||||
z"/>
|
||||
<path fill="#01CCE0" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M455.468658,513.000000
|
||||
C455.439941,510.407684 456.919189,508.502716 458.845978,506.789978
|
||||
C470.857880,496.112427 482.598480,485.113129 494.921631,474.809631
|
||||
C500.564972,470.091187 504.744202,463.402954 512.638184,461.025757
|
||||
C513.000000,477.268097 512.907410,493.537262 513.087036,509.803345
|
||||
C513.118591,512.658875 512.399597,513.095947 509.721039,513.074585
|
||||
C491.794098,512.931091 473.865417,513.000000 455.468658,513.000000
|
||||
z"/>
|
||||
<path fill="#F8F9F9" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M313.261597,396.633667
|
||||
C302.366943,399.389740 291.744141,401.939972 280.411316,403.005676
|
||||
C263.974457,403.152252 247.948654,403.184631 231.461365,403.303955
|
||||
C220.887192,403.316223 210.774612,403.211395 200.661789,403.173370
|
||||
C182.417267,403.104767 164.172607,403.076111 145.463684,403.099213
|
||||
C138.010468,403.112610 131.021271,403.082458 124.032761,402.995697
|
||||
C116.287285,402.899536 112.040359,398.654205 112.010376,390.882660
|
||||
C111.957695,377.231293 111.978325,363.579651 111.899597,349.463806
|
||||
C111.876678,329.309082 111.922401,309.618591 111.899437,289.463867
|
||||
C111.876778,275.975830 111.922813,262.952057 111.900269,249.463989
|
||||
C111.888458,238.491501 112.082893,227.935760 114.228561,217.654007
|
||||
C115.912209,209.586197 118.802635,201.770203 121.203583,193.461105
|
||||
C128.319748,175.959366 137.126755,159.892365 149.336105,145.803177
|
||||
C172.049179,119.593094 200.246277,102.564186 234.402496,94.611923
|
||||
C252.421295,91.230347 270.155914,89.877716 288.485779,92.264374
|
||||
C300.935455,94.613602 312.894501,97.156158 324.635681,101.867050
|
||||
C340.604156,108.667213 355.208771,117.087738 368.510498,128.320541
|
||||
C385.012665,143.011856 398.289581,159.775085 408.014404,179.705566
|
||||
C419.928009,205.439117 424.655365,232.149628 422.792908,260.530792
|
||||
C420.892548,275.508972 418.258209,289.867126 412.707611,303.505707
|
||||
C393.913818,349.684784 360.794403,380.600403 313.261597,396.633667
|
||||
z"/>
|
||||
<path fill="#0DA8E7" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M367.844299,218.719299
|
||||
C375.955261,245.228134 373.593903,270.858978 360.746246,294.782715
|
||||
C340.901672,331.735565 309.439636,350.786774 267.295990,351.437897
|
||||
C251.496704,351.682007 235.689407,351.406311 219.442108,351.201752
|
||||
C216.770355,347.934784 219.181427,346.082184 221.023178,344.336456
|
||||
C227.954987,337.766052 235.281342,331.629395 242.406586,325.270844
|
||||
C243.536041,324.262939 244.444061,323.174561 245.653839,321.777191
|
||||
C252.174362,319.877167 258.512787,320.808014 264.789612,320.729736
|
||||
C277.277985,320.573944 289.120148,318.236115 300.251068,312.245026
|
||||
C321.123016,301.010834 333.384186,283.756348 337.727264,260.548889
|
||||
C338.962494,253.948318 338.113220,247.274948 339.376862,240.363739
|
||||
C346.335297,232.776733 354.073120,226.586136 361.408508,219.957596
|
||||
C363.173218,218.362961 364.986298,216.855743 367.844299,218.719299
|
||||
z"/>
|
||||
<path fill="#1492EC" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M164.596436,240.265381
|
||||
C166.078293,195.532028 203.146271,153.357117 247.955994,145.076065
|
||||
C255.905334,143.607010 263.969910,142.747086 272.548584,143.154144
|
||||
C275.354370,145.887512 273.760742,148.026840 271.837921,149.668335
|
||||
C260.383911,159.446594 249.963211,170.418777 237.709869,179.265961
|
||||
C236.295334,180.287247 235.227524,181.431335 234.640732,183.447586
|
||||
C234.294922,184.421249 234.015305,185.085846 233.455154,185.439621
|
||||
C223.964432,191.433487 216.107529,199.284058 208.122223,207.520981
|
||||
C205.285675,208.022354 203.765030,209.816650 202.134415,211.475540
|
||||
C192.489685,221.287567 181.993927,230.157990 171.539734,239.073227
|
||||
C169.579834,240.744598 167.527313,242.134888 164.596436,240.265381
|
||||
z"/>
|
||||
<path fill="#11A0E9" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M245.788681,322.656677
|
||||
C243.951645,327.804535 239.758942,330.612457 236.119019,333.911285
|
||||
C231.226624,338.345276 226.256409,342.693939 221.398865,347.165344
|
||||
C220.461853,348.027863 219.889954,349.287048 219.074036,350.699585
|
||||
C204.384399,351.075592 189.769699,351.210419 175.156555,351.112976
|
||||
C168.327667,351.067444 163.990463,346.699219 163.887970,339.814301
|
||||
C163.734726,329.519348 163.867477,319.220154 163.965332,308.460999
|
||||
C171.119446,299.070343 180.131989,292.207733 188.707718,284.891022
|
||||
C190.657990,283.227081 192.946274,283.068634 195.307739,285.250732
|
||||
C197.129089,292.810425 196.165115,300.128113 196.331116,307.399200
|
||||
C196.559921,317.422455 198.394684,318.942627 208.183685,319.772827
|
||||
C218.794235,320.672638 229.392212,320.441742 239.995499,320.719940
|
||||
C241.952866,320.771301 244.032440,320.613037 245.788681,322.656677
|
||||
z"/>
|
||||
<path fill="#1396EB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M194.034027,284.844116
|
||||
C188.858627,286.186218 186.040009,290.107178 182.565216,293.033447
|
||||
C177.886124,296.973907 173.519135,301.285278 169.025497,305.445343
|
||||
C167.784592,306.594147 166.377304,307.429077 164.393799,307.927429
|
||||
C163.713379,285.634491 163.638748,263.269928 164.231506,240.450592
|
||||
C169.293396,239.630157 172.114548,235.742172 175.408707,232.933716
|
||||
C185.076065,224.691788 194.425659,216.077545 203.931534,207.644989
|
||||
C204.648087,207.009354 205.615875,206.656906 206.813538,206.113098
|
||||
C208.982361,208.241974 207.576324,210.149994 206.511261,211.960159
|
||||
C199.251495,224.298691 196.107101,237.646774 196.319061,251.905914
|
||||
C196.449677,260.692902 196.434998,269.484863 196.278549,278.272644
|
||||
C196.238480,280.524323 196.648788,283.008759 194.034027,284.844116
|
||||
z"/>
|
||||
<path fill="#11A0E9" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M368.147339,218.556183
|
||||
C362.018188,220.190643 358.990082,225.676453 354.543640,229.174133
|
||||
C350.164398,232.618927 346.380859,236.836594 341.277466,239.938538
|
||||
C337.163055,239.941925 337.699768,236.622864 337.273560,234.551376
|
||||
C335.100739,223.991028 330.737183,214.501923 324.365967,205.844910
|
||||
C322.585480,203.425674 320.508575,201.325912 318.456177,199.176804
|
||||
C316.979797,197.630829 315.264771,196.228790 315.145020,193.460358
|
||||
C318.555328,187.702774 324.203094,184.627380 328.453766,180.107040
|
||||
C330.330994,178.110718 332.744598,176.573151 334.718048,174.588547
|
||||
C336.115906,173.182785 337.582184,171.770950 340.237427,172.660095
|
||||
C354.131592,185.253281 362.993683,200.584198 368.147339,218.556183
|
||||
z"/>
|
||||
<path fill="#129AEA" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M340.419006,172.456909
|
||||
C333.479462,178.934753 326.368591,185.125992 319.224579,191.278778
|
||||
C318.487335,191.913742 317.552826,192.319702 316.376526,192.910370
|
||||
C314.335571,194.203705 312.827545,193.348846 311.488098,192.373108
|
||||
C302.958954,186.159988 293.583405,181.732025 283.449127,178.858200
|
||||
C282.635406,178.627426 282.023987,178.038330 281.302490,177.053711
|
||||
C280.297882,174.177643 281.248108,172.043732 283.070801,170.452591
|
||||
C290.551514,163.922302 297.682495,156.995377 305.706085,150.529373
|
||||
C319.014404,155.084778 330.328217,162.522125 340.419006,172.456909
|
||||
z"/>
|
||||
<path fill="#1396EB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M305.665253,150.131256
|
||||
C304.743530,155.776184 299.873566,158.210587 296.342072,161.748154
|
||||
C291.724854,166.373322 285.852417,169.709000 282.139099,175.728180
|
||||
C280.822815,177.832153 279.144287,177.983948 277.175568,177.775513
|
||||
C264.536377,176.437439 252.289719,177.973114 240.472473,182.806686
|
||||
C238.383926,183.660950 236.207993,184.885025 233.429733,183.564102
|
||||
C233.272186,180.462662 235.435165,178.964722 237.258270,177.345032
|
||||
C248.150223,167.668365 259.110565,158.068726 270.026489,148.418945
|
||||
C271.389160,147.214340 272.777710,145.965347 272.968079,143.605347
|
||||
C284.179779,143.535400 294.928833,145.901947 305.665253,150.131256
|
||||
z"/>
|
||||
<path fill="#F8F9F9" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M232.879364,183.537567
|
||||
C244.850479,177.752792 257.082520,174.312057 270.213959,175.025070
|
||||
C273.863708,175.223236 277.497284,175.719421 281.564270,176.057083
|
||||
C294.282410,179.303482 305.729736,184.260025 315.724426,192.872559
|
||||
C327.773651,204.228821 336.205383,217.382065 339.507446,233.500854
|
||||
C339.904663,235.439880 340.207977,237.398132 340.746643,239.681763
|
||||
C341.623535,253.944931 340.542908,267.622864 334.135223,280.304016
|
||||
C320.314178,307.656555 297.989685,321.911560 267.356476,322.959198
|
||||
C260.554413,323.191833 253.735031,322.919525 246.461548,322.966187
|
||||
C232.880280,322.863800 219.761337,322.652710 206.641769,322.493774
|
||||
C197.565765,322.383789 193.918716,318.851379 193.847565,309.854462
|
||||
C193.784439,301.876648 193.806061,293.898132 193.703094,285.458130
|
||||
C193.688797,274.002930 193.953934,263.006683 193.789520,252.016861
|
||||
C193.542847,235.527420 197.729507,220.415054 207.062073,206.390167
|
||||
C214.347717,197.127396 222.379608,189.168533 232.879364,183.537567
|
||||
z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 32 KiB |
1
svg/sophos.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg width="512px" height="512px" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path cx="512" cy="512" r="512" style="fill:#2066af" d="M512 256A256 256 0 0 1 256 512A256 256 0 0 1 0 256A256 256 0 0 1 512 256z"/><path d="M190.715 236c3.53 4.635 5.5 12.195 5.5 21.05 0 10.045 -3.185 18.3 -8.855 22.85 -4.295 3.435 -10.825 5.325 -18.555 5.325 -11 0 -19.675 -3.615 -24.145 -10.05 -3.355 -4.725 -5 -11 -5 -18.645 0 -11 3 -19.33 8.685 -23.795 4.46 -3.605 11.5 -5.585 19.585 -5.585 10.225 0 18.39 3.185 22.765 8.855m-34.965 6.615c-1.81 2.835 -2.665 7.38 -2.665 13.5 0 13.4 4.635 19.5 14.95 19.5 10.135 0 14.78 -6.105 14.78 -19.33 0 -13.41 -4.555 -19.42 -14.78 -19.42 -5.585 0 -9.97 2.065 -12.285 5.76m59.98 42.57H203.5V227.895h28.61c10.045 0 13.575 1.03 17.35 5.245a19.5 19.5 0 0 1 5.155 13.4c0 6 -2.4 11.595 -6.355 14.95 -3.35 2.83 -6.45 3.69 -12.97 3.69h-19.58zm16.58 -30.235c3.265 0 5.15 -0.43 6.44 -1.635 1.545 -1.29 2.5 -4.035 2.5 -7.215 0 -3.78 -1.54 -6.525 -4.205 -7.475a14.35 14.35 0 0 0 -4.47 -0.5h-16.845v16.84zm75.93 -27.065H296v23.455h-22.055V227.9h-12.2v57.3h12.2v-23.625H296v23.625h12.2zM366.655 236c3.53 4.635 5.5 12.195 5.5 21.05 0 10.045 -3.175 18.3 -8.85 22.85 -4.305 3.41 -10.805 5.3 -18.56 5.3 -11 0 -19.67 -3.615 -24.135 -10.05 -3.355 -4.725 -5 -11 -5 -18.645 0 -11 3 -19.33 8.68 -23.795 4.465 -3.605 11.5 -5.585 19.595 -5.585 10.22 0 18.38 3.185 22.76 8.855m-34.96 6.615c-1.805 2.835 -2.665 7.38 -2.665 13.5 0 13.4 4.635 19.5 14.94 19.5 10.14 0 14.775 -6.105 14.775 -19.33 0 -13.41 -4.55 -19.42 -14.775 -19.42 -5.58 0 -9.965 2.065 -12.28 5.76m-249.6 42.595h30.89c8.67 0 12.345 -0.53 15.235 -2.36 4.55 -2.8 7.44 -8.585 7.44 -14.8 0 -5.075 -1.75 -10.24 -4.375 -12.87 -3.415 -3.5 -8.055 -4.815 -16.64 -4.815h-9.365c-4.2 0 -7.3 -0.18 -9.045 -0.96 -2.1 -0.97 -3.325 -3.07 -3.325 -5.695 0 -3.065 1.5 -5.345 3.94 -5.96 1.84 -0.43 3.97 -0.43 9.5 -0.5h27.655V226.8H103.5c-6.83 0 -9.895 0.26 -12.5 1.225 -6.04 2.1 -10.16 8.58 -10.16 16 0 5.085 2 9.815 5.5 12.875 3.065 2.625 7.62 3.85 14.62 3.85h12.465c2.805 0 5.075 0.35 6.31 1.05a6.735 6.735 0 0 1 3.765 6.24 6.085 6.085 0 0 1 -2.89 5.34c-1.5 0.97 -4.03 1.405 -8.665 1.405h-29.865zm295.5 0H408.5c8.67 0 12.345 -0.53 15.24 -2.36 4.55 -2.8 7.435 -8.585 7.435 -14.8 0 -5.075 -1.745 -10.24 -4.37 -12.87 -3.425 -3.5 -8.06 -4.815 -16.65 -4.815h-9.365c-4.21 0 -7.31 -0.18 -9.055 -0.96 -2.11 -0.97 -3.335 -3.07 -3.335 -5.695 0 -3.065 1.5 -5.345 3.945 -5.96 1.835 -0.43 3.975 -0.43 9.5 -0.5H429.5V226.8h-30.45c-6.835 0 -9.895 0.26 -12.5 1.225 -6.045 2.1 -10.16 8.58 -10.16 16 0 5.085 2 9.815 5.5 12.875 3.065 2.625 7.62 3.85 14.625 3.85h12.465c2.805 0 5.085 0.35 6.305 1.05a6.72 6.72 0 0 1 3.765 6.215 6.095 6.095 0 0 1 -2.885 5.34c-1.5 0.97 -4.025 1.405 -8.675 1.405H377.6z" style="fill:#fff"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
44
svg/stb-proxy.svg
Normal file
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="16.844999"
|
||||
height="15.78"
|
||||
viewBox="0 0 16.844999 15.78"
|
||||
version="1.1"
|
||||
xml:space="preserve"
|
||||
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
||||
id="svg20568"
|
||||
sodipodi:docname="emojis.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs20572" /><sodipodi:namedview
|
||||
id="namedview20570"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0" /><g
|
||||
transform="matrix(0.24,0,0,0.24,-769.6662,-783.8778)"
|
||||
id="g20566"><g
|
||||
transform="matrix(62.5,0,0,62.5,3199.13,3320.97)"
|
||||
id="g15866"><path
|
||||
d="m 0.881,-0.667 h 0.262 c 0.014,0 0.028,0.003 0.041,0.008 0.012,0.006 0.023,0.013 0.033,0.023 0.01,0.01 0.017,0.021 0.023,0.034 0.005,0.013 0.008,0.026 0.008,0.041 V 0.035 C 1.248,0.046 1.246,0.057 1.243,0.067 1.24,0.077 1.235,0.087 1.229,0.095 1.222,0.104 1.215,0.112 1.206,0.118 1.198,0.125 1.188,0.13 1.178,0.134 V 0.175 H 0.195 V 0.134 C 0.185,0.13 0.175,0.125 0.167,0.118 0.158,0.112 0.151,0.104 0.145,0.095 0.138,0.087 0.134,0.077 0.13,0.067 0.127,0.057 0.125,0.046 0.125,0.035 v -0.596 c 0,-0.015 0.003,-0.028 0.008,-0.041 0.006,-0.013 0.013,-0.024 0.023,-0.034 0.01,-0.01 0.021,-0.017 0.033,-0.023 0.013,-0.005 0.027,-0.008 0.041,-0.008 h 0.262 c -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 C 0.451,-0.707 0.441,-0.717 0.432,-0.728 0.424,-0.736 0.418,-0.746 0.413,-0.756 0.408,-0.767 0.406,-0.778 0.406,-0.79 c 0,-0.012 0.002,-0.023 0.007,-0.034 0.004,-0.01 0.01,-0.02 0.018,-0.028 0.008,-0.008 0.018,-0.014 0.028,-0.019 0.011,-0.004 0.022,-0.006 0.035,-0.006 0.011,0 0.023,0.002 0.033,0.006 0.011,0.005 0.02,0.011 0.029,0.019 l 0.131,0.131 0.13,-0.131 c 0.018,-0.017 0.038,-0.025 0.062,-0.025 0.012,0 0.024,0.002 0.034,0.006 0.011,0.005 0.02,0.011 0.028,0.019 0.008,0.008 0.014,0.018 0.019,0.028 0.005,0.011 0.007,0.022 0.007,0.034 0,0.012 -0.002,0.023 -0.007,0.034 -0.005,0.01 -0.011,0.02 -0.019,0.028 -0.009,0.011 -0.019,0.021 -0.03,0.031 -0.01,0.01 -0.02,0.02 -0.03,0.03 z"
|
||||
style="fill-rule:nonzero"
|
||||
id="path15854" /><path
|
||||
d="M 0.265,0.07 0.352,0.031 H 1.043 L 1.107,0.07 V 0.105 H 0.265 Z M 0.626,-0.632 0.481,-0.777 C 0.477,-0.781 0.476,-0.785 0.476,-0.79 c 0,-0.004 0.001,-0.008 0.005,-0.012 0.004,-0.003 0.008,-0.005 0.012,-0.005 0.005,0 0.01,0.001 0.013,0.005 l 0.17,0.17 h 0.021 l 0.17,-0.17 c 0.003,-0.004 0.008,-0.005 0.012,-0.005 0.005,0 0.009,0.002 0.013,0.005 0.003,0.003 0.005,0.008 0.005,0.012 0,0.005 -0.002,0.009 -0.005,0.013 l -0.145,0.145 c 0.005,0 0.011,0.001 0.017,0.002 0.005,0.001 0.01,0.003 0.014,0.005 0.004,0.003 0.007,0.007 0.01,0.011 0.003,0.005 0.004,0.01 0.004,0.017 L 0.761,-0.571 H 0.61 L 0.581,-0.597 c 0,-0.007 0.001,-0.012 0.004,-0.017 0.003,-0.004 0.006,-0.008 0.01,-0.011 0.004,-0.002 0.009,-0.004 0.014,-0.005 0.006,-0.001 0.012,-0.002 0.017,-0.002 z"
|
||||
style="fill:#e5e5e5;fill-rule:nonzero"
|
||||
id="path15856" /><path
|
||||
d="m 1.143,-0.597 c 0.009,0 0.018,0.004 0.024,0.011 0.007,0.007 0.011,0.015 0.011,0.025 V 0.035 C 1.178,0.044 1.174,0.053 1.167,0.06 1.161,0.067 1.152,0.07 1.143,0.07 H 0.23 C 0.221,0.07 0.212,0.067 0.206,0.06 0.199,0.053 0.195,0.044 0.195,0.035 v -0.596 c 0,-0.01 0.004,-0.018 0.011,-0.025 0.006,-0.007 0.015,-0.011 0.024,-0.011 z"
|
||||
style="fill:#cccccc;fill-rule:nonzero"
|
||||
id="path15858" /><path
|
||||
d="m 1.073,-0.491 c 0.01,0 0.019,0.002 0.027,0.005 0.009,0.004 0.016,0.009 0.022,0.015 0.007,0.006 0.012,0.014 0.015,0.022 0.004,0.009 0.006,0.018 0.006,0.028 0,0.009 -0.002,0.018 -0.006,0.027 C 1.134,-0.386 1.129,-0.378 1.122,-0.372 1.116,-0.365 1.109,-0.36 1.1,-0.357 1.092,-0.353 1.083,-0.351 1.073,-0.351 1.063,-0.351 1.054,-0.353 1.045,-0.356 1.037,-0.36 1.029,-0.365 1.023,-0.371 1.016,-0.378 1.011,-0.385 1.008,-0.394 1.004,-0.402 1.002,-0.412 1.002,-0.421 c 0,-0.01 0.002,-0.019 0.006,-0.028 0.004,-0.008 0.009,-0.016 0.015,-0.022 0.007,-0.006 0.014,-0.011 0.022,-0.015 0.009,-0.003 0.018,-0.005 0.028,-0.005 z"
|
||||
style="fill:#f03a17;fill-rule:nonzero"
|
||||
id="path15860" /><path
|
||||
d="m 1.073,-0.281 c 0.01,0 0.019,0.002 0.027,0.006 0.009,0.004 0.016,0.009 0.022,0.015 0.007,0.006 0.012,0.014 0.015,0.022 0.004,0.009 0.006,0.018 0.006,0.028 0,0.009 -0.002,0.018 -0.006,0.027 C 1.134,-0.175 1.129,-0.167 1.122,-0.161 1.116,-0.155 1.109,-0.15 1.1,-0.146 1.092,-0.142 1.083,-0.141 1.073,-0.141 1.063,-0.141 1.054,-0.142 1.045,-0.146 1.037,-0.15 1.03,-0.155 1.023,-0.161 1.017,-0.167 1.012,-0.175 1.008,-0.183 1.004,-0.192 1.002,-0.201 1.002,-0.21 c 0,-0.01 0.002,-0.019 0.006,-0.028 0.003,-0.008 0.008,-0.016 0.015,-0.022 0.006,-0.006 0.014,-0.011 0.022,-0.015 0.009,-0.004 0.018,-0.006 0.028,-0.006 z"
|
||||
style="fill:#757575;fill-rule:nonzero"
|
||||
id="path15862" /><path
|
||||
d="m 0.932,-0.526 c 0.01,0 0.018,0.003 0.025,0.01 0.007,0.007 0.01,0.015 0.01,0.025 v 0.456 c 0,0.009 -0.003,0.018 -0.01,0.025 C 0.95,-0.003 0.942,0 0.932,0 H 0.3 C 0.291,0 0.283,-0.003 0.276,-0.01 0.269,-0.017 0.265,-0.026 0.265,-0.035 v -0.456 c 0,-0.01 0.004,-0.018 0.011,-0.025 0.007,-0.007 0.015,-0.01 0.024,-0.01 z"
|
||||
style="fill:#383838;fill-rule:nonzero"
|
||||
id="path15864" /></g></g></svg>
|
After Width: | Height: | Size: 5.4 KiB |
57
svg/warpgate.svg
Normal file
@@ -0,0 +1,57 @@
|
||||
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1_51)">
|
||||
<path d="M39.6724 127.391C32.7123 129.479 25.7522 132.959 19.4882 137.135L11.8321 145.487C7.65606 151.055 4.17603 157.319 2.78401 164.279L39.6724 127.391Z" fill="#83A7FF"/>
|
||||
<path d="M3.48004 187.247L61.2486 126.695C58.4646 125.999 55.6805 125.999 52.8965 125.999L2.08803 178.895C2.08803 181.679 2.78403 184.463 3.48004 187.247Z" fill="#80A8FE"/>
|
||||
<path d="M68.9047 129.479L6.96007 197.687C7.65607 198.383 7.65607 199.775 8.35208 200.471C8.35208 200.471 9.04809 201.863 10.4401 203.951L74.4727 132.959C73.0807 131.567 70.9927 130.871 68.9047 129.479Z" fill="#7DA9FD"/>
|
||||
<path d="M87.0008 142.703C85.6088 140.615 83.5208 139.223 82.1288 137.831L16.7042 213L20.8802 219.264L87.0008 142.703Z" fill="#7AAAFC"/>
|
||||
<path d="M95.3529 155.231C93.2649 151.751 91.8729 148.967 91.1769 148.967L26.4482 228.312C27.8403 230.4 29.2323 232.488 30.6243 234.576L95.3529 155.231Z" fill="#77ABFB"/>
|
||||
<path d="M103.705 168.455C102.313 166.367 100.921 164.279 99.529 162.191L36.1924 243.624C37.5844 245.712 38.9764 247.8 40.3684 249.888L103.705 168.455Z" fill="#74ACFA"/>
|
||||
<path d="M112.753 181.679C111.361 179.591 109.969 177.503 108.577 175.415L46.6325 259.632C48.0245 261.72 49.4165 263.808 50.8085 265.896L112.753 181.679Z" fill="#71ADF9"/>
|
||||
<path d="M121.105 195.599C119.713 193.511 118.321 191.423 116.929 189.335L56.3765 275.64L60.5526 281.904L121.105 195.599Z" fill="#6EAEF8"/>
|
||||
<path d="M130.153 209.52C128.761 207.432 127.369 205.344 125.977 203.255L66.8167 291.648C68.2087 293.736 69.6007 295.824 70.9927 297.912L130.153 209.52Z" fill="#6BAFF7"/>
|
||||
<path d="M139.201 224.136C137.809 222.048 136.417 219.96 135.025 217.872L77.2568 309.048L81.4328 315.313L139.201 224.136Z" fill="#68B0F6"/>
|
||||
<path d="M148.249 238.752C146.857 236.664 145.465 234.576 144.073 232.488L87.6969 326.449C89.0889 328.537 90.4809 330.625 91.8729 332.713L148.249 238.752Z" fill="#65B1F5"/>
|
||||
<path d="M222.722 139.919C219.938 142.703 217.154 145.487 215.066 148.967L158.69 238.056L98.833 343.849C100.225 345.937 101.617 348.721 103.009 350.809L222.722 139.919Z" fill="#62B2F4"/>
|
||||
<path d="M233.858 131.567L110.665 361.249C111.361 362.641 112.057 364.033 112.057 364.033C112.753 365.425 114.145 366.817 114.841 368.209L243.602 128.087C240.122 128.783 236.642 130.175 233.858 131.567Z" fill="#5FB3F3"/>
|
||||
<path d="M258.219 125.999C257.523 125.999 256.827 125.999 256.827 125.999C254.739 125.999 252.65 125.999 250.562 126.695L124.585 377.257C126.673 378.649 128.761 380.041 130.153 380.737L258.219 125.999Z" fill="#5CB4F2"/>
|
||||
<path d="M263.787 126.695L141.289 384.913C143.377 385.609 146.161 385.609 148.249 386.305L270.747 128.087C267.963 127.391 265.875 126.695 263.787 126.695Z" fill="#59B5F1"/>
|
||||
<path d="M281.187 132.959C279.099 131.567 277.011 130.871 274.923 129.479L161.474 386.305C164.258 385.609 167.042 384.913 169.826 384.217L281.187 132.959Z" fill="#56B6F0"/>
|
||||
<path d="M206.714 345.937L290.931 140.615C289.539 138.527 287.451 137.135 285.363 135.743L187.226 373.777C190.01 370.993 192.794 368.209 194.882 364.729L206.714 345.937Z" fill="#53B7EF"/>
|
||||
<path d="M254.738 269.376L299.979 152.447L297.891 148.967C297.195 147.575 295.803 146.183 295.107 144.791L235.25 299.304L254.738 269.376Z" fill="#50B8EE"/>
|
||||
<path d="M308.331 164.975L303.459 157.319L261.699 273.552C263.091 275.64 264.483 278.424 266.571 281.208L308.331 164.975Z" fill="#4DB9ED"/>
|
||||
<path d="M316.683 178.895L311.811 171.239L272.139 290.952C273.531 293.736 275.619 295.824 277.011 298.608L316.683 178.895Z" fill="#4ABAEC"/>
|
||||
<path d="M325.731 192.815L320.859 185.159L283.275 308.353C284.667 311.137 286.755 313.225 288.147 316.009L325.731 192.815Z" fill="#47BBEB"/>
|
||||
<path d="M334.779 207.431L329.907 199.775L295.107 326.449C296.499 329.233 298.587 332.017 299.979 334.105L334.779 207.431Z" fill="#44BCEA"/>
|
||||
<path d="M344.523 223.44L339.651 215.088L306.939 345.937C309.027 348.721 310.419 351.505 311.811 354.289L344.523 223.44Z" fill="#41BDE9"/>
|
||||
<path d="M354.963 239.448L349.395 231.096L319.467 366.121C320.859 368.209 322.947 370.993 325.035 373.081L354.963 239.448Z" fill="#3EBEE8"/>
|
||||
<path d="M371.668 228.312L361.228 245.016L334.779 380.041C336.867 381.433 338.955 382.129 341.043 383.521L371.668 228.312Z" fill="#3BBFE7"/>
|
||||
<path d="M390.46 198.383L380.716 213.696L350.787 386.305C352.875 387.001 355.659 387.001 357.748 387.001L390.46 198.383Z" fill="#38C0E6"/>
|
||||
<path d="M407.164 171.935L398.116 186.551L368.188 386.305C370.972 385.609 373.06 384.913 375.844 384.217L407.164 171.935Z" fill="#35C1E5"/>
|
||||
<path d="M421.78 148.967L413.428 161.495L386.98 378.649C389.764 376.561 392.548 374.473 394.636 372.385L422.476 148.271C421.78 148.271 421.78 148.271 421.78 148.967Z" fill="#32C2E4"/>
|
||||
<path d="M435.004 135.047C432.22 137.135 429.436 139.223 427.348 142.007L406.468 355.681C408.556 352.201 411.34 348.025 414.82 342.457L435.004 135.047Z" fill="#2FC3E3"/>
|
||||
<path d="M446.836 128.783C444.052 129.479 441.964 130.871 439.876 132.263L425.26 326.449C428.044 322.273 430.132 318.097 432.916 313.921L446.836 128.783Z" fill="#2CC4E2"/>
|
||||
<path d="M457.276 125.999C455.188 125.999 452.404 126.695 450.316 127.391L441.964 298.608C444.748 294.432 446.836 290.952 449.62 286.776L457.276 125.999Z" fill="#29C5E1"/>
|
||||
<path d="M468.413 126.695C466.325 126.695 463.541 125.999 461.453 125.999L457.973 274.248C460.757 270.072 462.845 266.592 464.933 263.112L468.413 126.695Z" fill="#26C6E0"/>
|
||||
<path d="M479.549 129.479C477.461 128.783 474.677 128.087 472.589 127.391V251.28C474.677 247.8 477.461 243.624 479.549 240.144V129.479Z" fill="#23C7DF"/>
|
||||
<path d="M489.989 135.047C487.901 133.655 485.117 132.263 483.029 130.871L485.117 229.704C487.205 225.528 489.989 222.048 492.077 219.264L489.989 135.047Z" fill="#20C8DE"/>
|
||||
<path d="M501.821 145.487C499.733 142.703 496.949 139.919 494.165 137.831L497.645 210.216C501.125 203.951 503.909 200.471 503.909 200.471V199.775L501.821 145.487Z" fill="#1DC9DD"/>
|
||||
<path d="M509.477 189.335C513.653 176.111 512.261 163.583 506.693 153.839L509.477 189.335Z" fill="#1ACADC"/>
|
||||
<path d="M0 176.807C0.696007 184.463 2.78403 192.815 7.65607 200.471L110.665 364.033C112.753 366.817 114.841 369.601 116.929 372.385L0 176.807Z" fill="#17CBDB"/>
|
||||
<path d="M1.39201 162.887C0.696007 166.367 0 169.847 0 174.023L132.241 382.825C135.721 384.217 139.201 385.609 142.681 386.305L1.39201 162.887Z" fill="#14CCDA"/>
|
||||
<path d="M4.87205 153.839C3.48003 156.623 2.08802 158.711 1.39201 161.495L151.729 387.001C154.513 387.001 157.298 387.001 159.386 386.305L4.87205 153.839Z" fill="#11CDD9"/>
|
||||
<path d="M9.0481 146.879C7.65608 148.271 6.26407 150.359 4.87206 153.143L167.738 384.217C169.826 383.521 171.914 382.129 174.002 381.433L9.0481 146.879Z" fill="#0ECED8"/>
|
||||
<path d="M14.6161 140.615C12.5281 142.007 11.1361 144.095 9.74408 145.487L180.962 376.561C183.05 375.169 184.442 373.777 185.834 371.689L14.6161 140.615Z" fill="#0BCFD7"/>
|
||||
<path d="M20.1842 135.743C18.7922 137.135 16.7042 138.527 15.3122 139.919L191.402 366.121C192.794 364.033 194.186 361.945 194.882 359.857L20.1842 135.743Z" fill="#08D0D6"/>
|
||||
<path d="M27.1442 131.567C25.0562 132.263 22.9682 133.655 20.8802 135.047L198.362 351.505C199.058 348.721 199.754 345.937 200.45 342.457L27.1442 131.567Z" fill="#05D1D5"/>
|
||||
<path d="M27.8403 130.871L200.45 330.625C199.754 324.361 196.97 318.097 193.49 311.833C193.49 311.833 193.49 311.137 192.794 310.441L34.8003 128.087C32.0163 128.783 29.9283 130.175 27.8403 130.871Z" fill="#02D2D4"/>
|
||||
<path d="M43.1524 125.999C41.0644 126.695 38.2804 127.391 35.4964 128.087L171.218 277.728C164.954 267.288 157.298 255.456 149.641 243.624L43.1524 125.999Z" fill="#00D3D3"/>
|
||||
<path d="M54.2885 125.999C50.8085 125.999 48.0245 125.999 44.5444 125.999L136.417 222.048C130.153 211.608 123.193 201.167 117.625 192.119L54.2885 125.999Z" fill="#00D4D2"/>
|
||||
<path d="M56.3765 126.695L109.273 179.591C101.617 167.759 95.3529 158.015 92.5689 153.143L70.9927 131.567C66.1206 128.783 61.2486 127.391 56.3765 126.695Z" fill="#00D5D1"/>
|
||||
<path d="M77.9528 135.743L84.9128 142.007C82.8248 139.919 80.7368 137.831 77.9528 135.743Z" fill="#00D6D0"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1_51">
|
||||
<rect width="512" height="261.003" fill="white" transform="translate(0 125.999)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 8.0 KiB |
108
svg/wyze.svg
Normal file
@@ -0,0 +1,108 @@
|
||||
<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="100%" viewBox="0 0 400 400" enable-background="new 0 0 400 400" xml:space="preserve">
|
||||
<path fill="#1CF1BB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M225.000000,401.000000
|
||||
C151.356201,401.000000 78.212349,400.973938 5.068713,401.085632
|
||||
C1.796491,401.090637 0.893399,400.636292 0.896749,397.070984
|
||||
C1.019512,266.445282 1.021600,135.819382 0.891347,5.193670
|
||||
C0.887601,1.436523 1.848396,0.912455 5.303848,0.915116
|
||||
C135.762985,1.015575 266.222229,1.014784 396.681396,0.918512
|
||||
C400.096954,0.915991 401.115509,1.380956 401.111603,5.178918
|
||||
C400.977570,135.804611 400.980957,266.430511 401.101593,397.056244
|
||||
C401.104858,400.591400 400.250183,401.095734 396.945984,401.088623
|
||||
C339.797516,400.965576 282.648712,401.000000 225.000000,401.000000
|
||||
z"/>
|
||||
<path fill="#38043E" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M72.181671,239.663116
|
||||
C66.202423,240.827255 63.381538,238.487869 61.007366,233.215836
|
||||
C51.046127,211.096130 40.557682,189.212753 30.144794,167.298676
|
||||
C28.602114,164.052078 28.591539,163.137482 32.767353,162.820572
|
||||
C39.717770,162.293121 43.559242,164.154114 46.475887,171.187241
|
||||
C53.074741,187.099518 60.964092,202.476639 68.711365,218.881973
|
||||
C72.850723,210.109680 76.647255,202.039047 80.470703,193.981186
|
||||
C81.275009,192.286102 80.013252,191.131424 79.424339,189.858154
|
||||
C75.388184,181.131592 71.276070,172.440155 66.841476,162.998749
|
||||
C71.243439,162.998749 75.127594,163.089691 79.005119,162.968430
|
||||
C81.834297,162.879959 82.040901,165.245407 82.821136,166.887054
|
||||
C90.239670,182.496063 97.556641,198.153320 104.936272,213.780914
|
||||
C105.626198,215.241943 105.880112,216.998505 107.699951,218.158417
|
||||
C115.007324,202.630203 122.780167,187.382904 129.330963,171.627502
|
||||
C132.360336,164.341522 136.352493,161.979141 143.800919,162.829773
|
||||
C147.531708,163.255875 147.423462,164.069580 146.068405,166.874863
|
||||
C141.515106,176.301346 137.153442,185.820267 132.703171,195.296631
|
||||
C126.416817,208.682724 120.052330,222.032745 113.871910,235.467499
|
||||
C112.474876,238.504318 110.869858,239.999069 107.202400,239.936539
|
||||
C103.768715,239.877991 102.254097,238.617035 100.938049,235.667084
|
||||
C96.948914,226.725372 92.657455,217.918533 88.082489,208.207352
|
||||
C85.915741,212.689804 84.062706,216.622223 82.123825,220.511856
|
||||
C78.951904,226.875092 76.641899,233.670090 72.181671,239.663116
|
||||
z"/>
|
||||
<path fill="#37063F" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M289.037659,182.063690
|
||||
C277.546173,196.898331 266.257416,211.440002 254.309723,226.830505
|
||||
C267.380371,226.830505 279.446259,226.772202 291.510712,226.877045
|
||||
C294.090576,226.899475 297.702454,225.519241 299.047577,227.691406
|
||||
C300.829773,230.569382 299.521576,234.487976 299.638489,237.955017
|
||||
C299.690491,239.498108 298.449890,239.764191 297.195587,239.764374
|
||||
C274.455597,239.767502 251.715622,239.766663 227.907455,239.766663
|
||||
C244.605988,218.215088 260.662354,197.492310 276.730774,176.753983
|
||||
C275.765015,175.166214 274.286804,175.906906 273.119629,175.900391
|
||||
C261.293243,175.834412 249.464752,175.752045 237.640686,175.929794
|
||||
C234.389923,175.978668 233.354385,175.089355 233.380478,171.748352
|
||||
C233.448883,162.990051 233.283142,162.988739 241.927490,162.988739
|
||||
C260.583740,162.988724 279.240021,162.988724 297.896271,162.988724
|
||||
C299.493225,162.988724 301.090149,162.988724 303.801117,162.988724
|
||||
C298.514252,169.808350 293.877350,175.789536 289.037659,182.063690
|
||||
z"/>
|
||||
<path fill="#37053F" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M174.505600,176.434052
|
||||
C179.725174,184.731079 184.732986,192.732239 190.112976,201.328018
|
||||
C197.065277,190.260406 203.992691,179.801437 210.272430,168.967056
|
||||
C212.938980,164.366470 215.854095,162.039154 221.234756,162.924988
|
||||
C223.600922,163.314545 226.084549,162.990601 229.273788,162.990601
|
||||
C226.002029,168.236099 223.135956,172.842926 220.258072,177.442368
|
||||
C216.203171,183.922943 212.593185,190.743301 207.982422,196.801498
|
||||
C199.178391,208.369400 194.199448,220.820480 196.540070,235.551331
|
||||
C197.140045,239.327408 195.192673,239.881226 191.961533,239.844009
|
||||
C183.768692,239.749634 183.181702,239.827347 183.908035,231.763916
|
||||
C184.928650,220.433395 181.826874,210.902649 175.333939,201.611771
|
||||
C166.800049,189.400513 159.358368,176.425949 150.961365,163.003311
|
||||
C155.933533,163.003311 160.163254,163.059021 164.390350,162.978043
|
||||
C166.290405,162.941650 166.942139,164.322998 167.721191,165.549545
|
||||
C169.948395,169.056030 172.107788,172.605576 174.505600,176.434052
|
||||
z"/>
|
||||
<path fill="#37063F" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M339.000305,226.493073
|
||||
C349.808929,226.493179 360.119141,226.594147 370.425262,226.433533
|
||||
C373.640411,226.383423 375.119873,226.888809 375.028687,230.692825
|
||||
C374.810944,239.778519 375.034668,239.783890 365.804443,239.783875
|
||||
C348.180023,239.783829 330.554871,239.699142 312.931793,239.853226
|
||||
C309.294617,239.885040 307.607239,239.331863 307.761505,235.057404
|
||||
C308.070282,226.502869 307.797333,226.492935 316.552887,226.492859
|
||||
C323.868683,226.492798 331.184479,226.492935 339.000305,226.493073
|
||||
z"/>
|
||||
<path fill="#38013C" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M374.466919,163.510269
|
||||
C375.241821,176.074051 375.241821,176.074036 362.999237,176.074066
|
||||
C346.219177,176.074097 329.437042,175.931961 312.660553,176.177063
|
||||
C308.613373,176.236191 307.689423,174.983063 307.803589,171.175293
|
||||
C308.048523,163.005569 307.849426,162.983643 315.837769,163.002701
|
||||
C335.272400,163.049057 354.706970,163.111725 374.466919,163.510269
|
||||
z"/>
|
||||
<path fill="#38033D" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M317.026947,194.730728
|
||||
C335.146118,194.730682 352.769135,194.850052 370.388153,194.636490
|
||||
C374.211945,194.590134 375.105225,195.724030 375.004700,199.388962
|
||||
C374.770111,207.941284 374.966766,207.946701 366.287598,207.946671
|
||||
C348.333527,207.946609 330.377991,207.824554 312.426605,208.043610
|
||||
C308.576538,208.090591 307.709808,206.926010 307.797455,203.281662
|
||||
C308.002960,194.735489 307.813507,194.730927 317.026947,194.730728
|
||||
z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |