switched to new build system, updated assets, preparing for new release

This commit is contained in:
Philipp Schaffrath 2024-04-04 19:35:20 +02:00
parent 8cbbc55e1f
commit 9aa60df1c4
No known key found for this signature in database
GPG key ID: E5D3C326D00A7C3D
436 changed files with 56 additions and 9748 deletions

View file

@ -1,51 +1,64 @@
on: workflow_dispatch
jobs:
generate_cursor_theme_job:
export_cursor_theme:
runs-on: ubuntu-latest
name: Build phinger-cursors, publish assets and draft release
name: Export the latest theme and its assets from the Figma file
env:
EXPORT_DIRECTORY: export
OUTPUT_DIRECTORY: theme
outputs:
version: ${{ steps.figma_export.outputs.version }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Generate variants and assets from Figma file
id: figma_cursor_theme
uses: phisch/figma-cursor-theme-action@v1.1
uses: actions/checkout@v4
- name: Export
id: figma_export
uses: phisch/cursor-theme-builder/action/export@v1.0
with:
figma_access_token: ${{ secrets.FIGMA_ACCESS_TOKEN }}
figma_file_key: ${{ secrets.FIGMA_FILE_KEY }}
alias_component_set_id: ${{ secrets.ALIAS_COMPONENT_SET_ID }}
sprite_component_set_id: ${{ secrets.SPRITE_COMPONENT_SET_ID }}
theme_name: 'Phinger Cursors'
theme_comment: 'The most over engineered cursor theme.'
theme_directory: 'build/themes'
export_directory: 'build/exports'
svg_directory: 'build/exports/svg'
- name: Update assets
access_token: ${{ secrets.FIGMA_ACCESS_TOKEN }}
file_key: ${{ secrets.FIGMA_FILE_KEY }}
theme_name: Phinger Cursors
theme_author: Philipp Schaffrath (phisch)
theme_comment: Most likely the most over engineered cursor theme.
output_directory: ${{ env.EXPORT_DIRECTORY }}
- name: Replace theme
run: |
rm -rf assets
mv build/exports assets
- name: Push updated assets
uses: EndBug/add-and-commit@v7
rm -rf $OUTPUT_DIRECTORY
mv $EXPORT_DIRECTORY $OUTPUT_DIRECTORY
- name: Commit and push latest theme
uses: EndBug/add-and-commit@v9
with:
add: 'assets'
add: ${{ env.OUTPUT_DIRECTORY }}
default_author: github_actor
message: 'updated assets from figma file version ${{ steps.figma_cursor_theme.outputs.version }}'
message: "exported theme from figma file ${{ secrets.FIGMA_FILE_KEY }} version ${{ steps.figma_export.outputs.version }}"
- name: Compress variants
run: tar -cjf build/phinger-cursors-variants.tar.bz2 -C build/themes .
- name: Upload cursor variants artifact
uses: actions/upload-artifact@v2
build_cursor_theme_job:
runs-on: ubuntu-latest
name: Build cursor theme
needs: export_cursor_theme
env:
ARCHIVE_NAME: phinger-cursors-variants.tar.bz2
BUILD_DIRECTORY: build
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build Cursor Theme
uses: phisch/cursor-theme-builder/action/build@v1.0
with:
cursor_theme_json: theme/cursor-theme.json
output_directory: ${{ env.BUILD_DIRECTORY }}/themes
- name: Create artifact
working-directory: ${{ env.BUILD_DIRECTORY }}
run: tar -cjf ${{ env.ARCHIVE_NAME }} -C themes .
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: phinger-cursors-variants
path: build/phinger-cursors-variants.tar.bz2
path: ${{ env.BUILD_DIRECTORY }}/${{ env.ARCHIVE_NAME }}
- name: Draft Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: build/phinger-cursors-variants.tar.bz2
files: ${{ env.BUILD_DIRECTORY }}/${{ env.ARCHIVE_NAME }}
draft: true
tag_name: ${{ steps.figma_cursor_theme.outputs.version }}
tag_name: ${{ job.export_cursor_theme.outputs.version }}

View file

@ -80,9 +80,9 @@ Each part is designed on a base grid of 24 and 32:
which means will be pixel perfect for any reasonable size:
| 24 | 32 | 48 | 64 | 96 | 128 |
|:-:|:-:|:-:|:-:|:-:|:-:|
| ![24](assets/sprite__24.png) | ![32](assets/sprite__32.png) | ![48](assets/sprite__48.png) | ![64](assets/sprite__64.png) | ![96](assets/sprite__96.png) | ![128](assets/sprite__128.png) |
| 24 | 32 | 48 | 64 | 72 | 96 | 128 |
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
| ![24](assets/sprite_24.png) | ![32](assets/sprite_32.png) | ![48](assets/sprite_48.png) | ![64](assets/sprite_64.png) | ![72](assets/sprite_72.png) | ![96](assets/sprite_96.png) | ![128](assets/sprite_128.png) |
If possible, parts are designed very modular, which lets you create multiple different icons from one part. A good example is the hand part that comes with multiple variations for each single phinger:
@ -90,23 +90,19 @@ If possible, parts are designed very modular, which lets you create multiple dif
### Sprites
The parts are assembled, and styled into sprites. Those sprites are named and contain metadata necessary to generate a cursor theme from them. Each sprite contains a name, information about the cursor hotspot, animation and which kind of variant it is.
The parts are assembled, and styled into sprites. Those sprites are named and contain metadata necessary to generate a cursor theme from them.
Each cursor contains information about which cursor and variant it belongs to, what its cursors aliases should be, how to transform it into a left-handed cursor, a hotspot element and instructions on how it should be animated.
### Build process
This repository contains a GitHub workflow, that generates a fully functional X11 cursor theme and variants from the linked figma file. The workflow is defined in [.github/workflows/main.yml](.github/workflows/main.yml).
Phinger cursors are built using my [Cursor Theme Builder](https://github.com/phisch/cursor-theme-builder). It provides a JSON schema to describe a cursor theme, an exporter, that can create such a JSON file and assets from a Figma file, and a builder, which makes fully functioning X11 cursor theme variants from that. It also allows to transform cursors into left-handed versions, comes with an animation system and more.
It uses the custom made GitHub Action [phisch/figma-cursor-theme-action](https://github.com/phisch/figma-cursor-theme-action) to do that.
This action exports assets from the Figma file and commits them to [assets](assets), then renders the sprites into pngs and packs them into proper (and if necessary animated) x11 cursor files. It also generates symlinks and variants, bundles them, and creates a release.
Please refer to the actions [README.md](https://github.com/phisch/figma-cursor-theme-action#readme) for a detailed documentation.
This repository contains [workflows](.github/workflows) to extract a cursor-theme.json and assets, and drafts a release with built cursor theme variants.
## License & Credits
All assets, including the Figma document are licensed under the [CC-BY-SA-4.0 License](LICENSE).
The X11 and Wayland cursors are designed from scratch, and not copied. The original logos belong to X11 and Wayland respectively though.
Although designed from scratch, phinger cursors drew inspiration from [capitaine-cursors](https://github.com/keeferrourke/capitaine-cursors), which is based on the KDE Breeze cursors. So this is a special thanks to them, and all other amazing cursor themes out there!
## Contribute

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 122 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 231 KiB

BIN
assets/sprite_128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
assets/sprite_24.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 545 B

BIN
assets/sprite_32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 656 B

BIN
assets/sprite_48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
assets/sprite_64.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
assets/sprite_72.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
assets/sprite_96.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 743 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 812 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

BIN
assets/sprites.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

View file

@ -1,23 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_6995)">
<mask id="path-1-outside-1_182_6995" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_6995)"/>
<circle cx="16.5" cy="16.5" r="5" fill="#68D56C" stroke="white" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 13.5L20 16.5L17 19.5L17 17.5H15.5C14.9477 17.5 14.5 17.9477 14.5 18.5V19.2324C13.9022 18.8866 13.5 18.2403 13.5 17.5C13.5 16.3954 14.3954 15.5 15.5 15.5L17 15.5V13.5Z" fill="white"/>
</g>
<defs>
<filter id="filter0_d_182_6995" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_6995"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_6995" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7221)">
<circle cx="12" cy="12" r="2" fill="#5778EE" stroke="white" stroke-linejoin="round"/>
<mask id="path-2-outside-1_182_7221" maskUnits="userSpaceOnUse" x="1.99997" y="2" width="20" height="20" fill="black">
<rect fill="white" x="1.99997" y="2" width="20" height="20"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.50003 6.5L12 3L14.5 6.5L13 7L12.5 8H11.5L11 7L9.50003 6.5ZM17.5 9.5L21 12L17.5 14.5L17 13L16 12.5V11.5L17 11L17.5 9.5ZM12 21L14.5 17.5L13 17L12.5 16H11.5L11 17L9.50003 17.5L12 21ZM6.49997 14.5L2.99997 12L6.49997 9.5L6.99997 11L7.99997 11.5V12.5L6.99997 13L6.49997 14.5Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.50003 6.5L12 3L14.5 6.5L13 7L12.5 8H11.5L11 7L9.50003 6.5ZM17.5 9.5L21 12L17.5 14.5L17 13L16 12.5V11.5L17 11L17.5 9.5ZM12 21L14.5 17.5L13 17L12.5 16H11.5L11 17L9.50003 17.5L12 21ZM6.49997 14.5L2.99997 12L6.49997 9.5L6.99997 11L7.99997 11.5V12.5L6.99997 13L6.49997 14.5Z" fill="#1F1F1F"/>
<path d="M12 3L12.8138 2.41876C12.626 2.15597 12.323 2 12 2C11.6771 2 11.374 2.15597 11.1863 2.41876L12 3ZM9.50003 6.5L8.68629 5.91876C8.50184 6.177 8.45091 6.50746 8.54904 6.80925C8.64718 7.11104 8.88274 7.34833 9.1838 7.44869L9.50003 6.5ZM14.5 6.5L14.8163 7.44869C15.1173 7.34833 15.3529 7.11104 15.451 6.80925C15.5491 6.50746 15.4982 6.177 15.3138 5.91876L14.5 6.5ZM13 7L12.6838 6.05132C12.4322 6.13519 12.2242 6.31557 12.1056 6.55279L13 7ZM12.5 8V9C12.8788 9 13.2251 8.786 13.3945 8.44722L12.5 8ZM11.5 8L10.6056 8.44722C10.775 8.786 11.1213 9 11.5 9V8ZM11 7L11.8945 6.55279C11.7758 6.31557 11.5679 6.13519 11.3163 6.05132L11 7ZM21 12L21.5812 12.8137C21.844 12.626 22 12.323 22 12C22 11.6771 21.844 11.374 21.5812 11.1863L21 12ZM17.5 9.5L18.0812 8.68627C17.823 8.50181 17.4925 8.45088 17.1907 8.54902C16.8889 8.64716 16.6516 8.88271 16.5513 9.18377L17.5 9.5ZM17.5 14.5L16.5513 14.8162C16.6516 15.1173 16.8889 15.3528 17.1907 15.451C17.4925 15.5491 17.823 15.4982 18.0812 15.3137L17.5 14.5ZM17 13L17.9487 12.6838C17.8648 12.4322 17.6844 12.2242 17.4472 12.1056L17 13ZM16 12.5H15C15 12.8788 15.214 13.225 15.5528 13.3944L16 12.5ZM16 11.5L15.5528 10.6056C15.214 10.775 15 11.1212 15 11.5H16ZM17 11L17.4472 11.8944C17.6844 11.7758 17.8648 11.5678 17.9487 11.3162L17 11ZM14.5 17.5L15.3138 18.0812C15.4982 17.823 15.5491 17.4925 15.451 17.1908C15.3529 16.889 15.1173 16.6517 14.8163 16.5513L14.5 17.5ZM12 21L11.1863 21.5812C11.374 21.844 11.6771 22 12 22C12.323 22 12.626 21.844 12.8138 21.5812L12 21ZM13 17L12.1056 17.4472C12.2242 17.6844 12.4322 17.8648 12.6838 17.9487L13 17ZM12.5 16L13.3945 15.5528C13.2251 15.214 12.8788 15 12.5 15V16ZM11.5 16V15C11.1213 15 10.775 15.214 10.6056 15.5528L11.5 16ZM11 17L11.3163 17.9487C11.5679 17.8648 11.7758 17.6844 11.8945 17.4472L11 17ZM9.50003 17.5L9.1838 16.5513C8.88274 16.6517 8.64718 16.889 8.54905 17.1908C8.45091 17.4925 8.50184 17.823 8.68629 18.0812L9.50003 17.5ZM2.99997 12L2.41873 11.1863C2.15594 11.374 1.99997 11.6771 1.99997 12C1.99997 12.323 2.15594 12.626 2.41873 12.8137L2.99997 12ZM6.49997 14.5L5.91873 15.3137C6.17697 15.4982 6.50743 15.5491 6.80922 15.451C7.11101 15.3528 7.3483 15.1173 7.44866 14.8162L6.49997 14.5ZM6.49997 9.5L7.44866 9.18378C7.3483 8.88271 7.11101 8.64716 6.80922 8.54902C6.50743 8.45088 6.17697 8.50182 5.91873 8.68627L6.49997 9.5ZM6.99997 11L6.05129 11.3162C6.13516 11.5678 6.31554 11.7758 6.55276 11.8944L6.99997 11ZM7.99997 11.5H8.99997C8.99997 11.1212 8.78597 10.775 8.44719 10.6056L7.99997 11.5ZM7.99997 12.5L8.44719 13.3944C8.78597 13.225 8.99997 12.8788 8.99997 12.5H7.99997ZM6.99997 13L6.55276 12.1056C6.31554 12.2242 6.13516 12.4322 6.05129 12.6838L6.99997 13ZM11.1863 2.41876L8.68629 5.91876L10.3138 7.08124L12.8138 3.58124L11.1863 2.41876ZM15.3138 5.91876L12.8138 2.41876L11.1863 3.58124L13.6863 7.08124L15.3138 5.91876ZM13.3163 7.94869L14.8163 7.44869L14.1838 5.55132L12.6838 6.05132L13.3163 7.94869ZM13.3945 8.44722L13.8945 7.44722L12.1056 6.55279L11.6056 7.55279L13.3945 8.44722ZM11.5 9H12.5V7H11.5V9ZM10.1056 7.44722L10.6056 8.44722L12.3945 7.55279L11.8945 6.55279L10.1056 7.44722ZM9.1838 7.44869L10.6838 7.94869L11.3163 6.05132L9.81625 5.55132L9.1838 7.44869ZM21.5812 11.1863L18.0812 8.68627L16.9187 10.3137L20.4187 12.8137L21.5812 11.1863ZM18.0812 15.3137L21.5812 12.8137L20.4187 11.1863L16.9187 13.6863L18.0812 15.3137ZM16.0513 13.3162L16.5513 14.8162L18.4487 14.1838L17.9487 12.6838L16.0513 13.3162ZM15.5528 13.3944L16.5528 13.8944L17.4472 12.1056L16.4472 11.6056L15.5528 13.3944ZM15 11.5V12.5H17V11.5H15ZM16.5528 10.1056L15.5528 10.6056L16.4472 12.3944L17.4472 11.8944L16.5528 10.1056ZM16.5513 9.18377L16.0513 10.6838L17.9487 11.3162L18.4487 9.81623L16.5513 9.18377ZM13.6863 16.9188L11.1863 20.4188L12.8138 21.5812L15.3138 18.0812L13.6863 16.9188ZM12.6838 17.9487L14.1838 18.4487L14.8163 16.5513L13.3163 16.0513L12.6838 17.9487ZM11.6056 16.4472L12.1056 17.4472L13.8945 16.5528L13.3945 15.5528L11.6056 16.4472ZM11.5 17H12.5V15H11.5V17ZM11.8945 17.4472L12.3945 16.4472L10.6056 15.5528L10.1056 16.5528L11.8945 17.4472ZM9.81626 18.4487L11.3163 17.9487L10.6838 16.0513L9.1838 16.5513L9.81626 18.4487ZM12.8138 20.4188L10.3138 16.9188L8.68629 18.0812L11.1863 21.5812L12.8138 20.4188ZM2.41873 12.8137L5.91873 15.3137L7.08121 13.6863L3.58121 11.1863L2.41873 12.8137ZM5.91873 8.68627L2.41873 11.1863L3.58121 12.8137L7.08121 10.3137L5.91873 8.68627ZM7.94866 10.6838L7.44866 9.18378L5.55129 9.81623L6.05129 11.3162L7.94866 10.6838ZM8.44719 10.6056L7.44719 10.1056L6.55276 11.8944L7.55276 12.3944L8.44719 10.6056ZM8.99997 12.5V11.5H6.99997V12.5H8.99997ZM7.44719 13.8944L8.44719 13.3944L7.55276 11.6056L6.55276 12.1056L7.44719 13.8944ZM7.44866 14.8162L7.94866 13.3162L6.05129 12.6838L5.55129 14.1838L7.44866 14.8162Z" fill="white" mask="url(#path-2-outside-1_182_7221)"/>
</g>
<defs>
<filter id="filter0_d_182_7221" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7221"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7221" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 6.3 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7153)">
<mask id="path-1-outside-1_182_7153" maskUnits="userSpaceOnUse" x="2.00002" y="8" width="14" height="14" fill="black">
<rect fill="white" x="2.00002" y="8" width="14" height="14"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 14.5L8.00001 16L9.50002 10L11.5 11L14 9.5L14.5 10L13 12.5L14 14.5ZM3.00002 21L3.00002 12L4.00002 12L4.00002 20L12 20L12 21L3.00002 21Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 14.5L8.00001 16L9.50002 10L11.5 11L14 9.5L14.5 10L13 12.5L14 14.5ZM3.00002 21L3.00002 12L4.00002 12L4.00002 20L12 20L12 21L3.00002 21Z" fill="#1F1F1F"/>
<path d="M8.00001 16L7.02987 15.7575C6.94468 16.0982 7.04453 16.4587 7.29291 16.7071C7.54129 16.9555 7.90177 17.0553 8.24255 16.9701L8.00001 16ZM14 14.5L14.2426 15.4701C14.5368 15.3966 14.7818 15.1934 14.9085 14.9179C15.0353 14.6423 15.0301 14.3241 14.8944 14.0528L14 14.5ZM9.50002 10L9.94723 9.10558C9.67593 8.96993 9.35773 8.96475 9.08216 9.09149C8.80659 9.21824 8.60344 9.4632 8.52987 9.75747L9.50002 10ZM11.5 11L11.0528 11.8944C11.3586 12.0473 11.7213 12.0334 12.0145 11.8575L11.5 11ZM14 9.5L14.7071 8.7929C14.3827 8.46843 13.879 8.40642 13.4855 8.64251L14 9.5ZM14.5 10L15.3575 10.5145C15.5936 10.121 15.5316 9.61736 15.2071 9.2929L14.5 10ZM13 12.5L12.1425 11.9855C11.9666 12.2787 11.9527 12.6414 12.1056 12.9472L13 12.5ZM3.00002 12L3.00002 11C2.7348 11 2.48045 11.1054 2.29291 11.2929C2.10537 11.4804 2.00002 11.7348 2.00002 12L3.00002 12ZM3.00002 21L2.00002 21C2.00002 21.5523 2.44773 22 3.00002 22L3.00002 21ZM4.00002 12L5.00002 12C5.00002 11.4477 4.5523 11 4.00002 11L4.00002 12ZM4.00002 20L3.00002 20C3.00002 20.5523 3.44773 21 4.00002 21L4.00002 20ZM12 20L13 20C13 19.7348 12.8947 19.4804 12.7071 19.2929C12.5196 19.1054 12.2652 19 12 19L12 20ZM12 21L12 22C12.5523 22 13 21.5523 13 21L12 21ZM8.24255 16.9701L14.2426 15.4701L13.7575 13.5299L7.75748 15.0299L8.24255 16.9701ZM8.52987 9.75747L7.02987 15.7575L8.97016 16.2425L10.4702 10.2425L8.52987 9.75747ZM11.9472 10.1056L9.94723 9.10558L9.0528 10.8944L11.0528 11.8944L11.9472 10.1056ZM13.4855 8.64251L10.9855 10.1425L12.0145 11.8575L14.5145 10.3575L13.4855 8.64251ZM15.2071 9.2929L14.7071 8.7929L13.2929 10.2071L13.7929 10.7071L15.2071 9.2929ZM13.8575 13.0145L15.3575 10.5145L13.6425 9.48551L12.1425 11.9855L13.8575 13.0145ZM14.8944 14.0528L13.8944 12.0528L12.1056 12.9472L13.1056 14.9472L14.8944 14.0528ZM2.00002 12L2.00002 21L4.00002 21L4.00002 12L2.00002 12ZM4.00002 11L3.00002 11L3.00002 13L4.00002 13L4.00002 11ZM5.00002 20L5.00002 12L3.00002 12L3.00002 20L5.00002 20ZM12 19L4.00002 19L4.00002 21L12 21L12 19ZM13 21L13 20L11 20L11 21L13 21ZM3.00002 22L12 22L12 20L3.00002 20L3.00002 22Z" fill="white" mask="url(#path-1-outside-1_182_7153)"/>
</g>
<defs>
<filter id="filter0_d_182_7153" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7153"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7153" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7145)">
<mask id="path-1-outside-1_182_7145" maskUnits="userSpaceOnUse" x="7.99998" y="8" width="14" height="14" fill="black">
<rect fill="white" x="7.99998" y="8" width="14" height="14"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5 10L16 16L9.99999 14.5L11 12.5L9.49999 10L9.99999 9.5L12.5 11L14.5 10ZM21 21L12 21V20L20 20L20 12H21L21 21Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5 10L16 16L9.99999 14.5L11 12.5L9.49999 10L9.99999 9.5L12.5 11L14.5 10ZM21 21L12 21V20L20 20L20 12H21L21 21Z" fill="#1F1F1F"/>
<path d="M16 16L15.7575 16.9701C16.0982 17.0553 16.4587 16.9555 16.7071 16.7071C16.9555 16.4587 17.0553 16.0982 16.9701 15.7575L16 16ZM14.5 10L15.4701 9.75747C15.3966 9.4632 15.1934 9.21823 14.9178 9.09149C14.6423 8.96474 14.3241 8.96993 14.0528 9.10557L14.5 10ZM9.99999 14.5L9.10556 14.0528C8.96991 14.3241 8.96473 14.6423 9.09147 14.9179C9.21822 15.1934 9.46319 15.3966 9.75745 15.4701L9.99999 14.5ZM11 12.5L11.8944 12.9472C12.0473 12.6414 12.0334 12.2787 11.8575 11.9855L11 12.5ZM9.49999 10L8.79288 9.29289C8.46841 9.61736 8.40641 10.121 8.64249 10.5145L9.49999 10ZM9.99999 9.5L10.5145 8.64251C10.121 8.40642 9.61735 8.46843 9.29288 8.79289L9.99999 9.5ZM12.5 11L11.9855 11.8575C12.2787 12.0334 12.6414 12.0473 12.9472 11.8944L12.5 11ZM12 21H11C11 21.5523 11.4477 22 12 22L12 21ZM21 21L21 22C21.5523 22 22 21.5523 22 21L21 21ZM12 20L12 19C11.7348 19 11.4804 19.1054 11.2929 19.2929C11.1053 19.4804 11 19.7348 11 20H12ZM20 20L20 21C20.5523 21 21 20.5523 21 20L20 20ZM20 12V11C19.4477 11 19 11.4477 19 12L20 12ZM21 12L22 12C22 11.7348 21.8946 11.4804 21.7071 11.2929C21.5196 11.1054 21.2652 11 21 11V12ZM16.9701 15.7575L15.4701 9.75747L13.5298 10.2425L15.0298 16.2425L16.9701 15.7575ZM9.75745 15.4701L15.7575 16.9701L16.2425 15.0299L10.2425 13.5299L9.75745 15.4701ZM10.1056 12.0528L9.10556 14.0528L10.8944 14.9472L11.8944 12.9472L10.1056 12.0528ZM8.64249 10.5145L10.1425 13.0145L11.8575 11.9855L10.3575 9.48551L8.64249 10.5145ZM9.29288 8.79289L8.79288 9.29289L10.2071 10.7071L10.7071 10.2071L9.29288 8.79289ZM13.0145 10.1425L10.5145 8.64251L9.48549 10.3575L11.9855 11.8575L13.0145 10.1425ZM14.0528 9.10557L12.0528 10.1056L12.9472 11.8944L14.9472 10.8944L14.0528 9.10557ZM12 22L21 22L21 20L12 20L12 22ZM11 20V21H13V20H11ZM20 19L12 19L12 21L20 21L20 19ZM19 12L19 20L21 20L21 12L19 12ZM21 11H20V13H21V11ZM22 21L22 12L20 12L20 21L22 21Z" fill="white" mask="url(#path-1-outside-1_182_7145)"/>
</g>
<defs>
<filter id="filter0_d_182_7145" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7145"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7145" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7113)">
<mask id="path-1-outside-1_182_7113" maskUnits="userSpaceOnUse" x="4.00002" y="6.99995" width="16" height="15" fill="black">
<rect fill="white" x="4.00002" y="6.99995" width="16" height="15"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 11.5L12 17L9.00002 11.5L11 10.5L11.5 7.99999H12.5L13 10.5L15 11.5ZM19 21L5.00002 21V20L19 20V21Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 11.5L12 17L9.00002 11.5L11 10.5L11.5 7.99999H12.5L13 10.5L15 11.5ZM19 21L5.00002 21V20L19 20V21Z" fill="#1F1F1F"/>
<path d="M12 17L11.1221 17.4788C11.2974 17.8001 11.6341 18 12 18C12.366 18 12.7027 17.8001 12.8779 17.4788L12 17ZM15 11.5L15.8779 11.9789C16.0079 11.7406 16.0354 11.4597 15.9542 11.2008C15.873 10.9418 15.69 10.7269 15.4472 10.6056L15 11.5ZM9.00002 11.5L8.5528 10.6056C8.31005 10.7269 8.12706 10.9418 8.04584 11.2008C7.96462 11.4597 7.99216 11.7406 8.12212 11.9789L9.00002 11.5ZM11 10.5L11.4472 11.3944C11.7232 11.2564 11.9201 10.9987 11.9806 10.6961L11 10.5ZM11.5 7.99999V6.99999C11.0233 6.99999 10.6129 7.33645 10.5194 7.80387L11.5 7.99999ZM12.5 7.99999L13.4806 7.80387C13.3871 7.33645 12.9767 6.99999 12.5 6.99999V7.99999ZM13 10.5L12.0194 10.6961C12.08 10.9987 12.2768 11.2564 12.5528 11.3944L13 10.5ZM5.00002 21H4.00002C4.00002 21.5522 4.44773 22 5.00002 22L5.00002 21ZM19 21L19 22C19.2652 22 19.5196 21.8946 19.7071 21.7071C19.8947 21.5195 20 21.2652 20 21H19ZM5.00002 20L5.00002 19C4.7348 19 4.48045 19.1053 4.29291 19.2928C4.10537 19.4804 4.00002 19.7347 4.00002 20H5.00002ZM19 20H20C20 19.4477 19.5523 19 19 19L19 20ZM12.8779 17.4788L15.8779 11.9789L14.1221 11.0211L11.1221 16.5211L12.8779 17.4788ZM8.12212 11.9789L11.1221 17.4788L12.8779 16.5211L9.87791 11.0211L8.12212 11.9789ZM10.5528 9.60556L8.5528 10.6056L9.44723 12.3944L11.4472 11.3944L10.5528 9.60556ZM10.5194 7.80387L10.0194 10.3039L11.9806 10.6961L12.4806 8.1961L10.5194 7.80387ZM12.5 6.99999H11.5V8.99999H12.5V6.99999ZM13.9806 10.3039L13.4806 7.80387L11.5194 8.1961L12.0194 10.6961L13.9806 10.3039ZM15.4472 10.6056L13.4472 9.60556L12.5528 11.3944L14.5528 12.3944L15.4472 10.6056ZM5.00002 22L19 22L19 20L5.00002 20L5.00002 22ZM4.00002 20V21H6.00002V20H4.00002ZM19 19L5.00002 19L5.00002 21L19 21L19 19ZM20 21V20H18V21H20Z" fill="white" mask="url(#path-1-outside-1_182_7113)"/>
</g>
<defs>
<filter id="filter0_d_182_7113" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7113"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7113" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_184_1581)" filter="url(#filter0_d_184_1581)">
<mask id="path-1-outside-1_184_1581" maskUnits="userSpaceOnUse" x="4" y="11" width="17" height="11" fill="black">
<rect fill="white" x="4" y="11" width="17" height="11"/>
<path d="M5 21L20 21L20 20L13 20L13 12L12 12L12 20L5 20L5 21Z"/>
</mask>
<path d="M5 21L20 21L20 20L13 20L13 12L12 12L12 20L5 20L5 21Z" fill="#1F1F1F"/>
<path d="M5 21L20 21L20 20L13 20L13 12L12 12L12 20L5 20L5 21Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_184_1581)"/>
</g>
<defs>
<filter id="filter0_d_184_1581" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_184_1581"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_184_1581" result="shape"/>
</filter>
<clipPath id="clip0_184_1581">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,19 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7069)">
<mask id="path-1-inside-1_182_7069" fill="white">
<path d="M14 7H10V10H7V14H10V17H14V14L17 14V10L14 10V7Z"/>
</mask>
<path d="M14 7H10V10H7V14H10V17H14V14L17 14V10L14 10V7Z" fill="#1F1F1F" stroke="white" stroke-width="2" mask="url(#path-1-inside-1_182_7069)"/>
</g>
<defs>
<filter id="filter0_d_182_7069" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7069"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7069" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_6969)">
<mask id="path-1-outside-1_182_6969" maskUnits="userSpaceOnUse" x="6.70007" y="2" width="11" height="17" fill="black">
<rect fill="white" x="6.70007" y="2" width="11" height="17"/>
<path d="M7.70007 13.7L12.0001 3L16.3001 13.7L13.5001 14.5L12.4001 18L11.6001 18L10.5001 14.5L7.70007 13.7Z"/>
</mask>
<path d="M7.70007 13.7L12.0001 3L16.3001 13.7L13.5001 14.5L12.4001 18L11.6001 18L10.5001 14.5L7.70007 13.7Z" fill="#1F1F1F"/>
<path d="M7.70007 13.7L12.0001 3L16.3001 13.7L13.5001 14.5L12.4001 18L11.6001 18L10.5001 14.5L7.70007 13.7Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_6969)"/>
</g>
<defs>
<filter id="filter0_d_182_6969" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_6969"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_6969" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7171)">
<mask id="path-1-outside-1_182_7171" maskUnits="userSpaceOnUse" x="4" y="6" width="17" height="12" fill="black">
<rect fill="white" x="4" y="6" width="17" height="12"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 17V12.625L16 13L16.5 15L20 12L16.5 9L16 11L13 11.375V7H12V11.375L9 11L8.5 9L5 12L8.5 15L9 13L12 12.625L12 17H13Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 17V12.625L16 13L16.5 15L20 12L16.5 9L16 11L13 11.375V7H12V11.375L9 11L8.5 9L5 12L8.5 15L9 13L12 12.625L12 17H13Z" fill="#1F1F1F"/>
<path d="M13 12.625L13.124 11.6327C12.8394 11.5971 12.5532 11.6855 12.3382 11.8753C12.1232 12.0651 12 12.3382 12 12.625H13ZM13 17V18C13.5523 18 14 17.5523 14 17H13ZM16 13L16.9701 12.7575C16.87 12.3568 16.5338 12.0589 16.124 12.0077L16 13ZM16.5 15L15.5299 15.2425C15.6139 15.5788 15.8661 15.8475 16.1963 15.9528C16.5265 16.058 16.8876 15.9848 17.1508 15.7593L16.5 15ZM20 12L20.6508 12.7593C20.8724 12.5693 21 12.2919 21 12C21 11.7081 20.8724 11.4307 20.6508 11.2407L20 12ZM16.5 9L17.1508 8.24074C16.8877 8.01519 16.5265 7.94198 16.1963 8.04724C15.8661 8.1525 15.6139 8.42123 15.5299 8.75746L16.5 9ZM16 11L16.124 11.9923C16.5338 11.9411 16.87 11.6432 16.9701 11.2425L16 11ZM13 11.375H12C12 11.6618 12.1232 11.9349 12.3382 12.1247C12.5532 12.3145 12.8394 12.4029 13.124 12.3673L13 11.375ZM13 7H14C14 6.44772 13.5523 6 13 6V7ZM12 7V6C11.4477 6 11 6.44772 11 7H12ZM12 11.375L11.876 12.3673C12.1606 12.4029 12.4468 12.3145 12.6618 12.1247C12.8768 11.9349 13 11.6618 13 11.375H12ZM9 11L8.02986 11.2425C8.13002 11.6432 8.46617 11.9411 8.87597 11.9923L9 11ZM8.5 9L9.47014 8.75747C9.38609 8.42124 9.13393 8.1525 8.80372 8.04724C8.47352 7.94198 8.11235 8.01519 7.84921 8.24074L8.5 9ZM5 12L4.34921 11.2407C4.12756 11.4307 4 11.7081 4 12C4 12.2919 4.12756 12.5693 4.34921 12.7593L5 12ZM8.5 15L7.84921 15.7593C8.11235 15.9848 8.47351 16.058 8.80372 15.9528C9.13393 15.8475 9.38608 15.5788 9.47014 15.2425L8.5 15ZM9 13L8.87597 12.0077C8.46617 12.0589 8.13002 12.3568 8.02986 12.7575L9 13ZM12 12.625L13 12.625C13 12.3382 12.8768 12.0651 12.6618 11.8753C12.4468 11.6855 12.1606 11.5971 11.876 11.6327L12 12.625ZM12 17L11 17C11 17.2652 11.1054 17.5196 11.2929 17.7071C11.4804 17.8946 11.7348 18 12 18V17ZM12 12.625V17H14V12.625H12ZM16.124 12.0077L13.124 11.6327L12.876 13.6173L15.876 13.9923L16.124 12.0077ZM17.4701 14.7575L16.9701 12.7575L15.0299 13.2425L15.5299 15.2425L17.4701 14.7575ZM19.3492 11.2407L15.8492 14.2407L17.1508 15.7593L20.6508 12.7593L19.3492 11.2407ZM15.8492 9.75926L19.3492 12.7593L20.6508 11.2407L17.1508 8.24074L15.8492 9.75926ZM16.9701 11.2425L17.4701 9.24254L15.5299 8.75746L15.0299 10.7575L16.9701 11.2425ZM13.124 12.3673L16.124 11.9923L15.876 10.0077L12.876 10.3827L13.124 12.3673ZM12 7V11.375H14V7H12ZM12 8H13V6H12V8ZM13 11.375V7H11V11.375H13ZM12.124 10.3827L9.12404 10.0077L8.87597 11.9923L11.876 12.3673L12.124 10.3827ZM9.97014 10.7575L9.47014 8.75747L7.52986 9.24254L8.02986 11.2425L9.97014 10.7575ZM7.84921 8.24074L4.34921 11.2407L5.65079 12.7593L9.15079 9.75926L7.84921 8.24074ZM4.34921 12.7593L7.84921 15.7593L9.15079 14.2407L5.65079 11.2407L4.34921 12.7593ZM9.47014 15.2425L9.97014 13.2425L8.02986 12.7575L7.52986 14.7575L9.47014 15.2425ZM9.12403 13.9923L12.124 13.6173L11.876 11.6327L8.87597 12.0077L9.12403 13.9923ZM13 17L13 12.625L11 12.625L11 17L13 17ZM13 16H12V18H13V16Z" fill="white" mask="url(#path-1-outside-1_182_7171)"/>
</g>
<defs>
<filter id="filter0_d_182_7171" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7171"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7171" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.3 KiB

View file

@ -1,27 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7001)">
<mask id="path-1-outside-1_182_7001" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7001)"/>
<mask id="path-2-outside-2_182_7001" maskUnits="userSpaceOnUse" x="13" y="13" width="7" height="7" fill="black">
<rect fill="white" x="13" y="13" width="7" height="7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 14.5C14 14.2239 14.2239 14 14.5 14H18.5C18.7761 14 19 14.2239 19 14.5C19 14.7761 18.7761 15 18.5 15H14.5C14.2239 15 14 14.7761 14 14.5ZM14 16.5C14 16.2239 14.2239 16 14.5 16H18.5C18.7761 16 19 16.2239 19 16.5C19 16.7761 18.7761 17 18.5 17H14.5C14.2239 17 14 16.7761 14 16.5ZM14.5 18C14.2239 18 14 18.2239 14 18.5C14 18.7761 14.2239 19 14.5 19H18.5C18.7761 19 19 18.7761 19 18.5C19 18.2239 18.7761 18 18.5 18H14.5Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 14.5C14 14.2239 14.2239 14 14.5 14H18.5C18.7761 14 19 14.2239 19 14.5C19 14.7761 18.7761 15 18.5 15H14.5C14.2239 15 14 14.7761 14 14.5ZM14 16.5C14 16.2239 14.2239 16 14.5 16H18.5C18.7761 16 19 16.2239 19 16.5C19 16.7761 18.7761 17 18.5 17H14.5C14.2239 17 14 16.7761 14 16.5ZM14.5 18C14.2239 18 14 18.2239 14 18.5C14 18.7761 14.2239 19 14.5 19H18.5C18.7761 19 19 18.7761 19 18.5C19 18.2239 18.7761 18 18.5 18H14.5Z" fill="#1F1F1F"/>
<path d="M14.5 13C13.6716 13 13 13.6716 13 14.5H15C15 14.7761 14.7761 15 14.5 15V13ZM18.5 13H14.5V15H18.5V13ZM20 14.5C20 13.6716 19.3284 13 18.5 13V15C18.2239 15 18 14.7761 18 14.5H20ZM18.5 16C19.3284 16 20 15.3284 20 14.5H18C18 14.2239 18.2239 14 18.5 14V16ZM14.5 16H18.5V14H14.5V16ZM13 14.5C13 15.3284 13.6716 16 14.5 16V14C14.7761 14 15 14.2239 15 14.5H13ZM14.5 15C13.6716 15 13 15.6716 13 16.5H15C15 16.7761 14.7761 17 14.5 17V15ZM18.5 15H14.5V17H18.5V15ZM20 16.5C20 15.6716 19.3284 15 18.5 15V17C18.2239 17 18 16.7761 18 16.5H20ZM18.5 18C19.3284 18 20 17.3284 20 16.5H18C18 16.2239 18.2239 16 18.5 16V18ZM14.5 18H18.5V16H14.5V18ZM13 16.5C13 17.3284 13.6716 18 14.5 18V16C14.7761 16 15 16.2239 15 16.5H13ZM15 18.5C15 18.7761 14.7761 19 14.5 19V17C13.6716 17 13 17.6716 13 18.5H15ZM14.5 18C14.7761 18 15 18.2239 15 18.5H13C13 19.3284 13.6716 20 14.5 20V18ZM18.5 18H14.5V20H18.5V18ZM18 18.5C18 18.2239 18.2239 18 18.5 18V20C19.3284 20 20 19.3284 20 18.5H18ZM18.5 19C18.2239 19 18 18.7761 18 18.5H20C20 17.6716 19.3284 17 18.5 17V19ZM14.5 19H18.5V17H14.5V19Z" fill="white" mask="url(#path-2-outside-2_182_7001)"/>
</g>
<defs>
<filter id="filter0_d_182_7001" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7001"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7001" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -1,23 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_6977)">
<mask id="path-1-outside-1_182_6977" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_6977)"/>
<circle cx="16.5" cy="16.5" r="5" fill="#68D56C" stroke="white" stroke-linejoin="round"/>
<path d="M17 14H16V16H14V17H16V19H17V17H19V16H17V14Z" fill="white"/>
</g>
<defs>
<filter id="filter0_d_182_6977" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_6977"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_6977" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_191_1527)" filter="url(#filter0_d_191_1527)">
<mask id="path-1-outside-1_191_1527" maskUnits="userSpaceOnUse" x="5" y="6" width="13" height="13" fill="black">
<rect fill="white" x="5" y="6" width="13" height="13"/>
<path d="M12 7L11 7L11 12L6 12L6 13L11 13L11 18L12 18L12 13L17 13L17 12L12 12L12 7Z"/>
</mask>
<path d="M12 7L11 7L11 12L6 12L6 13L11 13L11 18L12 18L12 13L17 13L17 12L12 12L12 7Z" fill="#1F1F1F"/>
<path d="M12 7L11 7L11 12L6 12L6 13L11 13L11 18L12 18L12 13L17 13L17 12L12 12L12 7Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_191_1527)"/>
</g>
<defs>
<filter id="filter0_d_191_1527" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_191_1527"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_191_1527" result="shape"/>
</filter>
<clipPath id="clip0_191_1527">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,30 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7077)">
<mask id="path-1-outside-1_182_7077" maskUnits="userSpaceOnUse" x="2" y="2" width="19" height="19" fill="black">
<rect fill="white" x="2" y="2" width="19" height="19"/>
<path d="M11 3V9H12V3H11Z"/>
<path d="M14 12V11H20V12H14Z"/>
<path d="M11 14H12V20H11V14Z"/>
<path d="M3 12H9V11H3V12Z"/>
</mask>
<path d="M11 3V9H12V3H11Z" fill="#1F1F1F"/>
<path d="M14 12V11H20V12H14Z" fill="#1F1F1F"/>
<path d="M11 14H12V20H11V14Z" fill="#1F1F1F"/>
<path d="M3 12H9V11H3V12Z" fill="#1F1F1F"/>
<path d="M11 3V9H12V3H11Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7077)"/>
<path d="M14 12V11H20V12H14Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7077)"/>
<path d="M11 14H12V20H11V14Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7077)"/>
<path d="M3 12H9V11H3V12Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7077)"/>
</g>
<defs>
<filter id="filter0_d_182_7077" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7077"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7077" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 9.6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 10 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_182_7089)" filter="url(#filter0_d_182_7089)">
<mask id="path-1-outside-1_182_7089" maskUnits="userSpaceOnUse" x="7.5" y="3" width="9" height="18" fill="black">
<rect fill="white" x="7.5" y="3" width="9" height="18"/>
<path d="M12 20L15.5 13.5L13 12.5L12.5 4L11.5 4L11 12.5L8.5 13.5L12 20Z"/>
</mask>
<path d="M12 20L15.5 13.5L13 12.5L12.5 4L11.5 4L11 12.5L8.5 13.5L12 20Z" fill="#1F1F1F"/>
<path d="M12 20L15.5 13.5L13 12.5L12.5 4L11.5 4L11 12.5L8.5 13.5L12 20Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7089)"/>
</g>
<defs>
<filter id="filter0_d_182_7089" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7089"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7089" result="shape"/>
</filter>
<clipPath id="clip0_182_7089">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.2 KiB

View file

@ -1,23 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_6989)">
<mask id="path-1-outside-1_182_6989" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_6989)"/>
<circle cx="16.5" cy="16.5" r="5" fill="#5778EE" stroke="white" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5 15C15.5 14.6183 15.6242 14.3845 15.7781 14.2428C15.9386 14.0949 16.1835 14 16.5 14C16.8164 14 17.0614 14.0949 17.2219 14.2428C17.3758 14.3845 17.5 14.6183 17.5 15C17.5 15.2857 17.431 15.4209 17.3719 15.4965C17.3031 15.5844 17.2006 15.6532 17.0264 15.7403C17.0029 15.7521 16.9754 15.7652 16.9451 15.7797L16.9451 15.7797L16.945 15.7797C16.7968 15.8507 16.5798 15.9545 16.4143 16.0925C16.1664 16.299 16 16.5931 16 17C16 17.2761 16.2239 17.5 16.5 17.5C16.7761 17.5 17 17.2761 17 17C17 16.9069 17.0211 16.8885 17.0545 16.8607C17.1158 16.8096 17.1876 16.7746 17.3191 16.7107C17.3633 16.6892 17.4142 16.6644 17.4736 16.6347C17.6744 16.5343 17.9469 16.3843 18.1594 16.1128C18.3815 15.8291 18.5 15.4643 18.5 15C18.5 14.3817 18.2884 13.8655 17.8994 13.5072C17.5171 13.1551 17.012 13 16.5 13C15.988 13 15.4829 13.1551 15.1006 13.5072C14.7116 13.8655 14.5 14.3817 14.5 15C14.5 15.2761 14.7239 15.5 15 15.5C15.2761 15.5 15.5 15.2761 15.5 15ZM16.5 20C16.7761 20 17 19.7761 17 19.5C17 19.2239 16.7761 19 16.5 19C16.2239 19 16 19.2239 16 19.5C16 19.7761 16.2239 20 16.5 20Z" fill="white"/>
</g>
<defs>
<filter id="filter0_d_182_6989" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_6989"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_6989" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_247_4704)">
<mask id="path-1-outside-1_247_4704" maskUnits="userSpaceOnUse" x="5" y="4" width="14" height="17" fill="black">
<rect fill="white" x="5" y="4" width="14" height="17"/>
<path d="M12 5C8.5 5 6 7 6 10C6 11.2047 6.3225 12.4094 6.7085 13.096C6.84382 13.3368 6.8302 13.6512 6.67669 13.8807C6.5 14.1449 6.5 14.3205 6.5 14.5C6.5 15.243 7.14403 15.986 8.02195 16.3188C8.53836 16.5146 9 16.9477 9 17.5C9 19 9 19 10 19C11 19 10.9935 19 11 18.5C11 19.5 11 19.5 12 19.5C13 19.5 13 19.5 13 18.5C13 19 13 19 14 19C15 19 15 19 15 17.5C15 16.9477 15.4616 16.5146 15.9781 16.3188C16.856 15.986 17.5 15.243 17.5 14.5C17.5 14.3231 17.5 14.1463 17.323 13.881C17.1698 13.6512 17.1562 13.3368 17.2915 13.096C17.6775 12.4094 18 11.2047 18 10C18 7 15.5 5 12 5Z"/>
</mask>
<path d="M12 5C8.5 5 6 7 6 10C6 11.2047 6.3225 12.4094 6.7085 13.096C6.84382 13.3368 6.8302 13.6512 6.67669 13.8807C6.5 14.1449 6.5 14.3205 6.5 14.5C6.5 15.243 7.14403 15.986 8.02195 16.3188C8.53836 16.5146 9 16.9477 9 17.5C9 19 9 19 10 19C11 19 10.9935 19 11 18.5C11 19.5 11 19.5 12 19.5C13 19.5 13 19.5 13 18.5C13 19 13 19 14 19C15 19 15 19 15 17.5C15 16.9477 15.4616 16.5146 15.9781 16.3188C16.856 15.986 17.5 15.243 17.5 14.5C17.5 14.3231 17.5 14.1463 17.323 13.881C17.1698 13.6512 17.1562 13.3368 17.2915 13.096C17.6775 12.4094 18 11.2047 18 10C18 7 15.5 5 12 5Z" fill="#1F1F1F"/>
<path d="M12 5C8.5 5 6 7 6 10C6 11.2047 6.3225 12.4094 6.7085 13.096C6.84382 13.3368 6.8302 13.6512 6.67669 13.8807C6.5 14.1449 6.5 14.3205 6.5 14.5C6.5 15.243 7.14403 15.986 8.02195 16.3188C8.53836 16.5146 9 16.9477 9 17.5C9 19 9 19 10 19C11 19 10.9935 19 11 18.5C11 19.5 11 19.5 12 19.5C13 19.5 13 19.5 13 18.5C13 19 13 19 14 19C15 19 15 19 15 17.5C15 16.9477 15.4616 16.5146 15.9781 16.3188C16.856 15.986 17.5 15.243 17.5 14.5C17.5 14.3231 17.5 14.1463 17.323 13.881C17.1698 13.6512 17.1562 13.3368 17.2915 13.096C17.6775 12.4094 18 11.2047 18 10C18 7 15.5 5 12 5Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_247_4704)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 12.5C11 13.5 10 14 9 14C7.5 14 7.5 13.5 7.5 12.5C7.5 12 7.5 11.5 8.5 11.5C9.5 11.5 11 12 11 12.5ZM13 12.5C13 13.5 14 14 15 14C16.5 14 16.5 13.5 16.5 12.5C16.5 12 16.5 11.5 15.5 11.5C14.5 11.5 13 12 13 12.5ZM12.4681 13.7484C12.3059 13.3158 11.694 13.3158 11.5318 13.7484L10.7533 15.8244C10.6498 16.1004 10.806 16.392 11.0673 16.4761C11.1661 16.5078 11.2718 16.4838 11.3706 16.4521L11.6942 16.3482C11.8931 16.2843 12.1069 16.2843 12.3057 16.3482L12.6294 16.4521C12.7282 16.4838 12.8339 16.5078 12.9327 16.4761C13.194 16.392 13.3501 16.1004 13.2466 15.8244L12.4681 13.7484Z" fill="white"/>
</g>
<defs>
<filter id="filter0_d_247_4704" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_247_4704"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_247_4704" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_182_7093)" filter="url(#filter0_d_182_7093)">
<mask id="path-1-outside-1_182_7093" maskUnits="userSpaceOnUse" x="3" y="7.5" width="18" height="9" fill="black">
<rect fill="white" x="3" y="7.5" width="18" height="9"/>
<path d="M4 12L10.5 15.5L11.5 13L20 12.5L20 11.5L11.5 11L10.5 8.5L4 12Z"/>
</mask>
<path d="M4 12L10.5 15.5L11.5 13L20 12.5L20 11.5L11.5 11L10.5 8.5L4 12Z" fill="#1F1F1F"/>
<path d="M4 12L10.5 15.5L11.5 13L20 12.5L20 11.5L11.5 11L10.5 8.5L4 12Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7093)"/>
</g>
<defs>
<filter id="filter0_d_182_7093" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7093"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7093" result="shape"/>
</filter>
<clipPath id="clip0_182_7093">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_6965)">
<mask id="path-1-outside-1_182_6965" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_6965)"/>
</g>
<defs>
<filter id="filter0_d_182_6965" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_6965"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_6965" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7121)">
<mask id="path-1-outside-1_182_7121" maskUnits="userSpaceOnUse" x="2.00005" y="3.99997" width="15" height="16" fill="black">
<rect fill="white" x="2.00005" y="3.99997" width="15" height="16"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.00008 19L3.00008 4.99997H4.00008L4.00008 19H3.00008ZM12.5 15L7.00005 12L12.5 8.99997L13.5 11L16 11.5V12.5L13.5 13L12.5 15Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.00008 19L3.00008 4.99997H4.00008L4.00008 19H3.00008ZM12.5 15L7.00005 12L12.5 8.99997L13.5 11L16 11.5V12.5L13.5 13L12.5 15Z" fill="#1F1F1F"/>
<path d="M3.00008 4.99997V3.99997C2.73486 3.99997 2.48051 4.10533 2.29297 4.29286C2.10543 4.4804 2.00008 4.73475 2.00008 4.99997L3.00008 4.99997ZM3.00008 19L2.00008 19C2.00008 19.5523 2.44779 20 3.00008 20V19ZM4.00008 4.99997L5.00008 4.99997C5.00008 4.44769 4.55236 3.99997 4.00008 3.99997V4.99997ZM4.00008 19V20C4.26529 20 4.51965 19.8946 4.70718 19.7071C4.89472 19.5195 5.00008 19.2652 5.00008 19L4.00008 19ZM7.00005 12L6.52119 11.1221C6.19993 11.2973 6.00005 11.634 6.00005 12C6.00005 12.3659 6.19993 12.7026 6.52119 12.8779L7.00005 12ZM12.5 15L12.0212 15.8779C12.2594 16.0078 12.5403 16.0354 12.7993 15.9541C13.0582 15.8729 13.2731 15.6899 13.3945 15.4472L12.5 15ZM12.5 8.99997L13.3945 8.55275C13.2731 8.31 13.0582 8.12701 12.7993 8.04579C12.5403 7.96458 12.2594 7.99211 12.0212 8.12208L12.5 8.99997ZM13.5 11L12.6056 11.4472C12.7436 11.7232 13.0013 11.92 13.3039 11.9806L13.5 11ZM16 11.5H17C17 11.0233 16.6636 10.6129 16.1962 10.5194L16 11.5ZM16 12.5L16.1962 13.4806C16.6636 13.3871 17 12.9767 17 12.5H16ZM13.5 13L13.3039 12.0194C13.0013 12.0799 12.7436 12.2767 12.6056 12.5528L13.5 13ZM2.00008 4.99997L2.00008 19L4.00008 19L4.00008 4.99997L2.00008 4.99997ZM4.00008 3.99997H3.00008V5.99997H4.00008V3.99997ZM5.00008 19L5.00008 4.99997L3.00008 4.99997L3.00008 19L5.00008 19ZM3.00008 20H4.00008V18H3.00008V20ZM6.52119 12.8779L12.0212 15.8779L12.9789 14.1221L7.4789 11.1221L6.52119 12.8779ZM12.0212 8.12208L6.52119 11.1221L7.4789 12.8779L12.9789 9.87787L12.0212 8.12208ZM14.3945 10.5528L13.3945 8.55275L11.6056 9.44719L12.6056 11.4472L14.3945 10.5528ZM16.1962 10.5194L13.6962 10.0194L13.3039 11.9806L15.8039 12.4806L16.1962 10.5194ZM17 12.5V11.5H15V12.5H17ZM13.6962 13.9806L16.1962 13.4806L15.8039 11.5194L13.3039 12.0194L13.6962 13.9806ZM13.3945 15.4472L14.3945 13.4472L12.6056 12.5528L11.6056 14.5528L13.3945 15.4472Z" fill="white" mask="url(#path-1-outside-1_182_7121)"/>
</g>
<defs>
<filter id="filter0_d_182_7121" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7121"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7121" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_184_1587)" filter="url(#filter0_d_184_1587)">
<mask id="path-1-outside-1_184_1587" maskUnits="userSpaceOnUse" x="2" y="4" width="11" height="17" fill="black">
<rect fill="white" x="2" y="4" width="11" height="17"/>
<path d="M3 5L3 20L4 20L4 13L12 13L12 12L4 12L4 5L3 5Z"/>
</mask>
<path d="M3 5L3 20L4 20L4 13L12 13L12 12L4 12L4 5L3 5Z" fill="#1F1F1F"/>
<path d="M3 5L3 20L4 20L4 13L12 13L12 12L4 12L4 5L3 5Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_184_1587)"/>
</g>
<defs>
<filter id="filter0_d_184_1587" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_184_1587"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_184_1587" result="shape"/>
</filter>
<clipPath id="clip0_184_1587">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_184_1532)" filter="url(#filter0_d_184_1532)">
<mask id="path-1-outside-1_184_1532" maskUnits="userSpaceOnUse" x="2.00003" y="11" width="11" height="11" fill="black">
<rect fill="white" x="2.00003" y="11" width="11" height="11"/>
<path d="M3.00003 12L3.00003 21L12 21L12 20L4.00003 20L4.00003 12L3.00003 12Z"/>
</mask>
<path d="M3.00003 12L3.00003 21L12 21L12 20L4.00003 20L4.00003 12L3.00003 12Z" fill="#1F1F1F"/>
<path d="M3.00003 12L3.00003 21L12 21L12 20L4.00003 20L4.00003 12L3.00003 12Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_184_1532)"/>
</g>
<defs>
<filter id="filter0_d_184_1532" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_184_1532"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_184_1532" result="shape"/>
</filter>
<clipPath id="clip0_184_1532">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_184_1524)" filter="url(#filter0_d_184_1524)">
<mask id="path-1-outside-1_184_1524" maskUnits="userSpaceOnUse" x="11" y="11" width="11" height="11" fill="black">
<rect fill="white" x="11" y="11" width="11" height="11"/>
<path d="M12 21L21 21L21 12L20 12L20 20L12 20L12 21Z"/>
</mask>
<path d="M12 21L21 21L21 12L20 12L20 20L12 20L12 21Z" fill="#1F1F1F"/>
<path d="M12 21L21 21L21 12L20 12L20 20L12 20L12 21Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_184_1524)"/>
</g>
<defs>
<filter id="filter0_d_184_1524" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_184_1524"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_184_1524" result="shape"/>
</filter>
<clipPath id="clip0_184_1524">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 9.9 KiB

View file

@ -1,23 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_6983)">
<mask id="path-1-outside-1_182_6983" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_6983)"/>
<circle cx="16.5" cy="16.5" r="5" fill="#FB5050" stroke="white" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.8278 15.5864L15.5864 18.8278C16.4835 19.1793 17.5429 18.9927 18.2677 18.2678C18.9926 17.5429 19.1793 16.4836 18.8278 15.5864ZM17.4135 14.1722L14.1722 17.4136C13.8206 16.5164 14.0073 15.4571 14.7322 14.7322C15.4571 14.0073 16.5164 13.8207 17.4135 14.1722Z" fill="white"/>
</g>
<defs>
<filter id="filter0_d_182_6983" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_6983"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_6983" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7029)">
<circle cx="12" cy="12.5" r="7" fill="#FB5050" stroke="white" stroke-linejoin="round"/>
<g clip-path="url(#clip0_182_7029)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8103 10.104L9.60399 16.3102C11.3426 17.4057 13.6677 17.1963 15.182 15.682C16.6963 14.1676 16.9057 11.8425 15.8103 10.104ZM14.396 8.68976L8.18978 14.896C7.09429 13.1574 7.30371 10.8323 8.81804 9.31802C10.3324 7.80369 12.6575 7.59427 14.396 8.68976Z" fill="white"/>
</g>
</g>
<defs>
<filter id="filter0_d_182_7029" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7029"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7029" result="shape"/>
</filter>
<clipPath id="clip0_182_7029">
<rect width="13" height="13" fill="white" transform="translate(5.5 6)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7033)">
<mask id="path-1-outside-1_182_7033" maskUnits="userSpaceOnUse" x="4.97919" y="4.58579" width="14.8492" height="14.8492" fill="black">
<rect fill="white" x="4.97919" y="4.58579" width="14.8492" height="14.8492"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.7071 6.70711C17.3166 6.31658 16.6834 6.31658 16.2929 6.70711L15.5858 7.41421L17 8.82843L17.7071 8.12132C18.0976 7.7308 18.0976 7.09763 17.7071 6.70711ZM9.22183 16.6066L16.2929 9.53553L14.8787 8.12132L7.80761 15.1924L7.10051 17.3137L9.22183 16.6066Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.7071 6.70711C17.3166 6.31658 16.6834 6.31658 16.2929 6.70711L15.5858 7.41421L17 8.82843L17.7071 8.12132C18.0976 7.7308 18.0976 7.09763 17.7071 6.70711ZM9.22183 16.6066L16.2929 9.53553L14.8787 8.12132L7.80761 15.1924L7.10051 17.3137L9.22183 16.6066Z" fill="#1F1F1F"/>
<path d="M15.5858 7.41421L14.8787 6.70711C14.4882 7.09763 14.4882 7.7308 14.8787 8.12132L15.5858 7.41421ZM17 8.82843L16.2929 9.53553C16.6834 9.92606 17.3166 9.92606 17.7071 9.53553L17 8.82843ZM16.2929 9.53553L17 10.2426C17.3905 9.85212 17.3905 9.21895 17 8.82843L16.2929 9.53553ZM9.22183 16.6066L9.53806 17.5553C9.68533 17.5062 9.81916 17.4235 9.92893 17.3137L9.22183 16.6066ZM14.8787 8.12132L15.5858 7.41421C15.1953 7.02369 14.5621 7.02369 14.1716 7.41421L14.8787 8.12132ZM7.80761 15.1924L7.10051 14.4853C6.99073 14.5951 6.90802 14.7289 6.85893 14.8762L7.80761 15.1924ZM7.10051 17.3137L6.15182 16.9975C6.03205 17.3568 6.12557 17.753 6.3934 18.0208C6.66123 18.2886 7.0574 18.3822 7.41674 18.2624L7.10051 17.3137ZM17 7.41421L18.4142 6C17.6332 5.21895 16.3668 5.21895 15.5858 6L17 7.41421ZM16.2929 8.12132L17 7.41421L15.5858 6L14.8787 6.70711L16.2929 8.12132ZM17.7071 8.12132L16.2929 6.70711L14.8787 8.12132L16.2929 9.53553L17.7071 8.12132ZM17 7.41421L16.2929 8.12132L17.7071 9.53553L18.4142 8.82843L17 7.41421ZM17 7.41421L18.4142 8.82843C19.1953 8.04738 19.1953 6.78105 18.4142 6L17 7.41421ZM15.5858 8.82843L8.51472 15.8995L9.92893 17.3137L17 10.2426L15.5858 8.82843ZM14.1716 8.82843L15.5858 10.2426L17 8.82843L15.5858 7.41421L14.1716 8.82843ZM8.51472 15.8995L15.5858 8.82843L14.1716 7.41421L7.10051 14.4853L8.51472 15.8995ZM8.04919 17.6299L8.7563 15.5086L6.85893 14.8762L6.15182 16.9975L8.04919 17.6299ZM8.9056 15.6579L6.78428 16.365L7.41674 18.2624L9.53806 17.5553L8.9056 15.6579Z" fill="white" mask="url(#path-1-outside-1_182_7033)"/>
</g>
<defs>
<filter id="filter0_d_182_7033" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7033"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7033" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 10 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7235)">
<mask id="path-1-outside-1_182_7235" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7235)"/>
<circle cx="16.5" cy="16.5" r="5" stroke="white" stroke-linejoin="round"/>
<path d="M15.5205 12.1086C15.6951 12.0696 15.8722 12.0409 16.0506 12.0229C16.1984 12.0082 16.3482 12.0008 16.4998 12.0008C16.9027 12.0008 17.2931 12.0537 17.6647 12.153C18.0361 12.2528 18.4007 12.4022 18.7496 12.6036C18.8809 12.6794 19.007 12.7608 19.1276 12.8474C19.3765 13.0268 19.6064 13.231 19.8135 13.4564C19.6488 15.1504 18.2316 16.4775 16.4996 16.5001C17.3459 14.989 16.9051 13.0982 15.5205 12.1086Z" fill="#FB5050"/>
<path d="M19.8133 13.4561C19.9344 13.5878 20.0478 13.7268 20.1526 13.8723C20.2392 13.993 20.3206 14.119 20.3964 14.2503C20.5978 14.5991 20.7472 14.9638 20.847 15.3352C20.9463 15.7067 20.9992 16.0972 20.9992 16.5001C20.9992 16.6517 20.9917 16.8016 20.9771 16.9493C20.9462 17.2546 20.8843 17.5558 20.7927 17.8478C19.2433 18.5522 17.3853 17.9884 16.4998 16.4998C18.2315 16.4771 19.6486 15.15 19.8133 13.4561Z" fill="#FFA200"/>
<path d="M20.7929 17.8475C20.7393 18.0183 20.6756 18.1859 20.602 18.3495C20.5408 18.4848 20.4724 18.6183 20.3966 18.7496C20.1952 19.0984 19.9541 19.4101 19.6823 19.6822C19.4102 19.954 19.0985 20.1951 18.7496 20.3966C18.6183 20.4724 18.4848 20.5408 18.3495 20.602C18.0697 20.7279 17.7779 20.8248 17.4791 20.8915C16.0945 19.9019 15.6537 18.0109 16.5001 16.4998C17.3857 17.9881 19.2435 18.5518 20.7929 17.8475Z" fill="#F4E434"/>
<path d="M17.4795 20.8916C17.3049 20.9305 17.1278 20.9592 16.9494 20.9773C16.8016 20.9919 16.6518 20.9994 16.5002 20.9994C16.0974 20.9994 15.7069 20.9465 15.3353 20.8472C14.9639 20.7474 14.5993 20.598 14.2504 20.3966C14.1191 20.3207 13.993 20.2393 13.8724 20.1527C13.6235 19.9734 13.3936 19.7692 13.1865 19.5438C13.3512 17.8498 14.7685 16.5226 16.5004 16.5001C15.6542 18.0112 16.0949 19.9019 17.4795 20.8916Z" fill="#68D56C"/>
<path d="M13.1866 19.5441C13.0655 19.4123 12.9522 19.2733 12.8473 19.1278C12.7608 19.0072 12.6794 18.8811 12.6036 18.7498C12.4022 18.401 12.2528 18.0363 12.153 17.6649C12.0537 17.2934 12.0007 16.9029 12.0007 16.5C12.0007 16.3484 12.0082 16.1985 12.0229 16.0508C12.0538 15.7455 12.1157 15.4444 12.2073 15.1523C13.7567 14.4479 15.6147 15.0117 16.5002 16.5003C14.7684 16.523 13.3514 17.8502 13.1866 19.5441Z" fill="#5778EE"/>
<path d="M12.2071 15.1526C12.2607 14.9819 12.3244 14.8142 12.398 14.6506C12.4592 14.5154 12.5276 14.3818 12.6034 14.2506C12.8048 13.9017 13.0459 13.59 13.3177 13.3179C13.5898 13.0461 13.9015 12.805 14.2504 12.6036C14.3817 12.5278 14.5152 12.4593 14.6505 12.3981C14.9303 12.2722 15.2221 12.1753 15.5209 12.1086C16.9055 13.0983 17.3463 14.9892 16.4999 16.5004C15.6143 15.012 13.7565 14.4483 12.2071 15.1526Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7235" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7235"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7235" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7241)">
<mask id="path-1-outside-1_182_7241" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7241)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(15 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M16.6904 12.0048C16.8692 12.0123 17.0476 12.0304 17.2247 12.0592C17.3712 12.0833 17.5179 12.1148 17.6643 12.1541C18.0534 12.2583 18.4169 12.4105 18.7501 12.6026C19.083 12.7951 19.3966 13.0338 19.6814 13.3186C19.7886 13.4259 19.8893 13.5371 19.9834 13.652C20.1775 13.8897 20.3466 14.1464 20.4884 14.4177C19.8908 16.0114 18.1784 16.9265 16.4996 16.5C17.7081 15.2594 17.7717 13.319 16.6904 12.0048Z" fill="#FB5050"/>
<path d="M20.4883 14.4173C20.5711 14.5759 20.6446 14.7395 20.7083 14.9072C20.7606 15.0461 20.8067 15.1889 20.8459 15.3354C20.9502 15.7245 21.0001 16.1153 21.0003 16.4999C21.0001 16.8845 20.9502 17.2754 20.8459 17.6645C20.8067 17.811 20.7606 17.9538 20.7082 18.0928C20.5994 18.3796 20.4616 18.6545 20.2976 18.9129C18.6186 19.1922 16.9699 18.1668 16.4998 16.4997C18.1785 16.926 19.8907 16.0108 20.4883 14.4173Z" fill="#FFA200"/>
<path d="M20.2979 18.9127C20.2019 19.0638 20.097 19.2092 19.9836 19.3482C19.8895 19.463 19.7888 19.5742 19.6816 19.6814C19.3968 19.9663 19.0832 20.205 18.7503 20.3975C18.4171 20.5895 18.0536 20.7418 17.6645 20.846C17.518 20.8853 17.3713 20.9168 17.2248 20.9409C16.9219 20.9901 16.615 21.0082 16.3092 20.9953C15.2278 19.681 15.2915 17.7404 16.5002 16.4998C16.9704 18.1667 18.619 19.192 20.2979 18.9127Z" fill="#F4E434"/>
<path d="M16.3096 20.9954C16.1308 20.9879 15.9523 20.9697 15.7753 20.941C15.6288 20.9169 15.4821 20.8853 15.3357 20.8461C14.9466 20.7418 14.5831 20.5896 14.2499 20.3976C13.917 20.2051 13.6034 19.9664 13.3185 19.6815C13.2113 19.5743 13.1107 19.463 13.0165 19.3482C12.8225 19.1105 12.6534 18.8538 12.5116 18.5824C13.1092 16.9888 14.8216 16.0736 16.5004 16.5001C15.2919 17.7407 15.2283 19.6811 16.3096 20.9954Z" fill="#68D56C"/>
<path d="M12.5117 18.5828C12.4288 18.4242 12.3553 18.2606 12.2917 18.0929C12.2393 17.954 12.1933 17.8112 12.1541 17.6648C12.0498 17.2756 11.9999 16.8848 11.9996 16.5002C11.9999 16.1156 12.0498 15.7247 12.1541 15.3356C12.1933 15.1891 12.2393 15.0463 12.2917 14.9073C12.4006 14.6205 12.5383 14.3456 12.7024 14.0872C14.3813 13.8079 16.0301 14.8333 16.5001 16.5004C14.8215 16.0741 13.1092 16.9893 12.5117 18.5828Z" fill="#5778EE"/>
<path d="M12.7021 14.0875C12.798 13.9364 12.903 13.7909 13.0164 13.652C13.1105 13.5372 13.2112 13.4259 13.3184 13.3187C13.6032 13.0339 13.9168 12.7952 14.2497 12.6027C14.5829 12.4106 14.9464 12.2584 15.3355 12.1541C15.4819 12.1149 15.6287 12.0833 15.7752 12.0592C16.078 12.0101 16.3849 11.9919 16.6908 12.0048C17.7721 13.3192 17.7085 15.2598 16.4998 16.5003C16.0296 14.8335 14.3809 13.8082 12.7021 14.0875Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7241" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7241"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7241" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7295)">
<mask id="path-1-outside-1_182_7295" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7295)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(150 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M19.544 19.8133C19.4122 19.9344 19.2732 20.0478 19.1277 20.1526C19.0071 20.2392 18.881 20.3206 18.7498 20.3964C18.4009 20.5978 18.0363 20.7472 17.6648 20.847C17.2933 20.9463 16.9028 20.9992 16.4999 20.9992C16.3483 20.9992 16.1984 20.9917 16.0507 20.9771C15.7454 20.9462 15.4443 20.8843 15.1522 20.7927C14.4479 19.2432 15.0116 17.3852 16.5002 16.4998C16.5229 18.2315 17.8501 19.6486 19.544 19.8133Z" fill="#FB5050"/>
<path d="M15.1525 20.7928C14.9818 20.7392 14.8141 20.6755 14.6505 20.6019C14.5153 20.5407 14.3818 20.4723 14.2505 20.3965C13.9016 20.1951 13.5899 19.954 13.3178 19.6822C13.046 19.4101 12.8049 19.0984 12.6035 18.7495C12.5277 18.6182 12.4592 18.4847 12.398 18.3494C12.2722 18.0696 12.1752 17.7778 12.1085 17.4791C13.0982 16.0944 14.9891 15.6536 16.5003 16.5001C15.0119 17.3856 14.4482 19.2435 15.1525 20.7928Z" fill="#FFA200"/>
<path d="M12.1085 17.4795C12.0695 17.3048 12.0408 17.1278 12.0228 16.9493C12.0082 16.8016 12.0007 16.6517 12.0007 16.5001C12.0007 16.0973 12.0536 15.7068 12.1529 15.3353C12.2527 14.9639 12.4021 14.5992 12.6035 14.2503C12.6793 14.119 12.7607 13.993 12.8473 13.8723C13.0267 13.6234 13.2309 13.3936 13.4563 13.1864C15.1503 13.3512 16.4774 14.7684 16.5 16.5003C14.9889 15.6541 13.0981 16.0949 12.1085 17.4795Z" fill="#F4E434"/>
<path d="M13.4559 13.1866C13.5877 13.0655 13.7267 12.9522 13.8722 12.8473C13.9928 12.7608 14.1188 12.6793 14.2501 12.6035C14.599 12.4021 14.9636 12.2527 15.335 12.153C15.7066 12.0536 16.0971 12.0007 16.5 12.0007C16.6516 12.0007 16.8014 12.0082 16.9492 12.0228C17.2545 12.0537 17.5556 12.1156 17.8477 12.2073C18.552 13.7567 17.9883 15.6147 16.4997 16.5002C16.4769 14.7684 15.1498 13.3513 13.4559 13.1866Z" fill="#68D56C"/>
<path d="M17.8474 12.2071C18.0181 12.2606 18.1858 12.3243 18.3493 12.3979C18.4846 12.4591 18.6181 12.5276 18.7494 12.6034C19.0983 12.8048 19.41 13.0459 19.6821 13.3176C19.9539 13.5897 20.195 13.9014 20.3964 14.2503C20.4722 14.3816 20.5407 14.5152 20.6019 14.6505C20.7277 14.9303 20.8247 15.222 20.8914 15.5208C19.9017 16.9055 18.0108 17.3462 16.4996 16.4998C17.988 15.6143 18.5516 13.7564 17.8474 12.2071Z" fill="#5778EE"/>
<path d="M20.8914 15.5204C20.9304 15.6951 20.9591 15.8721 20.9771 16.0506C20.9918 16.1983 20.9993 16.3482 20.9993 16.4998C20.9993 16.9026 20.9463 17.2931 20.847 17.6646C20.7473 18.036 20.5979 18.4007 20.3964 18.7496C20.3206 18.8809 20.2392 19.0069 20.1526 19.1276C19.9732 19.3765 19.769 19.6063 19.5437 19.8135C17.8496 19.6487 16.5225 18.2315 16.4999 16.4996C18.011 17.3458 19.9018 16.905 20.8914 15.5204Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7295" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7295"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7295" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7301)">
<mask id="path-1-outside-1_182_7301" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7301)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(165 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M18.5827 20.4883C18.4241 20.5712 18.2605 20.6447 18.0928 20.7083C17.9539 20.7607 17.8111 20.8067 17.6647 20.846C17.2756 20.9502 16.8847 21.0002 16.5001 21.0004C16.1155 21.0002 15.7246 20.9502 15.3355 20.846C15.1891 20.8067 15.0462 20.7607 14.9073 20.7083C14.6204 20.5995 14.3456 20.4617 14.0871 20.2976C13.8078 18.6187 14.8333 16.9699 16.5003 16.4999C16.0741 18.1785 16.9892 19.8908 18.5827 20.4883Z" fill="#FB5050"/>
<path d="M14.0874 20.2979C13.9363 20.2019 13.7909 20.097 13.6519 19.9836C13.5371 19.8895 13.4258 19.7888 13.3186 19.6816C13.0338 19.3968 12.7951 19.0832 12.6026 18.7503C12.4105 18.4171 12.2583 18.0536 12.154 17.6645C12.1148 17.518 12.0832 17.3713 12.0592 17.2248C12.01 16.9219 11.9918 16.615 12.0047 16.3092C13.3191 15.2278 15.2597 15.2915 16.5003 16.5002C14.8334 16.9704 13.8081 18.619 14.0874 20.2979Z" fill="#FFA200"/>
<path d="M12.0047 16.3095C12.0122 16.1308 12.0304 15.9523 12.0591 15.7753C12.0832 15.6288 12.1147 15.4821 12.154 15.3357C12.2582 14.9466 12.4104 14.5831 12.6025 14.2499C12.795 13.917 13.0337 13.6034 13.3186 13.3185C13.4258 13.2113 13.5371 13.1107 13.6519 13.0165C13.8896 12.8225 14.1463 12.6533 14.4176 12.5116C16.0113 13.1092 16.9264 14.8216 16.5 16.5003C15.2594 15.2919 13.3189 15.2283 12.0047 16.3095Z" fill="#F4E434"/>
<path d="M14.4172 12.5117C14.5759 12.4288 14.7395 12.3553 14.9071 12.2917C15.0461 12.2393 15.1889 12.1933 15.3353 12.154C15.7244 12.0498 16.1153 11.9999 16.4999 11.9996C16.8845 11.9998 17.2753 12.0498 17.6645 12.154C17.8109 12.1933 17.9538 12.2393 18.0927 12.2917C18.3796 12.4006 18.6544 12.5383 18.9129 12.7024C19.1922 14.3813 18.1667 16.0301 16.4996 16.5001C16.9259 14.8215 16.0108 13.1092 14.4172 12.5117Z" fill="#68D56C"/>
<path d="M18.9126 12.7021C19.0636 12.798 19.2091 12.9029 19.348 13.0164C19.4629 13.1105 19.5741 13.2111 19.6813 13.3183C19.9662 13.6032 20.2048 13.9167 20.3973 14.2496C20.5894 14.5828 20.7416 14.9463 20.8459 15.3355C20.8852 15.4819 20.9167 15.6286 20.9408 15.7751C20.99 16.078 21.0081 16.3849 20.9952 16.6908C19.6809 17.7721 17.7403 17.7084 16.4997 16.4997C18.1666 16.0296 19.1918 14.3809 18.9126 12.7021Z" fill="#5778EE"/>
<path d="M20.9954 16.6904C20.9878 16.8692 20.9697 17.0477 20.9409 17.2247C20.9168 17.3712 20.8853 17.5179 20.846 17.6643C20.7418 18.0534 20.5896 18.4169 20.3975 18.7501C20.205 19.083 19.9663 19.3966 19.6815 19.6814C19.5742 19.7887 19.463 19.8893 19.3481 19.9835C19.1104 20.1775 18.8537 20.3466 18.5824 20.4884C16.9887 19.8908 16.0736 18.1784 16.5001 16.4996C17.7407 17.7081 19.6811 17.7717 20.9954 16.6904Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7301" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7301"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7301" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7307)">
<mask id="path-1-outside-1_182_7307" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7307)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(180 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M17.4795 20.8914C17.3049 20.9304 17.1278 20.9591 16.9494 20.9771C16.8016 20.9918 16.6518 20.9992 16.5002 20.9992C16.0974 20.9992 15.7069 20.9463 15.3353 20.847C14.9639 20.7472 14.5993 20.5978 14.2504 20.3964C14.1191 20.3206 13.993 20.2392 13.8724 20.1526C13.6235 19.9732 13.3936 19.769 13.1865 19.5436C13.3512 17.8496 14.7685 16.5225 16.5004 16.4999C15.6542 18.011 16.0949 19.9018 17.4795 20.8914Z" fill="#FB5050"/>
<path d="M13.1867 19.5439C13.0656 19.4122 12.9522 19.2732 12.8474 19.1277C12.7608 19.007 12.6794 18.881 12.6036 18.7497C12.4022 18.4009 12.2528 18.0362 12.153 17.6648C12.0537 17.2933 12.0008 16.9028 12.0008 16.4999C12.0008 16.3483 12.0083 16.1984 12.0229 16.0507C12.0538 15.7454 12.1157 15.4442 12.2073 15.1522C13.7567 14.4478 15.6147 15.0116 16.5002 16.5002C14.7685 16.5229 13.3514 17.85 13.1867 19.5439Z" fill="#FFA200"/>
<path d="M12.2071 15.1525C12.2607 14.9817 12.3244 14.8141 12.398 14.6505C12.4592 14.5152 12.5276 14.3817 12.6034 14.2504C12.8048 13.9016 13.0459 13.5899 13.3177 13.3178C13.5898 13.046 13.9015 12.8049 14.2504 12.6034C14.3817 12.5276 14.5152 12.4592 14.6505 12.398C14.9303 12.2721 15.2221 12.1752 15.5209 12.1085C16.9055 13.0981 17.3463 14.9891 16.4998 16.5002C15.6143 15.0119 13.7565 14.4482 12.2071 15.1525Z" fill="#F4E434"/>
<path d="M15.5205 12.1084C15.6951 12.0695 15.8722 12.0408 16.0506 12.0227C16.1984 12.0081 16.3482 12.0006 16.4998 12.0006C16.9027 12.0006 17.2931 12.0535 17.6647 12.1528C18.0361 12.2526 18.4007 12.402 18.7496 12.6034C18.8809 12.6793 19.007 12.7607 19.1276 12.8473C19.3765 13.0266 19.6064 13.2308 19.8135 13.4562C19.6488 15.1502 18.2316 16.4774 16.4996 16.4999C17.3458 14.9888 16.9051 13.0981 15.5205 12.1084Z" fill="#68D56C"/>
<path d="M19.8133 13.4559C19.9344 13.5877 20.0478 13.7267 20.1526 13.8722C20.2392 13.9928 20.3206 14.1189 20.3964 14.2502C20.5978 14.599 20.7472 14.9637 20.847 15.3351C20.9463 15.7066 20.9992 16.0971 20.9992 16.5C20.9992 16.6516 20.9917 16.8015 20.9771 16.9492C20.9462 17.2545 20.8843 17.5556 20.7927 17.8477C19.2433 18.5521 17.3853 17.9883 16.4998 16.4997C18.2315 16.477 19.6486 15.1498 19.8133 13.4559Z" fill="#5778EE"/>
<path d="M20.7929 17.8474C20.7393 18.0181 20.6756 18.1858 20.602 18.3494C20.5408 18.4846 20.4724 18.6182 20.3966 18.7494C20.1952 19.0983 19.9541 19.41 19.6823 19.6821C19.4102 19.9539 19.0985 20.195 18.7496 20.3964C18.6183 20.4722 18.4848 20.5407 18.3495 20.6019C18.0697 20.7278 17.7779 20.8247 17.4791 20.8914C16.0945 19.9017 15.6537 18.0108 16.5001 16.4996C17.3857 17.988 19.2435 18.5517 20.7929 17.8474Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7307" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7307"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7307" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7313)">
<mask id="path-1-outside-1_182_7313" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7313)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-165 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M16.3096 20.9952C16.1308 20.9877 15.9524 20.9696 15.7753 20.9408C15.6288 20.9167 15.4821 20.8852 15.3357 20.8459C14.9466 20.7417 14.5831 20.5895 14.25 20.3974C13.917 20.2049 13.6035 19.9662 13.3186 19.6814C13.2114 19.5741 13.1107 19.4629 13.0166 19.348C12.8226 19.1103 12.6534 18.8536 12.5116 18.5823C13.1092 16.9886 14.8217 16.0735 16.5004 16.5C15.2919 17.7406 15.2283 19.681 16.3096 20.9952Z" fill="#FB5050"/>
<path d="M12.5118 18.5827C12.4289 18.4241 12.3554 18.2605 12.2918 18.0928C12.2394 17.9539 12.1934 17.8111 12.1541 17.6646C12.0499 17.2755 11.9999 16.8847 11.9997 16.5001C11.9999 16.1155 12.0498 15.7246 12.1541 15.3355C12.1934 15.189 12.2394 15.0462 12.2918 14.9072C12.4006 14.6204 12.5384 14.3455 12.7025 14.0871C14.3814 13.8078 16.0302 14.8332 16.5002 16.5003C14.8216 16.074 13.1093 16.9892 12.5118 18.5827Z" fill="#FFA200"/>
<path d="M12.7022 14.0873C12.7981 13.9362 12.903 13.7908 13.0164 13.6518C13.1105 13.537 13.2112 13.4258 13.3184 13.3186C13.6033 13.0337 13.9168 12.795 14.2497 12.6025C14.5829 12.4105 14.9464 12.2582 15.3355 12.154C15.482 12.1147 15.6287 12.0832 15.7752 12.0591C16.0781 12.0099 16.385 11.9918 16.6908 12.0047C17.7722 13.319 17.7085 15.2596 16.4998 16.5002C16.0296 14.8333 14.381 13.808 12.7022 14.0873Z" fill="#F4E434"/>
<path d="M16.6905 12.0046C16.8693 12.0121 17.0477 12.0303 17.2247 12.059C17.3712 12.0831 17.5179 12.1147 17.6643 12.1539C18.0535 12.2582 18.4169 12.4104 18.7501 12.6024C19.083 12.7949 19.3966 13.0336 19.6815 13.3185C19.7887 13.4257 19.8894 13.537 19.9835 13.6518C20.1775 13.8895 20.3467 14.1462 20.4884 14.4176C19.8908 16.0112 18.1784 16.9264 16.4997 16.4999C17.7081 15.2593 17.7717 13.3189 16.6905 12.0046Z" fill="#68D56C"/>
<path d="M20.4883 14.4172C20.5712 14.5758 20.6447 14.7394 20.7083 14.9071C20.7607 15.046 20.8067 15.1888 20.846 15.3352C20.9502 15.7244 21.0001 16.1152 21.0004 16.4998C21.0002 16.8844 20.9502 17.2753 20.846 17.6644C20.8067 17.8109 20.7607 17.9537 20.7083 18.0927C20.5994 18.3795 20.4617 18.6544 20.2976 18.9128C18.6187 19.1921 16.9699 18.1667 16.4999 16.4996C18.1785 16.9259 19.8908 16.0107 20.4883 14.4172Z" fill="#5778EE"/>
<path d="M20.2979 18.9125C20.202 19.0636 20.097 19.2091 19.9836 19.348C19.8895 19.4628 19.7888 19.5741 19.6817 19.6813C19.3968 19.9661 19.0833 20.2048 18.7503 20.3973C18.4171 20.5894 18.0537 20.7416 17.6645 20.8459C17.5181 20.8851 17.3714 20.9167 17.2248 20.9408C16.922 20.9899 16.6151 21.0081 16.3092 20.9952C15.2279 19.6808 15.2916 17.7402 16.5003 16.4997C16.9704 18.1665 18.6191 19.1918 20.2979 18.9125Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7313" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7313"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7313" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7319)">
<mask id="path-1-outside-1_182_7319" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7319)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-150 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M15.1525 20.7928C14.9818 20.7392 14.8141 20.6755 14.6506 20.6019C14.5153 20.5407 14.3818 20.4723 14.2505 20.3965C13.9016 20.1951 13.5899 19.954 13.3178 19.6822C13.046 19.4101 12.8049 19.0984 12.6035 18.7495C12.5277 18.6182 12.4593 18.4847 12.3981 18.3494C12.2722 18.0696 12.1752 17.7778 12.1085 17.4791C13.0982 16.0944 14.9892 15.6536 16.5003 16.5001C15.0119 17.3856 14.4483 19.2435 15.1525 20.7928Z" fill="#FB5050"/>
<path d="M12.1085 17.4794C12.0695 17.3048 12.0409 17.1277 12.0228 16.9493C12.0082 16.8015 12.0007 16.6517 12.0007 16.5001C12.0007 16.0973 12.0536 15.7068 12.1529 15.3352C12.2527 14.9638 12.4021 14.5992 12.6035 14.2503C12.6793 14.119 12.7608 13.9929 12.8473 13.8723C13.0267 13.6234 13.2309 13.3935 13.4563 13.1864C15.1503 13.3511 16.4775 14.7684 16.5 16.5003C14.9889 15.6541 13.0982 16.0948 12.1085 17.4794Z" fill="#FFA200"/>
<path d="M13.456 13.1866C13.5877 13.0655 13.7267 12.9521 13.8723 12.8473C13.9929 12.7607 14.1189 12.6793 14.2502 12.6035C14.5991 12.4021 14.9637 12.2527 15.3351 12.1529C15.7067 12.0536 16.0972 12.0007 16.5 12.0007C16.6516 12.0007 16.8015 12.0082 16.9493 12.0228C17.2545 12.0537 17.5557 12.1156 17.8478 12.2072C18.5521 13.7567 17.9883 15.6146 16.4997 16.5001C16.477 14.7684 15.1499 13.3513 13.456 13.1866Z" fill="#F4E434"/>
<path d="M17.8474 12.207C18.0181 12.2606 18.1858 12.3243 18.3494 12.3979C18.4846 12.4591 18.6182 12.5275 18.7494 12.6033C19.0983 12.8047 19.41 13.0458 19.6821 13.3176C19.9539 13.5897 20.195 13.9014 20.3964 14.2503C20.4722 14.3816 20.5407 14.5152 20.6019 14.6504C20.7278 14.9303 20.8247 15.222 20.8914 15.5208C19.9017 16.9055 18.0108 17.3462 16.4996 16.4998C17.988 15.6142 18.5517 13.7564 17.8474 12.207Z" fill="#68D56C"/>
<path d="M20.8914 15.5204C20.9304 15.695 20.9591 15.8721 20.9771 16.0505C20.9918 16.1983 20.9993 16.3481 20.9993 16.4997C20.9993 16.9026 20.9463 17.2931 20.847 17.6646C20.7473 18.036 20.5979 18.4007 20.3964 18.7495C20.3206 18.8809 20.2392 19.0069 20.1526 19.1275C19.9733 19.3765 19.7691 19.6063 19.5437 19.8135C17.8497 19.6487 16.5225 18.2315 16.4999 16.4996C18.0111 17.3458 19.9018 16.905 20.8914 15.5204Z" fill="#5778EE"/>
<path d="M19.544 19.8133C19.4123 19.9344 19.2733 20.0478 19.1278 20.1526C19.0071 20.2392 18.8811 20.3206 18.7498 20.3964C18.4009 20.5978 18.0363 20.7472 17.6649 20.847C17.2934 20.9463 16.9029 20.9992 16.5 20.9992C16.3484 20.9992 16.1985 20.9917 16.0507 20.9771C15.7455 20.9462 15.4443 20.8843 15.1522 20.7927C14.4479 19.2432 15.0117 17.3852 16.5003 16.4998C16.523 18.2315 17.8501 19.6486 19.544 19.8133Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7319" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7319"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7319" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7325)">
<mask id="path-1-outside-1_182_7325" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7325)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-135 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M14.0875 20.2979C13.9364 20.2019 13.791 20.097 13.652 19.9836C13.5372 19.8895 13.4259 19.7888 13.3187 19.6816C13.0339 19.3968 12.7952 19.0832 12.6027 18.7503C12.4106 18.4171 12.2584 18.0536 12.1541 17.6645C12.1149 17.518 12.0833 17.3713 12.0593 17.2248C12.0101 16.922 11.9919 16.615 12.0048 16.3092C13.3192 15.2278 15.2598 15.2915 16.5004 16.5002C14.8335 16.9704 13.8082 18.619 14.0875 20.2979Z" fill="#FB5050"/>
<path d="M12.0047 16.3095C12.0123 16.1308 12.0304 15.9523 12.0592 15.7753C12.0833 15.6288 12.1148 15.4821 12.154 15.3357C12.2583 14.9466 12.4105 14.5831 12.6026 14.2499C12.7951 13.917 13.0338 13.6034 13.3186 13.3185C13.4258 13.2113 13.5371 13.1107 13.652 13.0165C13.8897 12.8225 14.1464 12.6533 14.4177 12.5116C16.0113 13.1092 16.9265 14.8216 16.5 16.5003C15.2594 15.2919 13.319 15.2283 12.0047 16.3095Z" fill="#FFA200"/>
<path d="M14.4174 12.5117C14.576 12.4288 14.7396 12.3553 14.9073 12.2917C15.0462 12.2393 15.189 12.1933 15.3354 12.1541C15.7245 12.0498 16.1154 11.9999 16.5 11.9996C16.8846 11.9999 17.2755 12.0498 17.6646 12.1541C17.8111 12.1933 17.9539 12.2393 18.0928 12.2917C18.3797 12.4006 18.6546 12.5383 18.913 12.7024C19.1923 14.3813 18.1668 16.0301 16.4998 16.5001C16.926 14.8215 16.0109 13.1093 14.4174 12.5117Z" fill="#F4E434"/>
<path d="M18.9127 12.7021C19.0638 12.798 19.2092 12.903 19.3482 13.0164C19.463 13.1105 19.5742 13.2112 19.6814 13.3184C19.9663 13.6032 20.205 13.9167 20.3975 14.2497C20.5896 14.5829 20.7418 14.9464 20.846 15.3355C20.8853 15.4819 20.9168 15.6286 20.9409 15.7752C20.9901 16.078 21.0082 16.3849 20.9953 16.6908C19.681 17.7721 17.7404 17.7085 16.4998 16.4997C18.1667 16.0296 19.192 14.3809 18.9127 12.7021Z" fill="#68D56C"/>
<path d="M20.9955 16.6904C20.9879 16.8692 20.9698 17.0477 20.941 17.2247C20.9169 17.3712 20.8854 17.5179 20.8462 17.6643C20.7419 18.0534 20.5897 18.4169 20.3976 18.7501C20.2051 19.083 19.9664 19.3966 19.6816 19.6814C19.5744 19.7887 19.4631 19.8893 19.3482 19.9835C19.1105 20.1775 18.8538 20.3466 18.5825 20.4884C16.9889 19.8908 16.0737 18.1784 16.5002 16.4996C17.7408 17.7081 19.6812 17.7717 20.9955 16.6904Z" fill="#5778EE"/>
<path d="M18.5828 20.4883C18.4242 20.5712 18.2606 20.6447 18.0929 20.7083C17.954 20.7607 17.8112 20.8067 17.6648 20.8459C17.2756 20.9502 16.8848 21.0001 16.5002 21.0004C16.1156 21.0001 15.7247 20.9502 15.3356 20.8459C15.1891 20.8067 15.0463 20.7607 14.9074 20.7083C14.6205 20.5994 14.3456 20.4617 14.0872 20.2976C13.8079 18.6187 14.8333 16.9699 16.5004 16.4999C16.0741 18.1785 16.9893 19.8908 18.5828 20.4883Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7325" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7325"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7325" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7331)">
<mask id="path-1-outside-1_182_7331" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7331)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-120 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M13.1867 19.544C13.0656 19.4122 12.9523 19.2732 12.8474 19.1277C12.7608 19.0071 12.6794 18.8811 12.6036 18.7498C12.4022 18.4009 12.2528 18.0363 12.153 17.6649C12.0537 17.2933 12.0008 16.9028 12.0008 16.5C12.0008 16.3483 12.0083 16.1985 12.0229 16.0507C12.0538 15.7454 12.1157 15.4443 12.2073 15.1522C13.7568 14.4479 15.6148 15.0116 16.5002 16.5003C14.7685 16.523 13.3514 17.8501 13.1867 19.544Z" fill="#FB5050"/>
<path d="M12.2072 15.1525C12.2607 14.9818 12.3244 14.8141 12.398 14.6506C12.4592 14.5153 12.5276 14.3818 12.6034 14.2505C12.8049 13.9016 13.0459 13.5899 13.3177 13.3178C13.5898 13.046 13.9015 12.8049 14.2504 12.6035C14.3817 12.5277 14.5153 12.4593 14.6506 12.3981C14.9304 12.2722 15.2221 12.1752 15.5209 12.1085C16.9056 13.0982 17.3463 14.9892 16.4999 16.5003C15.6143 15.0119 13.7565 14.4483 12.2072 15.1525Z" fill="#FFA200"/>
<path d="M15.5205 12.1085C15.6952 12.0695 15.8722 12.0409 16.0507 12.0228C16.1984 12.0082 16.3483 12.0007 16.4998 12.0007C16.9027 12.0007 17.2932 12.0536 17.6647 12.1529C18.0361 12.2527 18.4008 12.4021 18.7497 12.6035C18.881 12.6793 19.007 12.7608 19.1277 12.8473C19.3766 13.0267 19.6064 13.2309 19.8136 13.4563C19.6488 15.1503 18.2316 16.4775 16.4997 16.5C17.3459 14.9889 16.9051 13.0981 15.5205 12.1085Z" fill="#F4E434"/>
<path d="M19.8134 13.4559C19.9345 13.5877 20.0478 13.7267 20.1527 13.8722C20.2393 13.9928 20.3207 14.1188 20.3965 14.2501C20.5979 14.599 20.7473 14.9636 20.8471 15.335C20.9464 15.7066 20.9993 16.0971 20.9993 16.5C20.9993 16.6516 20.9918 16.8014 20.9772 16.9492C20.9463 17.2545 20.8844 17.5556 20.7927 17.8477C19.2433 18.552 17.3853 17.9883 16.4998 16.4997C18.2316 16.4769 19.6487 15.1498 19.8134 13.4559Z" fill="#68D56C"/>
<path d="M20.7929 17.8474C20.7394 18.0182 20.6756 18.1858 20.6021 18.3494C20.5409 18.4847 20.4724 18.6182 20.3966 18.7495C20.1952 19.0983 19.9541 19.41 19.6824 19.6821C19.4103 19.9539 19.0985 20.195 18.7497 20.3964C18.6183 20.4723 18.4848 20.5407 18.3495 20.6019C18.0697 20.7278 17.7779 20.8247 17.4792 20.8914C16.0945 19.9018 15.6537 18.0108 16.5002 16.4997C17.3857 17.988 19.2436 18.5517 20.7929 17.8474Z" fill="#5778EE"/>
<path d="M17.4796 20.8914C17.3049 20.9304 17.1279 20.9591 16.9494 20.9772C16.8017 20.9918 16.6518 20.9993 16.5002 20.9993C16.0974 20.9993 15.7069 20.9464 15.3354 20.8471C14.9639 20.7473 14.5993 20.5979 14.2504 20.3965C14.1191 20.3206 13.9931 20.2392 13.8724 20.1526C13.6235 19.9733 13.3936 19.7691 13.1865 19.5437C13.3512 17.8497 14.7685 16.5225 16.5004 16.5C15.6542 18.0111 16.095 19.9018 17.4796 20.8914Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7331" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7331"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7331" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7337)">
<mask id="path-1-outside-1_182_7337" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7337)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-105 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M12.5117 18.5827C12.4288 18.4241 12.3553 18.2605 12.2917 18.0928C12.2393 17.9539 12.1933 17.8111 12.1541 17.6647C12.0498 17.2756 11.9999 16.8847 11.9996 16.5001C11.9999 16.1155 12.0498 15.7246 12.1541 15.3355C12.1933 15.189 12.2393 15.0462 12.2917 14.9073C12.4006 14.6204 12.5383 14.3455 12.7024 14.0871C14.3813 13.8078 16.0301 14.8333 16.5001 16.5003C14.8215 16.0741 13.1092 16.9892 12.5117 18.5827Z" fill="#FB5050"/>
<path d="M12.7022 14.0874C12.7981 13.9363 12.903 13.7909 13.0164 13.6519C13.1106 13.5371 13.2112 13.4258 13.3184 13.3186C13.6033 13.0338 13.9168 12.7951 14.2497 12.6026C14.5829 12.4105 14.9464 12.2583 15.3355 12.154C15.482 12.1148 15.6287 12.0832 15.7752 12.0592C16.0781 12.01 16.385 11.9918 16.6908 12.0047C17.7722 13.3191 17.7085 15.2597 16.4998 16.5003C16.0296 14.8334 14.381 13.8081 12.7022 14.0874Z" fill="#FFA200"/>
<path d="M16.6904 12.0046C16.8692 12.0122 17.0477 12.0303 17.2247 12.0591C17.3712 12.0832 17.5179 12.1147 17.6643 12.1539C18.0534 12.2582 18.4169 12.4104 18.7501 12.6025C19.083 12.795 19.3966 13.0337 19.6814 13.3185C19.7887 13.4257 19.8893 13.537 19.9835 13.6519C20.1775 13.8895 20.3466 14.1463 20.4884 14.4176C19.8908 16.0112 18.1784 16.9264 16.4996 16.4999C17.7081 15.2593 17.7717 13.3189 16.6904 12.0046Z" fill="#F4E434"/>
<path d="M20.4883 14.4172C20.5712 14.5758 20.6447 14.7394 20.7083 14.9071C20.7607 15.0461 20.8067 15.1889 20.846 15.3353C20.9502 15.7244 21.0001 16.1153 21.0004 16.4998C21.0002 16.8844 20.9502 17.2753 20.846 17.6645C20.8067 17.8109 20.7607 17.9537 20.7083 18.0927C20.5994 18.3796 20.4617 18.6544 20.2976 18.9128C18.6187 19.1921 16.9699 18.1667 16.4999 16.4996C18.1785 16.9259 19.8908 16.0108 20.4883 14.4172Z" fill="#68D56C"/>
<path d="M20.2979 18.9125C20.2019 19.0636 20.097 19.2091 19.9836 19.348C19.8895 19.4628 19.7888 19.5741 19.6816 19.6813C19.3968 19.9661 19.0832 20.2048 18.7503 20.3973C18.4171 20.5894 18.0536 20.7416 17.6645 20.8459C17.518 20.8851 17.3713 20.9167 17.2248 20.9408C16.922 20.9899 16.6151 21.0081 16.3092 20.9952C15.2279 19.6808 15.2915 17.7402 16.5002 16.4997C16.9704 18.1665 18.6191 19.1918 20.2979 18.9125Z" fill="#5778EE"/>
<path d="M16.3096 20.9954C16.1308 20.9878 15.9524 20.9697 15.7753 20.9409C15.6288 20.9168 15.4821 20.8853 15.3357 20.846C14.9466 20.7418 14.5831 20.5896 14.2499 20.3975C13.917 20.205 13.6034 19.9663 13.3186 19.6815C13.2114 19.5742 13.1107 19.463 13.0166 19.3481C12.8225 19.1104 12.6534 18.8537 12.5116 18.5824C13.1092 16.9887 14.8217 16.0736 16.5004 16.5001C15.2919 17.7407 15.2283 19.6811 16.3096 20.9954Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7337" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7337"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7337" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7343)">
<mask id="path-1-outside-1_182_7343" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7343)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-90 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M12.1086 17.4795C12.0696 17.3049 12.041 17.1278 12.0229 16.9494C12.0083 16.8016 12.0008 16.6518 12.0008 16.5002C12.0008 16.0974 12.0537 15.7069 12.153 15.3353C12.2528 14.9639 12.4022 14.5993 12.6036 14.2504C12.6794 14.1191 12.7608 13.993 12.8474 13.8724C13.0268 13.6235 13.231 13.3936 13.4564 13.1865C15.1504 13.3512 16.4776 14.7685 16.5001 16.5004C14.989 15.6542 13.0982 16.0949 12.1086 17.4795Z" fill="#FB5050"/>
<path d="M13.4561 13.1867C13.5878 13.0656 13.7268 12.9522 13.8723 12.8474C13.993 12.7608 14.119 12.6794 14.2503 12.6036C14.5991 12.4022 14.9638 12.2528 15.3352 12.153C15.7067 12.0537 16.0972 12.0008 16.5001 12.0008C16.6517 12.0008 16.8016 12.0083 16.9493 12.0229C17.2546 12.0538 17.5558 12.1157 17.8478 12.2073C18.5522 13.7567 17.9884 15.6147 16.4998 16.5002C16.4771 14.7685 15.15 13.3514 13.4561 13.1867Z" fill="#FFA200"/>
<path d="M17.8475 12.2072C18.0183 12.2607 18.1859 12.3244 18.3495 12.398C18.4848 12.4592 18.6183 12.5276 18.7496 12.6034C19.0984 12.8048 19.4101 13.0459 19.6822 13.3177C19.954 13.5898 20.1951 13.9015 20.3965 14.2504C20.4723 14.3817 20.5408 14.5153 20.602 14.6506C20.7279 14.9304 20.8248 15.2221 20.8915 15.5209C19.9018 16.9056 18.0109 17.3463 16.4997 16.4999C17.9881 15.6143 18.5518 13.7565 17.8475 12.2072Z" fill="#F4E434"/>
<path d="M20.8915 15.5204C20.9305 15.6951 20.9592 15.8721 20.9772 16.0506C20.9919 16.1983 20.9994 16.3482 20.9994 16.4998C20.9994 16.9026 20.9464 17.2931 20.8471 17.6646C20.7474 18.0361 20.598 18.4007 20.3965 18.7496C20.3207 18.8809 20.2393 19.007 20.1527 19.1276C19.9734 19.3765 19.7692 19.6064 19.5438 19.8135C17.8498 19.6488 16.5226 18.2315 16.5 16.4996C18.0111 17.3458 19.9019 16.905 20.8915 15.5204Z" fill="#68D56C"/>
<path d="M19.5441 19.8134C19.4123 19.9345 19.2733 20.0478 19.1278 20.1527C19.0072 20.2392 18.8812 20.3206 18.7499 20.3964C18.401 20.5979 18.0364 20.7473 17.665 20.847C17.2934 20.9463 16.9029 20.9993 16.5001 20.9993C16.3484 20.9993 16.1986 20.9918 16.0508 20.9771C15.7455 20.9462 15.4444 20.8843 15.1523 20.7927C14.448 19.2433 15.0117 17.3853 16.5004 16.4998C16.5231 18.2316 17.8502 19.6486 19.5441 19.8134Z" fill="#5778EE"/>
<path d="M15.1526 20.7928C14.9819 20.7393 14.8142 20.6756 14.6507 20.602C14.5154 20.5408 14.3819 20.4724 14.2506 20.3966C13.9017 20.1951 13.59 19.9541 13.3179 19.6823C13.0461 19.4102 12.805 19.0985 12.6036 18.7496C12.5278 18.6183 12.4594 18.4847 12.3982 18.3494C12.2723 18.0696 12.1753 17.7779 12.1086 17.4791C13.0983 16.0944 14.9892 15.6537 16.5004 16.5001C15.012 17.3857 14.4484 19.2435 15.1526 20.7928Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7343" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7343"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7343" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7349)">
<mask id="path-1-outside-1_182_7349" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7349)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-75 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M12.0048 16.3095C12.0123 16.1307 12.0304 15.9523 12.0592 15.7753C12.0833 15.6288 12.1148 15.4821 12.1541 15.3357C12.2583 14.9465 12.4105 14.5831 12.6026 14.2499C12.7951 13.9169 13.0338 13.6034 13.3187 13.3185C13.4259 13.2113 13.5372 13.1106 13.652 13.0165C13.8897 12.8225 14.1464 12.6533 14.4177 12.5116C16.0114 13.1092 16.9265 14.8216 16.5001 16.5003C15.2595 15.2919 13.319 15.2283 12.0048 16.3095Z" fill="#FB5050"/>
<path d="M14.4174 12.5117C14.576 12.4288 14.7396 12.3553 14.9073 12.2917C15.0462 12.2393 15.189 12.1933 15.3354 12.1541C15.7245 12.0498 16.1154 11.9999 16.5 11.9996C16.8846 11.9999 17.2755 12.0498 17.6646 12.1541C17.8111 12.1933 17.9539 12.2393 18.0928 12.2917C18.3797 12.4006 18.6545 12.5383 18.913 12.7024C19.1923 14.3813 18.1668 16.0301 16.4998 16.5001C16.926 14.8215 16.0109 13.1092 14.4174 12.5117Z" fill="#FFA200"/>
<path d="M18.9127 12.7021C19.0638 12.798 19.2092 12.903 19.3482 13.0164C19.463 13.1105 19.5743 13.2111 19.6815 13.3183C19.9663 13.6032 20.205 13.9167 20.3975 14.2497C20.5896 14.5828 20.7418 14.9463 20.8461 15.3355C20.8853 15.4819 20.9168 15.6286 20.9409 15.7752C20.9901 16.078 21.0083 16.3849 20.9954 16.6908C19.681 17.7721 17.7404 17.7084 16.4998 16.4997C18.1667 16.0296 19.192 14.3809 18.9127 12.7021Z" fill="#F4E434"/>
<path d="M20.9955 16.6904C20.9879 16.8692 20.9698 17.0476 20.941 17.2246C20.9169 17.3711 20.8854 17.5178 20.8462 17.6643C20.7419 18.0534 20.5897 18.4168 20.3976 18.75C20.2051 19.083 19.9664 19.3965 19.6816 19.6814C19.5744 19.7886 19.4631 19.8893 19.3482 19.9834C19.1105 20.1774 18.8538 20.3466 18.5825 20.4883C16.9888 19.8907 16.0737 18.1783 16.5002 16.4996C17.7408 17.708 19.6812 17.7716 20.9955 16.6904Z" fill="#68D56C"/>
<path d="M18.5828 20.4883C18.4242 20.5712 18.2606 20.6447 18.0929 20.7083C17.954 20.7607 17.8112 20.8067 17.6648 20.8459C17.2757 20.9502 16.8848 21.0001 16.5002 21.0004C16.1156 21.0001 15.7247 20.9502 15.3356 20.8459C15.1891 20.8067 15.0463 20.7606 14.9074 20.7083C14.6205 20.5994 14.3457 20.4617 14.0872 20.2976C13.8079 18.6186 14.8334 16.9699 16.5004 16.4999C16.0742 18.1785 16.9893 19.8907 18.5828 20.4883Z" fill="#5778EE"/>
<path d="M14.0875 20.2978C13.9364 20.2019 13.791 20.0969 13.652 19.9835C13.5372 19.8894 13.4259 19.7888 13.3188 19.6816C13.0339 19.3967 12.7952 19.0832 12.6027 18.7502C12.4106 18.4171 12.2584 18.0536 12.1542 17.6644C12.1149 17.518 12.0834 17.3713 12.0593 17.2247C12.0101 16.9219 11.992 16.615 12.0049 16.3091C13.3192 15.2278 15.2598 15.2915 16.5004 16.5002C14.8335 16.9703 13.8082 18.619 14.0875 20.2978Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7349" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7349"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7349" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7247)">
<mask id="path-1-outside-1_182_7247" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7247)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(30 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M17.8474 12.2072C18.0182 12.2608 18.1858 12.3245 18.3494 12.3981C18.4847 12.4593 18.6182 12.5277 18.7495 12.6035C19.0984 12.8049 19.4101 13.046 19.6822 13.3178C19.9539 13.5899 20.195 13.9016 20.3965 14.2505C20.4723 14.3818 20.5407 14.5153 20.6019 14.6506C20.7278 14.9304 20.8248 15.2222 20.8915 15.5209C19.9018 16.9056 18.0108 17.3464 16.4997 16.4999C17.9881 15.6144 18.5517 13.7565 17.8474 12.2072Z" fill="#FB5050"/>
<path d="M20.8914 15.5206C20.9304 15.6952 20.9591 15.8723 20.9771 16.0507C20.9918 16.1985 20.9993 16.3483 20.9993 16.4999C20.9993 16.9027 20.9463 17.2932 20.8471 17.6648C20.7473 18.0362 20.5979 18.4008 20.3965 18.7497C20.3206 18.881 20.2392 19.0071 20.1526 19.1277C19.9733 19.3766 19.7691 19.6065 19.5437 19.8136C17.8497 19.6489 16.5225 18.2316 16.5 16.4997C18.0111 17.3459 19.9018 16.9052 20.8914 15.5206Z" fill="#FFA200"/>
<path d="M19.544 19.8134C19.4123 19.9345 19.2733 20.0479 19.1277 20.1527C19.0071 20.2393 18.8811 20.3207 18.7498 20.3965C18.4009 20.5979 18.0363 20.7473 17.6649 20.8471C17.2933 20.9464 16.9028 20.9993 16.5 20.9993C16.3484 20.9993 16.1985 20.9918 16.0507 20.9772C15.7455 20.9463 15.4443 20.8844 15.1522 20.7928C14.4479 19.2433 15.0117 17.3854 16.5003 16.4999C16.523 18.2316 17.8501 19.6487 19.544 19.8134Z" fill="#F4E434"/>
<path d="M15.1526 20.793C14.9818 20.7394 14.8142 20.6757 14.6506 20.6021C14.5153 20.5409 14.3818 20.4725 14.2505 20.3967C13.9017 20.1953 13.59 19.9542 13.3179 19.6824C13.0461 19.4103 12.805 19.0986 12.6035 18.7497C12.5277 18.6184 12.4593 18.4848 12.3981 18.3496C12.2722 18.0697 12.1753 17.778 12.1086 17.4792C13.0982 16.0945 14.9892 15.6538 16.5003 16.5002C15.012 17.3858 14.4483 19.2436 15.1526 20.793Z" fill="#68D56C"/>
<path d="M12.1086 17.4796C12.0696 17.305 12.0409 17.1279 12.0229 16.9495C12.0082 16.8017 12.0007 16.6519 12.0007 16.5003C12.0007 16.0974 12.0537 15.7069 12.153 15.3354C12.2527 14.964 12.4021 14.5993 12.6036 14.2505C12.6794 14.1191 12.7608 13.9931 12.8474 13.8725C13.0267 13.6235 13.2309 13.3937 13.4563 13.1865C15.1503 13.3513 16.4775 14.7685 16.5001 16.5004C14.9889 15.6542 13.0982 16.095 12.1086 17.4796Z" fill="#5778EE"/>
<path d="M13.456 13.1867C13.5877 13.0656 13.7267 12.9522 13.8722 12.8474C13.9929 12.7608 14.1189 12.6794 14.2502 12.6036C14.599 12.4022 14.9637 12.2528 15.3351 12.153C15.7066 12.0537 16.0971 12.0008 16.5 12.0008C16.6516 12.0008 16.8015 12.0083 16.9492 12.0229C17.2545 12.0538 17.5557 12.1157 17.8477 12.2073C18.5521 13.7568 17.9883 15.6148 16.4997 16.5002C16.477 14.7685 15.1499 13.3514 13.456 13.1867Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7247" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7247"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7247" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7355)">
<mask id="path-1-outside-1_182_7355" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7355)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-60 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M12.2072 15.1526C12.2607 14.9818 12.3244 14.8142 12.398 14.6506C12.4592 14.5153 12.5276 14.3818 12.6034 14.2505C12.8049 13.9016 13.0459 13.59 13.3177 13.3178C13.5898 13.0461 13.9015 12.805 14.2504 12.6035C14.3817 12.5277 14.5153 12.4593 14.6506 12.3981C14.9304 12.2722 15.2221 12.1753 15.5209 12.1085C16.9056 13.0982 17.3463 14.9892 16.4999 16.5003C15.6143 15.0119 13.7565 14.4483 12.2072 15.1526Z" fill="#FB5050"/>
<path d="M15.5205 12.1085C15.6952 12.0695 15.8722 12.0409 16.0507 12.0228C16.1984 12.0082 16.3482 12.0007 16.4998 12.0007C16.9027 12.0007 17.2932 12.0536 17.6647 12.1529C18.0361 12.2527 18.4008 12.4021 18.7497 12.6035C18.881 12.6793 19.007 12.7608 19.1277 12.8473C19.3766 13.0267 19.6064 13.2309 19.8136 13.4563C19.6488 15.1503 18.2316 16.4775 16.4997 16.5C17.3459 14.9889 16.9051 13.0982 15.5205 12.1085Z" fill="#FFA200"/>
<path d="M19.8134 13.456C19.9345 13.5877 20.0478 13.7267 20.1527 13.8723C20.2392 13.9929 20.3206 14.1189 20.3964 14.2502C20.5979 14.5991 20.7473 14.9637 20.847 15.3351C20.9463 15.7067 20.9993 16.0972 20.9993 16.5C20.9993 16.6516 20.9918 16.8015 20.9771 16.9493C20.9462 17.2545 20.8843 17.5557 20.7927 17.8478C19.2433 18.5521 17.3853 17.9883 16.4998 16.4997C18.2316 16.477 19.6486 15.1499 19.8134 13.456Z" fill="#F4E434"/>
<path d="M20.7929 17.8474C20.7394 18.0182 20.6757 18.1858 20.6021 18.3494C20.5409 18.4847 20.4724 18.6182 20.3966 18.7495C20.1952 19.0983 19.9541 19.41 19.6824 19.6821C19.4103 19.9539 19.0986 20.195 18.7497 20.3965C18.6184 20.4723 18.4848 20.5407 18.3495 20.6019C18.0697 20.7278 17.778 20.8247 17.4792 20.8914C16.0945 19.9018 15.6538 18.0108 16.5002 16.4997C17.3857 17.988 19.2436 18.5517 20.7929 17.8474Z" fill="#68D56C"/>
<path d="M17.4795 20.8915C17.3049 20.9305 17.1278 20.9591 16.9494 20.9772C16.8016 20.9918 16.6518 20.9993 16.5002 20.9993C16.0974 20.9993 15.7069 20.9464 15.3354 20.8471C14.9639 20.7473 14.5993 20.5979 14.2504 20.3965C14.1191 20.3207 13.993 20.2392 13.8724 20.1527C13.6235 19.9733 13.3936 19.7691 13.1865 19.5437C13.3512 17.8497 14.7685 16.5225 16.5004 16.5C15.6542 18.0111 16.095 19.9019 17.4795 20.8915Z" fill="#5778EE"/>
<path d="M13.1867 19.5441C13.0656 19.4123 12.9522 19.2733 12.8474 19.1278C12.7608 19.0072 12.6794 18.8811 12.6036 18.7498C12.4022 18.401 12.2528 18.0363 12.153 17.6649C12.0537 17.2934 12.0008 16.9029 12.0008 16.5C12.0008 16.3484 12.0083 16.1985 12.0229 16.0508C12.0538 15.7455 12.1157 15.4444 12.2073 15.1523C13.7568 14.4479 15.6148 15.0117 16.5002 16.5003C14.7685 16.523 13.3514 17.8502 13.1867 19.5441Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7355" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7355"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7355" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7361)">
<mask id="path-1-outside-1_182_7361" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7361)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-45 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M12.7021 14.0875C12.7981 13.9364 12.903 13.791 13.0164 13.652C13.1105 13.5372 13.2112 13.4259 13.3184 13.3187C13.6032 13.0339 13.9168 12.7952 14.2497 12.6027C14.5829 12.4106 14.9464 12.2584 15.3355 12.1541C15.482 12.1149 15.6287 12.0833 15.7752 12.0593C16.078 12.0101 16.385 11.9919 16.6908 12.0048C17.7722 13.3192 17.7085 15.2598 16.4998 16.5004C16.0296 14.8335 14.381 13.8082 12.7021 14.0875Z" fill="#FB5050"/>
<path d="M16.6904 12.0047C16.8692 12.0123 17.0476 12.0304 17.2247 12.0592C17.3712 12.0833 17.5179 12.1148 17.6643 12.154C18.0534 12.2583 18.4169 12.4105 18.7501 12.6026C19.083 12.7951 19.3966 13.0338 19.6814 13.3186C19.7886 13.4258 19.8893 13.5371 19.9834 13.652C20.1775 13.8897 20.3466 14.1464 20.4884 14.4177C19.8908 16.0113 18.1784 16.9265 16.4996 16.5C17.7081 15.2594 17.7717 13.319 16.6904 12.0047Z" fill="#FFA200"/>
<path d="M20.4883 14.4174C20.5712 14.576 20.6447 14.7396 20.7083 14.9073C20.7607 15.0462 20.8067 15.189 20.8459 15.3354C20.9502 15.7245 21.0001 16.1154 21.0004 16.5C21.0001 16.8846 20.9502 17.2755 20.8459 17.6646C20.8067 17.8111 20.7607 17.9539 20.7083 18.0928C20.5994 18.3797 20.4617 18.6546 20.2976 18.913C18.6187 19.1923 16.9699 18.1668 16.4999 16.4998C18.1785 16.926 19.8907 16.0109 20.4883 14.4174Z" fill="#F4E434"/>
<path d="M20.2979 18.9127C20.2019 19.0638 20.097 19.2092 19.9836 19.3482C19.8895 19.463 19.7888 19.5742 19.6816 19.6814C19.3968 19.9663 19.0832 20.205 18.7503 20.3975C18.4171 20.5896 18.0536 20.7418 17.6645 20.846C17.518 20.8853 17.3713 20.9168 17.2248 20.9409C16.9219 20.9901 16.615 21.0082 16.3092 20.9953C15.2278 19.681 15.2915 17.7404 16.5002 16.4998C16.9704 18.1667 18.619 19.192 20.2979 18.9127Z" fill="#68D56C"/>
<path d="M16.3096 20.9955C16.1308 20.9879 15.9523 20.9698 15.7753 20.941C15.6288 20.9169 15.4821 20.8854 15.3357 20.8462C14.9466 20.7419 14.5831 20.5897 14.2499 20.3976C13.917 20.2051 13.6034 19.9664 13.3186 19.6816C13.2113 19.5744 13.1107 19.4631 13.0165 19.3482C12.8225 19.1105 12.6534 18.8538 12.5116 18.5825C13.1092 16.9889 14.8216 16.0737 16.5004 16.5002C15.2919 17.7408 15.2283 19.6812 16.3096 20.9955Z" fill="#5778EE"/>
<path d="M12.5117 18.5828C12.4288 18.4242 12.3553 18.2606 12.2917 18.0929C12.2393 17.954 12.1933 17.8112 12.1541 17.6648C12.0498 17.2756 11.9999 16.8848 11.9996 16.5002C11.9999 16.1156 12.0498 15.7247 12.1541 15.3356C12.1933 15.1891 12.2393 15.0463 12.2917 14.9074C12.4006 14.6205 12.5383 14.3456 12.7024 14.0872C14.3813 13.8079 16.0301 14.8333 16.5001 16.5004C14.8215 16.0741 13.1092 16.9893 12.5117 18.5828Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7361" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7361"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7361" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7367)">
<mask id="path-1-outside-1_182_7367" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7367)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-30 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M13.456 13.1866C13.5878 13.0655 13.7268 12.9522 13.8723 12.8473C13.9929 12.7608 14.1189 12.6794 14.2502 12.6036C14.5991 12.4021 14.9637 12.2527 15.3351 12.153C15.7067 12.0537 16.0972 12.0007 16.5 12.0007C16.6517 12.0007 16.8015 12.0082 16.9493 12.0229C17.2546 12.0538 17.5557 12.1157 17.8478 12.2073C18.5521 13.7567 17.9884 15.6147 16.4997 16.5002C16.477 14.7684 15.1499 13.3514 13.456 13.1866Z" fill="#FB5050"/>
<path d="M17.8475 12.2072C18.0182 12.2607 18.1859 12.3244 18.3494 12.398C18.4847 12.4592 18.6182 12.5276 18.7495 12.6034C19.0984 12.8049 19.4101 13.0459 19.6822 13.3177C19.954 13.5898 20.1951 13.9015 20.3965 14.2504C20.4723 14.3817 20.5407 14.5153 20.6019 14.6506C20.7278 14.9304 20.8248 15.2221 20.8915 15.5209C19.9018 16.9056 18.0108 17.3463 16.4997 16.4999C17.9881 15.6143 18.5517 13.7565 17.8475 12.2072Z" fill="#FFA200"/>
<path d="M20.8915 15.5205C20.9305 15.6951 20.9591 15.8722 20.9772 16.0506C20.9918 16.1984 20.9993 16.3482 20.9993 16.4998C20.9993 16.9026 20.9464 17.2931 20.8471 17.6647C20.7473 18.0361 20.5979 18.4007 20.3965 18.7496C20.3207 18.8809 20.2392 19.007 20.1527 19.1276C19.9733 19.3765 19.7691 19.6064 19.5437 19.8135C17.8497 19.6488 16.5225 18.2315 16.5 16.4996C18.0111 17.3458 19.9019 16.9051 20.8915 15.5205Z" fill="#F4E434"/>
<path d="M19.5441 19.8133C19.4123 19.9344 19.2733 20.0478 19.1278 20.1526C19.0072 20.2392 18.8812 20.3206 18.7499 20.3964C18.401 20.5978 18.0364 20.7472 17.665 20.847C17.2934 20.9463 16.9029 20.9992 16.5 20.9992C16.3484 20.9992 16.1986 20.9917 16.0508 20.9771C15.7455 20.9462 15.4444 20.8843 15.1523 20.7927C14.448 19.2432 15.0117 17.3853 16.5003 16.4998C16.5231 18.2315 17.8502 19.6486 19.5441 19.8133Z" fill="#68D56C"/>
<path d="M15.1526 20.7929C14.9819 20.7393 14.8142 20.6756 14.6506 20.602C14.5154 20.5408 14.3818 20.4724 14.2506 20.3966C13.9017 20.1952 13.59 19.9541 13.3179 19.6823C13.0461 19.4102 12.805 19.0985 12.6036 18.7496C12.5278 18.6183 12.4593 18.4848 12.3981 18.3495C12.2722 18.0697 12.1753 17.7779 12.1086 17.4791C13.0983 16.0945 14.9892 15.6537 16.5004 16.5001C15.012 17.3857 14.4483 19.2435 15.1526 20.7929Z" fill="#5778EE"/>
<path d="M12.1086 17.4795C12.0696 17.3049 12.0409 17.1278 12.0229 16.9494C12.0082 16.8016 12.0007 16.6518 12.0007 16.5002C12.0007 16.0973 12.0537 15.7069 12.153 15.3353C12.2527 14.9639 12.4021 14.5993 12.6036 14.2504C12.6794 14.1191 12.7608 13.993 12.8474 13.8724C13.0268 13.6235 13.231 13.3936 13.4563 13.1865C15.1504 13.3512 16.4775 14.7684 16.5001 16.5004C14.989 15.6541 13.0982 16.0949 12.1086 17.4795Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7367" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7367"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7367" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7373)">
<mask id="path-1-outside-1_182_7373" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7373)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(-15 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M14.4173 12.5117C14.5759 12.4288 14.7395 12.3553 14.9072 12.2917C15.0461 12.2393 15.1889 12.1933 15.3353 12.154C15.7244 12.0498 16.1153 11.9998 16.4999 11.9996C16.8845 11.9998 17.2754 12.0498 17.6645 12.154C17.811 12.1933 17.9538 12.2393 18.0927 12.2917C18.3796 12.4005 18.6545 12.5383 18.9129 12.7024C19.1922 14.3813 18.1667 16.0301 16.4997 16.5001C16.9259 14.8215 16.0108 13.1092 14.4173 12.5117Z" fill="#FB5050"/>
<path d="M18.9126 12.7021C19.0637 12.7981 19.2091 12.903 19.3481 13.0164C19.4629 13.1105 19.5742 13.2112 19.6814 13.3184C19.9662 13.6032 20.2049 13.9168 20.3974 14.2497C20.5895 14.5829 20.7417 14.9464 20.846 15.3355C20.8852 15.482 20.9168 15.6287 20.9408 15.7752C20.99 16.0781 21.0082 16.385 20.9953 16.6908C19.6809 17.7722 17.7403 17.7085 16.4997 16.4998C18.1666 16.0296 19.1919 14.381 18.9126 12.7021Z" fill="#FFA200"/>
<path d="M20.9954 16.6905C20.9878 16.8692 20.9697 17.0477 20.9409 17.2247C20.9168 17.3712 20.8853 17.5179 20.8461 17.6643C20.7418 18.0534 20.5896 18.4169 20.3975 18.7501C20.205 19.083 19.9663 19.3966 19.6815 19.6815C19.5743 19.7887 19.463 19.8893 19.3481 19.9835C19.1105 20.1775 18.8537 20.3467 18.5824 20.4884C16.9888 19.8908 16.0736 18.1784 16.5001 16.4997C17.7407 17.7081 19.6811 17.7717 20.9954 16.6905Z" fill="#F4E434"/>
<path d="M18.5828 20.4883C18.4242 20.5712 18.2606 20.6447 18.0929 20.7083C17.9539 20.7607 17.8111 20.8067 17.6647 20.846C17.2756 20.9502 16.8847 21.0001 16.5002 21.0004C16.1156 21.0002 15.7247 20.9502 15.3355 20.846C15.1891 20.8067 15.0463 20.7607 14.9073 20.7083C14.6204 20.5994 14.3456 20.4617 14.0872 20.2976C13.8079 18.6187 14.8333 16.9699 16.5004 16.4999C16.0741 18.1785 16.9892 19.8908 18.5828 20.4883Z" fill="#68D56C"/>
<path d="M14.0875 20.2979C13.9364 20.202 13.7909 20.0971 13.652 19.9836C13.5372 19.8895 13.4259 19.7889 13.3187 19.6817C13.0339 19.3968 12.7952 19.0833 12.6027 18.7504C12.4106 18.4172 12.2584 18.0537 12.1541 17.6645C12.1149 17.5181 12.0833 17.3714 12.0592 17.2249C12.0101 16.922 11.9919 16.6151 12.0048 16.3092C13.3192 15.2279 15.2598 15.2916 16.5003 16.5003C14.8335 16.9704 13.8082 18.6191 14.0875 20.2979Z" fill="#5778EE"/>
<path d="M12.0046 16.3096C12.0122 16.1308 12.0303 15.9523 12.0591 15.7753C12.0832 15.6288 12.1147 15.4821 12.154 15.3357C12.2582 14.9466 12.4104 14.5831 12.6025 14.2499C12.795 13.917 13.0337 13.6034 13.3185 13.3186C13.4258 13.2113 13.537 13.1107 13.6519 13.0165C13.8896 12.8225 14.1463 12.6534 14.4176 12.5116C16.0113 13.1092 16.9264 14.8216 16.4999 16.5004C15.2593 15.2919 13.3189 15.2283 12.0046 16.3096Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7373" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7373"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7373" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7253)">
<mask id="path-1-outside-1_182_7253" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7253)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(45 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M18.9125 12.7021C19.0636 12.7981 19.209 12.903 19.348 13.0164C19.4628 13.1105 19.5741 13.2112 19.6813 13.3184C19.9661 13.6032 20.2048 13.9168 20.3973 14.2497C20.5894 14.5829 20.7416 14.9464 20.8459 15.3355C20.8851 15.482 20.9167 15.6287 20.9407 15.7752C20.9899 16.078 21.0081 16.385 20.9952 16.6908C19.6808 17.7722 17.7402 17.7085 16.4996 16.4998C18.1665 16.0296 19.1918 14.381 18.9125 12.7021Z" fill="#FB5050"/>
<path d="M20.9953 16.6905C20.9877 16.8692 20.9696 17.0477 20.9408 17.2247C20.9167 17.3712 20.8852 17.5179 20.846 17.6643C20.7417 18.0534 20.5895 18.4169 20.3974 18.7501C20.2049 19.083 19.9662 19.3966 19.6814 19.6815C19.5742 19.7887 19.4629 19.8893 19.348 19.9835C19.1103 20.1775 18.8536 20.3467 18.5823 20.4884C16.9887 19.8908 16.0735 18.1784 16.5 16.4997C17.7406 17.7081 19.681 17.7717 20.9953 16.6905Z" fill="#FFA200"/>
<path d="M18.5827 20.4883C18.4241 20.5712 18.2605 20.6447 18.0928 20.7083C17.9538 20.7607 17.811 20.8067 17.6646 20.8459C17.2755 20.9502 16.8846 21.0001 16.5 21.0004C16.1155 21.0001 15.7246 20.9502 15.3354 20.8459C15.189 20.8067 15.0461 20.7607 14.9072 20.7083C14.6203 20.5994 14.3455 20.4617 14.0871 20.2976C13.8078 18.6187 14.8332 16.9699 16.5003 16.4999C16.074 18.1785 16.9891 19.8907 18.5827 20.4883Z" fill="#F4E434"/>
<path d="M14.0873 20.2979C13.9362 20.202 13.7908 20.097 13.6518 19.9836C13.537 19.8895 13.4258 19.7888 13.3186 19.6816C13.0337 19.3968 12.795 19.0833 12.6025 18.7503C12.4104 18.4171 12.2582 18.0536 12.154 17.6645C12.1147 17.5181 12.0832 17.3714 12.0591 17.2248C12.0099 16.922 11.9918 16.6151 12.0047 16.3092C13.319 15.2279 15.2596 15.2915 16.5002 16.5003C14.8333 16.9704 13.808 18.6191 14.0873 20.2979Z" fill="#68D56C"/>
<path d="M12.0046 16.3096C12.0121 16.1308 12.0302 15.9523 12.059 15.7753C12.0831 15.6288 12.1146 15.4821 12.1539 15.3357C12.2581 14.9466 12.4103 14.5831 12.6024 14.2499C12.7949 13.917 13.0336 13.6034 13.3184 13.3186C13.4257 13.2113 13.5369 13.1107 13.6518 13.0165C13.8895 12.8225 14.1462 12.6534 14.4175 12.5116C16.0112 13.1092 16.9263 14.8216 16.4998 16.5004C15.2592 15.2919 13.3188 15.2283 12.0046 16.3096Z" fill="#5778EE"/>
<path d="M14.4172 12.5117C14.5758 12.4288 14.7394 12.3553 14.9071 12.2917C15.046 12.2393 15.1888 12.1933 15.3352 12.1541C15.7244 12.0498 16.1152 11.9999 16.4998 11.9996C16.8844 11.9999 17.2753 12.0498 17.6644 12.1541C17.8109 12.1933 17.9537 12.2393 18.0926 12.2917C18.3795 12.4006 18.6544 12.5383 18.9128 12.7024C19.1921 14.3813 18.1667 16.0301 16.4996 16.5001C16.9259 14.8215 16.0107 13.1092 14.4172 12.5117Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7253" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7253"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7253" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7259)">
<mask id="path-1-outside-1_182_7259" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7259)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(60 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M19.8133 13.456C19.9344 13.5878 20.0478 13.7268 20.1526 13.8723C20.2392 13.9929 20.3206 14.1189 20.3964 14.2502C20.5978 14.5991 20.7472 14.9637 20.847 15.3351C20.9463 15.7067 20.9992 16.0972 20.9992 16.5C20.9992 16.6517 20.9917 16.8015 20.9771 16.9493C20.9462 17.2546 20.8843 17.5557 20.7927 17.8478C19.2432 18.5521 17.3852 17.9884 16.4998 16.4997C18.2315 16.477 19.6486 15.1499 19.8133 13.456Z" fill="#FB5050"/>
<path d="M20.7928 17.8475C20.7393 18.0182 20.6756 18.1859 20.602 18.3494C20.5408 18.4847 20.4724 18.6182 20.3966 18.7495C20.1951 19.0984 19.9541 19.4101 19.6823 19.6822C19.4102 19.954 19.0985 20.1951 18.7496 20.3965C18.6183 20.4723 18.4847 20.5407 18.3494 20.6019C18.0696 20.7278 17.7779 20.8248 17.4791 20.8915C16.0944 19.9018 15.6537 18.0108 16.5001 16.4997C17.3857 17.9881 19.2435 18.5517 20.7928 17.8475Z" fill="#FFA200"/>
<path d="M17.4795 20.8915C17.3048 20.9305 17.1278 20.9591 16.9494 20.9772C16.8016 20.9918 16.6518 20.9993 16.5002 20.9993C16.0973 20.9993 15.7068 20.9464 15.3353 20.8471C14.9639 20.7473 14.5992 20.5979 14.2503 20.3965C14.119 20.3207 13.993 20.2392 13.8723 20.1527C13.6234 19.9733 13.3936 19.7691 13.1864 19.5437C13.3512 17.8497 14.7684 16.5225 16.5003 16.5C15.6541 18.0111 16.0949 19.9019 17.4795 20.8915Z" fill="#F4E434"/>
<path d="M13.1866 19.5441C13.0655 19.4123 12.9522 19.2733 12.8473 19.1278C12.7608 19.0072 12.6793 18.8812 12.6035 18.7499C12.4021 18.401 12.2527 18.0364 12.153 17.665C12.0536 17.2934 12.0007 16.9029 12.0007 16.5C12.0007 16.3484 12.0082 16.1986 12.0228 16.0508C12.0537 15.7455 12.1156 15.4444 12.2073 15.1523C13.7567 14.448 15.6147 15.0117 16.5002 16.5003C14.7684 16.5231 13.3513 17.8502 13.1866 19.5441Z" fill="#68D56C"/>
<path d="M12.2071 15.1526C12.2607 14.9818 12.3244 14.8142 12.398 14.6506C12.4592 14.5153 12.5276 14.3818 12.6034 14.2505C12.8048 13.9017 13.0459 13.59 13.3176 13.3179C13.5898 13.0461 13.9015 12.805 14.2504 12.6036C14.3817 12.5277 14.5152 12.4593 14.6505 12.3981C14.9303 12.2722 15.2221 12.1753 15.5208 12.1086C16.9055 13.0982 17.3463 14.9892 16.4998 16.5003C15.6143 15.012 13.7564 14.4483 12.2071 15.1526Z" fill="#5778EE"/>
<path d="M15.5204 12.1086C15.6951 12.0696 15.8721 12.0409 16.0506 12.0228C16.1983 12.0082 16.3482 12.0007 16.4998 12.0007C16.9026 12.0007 17.2931 12.0536 17.6646 12.1529C18.0361 12.2527 18.4007 12.4021 18.7496 12.6035C18.8809 12.6794 19.007 12.7608 19.1276 12.8474C19.3765 13.0267 19.6064 13.2309 19.8135 13.4563C19.6488 15.1503 18.2315 16.4775 16.4996 16.5C17.3458 14.9889 16.905 13.0982 15.5204 12.1086Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7259" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7259"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7259" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7265)">
<mask id="path-1-outside-1_182_7265" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7265)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(75 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M20.4883 14.4173C20.5712 14.5759 20.6447 14.7395 20.7083 14.9072C20.7607 15.0461 20.8067 15.1889 20.8459 15.3353C20.9502 15.7244 21.0001 16.1153 21.0004 16.4999C21.0001 16.8845 20.9502 17.2754 20.8459 17.6645C20.8067 17.811 20.7607 17.9538 20.7083 18.0927C20.5994 18.3796 20.4617 18.6545 20.2976 18.9129C18.6187 19.1922 16.9699 18.1667 16.4999 16.4997C18.1785 16.9259 19.8907 16.0108 20.4883 14.4173Z" fill="#FB5050"/>
<path d="M20.2978 18.9126C20.2019 19.0637 20.097 19.2091 19.9836 19.3481C19.8894 19.4629 19.7888 19.5742 19.6816 19.6814C19.3967 19.9662 19.0832 20.2049 18.7503 20.3974C18.4171 20.5895 18.0536 20.7417 17.6645 20.846C17.518 20.8852 17.3713 20.9168 17.2248 20.9408C16.9219 20.99 16.615 21.0082 16.3092 20.9953C15.2278 19.6809 15.2915 17.7403 16.5002 16.4997C16.9703 18.1666 18.619 19.1919 20.2978 18.9126Z" fill="#FFA200"/>
<path d="M16.3095 20.9954C16.1308 20.9878 15.9523 20.9697 15.7753 20.9409C15.6288 20.9168 15.4821 20.8853 15.3357 20.8461C14.9466 20.7418 14.5831 20.5896 14.2499 20.3975C13.917 20.205 13.6034 19.9663 13.3185 19.6815C13.2113 19.5743 13.1107 19.463 13.0165 19.3481C12.8225 19.1105 12.6533 18.8537 12.5116 18.5824C13.1092 16.9888 14.8216 16.0736 16.5003 16.5001C15.2919 17.7407 15.2283 19.6811 16.3095 20.9954Z" fill="#F4E434"/>
<path d="M12.5117 18.5828C12.4288 18.4242 12.3553 18.2606 12.2917 18.0929C12.2393 17.9539 12.1933 17.8111 12.154 17.6647C12.0498 17.2756 11.9999 16.8847 11.9996 16.5002C11.9998 16.1156 12.0498 15.7247 12.154 15.3355C12.1933 15.1891 12.2393 15.0463 12.2917 14.9073C12.4006 14.6204 12.5383 14.3456 12.7024 14.0872C14.3813 13.8079 16.0301 14.8333 16.5001 16.5004C14.8215 16.0741 13.1092 16.9892 12.5117 18.5828Z" fill="#68D56C"/>
<path d="M12.7021 14.0875C12.798 13.9364 12.903 13.7909 13.0164 13.652C13.1105 13.5372 13.2112 13.4259 13.3184 13.3187C13.6032 13.0339 13.9168 12.7952 14.2497 12.6027C14.5829 12.4106 14.9464 12.2584 15.3355 12.1541C15.4819 12.1149 15.6286 12.0833 15.7752 12.0592C16.078 12.0101 16.3849 11.9919 16.6908 12.0048C17.7721 13.3192 17.7085 15.2598 16.4997 16.5003C16.0296 14.8335 14.3809 13.8082 12.7021 14.0875Z" fill="#5778EE"/>
<path d="M16.6904 12.0046C16.8692 12.0122 17.0476 12.0303 17.2247 12.0591C17.3712 12.0832 17.5179 12.1147 17.6643 12.154C18.0534 12.2582 18.4169 12.4104 18.75 12.6025C19.083 12.795 19.3966 13.0337 19.6814 13.3185C19.7886 13.4258 19.8893 13.537 19.9834 13.6519C20.1774 13.8896 20.3466 14.1463 20.4884 14.4176C19.8908 16.0113 18.1783 16.9264 16.4996 16.4999C17.7081 15.2593 17.7717 13.3189 16.6904 12.0046Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7265" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7265"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7265" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7271)">
<mask id="path-1-outside-1_182_7271" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7271)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(90 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M20.8914 15.5205C20.9304 15.6951 20.9591 15.8722 20.9771 16.0506C20.9918 16.1984 20.9992 16.3482 20.9992 16.4998C20.9992 16.9026 20.9463 17.2931 20.847 17.6647C20.7472 18.0361 20.5978 18.4007 20.3964 18.7496C20.3206 18.8809 20.2392 19.007 20.1526 19.1276C19.9732 19.3765 19.769 19.6064 19.5436 19.8135C17.8496 19.6488 16.5225 18.2315 16.4999 16.4996C18.011 17.3458 19.9018 16.9051 20.8914 15.5205Z" fill="#FB5050"/>
<path d="M19.5439 19.8133C19.4122 19.9344 19.2732 20.0478 19.1277 20.1526C19.007 20.2392 18.881 20.3206 18.7497 20.3964C18.4009 20.5978 18.0362 20.7472 17.6648 20.847C17.2933 20.9463 16.9028 20.9992 16.4999 20.9992C16.3483 20.9992 16.1984 20.9917 16.0507 20.9771C15.7454 20.9462 15.4442 20.8843 15.1522 20.7927C14.4478 19.2433 15.0116 17.3853 16.5002 16.4998C16.5229 18.2315 17.85 19.6486 19.5439 19.8133Z" fill="#FFA200"/>
<path d="M15.1525 20.7928C14.9818 20.7393 14.8141 20.6756 14.6505 20.602C14.5153 20.5408 14.3817 20.4724 14.2505 20.3966C13.9016 20.1952 13.5899 19.9541 13.3178 19.6823C13.046 19.4102 12.8049 19.0985 12.6035 18.7496C12.5277 18.6183 12.4592 18.4847 12.398 18.3494C12.2721 18.0696 12.1752 17.7779 12.1085 17.4791C13.0982 16.0944 14.9891 15.6537 16.5003 16.5001C15.0119 17.3857 14.4482 19.2435 15.1525 20.7928Z" fill="#F4E434"/>
<path d="M12.1085 17.4796C12.0695 17.3049 12.0408 17.1279 12.0228 16.9494C12.0081 16.8017 12.0006 16.6518 12.0006 16.5002C12.0006 16.0974 12.0536 15.7069 12.1529 15.3354C12.2526 14.9639 12.402 14.5993 12.6035 14.2504C12.6793 14.1191 12.7607 13.993 12.8473 13.8724C13.0267 13.6235 13.2309 13.3936 13.4562 13.1865C15.1502 13.3512 16.4774 14.7685 16.5 16.5004C14.9889 15.6542 13.0981 16.095 12.1085 17.4796Z" fill="#68D56C"/>
<path d="M13.4559 13.1866C13.5877 13.0655 13.7267 12.9522 13.8722 12.8473C13.9928 12.7608 14.1189 12.6794 14.2502 12.6036C14.599 12.4021 14.9637 12.2527 15.3351 12.153C15.7066 12.0537 16.0971 12.0007 16.5 12.0007C16.6516 12.0007 16.8015 12.0082 16.9492 12.0229C17.2545 12.0538 17.5556 12.1157 17.8477 12.2073C18.5521 13.7567 17.9883 15.6147 16.4997 16.5002C16.477 14.7684 15.1498 13.3514 13.4559 13.1866Z" fill="#5778EE"/>
<path d="M17.8474 12.2072C18.0181 12.2607 18.1858 12.3244 18.3494 12.398C18.4846 12.4592 18.6182 12.5276 18.7494 12.6034C19.0983 12.8049 19.41 13.0459 19.6821 13.3177C19.9539 13.5898 20.195 13.9015 20.3964 14.2504C20.4722 14.3817 20.5407 14.5153 20.6019 14.6506C20.7278 14.9304 20.8247 15.2221 20.8914 15.5209C19.9017 16.9056 18.0108 17.3463 16.4996 16.4999C17.988 15.6143 18.5517 13.7565 17.8474 12.2072Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7271" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7271"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7271" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7277)">
<mask id="path-1-outside-1_182_7277" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7277)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(105 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M20.9952 16.6904C20.9877 16.8692 20.9696 17.0476 20.9408 17.2247C20.9167 17.3712 20.8852 17.5179 20.8459 17.6643C20.7417 18.0534 20.5895 18.4169 20.3974 18.75C20.2049 19.083 19.9662 19.3965 19.6814 19.6814C19.5741 19.7886 19.4629 19.8893 19.348 19.9834C19.1103 20.1774 18.8536 20.3466 18.5823 20.4884C16.9886 19.8908 16.0735 18.1783 16.5 16.4996C17.7406 17.7081 19.681 17.7717 20.9952 16.6904Z" fill="#FB5050"/>
<path d="M18.5827 20.4882C18.4241 20.5711 18.2605 20.6446 18.0928 20.7082C17.9539 20.7606 17.8111 20.8066 17.6646 20.8459C17.2755 20.9501 16.8847 21.0001 16.5001 21.0003C16.1155 21.0001 15.7246 20.9502 15.3355 20.8459C15.189 20.8066 15.0462 20.7606 14.9072 20.7082C14.6204 20.5994 14.3455 20.4616 14.0871 20.2975C13.8078 18.6186 14.8332 16.9698 16.5003 16.4998C16.074 18.1784 16.9892 19.8907 18.5827 20.4882Z" fill="#FFA200"/>
<path d="M14.0873 20.2978C13.9362 20.2019 13.7908 20.097 13.6518 19.9836C13.537 19.8895 13.4258 19.7888 13.3186 19.6816C13.0337 19.3967 12.795 19.0832 12.6025 18.7503C12.4105 18.4171 12.2582 18.0536 12.154 17.6645C12.1147 17.518 12.0832 17.3713 12.0591 17.2248C12.0099 16.9219 11.9918 16.615 12.0047 16.3092C13.319 15.2278 15.2596 15.2915 16.5002 16.5002C14.8333 16.9704 13.808 18.619 14.0873 20.2978Z" fill="#F4E434"/>
<path d="M12.0046 16.3096C12.0121 16.1308 12.0303 15.9523 12.059 15.7753C12.0831 15.6288 12.1147 15.4821 12.1539 15.3357C12.2582 14.9466 12.4104 14.5831 12.6024 14.2499C12.7949 13.917 13.0336 13.6034 13.3185 13.3186C13.4257 13.2113 13.537 13.1107 13.6518 13.0165C13.8895 12.8225 14.1462 12.6534 14.4176 12.5116C16.0112 13.1092 16.9264 14.8216 16.4999 16.5004C15.2593 15.2919 13.3189 15.2283 12.0046 16.3096Z" fill="#68D56C"/>
<path d="M14.4172 12.5117C14.5758 12.4288 14.7394 12.3553 14.9071 12.2917C15.046 12.2393 15.1888 12.1932 15.3352 12.154C15.7244 12.0498 16.1152 11.9998 16.4998 11.9996C16.8844 11.9998 17.2753 12.0497 17.6644 12.154C17.8109 12.1933 17.9537 12.2393 18.0927 12.2917C18.3795 12.4005 18.6544 12.5383 18.9128 12.7024C19.1921 14.3813 18.1667 16.0301 16.4996 16.5001C16.9259 14.8215 16.0107 13.1092 14.4172 12.5117Z" fill="#5778EE"/>
<path d="M18.9125 12.7021C19.0636 12.7981 19.2091 12.903 19.348 13.0164C19.4628 13.1105 19.5741 13.2112 19.6813 13.3184C19.9661 13.6032 20.2048 13.9168 20.3973 14.2497C20.5894 14.5829 20.7416 14.9464 20.8459 15.3355C20.8851 15.482 20.9167 15.6287 20.9408 15.7752C20.9899 16.078 21.0081 16.385 20.9952 16.6908C19.6808 17.7722 17.7402 17.7085 16.4997 16.4998C18.1665 16.0296 19.1918 14.381 18.9125 12.7021Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7277" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7277"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7277" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7283)">
<mask id="path-1-outside-1_182_7283" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7283)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(120 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M20.7928 17.8474C20.7393 18.0182 20.6756 18.1858 20.602 18.3494C20.5408 18.4847 20.4724 18.6182 20.3966 18.7495C20.1951 19.0984 19.9541 19.41 19.6823 19.6822C19.4102 19.9539 19.0985 20.195 18.7496 20.3965C18.6183 20.4723 18.4847 20.5407 18.3494 20.6019C18.0696 20.7278 17.7779 20.8247 17.4791 20.8915C16.0944 19.9018 15.6537 18.0108 16.5001 16.4997C17.3857 17.9881 19.2435 18.5517 20.7928 17.8474Z" fill="#FB5050"/>
<path d="M17.4795 20.8915C17.3048 20.9305 17.1278 20.9591 16.9493 20.9772C16.8016 20.9918 16.6517 20.9993 16.5001 20.9993C16.0973 20.9993 15.7068 20.9464 15.3353 20.8471C14.9639 20.7473 14.5992 20.5979 14.2503 20.3965C14.119 20.3207 13.993 20.2392 13.8723 20.1527C13.6234 19.9733 13.3936 19.7691 13.1864 19.5437C13.3512 17.8497 14.7684 16.5225 16.5003 16.5C15.6541 18.0111 16.0949 19.9018 17.4795 20.8915Z" fill="#FFA200"/>
<path d="M13.1866 19.544C13.0655 19.4123 12.9522 19.2733 12.8473 19.1277C12.7608 19.0071 12.6793 18.8811 12.6035 18.7498C12.4021 18.4009 12.2527 18.0363 12.153 17.6649C12.0537 17.2933 12.0007 16.9028 12.0007 16.5C12.0007 16.3484 12.0082 16.1985 12.0229 16.0507C12.0537 15.7455 12.1157 15.4443 12.2073 15.1522C13.7567 14.4479 15.6147 15.0117 16.5002 16.5003C14.7684 16.523 13.3514 17.8501 13.1866 19.544Z" fill="#F4E434"/>
<path d="M12.2071 15.1526C12.2606 14.9818 12.3243 14.8142 12.3979 14.6506C12.4591 14.5153 12.5275 14.3818 12.6033 14.2505C12.8048 13.9017 13.0458 13.59 13.3176 13.3179C13.5897 13.0461 13.9014 12.805 14.2503 12.6035C14.3816 12.5277 14.5152 12.4593 14.6505 12.3981C14.9303 12.2722 15.222 12.1753 15.5208 12.1086C16.9055 13.0982 17.3462 14.9892 16.4998 16.5003C15.6142 15.012 13.7564 14.4483 12.2071 15.1526Z" fill="#68D56C"/>
<path d="M15.5204 12.1085C15.6951 12.0695 15.8721 12.0409 16.0506 12.0228C16.1983 12.0082 16.3482 12.0007 16.4998 12.0007C16.9026 12.0007 17.2931 12.0536 17.6646 12.1529C18.0361 12.2527 18.4007 12.4021 18.7496 12.6035C18.8809 12.6793 19.0069 12.7608 19.1276 12.8473C19.3765 13.0267 19.6064 13.2309 19.8135 13.4563C19.6488 15.1503 18.2315 16.4775 16.4996 16.5C17.3458 14.9889 16.905 13.0981 15.5204 12.1085Z" fill="#5778EE"/>
<path d="M19.8133 13.4559C19.9344 13.5877 20.0477 13.7267 20.1526 13.8722C20.2392 13.9928 20.3206 14.1189 20.3964 14.2502C20.5978 14.599 20.7472 14.9637 20.847 15.3351C20.9463 15.7066 20.9992 16.0971 20.9992 16.5C20.9992 16.6516 20.9917 16.8015 20.9771 16.9492C20.9462 17.2545 20.8843 17.5556 20.7926 17.8477C19.2432 18.5521 17.3852 17.9883 16.4997 16.4997C18.2315 16.477 19.6486 15.1498 19.8133 13.4559Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7283" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7283"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7283" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,28 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7289)">
<mask id="path-1-outside-1_182_7289" maskUnits="userSpaceOnUse" x="2" y="2" width="10" height="16" fill="black">
<rect fill="white" x="2" y="2" width="10" height="16"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z"/>
</mask>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" fill="#1F1F1F"/>
<path d="M11 11.3L3 3L3 14.5L6 14L8.3 17L9 16.7L8.7 13L11 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7289)"/>
<circle cx="16.5" cy="16.5" r="5" transform="rotate(135 16.5 16.5)" stroke="white" stroke-linejoin="round"/>
<path d="M20.2978 18.9125C20.2019 19.0636 20.097 19.209 19.9836 19.348C19.8895 19.4628 19.7888 19.5741 19.6816 19.6813C19.3968 19.9661 19.0832 20.2048 18.7503 20.3973C18.4171 20.5894 18.0536 20.7416 17.6645 20.8459C17.518 20.8851 17.3713 20.9167 17.2248 20.9407C16.9219 20.9899 16.615 21.0081 16.3092 20.9952C15.2278 19.6808 15.2915 17.7402 16.5002 16.4996C16.9704 18.1665 18.619 19.1918 20.2978 18.9125Z" fill="#FB5050"/>
<path d="M16.3096 20.9953C16.1308 20.9877 15.9523 20.9696 15.7753 20.9408C15.6288 20.9167 15.4821 20.8852 15.3357 20.846C14.9466 20.7417 14.5831 20.5895 14.2499 20.3974C13.917 20.2049 13.6034 19.9662 13.3186 19.6814C13.2113 19.5742 13.1107 19.4629 13.0165 19.348C12.8225 19.1103 12.6534 18.8536 12.5116 18.5823C13.1092 16.9887 14.8216 16.0735 16.5004 16.5C15.2919 17.7406 15.2283 19.681 16.3096 20.9953Z" fill="#FFA200"/>
<path d="M12.5117 18.5826C12.4288 18.424 12.3553 18.2604 12.2917 18.0927C12.2393 17.9538 12.1933 17.811 12.1541 17.6646C12.0498 17.2755 11.9999 16.8846 11.9996 16.5C11.9999 16.1154 12.0498 15.7245 12.1541 15.3354C12.1933 15.1889 12.2393 15.0461 12.2917 14.9072C12.4006 14.6203 12.5383 14.3454 12.7024 14.087C14.3813 13.8077 16.0301 14.8332 16.5001 16.5002C14.8215 16.074 13.1093 16.9891 12.5117 18.5826Z" fill="#F4E434"/>
<path d="M12.7021 14.0873C12.7981 13.9362 12.903 13.7908 13.0164 13.6518C13.1105 13.537 13.2112 13.4258 13.3184 13.3186C13.6032 13.0337 13.9168 12.795 14.2497 12.6025C14.5829 12.4104 14.9464 12.2582 15.3355 12.154C15.482 12.1147 15.6287 12.0832 15.7752 12.0591C16.078 12.0099 16.385 11.9918 16.6908 12.0047C17.7721 13.319 17.7085 15.2596 16.4998 16.5002C16.0296 14.8333 14.381 13.808 12.7021 14.0873Z" fill="#68D56C"/>
<path d="M16.6904 12.0045C16.8692 12.0121 17.0477 12.0302 17.2247 12.059C17.3712 12.0831 17.5179 12.1146 17.6643 12.1538C18.0534 12.2581 18.4169 12.4103 18.7501 12.6024C19.083 12.7949 19.3966 13.0336 19.6814 13.3184C19.7887 13.4256 19.8893 13.5369 19.9835 13.6518C20.1775 13.8895 20.3466 14.1462 20.4884 14.4175C19.8908 16.0111 18.1784 16.9263 16.4996 16.4998C17.7081 15.2592 17.7717 13.3188 16.6904 12.0045Z" fill="#5778EE"/>
<path d="M20.4883 14.4172C20.5712 14.5758 20.6447 14.7394 20.7083 14.9071C20.7607 15.046 20.8067 15.1888 20.8459 15.3352C20.9502 15.7244 21.0001 16.1152 21.0004 16.4998C21.0001 16.8844 20.9502 17.2753 20.8459 17.6644C20.8067 17.8109 20.7607 17.9537 20.7083 18.0926C20.5994 18.3795 20.4617 18.6544 20.2976 18.9128C18.6187 19.1921 16.9699 18.1667 16.4999 16.4996C18.1785 16.9259 19.8908 16.0107 20.4883 14.4172Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7289" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7289"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7289" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_182_7085)" filter="url(#filter0_d_182_7085)">
<mask id="path-1-outside-1_182_7085" maskUnits="userSpaceOnUse" x="3" y="7.5" width="18" height="9" fill="black">
<rect fill="white" x="3" y="7.5" width="18" height="9"/>
<path d="M20 12L13.5 8.5L12.5 11L4 11.5L4 12.5L12.5 13L13.5 15.5L20 12Z"/>
</mask>
<path d="M20 12L13.5 8.5L12.5 11L4 11.5L4 12.5L12.5 13L13.5 15.5L20 12Z" fill="#1F1F1F"/>
<path d="M20 12L13.5 8.5L12.5 11L4 11.5L4 12.5L12.5 13L13.5 15.5L20 12Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7085)"/>
</g>
<defs>
<filter id="filter0_d_182_7085" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7085"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7085" result="shape"/>
</filter>
<clipPath id="clip0_182_7085">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_6973)">
<mask id="path-1-outside-1_182_6973" maskUnits="userSpaceOnUse" x="12" y="2" width="10" height="16" fill="black">
<rect fill="white" x="12" y="2" width="10" height="16"/>
<path d="M13 11.3L21 3L21 14.5L18 14L15.7 17L15 16.7L15.3 13L13 11.3Z"/>
</mask>
<path d="M13 11.3L21 3L21 14.5L18 14L15.7 17L15 16.7L15.3 13L13 11.3Z" fill="#1F1F1F"/>
<path d="M13 11.3L21 3L21 14.5L18 14L15.7 17L15 16.7L15.3 13L13 11.3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_6973)"/>
</g>
<defs>
<filter id="filter0_d_182_6973" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_6973"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_6973" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7105)">
<mask id="path-1-outside-1_182_7105" maskUnits="userSpaceOnUse" x="6.99993" y="3.99997" width="15" height="16" fill="black">
<rect fill="white" x="6.99993" y="3.99997" width="15" height="16"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.9999 4.99997V19H19.9999V4.99997H20.9999ZM11.5 8.99997L17 12L11.5 15L10.5 13L7.99996 12.5V11.5L10.5 11L11.5 8.99997Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.9999 4.99997V19H19.9999V4.99997H20.9999ZM11.5 8.99997L17 12L11.5 15L10.5 13L7.99996 12.5V11.5L10.5 11L11.5 8.99997Z" fill="#1F1F1F"/>
<path d="M20.9999 19V20C21.5522 20 21.9999 19.5523 21.9999 19H20.9999ZM20.9999 4.99997H21.9999C21.9999 4.44769 21.5522 3.99997 20.9999 3.99997V4.99997ZM19.9999 19H18.9999C18.9999 19.5523 19.4476 20 19.9999 20V19ZM19.9999 4.99997V3.99997C19.4476 3.99997 18.9999 4.44769 18.9999 4.99997H19.9999ZM17 12L17.4788 12.8779C17.8001 12.7026 18 12.3659 18 12C18 11.634 17.8001 11.2973 17.4788 11.1221L17 12ZM11.5 8.99997L11.9788 8.12208C11.7406 7.99211 11.4597 7.96458 11.2007 8.04579C10.9418 8.12701 10.7269 8.31 10.6056 8.55275L11.5 8.99997ZM11.5 15L10.6055 15.4472C10.7269 15.6899 10.9418 15.8729 11.2007 15.9541C11.4597 16.0354 11.7406 16.0078 11.9788 15.8779L11.5 15ZM10.5 13L11.3944 12.5528C11.2564 12.2767 10.9987 12.0799 10.6961 12.0194L10.5 13ZM7.99996 12.5H6.99996C6.99996 12.9767 7.33642 13.3871 7.80385 13.4806L7.99996 12.5ZM7.99996 11.5L7.80385 10.5194C7.33642 10.6129 6.99996 11.0233 6.99996 11.5H7.99996ZM10.5 11L10.6961 11.9806C10.9987 11.92 11.2564 11.7232 11.3944 11.4472L10.5 11ZM21.9999 19V4.99997H19.9999V19H21.9999ZM19.9999 20H20.9999V18H19.9999V20ZM18.9999 4.99997V19H20.9999V4.99997H18.9999ZM20.9999 3.99997H19.9999V5.99997H20.9999V3.99997ZM17.4788 11.1221L11.9788 8.12208L11.0211 9.87787L16.5211 12.8779L17.4788 11.1221ZM11.9788 15.8779L17.4788 12.8779L16.5211 11.1221L11.0211 14.1221L11.9788 15.8779ZM9.60554 13.4472L10.6055 15.4472L12.3944 14.5528L11.3944 12.5528L9.60554 13.4472ZM7.80385 13.4806L10.3038 13.9806L10.6961 12.0194L8.19608 11.5194L7.80385 13.4806ZM6.99996 11.5V12.5H8.99996V11.5H6.99996ZM10.3038 10.0194L7.80385 10.5194L8.19608 12.4806L10.6961 11.9806L10.3038 10.0194ZM10.6056 8.55275L9.60554 10.5528L11.3944 11.4472L12.3944 9.44719L10.6056 8.55275Z" fill="white" mask="url(#path-1-outside-1_182_7105)"/>
</g>
<defs>
<filter id="filter0_d_182_7105" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7105"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7105" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_184_1575)" filter="url(#filter0_d_184_1575)">
<mask id="path-1-outside-1_184_1575" maskUnits="userSpaceOnUse" x="11" y="3" width="11" height="17" fill="black">
<rect fill="white" x="11" y="3" width="11" height="17"/>
<path d="M21 19L21 4L20 4L20 11L12 11L12 12L20 12L20 19L21 19Z"/>
</mask>
<path d="M21 19L21 4L20 4L20 11L12 11L12 12L20 12L20 19L21 19Z" fill="#1F1F1F"/>
<path d="M21 19L21 4L20 4L20 11L12 11L12 12L20 12L20 19L21 19Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_184_1575)"/>
</g>
<defs>
<filter id="filter0_d_184_1575" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_184_1575"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_184_1575" result="shape"/>
</filter>
<clipPath id="clip0_184_1575">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 9.4 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7161)">
<mask id="path-1-outside-1_182_7161" maskUnits="userSpaceOnUse" x="6" y="3" width="12" height="17" fill="black">
<rect fill="white" x="6" y="3" width="12" height="17"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4L9 7.5L11 8L11.375 11H7V12H11.375L11 15L9 15.5L12 19L15 15.5L13 15L12.625 12H17V11H12.625L13 8L15 7.5L12 4Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4L9 7.5L11 8L11.375 11H7V12H11.375L11 15L9 15.5L12 19L15 15.5L13 15L12.625 12H17V11H12.625L13 8L15 7.5L12 4Z" fill="#1F1F1F"/>
<path d="M9 7.5L8.24074 6.84921C8.01519 7.11235 7.94198 7.47352 8.04724 7.80372C8.1525 8.13393 8.42123 8.38609 8.75746 8.47014L9 7.5ZM12 4L12.7593 3.34921C12.5693 3.12756 12.2919 3 12 3C11.7081 3 11.4307 3.12756 11.2407 3.34921L12 4ZM11 8L11.9923 7.87597C11.9411 7.46617 11.6432 7.13002 11.2425 7.02986L11 8ZM11.375 11V12C11.6618 12 11.9349 11.8768 12.1247 11.6618C12.3145 11.4468 12.4029 11.1606 12.3673 10.876L11.375 11ZM7 11V10C6.44772 10 6 10.4477 6 11H7ZM7 12H6C6 12.5523 6.44772 13 7 13V12ZM11.375 12L12.3673 12.124C12.4029 11.8394 12.3145 11.5532 12.1247 11.3382C11.9349 11.1232 11.6618 11 11.375 11V12ZM11 15L11.2425 15.9701C11.6432 15.87 11.9411 15.5338 11.9923 15.124L11 15ZM9 15.5L8.75747 14.5299C8.42124 14.6139 8.1525 14.8661 8.04724 15.1963C7.94198 15.5265 8.01519 15.8876 8.24074 16.1508L9 15.5ZM12 19L11.2407 19.6508C11.4307 19.8724 11.7081 20 12 20C12.2919 20 12.5693 19.8724 12.7593 19.6508L12 19ZM15 15.5L15.7593 16.1508C15.9848 15.8876 16.058 15.5265 15.9528 15.1963C15.8475 14.8661 15.5788 14.6139 15.2425 14.5299L15 15.5ZM13 15L12.0077 15.124C12.0589 15.5338 12.3568 15.87 12.7575 15.9701L13 15ZM12.625 12V11C12.3382 11 12.0651 11.1232 11.8753 11.3382C11.6855 11.5532 11.5971 11.8394 11.6327 12.124L12.625 12ZM17 12V13C17.5523 13 18 12.5523 18 12H17ZM17 11H18C18 10.4477 17.5523 10 17 10V11ZM12.625 11L11.6327 10.876C11.5971 11.1606 11.6855 11.4468 11.8753 11.6618C12.0651 11.8768 12.3382 12 12.625 12V11ZM13 8L12.7575 7.02986C12.3568 7.13002 12.0589 7.46617 12.0077 7.87597L13 8ZM15 7.5L15.2425 8.47014C15.5788 8.38609 15.8475 8.13393 15.9528 7.80372C16.058 7.47352 15.9848 7.11235 15.7593 6.84921L15 7.5ZM9.75926 8.15079L12.7593 4.65079L11.2407 3.34921L8.24074 6.84921L9.75926 8.15079ZM11.2425 7.02986L9.24254 6.52986L8.75746 8.47014L10.7575 8.97014L11.2425 7.02986ZM12.3673 10.876L11.9923 7.87597L10.0077 8.12403L10.3827 11.124L12.3673 10.876ZM7 12H11.375V10H7V12ZM8 12V11H6V12H8ZM11.375 11H7V13H11.375V11ZM10.3827 11.876L10.0077 14.876L11.9923 15.124L12.3673 12.124L10.3827 11.876ZM10.7575 14.0299L8.75747 14.5299L9.24254 16.4701L11.2425 15.9701L10.7575 14.0299ZM8.24074 16.1508L11.2407 19.6508L12.7593 18.3492L9.75926 14.8492L8.24074 16.1508ZM12.7593 19.6508L15.7593 16.1508L14.2407 14.8492L11.2407 18.3492L12.7593 19.6508ZM15.2425 14.5299L13.2425 14.0299L12.7575 15.9701L14.7575 16.4701L15.2425 14.5299ZM13.9923 14.876L13.6173 11.876L11.6327 12.124L12.0077 15.124L13.9923 14.876ZM17 11H12.625V13H17V11ZM16 11V12H18V11H16ZM12.625 12H17V10H12.625V12ZM12.0077 7.87597L11.6327 10.876L13.6173 11.124L13.9923 8.12403L12.0077 7.87597ZM14.7575 6.52986L12.7575 7.02986L13.2425 8.97014L15.2425 8.47014L14.7575 6.52986ZM11.2407 4.65079L14.2407 8.15079L15.7593 6.84921L12.7593 3.34921L11.2407 4.65079Z" fill="white" mask="url(#path-1-outside-1_182_7161)"/>
</g>
<defs>
<filter id="filter0_d_182_7161" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7161"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7161" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 4 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7211)">
<circle cx="12" cy="12" r="2" fill="#5778EE" stroke="white" stroke-linejoin="round"/>
<mask id="path-2-outside-1_182_7211" maskUnits="userSpaceOnUse" x="4.00017" y="4.5" width="16" height="15" fill="black">
<rect fill="white" x="4.00017" y="4.5" width="16" height="15"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2502 6.24998L18.5002 5.50001L17.7502 9.75001L16.5002 9L15.0002 9.5L14.5002 9L15.0002 7.5L14.2502 6.24998ZM9.75017 17.75L5.50017 18.5L6.25017 14.25L7.50017 15L9.00017 14.5L9.50017 15L9.00017 16.5L9.75017 17.75Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2502 6.24998L18.5002 5.50001L17.7502 9.75001L16.5002 9L15.0002 9.5L14.5002 9L15.0002 7.5L14.2502 6.24998ZM9.75017 17.75L5.50017 18.5L6.25017 14.25L7.50017 15L9.00017 14.5L9.50017 15L9.00017 16.5L9.75017 17.75Z" fill="#1F1F1F"/>
<path d="M18.5002 5.50001L19.4849 5.67379C19.5417 5.35245 19.438 5.02364 19.2073 4.7929C18.9765 4.56216 18.6477 4.45852 18.3264 4.51522L18.5002 5.50001ZM14.2502 6.24998L14.0764 5.2652C13.7522 5.32241 13.4769 5.53553 13.3403 5.83506C13.2037 6.1346 13.2233 6.48218 13.3927 6.76448L14.2502 6.24998ZM17.7502 9.75001L17.2357 10.6075C17.518 10.7769 17.8655 10.7965 18.1651 10.6599C18.4646 10.5233 18.6777 10.248 18.7349 9.92379L17.7502 9.75001ZM16.5002 9L17.0147 8.14251C16.7643 7.99231 16.4609 7.959 16.1839 8.05131L16.5002 9ZM15.0002 9.5L14.2931 10.2071C14.5609 10.4749 14.9571 10.5685 15.3164 10.4487L15.0002 9.5ZM14.5002 9L13.5515 8.68377C13.4317 9.0431 13.5252 9.43927 13.7931 9.7071L14.5002 9ZM15.0002 7.5L15.9488 7.81622C16.0412 7.53928 16.0079 7.23583 15.8577 6.9855L15.0002 7.5ZM5.50017 18.5L4.51538 18.3262C4.45867 18.6476 4.56232 18.9764 4.79306 19.2071C5.0238 19.4378 5.3526 19.5415 5.67395 19.4848L5.50017 18.5ZM9.75017 17.75L9.92395 18.7348C10.2482 18.6776 10.5234 18.4645 10.66 18.1649C10.7966 17.8654 10.777 17.5178 10.6077 17.2355L9.75017 17.75ZM6.25017 14.25L6.76467 13.3925C6.48237 13.2231 6.13479 13.2035 5.83525 13.3401C5.53571 13.4767 5.3226 13.752 5.26538 14.0762L6.25017 14.25ZM7.50017 15L6.98567 15.8575C7.23599 16.0077 7.53945 16.041 7.8164 15.9487L7.50017 15ZM9.00017 14.5L9.70727 13.7929C9.43944 13.5251 9.04327 13.4315 8.68394 13.5513L9.00017 14.5ZM9.50017 15L10.4489 15.3162C10.5686 14.9569 10.4751 14.5607 10.2073 14.2929L9.50017 15ZM9.00017 16.5L8.05148 16.1838C7.95917 16.4607 7.99248 16.7642 8.14267 17.0145L9.00017 16.5ZM18.3264 4.51522L14.0764 5.2652L14.4239 7.23477L18.6739 6.48479L18.3264 4.51522ZM18.7349 9.92379L19.4849 5.67379L17.5154 5.32622L16.7654 9.57622L18.7349 9.92379ZM15.9857 9.85749L17.2357 10.6075L18.2647 8.89252L17.0147 8.14251L15.9857 9.85749ZM15.3164 10.4487L16.8164 9.94868L16.1839 8.05131L14.6839 8.55131L15.3164 10.4487ZM13.7931 9.7071L14.2931 10.2071L15.7073 8.79289L15.2073 8.29289L13.7931 9.7071ZM14.0515 7.18377L13.5515 8.68377L15.4488 9.31622L15.9488 7.81622L14.0515 7.18377ZM13.3927 6.76448L14.1427 8.01449L15.8577 6.9855L15.1077 5.73549L13.3927 6.76448ZM5.67395 19.4848L9.92395 18.7348L9.57639 16.7652L5.32639 17.5152L5.67395 19.4848ZM5.26538 14.0762L4.51538 18.3262L6.48495 18.6738L7.23495 14.4238L5.26538 14.0762ZM8.01467 14.1425L6.76467 13.3925L5.73567 15.1075L6.98567 15.8575L8.01467 14.1425ZM8.68394 13.5513L7.18394 14.0513L7.8164 15.9487L9.3164 15.4487L8.68394 13.5513ZM10.2073 14.2929L9.70727 13.7929L8.29306 15.2071L8.79306 15.7071L10.2073 14.2929ZM9.94885 16.8162L10.4489 15.3162L8.55148 14.6838L8.05148 16.1838L9.94885 16.8162ZM10.6077 17.2355L9.85766 15.9855L8.14267 17.0145L8.89267 18.2645L10.6077 17.2355Z" fill="white" mask="url(#path-2-outside-1_182_7211)"/>
</g>
<defs>
<filter id="filter0_d_182_7211" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7211"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7211" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7201)">
<circle cx="12" cy="12" r="2" fill="#5778EE" stroke="white" stroke-linejoin="round"/>
<mask id="path-2-outside-1_182_7201" maskUnits="userSpaceOnUse" x="4.50015" y="4" width="15" height="16" fill="black">
<rect fill="white" x="4.50015" y="4" width="15" height="16"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.25014 9.75L5.50016 5.5L9.75016 6.25L9.00015 7.5L9.50015 9L9.00015 9.5L7.50015 9L6.25014 9.75ZM17.7502 14.25L18.5002 18.5L14.2502 17.75L15.0002 16.5L14.5002 15L15.0002 14.5L16.5002 15L17.7502 14.25Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.25014 9.75L5.50016 5.5L9.75016 6.25L9.00015 7.5L9.50015 9L9.00015 9.5L7.50015 9L6.25014 9.75ZM17.7502 14.25L18.5002 18.5L14.2502 17.75L15.0002 16.5L14.5002 15L15.0002 14.5L16.5002 15L17.7502 14.25Z" fill="#1F1F1F"/>
<path d="M5.50016 5.5L5.67395 4.51522C5.3526 4.45851 5.0238 4.56215 4.79306 4.79289C4.56232 5.02363 4.45867 5.35243 4.51538 5.67378L5.50016 5.5ZM6.25014 9.75L5.26535 9.92378C5.32257 10.248 5.53568 10.5233 5.83522 10.6599C6.13475 10.7965 6.48233 10.7769 6.76463 10.6075L6.25014 9.75ZM9.75016 6.25L10.6077 6.7645C10.777 6.4822 10.7966 6.13462 10.66 5.83509C10.5234 5.53555 10.2482 5.32243 9.92395 5.26522L9.75016 6.25ZM9.00015 7.5L8.14266 6.9855C7.99246 7.23582 7.95915 7.53928 8.05147 7.81623L9.00015 7.5ZM9.50015 9L10.2073 9.70711C10.4751 9.43928 10.5686 9.04311 10.4488 8.68377L9.50015 9ZM9.00015 9.5L8.68392 10.4487C9.04326 10.5685 9.43942 10.4749 9.70726 10.2071L9.00015 9.5ZM7.50015 9L7.81638 8.05132C7.53944 7.959 7.23598 7.99231 6.98566 8.1425L7.50015 9ZM18.5002 18.5L18.3264 19.4848C18.6477 19.5415 18.9765 19.4378 19.2073 19.2071C19.438 18.9764 19.5417 18.6476 19.4849 18.3262L18.5002 18.5ZM17.7502 14.25L18.735 14.0762C18.6778 13.752 18.4646 13.4767 18.1651 13.3401C17.8656 13.2035 17.518 13.2231 17.2357 13.3925L17.7502 14.25ZM14.2502 17.75L13.3927 17.2355C13.2233 17.5178 13.2037 17.8654 13.3403 18.1649C13.4769 18.4645 13.7522 18.6776 14.0764 18.7348L14.2502 17.75ZM15.0002 16.5L15.8577 17.0145C16.0079 16.7642 16.0412 16.4607 15.9489 16.1838L15.0002 16.5ZM14.5002 15L13.7931 14.2929C13.5252 14.5607 13.4317 14.9569 13.5515 15.3162L14.5002 15ZM15.0002 14.5L15.3164 13.5513C14.9571 13.4315 14.5609 13.5251 14.2931 13.7929L15.0002 14.5ZM16.5002 15L16.1839 15.9487C16.4609 16.041 16.7643 16.0077 17.0147 15.8575L16.5002 15ZM4.51538 5.67378L5.26535 9.92378L7.23492 9.57622L6.48495 5.32622L4.51538 5.67378ZM9.92395 5.26522L5.67395 4.51522L5.32638 6.48478L9.57638 7.23478L9.92395 5.26522ZM9.85764 8.0145L10.6077 6.7645L8.89267 5.7355L8.14266 6.9855L9.85764 8.0145ZM10.4488 8.68377L9.94883 7.18377L8.05147 7.81623L8.55147 9.31623L10.4488 8.68377ZM9.70726 10.2071L10.2073 9.70711L8.79305 8.29289L8.29305 8.79289L9.70726 10.2071ZM7.18392 9.94868L8.68392 10.4487L9.31638 8.55132L7.81638 8.05132L7.18392 9.94868ZM6.76463 10.6075L8.01464 9.8575L6.98566 8.1425L5.73565 8.8925L6.76463 10.6075ZM19.4849 18.3262L18.735 14.0762L16.7654 14.4238L17.5154 18.6738L19.4849 18.3262ZM14.0764 18.7348L18.3264 19.4848L18.6739 17.5152L14.4239 16.7652L14.0764 18.7348ZM14.1427 15.9855L13.3927 17.2355L15.1077 18.2645L15.8577 17.0145L14.1427 15.9855ZM13.5515 15.3162L14.0515 16.8162L15.9489 16.1838L15.4489 14.6838L13.5515 15.3162ZM14.2931 13.7929L13.7931 14.2929L15.2073 15.7071L15.7073 15.2071L14.2931 13.7929ZM16.8164 14.0513L15.3164 13.5513L14.6839 15.4487L16.1839 15.9487L16.8164 14.0513ZM17.2357 13.3925L15.9857 14.1425L17.0147 15.8575L18.2647 15.1075L17.2357 13.3925Z" fill="white" mask="url(#path-2-outside-1_182_7201)"/>
</g>
<defs>
<filter id="filter0_d_182_7201" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7201"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7201" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7191)">
<circle cx="12" cy="12" r="2" fill="#5778EE" stroke="white" stroke-linejoin="round"/>
<mask id="path-2-outside-1_182_7191" maskUnits="userSpaceOnUse" x="2.00003" y="8.5" width="20" height="7" fill="black">
<rect fill="white" x="2.00003" y="8.5" width="20" height="7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.50003 14.5L3.00003 12L6.50003 9.5L7.00003 11L8.00003 11.5V12.5L7.00003 13L6.50003 14.5ZM17.5 9.5L21 12L17.5 14.5L17 13L16 12.5V11.5L17 11L17.5 9.5Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.50003 14.5L3.00003 12L6.50003 9.5L7.00003 11L8.00003 11.5V12.5L7.00003 13L6.50003 14.5ZM17.5 9.5L21 12L17.5 14.5L17 13L16 12.5V11.5L17 11L17.5 9.5Z" fill="#1F1F1F"/>
<path d="M3.00003 12L2.41879 11.1863C2.156 11.374 2.00003 11.677 2.00003 12C2.00003 12.323 2.156 12.626 2.41879 12.8137L3.00003 12ZM6.50003 14.5L5.91879 15.3137C6.17703 15.4982 6.50748 15.5491 6.80927 15.451C7.11106 15.3528 7.34836 15.1173 7.44871 14.8162L6.50003 14.5ZM6.50003 9.5L7.44871 9.18377C7.34836 8.88271 7.11107 8.64715 6.80928 8.54902C6.50748 8.45088 6.17703 8.50181 5.91879 8.68627L6.50003 9.5ZM7.00003 11L6.05135 11.3162C6.13522 11.5678 6.3156 11.7758 6.55282 11.8944L7.00003 11ZM8.00003 11.5H9.00003C9.00003 11.1212 8.78603 10.775 8.44724 10.6056L8.00003 11.5ZM8.00003 12.5L8.44724 13.3944C8.78603 13.225 9.00003 12.8788 9.00003 12.5H8.00003ZM7.00003 13L6.55282 12.1056C6.3156 12.2242 6.13522 12.4322 6.05135 12.6838L7.00003 13ZM21 12L21.5813 12.8137C21.8441 12.626 22 12.323 22 12C22 11.677 21.8441 11.374 21.5813 11.1863L21 12ZM17.5 9.5L18.0813 8.68627C17.823 8.50181 17.4926 8.45088 17.1908 8.54902C16.889 8.64715 16.6517 8.88271 16.5513 9.18377L17.5 9.5ZM17.5 14.5L16.5513 14.8162C16.6517 15.1173 16.889 15.3528 17.1908 15.451C17.4926 15.5491 17.823 15.4982 18.0813 15.3137L17.5 14.5ZM17 13L17.9487 12.6838C17.8648 12.4322 17.6845 12.2242 17.4472 12.1056L17 13ZM16 12.5H15C15 12.8788 15.214 13.225 15.5528 13.3944L16 12.5ZM16 11.5L15.5528 10.6056C15.214 10.775 15 11.1212 15 11.5H16ZM17 11L17.4472 11.8944C17.6845 11.7758 17.8648 11.5678 17.9487 11.3162L17 11ZM2.41879 12.8137L5.91879 15.3137L7.08127 13.6863L3.58127 11.1863L2.41879 12.8137ZM5.91879 8.68627L2.41879 11.1863L3.58127 12.8137L7.08127 10.3137L5.91879 8.68627ZM7.94871 10.6838L7.44871 9.18377L5.55135 9.81623L6.05135 11.3162L7.94871 10.6838ZM8.44724 10.6056L7.44724 10.1056L6.55282 11.8944L7.55282 12.3944L8.44724 10.6056ZM9.00003 12.5V11.5H7.00003V12.5H9.00003ZM7.44724 13.8944L8.44724 13.3944L7.55282 11.6056L6.55282 12.1056L7.44724 13.8944ZM7.44871 14.8162L7.94871 13.3162L6.05135 12.6838L5.55135 14.1838L7.44871 14.8162ZM21.5813 11.1863L18.0813 8.68627L16.9188 10.3137L20.4188 12.8137L21.5813 11.1863ZM18.0813 15.3137L21.5813 12.8137L20.4188 11.1863L16.9188 13.6863L18.0813 15.3137ZM16.0513 13.3162L16.5513 14.8162L18.4487 14.1838L17.9487 12.6838L16.0513 13.3162ZM15.5528 13.3944L16.5528 13.8944L17.4472 12.1056L16.4472 11.6056L15.5528 13.3944ZM15 11.5V12.5H17V11.5H15ZM16.5528 10.1056L15.5528 10.6056L16.4472 12.3944L17.4472 11.8944L16.5528 10.1056ZM16.5513 9.18377L16.0513 10.6838L17.9487 11.3162L18.4487 9.81623L16.5513 9.18377Z" fill="white" mask="url(#path-2-outside-1_182_7191)"/>
</g>
<defs>
<filter id="filter0_d_182_7191" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7191"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7191" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7181)">
<circle cx="12" cy="12" r="2" fill="#5778EE" stroke="white" stroke-linejoin="round"/>
<mask id="path-2-outside-1_182_7181" maskUnits="userSpaceOnUse" x="8.5" y="2" width="7" height="20" fill="black">
<rect fill="white" x="8.5" y="2" width="7" height="20"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 6.5L12 3L14.5 6.5L13 7L12.5 8H11.5L11 7L9.5 6.5ZM14.5 17.5L12 21L9.5 17.5L11 17L11.5 16H12.5L13 17L14.5 17.5Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 6.5L12 3L14.5 6.5L13 7L12.5 8H11.5L11 7L9.5 6.5ZM14.5 17.5L12 21L9.5 17.5L11 17L11.5 16H12.5L13 17L14.5 17.5Z" fill="#1F1F1F"/>
<path d="M12 3L12.8137 2.41876C12.626 2.15597 12.323 2 12 2C11.677 2 11.374 2.15597 11.1863 2.41876L12 3ZM9.5 6.5L8.68627 5.91876C8.50181 6.177 8.45088 6.50745 8.54902 6.80924C8.64716 7.11103 8.88271 7.34833 9.18377 7.44868L9.5 6.5ZM14.5 6.5L14.8162 7.44868C15.1173 7.34833 15.3528 7.11103 15.451 6.80924C15.5491 6.50745 15.4982 6.177 15.3137 5.91876L14.5 6.5ZM13 7L12.6838 6.05132C12.4322 6.13519 12.2242 6.31557 12.1056 6.55279L13 7ZM12.5 8V9C12.8788 9 13.225 8.786 13.3944 8.44721L12.5 8ZM11.5 8L10.6056 8.44721C10.775 8.786 11.1212 9 11.5 9V8ZM11 7L11.8944 6.55279C11.7758 6.31557 11.5678 6.13519 11.3162 6.05132L11 7ZM12 21L11.1863 21.5812C11.374 21.844 11.677 22 12 22C12.323 22 12.626 21.844 12.8137 21.5812L12 21ZM14.5 17.5L15.3137 18.0812C15.4982 17.823 15.5491 17.4925 15.451 17.1908C15.3528 16.889 15.1173 16.6517 14.8162 16.5513L14.5 17.5ZM9.5 17.5L9.18377 16.5513C8.88271 16.6517 8.64716 16.889 8.54902 17.1908C8.45088 17.4925 8.50181 17.823 8.68627 18.0812L9.5 17.5ZM11 17L11.3162 17.9487C11.5678 17.8648 11.7758 17.6844 11.8944 17.4472L11 17ZM11.5 16V15C11.1212 15 10.775 15.214 10.6056 15.5528L11.5 16ZM12.5 16L13.3944 15.5528C13.225 15.214 12.8788 15 12.5 15V16ZM13 17L12.1056 17.4472C12.2242 17.6844 12.4322 17.8648 12.6838 17.9487L13 17ZM11.1863 2.41876L8.68627 5.91876L10.3137 7.08124L12.8137 3.58124L11.1863 2.41876ZM15.3137 5.91876L12.8137 2.41876L11.1863 3.58124L13.6863 7.08124L15.3137 5.91876ZM13.3162 7.94868L14.8162 7.44868L14.1838 5.55132L12.6838 6.05132L13.3162 7.94868ZM13.3944 8.44721L13.8944 7.44721L12.1056 6.55279L11.6056 7.55279L13.3944 8.44721ZM11.5 9H12.5V7H11.5V9ZM10.1056 7.44721L10.6056 8.44721L12.3944 7.55279L11.8944 6.55279L10.1056 7.44721ZM9.18377 7.44868L10.6838 7.94868L11.3162 6.05132L9.81623 5.55132L9.18377 7.44868ZM12.8137 21.5812L15.3137 18.0812L13.6863 16.9188L11.1863 20.4188L12.8137 21.5812ZM8.68627 18.0812L11.1863 21.5812L12.8137 20.4188L10.3137 16.9188L8.68627 18.0812ZM10.6838 16.0513L9.18377 16.5513L9.81623 18.4487L11.3162 17.9487L10.6838 16.0513ZM10.6056 15.5528L10.1056 16.5528L11.8944 17.4472L12.3944 16.4472L10.6056 15.5528ZM12.5 15H11.5V17H12.5V15ZM13.8944 16.5528L13.3944 15.5528L11.6056 16.4472L12.1056 17.4472L13.8944 16.5528ZM14.8162 16.5513L13.3162 16.0513L12.6838 17.9487L14.1838 18.4487L14.8162 16.5513Z" fill="white" mask="url(#path-2-outside-1_182_7181)"/>
</g>
<defs>
<filter id="filter0_d_182_7181" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7181"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7181" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7057)">
<mask id="path-1-outside-1_182_7057" maskUnits="userSpaceOnUse" x="8" y="3" width="7" height="18" fill="black">
<rect fill="white" x="8" y="3" width="7" height="18"/>
<path d="M14 5.00002V4.00002L12.5 4.00003C12.5 4.00003 11.5 4.00004 11.5 4.75004C11.5 4.00004 10.5 4.00001 10.5 4.00001L9 4V5L9.99999 5.00001C9.99999 5.00001 11 5.00001 11 6.00001L11 18C11 19 9.99999 19 9.99999 19L9 19V20L10.5 20C10.5 20 11.5 20 11.5 19.25C11.5 20 12.5 20 12.5 20L14 20V19L13 19C13 19 12 19 12 18L12 6.00003C12 5.00003 13 5.00003 13 5.00003L14 5.00002Z"/>
</mask>
<path d="M14 5.00002V4.00002L12.5 4.00003C12.5 4.00003 11.5 4.00004 11.5 4.75004C11.5 4.00004 10.5 4.00001 10.5 4.00001L9 4V5L9.99999 5.00001C9.99999 5.00001 11 5.00001 11 6.00001L11 18C11 19 9.99999 19 9.99999 19L9 19V20L10.5 20C10.5 20 11.5 20 11.5 19.25C11.5 20 12.5 20 12.5 20L14 20V19L13 19C13 19 12 19 12 18L12 6.00003C12 5.00003 13 5.00003 13 5.00003L14 5.00002Z" fill="#1F1F1F"/>
<path d="M14 5.00002V4.00002L12.5 4.00003C12.5 4.00003 11.5 4.00004 11.5 4.75004C11.5 4.00004 10.5 4.00001 10.5 4.00001L9 4V5L9.99999 5.00001C9.99999 5.00001 11 5.00001 11 6.00001L11 18C11 19 9.99999 19 9.99999 19L9 19V20L10.5 20C10.5 20 11.5 20 11.5 19.25C11.5 20 12.5 20 12.5 20L14 20V19L13 19C13 19 12 19 12 18L12 6.00003C12 5.00003 13 5.00003 13 5.00003L14 5.00002Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7057)"/>
</g>
<defs>
<filter id="filter0_d_182_7057" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7057"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7057" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7129)">
<mask id="path-1-outside-1_182_7129" maskUnits="userSpaceOnUse" x="2" y="2" width="14" height="14" fill="black">
<rect fill="white" x="2" y="2" width="14" height="14"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 3H12V4H4V12H3V3ZM9.5 14L8 8L14 9.5L13 11.5L14.5 14L14 14.5L11.5 13L9.5 14Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 3H12V4H4V12H3V3ZM9.5 14L8 8L14 9.5L13 11.5L14.5 14L14 14.5L11.5 13L9.5 14Z" fill="#1F1F1F"/>
<path d="M12 3H13C13 2.44772 12.5523 2 12 2V3ZM3 3V2C2.44772 2 2 2.44772 2 3H3ZM12 4V5C12.5523 5 13 4.55228 13 4H12ZM4 4V3C3.44772 3 3 3.44772 3 4H4ZM4 12V13C4.55228 13 5 12.5523 5 12H4ZM3 12H2C2 12.5523 2.44772 13 3 13V12ZM8 8L8.24253 7.02986C7.90176 6.94466 7.54127 7.04451 7.29289 7.29289C7.04451 7.54127 6.94466 7.90176 7.02986 8.24253L8 8ZM9.5 14L8.52986 14.2425C8.60342 14.5368 8.80657 14.7818 9.08214 14.9085C9.35771 15.0353 9.67591 15.0301 9.94721 14.8944L9.5 14ZM14 9.5L14.8944 9.94721C15.0301 9.67591 15.0353 9.35771 14.9085 9.08214C14.7818 8.80657 14.5368 8.60342 14.2425 8.52986L14 9.5ZM13 11.5L12.1056 11.0528C11.9527 11.3586 11.9666 11.7213 12.1425 12.0145L13 11.5ZM14.5 14L15.2071 14.7071C15.5316 14.3826 15.5936 13.879 15.3575 13.4855L14.5 14ZM14 14.5L13.4855 15.3575C13.879 15.5936 14.3826 15.5316 14.7071 15.2071L14 14.5ZM11.5 13L12.0145 12.1425C11.7213 11.9666 11.3586 11.9527 11.0528 12.1056L11.5 13ZM12 2H3V4H12V2ZM13 4V3H11V4H13ZM4 5H12V3H4V5ZM5 12V4H3V12H5ZM3 13H4V11H3V13ZM2 3V12H4V3H2ZM7.02986 8.24253L8.52986 14.2425L10.4701 13.7575L8.97014 7.75746L7.02986 8.24253ZM14.2425 8.52986L8.24253 7.02986L7.75746 8.97014L13.7575 10.4701L14.2425 8.52986ZM13.8944 11.9472L14.8944 9.94721L13.1056 9.05279L12.1056 11.0528L13.8944 11.9472ZM15.3575 13.4855L13.8575 10.9855L12.1425 12.0145L13.6425 14.5145L15.3575 13.4855ZM14.7071 15.2071L15.2071 14.7071L13.7929 13.2929L13.2929 13.7929L14.7071 15.2071ZM10.9855 13.8575L13.4855 15.3575L14.5145 13.6425L12.0145 12.1425L10.9855 13.8575ZM9.94721 14.8944L11.9472 13.8944L11.0528 12.1056L9.05279 13.1056L9.94721 14.8944Z" fill="white" mask="url(#path-1-outside-1_182_7129)"/>
</g>
<defs>
<filter id="filter0_d_182_7129" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7129"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7129" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7137)">
<mask id="path-1-outside-1_182_7137" maskUnits="userSpaceOnUse" x="8" y="2" width="14" height="14" fill="black">
<rect fill="white" x="8" y="2" width="14" height="14"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 3V12H20V4L12 4V3L21 3ZM10 9.5L16 8L14.5 14L12.5 13L10 14.5L9.5 14L11 11.5L10 9.5Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 3V12H20V4L12 4V3L21 3ZM10 9.5L16 8L14.5 14L12.5 13L10 14.5L9.5 14L11 11.5L10 9.5Z" fill="#1F1F1F"/>
<path d="M21 12V13C21.5523 13 22 12.5523 22 12H21ZM21 3H22C22 2.44772 21.5523 2 21 2L21 3ZM20 12H19C19 12.5523 19.4477 13 20 13V12ZM20 4H21C21 3.44772 20.5523 3 20 3L20 4ZM12 4H11C11 4.55229 11.4477 5 12 5L12 4ZM12 3L12 2C11.7348 2 11.4804 2.10536 11.2929 2.29289C11.1054 2.48043 11 2.73478 11 3H12ZM16 8L16.9701 8.24253C17.0553 7.90176 16.9555 7.54127 16.7071 7.29289C16.4587 7.04451 16.0982 6.94466 15.7575 7.02986L16 8ZM10 9.5L9.75747 8.52986C9.4632 8.60342 9.21823 8.80657 9.09149 9.08214C8.96474 9.35771 8.96993 9.67592 9.10557 9.94721L10 9.5ZM14.5 14L14.0528 14.8944C14.3241 15.0301 14.6423 15.0353 14.9179 14.9085C15.1934 14.7818 15.3966 14.5368 15.4701 14.2425L14.5 14ZM12.5 13L12.9472 12.1056C12.6414 11.9527 12.2787 11.9666 11.9855 12.1425L12.5 13ZM10 14.5L9.2929 15.2071C9.61736 15.5316 10.121 15.5936 10.5145 15.3575L10 14.5ZM9.5 14L8.64251 13.4855C8.40642 13.879 8.46843 14.3826 8.7929 14.7071L9.5 14ZM11 11.5L11.8575 12.0145C12.0334 11.7213 12.0473 11.3586 11.8944 11.0528L11 11.5ZM22 12V3H20V12H22ZM20 13H21V11H20V13ZM19 4V12H21V4H19ZM12 5L20 5L20 3L12 3L12 5ZM11 3V4H13V3H11ZM21 2L12 2L12 4L21 4L21 2ZM15.7575 7.02986L9.75747 8.52986L10.2425 10.4701L16.2425 8.97014L15.7575 7.02986ZM15.4701 14.2425L16.9701 8.24253L15.0299 7.75746L13.5299 13.7575L15.4701 14.2425ZM12.0528 13.8944L14.0528 14.8944L14.9472 13.1056L12.9472 12.1056L12.0528 13.8944ZM10.5145 15.3575L13.0145 13.8575L11.9855 12.1425L9.48551 13.6425L10.5145 15.3575ZM8.7929 14.7071L9.2929 15.2071L10.7071 13.7929L10.2071 13.2929L8.7929 14.7071ZM10.1425 10.9855L8.64251 13.4855L10.3575 14.5145L11.8575 12.0145L10.1425 10.9855ZM9.10557 9.94721L10.1056 11.9472L11.8944 11.0528L10.8944 9.05279L9.10557 9.94721Z" fill="white" mask="url(#path-1-outside-1_182_7137)"/>
</g>
<defs>
<filter id="filter0_d_182_7137" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7137"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7137" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7097)">
<mask id="path-1-outside-1_182_7097" maskUnits="userSpaceOnUse" x="4.00002" y="1.99998" width="16" height="15" fill="black">
<rect fill="white" x="4.00002" y="1.99998" width="16" height="15"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.00002 3H19V4H5.00002V3ZM9.00002 12.5L12 6.99998L15 12.5L13 13.5L12.5 16H11.5L11 13.5L9.00002 12.5Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.00002 3H19V4H5.00002V3ZM9.00002 12.5L12 6.99998L15 12.5L13 13.5L12.5 16H11.5L11 13.5L9.00002 12.5Z" fill="#1F1F1F"/>
<path d="M19 3H20C20 2.44772 19.5523 2 19 2V3ZM5.00002 3V2C4.44773 2 4.00002 2.44772 4.00002 3H5.00002ZM19 4V5C19.5523 5 20 4.55229 20 4H19ZM5.00002 4H4.00002C4.00002 4.55229 4.44773 5 5.00002 5V4ZM12 6.99998L12.8779 6.52113C12.7027 6.19987 12.366 5.99998 12 5.99998C11.6341 5.99998 11.2974 6.19987 11.1221 6.52113L12 6.99998ZM9.00002 12.5L8.12212 12.0211C7.99216 12.2594 7.96462 12.5402 8.04584 12.7992C8.12706 13.0582 8.31005 13.273 8.5528 13.3944L9.00002 12.5ZM15 12.5L15.4472 13.3944C15.69 13.273 15.873 13.0582 15.9542 12.7992C16.0354 12.5402 16.0079 12.2594 15.8779 12.0211L15 12.5ZM13 13.5L12.5528 12.6056C12.2768 12.7436 12.08 13.0013 12.0194 13.3039L13 13.5ZM12.5 16V17C12.9767 17 13.3871 16.6635 13.4806 16.1961L12.5 16ZM11.5 16L10.5194 16.1961C10.6129 16.6635 11.0233 17 11.5 17V16ZM11 13.5L11.9806 13.3039C11.9201 13.0013 11.7232 12.7436 11.4472 12.6056L11 13.5ZM19 2H5.00002V4H19V2ZM20 4V3H18V4H20ZM5.00002 5H19V3H5.00002V5ZM4.00002 3V4H6.00002V3H4.00002ZM11.1221 6.52113L8.12212 12.0211L9.87791 12.9788L12.8779 7.47884L11.1221 6.52113ZM15.8779 12.0211L12.8779 6.52113L11.1221 7.47884L14.1221 12.9788L15.8779 12.0211ZM13.4472 14.3944L15.4472 13.3944L14.5528 11.6055L12.5528 12.6056L13.4472 14.3944ZM13.4806 16.1961L13.9806 13.6961L12.0194 13.3039L11.5194 15.8039L13.4806 16.1961ZM11.5 17H12.5V15H11.5V17ZM10.0194 13.6961L10.5194 16.1961L12.4806 15.8039L11.9806 13.3039L10.0194 13.6961ZM8.5528 13.3944L10.5528 14.3944L11.4472 12.6056L9.44723 11.6055L8.5528 13.3944Z" fill="white" mask="url(#path-1-outside-1_182_7097)"/>
</g>
<defs>
<filter id="filter0_d_182_7097" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7097"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7097" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_184_1566)">
<mask id="path-1-outside-1_184_1566" maskUnits="userSpaceOnUse" x="3" y="2" width="17" height="11" fill="black">
<rect fill="white" x="3" y="2" width="17" height="11"/>
<path d="M19 3H4V4H11V12H12V4H19V3Z"/>
</mask>
<path d="M19 3H4V4H11V12H12V4H19V3Z" fill="#1F1F1F"/>
<path d="M19 3H4V4H11V12H12V4H19V3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_184_1566)"/>
</g>
<defs>
<filter id="filter0_d_184_1566" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_184_1566"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_184_1566" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_184_1508)">
<mask id="path-1-outside-1_184_1508" maskUnits="userSpaceOnUse" x="2" y="2" width="11" height="11" fill="black">
<rect fill="white" x="2" y="2" width="11" height="11"/>
<path d="M12 3H3V12H4V4H12V3Z"/>
</mask>
<path d="M12 3H3V12H4V4H12V3Z" fill="#1F1F1F"/>
<path d="M12 3H3V12H4V4H12V3Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_184_1508)"/>
</g>
<defs>
<filter id="filter0_d_184_1508" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_184_1508"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_184_1508" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7081)">
<mask id="path-1-outside-1_182_7081" maskUnits="userSpaceOnUse" x="7.5" y="3" width="9" height="18" fill="black">
<rect fill="white" x="7.5" y="3" width="9" height="18"/>
<path d="M12 4L8.5 10.5L11 11.5L11.5 20H12.5L13 11.5L15.5 10.5L12 4Z"/>
</mask>
<path d="M12 4L8.5 10.5L11 11.5L11.5 20H12.5L13 11.5L15.5 10.5L12 4Z" fill="#1F1F1F"/>
<path d="M12 4L8.5 10.5L11 11.5L11.5 20H12.5L13 11.5L15.5 10.5L12 4Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7081)"/>
</g>
<defs>
<filter id="filter0_d_182_7081" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7081"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7081" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,24 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_184_1516)" filter="url(#filter0_d_184_1516)">
<mask id="path-1-outside-1_184_1516" maskUnits="userSpaceOnUse" x="11" y="2" width="11" height="11" fill="black">
<rect fill="white" x="11" y="2" width="11" height="11"/>
<path d="M21 12L21 3L12 3L12 4L20 4L20 12L21 12Z"/>
</mask>
<path d="M21 12L21 3L12 3L12 4L20 4L20 12L21 12Z" fill="#1F1F1F"/>
<path d="M21 12L21 3L12 3L12 4L20 4L20 12L21 12Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_184_1516)"/>
</g>
<defs>
<filter id="filter0_d_184_1516" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_184_1516"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_184_1516" result="shape"/>
</filter>
<clipPath id="clip0_184_1516">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,21 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7065)">
<mask id="path-1-outside-1_182_7065" maskUnits="userSpaceOnUse" x="3" y="8" width="18" height="7" fill="black">
<rect fill="white" x="3" y="8" width="18" height="7"/>
<path d="M19 14H20L20 12.5C20 12.5 20 11.5 19.25 11.5C20 11.5 20 10.5 20 10.5L20 9H19L19 9.99999C19 9.99999 19 11 18 11L6.00002 11C5.00002 11 5.00002 9.99999 5.00002 9.99999L5.00003 9H4.00003L4.00002 10.5C4.00002 10.5 3.99998 11.5 4.74998 11.5C3.99998 11.5 4 12.5 4 12.5L4 14H5L5 13C5 13 5 12 6 12L18 12C19 12 19 13 19 13L19 14Z"/>
</mask>
<path d="M19 14H20L20 12.5C20 12.5 20 11.5 19.25 11.5C20 11.5 20 10.5 20 10.5L20 9H19L19 9.99999C19 9.99999 19 11 18 11L6.00002 11C5.00002 11 5.00002 9.99999 5.00002 9.99999L5.00003 9H4.00003L4.00002 10.5C4.00002 10.5 3.99998 11.5 4.74998 11.5C3.99998 11.5 4 12.5 4 12.5L4 14H5L5 13C5 13 5 12 6 12L18 12C19 12 19 13 19 13L19 14Z" fill="#1F1F1F"/>
<path d="M19 14H20L20 12.5C20 12.5 20 11.5 19.25 11.5C20 11.5 20 10.5 20 10.5L20 9H19L19 9.99999C19 9.99999 19 11 18 11L6.00002 11C5.00002 11 5.00002 9.99999 5.00002 9.99999L5.00003 9H4.00003L4.00002 10.5C4.00002 10.5 3.99998 11.5 4.74998 11.5C3.99998 11.5 4 12.5 4 12.5L4 14H5L5 13C5 13 5 12 6 12L18 12C19 12 19 13 19 13L19 14Z" stroke="white" stroke-width="2" stroke-linejoin="round" mask="url(#path-1-outside-1_182_7065)"/>
</g>
<defs>
<filter id="filter0_d_182_7065" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7065"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7065" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7379)">
<circle cx="12" cy="12" r="7.5" stroke="white" stroke-linejoin="round"/>
<path d="M10.4763 5.16893C10.748 5.10827 11.0234 5.06369 11.301 5.03561C11.5308 5.01283 11.7639 5.00117 11.9997 5.00117C12.6264 5.00117 13.2338 5.08352 13.8117 5.23798C14.3895 5.39318 14.9567 5.62558 15.4994 5.93891C15.7037 6.05684 15.8998 6.18351 16.0874 6.31818C16.4746 6.59721 16.8322 6.91484 17.1544 7.26544C16.8981 9.90057 14.6935 11.9651 11.9994 12.0001C13.3158 9.64953 12.6301 6.70834 10.4763 5.16893Z" fill="#FB5050"/>
<path d="M17.1541 7.26495C17.3425 7.46991 17.5188 7.68613 17.6819 7.91249C17.8165 8.10013 17.9432 8.29617 18.0611 8.50039C18.3744 9.04308 18.6068 9.61028 18.762 10.188C18.9165 10.766 18.9988 11.3734 18.9988 12.0001C18.9988 12.236 18.9872 12.4691 18.9644 12.699C18.9163 13.1738 18.82 13.6423 18.6775 14.0966C16.2673 15.1922 13.3771 14.3153 11.9997 11.9996C14.6935 11.9643 16.8978 9.89991 17.1541 7.26495Z" fill="#FFA200"/>
<path d="M18.6778 14.0961C18.5945 14.3617 18.4954 14.6225 18.3809 14.8769C18.2857 15.0874 18.1793 15.2951 18.0614 15.4993C17.7481 16.042 17.373 16.5268 16.9503 16.9501C16.527 17.3729 16.0421 17.7479 15.4994 18.0613C15.2952 18.1792 15.0874 18.2856 14.877 18.3808C14.4417 18.5767 13.9879 18.7275 13.5231 18.8312C11.3692 17.2917 10.6836 14.3503 12.0002 11.9996C13.3778 14.3148 16.2677 15.1916 18.6778 14.0961Z" fill="#F4E434"/>
<path d="M13.5237 18.8313C13.252 18.8919 12.9766 18.9365 12.699 18.9646C12.4692 18.9874 12.2361 18.999 12.0003 18.999C11.3737 18.999 10.7663 18.9167 10.1883 18.7622C9.61054 18.607 9.04331 18.3746 8.50059 18.0613C8.29634 17.9434 8.10027 17.8167 7.9126 17.682C7.52539 17.403 7.16785 17.0854 6.84562 16.7348C7.1019 14.0996 9.30649 12.0351 12.0006 12.0001C10.6843 14.3507 11.3699 17.2919 13.5237 18.8313Z" fill="#68D56C"/>
<path d="M6.84589 16.7353C6.65752 16.5303 6.48122 16.3141 6.3181 16.0877C6.18346 15.9001 6.05681 15.704 5.9389 15.4998C5.62558 14.9571 5.3932 14.3899 5.23799 13.8122C5.08352 13.2342 5.00116 12.6268 5.00116 12.0001C5.00116 11.7642 5.01283 11.5311 5.03561 11.3012C5.08366 10.8264 5.17997 10.3579 5.32248 9.90359C7.73271 8.80797 10.6229 9.68495 12.0003 12.0006C9.30648 12.0359 7.10216 14.1003 6.84589 16.7353Z" fill="#5778EE"/>
<path d="M5.32221 9.90409C5.40551 9.63848 5.50461 9.37769 5.61909 9.12325C5.71427 8.91282 5.82072 8.70513 5.93863 8.5009C6.25195 7.95821 6.62697 7.47336 7.04971 7.05008C7.47301 6.62731 7.95788 6.25227 8.5006 5.93893C8.70486 5.821 8.91259 5.71454 9.12305 5.61934C9.5583 5.42353 10.0122 5.27271 10.4769 5.16895C12.6308 6.70846 13.3165 9.64994 11.9998 12.0006C10.6223 9.68535 7.73228 8.80855 5.32221 9.90409Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7379" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7379"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7379" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7383)">
<circle cx="12" cy="12" r="7.5" transform="rotate(15 12 12)" stroke="white" stroke-linejoin="round"/>
<path d="M12.2963 5.00726C12.5744 5.01898 12.8519 5.04721 13.1273 5.09193C13.3552 5.12941 13.5834 5.17847 13.8112 5.23951C14.4165 5.40169 14.9819 5.63844 15.5001 5.93723C16.0181 6.23668 16.5058 6.60797 16.9489 7.05109C17.1157 7.21787 17.2723 7.39097 17.4187 7.56962C17.7205 7.93936 17.9837 8.33871 18.2042 8.76076C17.2746 11.2398 14.6108 12.6633 11.9995 11.9999C13.8793 10.0701 13.9782 7.05166 12.2963 5.00726Z" fill="#FB5050"/>
<path d="M18.204 8.76016C18.3329 9.00689 18.4473 9.26137 18.5462 9.52223C18.6277 9.73833 18.6993 9.96046 18.7604 10.1882C18.9225 10.7935 19.0002 11.4016 19.0006 11.9998C19.0002 12.598 18.9225 13.2061 18.7604 13.8114C18.6993 14.0392 18.6277 14.2614 18.5462 14.4775C18.3769 14.9238 18.1626 15.3513 17.9074 15.7533C15.2957 16.1878 12.731 14.5927 11.9998 11.9995C14.611 12.6625 17.2745 11.239 18.204 8.76016Z" fill="#FFA200"/>
<path d="M17.9078 15.7529C17.7586 15.9879 17.5954 16.2142 17.419 16.4303C17.2725 16.609 17.116 16.782 16.9492 16.9488C16.5061 17.3919 16.0184 17.7631 15.5005 18.0626C14.9822 18.3614 14.4168 18.5982 13.8115 18.7604C13.5836 18.8214 13.3554 18.8705 13.1275 18.908C12.6564 18.9844 12.179 19.0127 11.7032 18.9926C10.0211 16.9481 10.1202 13.9294 12.0004 11.9996C12.7317 14.5925 15.2963 16.1874 17.9078 15.7529Z" fill="#F4E434"/>
<path d="M11.7038 18.9928C11.4257 18.9811 11.1481 18.9528 10.8727 18.9081C10.6448 18.8706 10.4167 18.8216 10.1889 18.7605C9.58359 18.5984 9.01819 18.3616 8.49992 18.0628C7.982 17.7634 7.49424 17.3921 7.05112 16.949C6.88434 16.7822 6.72774 16.6091 6.58132 16.4304C6.27952 16.0607 6.01638 15.6613 5.79587 15.2393C6.72544 12.7603 9.38924 11.3367 12.0006 12.0001C10.1207 13.9299 10.0218 16.9484 11.7038 18.9928Z" fill="#68D56C"/>
<path d="M5.79602 15.2398C5.66711 14.9931 5.55278 14.7386 5.45381 14.4778C5.37232 14.2617 5.30073 14.0395 5.23969 13.8118C5.07751 13.2065 4.99984 12.5984 4.99946 12.0002C4.99983 11.402 5.0775 10.7939 5.23969 10.1886C5.30074 9.96076 5.37234 9.73859 5.45385 9.52246C5.62315 9.07623 5.83743 8.64866 6.09268 8.24667C8.70435 7.8122 11.2691 9.40734 12.0002 12.0005C9.38905 11.3375 6.72553 12.761 5.79602 15.2398Z" fill="#5778EE"/>
<path d="M6.09224 8.24707C6.24146 8.01208 6.40468 7.78581 6.58111 7.56967C6.72751 7.39105 6.88409 7.21798 7.05084 7.05123C7.49394 6.60813 7.98167 6.23686 8.49956 5.93742C9.01785 5.63861 9.58327 5.40185 10.1886 5.23965C10.4164 5.17861 10.6446 5.12954 10.8725 5.09205C11.3437 5.01556 11.8211 4.98734 12.2968 5.0074C13.9789 7.05194 13.8799 10.0706 11.9997 12.0004C11.2683 9.40753 8.70374 7.81263 6.09224 8.24707Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7383" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7383"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7383" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -1,22 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_182_7419)">
<circle cx="12" cy="12" r="7.5" transform="rotate(150 12 12)" stroke="white" stroke-linejoin="round"/>
<path d="M16.7352 17.154C16.5302 17.3424 16.314 17.5187 16.0876 17.6818C15.9 17.8164 15.7039 17.9431 15.4997 18.061C14.957 18.3743 14.3898 18.6067 13.8121 18.7619C13.2341 18.9164 12.6267 18.9987 12 18.9987C11.7641 18.9987 11.531 18.9871 11.3012 18.9643C10.8263 18.9162 10.3578 18.8199 9.90349 18.6774C8.80788 16.2672 9.68485 13.377 12.0005 11.9996C12.0358 14.6934 14.1002 16.8977 16.7352 17.154Z" fill="#FB5050"/>
<path d="M9.90402 18.6777C9.63841 18.5944 9.37761 18.4953 9.12317 18.3808C8.91275 18.2856 8.70505 18.1792 8.50082 18.0613C7.95814 17.7479 7.47328 17.3729 7.05 16.9502C6.62723 16.5269 6.25219 16.042 5.93886 15.4993C5.82093 15.295 5.71446 15.0873 5.61927 14.8769C5.42345 14.4416 5.27263 13.9878 5.16887 13.523C6.70838 11.3691 9.64986 10.6834 12.0005 12.0001C9.68527 13.3776 8.80848 16.2676 9.90402 18.6777Z" fill="#FFA200"/>
<path d="M5.16889 13.5236C5.10823 13.2519 5.06365 12.9765 5.03557 12.6989C5.01279 12.4691 5.00113 12.236 5.00113 12.0002C5.00113 11.3735 5.08348 10.7661 5.23794 10.1882C5.39314 9.61041 5.62554 9.04318 5.93887 8.50046C6.0568 8.29621 6.18347 8.10014 6.31814 7.91247C6.59717 7.52526 6.9148 7.16772 7.2654 6.84549C9.90053 7.10177 11.965 9.30636 12.0001 12.0004C9.64949 10.6841 6.7083 11.3698 5.16889 13.5236Z" fill="#F4E434"/>
<path d="M7.26487 6.84578C7.46983 6.65741 7.68605 6.4811 7.91241 6.31798C8.10005 6.18334 8.29609 6.0567 8.50031 5.93879C9.043 5.62547 9.6102 5.39308 10.1879 5.23788C10.7659 5.0834 11.3734 5.00104 12 5.00104C12.2359 5.00104 12.469 5.01271 12.6989 5.0355C13.1737 5.08354 13.6422 5.17985 14.0965 5.32236C15.1922 7.73259 14.3152 10.6228 11.9996 12.0002C11.9642 9.30636 9.89983 7.10205 7.26487 6.84578Z" fill="#68D56C"/>
<path d="M14.096 5.32207C14.3616 5.40538 14.6224 5.50448 14.8769 5.61895C15.0873 5.71414 15.295 5.82059 15.4992 5.9385C16.0419 6.25182 16.5267 6.62683 16.95 7.04957C17.3728 7.47287 17.7478 7.95775 18.0612 8.50046C18.1791 8.70472 18.2856 8.91245 18.3808 9.12291C18.5766 9.55817 18.7274 10.012 18.8312 10.4768C17.2916 12.6307 14.3502 13.3163 11.9995 11.9996C14.3148 10.6221 15.1916 7.73214 14.096 5.32207Z" fill="#5778EE"/>
<path d="M18.8312 10.4762C18.8918 10.7479 18.9364 11.0233 18.9645 11.3009C18.9873 11.5307 18.9989 11.7638 18.9989 11.9996C18.9989 12.6263 18.9166 13.2337 18.7621 13.8116C18.6069 14.3894 18.3745 14.9566 18.0612 15.4993C17.9433 15.7036 17.8166 15.8997 17.6819 16.0873C17.4029 16.4745 17.0853 16.8321 16.7347 17.1543C14.0995 16.898 12.035 14.6934 12 11.9994C14.3506 13.3157 17.2918 12.63 18.8312 10.4762Z" fill="#9755EC"/>
</g>
<defs>
<filter id="filter0_d_182_7419" x="-2" y="-2" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_182_7419"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_182_7419" result="shape"/>
</filter>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

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