initial version (alpha)

This commit is contained in:
Danny Morabito 2025-10-12 13:10:59 -05:00
commit b5de726919
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
58 changed files with 1237 additions and 0 deletions

12
.editorconfig Normal file
View file

@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
cosign.key
_build_*
output
_build-*/**
eve_executables/*

62
Containerfile Normal file
View file

@ -0,0 +1,62 @@
FROM scratch as system
COPY system_files /
FROM scratch as eve
COPY eve_executables/eve-lite /usr/bin/eve-lite
COPY eve_executables/eventPlugin /usr/bin/eve-lite-event-plugin
COPY eve_executables/eve-lite-ui.AppImage /Applications/eve-lite.AppImage
FROM registry.fedoraproject.org/fedora:42 AS strfry-builder
RUN dnf5 -y install perl-FindBin perl-File-Find gcc-c++ flatbuffers-devel flatbuffers-compiler openssl-devel lmdb-devel zlib-devel libsecp256k1 libsecp256k1-devel perl-core zstd libzstd-devel git make
RUN git clone https://github.com/hoytech/strfry /tmp/strfry && \
cd /tmp/strfry && \
git submodule update --init --recursive && \
make setup-golpe && \
make -j$(nproc)
FROM ghcr.io/wayblueorg/hyprland-nvidia-open:latest
COPY --from=strfry-builder /tmp/strfry/strfry /usr/bin/strfry
RUN dnf5 -y install \
openssl-devel lmdb-devel zlib-devel \
libsecp256k1 libsecp256k1-devel \
zstd libzstd-devel \
gnome-keyring libsecret \
mpv \
qt6-qtsvg qt6-qtvirtualkeyboard qt6-qtmultimedia \
NetworkManager-tui \
systemd-boot-unsigned
RUN dnf5 -y remove firewalld tuned && rpm -e --noscripts systemd-resolved systemd-resolved
RUN sed -i 's/#AutomaticUpdatePolicy.*/AutomaticUpdatePolicy=stage/' /etc/rpm-ostreed.conf
COPY cosign.pub /etc/pki/containers/eveos.pub
RUN --mount=type=bind,from=system,source=/,target=/system --mount=type=bind,from=eve,source=/,target=/eve \
rsync -avzp --include ".*" /system/ / && \
find /system/usr/etc -type f -mindepth 1 -printf '/etc/%P\0' | xargs -0 rm -rf -- && \
find /system/usr/etc -type f -mindepth 1 -printf '%P\0' | \
xargs -0 -I {} sh -c 'mkdir -p $(dirname /etc/{}) && ln -sf /usr/etc/{} /etc/{}' && \
rsync -avzp --include ".*" /system/ / && \
rsync -avzp --include ".*" /eve/ / && \
chmod +x /usr/bin/eve-lite && \
chmod +x /Applications/eve-lite.AppImage && \
chmod +x /usr/bin/eve-lite-event-plugin && \
cat /usr/share/hypr/hyprland.conf > /usr/share/hyprland/hyprland.conf
RUN systemctl --global enable eve-lite-relay && \
systemctl enable bluetooth && \
systemctl enable nftables && \
systemctl disable systemd-resolved && \
systemctl enable cpu-performance && \
systemctl enable disable-power-features && \
systemctl disable systemd-binfmt && \
systemctl mask systemd-binfmt
RUN ldconfig && update-mime-database /usr/share/mime && gtk-update-icon-cache && dconf update
RUN ostree container commit

4
cosign.pub Normal file
View file

@ -0,0 +1,4 @@
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE7Q6/yotRuVxBupol7vsdD3NUH95x
tFVKqCAWEYF/vpM00BrzQixEN3L8HFtxLxmrlIOyMT7h0fWMiG2CkL1sCg==
-----END PUBLIC KEY-----

24
package.sh Executable file
View file

@ -0,0 +1,24 @@
#!/bin/bash
current_dir=$(pwd)
pushd ../eve-lite
bun build src/eventPlugin.ts --compile
bun build --production --bytecode --compile index.ts
mv eventPlugin $current_dir/eve_executables/eventPlugin
mv index $current_dir/eve_executables/eve-lite
chmod +x $current_dir/eve_executables/eve-lite
chmod +x $current_dir/eve_executables/eventPlugin
popd
pushd ../eve-lite-ui
bun run build:linux
mv dist/eve-lite-1.1.0.AppImage $current_dir/eve_executables/eve-lite-ui.AppImage
chmod +x $current_dir/eve_executables/eve-lite-ui.AppImage
popd
just build
just push-remote

9
system_files/usr/bin/apt Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/bash
# Redirect to dnf5 if we are running inside a container
if systemd-detect-virt -cq || { [[ -e /run/.containerenv || -e /.dockerenv ]]; }; then
exec dnf5 "$@"
fi
echo -e "Looks like you are trying to use apt on EveOS, please read our documentation here\nhttps://arx-ccn.com/eveos/dnf"
exit 1

9
system_files/usr/bin/dnf Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/bash
# Redirect to dnf5 if we are running inside a container
if systemd-detect-virt -cq || { [[ -e /run/.containerenv || -e /.dockerenv ]]; }; then
exec dnf5 "$@"
fi
echo -e "Looks like you are trying to use DNF on EveOS, please read our documentation here\nhttps://arx-ccn.com/eveos/dnf"
exit 1

View file

@ -0,0 +1,3 @@
#!/bin/bash
/usr/bin/blueman-manager
hyprctl dispatch workspace 1

View file

@ -0,0 +1,3 @@
#!/bin/bash
systemd-analyze critical-chain
read -p "Press Enter to continue..."

View file

@ -0,0 +1,5 @@
#!/bin/bash
kitten icat --align=center /usr/share/pixmaps/eveos-logo-small.png
sudo bootc upgrade --apply --soft-reboot=auto
read -p "Press Enter to continue..."
hyprctl dispatch workspace 1

View file

@ -0,0 +1,3 @@
#!/bin/bash
nmtui-connect
hyprctl dispatch workspace 1

3
system_files/usr/bin/start-eve Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash
pgrep -f "eve-lite.AppImage" > /dev/null || /Applications/eve-lite.AppImage &

9
system_files/usr/bin/yum Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/bash
# Redirect to dnf5 if we are running inside a container
if systemd-detect-virt -cq || { [[ -e /run/.containerenv || -e /.dockerenv ]]; }; then
exec dnf5 "$@"
fi
echo -e "Looks like you are trying to use yum on EveOS, please read our documentation here\nhttps://arx-ccn.com/eveos/dnf"
exit 1

View file

@ -0,0 +1,33 @@
{
"default": [
{
"type": "reject"
}
],
"transports": {
"docker": {
"registry.arx-ccn.com": [
{
"type": "insecureAcceptAnything"
}
],
"docker.io": [
{
"type": "insecureAcceptAnything"
}
],
"quay.io": [
{
"type": "insecureAcceptAnything"
}
]
},
"docker-daemon": {
"": [
{
"type": "insecureAcceptAnything"
}
]
}
}
}

View file

@ -0,0 +1,3 @@
docker:
registry.arx-ccn.com:
use-signature-attachments: true

View file

@ -0,0 +1,19 @@
╔══════════════════════════════════════════════════════════════╗
║ ║
║ ███████╗██╗ ██╗███████╗ ██████╗ ███████╗ ║
║ ██╔════╝██║ ██║██╔════╝██╔═══██╗██╔════╝ ║
║ █████╗ ██║ ██║█████╗ ██║ ██║███████╗ ║
║ ██╔══╝ ╚██╗ ██╔╝██╔══╝ ██║ ██║╚════██║ ║
║ ███████╗ ╚████╔╝ ███████╗╚██████╔╝███████║ ║
║ ╚══════╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚══════╝ ║
║ ║
║ 🌱 Garden Edition 0.1 🌱 ║
║ ║
║ "Cultivating Connected Communities" ║
║ ║
╠══════════════════════════════════════════════════════════════╣
║ ║
║ System: \n (\l) ║
║ Kernel: \r ║
║ ║
╚══════════════════════════════════════════════════════════════╝

View file

@ -0,0 +1,2 @@
LANG=C.UTF-8
LC_ALL=C.UTF-8

View file

@ -0,0 +1,32 @@
#!/usr/sbin/nft -f
flush ruleset
table inet filter {
chain input {
type filter hook input priority filter; policy drop;
# Allow established/related
ct state established,related accept
# Allow loopback
iface lo accept
# Allow SSH
tcp dport 22 accept
# Allow ping
icmp type echo-request accept
icmpv6 type echo-request accept
# Drop everything else
}
chain forward {
type filter hook forward priority filter; policy drop;
}
chain output {
type filter hook output priority filter; policy accept;
}
}

View file

@ -0,0 +1,4 @@
nameserver 1.1.1.1
nameserver 1.0.0.1
nameserver 2606:4700:4700::1111
options edns0 trust-ad

View file

@ -0,0 +1,7 @@
[General]
EnableHiDPI=true
InputMethod=qtvirtualkeyboard
[Users]
RememberLastUser=true
RememberLastSession=true

View file

@ -0,0 +1,2 @@
[Theme]
Current=eveos

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View file

@ -0,0 +1,12 @@
[Desktop Entry]
Name=Eve
Comment=Eve Lite
GenericName=Eve Lite
Icon=start-here
Type=Application
Exec=/Applications/eve-lite.AppImage
Terminal=false
StartupNotify=true
Categories=Utility;
MimeType=application/x-eve-lite;
StartupWMClass=EveLite

View file

@ -0,0 +1,32 @@
# CPU Scheduling
kernel.sched_migration_cost_ns = 5000000
kernel.sched_autogroup_enabled = 0
kernel.sched_min_granularity_ns = 10000000
kernel.sched_wakeup_granularity_ns = 15000000
# VM/Memory - Aggressive performance
vm.swappiness = 1
vm.dirty_ratio = 80
vm.dirty_background_ratio = 5
vm.dirty_expire_centisecs = 12000
vm.vfs_cache_pressure = 50
vm.zone_reclaim_mode = 0
# Network Stack
net.core.netdev_max_backlog = 16384
net.core.rmem_max = 134217728
net.core.wmem_max = 134217728
net.core.rmem_default = 16777216
net.core.wmem_default = 16777216
net.core.optmem_max = 40960
net.ipv4.tcp_rmem = 4096 87380 134217728
net.ipv4.tcp_wmem = 4096 65536 134217728
net.ipv4.tcp_fastopen = 3
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_fin_timeout = 10
net.ipv4.tcp_slow_start_after_idle = 0
net.ipv4.tcp_mtu_probing = 1
# Filesystem
fs.file-max = 2097152
fs.inotify.max_user_watches = 524288

View file

@ -0,0 +1,14 @@
[Unit]
Description=Apply Performance Settings
After=sysinit.target
[Service]
Type=oneshot
ExecStart=/bin/sh -c 'echo performance | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor'
ExecStart=/bin/sh -c 'echo always > /sys/kernel/mm/transparent_hugepage/enabled'
ExecStart=/bin/sh -c 'echo always > /sys/kernel/mm/transparent_hugepage/defrag'
ExecStart=/bin/sh -c 'echo performance > /sys/module/pcie_aspm/parameters/policy || true'
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target

View file

@ -0,0 +1,16 @@
[Unit]
Description=Disable Power Management Features
After=sysinit.target
[Service]
Type=oneshot
# Disable PCIe ASPM
ExecStart=/bin/sh -c 'echo performance > /sys/module/pcie_aspm/parameters/policy || true'
# Disable USB autosuspend
ExecStart=/bin/sh -c 'for i in /sys/bus/usb/devices/*/power/autosuspend; do echo -1 > $i 2>/dev/null || true; done'
# Disable SATA link power management
ExecStart=/bin/sh -c 'for i in /sys/class/scsi_host/host*/link_power_management_policy; do echo max_performance > $i 2>/dev/null || true; done'
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target

View file

@ -0,0 +1,19 @@
[Unit]
Description=Eve Lite Relay Service
After=graphical-session.target network-online.target
BindsTo=graphical-session.target
Wants=network-online.target
[Service]
Type=simple
ExecStart=/usr/bin/eve-lite
Restart=on-failure
RestartSec=5
Slice=--user
StandardOutput=journal
StandardError=journal
SyslogIdentifier=eve-lite-relay
PrivateTmp=true
[Install]
WantedBy=graphical-session.target

View file

@ -0,0 +1,4 @@
{
"logo-directory": "/usr/share/ublue-os/eve-logos/symbols",
"shuffle-logo": true
}

View file

@ -0,0 +1,16 @@
# Set none scheduler for NVMe
ACTION=="add|change", KERNEL=="nvme[0-9]n[0-9]", ATTR{queue/scheduler}="none"
# Set none for SSDs
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="none"
# Set mq-deadline for HDDs
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="1", ATTR{queue/scheduler}="mq-deadline"
# I/O queue depth
ACTION=="add|change", KERNEL=="nvme[0-9]n[0-9]", ATTR{queue/nr_requests}="1024"
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/nr_requests}="1024"
# Read-ahead
ACTION=="add|change", KERNEL=="nvme[0-9]n[0-9]", ATTR{queue/read_ahead_kb}="512"
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/read_ahead_kb}="512"

View file

@ -0,0 +1,7 @@
[Desktop Entry]
Type=Application
Name=Eve
Exec=/Applications/eve-lite.AppImage
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true

View file

@ -0,0 +1,24 @@
NAME="EveOS Lite Garden"
VERSION="0.1.0"
RELEASE_TYPE="stable"
ID="fedora"
ID_LIKE="fedora"
VERSION_ID=42
VERSION_CODENAME="garden"
PLATFORM_ID="platform:f42"
PRETTY_NAME="EveOS Lite Garden (Version: 0.1.0)"
ANSI_COLOR="0;38;2;120;180;100"
LOGO="eveos-logo"
CPE_NAME="cpe:/o:arx-ccn:eveos_lite:0.1.0"
DEFAULT_HOSTNAME="eveos-lite-garden"
HOME_URL="https://arx-ccn.com/eveos"
DOCUMENTATION_URL="https://arx-ccn.com/eveos/docs"
SUPPORT_URL="https://arx-ccn.com/eveos/support"
BUG_REPORT_URL="https://arx-ccn.com/eveos/bugs"
SUPPORT_END=2026-01-01
VARIANT="garden"
VARIANT_ID="garden"
OSTREE_VERSION="0.1.0"
BUILD_ID="{ID}"
IMAGE_ID="EveOS Lite Garden"
IMAGE_VERSION="0.1.0"

View file

@ -0,0 +1,2 @@
enable enable-mkhomedir.service
enable systemd-growfs@-.service

View file

@ -0,0 +1,12 @@
[Unit]
Description=Apply bootc updates
Documentation=man:bootc(8)
ConditionPathExists=/run/ostree-booted
[Timer]
OnBootSec=1h
OnUnitInactiveSec=4h
RandomizedDelaySec=10min
[Install]
WantedBy=timers.target

View file

@ -0,0 +1,24 @@
[Unit]
Description=Enable pam_mkhomedir so any user gets a home seeded from /etc/skel
ConditionFirstBoot=yes
After=network.target
[Service]
Type=oneshot
# Prefer authselect (Fedora default). Fallback if it's missing.
ExecStart=/usr/bin/bash -ceu '
if command -v authselect >/dev/null 2>&1; then
authselect current >/dev/null 2>&1 || authselect select sssd --force
authselect enable-feature with-mkhomedir
authselect apply-changes -b
else
# Fallback: ensure mkhomedir in postlogin stack
mkdir -p /etc/pam.d
if ! grep -q "pam_mkhomedir.so" /etc/pam.d/postlogin 2>/dev/null; then
printf "session required pam_mkhomedir.so skel=/etc/skel umask=0077\n" >> /etc/pam.d/postlogin
fi
fi
'
[Install]
WantedBy=multi-user.target

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
NoDisplay=false
Terminal=false
Exec=xdg-open https://arx-ccn.com/eveos/docs
Icon=ublue-docs
Name=Documentation
Comment=EveOS documentation
Categories=Utility;

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Eve Lite
Comment=Your tool to access your Closed Community Network
Exec=/Applications/eve-lite.AppImage
Icon=/usr/share/icons/hicolor/scalable/distributor-logo.png
Terminal=false
Categories=Network;Utility;
StartupNotify=true

Binary file not shown.

View file

@ -0,0 +1,79 @@
monitor=,preferred,auto,auto
animations {
enabled = yes, please :)
bezier = wind, 0.05, 0.9, 0.1, 1.05
bezier = winIn, 0.1, 1.1, 0.1, 1.1
bezier = winOut, 0.3, -0.3, 0, 1
bezier = liner, 1, 1, 1, 1
bezier = overshot, 0.05, 0.9, 0.1, 1.05
bezier = smoothOut, 0.5, 0, 0.99, 0.99
bezier = smoothIn, 0.5, -0.5, 0.68, 1.5
animation = windows, 1, 6, wind, slide
animation = windowsIn, 1, 5, winIn, slide
animation = windowsOut, 1, 3, smoothOut, slide
animation = windowsMove, 1, 5, wind, slide
animation = border, 1, 1, liner
animation = borderangle, 1, 180, liner, loop
animation = fade, 1, 3, smoothOut
animation = workspaces, 1 , 5, overshot
animation = workspacesIn, 1, 5, winIn, slide
animation = workspacesOut, 1, 5, winOut, slide
}
master {
new_status = master
}
misc {
force_default_wallpaper = 0
disable_hyprland_logo = true
vrr = 1
}
gestures {
workspace_swipe = true
}
$mainMod = SUPER
$terminal = kitty
bind = $mainMod, Return, exec, $terminal
bind = $mainMod SHIFT, Q, killactive,
bind = $mainMod SHIFT, R, exec, /usr/bin/start-eve
bind = $mainMod SHIFT, H, exec, kitty "/usr/bin/eveos-diagnose-startup"
bind = $mainMod, U, workspace, 99
bind = $mainMod, U, exec, kitty "/usr/bin/eveos-update"
bind = $mainMod, W, workspace, 98
bind = $mainMod, W, exec, kitty "/usr/bin/eveos-wifi"
bind = $mainMod, F, fullscreen
bind = $mainMod, B, workspace, 97
bind = $mainMod, B, exec, /usr/bin/eveos-bluetooth
exec-once = mpv --no-video /usr/share/boot.mp3
exec-once = dbus-update-activation-environment --all
exec-once = gnome-keyring-daemon --start --components=secrets,ssh
exec-once = systemctl --user restart eve-lite-relay
exec-once = /Applications/eve-lite.AppImage
general {
gaps_in = 3
gaps_out = 0
border_size = 3
col.active_border = rgba(33ff66ee) rgba(00e639ee) 45deg
col.inactive_border = rgba(002208aa)
resize_on_border = true
allow_tearing = false
layout = master
}
decoration {
rounding = 10
active_opacity = 1.0
inactive_opacity = 0.95
}

View file

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.0"
width="1226.000000pt"
height="1621.000000pt"
viewBox="0 0 1226.000000 1621.000000"
preserveAspectRatio="xMidYMid meet"
id="svg5"
sodipodi:docname="distributor-logo.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5">
<linearGradient
id="linearGradient9"
inkscape:collect="always">
<stop
style="stop-color:#36a9ff;stop-opacity:1;"
offset="0"
id="stop10" />
<stop
style="stop-color:#1acade;stop-opacity:1;"
offset="0.5469982"
id="stop12" />
<stop
style="stop-color:#005a9d;stop-opacity:1;"
offset="1"
id="stop11" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient9"
id="radialGradient11"
cx="6127.5948"
cy="8103.2574"
fx="6127.5948"
fy="8103.2574"
r="6122.5948"
gradientTransform="matrix(1,0,0,1.3235005,0,-2621.4081)"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="namedview5"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="pt"
inkscape:zoom="0.32387415"
inkscape:cx="228.48381"
inkscape:cy="1292.1686"
inkscape:window-width="2046"
inkscape:window-height="1242"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<metadata
id="metadata1">
Created by potrace 1.16, written by Peter Selinger 2001-2019
</metadata>
<g
transform="translate(0.000000,1621.000000) scale(0.100000,-0.100000)"
fill="#000000"
stroke="none"
id="g5"
style="fill:url(#radialGradient11);fill-opacity:1">
<path
d="M6075 16197 c-47 -16 -245 -115 -325 -162 -30 -18 -118 -70 -195 -116 -309 -182 -513 -304 -578 -346 -38 -24 -143 -87 -235 -140 -92 -52 -221 -128 -287 -168 -66 -40 -185 -111 -265 -158 -80 -46 -239 -142 -355 -212 -115 -70 -248 -147 -295 -173 -47 -25 -137 -78 -200 -117 -208 -129 -512 -310 -705 -420 -104 -60 -377 -221 -605 -358 -228 -137 -466 -278 -529 -314 -125 -71 -278 -162 -362 -215 -58 -38 -157 -95 -454 -263 -341 -193 -420 -255 -510 -400 -78 -126 -123 -241 -145 -372 -19 -112 -20 -172 -20 -2211 0 -1154 4 -2102 8 -2109 4 -7 24 -19 45 -28 36 -15 40 -14 110 15 96 41 236 115 322 171 121 78 352 221 580 358 121 72 261 158 310 189 50 32 122 75 160 97 102 56 255 148 375 225 58 36 139 86 180 109 156 90 258 153 289 179 l32 27 -1 1021 0 1021 92 58 c51 31 122 76 158 99 36 24 97 61 135 83 85 49 418 248 610 365 177 108 661 395 870 517 88 52 198 117 245 146 128 80 718 435 1030 620 91 54 210 127 265 163 135 88 203 126 269 151 70 26 102 27 108 3 6 -20 141 -105 483 -304 66 -39 167 -98 225 -133 248 -148 479 -284 535 -315 33 -18 123 -70 200 -116 174 -102 317 -184 321 -184 1 0 56 -33 121 -73 173 -108 302 -185 448 -269 177 -102 214 -125 330 -200 55 -35 150 -93 210 -128 61 -35 187 -114 280 -175 177 -116 264 -169 401 -242 45 -23 88 -50 95 -59 12 -14 14 -210 13 -1228 -1 -666 -4 -1240 -8 -1276 l-6 -65 82 -47 c46 -27 94 -55 108 -63 14 -8 79 -46 145 -83 66 -38 188 -108 270 -157 83 -49 215 -126 295 -173 80 -47 172 -101 205 -121 33 -20 89 -52 125 -71 36 -19 146 -83 245 -143 99 -60 221 -133 270 -162 50 -28 149 -86 220 -129 72 -43 166 -100 210 -126 69 -41 187 -90 217 -90 6 0 9 220 8 533 -1 292 -1 1329 -1 2302 1 1681 -3 1975 -29 2105 -28 147 -96 285 -214 433 -63 79 -224 185 -561 367 -44 24 -372 219 -730 433 -357 215 -738 441 -845 504 -107 63 -229 136 -270 162 -41 27 -187 115 -325 196 -279 166 -561 335 -615 370 -20 12 -61 35 -90 50 -57 28 -225 129 -295 175 -22 15 -179 109 -350 209 -170 101 -346 204 -390 231 -44 26 -150 87 -235 135 -85 48 -258 148 -385 223 -362 212 -402 235 -539 307 -115 61 -136 68 -195 71 -38 2 -83 -2 -106 -9z"
id="path1"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2870 8920 c-13 -8 -15 -115 -18 -836 -2 -482 0 -830 5 -835 10 -10 6551 -14 6561 -4 3 3 -17 29 -44 58 -67 69 -214 242 -297 348 -70 91 -227 384 -227 425 0 12 -4 33 -9 47 -5 13 -17 97 -26 188 -14 132 -16 209 -10 392 l7 227 -2963 0 c-1850 0 -2970 -4 -2979 -10z"
id="path2"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2249 8686 c-19 -7 -63 -28 -99 -47 -75 -41 -621 -360 -725 -423 -38 -24 -108 -66 -155 -94 -47 -27 -182 -108 -300 -179 -118 -71 -240 -143 -270 -160 -30 -17 -95 -54 -145 -83 -49 -30 -178 -103 -285 -162 -107 -60 -211 -122 -230 -137 l-35 -28 3 -1679 c4 -1807 2 -1743 56 -1900 49 -146 109 -245 229 -377 100 -110 180 -163 457 -300 118 -58 283 -145 365 -193 83 -48 215 -125 295 -172 258 -150 522 -302 650 -375 69 -39 171 -99 228 -134 117 -73 680 -403 687 -403 3 0 62 -36 132 -81 71 -45 162 -99 203 -122 41 -22 131 -77 200 -122 69 -46 168 -107 220 -137 93 -54 205 -122 325 -197 159 -100 256 -158 440 -264 110 -63 311 -180 446 -260 236 -139 333 -198 639 -387 357 -220 445 -270 477 -270 10 0 11 79 8 353 -3 193 -7 784 -9 1311 -5 977 -5 975 -39 976 -5 0 -56 31 -115 68 -270 173 -705 441 -892 550 -182 106 -547 326 -790 477 -135 84 -264 163 -286 176 -23 13 -62 37 -85 52 -40 27 -222 135 -474 282 -55 32 -176 104 -270 160 -93 56 -240 142 -325 190 -85 48 -180 104 -210 125 -30 20 -74 47 -97 60 -24 13 -44 28 -45 34 -1 6 -3 853 -3 1881 l0 1871 -54 61 c-61 69 -74 75 -122 59z"
id="path3"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M12015 7197 c-101 -53 -317 -182 -500 -297 -55 -35 -134 -82 -175 -105 -163 -91 -536 -314 -835 -499 -77 -48 -254 -155 -392 -237 l-253 -150 0 -575 c0 -362 -4 -582 -10 -594 -5 -10 -34 -31 -62 -47 -85 -47 -361 -218 -471 -292 -56 -37 -176 -110 -267 -161 -91 -51 -183 -105 -205 -120 -22 -15 -130 -80 -240 -145 -110 -65 -252 -149 -315 -188 -63 -38 -176 -106 -250 -150 -74 -44 -214 -127 -310 -185 -96 -58 -233 -141 -305 -183 -71 -43 -164 -99 -205 -124 -41 -25 -167 -103 -280 -172 -113 -69 -230 -140 -260 -158 -73 -42 -223 -145 -232 -159 -4 -6 -8 -599 -8 -1319 l0 -1307 53 26 c75 38 392 221 460 266 32 21 60 38 63 38 2 0 36 21 76 47 40 25 217 133 393 238 176 106 389 235 473 286 84 52 188 115 230 140 42 25 163 97 267 161 105 63 228 136 275 163 47 26 117 68 155 93 192 123 274 173 560 344 408 244 519 310 584 350 29 18 102 62 162 98 308 186 415 250 529 320 169 103 450 270 590 350 63 36 221 129 349 205 195 116 250 154 321 222 96 91 169 207 215 343 57 166 55 107 55 1829 l0 1586 -27 40 c-34 50 -62 74 -88 74 -11 0 -65 -23 -120 -52z"
id="path4"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M5072 5275 c-24 -11 -32 -19 -28 -32 3 -10 12 -49 21 -87 20 -88 66 -204 112 -280 52 -85 180 -242 249 -306 145 -133 381 -292 579 -390 158 -79 168 -80 230 -38 28 19 120 70 206 115 216 111 316 179 440 303 158 157 261 323 330 530 21 65 39 127 39 138 0 25 -55 50 -78 36 -8 -5 -23 -39 -32 -74 -54 -200 -161 -371 -347 -551 -185 -181 -496 -349 -645 -349 -235 0 -670 304 -874 612 -56 84 -109 207 -133 307 -10 41 -22 76 -27 78 -5 1 -24 -4 -42 -12z"
id="path5"
style="fill:url(#radialGradient11);fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.0"
width="1224.5189pt"
height="1620.6515pt"
viewBox="0 0 1224.5189 1620.6515"
preserveAspectRatio="xMidYMid"
id="svg5"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5" />
<metadata
id="metadata1">
Created by potrace 1.16, written by Peter Selinger 2001-2019
</metadata>
<g
transform="matrix(0.1,0,0,-0.1,-0.5,1620.6515)"
fill="#000000"
stroke="none"
id="g5"
style="fill:#000000;fill-opacity:1">
<path
d="m 6075,16197 c -47,-16 -245,-115 -325,-162 -30,-18 -118,-70 -195,-116 -309,-182 -513,-304 -578,-346 -38,-24 -143,-87 -235,-140 -92,-52 -221,-128 -287,-168 -66,-40 -185,-111 -265,-158 -80,-46 -239,-142 -355,-212 -115,-70 -248,-147 -295,-173 -47,-25 -137,-78 -200,-117 -208,-129 -512,-310 -705,-420 -104,-60 -377,-221 -605,-358 -228,-137 -466,-278 -529,-314 -125,-71 -278,-162 -362,-215 -58,-38 -157,-95 -454,-263 -341,-193 -420,-255 -510,-400 -78,-126 -123,-241 -145,-372 -19,-112 -20,-172 -20,-2211 0,-1154 4,-2102 8,-2109 4,-7 24,-19 45,-28 36,-15 40,-14 110,15 96,41 236,115 322,171 121,78 352,221 580,358 121,72 261,158 310,189 50,32 122,75 160,97 102,56 255,148 375,225 58,36 139,86 180,109 156,90 258,153 289,179 l 32,27 -1,1021 v 1021 l 92,58 c 51,31 122,76 158,99 36,24 97,61 135,83 85,49 418,248 610,365 177,108 661,395 870,517 88,52 198,117 245,146 128,80 718,435 1030,620 91,54 210,127 265,163 135,88 203,126 269,151 70,26 102,27 108,3 6,-20 141,-105 483,-304 66,-39 167,-98 225,-133 248,-148 479,-284 535,-315 33,-18 123,-70 200,-116 174,-102 317,-184 321,-184 1,0 56,-33 121,-73 173,-108 302,-185 448,-269 177,-102 214,-125 330,-200 55,-35 150,-93 210,-128 61,-35 187,-114 280,-175 177,-116 264,-169 401,-242 45,-23 88,-50 95,-59 12,-14 14,-210 13,-1228 -1,-666 -4,-1240 -8,-1276 l -6,-65 82,-47 c 46,-27 94,-55 108,-63 14,-8 79,-46 145,-83 66,-38 188,-108 270,-157 83,-49 215,-126 295,-173 80,-47 172,-101 205,-121 33,-20 89,-52 125,-71 36,-19 146,-83 245,-143 99,-60 221,-133 270,-162 50,-28 149,-86 220,-129 72,-43 166,-100 210,-126 69,-41 187,-90 217,-90 6,0 9,220 8,533 -1,292 -1,1329 -1,2302 1,1681 -3,1975 -29,2105 -28,147 -96,285 -214,433 -63,79 -224,185 -561,367 -44,24 -372,219 -730,433 -357,215 -738,441 -845,504 -107,63 -229,136 -270,162 -41,27 -187,115 -325,196 -279,166 -561,335 -615,370 -20,12 -61,35 -90,50 -57,28 -225,129 -295,175 -22,15 -179,109 -350,209 -170,101 -346,204 -390,231 -44,26 -150,87 -235,135 -85,48 -258,148 -385,223 -362,212 -402,235 -539,307 -115,61 -136,68 -195,71 -38,2 -83,-2 -106,-9 z"
id="path1"
style="fill:#000000;fill-opacity:1" />
<path
d="m 2870,8920 c -13,-8 -15,-115 -18,-836 -2,-482 0,-830 5,-835 10,-10 6551,-14 6561,-4 3,3 -17,29 -44,58 -67,69 -214,242 -297,348 -70,91 -227,384 -227,425 0,12 -4,33 -9,47 -5,13 -17,97 -26,188 -14,132 -16,209 -10,392 l 7,227 H 5849 c -1850,0 -2970,-4 -2979,-10 z"
id="path2"
style="fill:#000000;fill-opacity:1" />
<path
d="m 2249,8686 c -19,-7 -63,-28 -99,-47 -75,-41 -621,-360 -725,-423 -38,-24 -108,-66 -155,-94 -47,-27 -182,-108 -300,-179 C 852,7872 730,7800 700,7783 670,7766 605,7729 555,7700 506,7670 377,7597 270,7538 163,7478 59,7416 40,7401 L 5,7373 8,5694 c 4,-1807 2,-1743 56,-1900 49,-146 109,-245 229,-377 100,-110 180,-163 457,-300 118,-58 283,-145 365,-193 83,-48 215,-125 295,-172 258,-150 522,-302 650,-375 69,-39 171,-99 228,-134 117,-73 680,-403 687,-403 3,0 62,-36 132,-81 71,-45 162,-99 203,-122 41,-22 131,-77 200,-122 69,-46 168,-107 220,-137 93,-54 205,-122 325,-197 159,-100 256,-158 440,-264 110,-63 311,-180 446,-260 C 5177,518 5274,459 5580,270 5937,50 6025,0 6057,0 c 10,0 11,79 8,353 -3,193 -7,784 -9,1311 -5,977 -5,975 -39,976 -5,0 -56,31 -115,68 -270,173 -705,441 -892,550 -182,106 -547,326 -790,477 -135,84 -264,163 -286,176 -23,13 -62,37 -85,52 -40,27 -222,135 -474,282 -55,32 -176,104 -270,160 -93,56 -240,142 -325,190 -85,48 -180,104 -210,125 -30,20 -74,47 -97,60 -24,13 -44,28 -45,34 -1,6 -3,853 -3,1881 v 1871 l -54,61 c -61,69 -74,75 -122,59 z"
id="path3"
style="fill:#000000;fill-opacity:1" />
<path
d="m 12015,7197 c -101,-53 -317,-182 -500,-297 -55,-35 -134,-82 -175,-105 -163,-91 -536,-314 -835,-499 -77,-48 -254,-155 -392,-237 l -253,-150 v -575 c 0,-362 -4,-582 -10,-594 -5,-10 -34,-31 -62,-47 -85,-47 -361,-218 -471,-292 -56,-37 -176,-110 -267,-161 -91,-51 -183,-105 -205,-120 -22,-15 -130,-80 -240,-145 -110,-65 -252,-149 -315,-188 -63,-38 -176,-106 -250,-150 -74,-44 -214,-127 -310,-185 -96,-58 -233,-141 -305,-183 -71,-43 -164,-99 -205,-124 -41,-25 -167,-103 -280,-172 -113,-69 -230,-140 -260,-158 -73,-42 -223,-145 -232,-159 -4,-6 -8,-599 -8,-1319 V 30 l 53,26 c 75,38 392,221 460,266 32,21 60,38 63,38 2,0 36,21 76,47 40,25 217,133 393,238 176,106 389,235 473,286 84,52 188,115 230,140 42,25 163,97 267,161 105,63 228,136 275,163 47,26 117,68 155,93 192,123 274,173 560,344 408,244 519,310 584,350 29,18 102,62 162,98 308,186 415,250 529,320 169,103 450,270 590,350 63,36 221,129 349,205 195,116 250,154 321,222 96,91 169,207 215,343 57,166 55,107 55,1829 v 1586 l -27,40 c -34,50 -62,74 -88,74 -11,0 -65,-23 -120,-52 z"
id="path4"
style="fill:#000000;fill-opacity:1" />
<path
d="m 5072,5275 c -24,-11 -32,-19 -28,-32 3,-10 12,-49 21,-87 20,-88 66,-204 112,-280 52,-85 180,-242 249,-306 145,-133 381,-292 579,-390 158,-79 168,-80 230,-38 28,19 120,70 206,115 216,111 316,179 440,303 158,157 261,323 330,530 21,65 39,127 39,138 0,25 -55,50 -78,36 -8,-5 -23,-39 -32,-74 -54,-200 -161,-371 -347,-551 -185,-181 -496,-349 -645,-349 -235,0 -670,304 -874,612 -56,84 -109,207 -133,307 -10,41 -22,76 -27,78 -5,1 -24,-4 -42,-12 z"
id="path5"
style="fill:#000000;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.7 KiB

View file

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.0"
width="1224.519pt"
height="1620.6515pt"
viewBox="0 0 1224.519 1620.6515"
preserveAspectRatio="xMidYMid"
id="svg5"
sodipodi:docname="distributor-logo.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="pt"
inkscape:zoom="0.32387415"
inkscape:cx="228.48381"
inkscape:cy="1292.1686"
inkscape:window-width="2046"
inkscape:window-height="1242"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5">
<inkscape:page
x="0"
y="0"
width="1224.519"
height="1620.6515"
id="page2"
margin="0"
bleed="0" />
</sodipodi:namedview>
<metadata
id="metadata1">
Created by potrace 1.16, written by Peter Selinger 2001-2019
</metadata>
<g
transform="matrix(0.1,0,0,-0.1,-0.50000007,1620.6515)"
fill="#000000"
stroke="none"
id="g5"
style="fill:#ffffff;fill-opacity:1">
<path
d="m 6075,16197 c -47,-16 -245,-115 -325,-162 -30,-18 -118,-70 -195,-116 -309,-182 -513,-304 -578,-346 -38,-24 -143,-87 -235,-140 -92,-52 -221,-128 -287,-168 -66,-40 -185,-111 -265,-158 -80,-46 -239,-142 -355,-212 -115,-70 -248,-147 -295,-173 -47,-25 -137,-78 -200,-117 -208,-129 -512,-310 -705,-420 -104,-60 -377,-221 -605,-358 -228,-137 -466,-278 -529,-314 -125,-71 -278,-162 -362,-215 -58,-38 -157,-95 -454,-263 -341,-193 -420,-255 -510,-400 -78,-126 -123,-241 -145,-372 -19,-112 -20,-172 -20,-2211 0,-1154 4,-2102 8,-2109 4,-7 24,-19 45,-28 36,-15 40,-14 110,15 96,41 236,115 322,171 121,78 352,221 580,358 121,72 261,158 310,189 50,32 122,75 160,97 102,56 255,148 375,225 58,36 139,86 180,109 156,90 258,153 289,179 l 32,27 -1,1021 v 1021 l 92,58 c 51,31 122,76 158,99 36,24 97,61 135,83 85,49 418,248 610,365 177,108 661,395 870,517 88,52 198,117 245,146 128,80 718,435 1030,620 91,54 210,127 265,163 135,88 203,126 269,151 70,26 102,27 108,3 6,-20 141,-105 483,-304 66,-39 167,-98 225,-133 248,-148 479,-284 535,-315 33,-18 123,-70 200,-116 174,-102 317,-184 321,-184 1,0 56,-33 121,-73 173,-108 302,-185 448,-269 177,-102 214,-125 330,-200 55,-35 150,-93 210,-128 61,-35 187,-114 280,-175 177,-116 264,-169 401,-242 45,-23 88,-50 95,-59 12,-14 14,-210 13,-1228 -1,-666 -4,-1240 -8,-1276 l -6,-65 82,-47 c 46,-27 94,-55 108,-63 14,-8 79,-46 145,-83 66,-38 188,-108 270,-157 83,-49 215,-126 295,-173 80,-47 172,-101 205,-121 33,-20 89,-52 125,-71 36,-19 146,-83 245,-143 99,-60 221,-133 270,-162 50,-28 149,-86 220,-129 72,-43 166,-100 210,-126 69,-41 187,-90 217,-90 6,0 9,220 8,533 -1,292 -1,1329 -1,2302 1,1681 -3,1975 -29,2105 -28,147 -96,285 -214,433 -63,79 -224,185 -561,367 -44,24 -372,219 -730,433 -357,215 -738,441 -845,504 -107,63 -229,136 -270,162 -41,27 -187,115 -325,196 -279,166 -561,335 -615,370 -20,12 -61,35 -90,50 -57,28 -225,129 -295,175 -22,15 -179,109 -350,209 -170,101 -346,204 -390,231 -44,26 -150,87 -235,135 -85,48 -258,148 -385,223 -362,212 -402,235 -539,307 -115,61 -136,68 -195,71 -38,2 -83,-2 -106,-9 z"
id="path1"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 2870,8920 c -13,-8 -15,-115 -18,-836 -2,-482 0,-830 5,-835 10,-10 6551,-14 6561,-4 3,3 -17,29 -44,58 -67,69 -214,242 -297,348 -70,91 -227,384 -227,425 0,12 -4,33 -9,47 -5,13 -17,97 -26,188 -14,132 -16,209 -10,392 l 7,227 H 5849 c -1850,0 -2970,-4 -2979,-10 z"
id="path2"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 2249,8686 c -19,-7 -63,-28 -99,-47 -75,-41 -621,-360 -725,-423 -38,-24 -108,-66 -155,-94 -47,-27 -182,-108 -300,-179 C 852,7872 730,7800 700,7783 670,7766 605,7729 555,7700 506,7670 377,7597 270,7538 163,7478 59,7416 40,7401 L 5,7373 8,5694 c 4,-1807 2,-1743 56,-1900 49,-146 109,-245 229,-377 100,-110 180,-163 457,-300 118,-58 283,-145 365,-193 83,-48 215,-125 295,-172 258,-150 522,-302 650,-375 69,-39 171,-99 228,-134 117,-73 680,-403 687,-403 3,0 62,-36 132,-81 71,-45 162,-99 203,-122 41,-22 131,-77 200,-122 69,-46 168,-107 220,-137 93,-54 205,-122 325,-197 159,-100 256,-158 440,-264 110,-63 311,-180 446,-260 C 5177,518 5274,459 5580,270 5937,50 6025,0 6057,0 c 10,0 11,79 8,353 -3,193 -7,784 -9,1311 -5,977 -5,975 -39,976 -5,0 -56,31 -115,68 -270,173 -705,441 -892,550 -182,106 -547,326 -790,477 -135,84 -264,163 -286,176 -23,13 -62,37 -85,52 -40,27 -222,135 -474,282 -55,32 -176,104 -270,160 -93,56 -240,142 -325,190 -85,48 -180,104 -210,125 -30,20 -74,47 -97,60 -24,13 -44,28 -45,34 -1,6 -3,853 -3,1881 v 1871 l -54,61 c -61,69 -74,75 -122,59 z"
id="path3"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 12015,7197 c -101,-53 -317,-182 -500,-297 -55,-35 -134,-82 -175,-105 -163,-91 -536,-314 -835,-499 -77,-48 -254,-155 -392,-237 l -253,-150 v -575 c 0,-362 -4,-582 -10,-594 -5,-10 -34,-31 -62,-47 -85,-47 -361,-218 -471,-292 -56,-37 -176,-110 -267,-161 -91,-51 -183,-105 -205,-120 -22,-15 -130,-80 -240,-145 -110,-65 -252,-149 -315,-188 -63,-38 -176,-106 -250,-150 -74,-44 -214,-127 -310,-185 -96,-58 -233,-141 -305,-183 -71,-43 -164,-99 -205,-124 -41,-25 -167,-103 -280,-172 -113,-69 -230,-140 -260,-158 -73,-42 -223,-145 -232,-159 -4,-6 -8,-599 -8,-1319 V 30 l 53,26 c 75,38 392,221 460,266 32,21 60,38 63,38 2,0 36,21 76,47 40,25 217,133 393,238 176,106 389,235 473,286 84,52 188,115 230,140 42,25 163,97 267,161 105,63 228,136 275,163 47,26 117,68 155,93 192,123 274,173 560,344 408,244 519,310 584,350 29,18 102,62 162,98 308,186 415,250 529,320 169,103 450,270 590,350 63,36 221,129 349,205 195,116 250,154 321,222 96,91 169,207 215,343 57,166 55,107 55,1829 v 1586 l -27,40 c -34,50 -62,74 -88,74 -11,0 -65,-23 -120,-52 z"
id="path4"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 5072,5275 c -24,-11 -32,-19 -28,-32 3,-10 12,-49 21,-87 20,-88 66,-204 112,-280 52,-85 180,-242 249,-306 145,-133 381,-292 579,-390 158,-79 168,-80 230,-38 28,19 120,70 206,115 216,111 316,179 440,303 158,157 261,323 330,530 21,65 39,127 39,138 0,25 -55,50 -78,36 -8,-5 -23,-39 -32,-74 -54,-200 -161,-371 -347,-551 -185,-181 -496,-349 -645,-349 -235,0 -670,304 -874,612 -56,84 -109,207 -133,307 -10,41 -22,76 -27,78 -5,1 -24,-4 -42,-12 z"
id="path5"
style="fill:#ffffff;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 KiB

View file

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.0"
width="1226.000000pt"
height="1621.000000pt"
viewBox="0 0 1226.000000 1621.000000"
preserveAspectRatio="xMidYMid meet"
id="svg5"
sodipodi:docname="distributor-logo.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5">
<linearGradient
id="linearGradient9"
inkscape:collect="always">
<stop
style="stop-color:#36a9ff;stop-opacity:1;"
offset="0"
id="stop10" />
<stop
style="stop-color:#1acade;stop-opacity:1;"
offset="0.5469982"
id="stop12" />
<stop
style="stop-color:#005a9d;stop-opacity:1;"
offset="1"
id="stop11" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient9"
id="radialGradient11"
cx="6127.5948"
cy="8103.2574"
fx="6127.5948"
fy="8103.2574"
r="6122.5948"
gradientTransform="matrix(1,0,0,1.3235005,0,-2621.4081)"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="namedview5"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="pt"
inkscape:zoom="0.32387415"
inkscape:cx="228.48381"
inkscape:cy="1292.1686"
inkscape:window-width="2046"
inkscape:window-height="1242"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<metadata
id="metadata1">
Created by potrace 1.16, written by Peter Selinger 2001-2019
</metadata>
<g
transform="translate(0.000000,1621.000000) scale(0.100000,-0.100000)"
fill="#000000"
stroke="none"
id="g5"
style="fill:url(#radialGradient11);fill-opacity:1">
<path
d="M6075 16197 c-47 -16 -245 -115 -325 -162 -30 -18 -118 -70 -195 -116 -309 -182 -513 -304 -578 -346 -38 -24 -143 -87 -235 -140 -92 -52 -221 -128 -287 -168 -66 -40 -185 -111 -265 -158 -80 -46 -239 -142 -355 -212 -115 -70 -248 -147 -295 -173 -47 -25 -137 -78 -200 -117 -208 -129 -512 -310 -705 -420 -104 -60 -377 -221 -605 -358 -228 -137 -466 -278 -529 -314 -125 -71 -278 -162 -362 -215 -58 -38 -157 -95 -454 -263 -341 -193 -420 -255 -510 -400 -78 -126 -123 -241 -145 -372 -19 -112 -20 -172 -20 -2211 0 -1154 4 -2102 8 -2109 4 -7 24 -19 45 -28 36 -15 40 -14 110 15 96 41 236 115 322 171 121 78 352 221 580 358 121 72 261 158 310 189 50 32 122 75 160 97 102 56 255 148 375 225 58 36 139 86 180 109 156 90 258 153 289 179 l32 27 -1 1021 0 1021 92 58 c51 31 122 76 158 99 36 24 97 61 135 83 85 49 418 248 610 365 177 108 661 395 870 517 88 52 198 117 245 146 128 80 718 435 1030 620 91 54 210 127 265 163 135 88 203 126 269 151 70 26 102 27 108 3 6 -20 141 -105 483 -304 66 -39 167 -98 225 -133 248 -148 479 -284 535 -315 33 -18 123 -70 200 -116 174 -102 317 -184 321 -184 1 0 56 -33 121 -73 173 -108 302 -185 448 -269 177 -102 214 -125 330 -200 55 -35 150 -93 210 -128 61 -35 187 -114 280 -175 177 -116 264 -169 401 -242 45 -23 88 -50 95 -59 12 -14 14 -210 13 -1228 -1 -666 -4 -1240 -8 -1276 l-6 -65 82 -47 c46 -27 94 -55 108 -63 14 -8 79 -46 145 -83 66 -38 188 -108 270 -157 83 -49 215 -126 295 -173 80 -47 172 -101 205 -121 33 -20 89 -52 125 -71 36 -19 146 -83 245 -143 99 -60 221 -133 270 -162 50 -28 149 -86 220 -129 72 -43 166 -100 210 -126 69 -41 187 -90 217 -90 6 0 9 220 8 533 -1 292 -1 1329 -1 2302 1 1681 -3 1975 -29 2105 -28 147 -96 285 -214 433 -63 79 -224 185 -561 367 -44 24 -372 219 -730 433 -357 215 -738 441 -845 504 -107 63 -229 136 -270 162 -41 27 -187 115 -325 196 -279 166 -561 335 -615 370 -20 12 -61 35 -90 50 -57 28 -225 129 -295 175 -22 15 -179 109 -350 209 -170 101 -346 204 -390 231 -44 26 -150 87 -235 135 -85 48 -258 148 -385 223 -362 212 -402 235 -539 307 -115 61 -136 68 -195 71 -38 2 -83 -2 -106 -9z"
id="path1"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2870 8920 c-13 -8 -15 -115 -18 -836 -2 -482 0 -830 5 -835 10 -10 6551 -14 6561 -4 3 3 -17 29 -44 58 -67 69 -214 242 -297 348 -70 91 -227 384 -227 425 0 12 -4 33 -9 47 -5 13 -17 97 -26 188 -14 132 -16 209 -10 392 l7 227 -2963 0 c-1850 0 -2970 -4 -2979 -10z"
id="path2"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2249 8686 c-19 -7 -63 -28 -99 -47 -75 -41 -621 -360 -725 -423 -38 -24 -108 -66 -155 -94 -47 -27 -182 -108 -300 -179 -118 -71 -240 -143 -270 -160 -30 -17 -95 -54 -145 -83 -49 -30 -178 -103 -285 -162 -107 -60 -211 -122 -230 -137 l-35 -28 3 -1679 c4 -1807 2 -1743 56 -1900 49 -146 109 -245 229 -377 100 -110 180 -163 457 -300 118 -58 283 -145 365 -193 83 -48 215 -125 295 -172 258 -150 522 -302 650 -375 69 -39 171 -99 228 -134 117 -73 680 -403 687 -403 3 0 62 -36 132 -81 71 -45 162 -99 203 -122 41 -22 131 -77 200 -122 69 -46 168 -107 220 -137 93 -54 205 -122 325 -197 159 -100 256 -158 440 -264 110 -63 311 -180 446 -260 236 -139 333 -198 639 -387 357 -220 445 -270 477 -270 10 0 11 79 8 353 -3 193 -7 784 -9 1311 -5 977 -5 975 -39 976 -5 0 -56 31 -115 68 -270 173 -705 441 -892 550 -182 106 -547 326 -790 477 -135 84 -264 163 -286 176 -23 13 -62 37 -85 52 -40 27 -222 135 -474 282 -55 32 -176 104 -270 160 -93 56 -240 142 -325 190 -85 48 -180 104 -210 125 -30 20 -74 47 -97 60 -24 13 -44 28 -45 34 -1 6 -3 853 -3 1881 l0 1871 -54 61 c-61 69 -74 75 -122 59z"
id="path3"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M12015 7197 c-101 -53 -317 -182 -500 -297 -55 -35 -134 -82 -175 -105 -163 -91 -536 -314 -835 -499 -77 -48 -254 -155 -392 -237 l-253 -150 0 -575 c0 -362 -4 -582 -10 -594 -5 -10 -34 -31 -62 -47 -85 -47 -361 -218 -471 -292 -56 -37 -176 -110 -267 -161 -91 -51 -183 -105 -205 -120 -22 -15 -130 -80 -240 -145 -110 -65 -252 -149 -315 -188 -63 -38 -176 -106 -250 -150 -74 -44 -214 -127 -310 -185 -96 -58 -233 -141 -305 -183 -71 -43 -164 -99 -205 -124 -41 -25 -167 -103 -280 -172 -113 -69 -230 -140 -260 -158 -73 -42 -223 -145 -232 -159 -4 -6 -8 -599 -8 -1319 l0 -1307 53 26 c75 38 392 221 460 266 32 21 60 38 63 38 2 0 36 21 76 47 40 25 217 133 393 238 176 106 389 235 473 286 84 52 188 115 230 140 42 25 163 97 267 161 105 63 228 136 275 163 47 26 117 68 155 93 192 123 274 173 560 344 408 244 519 310 584 350 29 18 102 62 162 98 308 186 415 250 529 320 169 103 450 270 590 350 63 36 221 129 349 205 195 116 250 154 321 222 96 91 169 207 215 343 57 166 55 107 55 1829 l0 1586 -27 40 c-34 50 -62 74 -88 74 -11 0 -65 -23 -120 -52z"
id="path4"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M5072 5275 c-24 -11 -32 -19 -28 -32 3 -10 12 -49 21 -87 20 -88 66 -204 112 -280 52 -85 180 -242 249 -306 145 -133 381 -292 579 -390 158 -79 168 -80 230 -38 28 19 120 70 206 115 216 111 316 179 440 303 158 157 261 323 330 530 21 65 39 127 39 138 0 25 -55 50 -78 36 -8 -5 -23 -39 -32 -74 -54 -200 -161 -371 -347 -551 -185 -181 -496 -349 -645 -349 -235 0 -670 304 -874 612 -56 84 -109 207 -133 307 -10 41 -22 76 -27 78 -5 1 -24 -4 -42 -12z"
id="path5"
style="fill:url(#radialGradient11);fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 KiB

View file

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.0"
width="1226.000000pt"
height="1621.000000pt"
viewBox="0 0 1226.000000 1621.000000"
preserveAspectRatio="xMidYMid meet"
id="svg5"
sodipodi:docname="distributor-logo.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5">
<linearGradient
id="linearGradient9"
inkscape:collect="always">
<stop
style="stop-color:#36a9ff;stop-opacity:1;"
offset="0"
id="stop10" />
<stop
style="stop-color:#1acade;stop-opacity:1;"
offset="0.5469982"
id="stop12" />
<stop
style="stop-color:#005a9d;stop-opacity:1;"
offset="1"
id="stop11" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient9"
id="radialGradient11"
cx="6127.5948"
cy="8103.2574"
fx="6127.5948"
fy="8103.2574"
r="6122.5948"
gradientTransform="matrix(1,0,0,1.3235005,0,-2621.4081)"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="namedview5"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="pt"
inkscape:zoom="0.32387415"
inkscape:cx="228.48381"
inkscape:cy="1292.1686"
inkscape:window-width="2046"
inkscape:window-height="1242"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<metadata
id="metadata1">
Created by potrace 1.16, written by Peter Selinger 2001-2019
</metadata>
<g
transform="translate(0.000000,1621.000000) scale(0.100000,-0.100000)"
fill="#000000"
stroke="none"
id="g5"
style="fill:url(#radialGradient11);fill-opacity:1">
<path
d="M6075 16197 c-47 -16 -245 -115 -325 -162 -30 -18 -118 -70 -195 -116 -309 -182 -513 -304 -578 -346 -38 -24 -143 -87 -235 -140 -92 -52 -221 -128 -287 -168 -66 -40 -185 -111 -265 -158 -80 -46 -239 -142 -355 -212 -115 -70 -248 -147 -295 -173 -47 -25 -137 -78 -200 -117 -208 -129 -512 -310 -705 -420 -104 -60 -377 -221 -605 -358 -228 -137 -466 -278 -529 -314 -125 -71 -278 -162 -362 -215 -58 -38 -157 -95 -454 -263 -341 -193 -420 -255 -510 -400 -78 -126 -123 -241 -145 -372 -19 -112 -20 -172 -20 -2211 0 -1154 4 -2102 8 -2109 4 -7 24 -19 45 -28 36 -15 40 -14 110 15 96 41 236 115 322 171 121 78 352 221 580 358 121 72 261 158 310 189 50 32 122 75 160 97 102 56 255 148 375 225 58 36 139 86 180 109 156 90 258 153 289 179 l32 27 -1 1021 0 1021 92 58 c51 31 122 76 158 99 36 24 97 61 135 83 85 49 418 248 610 365 177 108 661 395 870 517 88 52 198 117 245 146 128 80 718 435 1030 620 91 54 210 127 265 163 135 88 203 126 269 151 70 26 102 27 108 3 6 -20 141 -105 483 -304 66 -39 167 -98 225 -133 248 -148 479 -284 535 -315 33 -18 123 -70 200 -116 174 -102 317 -184 321 -184 1 0 56 -33 121 -73 173 -108 302 -185 448 -269 177 -102 214 -125 330 -200 55 -35 150 -93 210 -128 61 -35 187 -114 280 -175 177 -116 264 -169 401 -242 45 -23 88 -50 95 -59 12 -14 14 -210 13 -1228 -1 -666 -4 -1240 -8 -1276 l-6 -65 82 -47 c46 -27 94 -55 108 -63 14 -8 79 -46 145 -83 66 -38 188 -108 270 -157 83 -49 215 -126 295 -173 80 -47 172 -101 205 -121 33 -20 89 -52 125 -71 36 -19 146 -83 245 -143 99 -60 221 -133 270 -162 50 -28 149 -86 220 -129 72 -43 166 -100 210 -126 69 -41 187 -90 217 -90 6 0 9 220 8 533 -1 292 -1 1329 -1 2302 1 1681 -3 1975 -29 2105 -28 147 -96 285 -214 433 -63 79 -224 185 -561 367 -44 24 -372 219 -730 433 -357 215 -738 441 -845 504 -107 63 -229 136 -270 162 -41 27 -187 115 -325 196 -279 166 -561 335 -615 370 -20 12 -61 35 -90 50 -57 28 -225 129 -295 175 -22 15 -179 109 -350 209 -170 101 -346 204 -390 231 -44 26 -150 87 -235 135 -85 48 -258 148 -385 223 -362 212 -402 235 -539 307 -115 61 -136 68 -195 71 -38 2 -83 -2 -106 -9z"
id="path1"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2870 8920 c-13 -8 -15 -115 -18 -836 -2 -482 0 -830 5 -835 10 -10 6551 -14 6561 -4 3 3 -17 29 -44 58 -67 69 -214 242 -297 348 -70 91 -227 384 -227 425 0 12 -4 33 -9 47 -5 13 -17 97 -26 188 -14 132 -16 209 -10 392 l7 227 -2963 0 c-1850 0 -2970 -4 -2979 -10z"
id="path2"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2249 8686 c-19 -7 -63 -28 -99 -47 -75 -41 -621 -360 -725 -423 -38 -24 -108 -66 -155 -94 -47 -27 -182 -108 -300 -179 -118 -71 -240 -143 -270 -160 -30 -17 -95 -54 -145 -83 -49 -30 -178 -103 -285 -162 -107 -60 -211 -122 -230 -137 l-35 -28 3 -1679 c4 -1807 2 -1743 56 -1900 49 -146 109 -245 229 -377 100 -110 180 -163 457 -300 118 -58 283 -145 365 -193 83 -48 215 -125 295 -172 258 -150 522 -302 650 -375 69 -39 171 -99 228 -134 117 -73 680 -403 687 -403 3 0 62 -36 132 -81 71 -45 162 -99 203 -122 41 -22 131 -77 200 -122 69 -46 168 -107 220 -137 93 -54 205 -122 325 -197 159 -100 256 -158 440 -264 110 -63 311 -180 446 -260 236 -139 333 -198 639 -387 357 -220 445 -270 477 -270 10 0 11 79 8 353 -3 193 -7 784 -9 1311 -5 977 -5 975 -39 976 -5 0 -56 31 -115 68 -270 173 -705 441 -892 550 -182 106 -547 326 -790 477 -135 84 -264 163 -286 176 -23 13 -62 37 -85 52 -40 27 -222 135 -474 282 -55 32 -176 104 -270 160 -93 56 -240 142 -325 190 -85 48 -180 104 -210 125 -30 20 -74 47 -97 60 -24 13 -44 28 -45 34 -1 6 -3 853 -3 1881 l0 1871 -54 61 c-61 69 -74 75 -122 59z"
id="path3"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M12015 7197 c-101 -53 -317 -182 -500 -297 -55 -35 -134 -82 -175 -105 -163 -91 -536 -314 -835 -499 -77 -48 -254 -155 -392 -237 l-253 -150 0 -575 c0 -362 -4 -582 -10 -594 -5 -10 -34 -31 -62 -47 -85 -47 -361 -218 -471 -292 -56 -37 -176 -110 -267 -161 -91 -51 -183 -105 -205 -120 -22 -15 -130 -80 -240 -145 -110 -65 -252 -149 -315 -188 -63 -38 -176 -106 -250 -150 -74 -44 -214 -127 -310 -185 -96 -58 -233 -141 -305 -183 -71 -43 -164 -99 -205 -124 -41 -25 -167 -103 -280 -172 -113 -69 -230 -140 -260 -158 -73 -42 -223 -145 -232 -159 -4 -6 -8 -599 -8 -1319 l0 -1307 53 26 c75 38 392 221 460 266 32 21 60 38 63 38 2 0 36 21 76 47 40 25 217 133 393 238 176 106 389 235 473 286 84 52 188 115 230 140 42 25 163 97 267 161 105 63 228 136 275 163 47 26 117 68 155 93 192 123 274 173 560 344 408 244 519 310 584 350 29 18 102 62 162 98 308 186 415 250 529 320 169 103 450 270 590 350 63 36 221 129 349 205 195 116 250 154 321 222 96 91 169 207 215 343 57 166 55 107 55 1829 l0 1586 -27 40 c-34 50 -62 74 -88 74 -11 0 -65 -23 -120 -52z"
id="path4"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M5072 5275 c-24 -11 -32 -19 -28 -32 3 -10 12 -49 21 -87 20 -88 66 -204 112 -280 52 -85 180 -242 249 -306 145 -133 381 -292 579 -390 158 -79 168 -80 230 -38 28 19 120 70 206 115 216 111 316 179 440 303 158 157 261 323 330 530 21 65 39 127 39 138 0 25 -55 50 -78 36 -8 -5 -23 -39 -32 -74 -54 -200 -161 -371 -347 -551 -185 -181 -496 -349 -645 -349 -235 0 -670 304 -874 612 -56 84 -109 207 -133 307 -10 41 -22 76 -27 78 -5 1 -24 -4 -42 -12z"
id="path5"
style="fill:url(#radialGradient11);fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 KiB

View file

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.0"
width="1226.000000pt"
height="1621.000000pt"
viewBox="0 0 1226.000000 1621.000000"
preserveAspectRatio="xMidYMid meet"
id="svg5"
sodipodi:docname="distributor-logo.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5">
<linearGradient
id="linearGradient9"
inkscape:collect="always">
<stop
style="stop-color:#36a9ff;stop-opacity:1;"
offset="0"
id="stop10" />
<stop
style="stop-color:#1acade;stop-opacity:1;"
offset="0.5469982"
id="stop12" />
<stop
style="stop-color:#005a9d;stop-opacity:1;"
offset="1"
id="stop11" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient9"
id="radialGradient11"
cx="6127.5948"
cy="8103.2574"
fx="6127.5948"
fy="8103.2574"
r="6122.5948"
gradientTransform="matrix(1,0,0,1.3235005,0,-2621.4081)"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="namedview5"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="pt"
inkscape:zoom="0.32387415"
inkscape:cx="228.48381"
inkscape:cy="1292.1686"
inkscape:window-width="2046"
inkscape:window-height="1242"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<metadata
id="metadata1">
Created by potrace 1.16, written by Peter Selinger 2001-2019
</metadata>
<g
transform="translate(0.000000,1621.000000) scale(0.100000,-0.100000)"
fill="#000000"
stroke="none"
id="g5"
style="fill:url(#radialGradient11);fill-opacity:1">
<path
d="M6075 16197 c-47 -16 -245 -115 -325 -162 -30 -18 -118 -70 -195 -116 -309 -182 -513 -304 -578 -346 -38 -24 -143 -87 -235 -140 -92 -52 -221 -128 -287 -168 -66 -40 -185 -111 -265 -158 -80 -46 -239 -142 -355 -212 -115 -70 -248 -147 -295 -173 -47 -25 -137 -78 -200 -117 -208 -129 -512 -310 -705 -420 -104 -60 -377 -221 -605 -358 -228 -137 -466 -278 -529 -314 -125 -71 -278 -162 -362 -215 -58 -38 -157 -95 -454 -263 -341 -193 -420 -255 -510 -400 -78 -126 -123 -241 -145 -372 -19 -112 -20 -172 -20 -2211 0 -1154 4 -2102 8 -2109 4 -7 24 -19 45 -28 36 -15 40 -14 110 15 96 41 236 115 322 171 121 78 352 221 580 358 121 72 261 158 310 189 50 32 122 75 160 97 102 56 255 148 375 225 58 36 139 86 180 109 156 90 258 153 289 179 l32 27 -1 1021 0 1021 92 58 c51 31 122 76 158 99 36 24 97 61 135 83 85 49 418 248 610 365 177 108 661 395 870 517 88 52 198 117 245 146 128 80 718 435 1030 620 91 54 210 127 265 163 135 88 203 126 269 151 70 26 102 27 108 3 6 -20 141 -105 483 -304 66 -39 167 -98 225 -133 248 -148 479 -284 535 -315 33 -18 123 -70 200 -116 174 -102 317 -184 321 -184 1 0 56 -33 121 -73 173 -108 302 -185 448 -269 177 -102 214 -125 330 -200 55 -35 150 -93 210 -128 61 -35 187 -114 280 -175 177 -116 264 -169 401 -242 45 -23 88 -50 95 -59 12 -14 14 -210 13 -1228 -1 -666 -4 -1240 -8 -1276 l-6 -65 82 -47 c46 -27 94 -55 108 -63 14 -8 79 -46 145 -83 66 -38 188 -108 270 -157 83 -49 215 -126 295 -173 80 -47 172 -101 205 -121 33 -20 89 -52 125 -71 36 -19 146 -83 245 -143 99 -60 221 -133 270 -162 50 -28 149 -86 220 -129 72 -43 166 -100 210 -126 69 -41 187 -90 217 -90 6 0 9 220 8 533 -1 292 -1 1329 -1 2302 1 1681 -3 1975 -29 2105 -28 147 -96 285 -214 433 -63 79 -224 185 -561 367 -44 24 -372 219 -730 433 -357 215 -738 441 -845 504 -107 63 -229 136 -270 162 -41 27 -187 115 -325 196 -279 166 -561 335 -615 370 -20 12 -61 35 -90 50 -57 28 -225 129 -295 175 -22 15 -179 109 -350 209 -170 101 -346 204 -390 231 -44 26 -150 87 -235 135 -85 48 -258 148 -385 223 -362 212 -402 235 -539 307 -115 61 -136 68 -195 71 -38 2 -83 -2 -106 -9z"
id="path1"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2870 8920 c-13 -8 -15 -115 -18 -836 -2 -482 0 -830 5 -835 10 -10 6551 -14 6561 -4 3 3 -17 29 -44 58 -67 69 -214 242 -297 348 -70 91 -227 384 -227 425 0 12 -4 33 -9 47 -5 13 -17 97 -26 188 -14 132 -16 209 -10 392 l7 227 -2963 0 c-1850 0 -2970 -4 -2979 -10z"
id="path2"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2249 8686 c-19 -7 -63 -28 -99 -47 -75 -41 -621 -360 -725 -423 -38 -24 -108 -66 -155 -94 -47 -27 -182 -108 -300 -179 -118 -71 -240 -143 -270 -160 -30 -17 -95 -54 -145 -83 -49 -30 -178 -103 -285 -162 -107 -60 -211 -122 -230 -137 l-35 -28 3 -1679 c4 -1807 2 -1743 56 -1900 49 -146 109 -245 229 -377 100 -110 180 -163 457 -300 118 -58 283 -145 365 -193 83 -48 215 -125 295 -172 258 -150 522 -302 650 -375 69 -39 171 -99 228 -134 117 -73 680 -403 687 -403 3 0 62 -36 132 -81 71 -45 162 -99 203 -122 41 -22 131 -77 200 -122 69 -46 168 -107 220 -137 93 -54 205 -122 325 -197 159 -100 256 -158 440 -264 110 -63 311 -180 446 -260 236 -139 333 -198 639 -387 357 -220 445 -270 477 -270 10 0 11 79 8 353 -3 193 -7 784 -9 1311 -5 977 -5 975 -39 976 -5 0 -56 31 -115 68 -270 173 -705 441 -892 550 -182 106 -547 326 -790 477 -135 84 -264 163 -286 176 -23 13 -62 37 -85 52 -40 27 -222 135 -474 282 -55 32 -176 104 -270 160 -93 56 -240 142 -325 190 -85 48 -180 104 -210 125 -30 20 -74 47 -97 60 -24 13 -44 28 -45 34 -1 6 -3 853 -3 1881 l0 1871 -54 61 c-61 69 -74 75 -122 59z"
id="path3"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M12015 7197 c-101 -53 -317 -182 -500 -297 -55 -35 -134 -82 -175 -105 -163 -91 -536 -314 -835 -499 -77 -48 -254 -155 -392 -237 l-253 -150 0 -575 c0 -362 -4 -582 -10 -594 -5 -10 -34 -31 -62 -47 -85 -47 -361 -218 -471 -292 -56 -37 -176 -110 -267 -161 -91 -51 -183 -105 -205 -120 -22 -15 -130 -80 -240 -145 -110 -65 -252 -149 -315 -188 -63 -38 -176 -106 -250 -150 -74 -44 -214 -127 -310 -185 -96 -58 -233 -141 -305 -183 -71 -43 -164 -99 -205 -124 -41 -25 -167 -103 -280 -172 -113 -69 -230 -140 -260 -158 -73 -42 -223 -145 -232 -159 -4 -6 -8 -599 -8 -1319 l0 -1307 53 26 c75 38 392 221 460 266 32 21 60 38 63 38 2 0 36 21 76 47 40 25 217 133 393 238 176 106 389 235 473 286 84 52 188 115 230 140 42 25 163 97 267 161 105 63 228 136 275 163 47 26 117 68 155 93 192 123 274 173 560 344 408 244 519 310 584 350 29 18 102 62 162 98 308 186 415 250 529 320 169 103 450 270 590 350 63 36 221 129 349 205 195 116 250 154 321 222 96 91 169 207 215 343 57 166 55 107 55 1829 l0 1586 -27 40 c-34 50 -62 74 -88 74 -11 0 -65 -23 -120 -52z"
id="path4"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M5072 5275 c-24 -11 -32 -19 -28 -32 3 -10 12 -49 21 -87 20 -88 66 -204 112 -280 52 -85 180 -242 249 -306 145 -133 381 -292 579 -390 158 -79 168 -80 230 -38 28 19 120 70 206 115 216 111 316 179 440 303 158 157 261 323 330 530 21 65 39 127 39 138 0 25 -55 50 -78 36 -8 -5 -23 -39 -32 -74 -54 -200 -161 -371 -347 -551 -185 -181 -496 -349 -645 -349 -235 0 -670 304 -874 612 -56 84 -109 207 -133 307 -10 41 -22 76 -27 78 -5 1 -24 -4 -42 -12z"
id="path5"
style="fill:url(#radialGradient11);fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 KiB

View file

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.0"
width="1226.000000pt"
height="1621.000000pt"
viewBox="0 0 1226.000000 1621.000000"
preserveAspectRatio="xMidYMid meet"
id="svg5"
sodipodi:docname="distributor-logo.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5">
<linearGradient
id="linearGradient9"
inkscape:collect="always">
<stop
style="stop-color:#36a9ff;stop-opacity:1;"
offset="0"
id="stop10" />
<stop
style="stop-color:#1acade;stop-opacity:1;"
offset="0.5469982"
id="stop12" />
<stop
style="stop-color:#005a9d;stop-opacity:1;"
offset="1"
id="stop11" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient9"
id="radialGradient11"
cx="6127.5948"
cy="8103.2574"
fx="6127.5948"
fy="8103.2574"
r="6122.5948"
gradientTransform="matrix(1,0,0,1.3235005,0,-2621.4081)"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="namedview5"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="pt"
inkscape:zoom="0.32387415"
inkscape:cx="228.48381"
inkscape:cy="1292.1686"
inkscape:window-width="2046"
inkscape:window-height="1242"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<metadata
id="metadata1">
Created by potrace 1.16, written by Peter Selinger 2001-2019
</metadata>
<g
transform="translate(0.000000,1621.000000) scale(0.100000,-0.100000)"
fill="#000000"
stroke="none"
id="g5"
style="fill:url(#radialGradient11);fill-opacity:1">
<path
d="M6075 16197 c-47 -16 -245 -115 -325 -162 -30 -18 -118 -70 -195 -116 -309 -182 -513 -304 -578 -346 -38 -24 -143 -87 -235 -140 -92 -52 -221 -128 -287 -168 -66 -40 -185 -111 -265 -158 -80 -46 -239 -142 -355 -212 -115 -70 -248 -147 -295 -173 -47 -25 -137 -78 -200 -117 -208 -129 -512 -310 -705 -420 -104 -60 -377 -221 -605 -358 -228 -137 -466 -278 -529 -314 -125 -71 -278 -162 -362 -215 -58 -38 -157 -95 -454 -263 -341 -193 -420 -255 -510 -400 -78 -126 -123 -241 -145 -372 -19 -112 -20 -172 -20 -2211 0 -1154 4 -2102 8 -2109 4 -7 24 -19 45 -28 36 -15 40 -14 110 15 96 41 236 115 322 171 121 78 352 221 580 358 121 72 261 158 310 189 50 32 122 75 160 97 102 56 255 148 375 225 58 36 139 86 180 109 156 90 258 153 289 179 l32 27 -1 1021 0 1021 92 58 c51 31 122 76 158 99 36 24 97 61 135 83 85 49 418 248 610 365 177 108 661 395 870 517 88 52 198 117 245 146 128 80 718 435 1030 620 91 54 210 127 265 163 135 88 203 126 269 151 70 26 102 27 108 3 6 -20 141 -105 483 -304 66 -39 167 -98 225 -133 248 -148 479 -284 535 -315 33 -18 123 -70 200 -116 174 -102 317 -184 321 -184 1 0 56 -33 121 -73 173 -108 302 -185 448 -269 177 -102 214 -125 330 -200 55 -35 150 -93 210 -128 61 -35 187 -114 280 -175 177 -116 264 -169 401 -242 45 -23 88 -50 95 -59 12 -14 14 -210 13 -1228 -1 -666 -4 -1240 -8 -1276 l-6 -65 82 -47 c46 -27 94 -55 108 -63 14 -8 79 -46 145 -83 66 -38 188 -108 270 -157 83 -49 215 -126 295 -173 80 -47 172 -101 205 -121 33 -20 89 -52 125 -71 36 -19 146 -83 245 -143 99 -60 221 -133 270 -162 50 -28 149 -86 220 -129 72 -43 166 -100 210 -126 69 -41 187 -90 217 -90 6 0 9 220 8 533 -1 292 -1 1329 -1 2302 1 1681 -3 1975 -29 2105 -28 147 -96 285 -214 433 -63 79 -224 185 -561 367 -44 24 -372 219 -730 433 -357 215 -738 441 -845 504 -107 63 -229 136 -270 162 -41 27 -187 115 -325 196 -279 166 -561 335 -615 370 -20 12 -61 35 -90 50 -57 28 -225 129 -295 175 -22 15 -179 109 -350 209 -170 101 -346 204 -390 231 -44 26 -150 87 -235 135 -85 48 -258 148 -385 223 -362 212 -402 235 -539 307 -115 61 -136 68 -195 71 -38 2 -83 -2 -106 -9z"
id="path1"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2870 8920 c-13 -8 -15 -115 -18 -836 -2 -482 0 -830 5 -835 10 -10 6551 -14 6561 -4 3 3 -17 29 -44 58 -67 69 -214 242 -297 348 -70 91 -227 384 -227 425 0 12 -4 33 -9 47 -5 13 -17 97 -26 188 -14 132 -16 209 -10 392 l7 227 -2963 0 c-1850 0 -2970 -4 -2979 -10z"
id="path2"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M2249 8686 c-19 -7 -63 -28 -99 -47 -75 -41 -621 -360 -725 -423 -38 -24 -108 -66 -155 -94 -47 -27 -182 -108 -300 -179 -118 -71 -240 -143 -270 -160 -30 -17 -95 -54 -145 -83 -49 -30 -178 -103 -285 -162 -107 -60 -211 -122 -230 -137 l-35 -28 3 -1679 c4 -1807 2 -1743 56 -1900 49 -146 109 -245 229 -377 100 -110 180 -163 457 -300 118 -58 283 -145 365 -193 83 -48 215 -125 295 -172 258 -150 522 -302 650 -375 69 -39 171 -99 228 -134 117 -73 680 -403 687 -403 3 0 62 -36 132 -81 71 -45 162 -99 203 -122 41 -22 131 -77 200 -122 69 -46 168 -107 220 -137 93 -54 205 -122 325 -197 159 -100 256 -158 440 -264 110 -63 311 -180 446 -260 236 -139 333 -198 639 -387 357 -220 445 -270 477 -270 10 0 11 79 8 353 -3 193 -7 784 -9 1311 -5 977 -5 975 -39 976 -5 0 -56 31 -115 68 -270 173 -705 441 -892 550 -182 106 -547 326 -790 477 -135 84 -264 163 -286 176 -23 13 -62 37 -85 52 -40 27 -222 135 -474 282 -55 32 -176 104 -270 160 -93 56 -240 142 -325 190 -85 48 -180 104 -210 125 -30 20 -74 47 -97 60 -24 13 -44 28 -45 34 -1 6 -3 853 -3 1881 l0 1871 -54 61 c-61 69 -74 75 -122 59z"
id="path3"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M12015 7197 c-101 -53 -317 -182 -500 -297 -55 -35 -134 -82 -175 -105 -163 -91 -536 -314 -835 -499 -77 -48 -254 -155 -392 -237 l-253 -150 0 -575 c0 -362 -4 -582 -10 -594 -5 -10 -34 -31 -62 -47 -85 -47 -361 -218 -471 -292 -56 -37 -176 -110 -267 -161 -91 -51 -183 -105 -205 -120 -22 -15 -130 -80 -240 -145 -110 -65 -252 -149 -315 -188 -63 -38 -176 -106 -250 -150 -74 -44 -214 -127 -310 -185 -96 -58 -233 -141 -305 -183 -71 -43 -164 -99 -205 -124 -41 -25 -167 -103 -280 -172 -113 -69 -230 -140 -260 -158 -73 -42 -223 -145 -232 -159 -4 -6 -8 -599 -8 -1319 l0 -1307 53 26 c75 38 392 221 460 266 32 21 60 38 63 38 2 0 36 21 76 47 40 25 217 133 393 238 176 106 389 235 473 286 84 52 188 115 230 140 42 25 163 97 267 161 105 63 228 136 275 163 47 26 117 68 155 93 192 123 274 173 560 344 408 244 519 310 584 350 29 18 102 62 162 98 308 186 415 250 529 320 169 103 450 270 590 350 63 36 221 129 349 205 195 116 250 154 321 222 96 91 169 207 215 343 57 166 55 107 55 1829 l0 1586 -27 40 c-34 50 -62 74 -88 74 -11 0 -65 -23 -120 -52z"
id="path4"
style="fill:url(#radialGradient11);fill-opacity:1" />
<path
d="M5072 5275 c-24 -11 -32 -19 -28 -32 3 -10 12 -49 21 -87 20 -88 66 -204 112 -280 52 -85 180 -242 249 -306 145 -133 381 -292 579 -390 158 -79 168 -80 230 -38 28 19 120 70 206 115 216 111 316 179 440 303 158 157 261 323 330 530 21 65 39 127 39 138 0 25 -55 50 -78 36 -8 -5 -23 -39 -32 -74 -54 -200 -161 -371 -347 -551 -185 -181 -496 -349 -645 -349 -235 0 -670 304 -874 612 -56 84 -109 207 -133 307 -10 41 -22 76 -27 78 -5 1 -24 -4 -42 -12z"
id="path5"
style="fill:url(#radialGradient11);fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 KiB

@ -0,0 +1 @@
Subproject commit fa1ffbda06bc363a5a4103a155a4b65d4f910514

View file

@ -0,0 +1,56 @@
üüüü33
üü6666ü33333
üüü666666ü333333333
ü66666666666ü333333333333
33ü666666666666ü333333333333333
3333336666üü6666666ü333333333ü3333333‡
‡3333333ü6666ü66666666ü33333333333333333333‡
33333333333ü666ü66ü666666ü33333333333333333333‡33‡
33333333333333ü666üüü6666666ü333333333333333333333‡333333
33333333333333333ü66ü6666666üü 33333333333333‡33333333‡‡333333
333333333333333333333366ü66666ü 333333333333‡3‡‡3‡3333‡‡3333‡‡‡
33333333333333333333333ü666üüü 3333333333333‡3‡33333‡3333‡‡333
333333333333333333333ü333üüüü 333333333333‡3‡‡3‡333333‡‡‡3‡
333333333333333333ü333üü33 333333333‡33‡‡3‡‡333333‡‡
3333333333333333ü333üü 3333333‡3‡3‡‡3‡‡3333‡‡
3333333333333333üü3 3333333‡33‡33‡‡‡33‡
3333333333333ü33 333‡3‡‡‡3‡33‡‡3‡
3333333333333333 33‡‡3‡3‡‡3‡3‡‡3
333333333ü33ü333 333‡‡3‡‡3‡‡33‡3
3333333333ü33ü3ü 33‡3‡3‡3‡33‡‡3‡
33333ü33ü3üüü666 3333‡‡3‡‡3‡3333
3333ü33üüü66666ü 333‡33‡33‡‡3‡‡3
333üüüüü6üüü6666 33‡3‡‡3‡‡33‡33‡
33ü6666ü6666666ü 3‡333‡3‡3‡3‡‡3‡
ü666ü666666ü6 333333‡33‡33‡3‡
6666666666 ü 33‡‡333‡3‡3‡3‡‡3‡3‡3‡3‡3‡33‡‡3333‡‡‡‡‡ 3333333‡33‡33‡‡
6666666 üü66üü 3333333333333333333333333‡333333333333 33333333‡33‡
6666 ü6666666ü 33‡33‡33‡3‡3‡33‡3‡‡3‡‡3‡33‡‡3‡3333333‡ 33333‡‡‡
ü66666666666 33‡33333333333‡333333333‡333333333333‡‡ 33333‡
ü66666666666666 333333333333333333333333333333333333333‡‡ 3‡
üü66666666666666 ‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡3‡3‡3‡ 33
üüüüüü6666666666 ‡33‡3
33üüüüüüü6666666 33‡‡‡‡‡‡
33333üüüüüü6666ü ‡‡3‡33‡3‡‡‡
33333333üüüüüüü6 ‡333‡‡3‡‡3‡3‡‡
333333333ü3üüüüü 33‡33333‡3‡‡3‡‡
333333333333ü3ü3 33‡3‡‡3‡3‡‡3‡‡‡
3333333333333333 ‡ ‡ 333‡33‡33‡3‡‡‡‡
3333333333333ü33 3 ‡‡ 33‡‡3‡3‡‡3‡‡3‡‡
3ü33333333333333333 33 ‡‡ ‡‡3‡‡33‡‡33‡33‡‡‡‡
33ü333333333333333333 33333‡ 33‡‡‡3‡3‡33‡‡3‡33‡3‡
333333333333333ü33333333ü ‡‡33‡3333‡33‡‡3‡33‡‡3‡‡‡
3ü33ü333333333333ü33333üü666 ‡‡3‡3‡33‡3‡3‡3‡33‡33333333‡
33ü33ü33ü33333333333333ü666666 ‡333‡3‡33‡33‡33‡3‡33‡33‡33333
üüüü33ü33ü33ü33ü333üü666666666 ‡‡3‡‡3‡33‡33‡‡3‡3‡333333333333
üüüü3ü3ü33333ü336666666666666 ‡‡33‡33‡333‡3‡33‡33‡33‡333333
üüüüü3ü33ü33üü66666666666666 33‡‡33‡33‡3‡33‡333333333333
ü3ü3ü333ü3ü66666666666666 3‡3‡‡3‡‡3‡33‡‡3‡‡3333333
üüüüüüüü66666ü66666666 3‡‡33‡3‡33‡3333333333
üüüü66666666666666 33‡3‡3‡3‡33‡33333
ü666666ü6666666 3‡333333333333‡
666666666666ü 3‡‡33‡333333
66666666ü 33‡33333
66666ü 33333
666 33

View file

@ -0,0 +1,10 @@
{
"image-name": "eveos-lite",
"image-flavor": "garden",
"image-version": "0.1.0",
"image-ref": "ostree-image-signed:docker://registry.arx-ccn.com/eveos/base",
"image-tag": "garden",
"base-image-name": "bluefin",
"fedora-version": "42",
"image-build-id": "{ID}"
}

View file

@ -0,0 +1,20 @@
# EveOS Lite Garden
```
███████╗██╗ ██╗███████╗ ██████╗ ███████╗
██╔════╝██║ ██║██╔════╝██╔═══██╗██╔════╝
█████╗ ██║ ██║█████╗ ██║ ██║███████╗
██╔══╝ ╚██╗ ██╔╝██╔══╝ ██║ ██║╚════██║
███████╗ ╚████╔╝ ███████╗╚██████╔╝███████║
╚══════╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚══════╝
┌─────────────────────────────────────────────────────────────┐
│ Privacy-First Community OS - Your Digital Sanctuary │
└─────────────────────────────────────────────────────────────┘
```
🔐 `%IMAGE_NAME%:%IMAGE_TAG%`
- %TIP%
%KEY_WARN%

View file

@ -0,0 +1,18 @@
Your data stays on your device, always under your control
Built by the community, for the community
Zero telemetry, zero tracking, zero compromise on your privacy
Open-source code means thousands of eyes ensuring your security
Decentralized by design; no single point of failure or control
Nostr: Protocol for the free internet
Bitcoin: Peer-to-peer money for a peer-to-peer world
No ads, no algorithms, no manipulation
Your keys, your data, your rules
Privacy isn't about hiding, it's about choosing what to share
Interoperable protocols prevent vendor lock-in forever
Offline-first design works without constant cloud dependency
No dark patterns designed to extract your attention
Your digital footprint shouldn't be a product
Freedom tech: Tools that respect human dignity
Sovereign computing for sovereign individuals
Privacy by default, transparency by design
Fork it, modify it, make it yours