Merge branch 'walkxcode:main' into main

This commit is contained in:
Epoch Philosophy 2024-10-31 23:44:30 -05:00 committed by GitHub
commit 9c39f6ffae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
905 changed files with 6993 additions and 42040 deletions

31
.github/workflows/generate_filetree.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: 🌴 Generate File Tree
on:
push:
workflow_dispatch:
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
architecture: "x64"
- name: Generate File Tree
run: python config/tree.py svg png
- name: Load to GitHub
run: |-
git diff
git config --global user.email "noreply@lammers.media"
git config --global user.name "Dashboard Icons Bot"
git add tree.json
git commit -m ":construction_worker: Generates file_tree.json" || exit 0
git push

View File

@ -25,7 +25,7 @@ jobs:
- name: Load to GitHub
run: |-
git diff
git config --global user.email "noreply@walkx.fyi"
git config --global user.email "noreply@lammers.media"
git config --global user.name "Dashboard Icons Bot"
git add -A
git commit -m ":construction_worker: Generates ICONS.md" || exit 0

File diff suppressed because one or more lines are too long

View File

@ -70,4 +70,4 @@ Please review the [Contribution Guidelines](CONTRIBUTING.md) before contributing
Read our [LICENSE](LICENSE) for information regarding the use of our software and assets. By accessing or using this repository, you agree to be bound by the terms and conditions of the license.
For questions or concerns regarding the license, contact me at walkxnl@gmail.com before using or distributing the contents of this repository.
For questions or concerns regarding the license, contact me at hey@lammers.media before using or distributing the contents of this repository.

54
config/tree.py Normal file
View File

@ -0,0 +1,54 @@
import os
import json
import sys
def folder_to_json(path):
tree = {}
base_folder_name = os.path.basename(os.path.normpath(path)) # Get the base folder name
# Ensure the path doesn't return an empty string or dot.
base_folder_name = base_folder_name if base_folder_name else os.path.basename(os.getcwd())
for root, dirs, files in os.walk(path):
# Get the relative path of the root directory
relative_path = os.path.relpath(root, path)
# Use base folder name for root, and append relative path for subfolders
key = base_folder_name if relative_path == '.' else os.path.join(base_folder_name, relative_path)
# Only add the folder if there are files
if files:
tree[key] = files
return tree
def generate_combined_tree(paths):
combined_tree = {}
for path in paths:
# Add folder tree for each path
combined_tree.update(folder_to_json(path))
return combined_tree
if __name__ == "__main__":
# Get the list of folder paths from command-line arguments
folder_paths = sys.argv[1:]
if not folder_paths:
print("Please provide at least one folder path.")
sys.exit(1)
# Check if 'tree.json' exists
if os.path.exists('tree.json'):
print("'tree.json' already exists. No file was created.")
sys.exit(0)
# Generate the combined folder tree for all specified paths
combined_folder_tree = generate_combined_tree(folder_paths)
# Write the combined JSON structure to a file named tree.json
with open('tree.json', 'w') as f:
json.dump(combined_folder_tree, f, indent=4)
print("Folder tree successfully written to 'tree.json'.")

BIN
png/13ft.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

BIN
png/2fauth-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

BIN
png/2fauth.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 B

BIN
png/adventurelog.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

BIN
png/alist.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
png/apache-cloudstack.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
png/app-store.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

BIN
png/artifacthub.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
png/avg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

BIN
png/davis.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
png/deployarr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
png/develancacheui.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
png/docusaurus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
png/esphome-alt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
png/f-droid.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
png/finamp-dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
png/finamp-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
png/finamp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

BIN
png/findroid-dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
png/findroid-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
png/findroid.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
png/fusionauth-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

BIN
png/fusionauth.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

BIN
png/gaseous.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

BIN
png/glances-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
png/go2rtc-alt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
png/go2rtc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
png/godaddy-alt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 18 KiB

BIN
png/google-gemini.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
png/gpt4free.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
png/helper-scripts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 27 KiB

BIN
png/immich-kiosk.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

BIN
png/locals-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

BIN
png/locals.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

BIN
png/maintainerr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
png/meshtastic.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
png/microsoft-azure.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
png/microsoft-copilot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
png/microsoft-exchange.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
png/microsoft-teams.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
png/myspeed.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
png/netapp-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 653 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 653 B

After

Width:  |  Height:  |  Size: 653 B

BIN
png/nextcloud-contacts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
png/nocobase-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

BIN
png/nocobase.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

BIN
png/owntone.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
png/p1ib.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

BIN
png/proton-pass.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
png/pve-helper-scripts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

BIN
png/remmina.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 15 KiB

BIN
png/schneider.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

BIN
png/send.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

BIN
png/slidev.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
png/smartfox.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

BIN
png/snapcast-alt-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
png/snapcast-alt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
png/snapcast.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
png/stalwart.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
png/stremio.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

BIN
png/stump-alt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

BIN
png/stump.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

BIN
png/tabula.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
png/tolgee.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

BIN
png/unbound.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
png/web-check-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 11 KiB

BIN
png/whodb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
png/wifiman.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

BIN
png/wireshark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

BIN
png/wotdle-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
png/wotdle.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
png/writefreely.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

72
svg/13ft.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 174 KiB

8
svg/2fauth-light.svg Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="41.629982mm" height="57.200001mm" viewBox="0 0 512 512" version="1.1" id="svg5" xmlns="http://www.w3.org/2000/svg">
<defs id="defs2"/>
<g id="layer2" style="display:inline" transform="matrix(8.538811, 0, 0, 8.538811, 78.476654, 12.001086)">
<path style="opacity: 1; fill-opacity: 1; stroke: none; stroke-width: 0.101; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; fill: rgb(255, 255, 255);" d="M 92.528534,89.115936 V 86.450457 H 114.63784 V 69.045801 H 91.218988 v -2.637554 h 26.838432 v 41.042913 h -3.41886 l 0.001,-18.331587 z" id="path1902" transform="translate(-76.477506,-50.304285)"/>
<path style="fill-opacity: 1; stroke: none; stroke-width: 0.265; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; fill: rgb(255, 255, 255);" d="M 23.494408,7.1957567 V -1.2818177e-4 H 4.3236091e-4 V 57.15069 H 10.442458 V 31.115394 H 21.095863 V 23.847768 H 10.442061 V 7.1970624 Z" id="path3242"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

8
svg/2fauth.svg Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="41.629982mm" height="57.200001mm" viewBox="0 0 512 512" version="1.1" id="svg5" xmlns="http://www.w3.org/2000/svg">
<defs id="defs2"/>
<g id="layer2" style="display:inline" transform="matrix(8.538811, 0, 0, 8.538811, 78.476654, 12.001086)">
<path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.101;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 92.528534,89.115936 V 86.450457 H 114.63784 V 69.045801 H 91.218988 v -2.637554 h 26.838432 v 41.042913 h -3.41886 l 0.001,-18.331587 z" id="path1902" transform="translate(-76.477506,-50.304285)"/>
<path style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 23.494408,7.1957567 V -1.2818177e-4 H 4.3236091e-4 V 57.15069 H 10.442458 V 31.115394 H 21.095863 V 23.847768 H 10.442061 V 7.1970624 Z" id="path3242"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="528px" height="189px" viewBox="0 0 496 178" fill="#ee2c49"><path d="M89.51 0h.11l86.05 172.28a54.7 54.7 0 0 0 3.13 5.72h-1.08c-2.6-2.49-5.92-3.94-8.98-5.75l-75.97-44.04c-1.18-.58-2.34-1.41-3.7-1.47-2.82 1.18-5.35 2.91-8 4.41l-70.33 40.73A155.4 155.4 0 0 0 .62 178H0v-.23c2.42-3.35 3.97-7.19 5.84-10.84L89.51 0M72.8 116.66c5.56 3.15 11.2 6.16 16.51 9.71 5.52-3.33 11.08-6.61 16.75-9.68-5.13-11.41-11.23-22.37-16.53-33.7-5.69 11.16-11.48 22.3-16.73 33.67zM218.04 11.88c19.52-9.21 42.52-10.63 63.08-4.11 29.07 8.93 52.2 34.18 58.76 63.86-12.86.27-25.72.08-38.58.1-6-14.46-18.96-25.84-34.2-29.56a50.2 50.2 0 0 0-38.8 6.07c-12.81 7.87-21.68 21.8-23.32 36.76-1.57 13.2 2.38 26.95 10.8 37.25a50.2 50.2 0 0 0 42.27 18.56c18.71-.97 36.18-13.52 43.14-30.9l38.7.12c-4.27 18.26-14.39 35.1-28.76 47.18-12.7 10.75-28.57 17.93-45.13 19.81-7.31 0-14.63-.11-21.93.12-16.64-1.95-32.61-9.03-45.4-19.82-16.51-13.85-27.65-34.03-30.22-55.45-1.91-14.77-.01-30.02 5.64-43.81a87.4 87.4 0 0 1 43.95-46.18zm119.74-8.1L496 3.77v36.44l-60.8.05-.2 134.31c-12.13-.19-24.26.08-36.39-.14l.04-134.15c-20.29-.07-40.58.02-60.87-.05V3.78z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" width="528" height="189" fill="#ee2c49" viewBox="0 0 496 178"><path d="M89.51 0h.11l86.05 172.28a54.7 54.7 0 0 0 3.13 5.72h-1.08c-2.6-2.49-5.92-3.94-8.98-5.75l-75.97-44.04c-1.18-.58-2.34-1.41-3.7-1.47-2.82 1.18-5.35 2.91-8 4.41l-70.33 40.73A155.4 155.4 0 0 0 .62 178H0v-.23c2.42-3.35 3.97-7.19 5.84-10.84L89.51 0M72.8 116.66c5.56 3.15 11.2 6.16 16.51 9.71 5.52-3.33 11.08-6.61 16.75-9.68-5.13-11.41-11.23-22.37-16.53-33.7-5.69 11.16-11.48 22.3-16.73 33.67zM218.04 11.88c19.52-9.21 42.52-10.63 63.08-4.11 29.07 8.93 52.2 34.18 58.76 63.86-12.86.27-25.72.08-38.58.1-6-14.46-18.96-25.84-34.2-29.56a50.2 50.2 0 0 0-38.8 6.07c-12.81 7.87-21.68 21.8-23.32 36.76-1.57 13.2 2.38 26.95 10.8 37.25a50.2 50.2 0 0 0 42.27 18.56c18.71-.97 36.18-13.52 43.14-30.9l38.7.12c-4.27 18.26-14.39 35.1-28.76 47.18-12.7 10.75-28.57 17.93-45.13 19.81-7.31 0-14.63-.11-21.93.12-16.64-1.95-32.61-9.03-45.4-19.82-16.51-13.85-27.65-34.03-30.22-55.45-1.91-14.77-.01-30.02 5.64-43.81a87.4 87.4 0 0 1 43.95-46.18zm119.74-8.1L496 3.77v36.44l-60.8.05-.2 134.31c-12.13-.19-24.26.08-36.39-.14l.04-134.15c-20.29-.07-40.58.02-60.87-.05V3.78z"/></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,20 +1 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="80px" height="80px" viewBox="0 0 80 80" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>logo@2x</title>
<desc>Created with Sketch.</desc>
<g id="logo" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect id="Rectangle" fill="#FFFFFF" x="0" y="0" width="80" height="80" rx="20"></rect>
<g id="Group-10" transform="translate(12.000000, 12.000000)">
<g id="Group-9">
<g id="Group-8">
<g id="Group-7">
<path d="M28.2221276,0 C19.4007575,0 8.75997994,2.07442553 8.65485005e-06,6.64038298 C8.65485005e-06,16.501617 -0.120909272,41.0689362 28.2221276,57.855 C56.5657909,41.0689362 56.4454995,16.501617 56.4454995,6.64038298 C47.6849017,2.07442553 37.0441241,0 28.2221276,0 L28.2221276,0 Z" id="Path" fill="#68BC71"></path>
<path d="M28.1932991,57.8379179 C-0.120827266,41.0522735 8.65485006e-06,16.4982725 8.65485006e-06,6.64038298 C8.75043947,2.07939831 19.3775821,0.00452145957 28.1932991,7.38217799e-06 L28.1932991,57.8379237 Z" id="Combined-Shape" fill="#67B279"></path>
</g>
<path d="M27.1926958,38.6027397 L44.2590846,15.6010416 C43.0084943,14.5986526 41.911548,15.3061181 41.3076915,15.8538333 L41.2856573,15.8555888 L27.0557264,30.6585285 L21.6942672,24.2064902 C19.1365123,21.2514028 15.6592758,23.5054616 14.8469876,24.1011604 L27.1926958,38.6027397" id="Fill-11" fill="#FFFFFF"></path>
</g>
</g>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80" height="80" version="1.1" viewBox="0 0 80 80"><title>logo@2x</title><desc>Created with Sketch.</desc><g id="logo" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><rect id="Rectangle" width="80" height="80" x="0" y="0" fill="#FFF" rx="20"/><g id="Group-10" transform="translate(12.000000, 12.000000)"><g id="Group-9"><g id="Group-8"><g id="Group-7"><path id="Path" fill="#68BC71" d="M28.2221276,0 C19.4007575,0 8.75997994,2.07442553 8.65485005e-06,6.64038298 C8.65485005e-06,16.501617 -0.120909272,41.0689362 28.2221276,57.855 C56.5657909,41.0689362 56.4454995,16.501617 56.4454995,6.64038298 C47.6849017,2.07442553 37.0441241,0 28.2221276,0 L28.2221276,0 Z"/><path id="Combined-Shape" fill="#67B279" d="M28.1932991,57.8379179 C-0.120827266,41.0522735 8.65485006e-06,16.4982725 8.65485006e-06,6.64038298 C8.75043947,2.07939831 19.3775821,0.00452145957 28.1932991,7.38217799e-06 L28.1932991,57.8379237 Z"/></g><path id="Fill-11" fill="#FFF" d="M27.1926958,38.6027397 L44.2590846,15.6010416 C43.0084943,14.5986526 41.911548,15.3061181 41.3076915,15.8538333 L41.2856573,15.8555888 L27.0557264,30.6585285 L21.6942672,24.2064902 C19.1365123,21.2514028 15.6592758,23.5054616 14.8469876,24.1011604 L27.1926958,38.6027397"/></g></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,5 +1 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<circle cx="512" cy="512" r="512" style="fill:#0052a4"/>
<path d="M240.3 511.7h-16.9c-3 0-6 1.1-8.9 3.1-2.9 2.1-4.5 4.6-5 7.5l-1.4 8.7c-.6 3.9.6 7.5 3.7 10.6 3 3.2 6.6 4.8 10.6 4.8h11.9l6-34.7zm32.2-18.8-11.9 71.4H208c-8.1 0-15-2.8-20.6-8.5-5.6-5.6-8.5-12.5-8.5-20.6 0-1.2.1-2.6.4-4.3l2.2-13.4c4.3-15.4 13.8-23 28.4-23h33.7c.7-4.4-.4-8.4-3.4-12.1-3-3.7-6.7-5.5-11.2-5.5h-32.2l2.8-16.9h44.1c7.8 0 14.6 2.8 20.3 8.5 5.7 5.6 8.6 12.4 8.6 20.2.1 1.9 0 3.3-.1 4.2m109.9-33.1-3 16.9h-45.8c-8 0-12.7 3.9-14.1 11.8l35.8 21.8c9.4 5.7 14.1 13.9 14.1 24.6 0 9.4-3.5 17-10.4 22.6-5.6 4.5-11.9 6.8-18.7 6.8H278l2.8-17.8h45.8c8.2 0 13.1-4.2 14.6-12.6l-36.3-20.2c-9.3-5.2-13.9-13.2-13.9-23.9 0-8.6 2.7-15.7 8.1-21.3 5.4-5.6 12.4-8.5 20.9-8.5h62.4v-.2zm104.2 0-13.7 80.8c-1.2 6.5-4.6 12.1-10.2 16.7s-11.8 7-18.4 7H416c-8.1 0-15-2.8-20.5-8.2-5.6-5.5-8.3-12.3-8.3-20.4 0-1.6.2-3.3.4-5l11.7-70.8h29L417 529.5c-.2.9-.3 1.7-.3 2.6 0 4.2 1.4 7.6 4.3 10.3 2.9 2.7 6.4 4 10.6 4 7.8 0 12.4-4 13.7-12.1l12-74.5h29.3zm99.8 0-3 16.9H542c-8 0-12.7 3.9-14.1 11.8l35.8 21.8c9.4 5.7 14.1 13.9 14.1 24.6 0 9.4-3.5 17-10.4 22.6-5.6 4.5-11.9 6.8-18.7 6.8h-62.3l2.8-17.8H535c8.2 0 13.1-4.2 14.5-12.6l-36.3-20.2c-9.3-5.2-13.9-13.2-13.9-23.9 0-8.6 2.7-15.7 8.2-21.3 5.4-5.6 12.4-8.5 20.9-8.5h58v-.2zm79.5 0-3 16.9h-29.3l-8.6 52.7c0 .9-.1 1.7-.1 2.6 0 3.9 1.4 7.3 4.4 10.1 2.9 2.8 6.3 4.2 10.2 4.2h11.7l-2.8 17.8h-23.7c-8.1 0-15-2.8-20.5-8.5-5.6-5.6-8.4-12.5-8.4-20.6 0-1.8.2-3.5.4-5.2l14.8-87.7h28.6l-2.9 17.6h29.2v.1zm90.5 8.3c-5.7-5.5-12.5-8.3-20.5-8.3h-28.2c-6.8 0-13 2.1-18.5 6.2-5.5 4.2-8.8 9.6-10 16.3l-7.8 47.5c-.3 1.7-.4 3.5-.4 5.2 0 8.1 2.8 15 8.4 20.6 5.6 5.6 12.4 8.5 20.5 8.5h27.8c6.9 0 13.2-2.4 18.8-7.2 5.6-4.8 8.9-10.6 10.1-17.4l8-46.2c.3-1.6.5-3.3.5-5.2-.1-7.8-3-14.5-8.7-20zm-12.3 25.2-6.9 40.6c-1.4 8.4-6.3 12.6-14.4 12.6-4.1 0-7.5-1.3-10.3-3.9-2.8-2.6-3.8-5.8-3.8-9.9 0-.9.3-3 .3-3l6.7-40.6c1.3-8 5.8-12 13.4-12 4.5 0 10.3.7 13.5 3.8 3.1 3.2 2.2 7.9 1.5 12.4zm101-33.5-2.9 16.9h-17c-8.3 0-13.1 4.1-14.4 12.3L799 564.3h-28.8l13.2-81.4c1-6.7 4.3-12.3 9.9-16.6 5.6-4.3 11.8-6.5 18.6-6.5h33.2z" style="fill:#fff"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 1024 1024"><circle cx="512" cy="512" r="512" style="fill:#0052a4"/><path d="M240.3 511.7h-16.9c-3 0-6 1.1-8.9 3.1-2.9 2.1-4.5 4.6-5 7.5l-1.4 8.7c-.6 3.9.6 7.5 3.7 10.6 3 3.2 6.6 4.8 10.6 4.8h11.9l6-34.7zm32.2-18.8-11.9 71.4H208c-8.1 0-15-2.8-20.6-8.5-5.6-5.6-8.5-12.5-8.5-20.6 0-1.2.1-2.6.4-4.3l2.2-13.4c4.3-15.4 13.8-23 28.4-23h33.7c.7-4.4-.4-8.4-3.4-12.1-3-3.7-6.7-5.5-11.2-5.5h-32.2l2.8-16.9h44.1c7.8 0 14.6 2.8 20.3 8.5 5.7 5.6 8.6 12.4 8.6 20.2.1 1.9 0 3.3-.1 4.2m109.9-33.1-3 16.9h-45.8c-8 0-12.7 3.9-14.1 11.8l35.8 21.8c9.4 5.7 14.1 13.9 14.1 24.6 0 9.4-3.5 17-10.4 22.6-5.6 4.5-11.9 6.8-18.7 6.8H278l2.8-17.8h45.8c8.2 0 13.1-4.2 14.6-12.6l-36.3-20.2c-9.3-5.2-13.9-13.2-13.9-23.9 0-8.6 2.7-15.7 8.1-21.3 5.4-5.6 12.4-8.5 20.9-8.5h62.4v-.2zm104.2 0-13.7 80.8c-1.2 6.5-4.6 12.1-10.2 16.7s-11.8 7-18.4 7H416c-8.1 0-15-2.8-20.5-8.2-5.6-5.5-8.3-12.3-8.3-20.4 0-1.6.2-3.3.4-5l11.7-70.8h29L417 529.5c-.2.9-.3 1.7-.3 2.6 0 4.2 1.4 7.6 4.3 10.3 2.9 2.7 6.4 4 10.6 4 7.8 0 12.4-4 13.7-12.1l12-74.5h29.3zm99.8 0-3 16.9H542c-8 0-12.7 3.9-14.1 11.8l35.8 21.8c9.4 5.7 14.1 13.9 14.1 24.6 0 9.4-3.5 17-10.4 22.6-5.6 4.5-11.9 6.8-18.7 6.8h-62.3l2.8-17.8H535c8.2 0 13.1-4.2 14.5-12.6l-36.3-20.2c-9.3-5.2-13.9-13.2-13.9-23.9 0-8.6 2.7-15.7 8.2-21.3 5.4-5.6 12.4-8.5 20.9-8.5h58v-.2zm79.5 0-3 16.9h-29.3l-8.6 52.7c0 .9-.1 1.7-.1 2.6 0 3.9 1.4 7.3 4.4 10.1 2.9 2.8 6.3 4.2 10.2 4.2h11.7l-2.8 17.8h-23.7c-8.1 0-15-2.8-20.5-8.5-5.6-5.6-8.4-12.5-8.4-20.6 0-1.8.2-3.5.4-5.2l14.8-87.7h28.6l-2.9 17.6h29.2v.1zm90.5 8.3c-5.7-5.5-12.5-8.3-20.5-8.3h-28.2c-6.8 0-13 2.1-18.5 6.2-5.5 4.2-8.8 9.6-10 16.3l-7.8 47.5c-.3 1.7-.4 3.5-.4 5.2 0 8.1 2.8 15 8.4 20.6 5.6 5.6 12.4 8.5 20.5 8.5h27.8c6.9 0 13.2-2.4 18.8-7.2 5.6-4.8 8.9-10.6 10.1-17.4l8-46.2c.3-1.6.5-3.3.5-5.2-.1-7.8-3-14.5-8.7-20zm-12.3 25.2-6.9 40.6c-1.4 8.4-6.3 12.6-14.4 12.6-4.1 0-7.5-1.3-10.3-3.9-2.8-2.6-3.8-5.8-3.8-9.9 0-.9.3-3 .3-3l6.7-40.6c1.3-8 5.8-12 13.4-12 4.5 0 10.3.7 13.5 3.8 3.1 3.2 2.2 7.9 1.5 12.4zm101-33.5-2.9 16.9h-17c-8.3 0-13.1 4.1-14.4 12.3L799 564.3h-28.8l13.2-81.4c1-6.7 4.3-12.3 9.9-16.6 5.6-4.3 11.8-6.5 18.6-6.5h33.2z" style="fill:#fff"/></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

314
svg/adventurelog.svg Normal file
View File

@ -0,0 +1,314 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="2000"
height="2000"
viewBox="0 0 529.16665 529.16666"
version="1.1"
id="svg1"
sodipodi:docname="adventurelog.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
inkscape:export-filename="AdventureLog.png"
inkscape:export-xdpi="24.576"
inkscape:export-ydpi="24.576"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="0.35190083"
inkscape:cx="655.01408"
inkscape:cy="828.35838"
inkscape:window-width="1920"
inkscape:window-height="1009"
inkscape:window-x="-8"
inkscape:window-y="383"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1">
<filter
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow"
id="filter389"
x="-1.0282219"
y="-0.73747355"
width="3.0639595"
height="2.4803376">
<feFlood
result="flood"
in="SourceGraphic"
flood-opacity="0.498039"
flood-color="rgb(0,0,0)"
id="feFlood388" />
<feGaussianBlur
result="blur"
in="SourceGraphic"
stdDeviation="57.004227"
id="feGaussianBlur388" />
<feOffset
result="offset"
in="blur"
dx="1.000000"
dy="1.000000"
id="feOffset388" />
<feComposite
result="comp1"
operator="in"
in="flood"
in2="offset"
id="feComposite388" />
<feComposite
result="comp2"
operator="over"
in="SourceGraphic"
in2="comp1"
id="feComposite389" />
</filter>
<filter
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow"
id="filter391"
x="-0.59415994"
y="-1.3323052"
width="2.1926628"
height="3.6743487">
<feFlood
result="flood"
in="SourceGraphic"
flood-opacity="0.498039"
flood-color="rgb(0,0,0)"
id="feFlood389" />
<feGaussianBlur
result="blur"
in="SourceGraphic"
stdDeviation="57.004227"
id="feGaussianBlur389" />
<feOffset
result="offset"
in="blur"
dx="1.000000"
dy="1.000000"
id="feOffset389" />
<feComposite
result="comp1"
operator="in"
in="flood"
in2="offset"
id="feComposite390" />
<feComposite
result="comp2"
operator="over"
in="SourceGraphic"
in2="comp1"
id="feComposite391" />
</filter>
<filter
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow"
id="filter393"
x="-1.1482379"
y="-0.96121423"
width="3.3048687"
height="2.9294544">
<feFlood
result="flood"
in="SourceGraphic"
flood-opacity="0.498039"
flood-color="rgb(0,0,0)"
id="feFlood391" />
<feGaussianBlur
result="blur"
in="SourceGraphic"
stdDeviation="57.004227"
id="feGaussianBlur391" />
<feOffset
result="offset"
in="blur"
dx="1.000000"
dy="1.000000"
id="feOffset391" />
<feComposite
result="comp1"
operator="in"
in="flood"
in2="offset"
id="feComposite392" />
<feComposite
result="comp2"
operator="over"
in="SourceGraphic"
in2="comp1"
id="feComposite393" />
</filter>
<filter
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow"
id="filter395"
x="-1.3398814"
y="-1.1275613"
width="3.6895566"
height="3.2633644">
<feFlood
result="flood"
in="SourceGraphic"
flood-opacity="0.498039"
flood-color="rgb(0,0,0)"
id="feFlood393" />
<feGaussianBlur
result="blur"
in="SourceGraphic"
stdDeviation="57.004227"
id="feGaussianBlur393" />
<feOffset
result="offset"
in="blur"
dx="1.000000"
dy="1.000000"
id="feOffset393" />
<feComposite
result="comp1"
operator="in"
in="flood"
in2="offset"
id="feComposite394" />
<feComposite
result="comp2"
operator="over"
in="SourceGraphic"
in2="comp1"
id="feComposite395" />
</filter>
<filter
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow"
id="filter397"
x="-1.8571666"
y="-0.84804253"
width="4.7279079"
height="2.7022837">
<feFlood
result="flood"
in="SourceGraphic"
flood-opacity="0.498039"
flood-color="rgb(0,0,0)"
id="feFlood395" />
<feGaussianBlur
result="blur"
in="SourceGraphic"
stdDeviation="57.004227"
id="feGaussianBlur395" />
<feOffset
result="offset"
in="blur"
dx="1.000000"
dy="1.000000"
id="feOffset395" />
<feComposite
result="comp1"
operator="in"
in="flood"
in2="offset"
id="feComposite396" />
<feComposite
result="comp2"
operator="over"
in="SourceGraphic"
in2="comp1"
id="feComposite397" />
</filter>
<filter
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow"
id="filter427"
x="-0.096054554"
y="-0.10772674"
width="1.1947073"
height="1.2117496">
<feFlood
result="flood"
in="SourceGraphic"
flood-opacity="0.498039"
flood-color="rgb(0,0,0)"
id="feFlood426" />
<feGaussianBlur
result="blur"
in="SourceGraphic"
stdDeviation="13.320559"
id="feGaussianBlur426" />
<feOffset
result="offset"
in="blur"
dx="1.000000"
dy="1.000000"
id="feOffset426" />
<feComposite
result="comp1"
operator="in"
in="flood"
in2="offset"
id="feComposite426" />
<feComposite
result="comp2"
operator="over"
in="SourceGraphic"
in2="comp1"
id="feComposite427" />
</filter>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g379"
transform="matrix(1.2604096,0,0,1.2604096,-68.267933,-68.723246)">
<path
style="display:inline;fill:#48b5ff;fill-opacity:1;stroke-width:94.45;stroke-dasharray:none"
d="m 971.77794,1568.1491 -215.24252,-108.5775 -232.07676,98.4805 -232.07678,98.4806 -0.63034,-550.1231 c -0.34668,-302.56774 0.21559,-550.94143 1.2495,-551.94157 1.03391,-1.00014 105.33804,-45.69109 231.78696,-99.31323 L 754.69512,357.65999 970.68644,466.2139 c 118.79516,59.70465 217.23796,108.5539 218.76156,108.5539 1.5236,0 108.4326,-50.70974 237.5755,-112.68831 129.1428,-61.97858 245.2097,-117.568 257.9264,-123.53205 l 23.1212,-10.84372 -0.6303,551.00102 -0.6303,551.00106 -257.396,123.4976 c -141.5678,67.9237 -258.5206,123.5034 -259.895,123.5104 -1.3745,0.01 -99.3582,-48.8471 -217.74156,-108.5647 z"
id="path1"
transform="scale(0.26458333)" />
<path
style="fill:#00ff00;fill-opacity:1;stroke-width:10;stroke-dasharray:none;filter:url(#filter389)"
d="m 154.50783,108.88503 c -2.85572,6.51915 -3.99705,17.36183 -0.2277,23.7036 3.00168,5.05017 8.28922,6.62967 13.3295,9.04742 3.90851,1.87485 7.96149,3.93177 11.47307,6.51256 13.62566,10.01398 23.98335,27.67115 20.06743,44.94435 -0.12449,0.54916 -1.48104,7.01695 -1.85641,7.87642 -2.34196,5.36214 -12.56252,15.09064 -18.05999,17.60459 -0.31647,0.14472 -6.14257,1.6119 -6.77744,1.77975 -5.74767,1.51955 -11.84,3.00805 -16.77513,6.51256 -2.81536,1.99923 -13.27557,11.47452 -14.84205,14.54 -0.76687,1.5007 -1.22537,3.14442 -1.97026,4.65615 -2.34545,4.75997 -5.79169,9.60118 -9.20077,13.63154 -3.11382,3.68129 -2.36218,2.17313 -5.86897,5.3764 -6.0653,5.54035 -12.38233,10.68303 -18.66873,15.97822 -2.95625,2.4901 -1.77292,2.02049 -4.80717,4.24024 -4.376145,3.20143 -19.485134,11.83259 -25.104617,8.25513 -5.798267,-3.69128 -1.637855,-18.91136 -2.537182,-24.27052 -0.665342,-3.96483 -2.868842,-7.73278 -3.824359,-11.66126 -1.060926,-4.36186 0.244798,-8.61424 0.415894,-12.95078 0.166198,-4.2124 0.437509,-8.63608 -0.03717,-12.8346 -0.54496,-4.82011 -2.197963,-8.2219 -2.197963,-13.32717 0,-3.83658 -0.26317,-7.9553 0.0395,-11.77513 0.113016,-1.42634 0.682535,-2.78477 0.871283,-4.20307 0.705311,-5.2999 1.237988,-11.08737 0.831787,-16.4336 -0.205095,-2.69936 5.511498,-10.74899 5.093496,-13.38624 -0.980816,-6.18814 -7.14978,-6.25695 -6.304002,-12.32247 0.451585,-3.23855 0.187248,-7.10749 1.740246,-10.07205 0.835928,-1.59571 1.639732,-4.10023 2.915902,-5.3764 3.741116,-3.74112 13.330719,-6.06402 18.250511,-7.60923 3.127833,-0.98238 6.027592,-2.45779 8.975394,-3.86385 3.27336,-1.56136 5.87838,-3.71819 8.93589,-5.60178 3.52017,-2.16861 7.75174,-3.29655 11.51025,-4.96052 11.45567,-5.07163 22.44821,-10.89093 34.60976,-14.01026 z"
id="path2"
sodipodi:nodetypes="csssscssssssssssssssssssssssssssc" />
<path
style="fill:#00ff00;fill-opacity:1;stroke-width:10;stroke-dasharray:none;filter:url(#filter393)"
d="m 282.71911,236.75014 c -1.07341,-0.51813 -2.0389,-1.39597 -3.22027,-1.55438 -1.88367,-0.25258 -5.13392,0.85934 -7.00513,1.44053 -8.45275,2.62538 -18.44379,6.81757 -22.49075,15.37179 -3.20748,6.77976 -1.80841,13.94405 -1.21283,21.05255 0.70345,8.39597 0.60913,17.64626 3.06924,25.78307 3.80766,12.59377 15.78781,28.09023 29.11717,31.23845 5.76255,1.36104 8.68662,1.0038 15.10925,0.26487 11.5788,-1.33212 23.20626,-7.9298 31.04795,-16.39408 3.10414,-3.3506 5.50955,-7.21715 8.59666,-10.6018 3.18743,-3.49465 5.51775,-7.04064 8.06463,-10.9805 3.48445,-5.39025 5.91,-9.43047 3.44564,-16.12924 -1.0297,-2.79895 -5.0392,-5.98461 -7.08181,-8.10411 -4.91808,-5.10316 -8.81666,-9.96675 -9.42845,-17.30255 -0.51679,-6.19651 0.806,-12.46011 0.11382,-18.62923 -0.87048,-7.75843 -3.35968,-15.22014 -5.56458,-22.67895 -1.97014,-6.66463 -5.2514,-14.24288 -11.70078,-17.79745 -15.70897,-8.65796 -36.07811,2.92981 -49.03591,11.73795 -1.87759,1.2763 -4.03614,1.97474 -5.86898,3.29462 -1.50247,1.08197 -2.65518,2.55672 -4.05205,3.74768 -2.7825,2.37234 -5.73488,4.72293 -8.59435,7.00513 -6.38056,5.09245 -15.28401,9.78925 -16.88899,18.59206 -0.67926,3.72553 7.14966,3.49307 9.04975,3.44332 9.16411,-0.23998 18.38306,-4.78561 26.08975,-9.42615 2.57984,-1.55343 5.60029,-3.28025 8.59434,-3.90103 3.15601,-0.65434 6.73357,-0.98782 9.69333,0.56924 1.40962,0.74156 2.32511,2.61628 3.3713,3.74769 3.81595,4.12676 4.11615,7.5098 -3.21795,6.21052 z"
id="path5" />
<path
style="fill:#00ff00;fill-opacity:1;stroke-width:10;stroke-dasharray:none;filter:url(#filter391)"
d="m 99.110381,433.18186 c 4.670059,-2.86644 7.566889,-7.59439 11.398729,-11.3964 11.22457,-11.13721 20.23699,-24.24948 28.43641,-37.74871 5.53049,-9.10519 9.71389,-19.38771 16.16872,-27.90433 3.11752,-4.11332 7.50709,-7.12695 11.43358,-10.41361 4.20791,-3.52221 7.6504,-6.81593 12.8741,-8.67103 15.36185,-5.45544 26.73636,1.95538 38.47129,11.2454 3.5267,2.79191 7.05706,4.28564 10.90616,6.47539 4.29758,2.44485 7.73021,6.21292 12.19102,8.44333 8.94937,4.47469 19.38222,5.65478 29.15668,6.89126 7.14631,0.90405 14.16066,2.50237 21.1664,4.12641 16.46849,3.81768 33.64484,8.74959 32.67668,29.34489 -0.28171,5.99241 -3.32624,12.60742 -8.02513,16.39408 -3.91306,3.15339 -9.22134,3.33169 -13.89873,4.20307 -5.87557,1.09461 -11.90458,2.75058 -17.94615,2.91592 -3.19683,0.0875 -11.4417,-2.50979 -14.9954,-3.33179 -3.80158,-0.87937 -8.26721,-0.9415 -11.73793,-2.84158 -3.87055,-2.11894 -6.90769,-5.47743 -10.45078,-8.0251 -4.87127,-3.50271 -1.08518,-0.58992 -4.96051,-2.91589 -3.30897,-1.98607 -6.204,-4.669 -9.57948,-6.54974 -5.1211,-2.8534 -13.86293,-3.58071 -19.69104,-4.77231 -5.67771,-1.16089 -11.01578,-3.30923 -16.81231,-4.01257 -13.91552,-1.68849 -29.45142,5.70987 -40.9318,13.09947 -2.56659,1.65206 -4.97173,3.56039 -7.42102,5.33924 -2.67583,1.94339 -5.80257,3.32094 -8.7082,4.88384 -7.53479,4.05288 -15.4307,7.2287 -22.90898,11.35922 -2.00201,1.1058 -11.46055,6.02861 -13.17615,5.68079 -1.32827,-0.26929 -2.33944,-2.21337 -3.636159,-1.81925 -2.267678,0.68921 -3.219347,3.63569 -5.339231,4.69564"
id="path6" />
<path
style="fill:#00ff00;fill-opacity:1;stroke-width:10;stroke-dasharray:none;filter:url(#filter395)"
d="m 450.19631,298.04907 c -5.5282,0.50496 -11.31189,-0.22132 -16.58461,1.51487 -12.17369,4.0086 -28.70549,15.28393 -34.1172,28.28309 -2.07438,4.98277 -2.95732,10.25334 -3.37129,15.59946 -0.22418,2.89552 -0.0933,5.87015 -0.83177,8.70821 -1.64349,6.31634 -4.7022,13.0625 -8.78488,18.17616 -2.91534,3.65154 -6.67846,6.51549 -10.14873,9.54 -8.24569,7.18651 -23.60925,23.91071 -21.96103,36.31049 0.19262,1.44907 0.77642,2.27965 2.1213,2.87872 2.17652,0.96954 6.3614,-0.53234 8.63153,-0.8341 7.76113,-1.03164 12.12755,-1.31003 19.57718,-5.03486 1.44111,-0.72054 2.84964,-1.3653 4.31694,-2.04462 6.05637,-2.80398 11.89083,-6.01507 17.83461,-9.04973 2.26536,-1.15663 4.74779,-1.77562 7.04231,-2.87642 2.15358,-1.03317 3.83749,-2.63954 5.98281,-3.67334 1.5544,-0.74904 3.25289,-1.02836 4.80949,-1.70307 1.86055,-0.80645 3.54978,-1.97313 5.33924,-2.87872 2.17898,-1.10271 4.61735,-1.2749 6.92846,-1.8936 1.4836,-0.39716 2.68676,-1.23536 4.08921,-1.81692 1.65156,-0.68485 3.50653,-0.57332 5.22539,-0.98512 1.56427,-0.37476 2.48695,-2.11201 3.74769,-2.99024 0.6309,-0.4395 1.52495,-0.5375 2.00745,-1.13618 0.48395,-0.60047 0.25164,-1.54802 0.6064,-2.23279 0.46074,-0.88932 1.51323,-1.21002 1.96794,-2.1213 1.8632,-3.73398 0.31491,-12.51823 0.41823,-16.62178 0.11186,-4.44304 0.41844,-8.86217 0.71795,-13.29 0.23315,-3.44704 -0.22538,-6.93523 -0.22538,-10.3741 0,-1.49648 0.38465,-2.89922 0.30203,-4.39359 -0.0821,-1.48571 -0.45538,-2.97958 -0.45538,-4.46796 0,-3.04234 0.0308,0.34052 0.49258,-2.53484 0.34938,-2.17554 0.005,-4.54488 0.0767,-6.74026 0.0808,-2.47037 0.58761,-4.89522 0.37872,-7.38386 -0.13973,-1.66495 -1.12795,-2.77178 -1.32667,-4.39127 -0.18376,-1.49751 0.63254,-5.63655 0,-6.74026 -0.3973,-0.69326 -1.71445,-0.36851 -2.23282,-0.72027 -0.91319,-0.61968 -1.71622,-1.38785 -2.57435,-2.0818 z"
id="path7" />
<path
style="fill:#00ff00;fill-opacity:1;stroke-width:10;stroke-dasharray:none;filter:url(#filter397)"
d="m 375.33553,121.34324 c 3.39913,22.93503 -2.23867,43.81133 -8.17846,65.50203 -3.10168,11.32658 -4.27915,22.46486 -4.96051,34.11486 -0.32861,5.61878 -0.89162,6.02837 -0.26487,12.41872 0.34464,3.51408 1.85081,7.80185 3.29461,11.01768 1.13398,2.52573 4.32978,4.06396 6.85411,4.73282 14.37217,3.80815 26.65789,-2.23088 33.69898,-15.18127 6.74126,-12.399 4.57229,-24.42084 3.86151,-37.75102 -0.38232,-7.17036 -0.76689,-14.97137 -0.26487,-22.11205 0.6106,-8.68483 5.02068,-16.55987 8.71053,-24.231 2.27978,-4.73962 3.62913,-9.80406 5.52744,-14.69103 1.30437,-3.35796 2.65044,-5.86766 3.82436,-9.39129 1.51609,-4.55069 0.62532,-9.15948 1.17333,-13.78023 0.47889,-4.03804 2.7718,-7.5475 3.82436,-11.39873 1.04624,-3.828179 1.90934,-7.787484 2.87872,-11.661277"
id="path8" />
<path
style="fill:none;fill-opacity:1;stroke:#afafaf;stroke-width:10;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter427)"
d="M 456.91785,381.08869 314.6716,449.29929 199.88458,391.55258 72.03927,445.77735 72.039268,143.494 199.88458,89.269234 314.6716,147.01594 456.91785,78.805342 Z"
id="path2-2"
sodipodi:nodetypes="ccccccccc" />
</g>
<path
id="rect378"
style="fill:#6d6d6d;fill-opacity:0.31908;stroke-width:20.9618"
d="M 186.07247,37.911116 328.72793,110.58136 V 504.69298 L 186.07247,431.95644 Z"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

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