Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fa799336ae | |||
| 813b2da114 | |||
| 7e066433be | |||
| 4e93820ef6 | |||
| de7aa52a19 | |||
| bf002c209d | |||
| 5844450e1e | |||
| 4624118b20 | |||
| ffbd4fa4d9 | |||
| eb1716d157 | |||
| cb80d2d154 | |||
| 377bc9fe29 | |||
| d60f9e62d9 | |||
| da8bab3ff1 | |||
| d2dd5c4645 | |||
| cbb3d5e1c6 | |||
| ce23b3500c | |||
| b326ad3d39 | |||
| 2016a6b3dd | |||
| 523834881e | |||
| d639709b06 | |||
| 2af59cd5a5 | |||
| 865ae5ab24 | |||
| 0400eb07c2 | |||
| d1dff4d4a4 | |||
| b8acf148bb | |||
| 865cf7b1dd | |||
| c7ac3c9092 | |||
| 913271c7ab |
@@ -1,2 +1 @@
|
|||||||
patreon: KaizKhatri
|
liberapay: ful1e5
|
||||||
custom: https://www.paypal.me/kaizkhatri
|
|
||||||
|
|||||||
@@ -57,6 +57,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
tar -cvzf BreezeX-Dark.tar.gz themes/BreezeX-Dark
|
tar -cvzf BreezeX-Dark.tar.gz themes/BreezeX-Dark
|
||||||
tar -cvzf BreezeX-Light.tar.gz themes/BreezeX-Light
|
tar -cvzf BreezeX-Light.tar.gz themes/BreezeX-Light
|
||||||
|
tar -cvzf BreezeX-Black.tar.gz themes/BreezeX-Black
|
||||||
|
|
||||||
- name: Uploading `bitmaps` artifact
|
- name: Uploading `bitmaps` artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
@@ -76,6 +77,12 @@ jobs:
|
|||||||
name: BreezeX-Light
|
name: BreezeX-Light
|
||||||
path: BreezeX-Light.tar.gz
|
path: BreezeX-Light.tar.gz
|
||||||
|
|
||||||
|
- name: Uploading `BreezeX-Black` UNIX Theme artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: BreezeX-Black
|
||||||
|
path: BreezeX-Black.tar.gz
|
||||||
|
|
||||||
- name: Uploading `BreezeX-Dark` Windows Theme artifact
|
- name: Uploading `BreezeX-Dark` Windows Theme artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
@@ -87,3 +94,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: BreezeX-Light-Windows
|
name: BreezeX-Light-Windows
|
||||||
path: themes/BreezeX-Light-Windows/*
|
path: themes/BreezeX-Light-Windows/*
|
||||||
|
|
||||||
|
- name: Uploading `BreezeX-Black` Windows Theme artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: BreezeX-Black-Windows
|
||||||
|
path: themes/BreezeX-Black-Windows/*
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
########## Custom
|
# Custom
|
||||||
bitmaps
|
bitmaps
|
||||||
themes
|
themes
|
||||||
builder/files.txt
|
bin
|
||||||
|
|
||||||
########## Python
|
|
||||||
|
|
||||||
|
# Python
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
@@ -136,7 +135,7 @@ dmypy.json
|
|||||||
.pyre/
|
.pyre/
|
||||||
|
|
||||||
|
|
||||||
######### Node
|
# --------------------------------------------- Nodejs
|
||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
logs
|
logs
|
||||||
|
|||||||
@@ -7,6 +7,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [unreleased]
|
## [unreleased]
|
||||||
|
|
||||||
|
## [v1.0.3] - 13 Nov 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- `Makefile` command with `THEME_PREFIX` variable
|
||||||
|
- distributed pling products docs inside `pling` directory
|
||||||
|
- `prepare` command added inside `Makefile`
|
||||||
|
- upload `BreezeX-Black` artifacts in `build` GitHub Action
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- sponsor with liberapay
|
||||||
|
- builder module renamed to `src`
|
||||||
|
- bitmapping log more descriptive
|
||||||
|
- minimal `README.md` (removed badges and emojis)
|
||||||
|
|
||||||
|
## [v1.0.2] - 20 June 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- **BreezeX-Black** variant added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Bigger hotspot dot for Resize cursors
|
||||||
|
- Windows resize cursors scale down
|
||||||
|
- `text` & `vertical-text` cursors scale down
|
||||||
|
|
||||||
|
## [v1.0.1] - 16 June 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- `left_ptr_watch` and `wait` got minimal design
|
||||||
|
- Cursors preview updated
|
||||||
|
|
||||||
## [v1.0.0] - 14 June 2021
|
## [v1.0.0] - 14 June 2021
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -15,5 +50,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Logo and badges
|
- Logo and badges
|
||||||
- CI/CD Pipelines
|
- CI/CD Pipelines
|
||||||
|
|
||||||
[unreleased]: https://github.com/ful1e5/BreezeX_Cursor/compare/v1.0.0...main
|
[unreleased]: https://github.com/ful1e5/BreezeX_Cursor/compare/v1.0.2...main
|
||||||
|
[v1.0.2]: https://github.com/ful1e5/BreezeX_Cursor/compare/v1.0.1...v1.0.2
|
||||||
|
[v1.0.1]: https://github.com/ful1e5/BreezeX_Cursor/compare/v1.0.0...v1.0.1
|
||||||
[v1.0.0]: https://github.com/ful1e5/BreezeX_Cursor/tree/v1.0.0
|
[v1.0.0]: https://github.com/ful1e5/BreezeX_Cursor/tree/v1.0.0
|
||||||
|
|||||||
@@ -21,32 +21,48 @@ windows: clean render bitmaps
|
|||||||
# Installation
|
# Installation
|
||||||
.ONESHELL:
|
.ONESHELL:
|
||||||
SHELL:=/bin/bash
|
SHELL:=/bin/bash
|
||||||
|
THEME_PREFIX = BreezeX
|
||||||
|
|
||||||
src = ./themes/BreezeX-*
|
src = ./themes/$(THEME_PREFIX)-*
|
||||||
local := ~/.icons
|
local := ~/.icons
|
||||||
local_dest := $(local)/BreezeX-*
|
local_dest := $(local)/$(THEME_PREFIX)-*
|
||||||
|
|
||||||
root := /usr/share/icons
|
root := /usr/share/icons
|
||||||
root_dest := $(root)/BreezeX-*
|
root_dest := $(root)/$(THEME_PREFIX)-*
|
||||||
|
|
||||||
install: themes
|
install: themes
|
||||||
@if [[ $EUID -ne 0 ]]; then
|
@if [[ $EUID -ne 0 ]]; then
|
||||||
@echo "> Installing 'BreezeX' cursors inside $(local)/..."
|
@echo "> Installing '$(THEME_PREFIX)' cursors inside $(local)/..."
|
||||||
@mkdir -p $(local)
|
@mkdir -p $(local)
|
||||||
@cp -r $(src) $(local)/ && echo "> Installed!"
|
@cp -r $(src) $(local)/ && echo "> Installed!"
|
||||||
@else
|
@else
|
||||||
@echo "> Installing 'BreezeX' cursors inside $(root)/..."
|
@echo "> Installing '$(THEME_PREFIX)' cursors inside $(root)/..."
|
||||||
@mkdir -p $(root)
|
@mkdir -p $(root)
|
||||||
@sudo cp -r $(src) $(root)/ && echo "> Installed!"
|
@sudo cp -r $(src) $(root)/ && echo "> Installed!"
|
||||||
@fi
|
@fi
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@if [[ $EUID -ne 0 ]]; then
|
@if [[ $EUID -ne 0 ]]; then
|
||||||
@echo "> Removing 'BreezeX' cursors from '$(local)'..."
|
@echo "> Removing '$(THEME_PREFIX)' cursors from '$(local)'..."
|
||||||
@rm -rf $(local_dest)
|
@rm -rf $(local_dest)
|
||||||
@else
|
@else
|
||||||
@echo "> Removing 'BreezeX' cursors from '$(root)'..."
|
@echo "> Removing '$(THEME_PREFIX)' cursors from '$(root)'..."
|
||||||
@sudo rm -rf $(root_dest)
|
@sudo rm -rf $(root_dest)
|
||||||
@fi
|
@fi
|
||||||
|
|
||||||
reinstall: uninstall install
|
reinstall: uninstall install
|
||||||
|
|
||||||
|
# generates binaries
|
||||||
|
BIN_DIR = ../bin
|
||||||
|
THEMES = Dark Light Black
|
||||||
|
prepare: bitmaps themes
|
||||||
|
@rm -rf bin && mkdir bin
|
||||||
|
@$(foreach theme,$(THEMES), mkdir -p bin/$(THEME_PREFIX)-$(theme);)
|
||||||
|
@cd bitmaps
|
||||||
|
@$(foreach theme,$(THEMES), zip -r $(BIN_DIR)/$(THEME_PREFIX)-$(theme)/bitmaps.zip $(THEME_PREFIX)-$(theme);)
|
||||||
|
@zip -r $(BIN_DIR)/bitmaps.zip *
|
||||||
|
@cd ..
|
||||||
|
@cd themes
|
||||||
|
@$(foreach theme,$(THEMES), tar -czvf $(BIN_DIR)/$(THEME_PREFIX)-$(theme)/$(THEME_PREFIX)-$(theme).tar.gz $(THEME_PREFIX)-$(theme);)
|
||||||
|
@$(foreach theme,$(THEMES), zip -r $(BIN_DIR)/$(THEME_PREFIX)-$(theme)/$(THEME_PREFIX)-$(theme)-Windows.zip $(THEME_PREFIX)-$(theme)-Windows;)
|
||||||
|
@cd ..
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
[b]BreezeX [/b] Cursor Theme with [b]HiDPi[/b] Display support. This Cursor is built with [b][url=https://github.com/ful1e5/clickgen]clickgen[/url][/b] and render with the [b][url=https://github.com/puppeteer/puppeteer/]puppeteer[/url][/b].
|
|
||||||
[i]Available Sizes[/i] [b]22, 24, 28, 32, 40, 48, 56, 64, 72, 80, 88, 96
|
|
||||||
|
|
||||||
[/b][i]Get latest build[/i] @[b][url=https://github.com/ful1e5/BreezeX_Cursor/actions]GitHub Actions[/url][/b]
|
|
||||||
[i]Release Notification[/i] at [b][url=https://twitter.com/ful1e5]Twitter[/url][/b](@ful1e5)
|
|
||||||
For [i]Customizing Size[/i] check [b][url=https://github.com/ful1e5/BreezeX_Cursor#manual-build]README.md[/url][/b]
|
|
||||||
|
|
||||||
[b]Linux/X11 installation[/b]
|
|
||||||
Get the latest stable Linux release from the [b][url=https://www.pling.com/p/1538515/#files-panel]Pling[/url][/b]. Unpack [b].tar.gz[/b] file and follow these [b]commands[/b].
|
|
||||||
|
|
||||||
[b]Install[/b]
|
|
||||||
[b]For all user:[/b]
|
|
||||||
[code]sudo mv BreezeX-* /usr/share/icons[/code]
|
|
||||||
[b]For local user:[/b]
|
|
||||||
[code]mv BreezeX-* ~/.icons[/code]
|
|
||||||
|
|
||||||
[b]Uninstall[/b]
|
|
||||||
[b]From all user:[/b]
|
|
||||||
[code]sudo rm -r /usr/share/icons/BreezeX-*[/code]
|
|
||||||
[b]From local user:[/b]
|
|
||||||
[code]rm -r ~/.icons/BreezeX-*[/code]
|
|
||||||
|
|
||||||
[b]Window installation[/b]
|
|
||||||
[list=1]
|
|
||||||
[*]unzip [b].zip[/b] file[/*]
|
|
||||||
[*]Open [b]unziped directory[/b] in Explorer, and [b]right-click[/b] on [b]install.inf[/b].[/*]
|
|
||||||
[*]Click 'Install' from the context menu, and authorise the modifications to your system.[/*]
|
|
||||||
[*]Open [i]Control Panel > Personalisation and Appearance > Change mouse pointers[/i], and select [b]BreezeX Cursors[/b].[/*]
|
|
||||||
[*]Click '[b]Apply[/b]'.[/*]
|
|
||||||
[/list]
|
|
||||||
|
|
||||||
[b]How I help the Creator?[/b]
|
|
||||||
[list=2]
|
|
||||||
[*]Give a [b]Star[/b] or [b]Follow[/b] on [b][url=https://github.com/ful1e5/BreezeX_Cursor]GitHub[/url][/b] (issues & PullRequest are welcome).[/*]
|
|
||||||
[*]By giving a [b]Pling[/b] or [b][url=https://www.paypal.me/kaizkhatri]Donation[/url][/b].[/*]
|
|
||||||
[*][b]Download[/b] from[url=https://www.pling.com/p/1538515/#files-panel] Pling.com[/url] Product page that helps to [b]increases[/b] my [b]monthly payout[/b].[/*]
|
|
||||||
[*][b][url=https://www.pling.com/support]Become Supporter of Pling.com[/url][/b], So we become [b]Full-Time [/b]Libre & FOSS content creator [b];)[/b][/*]
|
|
||||||
[/list]
|
|
||||||
|
|
||||||
[b]License & Terms[/b]
|
|
||||||
'[b]BreezeX[/b]' Cursor Theme is available under the terms of the [b]GPL-3.0[/b] license.
|
|
||||||
@@ -1,76 +1,11 @@
|
|||||||
<p align="center">
|
|
||||||
<img src="https://imgur.com/5M6xQZx.png" width="120" alt="BreezeX" />
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p align="center">
|
|
||||||
extended KDE cursor 💙
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<!-- Badges -->
|
|
||||||
<p align="center">
|
|
||||||
<!-- First Row -->
|
|
||||||
<a href="https://github.com/ful1e5/BreezeX_Cursor/actions">
|
|
||||||
<img alt="GitHub Action Build" src="https://github.com/ful1e5/BreezeX_Cursor/actions/workflows/build.yml/badge.svg" width="102" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://www.codefactor.io/repository/github/ful1e5/breezex_cursor">
|
|
||||||
<img src="https://www.codefactor.io/repository/github/ful1e5/breezex_cursor/badge" alt="CodeFactor" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<!-- Second Row -->
|
|
||||||
</br >
|
|
||||||
<a href="https://www.typescriptlang.org/docs/handbook/typescript-from-scratch.html">
|
|
||||||
<img alt="npm type definitions" src="https://img.shields.io/npm/types/typescript">
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://github.com/puppeteer/puppeteer/">
|
|
||||||
<img alt="Puppeteer version" src="https://img.shields.io/github/package-json/dependency-version/ful1e5/BreezeX_Cursor/puppeteer?filename=bitmapper%2Fpackage.json">
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://github.com/ful1e5/clickgen">
|
|
||||||
<img alt="Clickgen" src="https://img.shields.io/badge/theme%20builder-clickgen-FD0542" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<!-- Second Row -->
|
|
||||||
<br />
|
|
||||||
<a href="https://github.com/ful1e5/BreezeX_Cursor/releases">
|
|
||||||
<img alt="BreezeX Cursor release (latest by date including pre-releases)" src="https://img.shields.io/github/v/release/ful1e5/BreezeX_Cursor?include_prer">
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://github.com/ful1e5/BreezeX_Cursor/blob/main/LICENSE">
|
|
||||||
<img alt="License" src="https://img.shields.io/github/license/ful1e5/BreezeX_Cursor?color=0081FB" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<!-- Third Row -->
|
|
||||||
|
|
||||||
<br />
|
|
||||||
<a href="https://www.pling.com/p/1538515/#files-panel">
|
|
||||||
<img alt="License" src="https://img.shields.io/badge/-Linux-grey?logo=linux" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://www.pling.com/p/1538515/#files-panel">
|
|
||||||
<img alt="License" src="https://img.shields.io/badge/-Windows-blue?logo=windows" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://www.python.org/">
|
|
||||||
<img alt="License" src="https://img.shields.io/badge/-Python-yellow?logo=python" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<!-- Fourth Row -->
|
|
||||||
<br />
|
|
||||||
<a href="https://github.com/ful1e5">
|
|
||||||
<img alt="Made By Kaiz" src="https://kaiz.vercel.app/api/badge" width="133" />
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<!-- Intro -->
|
|
||||||
|
|
||||||
# BreezeX Cursor
|
# BreezeX Cursor
|
||||||
|
|
||||||
Extended KDE Cursor theme, Highly inspired on **KDE Breeze** for `Windows` and `Linux` with _HiDPi Support_ 🎉.
|
Extended KDE Cursor theme, Highly inspired on **KDE Breeze** for `Windows` and `Linux` with _HiDPi Support_ 🎉.
|
||||||
|
|
||||||
|
[](https://github.com/ful1e5/BreezeX_Cursor/actions)
|
||||||
|
[](https://www.codefactor.io/repository/github/ful1e5/breezex_cursor)
|
||||||
|
[](https://twitter.com/ful1e5)
|
||||||
|
|
||||||
#### Cursor Sizes
|
#### Cursor Sizes
|
||||||
|
|
||||||
<kbd>22</kbd>
|
<kbd>22</kbd>
|
||||||
@@ -90,33 +25,34 @@ Extended KDE Cursor theme, Highly inspired on **KDE Breeze** for `Windows` and `
|
|||||||
|
|
||||||

|

|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
#### Quick install
|
### Quick install
|
||||||
|
|
||||||
<!-- Quick install -->
|
- BreezeX Dark: [https://www.pling.com/p/1538515](https://www.pling.com/p/1538515)
|
||||||
|
- BreezeX Light: [https://www.pling.com/p/1640746](https://www.pling.com/p/1640746)
|
||||||
<p align="center">
|
- BreezeX Black: [https://www.pling.com/p/1640747](https://www.pling.com/p/1640747)
|
||||||
<a href="https://www.pling.com/p/1538515/#files-panel" >
|
|
||||||
<img title="BreezeX Pling Store" width="40%" src="https://imgur.com/VxSgrWw.png">
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
#### Preview:
|
#### Preview:
|
||||||
|
|
||||||
> Check Figma file [here](https://www.figma.com/file/Uo4LeHvFUPDgoqLjnFc1LB/BreezeX?node-id=0%3A1)
|
> Check Figma file [here](https://www.figma.com/file/Uo4LeHvFUPDgoqLjnFc1LB/BreezeX?node-id=0%3A1)
|
||||||
|
|
||||||
<!-- Preview -->
|
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img title="BreezeX Dark" src="https://imgur.com/W2YNFuw.png">
|
<img title="BreezeX Dark" src="https://imgur.com/zDGsq2h.png">
|
||||||
</br>
|
</br>
|
||||||
<sub>Dark BreezeX Cursors 🖤</sub>
|
<sub>Dark BreezeX Cursors</sub>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img title="BreezeX Light" src="https://imgur.com/25wSDfa.png">
|
<img title="BreezeX Light" src="https://imgur.com/tmKu1vC.png">
|
||||||
</br>
|
</br>
|
||||||
<sub>Light BreezeX Cursors 🤍</sub>
|
<sub>Light BreezeX Cursors</sub>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img title="BreezeX Black" src="https://imgur.com/kzLufkT.png">
|
||||||
|
</br>
|
||||||
|
<sub>Black BreezeX Cursors</sub>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
### Manual Install
|
### Manual Install
|
||||||
@@ -142,8 +78,6 @@ sudo mv BreezeX-* /usr/share/icons/
|
|||||||
4. Open _Control Panel > Personalization and Appearance > Change mouse pointers_, and select **BreezeX Cursors**.
|
4. Open _Control Panel > Personalization and Appearance > Change mouse pointers_, and select **BreezeX Cursors**.
|
||||||
5. Click '**Apply**'.
|
5. Click '**Apply**'.
|
||||||
|
|
||||||
<!-- Build Dependencies -->
|
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
## External Libraries
|
## External Libraries
|
||||||
@@ -264,41 +198,14 @@ make windows WIN_SIZE=96 # Supports only one pixel-size
|
|||||||
|
|
||||||
> For installation follow [these](#windows) steps.
|
> For installation follow [these](#windows) steps.
|
||||||
|
|
||||||
<!-- Bug Report -->
|
|
||||||
|
|
||||||
# Bugs
|
# Bugs
|
||||||
|
|
||||||
Bugs 🐛 should be reported [here](https://github.com/ful1e5/BreezeX_Cursor/issues) on the Github issues page.
|
Bugs should be reported [here](https://github.com/ful1e5/BreezeX_Cursor/issues) on the Github issues page.
|
||||||
|
|
||||||
<!-- Help -->
|
|
||||||
|
|
||||||
# Getting Help
|
# Getting Help
|
||||||
|
|
||||||
You can create a **issue**, I will help you. 🙂
|
You can create a **issue**, I will help you.
|
||||||
|
|
||||||
<!-- Contributions and Suggestion -->
|
|
||||||
|
|
||||||
# Contributing
|
# Contributing
|
||||||
|
|
||||||
Check [CONTRIBUTING.md](CONTRIBUTING.md), any suggestions for features and contributions to the continuing code masterelopment can be made via the issue tracker or code contributions via a `Fork` & `Pull requests`.
|
Check [CONTRIBUTING.md](CONTRIBUTING.md), any suggestions for features and contributions to the continuing code masterelopment can be made via the issue tracker or code contributions via a `Fork` & `Pull requests`.
|
||||||
|
|
||||||
<!-- Support -->
|
|
||||||
|
|
||||||
## Support
|
|
||||||
|
|
||||||
Give a **★** or Follow on [GitHub](https://github.com/ful1e5),That's work as **Steroid 💉** for me. 😉
|
|
||||||
|
|
||||||
> For extra support
|
|
||||||
|
|
||||||
<a href="https://www.buymeacoffee.com/Nt7Wg4V" target="_blank">
|
|
||||||
<img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" >
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<!-- Ninja -->
|
|
||||||
|
|
||||||
<h1 align="center">
|
|
||||||
( `ω´ )۶▬ι═══════ﺤ
|
|
||||||
</h1>
|
|
||||||
<p align="center">
|
|
||||||
<sub>I'm Using Katana</sub>
|
|
||||||
</p>
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "breezex-bitmapper",
|
"name": "breezex-bitmapper",
|
||||||
"version": "1.0.0",
|
"version": "1.0.3",
|
||||||
"description": "extended KDE cursor 💙",
|
"description": "extended KDE cursor",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": "git@github.com:ful1e5/BreezeX_Cursor.git",
|
"repository": "git@github.com:ful1e5/BreezeX_Cursor.git",
|
||||||
"author": "Kaiz Khatri",
|
"author": "Kaiz Khatri",
|
||||||
|
|||||||
@@ -5,22 +5,31 @@ interface Config {
|
|||||||
color: Colors;
|
color: Colors;
|
||||||
}
|
}
|
||||||
|
|
||||||
const breezeColor = "#4D4D4D";
|
const breeze = "#4D4D4D";
|
||||||
const whiteColor = "#FFFFFF";
|
const white = "#FFFFFF";
|
||||||
|
const black = "#000000";
|
||||||
|
|
||||||
const config: Config[] = [
|
const config: Config[] = [
|
||||||
{
|
{
|
||||||
themeName: "BreezeX-Dark",
|
themeName: "BreezeX-Dark",
|
||||||
color: {
|
color: {
|
||||||
base: breezeColor,
|
base: breeze,
|
||||||
outline: whiteColor,
|
outline: white,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
themeName: "BreezeX-Light",
|
themeName: "BreezeX-Light",
|
||||||
color: {
|
color: {
|
||||||
base: whiteColor,
|
base: white,
|
||||||
outline: breezeColor,
|
outline: breeze,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
themeName: "BreezeX-Black",
|
||||||
|
color: {
|
||||||
|
base: black,
|
||||||
|
outline: white,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ const svgDir = path.resolve(root, "svg");
|
|||||||
|
|
||||||
const main = async () => {
|
const main = async () => {
|
||||||
for (const { themeName, color } of config) {
|
for (const { themeName, color } of config) {
|
||||||
console.log("=>", themeName);
|
console.log("Generating bitmaps for", themeName);
|
||||||
|
|
||||||
const bitmapsDir = path.resolve(root, "bitmaps", themeName);
|
const bitmapsDir = path.resolve(root, "bitmaps", themeName);
|
||||||
const svg = new SVGHandler.SvgDirectoryParser(svgDir);
|
const svg = new SVGHandler.SvgDirectoryParser(svgDir);
|
||||||
@@ -17,14 +17,14 @@ const main = async () => {
|
|||||||
const browser = await png.getBrowser();
|
const browser = await png.getBrowser();
|
||||||
|
|
||||||
for (let { key, content } of svg.getStatic()) {
|
for (let { key, content } of svg.getStatic()) {
|
||||||
console.log(" -> Saving", key, "...");
|
console.log(" ==> Saving", key, "...");
|
||||||
|
|
||||||
content = SVGHandler.colorSvg(content, color);
|
content = SVGHandler.colorSvg(content, color);
|
||||||
await png.generateStatic(browser, content, key);
|
await png.generateStatic(browser, content, key);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let { key, content } of svg.getAnimated()) {
|
for (let { key, content } of svg.getAnimated()) {
|
||||||
console.log(" -> Saving", key, "...");
|
console.log(" ==> Saving", key, "...");
|
||||||
|
|
||||||
content = SVGHandler.colorSvg(content, color);
|
content = SVGHandler.colorSvg(content, color);
|
||||||
await png.generateAnimated(browser, content, key, { playbackRate: 0.3 });
|
await png.generateAnimated(browser, content, key, { playbackRate: 0.3 });
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ all: clean setup build
|
|||||||
.ONESHELL:
|
.ONESHELL:
|
||||||
SHELL:=/bin/bash
|
SHELL:=/bin/bash
|
||||||
|
|
||||||
THEMES = Dark Light
|
THEMES = Dark Light Black
|
||||||
X_SIZES ?=22 24 28 32 40 48 56 64 72 80 88 96
|
X_SIZES ?=22 24 28 32 40 48 56 64 72 80 88 96
|
||||||
WIN_CANVAS_SIZE ?= 32
|
WIN_CANVAS_SIZE ?= 32
|
||||||
WIN_SIZE ?= 24
|
WIN_SIZE ?= 24
|
||||||
|
|||||||
@@ -4,8 +4,8 @@
|
|||||||
import argparse
|
import argparse
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from bxbuild.configure import get_config # type: ignore
|
from src.configure import get_config
|
||||||
from bxbuild.generator import Info, build, wbuild, xbuild # type: ignore
|
from src.generator import Info, build, wbuild, xbuild
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
prog="breezex_builder",
|
prog="breezex_builder",
|
||||||
|
|||||||
@@ -47,11 +47,7 @@ def get_config(bitmaps_dir: Union[str, Path], **kwargs) -> Dict[str, Any]:
|
|||||||
w_size = to_tuple(kwargs.pop("win_size"))
|
w_size = to_tuple(kwargs.pop("win_size"))
|
||||||
w_canvas_size = to_tuple(kwargs.pop("win_canvas_size"))
|
w_canvas_size = to_tuple(kwargs.pop("win_canvas_size"))
|
||||||
raw_x_sizes = kwargs.pop("x_sizes")
|
raw_x_sizes = kwargs.pop("x_sizes")
|
||||||
|
x_sizes = [to_tuple(size) for size in raw_x_sizes]
|
||||||
x_sizes = []
|
|
||||||
for size in raw_x_sizes:
|
|
||||||
x_sizes.append(to_tuple(size))
|
|
||||||
|
|
||||||
png_provider = PNGProvider(bitmaps_dir)
|
png_provider = PNGProvider(bitmaps_dir)
|
||||||
config: Dict[str, Any] = {}
|
config: Dict[str, Any] = {}
|
||||||
|
|
||||||
@@ -20,9 +20,9 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = {
|
|||||||
##########
|
##########
|
||||||
"all-scroll.png": {"xhot": 100, "yhot": 100},
|
"all-scroll.png": {"xhot": 100, "yhot": 100},
|
||||||
"bd_double_arrow.png": {"xhot": 98, "yhot": 96},
|
"bd_double_arrow.png": {"xhot": 98, "yhot": 96},
|
||||||
"bottom_left_corner.png": {"xhot": 56, "yhot": 143},
|
"bottom_left_corner.png": {"xhot": 47, "yhot": 148},
|
||||||
"bottom_right_corner.png": {"xhot": 142, "yhot": 147},
|
"bottom_right_corner.png": {"xhot": 147, "yhot": 148},
|
||||||
"bottom_side.png": {"xhot": 100, "yhot": 148},
|
"bottom_side.png": {"xhot": 100, "yhot": 164},
|
||||||
"center_ptr.png": {"xhot": 99, "yhot": 35},
|
"center_ptr.png": {"xhot": 99, "yhot": 35},
|
||||||
"col-resize.png": {"xhot": 100, "yhot": 100},
|
"col-resize.png": {"xhot": 100, "yhot": 100},
|
||||||
"color-picker.png": {"xhot": 42, "yhot": 157},
|
"color-picker.png": {"xhot": 42, "yhot": 157},
|
||||||
@@ -36,7 +36,7 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = {
|
|||||||
"hand1.png": {"xhot": 107, "yhot": 35},
|
"hand1.png": {"xhot": 107, "yhot": 35},
|
||||||
"hand2.png": {"xhot": 90, "yhot": 35},
|
"hand2.png": {"xhot": 90, "yhot": 35},
|
||||||
"left_ptr.png": {"xhot": 57, "yhot": 30},
|
"left_ptr.png": {"xhot": 57, "yhot": 30},
|
||||||
"left_side.png": {"xhot": 52, "yhot": 100},
|
"left_side.png": {"xhot": 33, "yhot": 100},
|
||||||
"link.png": {"xhot": 57, "yhot": 30},
|
"link.png": {"xhot": 57, "yhot": 30},
|
||||||
"move.png": {"xhot": 101, "yhot": 51},
|
"move.png": {"xhot": 101, "yhot": 51},
|
||||||
"pencil.png": {"xhot": 38, "yhot": 156},
|
"pencil.png": {"xhot": 38, "yhot": 156},
|
||||||
@@ -44,7 +44,7 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = {
|
|||||||
"plus.png": {"xhot": 100, "yhot": 100},
|
"plus.png": {"xhot": 100, "yhot": 100},
|
||||||
"question_arrow.png": {"xhot": 57, "yhot": 30},
|
"question_arrow.png": {"xhot": 57, "yhot": 30},
|
||||||
"right_ptr.png": {"xhot": 136, "yhot": 32},
|
"right_ptr.png": {"xhot": 136, "yhot": 32},
|
||||||
"right_side.png": {"xhot": 147, "yhot": 100},
|
"right_side.png": {"xhot": 164, "yhot": 100},
|
||||||
"row-resize.png": {"xhot": 100, "yhot": 100},
|
"row-resize.png": {"xhot": 100, "yhot": 100},
|
||||||
"sb_down_arrow.png": {"xhot": 100, "yhot": 160},
|
"sb_down_arrow.png": {"xhot": 100, "yhot": 160},
|
||||||
"sb_h_double_arrow.png": {"xhot": 98, "yhot": 96},
|
"sb_h_double_arrow.png": {"xhot": 98, "yhot": 96},
|
||||||
@@ -52,9 +52,9 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = {
|
|||||||
"sb_right_arrow.png": {"xhot": 162, "yhot": 100},
|
"sb_right_arrow.png": {"xhot": 162, "yhot": 100},
|
||||||
"sb_up_arrow.png": {"xhot": 100, "yhot": 38},
|
"sb_up_arrow.png": {"xhot": 100, "yhot": 38},
|
||||||
"sb_v_double_arrow.png": {"xhot": 98, "yhot": 96},
|
"sb_v_double_arrow.png": {"xhot": 98, "yhot": 96},
|
||||||
"top_left_corner.png": {"xhot": 57, "yhot": 55},
|
"top_left_corner.png": {"xhot": 47, "yhot": 51},
|
||||||
"top_right_corner.png": {"xhot": 142, "yhot": 55},
|
"top_right_corner.png": {"xhot": 147, "yhot": 51},
|
||||||
"top_side.png": {"xhot": 100, "yhot": 52},
|
"top_side.png": {"xhot": 100, "yhot": 35},
|
||||||
"vertical-text.png": {"xhot": 100, "yhot": 100},
|
"vertical-text.png": {"xhot": 100, "yhot": 100},
|
||||||
"wayland-cursor.png": {"xhot": 100, "yhot": 100},
|
"wayland-cursor.png": {"xhot": 100, "yhot": 100},
|
||||||
"X_cursor.png": {"xhot": 100, "yhot": 100},
|
"X_cursor.png": {"xhot": 100, "yhot": 100},
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
extended KDE cursor. This cursor theme is built with [b][url=https://github.com/ful1e5/clickgen]clickgen[/url][/b] and render with the [b][url=https://github.com/puppeteer/puppeteer/]puppeteer[/url][/b].
|
||||||
|
|
||||||
|
Available Sizes: 22, 24, 28, 32, 40, 48, 56, 64, 72, 80, 88, 96
|
||||||
|
Latest build: check [url=https://github.com/ful1e5/BreezeX_Cursor/actions]Actions[/url][/b] tab on GitHub.
|
||||||
|
Release Notification: [url=https://twitter.com/ful1e5]@ful1e5[/url]
|
||||||
|
Check for customize the cursor size: [url=https://github.com/ful1e5/BreezeX_Cursor#manual-build]README.md#manual-build[/url]
|
||||||
|
|
||||||
|
[b]Looking for other BreezeX variants?[/b]
|
||||||
|
[url=https://www.pling.com/p/1538515]BreezeX Dark[/url]
|
||||||
|
[url=https://www.pling.com/p/1640746]BreezeX Light[/url]
|
||||||
|
|
||||||
|
[b] Support Creator[/b]
|
||||||
|
[url=https://liberapay.com/ful1e5][img]https://liberapay.com/assets/widgets/donate.svg[/img][/url]
|
||||||
|
|
||||||
|
[b]Linux Install[/b]
|
||||||
|
Get the latest stable Linux release from the [b]files[/b] section. Unpack the [b].tar.gz[/b] file and follow these [b]commands[/b].
|
||||||
|
[code]
|
||||||
|
mv BreezeX-Black ~/.icons # install as local
|
||||||
|
sudo mv BreezeX-Black /usr/share/icons # install as root
|
||||||
|
[/code]
|
||||||
|
|
||||||
|
[b]Linux Uninstall[/b]
|
||||||
|
[code]
|
||||||
|
rm -r ~/.icons/BreezeX-Black # remove from local
|
||||||
|
sudo rm -r /usr/share/icons/BreezeX-Black # remove from root
|
||||||
|
[/code]
|
||||||
|
|
||||||
|
[b]Window Install[/b]
|
||||||
|
[1] unzip [b]BreezeX-Black-Windows.zip[/b] file.
|
||||||
|
[2] Open [b]BreezeX-Black-Windows/[/b] in Explorer, and [b]right-click[/b] on [b]install.inf[/b].
|
||||||
|
[3] Click 'Install' from the context menu, and authorize the modifications to your system.
|
||||||
|
[4] Open [i]Control Panel > Personalisation and Appearance > Change mouse pointers[/i], and select [b]BreezeX-Black Cursors[/b].
|
||||||
|
[5] Click '[b]Apply[/b]'.
|
||||||
|
|
||||||
|
[b]License & Terms[/b]
|
||||||
|
'BreezeX_Cursor' is available under the terms of the 'GPL-3.0' license.
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
extended KDE cursor. This cursor theme is built with [b][url=https://github.com/ful1e5/clickgen]clickgen[/url][/b] and render with the [b][url=https://github.com/puppeteer/puppeteer/]puppeteer[/url][/b].
|
||||||
|
|
||||||
|
Available Sizes: 22, 24, 28, 32, 40, 48, 56, 64, 72, 80, 88, 96
|
||||||
|
Latest build: check [url=https://github.com/ful1e5/BreezeX_Cursor/actions]Actions[/url][/b] tab on GitHub.
|
||||||
|
Release Notification: [url=https://twitter.com/ful1e5]@ful1e5[/url]
|
||||||
|
Check for customize the cursor size: [url=https://github.com/ful1e5/BreezeX_Cursor#manual-build]README.md#manual-build[/url]
|
||||||
|
|
||||||
|
[b]Looking for other BreezeX variants?[/b]
|
||||||
|
[url=https://www.pling.com/p/1640746]BreezeX Light[/url]
|
||||||
|
[url=https://www.pling.com/p/1640747]BreezeX Black[/url]
|
||||||
|
|
||||||
|
[b] Support Creator[/b]
|
||||||
|
[url=https://liberapay.com/ful1e5][img]https://liberapay.com/assets/widgets/donate.svg[/img][/url]
|
||||||
|
|
||||||
|
[b]Linux Install[/b]
|
||||||
|
Get the latest stable Linux release from the [b]files[/b] section. Unpack the [b].tar.gz[/b] file and follow these [b]commands[/b].
|
||||||
|
[code]
|
||||||
|
mv BreezeX-Dark ~/.icons # install as local
|
||||||
|
sudo mv BreezeX-Dark /usr/share/icons # install as root
|
||||||
|
[/code]
|
||||||
|
|
||||||
|
[b]Linux Uninstall[/b]
|
||||||
|
[code]
|
||||||
|
rm -r ~/.icons/BreezeX-Dark # remove from local
|
||||||
|
sudo rm -r /usr/share/icons/BreezeX-Dark # remove from root
|
||||||
|
[/code]
|
||||||
|
|
||||||
|
[b]Window Install[/b]
|
||||||
|
[1] unzip [b]BreezeX-Dark-Windows.zip[/b] file.
|
||||||
|
[2] Open [b]BreezeX-Dark-Windows/[/b] in Explorer, and [b]right-click[/b] on [b]install.inf[/b].
|
||||||
|
[3] Click 'Install' from the context menu, and authorize the modifications to your system.
|
||||||
|
[4] Open [i]Control Panel > Personalisation and Appearance > Change mouse pointers[/i], and select [b]BreezeX-Dark Cursors[/b].
|
||||||
|
[5] Click '[b]Apply[/b]'.
|
||||||
|
|
||||||
|
[b]License & Terms[/b]
|
||||||
|
'BreezeX_Cursor' is available under the terms of the 'GPL-3.0' license.
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
extended KDE cursor. This cursor theme is built with [b][url=https://github.com/ful1e5/clickgen]clickgen[/url][/b] and render with the [b][url=https://github.com/puppeteer/puppeteer/]puppeteer[/url][/b].
|
||||||
|
|
||||||
|
Available Sizes: 22, 24, 28, 32, 40, 48, 56, 64, 72, 80, 88, 96
|
||||||
|
Latest build: check [url=https://github.com/ful1e5/BreezeX_Cursor/actions]Actions[/url][/b] tab on GitHub.
|
||||||
|
Release Notification: [url=https://twitter.com/ful1e5]@ful1e5[/url]
|
||||||
|
Check for customize the cursor size: [url=https://github.com/ful1e5/BreezeX_Cursor#manual-build]README.md#manual-build[/url]
|
||||||
|
|
||||||
|
[b]Looking for other BreezeX variants?[/b]
|
||||||
|
[url=https://www.pling.com/p/1538515]BreezeX Dark[/url]
|
||||||
|
[url=https://www.pling.com/p/1640747]BreezeX Black[/url]
|
||||||
|
|
||||||
|
[b] Support Creator[/b]
|
||||||
|
[url=https://liberapay.com/ful1e5][img]https://liberapay.com/assets/widgets/donate.svg[/img][/url]
|
||||||
|
|
||||||
|
[b]Linux Install[/b]
|
||||||
|
Get the latest stable Linux release from the [b]files[/b] section. Unpack the [b].tar.gz[/b] file and follow these [b]commands[/b].
|
||||||
|
[code]
|
||||||
|
mv BreezeX-Light ~/.icons # install as local
|
||||||
|
sudo mv BreezeX-Light /usr/share/icons # install as root
|
||||||
|
[/code]
|
||||||
|
|
||||||
|
[b]Linux Uninstall[/b]
|
||||||
|
[code]
|
||||||
|
rm -r ~/.icons/BreezeX-Light # remove from local
|
||||||
|
sudo rm -r /usr/share/icons/BreezeX-Light # remove from root
|
||||||
|
[/code]
|
||||||
|
|
||||||
|
[b]Window Install[/b]
|
||||||
|
[1] unzip [b]BreezeX-Light-Windows.zip[/b] file.
|
||||||
|
[2] Open [b]BreezeX-Light-Windows/[/b] in Explorer, and [b]right-click[/b] on [b]install.inf[/b].
|
||||||
|
[3] Click 'Install' from the context menu, and authorize the modifications to your system.
|
||||||
|
[4] Open [i]Control Panel > Personalisation and Appearance > Change mouse pointers[/i], and select [b]BreezeX-Light Cursors[/b].
|
||||||
|
[5] Click '[b]Apply[/b]'.
|
||||||
|
|
||||||
|
[b]License & Terms[/b]
|
||||||
|
'BreezeX_Cursor' is available under the terms of the 'GPL-3.0' license.
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"include": ["builder"],
|
||||||
|
"exclude": ["**/node_modules", "**/__pycache__"],
|
||||||
|
|
||||||
|
"reportMissingImports": true,
|
||||||
|
"reportMissingTypeStubs": false,
|
||||||
|
|
||||||
|
"pythonVersion": "3.9",
|
||||||
|
"pythonPlatform": "Linux",
|
||||||
|
|
||||||
|
"executionEnvironments": [{ "root": "builder" }]
|
||||||
|
}
|
||||||
@@ -10,21 +10,9 @@
|
|||||||
</g>
|
</g>
|
||||||
<g transform="translate(85.5,36)">
|
<g transform="translate(85.5,36)">
|
||||||
<g transform="scale(0.8)">
|
<g transform="scale(0.8)">
|
||||||
<g>
|
<circle cx="50" cy="50" fill="none" stroke="#00FF00" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138" style="--darkreader-inline-fill:none; --darkreader-inline-stroke:#e2616a;" data-darkreader-inline-fill="" data-darkreader-inline-stroke="">
|
||||||
<animateTransform attributeName="transform" type="rotate" repeatCount="1" values="0 50 50;360 50 50" keyTimes="0;1" dur="2s" keySplines="0.5 0.5 0.5 0.5" calcMode="spline"/>
|
<animateTransform attributeName="transform" type="rotate" repeatCount="1" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"/>
|
||||||
<path fill="#923db3" d="M51.8,9.9c-8.2-6.6-20.5-4.3-26,4.5c1.9-0.3,3.8-0.4,5.7-0.1c9.9-5.7,22.9-0.9,26.9,9.8 C58.5,18.7,56.1,13.4,51.8,9.9z"/>
|
</circle>
|
||||||
<path fill="#f5468e" d="M44.1,23c-4-6.9-12.3-10.3-20-8.1c-7.4,2-12.6,8.8-12.8,16.5c1.5-1.2,3.1-2.2,4.9-2.9 c5.7-9.8,19.4-12.2,28.1-5C44.3,23.3,44.2,23.1,44.1,23z"/>
|
|
||||||
<path fill="#ff803f" d="M31.4,29.5c-6.8-3.9-15.6-2.8-21.1,2.7c-5.6,5.4-6.8,14.1-3.1,20.9c0.7-1.8,1.6-3.5,2.8-5 c0-11.4,10.7-20.3,21.9-18.4C31.7,29.7,31.5,29.6,31.4,29.5z"/>
|
|
||||||
<path fill="#c6d63c" d="M12.1,57c0.8-7.1,5.6-13,12.1-15.4c-8.1-0.2-15.4,5.2-17.5,13c-2,7.5,1.2,15.5,7.8,19.6 c-0.3-1.9-0.4-3.8-0.1-5.7C12.4,65,11.6,61,12.1,57z"/>
|
|
||||||
<path fill="#923db3" d="M28.4,83.8c-9.8-5.7-12.2-19.4-5-28.1c-7.1,3.8-10.7,12.2-8.6,20c2,7.5,8.8,12.8,16.5,13 C30.1,87.2,29.1,85.6,28.4,83.8z"/>
|
|
||||||
<path fill="#f5468e" d="M48.2,90.1c-11.4,0-20.3-10.7-18.4-21.9c-4.2,6.8-3.2,15.6,2.3,21.4c5.4,5.7,14.2,7,21.1,3.3 C51.4,92.2,49.7,91.2,48.2,90.1z"/>
|
|
||||||
<path fill="#ff803f" d="M68.5,85.6c-9.9,5.7-22.9,0.9-26.9-9.8c-0.2,8.1,5.2,15.4,13,17.5c7.5,2,15.5-1.2,19.6-7.8 C72.3,85.8,70.4,85.9,68.5,85.6z"/>
|
|
||||||
<path fill="#c6d63c" d="M83.8,71.6c-5.7,9.8-19.4,12.2-28.1,5c3.8,7.1,12.2,10.7,20,8.6c7.5-2,12.8-8.8,13-16.5 C87.2,69.9,85.6,70.9,83.8,71.6z"/>
|
|
||||||
<path fill="#923db3" d="M92.9,46.8c-0.7,1.8-1.6,3.5-2.8,5c0,11.4-10.7,20.3-21.9,18.4c6.8,4.2,15.6,3.2,21.4-2.3 C95.3,62.5,96.6,53.7,92.9,46.8z"/>
|
|
||||||
<path fill="#f5468e" d="M85.5,25.8c0.3,1.9,0.4,3.8,0.1,5.7c5.7,9.9,0.9,22.9-9.8,26.9c8.1,0.2,15.4-5.2,17.5-13 C95.3,37.9,92.1,29.8,85.5,25.8z"/>
|
|
||||||
<path fill="#ff803f" d="M71.6,16.2C67.8,6.4,56,2.2,46.8,7.1c1.8,0.7,3.5,1.6,5,2.8c11.4,0,20.3,10.7,18.4,21.9 C73.1,27.1,73.6,21.3,71.6,16.2z"/>
|
|
||||||
<path fill="#c6d63c" d="M85.5,25.8c-1.4-8.2-8.6-14.3-16.9-14.5c1.2,1.5,2.2,3.1,2.9,4.9c9.8,5.7,12.2,19.4,5,28.1 C83.2,40.7,86.8,33.2,85.5,25.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<defs>
|
<defs>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -6,21 +6,9 @@
|
|||||||
<g transform="translate(100,100)">
|
<g transform="translate(100,100)">
|
||||||
<g transform="scale(1.5)">
|
<g transform="scale(1.5)">
|
||||||
<g transform="translate(-50,-50)">
|
<g transform="translate(-50,-50)">
|
||||||
<g>
|
<circle cx="50" cy="50" fill="none" stroke="#00FF00" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138" style="--darkreader-inline-fill:none; --darkreader-inline-stroke:#e2616a;" data-darkreader-inline-fill="" data-darkreader-inline-stroke="">
|
||||||
<animateTransform attributeName="transform" type="rotate" repeatCount="1" values="0 50 50;360 50 50" keyTimes="0;1" dur="2s" keySplines="0.5 0.5 0.5 0.5" calcMode="spline"/>
|
<animateTransform attributeName="transform" type="rotate" repeatCount="1" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"/>
|
||||||
<path fill="#923db3" d="M51.8,9.9c-8.2-6.6-20.5-4.3-26,4.5c1.9-0.3,3.8-0.4,5.7-0.1c9.9-5.7,22.9-0.9,26.9,9.8 C58.5,18.7,56.1,13.4,51.8,9.9z"/>
|
</circle>
|
||||||
<path fill="#f5468e" d="M44.1,23c-4-6.9-12.3-10.3-20-8.1c-7.4,2-12.6,8.8-12.8,16.5c1.5-1.2,3.1-2.2,4.9-2.9 c5.7-9.8,19.4-12.2,28.1-5C44.3,23.3,44.2,23.1,44.1,23z"/>
|
|
||||||
<path fill="#ff803f" d="M31.4,29.5c-6.8-3.9-15.6-2.8-21.1,2.7c-5.6,5.4-6.8,14.1-3.1,20.9c0.7-1.8,1.6-3.5,2.8-5 c0-11.4,10.7-20.3,21.9-18.4C31.7,29.7,31.5,29.6,31.4,29.5z"/>
|
|
||||||
<path fill="#c6d63c" d="M12.1,57c0.8-7.1,5.6-13,12.1-15.4c-8.1-0.2-15.4,5.2-17.5,13c-2,7.5,1.2,15.5,7.8,19.6 c-0.3-1.9-0.4-3.8-0.1-5.7C12.4,65,11.6,61,12.1,57z"/>
|
|
||||||
<path fill="#923db3" d="M28.4,83.8c-9.8-5.7-12.2-19.4-5-28.1c-7.1,3.8-10.7,12.2-8.6,20c2,7.5,8.8,12.8,16.5,13 C30.1,87.2,29.1,85.6,28.4,83.8z"/>
|
|
||||||
<path fill="#f5468e" d="M48.2,90.1c-11.4,0-20.3-10.7-18.4-21.9c-4.2,6.8-3.2,15.6,2.3,21.4c5.4,5.7,14.2,7,21.1,3.3 C51.4,92.2,49.7,91.2,48.2,90.1z"/>
|
|
||||||
<path fill="#ff803f" d="M68.5,85.6c-9.9,5.7-22.9,0.9-26.9-9.8c-0.2,8.1,5.2,15.4,13,17.5c7.5,2,15.5-1.2,19.6-7.8 C72.3,85.8,70.4,85.9,68.5,85.6z"/>
|
|
||||||
<path fill="#c6d63c" d="M83.8,71.6c-5.7,9.8-19.4,12.2-28.1,5c3.8,7.1,12.2,10.7,20,8.6c7.5-2,12.8-8.8,13-16.5 C87.2,69.9,85.6,70.9,83.8,71.6z"/>
|
|
||||||
<path fill="#923db3" d="M92.9,46.8c-0.7,1.8-1.6,3.5-2.8,5c0,11.4-10.7,20.3-21.9,18.4c6.8,4.2,15.6,3.2,21.4-2.3 C95.3,62.5,96.6,53.7,92.9,46.8z"/>
|
|
||||||
<path fill="#f5468e" d="M85.5,25.8c0.3,1.9,0.4,3.8,0.1,5.7c5.7,9.9,0.9,22.9-9.8,26.9c8.1,0.2,15.4-5.2,17.5-13 C95.3,37.9,92.1,29.8,85.5,25.8z"/>
|
|
||||||
<path fill="#ff803f" d="M71.6,16.2C67.8,6.4,56,2.2,46.8,7.1c1.8,0.7,3.5,1.6,5,2.8c11.4,0,20.3,10.7,18.4,21.9 C73.1,27.1,73.6,21.3,71.6,16.2z"/>
|
|
||||||
<path fill="#c6d63c" d="M85.5,25.8c-1.4-8.2-8.6-14.3-16.9-14.5c1.2,1.5,2.2,3.1,2.9,4.9c9.8,5.7,12.2,19.4,5,28.1 C83.2,40.7,86.8,33.2,85.5,25.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<g filter="url(#filter0_d)">
|
<g filter="url(#filter0_d)">
|
||||||
<path d="M87.7852 109.412L138.475 92.5044L129.147 73.6584L146.924 55.8701L141.291 50.2336L123.515 68.0225L104.682 58.6883L87.7852 109.412Z" fill="#0000FF"/>
|
<path d="M74.0612 118.973L116.866 104.695L108.989 88.7807L124 73.7596L119.244 69L104.232 84.0215L88.3293 76.1394L74.0612 118.973Z" fill="#0000FF"/>
|
||||||
<path d="M52.186 148.975V61.2991H60.1512V141.005H139.803V148.975H52.186Z" fill="#0000FF"/>
|
<path d="M44 152.381V78.344H50.7261V145.65H117.987V152.381H44Z" fill="#0000FF"/>
|
||||||
<path d="M84.4645 108.306C84.0456 109.564 84.3732 110.95 85.3108 111.888C86.2484 112.825 87.635 113.152 88.8926 112.732L139.583 95.8245C140.543 95.5043 141.317 94.7842 141.706 93.8499C142.095 92.9157 142.061 91.8587 141.612 90.9517L133.398 74.3563L149.399 58.3441C150.765 56.9775 150.765 54.7627 149.4 53.3961L143.767 47.7597C143.111 47.1027 142.22 46.7337 141.291 46.7336C140.363 46.7336 139.472 47.1027 138.816 47.7596L122.816 63.77L106.236 55.5523C105.329 55.1026 104.271 55.0679 103.336 55.4572C102.402 55.8464 101.681 56.6214 101.361 57.5821L84.4645 108.306ZM48.686 148.975C48.686 150.908 50.253 152.475 52.186 152.475H139.803C141.736 152.475 143.303 150.908 143.303 148.975V141.005C143.303 139.072 141.736 137.505 139.803 137.505H63.6512V61.2991C63.6512 59.3661 62.0842 57.7991 60.1512 57.7991H52.186C50.253 57.7991 48.686 59.3661 48.686 61.2991V148.975Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M70.7406 117.866C70.3216 119.124 70.6492 120.511 71.5868 121.448C72.5244 122.385 73.9111 122.712 75.1686 122.293L117.973 108.015C118.933 107.695 119.708 106.975 120.097 106.041C120.486 105.106 120.452 104.049 120.003 103.142L113.239 89.4786L126.476 76.2337C127.841 74.8671 127.841 72.6523 126.476 71.2856L121.72 66.526C121.063 65.8691 120.173 65.5 119.244 65.5C118.315 65.5 117.425 65.8691 116.768 66.526L103.534 79.769L89.8836 73.0034C88.9763 72.5538 87.9188 72.5191 86.984 72.9083C86.0492 73.2975 85.3287 74.0726 85.0087 75.0333L70.7406 117.866ZM40.5 152.381C40.5 154.314 42.067 155.881 44 155.881H117.987C119.92 155.881 121.487 154.314 121.487 152.381V145.65C121.487 143.718 119.92 142.15 117.987 142.15H54.2261V78.344C54.2261 76.411 52.6591 74.844 50.7261 74.844H44C42.067 74.844 40.5 76.411 40.5 78.344V152.381Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
</g>
|
</g>
|
||||||
<path d="M87.7852 109.412L138.475 92.5044L129.147 73.6584L146.924 55.8701L141.291 50.2336L123.515 68.0225L104.682 58.6883L87.7852 109.412Z" fill="#00FF00"/>
|
<path d="M74.0612 118.973L116.866 104.695L108.989 88.7807L124 73.7596L119.244 69L104.232 84.0215L88.3293 76.1394L74.0612 118.973Z" fill="#00FF00"/>
|
||||||
<path d="M52.186 148.975V61.2991H60.1512V141.005H139.803V148.975H52.186Z" fill="#00FF00"/>
|
<path d="M44 152.381V78.344H50.7261V145.65H117.987V152.381H44Z" fill="#00FF00"/>
|
||||||
<defs>
|
<defs>
|
||||||
<filter id="filter0_d" x="41.186" y="43.2336" width="116.738" height="122.742" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
<filter id="filter0_d" x="33" y="62" width="102" height="107.381" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
<feOffset dy="6"/>
|
<feOffset dy="6"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<g filter="url(#filter0_d)">
|
<g filter="url(#filter0_d)">
|
||||||
<path d="M111.325 109.412L60.6345 92.5046L69.9629 73.6586L52.186 55.8703L57.8184 50.2339L75.5952 68.0227L94.428 58.6885L111.325 109.412Z" fill="#0000FF"/>
|
<path d="M121.939 118.973L79.1342 104.695L87.0114 88.7807L72 73.7596L76.7562 69L91.7676 84.0215L107.671 76.1394L121.939 118.973Z" fill="#0000FF"/>
|
||||||
<path d="M146.924 148.976V61.2993H138.959V141.005H59.3067V148.976H146.924Z" fill="#0000FF"/>
|
<path d="M152 152.381V78.344H145.274V145.65H78.013V152.381H152Z" fill="#0000FF"/>
|
||||||
<path d="M110.217 112.733C111.475 113.152 112.861 112.825 113.799 111.888C114.737 110.951 115.064 109.564 114.645 108.306L97.7486 57.5824C97.4286 56.6217 96.7082 55.8467 95.7734 55.4574C94.8386 55.0682 93.781 55.1029 92.8737 55.5526L76.2937 63.7702L60.2941 47.7598C59.6377 47.103 58.7471 46.7339 57.8184 46.7339C56.8897 46.7339 55.9991 47.103 55.3427 47.7599L49.7103 53.3963C48.3446 54.763 48.3446 56.9778 49.7104 58.3444L65.7121 74.3565L57.4977 90.952C57.0488 91.859 57.0144 92.9159 57.4035 93.8502C57.7925 94.7844 58.567 95.5046 59.527 95.8248L110.217 112.733ZM146.924 152.476C148.857 152.476 150.424 150.909 150.424 148.976V61.2993C150.424 59.3663 148.857 57.7993 146.924 57.7993H138.959C137.026 57.7993 135.459 59.3663 135.459 61.2993V137.505H59.3067C57.3737 137.505 55.8067 139.072 55.8067 141.005V148.976C55.8067 150.909 57.3737 152.476 59.3067 152.476H146.924Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M120.831 122.293C122.089 122.712 123.476 122.385 124.413 121.448C125.351 120.511 125.678 119.124 125.259 117.866L110.991 75.0333C110.671 74.0726 109.951 73.2975 109.016 72.9083C108.081 72.5191 107.024 72.5538 106.116 73.0034L92.466 79.769L79.2319 66.526C78.5754 65.8691 77.6848 65.5 76.7561 65.5C75.8275 65.5 74.9369 65.8691 74.2804 66.526L69.5242 71.2856C68.1586 72.6523 68.1586 74.8671 69.5243 76.2337L82.7607 89.4786L75.9974 103.142C75.5485 104.049 75.5141 105.106 75.9032 106.041C76.2922 106.975 77.0667 107.695 78.0267 108.015L120.831 122.293ZM152 155.881C153.933 155.881 155.5 154.314 155.5 152.381V78.344C155.5 76.411 153.933 74.844 152 74.844H145.274C143.341 74.844 141.774 76.411 141.774 78.344V142.15H78.013C76.08 142.15 74.513 143.717 74.513 145.65V152.381C74.513 154.314 76.08 155.881 78.013 155.881H152Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
</g>
|
</g>
|
||||||
<path d="M111.325 109.412L60.6345 92.5046L69.9629 73.6586L52.186 55.8703L57.8184 50.2339L75.5952 68.0227L94.428 58.6885L111.325 109.412Z" fill="#00FF00"/>
|
<path d="M121.939 118.973L79.1342 104.695L87.0114 88.7807L72 73.7596L76.7562 69L91.7676 84.0215L107.671 76.1394L121.939 118.973Z" fill="#00FF00"/>
|
||||||
<path d="M146.924 148.976V61.2993H138.959V141.005H59.3067V148.976H146.924Z" fill="#00FF00"/>
|
<path d="M152 152.381V78.344H145.274V145.65H78.013V152.381H152Z" fill="#00FF00"/>
|
||||||
<defs>
|
<defs>
|
||||||
<filter id="filter0_d" x="41.186" y="43.2339" width="116.738" height="122.742" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
<filter id="filter0_d" x="61" y="62" width="102" height="107.381" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
<feOffset dy="6"/>
|
<feOffset dy="6"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<g filter="url(#filter0_d)">
|
<g filter="url(#filter0_d)">
|
||||||
<path d="M99.9154 128.485L76.0197 80.6617L95.9327 73.937V48.7793H103.898V73.937L123.811 80.6617L99.9154 128.485Z" fill="#0000FF"/>
|
<path d="M100.084 150.14L82.0543 114.056L97.0792 108.982V90H103.089V108.982L118.114 114.056L100.084 150.14Z" fill="#0000FF"/>
|
||||||
<path d="M32.2114 152.101V144.13H167.62V152.101H32.2114Z" fill="#0000FF"/>
|
<path d="M49 167.958V161.944H151.169V167.958H49Z" fill="#0000FF"/>
|
||||||
<path d="M96.7844 130.05C97.3771 131.236 98.5893 131.985 99.9154 131.985C101.241 131.985 102.454 131.236 103.046 130.05L126.942 82.2261C127.394 81.3208 127.433 80.264 127.047 79.3282C126.661 78.3925 125.89 77.6695 124.931 77.3457L107.398 71.4248V48.7793C107.398 46.8463 105.831 45.2793 103.898 45.2793H95.9327C93.9997 45.2793 92.4327 46.8463 92.4327 48.7793V71.4248L74.8999 77.3457C73.941 77.6695 73.1693 78.3925 72.7837 79.3282C72.3981 80.264 72.4364 81.3208 72.8888 82.2261L96.7844 130.05ZM28.7114 152.101C28.7114 154.034 30.2784 155.601 32.2114 155.601H167.62C169.553 155.601 171.12 154.034 171.12 152.101V144.13C171.12 142.197 169.553 140.63 167.62 140.63H32.2114C30.2784 140.63 28.7114 142.197 28.7114 144.13V152.101Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M96.9532 151.704C97.5459 152.891 98.7581 153.64 100.084 153.64C101.41 153.64 102.622 152.891 103.215 151.704L121.245 115.62C121.697 114.715 121.736 113.658 121.35 112.723C120.964 111.787 120.193 111.064 119.234 110.74L106.589 106.47V90C106.589 88.067 105.022 86.5 103.089 86.5H97.0792C95.1462 86.5 93.5792 88.067 93.5792 90V106.47L80.9345 110.74C79.9757 111.064 79.2039 111.787 78.8183 112.723C78.4327 113.658 78.4711 114.715 78.9234 115.62L96.9532 151.704ZM45.5 167.958C45.5 169.891 47.067 171.458 49 171.458H151.169C153.102 171.458 154.669 169.891 154.669 167.958V161.944C154.669 160.011 153.102 158.444 151.169 158.444H49C47.067 158.444 45.5 160.011 45.5 161.944V167.958Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
</g>
|
</g>
|
||||||
<path d="M99.9154 128.485L76.0197 80.6617L95.9327 73.937V48.7793H103.898V73.937L123.811 80.6617L99.9154 128.485Z" fill="#00FF00"/>
|
<path d="M100.084 150.14L82.0543 114.056L97.0792 108.982V90H103.089V108.982L118.114 114.056L100.084 150.14Z" fill="#00FF00"/>
|
||||||
<path d="M32.2114 152.101V144.13H167.62V152.101H32.2114Z" fill="#00FF00"/>
|
<path d="M49 167.958V161.944H151.169V167.958H49Z" fill="#00FF00"/>
|
||||||
<defs>
|
<defs>
|
||||||
<filter id="filter0_d" x="21.2114" y="41.7793" width="157.408" height="127.321" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
<filter id="filter0_d" x="38" y="83" width="124.169" height="101.958" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
<feOffset dy="6"/>
|
<feOffset dy="6"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<path d="M96.5263 28.5C94.5933 28.5 93.0263 30.067 93.0263 32V92.2505H81.9078L76.0027 74.6379C75.68 73.6754 74.9552 72.9004 74.0165 72.514C73.0778 72.1275 72.0175 72.1677 71.1107 72.6241L23.4265 96.6241C22.2453 97.2187 21.5 98.4281 21.5 99.7505C21.5 101.073 22.2453 102.282 23.4265 102.877L71.1107 126.877C72.0175 127.333 73.0778 127.373 74.0165 126.987C74.9552 126.601 75.68 125.826 76.0027 124.863L81.9078 107.25H93.0263V168C93.0263 169.933 94.5933 171.5 96.5263 171.5H104.474C106.407 171.5 107.974 169.933 107.974 168V107.25H119.092L124.997 124.863C125.32 125.826 126.045 126.601 126.984 126.987C127.922 127.373 128.983 127.333 129.889 126.877L177.574 102.877C178.755 102.282 179.5 101.073 179.5 99.7505C179.5 98.4281 178.755 97.2187 177.574 96.6241L129.889 72.6241C128.983 72.1677 127.922 72.1275 126.984 72.514C126.045 72.9004 125.32 73.6754 124.997 74.6379L119.092 92.2505H107.974V32C107.974 30.067 106.407 28.5 104.474 28.5H96.5263Z" fill="#0000FF" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M96.8421 42.5C94.9091 42.5 93.3421 44.067 93.3421 46V93.1626H85.7417L81.2132 79.656C80.8905 78.6935 80.1658 77.9185 79.227 77.5321C78.2883 77.1457 77.228 77.1859 76.3212 77.6423L38.4265 96.7151C37.2453 97.3096 36.5 98.5191 36.5 99.8414C36.5 101.164 37.2453 102.373 38.4265 102.968L76.3212 122.041C77.228 122.497 78.2883 122.537 79.227 122.151C80.1658 121.764 80.8905 120.989 81.2132 120.027L85.7417 106.52H93.3421V154.079C93.3421 156.012 94.9091 157.579 96.8421 157.579H103.158C105.091 157.579 106.658 156.012 106.658 154.079V106.52H114.258L118.787 120.027C119.11 120.989 119.834 121.764 120.773 122.151C121.712 122.537 122.772 122.497 123.679 122.041L161.574 102.968C162.755 102.373 163.5 101.164 163.5 99.8414C163.5 98.5191 162.755 97.3096 161.574 96.7151L123.679 77.6423C122.772 77.1859 121.712 77.1457 120.773 77.5321C119.834 77.9185 119.11 78.6935 118.787 79.656L114.258 93.1626H106.658V46C106.658 44.067 105.091 42.5 103.158 42.5H96.8421Z" fill="#0000FF" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
<path d="M96.5263 32V95.7505H79.3898L72.6842 75.7505L25 99.7505L72.6842 123.75L79.3898 103.75H96.5263V168H104.474V103.75H121.61L128.316 123.75L176 99.7505L128.316 75.7505L121.61 95.7505H104.474V32H96.5263Z" fill="#00FF00"/>
|
<path d="M96.8421 46V96.6626H83.2237L77.8947 80.7686L40 99.8414L77.8947 118.914L83.2237 103.02H96.8421V154.079H103.158V103.02H116.776L122.105 118.914L160 99.8414L122.105 80.7686L116.776 96.6626H103.158V46H96.8421Z" fill="#00FF00"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
@@ -1,30 +1,30 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<path d="M99.89 10.7407C96.2393 10.7407 92.7014 12.7766 90.6802 15.4733C88.6591 18.1699 87.9422 21.3681 87.9422 24.6892V88.4538H24.2204C20.9015 88.4538 17.7055 89.1712 15.0106 91.1937C12.3157 93.2162 10.2812 96.7565 10.2812 100.41C10.2812 104.063 12.3157 107.603 15.0106 109.626C17.7055 111.648 20.9015 112.366 24.2204 112.366H87.9422V176.13C87.9422 179.451 88.6591 182.649 90.6802 185.346C92.7014 188.043 96.2393 190.079 99.89 190.079C103.541 190.079 107.079 188.043 109.1 185.346C111.121 182.649 111.838 179.451 111.838 176.13V112.366H175.56C178.879 112.366 182.075 111.648 184.769 109.626C187.464 107.603 189.499 104.063 189.499 100.41C189.499 96.7565 187.464 93.2162 184.769 91.1937C182.075 89.1712 178.879 88.4538 175.56 88.4538H111.838V24.6892C111.838 21.3681 111.121 18.1699 109.1 15.4733C107.079 12.7766 103.541 10.7407 99.89 10.7407ZM99.89 18.7113C101.881 18.7113 103.873 20.7039 103.873 24.6892V96.4244H175.56C183.525 96.4244 183.525 104.395 175.56 104.395H103.873V176.13C103.873 184.101 95.9074 184.101 95.9074 176.13V104.395H24.2204C16.2552 104.395 16.2552 96.4244 24.2204 96.4244H95.9074V24.6892C95.9074 20.7039 97.8987 18.7113 99.89 18.7113Z" fill="#0000FF"/>
|
<path d="M100 25C96.9445 25 93.9833 26.7039 92.2917 28.961C90.6 31.218 90 33.8948 90 36.6745V90.0437H36.6667C33.8889 90.0437 31.2139 90.6441 28.9583 92.3369C26.7028 94.0297 25 96.9928 25 100.05C25 103.108 26.7028 106.071 28.9583 107.764C31.2139 109.457 33.8889 110.057 36.6667 110.057H90V163.426C90 166.206 90.6 168.883 92.2917 171.14C93.9833 173.397 96.9445 175.101 100 175.101C103.056 175.101 106.017 173.397 107.708 171.14C109.4 168.883 110 166.206 110 163.426V110.057H163.333C166.111 110.057 168.786 109.457 171.042 107.764C173.297 106.071 175 103.108 175 100.05C175 96.9928 173.297 94.0297 171.042 92.3369C168.786 90.6441 166.111 90.0437 163.333 90.0437H110V36.6745C110 33.8948 109.4 31.218 107.708 28.961C106.017 26.7039 103.056 25 100 25ZM100 31.6711C101.667 31.6711 103.333 33.3389 103.333 36.6745V96.7148H163.333C170 96.7148 170 103.386 163.333 103.386H103.333V163.426C103.333 170.097 96.6667 170.097 96.6667 163.426V103.386H36.6667C30 103.386 30 96.7148 36.6667 96.7148H96.6667V36.6745C96.6667 33.3389 98.3333 31.6711 100 31.6711Z" fill="#0000FF"/>
|
||||||
<path d="M103.873 96.4241V104.395H175.56C183.525 104.395 183.525 96.4241 175.56 96.4241H103.873Z" fill="url(#paint0_radial)"/>
|
<path d="M103.334 96.7145V103.386H163.334C170 103.386 170 96.7145 163.334 96.7145H103.334Z" fill="url(#paint0_radial)"/>
|
||||||
<path d="M95.9077 96.4241V104.395H24.2205C16.2553 104.395 16.2553 96.4241 24.2205 96.4241H95.9077Z" fill="url(#paint1_radial)"/>
|
<path d="M96.6669 96.7145V103.386H36.6668C30.0001 103.386 30.0001 96.7145 36.6668 96.7145H96.6669Z" fill="url(#paint1_radial)"/>
|
||||||
<path d="M103.873 104.395H95.9077L95.9071 176.13C95.9071 184.1 103.872 184.1 103.872 176.13L103.873 104.395Z" fill="url(#paint2_radial)"/>
|
<path d="M103.334 103.386H96.6669L96.6664 163.426C96.6664 170.097 103.333 170.097 103.333 163.426L103.334 103.386Z" fill="url(#paint2_radial)"/>
|
||||||
<path d="M103.873 96.4241H95.9077L95.9071 24.6882C95.9071 16.7176 103.872 16.7176 103.872 24.6882L103.873 96.4241Z" fill="url(#paint3_radial)"/>
|
<path d="M103.334 96.7145H96.6669L96.6664 36.6735C96.6664 30.0024 103.333 30.0024 103.333 36.6735L103.334 96.7145Z" fill="url(#paint3_radial)"/>
|
||||||
<defs>
|
<defs>
|
||||||
<radialGradient id="paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.8903 100.409) rotate(90) scale(81.6987 81.6437)">
|
<radialGradient id="paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(100 100.05) rotate(90) scale(68.3795 68.3335)">
|
||||||
<stop stop-color="#00FF00" stop-opacity="0.107143"/>
|
<stop stop-color="#00FF00"/>
|
||||||
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
|
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
|
||||||
<stop offset="1" stop-color="#00FF00"/>
|
<stop offset="1" stop-color="#00FF00" stop-opacity="0.107143"/>
|
||||||
</radialGradient>
|
</radialGradient>
|
||||||
<radialGradient id="paint1_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.8903 100.409) rotate(90) scale(81.6987 81.6437)">
|
<radialGradient id="paint1_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(100 100.05) rotate(90) scale(68.3795 68.3335)">
|
||||||
<stop stop-color="#00FF00" stop-opacity="0.107143"/>
|
<stop stop-color="#00FF00"/>
|
||||||
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
|
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
|
||||||
<stop offset="1" stop-color="#00FF00"/>
|
<stop offset="1" stop-color="#00FF00" stop-opacity="0.107143"/>
|
||||||
</radialGradient>
|
</radialGradient>
|
||||||
<radialGradient id="paint2_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.8903 100.409) rotate(90) scale(81.6987 81.6437)">
|
<radialGradient id="paint2_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(100 100.05) rotate(90) scale(68.3795 68.3335)">
|
||||||
<stop stop-color="#00FF00" stop-opacity="0.107143"/>
|
<stop stop-color="#00FF00"/>
|
||||||
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
|
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
|
||||||
<stop offset="1" stop-color="#00FF00"/>
|
<stop offset="1" stop-color="#00FF00" stop-opacity="0.107143"/>
|
||||||
</radialGradient>
|
</radialGradient>
|
||||||
<radialGradient id="paint3_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.8903 100.409) rotate(90) scale(81.6987 81.6437)">
|
<radialGradient id="paint3_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(100 100.05) rotate(90) scale(68.3795 68.3335)">
|
||||||
<stop stop-color="#00FF00" stop-opacity="0.107143"/>
|
<stop stop-color="#00FF00"/>
|
||||||
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
|
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
|
||||||
<stop offset="1" stop-color="#00FF00"/>
|
<stop offset="1" stop-color="#00FF00" stop-opacity="0.107143"/>
|
||||||
</radialGradient>
|
</radialGradient>
|
||||||
</defs>
|
</defs>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<g filter="url(#filter0_d)">
|
<g filter="url(#filter0_d)">
|
||||||
<path d="M71.8702 100.44L119.694 124.336L126.419 104.423H151.576V96.4575H126.419L119.694 76.5445L71.8702 100.44Z" fill="#0000FF"/>
|
<path d="M48.8182 100.085L84.9022 118.114L89.9761 103.09H108.958V97.0796H89.9761L84.9022 82.0548L48.8182 100.085Z" fill="#0000FF"/>
|
||||||
<path d="M48.255 168.144H56.2255V32.7356H48.255V168.144Z" fill="#0000FF"/>
|
<path d="M31 151.169H37.0139V49H31V151.169Z" fill="#0000FF"/>
|
||||||
<path d="M70.3058 97.3092C69.1196 97.9019 68.3702 99.1141 68.3702 100.44C68.3702 101.766 69.1196 102.978 70.3058 103.571L118.129 127.467C119.035 127.919 120.092 127.957 121.027 127.572C121.963 127.186 122.686 126.414 123.01 125.456L128.931 107.923H151.576C153.509 107.923 155.076 106.356 155.076 104.423V96.4575C155.076 94.5245 153.509 92.9575 151.576 92.9575H128.931L123.01 75.4246C122.686 74.4658 121.963 73.694 121.027 73.3084C120.092 72.9229 119.035 72.9612 118.129 73.4135L70.3058 97.3092ZM44.755 168.144C44.755 170.077 46.322 171.644 48.255 171.644H56.2255C58.1585 171.644 59.7255 170.077 59.7255 168.144V32.7356C59.7255 30.8026 58.1585 29.2356 56.2255 29.2356H48.255C46.322 29.2356 44.755 30.8026 44.755 32.7356V168.144Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M47.2538 96.9537C46.0676 97.5464 45.3182 98.7585 45.3182 100.085C45.3182 101.411 46.0676 102.623 47.2538 103.215L83.3378 121.245C84.2431 121.698 85.2999 121.736 86.2357 121.35C87.1714 120.965 87.8944 120.193 88.2182 119.234L92.4884 106.59H108.958C110.891 106.59 112.458 105.023 112.458 103.09V97.0796C112.458 95.1466 110.891 93.5796 108.958 93.5796H92.4884L88.2182 80.9349C87.8944 79.9761 87.1714 79.2043 86.2357 78.8188C85.2999 78.4332 84.2431 78.4715 83.3378 78.9239L47.2538 96.9537ZM27.5 151.169C27.5 153.102 29.067 154.669 31 154.669H37.0139C38.9469 154.669 40.5139 153.102 40.5139 151.169V49C40.5139 47.067 38.9469 45.5 37.0139 45.5H31C29.067 45.5 27.5 47.067 27.5 49V151.169Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
</g>
|
</g>
|
||||||
<path d="M71.8702 100.44L119.694 124.336L126.419 104.423H151.576V96.4575H126.419L119.694 76.5445L71.8702 100.44Z" fill="#00FF00"/>
|
<path d="M48.8182 100.085L84.9022 118.114L89.9761 103.09H108.958V97.0796H89.9761L84.9022 82.0548L48.8182 100.085Z" fill="#00FF00"/>
|
||||||
<path d="M48.255 168.144H56.2255V32.7356H48.255V168.144Z" fill="#00FF00"/>
|
<path d="M31 151.169H37.0139V49H31V151.169Z" fill="#00FF00"/>
|
||||||
<defs>
|
<defs>
|
||||||
<filter id="filter0_d" x="37.255" y="25.7356" width="125.321" height="159.408" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
<filter id="filter0_d" x="20" y="42" width="99.9582" height="126.169" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
<feOffset dy="6"/>
|
<feOffset dy="6"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
@@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<g filter="url(#filter0_d)">
|
<g filter="url(#filter0_d)">
|
||||||
<path d="M127.961 100.44L80.1374 76.5441L73.4127 96.4572H48.255V104.422H73.4127L80.1374 124.335L127.961 100.44Z" fill="#0000FF"/>
|
<path d="M150.14 100.085L114.056 118.114L108.982 103.09H90V97.0796H108.982L114.056 82.0548L150.14 100.085Z" fill="#0000FF"/>
|
||||||
<path d="M151.576 32.7358H143.606V168.144H151.576V32.7358Z" fill="#0000FF"/>
|
<path d="M167.958 151.169H161.944V49H167.958V151.169Z" fill="#0000FF"/>
|
||||||
<path d="M129.525 103.571C130.712 102.978 131.461 101.766 131.461 100.44C131.461 99.1137 130.712 97.9016 129.525 97.3088L81.7018 73.4132C80.7965 72.9608 79.7397 72.9225 78.8039 73.3081C77.8682 73.6937 77.1452 74.4654 76.8214 75.4243L70.9005 92.9572H48.255C46.322 92.9572 44.755 94.5242 44.755 96.4572V104.422C44.755 106.355 46.322 107.922 48.255 107.922H70.9005L76.8214 125.455C77.1452 126.414 77.8682 127.186 78.8039 127.571C79.7397 127.957 80.7965 127.919 81.7018 127.466L129.525 103.571ZM155.076 32.7358C155.076 30.8028 153.509 29.2358 151.576 29.2358H143.606C141.673 29.2358 140.106 30.8028 140.106 32.7358V168.144C140.106 170.077 141.673 171.644 143.606 171.644H151.576C153.509 171.644 155.076 170.077 155.076 168.144V32.7358Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M151.704 103.215C152.891 102.623 153.64 101.411 153.64 100.085C153.64 98.7585 152.891 97.5464 151.704 96.9537L115.62 78.9239C114.715 78.4715 113.658 78.4332 112.723 78.8188C111.787 79.2043 111.064 79.9761 110.74 80.9349L106.47 93.5796H90C88.067 93.5796 86.5 95.1466 86.5 97.0796V103.09C86.5 105.023 88.067 106.59 90 106.59H106.47L110.74 119.234C111.064 120.193 111.787 120.965 112.723 121.35C113.658 121.736 114.715 121.698 115.62 121.245L151.704 103.215ZM167.958 154.669C169.891 154.669 171.458 153.102 171.458 151.169V49C171.458 47.067 169.891 45.5 167.958 45.5H161.944C160.011 45.5 158.444 47.067 158.444 49V151.169C158.444 153.102 160.011 154.669 161.944 154.669H167.958Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
</g>
|
</g>
|
||||||
<path d="M127.961 100.44L80.1374 76.5441L73.4127 96.4572H48.255V104.422H73.4127L80.1374 124.335L127.961 100.44Z" fill="#00FF00"/>
|
<path d="M150.14 100.085L114.056 118.114L108.982 103.09H90V97.0796H108.982L114.056 82.0548L150.14 100.085Z" fill="#00FF00"/>
|
||||||
<path d="M151.576 32.7358H143.606V168.144H151.576V32.7358Z" fill="#00FF00"/>
|
<path d="M167.958 151.169H161.944V49H167.958V151.169Z" fill="#00FF00"/>
|
||||||
<defs>
|
<defs>
|
||||||
<filter id="filter0_d" x="37.255" y="25.7358" width="125.321" height="159.408" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
<filter id="filter0_d" x="79" y="42" width="99.9582" height="126.169" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
<feOffset dy="6"/>
|
<feOffset dy="6"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<path d="M29 103.974C29 105.907 30.567 107.474 32.5 107.474H92.7505V118.592L75.1379 124.497C74.1754 124.82 73.4004 125.545 73.014 126.484C72.6275 127.422 72.6677 128.483 73.1241 129.389L97.1241 177.074C97.7187 178.255 98.9281 179 100.25 179C101.573 179 102.782 178.255 103.377 177.074L127.377 129.389C127.833 128.483 127.873 127.422 127.487 126.484C127.101 125.545 126.326 124.82 125.363 124.497L107.75 118.592V107.474H168.5C170.433 107.474 172 105.907 172 103.974V96.0263C172 94.0933 170.433 92.5263 168.5 92.5263H107.75V81.4078L125.363 75.5027C126.326 75.18 127.101 74.4552 127.487 73.5165C127.873 72.5778 127.833 71.5175 127.377 70.6107L103.377 22.9265C102.782 21.7453 101.573 21 100.25 21C98.9281 21 97.7187 21.7453 97.1241 22.9265L73.1241 70.6107C72.6677 71.5175 72.6275 72.5778 73.014 73.5165C73.4004 74.4552 74.1754 75.18 75.1379 75.5027L92.7505 81.4078V92.5263H32.5C30.567 92.5263 29 94.0933 29 96.0263V103.974Z" fill="#0000FF" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M45.5 103.19C45.5 105.123 47.067 106.69 49 106.69H93.7816V113.65L81.022 117.928C80.0594 118.251 79.2845 118.975 78.898 119.914C78.5116 120.853 78.5518 121.913 79.0082 122.82L97.1847 158.934C97.7792 160.115 98.9887 160.86 100.311 160.86C101.633 160.86 102.843 160.115 103.437 158.934L121.614 122.82C122.07 121.913 122.11 120.853 121.724 119.914C121.338 118.975 120.563 118.251 119.6 117.928L106.84 113.65V106.69H152C153.933 106.69 155.5 105.123 155.5 103.19V97.1707C155.5 95.2377 153.933 93.6707 152 93.6707H106.84V86.7103L119.6 82.4322C120.563 82.1095 121.338 81.3848 121.724 80.4461C122.11 79.5073 122.07 78.447 121.614 77.5403L103.437 41.4265C102.843 40.2453 101.633 39.5 100.311 39.5C98.9887 39.5 97.7792 40.2453 97.1847 41.4265L79.0082 77.5403C78.5518 78.447 78.5116 79.5073 78.898 80.4461C79.2845 81.3848 80.0594 82.1095 81.022 82.4322L93.7816 86.7103V93.6707H49C47.067 93.6707 45.5 95.2377 45.5 97.1707V103.19Z" fill="#0000FF" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
<path d="M32.5 103.974H96.2505V121.11L76.2505 127.816L100.25 175.5L124.25 127.816L104.25 121.11V103.974H168.5V96.0263H104.25V78.8898L124.25 72.1842L100.25 24.5L76.2505 72.1842L96.2505 78.8898V96.0263H32.5V103.974Z" fill="#00FF00"/>
|
<path d="M49 103.19H97.2816V116.168L82.1346 121.247L100.311 157.36L118.488 121.247L103.34 116.168V103.19H152V97.1707H103.34V84.1923L118.488 79.1138L100.311 43L82.1346 79.1138L97.2816 84.1923V97.1707H49V103.19Z" fill="#00FF00"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<g filter="url(#filter0_d)">
|
<g filter="url(#filter0_d)">
|
||||||
<path d="M87.7852 89.7969L138.475 106.705L129.147 125.551L146.924 143.339L141.291 148.975L123.515 131.187L104.682 140.521L87.7852 89.7969Z" fill="#0000FF"/>
|
<path d="M74.0612 80.4086L116.866 94.6862L108.989 110.6L124 125.622L119.244 130.381L104.232 115.36L88.3293 123.242L74.0612 80.4086Z" fill="#0000FF"/>
|
||||||
<path d="M52.186 50.2336V137.91H60.1512V58.2042H139.803V50.2336H52.186Z" fill="#0000FF"/>
|
<path d="M44 47V121.037H50.7261V53.7306H117.987V47H44Z" fill="#0000FF"/>
|
||||||
<path d="M88.8926 86.4767C87.635 86.0572 86.2484 86.3843 85.3108 87.3215C84.3732 88.2587 84.0456 89.6453 84.4645 90.903L101.361 141.627C101.681 142.588 102.402 143.363 103.336 143.752C104.271 144.141 105.329 144.106 106.236 143.657L122.816 135.439L138.816 151.449C139.472 152.106 140.363 152.475 141.291 152.475C142.22 152.475 143.111 152.106 143.767 151.449L149.4 145.813C150.765 144.446 150.765 142.232 149.399 140.865L133.398 124.853L141.612 108.257C142.061 107.35 142.095 106.293 141.706 105.359C141.317 104.425 140.543 103.705 139.583 103.385L88.8926 86.4767ZM52.186 46.7336C50.253 46.7336 48.686 48.3006 48.686 50.2336V137.91C48.686 139.843 50.253 141.41 52.186 141.41H60.1512C62.0842 141.41 63.6512 139.843 63.6512 137.91V61.7042H139.803C141.736 61.7042 143.303 60.1372 143.303 58.2042V50.2336C143.303 48.3006 141.736 46.7336 139.803 46.7336H52.186Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M75.1686 77.0885C73.9111 76.669 72.5244 76.996 71.5868 77.9333C70.6492 78.8705 70.3216 80.257 70.7406 81.5148L85.0087 124.348C85.3287 125.309 86.0492 126.084 86.984 126.473C87.9188 126.862 88.9763 126.827 89.8836 126.378L103.534 119.612L116.768 132.855C117.425 133.512 118.315 133.881 119.244 133.881C120.173 133.881 121.063 133.512 121.72 132.855L126.476 128.096C127.841 126.729 127.841 124.514 126.476 123.147L113.239 109.903L120.003 96.2388C120.452 95.3318 120.486 94.2749 120.097 93.3406C119.708 92.4064 118.933 91.6863 117.973 91.366L75.1686 77.0885ZM44 43.5C42.067 43.5 40.5 45.067 40.5 47V121.037C40.5 122.97 42.067 124.537 44 124.537H50.7261C52.6591 124.537 54.2261 122.97 54.2261 121.037V57.2306H117.987C119.92 57.2306 121.487 55.6636 121.487 53.7306V47C121.487 45.067 119.92 43.5 117.987 43.5H44Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
</g>
|
</g>
|
||||||
<path d="M87.7852 89.7969L138.475 106.705L129.147 125.551L146.924 143.339L141.291 148.975L123.515 131.187L104.682 140.521L87.7852 89.7969Z" fill="#00FF00"/>
|
<path d="M74.0612 80.4086L116.866 94.6862L108.989 110.6L124 125.622L119.244 130.381L104.232 115.36L88.3293 123.242L74.0612 80.4086Z" fill="#00FF00"/>
|
||||||
<path d="M52.186 50.2336V137.91H60.1512V58.2042H139.803V50.2336H52.186Z" fill="#00FF00"/>
|
<path d="M44 47V121.037H50.7261V53.7306H117.987V47H44Z" fill="#00FF00"/>
|
||||||
<defs>
|
<defs>
|
||||||
<filter id="filter0_d" x="41.186" y="43.2336" width="116.738" height="122.742" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
<filter id="filter0_d" x="33" y="40" width="102" height="107.381" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
<feOffset dy="6"/>
|
<feOffset dy="6"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.1 KiB |
@@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<g filter="url(#filter0_d)">
|
<g filter="url(#filter0_d)">
|
||||||
<path d="M111.325 89.7971L60.6345 106.705L69.9629 125.551L52.186 143.339L57.8184 148.976L75.5952 131.187L94.428 140.521L111.325 89.7971Z" fill="#0000FF"/>
|
<path d="M120.939 80.4086L78.1342 94.6862L86.0114 110.6L71 125.622L75.7562 130.381L90.7676 115.36L106.671 123.242L120.939 80.4086Z" fill="#0000FF"/>
|
||||||
<path d="M146.924 50.2339V137.91H138.959V58.2045H59.3067V50.2339H146.924Z" fill="#0000FF"/>
|
<path d="M151 47V121.037H144.274V53.7306H77.013V47H151Z" fill="#0000FF"/>
|
||||||
<path d="M114.645 90.9032C115.064 89.6455 114.737 88.259 113.799 87.3218C112.861 86.3845 111.475 86.0575 110.217 86.4769L59.527 103.385C58.567 103.705 57.7925 104.425 57.4035 105.359C57.0144 106.294 57.0488 107.351 57.4977 108.258L65.7121 124.853L49.7104 140.865C48.3446 142.232 48.3446 144.447 49.7103 145.813L55.3427 151.45C55.9991 152.107 56.8897 152.476 57.8184 152.476C58.7471 152.476 59.6377 152.107 60.2941 151.45L76.2937 135.439L92.8737 143.657C93.781 144.107 94.8386 144.141 95.7734 143.752C96.7082 143.363 97.4286 142.588 97.7486 141.627L114.645 90.9032ZM150.424 50.2339C150.424 48.3009 148.857 46.7339 146.924 46.7339H59.3067C57.3737 46.7339 55.8067 48.3009 55.8067 50.2339V58.2045C55.8067 60.1375 57.3737 61.7045 59.3067 61.7045H135.459V137.91C135.459 139.843 137.026 141.41 138.959 141.41H146.924C148.857 141.41 150.424 139.843 150.424 137.91V50.2339Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M124.259 81.5148C124.678 80.257 124.351 78.8705 123.413 77.9333C122.476 76.996 121.089 76.669 119.831 77.0885L77.0267 91.366C76.0667 91.6863 75.2922 92.4064 74.9032 93.3406C74.5141 94.2749 74.5485 95.3318 74.9974 96.2388L81.7607 109.903L68.5243 123.147C67.1586 124.514 67.1586 126.729 68.5242 128.096L73.2804 132.855C73.9369 133.512 74.8275 133.881 75.7561 133.881C76.6848 133.881 77.5754 133.512 78.2319 132.855L91.466 119.612L105.116 126.378C106.024 126.827 107.081 126.862 108.016 126.473C108.951 126.084 109.671 125.309 109.991 124.348L124.259 81.5148ZM154.5 47C154.5 45.067 152.933 43.5 151 43.5H77.013C75.08 43.5 73.513 45.067 73.513 47V53.7306C73.513 55.6636 75.08 57.2306 77.013 57.2306H140.774V121.037C140.774 122.97 142.341 124.537 144.274 124.537H151C152.933 124.537 154.5 122.97 154.5 121.037V47Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
</g>
|
</g>
|
||||||
<path d="M111.325 89.7971L60.6345 106.705L69.9629 125.551L52.186 143.339L57.8184 148.976L75.5952 131.187L94.428 140.521L111.325 89.7971Z" fill="#00FF00"/>
|
<path d="M120.939 80.4086L78.1342 94.6862L86.0114 110.6L71 125.622L75.7562 130.381L90.7676 115.36L106.671 123.242L120.939 80.4086Z" fill="#00FF00"/>
|
||||||
<path d="M146.924 50.2339V137.91H138.959V58.2045H59.3067V50.2339H146.924Z" fill="#00FF00"/>
|
<path d="M151 47V121.037H144.274V53.7306H77.013V47H151Z" fill="#00FF00"/>
|
||||||
<defs>
|
<defs>
|
||||||
<filter id="filter0_d" x="41.186" y="43.2339" width="116.738" height="122.742" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
<filter id="filter0_d" x="60" y="40" width="102" height="107.381" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
<feOffset dy="6"/>
|
<feOffset dy="6"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.1 KiB |
@@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<g filter="url(#filter0_d)">
|
<g filter="url(#filter0_d)">
|
||||||
<path d="M99.9154 72.3945L76.0197 120.218L95.9327 126.943V152.101H103.898V126.943L123.811 120.218L99.9154 72.3945Z" fill="#0000FF"/>
|
<path d="M100.084 48.8182L82.0543 84.9022L97.0792 89.9761V108.958H103.089V89.9761L118.114 84.9022L100.084 48.8182Z" fill="#0000FF"/>
|
||||||
<path d="M32.2114 48.7793V56.7498H167.62V48.7793H32.2114Z" fill="#0000FF"/>
|
<path d="M49 31V37.0139H151.169V31H49Z" fill="#0000FF"/>
|
||||||
<path d="M103.046 70.8301C102.454 69.6439 101.241 68.8945 99.9154 68.8945C98.5893 68.8945 97.3771 69.6439 96.7844 70.8301L72.8888 118.654C72.4364 119.559 72.3981 120.616 72.7837 121.552C73.1693 122.487 73.941 123.21 74.8999 123.534L92.4327 129.455V152.101C92.4327 154.034 93.9997 155.601 95.9327 155.601H103.898C105.831 155.601 107.398 154.034 107.398 152.101V129.455L124.931 123.534C125.89 123.21 126.661 122.487 127.047 121.552C127.433 120.616 127.394 119.559 126.942 118.654L103.046 70.8301ZM32.2114 45.2793C30.2784 45.2793 28.7114 46.8463 28.7114 48.7793V56.7498C28.7114 58.6828 30.2784 60.2498 32.2114 60.2498H167.62C169.553 60.2498 171.12 58.6828 171.12 56.7498V48.7793C171.12 46.8463 169.553 45.2793 167.62 45.2793H32.2114Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M103.215 47.2538C102.622 46.0676 101.41 45.3182 100.084 45.3182C98.7581 45.3182 97.5459 46.0676 96.9532 47.2538L78.9234 83.3378C78.4711 84.2431 78.4327 85.2999 78.8183 86.2357C79.2039 87.1714 79.9757 87.8944 80.9345 88.2182L93.5792 92.4884V108.958C93.5792 110.891 95.1462 112.458 97.0792 112.458H103.089C105.022 112.458 106.589 110.891 106.589 108.958V92.4884L119.234 88.2182C120.193 87.8944 120.964 87.1714 121.35 86.2357C121.736 85.2999 121.697 84.2431 121.245 83.3378L103.215 47.2538ZM49 27.5C47.067 27.5 45.5 29.067 45.5 31V37.0139C45.5 38.9469 47.067 40.5139 49 40.5139H151.169C153.102 40.5139 154.669 38.9469 154.669 37.0139V31C154.669 29.067 153.102 27.5 151.169 27.5H49Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
</g>
|
</g>
|
||||||
<path d="M99.9154 72.3945L76.0197 120.218L95.9327 126.943V152.101H103.898V126.943L123.811 120.218L99.9154 72.3945Z" fill="#00FF00"/>
|
<path d="M100.084 48.8182L82.0543 84.9022L97.0792 89.9761V108.958H103.089V89.9761L118.114 84.9022L100.084 48.8182Z" fill="#00FF00"/>
|
||||||
<path d="M32.2114 48.7793V56.7498H167.62V48.7793H32.2114Z" fill="#00FF00"/>
|
<path d="M49 31V37.0139H151.169V31H49Z" fill="#00FF00"/>
|
||||||
<defs>
|
<defs>
|
||||||
<filter id="filter0_d" x="21.2114" y="41.7793" width="157.408" height="127.321" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
<filter id="filter0_d" x="38" y="24" width="124.169" height="101.958" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
<feOffset dy="6"/>
|
<feOffset dy="6"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<path d="M32.6431 122.353C31.2624 122.353 30.1431 121.233 30.1431 119.853V105.913C30.1431 104.596 30.6162 103.426 31.1332 102.519C31.6594 101.597 32.3262 100.783 32.9346 100.133C32.9806 100.084 33.0264 100.035 33.0722 99.9873C33.0349 99.9494 32.9975 99.9111 32.9601 99.8723C31.8197 98.6889 30.1431 96.5772 30.1431 93.9656V80.0265C30.1431 78.6458 31.2624 77.5265 32.6431 77.5265H40.6137C41.979 77.5265 43.0918 78.6219 43.1133 79.987C43.1133 79.987 43.1133 79.987 43.1133 79.987C43.1134 79.9872 43.1134 79.9873 43.1134 79.9875C43.1134 79.9875 43.1134 79.9875 43.1134 79.9875L43.1134 79.9879L43.1135 79.9941L43.114 80.0231C43.1145 80.0498 43.1154 80.0909 43.1167 80.1455C43.1193 80.2548 43.1237 80.418 43.1307 80.6273C43.1448 81.0463 43.1692 81.6485 43.2107 82.3726C43.294 83.827 43.4446 85.7443 43.7118 87.6434C43.9842 89.5792 44.3573 91.3397 44.8334 92.5576C45.006 92.9992 45.1606 93.2855 45.274 93.4569H155.512C155.626 93.2855 155.78 92.9992 155.953 92.5576C156.429 91.3397 156.802 89.5792 157.074 87.6434C157.342 85.7443 157.492 83.827 157.576 82.3726C157.617 81.6485 157.641 81.0463 157.655 80.6273C157.662 80.418 157.667 80.2548 157.67 80.1455C157.671 80.0909 157.672 80.0498 157.672 80.0231L157.673 79.9941L157.673 79.9879L157.673 79.9875C157.673 79.9873 157.673 79.9871 157.673 79.987C157.694 78.6219 158.807 77.5265 160.173 77.5265H168.143C169.524 77.5265 170.643 78.6458 170.643 80.0265V93.9656C170.643 94.4009 170.529 94.8287 170.313 95.2066C169.452 96.7126 168.321 98.3029 167.438 99.4809C167.406 99.5242 167.373 99.5671 167.341 99.6094C167.509 99.7742 167.68 99.949 167.852 100.133C168.46 100.783 169.127 101.597 169.653 102.519C170.17 103.426 170.643 104.596 170.643 105.913V119.853C170.643 121.233 169.524 122.353 168.143 122.353H160.173C158.807 122.353 157.694 121.257 157.673 119.892C157.673 119.892 157.673 119.892 157.673 119.892L157.673 119.891L157.673 119.885L157.672 119.856C157.672 119.841 157.671 119.821 157.671 119.796C157.671 119.778 157.67 119.757 157.67 119.734C157.667 119.624 157.662 119.461 157.655 119.252C157.641 118.833 157.617 118.231 157.575 117.507C157.492 116.052 157.341 114.135 157.074 112.236C156.802 110.3 156.429 108.539 155.953 107.321C155.78 106.88 155.626 106.594 155.512 106.422H45.274C45.1606 106.594 45.006 106.88 44.8334 107.321C44.3573 108.539 43.9842 110.3 43.7118 112.236C43.4446 114.135 43.294 116.052 43.2107 117.506C43.1692 118.231 43.1448 118.833 43.1307 119.252C43.1237 119.461 43.1193 119.624 43.1167 119.734C43.1154 119.788 43.1145 119.829 43.114 119.856L43.1135 119.885L43.1134 119.891L43.1134 119.892C43.1134 119.892 43.1134 119.892 43.1133 119.892M32.6431 122.353L40.6137 119.853C43.1134 119.892 43.1134 119.892 43.1133 119.892M32.6431 122.353H40.6137C41.979 122.353 43.0918 121.257 43.1133 119.892M32.6431 122.353L43.1133 119.892" stroke="#0000FF" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M43.0632 116.437C43.0632 117.817 44.1825 118.937 45.5632 118.937H51.9676C53.3329 118.937 54.4457 117.841 54.4672 116.476L54.4672 116.476L54.4673 116.476L54.4673 116.471L54.4677 116.449L54.4699 116.353C54.4719 116.267 54.4754 116.137 54.481 115.97C54.4922 115.637 54.5116 115.157 54.5447 114.58C54.6113 113.419 54.7312 111.893 54.9434 110.385C55.1607 108.841 55.4543 107.471 55.8156 106.547C55.8829 106.375 55.9442 106.24 55.9965 106.137H144.003C144.056 106.24 144.117 106.375 144.184 106.547C144.546 107.471 144.839 108.841 145.056 110.385C145.269 111.893 145.389 113.419 145.455 114.58C145.488 115.157 145.508 115.637 145.519 115.97C145.525 116.137 145.528 116.267 145.53 116.353L145.532 116.449L145.533 116.472L145.533 116.476V116.476L145.533 116.476C145.554 117.841 146.667 118.937 148.032 118.937H154.437C155.817 118.937 156.937 117.817 156.937 116.437V105.237C156.937 104.062 156.516 103.036 156.077 102.266C155.628 101.481 155.066 100.795 154.561 100.256C154.52 100.213 154.48 100.17 154.439 100.127C155.124 99.2032 155.957 98.0149 156.607 96.8778C156.823 96.4999 156.937 96.0721 156.937 95.6368V84.4368C156.937 83.0561 155.817 81.9368 154.437 81.9368H148.032C146.667 81.9368 145.554 83.0322 145.533 84.3973L145.533 84.3976V84.3977L145.533 84.4021L145.532 84.4244L145.53 84.5207C145.528 84.607 145.525 84.7366 145.519 84.9031C145.508 85.2364 145.488 85.7164 145.455 86.2937C145.389 87.4547 145.269 88.9807 145.057 90.4884C144.839 92.033 144.546 93.4022 144.184 94.3266C144.117 94.4986 144.056 94.6334 144.003 94.7368H55.9965C55.9442 94.6334 55.8829 94.4986 55.8156 94.3266C55.4543 93.4022 55.1607 92.033 54.9434 90.4884C54.7312 88.9807 54.6113 87.4547 54.5447 86.2937C54.5116 85.7164 54.4922 85.2364 54.481 84.9031C54.4754 84.7366 54.4719 84.607 54.4699 84.5207L54.4677 84.4244L54.4673 84.4021L54.4673 84.3977L54.4672 84.3976L54.4672 84.3973L54.4672 84.3972C54.4456 83.0321 53.3329 81.9368 51.9676 81.9368H45.5632C44.1825 81.9368 43.0632 83.0561 43.0632 84.4368V95.6368C43.0632 97.7565 44.3095 99.4665 45.2347 100.479C44.7866 100.98 44.3119 101.585 43.9234 102.266C43.4844 103.036 43.0632 104.062 43.0632 105.237V116.437Z" fill="#0000FF" stroke="#0000FF" stroke-width="5" stroke-linejoin="round"/>
|
||||||
<path d="M32.6431 119.853H40.6137C40.6137 119.853 40.8623 103.922 44.848 103.922H155.938C159.923 103.922 160.173 119.853 160.173 119.853H168.143V105.913C168.143 103.018 163.909 99.9395 163.909 99.9395C163.909 99.9395 166.574 96.7091 168.143 93.9656V80.0265H160.173C160.173 80.0265 159.924 95.9569 155.938 95.9569H44.848C40.8623 95.9569 40.6137 80.0265 40.6137 80.0265H32.6431V93.9656C32.6431 97.1254 36.8774 99.9395 36.8774 99.9395C36.8774 99.9395 32.6431 103.018 32.6431 105.913V119.853Z" fill="#00FF00"/>
|
<path d="M45.5632 116.437H51.9676C51.9676 116.437 52.1674 103.637 55.3699 103.637H144.63C147.832 103.637 148.032 116.437 148.032 116.437H154.437V105.237C154.437 102.91 151.034 100.437 151.034 100.437C151.034 100.437 153.176 97.8411 154.437 95.6368V84.4368H148.032C148.032 84.4368 147.833 97.2368 144.63 97.2368H55.3699C52.1674 97.2368 51.9676 84.4368 51.9676 84.4368H45.5632V95.6368C45.5632 98.1756 48.9655 100.437 48.9655 100.437C48.9655 100.437 45.5632 102.91 45.5632 105.237V116.437Z" fill="#00FF00"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
|
||||||
<path d="M77.9801 32.1895C77.9801 30.8087 79.0994 29.6895 80.4801 29.6895H94.4192C95.7362 29.6895 96.907 30.1626 97.8132 30.6796C98.7354 31.2058 99.5497 31.8726 100.2 32.481C100.249 32.5269 100.298 32.5728 100.345 32.6185C100.383 32.5812 100.422 32.5439 100.46 32.5065C101.644 31.3661 103.755 29.6895 106.367 29.6895H120.306C121.687 29.6895 122.806 30.8087 122.806 32.1895V40.16C122.806 41.5254 121.711 42.6382 120.346 42.6597C120.345 42.6597 120.345 42.6597 120.345 42.6597C120.345 42.6597 120.345 42.6597 120.345 42.6597L120.345 42.6597L120.339 42.6599L120.31 42.6604C120.283 42.6609 120.242 42.6618 120.187 42.6631C120.078 42.6657 119.915 42.6701 119.705 42.6771C119.286 42.6911 118.684 42.7156 117.96 42.7571C116.506 42.8404 114.588 42.991 112.689 43.2582C110.753 43.5306 108.993 43.9037 107.775 44.3798C107.333 44.5524 107.047 44.707 106.876 44.8204V155.059C107.047 155.172 107.333 155.327 107.775 155.499C108.993 155.975 110.753 156.348 112.689 156.621C114.588 156.888 116.506 157.039 117.96 157.122C118.684 157.163 119.286 157.188 119.705 157.202C119.915 157.209 120.078 157.213 120.187 157.216C120.242 157.217 120.283 157.218 120.31 157.219L120.339 157.219L120.345 157.219L120.345 157.219C120.345 157.219 120.346 157.219 120.346 157.219C121.711 157.241 122.806 158.354 122.806 159.719V167.69C122.806 169.07 121.687 170.19 120.306 170.19H106.367C105.932 170.19 105.504 170.076 105.126 169.86C103.62 168.999 102.03 167.867 100.852 166.984C100.808 166.952 100.766 166.92 100.723 166.888C100.558 167.055 100.384 167.226 100.2 167.398C99.5497 168.006 98.7354 168.673 97.8132 169.199C96.907 169.716 95.7362 170.19 94.4192 170.19H80.4801C79.0994 170.19 77.9801 169.07 77.9801 167.69V159.719C77.9801 158.354 79.0755 157.241 80.4405 157.219C80.4406 157.219 80.4406 157.219 80.4406 157.219C80.4407 157.219 80.4409 157.219 80.441 157.219L80.4415 157.219L80.4476 157.219L80.4766 157.219C80.5033 157.218 80.5445 157.217 80.5991 157.216C80.7084 157.213 80.8716 157.209 81.0809 157.202C81.4998 157.188 82.1021 157.163 82.8261 157.122C84.2806 157.038 86.1979 156.888 88.0969 156.621C90.0328 156.348 91.7933 155.975 93.0112 155.499C93.4528 155.326 93.7391 155.172 93.9105 155.058V44.8204C93.7391 44.707 93.4528 44.5524 93.0112 44.3798C91.7933 43.9037 90.0329 43.5306 88.097 43.2582C86.1979 42.991 84.2806 42.8404 82.8262 42.7571C82.1021 42.7156 81.4999 42.6911 81.081 42.6771C80.8716 42.6701 80.7084 42.6657 80.5991 42.6631C80.5445 42.6618 80.5034 42.6609 80.4767 42.6604L80.4477 42.6599L80.4415 42.6597L80.4411 42.6597C80.4409 42.6597 80.4408 42.6597 80.4407 42.6597M77.9801 32.1895L80.4801 40.16C80.4411 42.6597 80.4408 42.6597 80.4407 42.6597M77.9801 32.1895V40.16C77.9801 41.5254 79.0755 42.6382 80.4407 42.6597M77.9801 32.1895L80.4407 42.6597" stroke="#0000FF" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M84 43.5C82.6193 43.5 81.5 44.6193 81.5 46V52.4043C81.5 53.7697 82.5954 54.8825 83.9605 54.904L83.9608 54.904L83.961 54.904L83.9653 54.9041L83.9876 54.9045L84.0839 54.9066C84.1703 54.9087 84.2998 54.9122 84.4663 54.9178C84.7997 54.9289 85.2797 54.9484 85.857 54.9815C87.0179 55.048 88.5439 55.168 90.0517 55.3802C91.5962 55.5975 92.9654 55.891 93.8898 56.2524C94.0619 56.3196 94.1966 56.381 94.3 56.4333V144.44C94.1966 144.492 94.0619 144.554 93.8898 144.621C92.9654 144.982 91.5962 145.276 90.0516 145.493C88.5439 145.705 87.0178 145.825 85.8569 145.892C85.2796 145.925 84.7996 145.945 84.4663 145.956C84.2998 145.961 84.1702 145.965 84.0838 145.967L83.9876 145.969L83.9652 145.969L83.9609 145.969H83.9608L83.9605 145.969C82.5954 145.991 81.5 147.104 81.5 148.469V154.874C81.5 156.254 82.6193 157.374 84 157.374H95.2C96.3748 157.374 97.401 156.952 98.1705 156.513C98.956 156.065 99.6413 155.502 100.18 154.998C100.224 154.957 100.267 154.916 100.31 154.876C101.234 155.56 102.422 156.393 103.559 157.044C103.937 157.26 104.365 157.374 104.8 157.374H116C117.381 157.374 118.5 156.254 118.5 154.874V148.469C118.5 147.104 117.405 145.991 116.039 145.969L116.039 145.969H116.039L116.035 145.969L116.012 145.969L115.916 145.967C115.83 145.965 115.7 145.961 115.534 145.956C115.2 145.945 114.72 145.925 114.143 145.892C112.982 145.825 111.456 145.706 109.948 145.493C108.404 145.276 107.035 144.982 106.11 144.621C105.938 144.554 105.803 144.493 105.7 144.44V56.4333C105.803 56.381 105.938 56.3196 106.11 56.2524C107.035 55.891 108.404 55.5975 109.948 55.3802C111.456 55.168 112.982 55.048 114.143 54.9815C114.72 54.9484 115.2 54.9289 115.534 54.9178C115.7 54.9122 115.83 54.9087 115.916 54.9066L116.012 54.9045L116.035 54.9041L116.039 54.904L116.039 54.904L116.039 54.904L116.04 54.904C117.405 54.8824 118.5 53.7696 118.5 52.4043V46C118.5 44.6193 117.381 43.5 116 43.5H104.8C102.68 43.5 100.97 44.7462 99.9576 45.6715C99.4572 45.2234 98.8514 44.7487 98.1705 44.3602C97.401 43.9212 96.3748 43.5 95.2 43.5H84Z" fill="#0000FF" stroke="#0000FF" stroke-width="5" stroke-linejoin="round"/>
|
||||||
<path d="M80.4801 32.1895V40.16C80.4801 40.16 96.4105 40.4087 96.4105 44.3944V155.485C96.4105 159.47 80.4801 159.719 80.4801 159.719V167.69H94.4192C97.315 167.69 100.393 163.455 100.393 163.455C100.393 163.455 103.624 166.121 106.367 167.69H120.306V159.719C120.306 159.719 104.376 159.47 104.376 155.485V44.3944C104.376 40.4087 120.306 40.16 120.306 40.16V32.1895H106.367C103.207 32.1895 100.393 36.4238 100.393 36.4238C100.393 36.4238 97.315 32.1895 94.4192 32.1895H80.4801Z" fill="#00FF00"/>
|
<path d="M84 46V52.4043C84 52.4043 96.8 52.6041 96.8 55.8066V145.067C96.8 148.269 84 148.469 84 148.469V154.874H95.2C97.5267 154.874 100 151.471 100 151.471C100 151.471 102.596 153.613 104.8 154.874H116V148.469C116 148.469 103.2 148.269 103.2 145.067V55.8066C103.2 52.6041 116 52.4043 116 52.4043V46H104.8C102.261 46 100 49.4023 100 49.4023C100 49.4023 97.5267 46 95.2 46H84Z" fill="#00FF00"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 2.6 KiB |