Rebrand to ChillcraftOS
348
Makefile
@@ -1,16 +1,9 @@
|
||||
GRUB_THEMES=ceratopsian-theme/grub\
|
||||
emerald-theme/grub\
|
||||
homeworld-theme/grub\
|
||||
futureprototype-theme/grub\
|
||||
moonlight-theme/grub\
|
||||
softwaves-theme/grub\
|
||||
lines-theme/grub\
|
||||
joy-theme/grub\
|
||||
spacefun-theme/grub
|
||||
GRUB_THEMES=\
|
||||
chillcraftos-theme/grub
|
||||
DEFAULT_BACKGROUND=desktop-background
|
||||
|
||||
PIXMAPS=$(wildcard pixmaps/*.png)
|
||||
DESKTOPFILES=$(wildcard *.desktop)
|
||||
DESKTOP_FILES=$(wildcard *.desktop)
|
||||
|
||||
.PHONY: all clean install install-local
|
||||
all: build-grub build-emblems build-logos
|
||||
@@ -28,24 +21,30 @@ build-grub clean-grub install-grub:
|
||||
.PHONY: build-emblems clean-emblems install-emblems
|
||||
build-emblems clean-emblems install-emblems:
|
||||
@target=`echo $@ | sed s/-emblems//`; \
|
||||
$(MAKE) $$target -C emblems-debian || exit 1;
|
||||
$(MAKE) $$target -C emblems-chillcraftos || exit 1;
|
||||
|
||||
.PHONY: build-logos clean-logos install-logos
|
||||
build-logos clean-logos install-logos:
|
||||
@target=`echo $@ | sed s/-logos//`; \
|
||||
$(MAKE) $$target -C debian-logos || exit 1;
|
||||
$(MAKE) $$target -C chillcraftos-logos || exit 1;
|
||||
|
||||
|
||||
install: install-grub install-emblems install-logos install-local
|
||||
|
||||
install-desktop-files:
|
||||
ifneq ($(strip $(DESKTOP_FILES)),)
|
||||
install -d $(DESTDIR)/usr/share/desktop-base
|
||||
install -m 644 $(DESKTOP_FILES) $(DESTDIR)/usr/share/desktop-base/
|
||||
endif
|
||||
|
||||
install-local:
|
||||
# Ensure SVG files don’t include inkscape:export-filename. (See #956102)
|
||||
# Ensure SVG files don't include inkscape:export-filename. (See #956102)
|
||||
if find . -name "*.svg" -exec grep inkscape:export-filename {} + ; then \
|
||||
echo "error: please remove inkscape:export-filename attribute from SVGs, it tends to leak information about the user who did the export."; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
||||
# debian logo in circle as default user face icon
|
||||
# ChillcraftOS logo in circle as default user face icon
|
||||
install -d $(DESTDIR)/etc/skel
|
||||
$(INSTALL_DATA) defaults/common/etc/skel/.face $(DESTDIR)/etc/skel
|
||||
cd $(DESTDIR)/etc/skel && ln -s .face .face.icon
|
||||
@@ -53,18 +52,19 @@ install-local:
|
||||
# background files
|
||||
mkdir -p $(DESTDIR)/usr/share/images/desktop-base
|
||||
cd $(DESTDIR)/usr/share/images/desktop-base && ln -s $(DEFAULT_BACKGROUND) default
|
||||
|
||||
# desktop files
|
||||
mkdir -p $(DESTDIR)/usr/share/desktop-base
|
||||
$(INSTALL_DATA) $(DESKTOPFILES) $(DESTDIR)/usr/share/desktop-base/
|
||||
$(MAKE) install-desktop-files
|
||||
|
||||
# pixmaps files
|
||||
mkdir -p $(DESTDIR)/usr/share/pixmaps
|
||||
$(INSTALL_DATA) $(PIXMAPS) $(DESTDIR)/usr/share/pixmaps/
|
||||
|
||||
|
||||
# Create a 'debian-theme' symlink in plymouth themes folder, pointing at the
|
||||
# Create a 'system-theme' symlink in plymouth themes folder, pointing at the
|
||||
# plymouth theme for the currently active 'desktop-theme' alternative.
|
||||
mkdir -p $(DESTDIR)/usr/share/plymouth/themes
|
||||
ln -s ../../desktop-base/active-theme/plymouth $(DESTDIR)/usr/share/plymouth/themes/debian-theme
|
||||
ln -s ../../desktop-base/active-theme/plymouth $(DESTDIR)/usr/share/plymouth/themes/system-theme
|
||||
|
||||
# Set Plasma 5 customizations
|
||||
install -d $(DESTDIR)/etc/xdg/autostart
|
||||
@@ -75,13 +75,13 @@ install-local:
|
||||
$(INSTALL_DATA) $(wildcard defaults/kde/etc/xdg/plasma-workspace/env/*) $(DESTDIR)/etc/xdg/plasma-workspace/env/
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/kf5-settings
|
||||
$(INSTALL_DATA) $(wildcard defaults/kde/kf5-settings/*) $(DESTDIR)/usr/share/desktop-base/kf5-settings/
|
||||
install -d $(DESTDIR)/usr/share/plasma/look-and-feel/org.debian.desktop/contents
|
||||
$(INSTALL_DATA) defaults/kde/plasma/look-and-feel/org.debian.desktop/metadata.json $(DESTDIR)/usr/share/plasma/look-and-feel/org.debian.desktop
|
||||
$(INSTALL_DATA) defaults/kde/plasma/look-and-feel/org.debian.desktop/contents/defaults $(DESTDIR)/usr/share/plasma/look-and-feel/org.debian.desktop/contents
|
||||
install -d $(DESTDIR)/usr/share/plasma/look-and-feel/org.debian.desktop/contents/layouts
|
||||
$(INSTALL_DATA) $(wildcard defaults/kde/plasma/look-and-feel/org.debian.desktop/contents/layouts/*) $(DESTDIR)/usr/share/plasma/look-and-feel/org.debian.desktop/contents/layouts/
|
||||
install -d $(DESTDIR)/usr/share/plasma/look-and-feel/org.debian.desktop/contents/previews
|
||||
$(INSTALL_DATA) $(wildcard defaults/kde/plasma/look-and-feel/org.debian.desktop/contents/previews/*) $(DESTDIR)/usr/share/plasma/look-and-feel/org.debian.desktop/contents/previews/
|
||||
install -d $(DESTDIR)/usr/share/plasma/look-and-feel/me.chillcraft.desktop/contents
|
||||
$(INSTALL_DATA) defaults/kde/plasma/look-and-feel/me.chillcraft.desktop/metadata.json $(DESTDIR)/usr/share/plasma/look-and-feel/me.chillcraft.desktop
|
||||
$(INSTALL_DATA) defaults/kde/plasma/look-and-feel/me.chillcraft.desktop/contents/defaults $(DESTDIR)/usr/share/plasma/look-and-feel/me.chillcraft.desktop/contents
|
||||
install -d $(DESTDIR)/usr/share/plasma/look-and-feel/me.chillcraft.desktop/contents/layouts
|
||||
$(INSTALL_DATA) $(wildcard defaults/kde/plasma/look-and-feel/me.chillcraft.desktop/contents/layouts/*) $(DESTDIR)/usr/share/plasma/look-and-feel/me.chillcraft.desktop/contents/layouts/
|
||||
install -d $(DESTDIR)/usr/share/plasma/look-and-feel/me.chillcraft.desktop/contents/previews
|
||||
$(INSTALL_DATA) $(wildcard defaults/kde/plasma/look-and-feel/me.chillcraft.desktop/contents/previews/*) $(DESTDIR)/usr/share/plasma/look-and-feel/me.chillcraft.desktop/contents/previews/
|
||||
|
||||
# Xfce 4.6
|
||||
mkdir -p $(DESTDIR)/usr/share/desktop-base/profiles/xdg-config/xfce4/xfconf/xfce-perchannel-xml
|
||||
@@ -91,294 +91,34 @@ install-local:
|
||||
mkdir -p $(DESTDIR)/usr/share/gnome-background-properties
|
||||
|
||||
|
||||
# Space Fun theme (Squeeze’s default)
|
||||
# ChillcraftOS theme (single default theme)
|
||||
### Plymouth theme
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/spacefun
|
||||
$(INSTALL_DATA) $(wildcard spacefun-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/spacefun
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/spacefun-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/spacefun-theme && ln -s /usr/share/plymouth/themes/spacefun plymouth
|
||||
### Login background
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/spacefun-theme/login
|
||||
$(INSTALL_DATA) $(wildcard spacefun-theme/login/*) $(DESTDIR)/usr/share/desktop-base/spacefun-theme/login
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/chillcraftos
|
||||
$(INSTALL_DATA) $(wildcard chillcraftos-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/chillcraftos
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme && ln -s /usr/share/plymouth/themes/chillcraftos plymouth
|
||||
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/spacefun-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) spacefun-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/spacefun-theme/wallpaper
|
||||
$(INSTALL_DATA) spacefun-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/spacefun-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard spacefun-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/spacefun-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) spacefun-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-spacefun.xml
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) chillcraftos-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/wallpaper
|
||||
$(INSTALL_DATA) chillcraftos-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard chillcraftos-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) chillcraftos-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/chillcraftos.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/spacefun-theme/wallpaper SpaceFun
|
||||
|
||||
### Lockscreen (same as wallpaper)
|
||||
cd $(DESTDIR)/usr/share/desktop-base/spacefun-theme && ln -s wallpaper lockscreen
|
||||
|
||||
|
||||
# Joy theme (Wheezy’s default)
|
||||
### Plymouth theme
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/joy
|
||||
$(INSTALL_DATA) $(wildcard joy-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/joy
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/joy-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/joy-theme && ln -s /usr/share/plymouth/themes/joy plymouth
|
||||
### Login background
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/joy-theme/login
|
||||
$(INSTALL_DATA) $(wildcard joy-theme/login/*) $(DESTDIR)/usr/share/desktop-base/joy-theme/login
|
||||
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/joy-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) joy-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/joy-theme/wallpaper
|
||||
$(INSTALL_DATA) joy-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/joy-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard joy-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/joy-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) joy-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-joy.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/joy-theme/wallpaper Joy
|
||||
|
||||
### Lockscreen
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/joy-theme/lockscreen/contents/images
|
||||
$(INSTALL_DATA) joy-theme/lockscreen/metadata.json $(DESTDIR)/usr/share/desktop-base/joy-theme/lockscreen
|
||||
$(INSTALL_DATA) joy-theme/lockscreen/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/joy-theme/lockscreen
|
||||
$(INSTALL_DATA) $(wildcard joy-theme/lockscreen/contents/images/*) $(DESTDIR)/usr/share/desktop-base/joy-theme/lockscreen/contents/images/
|
||||
# Lock screen symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/joy-theme/lockscreen JoyLockScreen
|
||||
|
||||
# Joy Inksplat theme (Wheezy’s alternate theme)
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/joy-inksplat-theme
|
||||
### Plymouth theme
|
||||
# Reuse « normal » joy theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/joy-inksplat-theme \
|
||||
&& ln -s /usr/share/plymouth/themes/joy plymouth \
|
||||
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/joy-inksplat-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) joy-inksplat-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/joy-inksplat-theme/wallpaper
|
||||
$(INSTALL_DATA) joy-inksplat-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/joy-inksplat-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard joy-inksplat-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/joy-inksplat-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) joy-inksplat-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-joy-inksplat.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/joy-inksplat-theme/wallpaper JoyInksplat
|
||||
### Lockscreen (same as Joy)
|
||||
cd $(DESTDIR)/usr/share/desktop-base/joy-inksplat-theme && ln -s /usr/share/desktop-base/joy-theme/grub grub && ln -s /usr/share/desktop-base/joy-theme/lockscreen lockscreen && ln -s /usr/share/desktop-base/joy-theme/login login
|
||||
|
||||
|
||||
# Lines theme (Jessie’s default)
|
||||
### Plymouth theme
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/lines
|
||||
$(INSTALL_DATA) $(wildcard lines-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/lines
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/lines-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/lines-theme && ln -s /usr/share/plymouth/themes/lines plymouth
|
||||
### Login background
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/lines-theme/login
|
||||
$(INSTALL_DATA) $(wildcard lines-theme/login/*) $(DESTDIR)/usr/share/desktop-base/lines-theme/login
|
||||
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/lines-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) lines-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/lines-theme/wallpaper
|
||||
$(INSTALL_DATA) lines-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/lines-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard lines-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/lines-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) lines-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-lines.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/lines-theme/wallpaper Lines
|
||||
|
||||
### Lockscreen
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/lines-theme/lockscreen/contents/images
|
||||
$(INSTALL_DATA) lines-theme/lockscreen/metadata.json $(DESTDIR)/usr/share/desktop-base/lines-theme/lockscreen
|
||||
$(INSTALL_DATA) lines-theme/lockscreen/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/lines-theme/lockscreen
|
||||
$(INSTALL_DATA) $(wildcard lines-theme/lockscreen/contents/images/*) $(DESTDIR)/usr/share/desktop-base/lines-theme/lockscreen/contents/images/
|
||||
# Lock screen symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/lines-theme/lockscreen LinesLockScreen
|
||||
|
||||
|
||||
# Soft waves theme (Stretch’s default)
|
||||
### Plymouth theme
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/softwaves
|
||||
$(INSTALL_DATA) $(wildcard softwaves-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/softwaves
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/softwaves-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/softwaves-theme && ln -s /usr/share/plymouth/themes/softwaves plymouth
|
||||
### Login background
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/softwaves-theme/login
|
||||
$(INSTALL_DATA) $(wildcard softwaves-theme/login/*) $(DESTDIR)/usr/share/desktop-base/softwaves-theme/login
|
||||
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/softwaves-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) softwaves-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/softwaves-theme/wallpaper
|
||||
$(INSTALL_DATA) softwaves-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/softwaves-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard softwaves-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/softwaves-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) softwaves-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-softwaves.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/softwaves-theme/wallpaper SoftWaves
|
||||
|
||||
### Lockscreen
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/softwaves-theme/lockscreen/contents/images
|
||||
$(INSTALL_DATA) softwaves-theme/lockscreen/metadata.json $(DESTDIR)/usr/share/desktop-base/softwaves-theme/lockscreen
|
||||
$(INSTALL_DATA) softwaves-theme/lockscreen/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/softwaves-theme/lockscreen
|
||||
$(INSTALL_DATA) $(wildcard softwaves-theme/lockscreen/contents/images/*) $(DESTDIR)/usr/share/desktop-base/softwaves-theme/lockscreen/contents/images/
|
||||
# Lock screen symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/softwaves-theme/lockscreen SoftWavesLockScreen
|
||||
|
||||
# futurePrototype theme (Buster’s default)
|
||||
### Plymouth theme
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/futureprototype
|
||||
$(INSTALL_DATA) $(wildcard futureprototype-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/futureprototype
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/futureprototype-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/futureprototype-theme && ln -s /usr/share/plymouth/themes/futureprototype plymouth
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/chillcraftos-theme/wallpaper ChillcraftOS
|
||||
|
||||
### Login background
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/login
|
||||
$(INSTALL_DATA) $(wildcard futureprototype-theme/login/*) $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/login
|
||||
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) futureprototype-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/wallpaper
|
||||
$(INSTALL_DATA) futureprototype-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard futureprototype-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) futureprototype-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-futureprototype.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/futureprototype-theme/wallpaper FuturePrototype
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/login
|
||||
$(INSTALL_DATA) $(wildcard chillcraftos-theme/login/*) $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/login
|
||||
|
||||
### Lockscreen is using the same image as wallpaper
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/lockscreen/contents/images
|
||||
$(INSTALL_DATA) futureprototype-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/lockscreen
|
||||
$(INSTALL_DATA) futureprototype-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/lockscreen
|
||||
$(INSTALL_DATA) $(wildcard futureprototype-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/lockscreen/contents/images/
|
||||
|
||||
### Alternate wallpaper with Debian swirl
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images
|
||||
$(INSTALL_DATA) futureprototype-theme/wallpaper-withlogo/metadata.json $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo
|
||||
$(INSTALL_DATA) futureprototype-theme/wallpaper-withlogo/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo
|
||||
$(INSTALL_DATA) $(wildcard futureprototype-theme/wallpaper-withlogo/contents/images/*) $(DESTDIR)/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/lockscreen/contents/images
|
||||
$(INSTALL_DATA) chillcraftos-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/lockscreen
|
||||
$(INSTALL_DATA) chillcraftos-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/lockscreen
|
||||
$(INSTALL_DATA) $(wildcard chillcraftos-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/chillcraftos-theme/lockscreen/contents/images/
|
||||
# Lock screen symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo FuturePrototypeWithLogo
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/chillcraftos-theme/wallpaper chillcraftos_wallpaper
|
||||
|
||||
|
||||
# homeworld theme (Bullseye’s default)
|
||||
### Plymouth theme
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/homeworld
|
||||
$(INSTALL_DATA) $(wildcard homeworld-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/homeworld
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/homeworld-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/homeworld-theme && ln -s /usr/share/plymouth/themes/homeworld plymouth
|
||||
### Login background
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/homeworld-theme/login
|
||||
$(INSTALL_DATA) $(wildcard homeworld-theme/login/*) $(DESTDIR)/usr/share/desktop-base/homeworld-theme/login
|
||||
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/homeworld-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) homeworld-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/homeworld-theme/wallpaper
|
||||
$(INSTALL_DATA) homeworld-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/homeworld-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard homeworld-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/homeworld-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) homeworld-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-homeworld.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/homeworld-theme/wallpaper homeworld
|
||||
|
||||
### Lockscreen is using the same image as wallpaper
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/homeworld-theme/lockscreen/contents/images
|
||||
$(INSTALL_DATA) homeworld-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/homeworld-theme/lockscreen
|
||||
$(INSTALL_DATA) homeworld-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/homeworld-theme/lockscreen
|
||||
$(INSTALL_DATA) $(wildcard homeworld-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/homeworld-theme/lockscreen/contents/images/
|
||||
|
||||
# Lock screen symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/homeworld-theme/wallpaper homeworld_wallpaper
|
||||
|
||||
# emerald theme (Bookworm’s default)
|
||||
### Plymouth theme
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/emerald
|
||||
$(INSTALL_DATA) $(wildcard emerald-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/emerald
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/emerald-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/emerald-theme && ln -s /usr/share/plymouth/themes/emerald plymouth
|
||||
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/emerald-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) emerald-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/emerald-theme/wallpaper
|
||||
$(INSTALL_DATA) emerald-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/emerald-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard emerald-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/emerald-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) emerald-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-emerald.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/emerald-theme/wallpaper emerald
|
||||
|
||||
### Login background
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/emerald-theme/login
|
||||
$(INSTALL_DATA) $(wildcard emerald-theme/login/*) $(DESTDIR)/usr/share/desktop-base/emerald-theme/login
|
||||
|
||||
### Lockscreen is using the same image as wallpaper
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/emerald-theme/lockscreen/contents/images
|
||||
$(INSTALL_DATA) emerald-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/emerald-theme/lockscreen
|
||||
$(INSTALL_DATA) emerald-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/emerald-theme/lockscreen
|
||||
$(INSTALL_DATA) $(wildcard emerald-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/emerald-theme/lockscreen/contents/images/
|
||||
|
||||
# Lock screen symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/emerald-theme/wallpaper emerald_wallpaper
|
||||
|
||||
# ceratopsian theme (Trixie’s default)
|
||||
### Plymouth theme
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/ceratopsian
|
||||
$(INSTALL_DATA) $(wildcard ceratopsian-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/ceratopsian
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme && ln -s /usr/share/plymouth/themes/ceratopsian plymouth
|
||||
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) ceratopsian-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/wallpaper
|
||||
$(INSTALL_DATA) ceratopsian-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard ceratopsian-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) ceratopsian-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-ceratopsian.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/ceratopsian-theme/wallpaper ceratopsian
|
||||
|
||||
### Login background
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/login
|
||||
$(INSTALL_DATA) $(wildcard ceratopsian-theme/login/*) $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/login
|
||||
|
||||
### Lockscreen is using the same image as wallpaper
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/lockscreen/contents/images
|
||||
$(INSTALL_DATA) ceratopsian-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/lockscreen
|
||||
$(INSTALL_DATA) ceratopsian-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/lockscreen
|
||||
$(INSTALL_DATA) $(wildcard ceratopsian-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/ceratopsian-theme/lockscreen/contents/images/
|
||||
|
||||
# Lock screen symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/ceratopsian-theme/wallpaper ceratopsian_wallpaper
|
||||
# End ceratopsian theme
|
||||
|
||||
# Moonlight theme
|
||||
### Plymouth theme
|
||||
install -d $(DESTDIR)/usr/share/plymouth/themes/moonlight
|
||||
$(INSTALL_DATA) $(wildcard moonlight-theme/plymouth/*) $(DESTDIR)/usr/share/plymouth/themes/moonlight
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/moonlight-theme
|
||||
cd $(DESTDIR)/usr/share/desktop-base/moonlight-theme && ln -s /usr/share/plymouth/themes/moonlight plymouth
|
||||
### Login background
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/moonlight-theme/login
|
||||
$(INSTALL_DATA) $(wildcard moonlight-theme/login/*) $(DESTDIR)/usr/share/desktop-base/moonlight-theme/login
|
||||
### Wallpapers
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/moonlight-theme/wallpaper/contents/images
|
||||
$(INSTALL_DATA) moonlight-theme/wallpaper/metadata.json $(DESTDIR)/usr/share/desktop-base/moonlight-theme/wallpaper
|
||||
$(INSTALL_DATA) moonlight-theme/wallpaper/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/moonlight-theme/wallpaper
|
||||
$(INSTALL_DATA) $(wildcard moonlight-theme/wallpaper/contents/images/*) $(DESTDIR)/usr/share/desktop-base/moonlight-theme/wallpaper/contents/images/
|
||||
$(INSTALL_DATA) moonlight-theme/gnome-wp-list.xml $(DESTDIR)/usr/share/gnome-background-properties/debian-moonlight.xml
|
||||
# Wallpaper symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/moonlight-theme/wallpaper moonlight
|
||||
|
||||
### Lockscreen
|
||||
install -d $(DESTDIR)/usr/share/desktop-base/moonlight-theme/lockscreen/contents/images
|
||||
$(INSTALL_DATA) moonlight-theme/lockscreen/metadata.json $(DESTDIR)/usr/share/desktop-base/moonlight-theme/lockscreen
|
||||
$(INSTALL_DATA) moonlight-theme/lockscreen/gnome-background.xml $(DESTDIR)/usr/share/desktop-base/moonlight-theme/lockscreen
|
||||
$(INSTALL_DATA) $(wildcard moonlight-theme/lockscreen/contents/images/*) $(DESTDIR)/usr/share/desktop-base/moonlight-theme/lockscreen/contents/images/
|
||||
# Lock screen symlink for KDE
|
||||
install -d $(DESTDIR)/usr/share/wallpapers
|
||||
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/moonlight-theme/lockscreen MoonlightLockScreen
|
||||
|
||||
include Makefile.inc
|
||||
include Makefile.inc
|
||||
@@ -1,29 +0,0 @@
|
||||
dir = usr/share/desktop-base/ceratopsian-theme/grub
|
||||
|
||||
.PHONY: build clean install
|
||||
|
||||
files = \
|
||||
grub-4x3.png \
|
||||
grub-16x9.png
|
||||
|
||||
build: $(files)
|
||||
|
||||
clean:
|
||||
rm -f grub-4x3.png.raw grub-16x9.png.raw
|
||||
rm -f grub-4x3.png grub-16x9.png
|
||||
|
||||
install:
|
||||
install -d $(DESTDIR)/$(dir)
|
||||
$(INSTALL_DATA) $(wildcard *.png *.sh) $(DESTDIR)/$(dir)
|
||||
|
||||
grub-4x3.png: grub-4x3.svg
|
||||
inkscape --export-filename=$@ $<
|
||||
mv $@ $@.raw
|
||||
optipng $@.raw -out $@
|
||||
|
||||
grub-16x9.png: grub-16x9.svg
|
||||
inkscape --export-filename=$@ $<
|
||||
mv $@ $@.raw
|
||||
optipng $@.raw -out $@
|
||||
|
||||
include ../../Makefile.inc
|
||||
@@ -1,8 +0,0 @@
|
||||
[Plymouth Theme]
|
||||
Name=Ceratopsian theme for Debian 13.0 Trixie
|
||||
Description=Ceratopsian theme by Elise Couper
|
||||
ModuleName=script
|
||||
|
||||
[script]
|
||||
ImageDir=/usr/share/plymouth/themes/ceratopsian
|
||||
ScriptFile=/usr/share/plymouth/themes/ceratopsian/ceratopsian.script
|
||||
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 274 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 827 B |
|
Before Width: | Height: | Size: 364 B |
|
Before Width: | Height: | Size: 365 B |
|
Before Width: | Height: | Size: 65 KiB |
@@ -1,138 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
version="1.1"
|
||||
id="root"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="380px"
|
||||
height="380px"
|
||||
viewBox="0 0 380 380"
|
||||
enable-background="new 0 0 380 380"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="logo.svg"
|
||||
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
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"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"><metadata
|
||||
id="metadata10"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs8" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1831"
|
||||
inkscape:window-height="924"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.3894997"
|
||||
inkscape:cx="-84.562811"
|
||||
inkscape:cy="158.33037"
|
||||
inkscape:window-x="124"
|
||||
inkscape:window-y="134"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="root"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-page="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" /><circle
|
||||
r="179"
|
||||
cy="190"
|
||||
cx="190"
|
||||
id="path817"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.99998;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /><g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
transform="matrix(1.8539199,0,0,1.8539199,953.0737,104.96348)"
|
||||
id="g1007"
|
||||
style="display:inline;overflow:visible;fill:#25404f;fill-opacity:1;stroke-width:4.97374"><g
|
||||
transform="translate(-455.08059,-8.3559995)"
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
id="Layer_1-7"
|
||||
ns2:layer="yes"
|
||||
ns2:dimmedPercent="50"
|
||||
ns2:rgbTrio="#4F008000FFFF"><g
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
id="g984"><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 51.986,57.297 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
|
||||
id="path960" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 61.631,54.893 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
|
||||
id="path962" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 65.191,45.629 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
|
||||
id="path964" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 45.172,1.399 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
|
||||
id="path966" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
|
||||
id="path968" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 76.992,46.856 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 L 60.16,65.878 C 50.142,70.591 36.226,61.251 36.409,48.507 c -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.348,-5.97 2.967,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 C 83.519,18.706 76.074,10.902 69.225,7.24 70.063,8.007 71.121,8.97 70.741,9.121 67.335,7.093 67.934,6.935 67.446,6.078 64.671,4.949 64.489,6.169 62.651,6.08 57.421,3.306 56.413,3.601 51.6,1.863 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 C 28.751,98.334 26.418,96.056 25.78,94.795 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 L 8.412,66.472 C 7.926,65.74 7.631,64.945 7.24,64.165 l 0.276,-2.75 C 4.667,58.121 6.719,47.409 7.13,41.534 7.415,39.145 9.508,36.602 11.1,32.614 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
|
||||
id="path970" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 32.372,59.764 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
|
||||
id="path972" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 35.164,59.654 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
|
||||
id="path974" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 84.568,48.916 -0.264,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.77,-3.328 2.915,-6.968 3.395,-10.656"
|
||||
id="path976" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="M 45.527,0.537 C 46.742,0.092 48.514,0.293 49.803,0 48.123,0.141 46.451,0.225 44.8,0.438 l 0.727,0.099"
|
||||
id="path978" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 2.872,23.219 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
|
||||
id="path980" /><path
|
||||
style="fill:#25404f;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="M 0,35.215 C 0.563,33.487 0.665,32.449 0.88,31.449 -0.676,33.438 0.164,33.862 0,35.215"
|
||||
id="path982" /></g></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 110 KiB |
|
Before Width: | Height: | Size: 127 KiB |
@@ -1,14 +0,0 @@
|
||||
<background>
|
||||
<static>
|
||||
<duration>8640000.0</duration>
|
||||
<file>
|
||||
<size width="1080" height="2160">/usr/share/desktop-base/ceratopsian-theme/wallpaper/contents/images/1080x2160.svg</size>
|
||||
<size width="1280" height="800">/usr/share/desktop-base/ceratopsian-theme/wallpaper/contents/images/1280x800.svg</size>
|
||||
<size width="1280" height="1024">/usr/share/desktop-base/ceratopsian-theme/wallpaper/contents/images/1280x1024.svg</size>
|
||||
<size width="1920" height="1080">/usr/share/desktop-base/ceratopsian-theme/wallpaper/contents/images/1920x1080.svg</size>
|
||||
<size width="1920" height="1200">/usr/share/desktop-base/ceratopsian-theme/wallpaper/contents/images/1920x1200.svg</size>
|
||||
<size width="2520" height="1080">/usr/share/desktop-base/ceratopsian-theme/wallpaper/contents/images/2520x1080.svg</size>
|
||||
</file>
|
||||
</static>
|
||||
</background>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
dir = usr/share/desktop-base/debian-logos
|
||||
dir = usr/share/desktop-base/os-logos
|
||||
|
||||
.PHONY: build clean install
|
||||
|
||||
@@ -28,4 +28,4 @@ install:
|
||||
$(INSTALL_DATA) $(wildcard *.svg) $(DESTDIR)/$(dir)
|
||||
$(INSTALL_DATA) $(wildcard *.png) $(DESTDIR)/$(dir)
|
||||
|
||||
include ../Makefile.inc
|
||||
include ../Makefile.inc
|
||||
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
@@ -3,8 +3,8 @@
|
||||
<wallpapers>
|
||||
<wallpaper>
|
||||
<!-- don't include words such as "wallpaper" (avoids translations) -->
|
||||
<name>Ceratopsian</name>
|
||||
<filename>/usr/share/desktop-base/ceratopsian-theme/wallpaper/gnome-background.xml</filename>
|
||||
<name>ChillcraftOS</name>
|
||||
<filename>/usr/share/desktop-base/chillcraftos-theme/wallpaper/gnome-background.xml</filename>
|
||||
<options>zoom</options>
|
||||
<pcolor>#ffffff</pcolor>
|
||||
<scolor>#000000</scolor>
|
||||
@@ -1,4 +1,4 @@
|
||||
dir = usr/share/desktop-base/joy-theme/grub
|
||||
dir = usr/share/desktop-base/chillcraftos-theme/grub
|
||||
|
||||
.PHONY: build clean install
|
||||
|
||||
|
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 65 KiB |
|
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 65 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
BIN
chillcraftos-theme/plymouth/background.png
Normal file
|
After Width: | Height: | Size: 366 B |
8
chillcraftos-theme/plymouth/chillcraftos.plymouth
Normal file
@@ -0,0 +1,8 @@
|
||||
[Plymouth Theme]
|
||||
Name=Splash screen for ChillcraftOS
|
||||
Description=A splash theme for plymouth
|
||||
ModuleName=script
|
||||
|
||||
[script]
|
||||
ImageDir=/usr/share/plymouth/themes/chillcraftos
|
||||
ScriptFile=/usr/share/plymouth/themes/chillcraftos/chillcraftos.script
|
||||
@@ -1,41 +1,15 @@
|
||||
# homeworld.script - boot splash using script plugin
|
||||
#
|
||||
# Copyright (C) 2009 Canonical Ltd.
|
||||
# Copyright © 2010-2021 Aurélien Couderc <coucouf@debian.org>
|
||||
# Copyright © 2014-2021 Juliette Taka <juliette.belin@logilab.fr>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
# 02111-1307, USA.
|
||||
#
|
||||
# Written by: Alberto Milone <alberto.milone@canonical.com>
|
||||
#
|
||||
# Based on the example provided with the "script plugin" written by:
|
||||
# Charlie Brej <cbrej@cs.man.ac.uk>
|
||||
#
|
||||
|
||||
# based on: 'homeworld', by debian
|
||||
|
||||
#------------------------------- Constants -----------------------------------------
|
||||
NB_ROTATION_STEPS = 70;
|
||||
NB_REFRESHS_BETWEEN_ANIMS = 3;
|
||||
|
||||
# Initial position of the center of the logo in % of background
|
||||
DEBIAN_POS_PCT.y = 0.68; # Debian image position in % of screen height
|
||||
DEBIAN_HEIGHT_PCT = 0.07; # Debian image height in % of smallest screen dimension
|
||||
LOGO_CENTER_PCT.x = 0.5; # Debian swirl image position in % of screen height & width
|
||||
BRAND_POS_PCT.y = 0.68; # brand image position in % of screen height
|
||||
BRAND_HEIGHT_PCT = 0.07; # brand image height in % of smallest screen dimension
|
||||
LOGO_CENTER_PCT.x = 0.5; # logo image position in % of screen height & width
|
||||
LOGO_CENTER_PCT.y = 0.5;
|
||||
LOGO_SIZE_PCT = 0.18; # Debian swirl image size in % of smallest screen dimension
|
||||
LOGO_SIZE_PCT = 0.18; # logo image size in % of smallest screen dimension
|
||||
|
||||
#------------------------------- Globals -------------------------------------------
|
||||
# are we currently prompting for a password?
|
||||
@@ -115,7 +89,7 @@ fun TextYOffset() {
|
||||
local.min_height;
|
||||
|
||||
# Put the 1st line below the logo + some spacing
|
||||
y = debian_sprite.GetY() + debian.GetHeight();
|
||||
y = brand_sprite.GetY() + brand.GetHeight();
|
||||
#Debug("y = " + y);
|
||||
|
||||
text_height = first_line_height * 7.5;
|
||||
@@ -138,8 +112,8 @@ small_dimension = Math.Min(window_max.width, window_max.height);
|
||||
#Debug("Window.GetX():" + Window.GetX() + ", Window.GetY():" + Window.GetY());
|
||||
#Debug("Window is [" + window_max.width + ";" + window_max.height + "], ratio=" + screen_ratio);
|
||||
|
||||
debian_height = small_dimension * DEBIAN_HEIGHT_PCT;
|
||||
debian_pos.y = window_max.height * DEBIAN_POS_PCT.y - debian_height/2;
|
||||
brand_height = small_dimension * BRAND_HEIGHT_PCT;
|
||||
brand_pos.y = window_max.height * BRAND_POS_PCT.y - brand_height/2;
|
||||
logo_size = small_dimension * LOGO_SIZE_PCT;
|
||||
logo_center.x = window_max.width * LOGO_CENTER_PCT.x;
|
||||
logo_center.y = window_max.height * LOGO_CENTER_PCT.y;
|
||||
@@ -149,45 +123,70 @@ logo_pos.x = logo_center.x - logo_size/2;
|
||||
logo_pos.y = logo_center.y - logo_size/2;
|
||||
|
||||
#------------------------------- Background ----------------------------------------
|
||||
bg_image = Image("plymouth_background_homeworld.png");
|
||||
bg_image = Image("background.png");
|
||||
scaled_bg_image = bg_image.Scale(window_max.width, window_max.height);
|
||||
|
||||
# Display background
|
||||
bg_sprite = Sprite(scaled_bg_image);
|
||||
bg_sprite.SetPosition(Window.GetX() + Window.GetWidth() / 2 - scaled_bg_image.GetWidth() / 2,
|
||||
Window.GetY() + Window.GetHeight() / 2 - scaled_bg_image.GetHeight() / 2,
|
||||
-1000);
|
||||
|
||||
#------------------------------- Debian ----------------------------------------------
|
||||
debian = Image("debian.png");
|
||||
# Target same height as logo
|
||||
debian_scale_factor = debian_height / debian.GetHeight();
|
||||
debian = debian.Scale(debian.GetWidth() * debian_scale_factor,
|
||||
debian.GetHeight() * debian_scale_factor);
|
||||
debian_sprite = Sprite(debian);
|
||||
debian_sprite.SetPosition(window_max.width / 2 - debian.GetWidth() / 2,
|
||||
debian_pos.y,
|
||||
-90);
|
||||
bg_sprite.SetPosition(Window.GetX() + Window.GetWidth() / 2 - scaled_bg_image.GetWidth() / 2, Window.GetY() + Window.GetHeight() / 2 - scaled_bg_image.GetHeight() / 2, -1000);
|
||||
|
||||
#------------------------------- Logo ----------------------------------------------
|
||||
logo = Image("logo.png");
|
||||
logo_scale_factor = logo_size / logo.GetWidth();
|
||||
logo = logo.Scale(logo.GetWidth() * logo_scale_factor,
|
||||
logo.GetHeight() * logo_scale_factor);
|
||||
logo = logo.Scale(logo.GetWidth() * logo_scale_factor, logo.GetHeight() * logo_scale_factor);
|
||||
logo_to_top_edge = Window.GetHeight() * 0.3;
|
||||
logo_sprite = Sprite(logo);
|
||||
logo_sprite.SetPosition(logo_pos.x, logo_pos.y, -50);
|
||||
|
||||
|
||||
#Glow effect
|
||||
logo_glow = Image("logo_circle.png");
|
||||
logo_glow_scale_factor = logo_size / logo_glow.GetWidth();
|
||||
logo_glow[0] = logo_glow.Scale(logo_glow.GetWidth() * logo_glow_scale_factor,
|
||||
logo_glow.GetHeight() * logo_glow_scale_factor);
|
||||
logo_glow[0] = logo_glow.Scale(logo_glow.GetWidth() * logo_glow_scale_factor, logo_glow.GetHeight() * logo_glow_scale_factor);
|
||||
logo_glow_sprite = Sprite();
|
||||
logo_glow_sprite.SetPosition(logo_pos.x, logo_pos.y, -60);
|
||||
logo_glow_sprite.SetImage(logo_glow[0]);
|
||||
|
||||
#------------------------------- Brand ----------------------------------------------
|
||||
oem_brand = "debian";
|
||||
|
||||
#Debug("OEM Brand: " + oem_brand);
|
||||
|
||||
brand = Image(oem_brand + ".png");
|
||||
# Target same height as logo
|
||||
brand_scale_factor = brand_height / brand.GetHeight();
|
||||
brand = brand.Scale(brand.GetWidth() * brand_scale_factor, brand.GetHeight() * brand_scale_factor);
|
||||
brand_sprite = Sprite(brand);
|
||||
brand_sprite.SetPosition(window_max.width / 2 - brand.GetWidth() / 2, brand_pos.y, -90);
|
||||
|
||||
#------------------------------- Mode ----------------------------------------------
|
||||
boot_type = "harddrive";
|
||||
|
||||
#Shutdow/Reboot/Harddrive Icon
|
||||
if (Plymouth.GetMode() == "shutdown") {
|
||||
boot_type = "shutdown";
|
||||
} else if (Plymouth.GetMode() == "reboot") {
|
||||
boot_type = "reboot";
|
||||
}
|
||||
|
||||
#Show boot type
|
||||
#DebugBottom("Boot Type: " + boot_type);
|
||||
|
||||
#window_max.width * 0.1, window_max.height * 0.9, 10000
|
||||
|
||||
boot_type_img = Image(boot_type + ".png");
|
||||
# Target same height as logo
|
||||
boot_type_scale_factor = brand_height / boot_type_img.GetHeight();
|
||||
boot_type_img = boot_type_img.Scale(boot_type_img.GetWidth() * boot_type_scale_factor, boot_type_img.GetHeight() * boot_type_scale_factor);
|
||||
boot_type_sprite = Sprite(boot_type_img);
|
||||
|
||||
#OLD:
|
||||
#boot_type_sprite.SetPosition(0, (Window.GetHeight (0) - 80), -90);
|
||||
#boot_type_sprite.SetPosition(window_max.width / 2 - boot_type_img.GetWidth() / 2, brand_pos.y - 60, -90)
|
||||
|
||||
#Working:
|
||||
#boot_type_sprite.SetPosition(window_max.width / 2 - boot_type_img.GetWidth() / 2, brand_pos.y / 2, 10000);
|
||||
|
||||
boot_type_sprite.SetPosition(window_max.width / 2 - boot_type_img.GetWidth() / 2, brand_pos.y / 2 + 550, 10000);
|
||||
|
||||
#------------------------------String functions-------------------------------
|
||||
|
||||
@@ -959,7 +958,16 @@ fun update_status_callback (status) {
|
||||
}
|
||||
}
|
||||
|
||||
text_progress = Image.Text(update_strings[0], 1, 1, 1);
|
||||
message_sprite.SetImage(text_progress);
|
||||
sprite.SetImage (resized_image);
|
||||
|
||||
}
|
||||
|
||||
message_sprite = Sprite();
|
||||
message_sprite.SetPosition(window_max.width * 0.1, window_max.height * 0.9, 10000);
|
||||
#message_sprite.SetPosition(window_max.width / 2 - boot_type_img.GetWidth() / 2, brand_pos.y / 2 + 650, 10000)
|
||||
|
||||
Plymouth.SetUpdateStatusFunction (update_status_callback);
|
||||
|
||||
#-----------------------------------------Display Question stuff -----------------------
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
BIN
chillcraftos-theme/plymouth/harddrive.png
Normal file
|
After Width: | Height: | Size: 986 B |
BIN
chillcraftos-theme/plymouth/logo.png
Normal file
|
After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 230 B After Width: | Height: | Size: 230 B |
BIN
chillcraftos-theme/plymouth/reboot.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
chillcraftos-theme/plymouth/shutdown.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 101 KiB |
13
chillcraftos-theme/wallpaper/gnome-background.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<background>
|
||||
<static>
|
||||
<duration>8640000.0</duration>
|
||||
<file>
|
||||
<size width="1080" height="2160">/usr/share/desktop-base/chillcraftos-theme/wallpaper/contents/images/1080x2160.svg</size>
|
||||
<size width="1280" height="800">/usr/share/desktop-base/chillcraftos-theme/wallpaper/contents/images/1280x800.svg</size>
|
||||
<size width="1280" height="1024">/usr/share/desktop-base/chillcraftos-theme/wallpaper/contents/images/1280x1024.svg</size>
|
||||
<size width="1920" height="1080">/usr/share/desktop-base/chillcraftos-theme/wallpaper/contents/images/1920x1080.svg</size>
|
||||
<size width="1920" height="1200">/usr/share/desktop-base/chillcraftos-theme/wallpaper/contents/images/1920x1200.svg</size>
|
||||
<size width="2520" height="1080">/usr/share/desktop-base/chillcraftos-theme/wallpaper/contents/images/2520x1080.svg</size>
|
||||
</file>
|
||||
</static>
|
||||
</background>
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"KPlugin": {
|
||||
"Name": "Ceratopsian",
|
||||
"Id": "Ceratopsian",
|
||||
"Name": "ChillcraftOS",
|
||||
"Id": "ChillcraftOS",
|
||||
"License": "GPLv2+",
|
||||
"Authors": [
|
||||
{
|
||||
@@ -1,8 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.1
|
||||
Name=Debian Home Page
|
||||
Comment=The official web site of the Debian Project
|
||||
Icon=emblem-debian
|
||||
Type=Link
|
||||
URL=https://www.debian.org
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.1
|
||||
Name=Debian Reference Manual
|
||||
Comment=An introduction and reference manual for Debian
|
||||
Icon=emblem-debian
|
||||
Type=Link
|
||||
URL=https://www.debian.org/doc/manuals/reference/
|
||||
@@ -1,7 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.1
|
||||
Name=Debian Security Updates
|
||||
Comment=Learn about new fixed packages
|
||||
Icon=/usr/share/pixmaps/debian-security.png
|
||||
Type=Link
|
||||
URL=https://www.debian.org/security/
|
||||
85
debian/README.Debian
vendored
@@ -3,9 +3,9 @@ README for desktop-base
|
||||
|
||||
1. What’s provided
|
||||
1.1. Themes packs
|
||||
1.2. Debian logos
|
||||
1.2.1. Debian logos icons
|
||||
1.2.2. Debian logos images
|
||||
1.2. ChillCraftOS logos
|
||||
1.2.1. ChillCraftOS logos icons
|
||||
1.2.2. ChillCraftOS logos images
|
||||
1.3. Desktop files
|
||||
1.4. Default configurations overrides
|
||||
1.5. Plymouth boot splashes
|
||||
@@ -23,34 +23,27 @@ README for desktop-base
|
||||
|
||||
1.1. Theme packs
|
||||
|
||||
Six theme packs are currently provided:
|
||||
- Emerald (default for Bookworm)
|
||||
- Homeworld (default for Bullseye)
|
||||
- futurePrototype (default for Buster)
|
||||
- Soft Waves (default for Stretch)
|
||||
- Lines (default for Jessie)
|
||||
- Joy (default for Wheezy)
|
||||
- Spacefun (default for Squeeze)
|
||||
The Homeworld theme pack is currently provided as the default theme for ChillCraftOS.
|
||||
|
||||
These themes contain customization for GRUB, Plymouth, login managers like
|
||||
This theme contains customization for GRUB, Plymouth, login managers like
|
||||
SDDM and LightDM, wallpapers and lock screen for desktop environments like
|
||||
GNOME, KDE’s Plasma 5, Xfce, Mate…
|
||||
See below for how to switch between themes and a detailed description of the
|
||||
theme packs structure.
|
||||
|
||||
1.2. Debian logos
|
||||
1.2. ChillCraftOS logos
|
||||
|
||||
Three version of the logo are shipped as icons:
|
||||
- emblem-debian : the Debian logo in it’s original red-purple color
|
||||
- emblem-debian-symbolic: the Debian logo in a black+transparent format that
|
||||
- emblem-system : the ChillCraftOS logo in it's original red-purple color
|
||||
- emblem-system-symbolic: the ChillCraftOS logo in a black+transparent format that
|
||||
desktop like GNOME can use and adapt the color
|
||||
depending on the context.
|
||||
- emblem-debian-white : the Debian logo in white
|
||||
- emblem-system-white : the ChillCraftOS logo in white
|
||||
|
||||
We also ship 3 versions of the logo as images:
|
||||
- logo : logo alone
|
||||
- logo-text : logo + "Debian" name
|
||||
- logo-text-version: logo + "Debian" name + Debian version number
|
||||
- logo-text : logo + "ChillCraftOS" name
|
||||
- logo-text-version: logo + "ChillCraftOS" name + ChillCraftOS version number
|
||||
|
||||
All these images and logos are provided both in several bitmap resolutions
|
||||
(PNG) and also in vector form (SVG).
|
||||
@@ -80,7 +73,7 @@ The alternative has the following structure:
|
||||
emblem-vendor-symbolic.svg -> /etc/alternatives/emblem-vendor-symbolic-scalable
|
||||
emblem-vendor-white.svg -> /etc/alternatives/emblem-vendor-white-scalable
|
||||
|
||||
1.2.1. Debian logos icons
|
||||
1.2.1. ChillCraftOS logos icons
|
||||
|
||||
Several sizes of logo icons are shipped:
|
||||
64, 128, 256 and scalable (svg)
|
||||
@@ -98,24 +91,24 @@ They can be found in:
|
||||
/usr/share/icons/hicolor/scalable/emblems/${emblem}.icon
|
||||
These will be removed after buster.
|
||||
|
||||
1.2.2. Debian logos images
|
||||
1.2.2. ChillCraftOS logos images
|
||||
|
||||
The Debian logo images are shipped in:
|
||||
/usr/share/desktop-base/debian-logos/
|
||||
The ChillCraftOS logo images are shipped in:
|
||||
/usr/share/desktop-base/os-logos/
|
||||
|
||||
A Debian security logo is also shipped in:
|
||||
/usr/share/pixmaps/debian-security.png
|
||||
A ChillCraftOS security logo is also shipped in:
|
||||
/usr/share/pixmaps/chillcraftos-security.png
|
||||
|
||||
1.3. Desktop files
|
||||
|
||||
/usr/share/desktop-base/debian-homepage.desktop
|
||||
/usr/share/desktop-base/debian-reference.desktop
|
||||
/usr/share/desktop-base/debian-security.desktop
|
||||
/usr/share/desktop-base/chillcraftos-homepage.desktop
|
||||
/usr/share/desktop-base/chillcraftos-reference.desktop
|
||||
/usr/share/desktop-base/chillcraftos-security.desktop
|
||||
|
||||
1.4. Default configurations overrides
|
||||
|
||||
desktop-base ships different files to override default theme configurations
|
||||
of various parts of the system and prefer the active Debian theme.
|
||||
of various parts of the system and prefer the active ChillCraftOS theme.
|
||||
See below « How to switch themes » for directions on how to configure these
|
||||
overridden defaults.
|
||||
|
||||
@@ -123,7 +116,7 @@ overridden defaults.
|
||||
/usr/share/desktop-base/grub_background.sh
|
||||
|
||||
This alternative is used by /etc/grub.d/05_debian_theme provided by
|
||||
grub-common to correctly update the GRUB background with the Debian theme when
|
||||
grub-common to correctly update the GRUB background with the ChillCraftOS theme when
|
||||
running « update-grub ».
|
||||
|
||||
- GNOME desktop wallpaper and lock screen:
|
||||
@@ -234,9 +227,9 @@ It defaults to the wallpaper and lock screen for the active theme selected via
|
||||
the desktop-theme alternative.
|
||||
|
||||
- desktop-plasma5-wallpaper, alternative for:
|
||||
/usr/share/wallpapers/DebianTheme
|
||||
/usr/share/wallpapers/ChillCraftOSTheme
|
||||
|
||||
This alternative folder is used by Plasma 5 in Debian to select the
|
||||
This alternative folder is used by Plasma 5 in ChillCraftOS to select the
|
||||
wallpaper for all users who didn’t otherwise select a wallpaper themselves. It
|
||||
defaults to the wallpaper of the active theme selected via the desktop-theme
|
||||
alternative.
|
||||
@@ -245,9 +238,9 @@ alternative.
|
||||
3. Theme pack structure
|
||||
|
||||
A certain theme pack structure is expected in order to provide drop-in
|
||||
replacements for the default Debian theme that can be switched globally with
|
||||
replacements for the default ChillCraftOS theme that can be switched globally with
|
||||
the desktop-theme alternative. This paragraph describes the structure to mimic
|
||||
if you want to provide additional theme packs for Debian.
|
||||
if you want to provide additional theme packs for ChillCraftOS.
|
||||
|
||||
A theme pack should contain the following elements:
|
||||
|
||||
@@ -271,7 +264,7 @@ A theme pack should contain the following elements:
|
||||
-> Shell file containing variables to configure GRUB. This file is sourced
|
||||
when running « update-grub ».
|
||||
|
||||
./plymouth/debian.png
|
||||
./plymouth/chillcraftos.png
|
||||
./plymouth/logo.png
|
||||
…
|
||||
-> Assets used in the Plymouth splash screen
|
||||
@@ -336,14 +329,9 @@ A theme pack should contain the following elements:
|
||||
|
||||
4.1. Artists
|
||||
|
||||
We need professional looking Debian artwork in the Desktop. If you want to
|
||||
help improve themes in Debian or provide additional theme proposals, you
|
||||
should monitor the Wiki page for artwork contests we run for each new Debian
|
||||
release:
|
||||
https://wiki.debian.org/DebianArt/Themes
|
||||
|
||||
The debian-desktop mailing list (see below) is also a low-traffic source of
|
||||
information about what’s going on with desktop themes in Debian.
|
||||
We need professional looking ChillCraftOS artwork in the Desktop. If you want to
|
||||
help improve themes in ChillCraftOS or provide additional theme proposals, you
|
||||
can contribute through our repository or contact us at contact@oxmc.me.
|
||||
|
||||
If you’ve suggestions for a better artwork, create or edit the images and open
|
||||
a 'wishlist' bug against desktop-base in our Bug Tracking System
|
||||
@@ -371,13 +359,12 @@ Debian themes over the desktop environments available in the archive.
|
||||
|
||||
4.3. Notes and references
|
||||
|
||||
If you’re interested in working on Debian theming, you may be interested in
|
||||
the following references.
|
||||
If you're interested in working on ChillCraftOS theming, you may be interested in
|
||||
these references:
|
||||
|
||||
- Information about the Debian Logo:
|
||||
https://www.debian.org/logos/
|
||||
https://wiki.debian.org/DebianLogo
|
||||
- Repository:
|
||||
https://git.oxmc.me/Chillcraft/desktop-base
|
||||
|
||||
- Archive and subscriptions to the debian-desktop mailing list:
|
||||
https://lists.debian.org/debian-desktop/
|
||||
- Contact:
|
||||
contact@oxmc.me
|
||||
|
||||
|
||||
8
debian/README.Release
vendored
@@ -1,9 +1,9 @@
|
||||
For occasional contributions, the preferred way to contribute to this
|
||||
repository is to create a branch on salsa.debian.org, create a merge request
|
||||
and ask for the merge request to be reviewed on
|
||||
debian-desktop@lists.debian.org.
|
||||
repository is to create a branch on git.oxmc.me/Chillcraft/desktop-base, create a pull request
|
||||
and ask for the pull request to be reviewed on
|
||||
contact@oxmc.me.
|
||||
|
||||
For Debian developers and maintainers doing the tag and publication work for
|
||||
For ChillCraftOS developers and maintainers doing the tag and publication work for
|
||||
the package, the preferred workflow is the following.
|
||||
|
||||
- During development cycle:
|
||||
|
||||
22
debian/control
vendored
@@ -1,21 +1,19 @@
|
||||
Source: desktop-base
|
||||
Section: x11
|
||||
Priority: optional
|
||||
Maintainer: Debian Desktop Team <debian-desktop@lists.debian.org>
|
||||
Uploaders: Yves-Alexis Perez <corsac@debian.org>,
|
||||
Aurélien COUDERC <coucouf@debian.org>,
|
||||
Jonathan Carter <jcc@debian.org>
|
||||
Maintainer: ChillCraftOS Desktop Team <contact@oxmc.me>
|
||||
Uploaders: ChillCraftOS Team <contact@oxmc.me>
|
||||
Build-Depends: debhelper-compat (= 13),
|
||||
inkscape,
|
||||
librsvg2-bin,
|
||||
optipng,
|
||||
# For the number in debian-logo-text
|
||||
# For the number in chillcraftos-logo-text
|
||||
fonts-quicksand,
|
||||
Rules-Requires-Root: no
|
||||
Standards-Version: 4.7.2
|
||||
Homepage: https://www.debian.org/devel/debian-desktop/
|
||||
Vcs-Browser: https://salsa.debian.org/debian-desktop-team/desktop-base
|
||||
Vcs-Git: https://salsa.debian.org/debian-desktop-team/desktop-base.git
|
||||
Homepage: https://chillcraft.org/
|
||||
Vcs-Browser: https://git.oxmc.me/Chillcraft/desktop-base
|
||||
Vcs-Git: https://git.oxmc.me/Chillcraft/desktop-base.git
|
||||
|
||||
Package: desktop-base
|
||||
Architecture: all
|
||||
@@ -24,10 +22,10 @@ Depends: librsvg2-common,
|
||||
fonts-quicksand,
|
||||
Recommends: plymouth-label
|
||||
Suggests: gnome | kde-standard | xfce4 | wmaker
|
||||
Description: common files for the Debian Desktop
|
||||
Description: common files for the ChillCraftOS Desktop
|
||||
This package contains various miscellaneous files which are used by
|
||||
Debian Desktop installations. Currently, it provides some
|
||||
Debian-related artwork and themes, .desktop files containing links to
|
||||
Debian related material (suitable for placement on a user's desktop),
|
||||
ChillCraftOS Desktop installations. Currently, it provides some
|
||||
ChillCraftOS-related artwork and themes, .desktop files containing links to
|
||||
ChillCraftOS related material (suitable for placement on a user's desktop),
|
||||
and other common files between the available desktop environments
|
||||
such as GNOME and KDE.
|
||||
|
||||
72
debian/copyright
vendored
@@ -1,6 +1,6 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Contact: Debian Desktop List <debian-desktop@lists.debian.org>
|
||||
Source: https://salsa.debian.org/debian-desktop-team/desktop-base/
|
||||
Upstream-Contact: ChillCraftOS Desktop Team <contact@oxmc.me>
|
||||
Source: https://git.oxmc.me/Chillcraft/desktop-base
|
||||
|
||||
Files: *
|
||||
Copyright: 2002, Colin Walters <walters@debian.org>
|
||||
@@ -14,81 +14,23 @@ Copyright: 2002, Colin Walters <walters@debian.org>
|
||||
2012, Paul Tagliamonte <paultag@debian.org>
|
||||
2014-2019, Aurélien COUDERC <coucouf@debian.org>
|
||||
2012-2025, Jonathan Carter <jcc@debian.org>
|
||||
2025, ChillCraftOS Team <team@chillcraft.org>
|
||||
License: GPL-2+
|
||||
|
||||
Files: pixmaps/debian-security.png
|
||||
source/debian-security.xcf
|
||||
Files: pixmaps/chillcraftos-security.png
|
||||
source/chillcraftos-security.xcf
|
||||
Copyright: 1999, Software in the Public Interest, Inc.
|
||||
2010, Ulrich Hansen <uhansen@mainz-online.de>
|
||||
License: GPL-2+
|
||||
|
||||
Files: spacefun-theme/*
|
||||
Copyright: 2010, Valessio Brito <valessio@debianart.org>
|
||||
License: GPL-2
|
||||
|
||||
Files: spacefun-theme/plymouth/spacefun.script
|
||||
Copyright: 2010, Aurélien COUDERC <coucouf@debian.org>
|
||||
License: GPL-2+
|
||||
|
||||
Files: joy-theme/*
|
||||
Copyright: 2012, Adrien Aubourg <adrien.aubourg@gmail.com>
|
||||
License: GPL-2+
|
||||
|
||||
Files: lines-theme/*
|
||||
softwaves-theme/*
|
||||
moonlight-theme/*
|
||||
homeworld-theme/*
|
||||
emerald-theme/*
|
||||
Files: homeworld-theme/*
|
||||
Copyright: 2014-2022, Juliette Taka Belin <juliette.belin@logilab.fr>
|
||||
License: GPL-2+
|
||||
|
||||
Files: futureprototype-theme/*
|
||||
Copyright: 2018, Alex Makas <radicalmonday@gmail.com>
|
||||
License: GPL-2+
|
||||
|
||||
Files: joy-theme/plymouth/joy.script
|
||||
Copyright: 2009, Canonical Ltd.
|
||||
2010, Aurélien Couderc <coucouf@debian.org>
|
||||
2012, Jonathan Carter <jcc@debian.org>
|
||||
License: GPL-2+
|
||||
|
||||
Files: lines-theme/plymouth/lines.script
|
||||
softwaves-theme/plymouth/softwaves.script
|
||||
futureprototype-theme/plymouth/futureprototype.script
|
||||
moonlight-theme/plymouth/moonlight.script
|
||||
Copyright: 2009 Canonical Ltd.
|
||||
2010-2016 Aurélien Couderc <coucouf@debian.org>
|
||||
2014-2018 Juliette Taka <juliette.belin@logilab.fr>
|
||||
License: GPL-2+
|
||||
|
||||
Files: spacefun-theme/plymouth/logo.png
|
||||
joy-theme/plymouth/debian_logo*
|
||||
lines-theme/plymouth/debian.png
|
||||
softwaves-theme/plymouth/debian.png
|
||||
softwaves-theme/plymouth/logo*.png
|
||||
softwaves-theme/sources/plymouth/debian9.svg
|
||||
softwaves-theme/sources/plymouth/logo*.svg
|
||||
emblems-debian/emblem-debian*
|
||||
source/salsa-debian-icon.svg
|
||||
futureprototype-theme/plymouth/debian.png
|
||||
futureprototype-theme/plymouth/logo*.png
|
||||
futureprototype-theme/sources/plymouth/debian.svg
|
||||
futureprototype-theme/sources/plymouth/logo.svg
|
||||
moonlight-theme/plymouth/debian.png
|
||||
debian-logos/*
|
||||
Files: os-logos/*
|
||||
Copyright: 1999, Software in the Public Interest, Inc.
|
||||
License: GPL-3+ or CC-BY-SA-3.0
|
||||
|
||||
Files: moonlight-theme/plymouth/logo_in_circle.png
|
||||
moonlight-theme/sources/plymouth/logo.svg
|
||||
Copyright: 1999, Software in the Public Interest, Inc.
|
||||
2018 Juliette Taka <juliette.belin@logilab.fr>
|
||||
License: GPL-3+ or CC-BY-SA-3.0
|
||||
|
||||
Files: ceratopsian-theme/*
|
||||
Copyright: 2024 Elise Couper <couperpc@gmail.com>
|
||||
License: GPL-2+
|
||||
|
||||
License: CC-BY-SA-3.0
|
||||
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
|
||||
COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
|
||||
|
||||
8
debian/desktop-base.links
vendored
@@ -2,7 +2,7 @@
|
||||
# logo with text and version number is requested, use the one with only text.
|
||||
# Comment these out when the theme is updated for a new stable release,
|
||||
# and reinstate them after the stable release.
|
||||
usr/share/desktop-base/debian-logos/logo-text.svg usr/share/desktop-base/debian-logos/logo-text-version.svg
|
||||
usr/share/desktop-base/debian-logos/logo-text-64.png usr/share/desktop-base/debian-logos/logo-text-version-64.png
|
||||
usr/share/desktop-base/debian-logos/logo-text-128.png usr/share/desktop-base/debian-logos/logo-text-version-128.png
|
||||
usr/share/desktop-base/debian-logos/logo-text-256.png usr/share/desktop-base/debian-logos/logo-text-version-256.png
|
||||
usr/share/desktop-base/os-logos/logo-text.svg usr/share/desktop-base/os-logos/logo-text-version.svg
|
||||
usr/share/desktop-base/os-logos/logo-text-64.png usr/share/desktop-base/os-logos/logo-text-version-64.png
|
||||
usr/share/desktop-base/os-logos/logo-text-128.png usr/share/desktop-base/os-logos/logo-text-version-128.png
|
||||
usr/share/desktop-base/os-logos/logo-text-256.png usr/share/desktop-base/os-logos/logo-text-version-256.png
|
||||
|
||||
138
debian/postinst
vendored
@@ -21,43 +21,43 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remov
|
||||
update-alternatives --install \
|
||||
/usr/share/images/vendor-logos \
|
||||
vendor-logos \
|
||||
/usr/share/desktop-base/debian-logos 50 \
|
||||
/usr/share/desktop-base/os-logos 50 \
|
||||
--slave /usr/share/icons/vendor/64x64/emblems/emblem-vendor.png \
|
||||
emblem-vendor-64 \
|
||||
/usr/share/icons/desktop-base/64x64/emblems/emblem-debian.png \
|
||||
/usr/share/icons/desktop-base/64x64/emblems/emblem-system.png \
|
||||
--slave /usr/share/icons/vendor/128x128/emblems/emblem-vendor.png \
|
||||
emblem-vendor-128 \
|
||||
/usr/share/icons/desktop-base/128x128/emblems/emblem-debian.png \
|
||||
/usr/share/icons/desktop-base/128x128/emblems/emblem-system.png \
|
||||
--slave /usr/share/icons/vendor/256x256/emblems/emblem-vendor.png \
|
||||
emblem-vendor-256 \
|
||||
/usr/share/icons/desktop-base/256x256/emblems/emblem-debian.png \
|
||||
/usr/share/icons/desktop-base/256x256/emblems/emblem-system.png \
|
||||
--slave /usr/share/icons/vendor/scalable/emblems/emblem-vendor.svg \
|
||||
emblem-vendor-scalable \
|
||||
/usr/share/icons/desktop-base/scalable/emblems/emblem-debian.svg \
|
||||
/usr/share/icons/desktop-base/scalable/emblems/emblem-system.svg \
|
||||
--slave /usr/share/icons/vendor/64x64/emblems/emblem-vendor-symbolic.png \
|
||||
emblem-vendor-symbolic-64 \
|
||||
/usr/share/icons/desktop-base/64x64/emblems/emblem-debian-symbolic.png \
|
||||
/usr/share/icons/desktop-base/64x64/emblems/emblem-system-symbolic.png \
|
||||
--slave /usr/share/icons/vendor/128x128/emblems/emblem-vendor-symbolic.png \
|
||||
emblem-vendor-symbolic-128 \
|
||||
/usr/share/icons/desktop-base/128x128/emblems/emblem-debian-symbolic.png \
|
||||
/usr/share/icons/desktop-base/128x128/emblems/emblem-system-symbolic.png \
|
||||
--slave /usr/share/icons/vendor/256x256/emblems/emblem-vendor-symbolic.png \
|
||||
emblem-vendor-symbolic-256 \
|
||||
/usr/share/icons/desktop-base/256x256/emblems/emblem-debian-symbolic.png \
|
||||
/usr/share/icons/desktop-base/256x256/emblems/emblem-system-symbolic.png \
|
||||
--slave /usr/share/icons/vendor/scalable/emblems/emblem-vendor-symbolic.svg \
|
||||
emblem-vendor-symbolic-scalable \
|
||||
/usr/share/icons/desktop-base/scalable/emblems/emblem-debian-symbolic.svg \
|
||||
/usr/share/icons/desktop-base/scalable/emblems/emblem-system-symbolic.svg \
|
||||
--slave /usr/share/icons/vendor/64x64/emblems/emblem-vendor-white.png \
|
||||
emblem-vendor-white-64 \
|
||||
/usr/share/icons/desktop-base/64x64/emblems/emblem-debian-white.png \
|
||||
/usr/share/icons/desktop-base/64x64/emblems/emblem-system-white.png \
|
||||
--slave /usr/share/icons/vendor/128x128/emblems/emblem-vendor-white.png \
|
||||
emblem-vendor-white-128 \
|
||||
/usr/share/icons/desktop-base/128x128/emblems/emblem-debian-white.png \
|
||||
/usr/share/icons/desktop-base/128x128/emblems/emblem-system-white.png \
|
||||
--slave /usr/share/icons/vendor/256x256/emblems/emblem-vendor-white.png \
|
||||
emblem-vendor-white-256 \
|
||||
/usr/share/icons/desktop-base/256x256/emblems/emblem-debian-white.png \
|
||||
/usr/share/icons/desktop-base/256x256/emblems/emblem-system-white.png \
|
||||
--slave /usr/share/icons/vendor/scalable/emblems/emblem-vendor-white.svg \
|
||||
emblem-vendor-white-scalable \
|
||||
/usr/share/icons/desktop-base/scalable/emblems/emblem-debian-white.svg
|
||||
/usr/share/icons/desktop-base/scalable/emblems/emblem-system-white.svg
|
||||
|
||||
# Theme package alternatives
|
||||
while read theme priority; do
|
||||
@@ -66,16 +66,7 @@ if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remov
|
||||
desktop-theme \
|
||||
/usr/share/desktop-base/$theme-theme $priority
|
||||
done << EOF
|
||||
ceratopsian 50
|
||||
emerald 40
|
||||
homeworld 40
|
||||
futureprototype 40
|
||||
moonlight 40
|
||||
softwaves 40
|
||||
lines 40
|
||||
joy 40
|
||||
joy-inksplat 40
|
||||
spacefun 40
|
||||
chillcraftos 50
|
||||
EOF
|
||||
|
||||
# Use active theme as highest priority for background
|
||||
@@ -92,39 +83,7 @@ EOF
|
||||
desktop-background \
|
||||
/usr/share/desktop-base/$theme-theme/wallpaper/contents/images/$filename $priority
|
||||
done << EOF
|
||||
ceratopsian 1920x1080.svg 65
|
||||
emerald 1920x1080.svg 50
|
||||
homeworld 1920x1080.svg 50
|
||||
futureprototype 1920x1080.svg 50
|
||||
moonlight 1920x1080.svg 50
|
||||
softwaves 1024x768.svg 50
|
||||
softwaves 1280x720.svg 50
|
||||
softwaves 1280x800.svg 50
|
||||
softwaves 1280x1024.svg 50
|
||||
softwaves 1600x1200.svg 50
|
||||
softwaves 1920x1080.svg 50
|
||||
softwaves 1920x1200.svg 50
|
||||
softwaves 2560x1440.svg 50
|
||||
softwaves 2560x1600.svg 50
|
||||
lines 1280x1024.svg 50
|
||||
lines 1600x1200.svg 50
|
||||
lines 1920x1080.svg 50
|
||||
lines 1920x1200.svg 50
|
||||
lines 2560x1080.svg 50
|
||||
joy 1280x720.svg 50
|
||||
joy 1280x1024.svg 50
|
||||
joy 1600x1200.svg 50
|
||||
joy 1920x1080.svg 50
|
||||
joy 1920x1200.svg 50
|
||||
joy-inksplat 1280x720.svg 50
|
||||
joy-inksplat 1280x1024.svg 50
|
||||
joy-inksplat 1600x1200.svg 50
|
||||
joy-inksplat 1920x1080.svg 50
|
||||
joy-inksplat 1920x1200.svg 50
|
||||
spacefun 1280x720.svg 50
|
||||
spacefun 1280x1024.svg 50
|
||||
spacefun 1920x1080.svg 50
|
||||
spacefun 1920x1200.svg 50
|
||||
chillcraftos 1920x1080.svg 50
|
||||
EOF
|
||||
|
||||
# Set up an alternative for the XML version of the background
|
||||
@@ -143,16 +102,7 @@ EOF
|
||||
desktop-background.xml \
|
||||
/usr/share/desktop-base/$theme-theme/wallpaper/gnome-background.xml $priority
|
||||
done << EOF
|
||||
ceratopsian 40
|
||||
emerald 40
|
||||
homeworld 30
|
||||
futureprototype 30
|
||||
moonlight 30
|
||||
softwaves 30
|
||||
lines 30
|
||||
joy 30
|
||||
joy-inksplat 30
|
||||
spacefun 30
|
||||
chillcraftos 40
|
||||
EOF
|
||||
|
||||
# Set up an alternative for the XML version of the lock screen
|
||||
@@ -171,15 +121,7 @@ EOF
|
||||
desktop-lockscreen.xml \
|
||||
/usr/share/desktop-base/$theme-theme/lockscreen/gnome-background.xml $priority
|
||||
done << EOF
|
||||
ceratopsian 40
|
||||
emerald 30
|
||||
homeworld 30
|
||||
futureprototype 30
|
||||
moonlight 30
|
||||
softwaves 30
|
||||
lines 30
|
||||
joy 30
|
||||
spacefun 30
|
||||
chillcraftos 40
|
||||
EOF
|
||||
|
||||
# Set up an alternative for the wallpaper for Plasma 5/KDE
|
||||
@@ -187,26 +129,17 @@ EOF
|
||||
active_plasma_wallpaper=/usr/share/desktop-base/active-theme/wallpaper
|
||||
if [ -e ${active_plasma_wallpaper} ]; then
|
||||
update-alternatives --install \
|
||||
/usr/share/wallpapers/DebianTheme \
|
||||
/usr/share/wallpapers/ChillCraftOSTheme \
|
||||
desktop-plasma5-wallpaper ${active_plasma_wallpaper} 50
|
||||
fi
|
||||
# Alternatives for theme packages
|
||||
while read theme priority; do
|
||||
update-alternatives --install \
|
||||
/usr/share/wallpapers/DebianTheme \
|
||||
/usr/share/wallpapers/ChillCraftOSTheme \
|
||||
desktop-plasma5-wallpaper \
|
||||
/usr/share/desktop-base/$theme-theme/wallpaper $priority
|
||||
done << EOF
|
||||
ceratopsian 40
|
||||
emerald 30
|
||||
homeworld 30
|
||||
futureprototype 30
|
||||
moonlight 30
|
||||
softwaves 30
|
||||
lines 30
|
||||
joy 30
|
||||
joy-inksplat 30
|
||||
spacefun 30
|
||||
chillcraftos 40
|
||||
EOF
|
||||
|
||||
# Login theme
|
||||
@@ -222,16 +155,7 @@ EOF
|
||||
desktop-login-background \
|
||||
/usr/share/desktop-base/$theme-theme/login/$background $priority
|
||||
done << EOF
|
||||
ceratopsian background.svg 40
|
||||
emerald background.svg 30
|
||||
homeworld background.svg 30
|
||||
futureprototype background.svg 30
|
||||
moonlight background.svg 30
|
||||
softwaves background.svg 30
|
||||
lines background.svg 30
|
||||
lines background-nologo.svg 30
|
||||
joy background.svg 30
|
||||
spacefun background.svg 30
|
||||
chillcraftos background.svg 40
|
||||
EOF
|
||||
|
||||
# Set up an alternative for the GRUB background/colors config
|
||||
@@ -274,24 +198,8 @@ EOF
|
||||
desktop-grub.sh \
|
||||
/usr/share/desktop-base/$theme-theme/grub/grub_background.sh
|
||||
done << EOF
|
||||
ceratopsian 4x3 40
|
||||
ceratopsian 16x9 40
|
||||
emerald 4x3 30
|
||||
emerald 16x9 30
|
||||
homeworld 4x3 30
|
||||
homeworld 16x9 30
|
||||
futureprototype 4x3 30
|
||||
futureprototype 16x9 30
|
||||
moonlight 4x3 30
|
||||
moonlight 16x9 30
|
||||
softwaves 4x3 30
|
||||
softwaves 16x9 30
|
||||
lines 4x3 30
|
||||
lines 16x9 30
|
||||
joy 4x3 30
|
||||
joy 16x9 30
|
||||
spacefun 4x3 30
|
||||
spacefun 16x9 30
|
||||
chillcraftos 4x3 40
|
||||
chillcraftos 16x9 40
|
||||
EOF
|
||||
|
||||
# Apply GRUB background update into /boot
|
||||
|
||||
113
debian/prerm
vendored
@@ -8,7 +8,7 @@ if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
|
||||
# Remove vendor logos alternative, all slaves get removed automatically
|
||||
update-alternatives --remove \
|
||||
vendor-logos \
|
||||
/usr/share/desktop-base/debian-logos
|
||||
/usr/share/desktop-base/chillcraftos-logos
|
||||
|
||||
# Remove background alternatives for theme packages
|
||||
while read theme filename; do
|
||||
@@ -16,39 +16,7 @@ if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
|
||||
desktop-background \
|
||||
/usr/share/desktop-base/$theme-theme/wallpaper/contents/images/$filename
|
||||
done << EOF
|
||||
ceratopsian 1920x1080.svg
|
||||
emerald 1920x1080.svg
|
||||
homeworld 1920x1080.svg
|
||||
futureprototype 1920x1080.svg
|
||||
moonlight 1920x1080.svg
|
||||
softwaves 1024x768.svg
|
||||
softwaves 1280x720.svg
|
||||
softwaves 1280x800.svg
|
||||
softwaves 1280x1024.svg
|
||||
softwaves 1600x1200.svg
|
||||
softwaves 1920x1080.svg
|
||||
softwaves 1920x1200.svg
|
||||
softwaves 2560x1440.svg
|
||||
softwaves 2560x1600.svg
|
||||
lines 1280x1024.svg
|
||||
lines 1600x1200.svg
|
||||
lines 1920x1080.svg
|
||||
lines 1920x1200.svg
|
||||
lines 2560x1080.svg
|
||||
joy 1280x720.svg
|
||||
joy 1280x1024.svg
|
||||
joy 1600x1200.svg
|
||||
joy 1920x1080.svg
|
||||
joy 1920x1200.svg
|
||||
joy-inksplat 1280x720.svg
|
||||
joy-inksplat 1280x1024.svg
|
||||
joy-inksplat 1600x1200.svg
|
||||
joy-inksplat 1920x1080.svg
|
||||
joy-inksplat 1920x1200.svg
|
||||
spacefun 1280x720.svg
|
||||
spacefun 1280x1024.svg
|
||||
spacefun 1920x1080.svg
|
||||
spacefun 1920x1200.svg
|
||||
chillcraftos 1920x1080.svg
|
||||
EOF
|
||||
# *Last* remove background *highest priority* alternatives for active theme
|
||||
update-alternatives --remove desktop-background /usr/share/desktop-base/active-theme/wallpaper/contents/images/1920x1080.svg
|
||||
@@ -60,16 +28,7 @@ EOF
|
||||
desktop-background.xml \
|
||||
/usr/share/desktop-base/$theme-theme/wallpaper/gnome-background.xml
|
||||
done << EOF
|
||||
ceratopsian
|
||||
emerald
|
||||
homeworld
|
||||
futureprototype
|
||||
moonlight
|
||||
softwaves
|
||||
lines
|
||||
joy
|
||||
joy-inksplat
|
||||
spacefun
|
||||
chillcraftos
|
||||
EOF
|
||||
# *Lastly* remove *highest priority* alternative for active theme
|
||||
update-alternatives --remove \
|
||||
@@ -83,15 +42,7 @@ EOF
|
||||
desktop-lockscreen.xml \
|
||||
/usr/share/desktop-base/$theme-theme/lockscreen/gnome-background.xml
|
||||
done << EOF
|
||||
ceratopsian
|
||||
emerald
|
||||
homeworld
|
||||
futureprototype
|
||||
moonlight
|
||||
softwaves
|
||||
lines
|
||||
joy
|
||||
spacefun
|
||||
chillcraftos
|
||||
EOF
|
||||
# *Last* remove *highest priority* alternative for active theme
|
||||
update-alternatives --remove \
|
||||
@@ -105,16 +56,7 @@ EOF
|
||||
desktop-plasma5-wallpaper \
|
||||
/usr/share/desktop-base/$theme-theme/wallpaper
|
||||
done << EOF
|
||||
ceratopsian
|
||||
emerald
|
||||
homeworld
|
||||
futureprototype
|
||||
moonlight
|
||||
softwaves
|
||||
lines
|
||||
joy
|
||||
joy-inksplat
|
||||
spacefun
|
||||
chillcraftos
|
||||
EOF
|
||||
# *Last* remove *highest priority* alternative for active theme
|
||||
update-alternatives --remove \
|
||||
@@ -129,16 +71,7 @@ EOF
|
||||
desktop-login-background \
|
||||
/usr/share/desktop-base/$theme-theme/login/$background
|
||||
done << EOF
|
||||
ceratopsian background.svg
|
||||
emerald background.svg
|
||||
homeworld background.svg
|
||||
futureprototype background.svg
|
||||
moonlight background.svg
|
||||
softwaves background.svg
|
||||
lines background.svg
|
||||
lines background-nologo.svg
|
||||
joy background.svg
|
||||
spacefun background.svg
|
||||
chillcraftos background.svg
|
||||
EOF
|
||||
# *Last* remove *highest priority* alternative for active theme
|
||||
update-alternatives --remove \
|
||||
@@ -151,24 +84,8 @@ EOF
|
||||
desktop-grub \
|
||||
/usr/share/desktop-base/$theme-theme/grub/grub-$ratio.png
|
||||
done << EOF
|
||||
ceratopsian 4x3
|
||||
ceratopsian 16x9
|
||||
emerald 4x3
|
||||
emerald 16x9
|
||||
homeworld 4x3
|
||||
homeworld 16x9
|
||||
futureprototype 4x3
|
||||
futureprototype 16x9
|
||||
moonlight 4x3
|
||||
moonlight 16x9
|
||||
softwaves 4x3
|
||||
softwaves 16x9
|
||||
lines 4x3
|
||||
lines 16x9
|
||||
joy 4x3
|
||||
joy 16x9
|
||||
spacefun 4x3
|
||||
spacefun 16x9
|
||||
chillcraftos 4x3
|
||||
chillcraftos 16x9
|
||||
EOF
|
||||
## *Lastly* remove *highest priority* alternative
|
||||
num_grub_efi_installed=$(dpkg-query --list "grub-efi*" 2> /dev/null | grep "^i" | wc -l)
|
||||
@@ -196,19 +113,9 @@ EOF
|
||||
desktop-theme \
|
||||
/usr/share/desktop-base/$theme-theme
|
||||
done << EOF
|
||||
ceratopsian
|
||||
emerald
|
||||
futureprototype
|
||||
moonlight
|
||||
softwaves
|
||||
lines
|
||||
joy
|
||||
joy-inksplat
|
||||
spacefun
|
||||
chillcraftos
|
||||
EOF
|
||||
## *Lastly* remove *highest priority* alternative
|
||||
update-alternatives --remove \
|
||||
desktop-theme \
|
||||
/usr/share/desktop-base/homeworld-theme
|
||||
# (already removed above, keeping for consistency)
|
||||
|
||||
fi
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
[General]
|
||||
LogoPath=emblem-debian
|
||||
LogoPath=emblem-chillcraftos
|
||||
Version=13
|
||||
|
||||
@@ -5,4 +5,4 @@ XftSubPixel=rgb
|
||||
BrowserApplication=firefox-esr.desktop
|
||||
|
||||
[KDE]
|
||||
LookAndFeelPackage=org.debian.desktop
|
||||
LookAndFeelPackage=me.chillcraft.desktop
|
||||
|
||||
|
Before Width: | Height: | Size: 219 KiB After Width: | Height: | Size: 219 KiB |
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
@@ -62,7 +62,7 @@
|
||||
],
|
||||
"Category": "",
|
||||
"Description": "Breeze Twilight adapted to Debian",
|
||||
"Id": "org.debian.desktop",
|
||||
"Id": "me.chillcraft.desktop",
|
||||
"License": "GPLv2+",
|
||||
"Name": "Debian Breeze",
|
||||
"Website": "https://www.kde.org"
|
||||
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
@@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE wallpapers SYSTEM "gnome-wp-list.dtd">
|
||||
<wallpapers>
|
||||
<wallpaper>
|
||||
<!-- don't include words such as "wallpaper" (avoids translations) -->
|
||||
<name>Emerald</name>
|
||||
<filename>/usr/share/desktop-base/emerald-theme/wallpaper/gnome-background.xml</filename>
|
||||
<options>zoom</options>
|
||||
<pcolor>#ffffff</pcolor>
|
||||
<scolor>#000000</scolor>
|
||||
</wallpaper>
|
||||
</wallpapers>
|
||||
@@ -1,29 +0,0 @@
|
||||
dir = usr/share/desktop-base/emerald-theme/grub
|
||||
|
||||
.PHONY: build clean install
|
||||
|
||||
files = \
|
||||
grub-4x3.png \
|
||||
grub-16x9.png
|
||||
|
||||
build: $(files)
|
||||
|
||||
clean:
|
||||
rm -f grub-4x3.png.raw grub-16x9.png.raw
|
||||
rm -f grub-4x3.png grub-16x9.png
|
||||
|
||||
install:
|
||||
install -d $(DESTDIR)/$(dir)
|
||||
$(INSTALL_DATA) $(wildcard *.png *.sh) $(DESTDIR)/$(dir)
|
||||
|
||||
grub-4x3.png: grub-4x3.svg
|
||||
inkscape --export-filename=$@ $<
|
||||
mv $@ $@.raw
|
||||
optipng $@.raw -out $@
|
||||
|
||||
grub-16x9.png: grub-16x9.svg
|
||||
inkscape --export-filename=$@ $<
|
||||
mv $@ $@.raw
|
||||
optipng $@.raw -out $@
|
||||
|
||||
include ../../Makefile.inc
|
||||
@@ -1,917 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 1920 1080"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="grub-16x9.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
width="1920"
|
||||
height="1080"
|
||||
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="defs299">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<defs
|
||||
id="defs235">
|
||||
<rect
|
||||
id="SVGID_00000105414853600283290720000017360153226701225652_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath5828"><g
|
||||
id="g5832"
|
||||
transform="translate(0,2.3000031)"><use
|
||||
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
|
||||
style="overflow:visible"
|
||||
id="use5830"
|
||||
transform="translate(0,-2.3000031)" /></g></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath5834"><g
|
||||
id="g5838"
|
||||
transform="translate(0,2.3000031)"><use
|
||||
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
|
||||
style="overflow:visible"
|
||||
id="use5836"
|
||||
transform="translate(0,-2.3000031)" /></g></clipPath>
|
||||
<defs
|
||||
id="defs30">
|
||||
<rect
|
||||
id="SVGID_00000124148156101187928870000002935036004658084790_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000009557460816904590930000007797994413251903375_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000124148156101187928870000002935036004658084790_"
|
||||
style="overflow:visible"
|
||||
id="use32" />
|
||||
</clipPath>
|
||||
|
||||
</defs><sodipodi:namedview
|
||||
id="namedview297"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.61026993"
|
||||
inkscape:cx="338.37486"
|
||||
inkscape:cy="993.00321"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1019"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
.st0{clip-path:url(#SVGID_00000071542680988731292510000018439444353402814855_);fill:#05475C;}
|
||||
|
||||
.st1{opacity:0.34;clip-path:url(#SVGID_00000085243690974273077900000011262416615712914086_);fill:url(#SVGID_00000072263354255047025890000013102887253426642863_);enable-background:new ;}
|
||||
.st2{opacity:0.62;clip-path:url(#SVGID_00000139263100654146983480000006272638575328240532_);}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000045611204893073885370000013269894862223475083_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000054236302322912223680000011333075200813354640_);enable-background:new ;}
|
||||
.st5{opacity:0.34;fill:url(#SVGID_00000158735472467642101810000000793218095674454194_);enable-background:new ;}
|
||||
.st6{opacity:0.34;fill:url(#SVGID_00000054970471622626129120000008582124000012569240_);enable-background:new ;}
|
||||
.st7{opacity:0.34;fill:url(#SVGID_00000045617802322581885590000017117540530357481360_);enable-background:new ;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000124133830351364159410000008068205573473757342_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000051346993954363826760000011407196415412533382_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000063623669021493640110000018074073609943828114_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000138556549459028127130000003696275348898269369_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000060004861970399718470000002238426018333512604_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000157994359395559826260000002190328101612711833_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000181060483116497177010000001648719923621255096_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000142167235154887979020000015085480388107477919_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000116947656910957083370000005132929159132619418_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000134969063157967053530000008838084406334665614_);enable-background:new ;}
|
||||
|
||||
.st18{opacity:0.12;clip-path:url(#SVGID_00000120519090003817143430000014751369527957968025_);fill:url(#SVGID_00000011004778891925810190000008121571088870855059_);enable-background:new ;}
|
||||
|
||||
.st19{opacity:0.12;clip-path:url(#SVGID_00000106111662013024606810000002717633970611550118_);fill:url(#SVGID_00000153683716182026096470000000023037524271700882_);enable-background:new ;}
|
||||
|
||||
.st20{opacity:0.12;clip-path:url(#SVGID_00000183956590612873169660000011894962313201843359_);fill:url(#SVGID_00000147220390516172396170000012946237539661199800_);enable-background:new ;}
|
||||
|
||||
.st21{opacity:0.12;clip-path:url(#SVGID_00000178191628775191767390000013712267012513785221_);fill:url(#SVGID_00000106146033874241472050000009689421648898431387_);enable-background:new ;}
|
||||
|
||||
.st22{opacity:0.12;clip-path:url(#SVGID_00000115510380845737719310000014559970347469282492_);fill:url(#SVGID_00000154425343835058534630000004520284171995681201_);enable-background:new ;}
|
||||
|
||||
.st23{opacity:0.12;clip-path:url(#SVGID_00000140704734525756634240000016841742932993985411_);fill:url(#SVGID_00000085238650639896445010000005588782577886782651_);enable-background:new ;}
|
||||
.st24{clip-path:url(#SVGID_00000139981739315308956980000010868997781734064258_);}
|
||||
.st25{opacity:0.71;}
|
||||
.st26{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g
|
||||
id="g1325"><g
|
||||
id="g1755"><g
|
||||
id="g12"
|
||||
transform="matrix(3,0,0,2.2327889,0,-2.00951)">
|
||||
<defs
|
||||
id="defs5">
|
||||
<rect
|
||||
id="SVGID_1_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="484.60001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000165221556703780916170000010866235547332093090_">
|
||||
<use
|
||||
xlink:href="#SVGID_1_"
|
||||
style="overflow:visible"
|
||||
id="use7" />
|
||||
</clipPath>
|
||||
|
||||
<rect
|
||||
y="0.89999998"
|
||||
style="fill:#05475c"
|
||||
width="640"
|
||||
height="484.60001"
|
||||
clip-path="url(#SVGID_00000165221556703780916170000010866235547332093090_)"
|
||||
id="rect10"
|
||||
x="0" />
|
||||
</g><g
|
||||
id="g27"
|
||||
transform="matrix(3,0,0,2.239631,0,-3.2812514)">
|
||||
<defs
|
||||
id="defs15">
|
||||
<rect
|
||||
id="SVGID_00000069388754183686928800000004629736924644173729_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000155132189810832442100000017548490820549518009_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000069388754183686928800000004629736924644173729_"
|
||||
style="overflow:visible"
|
||||
id="use17" />
|
||||
</clipPath>
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000051382217558699162500000002818355917924127389_"
|
||||
cx="67.320198"
|
||||
cy="10279.84"
|
||||
r="301.79999"
|
||||
gradientTransform="matrix(0.5,0,0,0.5,0.5399,-4690.4204)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DAC9BA"
|
||||
id="stop20" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop22" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000051382217558699162500000002818355917924127389_);enable-background:new"
|
||||
cx="34.200001"
|
||||
cy="449.5"
|
||||
r="150.89999"
|
||||
clip-path="url(#SVGID_00000155132189810832442100000017548490820549518009_)"
|
||||
id="circle25" />
|
||||
</g><g
|
||||
style="opacity:0.62"
|
||||
clip-path="url(#SVGID_00000009557460816904590930000007797994413251903375_)"
|
||||
id="g140"
|
||||
transform="scale(3,2.2286422)">
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000070817965774873609210000009896994520112849083_"
|
||||
cx="-1719.8934"
|
||||
cy="5956.8662"
|
||||
r="113.8"
|
||||
gradientTransform="matrix(0.8642,0.5228,-0.5025,0.9115,4505.9019,-4287.3071)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop35" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop37" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000070817965774873609210000009896994520112849083_);enable-background:new"
|
||||
cx="26.799999"
|
||||
cy="237.39999"
|
||||
rx="113.8"
|
||||
ry="119.2"
|
||||
id="ellipse40" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000101795260509640636020000012437242171126501814_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2583.5959"
|
||||
y1="-454.25641"
|
||||
x2="2712.8965"
|
||||
y2="-454.25641"
|
||||
gradientTransform="matrix(-0.7151,0.699,-0.5383,-0.5506,1717.1921,-2081.8496)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop42" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop44" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000101795260509640636020000012437242171126501814_);enable-background:new"
|
||||
points="-16.5,24.6 56,-86.2 146.9,59.5 104.9,86 "
|
||||
id="polygon47" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000106859585145232098850000002955945112293633935_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="178.07179"
|
||||
y1="3684.5178"
|
||||
x2="356.27829"
|
||||
y2="3684.5178"
|
||||
gradientTransform="matrix(0.7774,0.629,-0.629,0.7774,2201.9092,-3021.4944)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop49" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop51" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000106859585145232098850000002955945112293633935_);enable-background:new"
|
||||
points="56,-86.2 118.4,-54.5 196.9,-28.1 181.1,42.5 96.2,138.1 39,-3.3 "
|
||||
id="polygon54" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000169530912143375906700000000621875339329320109_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6531.374"
|
||||
y1="1569.223"
|
||||
x2="-6201.4302"
|
||||
y2="1569.223"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,1042.983,-6363.4004)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop56" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop58" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000169530912143375906700000000621875339329320109_);enable-background:new"
|
||||
points="-175.4,216.3 -63.2,75.8 49,-46.8 140.7,58.2 "
|
||||
id="polygon61" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000045578667995824677480000012118072077176775348_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6759.1001"
|
||||
y1="1273.7374"
|
||||
x2="6901.8306"
|
||||
y2="1273.7374"
|
||||
gradientTransform="matrix(-0.3483,0.5724,-0.7648,-0.6285,3595.4902,-3079.3232)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop63" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop65" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000045578667995824677480000012118072077176775348_);enable-background:new"
|
||||
points="319.6,70.4 329.3,153.4 173,16.9 162.5,-105.5 "
|
||||
id="polygon68" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000132079007386204810610000001991809070636413312_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-3473.5115"
|
||||
y1="1871.9165"
|
||||
x2="-3272.8167"
|
||||
y2="1871.9165"
|
||||
gradientTransform="matrix(0.7151,-0.699,0.699,0.7151,1303.7971,-3678.4753)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop70" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop72" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000132079007386204810610000001991809070636413312_);enable-background:new"
|
||||
points="173,16.9 39,-3.3 107.6,-47.4 200,-125.7 317.6,81.9 "
|
||||
id="polygon75" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000165940415883816199490000002652170903267179168_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4172.0244"
|
||||
y1="945.66931"
|
||||
x2="4326.3755"
|
||||
y2="945.66931"
|
||||
gradientTransform="matrix(-0.5898,0.8076,-0.8076,-0.5898,3412.5413,-2898.3325)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop77" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop79" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000165940415883816199490000002652170903267179168_);enable-background:new"
|
||||
points="154.1,56.9 3.2,-30.7 162.5,-105.5 209,81.9 "
|
||||
id="polygon82" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000079460277199837384410000007256434529950953905_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-5700.8525"
|
||||
y1="-3731.8777"
|
||||
x2="-5460.1079"
|
||||
y2="-3731.8777"
|
||||
gradientTransform="matrix(-0.2682,-0.9634,1.0501,-0.2924,2347.9292,-6172.313)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop84" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop86" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000079460277199837384410000007256434529950953905_);enable-background:new"
|
||||
points="-44.9,162 20.4,244.3 -142.9,439.2 -134,300.3 "
|
||||
id="polygon89" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000096769642374833351560000001367799226074404744_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5079.2051"
|
||||
y1="-3976.7305"
|
||||
x2="5331.4736"
|
||||
y2="-3976.7305"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,3221.5364,-5374.0972)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop91" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop93" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000096769642374833351560000001367799226074404744_);enable-background:new"
|
||||
points="26.8,235.2 -63.8,359.6 -137.5,401 -195.5,358.1 -215.7,220.3 -17.3,194.6 "
|
||||
id="polygon96" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000029728178370301967340000011235284565816107184_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-9159.0127"
|
||||
y1="-5494.3096"
|
||||
x2="-8863.6025"
|
||||
y2="-5494.3096"
|
||||
gradientTransform="matrix(-0.2347,-0.2596,0.879,-0.2953,2621.8279,-3787.2927)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop98" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop100" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000029728178370301967340000011235284565816107184_);enable-background:new"
|
||||
points="-192.8,291.1 -175.4,216.3 53,108.4 -16.5,196.8 "
|
||||
id="polygon103" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000161595143950144110780000017925993887690476720_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5745.1045"
|
||||
y1="2944.0874"
|
||||
x2="6341.5342"
|
||||
y2="2944.0874"
|
||||
gradientTransform="matrix(0.1765,0.3022,-0.9209,0.1087,1598.3757,-1774.4047)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop105" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop107" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000161595143950144110780000017925993887690476720_);enable-background:new"
|
||||
points="9.9,292.3 110.4,461.4 -145.2,381 -134,300.3 "
|
||||
id="polygon110" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000083799099488186877740000001427691366751589030_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6531.374"
|
||||
y1="1531.231"
|
||||
x2="-6342.6738"
|
||||
y2="1531.231"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,1042.983,-6363.4004)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop112" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop114" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000083799099488186877740000001427691366751589030_);enable-background:new"
|
||||
points="-17.3,194.6 -175.4,216.3 -126.2,62.5 53,108.4 "
|
||||
id="polygon117" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000062186679139829515360000008929432546328608678_"
|
||||
cx="-3802.3752"
|
||||
cy="-2018.9218"
|
||||
r="119.51"
|
||||
gradientTransform="matrix(1,0,0,-1,0,-3076.8403)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop119" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop121" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000062186679139829515360000008929432546328608678_);enable-background:new"
|
||||
cx="96.199997"
|
||||
cy="13.7"
|
||||
rx="119.5"
|
||||
ry="125.2"
|
||||
id="ellipse124" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000024690754393631733010000011044239768892776096_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5079.2051"
|
||||
y1="-4032.7424"
|
||||
x2="5272.6421"
|
||||
y2="-4032.7424"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,3221.5364,-5374.0972)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop126" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop128" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000024690754393631733010000011044239768892776096_);enable-background:new"
|
||||
points="-147.1,232.3 26.8,235.2 -5.4,428 -63.8,359.6 -127,370.2 "
|
||||
id="polygon131" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000050656969083910025690000008598441663246236579_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2724.9294"
|
||||
y1="3967.8757"
|
||||
x2="-2549.8918"
|
||||
y2="3967.8757"
|
||||
gradientTransform="matrix(0.9797,-0.2004,0.2004,0.9797,1750.7784,-4358.5493)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop133" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop135" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000050656969083910025690000008598441663246236579_);enable-background:new"
|
||||
points="-126.2,62.5 3.2,40 39,-3.3 47.6,84.7 "
|
||||
id="polygon138" />
|
||||
</g><g
|
||||
id="g157"
|
||||
transform="scale(3,2.2286422)">
|
||||
<defs
|
||||
id="defs145">
|
||||
<rect
|
||||
id="SVGID_00000031195912240633887000000004079428614401632700_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000151507511927978965780000002387878401372756407_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000031195912240633887000000004079428614401632700_"
|
||||
style="overflow:visible"
|
||||
id="use147" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000033359048294171688790000000775581327429353636_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6938.3296"
|
||||
y1="1131.6506"
|
||||
x2="-6649.2324"
|
||||
y2="1131.6506"
|
||||
gradientTransform="matrix(0.4172,-0.9088,0.9088,0.4172,2531.2654,-6215.4648)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop150" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop152" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000033359048294171688790000000775581327429353636_);enable-background:new"
|
||||
points="527.3,398.7 589.6,300 943.4,371.9 840.8,642.9 "
|
||||
clip-path="url(#SVGID_00000151507511927978965780000002387878401372756407_)"
|
||||
id="polygon155" />
|
||||
</g><g
|
||||
id="g172"
|
||||
transform="scale(3,2.2286422)">
|
||||
<defs
|
||||
id="defs160">
|
||||
<rect
|
||||
id="SVGID_00000130622640253779499030000006957545591170167218_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000038377279451847958660000013948159711101587628_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000130622640253779499030000006957545591170167218_"
|
||||
style="overflow:visible"
|
||||
id="use162" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000073712156955919745150000018014436835206889603_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="58.759899"
|
||||
y1="-5871.8867"
|
||||
x2="421.16409"
|
||||
y2="-5871.8867"
|
||||
gradientTransform="matrix(-0.9511,-0.3089,0.3089,-0.9511,2700.2234,-5034.0278)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop165" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop167" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000073712156955919745150000018014436835206889603_);enable-background:new"
|
||||
points="559.4,194.1 708.5,470.8 807.8,602.5 617.8,645.3 474.6,667.4 465.9,494.1 "
|
||||
clip-path="url(#SVGID_00000038377279451847958660000013948159711101587628_)"
|
||||
id="polygon170" />
|
||||
</g><g
|
||||
id="g187"
|
||||
transform="scale(3,2.2286422)">
|
||||
<defs
|
||||
id="defs175">
|
||||
<rect
|
||||
id="SVGID_00000118376838458325678060000015855036868445107350_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000110459491631553875290000010150341677443506576_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000118376838458325678060000015855036868445107350_"
|
||||
style="overflow:visible"
|
||||
id="use177" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000103971786709948536080000001973379522257999801_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2613.928"
|
||||
y1="4164.1494"
|
||||
x2="3052.9421"
|
||||
y2="4164.1494"
|
||||
gradientTransform="matrix(-0.03594599,0.9994,-0.9994,-0.03594599,4979.0908,-2328.8867)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop180" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop182" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000103971786709948536080000001973379522257999801_);enable-background:new"
|
||||
points="678.8,571.5 589.3,258.1 807.2,136.8 847.9,280.8 "
|
||||
clip-path="url(#SVGID_00000110459491631553875290000010150341677443506576_)"
|
||||
id="polygon185" />
|
||||
</g><g
|
||||
id="g202"
|
||||
transform="scale(3,2.2286422)">
|
||||
<defs
|
||||
id="defs190">
|
||||
<rect
|
||||
id="SVGID_00000116237745612361073240000006150465265803419285_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000145058946190271890110000017138466978116788627_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000116237745612361073240000006150465265803419285_"
|
||||
style="overflow:visible"
|
||||
id="use192" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000030448420059369570490000000840399102467860385_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-5329.144"
|
||||
y1="523.46637"
|
||||
x2="-5071.4404"
|
||||
y2="523.46637"
|
||||
gradientTransform="matrix(0.2612,-0.9653,0.9653,0.2612,1525.5635,-4714.7476)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop195" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop197" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000030448420059369570490000000840399102467860385_);enable-background:new"
|
||||
points="803.7,610.8 498.9,330.8 602.4,329.8 896,368.8 "
|
||||
clip-path="url(#SVGID_00000145058946190271890110000017138466978116788627_)"
|
||||
id="polygon200" />
|
||||
</g><g
|
||||
id="g217"
|
||||
transform="scale(3,2.2286422)">
|
||||
<defs
|
||||
id="defs205">
|
||||
<rect
|
||||
id="SVGID_00000101074714170627461240000013138533359750141568_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000116914092487373798290000001093053265067242669_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000101074714170627461240000013138533359750141568_"
|
||||
style="overflow:visible"
|
||||
id="use207" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000017477945025455821640000013403267416503434134_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="1120.3934"
|
||||
y1="2872.0176"
|
||||
x2="1397.709"
|
||||
y2="2872.0176"
|
||||
gradientTransform="matrix(0.9919,-0.1269,0.1269,0.9919,-926.962,-2147.6309)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop210" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop212" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000017477945025455821640000013403267416503434134_);enable-background:new"
|
||||
points="840.1,650.5 630.1,619.4 532.6,432.2 "
|
||||
clip-path="url(#SVGID_00000116914092487373798290000001093053265067242669_)"
|
||||
id="polygon215" />
|
||||
</g><g
|
||||
id="g232"
|
||||
transform="matrix(3,0,0,2.2373786,0,-2.3273804)">
|
||||
<defs
|
||||
id="defs220">
|
||||
<rect
|
||||
id="SVGID_00000003815786949138481970000001745649588036378536_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000052802962437109526920000015325253674162927752_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000003815786949138481970000001745649588036378536_"
|
||||
style="overflow:visible"
|
||||
id="use222" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000175296180110522475230000004885647257872674460_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-4937.0015"
|
||||
y1="-1044.0806"
|
||||
x2="-4651.3462"
|
||||
y2="-1044.0806"
|
||||
gradientTransform="matrix(-0.09480336,-0.9955,0.9955,-0.09480336,573.8284,-4451.9326)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop225" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop227" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000175296180110522475230000004885647257872674460_);enable-background:new"
|
||||
points="48.7,474.4 -113.7,572.9 91.6,266.4 "
|
||||
clip-path="url(#SVGID_00000052802962437109526920000015325253674162927752_)"
|
||||
id="polygon230" />
|
||||
</g></g><g
|
||||
id="g1061"
|
||||
style="opacity:0.15"><g
|
||||
class="st25"
|
||||
id="g264"
|
||||
transform="matrix(2.2499997,0,0,2.2499997,10.226295,-4.4998589)"
|
||||
clip-path="url(#clipPath5834)">
|
||||
<path
|
||||
class="st26"
|
||||
d="m 19.4,463.3 c -0.2,0 0,0.1 0.3,0.2 0.1,-0.1 0.2,-0.1 0.2,-0.2 -0.1,0 -0.3,0 -0.5,0"
|
||||
id="path240" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 20.6,463 c 0.1,-0.2 0.2,-0.4 0.3,-0.6 0,0.1 -0.1,0.3 -0.2,0.4 -0.4,0.3 0,-0.2 0,-0.3 -0.5,0.6 -0.1,0.3 -0.1,0.5"
|
||||
id="path242" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 21,461.8 c 0,-0.4 -0.1,-0.3 -0.1,-0.1 0.1,0 0.1,0.3 0.1,0.1"
|
||||
id="path244" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 18.5,456.3 c 0.1,0 0.3,0 0.2,0.1 0.2,-0.1 0.2,-0.1 -0.2,-0.1"
|
||||
id="path246" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 18.8,456.4 v 0 0 0"
|
||||
id="path248" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 22.5,462 c 0,0.4 -0.1,0.5 -0.2,0.9 l -0.2,0.1 c -0.2,0.3 0,0.2 -0.1,0.4 -0.2,0.2 -0.8,0.7 -0.9,0.7 -0.1,0 0.1,-0.1 0.1,-0.2 -0.3,0.2 -0.3,0.3 -0.8,0.5 v 0 c -1.3,0.6 -3,-0.6 -3,-2.2 0,0.1 0,0.1 -0.1,0.1 -0.1,-0.8 0.4,-1.6 1.1,-2 0.7,-0.4 1.6,-0.2 2.1,0.3 -0.3,-0.4 -0.9,-0.8 -1.5,-0.7 -0.7,0 -1.3,0.4 -1.5,0.9 -0.3,0.2 -0.4,0.8 -0.5,0.9 -0.2,1.5 0.4,2.1 1.3,2.8 0.2,0.1 0,0.1 0.1,0.2 -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 0.1,0.2 0.3,0.4 0.4,0.5 -0.3,-0.1 -0.7,-0.7 -0.8,-0.8 0.5,0.9 2.1,1.6 3,1.3 -0.4,0 -0.9,0 -1.3,-0.2 -0.2,-0.1 -0.4,-0.3 -0.4,-0.3 1.1,0.4 2.3,0.3 3.3,-0.5 0.3,-0.2 0.5,-0.5 0.6,-0.5 -0.1,0.2 0,0.1 -0.1,0.2 0.3,-0.4 -0.1,-0.2 0.3,-0.7 l 0.1,0.2 c -0.1,-0.3 0.4,-0.7 0.4,-1.3 0.1,-0.2 0.1,0.2 0,0.6 0.2,-0.4 0,-0.5 0.1,-0.8 0,0.1 0.1,0.2 0.1,0.4 -0.1,-0.4 0.1,-0.7 0.2,-0.9 -0.1,0 -0.2,0.2 -0.2,-0.3 0,-0.2 0.1,-0.1 0.1,-0.2 0,0 -0.1,-0.2 -0.2,-0.5 0,-0.1 0.1,0.2 0.2,0.2 0,-0.2 -0.1,-0.4 -0.1,-0.6 -0.2,-0.4 -0.1,0.1 -0.2,-0.2 -0.2,-0.6 0.2,-0.1 0.2,-0.4 0.3,0.4 0.5,1.1 0.6,1.4 -0.1,-0.3 -0.2,-0.7 -0.3,-1 0.1,0 -0.1,-0.7 0.1,-0.2 -0.3,-1 -1.2,-2 -2.1,-2.5 0.1,0.1 0.2,0.2 0.2,0.2 -0.4,-0.3 -0.4,-0.3 -0.4,-0.4 -0.3,-0.1 -0.4,0 -0.6,0 -0.7,-0.3 -0.8,-0.3 -1.4,-0.5 v 0.1 c -0.4,-0.1 -0.5,0.1 -1,0 0,0 0.1,-0.1 0.3,-0.1 -0.4,0.1 -0.4,-0.1 -0.8,0 0.1,-0.1 0.2,-0.1 0.3,-0.2 -0.3,0 -0.8,0.2 -0.7,0 -0.6,0.2 -1.5,0.6 -2.1,1.1 V 457 c -0.3,0.3 -1.1,0.9 -1.2,1.3 H 14 c -0.1,0.2 -0.2,0.5 -0.3,0.7 -0.2,0.3 -0.3,0.1 -0.2,0.2 -0.3,0.7 -0.5,1.3 -0.7,1.7 0.1,0.2 0,0.9 0,1.6 -0.2,3.1 2.2,6.1 4.7,6.8 0.4,0.1 0.9,0.1 1.4,0.1 -0.6,-0.2 -0.6,-0.1 -1.2,-0.3 -0.4,-0.2 -0.5,-0.4 -0.8,-0.6 l 0.1,0.2 c -0.5,-0.2 -0.3,-0.2 -0.8,-0.4 l 0.1,-0.2 c -0.2,0 -0.5,-0.3 -0.5,-0.5 h -0.2 c -0.2,-0.3 -0.4,-0.5 -0.3,-0.7 l -0.1,0.1 c -0.1,-0.1 -0.9,-1.1 -0.4,-0.9 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 l 0.1,-0.1 c -0.2,-0.3 -0.4,-0.6 -0.3,-0.7 0.1,0.1 0.2,0.2 0.2,0.2 C 14,464 14,465.1 13.6,464 h 0.1 c -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 v -0.3 c -0.4,-0.4 -0.1,-1.8 0,-2.5 0,-0.3 0.3,-0.6 0.5,-1.1 H 14 c 0.2,-0.4 1.3,-1.6 1.8,-1.6 0.2,-0.3 0,0 -0.1,-0.1 0.5,-0.6 0.7,-0.4 1.1,-0.5 0.4,-0.2 -0.3,0.1 -0.2,-0.1 0.7,-0.2 0.5,-0.4 1.4,-0.5 0.1,0.1 -0.2,0.1 -0.3,0.2 0.6,-0.3 1.8,-0.2 2.6,0.2 0.9,0.4 2,1.7 2,2.9 v 0 c 0,0.5 0.1,1 -0.1,1.5 l 0.3,0.2"
|
||||
id="path250" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 16.9,463.6 v 0.2 c 0.1,0.2 0.3,0.4 0.5,0.6 -0.2,-0.3 -0.3,-0.4 -0.5,-0.8"
|
||||
id="path252" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 17.3,463.6 c -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 0,0.2 0.2,0.3 0.2,0.5 v -0.2"
|
||||
id="path254" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 23.5,462.2 v 0 c -0.1,0.5 -0.2,0.9 -0.4,1.3 0.1,-0.3 0.3,-0.8 0.4,-1.3"
|
||||
id="path256" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 18.6,456.2 c 0.2,-0.1 0.4,0 0.5,-0.1 -0.2,0 -0.4,0.1 -0.5,0.1 v 0"
|
||||
id="path258" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 13.2,459 c 0,0.3 -0.2,0.4 0.1,0.2 0.2,-0.3 -0.1,0 -0.1,-0.2"
|
||||
id="path260" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 12.9,460.5 c 0.1,-0.2 0.1,-0.3 0.1,-0.5 -0.2,0.3 -0.1,0.4 -0.1,0.5"
|
||||
id="path262" />
|
||||
</g><g
|
||||
id="g288"
|
||||
transform="matrix(2.1641821,0,0,2.1641791,14.425282,36.072759)"
|
||||
clip-path="url(#clipPath5828)">
|
||||
<g
|
||||
class="st25"
|
||||
id="g280">
|
||||
<path
|
||||
class="st26"
|
||||
d="m 35.1,461.3 c 0,0 0,2.7 0,3.4 0,0.6 -0.1,1.8 -1.3,1.8 -1.2,0 -1.5,-1.4 -1.6,-2 -0.1,-0.7 -0.1,-1.3 -0.1,-1.5 0,-0.8 0,-3 1.9,-3 0.6,0 0.9,0.2 1.1,0.3 z m -4.8,2 c 0,4.7 2.5,4.7 2.9,4.7 1,0 1.7,-0.6 2,-1.6 v 1.5 c 0.3,0 0.6,0 1.2,0 0.2,0 0.3,0 0.5,0 0.1,0 0.3,0 0.4,0 -0.3,-0.5 -0.5,-1.7 -0.5,-4.4 0,-2.5 0,-6.9 0.2,-8.2 -0.6,0.3 -1.1,0.5 -2.3,0.6 0.5,0.5 0.5,0.7 0.5,3 -0.3,-0.1 -0.7,-0.2 -1.4,-0.2 -3,0.1 -3.5,2.7 -3.5,4.6"
|
||||
id="path266" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 39.4,462.5 c 0,-1.4 0.3,-2.6 1.5,-2.6 1.3,0 1.4,1.4 1.4,2.6 z m 4.5,0.1 c 0,-2 -0.4,-3.9 -2.9,-3.9 -3.4,0 -3.4,3.8 -3.4,4.6 0,3.4 1.5,4.7 4.1,4.7 1.1,0 1.7,-0.2 2,-0.2 0,-0.6 0.1,-1 0.2,-1.5 -0.4,0.2 -0.8,0.5 -1.8,0.5 -2.6,0 -2.6,-2.4 -2.6,-3.2 H 44 l -0.1,-1"
|
||||
id="path268" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 49.3,463.3 c 0,1.6 -0.3,3.7 -2.2,3.7 -0.3,0 -0.6,0 -0.8,-0.1 0,-0.6 0,-1.6 0,-2.8 0,-1.4 0.2,-2.2 0.3,-2.6 0.4,-1.2 1.1,-1.2 1.3,-1.2 1.2,0 1.4,1.7 1.4,3 z m -4.8,1.9 c 0,1.2 0,1.9 -0.2,2.5 0.7,0.3 1.5,0.4 2.6,0.4 0.7,0 2.5,0 3.6,-2.1 0.5,-1 0.7,-2.3 0.7,-3.3 0,-0.6 -0.1,-1.9 -0.6,-2.8 -0.5,-0.8 -1.2,-1.2 -2,-1.2 -1.6,0 -2.1,1.3 -2.3,2 0,-0.9 0,-3.8 0.2,-5.4 -1.1,0.5 -1.8,0.6 -2.5,0.7 0.7,0.3 0.7,1.4 0.7,5 l -0.2,4.2"
|
||||
id="path270" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 54.3,468 c -0.3,0 -0.6,-0.1 -1.1,-0.1 -0.5,0 -0.9,0 -1.3,0.1 0.2,-0.3 0.2,-0.5 0.3,-1.6 0.1,-1.5 0.1,-5.5 0,-6.3 -0.1,-0.6 -0.2,-0.7 -0.5,-0.9 1.4,-0.1 1.8,-0.2 2.4,-0.5 -0.1,0.7 -0.2,1.1 -0.2,2.2 0.1,5.8 0.1,6.4 0.4,7.1"
|
||||
id="path272" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 59.7,463.2 c 0,1.1 0,1.8 -0.3,2.4 -0.4,0.7 -0.9,1 -1.4,1 -1,0 -1.2,-0.8 -1.2,-1.7 0,-1.6 1.4,-1.7 2,-1.7 z m -4.6,2.1 c 0,1.1 0.3,2.1 1.3,2.6 0.4,0.2 0.8,0.2 1,0.2 1.5,0 2.1,-1.1 2.4,-1.9 0,0.7 0,1.2 0,1.8 0.3,0 0.6,0 1.1,0 0.3,0 0.6,0 0.8,0 -0.2,-0.3 -0.3,-0.5 -0.3,-1.1 0,-0.6 0,-1.3 0,-2.2 v -3.4 c 0,-1.3 -0.3,-2.5 -2.8,-2.5 -1.7,0 -2.6,0.5 -3.1,0.7 0.2,0.4 0.4,0.7 0.5,1.4 0.7,-0.6 1.5,-0.9 2.4,-0.9 1.4,0 1.4,0.9 1.4,2.2 -0.3,0 -0.6,0 -1,0 -2.3,0 -3.7,0.8 -3.7,3.1"
|
||||
id="path274" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 69.4,466.3 c 0,0.6 0,1.2 0.2,1.7 -0.4,0 -0.6,-0.1 -1.3,-0.1 -0.4,0 -0.6,0 -0.9,0.1 0.1,-0.2 0.1,-0.3 0.1,-0.6 0,-0.4 0.1,-1.7 0.1,-2.1 v -1.8 c 0,-0.8 0,-1.9 0,-2.3 0,-0.3 -0.1,-1.1 -1.1,-1.1 -0.9,0 -1.3,0.7 -1.4,1.3 -0.1,0.6 -0.1,1.2 -0.1,3.7 0,2.1 0,2.3 0.2,2.9 -0.3,0 -0.6,-0.1 -1.1,-0.1 -0.4,0 -0.7,0 -1,0.1 0.1,-0.3 0.2,-0.4 0.2,-1.3 0,-0.9 0.1,-5.4 0,-6.5 -0.1,-0.7 -0.2,-0.8 -0.4,-1 1.4,-0.1 1.8,-0.3 2.2,-0.5 v 1.8 c 0.2,-0.5 0.6,-1.7 2.3,-1.7 2.1,0 2.1,1.5 2.1,2.5 l -0.1,5"
|
||||
id="path276" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 54.5,456.3 -1.4,1.4 -1.4,-1.4 1.4,-1.4 1.4,1.4"
|
||||
id="path278" />
|
||||
</g>
|
||||
</g></g></g>
|
||||
|
||||
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 31 KiB |
@@ -1,910 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 640 479.99999"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="grub-4x3.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
width="640"
|
||||
height="480"
|
||||
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="defs299">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<defs
|
||||
id="defs235">
|
||||
<rect
|
||||
id="SVGID_00000105414853600283290720000017360153226701225652_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath5828"><g
|
||||
id="g5832"
|
||||
transform="translate(0,2.3000031)"><use
|
||||
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
|
||||
style="overflow:visible"
|
||||
id="use5830"
|
||||
transform="translate(0,-2.3000031)" /></g></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath5834"><g
|
||||
id="g5838"
|
||||
transform="translate(0,2.3000031)"><use
|
||||
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
|
||||
style="overflow:visible"
|
||||
id="use5836"
|
||||
transform="translate(0,-2.3000031)" /></g></clipPath></defs><sodipodi:namedview
|
||||
id="namedview297"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.5899496"
|
||||
inkscape:cx="118.24274"
|
||||
inkscape:cy="291.2042"
|
||||
inkscape:window-width="1287"
|
||||
inkscape:window-height="1019"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
.st0{clip-path:url(#SVGID_00000071542680988731292510000018439444353402814855_);fill:#05475C;}
|
||||
|
||||
.st1{opacity:0.34;clip-path:url(#SVGID_00000085243690974273077900000011262416615712914086_);fill:url(#SVGID_00000072263354255047025890000013102887253426642863_);enable-background:new ;}
|
||||
.st2{opacity:0.62;clip-path:url(#SVGID_00000139263100654146983480000006272638575328240532_);}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000045611204893073885370000013269894862223475083_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000054236302322912223680000011333075200813354640_);enable-background:new ;}
|
||||
.st5{opacity:0.34;fill:url(#SVGID_00000158735472467642101810000000793218095674454194_);enable-background:new ;}
|
||||
.st6{opacity:0.34;fill:url(#SVGID_00000054970471622626129120000008582124000012569240_);enable-background:new ;}
|
||||
.st7{opacity:0.34;fill:url(#SVGID_00000045617802322581885590000017117540530357481360_);enable-background:new ;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000124133830351364159410000008068205573473757342_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000051346993954363826760000011407196415412533382_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000063623669021493640110000018074073609943828114_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000138556549459028127130000003696275348898269369_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000060004861970399718470000002238426018333512604_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000157994359395559826260000002190328101612711833_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000181060483116497177010000001648719923621255096_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000142167235154887979020000015085480388107477919_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000116947656910957083370000005132929159132619418_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000134969063157967053530000008838084406334665614_);enable-background:new ;}
|
||||
|
||||
.st18{opacity:0.12;clip-path:url(#SVGID_00000120519090003817143430000014751369527957968025_);fill:url(#SVGID_00000011004778891925810190000008121571088870855059_);enable-background:new ;}
|
||||
|
||||
.st19{opacity:0.12;clip-path:url(#SVGID_00000106111662013024606810000002717633970611550118_);fill:url(#SVGID_00000153683716182026096470000000023037524271700882_);enable-background:new ;}
|
||||
|
||||
.st20{opacity:0.12;clip-path:url(#SVGID_00000183956590612873169660000011894962313201843359_);fill:url(#SVGID_00000147220390516172396170000012946237539661199800_);enable-background:new ;}
|
||||
|
||||
.st21{opacity:0.12;clip-path:url(#SVGID_00000178191628775191767390000013712267012513785221_);fill:url(#SVGID_00000106146033874241472050000009689421648898431387_);enable-background:new ;}
|
||||
|
||||
.st22{opacity:0.12;clip-path:url(#SVGID_00000115510380845737719310000014559970347469282492_);fill:url(#SVGID_00000154425343835058534630000004520284171995681201_);enable-background:new ;}
|
||||
|
||||
.st23{opacity:0.12;clip-path:url(#SVGID_00000140704734525756634240000016841742932993985411_);fill:url(#SVGID_00000085238650639896445010000005588782577886782651_);enable-background:new ;}
|
||||
.st24{clip-path:url(#SVGID_00000139981739315308956980000010868997781734064258_);}
|
||||
.st25{opacity:0.71;}
|
||||
.st26{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g
|
||||
id="g1336"><g
|
||||
id="g5555"
|
||||
transform="scale(1,0.99050762)"><g
|
||||
id="g12">
|
||||
<defs
|
||||
id="defs5">
|
||||
<rect
|
||||
id="SVGID_1_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="484.60001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000165221556703780916170000010866235547332093090_">
|
||||
<use
|
||||
xlink:href="#SVGID_1_"
|
||||
style="overflow:visible"
|
||||
id="use7" />
|
||||
</clipPath>
|
||||
|
||||
<rect
|
||||
y="0.89999998"
|
||||
style="fill:#05475c"
|
||||
width="640"
|
||||
height="484.60001"
|
||||
clip-path="url(#SVGID_00000165221556703780916170000010866235547332093090_)"
|
||||
id="rect10"
|
||||
x="0" />
|
||||
</g><g
|
||||
id="g27">
|
||||
<defs
|
||||
id="defs15">
|
||||
<rect
|
||||
id="SVGID_00000069388754183686928800000004629736924644173729_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000155132189810832442100000017548490820549518009_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000069388754183686928800000004629736924644173729_"
|
||||
style="overflow:visible"
|
||||
id="use17" />
|
||||
</clipPath>
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000051382217558699162500000002818355917924127389_"
|
||||
cx="67.320198"
|
||||
cy="10279.84"
|
||||
r="301.79999"
|
||||
gradientTransform="matrix(0.5,0,0,0.5,0.5399,-4690.4204)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DAC9BA"
|
||||
id="stop20" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop22" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000051382217558699162500000002818355917924127389_);enable-background:new"
|
||||
cx="34.200001"
|
||||
cy="449.5"
|
||||
r="150.89999"
|
||||
clip-path="url(#SVGID_00000155132189810832442100000017548490820549518009_)"
|
||||
id="circle25" />
|
||||
</g><g
|
||||
id="g142">
|
||||
<defs
|
||||
id="defs30">
|
||||
<rect
|
||||
id="SVGID_00000124148156101187928870000002935036004658084790_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000009557460816904590930000007797994413251903375_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000124148156101187928870000002935036004658084790_"
|
||||
style="overflow:visible"
|
||||
id="use32" />
|
||||
</clipPath>
|
||||
<g
|
||||
style="opacity:0.62"
|
||||
clip-path="url(#SVGID_00000009557460816904590930000007797994413251903375_)"
|
||||
id="g140">
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000070817965774873609210000009896994520112849083_"
|
||||
cx="-1719.8934"
|
||||
cy="5956.8662"
|
||||
r="113.8"
|
||||
gradientTransform="matrix(0.8642,0.5228,-0.5025,0.9115,4505.9019,-4287.3071)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop35" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop37" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000070817965774873609210000009896994520112849083_);enable-background:new"
|
||||
cx="26.799999"
|
||||
cy="237.39999"
|
||||
rx="113.8"
|
||||
ry="119.2"
|
||||
id="ellipse40" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000101795260509640636020000012437242171126501814_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2583.5959"
|
||||
y1="-454.25641"
|
||||
x2="2712.8965"
|
||||
y2="-454.25641"
|
||||
gradientTransform="matrix(-0.7151,0.699,-0.5383,-0.5506,1717.1921,-2081.8496)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop42" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop44" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000101795260509640636020000012437242171126501814_);enable-background:new"
|
||||
points="56,-86.2 146.9,59.5 104.9,86 -16.5,24.6 "
|
||||
id="polygon47" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000106859585145232098850000002955945112293633935_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="178.07179"
|
||||
y1="3684.5178"
|
||||
x2="356.27829"
|
||||
y2="3684.5178"
|
||||
gradientTransform="matrix(0.7774,0.629,-0.629,0.7774,2201.9092,-3021.4944)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop49" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop51" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000106859585145232098850000002955945112293633935_);enable-background:new"
|
||||
points="118.4,-54.5 196.9,-28.1 181.1,42.5 96.2,138.1 39,-3.3 56,-86.2 "
|
||||
id="polygon54" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000169530912143375906700000000621875339329320109_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6531.374"
|
||||
y1="1569.223"
|
||||
x2="-6201.4302"
|
||||
y2="1569.223"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,1042.983,-6363.4004)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop56" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop58" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000169530912143375906700000000621875339329320109_);enable-background:new"
|
||||
points="-63.2,75.8 49,-46.8 140.7,58.2 -175.4,216.3 "
|
||||
id="polygon61" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000045578667995824677480000012118072077176775348_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6759.1001"
|
||||
y1="1273.7374"
|
||||
x2="6901.8306"
|
||||
y2="1273.7374"
|
||||
gradientTransform="matrix(-0.3483,0.5724,-0.7648,-0.6285,3595.4902,-3079.3232)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop63" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop65" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000045578667995824677480000012118072077176775348_);enable-background:new"
|
||||
points="329.3,153.4 173,16.9 162.5,-105.5 319.6,70.4 "
|
||||
id="polygon68" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000132079007386204810610000001991809070636413312_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-3473.5115"
|
||||
y1="1871.9165"
|
||||
x2="-3272.8167"
|
||||
y2="1871.9165"
|
||||
gradientTransform="matrix(0.7151,-0.699,0.699,0.7151,1303.7971,-3678.4753)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop70" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop72" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000132079007386204810610000001991809070636413312_);enable-background:new"
|
||||
points="317.6,81.9 173,16.9 39,-3.3 107.6,-47.4 200,-125.7 "
|
||||
id="polygon75" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000165940415883816199490000002652170903267179168_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4172.0244"
|
||||
y1="945.66931"
|
||||
x2="4326.3755"
|
||||
y2="945.66931"
|
||||
gradientTransform="matrix(-0.5898,0.8076,-0.8076,-0.5898,3412.5413,-2898.3325)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop77" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop79" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000165940415883816199490000002652170903267179168_);enable-background:new"
|
||||
points="3.2,-30.7 162.5,-105.5 209,81.9 154.1,56.9 "
|
||||
id="polygon82" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000079460277199837384410000007256434529950953905_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-5700.8525"
|
||||
y1="-3731.8777"
|
||||
x2="-5460.1079"
|
||||
y2="-3731.8777"
|
||||
gradientTransform="matrix(-0.2682,-0.9634,1.0501,-0.2924,2347.9292,-6172.313)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop84" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop86" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000079460277199837384410000007256434529950953905_);enable-background:new"
|
||||
points="20.4,244.3 -142.9,439.2 -134,300.3 -44.9,162 "
|
||||
id="polygon89" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000096769642374833351560000001367799226074404744_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5079.2051"
|
||||
y1="-3976.7305"
|
||||
x2="5331.4736"
|
||||
y2="-3976.7305"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,3221.5364,-5374.0972)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop91" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop93" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000096769642374833351560000001367799226074404744_);enable-background:new"
|
||||
points="-63.8,359.6 -137.5,401 -195.5,358.1 -215.7,220.3 -17.3,194.6 26.8,235.2 "
|
||||
id="polygon96" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000029728178370301967340000011235284565816107184_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-9159.0127"
|
||||
y1="-5494.3096"
|
||||
x2="-8863.6025"
|
||||
y2="-5494.3096"
|
||||
gradientTransform="matrix(-0.2347,-0.2596,0.879,-0.2953,2621.8279,-3787.2927)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop98" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop100" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000029728178370301967340000011235284565816107184_);enable-background:new"
|
||||
points="-175.4,216.3 53,108.4 -16.5,196.8 -192.8,291.1 "
|
||||
id="polygon103" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000161595143950144110780000017925993887690476720_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5745.1045"
|
||||
y1="2944.0874"
|
||||
x2="6341.5342"
|
||||
y2="2944.0874"
|
||||
gradientTransform="matrix(0.1765,0.3022,-0.9209,0.1087,1598.3757,-1774.4047)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop105" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop107" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000161595143950144110780000017925993887690476720_);enable-background:new"
|
||||
points="110.4,461.4 -145.2,381 -134,300.3 9.9,292.3 "
|
||||
id="polygon110" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000083799099488186877740000001427691366751589030_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6531.374"
|
||||
y1="1531.231"
|
||||
x2="-6342.6738"
|
||||
y2="1531.231"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,1042.983,-6363.4004)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop112" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop114" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000083799099488186877740000001427691366751589030_);enable-background:new"
|
||||
points="-175.4,216.3 -126.2,62.5 53,108.4 -17.3,194.6 "
|
||||
id="polygon117" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000062186679139829515360000008929432546328608678_"
|
||||
cx="-3802.3752"
|
||||
cy="-2018.9218"
|
||||
r="119.51"
|
||||
gradientTransform="matrix(1,0,0,-1,0,-3076.8403)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop119" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop121" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000062186679139829515360000008929432546328608678_);enable-background:new"
|
||||
cx="96.199997"
|
||||
cy="13.7"
|
||||
rx="119.5"
|
||||
ry="125.2"
|
||||
id="ellipse124" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000024690754393631733010000011044239768892776096_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5079.2051"
|
||||
y1="-4032.7424"
|
||||
x2="5272.6421"
|
||||
y2="-4032.7424"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,3221.5364,-5374.0972)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop126" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop128" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000024690754393631733010000011044239768892776096_);enable-background:new"
|
||||
points="-127,370.2 -147.1,232.3 26.8,235.2 -5.4,428 -63.8,359.6 "
|
||||
id="polygon131" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000050656969083910025690000008598441663246236579_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2724.9294"
|
||||
y1="3967.8757"
|
||||
x2="-2549.8918"
|
||||
y2="3967.8757"
|
||||
gradientTransform="matrix(0.9797,-0.2004,0.2004,0.9797,1750.7784,-4358.5493)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop133" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop135" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000050656969083910025690000008598441663246236579_);enable-background:new"
|
||||
points="3.2,40 39,-3.3 47.6,84.7 -126.2,62.5 "
|
||||
id="polygon138" />
|
||||
</g>
|
||||
</g><g
|
||||
id="g157">
|
||||
<defs
|
||||
id="defs145">
|
||||
<rect
|
||||
id="SVGID_00000031195912240633887000000004079428614401632700_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000151507511927978965780000002387878401372756407_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000031195912240633887000000004079428614401632700_"
|
||||
style="overflow:visible"
|
||||
id="use147" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000033359048294171688790000000775581327429353636_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6938.3296"
|
||||
y1="1131.6506"
|
||||
x2="-6649.2324"
|
||||
y2="1131.6506"
|
||||
gradientTransform="matrix(0.4172,-0.9088,0.9088,0.4172,2531.2654,-6215.4648)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop150" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop152" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000033359048294171688790000000775581327429353636_);enable-background:new"
|
||||
points="840.8,642.9 527.3,398.7 589.6,300 943.4,371.9 "
|
||||
clip-path="url(#SVGID_00000151507511927978965780000002387878401372756407_)"
|
||||
id="polygon155" />
|
||||
</g><g
|
||||
id="g172">
|
||||
<defs
|
||||
id="defs160">
|
||||
<rect
|
||||
id="SVGID_00000130622640253779499030000006957545591170167218_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000038377279451847958660000013948159711101587628_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000130622640253779499030000006957545591170167218_"
|
||||
style="overflow:visible"
|
||||
id="use162" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000073712156955919745150000018014436835206889603_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="58.759899"
|
||||
y1="-5871.8867"
|
||||
x2="421.16409"
|
||||
y2="-5871.8867"
|
||||
gradientTransform="matrix(-0.9511,-0.3089,0.3089,-0.9511,2700.2234,-5034.0278)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop165" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop167" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000073712156955919745150000018014436835206889603_);enable-background:new"
|
||||
points="617.8,645.3 474.6,667.4 465.9,494.1 559.4,194.1 708.5,470.8 807.8,602.5 "
|
||||
clip-path="url(#SVGID_00000038377279451847958660000013948159711101587628_)"
|
||||
id="polygon170" />
|
||||
</g><g
|
||||
id="g187">
|
||||
<defs
|
||||
id="defs175">
|
||||
<rect
|
||||
id="SVGID_00000118376838458325678060000015855036868445107350_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000110459491631553875290000010150341677443506576_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000118376838458325678060000015855036868445107350_"
|
||||
style="overflow:visible"
|
||||
id="use177" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000103971786709948536080000001973379522257999801_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2613.928"
|
||||
y1="4164.1494"
|
||||
x2="3052.9421"
|
||||
y2="4164.1494"
|
||||
gradientTransform="matrix(-0.03594599,0.9994,-0.9994,-0.03594599,4979.0908,-2328.8867)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop180" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop182" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000103971786709948536080000001973379522257999801_);enable-background:new"
|
||||
points="847.9,280.8 678.8,571.5 589.3,258.1 807.2,136.8 "
|
||||
clip-path="url(#SVGID_00000110459491631553875290000010150341677443506576_)"
|
||||
id="polygon185" />
|
||||
</g><g
|
||||
id="g202">
|
||||
<defs
|
||||
id="defs190">
|
||||
<rect
|
||||
id="SVGID_00000116237745612361073240000006150465265803419285_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000145058946190271890110000017138466978116788627_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000116237745612361073240000006150465265803419285_"
|
||||
style="overflow:visible"
|
||||
id="use192" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000030448420059369570490000000840399102467860385_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-5329.144"
|
||||
y1="523.46637"
|
||||
x2="-5071.4404"
|
||||
y2="523.46637"
|
||||
gradientTransform="matrix(0.2612,-0.9653,0.9653,0.2612,1525.5635,-4714.7476)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop195" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop197" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000030448420059369570490000000840399102467860385_);enable-background:new"
|
||||
points="896,368.8 803.7,610.8 498.9,330.8 602.4,329.8 "
|
||||
clip-path="url(#SVGID_00000145058946190271890110000017138466978116788627_)"
|
||||
id="polygon200" />
|
||||
</g><g
|
||||
id="g217">
|
||||
<defs
|
||||
id="defs205">
|
||||
<rect
|
||||
id="SVGID_00000101074714170627461240000013138533359750141568_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000116914092487373798290000001093053265067242669_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000101074714170627461240000013138533359750141568_"
|
||||
style="overflow:visible"
|
||||
id="use207" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000017477945025455821640000013403267416503434134_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="1120.3934"
|
||||
y1="2872.0176"
|
||||
x2="1397.709"
|
||||
y2="2872.0176"
|
||||
gradientTransform="matrix(0.9919,-0.1269,0.1269,0.9919,-926.962,-2147.6309)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop210" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop212" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000017477945025455821640000013403267416503434134_);enable-background:new"
|
||||
points="840.1,650.5 630.1,619.4 532.6,432.2 "
|
||||
clip-path="url(#SVGID_00000116914092487373798290000001093053265067242669_)"
|
||||
id="polygon215" />
|
||||
</g><g
|
||||
id="g232">
|
||||
<defs
|
||||
id="defs220">
|
||||
<rect
|
||||
id="SVGID_00000003815786949138481970000001745649588036378536_"
|
||||
y="0"
|
||||
width="640"
|
||||
height="483.70001"
|
||||
x="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000052802962437109526920000015325253674162927752_">
|
||||
<use
|
||||
xlink:href="#SVGID_00000003815786949138481970000001745649588036378536_"
|
||||
style="overflow:visible"
|
||||
id="use222" />
|
||||
</clipPath>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000175296180110522475230000004885647257872674460_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-4937.0015"
|
||||
y1="-1044.0806"
|
||||
x2="-4651.3462"
|
||||
y2="-1044.0806"
|
||||
gradientTransform="matrix(-0.09480336,-0.9955,0.9955,-0.09480336,573.8284,-4451.9326)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop225" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop227" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000175296180110522475230000004885647257872674460_);enable-background:new"
|
||||
points="91.6,266.4 48.7,474.4 -113.7,572.9 "
|
||||
clip-path="url(#SVGID_00000052802962437109526920000015325253674162927752_)"
|
||||
id="polygon230" />
|
||||
</g></g><g
|
||||
id="g5898"
|
||||
style="opacity:0.15"><g
|
||||
class="st25"
|
||||
id="g264"
|
||||
transform="translate(0.2116848,-2)"
|
||||
clip-path="url(#clipPath5834)">
|
||||
<path
|
||||
class="st26"
|
||||
d="m 19.4,463.3 c -0.2,0 0,0.1 0.3,0.2 0.1,-0.1 0.2,-0.1 0.2,-0.2 -0.1,0 -0.3,0 -0.5,0"
|
||||
id="path240" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 20.6,463 c 0.1,-0.2 0.2,-0.4 0.3,-0.6 0,0.1 -0.1,0.3 -0.2,0.4 -0.4,0.3 0,-0.2 0,-0.3 -0.5,0.6 -0.1,0.3 -0.1,0.5"
|
||||
id="path242" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 21,461.8 c 0,-0.4 -0.1,-0.3 -0.1,-0.1 0.1,0 0.1,0.3 0.1,0.1"
|
||||
id="path244" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 18.5,456.3 c 0.1,0 0.3,0 0.2,0.1 0.2,-0.1 0.2,-0.1 -0.2,-0.1"
|
||||
id="path246" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 18.8,456.4 v 0 0 0"
|
||||
id="path248" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 22.5,462 c 0,0.4 -0.1,0.5 -0.2,0.9 l -0.2,0.1 c -0.2,0.3 0,0.2 -0.1,0.4 -0.2,0.2 -0.8,0.7 -0.9,0.7 -0.1,0 0.1,-0.1 0.1,-0.2 -0.3,0.2 -0.3,0.3 -0.8,0.5 v 0 c -1.3,0.6 -3,-0.6 -3,-2.2 0,0.1 0,0.1 -0.1,0.1 -0.1,-0.8 0.4,-1.6 1.1,-2 0.7,-0.4 1.6,-0.2 2.1,0.3 -0.3,-0.4 -0.9,-0.8 -1.5,-0.7 -0.7,0 -1.3,0.4 -1.5,0.9 -0.3,0.2 -0.4,0.8 -0.5,0.9 -0.2,1.5 0.4,2.1 1.3,2.8 0.2,0.1 0,0.1 0.1,0.2 -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 0.1,0.2 0.3,0.4 0.4,0.5 -0.3,-0.1 -0.7,-0.7 -0.8,-0.8 0.5,0.9 2.1,1.6 3,1.3 -0.4,0 -0.9,0 -1.3,-0.2 -0.2,-0.1 -0.4,-0.3 -0.4,-0.3 1.1,0.4 2.3,0.3 3.3,-0.5 0.3,-0.2 0.5,-0.5 0.6,-0.5 -0.1,0.2 0,0.1 -0.1,0.2 0.3,-0.4 -0.1,-0.2 0.3,-0.7 l 0.1,0.2 c -0.1,-0.3 0.4,-0.7 0.4,-1.3 0.1,-0.2 0.1,0.2 0,0.6 0.2,-0.4 0,-0.5 0.1,-0.8 0,0.1 0.1,0.2 0.1,0.4 -0.1,-0.4 0.1,-0.7 0.2,-0.9 -0.1,0 -0.2,0.2 -0.2,-0.3 0,-0.2 0.1,-0.1 0.1,-0.2 0,0 -0.1,-0.2 -0.2,-0.5 0,-0.1 0.1,0.2 0.2,0.2 0,-0.2 -0.1,-0.4 -0.1,-0.6 -0.2,-0.4 -0.1,0.1 -0.2,-0.2 -0.2,-0.6 0.2,-0.1 0.2,-0.4 0.3,0.4 0.5,1.1 0.6,1.4 -0.1,-0.3 -0.2,-0.7 -0.3,-1 0.1,0 -0.1,-0.7 0.1,-0.2 -0.3,-1 -1.2,-2 -2.1,-2.5 0.1,0.1 0.2,0.2 0.2,0.2 -0.4,-0.3 -0.4,-0.3 -0.4,-0.4 -0.3,-0.1 -0.4,0 -0.6,0 -0.7,-0.3 -0.8,-0.3 -1.4,-0.5 v 0.1 c -0.4,-0.1 -0.5,0.1 -1,0 0,0 0.1,-0.1 0.3,-0.1 -0.4,0.1 -0.4,-0.1 -0.8,0 0.1,-0.1 0.2,-0.1 0.3,-0.2 -0.3,0 -0.8,0.2 -0.7,0 -0.6,0.2 -1.5,0.6 -2.1,1.1 V 457 c -0.3,0.3 -1.1,0.9 -1.2,1.3 H 14 c -0.1,0.2 -0.2,0.5 -0.3,0.7 -0.2,0.3 -0.3,0.1 -0.2,0.2 -0.3,0.7 -0.5,1.3 -0.7,1.7 0.1,0.2 0,0.9 0,1.6 -0.2,3.1 2.2,6.1 4.7,6.8 0.4,0.1 0.9,0.1 1.4,0.1 -0.6,-0.2 -0.6,-0.1 -1.2,-0.3 -0.4,-0.2 -0.5,-0.4 -0.8,-0.6 l 0.1,0.2 c -0.5,-0.2 -0.3,-0.2 -0.8,-0.4 l 0.1,-0.2 c -0.2,0 -0.5,-0.3 -0.5,-0.5 h -0.2 c -0.2,-0.3 -0.4,-0.5 -0.3,-0.7 l -0.1,0.1 c -0.1,-0.1 -0.9,-1.1 -0.4,-0.9 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 l 0.1,-0.1 c -0.2,-0.3 -0.4,-0.6 -0.3,-0.7 0.1,0.1 0.2,0.2 0.2,0.2 C 14,464 14,465.1 13.6,464 h 0.1 c -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 v -0.3 c -0.4,-0.4 -0.1,-1.8 0,-2.5 0,-0.3 0.3,-0.6 0.5,-1.1 H 14 c 0.2,-0.4 1.3,-1.6 1.8,-1.6 0.2,-0.3 0,0 -0.1,-0.1 0.5,-0.6 0.7,-0.4 1.1,-0.5 0.4,-0.2 -0.3,0.1 -0.2,-0.1 0.7,-0.2 0.5,-0.4 1.4,-0.5 0.1,0.1 -0.2,0.1 -0.3,0.2 0.6,-0.3 1.8,-0.2 2.6,0.2 0.9,0.4 2,1.7 2,2.9 v 0 c 0,0.5 0.1,1 -0.1,1.5 l 0.3,0.2"
|
||||
id="path250" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 16.9,463.6 v 0.2 c 0.1,0.2 0.3,0.4 0.5,0.6 -0.2,-0.3 -0.3,-0.4 -0.5,-0.8"
|
||||
id="path252" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 17.3,463.6 c -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 0,0.2 0.2,0.3 0.2,0.5 v -0.2"
|
||||
id="path254" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 23.5,462.2 v 0 c -0.1,0.5 -0.2,0.9 -0.4,1.3 0.1,-0.3 0.3,-0.8 0.4,-1.3"
|
||||
id="path256" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 18.6,456.2 c 0.2,-0.1 0.4,0 0.5,-0.1 -0.2,0 -0.4,0.1 -0.5,0.1 v 0"
|
||||
id="path258" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 13.2,459 c 0,0.3 -0.2,0.4 0.1,0.2 0.2,-0.3 -0.1,0 -0.1,-0.2"
|
||||
id="path260" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 12.9,460.5 c 0.1,-0.2 0.1,-0.3 0.1,-0.5 -0.2,0.3 -0.1,0.4 -0.1,0.5"
|
||||
id="path262" />
|
||||
</g><g
|
||||
id="g288"
|
||||
transform="matrix(0.97014925,0,0,0.97014925,1.6044777,12.073134)"
|
||||
clip-path="url(#clipPath5828)">
|
||||
<g
|
||||
class="st25"
|
||||
id="g280">
|
||||
<path
|
||||
class="st26"
|
||||
d="m 35.1,461.3 c 0,0 0,2.7 0,3.4 0,0.6 -0.1,1.8 -1.3,1.8 -1.2,0 -1.5,-1.4 -1.6,-2 -0.1,-0.7 -0.1,-1.3 -0.1,-1.5 0,-0.8 0,-3 1.9,-3 0.6,0 0.9,0.2 1.1,0.3 z m -4.8,2 c 0,4.7 2.5,4.7 2.9,4.7 1,0 1.7,-0.6 2,-1.6 v 1.5 c 0.3,0 0.6,0 1.2,0 0.2,0 0.3,0 0.5,0 0.1,0 0.3,0 0.4,0 -0.3,-0.5 -0.5,-1.7 -0.5,-4.4 0,-2.5 0,-6.9 0.2,-8.2 -0.6,0.3 -1.1,0.5 -2.3,0.6 0.5,0.5 0.5,0.7 0.5,3 -0.3,-0.1 -0.7,-0.2 -1.4,-0.2 -3,0.1 -3.5,2.7 -3.5,4.6"
|
||||
id="path266" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 39.4,462.5 c 0,-1.4 0.3,-2.6 1.5,-2.6 1.3,0 1.4,1.4 1.4,2.6 z m 4.5,0.1 c 0,-2 -0.4,-3.9 -2.9,-3.9 -3.4,0 -3.4,3.8 -3.4,4.6 0,3.4 1.5,4.7 4.1,4.7 1.1,0 1.7,-0.2 2,-0.2 0,-0.6 0.1,-1 0.2,-1.5 -0.4,0.2 -0.8,0.5 -1.8,0.5 -2.6,0 -2.6,-2.4 -2.6,-3.2 H 44 l -0.1,-1"
|
||||
id="path268" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 49.3,463.3 c 0,1.6 -0.3,3.7 -2.2,3.7 -0.3,0 -0.6,0 -0.8,-0.1 0,-0.6 0,-1.6 0,-2.8 0,-1.4 0.2,-2.2 0.3,-2.6 0.4,-1.2 1.1,-1.2 1.3,-1.2 1.2,0 1.4,1.7 1.4,3 z m -4.8,1.9 c 0,1.2 0,1.9 -0.2,2.5 0.7,0.3 1.5,0.4 2.6,0.4 0.7,0 2.5,0 3.6,-2.1 0.5,-1 0.7,-2.3 0.7,-3.3 0,-0.6 -0.1,-1.9 -0.6,-2.8 -0.5,-0.8 -1.2,-1.2 -2,-1.2 -1.6,0 -2.1,1.3 -2.3,2 0,-0.9 0,-3.8 0.2,-5.4 -1.1,0.5 -1.8,0.6 -2.5,0.7 0.7,0.3 0.7,1.4 0.7,5 l -0.2,4.2"
|
||||
id="path270" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 54.3,468 c -0.3,0 -0.6,-0.1 -1.1,-0.1 -0.5,0 -0.9,0 -1.3,0.1 0.2,-0.3 0.2,-0.5 0.3,-1.6 0.1,-1.5 0.1,-5.5 0,-6.3 -0.1,-0.6 -0.2,-0.7 -0.5,-0.9 1.4,-0.1 1.8,-0.2 2.4,-0.5 -0.1,0.7 -0.2,1.1 -0.2,2.2 0.1,5.8 0.1,6.4 0.4,7.1"
|
||||
id="path272" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 59.7,463.2 c 0,1.1 0,1.8 -0.3,2.4 -0.4,0.7 -0.9,1 -1.4,1 -1,0 -1.2,-0.8 -1.2,-1.7 0,-1.6 1.4,-1.7 2,-1.7 z m -4.6,2.1 c 0,1.1 0.3,2.1 1.3,2.6 0.4,0.2 0.8,0.2 1,0.2 1.5,0 2.1,-1.1 2.4,-1.9 0,0.7 0,1.2 0,1.8 0.3,0 0.6,0 1.1,0 0.3,0 0.6,0 0.8,0 -0.2,-0.3 -0.3,-0.5 -0.3,-1.1 0,-0.6 0,-1.3 0,-2.2 v -3.4 c 0,-1.3 -0.3,-2.5 -2.8,-2.5 -1.7,0 -2.6,0.5 -3.1,0.7 0.2,0.4 0.4,0.7 0.5,1.4 0.7,-0.6 1.5,-0.9 2.4,-0.9 1.4,0 1.4,0.9 1.4,2.2 -0.3,0 -0.6,0 -1,0 -2.3,0 -3.7,0.8 -3.7,3.1"
|
||||
id="path274" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 69.4,466.3 c 0,0.6 0,1.2 0.2,1.7 -0.4,0 -0.6,-0.1 -1.3,-0.1 -0.4,0 -0.6,0 -0.9,0.1 0.1,-0.2 0.1,-0.3 0.1,-0.6 0,-0.4 0.1,-1.7 0.1,-2.1 v -1.8 c 0,-0.8 0,-1.9 0,-2.3 0,-0.3 -0.1,-1.1 -1.1,-1.1 -0.9,0 -1.3,0.7 -1.4,1.3 -0.1,0.6 -0.1,1.2 -0.1,3.7 0,2.1 0,2.3 0.2,2.9 -0.3,0 -0.6,-0.1 -1.1,-0.1 -0.4,0 -0.7,0 -1,0.1 0.1,-0.3 0.2,-0.4 0.2,-1.3 0,-0.9 0.1,-5.4 0,-6.5 -0.1,-0.7 -0.2,-0.8 -0.4,-1 1.4,-0.1 1.8,-0.3 2.2,-0.5 v 1.8 c 0.2,-0.5 0.6,-1.7 2.3,-1.7 2.1,0 2.1,1.5 2.1,2.5 l -0.1,5"
|
||||
id="path276" />
|
||||
<path
|
||||
class="st26"
|
||||
d="m 54.5,456.3 -1.4,1.4 -1.4,-1.4 1.4,-1.4 1.4,1.4"
|
||||
id="path278" />
|
||||
</g>
|
||||
</g></g></g>
|
||||
|
||||
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 31 KiB |
@@ -1,3 +0,0 @@
|
||||
WALLPAPER=/usr/share/images/desktop-base/desktop-grub.png
|
||||
COLOR_NORMAL=white/black
|
||||
COLOR_HIGHLIGHT=black/white
|
||||
@@ -1,788 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 1920 1080"
|
||||
style="enable-background:new 0 0 1920 1080;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="Emerald_wallpaper_without_logo.svg"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
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="defs253">
|
||||
|
||||
|
||||
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000018216064389455096890000017941378598996776607_"
|
||||
cx="-680.75513"
|
||||
cy="15329.986"
|
||||
r="1365.4034"
|
||||
gradientTransform="matrix(0.5,0,0,0.5,345.3775,-7667.793)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop12" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop14" />
|
||||
</radialGradient>
|
||||
|
||||
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000000933302580452020710000013162680496496488371_"
|
||||
cx="-1132.3893"
|
||||
cy="-1996.8872"
|
||||
r="342.09979"
|
||||
gradientTransform="matrix(-2.8317,2.4125,-0.8042,-0.9439,-3965.7385,1030.7192)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop19" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop21" />
|
||||
</radialGradient>
|
||||
|
||||
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000080193032524742796840000011048436269149918087_"
|
||||
cx="173.04491"
|
||||
cy="15837.789"
|
||||
r="459.40109"
|
||||
gradientTransform="matrix(0.5,0,0,0.5,345.3775,-7667.793)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DAC9BA"
|
||||
id="stop26" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop28" />
|
||||
</radialGradient>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000147222259863327894370000004713185813428820113_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-8054.3379"
|
||||
y1="5144.2563"
|
||||
x2="-7614.1865"
|
||||
y2="5144.2563"
|
||||
gradientTransform="matrix(0.4172,-0.9088,0.9088,0.4172,401.7775,-8335.0615)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop166" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop168" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000063620498617606890090000008720960172290484925_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-338.647"
|
||||
y1="-4980.8984"
|
||||
x2="213.09731"
|
||||
y2="-4980.8984"
|
||||
gradientTransform="matrix(-0.9511,-0.3089,0.3089,-0.9511,3185.2781,-3756.8625)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop173" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop175" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000078013590621525976610000006727138897565908112_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5217.2197"
|
||||
y1="6487.8555"
|
||||
x2="5885.4883"
|
||||
y2="6487.8555"
|
||||
gradientTransform="matrix(-0.03594599,0.9994,-0.9994,-0.03594599,8477.332,-4502.8599)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop180" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop182" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000129169157574715853980000000301106401069963673_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="8268.3721"
|
||||
y1="570.83643"
|
||||
x2="8986.3359"
|
||||
y2="570.83643"
|
||||
gradientTransform="matrix(-0.07909842,0.6653,-0.9567,-0.2541,3183.1792,-4748.3145)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop187" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop189" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000051343387064157711410000007010731585534318724_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6628.8418"
|
||||
y1="4207.9429"
|
||||
x2="-6236.5361"
|
||||
y2="4207.9429"
|
||||
gradientTransform="matrix(0.2612,-0.9653,0.9653,0.2612,-653.4725,-6361.3896)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop194" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop196" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000169518436558334241300000010220786071391330234_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="1836.1005"
|
||||
y1="7829.1611"
|
||||
x2="2258.3394"
|
||||
y2="7829.1611"
|
||||
gradientTransform="matrix(0.9919,-0.1269,0.1269,0.9919,-1274.858,-6407.4478)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop201" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop203" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000003075246375309062510000005919818320267613622_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10926.994"
|
||||
y1="12790.337"
|
||||
x2="11459.436"
|
||||
y2="12790.337"
|
||||
gradientTransform="matrix(0.3792,0.341,-0.9317,0.5609,7924.4082,-10914.702)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop208" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop210" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000151504943794861704500000013710966191068745143_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9379.0352"
|
||||
y1="6171.8062"
|
||||
x2="9964.666"
|
||||
y2="6171.8062"
|
||||
gradientTransform="matrix(0.353,0.5695,-0.9064,0.3978,2451.355,-7980.2593)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop215" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop217" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000116945986907177242930000003619234899467008173_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7309.3979"
|
||||
y1="-1249.7209"
|
||||
x2="-6990.3579"
|
||||
y2="-1249.7209"
|
||||
gradientTransform="matrix(-0.3976,-0.9175,0.9175,-0.3976,-1553.5924,-6849.3574)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop222" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop224" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000018934028870046402510000005056381095522587327_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-3331.885"
|
||||
y1="6389.4604"
|
||||
x2="-2896.9707"
|
||||
y2="6389.4604"
|
||||
gradientTransform="matrix(0.6964,-0.7176,0.7176,0.6964,-2068.2891,-6498.0825)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop229" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop231" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000101790783768249243120000007920411576515842194_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6562.5264"
|
||||
y1="1880.1191"
|
||||
x2="-6127.6533"
|
||||
y2="1880.1191"
|
||||
gradientTransform="matrix(-0.09480336,-0.9955,0.9955,-0.09480336,-1443.6445,-5086.2905)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop236" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop238" />
|
||||
</linearGradient>
|
||||
|
||||
|
||||
</defs><sodipodi:namedview
|
||||
id="namedview251"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.70260417"
|
||||
inkscape:cx="731.56412"
|
||||
inkscape:cy="655.41883"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1392"
|
||||
inkscape:window-x="2560"
|
||||
inkscape:window-y="11"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g246" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
.st0{clip-path:url(#SVGID_00000093167105208028638090000008063807857182655396_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000012445251672029399260000003270595326732136081_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000127010423592997111840000013957416611417821059_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000101814971404403400460000010609185819928108449_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000107557325802917530330000017592151723363848840_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000032650273911267859500000015024660283904495788_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000057851989095838282160000014663790337944238500_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000178165242061037739810000007582236097397314448_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000064329767591241199690000000234602624410839680_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000014609603927260903510000009061463274724089486_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000050627399097891942390000014523148072975367070_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000109731321347584724990000010142768297725207449_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000000926441590728654410000012560741159445150083_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000137832232493639134090000003781239364591219342_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000150812387129626622020000009167110439853258936_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000179608784322168811290000010365701417373876369_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000120531069539707179100000007006360167335202962_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000181089157459068778460000011901104969134050459_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000062164313994880221460000014631417913117263241_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000000902067244530690860000014386718989792038839_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000089550684643991047870000016914371577980347776_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000084507925595054884490000005003863653038598286_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000047780407226302564420000009742350089197221517_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000066480680368962549320000006921805612706891392_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000122678307387241734090000002868210978020395689_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000150100474908702981900000008908414767416909709_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000072960791515750302390000015282140940621514149_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000114770971300144002370000016800559959910618791_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000036952937828426554700000000522215132809990844_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000090974002902719031840000015158340248134540673_);enable-background:new ;}
|
||||
</style>
|
||||
<g
|
||||
id="g248">
|
||||
<defs
|
||||
id="defs5">
|
||||
<rect
|
||||
id="SVGID_1_"
|
||||
x="-0.3"
|
||||
y="0.1"
|
||||
width="1920"
|
||||
height="1080" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000085218408489160111120000007828018339010817721_">
|
||||
<use
|
||||
xlink:href="#SVGID_1_"
|
||||
style="overflow:visible;"
|
||||
id="use7" />
|
||||
</clipPath>
|
||||
<g
|
||||
style="clip-path:url(#SVGID_00000085218408489160111120000007828018339010817721_);"
|
||||
clip-path="url(#SVGID_00000085218408489160111120000007828018339010817721_)"
|
||||
id="g246">
|
||||
<rect
|
||||
x="-17.299999"
|
||||
y="-74.900002"
|
||||
class="st1"
|
||||
width="1955"
|
||||
height="1231"
|
||||
id="rect10" /><circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000018216064389455096890000017941378598996776607_);enable-background:new"
|
||||
cx="5"
|
||||
cy="-2.8"
|
||||
r="682.70001"
|
||||
id="circle17" /><polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000000933302580452020710000013162680496496488371_);enable-background:new"
|
||||
points="-301.3,537.5 1374,-889.6 1988.4,-168.2 313.1,1258.8 "
|
||||
id="polygon24" /><circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000080193032524742796840000011048436269149918087_);enable-background:new"
|
||||
cx="431.89999"
|
||||
cy="251.10001"
|
||||
r="229.7"
|
||||
id="circle31" /><g
|
||||
class="st7"
|
||||
id="g164">
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000091732848191404214390000004736846775492618424_"
|
||||
cx="-37.305"
|
||||
cy="10365.16"
|
||||
r="173.2404"
|
||||
gradientTransform="matrix(0.8642,0.5228,-0.5025,0.9115,5995.1982,-8755.3174)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop59" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop61" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000091732848191404214390000004736846775492618424_);enable-background:new"
|
||||
cx="766.20001"
|
||||
cy="645.90002"
|
||||
rx="173.2"
|
||||
ry="181.5"
|
||||
id="ellipse64" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000114788164137069528000000005957745660025105319_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4501.6509"
|
||||
y1="506.22601"
|
||||
x2="4698.46"
|
||||
y2="506.22601"
|
||||
gradientTransform="matrix(-0.7151,0.699,-0.5383,-0.5506,4391.564,-2623.3542)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop66" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop68" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000114788164137069528000000005957745660025105319_);enable-background:new"
|
||||
points="700.3,321.9 810.7,153.3 949,375.1 885,415.5 "
|
||||
id="polygon71" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000054962312987295980090000006017935243511788676_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2066.0298"
|
||||
y1="7874.2495"
|
||||
x2="2337.1929"
|
||||
y2="7874.2495"
|
||||
gradientTransform="matrix(0.7774,0.629,-0.629,0.7774,4107.1865,-7204.9038)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop73" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop75" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000054962312987295980090000006017935243511788676_);enable-background:new"
|
||||
points="1025.1,241.8 1001,349.2 871.9,494.7 784.8,279.5 810.7,153.3 905.6,201.5 "
|
||||
id="polygon78" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000012442755421995762960000014664915799359269053_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7687.7383"
|
||||
y1="5138.3574"
|
||||
x2="-7185.3882"
|
||||
y2="5138.3574"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,-1099.8982,-8403.8916)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop80" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop82" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000012442755421995762960000014664915799359269053_);enable-background:new"
|
||||
points="458.3,613.8 629.2,399.9 799.9,213.2 939.5,373.1 "
|
||||
id="polygon85" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000086651592687441638420000016273738828393233579_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9454.1855"
|
||||
y1="2925.7485"
|
||||
x2="9671.4678"
|
||||
y2="2925.7485"
|
||||
gradientTransform="matrix(-0.3483,0.5724,-0.7648,-0.6285,6665.2769,-3309.3779)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop87" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop89" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000086651592687441638420000016273738828393233579_);enable-background:new"
|
||||
points="1211.9,391.7 1226.6,518.1 988.7,310.2 972.8,123.9 "
|
||||
id="polygon92" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000095314929038062691570000012080618537926193552_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-4049.3596"
|
||||
y1="6098.5605"
|
||||
x2="-3743.8562"
|
||||
y2="6098.5605"
|
||||
gradientTransform="matrix(0.7151,-0.699,0.699,0.7151,-446.3692,-6772.9209)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop94" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop96" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000095314929038062691570000012080618537926193552_);enable-background:new"
|
||||
points="1208.9,409.2 988.7,310.2 784.8,279.5 889.2,212.3 1029.8,93.1 "
|
||||
id="polygon99" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000069384093065957304470000008686477747994526866_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6255.8599"
|
||||
y1="2547.1248"
|
||||
x2="6490.9126"
|
||||
y2="2547.1248"
|
||||
gradientTransform="matrix(-0.5898,0.8076,-0.8076,-0.5898,6758.6099,-3397.5225)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop101" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop103" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000069384093065957304470000008686477747994526866_);enable-background:new"
|
||||
points="960,371.1 730.2,237.8 972.8,123.9 1043.6,409.2 "
|
||||
id="polygon106" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000174570387500765410560000018201440021002273169_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7022.96"
|
||||
y1="-1443.5104"
|
||||
x2="-6656.459"
|
||||
y2="-1443.5104"
|
||||
gradientTransform="matrix(-0.2682,-0.9634,1.0501,-0.2924,294.0579,-6276.7939)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop108" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop110" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000174570387500765410560000018201440021002273169_);enable-background:new"
|
||||
points="657.1,531.1 756.4,656.4 507.9,953.1 521.4,741.6 "
|
||||
id="polygon113" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000041276010603755054700000012950505128597653693_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6476.2949"
|
||||
y1="-3050.6917"
|
||||
x2="6860.4126"
|
||||
y2="-3050.6917"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,5603.1353,-4641.4233)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop115" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop117" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000041276010603755054700000012950505128597653693_);enable-background:new"
|
||||
points="516.1,895 427.7,829.7 397,619.9 699,580.8 766.2,642.6 628.2,832 "
|
||||
id="polygon120" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000061435600823447587540000000552723606534874028_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-14448.05"
|
||||
y1="-4270.9775"
|
||||
x2="-13998.346"
|
||||
y2="-4270.9775"
|
||||
gradientTransform="matrix(-0.2347,-0.2596,0.879,-0.2953,1043.0485,-4355.957)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop122" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop124" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000061435600823447587540000000552723606534874028_);enable-background:new"
|
||||
points="431.9,727.7 458.3,613.8 806,449.6 700.3,584.1 "
|
||||
id="polygon127" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000002351047188999019860000002566414104328457898_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12772.947"
|
||||
y1="6937.4038"
|
||||
x2="13680.892"
|
||||
y2="6937.4038"
|
||||
gradientTransform="matrix(0.1765,0.3022,-0.9209,0.1087,4716.2749,-3888.3674)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop129" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop131" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000002351047188999019860000002566414104328457898_);enable-background:new"
|
||||
points="740.4,729.5 893.4,986.9 504.3,864.5 521.4,741.6 "
|
||||
id="polygon134" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000004534978137110897330000008179059058368671906_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7687.7383"
|
||||
y1="5080.5278"
|
||||
x2="-7400.5278"
|
||||
y2="5080.5278"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,-1099.8982,-8403.8916)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop136" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop138" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000004534978137110897330000008179059058368671906_);enable-background:new"
|
||||
points="699,580.8 458.3,613.8 533.2,379.6 806,449.6 "
|
||||
id="polygon141" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000091017312778810520490000013487813255627565699_"
|
||||
cx="-108.2559"
|
||||
cy="10030.869"
|
||||
r="181.9404"
|
||||
gradientTransform="matrix(0.8642,0.5228,-0.5025,0.9115,5995.1982,-8755.3174)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop143" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop145" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000091017312778810520490000013487813255627565699_);enable-background:new"
|
||||
cx="871.90002"
|
||||
cy="305.39999"
|
||||
rx="181.89999"
|
||||
ry="190.60001"
|
||||
id="ellipse148" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000093149179829732349710000008128861407447028144_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6476.3066"
|
||||
y1="-3135.9316"
|
||||
x2="6770.707"
|
||||
y2="-3135.9316"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,5603.1353,-4641.4233)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop150" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop152" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000093149179829732349710000008128861407447028144_);enable-background:new"
|
||||
points="532.1,848 501.4,638.1 766.2,642.6 717.1,936.1 628.2,832 "
|
||||
id="polygon155" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000034071598378061202680000005682775137060128388_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2446.0144"
|
||||
y1="8616.9512"
|
||||
x2="-2179.4543"
|
||||
y2="8616.9512"
|
||||
gradientTransform="matrix(0.9797,-0.2004,0.2004,0.9797,1206.5922,-8533.6934)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop157" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop159" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000034071598378061202680000005682775137060128388_);enable-background:new"
|
||||
points="533.2,379.6 730.2,345.4 784.8,279.5 797.9,413.5 "
|
||||
id="polygon162" />
|
||||
</g><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000147222259863327894370000004713185813428820113_);enable-background:new"
|
||||
points="2140.7,840.5 1984.5,1253.1 1507.2,881.3 1602,731.1 "
|
||||
id="polygon171" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000063620498617606890090000008720960172290484925_);enable-background:new"
|
||||
points="1426.9,1290.3 1413.7,1026.6 1556,569.8 1783,991.1 1934.2,1191.5 1645,1256.7 "
|
||||
id="polygon178" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000078013590621525976610000006727138897565908112_);enable-background:new"
|
||||
points="1933.3,482.6 1995.2,701.9 1737.9,1144.3 1601.6,667.3 "
|
||||
id="polygon185" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000129169157574715853980000000301106401069963673_);enable-background:new"
|
||||
points="2004.8,870.8 2102.8,1126.5 1757.4,979.3 1814,558.8 "
|
||||
id="polygon192" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000051343387064157711410000007010731585534318724_);enable-background:new"
|
||||
points="1621.5,776.7 2068.4,836 1927.9,1204.4 1463.9,778.1 "
|
||||
id="polygon199" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000169518436558334241300000010220786071391330234_);enable-background:new"
|
||||
points="1663.6,1217.3 1515.2,932.3 1983.4,1264.7 "
|
||||
id="polygon206" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000003075246375309062510000005919818320267613622_);enable-background:new"
|
||||
points="276.7,-75.4 413.8,-51.6 325.9,197.4 26.2,146.4 "
|
||||
id="polygon213" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000151504943794861704500000013710966191068745143_);enable-background:new"
|
||||
points="320.6,-31.9 538.6,70 180.3,178.5 -2.7,-115.1 "
|
||||
id="polygon220" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000116945986907177242930000003619234899467008173_);enable-background:new"
|
||||
points="-37.5,164 354.7,-57.8 441.9,252.1 -163.5,256 "
|
||||
id="polygon227" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000018934028870046402510000005056381095522587327_);enable-background:new"
|
||||
points="343.4,309.7 69,218.8 626.8,154.1 "
|
||||
id="polygon234" /><polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000101790783768249243120000007920411576515842194_);enable-background:new"
|
||||
points="1120.5,1135.3 873.3,1285.3 1185.8,818.7 "
|
||||
id="polygon241" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 25 KiB |
@@ -1,319 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_00000093167105208028638090000008063807857182655396_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000012445251672029399260000003270595326732136081_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000127010423592997111840000013957416611417821059_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000101814971404403400460000010609185819928108449_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000107557325802917530330000017592151723363848840_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000032650273911267859500000015024660283904495788_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000057851989095838282160000014663790337944238500_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000178165242061037739810000007582236097397314448_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000064329767591241199690000000234602624410839680_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000014609603927260903510000009061463274724089486_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000050627399097891942390000014523148072975367070_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000109731321347584724990000010142768297725207449_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000000926441590728654410000012560741159445150083_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000137832232493639134090000003781239364591219342_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000150812387129626622020000009167110439853258936_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000179608784322168811290000010365701417373876369_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000120531069539707179100000007006360167335202962_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000181089157459068778460000011901104969134050459_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000062164313994880221460000014631417913117263241_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000000902067244530690860000014386718989792038839_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000089550684643991047870000016914371577980347776_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000084507925595054884490000005003863653038598286_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000047780407226302564420000009742350089197221517_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000066480680368962549320000006921805612706891392_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000122678307387241734090000002868210978020395689_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000150100474908702981900000008908414767416909709_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000072960791515750302390000015282140940621514149_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000114770971300144002370000016800559959910618791_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000036952937828426554700000000522215132809990844_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000090974002902719031840000015158340248134540673_);enable-background:new ;}
|
||||
</style>
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="-0.3" y="0.1" width="1920" height="1080"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_00000085218408489160111120000007828018339010817721_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#SVGID_00000085218408489160111120000007828018339010817721_);">
|
||||
<g>
|
||||
<g id="Calque_1-2">
|
||||
<rect x="-17.3" y="-74.9" class="st1" width="1955" height="1231"/>
|
||||
|
||||
<radialGradient id="SVGID_00000018216064389455096890000017941378598996776607_" cx="-680.7551" cy="15329.9863" r="1365.4034" gradientTransform="matrix(0.5 0 0 0.5 345.3775 -7667.793)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000018216064389455096890000017941378598996776607_);enable-background:new ;" cx="5" cy="-2.8" r="682.7"/>
|
||||
|
||||
<radialGradient id="SVGID_00000000933302580452020710000013162680496496488371_" cx="-1132.3893" cy="-1996.8872" r="342.0998" gradientTransform="matrix(-2.8317 2.4125 -0.8042 -0.9439 -3965.7385 1030.7192)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000000933302580452020710000013162680496496488371_);enable-background:new ;" points="
|
||||
-301.3,537.5 1374,-889.6 1988.4,-168.2 313.1,1258.8 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000080193032524742796840000011048436269149918087_" cx="173.0449" cy="15837.7891" r="459.4011" gradientTransform="matrix(0.5 0 0 0.5 345.3775 -7667.793)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#DAC9BA"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000080193032524742796840000011048436269149918087_);enable-background:new ;" cx="431.9" cy="251.1" r="229.7"/>
|
||||
<g class="st5">
|
||||
<path class="st6" d="M966.2,542.3c-1.3,0,0.2,0.7,2,0.9c0.5-0.4,0.9-0.7,1.3-1.1C968.4,542.3,967.3,542.4,966.2,542.3"/>
|
||||
<path class="st6" d="M973.3,540.5c0.8-1.1,1.4-2.3,1.6-3.5c-0.2,0.9-0.6,1.6-1.1,2.4c-2.5,1.5-0.2-0.9,0-1.9
|
||||
C971.1,540.9,973.4,539.6,973.3,540.5"/>
|
||||
<path class="st6" d="M975.9,533.7c0.2-2.4-0.5-1.6-0.7-0.7C975.5,533.1,975.7,534.7,975.9,533.7"/>
|
||||
<path class="st6" d="M961.2,501.3c0.7,0.1,1.5,0.2,1.4,0.4C963.4,501.5,963.6,501.4,961.2,501.3"/>
|
||||
<path class="st6" d="M962.6,501.7l-0.5,0.1L962.6,501.7L962.6,501.7"/>
|
||||
<path class="st6" d="M984.9,534.4c0.1,2.1-0.6,3.2-1.3,5.1l-1.1,0.6c-0.9,1.8,0.1,1.1-0.6,2.6c-1.5,1.3-4.5,4.1-5.5,4.4
|
||||
c-0.7,0,0.5-0.8,0.6-1.1c-1.9,1.3-1.6,2-4.6,2.8l-0.1-0.2c-7.4,3.6-17.8-3.4-17.7-12.9c-0.1,0.6-0.2,0.4-0.4,0.7
|
||||
c-0.4-4.9,2.2-9.7,6.7-11.8c4.4-2.1,9.4-1.3,12.6,1.6c-1.7-2.2-5.1-4.6-9.1-4.4c-4,0.1-7.6,2.5-8.9,5.3c-2,1.3-2.2,4.9-3.1,5.6
|
||||
c-1.2,8.7,2.2,12.5,8,16.9c0.9,0.6,0.3,0.7,0.4,1.2c-1.9-0.9-3.7-2.2-5.2-4c0.8,1.1,1.6,2.2,2.6,3c-1.8-0.6-4.3-4.4-5-4.6
|
||||
c3.1,5.6,12.7,9.8,17.7,7.7c-2.3,0.1-5.3,0-7.8-0.9c-1.1-0.6-2.5-1.7-2.3-1.9c6.8,2.5,13.9,1.9,19.8-2.8
|
||||
c1.5-1.2,3.1-3.1,3.7-3.1c-0.7,1.1,0.1,0.5-0.4,1.4c1.5-2.4-0.6-1,1.5-4.2l0.8,1.1c-0.3-2,2.5-4.5,2.2-7.6c0.6-1,0.7,1,0,3.2
|
||||
c0.9-2.4,0.2-2.8,0.5-4.9c0.3,0.7,0.6,1.4,0.8,2.1c-0.6-2.4,0.6-4.1,0.9-5.4c-0.3-0.1-0.9,1-1.1-1.7c0-1.2,0.3-0.6,0.5-0.9
|
||||
c-0.2-0.1-0.9-1.1-1.2-2.8c0.3-0.4,0.7,1.1,1.1,1.1c-0.2-1.4-0.7-2.5-0.7-3.7c-1.1-2.3-0.4,0.3-1.3-1c-1.2-3.7,1-0.8,1.1-2.5
|
||||
c1.8,2.5,2.8,6.6,3.2,8.2c-0.4-2-0.9-4-1.6-5.9c0.5,0.2-0.9-4.2,0.7-1.2c-1.7-6.2-7.2-12-12.3-14.7c0.6,0.6,1.4,1.3,1.1,1.4
|
||||
c-2.5-1.5-2.1-1.6-2.4-2.2c-2-0.8-2.2,0.1-3.6,0c-3.9-2-4.7-1.8-8.2-3.1l0.2,0.8c-2.5-0.8-3,0.3-5.8,0
|
||||
c-0.2-0.1,0.9-0.5,1.7-0.6c-2.5,0.3-2.3-0.5-4.8,0.1c0.6-0.4,1.2-0.7,1.8-1c-2,0.1-4.9,1.2-4,0.2c-3.3,1.5-9.2,3.6-12.5,6.6
|
||||
l-0.1-0.7c-1.5,1.8-6.6,5.4-7,7.8l-0.4,0.1c-0.8,1.3-1.3,2.8-1.9,4.3c-1,1.7-1.5,0.7-1.3,0.9c-2,4.1-3,7.5-3.9,10.3
|
||||
c0.6,0.9,0,5.6,0.2,9.2c-1,18.4,12.9,36.2,28.1,40.3c2.2,0.8,5.6,0.8,8.3,0.8c-3.3-0.9-3.8-0.5-7-1.6c-2.3-1.1-2.8-2.3-4.5-3.8
|
||||
l0.6,1.1c-3.2-1.1-1.9-1.4-4.6-2.2l0.7-0.9c-1-0.1-2.7-1.7-3.2-2.7h-1.1c-1.4-1.7-2.1-2.9-2-3.9l-0.4,0.7
|
||||
c-0.4-0.7-5.1-6.4-2.6-5.1c-0.4-0.4-1-0.7-1.7-1.8l0.5-0.6c-1.1-1.5-2.1-3.4-2-4.1c0.6,0.8,1,1,1.5,1.1
|
||||
c-2.9-7.3-3.1-0.4-5.4-7.4h0.5c-0.4-0.5-0.6-1.1-0.9-1.7l0.2-2c-2.1-2.4-0.6-10.4-0.3-14.8c0.2-1.7,1.7-3.7,2.9-6.6l-0.7-0.1
|
||||
c1.4-2.4,7.9-9.6,10.9-9.2c1.4-1.8-0.3,0-0.6-0.5c3.2-3.3,4.2-2.3,6.4-2.9c2.3-1.4-2,0.5-0.9-0.5c4.1-1,2.8-2.3,8.1-2.8
|
||||
c0.5,0.3-1.3,0.5-1.7,0.9c3.3-1.6,10.7-1.2,15.3,0.9c5.5,2.5,11.6,10.1,11.9,17.2l0.3,0.1c-0.1,2.8,0.4,6.1-0.6,9.1
|
||||
L984.9,534.4"/>
|
||||
<path class="st6" d="M951.9,544.1l-0.2,0.9c0.9,1.2,1.6,2.4,2.7,3.4C953.5,546.8,953,546.2,951.9,544.1"/>
|
||||
<path class="st6" d="M953.9,544c-0.5-0.5-0.7-1.1-1-1.7c0.3,1.1,0.9,2,1.4,2.9L953.9,544"/>
|
||||
<path class="st6" d="M990.1,536.1l-0.2,0.5c-0.4,2.5-1.1,5-2.3,7.3C988.9,541.5,989.7,538.8,990.1,536.1"/>
|
||||
<path class="st6" d="M961.5,500.7c0.9-0.3,2.2-0.2,3.1-0.4c-1.2,0.1-2.5,0.2-3.7,0.3L961.5,500.7"/>
|
||||
<path class="st6" d="M930.3,517.3c0.2,1.9-1.4,2.6,0.4,1.4C931.6,516.5,930.3,518.1,930.3,517.3"/>
|
||||
<path class="st6" d="M928.2,526.1c0.4-1.3,0.5-2,0.6-2.8C927.7,524.8,928.3,525.1,928.2,526.1"/>
|
||||
</g>
|
||||
<g class="st7">
|
||||
|
||||
<radialGradient id="SVGID_00000091732848191404214390000004736846775492618424_" cx="-37.305" cy="10365.1602" r="173.2404" gradientTransform="matrix(0.8642 0.5228 -0.5025 0.9115 5995.1982 -8755.3174)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000091732848191404214390000004736846775492618424_);enable-background:new ;" cx="766.2" cy="645.9" rx="173.2" ry="181.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000114788164137069528000000005957745660025105319_" gradientUnits="userSpaceOnUse" x1="4501.6509" y1="506.226" x2="4698.46" y2="506.226" gradientTransform="matrix(-0.7151 0.699 -0.5383 -0.5506 4391.564 -2623.3542)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000114788164137069528000000005957745660025105319_);enable-background:new ;" points="
|
||||
700.3,321.9 810.7,153.3 949,375.1 885,415.5 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000054962312987295980090000006017935243511788676_" gradientUnits="userSpaceOnUse" x1="2066.0298" y1="7874.2495" x2="2337.1929" y2="7874.2495" gradientTransform="matrix(0.7774 0.629 -0.629 0.7774 4107.1865 -7204.9038)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000054962312987295980090000006017935243511788676_);enable-background:new ;" points="
|
||||
871.9,494.7 784.8,279.5 810.7,153.3 905.6,201.5 1025.1,241.8 1001,349.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000012442755421995762960000014664915799359269053_" gradientUnits="userSpaceOnUse" x1="-7687.7383" y1="5138.3574" x2="-7185.3882" y2="5138.3574" gradientTransform="matrix(0.3915 -0.9202 0.9202 0.3915 -1099.8982 -8403.8916)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000012442755421995762960000014664915799359269053_);enable-background:new ;" points="
|
||||
458.3,613.8 629.2,399.9 799.9,213.2 939.5,373.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000086651592687441638420000016273738828393233579_" gradientUnits="userSpaceOnUse" x1="9454.1855" y1="2925.7485" x2="9671.4678" y2="2925.7485" gradientTransform="matrix(-0.3483 0.5724 -0.7648 -0.6285 6665.2769 -3309.3779)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000086651592687441638420000016273738828393233579_);enable-background:new ;" points="
|
||||
1211.9,391.7 1226.6,518.1 988.7,310.2 972.8,123.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000095314929038062691570000012080618537926193552_" gradientUnits="userSpaceOnUse" x1="-4049.3596" y1="6098.5605" x2="-3743.8562" y2="6098.5605" gradientTransform="matrix(0.7151 -0.699 0.699 0.7151 -446.3692 -6772.9209)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000095314929038062691570000012080618537926193552_);enable-background:new ;" points="
|
||||
988.7,310.2 784.8,279.5 889.2,212.3 1029.8,93.1 1208.9,409.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000069384093065957304470000008686477747994526866_" gradientUnits="userSpaceOnUse" x1="6255.8599" y1="2547.1248" x2="6490.9126" y2="2547.1248" gradientTransform="matrix(-0.5898 0.8076 -0.8076 -0.5898 6758.6099 -3397.5225)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000069384093065957304470000008686477747994526866_);enable-background:new ;" points="
|
||||
960,371.1 730.2,237.8 972.8,123.9 1043.6,409.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000174570387500765410560000018201440021002273169_" gradientUnits="userSpaceOnUse" x1="-7022.96" y1="-1443.5104" x2="-6656.459" y2="-1443.5104" gradientTransform="matrix(-0.2682 -0.9634 1.0501 -0.2924 294.0579 -6276.7939)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000174570387500765410560000018201440021002273169_);enable-background:new ;" points="
|
||||
657.1,531.1 756.4,656.4 507.9,953.1 521.4,741.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000041276010603755054700000012950505128597653693_" gradientUnits="userSpaceOnUse" x1="6476.2949" y1="-3050.6917" x2="6860.4126" y2="-3050.6917" gradientTransform="matrix(-0.9257 0.3783 -0.3783 -0.9257 5603.1353 -4641.4233)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000041276010603755054700000012950505128597653693_);enable-background:new ;" points="
|
||||
397,619.9 699,580.8 766.2,642.6 628.2,832 516.1,895 427.7,829.7 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000061435600823447587540000000552723606534874028_" gradientUnits="userSpaceOnUse" x1="-14448.0498" y1="-4270.9775" x2="-13998.3457" y2="-4270.9775" gradientTransform="matrix(-0.2347 -0.2596 0.879 -0.2953 1043.0485 -4355.957)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000061435600823447587540000000552723606534874028_);enable-background:new ;" points="
|
||||
431.9,727.7 458.3,613.8 806,449.6 700.3,584.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000002351047188999019860000002566414104328457898_" gradientUnits="userSpaceOnUse" x1="12772.9473" y1="6937.4038" x2="13680.8916" y2="6937.4038" gradientTransform="matrix(0.1765 0.3022 -0.9209 0.1087 4716.2749 -3888.3674)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000002351047188999019860000002566414104328457898_);enable-background:new ;" points="
|
||||
740.4,729.5 893.4,986.9 504.3,864.5 521.4,741.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000004534978137110897330000008179059058368671906_" gradientUnits="userSpaceOnUse" x1="-7687.7383" y1="5080.5278" x2="-7400.5278" y2="5080.5278" gradientTransform="matrix(0.3915 -0.9202 0.9202 0.3915 -1099.8982 -8403.8916)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000004534978137110897330000008179059058368671906_);enable-background:new ;" points="
|
||||
699,580.8 458.3,613.8 533.2,379.6 806,449.6 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000091017312778810520490000013487813255627565699_" cx="-108.2559" cy="10030.8691" r="181.9404" gradientTransform="matrix(0.8642 0.5228 -0.5025 0.9115 5995.1982 -8755.3174)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000091017312778810520490000013487813255627565699_);enable-background:new ;" cx="871.9" cy="305.4" rx="181.9" ry="190.6"/>
|
||||
|
||||
<linearGradient id="SVGID_00000093149179829732349710000008128861407447028144_" gradientUnits="userSpaceOnUse" x1="6476.3066" y1="-3135.9316" x2="6770.707" y2="-3135.9316" gradientTransform="matrix(-0.9257 0.3783 -0.3783 -0.9257 5603.1353 -4641.4233)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000093149179829732349710000008128861407447028144_);enable-background:new ;" points="
|
||||
501.4,638.1 766.2,642.6 717.1,936.1 628.2,832 532.1,848 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000034071598378061202680000005682775137060128388_" gradientUnits="userSpaceOnUse" x1="-2446.0144" y1="8616.9512" x2="-2179.4543" y2="8616.9512" gradientTransform="matrix(0.9797 -0.2004 0.2004 0.9797 1206.5922 -8533.6934)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000034071598378061202680000005682775137060128388_);enable-background:new ;" points="
|
||||
533.2,379.6 730.2,345.4 784.8,279.5 797.9,413.5 "/>
|
||||
</g>
|
||||
|
||||
<linearGradient id="SVGID_00000147222259863327894370000004713185813428820113_" gradientUnits="userSpaceOnUse" x1="-8054.3379" y1="5144.2563" x2="-7614.1865" y2="5144.2563" gradientTransform="matrix(0.4172 -0.9088 0.9088 0.4172 401.7775 -8335.0615)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000147222259863327894370000004713185813428820113_);enable-background:new ;" points="
|
||||
2140.7,840.5 1984.5,1253.1 1507.2,881.3 1602,731.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000063620498617606890090000008720960172290484925_" gradientUnits="userSpaceOnUse" x1="-338.647" y1="-4980.8984" x2="213.0973" y2="-4980.8984" gradientTransform="matrix(-0.9511 -0.3089 0.3089 -0.9511 3185.2781 -3756.8625)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000063620498617606890090000008720960172290484925_);enable-background:new ;" points="
|
||||
1556,569.8 1783,991.1 1934.2,1191.5 1645,1256.7 1426.9,1290.3 1413.7,1026.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000078013590621525976610000006727138897565908112_" gradientUnits="userSpaceOnUse" x1="5217.2197" y1="6487.8555" x2="5885.4883" y2="6487.8555" gradientTransform="matrix(-3.594599e-02 0.9994 -0.9994 -3.594599e-02 8477.332 -4502.8599)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000078013590621525976610000006727138897565908112_);enable-background:new ;" points="
|
||||
1933.3,482.6 1995.2,701.9 1737.9,1144.3 1601.6,667.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000129169157574715853980000000301106401069963673_" gradientUnits="userSpaceOnUse" x1="8268.3721" y1="570.8364" x2="8986.3359" y2="570.8364" gradientTransform="matrix(-7.909842e-02 0.6653 -0.9567 -0.2541 3183.1792 -4748.3145)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000129169157574715853980000000301106401069963673_);enable-background:new ;" points="
|
||||
2004.8,870.8 2102.8,1126.5 1757.4,979.3 1814,558.8 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000051343387064157711410000007010731585534318724_" gradientUnits="userSpaceOnUse" x1="-6628.8418" y1="4207.9429" x2="-6236.5361" y2="4207.9429" gradientTransform="matrix(0.2612 -0.9653 0.9653 0.2612 -653.4725 -6361.3896)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000051343387064157711410000007010731585534318724_);enable-background:new ;" points="
|
||||
1621.5,776.7 2068.4,836 1927.9,1204.4 1463.9,778.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000169518436558334241300000010220786071391330234_" gradientUnits="userSpaceOnUse" x1="1836.1005" y1="7829.1611" x2="2258.3394" y2="7829.1611" gradientTransform="matrix(0.9919 -0.1269 0.1269 0.9919 -1274.858 -6407.4478)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000169518436558334241300000010220786071391330234_);enable-background:new ;" points="
|
||||
1983.4,1264.7 1663.6,1217.3 1515.2,932.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000003075246375309062510000005919818320267613622_" gradientUnits="userSpaceOnUse" x1="10926.9941" y1="12790.3369" x2="11459.4355" y2="12790.3369" gradientTransform="matrix(0.3792 0.341 -0.9317 0.5609 7924.4082 -10914.7021)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000003075246375309062510000005919818320267613622_);enable-background:new ;" points="
|
||||
276.7,-75.4 413.8,-51.6 325.9,197.4 26.2,146.4 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000151504943794861704500000013710966191068745143_" gradientUnits="userSpaceOnUse" x1="9379.0352" y1="6171.8062" x2="9964.666" y2="6171.8062" gradientTransform="matrix(0.353 0.5695 -0.9064 0.3978 2451.355 -7980.2593)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000151504943794861704500000013710966191068745143_);enable-background:new ;" points="
|
||||
320.6,-31.9 538.6,70 180.3,178.5 -2.7,-115.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000116945986907177242930000003619234899467008173_" gradientUnits="userSpaceOnUse" x1="-7309.3979" y1="-1249.7209" x2="-6990.3579" y2="-1249.7209" gradientTransform="matrix(-0.3976 -0.9175 0.9175 -0.3976 -1553.5924 -6849.3574)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000116945986907177242930000003619234899467008173_);enable-background:new ;" points="
|
||||
-37.5,164 354.7,-57.8 441.9,252.1 -163.5,256 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000018934028870046402510000005056381095522587327_" gradientUnits="userSpaceOnUse" x1="-3331.885" y1="6389.4604" x2="-2896.9707" y2="6389.4604" gradientTransform="matrix(0.6964 -0.7176 0.7176 0.6964 -2068.2891 -6498.0825)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000018934028870046402510000005056381095522587327_);enable-background:new ;" points="
|
||||
626.8,154.1 343.4,309.7 69,218.8 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000101790783768249243120000007920411576515842194_" gradientUnits="userSpaceOnUse" x1="-6562.5264" y1="1880.1191" x2="-6127.6533" y2="1880.1191" gradientTransform="matrix(-9.480336e-02 -0.9955 0.9955 -9.480336e-02 -1443.6445 -5086.2905)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000101790783768249243120000007920411576515842194_);enable-background:new ;" points="
|
||||
1185.8,818.7 1120.5,1135.3 873.3,1285.3 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 25 KiB |
@@ -1,8 +0,0 @@
|
||||
[Plymouth Theme]
|
||||
Name=Default theme for Debian 12.0 Bookworm
|
||||
Description=An Emerald theme by Juliette Taka
|
||||
ModuleName=script
|
||||
|
||||
[script]
|
||||
ImageDir=/usr/share/plymouth/themes/emerald
|
||||
ScriptFile=/usr/share/plymouth/themes/emerald/emerald.script
|
||||
|
Before Width: | Height: | Size: 998 KiB |
|
Before Width: | Height: | Size: 796 KiB |
|
Before Width: | Height: | Size: 179 B |
|
Before Width: | Height: | Size: 230 B |
@@ -1,114 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1955 1235" style="enable-background:new 0 0 1955 1235;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#05475C;}
|
||||
.st1{fill:url(#Light-animatied_00000153665003102180789100000014920320211427112852_);fill-opacity:0;}
|
||||
.st2{opacity:0.34;fill:url(#Light_00000049931444406959558420000011118242387754807726_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_1_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000092437024792419547230000012470343099200897703_);enable-background:new ;}
|
||||
.st5{opacity:0.34;fill:url(#SVGID_00000053524268638524580230000009562646312345667713_);enable-background:new ;}
|
||||
.st6{opacity:0.34;fill:url(#SVGID_00000003795728901093735210000006093551365008873148_);enable-background:new ;}
|
||||
.st7{opacity:0.34;fill:url(#SVGID_00000103945101433253827050000002378166818813419942_);enable-background:new ;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000145772669841712285070000005211532858817245118_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000025408665891596255860000008918391402547310509_);enable-background:new ;}
|
||||
.st10{opacity:0.71;}
|
||||
.st11{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g id="Calque_2_00000077317199504027971410000016184948397067180676_">
|
||||
</g>
|
||||
<g id="Calque_1_00000081641572645727348200000001620984863325280439_">
|
||||
<rect class="st0" width="1955" height="1231.4"/>
|
||||
|
||||
<radialGradient id="Light-animatied_00000181056568193152498960000005683703043009260931_" cx="5112.5278" cy="4394.7769" r="1365.8877" gradientTransform="matrix(0.1462 0.4781 0.4781 -0.1462 -1875.7946 -1201.0833)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle id="Light-animatied" style="fill:url(#Light-animatied_00000181056568193152498960000005683703043009260931_);fill-opacity:0;" cx="972.8" cy="600.7" r="682.7"/>
|
||||
|
||||
<radialGradient id="Light_00000087384382474596728320000003433582632716053383_" cx="1345.4283" cy="-1394.8445" r="1365.4" gradientTransform="matrix(0.5 0 0 -0.5 308.2858 -256.0222)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle id="Light" style="opacity:0.34;fill:url(#Light_00000087384382474596728320000003433582632716053383_);enable-background:new ;" cx="981" cy="441.4" r="682.7"/>
|
||||
<g id="Emerald">
|
||||
|
||||
<radialGradient id="SVGID_1_" cx="2429.1433" cy="5022.4121" r="289.2532" gradientTransform="matrix(0.8857 0.4643 -0.4643 0.8857 1256.1138 -4804.7017)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
<circle class="st3" cx="1075.7" cy="771.5" r="289.2"/>
|
||||
|
||||
<linearGradient id="SVGID_00000081634246945614292130000009160103003297778338_" gradientUnits="userSpaceOnUse" x1="850.5287" y1="4166.1729" x2="1144.8379" y2="4166.1729" gradientTransform="matrix(0.7967 0.6044 -0.6044 0.7967 2791.6482 -3179.5737)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000081634246945614292130000009160103003297778338_);enable-background:new ;" points=" 1026.6,844.4 875.5,753.5 1113.1,619.2 1183.7,834.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000127043305771364115220000007428299675525279651_" gradientUnits="userSpaceOnUse" x1="916.9987" y1="4263.1777" x2="1223.6107" y2="4263.1777" gradientTransform="matrix(0.7967 0.6044 -0.6044 0.7967 2791.6482 -3179.5737)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000127043305771364115220000007428299675525279651_);enable-background:new ;" points=" 991.1,711.1 1113.1,619.2 1179.1,970.6 1002.9,1019.4 858.2,983.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000164493139600312058340000005716472667201800862_" gradientUnits="userSpaceOnUse" x1="-2247.0476" y1="4944.5054" x2="-2027.02" y2="4944.5054" gradientTransform="matrix(0.5032 -0.8642 0.8642 0.5032 -2259.6885 -3551.7617)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000164493139600312058340000005716472667201800862_);enable-background:new ;" points=" 1118.3,778.5 1021.9,959.3 875.5,753.5 775.3,742.3 884,682.3 912.7,641.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000032633230336506068890000011371306122478918816_" gradientUnits="userSpaceOnUse" x1="223.9997" y1="687.1842" x2="569.2056" y2="687.1842" gradientTransform="matrix(-0.4643 0.8857 -0.8857 -0.4643 1855.8643 823.8525)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000032633230336506068890000011371306122478918816_);enable-background:new ;" points=" 1162.7,713.4 1160.5,826.9 1002.9,1019.4 1004,812.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000085951574485715847200000002403569224455768476_" gradientUnits="userSpaceOnUse" x1="3345.584" y1="5233.4712" x2="3676.3613" y2="5233.4712" gradientTransform="matrix(0.6638 0.296 -0.5015 0.8574 1281.8154 -4784.9614)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000085951574485715847200000002403569224455768476_);enable-background:new ;" points=" 1117.3,664.7 1035.2,897.1 884,682.3 983.4,631.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000026855970554098323810000009047357030981075896_" gradientUnits="userSpaceOnUse" x1="-3301.4873" y1="2403.8936" x2="-2952.6897" y2="2403.8936" gradientTransform="matrix(-0.7967 -0.6044 0.6044 -0.7967 -3022.8118 863.3734)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000026855970554098323810000009047357030981075896_);enable-background:new ;" points=" 1080,764.8 1002.9,1019.4 858.2,983.9 775.3,742.3 1004,812.1 "/>
|
||||
</g>
|
||||
<g id="Debian_Logo" transform="translate(34.9)">
|
||||
<g class="st10">
|
||||
<path class="st11" d="M873.3,459.6c-0.7,0,0.1,0.4,1.1,0.5c0.3-0.2,0.5-0.4,0.7-0.6C874.4,459.6,873.9,459.6,873.3,459.6"/>
|
||||
<path class="st11" d="M877.1,458.6c0.4-0.6,0.7-1.2,0.8-1.9c-0.1,0.5-0.4,0.9-0.6,1.3c-1.3,0.8-0.1-0.5,0-1 C875.9,458.9,877.1,458.1,877.1,458.6"/>
|
||||
<path class="st11" d="M878.5,455c0.1-1.3-0.3-0.9-0.4-0.4C878.3,454.6,878.4,455.5,878.5,455"/>
|
||||
<path class="st11" d="M870.6,437.4c0.4,0.1,0.8,0.1,0.8,0.2C871.7,437.6,871.8,437.5,870.6,437.4"/>
|
||||
<path class="st11" d="M871.3,437.6l-0.3,0.1L871.3,437.6L871.3,437.6"/>
|
||||
<path class="st11" d="M883.2,455.5c0,1.2-0.3,1.7-0.7,2.7l-0.6,0.3c-0.5,1,0.1,0.6-0.3,1.4c-0.8,0.7-2.4,2.2-2.9,2.3 c-0.4,0,0.3-0.4,0.3-0.6c-1.1,0.7-0.8,1.1-2.5,1.5V463c-4,1.9-9.5-1.8-9.4-6.9c0,0.3-0.1,0.2-0.2,0.4c-0.2-2.6,1.2-5.2,3.6-6.3 c2.3-1.1,5-0.7,6.7,0.9c-0.9-1.2-2.7-2.5-4.9-2.3c-2.1,0-4.1,1.4-4.7,2.8c-1.1,0.7-1.2,2.6-1.7,3c-0.6,4.7,1.2,6.7,4.3,9 c0.5,0.3,0.1,0.4,0.2,0.6c-1-0.5-2-1.2-2.7-2.1c0.4,0.6,0.9,1.2,1.4,1.6c-1-0.3-2.3-2.3-2.6-2.4c1.7,3,6.8,5.2,9.4,4.1 c-1.2,0-2.8,0-4.2-0.5c-0.6-0.3-1.4-0.9-1.2-1c3.6,1.4,7.4,1,10.5-1.5c0.8-0.6,1.7-1.7,1.9-1.7c-0.4,0.6,0.1,0.3-0.2,0.8 c0.8-1.3-0.3-0.5,0.8-2.2l0.4,0.6c-0.2-1.1,1.3-2.4,1.2-4.1c0.3-0.5,0.4,0.6,0,1.7c0.5-1.3,0.1-1.5,0.3-2.6 c0.1,0.4,0.3,0.8,0.4,1.1c-0.3-1.3,0.3-2.1,0.5-2.9c-0.2-0.1-0.5,0.6-0.6-0.9c0-0.7,0.2-0.3,0.2-0.5c-0.1-0.1-0.5-0.6-0.7-1.5 c0.1-0.2,0.4,0.6,0.6,0.6c-0.1-0.8-0.4-1.3-0.4-1.9c-0.6-1.2-0.2,0.2-0.7-0.5c-0.6-2,0.5-0.5,0.6-1.3c1,1.4,1.5,3.5,1.7,4.4 c-0.2-1.1-0.5-2.1-0.9-3.1c0.3,0.1-0.5-2.2,0.4-0.7c-0.9-3.3-3.9-6.4-6.6-7.9c0.3,0.3,0.8,0.7,0.6,0.7c-1.4-0.8-1.1-0.9-1.3-1.2 c-1.1-0.4-1.2,0-1.9,0c-2.1-1.1-2.5-1-4.4-1.7l0.1,0.4c-1.4-0.5-1.6,0.2-3.1,0c-0.1-0.1,0.5-0.3,0.9-0.3c-1.3,0.2-1.3-0.3-2.6,0 c0.3-0.2,0.7-0.4,1-0.6c-1.1,0.1-2.6,0.6-2.1,0.1c-1.8,0.8-4.9,1.9-6.7,3.5l-0.1-0.4c-0.8,1-3.5,2.9-3.7,4.1l-0.2,0.1 c-0.4,0.7-0.7,1.5-1,2.2c-0.5,0.9-0.8,0.4-0.7,0.5c-1.1,2.2-1.6,4-2.1,5.5c0.3,0.5,0,3,0.1,5c-0.5,9.8,6.9,19.3,15,21.5 c1.2,0.4,3,0.4,4.5,0.5c-1.8-0.5-2-0.3-3.7-0.9c-1.2-0.6-1.5-1.3-2.4-2l0.3,0.6c-1.7-0.6-1-0.8-2.4-1.2l0.4-0.5 c-0.6,0-1.5-0.9-1.7-1.4h-0.6c-0.7-0.9-1.1-1.6-1.1-2.1l-0.2,0.4c-0.2-0.4-2.7-3.4-1.4-2.7c-0.2-0.2-0.6-0.4-0.9-1l0.3-0.3 c-0.6-0.8-1.1-1.8-1.1-2.2c0.3,0.4,0.6,0.5,0.8,0.6c-1.6-3.9-1.7-0.2-2.8-4h0.3c-0.2-0.3-0.3-0.6-0.5-0.9l0.1-1.1 c-1.1-1.3-0.3-5.6-0.2-7.9c0.1-0.9,0.9-2,1.6-3.5l-0.4-0.1c0.7-1.3,4.2-5.1,5.8-4.9c0.8-1-0.2,0-0.3-0.2c1.7-1.8,2.2-1.2,3.4-1.6 c1.2-0.7-1.1,0.3-0.5-0.3c2.1-0.5,1.5-1.2,4.3-1.5c0.3,0.2-0.7,0.3-0.9,0.5c1.8-0.9,5.7-0.7,8.2,0.5c2.9,1.4,6.2,5.4,6.3,9.2h0.1 c-0.1,1.5,0.2,3.3-0.3,4.9L883.2,455.5"/>
|
||||
<path class="st11" d="M865.5,460.6l-0.1,0.5c0.5,0.6,0.8,1.3,1.4,1.8C866.4,462.1,866.1,461.7,865.5,460.6"/>
|
||||
<path class="st11" d="M866.6,460.5c-0.2-0.3-0.4-0.6-0.6-0.9c0.2,0.6,0.5,1.1,0.8,1.6L866.6,460.5"/>
|
||||
<path class="st11" d="M886.2,456.3l-0.1,0.3c-0.2,1.4-0.6,2.7-1.2,4C885.5,459.2,886,457.7,886.2,456.3"/>
|
||||
<path class="st11" d="M870.7,437.1c0.5-0.2,1.2-0.1,1.7-0.2c-0.7,0.1-1.3,0.1-2,0.2H870.7"/>
|
||||
<path class="st11" d="M853.8,446.1c0.1,1-0.8,1.4,0.2,0.7C854.5,445.7,853.8,446.5,853.8,446.1"/>
|
||||
<path class="st11" d="M852.7,450.8c0.2-0.7,0.3-1.1,0.3-1.5C852.4,450.1,852.7,450.3,852.7,450.8"/>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st10">
|
||||
<path class="st11" d="M923.3,453.4c0,0,0,8.6-0.1,10.8c-0.1,1.8-0.2,5.7-4.1,5.7c-3.9,0-4.9-4.5-5.2-6.5c-0.4-2.2-0.4-4-0.4-4.8 c0-2.6,0.1-9.7,6.2-9.7c1.8,0,2.8,0.5,3.6,1V453.4z M907.8,459.7c0,15,8,15,9.1,15c3.3,0,5.4-1.8,6.3-4.9l0.1,4.7 c1,0,2-0.1,3.7-0.1c0.6,0,1.1,0,1.5,0s0.9,0,1.3,0.1c-0.9-1.7-1.5-5.5-1.5-13.8c0-8.1,0-21.7,0.7-25.9c-1.9,0.9-3.5,1.5-7.2,1.8 c1.5,1.6,1.5,2.3,1.5,9.4c-1-0.3-2.3-0.7-4.5-0.7C909.4,445.2,907.8,453.5,907.8,459.7"/>
|
||||
<path class="st11" d="M936.6,457c0-4.4,1-8.3,4.7-8.3c4.1,0,4.5,4.6,4.4,8.3H936.6z M951,457.5c0-6.2-1.2-12.3-9.1-12.3 c-10.8,0-10.8,12-10.8,14.6c0,10.8,4.9,15,13,15c3.6,0,5.4-0.5,6.3-0.8c0-1.9,0.2-3.2,0.5-4.8c-1.1,0.7-2.6,1.6-5.7,1.6 c-8.3,0-8.4-7.6-8.4-10.1h14.1L951,457.5"/>
|
||||
<path class="st11" d="M968.3,459.8c0,4.9-0.9,11.6-7.1,11.6c-0.9,0-1.9-0.1-2.6-0.3c-0.1-1.9-0.1-5.2-0.1-9 c0-4.6,0.5-6.9,0.9-8.1c1.1-3.8,3.6-3.8,4.1-3.8C967.5,450.1,968.3,455.7,968.3,459.8z M953,465.6c0,3.9,0,6.2-0.6,7.9 c2.2,0.9,4.9,1.3,8.1,1.3c2.1,0,8.1,0,11.3-6.6c1.6-3.1,2.1-7.2,2.1-10.4c0-1.9-0.2-6.1-1.7-8.8c-1.5-2.5-3.9-3.8-6.4-3.8 c-5.1,0-6.6,4.3-7.4,6.5c0-2.7,0-12.2,0.5-17c-3.4,1.6-5.6,1.8-7.9,2.1c2.1,0.8,2.1,4.4,2.1,15.8L953,465.6"/>
|
||||
<path class="st11" d="M984.1,474.4c-1.1-0.1-1.8-0.2-3.3-0.2c-1.7,0-2.9,0.1-4.1,0.2c0.5-1,0.7-1.5,0.9-4.9 c0.2-4.8,0.2-17.4-0.1-20c-0.2-2-0.7-2.3-1.5-2.9c4.4-0.4,5.6-0.7,7.6-1.7c-0.4,2.3-0.5,3.5-0.5,7.1 C983,470.3,983,472.2,984.1,474.4"/>
|
||||
<path class="st11" d="M1001.2,459.4c-0.1,3.3-0.1,5.7-1.1,7.6c-1.1,2.4-3,3.1-4.4,3.1c-3.2,0-3.9-2.7-3.9-5.2 c0-5,4.5-5.4,6.5-5.4L1001.2,459.4L1001.2,459.4z M986.6,465.9c0,3.3,1,6.7,4,8.1c1.3,0.6,2.7,0.6,3.1,0.6 c4.9,0,6.5-3.6,7.6-5.9c0,2.3,0,3.8,0.1,5.6c1,0,1.9-0.1,3.5-0.1c0.9,0,1.7,0.1,2.7,0.1c-0.6-0.9-0.9-1.5-1.1-3.5 c-0.1-2-0.1-4-0.1-6.8v-10.8c0-4-1.1-8-9-8c-5.2,0-8.3,1.6-9.9,2.4c0.6,1.2,1.2,2.2,1.6,4.5c2.1-1.8,4.8-2.8,7.6-2.8 c4.4,0,4.4,2.9,4.4,7.1c-1,0-1.8-0.1-3.3-0.1C991,456.2,986.6,458.8,986.6,465.9"/>
|
||||
<path class="st11" d="M1031.8,469.2c0,1.8,0,3.7,0.8,5.2c-1.2-0.1-1.8-0.2-4-0.2c-1.3,0-2,0.1-3,0.2c0.2-0.7,0.3-1,0.4-1.8 c0.1-1.2,0.2-5.3,0.2-6.7v-5.7c0-2.5,0-6.1-0.1-7.4c-0.1-0.9-0.4-3.3-3.4-3.3c-3,0-4,2.2-4.4,4s-0.4,3.9-0.4,11.7 c0,6.8,0,7.4,0.6,9.3c-0.9-0.1-2-0.2-3.6-0.2c-1.3,0-2.1,0-3.2,0.2c0.4-0.9,0.6-1.3,0.7-4.3c0.1-2.9,0.3-17.3-0.1-20.7 c-0.2-2.1-0.8-2.6-1.4-3.1c4.3-0.2,5.7-0.9,7-1.6v5.6c0.6-1.6,1.9-5.3,7.3-5.3c6.6,0,6.7,4.9,6.7,8L1031.8,469.2"/>
|
||||
<path class="st11" d="M984.6,437.4l-4.4,4.4l-4.4-4.4l4.4-4.4L984.6,437.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 12 KiB |
@@ -1,156 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1955 1235" style="enable-background:new 0 0 1955 1235;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#05475C;}
|
||||
.st1{fill:url(#Light-animatied_00000153665003102180789100000014920320211427112852_);fill-opacity:0;}
|
||||
.st2{opacity:0.34;fill:url(#Light_00000049931444406959558420000011118242387754807726_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_1_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000092437024792419547230000012470343099200897703_);enable-background:new ;}
|
||||
.st5{opacity:0.34;fill:url(#SVGID_00000053524268638524580230000009562646312345667713_);enable-background:new ;}
|
||||
.st6{opacity:0.34;fill:url(#SVGID_00000003795728901093735210000006093551365008873148_);enable-background:new ;}
|
||||
.st7{opacity:0.34;fill:url(#SVGID_00000103945101433253827050000002378166818813419942_);enable-background:new ;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000145772669841712285070000005211532858817245118_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000025408665891596255860000008918391402547310509_);enable-background:new ;}
|
||||
.st10{opacity:0.71;}
|
||||
.st11{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g id="Calque_2_00000077317199504027971410000016184948397067180676_">
|
||||
</g>
|
||||
<g id="Calque_1_00000081641572645727348200000001620984863325280439_">
|
||||
<rect class="st0" width="1955" height="1231.4"/>
|
||||
|
||||
<radialGradient id="Light-animatied_00000181056568193152498960000005683703043009260931_" cx="5112.5278" cy="4394.7769" r="1365.8877" gradientTransform="matrix(0.1462 0.4781 0.4781 -0.1462 -1875.7946 -1201.0833)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle id="Light-animatied" style="fill:url(#Light-animatied_00000181056568193152498960000005683703043009260931_);fill-opacity:0;" cx="972.8" cy="600.7" r="682.7"/>
|
||||
|
||||
<radialGradient id="Light_00000087384382474596728320000003433582632716053383_" cx="1345.4283" cy="-1394.8445" r="1365.4" gradientTransform="matrix(0.5 0 0 -0.5 308.2858 -256.0222)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle id="Light" style="opacity:0.34;fill:url(#Light_00000087384382474596728320000003433582632716053383_);enable-background:new ;" cx="981" cy="441.4" r="682.7"/>
|
||||
<g id="Emerald">
|
||||
|
||||
<radialGradient id="SVGID_1_" cx="2429.1433" cy="5022.4121" r="289.2532" gradientTransform="matrix(0.8857 0.4643 -0.4643 0.8857 1256.1138 -4804.7017)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
<circle class="st3" cx="1075.7" cy="771.5" r="289.2"/>
|
||||
|
||||
<linearGradient id="SVGID_00000081634246945614292130000009160103003297778338_" gradientUnits="userSpaceOnUse" x1="850.5287" y1="4166.1729" x2="1144.8379" y2="4166.1729" gradientTransform="matrix(0.7967 0.6044 -0.6044 0.7967 2791.6482 -3179.5737)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000081634246945614292130000009160103003297778338_);enable-background:new ;" points="
|
||||
1026.6,844.4 875.5,753.5 1113.1,619.2 1183.7,834.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000127043305771364115220000007428299675525279651_" gradientUnits="userSpaceOnUse" x1="916.9987" y1="4263.1777" x2="1223.6107" y2="4263.1777" gradientTransform="matrix(0.7967 0.6044 -0.6044 0.7967 2791.6482 -3179.5737)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000127043305771364115220000007428299675525279651_);enable-background:new ;" points="
|
||||
991.1,711.1 1113.1,619.2 1179.1,970.6 1002.9,1019.4 858.2,983.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000164493139600312058340000005716472667201800862_" gradientUnits="userSpaceOnUse" x1="-2247.0476" y1="4944.5054" x2="-2027.02" y2="4944.5054" gradientTransform="matrix(0.5032 -0.8642 0.8642 0.5032 -2259.6885 -3551.7617)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000164493139600312058340000005716472667201800862_);enable-background:new ;" points="
|
||||
1118.3,778.5 1021.9,959.3 875.5,753.5 775.3,742.3 884,682.3 912.7,641.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000032633230336506068890000011371306122478918816_" gradientUnits="userSpaceOnUse" x1="223.9997" y1="687.1842" x2="569.2056" y2="687.1842" gradientTransform="matrix(-0.4643 0.8857 -0.8857 -0.4643 1855.8643 823.8525)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000032633230336506068890000011371306122478918816_);enable-background:new ;" points="
|
||||
1162.7,713.4 1160.5,826.9 1002.9,1019.4 1004,812.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000085951574485715847200000002403569224455768476_" gradientUnits="userSpaceOnUse" x1="3345.584" y1="5233.4712" x2="3676.3613" y2="5233.4712" gradientTransform="matrix(0.6638 0.296 -0.5015 0.8574 1281.8154 -4784.9614)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000085951574485715847200000002403569224455768476_);enable-background:new ;" points="
|
||||
1117.3,664.7 1035.2,897.1 884,682.3 983.4,631.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000026855970554098323810000009047357030981075896_" gradientUnits="userSpaceOnUse" x1="-3301.4873" y1="2403.8936" x2="-2952.6897" y2="2403.8936" gradientTransform="matrix(-0.7967 -0.6044 0.6044 -0.7967 -3022.8118 863.3734)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000026855970554098323810000009047357030981075896_);enable-background:new ;" points="
|
||||
1080,764.8 1002.9,1019.4 858.2,983.9 775.3,742.3 1004,812.1 "/>
|
||||
</g>
|
||||
<g id="Debian_Logo" transform="translate(34.9)">
|
||||
<g class="st10">
|
||||
<path class="st11" d="M873.3,459.6c-0.7,0,0.1,0.4,1.1,0.5c0.3-0.2,0.5-0.4,0.7-0.6C874.4,459.6,873.9,459.6,873.3,459.6"/>
|
||||
<path class="st11" d="M877.1,458.6c0.4-0.6,0.7-1.2,0.8-1.9c-0.1,0.5-0.4,0.9-0.6,1.3c-1.3,0.8-0.1-0.5,0-1
|
||||
C875.9,458.9,877.1,458.1,877.1,458.6"/>
|
||||
<path class="st11" d="M878.5,455c0.1-1.3-0.3-0.9-0.4-0.4C878.3,454.6,878.4,455.5,878.5,455"/>
|
||||
<path class="st11" d="M870.6,437.4c0.4,0.1,0.8,0.1,0.8,0.2C871.7,437.6,871.8,437.5,870.6,437.4"/>
|
||||
<path class="st11" d="M871.3,437.6l-0.3,0.1L871.3,437.6L871.3,437.6"/>
|
||||
<path class="st11" d="M883.2,455.5c0,1.2-0.3,1.7-0.7,2.7l-0.6,0.3c-0.5,1,0.1,0.6-0.3,1.4c-0.8,0.7-2.4,2.2-2.9,2.3
|
||||
c-0.4,0,0.3-0.4,0.3-0.6c-1.1,0.7-0.8,1.1-2.5,1.5V463c-4,1.9-9.5-1.8-9.4-6.9c0,0.3-0.1,0.2-0.2,0.4c-0.2-2.6,1.2-5.2,3.6-6.3
|
||||
c2.3-1.1,5-0.7,6.7,0.9c-0.9-1.2-2.7-2.5-4.9-2.3c-2.1,0-4.1,1.4-4.7,2.8c-1.1,0.7-1.2,2.6-1.7,3c-0.6,4.7,1.2,6.7,4.3,9
|
||||
c0.5,0.3,0.1,0.4,0.2,0.6c-1-0.5-2-1.2-2.7-2.1c0.4,0.6,0.9,1.2,1.4,1.6c-1-0.3-2.3-2.3-2.6-2.4c1.7,3,6.8,5.2,9.4,4.1
|
||||
c-1.2,0-2.8,0-4.2-0.5c-0.6-0.3-1.4-0.9-1.2-1c3.6,1.4,7.4,1,10.5-1.5c0.8-0.6,1.7-1.7,1.9-1.7c-0.4,0.6,0.1,0.3-0.2,0.8
|
||||
c0.8-1.3-0.3-0.5,0.8-2.2l0.4,0.6c-0.2-1.1,1.3-2.4,1.2-4.1c0.3-0.5,0.4,0.6,0,1.7c0.5-1.3,0.1-1.5,0.3-2.6
|
||||
c0.1,0.4,0.3,0.8,0.4,1.1c-0.3-1.3,0.3-2.1,0.5-2.9c-0.2-0.1-0.5,0.6-0.6-0.9c0-0.7,0.2-0.3,0.2-0.5c-0.1-0.1-0.5-0.6-0.7-1.5
|
||||
c0.1-0.2,0.4,0.6,0.6,0.6c-0.1-0.8-0.4-1.3-0.4-1.9c-0.6-1.2-0.2,0.2-0.7-0.5c-0.6-2,0.5-0.5,0.6-1.3c1,1.4,1.5,3.5,1.7,4.4
|
||||
c-0.2-1.1-0.5-2.1-0.9-3.1c0.3,0.1-0.5-2.2,0.4-0.7c-0.9-3.3-3.9-6.4-6.6-7.9c0.3,0.3,0.8,0.7,0.6,0.7c-1.4-0.8-1.1-0.9-1.3-1.2
|
||||
c-1.1-0.4-1.2,0-1.9,0c-2.1-1.1-2.5-1-4.4-1.7l0.1,0.4c-1.4-0.5-1.6,0.2-3.1,0c-0.1-0.1,0.5-0.3,0.9-0.3c-1.3,0.2-1.3-0.3-2.6,0
|
||||
c0.3-0.2,0.7-0.4,1-0.6c-1.1,0.1-2.6,0.6-2.1,0.1c-1.8,0.8-4.9,1.9-6.7,3.5l-0.1-0.4c-0.8,1-3.5,2.9-3.7,4.1l-0.2,0.1
|
||||
c-0.4,0.7-0.7,1.5-1,2.2c-0.5,0.9-0.8,0.4-0.7,0.5c-1.1,2.2-1.6,4-2.1,5.5c0.3,0.5,0,3,0.1,5c-0.5,9.8,6.9,19.3,15,21.5
|
||||
c1.2,0.4,3,0.4,4.5,0.5c-1.8-0.5-2-0.3-3.7-0.9c-1.2-0.6-1.5-1.3-2.4-2l0.3,0.6c-1.7-0.6-1-0.8-2.4-1.2l0.4-0.5
|
||||
c-0.6,0-1.5-0.9-1.7-1.4h-0.6c-0.7-0.9-1.1-1.6-1.1-2.1l-0.2,0.4c-0.2-0.4-2.7-3.4-1.4-2.7c-0.2-0.2-0.6-0.4-0.9-1l0.3-0.3
|
||||
c-0.6-0.8-1.1-1.8-1.1-2.2c0.3,0.4,0.6,0.5,0.8,0.6c-1.6-3.9-1.7-0.2-2.8-4h0.3c-0.2-0.3-0.3-0.6-0.5-0.9l0.1-1.1
|
||||
c-1.1-1.3-0.3-5.6-0.2-7.9c0.1-0.9,0.9-2,1.6-3.5l-0.4-0.1c0.7-1.3,4.2-5.1,5.8-4.9c0.8-1-0.2,0-0.3-0.2c1.7-1.8,2.2-1.2,3.4-1.6
|
||||
c1.2-0.7-1.1,0.3-0.5-0.3c2.1-0.5,1.5-1.2,4.3-1.5c0.3,0.2-0.7,0.3-0.9,0.5c1.8-0.9,5.7-0.7,8.2,0.5c2.9,1.4,6.2,5.4,6.3,9.2h0.1
|
||||
c-0.1,1.5,0.2,3.3-0.3,4.9L883.2,455.5"/>
|
||||
<path class="st11" d="M865.5,460.6l-0.1,0.5c0.5,0.6,0.8,1.3,1.4,1.8C866.4,462.1,866.1,461.7,865.5,460.6"/>
|
||||
<path class="st11" d="M866.6,460.5c-0.2-0.3-0.4-0.6-0.6-0.9c0.2,0.6,0.5,1.1,0.8,1.6L866.6,460.5"/>
|
||||
<path class="st11" d="M886.2,456.3l-0.1,0.3c-0.2,1.4-0.6,2.7-1.2,4C885.5,459.2,886,457.7,886.2,456.3"/>
|
||||
<path class="st11" d="M870.7,437.1c0.5-0.2,1.2-0.1,1.7-0.2c-0.7,0.1-1.3,0.1-2,0.2H870.7"/>
|
||||
<path class="st11" d="M853.8,446.1c0.1,1-0.8,1.4,0.2,0.7C854.5,445.7,853.8,446.5,853.8,446.1"/>
|
||||
<path class="st11" d="M852.7,450.8c0.2-0.7,0.3-1.1,0.3-1.5C852.4,450.1,852.7,450.3,852.7,450.8"/>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st10">
|
||||
<path class="st11" d="M923.3,453.4c0,0,0,8.6-0.1,10.8c-0.1,1.8-0.2,5.7-4.1,5.7c-3.9,0-4.9-4.5-5.2-6.5c-0.4-2.2-0.4-4-0.4-4.8
|
||||
c0-2.6,0.1-9.7,6.2-9.7c1.8,0,2.8,0.5,3.6,1V453.4z M907.8,459.7c0,15,8,15,9.1,15c3.3,0,5.4-1.8,6.3-4.9l0.1,4.7
|
||||
c1,0,2-0.1,3.7-0.1c0.6,0,1.1,0,1.5,0s0.9,0,1.3,0.1c-0.9-1.7-1.5-5.5-1.5-13.8c0-8.1,0-21.7,0.7-25.9c-1.9,0.9-3.5,1.5-7.2,1.8
|
||||
c1.5,1.6,1.5,2.3,1.5,9.4c-1-0.3-2.3-0.7-4.5-0.7C909.4,445.2,907.8,453.5,907.8,459.7"/>
|
||||
<path class="st11" d="M936.6,457c0-4.4,1-8.3,4.7-8.3c4.1,0,4.5,4.6,4.4,8.3H936.6z M951,457.5c0-6.2-1.2-12.3-9.1-12.3
|
||||
c-10.8,0-10.8,12-10.8,14.6c0,10.8,4.9,15,13,15c3.6,0,5.4-0.5,6.3-0.8c0-1.9,0.2-3.2,0.5-4.8c-1.1,0.7-2.6,1.6-5.7,1.6
|
||||
c-8.3,0-8.4-7.6-8.4-10.1h14.1L951,457.5"/>
|
||||
<path class="st11" d="M968.3,459.8c0,4.9-0.9,11.6-7.1,11.6c-0.9,0-1.9-0.1-2.6-0.3c-0.1-1.9-0.1-5.2-0.1-9
|
||||
c0-4.6,0.5-6.9,0.9-8.1c1.1-3.8,3.6-3.8,4.1-3.8C967.5,450.1,968.3,455.7,968.3,459.8z M953,465.6c0,3.9,0,6.2-0.6,7.9
|
||||
c2.2,0.9,4.9,1.3,8.1,1.3c2.1,0,8.1,0,11.3-6.6c1.6-3.1,2.1-7.2,2.1-10.4c0-1.9-0.2-6.1-1.7-8.8c-1.5-2.5-3.9-3.8-6.4-3.8
|
||||
c-5.1,0-6.6,4.3-7.4,6.5c0-2.7,0-12.2,0.5-17c-3.4,1.6-5.6,1.8-7.9,2.1c2.1,0.8,2.1,4.4,2.1,15.8L953,465.6"/>
|
||||
<path class="st11" d="M984.1,474.4c-1.1-0.1-1.8-0.2-3.3-0.2c-1.7,0-2.9,0.1-4.1,0.2c0.5-1,0.7-1.5,0.9-4.9
|
||||
c0.2-4.8,0.2-17.4-0.1-20c-0.2-2-0.7-2.3-1.5-2.9c4.4-0.4,5.6-0.7,7.6-1.7c-0.4,2.3-0.5,3.5-0.5,7.1
|
||||
C983,470.3,983,472.2,984.1,474.4"/>
|
||||
<path class="st11" d="M1001.2,459.4c-0.1,3.3-0.1,5.7-1.1,7.6c-1.1,2.4-3,3.1-4.4,3.1c-3.2,0-3.9-2.7-3.9-5.2
|
||||
c0-5,4.5-5.4,6.5-5.4L1001.2,459.4L1001.2,459.4z M986.6,465.9c0,3.3,1,6.7,4,8.1c1.3,0.6,2.7,0.6,3.1,0.6
|
||||
c4.9,0,6.5-3.6,7.6-5.9c0,2.3,0,3.8,0.1,5.6c1,0,1.9-0.1,3.5-0.1c0.9,0,1.7,0.1,2.7,0.1c-0.6-0.9-0.9-1.5-1.1-3.5
|
||||
c-0.1-2-0.1-4-0.1-6.8v-10.8c0-4-1.1-8-9-8c-5.2,0-8.3,1.6-9.9,2.4c0.6,1.2,1.2,2.2,1.6,4.5c2.1-1.8,4.8-2.8,7.6-2.8
|
||||
c4.4,0,4.4,2.9,4.4,7.1c-1,0-1.8-0.1-3.3-0.1C991,456.2,986.6,458.8,986.6,465.9"/>
|
||||
<path class="st11" d="M1031.8,469.2c0,1.8,0,3.7,0.8,5.2c-1.2-0.1-1.8-0.2-4-0.2c-1.3,0-2,0.1-3,0.2c0.2-0.7,0.3-1,0.4-1.8
|
||||
c0.1-1.2,0.2-5.3,0.2-6.7v-5.7c0-2.5,0-6.1-0.1-7.4c-0.1-0.9-0.4-3.3-3.4-3.3c-3,0-4,2.2-4.4,4s-0.4,3.9-0.4,11.7
|
||||
c0,6.8,0,7.4,0.6,9.3c-0.9-0.1-2-0.2-3.6-0.2c-1.3,0-2.1,0-3.2,0.2c0.4-0.9,0.6-1.3,0.7-4.3c0.1-2.9,0.3-17.3-0.1-20.7
|
||||
c-0.2-2.1-0.8-2.6-1.4-3.1c4.3-0.2,5.7-0.9,7-1.6v5.6c0.6-1.6,1.9-5.3,7.3-5.3c6.6,0,6.7,4.9,6.7,8L1031.8,469.2"/>
|
||||
<path class="st11" d="M984.6,437.4l-4.4,4.4l-4.4-4.4l4.4-4.4L984.6,437.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 12 KiB |
@@ -1,356 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 589.59998 628.40002"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="logo+emerald.svg"
|
||||
width="589.59998"
|
||||
height="628.40002"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
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="defs124">
|
||||
|
||||
|
||||
<radialGradient
|
||||
id="Light-animatied_00000181056568193152498960000005683703043009260931_"
|
||||
cx="5112.5278"
|
||||
cy="4394.7769"
|
||||
r="1365.8877"
|
||||
gradientTransform="matrix(0.1462,0.4781,0.4781,-0.1462,-2651.0946,-1633.3833)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop7" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop9" />
|
||||
</radialGradient>
|
||||
|
||||
|
||||
|
||||
<radialGradient
|
||||
id="Light_00000087384382474596728320000003433582632716053383_"
|
||||
cx="1345.4283"
|
||||
cy="-1394.8445"
|
||||
r="1365.4"
|
||||
gradientTransform="matrix(0.5,0,0,-0.5,308.2858,-256.0222)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop13" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop15" />
|
||||
</radialGradient>
|
||||
|
||||
|
||||
|
||||
|
||||
</defs><sodipodi:namedview
|
||||
id="namedview122"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.31726891"
|
||||
inkscape:cx="-321.49383"
|
||||
inkscape:cy="611.46867"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1023"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
.st0{fill:#05475C;}
|
||||
.st1{fill:url(#Light-animatied_00000153665003102180789100000014920320211427112852_);fill-opacity:0;}
|
||||
.st2{opacity:0.34;fill:url(#Light_00000049931444406959558420000011118242387754807726_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_1_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000092437024792419547230000012470343099200897703_);enable-background:new ;}
|
||||
.st5{opacity:0.34;fill:url(#SVGID_00000053524268638524580230000009562646312345667713_);enable-background:new ;}
|
||||
.st6{opacity:0.34;fill:url(#SVGID_00000003795728901093735210000006093551365008873148_);enable-background:new ;}
|
||||
.st7{opacity:0.34;fill:url(#SVGID_00000103945101433253827050000002378166818813419942_);enable-background:new ;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000145772669841712285070000005211532858817245118_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000025408665891596255860000008918391402547310509_);enable-background:new ;}
|
||||
.st10{opacity:0.71;}
|
||||
.st11{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g
|
||||
id="Calque_2_00000077317199504027971410000016184948397067180676_"
|
||||
transform="translate(-775.3,-432.3)">
|
||||
</g>
|
||||
<g
|
||||
id="Emerald"
|
||||
transform="translate(-775.3,-432.3)">
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_1_"
|
||||
cx="2429.1433"
|
||||
cy="5022.4121"
|
||||
r="289.2532"
|
||||
gradientTransform="matrix(0.8857,0.4643,-0.4643,0.8857,1256.1138,-4804.7017)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop19" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop21" />
|
||||
</radialGradient>
|
||||
<circle
|
||||
class="st3"
|
||||
cx="1075.7"
|
||||
cy="771.5"
|
||||
r="289.20001"
|
||||
id="circle24"
|
||||
style="fill:url(#SVGID_1_)" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000081634246945614292130000009160103003297778338_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="850.52869"
|
||||
y1="4166.1729"
|
||||
x2="1144.8379"
|
||||
y2="4166.1729"
|
||||
gradientTransform="matrix(0.7967,0.6044,-0.6044,0.7967,2791.6482,-3179.5737)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop26" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop28" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000081634246945614292130000009160103003297778338_);enable-background:new"
|
||||
points="1026.6,844.4 875.5,753.5 1113.1,619.2 1183.7,834.2 "
|
||||
id="polygon31" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000127043305771364115220000007428299675525279651_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="916.99872"
|
||||
y1="4263.1777"
|
||||
x2="1223.6107"
|
||||
y2="4263.1777"
|
||||
gradientTransform="matrix(0.7967,0.6044,-0.6044,0.7967,2791.6482,-3179.5737)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop33" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop35" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000127043305771364115220000007428299675525279651_);enable-background:new"
|
||||
points="858.2,983.9 991.1,711.1 1113.1,619.2 1179.1,970.6 1002.9,1019.4 "
|
||||
id="polygon38" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000164493139600312058340000005716472667201800862_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2247.0476"
|
||||
y1="4944.5054"
|
||||
x2="-2027.02"
|
||||
y2="4944.5054"
|
||||
gradientTransform="matrix(0.5032,-0.8642,0.8642,0.5032,-2259.6885,-3551.7617)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop40" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop42" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000164493139600312058340000005716472667201800862_);enable-background:new"
|
||||
points="884,682.3 912.7,641.1 1118.3,778.5 1021.9,959.3 875.5,753.5 775.3,742.3 "
|
||||
id="polygon45" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000032633230336506068890000011371306122478918816_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="223.99969"
|
||||
y1="687.1842"
|
||||
x2="569.20563"
|
||||
y2="687.1842"
|
||||
gradientTransform="matrix(-0.4643,0.8857,-0.8857,-0.4643,1855.8643,823.8525)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop47" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop49" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000032633230336506068890000011371306122478918816_);enable-background:new"
|
||||
points="1162.7,713.4 1160.5,826.9 1002.9,1019.4 1004,812.1 "
|
||||
id="polygon52" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000085951574485715847200000002403569224455768476_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3345.584"
|
||||
y1="5233.4712"
|
||||
x2="3676.3613"
|
||||
y2="5233.4712"
|
||||
gradientTransform="matrix(0.6638,0.296,-0.5015,0.8574,1281.8154,-4784.9614)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop54" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop56" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000085951574485715847200000002403569224455768476_);enable-background:new"
|
||||
points="1117.3,664.7 1035.2,897.1 884,682.3 983.4,631.3 "
|
||||
id="polygon59" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000026855970554098323810000009047357030981075896_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-3301.4873"
|
||||
y1="2403.8936"
|
||||
x2="-2952.6897"
|
||||
y2="2403.8936"
|
||||
gradientTransform="matrix(-0.7967,-0.6044,0.6044,-0.7967,-3022.8118,863.3734)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop61" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop63" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000026855970554098323810000009047357030981075896_);enable-background:new"
|
||||
points="1004,812.1 1080,764.8 1002.9,1019.4 858.2,983.9 775.3,742.3 "
|
||||
id="polygon66" />
|
||||
</g><g
|
||||
id="Debian_Logo"
|
||||
transform="translate(-740.4,-432.3)">
|
||||
<g
|
||||
class="st10"
|
||||
id="g93">
|
||||
<path
|
||||
class="st11"
|
||||
d="m 873.3,459.6 c -0.7,0 0.1,0.4 1.1,0.5 0.3,-0.2 0.5,-0.4 0.7,-0.6 -0.7,0.1 -1.2,0.1 -1.8,0.1"
|
||||
id="path69" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 877.1,458.6 c 0.4,-0.6 0.7,-1.2 0.8,-1.9 -0.1,0.5 -0.4,0.9 -0.6,1.3 -1.3,0.8 -0.1,-0.5 0,-1 -1.4,1.9 -0.2,1.1 -0.2,1.6"
|
||||
id="path71" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 878.5,455 c 0.1,-1.3 -0.3,-0.9 -0.4,-0.4 0.2,0 0.3,0.9 0.4,0.4"
|
||||
id="path73" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 870.6,437.4 c 0.4,0.1 0.8,0.1 0.8,0.2 0.3,0 0.4,-0.1 -0.8,-0.2"
|
||||
id="path75" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 871.3,437.6 -0.3,0.1 0.3,-0.1 v 0"
|
||||
id="path77" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 883.2,455.5 c 0,1.2 -0.3,1.7 -0.7,2.7 l -0.6,0.3 c -0.5,1 0.1,0.6 -0.3,1.4 -0.8,0.7 -2.4,2.2 -2.9,2.3 -0.4,0 0.3,-0.4 0.3,-0.6 -1.1,0.7 -0.8,1.1 -2.5,1.5 V 463 c -4,1.9 -9.5,-1.8 -9.4,-6.9 0,0.3 -0.1,0.2 -0.2,0.4 -0.2,-2.6 1.2,-5.2 3.6,-6.3 2.3,-1.1 5,-0.7 6.7,0.9 -0.9,-1.2 -2.7,-2.5 -4.9,-2.3 -2.1,0 -4.1,1.4 -4.7,2.8 -1.1,0.7 -1.2,2.6 -1.7,3 -0.6,4.7 1.2,6.7 4.3,9 0.5,0.3 0.1,0.4 0.2,0.6 -1,-0.5 -2,-1.2 -2.7,-2.1 0.4,0.6 0.9,1.2 1.4,1.6 -1,-0.3 -2.3,-2.3 -2.6,-2.4 1.7,3 6.8,5.2 9.4,4.1 -1.2,0 -2.8,0 -4.2,-0.5 -0.6,-0.3 -1.4,-0.9 -1.2,-1 3.6,1.4 7.4,1 10.5,-1.5 0.8,-0.6 1.7,-1.7 1.9,-1.7 -0.4,0.6 0.1,0.3 -0.2,0.8 0.8,-1.3 -0.3,-0.5 0.8,-2.2 l 0.4,0.6 c -0.2,-1.1 1.3,-2.4 1.2,-4.1 0.3,-0.5 0.4,0.6 0,1.7 0.5,-1.3 0.1,-1.5 0.3,-2.6 0.1,0.4 0.3,0.8 0.4,1.1 -0.3,-1.3 0.3,-2.1 0.5,-2.9 -0.2,-0.1 -0.5,0.6 -0.6,-0.9 0,-0.7 0.2,-0.3 0.2,-0.5 -0.1,-0.1 -0.5,-0.6 -0.7,-1.5 0.1,-0.2 0.4,0.6 0.6,0.6 -0.1,-0.8 -0.4,-1.3 -0.4,-1.9 -0.6,-1.2 -0.2,0.2 -0.7,-0.5 -0.6,-2 0.5,-0.5 0.6,-1.3 1,1.4 1.5,3.5 1.7,4.4 -0.2,-1.1 -0.5,-2.1 -0.9,-3.1 0.3,0.1 -0.5,-2.2 0.4,-0.7 -0.9,-3.3 -3.9,-6.4 -6.6,-7.9 0.3,0.3 0.8,0.7 0.6,0.7 -1.4,-0.8 -1.1,-0.9 -1.3,-1.2 -1.1,-0.4 -1.2,0 -1.9,0 -2.1,-1.1 -2.5,-1 -4.4,-1.7 l 0.1,0.4 c -1.4,-0.5 -1.6,0.2 -3.1,0 -0.1,-0.1 0.5,-0.3 0.9,-0.3 -1.3,0.2 -1.3,-0.3 -2.6,0 0.3,-0.2 0.7,-0.4 1,-0.6 -1.1,0.1 -2.6,0.6 -2.1,0.1 -1.8,0.8 -4.9,1.9 -6.7,3.5 l -0.1,-0.4 c -0.8,1 -3.5,2.9 -3.7,4.1 l -0.2,0.1 c -0.4,0.7 -0.7,1.5 -1,2.2 -0.5,0.9 -0.8,0.4 -0.7,0.5 -1.1,2.2 -1.6,4 -2.1,5.5 0.3,0.5 0,3 0.1,5 -0.5,9.8 6.9,19.3 15,21.5 1.2,0.4 3,0.4 4.5,0.5 -1.8,-0.5 -2,-0.3 -3.7,-0.9 -1.2,-0.6 -1.5,-1.3 -2.4,-2 l 0.3,0.6 c -1.7,-0.6 -1,-0.8 -2.4,-1.2 l 0.4,-0.5 c -0.6,0 -1.5,-0.9 -1.7,-1.4 h -0.6 c -0.7,-0.9 -1.1,-1.6 -1.1,-2.1 l -0.2,0.4 c -0.2,-0.4 -2.7,-3.4 -1.4,-2.7 -0.2,-0.2 -0.6,-0.4 -0.9,-1 l 0.3,-0.3 c -0.6,-0.8 -1.1,-1.8 -1.1,-2.2 0.3,0.4 0.6,0.5 0.8,0.6 -1.6,-3.9 -1.7,-0.2 -2.8,-4 h 0.3 c -0.2,-0.3 -0.3,-0.6 -0.5,-0.9 l 0.1,-1.1 c -1.1,-1.3 -0.3,-5.6 -0.2,-7.9 0.1,-0.9 0.9,-2 1.6,-3.5 l -0.4,-0.1 c 0.7,-1.3 4.2,-5.1 5.8,-4.9 0.8,-1 -0.2,0 -0.3,-0.2 1.7,-1.8 2.2,-1.2 3.4,-1.6 1.2,-0.7 -1.1,0.3 -0.5,-0.3 2.1,-0.5 1.5,-1.2 4.3,-1.5 0.3,0.2 -0.7,0.3 -0.9,0.5 1.8,-0.9 5.7,-0.7 8.2,0.5 2.9,1.4 6.2,5.4 6.3,9.2 h 0.1 c -0.1,1.5 0.2,3.3 -0.3,4.9 l 0.5,-0.6"
|
||||
id="path79" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 865.5,460.6 -0.1,0.5 c 0.5,0.6 0.8,1.3 1.4,1.8 -0.4,-0.8 -0.7,-1.2 -1.3,-2.3"
|
||||
id="path81" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 866.6,460.5 c -0.2,-0.3 -0.4,-0.6 -0.6,-0.9 0.2,0.6 0.5,1.1 0.8,1.6 l -0.2,-0.7"
|
||||
id="path83" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 886.2,456.3 -0.1,0.3 c -0.2,1.4 -0.6,2.7 -1.2,4 0.6,-1.4 1.1,-2.9 1.3,-4.3"
|
||||
id="path85" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 870.7,437.1 c 0.5,-0.2 1.2,-0.1 1.7,-0.2 -0.7,0.1 -1.3,0.1 -2,0.2 h 0.3"
|
||||
id="path87" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 853.8,446.1 c 0.1,1 -0.8,1.4 0.2,0.7 0.5,-1.1 -0.2,-0.3 -0.2,-0.7"
|
||||
id="path89" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 852.7,450.8 c 0.2,-0.7 0.3,-1.1 0.3,-1.5 -0.6,0.8 -0.3,1 -0.3,1.5"
|
||||
id="path91" />
|
||||
</g>
|
||||
<g
|
||||
id="g117">
|
||||
<g
|
||||
class="st10"
|
||||
id="g109">
|
||||
<path
|
||||
class="st11"
|
||||
d="m 923.3,453.4 c 0,0 0,8.6 -0.1,10.8 -0.1,1.8 -0.2,5.7 -4.1,5.7 -3.9,0 -4.9,-4.5 -5.2,-6.5 -0.4,-2.2 -0.4,-4 -0.4,-4.8 0,-2.6 0.1,-9.7 6.2,-9.7 1.8,0 2.8,0.5 3.6,1 z m -15.5,6.3 c 0,15 8,15 9.1,15 3.3,0 5.4,-1.8 6.3,-4.9 l 0.1,4.7 c 1,0 2,-0.1 3.7,-0.1 0.6,0 1.1,0 1.5,0 0.4,0 0.9,0 1.3,0.1 -0.9,-1.7 -1.5,-5.5 -1.5,-13.8 0,-8.1 0,-21.7 0.7,-25.9 -1.9,0.9 -3.5,1.5 -7.2,1.8 1.5,1.6 1.5,2.3 1.5,9.4 -1,-0.3 -2.3,-0.7 -4.5,-0.7 -9.4,-0.1 -11,8.2 -11,14.4"
|
||||
id="path95" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 936.6,457 c 0,-4.4 1,-8.3 4.7,-8.3 4.1,0 4.5,4.6 4.4,8.3 z m 14.4,0.5 c 0,-6.2 -1.2,-12.3 -9.1,-12.3 -10.8,0 -10.8,12 -10.8,14.6 0,10.8 4.9,15 13,15 3.6,0 5.4,-0.5 6.3,-0.8 0,-1.9 0.2,-3.2 0.5,-4.8 -1.1,0.7 -2.6,1.6 -5.7,1.6 -8.3,0 -8.4,-7.6 -8.4,-10.1 h 14.1 l 0.1,-3.2"
|
||||
id="path97" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 968.3,459.8 c 0,4.9 -0.9,11.6 -7.1,11.6 -0.9,0 -1.9,-0.1 -2.6,-0.3 -0.1,-1.9 -0.1,-5.2 -0.1,-9 0,-4.6 0.5,-6.9 0.9,-8.1 1.1,-3.8 3.6,-3.8 4.1,-3.8 4,-0.1 4.8,5.5 4.8,9.6 z m -15.3,5.8 c 0,3.9 0,6.2 -0.6,7.9 2.2,0.9 4.9,1.3 8.1,1.3 2.1,0 8.1,0 11.3,-6.6 1.6,-3.1 2.1,-7.2 2.1,-10.4 0,-1.9 -0.2,-6.1 -1.7,-8.8 -1.5,-2.5 -3.9,-3.8 -6.4,-3.8 -5.1,0 -6.6,4.3 -7.4,6.5 0,-2.7 0,-12.2 0.5,-17 -3.4,1.6 -5.6,1.8 -7.9,2.1 2.1,0.8 2.1,4.4 2.1,15.8 l -0.1,13"
|
||||
id="path99" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 984.1,474.4 c -1.1,-0.1 -1.8,-0.2 -3.3,-0.2 -1.7,0 -2.9,0.1 -4.1,0.2 0.5,-1 0.7,-1.5 0.9,-4.9 0.2,-4.8 0.2,-17.4 -0.1,-20 -0.2,-2 -0.7,-2.3 -1.5,-2.9 4.4,-0.4 5.6,-0.7 7.6,-1.7 -0.4,2.3 -0.5,3.5 -0.5,7.1 -0.1,18.3 -0.1,20.2 1,22.4"
|
||||
id="path101" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 1001.2,459.4 c -0.1,3.3 -0.1,5.7 -1.1,7.6 -1.1,2.4 -3,3.1 -4.4,3.1 -3.2,0 -3.9,-2.7 -3.9,-5.2 0,-5 4.5,-5.4 6.5,-5.4 z m -14.6,6.5 c 0,3.3 1,6.7 4,8.1 1.3,0.6 2.7,0.6 3.1,0.6 4.9,0 6.5,-3.6 7.6,-5.9 0,2.3 0,3.8 0.1,5.6 1,0 1.9,-0.1 3.5,-0.1 0.9,0 1.7,0.1 2.7,0.1 -0.6,-0.9 -0.9,-1.5 -1.1,-3.5 -0.1,-2 -0.1,-4 -0.1,-6.8 v -10.8 c 0,-4 -1.1,-8 -9,-8 -5.2,0 -8.3,1.6 -9.9,2.4 0.6,1.2 1.2,2.2 1.6,4.5 2.1,-1.8 4.8,-2.8 7.6,-2.8 4.4,0 4.4,2.9 4.4,7.1 -1,0 -1.8,-0.1 -3.3,-0.1 -6.8,-0.1 -11.2,2.5 -11.2,9.6"
|
||||
id="path103" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 1031.8,469.2 c 0,1.8 0,3.7 0.8,5.2 -1.2,-0.1 -1.8,-0.2 -4,-0.2 -1.3,0 -2,0.1 -3,0.2 0.2,-0.7 0.3,-1 0.4,-1.8 0.1,-1.2 0.2,-5.3 0.2,-6.7 v -5.7 c 0,-2.5 0,-6.1 -0.1,-7.4 -0.1,-0.9 -0.4,-3.3 -3.4,-3.3 -3,0 -4,2.2 -4.4,4 -0.4,1.8 -0.4,3.9 -0.4,11.7 0,6.8 0,7.4 0.6,9.3 -0.9,-0.1 -2,-0.2 -3.6,-0.2 -1.3,0 -2.1,0 -3.2,0.2 0.4,-0.9 0.6,-1.3 0.7,-4.3 0.1,-2.9 0.3,-17.3 -0.1,-20.7 -0.2,-2.1 -0.8,-2.6 -1.4,-3.1 4.3,-0.2 5.7,-0.9 7,-1.6 v 5.6 c 0.6,-1.6 1.9,-5.3 7.3,-5.3 6.6,0 6.7,4.9 6.7,8 l -0.1,16.1"
|
||||
id="path105" />
|
||||
<path
|
||||
class="st11"
|
||||
d="m 984.6,437.4 -4.4,4.4 -4.4,-4.4 4.4,-4.4 4.4,4.4"
|
||||
id="path107" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 14 KiB |
@@ -1,138 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
version="1.1"
|
||||
id="root"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="380px"
|
||||
height="380px"
|
||||
viewBox="0 0 380 380"
|
||||
enable-background="new 0 0 380 380"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="logo.svg"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
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"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"><metadata
|
||||
id="metadata10"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs8" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1831"
|
||||
inkscape:window-height="924"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.3894997"
|
||||
inkscape:cx="-84.202969"
|
||||
inkscape:cy="157.97053"
|
||||
inkscape:window-x="2984"
|
||||
inkscape:window-y="252"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="root"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-page="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" /><circle
|
||||
r="179"
|
||||
cy="190"
|
||||
cx="190"
|
||||
id="path817"
|
||||
style="fill:#05475c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.99998;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /><g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
transform="matrix(1.8539199,0,0,1.8539199,953.0737,104.96348)"
|
||||
id="g1007"
|
||||
style="display:inline;overflow:visible;fill:#ffffff;fill-opacity:1;stroke-width:4.97374"><g
|
||||
transform="translate(-455.08059,-8.3559995)"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
id="Layer_1-7"
|
||||
ns2:layer="yes"
|
||||
ns2:dimmedPercent="50"
|
||||
ns2:rgbTrio="#4F008000FFFF"><g
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
id="g984"><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 51.986,57.297 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
|
||||
id="path960" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 61.631,54.893 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
|
||||
id="path962" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 65.191,45.629 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
|
||||
id="path964" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 45.172,1.399 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
|
||||
id="path966" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
|
||||
id="path968" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 76.992,46.856 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 L 60.16,65.878 C 50.142,70.591 36.226,61.251 36.409,48.507 c -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.348,-5.97 2.967,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 C 83.519,18.706 76.074,10.902 69.225,7.24 70.063,8.007 71.121,8.97 70.741,9.121 67.335,7.093 67.934,6.935 67.446,6.078 64.671,4.949 64.489,6.169 62.651,6.08 57.421,3.306 56.413,3.601 51.6,1.863 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 C 28.751,98.334 26.418,96.056 25.78,94.795 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 L 8.412,66.472 C 7.926,65.74 7.631,64.945 7.24,64.165 l 0.276,-2.75 C 4.667,58.121 6.719,47.409 7.13,41.534 7.415,39.145 9.508,36.602 11.1,32.614 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
|
||||
id="path970" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 32.372,59.764 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
|
||||
id="path972" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 35.164,59.654 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
|
||||
id="path974" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 84.568,48.916 -0.264,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.77,-3.328 2.915,-6.968 3.395,-10.656"
|
||||
id="path976" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="M 45.527,0.537 C 46.742,0.092 48.514,0.293 49.803,0 48.123,0.141 46.451,0.225 44.8,0.438 l 0.727,0.099"
|
||||
id="path978" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 2.872,23.219 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
|
||||
id="path980" /><path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:4.97374"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="M 0,35.215 C 0.563,33.487 0.665,32.449 0.88,31.449 -0.676,33.438 0.164,33.862 0,35.215"
|
||||
id="path982" /></g></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 9.6 KiB |
@@ -1,298 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1280 1024" style="enable-background:new 0 0 1280 1024;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_00000082369769447655799990000012839066597224978085_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000138536434933359569700000008211936625353479337_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000090260306102934282120000012998503754303509409_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000168822260645755434950000013857349986517553545_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000026849100281003678370000018046303790085532341_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000003104025829092829680000014652070688053868446_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000001630812139417584360000001200436478434717836_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000111880619761813000150000008962218420139392141_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000117641450891432918300000014306761161789197723_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000053515190462896350430000013597288721791764379_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000114068875117162582540000007115564726296915091_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000014621309427875376430000015000328988201977012_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000180325614021136598430000014280393754949557429_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000171691794227299647910000016401751449040321190_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000062912436066714867990000003801752584178528653_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000017488491340259454160000003920522891461862575_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000035488858787002876390000011374095338634566036_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000131364036932899975780000001417587782949125018_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000124874447497065070200000012014497851787042950_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000121963785290277509330000005448036389820233348_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000033336426678516359760000004614793859902050741_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000113333699935387190810000011182117669209286335_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000168799401822999746220000014516544065938281372_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000057147980730760998990000004391305443780134823_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000022525350068506164640000011600826420075280788_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000135673322281644825270000005551889666712172220_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000152262443249485693450000010420598497054259634_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000048502037430154473260000000090325031489646983_);enable-background:new ;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" width="1280" height="1024"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_00000082335499408672756830000000701776840510022045_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="Calque_1-2" style="clip-path:url(#SVGID_00000082335499408672756830000000701776840510022045_);">
|
||||
<rect x="-337.5" y="-103.7" class="st1" width="1955" height="1231.4"/>
|
||||
|
||||
<radialGradient id="SVGID_00000124879613161866766880000015825326748969965711_" cx="715.92" cy="16229.1211" r="1365.4" gradientTransform="matrix(0.5 0 0 0.5 -672.96 -8145.3608)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000124879613161866766880000015825326748969965711_);enable-background:new ;" cx="-315" cy="-30.8" r="682.7"/>
|
||||
|
||||
<radialGradient id="SVGID_00000025406520331618859500000008090027969385445530_" cx="-3368.4609" cy="-4272.5674" r="342.1" gradientTransform="matrix(-2.8317 2.4125 -0.8042 -0.9439 -12447.4717 4248.9839)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000025406520331618859500000008090027969385445530_);enable-background:new ;" points="
|
||||
-621.3,509.5 1054,-917.6 1668.4,-196.2 -6.9,1230.8 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000044866044106081770760000012749269160630434724_" cx="1569.72" cy="16736.9219" r="459.4" gradientTransform="matrix(0.5 0 0 0.5 -672.96 -8145.3608)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#DAC9BA"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000044866044106081770760000012749269160630434724_);enable-background:new ;" cx="111.9" cy="223.1" r="229.7"/>
|
||||
<g class="st5">
|
||||
<path class="st6" d="M646.2,514.3c-1.3,0,0.2,0.7,2,0.9c0.5-0.4,0.9-0.7,1.3-1.1C648.4,514.3,647.3,514.4,646.2,514.3"/>
|
||||
<path class="st6" d="M653.3,512.5c0.8-1.1,1.4-2.3,1.6-3.5c-0.2,0.9-0.6,1.6-1.1,2.4c-2.5,1.5-0.2-0.9,0-1.9
|
||||
C651.1,512.9,653.4,511.6,653.3,512.5"/>
|
||||
<path class="st6" d="M655.9,505.7c0.2-2.4-0.5-1.6-0.7-0.7C655.5,505.1,655.7,506.7,655.9,505.7"/>
|
||||
<path class="st6" d="M641.2,473.3c0.7,0.1,1.5,0.2,1.4,0.4C643.4,473.5,643.6,473.4,641.2,473.3"/>
|
||||
<path class="st6" d="M642.6,473.7l-0.5,0.1L642.6,473.7L642.6,473.7"/>
|
||||
<path class="st6" d="M664.5,506.6c0.1,2.1-0.6,3.2-1.3,5l-1.1,0.6c-0.9,1.8,0.1,1.1-0.6,2.6c-1.5,1.3-4.4,4-5.4,4.3
|
||||
c-0.7,0,0.5-0.8,0.6-1.1c-1.9,1.3-1.6,2-4.5,2.8l-0.1-0.2c-7.3,3.5-17.5-3.4-17.4-12.7c-0.1,0.6-0.2,0.4-0.4,0.7
|
||||
c-0.4-4.8,2.2-9.6,6.6-11.6c4.3-2.1,9.3-1.3,12.4,1.6c-1.7-2.2-5-4.5-9-4.3c-3.9,0.1-7.5,2.5-8.8,5.2c-2,1.3-2.2,4.8-3.1,5.5
|
||||
c-1.2,8.6,2.2,12.3,7.9,16.7c0.9,0.6,0.3,0.7,0.4,1.2c-1.9-0.9-3.6-2.2-5.1-3.9c0.8,1.1,1.6,2.2,2.6,3c-1.8-0.6-4.2-4.3-4.9-4.5
|
||||
c3.1,5.5,12.5,9.7,17.4,7.6c-2.3,0.1-5.2,0-7.7-0.9c-1.1-0.6-2.5-1.7-2.3-1.9c6.7,2.5,13.7,1.9,19.5-2.8
|
||||
c1.5-1.2,3.1-3.1,3.6-3.1c-0.7,1.1,0.1,0.5-0.4,1.4c1.5-2.4-0.6-1,1.5-4.1l0.8,1.1c-0.3-2,2.5-4.4,2.2-7.5c0.6-1,0.7,1,0,3.2
|
||||
c0.9-2.4,0.2-2.8,0.5-4.8c0.3,0.7,0.6,1.4,0.8,2.1c-0.6-2.4,0.6-4,0.9-5.3c-0.3-0.1-0.9,1-1.1-1.7c0-1.2,0.3-0.6,0.5-0.9
|
||||
c-0.2-0.1-0.9-1.1-1.2-2.8c0.3-0.4,0.7,1.1,1.1,1.1c-0.2-1.4-0.7-2.5-0.7-3.6c-1.1-2.3-0.4,0.3-1.3-1c-1.2-3.6,1-0.8,1.1-2.5
|
||||
c1.8,2.5,2.8,6.5,3.2,8.1c-0.4-2-0.9-3.9-1.6-5.8c0.5,0.2-0.9-4.1,0.7-1.2c-1.7-6.1-7.1-11.8-12.1-14.5c0.6,0.6,1.4,1.3,1.1,1.4
|
||||
c-2.5-1.5-2.1-1.6-2.4-2.2c-2-0.8-2.2,0.1-3.5,0c-3.8-2-4.6-1.8-8.1-3.1l0.2,0.8c-2.5-0.8-3,0.3-5.7,0c-0.2-0.1,0.9-0.5,1.7-0.6
|
||||
c-2.5,0.3-2.3-0.5-4.7,0.1c0.6-0.4,1.2-0.7,1.8-1c-2,0.1-4.8,1.2-3.9,0.2c-3.3,1.5-9.1,3.5-12.3,6.5l-0.1-0.7
|
||||
c-1.5,1.8-6.5,5.3-6.9,7.7l-0.4,0.1c-0.8,1.3-1.3,2.8-1.9,4.2c-1,1.7-1.5,0.7-1.3,0.9c-2,4-3,7.4-3.8,10.2
|
||||
c0.6,0.9,0,5.5,0.2,9.1c-1,18.1,12.7,35.7,27.7,39.7c2.2,0.8,5.5,0.8,8.2,0.8c-3.3-0.9-3.7-0.5-6.9-1.6
|
||||
c-2.3-1.1-2.8-2.3-4.4-3.7l0.6,1.1c-3.2-1.1-1.9-1.4-4.5-2.2l0.7-0.9c-1-0.1-2.7-1.7-3.2-2.7h-1.1c-1.4-1.7-2.1-2.9-2-3.8
|
||||
l-0.4,0.7c-0.4-0.7-5-6.3-2.6-5c-0.4-0.4-1-0.7-1.7-1.8l0.5-0.6c-1.1-1.5-2.1-3.4-2-4c0.6,0.8,1,1,1.5,1.1
|
||||
c-2.9-7.2-3.1-0.4-5.3-7.3h0.5c-0.4-0.5-0.6-1.1-0.9-1.7l0.2-2c-2.1-2.4-0.6-10.3-0.3-14.6c0.2-1.7,1.7-3.6,2.9-6.5l-0.7-0.1
|
||||
c1.4-2.4,7.8-9.5,10.7-9.1c1.4-1.8-0.3,0-0.6-0.5c3.2-3.3,4.1-2.3,6.3-2.9c2.3-1.4-2,0.5-0.9-0.5c4-1,2.8-2.3,8-2.8
|
||||
c0.5,0.3-1.3,0.5-1.7,0.9c3.3-1.6,10.5-1.2,15.1,0.9c5.4,2.5,11.4,10,11.7,17l0.3,0.1c-0.1,2.8,0.4,6-0.6,9L664.5,506.6"/>
|
||||
<path class="st6" d="M631.9,516.1l-0.2,0.9c0.9,1.2,1.6,2.4,2.7,3.4C633.5,518.8,633,518.2,631.9,516.1"/>
|
||||
<path class="st6" d="M633.9,516c-0.5-0.5-0.7-1.1-1-1.7c0.3,1.1,0.9,2,1.4,2.9L633.9,516"/>
|
||||
<path class="st6" d="M670.1,508.1l-0.2,0.5c-0.4,2.5-1.1,5-2.3,7.3C668.9,513.5,669.7,510.8,670.1,508.1"/>
|
||||
<path class="st6" d="M641.5,472.7c0.9-0.3,2.2-0.2,3.1-0.4c-1.2,0.1-2.5,0.2-3.7,0.3L641.5,472.7"/>
|
||||
<path class="st6" d="M610.3,489.3c0.2,1.9-1.4,2.6,0.4,1.4C611.6,488.5,610.3,490.1,610.3,489.3"/>
|
||||
<path class="st6" d="M608.2,498.1c0.4-1.3,0.5-2,0.6-2.8C607.7,496.8,608.3,497.1,608.2,498.1"/>
|
||||
</g>
|
||||
<g class="st7">
|
||||
|
||||
<radialGradient id="SVGID_00000042724747775095359100000004624247994019142530_" cx="-167.6101" cy="9384.333" r="173.24" gradientTransform="matrix(0.8642 0.5228 -0.5025 0.9115 5295.5864 -7820.9434)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000042724747775095359100000004624247994019142530_);enable-background:new ;" cx="446.2" cy="617.9" rx="173.2" ry="181.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000135670806001809783110000011481800902258302382_" gradientUnits="userSpaceOnUse" x1="1846.4907" y1="-2704.1526" x2="2043.2992" y2="-2704.1526" gradientTransform="matrix(-0.7151 0.699 -0.5383 -0.5506 444.7119 -2563.033)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000135670806001809783110000011481800902258302382_);enable-background:new ;" points="
|
||||
380.3,293.9 490.7,125.3 629,347.1 565,387.5 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000163790998800306223480000010347503102700258746_" gradientUnits="userSpaceOnUse" x1="1911.8447" y1="6628.4746" x2="2183.0073" y2="6628.4746" gradientTransform="matrix(0.7774 0.629 -0.629 0.7774 3123.4453 -6167.4673)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000163790998800306223480000010347503102700258746_);enable-background:new ;" points="
|
||||
551.9,466.7 464.8,251.5 490.7,125.3 585.6,173.5 705.1,213.8 681,321.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000167363334016833603620000011495739702419862698_" gradientUnits="userSpaceOnUse" x1="-9853.9199" y1="6215.8276" x2="-9351.5713" y2="6215.8276" gradientTransform="matrix(0.3915 -0.9202 0.9202 0.3915 -1563.3262 -10847.0449)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000167363334016833603620000011495739702419862698_);enable-background:new ;" points="
|
||||
138.3,585.8 309.2,371.9 479.9,185.2 619.5,345.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000155136516645395636530000004720547928093345703_" gradientUnits="userSpaceOnUse" x1="6789.042" y1="124.1344" x2="7006.3218" y2="124.1344" gradientTransform="matrix(-0.3483 0.5724 -0.7648 -0.6285 3274.6648 -3573.2114)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000155136516645395636530000004720547928093345703_);enable-background:new ;" points="
|
||||
891.9,363.7 906.6,490.1 668.7,282.2 652.8,95.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000048500129275522854470000011057957717869914798_" gradientUnits="userSpaceOnUse" x1="-5467.3535" y1="7078.3965" x2="-5161.8506" y2="7078.3965" gradientTransform="matrix(0.7151 -0.699 0.699 0.7151 -437.2673 -8492.7812)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000048500129275522854470000011057957717869914798_);enable-background:new ;" points="
|
||||
668.7,282.2 464.8,251.5 569.2,184.3 709.8,65.1 888.9,381.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000042723334646911881860000016078027937150593205_" gradientUnits="userSpaceOnUse" x1="3910.2715" y1="-196.006" x2="4145.3232" y2="-196.006" gradientTransform="matrix(-0.5898 0.8076 -0.8076 -0.5898 2839.8289 -3149.1245)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000042723334646911881860000016078027937150593205_);enable-background:new ;" points="
|
||||
640,343.1 410.2,209.8 652.8,95.9 723.6,381.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000048474260712295130220000016231228586203786379_" gradientUnits="userSpaceOnUse" x1="-10359.2861" y1="-983.8054" x2="-9992.7871" y2="-983.8054" gradientTransform="matrix(-0.2682 -0.9634 1.0501 -0.2924 -1403.4604 -9384.5234)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000048474260712295130220000016231228586203786379_);enable-background:new ;" points="
|
||||
337.1,503.1 436.4,628.4 187.9,925.1 201.4,713.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000172433095123840620810000004087266759293635517_" gradientUnits="userSpaceOnUse" x1="3180.0928" y1="-5349.5884" x2="3564.21" y2="-5349.5884" gradientTransform="matrix(-0.9257 0.3783 -0.3783 -0.9257 1362.1681 -5550.5625)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000172433095123840620810000004087266759293635517_);enable-background:new ;" points="
|
||||
77,591.9 379,552.8 446.2,614.6 308.2,804 196.1,867 107.7,801.7 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000021090966104902184670000005903400369114996105_" gradientUnits="userSpaceOnUse" x1="-20762.5879" y1="-4303.3154" x2="-20312.8887" y2="-4303.3154" gradientTransform="matrix(-0.2347 -0.2596 0.879 -0.2953 -729.7987 -6031.9341)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000021090966104902184670000005903400369114996105_);enable-background:new ;" points="
|
||||
111.9,699.7 138.3,585.8 486,421.6 380.3,556.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000039839908873100496810000013923238145640286655_" gradientUnits="userSpaceOnUse" x1="14060.2383" y1="4867.2598" x2="14968.1787" y2="4867.2598" gradientTransform="matrix(0.1765 0.3022 -0.9209 0.1087 2262.0859 -4081.3711)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000039839908873100496810000013923238145640286655_);enable-background:new ;" points="
|
||||
420.4,701.5 573.4,958.9 184.3,836.5 201.4,713.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000015348167180777612620000010064817657128597650_" gradientUnits="userSpaceOnUse" x1="-9853.9199" y1="6157.9985" x2="-9566.71" y2="6157.9985" gradientTransform="matrix(0.3915 -0.9202 0.9202 0.3915 -1563.3262 -10847.0449)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000015348167180777612620000010064817657128597650_);enable-background:new ;" points="
|
||||
379,552.8 138.3,585.8 213.2,351.6 486,421.6 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000147203614316025113080000001649793632838859923_" cx="-238.56" cy="9050.043" r="181.94" gradientTransform="matrix(0.8642 0.5228 -0.5025 0.9115 5295.5864 -7820.9434)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000147203614316025113080000001649793632838859923_);enable-background:new ;" cx="551.9" cy="277.4" rx="181.9" ry="190.6"/>
|
||||
|
||||
<linearGradient id="SVGID_00000024711510340903871490000006089996394266171267_" gradientUnits="userSpaceOnUse" x1="3180.0928" y1="-5434.7988" x2="3474.4927" y2="-5434.7988" gradientTransform="matrix(-0.9257 0.3783 -0.3783 -0.9257 1362.1681 -5550.5625)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000024711510340903871490000006089996394266171267_);enable-background:new ;" points="
|
||||
181.4,610.1 446.2,614.6 397.1,908.1 308.2,804 212.1,820 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000105410690916468212710000018229497141468633255_" gradientUnits="userSpaceOnUse" x1="-2975.406" y1="8971.3203" x2="-2708.8462" y2="8971.3203" gradientTransform="matrix(0.9797 -0.2004 0.2004 0.9797 1334.2218 -9014.96)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000105410690916468212710000018229497141468633255_);enable-background:new ;" points="
|
||||
213.2,351.6 410.2,317.4 464.8,251.5 477.9,385.5 "/>
|
||||
</g>
|
||||
|
||||
<linearGradient id="SVGID_00000075128596990443817050000017969830986676745638_" gradientUnits="userSpaceOnUse" x1="-10166.4922" y1="6224.7261" x2="-9726.3428" y2="6224.7261" gradientTransform="matrix(0.4172 -0.9088 0.9088 0.4172 -18.9758 -10733.3369)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000075128596990443817050000017969830986676745638_);enable-background:new ;" points="
|
||||
1820.7,812.5 1664.5,1225.1 1187.2,853.3 1282,703.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000072961008146840791680000016807539049992243611_" gradientUnits="userSpaceOnUse" x1="-4277.1182" y1="-6122.2666" x2="-3725.3748" y2="-6122.2666" gradientTransform="matrix(-0.9511 -0.3089 0.3089 -0.9511 -528.0334 -6087.0166)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000072961008146840791680000016807539049992243611_);enable-background:new ;" points="
|
||||
1236,541.8 1463,963.1 1614.2,1163.5 1325,1228.7 1106.9,1262.3 1093.7,998.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000031890984905232638220000012924312695622134701_" gradientUnits="userSpaceOnUse" x1="-9057.7783" y1="5249.3452" x2="-8665.4756" y2="5249.3452" gradientTransform="matrix(0.2612 -0.9653 0.9653 0.2612 -1344.2992 -9006.2939)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000031890984905232638220000012924312695622134701_);enable-background:new ;" points="
|
||||
1301.5,748.5 1748.4,807.8 1607.9,1176.2 1143.9,749.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000065046384445344792090000003478596604638745251_" gradientUnits="userSpaceOnUse" x1="1391.6932" y1="8067.9814" x2="1813.9323" y2="8067.9814" gradientTransform="matrix(0.9919 -0.1269 0.1269 0.9919 -1184.3568 -6728.7344)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000065046384445344792090000003478596604638745251_);enable-background:new ;" points="
|
||||
1663.4,1236.7 1343.6,1189.3 1195.2,904.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000021115803912966498700000015007524738145874315_" gradientUnits="userSpaceOnUse" x1="12235.9023" y1="11466.2393" x2="12768.3418" y2="11466.2393" gradientTransform="matrix(0.3792 0.341 -0.9317 0.5609 5873.9985 -10646.7227)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000021115803912966498700000015007524738145874315_);enable-background:new ;" points="
|
||||
-43.3,-103.4 93.8,-79.6 5.9,169.4 -293.8,118.4 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000067237004585982578340000002242952609140013460_" gradientUnits="userSpaceOnUse" x1="9584.9111" y1="4308.0015" x2="10170.541" y2="4308.0015" gradientTransform="matrix(0.353 0.5695 -0.9064 0.3978 368.9956 -7384.6206)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000067237004585982578340000002242952609140013460_);enable-background:new ;" points="
|
||||
0.6,-59.9 218.6,42 -139.7,150.5 -322.7,-143.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000090293016052082708370000009028973685578167700_" gradientUnits="userSpaceOnUse" x1="-10828.29" y1="-864.1065" x2="-10509.252" y2="-864.1065" gradientTransform="matrix(-0.3976 -0.9175 0.9175 -0.3976 -3626.5217 -9952.3926)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000090293016052082708370000009028973685578167700_);enable-background:new ;" points="
|
||||
-357.5,136.3 34.7,-85.5 121.9,224.4 -483.5,228.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000048489712254272962520000016292241699845468555_" gradientUnits="userSpaceOnUse" x1="-4798.1938" y1="7385.0376" x2="-4363.2798" y2="7385.0376" gradientTransform="matrix(0.6964 -0.7176 0.7176 0.6964 -2081.5779 -8271.627)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000048489712254272962520000016292241699845468555_);enable-background:new ;" points="
|
||||
306.8,126.1 23.4,281.7 -251,190.8 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000151503564951820955730000012733629342681631675_" gradientUnits="userSpaceOnUse" x1="-9629.1396" y1="2663.3132" x2="-9194.2695" y2="2663.3132" gradientTransform="matrix(-9.480336e-02 -0.9955 0.9955 -9.480336e-02 -2834.0396 -8092.8613)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000151503564951820955730000012733629342681631675_);enable-background:new ;" points="
|
||||
865.8,790.7 800.5,1107.3 553.3,1257.3 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 23 KiB |
@@ -1,836 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 1280 800"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="1280x800.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
width="1280"
|
||||
height="800"
|
||||
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="defs1973" /><sodipodi:namedview
|
||||
id="namedview1971"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.61916667"
|
||||
inkscape:cx="304.44145"
|
||||
inkscape:cy="601.61507"
|
||||
inkscape:window-width="1560"
|
||||
inkscape:window-height="930"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1726">
|
||||
.st0{clip-path:url(#SVGID_00000000928596792312907720000015067976839969243561_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000056411074606979671790000012680755076389884083_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000023989492384892967260000009710341851984184492_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000161595034260526515850000010596232777479458947_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000076589682521798879920000011921484468618510504_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000022553105745205153220000002526306067487353472_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000023253950792642503570000010545805774672953244_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000170260504085748133930000012521765846385128116_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000082363585068762561560000013790172994988761013_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000098913682242597510470000011006784818807666326_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000115489987498632649720000011008985375483231643_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000047059192306680669690000007811741663679149985_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000101792577392231575320000016756205186510304687_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000123412959991921090160000015783343612426765460_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000134237491014946211050000010066306547626477466_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000034772572330934262940000010374810663227991682_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000021090192784433479690000012108295630625962133_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000085224912268995596740000001192375694511959694_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000036951329762708534880000016297398792263597696_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000049200990058816053730000014783409975399489939_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000111187147672048172680000009805526042319811762_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000002352292896172037110000000285475706208253351_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000031180986187426161680000014527347853894108845_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000083073393030777054170000008682096802884454789_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000054964391004092095810000003455071117432939653_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000090288739315912149810000014547160397308911281_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000001633458465395349520000002138339211221285271_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000078724928392494712130000004724194500713547951_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000044880333438437072450000007434997047063731332_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000045615725106276691630000009515850595024568499_);enable-background:new ;}
|
||||
</style>
|
||||
<g
|
||||
id="g1968"
|
||||
transform="scale(0.66666665)">
|
||||
<defs
|
||||
id="defs1729">
|
||||
<rect
|
||||
id="SVGID_1_"
|
||||
width="1920"
|
||||
height="1200"
|
||||
x="0"
|
||||
y="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000172401503128712534600000011968226326295796110_">
|
||||
<use
|
||||
xlink:href="#SVGID_1_"
|
||||
style="overflow:visible"
|
||||
id="use1731" />
|
||||
</clipPath>
|
||||
<g
|
||||
id="Calque_1-2"
|
||||
clip-path="url(#SVGID_00000172401503128712534600000011968226326295796110_)">
|
||||
<rect
|
||||
x="-17.5"
|
||||
y="-15.7"
|
||||
class="st1"
|
||||
width="1955"
|
||||
height="1231.4"
|
||||
id="rect1734" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000089532484294864443560000001156018140746127002_"
|
||||
cx="222.92"
|
||||
cy="-8061.8291"
|
||||
r="1365.4"
|
||||
gradientTransform="matrix(0.5,0,0,-0.5,-106.46,-3973.7146)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1736" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1738" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000089532484294864443560000001156018140746127002_);enable-background:new"
|
||||
cx="5"
|
||||
cy="57.200001"
|
||||
r="682.70001"
|
||||
id="circle1741" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000137818120280239734990000003026529580521251758_"
|
||||
cx="-2489.2502"
|
||||
cy="5715.2759"
|
||||
r="342.10001"
|
||||
gradientTransform="matrix(-2.8317,2.4125,0.8042,0.9439,-10798.391,854.2648)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1743" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1745" />
|
||||
</radialGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000137818120280239734990000003026529580521251758_);enable-background:new"
|
||||
points="1988.4,-108.2 313.1,1318.8 -301.3,597.5 1374,-829.6 "
|
||||
id="polygon1748" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000058583359066475248070000015883288929621046165_"
|
||||
cx="1076.72"
|
||||
cy="-8569.6289"
|
||||
r="459.39999"
|
||||
gradientTransform="matrix(0.5,0,0,-0.5,-106.46,-3973.7146)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DAC9BA"
|
||||
id="stop1750" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1752" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000058583359066475248070000015883288929621046165_);enable-background:new"
|
||||
cx="431.89999"
|
||||
cy="311.10001"
|
||||
r="229.7"
|
||||
id="circle1755" />
|
||||
<g
|
||||
class="st5"
|
||||
id="g1781">
|
||||
<path
|
||||
class="st6"
|
||||
d="m 966.2,602.3 c -1.3,0 0.2,0.7 2,0.9 0.5,-0.4 0.9,-0.7 1.3,-1.1 -1.1,0.2 -2.2,0.3 -3.3,0.2"
|
||||
id="path1757" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 973.3,600.5 c 0.8,-1.1 1.4,-2.3 1.6,-3.5 -0.2,0.9 -0.6,1.6 -1.1,2.4 -2.5,1.5 -0.2,-0.9 0,-1.9 -2.7,3.4 -0.4,2.1 -0.5,3"
|
||||
id="path1759" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 975.9,593.7 c 0.2,-2.4 -0.5,-1.6 -0.7,-0.7 0.3,0.1 0.5,1.7 0.7,0.7"
|
||||
id="path1761" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.2,561.3 c 0.7,0.1 1.5,0.2 1.4,0.4 0.8,-0.2 1,-0.3 -1.4,-0.4"
|
||||
id="path1763" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 962.6,561.7 -0.5,0.1 0.5,-0.1 v 0"
|
||||
id="path1765" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 984.5,594.6 c 0.1,2.1 -0.6,3.2 -1.3,5 l -1.1,0.6 c -0.9,1.8 0.1,1.1 -0.6,2.6 -1.5,1.3 -4.4,4 -5.4,4.3 -0.7,0 0.5,-0.8 0.6,-1.1 -1.9,1.3 -1.6,2 -4.5,2.8 l -0.1,-0.2 c -7.3,3.5 -17.5,-3.4 -17.4,-12.7 -0.1,0.6 -0.2,0.4 -0.4,0.7 -0.4,-4.8 2.2,-9.6 6.6,-11.6 4.3,-2.1 9.3,-1.3 12.4,1.6 -1.7,-2.2 -5,-4.5 -9,-4.3 -3.9,0.1 -7.5,2.5 -8.8,5.2 -2,1.3 -2.2,4.8 -3.1,5.5 -1.2,8.6 2.2,12.3 7.9,16.7 0.9,0.6 0.3,0.7 0.4,1.2 -1.9,-0.9 -3.6,-2.2 -5.1,-3.9 0.8,1.1 1.6,2.2 2.6,3 -1.8,-0.6 -4.2,-4.3 -4.9,-4.5 3.1,5.5 12.5,9.7 17.4,7.6 -2.3,0.1 -5.2,0 -7.7,-0.9 -1.1,-0.6 -2.5,-1.7 -2.3,-1.9 6.7,2.5 13.7,1.9 19.5,-2.8 1.5,-1.2 3.1,-3.1 3.6,-3.1 -0.7,1.1 0.1,0.5 -0.4,1.4 1.5,-2.4 -0.6,-1 1.5,-4.1 l 0.8,1.1 c -0.3,-2 2.5,-4.4 2.2,-7.5 0.6,-1 0.7,1 0,3.2 0.9,-2.4 0.2,-2.8 0.5,-4.8 0.3,0.7 0.6,1.4 0.8,2.1 -0.6,-2.4 0.6,-4 0.9,-5.3 -0.3,-0.1 -0.9,1 -1.1,-1.7 0,-1.2 0.3,-0.6 0.5,-0.9 -0.2,-0.1 -0.9,-1.1 -1.2,-2.8 0.3,-0.4 0.7,1.1 1.1,1.1 -0.2,-1.4 -0.7,-2.5 -0.7,-3.6 -1.1,-2.3 -0.4,0.3 -1.3,-1 -1.2,-3.6 1,-0.8 1.1,-2.5 1.8,2.5 2.8,6.5 3.2,8.1 -0.4,-2 -0.9,-3.9 -1.6,-5.8 0.5,0.2 -0.9,-4.1 0.7,-1.2 -1.7,-6.1 -7.1,-11.8 -12.1,-14.5 0.6,0.6 1.4,1.3 1.1,1.4 -2.5,-1.5 -2.1,-1.6 -2.4,-2.2 -2,-0.8 -2.2,0.1 -3.5,0 -3.8,-2 -4.6,-1.8 -8.1,-3.1 l 0.2,0.8 c -2.5,-0.8 -3,0.3 -5.7,0 -0.2,-0.1 0.9,-0.5 1.7,-0.6 -2.5,0.3 -2.3,-0.5 -4.7,0.1 0.6,-0.4 1.2,-0.7 1.8,-1 -2,0.1 -4.8,1.2 -3.9,0.2 -3.3,1.5 -9.1,3.5 -12.3,6.5 l -0.1,-0.7 c -1.5,1.8 -6.5,5.3 -6.9,7.7 l -0.4,0.1 c -0.8,1.3 -1.3,2.8 -1.9,4.2 -1,1.7 -1.5,0.7 -1.3,0.9 -2,4 -3,7.4 -3.8,10.2 0.6,0.9 0,5.5 0.2,9.1 -1,18.1 12.7,35.7 27.7,39.7 2.2,0.8 5.5,0.8 8.2,0.8 -3.3,-0.9 -3.7,-0.5 -6.9,-1.6 -2.3,-1.1 -2.8,-2.3 -4.4,-3.7 l 0.6,1.1 c -3.2,-1.1 -1.9,-1.4 -4.5,-2.2 l 0.7,-0.9 c -1,-0.1 -2.7,-1.7 -3.2,-2.7 h -1.1 c -1.4,-1.7 -2.1,-2.9 -2,-3.8 l -0.4,0.7 c -0.4,-0.7 -5,-6.3 -2.6,-5 -0.4,-0.4 -1,-0.7 -1.7,-1.8 l 0.5,-0.6 c -1.1,-1.5 -2.1,-3.4 -2,-4 0.6,0.8 1,1 1.5,1.1 -2.9,-7.2 -3.1,-0.4 -5.3,-7.3 h 0.5 c -0.4,-0.5 -0.6,-1.1 -0.9,-1.7 l 0.2,-2 c -2.1,-2.4 -0.6,-10.3 -0.3,-14.6 0.2,-1.7 1.7,-3.6 2.9,-6.5 l -0.7,-0.1 c 1.4,-2.4 7.8,-9.5 10.7,-9.1 1.4,-1.8 -0.3,0 -0.6,-0.5 3.2,-3.3 4.1,-2.3 6.3,-2.9 2.3,-1.4 -2,0.5 -0.9,-0.5 4,-1 2.8,-2.3 8,-2.8 0.5,0.3 -1.3,0.5 -1.7,0.9 3.3,-1.6 10.5,-1.2 15.1,0.9 5.4,2.5 11.4,10 11.7,17 l 0.3,0.1 c -0.1,2.8 0.4,6 -0.6,9 l 0.7,-1.7"
|
||||
id="path1767" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 951.9,604.1 -0.2,0.9 c 0.9,1.2 1.6,2.4 2.7,3.4 -0.9,-1.6 -1.4,-2.2 -2.5,-4.3"
|
||||
id="path1769" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 953.9,604 c -0.5,-0.5 -0.7,-1.1 -1,-1.7 0.3,1.1 0.9,2 1.4,2.9 l -0.4,-1.2"
|
||||
id="path1771" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 990.1,596.1 -0.2,0.5 c -0.4,2.5 -1.1,5 -2.3,7.3 1.3,-2.4 2.1,-5.1 2.5,-7.8"
|
||||
id="path1773" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.5,560.7 c 0.9,-0.3 2.2,-0.2 3.1,-0.4 -1.2,0.1 -2.5,0.2 -3.7,0.3 l 0.6,0.1"
|
||||
id="path1775" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 930.3,577.3 c 0.2,1.9 -1.4,2.6 0.4,1.4 0.9,-2.2 -0.4,-0.6 -0.4,-1.4"
|
||||
id="path1777" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 928.2,586.1 c 0.4,-1.3 0.5,-2 0.6,-2.8 -1.1,1.5 -0.5,1.8 -0.6,2.8"
|
||||
id="path1779" />
|
||||
</g>
|
||||
<g
|
||||
class="st7"
|
||||
id="g1888">
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000084523137185723558220000015279798023442974080_"
|
||||
cx="-892.98358"
|
||||
cy="-4458.9219"
|
||||
r="173.24001"
|
||||
gradientTransform="matrix(0.8642,0.5228,0.5025,-0.9115,3766.6392,-2864.1973)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1783" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1785" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000084523137185723558220000015279798023442974080_);enable-background:new"
|
||||
cx="766.20001"
|
||||
cy="705.90002"
|
||||
rx="173.2"
|
||||
ry="181.5"
|
||||
id="ellipse1788" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000134943907407943021780000012076970261184592781_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="1876.1453"
|
||||
y1="3075.6453"
|
||||
x2="2072.9485"
|
||||
y2="3075.6453"
|
||||
gradientTransform="matrix(-0.7151,0.699,0.5383,0.5506,585.8191,-2700.2151)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1790" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1792" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000134943907407943021780000012076970261184592781_);enable-background:new"
|
||||
points="949,435.1 885,475.5 700.3,381.9 810.7,213.3 "
|
||||
id="polygon1795" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000178894981057875746550000016000597904032110004_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="896.91992"
|
||||
y1="-1919.0027"
|
||||
x2="1168.0834"
|
||||
y2="-1919.0027"
|
||||
gradientTransform="matrix(0.7774,0.629,0.629,-0.7774,1270.2474,-1779.9875)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1797" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1799" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000178894981057875746550000016000597904032110004_);enable-background:new"
|
||||
points="1025.1,301.8 1001,409.2 871.9,554.7 784.8,339.5 810.7,213.3 905.6,261.5 "
|
||||
id="polygon1802" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000127727388437009210270000007011599435678376117_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6821.7275"
|
||||
y1="-1177.3477"
|
||||
x2="-6319.3618"
|
||||
y2="-1177.3477"
|
||||
gradientTransform="matrix(0.3915,-0.9202,-0.9202,-0.3915,2206.2451,-5996.0439)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1804" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1806" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000127727388437009210270000007011599435678376117_);enable-background:new"
|
||||
points="799.9,273.2 939.5,433.1 458.3,673.8 629.2,459.9 "
|
||||
id="polygon1809" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000101086087328235979620000009567443969736187033_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5893.3677"
|
||||
y1="1236.082"
|
||||
x2="6110.6479"
|
||||
y2="1236.082"
|
||||
gradientTransform="matrix(-0.3483,0.5724,0.7648,0.6285,2242.1489,-3826.8796)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1811" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1813" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000101086087328235979620000009567443969736187033_);enable-background:new"
|
||||
points="988.7,370.2 972.8,183.9 1211.9,451.7 1226.6,578.1 "
|
||||
id="polygon1816" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000089574557307665542530000009834880936151122096_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-3231.1003"
|
||||
y1="-1439.1991"
|
||||
x2="-2925.604"
|
||||
y2="-1439.1991"
|
||||
gradientTransform="matrix(0.7151,-0.699,-0.699,-0.7151,2225.2839,-2809.1555)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1818" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1820" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000089574557307665542530000009834880936151122096_);enable-background:new"
|
||||
points="988.7,370.2 784.8,339.5 889.2,272.3 1029.8,153.1 1208.9,469.2 "
|
||||
id="polygon1823" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000137814979148882877880000010328272323069511300_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3576.7354"
|
||||
y1="1465.4857"
|
||||
x2="3811.7944"
|
||||
y2="1465.4857"
|
||||
gradientTransform="matrix(-0.5898,0.8076,0.8076,0.5898,1937.7645,-3540.3677)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1825" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1827" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000137814979148882877880000010328272323069511300_);enable-background:new"
|
||||
points="972.8,183.9 1043.6,469.2 960,431.1 730.2,297.8 "
|
||||
id="polygon1830" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000145044256057076252910000000848199297658990999_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6686.6108"
|
||||
y1="4457.1631"
|
||||
x2="-6320.0996"
|
||||
y2="4457.1631"
|
||||
gradientTransform="matrix(-0.2682,-0.9634,-1.0501,0.2924,3548.3164,-6773.793)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1832" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1834" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000145044256057076252910000000848199297658990999_);enable-background:new"
|
||||
points="507.9,1013.1 521.4,801.6 657.1,591.1 756.4,716.4 "
|
||||
id="polygon1837" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000127734621094974517750000005240452990198260907_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4154.2529"
|
||||
y1="6158.4248"
|
||||
x2="4538.3779"
|
||||
y2="6158.4248"
|
||||
gradientTransform="matrix(-0.9257,0.3783,0.3783,0.9257,2277.6904,-6579.7749)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1839" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1841" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000127734621094974517750000005240452990198260907_);enable-background:new"
|
||||
points="516.1,955 427.7,889.7 397,679.9 699,640.8 766.2,702.6 628.2,892 "
|
||||
id="polygon1844" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000011728417832659381670000003564161052773509289_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-11701.892"
|
||||
y1="6459.522"
|
||||
x2="-11252.192"
|
||||
y2="6459.522"
|
||||
gradientTransform="matrix(-0.2347,-0.2596,-0.879,0.2953,3610.8835,-4228.9741)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1846" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1848" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000011728417832659381670000003564161052773509289_);enable-background:new"
|
||||
points="806,509.6 700.3,644.1 431.9,787.7 458.3,673.8 "
|
||||
id="polygon1851" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000013888782862855192130000004048158289608727716_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="7435.6807"
|
||||
y1="-916.03363"
|
||||
x2="8343.6211"
|
||||
y2="-916.03363"
|
||||
gradientTransform="matrix(0.1765,0.3022,0.9209,-0.1087,112.9515,-1561.0907)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1853" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1855" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000013888782862855192130000004048158289608727716_);enable-background:new"
|
||||
points="504.3,924.5 521.4,801.6 740.4,789.5 893.4,1046.9 "
|
||||
id="polygon1858" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000032636350723051708950000003397749158443223972_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6821.7275"
|
||||
y1="-1119.5144"
|
||||
x2="-6534.5"
|
||||
y2="-1119.5144"
|
||||
gradientTransform="matrix(0.3915,-0.9202,-0.9202,-0.3915,2206.2451,-5996.0439)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1860" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1862" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000032636350723051708950000003397749158443223972_);enable-background:new"
|
||||
points="533.2,439.6 806,509.6 699,640.8 458.3,673.8 "
|
||||
id="polygon1865" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000032630432101678314960000008468116941741282944_"
|
||||
cx="-963.93372"
|
||||
cy="-4124.6318"
|
||||
r="181.94"
|
||||
gradientTransform="matrix(0.8642,0.5228,0.5025,-0.9115,3766.6392,-2864.1973)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1867" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1869" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000032630432101678314960000008468116941741282944_);enable-background:new"
|
||||
cx="871.90002"
|
||||
cy="365.39999"
|
||||
rx="181.89999"
|
||||
ry="190.60001"
|
||||
id="ellipse1872" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000019670513155277172690000010650740053110845579_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4154.2529"
|
||||
y1="6243.6416"
|
||||
x2="4448.6611"
|
||||
y2="6243.6416"
|
||||
gradientTransform="matrix(-0.9257,0.3783,0.3783,0.9257,2277.6904,-6579.7749)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1874" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1876" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000019670513155277172690000010650740053110845579_);enable-background:new"
|
||||
points="501.4,698.1 766.2,702.6 717.1,996.1 628.2,892 532.1,908 "
|
||||
id="polygon1879" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000075149650005683383290000017910244360390472588_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2155.8843"
|
||||
y1="-3099.9363"
|
||||
x2="-1889.3284"
|
||||
y2="-3099.9363"
|
||||
gradientTransform="matrix(0.9797,-0.2004,-0.2004,-0.9797,2028.0126,-3010.5703)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1881" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1883" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000075149650005683383290000017910244360390472588_);enable-background:new"
|
||||
points="784.8,339.5 797.9,473.5 533.2,439.6 730.2,405.4 "
|
||||
id="polygon1886" />
|
||||
</g>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000106830734271642211480000010917764946327503256_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7182.4272"
|
||||
y1="-1133.2759"
|
||||
x2="-6742.2847"
|
||||
y2="-1133.2759"
|
||||
gradientTransform="matrix(0.4172,-0.9088,-0.9088,-0.4172,3683.3728,-5809.2061)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1890" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1892" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000106830734271642211480000010917764946327503256_);enable-background:new"
|
||||
points="1507.2,941.3 1602,791.1 2140.7,900.5 1984.5,1313.1 "
|
||||
id="polygon1895" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000008838014493502950990000002106571545151364536_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-1626.0773"
|
||||
y1="7428.6694"
|
||||
x2="-1074.3547"
|
||||
y2="7428.6694"
|
||||
gradientTransform="matrix(-0.9511,-0.3089,-0.3089,0.9511,2716.5413,-6422.6528)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1897" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1899" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000008838014493502950990000002106571545151364536_);enable-background:new"
|
||||
points="1426.9,1350.3 1413.7,1086.6 1556,629.8 1783,1051.1 1934.2,1251.5 1645,1316.7 "
|
||||
id="polygon1902" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000170269309057204161380000001402138955680408972_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2743.3877"
|
||||
y1="-1449.7526"
|
||||
x2="3411.6838"
|
||||
y2="-1449.7526"
|
||||
gradientTransform="matrix(-0.03594599,0.9994,0.9994,0.03594599,3353.26,-2151.4868)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1904" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1906" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000170269309057204161380000001402138955680408972_);enable-background:new"
|
||||
points="1737.9,1204.3 1601.6,727.3 1933.3,542.6 1995.2,761.9 "
|
||||
id="polygon1909" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000044170033691582868540000003890608974300690825_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4772.7378"
|
||||
y1="4349.7412"
|
||||
x2="5490.6982"
|
||||
y2="4349.7412"
|
||||
gradientTransform="matrix(-0.07909842,0.6653,0.9567,0.2541,-1800.8073,-3613.0259)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1911" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1913" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000044170033691582868540000003890608974300690825_);enable-background:new"
|
||||
points="1757.4,1039.3 1814,618.8 2004.8,930.8 2102.8,1186.5 "
|
||||
id="polygon1916" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000115476630761162719110000008737009919211368841_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-5810.9302"
|
||||
y1="-487.71649"
|
||||
x2="-5418.6216"
|
||||
y2="-487.71649"
|
||||
gradientTransform="matrix(0.2612,-0.9653,-0.9653,-0.2612,2723.9082,-4540.3013)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1918" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1920" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000115476630761162719110000008737009919211368841_);enable-background:new"
|
||||
points="1927.9,1264.2 1463.9,837.9 1621.5,836.5 2068.4,895.8 "
|
||||
id="polygon1923" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000137827576320685657670000017367018758092256190_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2024.0944"
|
||||
y1="-2226.9001"
|
||||
x2="2446.3311"
|
||||
y2="-2226.9001"
|
||||
gradientTransform="matrix(0.9919,-0.1269,-0.1269,-0.9919,-750.4193,-766.7698)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1925" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1927" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000137827576320685657670000017367018758092256190_);enable-background:new"
|
||||
points="1663.6,1277.3 1515.2,992.3 1983.4,1324.7 "
|
||||
id="polygon1930" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000062875286114471441420000010794719189137940105_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="8275.8008"
|
||||
y1="-6919.5112"
|
||||
x2="8808.2402"
|
||||
y2="-6919.5112"
|
||||
gradientTransform="matrix(0.3792,0.341,0.9317,-0.5609,3459.2957,-6657.502)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1932" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1934" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000062875286114471441420000010794719189137940105_);enable-background:new"
|
||||
points="325.9,257.4 26.2,206.4 276.7,-15.4 413.8,8.4 "
|
||||
id="polygon1937" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000087375575459333385210000002238624078503487908_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6898.5732"
|
||||
y1="-370.24261"
|
||||
x2="7484.2031"
|
||||
y2="-370.24261"
|
||||
gradientTransform="matrix(0.353,0.5695,0.9064,-0.3978,-1931.4192,-4199.8999)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1939" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1941" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000087375575459333385210000002238624078503487908_);enable-background:new"
|
||||
points="180.3,238.5 -2.7,-55.1 320.6,28.1 538.6,130 "
|
||||
id="polygon1944" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000183223659939389319390000000216397749450872199_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7160.5947"
|
||||
y1="3998.96"
|
||||
x2="-6841.5742"
|
||||
y2="3998.96"
|
||||
gradientTransform="matrix(-0.3976,-0.9175,-0.9175,0.3976,1028.1501,-7745.7251)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1946" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1948" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000183223659939389319390000000216397749450872199_);enable-background:new"
|
||||
points="441.9,312.4 -163.5,316.3 -37.5,224.3 354.7,2.5 "
|
||||
id="polygon1951" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000134940890851672155010000009345720776688027561_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2501.7507"
|
||||
y1="-1775.7073"
|
||||
x2="-2066.8596"
|
||||
y2="-1775.7073"
|
||||
gradientTransform="matrix(0.6964,-0.7176,-0.7176,-0.6964,664.4031,-2629.4871)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1953" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1955" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000134940890851672155010000009345720776688027561_);enable-background:new"
|
||||
points="343.4,369.7 69,278.8 626.8,214.1 "
|
||||
id="polygon1958" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000137118113169258829820000003332003489976044437_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6019.9688"
|
||||
y1="1264.8243"
|
||||
x2="-5585.0967"
|
||||
y2="1264.8243"
|
||||
gradientTransform="matrix(-0.09480336,-0.9955,-0.9955,0.09480336,1738.578,-4784.3081)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1960" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1962" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000137118113169258829820000003332003489976044437_);enable-background:new"
|
||||
points="1120.5,1195.3 873.3,1345.3 1185.8,878.7 "
|
||||
id="polygon1965" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 28 KiB |
@@ -1,314 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1600 1200" style="enable-background:new 0 0 1600 1200;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_00000106105274269674063580000009523659345629188530_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000170245914378855907240000006663129976375096731_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000004513604458021762430000007452897707453760396_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000171688036334894269480000007187409259671521976_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000053523616010938090170000008817124395874123949_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000031912780455084498350000010971145438913558207_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000142879901015065510450000001948915071270798477_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000047045657520674435980000011566691528345248170_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000114769142627355989100000001344809451027658396_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000003082752144355280190000006454849834511441322_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000149350268632342744810000014033417358799962540_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000047750719429398160140000007289559640810661509_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000050650920421617613750000013341522969933247125_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000114069295474052170390000001529938144678442659_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000107584708128961387770000003910949862988196745_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000150079620391728962260000013654547052819129497_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000139276371049907908580000015364409739502525108_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000005239764958735230280000010055642909112256665_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000005239734624626869720000002143256757061642935_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000183247613769753978580000001736081606018225070_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000115510760379892147420000015242947102829978787_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000000192941503717615580000005504219849433415345_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000176753568871137939540000008488301462577362613_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000075149797528071056640000017500968804858058646_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000053545356182634901910000000237226044269935544_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000011727950505466257090000008553516115876560014_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000092439713174067163180000006789748805695213698_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000097463561541497504200000008304576834374816907_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000021088263489290657320000015171567613723941517_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000075158362403534833650000010661385307678119840_);enable-background:new ;}
|
||||
</style>
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" width="1597.4" height="1200"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_00000151523264483617019700000016970251560975676564_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="Calque_1-2" style="clip-path:url(#SVGID_00000151523264483617019700000016970251560975676564_);">
|
||||
<rect x="-177.5" y="-15.7" class="st1" width="1955" height="1231.4"/>
|
||||
|
||||
<radialGradient id="SVGID_00000013913664472703570600000013386784475908494751_" cx="222.92" cy="-8061.8291" r="1365.4" gradientTransform="matrix(0.5 0 0 -0.5 -266.46 -3973.7146)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000013913664472703570600000013386784475908494751_);enable-background:new ;" cx="-155" cy="57.2" r="682.7"/>
|
||||
|
||||
<radialGradient id="SVGID_00000000180221243415266400000003105685336591358598_" cx="-2841.99" cy="5798.2109" r="342.5164" gradientTransform="matrix(-2.8317 2.4125 0.8042 0.9439 -12024.4268 1626.1228)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000000180221243415266400000003105685336591358598_);enable-background:new ;" points="
|
||||
-461.3,597.5 1214,-829.6 1828.4,-108.2 153.1,1318.8 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000144304509998365299200000012240405757187872420_" cx="1076.72" cy="-8569.6289" r="459.4" gradientTransform="matrix(0.5 0 0 -0.5 -266.46 -3973.7146)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#DAC9BA"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000144304509998365299200000012240405757187872420_);enable-background:new ;" cx="271.9" cy="311.1" r="229.7"/>
|
||||
<g class="st5">
|
||||
<path class="st6" d="M806.2,602.3c-1.3,0,0.2,0.7,2,0.9c0.5-0.4,0.9-0.7,1.3-1.1C808.4,602.3,807.3,602.4,806.2,602.3"/>
|
||||
<path class="st6" d="M813.3,600.5c0.8-1.1,1.4-2.3,1.6-3.5c-0.2,0.9-0.6,1.6-1.1,2.4c-2.5,1.5-0.2-0.9,0-1.9
|
||||
C811.1,600.9,813.4,599.6,813.3,600.5"/>
|
||||
<path class="st6" d="M815.9,593.7c0.2-2.4-0.5-1.6-0.7-0.7C815.5,593.1,815.7,594.7,815.9,593.7"/>
|
||||
<path class="st6" d="M801.2,561.3c0.7,0.1,1.5,0.2,1.4,0.4C803.4,561.5,803.6,561.4,801.2,561.3"/>
|
||||
<path class="st6" d="M802.6,561.7l-0.5,0.1L802.6,561.7L802.6,561.7"/>
|
||||
<path class="st6" d="M824.5,594.6c0.1,2.1-0.6,3.2-1.3,5l-1.1,0.6c-0.9,1.8,0.1,1.1-0.6,2.6c-1.5,1.3-4.4,4-5.4,4.3
|
||||
c-0.7,0,0.5-0.8,0.6-1.1c-1.9,1.3-1.6,2-4.5,2.8l-0.1-0.2c-7.3,3.5-17.5-3.4-17.4-12.7c-0.1,0.6-0.2,0.4-0.4,0.7
|
||||
c-0.4-4.8,2.2-9.6,6.6-11.6c4.3-2.1,9.3-1.3,12.4,1.6c-1.7-2.2-5-4.5-9-4.3c-3.9,0.1-7.5,2.5-8.8,5.2c-2,1.3-2.2,4.8-3.1,5.5
|
||||
c-1.2,8.6,2.2,12.3,7.9,16.7c0.9,0.6,0.3,0.7,0.4,1.2c-1.9-0.9-3.6-2.2-5.1-3.9c0.8,1.1,1.6,2.2,2.6,3c-1.8-0.6-4.2-4.3-4.9-4.5
|
||||
c3.1,5.5,12.5,9.7,17.4,7.6c-2.3,0.1-5.2,0-7.7-0.9c-1.1-0.6-2.5-1.7-2.3-1.9c6.7,2.5,13.7,1.9,19.5-2.8c1.5-1.2,3.1-3.1,3.6-3.1
|
||||
c-0.7,1.1,0.1,0.5-0.4,1.4c1.5-2.4-0.6-1,1.5-4.1l0.8,1.1c-0.3-2,2.5-4.4,2.2-7.5c0.6-1,0.7,1,0,3.2c0.9-2.4,0.2-2.8,0.5-4.8
|
||||
c0.3,0.7,0.6,1.4,0.8,2.1c-0.6-2.4,0.6-4,0.9-5.3c-0.3-0.1-0.9,1-1.1-1.7c0-1.2,0.3-0.6,0.5-0.9c-0.2-0.1-0.9-1.1-1.2-2.8
|
||||
c0.3-0.4,0.7,1.1,1.1,1.1c-0.2-1.4-0.7-2.5-0.7-3.6c-1.1-2.3-0.4,0.3-1.3-1c-1.2-3.6,1-0.8,1.1-2.5c1.8,2.5,2.8,6.5,3.2,8.1
|
||||
c-0.4-2-0.9-3.9-1.6-5.8c0.5,0.2-0.9-4.1,0.7-1.2c-1.7-6.1-7.1-11.8-12.1-14.5c0.6,0.6,1.4,1.3,1.1,1.4c-2.5-1.5-2.1-1.6-2.4-2.2
|
||||
c-2-0.8-2.2,0.1-3.5,0c-3.8-2-4.6-1.8-8.1-3.1l0.2,0.8c-2.5-0.8-3,0.3-5.7,0c-0.2-0.1,0.9-0.5,1.7-0.6c-2.5,0.3-2.3-0.5-4.7,0.1
|
||||
c0.6-0.4,1.2-0.7,1.8-1c-2,0.1-4.8,1.2-3.9,0.2c-3.3,1.5-9.1,3.5-12.3,6.5l-0.1-0.7c-1.5,1.8-6.5,5.3-6.9,7.7l-0.4,0.1
|
||||
c-0.8,1.3-1.3,2.8-1.9,4.2c-1,1.7-1.5,0.7-1.3,0.9c-2,4-3,7.4-3.8,10.2c0.6,0.9,0,5.5,0.2,9.1c-1,18.1,12.7,35.7,27.7,39.7
|
||||
c2.2,0.8,5.5,0.8,8.2,0.8c-3.3-0.9-3.7-0.5-6.9-1.6c-2.3-1.1-2.8-2.3-4.4-3.7l0.6,1.1c-3.2-1.1-1.9-1.4-4.5-2.2l0.7-0.9
|
||||
c-1-0.1-2.7-1.7-3.2-2.7h-1.1c-1.4-1.7-2.1-2.9-2-3.8l-0.4,0.7c-0.4-0.7-5-6.3-2.6-5c-0.4-0.4-1-0.7-1.7-1.8l0.5-0.6
|
||||
c-1.1-1.5-2.1-3.4-2-4c0.6,0.8,1,1,1.5,1.1c-2.9-7.2-3.1-0.4-5.3-7.3h0.5c-0.4-0.5-0.6-1.1-0.9-1.7l0.2-2
|
||||
c-2.1-2.4-0.6-10.3-0.3-14.6c0.2-1.7,1.7-3.6,2.9-6.5l-0.7-0.1c1.4-2.4,7.8-9.5,10.7-9.1c1.4-1.8-0.3,0-0.6-0.5
|
||||
c3.2-3.3,4.1-2.3,6.3-2.9c2.3-1.4-2,0.5-0.9-0.5c4-1,2.8-2.3,8-2.8c0.5,0.3-1.3,0.5-1.7,0.9c3.3-1.6,10.5-1.2,15.1,0.9
|
||||
c5.4,2.5,11.4,10,11.7,17l0.3,0.1c-0.1,2.8,0.4,6-0.6,9L824.5,594.6"/>
|
||||
<path class="st6" d="M791.9,604.1l-0.2,0.9c0.9,1.2,1.6,2.4,2.7,3.4C793.5,606.8,793,606.2,791.9,604.1"/>
|
||||
<path class="st6" d="M793.9,604c-0.5-0.5-0.7-1.1-1-1.7c0.3,1.1,0.9,2,1.4,2.9L793.9,604"/>
|
||||
<path class="st6" d="M830.1,596.1l-0.2,0.5c-0.4,2.5-1.1,5-2.3,7.3C828.9,601.5,829.7,598.8,830.1,596.1"/>
|
||||
<path class="st6" d="M801.5,560.7c0.9-0.3,2.2-0.2,3.1-0.4c-1.2,0.1-2.5,0.2-3.7,0.3L801.5,560.7"/>
|
||||
<path class="st6" d="M770.3,577.3c0.2,1.9-1.4,2.6,0.4,1.4C771.6,576.5,770.3,578.1,770.3,577.3"/>
|
||||
<path class="st6" d="M768.2,586.1c0.4-1.3,0.5-2,0.6-2.8C767.7,584.8,768.3,585.1,768.2,586.1"/>
|
||||
</g>
|
||||
<g class="st7">
|
||||
|
||||
<radialGradient id="SVGID_00000013913831395283590830000017171431281320226453_" cx="-1074.142" cy="-4379.2944" r="173.24" gradientTransform="matrix(0.8642 0.5228 0.5025 -0.9115 3723.47 -2696.7268)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000013913831395283590830000017171431281320226453_);enable-background:new ;" cx="606.2" cy="705.9" rx="173.2" ry="181.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000016757625687871299210000000663005565084661179_" gradientUnits="userSpaceOnUse" x1="1441.7321" y1="3220.9036" x2="1638.5353" y2="3220.9036" gradientTransform="matrix(-0.7151 0.699 0.5383 0.5506 37.0057 -2476.5388)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000016757625687871299210000000663005565084661179_);enable-background:new ;" points="
|
||||
540.3,381.9 650.7,213.3 789,435.1 725,475.5 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000141419051851485649290000014202881174379998653_" gradientUnits="userSpaceOnUse" x1="701.2985" y1="-1818.34" x2="972.4619" y2="-1818.34" gradientTransform="matrix(0.7774 0.629 0.629 -0.7774 1198.9961 -1578.6796)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000141419051851485649290000014202881174379998653_);enable-background:new ;" points="
|
||||
711.9,554.7 624.8,339.5 650.7,213.3 745.6,261.5 865.1,301.8 841,409.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000159468151549901045030000016265434119005331372_" gradientUnits="userSpaceOnUse" x1="-7079.0728" y1="-1324.5541" x2="-6576.707" y2="-1324.5541" gradientTransform="matrix(0.3915 -0.9202 -0.9202 -0.3915 2011.5507 -6290.4805)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000159468151549901045030000016265434119005331372_);enable-background:new ;" points="
|
||||
298.3,673.8 469.2,459.9 639.9,273.2 779.5,433.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000145059421297967248170000014384766201770248332_" gradientUnits="userSpaceOnUse" x1="5420.2217" y1="1375.5551" x2="5637.5015" y2="1375.5551" gradientTransform="matrix(-0.3483 0.5724 0.7648 0.6285 1810.8645 -3643.9912)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000145059421297967248170000014384766201770248332_);enable-background:new ;" points="
|
||||
1051.9,451.7 1066.6,578.1 828.7,370.2 812.8,183.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000090278088036941638450000002942974614176976045_" gradientUnits="userSpaceOnUse" x1="-3436.6875" y1="-1551.0363" x2="-3131.1912" y2="-1551.0363" gradientTransform="matrix(0.7151 -0.699 -0.699 -0.7151 2134.1172 -3032.842)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000090278088036941638450000002942974614176976045_);enable-background:new ;" points="
|
||||
828.7,370.2 624.8,339.5 729.2,272.3 869.8,153.1 1048.9,469.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000080892613888008992790000016461613178208385976_" gradientUnits="userSpaceOnUse" x1="3162.3687" y1="1594.6924" x2="3397.4277" y2="1594.6924" gradientTransform="matrix(-0.5898 0.8076 0.8076 0.5898 1429.043 -3281.9351)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000080892613888008992790000016461613178208385976_);enable-background:new ;" points="
|
||||
800,431.1 570.2,297.8 812.8,183.9 883.6,469.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000046324250424567110660000014582053879914427535_" gradientUnits="userSpaceOnUse" x1="-7049.5308" y1="4315.7559" x2="-6683.0195" y2="4315.7559" gradientTransform="matrix(-0.2682 -0.9634 -1.0501 0.2924 3142.4868 -7082.0391)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000046324250424567110660000014582053879914427535_);enable-background:new ;" points="
|
||||
497.1,591.1 596.4,716.4 347.9,1013.1 361.4,801.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000183965605382871648310000005146757491786628481_" gradientUnits="userSpaceOnUse" x1="3686.144" y1="6218.96" x2="4070.2688" y2="6218.96" gradientTransform="matrix(-0.9257 0.3783 0.3783 0.9257 1661.4727 -6458.7129)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000183965605382871648310000005146757491786628481_);enable-background:new ;" points="
|
||||
237,679.9 539,640.8 606.2,702.6 468.2,892 356.1,955 267.7,889.7 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000126287214467223407380000018442532403353107853_" gradientUnits="userSpaceOnUse" x1="-12180.6904" y1="6319.9043" x2="-11730.9902" y2="6319.9043" gradientTransform="matrix(-0.2347 -0.2596 -0.879 0.2953 3216.1853 -4311.5918)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000126287214467223407380000018442532403353107853_);enable-background:new ;" points="
|
||||
271.9,787.7 298.3,673.8 646,509.6 540.3,644.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000092434622609870584580000015771562850698247341_" gradientUnits="userSpaceOnUse" x1="7174.1333" y1="-753.4886" x2="8082.0732" y2="-753.4886" gradientTransform="matrix(0.1765 0.3022 0.9209 -0.1087 -150.8835 -1464.9257)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000092434622609870584580000015771562850698247341_);enable-background:new ;" points="
|
||||
580.4,789.5 733.4,1046.9 344.3,924.5 361.4,801.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000114778775053653972550000009135322538274050960_" gradientUnits="userSpaceOnUse" x1="-7079.0728" y1="-1266.7208" x2="-6791.8452" y2="-1266.7208" gradientTransform="matrix(0.3915 -0.9202 -0.9202 -0.3915 2011.5507 -6290.4805)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000114778775053653972550000009135322538274050960_);enable-background:new ;" points="
|
||||
539,640.8 298.3,673.8 373.2,439.6 646,509.6 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000049216681311965854990000017057847893677932175_" cx="-1145.0919" cy="-4045.0044" r="181.94" gradientTransform="matrix(0.8642 0.5228 0.5025 -0.9115 3723.47 -2696.7268)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000049216681311965854990000017057847893677932175_);enable-background:new ;" cx="711.9" cy="365.4" rx="181.9" ry="190.6"/>
|
||||
|
||||
<linearGradient id="SVGID_00000127013930711936918260000013353321162258440101_" gradientUnits="userSpaceOnUse" x1="3686.144" y1="6304.1763" x2="3980.552" y2="6304.1763" gradientTransform="matrix(-0.9257 0.3783 0.3783 0.9257 1661.4727 -6458.7129)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000127013930711936918260000013353321162258440101_);enable-background:new ;" points="
|
||||
341.4,698.1 606.2,702.6 557.1,996.1 468.2,892 372.1,908 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000182493224191030293990000009706929417807069357_" gradientUnits="userSpaceOnUse" x1="-2319.1248" y1="-3131.9973" x2="-2052.5688" y2="-3131.9973" gradientTransform="matrix(0.9797 -0.2004 -0.2004 -0.9797 2021.517 -3074.6934)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000182493224191030293990000009706929417807069357_);enable-background:new ;" points="
|
||||
373.2,439.6 570.2,405.4 624.8,339.5 637.9,473.5 "/>
|
||||
</g>
|
||||
|
||||
<linearGradient id="SVGID_00000183248901838759850030000010730084549108284855_" gradientUnits="userSpaceOnUse" x1="-7435.6699" y1="-1278.692" x2="-6995.5273" y2="-1278.692" gradientTransform="matrix(0.4172 -0.9088 -0.9088 -0.4172 3496.8701 -6100.0044)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000183248901838759850030000010730084549108284855_);enable-background:new ;" points="
|
||||
1980.7,900.5 1824.5,1313.1 1347.2,941.3 1442,791.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000153667618792955216780000013984264767207893378_" gradientUnits="userSpaceOnUse" x1="-2098.2615" y1="7379.2656" x2="-1546.5388" y2="7379.2656" gradientTransform="matrix(-0.9511 -0.3089 -0.3089 0.9511 2092.1838 -6521.499)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000153667618792955216780000013984264767207893378_);enable-background:new ;" points="
|
||||
1396,629.8 1623,1051.1 1774.2,1251.5 1485,1316.7 1266.9,1350.3 1253.7,1086.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000042006890027362888440000011232065904538766724_" gradientUnits="userSpaceOnUse" x1="2417.6333" y1="-1289.8677" x2="3085.9294" y2="-1289.8677" gradientTransform="matrix(-3.594599e-02 0.9994 0.9994 3.594599e-02 3021.7688 -1831.6903)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000042006890027362888440000011232065904538766724_);enable-background:new ;" points="
|
||||
1773.3,542.6 1835.2,761.9 1577.9,1204.3 1441.6,727.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000018219148969602926420000012886853674685274246_" gradientUnits="userSpaceOnUse" x1="4390.8232" y1="4511.877" x2="5108.7837" y2="4511.877" gradientTransform="matrix(-7.909842e-02 0.6653 0.9567 0.2541 -2146.093 -3400.4456)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000018219148969602926420000012886853674685274246_);enable-background:new ;" points="
|
||||
1844.8,930.8 1942.8,1186.5 1597.4,1039.3 1654,618.8 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000078743672173845861460000014748067680279658631_" gradientUnits="userSpaceOnUse" x1="-6089.145" y1="-642.1625" x2="-5696.8369" y2="-642.1625" gradientTransform="matrix(0.2612 -0.9653 -0.9653 -0.2612 2487.4868 -4849.1978)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000078743672173845861460000014748067680279658631_);enable-background:new ;" points="
|
||||
1461.5,836.5 1908.4,895.8 1767.9,1264.2 1303.9,837.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000062903286143819934300000018245086875755751568_" gradientUnits="userSpaceOnUse" x1="1862.7966" y1="-2247.2097" x2="2285.0334" y2="-2247.2097" gradientTransform="matrix(0.9919 -0.1269 -0.1269 -0.9919 -753.0025 -807.3826)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000062903286143819934300000018245086875755751568_);enable-background:new ;" points="
|
||||
1823.4,1324.7 1503.6,1277.3 1355.2,992.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000111193782397428466260000017253603548981151369_" gradientUnits="userSpaceOnUse" x1="8124.9888" y1="-6816.6499" x2="8657.4287" y2="-6816.6499" gradientTransform="matrix(0.3792 0.341 0.9317 -0.5609 3260.4241 -6548.5933)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000111193782397428466260000017253603548981151369_);enable-background:new ;" points="
|
||||
116.7,-15.4 253.8,8.4 165.9,257.4 -133.8,206.4 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000089550725961761092450000018235931107057483905_" gradientUnits="userSpaceOnUse" x1="6675.5132" y1="-231.4717" x2="7261.1431" y2="-231.4717" gradientTransform="matrix(0.353 0.5695 0.9064 -0.3978 -2138.6355 -4017.9316)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000089550725961761092450000018235931107057483905_);enable-background:new ;" points="
|
||||
160.6,28.1 378.6,130 20.3,238.5 -162.7,-55.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000179632464517028002160000001846151713651707528_" gradientUnits="userSpaceOnUse" x1="-7544.2124" y1="3852.1409" x2="-7225.1914" y2="3852.1409" gradientTransform="matrix(-0.3976 -0.9175 -0.9175 0.3976 580.8995 -8039.3325)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000179632464517028002160000001846151713651707528_);enable-background:new ;" points="
|
||||
-197.5,224.3 194.7,2.5 281.9,312.4 -323.5,316.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000007420290583287315410000016970499701824524977_" gradientUnits="userSpaceOnUse" x1="-2710.3257" y1="-1890.5394" x2="-2275.4346" y2="-1890.5394" gradientTransform="matrix(0.6964 -0.7176 -0.7176 -0.6964 567.2493 -2859.1394)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000007420290583287315410000016970499701824524977_);enable-background:new ;" points="
|
||||
466.8,214.1 183.4,369.7 -91,278.8 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000113328752918226374580000000021578562155114375_" gradientUnits="userSpaceOnUse" x1="-6355.1372" y1="1105.5535" x2="-5920.2651" y2="1105.5535" gradientTransform="matrix(-9.480336e-02 -0.9955 -0.9955 9.480336e-02 1388.2494 -5102.8677)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000113328752918226374580000000021578562155114375_);enable-background:new ;" points="
|
||||
1025.8,878.7 960.5,1195.3 713.3,1345.3 "/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 24 KiB |
@@ -1,319 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_00000093167105208028638090000008063807857182655396_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000012445251672029399260000003270595326732136081_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000127010423592997111840000013957416611417821059_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000101814971404403400460000010609185819928108449_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000107557325802917530330000017592151723363848840_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000032650273911267859500000015024660283904495788_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000057851989095838282160000014663790337944238500_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000178165242061037739810000007582236097397314448_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000064329767591241199690000000234602624410839680_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000014609603927260903510000009061463274724089486_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000050627399097891942390000014523148072975367070_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000109731321347584724990000010142768297725207449_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000000926441590728654410000012560741159445150083_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000137832232493639134090000003781239364591219342_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000150812387129626622020000009167110439853258936_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000179608784322168811290000010365701417373876369_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000120531069539707179100000007006360167335202962_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000181089157459068778460000011901104969134050459_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000062164313994880221460000014631417913117263241_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000000902067244530690860000014386718989792038839_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000089550684643991047870000016914371577980347776_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000084507925595054884490000005003863653038598286_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000047780407226302564420000009742350089197221517_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000066480680368962549320000006921805612706891392_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000122678307387241734090000002868210978020395689_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000150100474908702981900000008908414767416909709_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000072960791515750302390000015282140940621514149_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000114770971300144002370000016800559959910618791_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000036952937828426554700000000522215132809990844_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000090974002902719031840000015158340248134540673_);enable-background:new ;}
|
||||
</style>
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="-0.3" y="0.1" width="1920" height="1080"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_00000085218408489160111120000007828018339010817721_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#SVGID_00000085218408489160111120000007828018339010817721_);">
|
||||
<g>
|
||||
<g id="Calque_1-2">
|
||||
<rect x="-17.3" y="-74.9" class="st1" width="1955" height="1231"/>
|
||||
|
||||
<radialGradient id="SVGID_00000018216064389455096890000017941378598996776607_" cx="-680.7551" cy="15329.9863" r="1365.4034" gradientTransform="matrix(0.5 0 0 0.5 345.3775 -7667.793)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000018216064389455096890000017941378598996776607_);enable-background:new ;" cx="5" cy="-2.8" r="682.7"/>
|
||||
|
||||
<radialGradient id="SVGID_00000000933302580452020710000013162680496496488371_" cx="-1132.3893" cy="-1996.8872" r="342.0998" gradientTransform="matrix(-2.8317 2.4125 -0.8042 -0.9439 -3965.7385 1030.7192)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000000933302580452020710000013162680496496488371_);enable-background:new ;" points="
|
||||
-301.3,537.5 1374,-889.6 1988.4,-168.2 313.1,1258.8 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000080193032524742796840000011048436269149918087_" cx="173.0449" cy="15837.7891" r="459.4011" gradientTransform="matrix(0.5 0 0 0.5 345.3775 -7667.793)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#DAC9BA"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000080193032524742796840000011048436269149918087_);enable-background:new ;" cx="431.9" cy="251.1" r="229.7"/>
|
||||
<g class="st5">
|
||||
<path class="st6" d="M966.2,542.3c-1.3,0,0.2,0.7,2,0.9c0.5-0.4,0.9-0.7,1.3-1.1C968.4,542.3,967.3,542.4,966.2,542.3"/>
|
||||
<path class="st6" d="M973.3,540.5c0.8-1.1,1.4-2.3,1.6-3.5c-0.2,0.9-0.6,1.6-1.1,2.4c-2.5,1.5-0.2-0.9,0-1.9
|
||||
C971.1,540.9,973.4,539.6,973.3,540.5"/>
|
||||
<path class="st6" d="M975.9,533.7c0.2-2.4-0.5-1.6-0.7-0.7C975.5,533.1,975.7,534.7,975.9,533.7"/>
|
||||
<path class="st6" d="M961.2,501.3c0.7,0.1,1.5,0.2,1.4,0.4C963.4,501.5,963.6,501.4,961.2,501.3"/>
|
||||
<path class="st6" d="M962.6,501.7l-0.5,0.1L962.6,501.7L962.6,501.7"/>
|
||||
<path class="st6" d="M984.9,534.4c0.1,2.1-0.6,3.2-1.3,5.1l-1.1,0.6c-0.9,1.8,0.1,1.1-0.6,2.6c-1.5,1.3-4.5,4.1-5.5,4.4
|
||||
c-0.7,0,0.5-0.8,0.6-1.1c-1.9,1.3-1.6,2-4.6,2.8l-0.1-0.2c-7.4,3.6-17.8-3.4-17.7-12.9c-0.1,0.6-0.2,0.4-0.4,0.7
|
||||
c-0.4-4.9,2.2-9.7,6.7-11.8c4.4-2.1,9.4-1.3,12.6,1.6c-1.7-2.2-5.1-4.6-9.1-4.4c-4,0.1-7.6,2.5-8.9,5.3c-2,1.3-2.2,4.9-3.1,5.6
|
||||
c-1.2,8.7,2.2,12.5,8,16.9c0.9,0.6,0.3,0.7,0.4,1.2c-1.9-0.9-3.7-2.2-5.2-4c0.8,1.1,1.6,2.2,2.6,3c-1.8-0.6-4.3-4.4-5-4.6
|
||||
c3.1,5.6,12.7,9.8,17.7,7.7c-2.3,0.1-5.3,0-7.8-0.9c-1.1-0.6-2.5-1.7-2.3-1.9c6.8,2.5,13.9,1.9,19.8-2.8
|
||||
c1.5-1.2,3.1-3.1,3.7-3.1c-0.7,1.1,0.1,0.5-0.4,1.4c1.5-2.4-0.6-1,1.5-4.2l0.8,1.1c-0.3-2,2.5-4.5,2.2-7.6c0.6-1,0.7,1,0,3.2
|
||||
c0.9-2.4,0.2-2.8,0.5-4.9c0.3,0.7,0.6,1.4,0.8,2.1c-0.6-2.4,0.6-4.1,0.9-5.4c-0.3-0.1-0.9,1-1.1-1.7c0-1.2,0.3-0.6,0.5-0.9
|
||||
c-0.2-0.1-0.9-1.1-1.2-2.8c0.3-0.4,0.7,1.1,1.1,1.1c-0.2-1.4-0.7-2.5-0.7-3.7c-1.1-2.3-0.4,0.3-1.3-1c-1.2-3.7,1-0.8,1.1-2.5
|
||||
c1.8,2.5,2.8,6.6,3.2,8.2c-0.4-2-0.9-4-1.6-5.9c0.5,0.2-0.9-4.2,0.7-1.2c-1.7-6.2-7.2-12-12.3-14.7c0.6,0.6,1.4,1.3,1.1,1.4
|
||||
c-2.5-1.5-2.1-1.6-2.4-2.2c-2-0.8-2.2,0.1-3.6,0c-3.9-2-4.7-1.8-8.2-3.1l0.2,0.8c-2.5-0.8-3,0.3-5.8,0
|
||||
c-0.2-0.1,0.9-0.5,1.7-0.6c-2.5,0.3-2.3-0.5-4.8,0.1c0.6-0.4,1.2-0.7,1.8-1c-2,0.1-4.9,1.2-4,0.2c-3.3,1.5-9.2,3.6-12.5,6.6
|
||||
l-0.1-0.7c-1.5,1.8-6.6,5.4-7,7.8l-0.4,0.1c-0.8,1.3-1.3,2.8-1.9,4.3c-1,1.7-1.5,0.7-1.3,0.9c-2,4.1-3,7.5-3.9,10.3
|
||||
c0.6,0.9,0,5.6,0.2,9.2c-1,18.4,12.9,36.2,28.1,40.3c2.2,0.8,5.6,0.8,8.3,0.8c-3.3-0.9-3.8-0.5-7-1.6c-2.3-1.1-2.8-2.3-4.5-3.8
|
||||
l0.6,1.1c-3.2-1.1-1.9-1.4-4.6-2.2l0.7-0.9c-1-0.1-2.7-1.7-3.2-2.7h-1.1c-1.4-1.7-2.1-2.9-2-3.9l-0.4,0.7
|
||||
c-0.4-0.7-5.1-6.4-2.6-5.1c-0.4-0.4-1-0.7-1.7-1.8l0.5-0.6c-1.1-1.5-2.1-3.4-2-4.1c0.6,0.8,1,1,1.5,1.1
|
||||
c-2.9-7.3-3.1-0.4-5.4-7.4h0.5c-0.4-0.5-0.6-1.1-0.9-1.7l0.2-2c-2.1-2.4-0.6-10.4-0.3-14.8c0.2-1.7,1.7-3.7,2.9-6.6l-0.7-0.1
|
||||
c1.4-2.4,7.9-9.6,10.9-9.2c1.4-1.8-0.3,0-0.6-0.5c3.2-3.3,4.2-2.3,6.4-2.9c2.3-1.4-2,0.5-0.9-0.5c4.1-1,2.8-2.3,8.1-2.8
|
||||
c0.5,0.3-1.3,0.5-1.7,0.9c3.3-1.6,10.7-1.2,15.3,0.9c5.5,2.5,11.6,10.1,11.9,17.2l0.3,0.1c-0.1,2.8,0.4,6.1-0.6,9.1
|
||||
L984.9,534.4"/>
|
||||
<path class="st6" d="M951.9,544.1l-0.2,0.9c0.9,1.2,1.6,2.4,2.7,3.4C953.5,546.8,953,546.2,951.9,544.1"/>
|
||||
<path class="st6" d="M953.9,544c-0.5-0.5-0.7-1.1-1-1.7c0.3,1.1,0.9,2,1.4,2.9L953.9,544"/>
|
||||
<path class="st6" d="M990.1,536.1l-0.2,0.5c-0.4,2.5-1.1,5-2.3,7.3C988.9,541.5,989.7,538.8,990.1,536.1"/>
|
||||
<path class="st6" d="M961.5,500.7c0.9-0.3,2.2-0.2,3.1-0.4c-1.2,0.1-2.5,0.2-3.7,0.3L961.5,500.7"/>
|
||||
<path class="st6" d="M930.3,517.3c0.2,1.9-1.4,2.6,0.4,1.4C931.6,516.5,930.3,518.1,930.3,517.3"/>
|
||||
<path class="st6" d="M928.2,526.1c0.4-1.3,0.5-2,0.6-2.8C927.7,524.8,928.3,525.1,928.2,526.1"/>
|
||||
</g>
|
||||
<g class="st7">
|
||||
|
||||
<radialGradient id="SVGID_00000091732848191404214390000004736846775492618424_" cx="-37.305" cy="10365.1602" r="173.2404" gradientTransform="matrix(0.8642 0.5228 -0.5025 0.9115 5995.1982 -8755.3174)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000091732848191404214390000004736846775492618424_);enable-background:new ;" cx="766.2" cy="645.9" rx="173.2" ry="181.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000114788164137069528000000005957745660025105319_" gradientUnits="userSpaceOnUse" x1="4501.6509" y1="506.226" x2="4698.46" y2="506.226" gradientTransform="matrix(-0.7151 0.699 -0.5383 -0.5506 4391.564 -2623.3542)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000114788164137069528000000005957745660025105319_);enable-background:new ;" points="
|
||||
700.3,321.9 810.7,153.3 949,375.1 885,415.5 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000054962312987295980090000006017935243511788676_" gradientUnits="userSpaceOnUse" x1="2066.0298" y1="7874.2495" x2="2337.1929" y2="7874.2495" gradientTransform="matrix(0.7774 0.629 -0.629 0.7774 4107.1865 -7204.9038)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000054962312987295980090000006017935243511788676_);enable-background:new ;" points="
|
||||
871.9,494.7 784.8,279.5 810.7,153.3 905.6,201.5 1025.1,241.8 1001,349.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000012442755421995762960000014664915799359269053_" gradientUnits="userSpaceOnUse" x1="-7687.7383" y1="5138.3574" x2="-7185.3882" y2="5138.3574" gradientTransform="matrix(0.3915 -0.9202 0.9202 0.3915 -1099.8982 -8403.8916)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000012442755421995762960000014664915799359269053_);enable-background:new ;" points="
|
||||
458.3,613.8 629.2,399.9 799.9,213.2 939.5,373.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000086651592687441638420000016273738828393233579_" gradientUnits="userSpaceOnUse" x1="9454.1855" y1="2925.7485" x2="9671.4678" y2="2925.7485" gradientTransform="matrix(-0.3483 0.5724 -0.7648 -0.6285 6665.2769 -3309.3779)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000086651592687441638420000016273738828393233579_);enable-background:new ;" points="
|
||||
1211.9,391.7 1226.6,518.1 988.7,310.2 972.8,123.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000095314929038062691570000012080618537926193552_" gradientUnits="userSpaceOnUse" x1="-4049.3596" y1="6098.5605" x2="-3743.8562" y2="6098.5605" gradientTransform="matrix(0.7151 -0.699 0.699 0.7151 -446.3692 -6772.9209)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000095314929038062691570000012080618537926193552_);enable-background:new ;" points="
|
||||
988.7,310.2 784.8,279.5 889.2,212.3 1029.8,93.1 1208.9,409.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000069384093065957304470000008686477747994526866_" gradientUnits="userSpaceOnUse" x1="6255.8599" y1="2547.1248" x2="6490.9126" y2="2547.1248" gradientTransform="matrix(-0.5898 0.8076 -0.8076 -0.5898 6758.6099 -3397.5225)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000069384093065957304470000008686477747994526866_);enable-background:new ;" points="
|
||||
960,371.1 730.2,237.8 972.8,123.9 1043.6,409.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000174570387500765410560000018201440021002273169_" gradientUnits="userSpaceOnUse" x1="-7022.96" y1="-1443.5104" x2="-6656.459" y2="-1443.5104" gradientTransform="matrix(-0.2682 -0.9634 1.0501 -0.2924 294.0579 -6276.7939)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000174570387500765410560000018201440021002273169_);enable-background:new ;" points="
|
||||
657.1,531.1 756.4,656.4 507.9,953.1 521.4,741.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000041276010603755054700000012950505128597653693_" gradientUnits="userSpaceOnUse" x1="6476.2949" y1="-3050.6917" x2="6860.4126" y2="-3050.6917" gradientTransform="matrix(-0.9257 0.3783 -0.3783 -0.9257 5603.1353 -4641.4233)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000041276010603755054700000012950505128597653693_);enable-background:new ;" points="
|
||||
397,619.9 699,580.8 766.2,642.6 628.2,832 516.1,895 427.7,829.7 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000061435600823447587540000000552723606534874028_" gradientUnits="userSpaceOnUse" x1="-14448.0498" y1="-4270.9775" x2="-13998.3457" y2="-4270.9775" gradientTransform="matrix(-0.2347 -0.2596 0.879 -0.2953 1043.0485 -4355.957)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000061435600823447587540000000552723606534874028_);enable-background:new ;" points="
|
||||
431.9,727.7 458.3,613.8 806,449.6 700.3,584.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000002351047188999019860000002566414104328457898_" gradientUnits="userSpaceOnUse" x1="12772.9473" y1="6937.4038" x2="13680.8916" y2="6937.4038" gradientTransform="matrix(0.1765 0.3022 -0.9209 0.1087 4716.2749 -3888.3674)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000002351047188999019860000002566414104328457898_);enable-background:new ;" points="
|
||||
740.4,729.5 893.4,986.9 504.3,864.5 521.4,741.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000004534978137110897330000008179059058368671906_" gradientUnits="userSpaceOnUse" x1="-7687.7383" y1="5080.5278" x2="-7400.5278" y2="5080.5278" gradientTransform="matrix(0.3915 -0.9202 0.9202 0.3915 -1099.8982 -8403.8916)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000004534978137110897330000008179059058368671906_);enable-background:new ;" points="
|
||||
699,580.8 458.3,613.8 533.2,379.6 806,449.6 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000091017312778810520490000013487813255627565699_" cx="-108.2559" cy="10030.8691" r="181.9404" gradientTransform="matrix(0.8642 0.5228 -0.5025 0.9115 5995.1982 -8755.3174)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000091017312778810520490000013487813255627565699_);enable-background:new ;" cx="871.9" cy="305.4" rx="181.9" ry="190.6"/>
|
||||
|
||||
<linearGradient id="SVGID_00000093149179829732349710000008128861407447028144_" gradientUnits="userSpaceOnUse" x1="6476.3066" y1="-3135.9316" x2="6770.707" y2="-3135.9316" gradientTransform="matrix(-0.9257 0.3783 -0.3783 -0.9257 5603.1353 -4641.4233)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000093149179829732349710000008128861407447028144_);enable-background:new ;" points="
|
||||
501.4,638.1 766.2,642.6 717.1,936.1 628.2,832 532.1,848 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000034071598378061202680000005682775137060128388_" gradientUnits="userSpaceOnUse" x1="-2446.0144" y1="8616.9512" x2="-2179.4543" y2="8616.9512" gradientTransform="matrix(0.9797 -0.2004 0.2004 0.9797 1206.5922 -8533.6934)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000034071598378061202680000005682775137060128388_);enable-background:new ;" points="
|
||||
533.2,379.6 730.2,345.4 784.8,279.5 797.9,413.5 "/>
|
||||
</g>
|
||||
|
||||
<linearGradient id="SVGID_00000147222259863327894370000004713185813428820113_" gradientUnits="userSpaceOnUse" x1="-8054.3379" y1="5144.2563" x2="-7614.1865" y2="5144.2563" gradientTransform="matrix(0.4172 -0.9088 0.9088 0.4172 401.7775 -8335.0615)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000147222259863327894370000004713185813428820113_);enable-background:new ;" points="
|
||||
2140.7,840.5 1984.5,1253.1 1507.2,881.3 1602,731.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000063620498617606890090000008720960172290484925_" gradientUnits="userSpaceOnUse" x1="-338.647" y1="-4980.8984" x2="213.0973" y2="-4980.8984" gradientTransform="matrix(-0.9511 -0.3089 0.3089 -0.9511 3185.2781 -3756.8625)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000063620498617606890090000008720960172290484925_);enable-background:new ;" points="
|
||||
1556,569.8 1783,991.1 1934.2,1191.5 1645,1256.7 1426.9,1290.3 1413.7,1026.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000078013590621525976610000006727138897565908112_" gradientUnits="userSpaceOnUse" x1="5217.2197" y1="6487.8555" x2="5885.4883" y2="6487.8555" gradientTransform="matrix(-3.594599e-02 0.9994 -0.9994 -3.594599e-02 8477.332 -4502.8599)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000078013590621525976610000006727138897565908112_);enable-background:new ;" points="
|
||||
1933.3,482.6 1995.2,701.9 1737.9,1144.3 1601.6,667.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000129169157574715853980000000301106401069963673_" gradientUnits="userSpaceOnUse" x1="8268.3721" y1="570.8364" x2="8986.3359" y2="570.8364" gradientTransform="matrix(-7.909842e-02 0.6653 -0.9567 -0.2541 3183.1792 -4748.3145)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000129169157574715853980000000301106401069963673_);enable-background:new ;" points="
|
||||
2004.8,870.8 2102.8,1126.5 1757.4,979.3 1814,558.8 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000051343387064157711410000007010731585534318724_" gradientUnits="userSpaceOnUse" x1="-6628.8418" y1="4207.9429" x2="-6236.5361" y2="4207.9429" gradientTransform="matrix(0.2612 -0.9653 0.9653 0.2612 -653.4725 -6361.3896)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000051343387064157711410000007010731585534318724_);enable-background:new ;" points="
|
||||
1621.5,776.7 2068.4,836 1927.9,1204.4 1463.9,778.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000169518436558334241300000010220786071391330234_" gradientUnits="userSpaceOnUse" x1="1836.1005" y1="7829.1611" x2="2258.3394" y2="7829.1611" gradientTransform="matrix(0.9919 -0.1269 0.1269 0.9919 -1274.858 -6407.4478)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000169518436558334241300000010220786071391330234_);enable-background:new ;" points="
|
||||
1983.4,1264.7 1663.6,1217.3 1515.2,932.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000003075246375309062510000005919818320267613622_" gradientUnits="userSpaceOnUse" x1="10926.9941" y1="12790.3369" x2="11459.4355" y2="12790.3369" gradientTransform="matrix(0.3792 0.341 -0.9317 0.5609 7924.4082 -10914.7021)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000003075246375309062510000005919818320267613622_);enable-background:new ;" points="
|
||||
276.7,-75.4 413.8,-51.6 325.9,197.4 26.2,146.4 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000151504943794861704500000013710966191068745143_" gradientUnits="userSpaceOnUse" x1="9379.0352" y1="6171.8062" x2="9964.666" y2="6171.8062" gradientTransform="matrix(0.353 0.5695 -0.9064 0.3978 2451.355 -7980.2593)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000151504943794861704500000013710966191068745143_);enable-background:new ;" points="
|
||||
320.6,-31.9 538.6,70 180.3,178.5 -2.7,-115.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000116945986907177242930000003619234899467008173_" gradientUnits="userSpaceOnUse" x1="-7309.3979" y1="-1249.7209" x2="-6990.3579" y2="-1249.7209" gradientTransform="matrix(-0.3976 -0.9175 0.9175 -0.3976 -1553.5924 -6849.3574)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000116945986907177242930000003619234899467008173_);enable-background:new ;" points="
|
||||
-37.5,164 354.7,-57.8 441.9,252.1 -163.5,256 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000018934028870046402510000005056381095522587327_" gradientUnits="userSpaceOnUse" x1="-3331.885" y1="6389.4604" x2="-2896.9707" y2="6389.4604" gradientTransform="matrix(0.6964 -0.7176 0.7176 0.6964 -2068.2891 -6498.0825)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000018934028870046402510000005056381095522587327_);enable-background:new ;" points="
|
||||
626.8,154.1 343.4,309.7 69,218.8 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000101790783768249243120000007920411576515842194_" gradientUnits="userSpaceOnUse" x1="-6562.5264" y1="1880.1191" x2="-6127.6533" y2="1880.1191" gradientTransform="matrix(-9.480336e-02 -0.9955 0.9955 -9.480336e-02 -1443.6445 -5086.2905)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000101790783768249243120000007920411576515842194_);enable-background:new ;" points="
|
||||
1185.8,818.7 1120.5,1135.3 873.3,1285.3 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 25 KiB |
@@ -1,314 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1200" style="enable-background:new 0 0 1920 1200;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_00000000928596792312907720000015067976839969243561_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000056411074606979671790000012680755076389884083_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000023989492384892967260000009710341851984184492_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000161595034260526515850000010596232777479458947_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000076589682521798879920000011921484468618510504_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000022553105745205153220000002526306067487353472_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000023253950792642503570000010545805774672953244_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000170260504085748133930000012521765846385128116_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000082363585068762561560000013790172994988761013_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000098913682242597510470000011006784818807666326_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000115489987498632649720000011008985375483231643_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000047059192306680669690000007811741663679149985_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000101792577392231575320000016756205186510304687_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000123412959991921090160000015783343612426765460_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000134237491014946211050000010066306547626477466_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000034772572330934262940000010374810663227991682_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000021090192784433479690000012108295630625962133_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000085224912268995596740000001192375694511959694_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000036951329762708534880000016297398792263597696_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000049200990058816053730000014783409975399489939_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000111187147672048172680000009805526042319811762_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000002352292896172037110000000285475706208253351_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000031180986187426161680000014527347853894108845_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000083073393030777054170000008682096802884454789_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000054964391004092095810000003455071117432939653_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000090288739315912149810000014547160397308911281_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000001633458465395349520000002138339211221285271_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000078724928392494712130000004724194500713547951_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000044880333438437072450000007434997047063731332_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000045615725106276691630000009515850595024568499_);enable-background:new ;}
|
||||
</style>
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" width="1920" height="1200"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_00000172401503128712534600000011968226326295796110_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="Calque_1-2" style="clip-path:url(#SVGID_00000172401503128712534600000011968226326295796110_);">
|
||||
<rect x="-17.5" y="-15.7" class="st1" width="1955" height="1231.4"/>
|
||||
|
||||
<radialGradient id="SVGID_00000089532484294864443560000001156018140746127002_" cx="222.92" cy="-8061.8291" r="1365.4" gradientTransform="matrix(0.5 0 0 -0.5 -106.46 -3973.7146)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000089532484294864443560000001156018140746127002_);enable-background:new ;" cx="5" cy="57.2" r="682.7"/>
|
||||
|
||||
<radialGradient id="SVGID_00000137818120280239734990000003026529580521251758_" cx="-2489.2502" cy="5715.2759" r="342.1" gradientTransform="matrix(-2.8317 2.4125 0.8042 0.9439 -10798.3906 854.2648)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000137818120280239734990000003026529580521251758_);enable-background:new ;" points="
|
||||
-301.3,597.5 1374,-829.6 1988.4,-108.2 313.1,1318.8 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000058583359066475248070000015883288929621046165_" cx="1076.72" cy="-8569.6289" r="459.4" gradientTransform="matrix(0.5 0 0 -0.5 -106.46 -3973.7146)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#DAC9BA"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<circle style="opacity:0.34;fill:url(#SVGID_00000058583359066475248070000015883288929621046165_);enable-background:new ;" cx="431.9" cy="311.1" r="229.7"/>
|
||||
<g class="st5">
|
||||
<path class="st6" d="M966.2,602.3c-1.3,0,0.2,0.7,2,0.9c0.5-0.4,0.9-0.7,1.3-1.1C968.4,602.3,967.3,602.4,966.2,602.3"/>
|
||||
<path class="st6" d="M973.3,600.5c0.8-1.1,1.4-2.3,1.6-3.5c-0.2,0.9-0.6,1.6-1.1,2.4c-2.5,1.5-0.2-0.9,0-1.9
|
||||
C971.1,600.9,973.4,599.6,973.3,600.5"/>
|
||||
<path class="st6" d="M975.9,593.7c0.2-2.4-0.5-1.6-0.7-0.7C975.5,593.1,975.7,594.7,975.9,593.7"/>
|
||||
<path class="st6" d="M961.2,561.3c0.7,0.1,1.5,0.2,1.4,0.4C963.4,561.5,963.6,561.4,961.2,561.3"/>
|
||||
<path class="st6" d="M962.6,561.7l-0.5,0.1L962.6,561.7L962.6,561.7"/>
|
||||
<path class="st6" d="M984.5,594.6c0.1,2.1-0.6,3.2-1.3,5l-1.1,0.6c-0.9,1.8,0.1,1.1-0.6,2.6c-1.5,1.3-4.4,4-5.4,4.3
|
||||
c-0.7,0,0.5-0.8,0.6-1.1c-1.9,1.3-1.6,2-4.5,2.8l-0.1-0.2c-7.3,3.5-17.5-3.4-17.4-12.7c-0.1,0.6-0.2,0.4-0.4,0.7
|
||||
c-0.4-4.8,2.2-9.6,6.6-11.6c4.3-2.1,9.3-1.3,12.4,1.6c-1.7-2.2-5-4.5-9-4.3c-3.9,0.1-7.5,2.5-8.8,5.2c-2,1.3-2.2,4.8-3.1,5.5
|
||||
c-1.2,8.6,2.2,12.3,7.9,16.7c0.9,0.6,0.3,0.7,0.4,1.2c-1.9-0.9-3.6-2.2-5.1-3.9c0.8,1.1,1.6,2.2,2.6,3c-1.8-0.6-4.2-4.3-4.9-4.5
|
||||
c3.1,5.5,12.5,9.7,17.4,7.6c-2.3,0.1-5.2,0-7.7-0.9c-1.1-0.6-2.5-1.7-2.3-1.9c6.7,2.5,13.7,1.9,19.5-2.8c1.5-1.2,3.1-3.1,3.6-3.1
|
||||
c-0.7,1.1,0.1,0.5-0.4,1.4c1.5-2.4-0.6-1,1.5-4.1l0.8,1.1c-0.3-2,2.5-4.4,2.2-7.5c0.6-1,0.7,1,0,3.2c0.9-2.4,0.2-2.8,0.5-4.8
|
||||
c0.3,0.7,0.6,1.4,0.8,2.1c-0.6-2.4,0.6-4,0.9-5.3c-0.3-0.1-0.9,1-1.1-1.7c0-1.2,0.3-0.6,0.5-0.9c-0.2-0.1-0.9-1.1-1.2-2.8
|
||||
c0.3-0.4,0.7,1.1,1.1,1.1c-0.2-1.4-0.7-2.5-0.7-3.6c-1.1-2.3-0.4,0.3-1.3-1c-1.2-3.6,1-0.8,1.1-2.5c1.8,2.5,2.8,6.5,3.2,8.1
|
||||
c-0.4-2-0.9-3.9-1.6-5.8c0.5,0.2-0.9-4.1,0.7-1.2c-1.7-6.1-7.1-11.8-12.1-14.5c0.6,0.6,1.4,1.3,1.1,1.4c-2.5-1.5-2.1-1.6-2.4-2.2
|
||||
c-2-0.8-2.2,0.1-3.5,0c-3.8-2-4.6-1.8-8.1-3.1l0.2,0.8c-2.5-0.8-3,0.3-5.7,0c-0.2-0.1,0.9-0.5,1.7-0.6c-2.5,0.3-2.3-0.5-4.7,0.1
|
||||
c0.6-0.4,1.2-0.7,1.8-1c-2,0.1-4.8,1.2-3.9,0.2c-3.3,1.5-9.1,3.5-12.3,6.5l-0.1-0.7c-1.5,1.8-6.5,5.3-6.9,7.7l-0.4,0.1
|
||||
c-0.8,1.3-1.3,2.8-1.9,4.2c-1,1.7-1.5,0.7-1.3,0.9c-2,4-3,7.4-3.8,10.2c0.6,0.9,0,5.5,0.2,9.1c-1,18.1,12.7,35.7,27.7,39.7
|
||||
c2.2,0.8,5.5,0.8,8.2,0.8c-3.3-0.9-3.7-0.5-6.9-1.6c-2.3-1.1-2.8-2.3-4.4-3.7l0.6,1.1c-3.2-1.1-1.9-1.4-4.5-2.2l0.7-0.9
|
||||
c-1-0.1-2.7-1.7-3.2-2.7h-1.1c-1.4-1.7-2.1-2.9-2-3.8l-0.4,0.7c-0.4-0.7-5-6.3-2.6-5c-0.4-0.4-1-0.7-1.7-1.8l0.5-0.6
|
||||
c-1.1-1.5-2.1-3.4-2-4c0.6,0.8,1,1,1.5,1.1c-2.9-7.2-3.1-0.4-5.3-7.3h0.5c-0.4-0.5-0.6-1.1-0.9-1.7l0.2-2
|
||||
c-2.1-2.4-0.6-10.3-0.3-14.6c0.2-1.7,1.7-3.6,2.9-6.5l-0.7-0.1c1.4-2.4,7.8-9.5,10.7-9.1c1.4-1.8-0.3,0-0.6-0.5
|
||||
c3.2-3.3,4.1-2.3,6.3-2.9c2.3-1.4-2,0.5-0.9-0.5c4-1,2.8-2.3,8-2.8c0.5,0.3-1.3,0.5-1.7,0.9c3.3-1.6,10.5-1.2,15.1,0.9
|
||||
c5.4,2.5,11.4,10,11.7,17l0.3,0.1c-0.1,2.8,0.4,6-0.6,9L984.5,594.6"/>
|
||||
<path class="st6" d="M951.9,604.1l-0.2,0.9c0.9,1.2,1.6,2.4,2.7,3.4C953.5,606.8,953,606.2,951.9,604.1"/>
|
||||
<path class="st6" d="M953.9,604c-0.5-0.5-0.7-1.1-1-1.7c0.3,1.1,0.9,2,1.4,2.9L953.9,604"/>
|
||||
<path class="st6" d="M990.1,596.1l-0.2,0.5c-0.4,2.5-1.1,5-2.3,7.3C988.9,601.5,989.7,598.8,990.1,596.1"/>
|
||||
<path class="st6" d="M961.5,560.7c0.9-0.3,2.2-0.2,3.1-0.4c-1.2,0.1-2.5,0.2-3.7,0.3L961.5,560.7"/>
|
||||
<path class="st6" d="M930.3,577.3c0.2,1.9-1.4,2.6,0.4,1.4C931.6,576.5,930.3,578.1,930.3,577.3"/>
|
||||
<path class="st6" d="M928.2,586.1c0.4-1.3,0.5-2,0.6-2.8C927.7,584.8,928.3,585.1,928.2,586.1"/>
|
||||
</g>
|
||||
<g class="st7">
|
||||
|
||||
<radialGradient id="SVGID_00000084523137185723558220000015279798023442974080_" cx="-892.9836" cy="-4458.9219" r="173.24" gradientTransform="matrix(0.8642 0.5228 0.5025 -0.9115 3766.6392 -2864.1973)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000084523137185723558220000015279798023442974080_);enable-background:new ;" cx="766.2" cy="705.9" rx="173.2" ry="181.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000134943907407943021780000012076970261184592781_" gradientUnits="userSpaceOnUse" x1="1876.1453" y1="3075.6453" x2="2072.9485" y2="3075.6453" gradientTransform="matrix(-0.7151 0.699 0.5383 0.5506 585.8191 -2700.2151)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000134943907407943021780000012076970261184592781_);enable-background:new ;" points="
|
||||
700.3,381.9 810.7,213.3 949,435.1 885,475.5 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000178894981057875746550000016000597904032110004_" gradientUnits="userSpaceOnUse" x1="896.9199" y1="-1919.0027" x2="1168.0834" y2="-1919.0027" gradientTransform="matrix(0.7774 0.629 0.629 -0.7774 1270.2474 -1779.9875)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000178894981057875746550000016000597904032110004_);enable-background:new ;" points="
|
||||
871.9,554.7 784.8,339.5 810.7,213.3 905.6,261.5 1025.1,301.8 1001,409.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000127727388437009210270000007011599435678376117_" gradientUnits="userSpaceOnUse" x1="-6821.7275" y1="-1177.3477" x2="-6319.3618" y2="-1177.3477" gradientTransform="matrix(0.3915 -0.9202 -0.9202 -0.3915 2206.2451 -5996.0439)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000127727388437009210270000007011599435678376117_);enable-background:new ;" points="
|
||||
458.3,673.8 629.2,459.9 799.9,273.2 939.5,433.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000101086087328235979620000009567443969736187033_" gradientUnits="userSpaceOnUse" x1="5893.3677" y1="1236.082" x2="6110.6479" y2="1236.082" gradientTransform="matrix(-0.3483 0.5724 0.7648 0.6285 2242.1489 -3826.8796)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000101086087328235979620000009567443969736187033_);enable-background:new ;" points="
|
||||
1211.9,451.7 1226.6,578.1 988.7,370.2 972.8,183.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000089574557307665542530000009834880936151122096_" gradientUnits="userSpaceOnUse" x1="-3231.1003" y1="-1439.1991" x2="-2925.604" y2="-1439.1991" gradientTransform="matrix(0.7151 -0.699 -0.699 -0.7151 2225.2839 -2809.1555)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000089574557307665542530000009834880936151122096_);enable-background:new ;" points="
|
||||
988.7,370.2 784.8,339.5 889.2,272.3 1029.8,153.1 1208.9,469.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000137814979148882877880000010328272323069511300_" gradientUnits="userSpaceOnUse" x1="3576.7354" y1="1465.4857" x2="3811.7944" y2="1465.4857" gradientTransform="matrix(-0.5898 0.8076 0.8076 0.5898 1937.7645 -3540.3677)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000137814979148882877880000010328272323069511300_);enable-background:new ;" points="
|
||||
960,431.1 730.2,297.8 972.8,183.9 1043.6,469.2 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000145044256057076252910000000848199297658990999_" gradientUnits="userSpaceOnUse" x1="-6686.6108" y1="4457.1631" x2="-6320.0996" y2="4457.1631" gradientTransform="matrix(-0.2682 -0.9634 -1.0501 0.2924 3548.3164 -6773.793)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000145044256057076252910000000848199297658990999_);enable-background:new ;" points="
|
||||
657.1,591.1 756.4,716.4 507.9,1013.1 521.4,801.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000127734621094974517750000005240452990198260907_" gradientUnits="userSpaceOnUse" x1="4154.2529" y1="6158.4248" x2="4538.3779" y2="6158.4248" gradientTransform="matrix(-0.9257 0.3783 0.3783 0.9257 2277.6904 -6579.7749)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000127734621094974517750000005240452990198260907_);enable-background:new ;" points="
|
||||
397,679.9 699,640.8 766.2,702.6 628.2,892 516.1,955 427.7,889.7 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000011728417832659381670000003564161052773509289_" gradientUnits="userSpaceOnUse" x1="-11701.8916" y1="6459.522" x2="-11252.1924" y2="6459.522" gradientTransform="matrix(-0.2347 -0.2596 -0.879 0.2953 3610.8835 -4228.9741)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000011728417832659381670000003564161052773509289_);enable-background:new ;" points="
|
||||
431.9,787.7 458.3,673.8 806,509.6 700.3,644.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000013888782862855192130000004048158289608727716_" gradientUnits="userSpaceOnUse" x1="7435.6807" y1="-916.0336" x2="8343.6211" y2="-916.0336" gradientTransform="matrix(0.1765 0.3022 0.9209 -0.1087 112.9515 -1561.0907)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000013888782862855192130000004048158289608727716_);enable-background:new ;" points="
|
||||
740.4,789.5 893.4,1046.9 504.3,924.5 521.4,801.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000032636350723051708950000003397749158443223972_" gradientUnits="userSpaceOnUse" x1="-6821.7275" y1="-1119.5144" x2="-6534.5" y2="-1119.5144" gradientTransform="matrix(0.3915 -0.9202 -0.9202 -0.3915 2206.2451 -5996.0439)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000032636350723051708950000003397749158443223972_);enable-background:new ;" points="
|
||||
699,640.8 458.3,673.8 533.2,439.6 806,509.6 "/>
|
||||
|
||||
<radialGradient id="SVGID_00000032630432101678314960000008468116941741282944_" cx="-963.9337" cy="-4124.6318" r="181.94" gradientTransform="matrix(0.8642 0.5228 0.5025 -0.9115 3766.6392 -2864.1973)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
|
||||
<ellipse style="opacity:0.34;fill:url(#SVGID_00000032630432101678314960000008468116941741282944_);enable-background:new ;" cx="871.9" cy="365.4" rx="181.9" ry="190.6"/>
|
||||
|
||||
<linearGradient id="SVGID_00000019670513155277172690000010650740053110845579_" gradientUnits="userSpaceOnUse" x1="4154.2529" y1="6243.6416" x2="4448.6611" y2="6243.6416" gradientTransform="matrix(-0.9257 0.3783 0.3783 0.9257 2277.6904 -6579.7749)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000019670513155277172690000010650740053110845579_);enable-background:new ;" points="
|
||||
501.4,698.1 766.2,702.6 717.1,996.1 628.2,892 532.1,908 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000075149650005683383290000017910244360390472588_" gradientUnits="userSpaceOnUse" x1="-2155.8843" y1="-3099.9363" x2="-1889.3284" y2="-3099.9363" gradientTransform="matrix(0.9797 -0.2004 -0.2004 -0.9797 2028.0126 -3010.5703)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.34;fill:url(#SVGID_00000075149650005683383290000017910244360390472588_);enable-background:new ;" points="
|
||||
533.2,439.6 730.2,405.4 784.8,339.5 797.9,473.5 "/>
|
||||
</g>
|
||||
|
||||
<linearGradient id="SVGID_00000106830734271642211480000010917764946327503256_" gradientUnits="userSpaceOnUse" x1="-7182.4272" y1="-1133.2759" x2="-6742.2847" y2="-1133.2759" gradientTransform="matrix(0.4172 -0.9088 -0.9088 -0.4172 3683.3728 -5809.2061)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000106830734271642211480000010917764946327503256_);enable-background:new ;" points="
|
||||
2140.7,900.5 1984.5,1313.1 1507.2,941.3 1602,791.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000008838014493502950990000002106571545151364536_" gradientUnits="userSpaceOnUse" x1="-1626.0773" y1="7428.6694" x2="-1074.3547" y2="7428.6694" gradientTransform="matrix(-0.9511 -0.3089 -0.3089 0.9511 2716.5413 -6422.6528)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000008838014493502950990000002106571545151364536_);enable-background:new ;" points="
|
||||
1556,629.8 1783,1051.1 1934.2,1251.5 1645,1316.7 1426.9,1350.3 1413.7,1086.6 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000170269309057204161380000001402138955680408972_" gradientUnits="userSpaceOnUse" x1="2743.3877" y1="-1449.7526" x2="3411.6838" y2="-1449.7526" gradientTransform="matrix(-3.594599e-02 0.9994 0.9994 3.594599e-02 3353.26 -2151.4868)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000170269309057204161380000001402138955680408972_);enable-background:new ;" points="
|
||||
1933.3,542.6 1995.2,761.9 1737.9,1204.3 1601.6,727.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000044170033691582868540000003890608974300690825_" gradientUnits="userSpaceOnUse" x1="4772.7378" y1="4349.7412" x2="5490.6982" y2="4349.7412" gradientTransform="matrix(-7.909842e-02 0.6653 0.9567 0.2541 -1800.8073 -3613.0259)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000044170033691582868540000003890608974300690825_);enable-background:new ;" points="
|
||||
2004.8,930.8 2102.8,1186.5 1757.4,1039.3 1814,618.8 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000115476630761162719110000008737009919211368841_" gradientUnits="userSpaceOnUse" x1="-5810.9302" y1="-487.7165" x2="-5418.6216" y2="-487.7165" gradientTransform="matrix(0.2612 -0.9653 -0.9653 -0.2612 2723.9082 -4540.3013)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000115476630761162719110000008737009919211368841_);enable-background:new ;" points="
|
||||
1621.5,836.5 2068.4,895.8 1927.9,1264.2 1463.9,837.9 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000137827576320685657670000017367018758092256190_" gradientUnits="userSpaceOnUse" x1="2024.0944" y1="-2226.9001" x2="2446.3311" y2="-2226.9001" gradientTransform="matrix(0.9919 -0.1269 -0.1269 -0.9919 -750.4193 -766.7698)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000137827576320685657670000017367018758092256190_);enable-background:new ;" points="
|
||||
1983.4,1324.7 1663.6,1277.3 1515.2,992.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000062875286114471441420000010794719189137940105_" gradientUnits="userSpaceOnUse" x1="8275.8008" y1="-6919.5112" x2="8808.2402" y2="-6919.5112" gradientTransform="matrix(0.3792 0.341 0.9317 -0.5609 3459.2957 -6657.502)">
|
||||
<stop offset="0" style="stop-color:#AABDCB"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000062875286114471441420000010794719189137940105_);enable-background:new ;" points="
|
||||
276.7,-15.4 413.8,8.4 325.9,257.4 26.2,206.4 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000087375575459333385210000002238624078503487908_" gradientUnits="userSpaceOnUse" x1="6898.5732" y1="-370.2426" x2="7484.2031" y2="-370.2426" gradientTransform="matrix(0.353 0.5695 0.9064 -0.3978 -1931.4192 -4199.8999)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000087375575459333385210000002238624078503487908_);enable-background:new ;" points="
|
||||
320.6,28.1 538.6,130 180.3,238.5 -2.7,-55.1 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000183223659939389319390000000216397749450872199_" gradientUnits="userSpaceOnUse" x1="-7160.5947" y1="3998.96" x2="-6841.5742" y2="3998.96" gradientTransform="matrix(-0.3976 -0.9175 -0.9175 0.3976 1028.1501 -7745.7251)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000183223659939389319390000000216397749450872199_);enable-background:new ;" points="
|
||||
-37.5,224.3 354.7,2.5 441.9,312.4 -163.5,316.3 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000134940890851672155010000009345720776688027561_" gradientUnits="userSpaceOnUse" x1="-2501.7507" y1="-1775.7073" x2="-2066.8596" y2="-1775.7073" gradientTransform="matrix(0.6964 -0.7176 -0.7176 -0.6964 664.4031 -2629.4871)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000134940890851672155010000009345720776688027561_);enable-background:new ;" points="
|
||||
626.8,214.1 343.4,369.7 69,278.8 "/>
|
||||
|
||||
<linearGradient id="SVGID_00000137118113169258829820000003332003489976044437_" gradientUnits="userSpaceOnUse" x1="-6019.9688" y1="1264.8243" x2="-5585.0967" y2="1264.8243" gradientTransform="matrix(-9.480336e-02 -0.9955 -0.9955 9.480336e-02 1738.578 -4784.3081)">
|
||||
<stop offset="0" style="stop-color:#18F5B0"/>
|
||||
<stop offset="1" style="stop-color:#05475C;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
|
||||
<polygon style="opacity:0.12;fill:url(#SVGID_00000137118113169258829820000003332003489976044437_);enable-background:new ;" points="
|
||||
1185.8,878.7 1120.5,1195.3 873.3,1345.3 "/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 24 KiB |
@@ -1,843 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 2560 1440"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="2560x1440.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
width="2560"
|
||||
height="1440"
|
||||
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="defs660" /><sodipodi:namedview
|
||||
id="namedview658"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.68796296"
|
||||
inkscape:cx="167.88694"
|
||||
inkscape:cy="365.57201"
|
||||
inkscape:window-width="1560"
|
||||
inkscape:window-height="930"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1"
|
||||
showguides="false" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style409">
|
||||
.st0{clip-path:url(#SVGID_00000093167105208028638090000008063807857182655396_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000012445251672029399260000003270595326732136081_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000127010423592997111840000013957416611417821059_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000101814971404403400460000010609185819928108449_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000107557325802917530330000017592151723363848840_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000032650273911267859500000015024660283904495788_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000057851989095838282160000014663790337944238500_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000178165242061037739810000007582236097397314448_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000064329767591241199690000000234602624410839680_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000014609603927260903510000009061463274724089486_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000050627399097891942390000014523148072975367070_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000109731321347584724990000010142768297725207449_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000000926441590728654410000012560741159445150083_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000137832232493639134090000003781239364591219342_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000150812387129626622020000009167110439853258936_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000179608784322168811290000010365701417373876369_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000120531069539707179100000007006360167335202962_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000181089157459068778460000011901104969134050459_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000062164313994880221460000014631417913117263241_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000000902067244530690860000014386718989792038839_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000089550684643991047870000016914371577980347776_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000084507925595054884490000005003863653038598286_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000047780407226302564420000009742350089197221517_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000066480680368962549320000006921805612706891392_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000122678307387241734090000002868210978020395689_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000150100474908702981900000008908414767416909709_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000072960791515750302390000015282140940621514149_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000114770971300144002370000016800559959910618791_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000036952937828426554700000000522215132809990844_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000090974002902719031840000015158340248134540673_);enable-background:new ;}
|
||||
</style>
|
||||
<g
|
||||
id="g655"
|
||||
transform="matrix(1.3333333,0,0,1.3333333,0.40000001,-0.13333333)">
|
||||
<defs
|
||||
id="defs412">
|
||||
<rect
|
||||
id="SVGID_1_"
|
||||
x="-0.30000001"
|
||||
y="0.1"
|
||||
width="1920"
|
||||
height="1080" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000085218408489160111120000007828018339010817721_">
|
||||
<use
|
||||
xlink:href="#SVGID_1_"
|
||||
style="overflow:visible"
|
||||
id="use414" />
|
||||
</clipPath>
|
||||
<g
|
||||
clip-path="url(#SVGID_00000085218408489160111120000007828018339010817721_)"
|
||||
id="g653">
|
||||
<g
|
||||
id="g651">
|
||||
<g
|
||||
id="Calque_1-2">
|
||||
<rect
|
||||
x="-17.299999"
|
||||
y="-74.900002"
|
||||
class="st1"
|
||||
width="1955"
|
||||
height="1231"
|
||||
id="rect417" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000018216064389455096890000017941378598996776607_"
|
||||
cx="-680.75513"
|
||||
cy="15329.986"
|
||||
r="1365.4034"
|
||||
gradientTransform="matrix(0.5,0,0,0.5,345.3775,-7667.793)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop419" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop421" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000018216064389455096890000017941378598996776607_);enable-background:new"
|
||||
cx="5"
|
||||
cy="-2.8"
|
||||
r="682.70001"
|
||||
id="circle424" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000000933302580452020710000013162680496496488371_"
|
||||
cx="-1132.3893"
|
||||
cy="-1996.8872"
|
||||
r="342.09979"
|
||||
gradientTransform="matrix(-2.8317,2.4125,-0.8042,-0.9439,-3965.7385,1030.7192)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop426" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop428" />
|
||||
</radialGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000000933302580452020710000013162680496496488371_);enable-background:new"
|
||||
points="1374,-889.6 1988.4,-168.2 313.1,1258.8 -301.3,537.5 "
|
||||
id="polygon431" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000080193032524742796840000011048436269149918087_"
|
||||
cx="173.04491"
|
||||
cy="15837.789"
|
||||
r="459.40109"
|
||||
gradientTransform="matrix(0.5,0,0,0.5,345.3775,-7667.793)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DAC9BA"
|
||||
id="stop433" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop435" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000080193032524742796840000011048436269149918087_);enable-background:new"
|
||||
cx="431.89999"
|
||||
cy="251.10001"
|
||||
r="229.7"
|
||||
id="circle438" />
|
||||
<g
|
||||
class="st5"
|
||||
id="g464">
|
||||
<path
|
||||
class="st6"
|
||||
d="m 966.2,542.3 c -1.3,0 0.2,0.7 2,0.9 0.5,-0.4 0.9,-0.7 1.3,-1.1 -1.1,0.2 -2.2,0.3 -3.3,0.2"
|
||||
id="path440" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 973.3,540.5 c 0.8,-1.1 1.4,-2.3 1.6,-3.5 -0.2,0.9 -0.6,1.6 -1.1,2.4 -2.5,1.5 -0.2,-0.9 0,-1.9 -2.7,3.4 -0.4,2.1 -0.5,3"
|
||||
id="path442" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 975.9,533.7 c 0.2,-2.4 -0.5,-1.6 -0.7,-0.7 0.3,0.1 0.5,1.7 0.7,0.7"
|
||||
id="path444" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.2,501.3 c 0.7,0.1 1.5,0.2 1.4,0.4 0.8,-0.2 1,-0.3 -1.4,-0.4"
|
||||
id="path446" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 962.6,501.7 -0.5,0.1 0.5,-0.1 v 0"
|
||||
id="path448" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 984.9,534.4 c 0.1,2.1 -0.6,3.2 -1.3,5.1 l -1.1,0.6 c -0.9,1.8 0.1,1.1 -0.6,2.6 -1.5,1.3 -4.5,4.1 -5.5,4.4 -0.7,0 0.5,-0.8 0.6,-1.1 -1.9,1.3 -1.6,2 -4.6,2.8 l -0.1,-0.2 c -7.4,3.6 -17.8,-3.4 -17.7,-12.9 -0.1,0.6 -0.2,0.4 -0.4,0.7 -0.4,-4.9 2.2,-9.7 6.7,-11.8 4.4,-2.1 9.4,-1.3 12.6,1.6 -1.7,-2.2 -5.1,-4.6 -9.1,-4.4 -4,0.1 -7.6,2.5 -8.9,5.3 -2,1.3 -2.2,4.9 -3.1,5.6 -1.2,8.7 2.2,12.5 8,16.9 0.9,0.6 0.3,0.7 0.4,1.2 -1.9,-0.9 -3.7,-2.2 -5.2,-4 0.8,1.1 1.6,2.2 2.6,3 -1.8,-0.6 -4.3,-4.4 -5,-4.6 3.1,5.6 12.7,9.8 17.7,7.7 -2.3,0.1 -5.3,0 -7.8,-0.9 -1.1,-0.6 -2.5,-1.7 -2.3,-1.9 6.8,2.5 13.9,1.9 19.8,-2.8 1.5,-1.2 3.1,-3.1 3.7,-3.1 -0.7,1.1 0.1,0.5 -0.4,1.4 1.5,-2.4 -0.6,-1 1.5,-4.2 l 0.8,1.1 c -0.3,-2 2.5,-4.5 2.2,-7.6 0.6,-1 0.7,1 0,3.2 0.9,-2.4 0.2,-2.8 0.5,-4.9 0.3,0.7 0.6,1.4 0.8,2.1 -0.6,-2.4 0.6,-4.1 0.9,-5.4 -0.3,-0.1 -0.9,1 -1.1,-1.7 0,-1.2 0.3,-0.6 0.5,-0.9 -0.2,-0.1 -0.9,-1.1 -1.2,-2.8 0.3,-0.4 0.7,1.1 1.1,1.1 -0.2,-1.4 -0.7,-2.5 -0.7,-3.7 -1.1,-2.3 -0.4,0.3 -1.3,-1 -1.2,-3.7 1,-0.8 1.1,-2.5 1.8,2.5 2.8,6.6 3.2,8.2 -0.4,-2 -0.9,-4 -1.6,-5.9 0.5,0.2 -0.9,-4.2 0.7,-1.2 -1.7,-6.2 -7.2,-12 -12.3,-14.7 0.6,0.6 1.4,1.3 1.1,1.4 -2.5,-1.5 -2.1,-1.6 -2.4,-2.2 -2,-0.8 -2.2,0.1 -3.6,0 -3.9,-2 -4.7,-1.8 -8.2,-3.1 l 0.2,0.8 c -2.5,-0.8 -3,0.3 -5.8,0 -0.2,-0.1 0.9,-0.5 1.7,-0.6 -2.5,0.3 -2.3,-0.5 -4.8,0.1 0.6,-0.4 1.2,-0.7 1.8,-1 -2,0.1 -4.9,1.2 -4,0.2 -3.3,1.5 -9.2,3.6 -12.5,6.6 l -0.1,-0.7 c -1.5,1.8 -6.6,5.4 -7,7.8 l -0.4,0.1 c -0.8,1.3 -1.3,2.8 -1.9,4.3 -1,1.7 -1.5,0.7 -1.3,0.9 -2,4.1 -3,7.5 -3.9,10.3 0.6,0.9 0,5.6 0.2,9.2 -1,18.4 12.9,36.2 28.1,40.3 2.2,0.8 5.6,0.8 8.3,0.8 -3.3,-0.9 -3.8,-0.5 -7,-1.6 -2.3,-1.1 -2.8,-2.3 -4.5,-3.8 l 0.6,1.1 c -3.2,-1.1 -1.9,-1.4 -4.6,-2.2 l 0.7,-0.9 c -1,-0.1 -2.7,-1.7 -3.2,-2.7 h -1.1 c -1.4,-1.7 -2.1,-2.9 -2,-3.9 l -0.4,0.7 c -0.4,-0.7 -5.1,-6.4 -2.6,-5.1 -0.4,-0.4 -1,-0.7 -1.7,-1.8 l 0.5,-0.6 c -1.1,-1.5 -2.1,-3.4 -2,-4.1 0.6,0.8 1,1 1.5,1.1 -2.9,-7.3 -3.1,-0.4 -5.4,-7.4 h 0.5 c -0.4,-0.5 -0.6,-1.1 -0.9,-1.7 l 0.2,-2 c -2.1,-2.4 -0.6,-10.4 -0.3,-14.8 0.2,-1.7 1.7,-3.7 2.9,-6.6 l -0.7,-0.1 c 1.4,-2.4 7.9,-9.6 10.9,-9.2 1.4,-1.8 -0.3,0 -0.6,-0.5 3.2,-3.3 4.2,-2.3 6.4,-2.9 2.3,-1.4 -2,0.5 -0.9,-0.5 4.1,-1 2.8,-2.3 8.1,-2.8 0.5,0.3 -1.3,0.5 -1.7,0.9 3.3,-1.6 10.7,-1.2 15.3,0.9 5.5,2.5 11.6,10.1 11.9,17.2 l 0.3,0.1 c -0.1,2.8 0.4,6.1 -0.6,9.1 l 0.8,-1.5"
|
||||
id="path450" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 951.9,544.1 -0.2,0.9 c 0.9,1.2 1.6,2.4 2.7,3.4 -0.9,-1.6 -1.4,-2.2 -2.5,-4.3"
|
||||
id="path452" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 953.9,544 c -0.5,-0.5 -0.7,-1.1 -1,-1.7 0.3,1.1 0.9,2 1.4,2.9 l -0.4,-1.2"
|
||||
id="path454" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 990.1,536.1 -0.2,0.5 c -0.4,2.5 -1.1,5 -2.3,7.3 1.3,-2.4 2.1,-5.1 2.5,-7.8"
|
||||
id="path456" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.5,500.7 c 0.9,-0.3 2.2,-0.2 3.1,-0.4 -1.2,0.1 -2.5,0.2 -3.7,0.3 l 0.6,0.1"
|
||||
id="path458" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 930.3,517.3 c 0.2,1.9 -1.4,2.6 0.4,1.4 0.9,-2.2 -0.4,-0.6 -0.4,-1.4"
|
||||
id="path460" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 928.2,526.1 c 0.4,-1.3 0.5,-2 0.6,-2.8 -1.1,1.5 -0.5,1.8 -0.6,2.8"
|
||||
id="path462" />
|
||||
</g>
|
||||
<g
|
||||
class="st7"
|
||||
id="g571">
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000091732848191404214390000004736846775492618424_"
|
||||
cx="-37.305"
|
||||
cy="10365.16"
|
||||
r="173.2404"
|
||||
gradientTransform="matrix(0.8642,0.5228,-0.5025,0.9115,5995.1982,-8755.3174)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop466" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop468" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000091732848191404214390000004736846775492618424_);enable-background:new"
|
||||
cx="766.20001"
|
||||
cy="645.90002"
|
||||
rx="173.2"
|
||||
ry="181.5"
|
||||
id="ellipse471" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000114788164137069528000000005957745660025105319_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4501.6509"
|
||||
y1="506.22601"
|
||||
x2="4698.46"
|
||||
y2="506.22601"
|
||||
gradientTransform="matrix(-0.7151,0.699,-0.5383,-0.5506,4391.564,-2623.3542)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop473" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop475" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000114788164137069528000000005957745660025105319_);enable-background:new"
|
||||
points="810.7,153.3 949,375.1 885,415.5 700.3,321.9 "
|
||||
id="polygon478" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000054962312987295980090000006017935243511788676_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2066.0298"
|
||||
y1="7874.2495"
|
||||
x2="2337.1929"
|
||||
y2="7874.2495"
|
||||
gradientTransform="matrix(0.7774,0.629,-0.629,0.7774,4107.1865,-7204.9038)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop480" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop482" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000054962312987295980090000006017935243511788676_);enable-background:new"
|
||||
points="905.6,201.5 1025.1,241.8 1001,349.2 871.9,494.7 784.8,279.5 810.7,153.3 "
|
||||
id="polygon485" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000012442755421995762960000014664915799359269053_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7687.7383"
|
||||
y1="5138.3574"
|
||||
x2="-7185.3882"
|
||||
y2="5138.3574"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,-1099.8982,-8403.8916)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop487" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop489" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000012442755421995762960000014664915799359269053_);enable-background:new"
|
||||
points="629.2,399.9 799.9,213.2 939.5,373.1 458.3,613.8 "
|
||||
id="polygon492" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000086651592687441638420000016273738828393233579_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9454.1855"
|
||||
y1="2925.7485"
|
||||
x2="9671.4678"
|
||||
y2="2925.7485"
|
||||
gradientTransform="matrix(-0.3483,0.5724,-0.7648,-0.6285,6665.2769,-3309.3779)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop494" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop496" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000086651592687441638420000016273738828393233579_);enable-background:new"
|
||||
points="1226.6,518.1 988.7,310.2 972.8,123.9 1211.9,391.7 "
|
||||
id="polygon499" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000095314929038062691570000012080618537926193552_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-4049.3596"
|
||||
y1="6098.5605"
|
||||
x2="-3743.8562"
|
||||
y2="6098.5605"
|
||||
gradientTransform="matrix(0.7151,-0.699,0.699,0.7151,-446.3692,-6772.9209)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop501" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop503" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000095314929038062691570000012080618537926193552_);enable-background:new"
|
||||
points="1208.9,409.2 988.7,310.2 784.8,279.5 889.2,212.3 1029.8,93.1 "
|
||||
id="polygon506" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000069384093065957304470000008686477747994526866_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6255.8599"
|
||||
y1="2547.1248"
|
||||
x2="6490.9126"
|
||||
y2="2547.1248"
|
||||
gradientTransform="matrix(-0.5898,0.8076,-0.8076,-0.5898,6758.6099,-3397.5225)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop508" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop510" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000069384093065957304470000008686477747994526866_);enable-background:new"
|
||||
points="730.2,237.8 972.8,123.9 1043.6,409.2 960,371.1 "
|
||||
id="polygon513" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000174570387500765410560000018201440021002273169_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7022.96"
|
||||
y1="-1443.5104"
|
||||
x2="-6656.459"
|
||||
y2="-1443.5104"
|
||||
gradientTransform="matrix(-0.2682,-0.9634,1.0501,-0.2924,294.0579,-6276.7939)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop515" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop517" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000174570387500765410560000018201440021002273169_);enable-background:new"
|
||||
points="756.4,656.4 507.9,953.1 521.4,741.6 657.1,531.1 "
|
||||
id="polygon520" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000041276010603755054700000012950505128597653693_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6476.2949"
|
||||
y1="-3050.6917"
|
||||
x2="6860.4126"
|
||||
y2="-3050.6917"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,5603.1353,-4641.4233)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop522" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop524" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000041276010603755054700000012950505128597653693_);enable-background:new"
|
||||
points="628.2,832 516.1,895 427.7,829.7 397,619.9 699,580.8 766.2,642.6 "
|
||||
id="polygon527" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000061435600823447587540000000552723606534874028_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-14448.05"
|
||||
y1="-4270.9775"
|
||||
x2="-13998.346"
|
||||
y2="-4270.9775"
|
||||
gradientTransform="matrix(-0.2347,-0.2596,0.879,-0.2953,1043.0485,-4355.957)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop529" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop531" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000061435600823447587540000000552723606534874028_);enable-background:new"
|
||||
points="458.3,613.8 806,449.6 700.3,584.1 431.9,727.7 "
|
||||
id="polygon534" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000002351047188999019860000002566414104328457898_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12772.947"
|
||||
y1="6937.4038"
|
||||
x2="13680.892"
|
||||
y2="6937.4038"
|
||||
gradientTransform="matrix(0.1765,0.3022,-0.9209,0.1087,4716.2749,-3888.3674)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop536" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop538" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000002351047188999019860000002566414104328457898_);enable-background:new"
|
||||
points="893.4,986.9 504.3,864.5 521.4,741.6 740.4,729.5 "
|
||||
id="polygon541" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000004534978137110897330000008179059058368671906_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7687.7383"
|
||||
y1="5080.5278"
|
||||
x2="-7400.5278"
|
||||
y2="5080.5278"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,-1099.8982,-8403.8916)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop543" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop545" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000004534978137110897330000008179059058368671906_);enable-background:new"
|
||||
points="458.3,613.8 533.2,379.6 806,449.6 699,580.8 "
|
||||
id="polygon548" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000091017312778810520490000013487813255627565699_"
|
||||
cx="-108.2559"
|
||||
cy="10030.869"
|
||||
r="181.9404"
|
||||
gradientTransform="matrix(0.8642,0.5228,-0.5025,0.9115,5995.1982,-8755.3174)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop550" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop552" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000091017312778810520490000013487813255627565699_);enable-background:new"
|
||||
cx="871.90002"
|
||||
cy="305.39999"
|
||||
rx="181.89999"
|
||||
ry="190.60001"
|
||||
id="ellipse555" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000093149179829732349710000008128861407447028144_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6476.3066"
|
||||
y1="-3135.9316"
|
||||
x2="6770.707"
|
||||
y2="-3135.9316"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,5603.1353,-4641.4233)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop557" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop559" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000093149179829732349710000008128861407447028144_);enable-background:new"
|
||||
points="532.1,848 501.4,638.1 766.2,642.6 717.1,936.1 628.2,832 "
|
||||
id="polygon562" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000034071598378061202680000005682775137060128388_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2446.0144"
|
||||
y1="8616.9512"
|
||||
x2="-2179.4543"
|
||||
y2="8616.9512"
|
||||
gradientTransform="matrix(0.9797,-0.2004,0.2004,0.9797,1206.5922,-8533.6934)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop564" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop566" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000034071598378061202680000005682775137060128388_);enable-background:new"
|
||||
points="730.2,345.4 784.8,279.5 797.9,413.5 533.2,379.6 "
|
||||
id="polygon569" />
|
||||
</g>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000147222259863327894370000004713185813428820113_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-8054.3379"
|
||||
y1="5144.2563"
|
||||
x2="-7614.1865"
|
||||
y2="5144.2563"
|
||||
gradientTransform="matrix(0.4172,-0.9088,0.9088,0.4172,401.7775,-8335.0615)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop573" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop575" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000147222259863327894370000004713185813428820113_);enable-background:new"
|
||||
points="1984.5,1253.1 1507.2,881.3 1602,731.1 2140.7,840.5 "
|
||||
id="polygon578" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000063620498617606890090000008720960172290484925_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-338.647"
|
||||
y1="-4980.8984"
|
||||
x2="213.09731"
|
||||
y2="-4980.8984"
|
||||
gradientTransform="matrix(-0.9511,-0.3089,0.3089,-0.9511,3185.2781,-3756.8625)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop580" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop582" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000063620498617606890090000008720960172290484925_);enable-background:new"
|
||||
points="1645,1256.7 1426.9,1290.3 1413.7,1026.6 1556,569.8 1783,991.1 1934.2,1191.5 "
|
||||
id="polygon585" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000078013590621525976610000006727138897565908112_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5217.2197"
|
||||
y1="6487.8555"
|
||||
x2="5885.4883"
|
||||
y2="6487.8555"
|
||||
gradientTransform="matrix(-0.03594599,0.9994,-0.9994,-0.03594599,8477.332,-4502.8599)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop587" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop589" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000078013590621525976610000006727138897565908112_);enable-background:new"
|
||||
points="1995.2,701.9 1737.9,1144.3 1601.6,667.3 1933.3,482.6 "
|
||||
id="polygon592" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000129169157574715853980000000301106401069963673_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="8268.3721"
|
||||
y1="570.83643"
|
||||
x2="8986.3359"
|
||||
y2="570.83643"
|
||||
gradientTransform="matrix(-0.07909842,0.6653,-0.9567,-0.2541,3183.1792,-4748.3145)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop594" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop596" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000129169157574715853980000000301106401069963673_);enable-background:new"
|
||||
points="2102.8,1126.5 1757.4,979.3 1814,558.8 2004.8,870.8 "
|
||||
id="polygon599" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000051343387064157711410000007010731585534318724_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6628.8418"
|
||||
y1="4207.9429"
|
||||
x2="-6236.5361"
|
||||
y2="4207.9429"
|
||||
gradientTransform="matrix(0.2612,-0.9653,0.9653,0.2612,-653.4725,-6361.3896)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop601" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop603" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000051343387064157711410000007010731585534318724_);enable-background:new"
|
||||
points="2068.4,836 1927.9,1204.4 1463.9,778.1 1621.5,776.7 "
|
||||
id="polygon606" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000169518436558334241300000010220786071391330234_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="1836.1005"
|
||||
y1="7829.1611"
|
||||
x2="2258.3394"
|
||||
y2="7829.1611"
|
||||
gradientTransform="matrix(0.9919,-0.1269,0.1269,0.9919,-1274.858,-6407.4478)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop608" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop610" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000169518436558334241300000010220786071391330234_);enable-background:new"
|
||||
points="1983.4,1264.7 1663.6,1217.3 1515.2,932.3 "
|
||||
id="polygon613" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000003075246375309062510000005919818320267613622_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10926.994"
|
||||
y1="12790.337"
|
||||
x2="11459.436"
|
||||
y2="12790.337"
|
||||
gradientTransform="matrix(0.3792,0.341,-0.9317,0.5609,7924.4082,-10914.702)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop615" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop617" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000003075246375309062510000005919818320267613622_);enable-background:new"
|
||||
points="413.8,-51.6 325.9,197.4 26.2,146.4 276.7,-75.4 "
|
||||
id="polygon620" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000151504943794861704500000013710966191068745143_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9379.0352"
|
||||
y1="6171.8062"
|
||||
x2="9964.666"
|
||||
y2="6171.8062"
|
||||
gradientTransform="matrix(0.353,0.5695,-0.9064,0.3978,2451.355,-7980.2593)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop622" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop624" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000151504943794861704500000013710966191068745143_);enable-background:new"
|
||||
points="538.6,70 180.3,178.5 -2.7,-115.1 320.6,-31.9 "
|
||||
id="polygon627" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000116945986907177242930000003619234899467008173_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7309.3979"
|
||||
y1="-1249.7209"
|
||||
x2="-6990.3579"
|
||||
y2="-1249.7209"
|
||||
gradientTransform="matrix(-0.3976,-0.9175,0.9175,-0.3976,-1553.5924,-6849.3574)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop629" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop631" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000116945986907177242930000003619234899467008173_);enable-background:new"
|
||||
points="354.7,-57.8 441.9,252.1 -163.5,256 -37.5,164 "
|
||||
id="polygon634" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000018934028870046402510000005056381095522587327_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-3331.885"
|
||||
y1="6389.4604"
|
||||
x2="-2896.9707"
|
||||
y2="6389.4604"
|
||||
gradientTransform="matrix(0.6964,-0.7176,0.7176,0.6964,-2068.2891,-6498.0825)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop636" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop638" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000018934028870046402510000005056381095522587327_);enable-background:new"
|
||||
points="626.8,154.1 343.4,309.7 69,218.8 "
|
||||
id="polygon641" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000101790783768249243120000007920411576515842194_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6562.5264"
|
||||
y1="1880.1191"
|
||||
x2="-6127.6533"
|
||||
y2="1880.1191"
|
||||
gradientTransform="matrix(-0.09480336,-0.9955,0.9955,-0.09480336,-1443.6445,-5086.2905)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop643" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop645" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000101790783768249243120000007920411576515842194_);enable-background:new"
|
||||
points="1185.8,818.7 1120.5,1135.3 873.3,1285.3 "
|
||||
id="polygon648" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 28 KiB |
@@ -1,836 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 2560 1600"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="2560x1600.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
width="2560"
|
||||
height="1600"
|
||||
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="defs1973" /><sodipodi:namedview
|
||||
id="namedview1971"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.61916667"
|
||||
inkscape:cx="632.30148"
|
||||
inkscape:cy="600"
|
||||
inkscape:window-width="1560"
|
||||
inkscape:window-height="930"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1726">
|
||||
.st0{clip-path:url(#SVGID_00000000928596792312907720000015067976839969243561_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000056411074606979671790000012680755076389884083_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000023989492384892967260000009710341851984184492_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000161595034260526515850000010596232777479458947_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000076589682521798879920000011921484468618510504_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000022553105745205153220000002526306067487353472_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000023253950792642503570000010545805774672953244_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000170260504085748133930000012521765846385128116_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000082363585068762561560000013790172994988761013_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000098913682242597510470000011006784818807666326_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000115489987498632649720000011008985375483231643_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000047059192306680669690000007811741663679149985_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000101792577392231575320000016756205186510304687_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000123412959991921090160000015783343612426765460_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000134237491014946211050000010066306547626477466_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000034772572330934262940000010374810663227991682_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000021090192784433479690000012108295630625962133_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000085224912268995596740000001192375694511959694_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000036951329762708534880000016297398792263597696_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000049200990058816053730000014783409975399489939_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000111187147672048172680000009805526042319811762_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000002352292896172037110000000285475706208253351_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000031180986187426161680000014527347853894108845_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000083073393030777054170000008682096802884454789_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000054964391004092095810000003455071117432939653_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000090288739315912149810000014547160397308911281_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000001633458465395349520000002138339211221285271_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000078724928392494712130000004724194500713547951_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000044880333438437072450000007434997047063731332_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000045615725106276691630000009515850595024568499_);enable-background:new ;}
|
||||
</style>
|
||||
<g
|
||||
id="g1968"
|
||||
transform="scale(1.3333333)">
|
||||
<defs
|
||||
id="defs1729">
|
||||
<rect
|
||||
id="SVGID_1_"
|
||||
width="1920"
|
||||
height="1200"
|
||||
x="0"
|
||||
y="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000172401503128712534600000011968226326295796110_">
|
||||
<use
|
||||
xlink:href="#SVGID_1_"
|
||||
style="overflow:visible"
|
||||
id="use1731" />
|
||||
</clipPath>
|
||||
<g
|
||||
id="Calque_1-2"
|
||||
clip-path="url(#SVGID_00000172401503128712534600000011968226326295796110_)">
|
||||
<rect
|
||||
x="-17.5"
|
||||
y="-15.7"
|
||||
class="st1"
|
||||
width="1955"
|
||||
height="1231.4"
|
||||
id="rect1734" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000089532484294864443560000001156018140746127002_"
|
||||
cx="222.92"
|
||||
cy="-8061.8291"
|
||||
r="1365.4"
|
||||
gradientTransform="matrix(0.5,0,0,-0.5,-106.46,-3973.7146)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1736" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1738" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000089532484294864443560000001156018140746127002_);enable-background:new"
|
||||
cx="5"
|
||||
cy="57.200001"
|
||||
r="682.70001"
|
||||
id="circle1741" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000137818120280239734990000003026529580521251758_"
|
||||
cx="-2489.2502"
|
||||
cy="5715.2759"
|
||||
r="342.10001"
|
||||
gradientTransform="matrix(-2.8317,2.4125,0.8042,0.9439,-10798.391,854.2648)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1743" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1745" />
|
||||
</radialGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000137818120280239734990000003026529580521251758_);enable-background:new"
|
||||
points="1374,-829.6 1988.4,-108.2 313.1,1318.8 -301.3,597.5 "
|
||||
id="polygon1748" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000058583359066475248070000015883288929621046165_"
|
||||
cx="1076.72"
|
||||
cy="-8569.6289"
|
||||
r="459.39999"
|
||||
gradientTransform="matrix(0.5,0,0,-0.5,-106.46,-3973.7146)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DAC9BA"
|
||||
id="stop1750" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1752" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000058583359066475248070000015883288929621046165_);enable-background:new"
|
||||
cx="431.89999"
|
||||
cy="311.10001"
|
||||
r="229.7"
|
||||
id="circle1755" />
|
||||
<g
|
||||
class="st5"
|
||||
id="g1781">
|
||||
<path
|
||||
class="st6"
|
||||
d="m 966.2,602.3 c -1.3,0 0.2,0.7 2,0.9 0.5,-0.4 0.9,-0.7 1.3,-1.1 -1.1,0.2 -2.2,0.3 -3.3,0.2"
|
||||
id="path1757" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 973.3,600.5 c 0.8,-1.1 1.4,-2.3 1.6,-3.5 -0.2,0.9 -0.6,1.6 -1.1,2.4 -2.5,1.5 -0.2,-0.9 0,-1.9 -2.7,3.4 -0.4,2.1 -0.5,3"
|
||||
id="path1759" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 975.9,593.7 c 0.2,-2.4 -0.5,-1.6 -0.7,-0.7 0.3,0.1 0.5,1.7 0.7,0.7"
|
||||
id="path1761" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.2,561.3 c 0.7,0.1 1.5,0.2 1.4,0.4 0.8,-0.2 1,-0.3 -1.4,-0.4"
|
||||
id="path1763" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 962.6,561.7 -0.5,0.1 0.5,-0.1 v 0"
|
||||
id="path1765" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 984.5,594.6 c 0.1,2.1 -0.6,3.2 -1.3,5 l -1.1,0.6 c -0.9,1.8 0.1,1.1 -0.6,2.6 -1.5,1.3 -4.4,4 -5.4,4.3 -0.7,0 0.5,-0.8 0.6,-1.1 -1.9,1.3 -1.6,2 -4.5,2.8 l -0.1,-0.2 c -7.3,3.5 -17.5,-3.4 -17.4,-12.7 -0.1,0.6 -0.2,0.4 -0.4,0.7 -0.4,-4.8 2.2,-9.6 6.6,-11.6 4.3,-2.1 9.3,-1.3 12.4,1.6 -1.7,-2.2 -5,-4.5 -9,-4.3 -3.9,0.1 -7.5,2.5 -8.8,5.2 -2,1.3 -2.2,4.8 -3.1,5.5 -1.2,8.6 2.2,12.3 7.9,16.7 0.9,0.6 0.3,0.7 0.4,1.2 -1.9,-0.9 -3.6,-2.2 -5.1,-3.9 0.8,1.1 1.6,2.2 2.6,3 -1.8,-0.6 -4.2,-4.3 -4.9,-4.5 3.1,5.5 12.5,9.7 17.4,7.6 -2.3,0.1 -5.2,0 -7.7,-0.9 -1.1,-0.6 -2.5,-1.7 -2.3,-1.9 6.7,2.5 13.7,1.9 19.5,-2.8 1.5,-1.2 3.1,-3.1 3.6,-3.1 -0.7,1.1 0.1,0.5 -0.4,1.4 1.5,-2.4 -0.6,-1 1.5,-4.1 l 0.8,1.1 c -0.3,-2 2.5,-4.4 2.2,-7.5 0.6,-1 0.7,1 0,3.2 0.9,-2.4 0.2,-2.8 0.5,-4.8 0.3,0.7 0.6,1.4 0.8,2.1 -0.6,-2.4 0.6,-4 0.9,-5.3 -0.3,-0.1 -0.9,1 -1.1,-1.7 0,-1.2 0.3,-0.6 0.5,-0.9 -0.2,-0.1 -0.9,-1.1 -1.2,-2.8 0.3,-0.4 0.7,1.1 1.1,1.1 -0.2,-1.4 -0.7,-2.5 -0.7,-3.6 -1.1,-2.3 -0.4,0.3 -1.3,-1 -1.2,-3.6 1,-0.8 1.1,-2.5 1.8,2.5 2.8,6.5 3.2,8.1 -0.4,-2 -0.9,-3.9 -1.6,-5.8 0.5,0.2 -0.9,-4.1 0.7,-1.2 -1.7,-6.1 -7.1,-11.8 -12.1,-14.5 0.6,0.6 1.4,1.3 1.1,1.4 -2.5,-1.5 -2.1,-1.6 -2.4,-2.2 -2,-0.8 -2.2,0.1 -3.5,0 -3.8,-2 -4.6,-1.8 -8.1,-3.1 l 0.2,0.8 c -2.5,-0.8 -3,0.3 -5.7,0 -0.2,-0.1 0.9,-0.5 1.7,-0.6 -2.5,0.3 -2.3,-0.5 -4.7,0.1 0.6,-0.4 1.2,-0.7 1.8,-1 -2,0.1 -4.8,1.2 -3.9,0.2 -3.3,1.5 -9.1,3.5 -12.3,6.5 l -0.1,-0.7 c -1.5,1.8 -6.5,5.3 -6.9,7.7 l -0.4,0.1 c -0.8,1.3 -1.3,2.8 -1.9,4.2 -1,1.7 -1.5,0.7 -1.3,0.9 -2,4 -3,7.4 -3.8,10.2 0.6,0.9 0,5.5 0.2,9.1 -1,18.1 12.7,35.7 27.7,39.7 2.2,0.8 5.5,0.8 8.2,0.8 -3.3,-0.9 -3.7,-0.5 -6.9,-1.6 -2.3,-1.1 -2.8,-2.3 -4.4,-3.7 l 0.6,1.1 c -3.2,-1.1 -1.9,-1.4 -4.5,-2.2 l 0.7,-0.9 c -1,-0.1 -2.7,-1.7 -3.2,-2.7 h -1.1 c -1.4,-1.7 -2.1,-2.9 -2,-3.8 l -0.4,0.7 c -0.4,-0.7 -5,-6.3 -2.6,-5 -0.4,-0.4 -1,-0.7 -1.7,-1.8 l 0.5,-0.6 c -1.1,-1.5 -2.1,-3.4 -2,-4 0.6,0.8 1,1 1.5,1.1 -2.9,-7.2 -3.1,-0.4 -5.3,-7.3 h 0.5 c -0.4,-0.5 -0.6,-1.1 -0.9,-1.7 l 0.2,-2 c -2.1,-2.4 -0.6,-10.3 -0.3,-14.6 0.2,-1.7 1.7,-3.6 2.9,-6.5 l -0.7,-0.1 c 1.4,-2.4 7.8,-9.5 10.7,-9.1 1.4,-1.8 -0.3,0 -0.6,-0.5 3.2,-3.3 4.1,-2.3 6.3,-2.9 2.3,-1.4 -2,0.5 -0.9,-0.5 4,-1 2.8,-2.3 8,-2.8 0.5,0.3 -1.3,0.5 -1.7,0.9 3.3,-1.6 10.5,-1.2 15.1,0.9 5.4,2.5 11.4,10 11.7,17 l 0.3,0.1 c -0.1,2.8 0.4,6 -0.6,9 l 0.7,-1.7"
|
||||
id="path1767" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 951.9,604.1 -0.2,0.9 c 0.9,1.2 1.6,2.4 2.7,3.4 -0.9,-1.6 -1.4,-2.2 -2.5,-4.3"
|
||||
id="path1769" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 953.9,604 c -0.5,-0.5 -0.7,-1.1 -1,-1.7 0.3,1.1 0.9,2 1.4,2.9 l -0.4,-1.2"
|
||||
id="path1771" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 990.1,596.1 -0.2,0.5 c -0.4,2.5 -1.1,5 -2.3,7.3 1.3,-2.4 2.1,-5.1 2.5,-7.8"
|
||||
id="path1773" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.5,560.7 c 0.9,-0.3 2.2,-0.2 3.1,-0.4 -1.2,0.1 -2.5,0.2 -3.7,0.3 l 0.6,0.1"
|
||||
id="path1775" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 930.3,577.3 c 0.2,1.9 -1.4,2.6 0.4,1.4 0.9,-2.2 -0.4,-0.6 -0.4,-1.4"
|
||||
id="path1777" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 928.2,586.1 c 0.4,-1.3 0.5,-2 0.6,-2.8 -1.1,1.5 -0.5,1.8 -0.6,2.8"
|
||||
id="path1779" />
|
||||
</g>
|
||||
<g
|
||||
class="st7"
|
||||
id="g1888">
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000084523137185723558220000015279798023442974080_"
|
||||
cx="-892.98358"
|
||||
cy="-4458.9219"
|
||||
r="173.24001"
|
||||
gradientTransform="matrix(0.8642,0.5228,0.5025,-0.9115,3766.6392,-2864.1973)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1783" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1785" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000084523137185723558220000015279798023442974080_);enable-background:new"
|
||||
cx="766.20001"
|
||||
cy="705.90002"
|
||||
rx="173.2"
|
||||
ry="181.5"
|
||||
id="ellipse1788" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000134943907407943021780000012076970261184592781_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="1876.1453"
|
||||
y1="3075.6453"
|
||||
x2="2072.9485"
|
||||
y2="3075.6453"
|
||||
gradientTransform="matrix(-0.7151,0.699,0.5383,0.5506,585.8191,-2700.2151)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1790" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1792" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000134943907407943021780000012076970261184592781_);enable-background:new"
|
||||
points="810.7,213.3 949,435.1 885,475.5 700.3,381.9 "
|
||||
id="polygon1795" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000178894981057875746550000016000597904032110004_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="896.91992"
|
||||
y1="-1919.0027"
|
||||
x2="1168.0834"
|
||||
y2="-1919.0027"
|
||||
gradientTransform="matrix(0.7774,0.629,0.629,-0.7774,1270.2474,-1779.9875)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1797" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1799" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000178894981057875746550000016000597904032110004_);enable-background:new"
|
||||
points="1001,409.2 871.9,554.7 784.8,339.5 810.7,213.3 905.6,261.5 1025.1,301.8 "
|
||||
id="polygon1802" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000127727388437009210270000007011599435678376117_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6821.7275"
|
||||
y1="-1177.3477"
|
||||
x2="-6319.3618"
|
||||
y2="-1177.3477"
|
||||
gradientTransform="matrix(0.3915,-0.9202,-0.9202,-0.3915,2206.2451,-5996.0439)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1804" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1806" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000127727388437009210270000007011599435678376117_);enable-background:new"
|
||||
points="629.2,459.9 799.9,273.2 939.5,433.1 458.3,673.8 "
|
||||
id="polygon1809" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000101086087328235979620000009567443969736187033_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5893.3677"
|
||||
y1="1236.082"
|
||||
x2="6110.6479"
|
||||
y2="1236.082"
|
||||
gradientTransform="matrix(-0.3483,0.5724,0.7648,0.6285,2242.1489,-3826.8796)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1811" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1813" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000101086087328235979620000009567443969736187033_);enable-background:new"
|
||||
points="1226.6,578.1 988.7,370.2 972.8,183.9 1211.9,451.7 "
|
||||
id="polygon1816" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000089574557307665542530000009834880936151122096_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-3231.1003"
|
||||
y1="-1439.1991"
|
||||
x2="-2925.604"
|
||||
y2="-1439.1991"
|
||||
gradientTransform="matrix(0.7151,-0.699,-0.699,-0.7151,2225.2839,-2809.1555)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1818" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1820" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000089574557307665542530000009834880936151122096_);enable-background:new"
|
||||
points="988.7,370.2 784.8,339.5 889.2,272.3 1029.8,153.1 1208.9,469.2 "
|
||||
id="polygon1823" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000137814979148882877880000010328272323069511300_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3576.7354"
|
||||
y1="1465.4857"
|
||||
x2="3811.7944"
|
||||
y2="1465.4857"
|
||||
gradientTransform="matrix(-0.5898,0.8076,0.8076,0.5898,1937.7645,-3540.3677)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1825" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1827" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000137814979148882877880000010328272323069511300_);enable-background:new"
|
||||
points="730.2,297.8 972.8,183.9 1043.6,469.2 960,431.1 "
|
||||
id="polygon1830" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000145044256057076252910000000848199297658990999_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6686.6108"
|
||||
y1="4457.1631"
|
||||
x2="-6320.0996"
|
||||
y2="4457.1631"
|
||||
gradientTransform="matrix(-0.2682,-0.9634,-1.0501,0.2924,3548.3164,-6773.793)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1832" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1834" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000145044256057076252910000000848199297658990999_);enable-background:new"
|
||||
points="756.4,716.4 507.9,1013.1 521.4,801.6 657.1,591.1 "
|
||||
id="polygon1837" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000127734621094974517750000005240452990198260907_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4154.2529"
|
||||
y1="6158.4248"
|
||||
x2="4538.3779"
|
||||
y2="6158.4248"
|
||||
gradientTransform="matrix(-0.9257,0.3783,0.3783,0.9257,2277.6904,-6579.7749)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1839" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1841" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000127734621094974517750000005240452990198260907_);enable-background:new"
|
||||
points="427.7,889.7 397,679.9 699,640.8 766.2,702.6 628.2,892 516.1,955 "
|
||||
id="polygon1844" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000011728417832659381670000003564161052773509289_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-11701.892"
|
||||
y1="6459.522"
|
||||
x2="-11252.192"
|
||||
y2="6459.522"
|
||||
gradientTransform="matrix(-0.2347,-0.2596,-0.879,0.2953,3610.8835,-4228.9741)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1846" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1848" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000011728417832659381670000003564161052773509289_);enable-background:new"
|
||||
points="458.3,673.8 806,509.6 700.3,644.1 431.9,787.7 "
|
||||
id="polygon1851" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000013888782862855192130000004048158289608727716_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="7435.6807"
|
||||
y1="-916.03363"
|
||||
x2="8343.6211"
|
||||
y2="-916.03363"
|
||||
gradientTransform="matrix(0.1765,0.3022,0.9209,-0.1087,112.9515,-1561.0907)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1853" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1855" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000013888782862855192130000004048158289608727716_);enable-background:new"
|
||||
points="893.4,1046.9 504.3,924.5 521.4,801.6 740.4,789.5 "
|
||||
id="polygon1858" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000032636350723051708950000003397749158443223972_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6821.7275"
|
||||
y1="-1119.5144"
|
||||
x2="-6534.5"
|
||||
y2="-1119.5144"
|
||||
gradientTransform="matrix(0.3915,-0.9202,-0.9202,-0.3915,2206.2451,-5996.0439)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1860" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1862" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000032636350723051708950000003397749158443223972_);enable-background:new"
|
||||
points="458.3,673.8 533.2,439.6 806,509.6 699,640.8 "
|
||||
id="polygon1865" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000032630432101678314960000008468116941741282944_"
|
||||
cx="-963.93372"
|
||||
cy="-4124.6318"
|
||||
r="181.94"
|
||||
gradientTransform="matrix(0.8642,0.5228,0.5025,-0.9115,3766.6392,-2864.1973)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1867" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1869" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000032630432101678314960000008468116941741282944_);enable-background:new"
|
||||
cx="871.90002"
|
||||
cy="365.39999"
|
||||
rx="181.89999"
|
||||
ry="190.60001"
|
||||
id="ellipse1872" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000019670513155277172690000010650740053110845579_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4154.2529"
|
||||
y1="6243.6416"
|
||||
x2="4448.6611"
|
||||
y2="6243.6416"
|
||||
gradientTransform="matrix(-0.9257,0.3783,0.3783,0.9257,2277.6904,-6579.7749)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1874" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1876" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000019670513155277172690000010650740053110845579_);enable-background:new"
|
||||
points="501.4,698.1 766.2,702.6 717.1,996.1 628.2,892 532.1,908 "
|
||||
id="polygon1879" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000075149650005683383290000017910244360390472588_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2155.8843"
|
||||
y1="-3099.9363"
|
||||
x2="-1889.3284"
|
||||
y2="-3099.9363"
|
||||
gradientTransform="matrix(0.9797,-0.2004,-0.2004,-0.9797,2028.0126,-3010.5703)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1881" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1883" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000075149650005683383290000017910244360390472588_);enable-background:new"
|
||||
points="730.2,405.4 784.8,339.5 797.9,473.5 533.2,439.6 "
|
||||
id="polygon1886" />
|
||||
</g>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000106830734271642211480000010917764946327503256_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7182.4272"
|
||||
y1="-1133.2759"
|
||||
x2="-6742.2847"
|
||||
y2="-1133.2759"
|
||||
gradientTransform="matrix(0.4172,-0.9088,-0.9088,-0.4172,3683.3728,-5809.2061)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1890" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1892" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000106830734271642211480000010917764946327503256_);enable-background:new"
|
||||
points="1984.5,1313.1 1507.2,941.3 1602,791.1 2140.7,900.5 "
|
||||
id="polygon1895" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000008838014493502950990000002106571545151364536_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-1626.0773"
|
||||
y1="7428.6694"
|
||||
x2="-1074.3547"
|
||||
y2="7428.6694"
|
||||
gradientTransform="matrix(-0.9511,-0.3089,-0.3089,0.9511,2716.5413,-6422.6528)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1897" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1899" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000008838014493502950990000002106571545151364536_);enable-background:new"
|
||||
points="1413.7,1086.6 1556,629.8 1783,1051.1 1934.2,1251.5 1645,1316.7 1426.9,1350.3 "
|
||||
id="polygon1902" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000170269309057204161380000001402138955680408972_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2743.3877"
|
||||
y1="-1449.7526"
|
||||
x2="3411.6838"
|
||||
y2="-1449.7526"
|
||||
gradientTransform="matrix(-0.03594599,0.9994,0.9994,0.03594599,3353.26,-2151.4868)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1904" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1906" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000170269309057204161380000001402138955680408972_);enable-background:new"
|
||||
points="1995.2,761.9 1737.9,1204.3 1601.6,727.3 1933.3,542.6 "
|
||||
id="polygon1909" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000044170033691582868540000003890608974300690825_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4772.7378"
|
||||
y1="4349.7412"
|
||||
x2="5490.6982"
|
||||
y2="4349.7412"
|
||||
gradientTransform="matrix(-0.07909842,0.6653,0.9567,0.2541,-1800.8073,-3613.0259)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1911" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1913" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000044170033691582868540000003890608974300690825_);enable-background:new"
|
||||
points="2102.8,1186.5 1757.4,1039.3 1814,618.8 2004.8,930.8 "
|
||||
id="polygon1916" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000115476630761162719110000008737009919211368841_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-5810.9302"
|
||||
y1="-487.71649"
|
||||
x2="-5418.6216"
|
||||
y2="-487.71649"
|
||||
gradientTransform="matrix(0.2612,-0.9653,-0.9653,-0.2612,2723.9082,-4540.3013)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1918" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1920" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000115476630761162719110000008737009919211368841_);enable-background:new"
|
||||
points="2068.4,895.8 1927.9,1264.2 1463.9,837.9 1621.5,836.5 "
|
||||
id="polygon1923" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000137827576320685657670000017367018758092256190_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2024.0944"
|
||||
y1="-2226.9001"
|
||||
x2="2446.3311"
|
||||
y2="-2226.9001"
|
||||
gradientTransform="matrix(0.9919,-0.1269,-0.1269,-0.9919,-750.4193,-766.7698)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1925" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1927" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000137827576320685657670000017367018758092256190_);enable-background:new"
|
||||
points="1515.2,992.3 1983.4,1324.7 1663.6,1277.3 "
|
||||
id="polygon1930" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000062875286114471441420000010794719189137940105_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="8275.8008"
|
||||
y1="-6919.5112"
|
||||
x2="8808.2402"
|
||||
y2="-6919.5112"
|
||||
gradientTransform="matrix(0.3792,0.341,0.9317,-0.5609,3459.2957,-6657.502)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1932" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1934" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000062875286114471441420000010794719189137940105_);enable-background:new"
|
||||
points="413.8,8.4 325.9,257.4 26.2,206.4 276.7,-15.4 "
|
||||
id="polygon1937" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000087375575459333385210000002238624078503487908_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6898.5732"
|
||||
y1="-370.24261"
|
||||
x2="7484.2031"
|
||||
y2="-370.24261"
|
||||
gradientTransform="matrix(0.353,0.5695,0.9064,-0.3978,-1931.4192,-4199.8999)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1939" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1941" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000087375575459333385210000002238624078503487908_);enable-background:new"
|
||||
points="538.6,130 180.3,238.5 -2.7,-55.1 320.6,28.1 "
|
||||
id="polygon1944" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000183223659939389319390000000216397749450872199_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7160.5947"
|
||||
y1="3998.96"
|
||||
x2="-6841.5742"
|
||||
y2="3998.96"
|
||||
gradientTransform="matrix(-0.3976,-0.9175,-0.9175,0.3976,1028.1501,-7745.7251)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1946" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1948" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000183223659939389319390000000216397749450872199_);enable-background:new"
|
||||
points="354.7,2.5 441.9,312.4 -163.5,316.3 -37.5,224.3 "
|
||||
id="polygon1951" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000134940890851672155010000009345720776688027561_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2501.7507"
|
||||
y1="-1775.7073"
|
||||
x2="-2066.8596"
|
||||
y2="-1775.7073"
|
||||
gradientTransform="matrix(0.6964,-0.7176,-0.7176,-0.6964,664.4031,-2629.4871)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1953" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1955" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000134940890851672155010000009345720776688027561_);enable-background:new"
|
||||
points="69,278.8 626.8,214.1 343.4,369.7 "
|
||||
id="polygon1958" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000137118113169258829820000003332003489976044437_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6019.9688"
|
||||
y1="1264.8243"
|
||||
x2="-5585.0967"
|
||||
y2="1264.8243"
|
||||
gradientTransform="matrix(-0.09480336,-0.9955,-0.9955,0.09480336,1738.578,-4784.3081)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1960" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1962" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000137118113169258829820000003332003489976044437_);enable-background:new"
|
||||
points="873.3,1345.3 1185.8,878.7 1120.5,1195.3 "
|
||||
id="polygon1965" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 28 KiB |
@@ -1,843 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 3200 1800"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="3200x1800.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
width="3200"
|
||||
height="1800"
|
||||
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="defs660" /><sodipodi:namedview
|
||||
id="namedview658"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.68796296"
|
||||
inkscape:cx="801.642"
|
||||
inkscape:cy="541.45357"
|
||||
inkscape:window-width="1560"
|
||||
inkscape:window-height="930"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1"
|
||||
showguides="false" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style409">
|
||||
.st0{clip-path:url(#SVGID_00000093167105208028638090000008063807857182655396_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000012445251672029399260000003270595326732136081_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000127010423592997111840000013957416611417821059_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000101814971404403400460000010609185819928108449_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000107557325802917530330000017592151723363848840_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000032650273911267859500000015024660283904495788_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000057851989095838282160000014663790337944238500_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000178165242061037739810000007582236097397314448_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000064329767591241199690000000234602624410839680_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000014609603927260903510000009061463274724089486_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000050627399097891942390000014523148072975367070_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000109731321347584724990000010142768297725207449_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000000926441590728654410000012560741159445150083_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000137832232493639134090000003781239364591219342_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000150812387129626622020000009167110439853258936_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000179608784322168811290000010365701417373876369_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000120531069539707179100000007006360167335202962_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000181089157459068778460000011901104969134050459_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000062164313994880221460000014631417913117263241_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000000902067244530690860000014386718989792038839_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000089550684643991047870000016914371577980347776_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000084507925595054884490000005003863653038598286_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000047780407226302564420000009742350089197221517_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000066480680368962549320000006921805612706891392_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000122678307387241734090000002868210978020395689_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000150100474908702981900000008908414767416909709_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000072960791515750302390000015282140940621514149_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000114770971300144002370000016800559959910618791_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000036952937828426554700000000522215132809990844_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000090974002902719031840000015158340248134540673_);enable-background:new ;}
|
||||
</style>
|
||||
<g
|
||||
id="g655"
|
||||
transform="matrix(1.6666667,0,0,1.6666667,0.50000003,-0.16666667)">
|
||||
<defs
|
||||
id="defs412">
|
||||
<rect
|
||||
id="SVGID_1_"
|
||||
x="-0.30000001"
|
||||
y="0.1"
|
||||
width="1920"
|
||||
height="1080" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000085218408489160111120000007828018339010817721_">
|
||||
<use
|
||||
xlink:href="#SVGID_1_"
|
||||
style="overflow:visible"
|
||||
id="use414" />
|
||||
</clipPath>
|
||||
<g
|
||||
clip-path="url(#SVGID_00000085218408489160111120000007828018339010817721_)"
|
||||
id="g653">
|
||||
<g
|
||||
id="g651">
|
||||
<g
|
||||
id="Calque_1-2">
|
||||
<rect
|
||||
x="-17.299999"
|
||||
y="-74.900002"
|
||||
class="st1"
|
||||
width="1955"
|
||||
height="1231"
|
||||
id="rect417" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000018216064389455096890000017941378598996776607_"
|
||||
cx="-680.75513"
|
||||
cy="15329.986"
|
||||
r="1365.4034"
|
||||
gradientTransform="matrix(0.5,0,0,0.5,345.3775,-7667.793)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop419" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop421" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000018216064389455096890000017941378598996776607_);enable-background:new"
|
||||
cx="5"
|
||||
cy="-2.8"
|
||||
r="682.70001"
|
||||
id="circle424" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000000933302580452020710000013162680496496488371_"
|
||||
cx="-1132.3893"
|
||||
cy="-1996.8872"
|
||||
r="342.09979"
|
||||
gradientTransform="matrix(-2.8317,2.4125,-0.8042,-0.9439,-3965.7385,1030.7192)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop426" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop428" />
|
||||
</radialGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000000933302580452020710000013162680496496488371_);enable-background:new"
|
||||
points="1988.4,-168.2 313.1,1258.8 -301.3,537.5 1374,-889.6 "
|
||||
id="polygon431" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000080193032524742796840000011048436269149918087_"
|
||||
cx="173.04491"
|
||||
cy="15837.789"
|
||||
r="459.40109"
|
||||
gradientTransform="matrix(0.5,0,0,0.5,345.3775,-7667.793)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DAC9BA"
|
||||
id="stop433" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop435" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000080193032524742796840000011048436269149918087_);enable-background:new"
|
||||
cx="431.89999"
|
||||
cy="251.10001"
|
||||
r="229.7"
|
||||
id="circle438" />
|
||||
<g
|
||||
class="st5"
|
||||
id="g464">
|
||||
<path
|
||||
class="st6"
|
||||
d="m 966.2,542.3 c -1.3,0 0.2,0.7 2,0.9 0.5,-0.4 0.9,-0.7 1.3,-1.1 -1.1,0.2 -2.2,0.3 -3.3,0.2"
|
||||
id="path440" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 973.3,540.5 c 0.8,-1.1 1.4,-2.3 1.6,-3.5 -0.2,0.9 -0.6,1.6 -1.1,2.4 -2.5,1.5 -0.2,-0.9 0,-1.9 -2.7,3.4 -0.4,2.1 -0.5,3"
|
||||
id="path442" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 975.9,533.7 c 0.2,-2.4 -0.5,-1.6 -0.7,-0.7 0.3,0.1 0.5,1.7 0.7,0.7"
|
||||
id="path444" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.2,501.3 c 0.7,0.1 1.5,0.2 1.4,0.4 0.8,-0.2 1,-0.3 -1.4,-0.4"
|
||||
id="path446" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 962.6,501.7 -0.5,0.1 0.5,-0.1 v 0"
|
||||
id="path448" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 984.9,534.4 c 0.1,2.1 -0.6,3.2 -1.3,5.1 l -1.1,0.6 c -0.9,1.8 0.1,1.1 -0.6,2.6 -1.5,1.3 -4.5,4.1 -5.5,4.4 -0.7,0 0.5,-0.8 0.6,-1.1 -1.9,1.3 -1.6,2 -4.6,2.8 l -0.1,-0.2 c -7.4,3.6 -17.8,-3.4 -17.7,-12.9 -0.1,0.6 -0.2,0.4 -0.4,0.7 -0.4,-4.9 2.2,-9.7 6.7,-11.8 4.4,-2.1 9.4,-1.3 12.6,1.6 -1.7,-2.2 -5.1,-4.6 -9.1,-4.4 -4,0.1 -7.6,2.5 -8.9,5.3 -2,1.3 -2.2,4.9 -3.1,5.6 -1.2,8.7 2.2,12.5 8,16.9 0.9,0.6 0.3,0.7 0.4,1.2 -1.9,-0.9 -3.7,-2.2 -5.2,-4 0.8,1.1 1.6,2.2 2.6,3 -1.8,-0.6 -4.3,-4.4 -5,-4.6 3.1,5.6 12.7,9.8 17.7,7.7 -2.3,0.1 -5.3,0 -7.8,-0.9 -1.1,-0.6 -2.5,-1.7 -2.3,-1.9 6.8,2.5 13.9,1.9 19.8,-2.8 1.5,-1.2 3.1,-3.1 3.7,-3.1 -0.7,1.1 0.1,0.5 -0.4,1.4 1.5,-2.4 -0.6,-1 1.5,-4.2 l 0.8,1.1 c -0.3,-2 2.5,-4.5 2.2,-7.6 0.6,-1 0.7,1 0,3.2 0.9,-2.4 0.2,-2.8 0.5,-4.9 0.3,0.7 0.6,1.4 0.8,2.1 -0.6,-2.4 0.6,-4.1 0.9,-5.4 -0.3,-0.1 -0.9,1 -1.1,-1.7 0,-1.2 0.3,-0.6 0.5,-0.9 -0.2,-0.1 -0.9,-1.1 -1.2,-2.8 0.3,-0.4 0.7,1.1 1.1,1.1 -0.2,-1.4 -0.7,-2.5 -0.7,-3.7 -1.1,-2.3 -0.4,0.3 -1.3,-1 -1.2,-3.7 1,-0.8 1.1,-2.5 1.8,2.5 2.8,6.6 3.2,8.2 -0.4,-2 -0.9,-4 -1.6,-5.9 0.5,0.2 -0.9,-4.2 0.7,-1.2 -1.7,-6.2 -7.2,-12 -12.3,-14.7 0.6,0.6 1.4,1.3 1.1,1.4 -2.5,-1.5 -2.1,-1.6 -2.4,-2.2 -2,-0.8 -2.2,0.1 -3.6,0 -3.9,-2 -4.7,-1.8 -8.2,-3.1 l 0.2,0.8 c -2.5,-0.8 -3,0.3 -5.8,0 -0.2,-0.1 0.9,-0.5 1.7,-0.6 -2.5,0.3 -2.3,-0.5 -4.8,0.1 0.6,-0.4 1.2,-0.7 1.8,-1 -2,0.1 -4.9,1.2 -4,0.2 -3.3,1.5 -9.2,3.6 -12.5,6.6 l -0.1,-0.7 c -1.5,1.8 -6.6,5.4 -7,7.8 l -0.4,0.1 c -0.8,1.3 -1.3,2.8 -1.9,4.3 -1,1.7 -1.5,0.7 -1.3,0.9 -2,4.1 -3,7.5 -3.9,10.3 0.6,0.9 0,5.6 0.2,9.2 -1,18.4 12.9,36.2 28.1,40.3 2.2,0.8 5.6,0.8 8.3,0.8 -3.3,-0.9 -3.8,-0.5 -7,-1.6 -2.3,-1.1 -2.8,-2.3 -4.5,-3.8 l 0.6,1.1 c -3.2,-1.1 -1.9,-1.4 -4.6,-2.2 l 0.7,-0.9 c -1,-0.1 -2.7,-1.7 -3.2,-2.7 h -1.1 c -1.4,-1.7 -2.1,-2.9 -2,-3.9 l -0.4,0.7 c -0.4,-0.7 -5.1,-6.4 -2.6,-5.1 -0.4,-0.4 -1,-0.7 -1.7,-1.8 l 0.5,-0.6 c -1.1,-1.5 -2.1,-3.4 -2,-4.1 0.6,0.8 1,1 1.5,1.1 -2.9,-7.3 -3.1,-0.4 -5.4,-7.4 h 0.5 c -0.4,-0.5 -0.6,-1.1 -0.9,-1.7 l 0.2,-2 c -2.1,-2.4 -0.6,-10.4 -0.3,-14.8 0.2,-1.7 1.7,-3.7 2.9,-6.6 l -0.7,-0.1 c 1.4,-2.4 7.9,-9.6 10.9,-9.2 1.4,-1.8 -0.3,0 -0.6,-0.5 3.2,-3.3 4.2,-2.3 6.4,-2.9 2.3,-1.4 -2,0.5 -0.9,-0.5 4.1,-1 2.8,-2.3 8.1,-2.8 0.5,0.3 -1.3,0.5 -1.7,0.9 3.3,-1.6 10.7,-1.2 15.3,0.9 5.5,2.5 11.6,10.1 11.9,17.2 l 0.3,0.1 c -0.1,2.8 0.4,6.1 -0.6,9.1 l 0.8,-1.5"
|
||||
id="path450" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 951.9,544.1 -0.2,0.9 c 0.9,1.2 1.6,2.4 2.7,3.4 -0.9,-1.6 -1.4,-2.2 -2.5,-4.3"
|
||||
id="path452" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 953.9,544 c -0.5,-0.5 -0.7,-1.1 -1,-1.7 0.3,1.1 0.9,2 1.4,2.9 l -0.4,-1.2"
|
||||
id="path454" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 990.1,536.1 -0.2,0.5 c -0.4,2.5 -1.1,5 -2.3,7.3 1.3,-2.4 2.1,-5.1 2.5,-7.8"
|
||||
id="path456" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.5,500.7 c 0.9,-0.3 2.2,-0.2 3.1,-0.4 -1.2,0.1 -2.5,0.2 -3.7,0.3 l 0.6,0.1"
|
||||
id="path458" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 930.3,517.3 c 0.2,1.9 -1.4,2.6 0.4,1.4 0.9,-2.2 -0.4,-0.6 -0.4,-1.4"
|
||||
id="path460" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 928.2,526.1 c 0.4,-1.3 0.5,-2 0.6,-2.8 -1.1,1.5 -0.5,1.8 -0.6,2.8"
|
||||
id="path462" />
|
||||
</g>
|
||||
<g
|
||||
class="st7"
|
||||
id="g571">
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000091732848191404214390000004736846775492618424_"
|
||||
cx="-37.305"
|
||||
cy="10365.16"
|
||||
r="173.2404"
|
||||
gradientTransform="matrix(0.8642,0.5228,-0.5025,0.9115,5995.1982,-8755.3174)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop466" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop468" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000091732848191404214390000004736846775492618424_);enable-background:new"
|
||||
cx="766.20001"
|
||||
cy="645.90002"
|
||||
rx="173.2"
|
||||
ry="181.5"
|
||||
id="ellipse471" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000114788164137069528000000005957745660025105319_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4501.6509"
|
||||
y1="506.22601"
|
||||
x2="4698.46"
|
||||
y2="506.22601"
|
||||
gradientTransform="matrix(-0.7151,0.699,-0.5383,-0.5506,4391.564,-2623.3542)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop473" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop475" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000114788164137069528000000005957745660025105319_);enable-background:new"
|
||||
points="949,375.1 885,415.5 700.3,321.9 810.7,153.3 "
|
||||
id="polygon478" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000054962312987295980090000006017935243511788676_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2066.0298"
|
||||
y1="7874.2495"
|
||||
x2="2337.1929"
|
||||
y2="7874.2495"
|
||||
gradientTransform="matrix(0.7774,0.629,-0.629,0.7774,4107.1865,-7204.9038)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop480" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop482" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000054962312987295980090000006017935243511788676_);enable-background:new"
|
||||
points="810.7,153.3 905.6,201.5 1025.1,241.8 1001,349.2 871.9,494.7 784.8,279.5 "
|
||||
id="polygon485" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000012442755421995762960000014664915799359269053_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7687.7383"
|
||||
y1="5138.3574"
|
||||
x2="-7185.3882"
|
||||
y2="5138.3574"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,-1099.8982,-8403.8916)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop487" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop489" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000012442755421995762960000014664915799359269053_);enable-background:new"
|
||||
points="799.9,213.2 939.5,373.1 458.3,613.8 629.2,399.9 "
|
||||
id="polygon492" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000086651592687441638420000016273738828393233579_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9454.1855"
|
||||
y1="2925.7485"
|
||||
x2="9671.4678"
|
||||
y2="2925.7485"
|
||||
gradientTransform="matrix(-0.3483,0.5724,-0.7648,-0.6285,6665.2769,-3309.3779)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop494" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop496" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000086651592687441638420000016273738828393233579_);enable-background:new"
|
||||
points="988.7,310.2 972.8,123.9 1211.9,391.7 1226.6,518.1 "
|
||||
id="polygon499" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000095314929038062691570000012080618537926193552_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-4049.3596"
|
||||
y1="6098.5605"
|
||||
x2="-3743.8562"
|
||||
y2="6098.5605"
|
||||
gradientTransform="matrix(0.7151,-0.699,0.699,0.7151,-446.3692,-6772.9209)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop501" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop503" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000095314929038062691570000012080618537926193552_);enable-background:new"
|
||||
points="1208.9,409.2 988.7,310.2 784.8,279.5 889.2,212.3 1029.8,93.1 "
|
||||
id="polygon506" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000069384093065957304470000008686477747994526866_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6255.8599"
|
||||
y1="2547.1248"
|
||||
x2="6490.9126"
|
||||
y2="2547.1248"
|
||||
gradientTransform="matrix(-0.5898,0.8076,-0.8076,-0.5898,6758.6099,-3397.5225)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop508" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop510" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000069384093065957304470000008686477747994526866_);enable-background:new"
|
||||
points="972.8,123.9 1043.6,409.2 960,371.1 730.2,237.8 "
|
||||
id="polygon513" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000174570387500765410560000018201440021002273169_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7022.96"
|
||||
y1="-1443.5104"
|
||||
x2="-6656.459"
|
||||
y2="-1443.5104"
|
||||
gradientTransform="matrix(-0.2682,-0.9634,1.0501,-0.2924,294.0579,-6276.7939)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop515" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop517" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000174570387500765410560000018201440021002273169_);enable-background:new"
|
||||
points="507.9,953.1 521.4,741.6 657.1,531.1 756.4,656.4 "
|
||||
id="polygon520" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000041276010603755054700000012950505128597653693_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6476.2949"
|
||||
y1="-3050.6917"
|
||||
x2="6860.4126"
|
||||
y2="-3050.6917"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,5603.1353,-4641.4233)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop522" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop524" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000041276010603755054700000012950505128597653693_);enable-background:new"
|
||||
points="766.2,642.6 628.2,832 516.1,895 427.7,829.7 397,619.9 699,580.8 "
|
||||
id="polygon527" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000061435600823447587540000000552723606534874028_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-14448.05"
|
||||
y1="-4270.9775"
|
||||
x2="-13998.346"
|
||||
y2="-4270.9775"
|
||||
gradientTransform="matrix(-0.2347,-0.2596,0.879,-0.2953,1043.0485,-4355.957)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop529" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop531" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000061435600823447587540000000552723606534874028_);enable-background:new"
|
||||
points="806,449.6 700.3,584.1 431.9,727.7 458.3,613.8 "
|
||||
id="polygon534" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000002351047188999019860000002566414104328457898_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12772.947"
|
||||
y1="6937.4038"
|
||||
x2="13680.892"
|
||||
y2="6937.4038"
|
||||
gradientTransform="matrix(0.1765,0.3022,-0.9209,0.1087,4716.2749,-3888.3674)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop536" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop538" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000002351047188999019860000002566414104328457898_);enable-background:new"
|
||||
points="504.3,864.5 521.4,741.6 740.4,729.5 893.4,986.9 "
|
||||
id="polygon541" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000004534978137110897330000008179059058368671906_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7687.7383"
|
||||
y1="5080.5278"
|
||||
x2="-7400.5278"
|
||||
y2="5080.5278"
|
||||
gradientTransform="matrix(0.3915,-0.9202,0.9202,0.3915,-1099.8982,-8403.8916)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop543" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop545" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000004534978137110897330000008179059058368671906_);enable-background:new"
|
||||
points="533.2,379.6 806,449.6 699,580.8 458.3,613.8 "
|
||||
id="polygon548" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000091017312778810520490000013487813255627565699_"
|
||||
cx="-108.2559"
|
||||
cy="10030.869"
|
||||
r="181.9404"
|
||||
gradientTransform="matrix(0.8642,0.5228,-0.5025,0.9115,5995.1982,-8755.3174)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop550" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop552" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000091017312778810520490000013487813255627565699_);enable-background:new"
|
||||
cx="871.90002"
|
||||
cy="305.39999"
|
||||
rx="181.89999"
|
||||
ry="190.60001"
|
||||
id="ellipse555" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000093149179829732349710000008128861407447028144_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6476.3066"
|
||||
y1="-3135.9316"
|
||||
x2="6770.707"
|
||||
y2="-3135.9316"
|
||||
gradientTransform="matrix(-0.9257,0.3783,-0.3783,-0.9257,5603.1353,-4641.4233)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop557" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop559" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000093149179829732349710000008128861407447028144_);enable-background:new"
|
||||
points="532.1,848 501.4,638.1 766.2,642.6 717.1,936.1 628.2,832 "
|
||||
id="polygon562" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000034071598378061202680000005682775137060128388_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2446.0144"
|
||||
y1="8616.9512"
|
||||
x2="-2179.4543"
|
||||
y2="8616.9512"
|
||||
gradientTransform="matrix(0.9797,-0.2004,0.2004,0.9797,1206.5922,-8533.6934)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop564" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop566" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000034071598378061202680000005682775137060128388_);enable-background:new"
|
||||
points="784.8,279.5 797.9,413.5 533.2,379.6 730.2,345.4 "
|
||||
id="polygon569" />
|
||||
</g>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000147222259863327894370000004713185813428820113_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-8054.3379"
|
||||
y1="5144.2563"
|
||||
x2="-7614.1865"
|
||||
y2="5144.2563"
|
||||
gradientTransform="matrix(0.4172,-0.9088,0.9088,0.4172,401.7775,-8335.0615)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop573" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop575" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000147222259863327894370000004713185813428820113_);enable-background:new"
|
||||
points="1507.2,881.3 1602,731.1 2140.7,840.5 1984.5,1253.1 "
|
||||
id="polygon578" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000063620498617606890090000008720960172290484925_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-338.647"
|
||||
y1="-4980.8984"
|
||||
x2="213.09731"
|
||||
y2="-4980.8984"
|
||||
gradientTransform="matrix(-0.9511,-0.3089,0.3089,-0.9511,3185.2781,-3756.8625)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop580" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop582" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000063620498617606890090000008720960172290484925_);enable-background:new"
|
||||
points="1934.2,1191.5 1645,1256.7 1426.9,1290.3 1413.7,1026.6 1556,569.8 1783,991.1 "
|
||||
id="polygon585" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000078013590621525976610000006727138897565908112_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5217.2197"
|
||||
y1="6487.8555"
|
||||
x2="5885.4883"
|
||||
y2="6487.8555"
|
||||
gradientTransform="matrix(-0.03594599,0.9994,-0.9994,-0.03594599,8477.332,-4502.8599)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop587" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop589" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000078013590621525976610000006727138897565908112_);enable-background:new"
|
||||
points="1737.9,1144.3 1601.6,667.3 1933.3,482.6 1995.2,701.9 "
|
||||
id="polygon592" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000129169157574715853980000000301106401069963673_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="8268.3721"
|
||||
y1="570.83643"
|
||||
x2="8986.3359"
|
||||
y2="570.83643"
|
||||
gradientTransform="matrix(-0.07909842,0.6653,-0.9567,-0.2541,3183.1792,-4748.3145)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop594" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop596" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000129169157574715853980000000301106401069963673_);enable-background:new"
|
||||
points="1757.4,979.3 1814,558.8 2004.8,870.8 2102.8,1126.5 "
|
||||
id="polygon599" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000051343387064157711410000007010731585534318724_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6628.8418"
|
||||
y1="4207.9429"
|
||||
x2="-6236.5361"
|
||||
y2="4207.9429"
|
||||
gradientTransform="matrix(0.2612,-0.9653,0.9653,0.2612,-653.4725,-6361.3896)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop601" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop603" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000051343387064157711410000007010731585534318724_);enable-background:new"
|
||||
points="1927.9,1204.4 1463.9,778.1 1621.5,776.7 2068.4,836 "
|
||||
id="polygon606" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000169518436558334241300000010220786071391330234_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="1836.1005"
|
||||
y1="7829.1611"
|
||||
x2="2258.3394"
|
||||
y2="7829.1611"
|
||||
gradientTransform="matrix(0.9919,-0.1269,0.1269,0.9919,-1274.858,-6407.4478)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop608" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop610" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000169518436558334241300000010220786071391330234_);enable-background:new"
|
||||
points="1515.2,932.3 1983.4,1264.7 1663.6,1217.3 "
|
||||
id="polygon613" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000003075246375309062510000005919818320267613622_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10926.994"
|
||||
y1="12790.337"
|
||||
x2="11459.436"
|
||||
y2="12790.337"
|
||||
gradientTransform="matrix(0.3792,0.341,-0.9317,0.5609,7924.4082,-10914.702)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop615" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop617" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000003075246375309062510000005919818320267613622_);enable-background:new"
|
||||
points="325.9,197.4 26.2,146.4 276.7,-75.4 413.8,-51.6 "
|
||||
id="polygon620" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000151504943794861704500000013710966191068745143_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9379.0352"
|
||||
y1="6171.8062"
|
||||
x2="9964.666"
|
||||
y2="6171.8062"
|
||||
gradientTransform="matrix(0.353,0.5695,-0.9064,0.3978,2451.355,-7980.2593)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop622" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop624" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000151504943794861704500000013710966191068745143_);enable-background:new"
|
||||
points="180.3,178.5 -2.7,-115.1 320.6,-31.9 538.6,70 "
|
||||
id="polygon627" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000116945986907177242930000003619234899467008173_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7309.3979"
|
||||
y1="-1249.7209"
|
||||
x2="-6990.3579"
|
||||
y2="-1249.7209"
|
||||
gradientTransform="matrix(-0.3976,-0.9175,0.9175,-0.3976,-1553.5924,-6849.3574)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop629" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop631" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000116945986907177242930000003619234899467008173_);enable-background:new"
|
||||
points="441.9,252.1 -163.5,256 -37.5,164 354.7,-57.8 "
|
||||
id="polygon634" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000018934028870046402510000005056381095522587327_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-3331.885"
|
||||
y1="6389.4604"
|
||||
x2="-2896.9707"
|
||||
y2="6389.4604"
|
||||
gradientTransform="matrix(0.6964,-0.7176,0.7176,0.6964,-2068.2891,-6498.0825)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop636" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop638" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000018934028870046402510000005056381095522587327_);enable-background:new"
|
||||
points="69,218.8 626.8,154.1 343.4,309.7 "
|
||||
id="polygon641" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000101790783768249243120000007920411576515842194_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6562.5264"
|
||||
y1="1880.1191"
|
||||
x2="-6127.6533"
|
||||
y2="1880.1191"
|
||||
gradientTransform="matrix(-0.09480336,-0.9955,0.9955,-0.09480336,-1443.6445,-5086.2905)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop643" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop645" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000101790783768249243120000007920411576515842194_);enable-background:new"
|
||||
points="873.3,1285.3 1185.8,818.7 1120.5,1135.3 "
|
||||
id="polygon648" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 28 KiB |
@@ -1,836 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 3200 2000"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="3200x2000.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
width="3200"
|
||||
height="2000"
|
||||
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="defs1973" /><sodipodi:namedview
|
||||
id="namedview1971"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.61916667"
|
||||
inkscape:cx="632.30148"
|
||||
inkscape:cy="600"
|
||||
inkscape:window-width="1560"
|
||||
inkscape:window-height="930"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1726">
|
||||
.st0{clip-path:url(#SVGID_00000000928596792312907720000015067976839969243561_);}
|
||||
.st1{fill:#05475C;}
|
||||
.st2{opacity:0.34;fill:url(#SVGID_00000056411074606979671790000012680755076389884083_);enable-background:new ;}
|
||||
.st3{opacity:0.34;fill:url(#SVGID_00000023989492384892967260000009710341851984184492_);enable-background:new ;}
|
||||
.st4{opacity:0.34;fill:url(#SVGID_00000161595034260526515850000010596232777479458947_);enable-background:new ;}
|
||||
.st5{opacity:0.71;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{opacity:0.62;}
|
||||
.st8{opacity:0.34;fill:url(#SVGID_00000076589682521798879920000011921484468618510504_);enable-background:new ;}
|
||||
.st9{opacity:0.34;fill:url(#SVGID_00000022553105745205153220000002526306067487353472_);enable-background:new ;}
|
||||
.st10{opacity:0.34;fill:url(#SVGID_00000023253950792642503570000010545805774672953244_);enable-background:new ;}
|
||||
.st11{opacity:0.34;fill:url(#SVGID_00000170260504085748133930000012521765846385128116_);enable-background:new ;}
|
||||
.st12{opacity:0.34;fill:url(#SVGID_00000082363585068762561560000013790172994988761013_);enable-background:new ;}
|
||||
.st13{opacity:0.34;fill:url(#SVGID_00000098913682242597510470000011006784818807666326_);enable-background:new ;}
|
||||
.st14{opacity:0.34;fill:url(#SVGID_00000115489987498632649720000011008985375483231643_);enable-background:new ;}
|
||||
.st15{opacity:0.34;fill:url(#SVGID_00000047059192306680669690000007811741663679149985_);enable-background:new ;}
|
||||
.st16{opacity:0.34;fill:url(#SVGID_00000101792577392231575320000016756205186510304687_);enable-background:new ;}
|
||||
.st17{opacity:0.34;fill:url(#SVGID_00000123412959991921090160000015783343612426765460_);enable-background:new ;}
|
||||
.st18{opacity:0.34;fill:url(#SVGID_00000134237491014946211050000010066306547626477466_);enable-background:new ;}
|
||||
.st19{opacity:0.34;fill:url(#SVGID_00000034772572330934262940000010374810663227991682_);enable-background:new ;}
|
||||
.st20{opacity:0.34;fill:url(#SVGID_00000021090192784433479690000012108295630625962133_);enable-background:new ;}
|
||||
.st21{opacity:0.34;fill:url(#SVGID_00000085224912268995596740000001192375694511959694_);enable-background:new ;}
|
||||
.st22{opacity:0.34;fill:url(#SVGID_00000036951329762708534880000016297398792263597696_);enable-background:new ;}
|
||||
.st23{opacity:0.12;fill:url(#SVGID_00000049200990058816053730000014783409975399489939_);enable-background:new ;}
|
||||
.st24{opacity:0.12;fill:url(#SVGID_00000111187147672048172680000009805526042319811762_);enable-background:new ;}
|
||||
.st25{opacity:0.12;fill:url(#SVGID_00000002352292896172037110000000285475706208253351_);enable-background:new ;}
|
||||
.st26{opacity:0.12;fill:url(#SVGID_00000031180986187426161680000014527347853894108845_);enable-background:new ;}
|
||||
.st27{opacity:0.12;fill:url(#SVGID_00000083073393030777054170000008682096802884454789_);enable-background:new ;}
|
||||
.st28{opacity:0.12;fill:url(#SVGID_00000054964391004092095810000003455071117432939653_);enable-background:new ;}
|
||||
.st29{opacity:0.12;fill:url(#SVGID_00000090288739315912149810000014547160397308911281_);enable-background:new ;}
|
||||
.st30{opacity:0.12;fill:url(#SVGID_00000001633458465395349520000002138339211221285271_);enable-background:new ;}
|
||||
.st31{opacity:0.12;fill:url(#SVGID_00000078724928392494712130000004724194500713547951_);enable-background:new ;}
|
||||
.st32{opacity:0.12;fill:url(#SVGID_00000044880333438437072450000007434997047063731332_);enable-background:new ;}
|
||||
.st33{opacity:0.12;fill:url(#SVGID_00000045615725106276691630000009515850595024568499_);enable-background:new ;}
|
||||
</style>
|
||||
<g
|
||||
id="g1968"
|
||||
transform="scale(1.6666667)">
|
||||
<defs
|
||||
id="defs1729">
|
||||
<rect
|
||||
id="SVGID_1_"
|
||||
width="1920"
|
||||
height="1200"
|
||||
x="0"
|
||||
y="0" />
|
||||
</defs>
|
||||
<clipPath
|
||||
id="SVGID_00000172401503128712534600000011968226326295796110_">
|
||||
<use
|
||||
xlink:href="#SVGID_1_"
|
||||
style="overflow:visible"
|
||||
id="use1731" />
|
||||
</clipPath>
|
||||
<g
|
||||
id="Calque_1-2"
|
||||
clip-path="url(#SVGID_00000172401503128712534600000011968226326295796110_)">
|
||||
<rect
|
||||
x="-17.5"
|
||||
y="-15.7"
|
||||
class="st1"
|
||||
width="1955"
|
||||
height="1231.4"
|
||||
id="rect1734" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000089532484294864443560000001156018140746127002_"
|
||||
cx="222.92"
|
||||
cy="-8061.8291"
|
||||
r="1365.4"
|
||||
gradientTransform="matrix(0.5,0,0,-0.5,-106.46,-3973.7146)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1736" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1738" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000089532484294864443560000001156018140746127002_);enable-background:new"
|
||||
cx="5"
|
||||
cy="57.200001"
|
||||
r="682.70001"
|
||||
id="circle1741" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000137818120280239734990000003026529580521251758_"
|
||||
cx="-2489.2502"
|
||||
cy="5715.2759"
|
||||
r="342.10001"
|
||||
gradientTransform="matrix(-2.8317,2.4125,0.8042,0.9439,-10798.391,854.2648)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1743" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1745" />
|
||||
</radialGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000137818120280239734990000003026529580521251758_);enable-background:new"
|
||||
points="1988.4,-108.2 313.1,1318.8 -301.3,597.5 1374,-829.6 "
|
||||
id="polygon1748" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000058583359066475248070000015883288929621046165_"
|
||||
cx="1076.72"
|
||||
cy="-8569.6289"
|
||||
r="459.39999"
|
||||
gradientTransform="matrix(0.5,0,0,-0.5,-106.46,-3973.7146)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DAC9BA"
|
||||
id="stop1750" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1752" />
|
||||
</radialGradient>
|
||||
|
||||
<circle
|
||||
style="opacity:0.34;fill:url(#SVGID_00000058583359066475248070000015883288929621046165_);enable-background:new"
|
||||
cx="431.89999"
|
||||
cy="311.10001"
|
||||
r="229.7"
|
||||
id="circle1755" />
|
||||
<g
|
||||
class="st5"
|
||||
id="g1781">
|
||||
<path
|
||||
class="st6"
|
||||
d="m 966.2,602.3 c -1.3,0 0.2,0.7 2,0.9 0.5,-0.4 0.9,-0.7 1.3,-1.1 -1.1,0.2 -2.2,0.3 -3.3,0.2"
|
||||
id="path1757" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 973.3,600.5 c 0.8,-1.1 1.4,-2.3 1.6,-3.5 -0.2,0.9 -0.6,1.6 -1.1,2.4 -2.5,1.5 -0.2,-0.9 0,-1.9 -2.7,3.4 -0.4,2.1 -0.5,3"
|
||||
id="path1759" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 975.9,593.7 c 0.2,-2.4 -0.5,-1.6 -0.7,-0.7 0.3,0.1 0.5,1.7 0.7,0.7"
|
||||
id="path1761" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.2,561.3 c 0.7,0.1 1.5,0.2 1.4,0.4 0.8,-0.2 1,-0.3 -1.4,-0.4"
|
||||
id="path1763" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 962.6,561.7 -0.5,0.1 0.5,-0.1 v 0"
|
||||
id="path1765" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 984.5,594.6 c 0.1,2.1 -0.6,3.2 -1.3,5 l -1.1,0.6 c -0.9,1.8 0.1,1.1 -0.6,2.6 -1.5,1.3 -4.4,4 -5.4,4.3 -0.7,0 0.5,-0.8 0.6,-1.1 -1.9,1.3 -1.6,2 -4.5,2.8 l -0.1,-0.2 c -7.3,3.5 -17.5,-3.4 -17.4,-12.7 -0.1,0.6 -0.2,0.4 -0.4,0.7 -0.4,-4.8 2.2,-9.6 6.6,-11.6 4.3,-2.1 9.3,-1.3 12.4,1.6 -1.7,-2.2 -5,-4.5 -9,-4.3 -3.9,0.1 -7.5,2.5 -8.8,5.2 -2,1.3 -2.2,4.8 -3.1,5.5 -1.2,8.6 2.2,12.3 7.9,16.7 0.9,0.6 0.3,0.7 0.4,1.2 -1.9,-0.9 -3.6,-2.2 -5.1,-3.9 0.8,1.1 1.6,2.2 2.6,3 -1.8,-0.6 -4.2,-4.3 -4.9,-4.5 3.1,5.5 12.5,9.7 17.4,7.6 -2.3,0.1 -5.2,0 -7.7,-0.9 -1.1,-0.6 -2.5,-1.7 -2.3,-1.9 6.7,2.5 13.7,1.9 19.5,-2.8 1.5,-1.2 3.1,-3.1 3.6,-3.1 -0.7,1.1 0.1,0.5 -0.4,1.4 1.5,-2.4 -0.6,-1 1.5,-4.1 l 0.8,1.1 c -0.3,-2 2.5,-4.4 2.2,-7.5 0.6,-1 0.7,1 0,3.2 0.9,-2.4 0.2,-2.8 0.5,-4.8 0.3,0.7 0.6,1.4 0.8,2.1 -0.6,-2.4 0.6,-4 0.9,-5.3 -0.3,-0.1 -0.9,1 -1.1,-1.7 0,-1.2 0.3,-0.6 0.5,-0.9 -0.2,-0.1 -0.9,-1.1 -1.2,-2.8 0.3,-0.4 0.7,1.1 1.1,1.1 -0.2,-1.4 -0.7,-2.5 -0.7,-3.6 -1.1,-2.3 -0.4,0.3 -1.3,-1 -1.2,-3.6 1,-0.8 1.1,-2.5 1.8,2.5 2.8,6.5 3.2,8.1 -0.4,-2 -0.9,-3.9 -1.6,-5.8 0.5,0.2 -0.9,-4.1 0.7,-1.2 -1.7,-6.1 -7.1,-11.8 -12.1,-14.5 0.6,0.6 1.4,1.3 1.1,1.4 -2.5,-1.5 -2.1,-1.6 -2.4,-2.2 -2,-0.8 -2.2,0.1 -3.5,0 -3.8,-2 -4.6,-1.8 -8.1,-3.1 l 0.2,0.8 c -2.5,-0.8 -3,0.3 -5.7,0 -0.2,-0.1 0.9,-0.5 1.7,-0.6 -2.5,0.3 -2.3,-0.5 -4.7,0.1 0.6,-0.4 1.2,-0.7 1.8,-1 -2,0.1 -4.8,1.2 -3.9,0.2 -3.3,1.5 -9.1,3.5 -12.3,6.5 l -0.1,-0.7 c -1.5,1.8 -6.5,5.3 -6.9,7.7 l -0.4,0.1 c -0.8,1.3 -1.3,2.8 -1.9,4.2 -1,1.7 -1.5,0.7 -1.3,0.9 -2,4 -3,7.4 -3.8,10.2 0.6,0.9 0,5.5 0.2,9.1 -1,18.1 12.7,35.7 27.7,39.7 2.2,0.8 5.5,0.8 8.2,0.8 -3.3,-0.9 -3.7,-0.5 -6.9,-1.6 -2.3,-1.1 -2.8,-2.3 -4.4,-3.7 l 0.6,1.1 c -3.2,-1.1 -1.9,-1.4 -4.5,-2.2 l 0.7,-0.9 c -1,-0.1 -2.7,-1.7 -3.2,-2.7 h -1.1 c -1.4,-1.7 -2.1,-2.9 -2,-3.8 l -0.4,0.7 c -0.4,-0.7 -5,-6.3 -2.6,-5 -0.4,-0.4 -1,-0.7 -1.7,-1.8 l 0.5,-0.6 c -1.1,-1.5 -2.1,-3.4 -2,-4 0.6,0.8 1,1 1.5,1.1 -2.9,-7.2 -3.1,-0.4 -5.3,-7.3 h 0.5 c -0.4,-0.5 -0.6,-1.1 -0.9,-1.7 l 0.2,-2 c -2.1,-2.4 -0.6,-10.3 -0.3,-14.6 0.2,-1.7 1.7,-3.6 2.9,-6.5 l -0.7,-0.1 c 1.4,-2.4 7.8,-9.5 10.7,-9.1 1.4,-1.8 -0.3,0 -0.6,-0.5 3.2,-3.3 4.1,-2.3 6.3,-2.9 2.3,-1.4 -2,0.5 -0.9,-0.5 4,-1 2.8,-2.3 8,-2.8 0.5,0.3 -1.3,0.5 -1.7,0.9 3.3,-1.6 10.5,-1.2 15.1,0.9 5.4,2.5 11.4,10 11.7,17 l 0.3,0.1 c -0.1,2.8 0.4,6 -0.6,9 l 0.7,-1.7"
|
||||
id="path1767" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 951.9,604.1 -0.2,0.9 c 0.9,1.2 1.6,2.4 2.7,3.4 -0.9,-1.6 -1.4,-2.2 -2.5,-4.3"
|
||||
id="path1769" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 953.9,604 c -0.5,-0.5 -0.7,-1.1 -1,-1.7 0.3,1.1 0.9,2 1.4,2.9 l -0.4,-1.2"
|
||||
id="path1771" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 990.1,596.1 -0.2,0.5 c -0.4,2.5 -1.1,5 -2.3,7.3 1.3,-2.4 2.1,-5.1 2.5,-7.8"
|
||||
id="path1773" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 961.5,560.7 c 0.9,-0.3 2.2,-0.2 3.1,-0.4 -1.2,0.1 -2.5,0.2 -3.7,0.3 l 0.6,0.1"
|
||||
id="path1775" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 930.3,577.3 c 0.2,1.9 -1.4,2.6 0.4,1.4 0.9,-2.2 -0.4,-0.6 -0.4,-1.4"
|
||||
id="path1777" />
|
||||
<path
|
||||
class="st6"
|
||||
d="m 928.2,586.1 c 0.4,-1.3 0.5,-2 0.6,-2.8 -1.1,1.5 -0.5,1.8 -0.6,2.8"
|
||||
id="path1779" />
|
||||
</g>
|
||||
<g
|
||||
class="st7"
|
||||
id="g1888">
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000084523137185723558220000015279798023442974080_"
|
||||
cx="-892.98358"
|
||||
cy="-4458.9219"
|
||||
r="173.24001"
|
||||
gradientTransform="matrix(0.8642,0.5228,0.5025,-0.9115,3766.6392,-2864.1973)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1783" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1785" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000084523137185723558220000015279798023442974080_);enable-background:new"
|
||||
cx="766.20001"
|
||||
cy="705.90002"
|
||||
rx="173.2"
|
||||
ry="181.5"
|
||||
id="ellipse1788" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000134943907407943021780000012076970261184592781_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="1876.1453"
|
||||
y1="3075.6453"
|
||||
x2="2072.9485"
|
||||
y2="3075.6453"
|
||||
gradientTransform="matrix(-0.7151,0.699,0.5383,0.5506,585.8191,-2700.2151)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1790" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1792" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000134943907407943021780000012076970261184592781_);enable-background:new"
|
||||
points="949,435.1 885,475.5 700.3,381.9 810.7,213.3 "
|
||||
id="polygon1795" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000178894981057875746550000016000597904032110004_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="896.91992"
|
||||
y1="-1919.0027"
|
||||
x2="1168.0834"
|
||||
y2="-1919.0027"
|
||||
gradientTransform="matrix(0.7774,0.629,0.629,-0.7774,1270.2474,-1779.9875)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1797" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1799" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000178894981057875746550000016000597904032110004_);enable-background:new"
|
||||
points="1025.1,301.8 1001,409.2 871.9,554.7 784.8,339.5 810.7,213.3 905.6,261.5 "
|
||||
id="polygon1802" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000127727388437009210270000007011599435678376117_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6821.7275"
|
||||
y1="-1177.3477"
|
||||
x2="-6319.3618"
|
||||
y2="-1177.3477"
|
||||
gradientTransform="matrix(0.3915,-0.9202,-0.9202,-0.3915,2206.2451,-5996.0439)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1804" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1806" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000127727388437009210270000007011599435678376117_);enable-background:new"
|
||||
points="799.9,273.2 939.5,433.1 458.3,673.8 629.2,459.9 "
|
||||
id="polygon1809" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000101086087328235979620000009567443969736187033_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5893.3677"
|
||||
y1="1236.082"
|
||||
x2="6110.6479"
|
||||
y2="1236.082"
|
||||
gradientTransform="matrix(-0.3483,0.5724,0.7648,0.6285,2242.1489,-3826.8796)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1811" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1813" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000101086087328235979620000009567443969736187033_);enable-background:new"
|
||||
points="988.7,370.2 972.8,183.9 1211.9,451.7 1226.6,578.1 "
|
||||
id="polygon1816" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000089574557307665542530000009834880936151122096_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-3231.1003"
|
||||
y1="-1439.1991"
|
||||
x2="-2925.604"
|
||||
y2="-1439.1991"
|
||||
gradientTransform="matrix(0.7151,-0.699,-0.699,-0.7151,2225.2839,-2809.1555)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1818" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1820" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000089574557307665542530000009834880936151122096_);enable-background:new"
|
||||
points="988.7,370.2 784.8,339.5 889.2,272.3 1029.8,153.1 1208.9,469.2 "
|
||||
id="polygon1823" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000137814979148882877880000010328272323069511300_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3576.7354"
|
||||
y1="1465.4857"
|
||||
x2="3811.7944"
|
||||
y2="1465.4857"
|
||||
gradientTransform="matrix(-0.5898,0.8076,0.8076,0.5898,1937.7645,-3540.3677)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1825" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1827" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000137814979148882877880000010328272323069511300_);enable-background:new"
|
||||
points="972.8,183.9 1043.6,469.2 960,431.1 730.2,297.8 "
|
||||
id="polygon1830" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000145044256057076252910000000848199297658990999_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6686.6108"
|
||||
y1="4457.1631"
|
||||
x2="-6320.0996"
|
||||
y2="4457.1631"
|
||||
gradientTransform="matrix(-0.2682,-0.9634,-1.0501,0.2924,3548.3164,-6773.793)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1832" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1834" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000145044256057076252910000000848199297658990999_);enable-background:new"
|
||||
points="507.9,1013.1 521.4,801.6 657.1,591.1 756.4,716.4 "
|
||||
id="polygon1837" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000127734621094974517750000005240452990198260907_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4154.2529"
|
||||
y1="6158.4248"
|
||||
x2="4538.3779"
|
||||
y2="6158.4248"
|
||||
gradientTransform="matrix(-0.9257,0.3783,0.3783,0.9257,2277.6904,-6579.7749)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1839" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1841" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000127734621094974517750000005240452990198260907_);enable-background:new"
|
||||
points="516.1,955 427.7,889.7 397,679.9 699,640.8 766.2,702.6 628.2,892 "
|
||||
id="polygon1844" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000011728417832659381670000003564161052773509289_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-11701.892"
|
||||
y1="6459.522"
|
||||
x2="-11252.192"
|
||||
y2="6459.522"
|
||||
gradientTransform="matrix(-0.2347,-0.2596,-0.879,0.2953,3610.8835,-4228.9741)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1846" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1848" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000011728417832659381670000003564161052773509289_);enable-background:new"
|
||||
points="806,509.6 700.3,644.1 431.9,787.7 458.3,673.8 "
|
||||
id="polygon1851" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000013888782862855192130000004048158289608727716_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="7435.6807"
|
||||
y1="-916.03363"
|
||||
x2="8343.6211"
|
||||
y2="-916.03363"
|
||||
gradientTransform="matrix(0.1765,0.3022,0.9209,-0.1087,112.9515,-1561.0907)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1853" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1855" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000013888782862855192130000004048158289608727716_);enable-background:new"
|
||||
points="504.3,924.5 521.4,801.6 740.4,789.5 893.4,1046.9 "
|
||||
id="polygon1858" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000032636350723051708950000003397749158443223972_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6821.7275"
|
||||
y1="-1119.5144"
|
||||
x2="-6534.5"
|
||||
y2="-1119.5144"
|
||||
gradientTransform="matrix(0.3915,-0.9202,-0.9202,-0.3915,2206.2451,-5996.0439)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1860" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1862" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000032636350723051708950000003397749158443223972_);enable-background:new"
|
||||
points="533.2,439.6 806,509.6 699,640.8 458.3,673.8 "
|
||||
id="polygon1865" />
|
||||
|
||||
<radialGradient
|
||||
id="SVGID_00000032630432101678314960000008468116941741282944_"
|
||||
cx="-963.93372"
|
||||
cy="-4124.6318"
|
||||
r="181.94"
|
||||
gradientTransform="matrix(0.8642,0.5228,0.5025,-0.9115,3766.6392,-2864.1973)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1867" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1869" />
|
||||
</radialGradient>
|
||||
|
||||
<ellipse
|
||||
style="opacity:0.34;fill:url(#SVGID_00000032630432101678314960000008468116941741282944_);enable-background:new"
|
||||
cx="871.90002"
|
||||
cy="365.39999"
|
||||
rx="181.89999"
|
||||
ry="190.60001"
|
||||
id="ellipse1872" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000019670513155277172690000010650740053110845579_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4154.2529"
|
||||
y1="6243.6416"
|
||||
x2="4448.6611"
|
||||
y2="6243.6416"
|
||||
gradientTransform="matrix(-0.9257,0.3783,0.3783,0.9257,2277.6904,-6579.7749)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1874" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1876" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000019670513155277172690000010650740053110845579_);enable-background:new"
|
||||
points="501.4,698.1 766.2,702.6 717.1,996.1 628.2,892 532.1,908 "
|
||||
id="polygon1879" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000075149650005683383290000017910244360390472588_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2155.8843"
|
||||
y1="-3099.9363"
|
||||
x2="-1889.3284"
|
||||
y2="-3099.9363"
|
||||
gradientTransform="matrix(0.9797,-0.2004,-0.2004,-0.9797,2028.0126,-3010.5703)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1881" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1883" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.34;fill:url(#SVGID_00000075149650005683383290000017910244360390472588_);enable-background:new"
|
||||
points="784.8,339.5 797.9,473.5 533.2,439.6 730.2,405.4 "
|
||||
id="polygon1886" />
|
||||
</g>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000106830734271642211480000010917764946327503256_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7182.4272"
|
||||
y1="-1133.2759"
|
||||
x2="-6742.2847"
|
||||
y2="-1133.2759"
|
||||
gradientTransform="matrix(0.4172,-0.9088,-0.9088,-0.4172,3683.3728,-5809.2061)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1890" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1892" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000106830734271642211480000010917764946327503256_);enable-background:new"
|
||||
points="1507.2,941.3 1602,791.1 2140.7,900.5 1984.5,1313.1 "
|
||||
id="polygon1895" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000008838014493502950990000002106571545151364536_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-1626.0773"
|
||||
y1="7428.6694"
|
||||
x2="-1074.3547"
|
||||
y2="7428.6694"
|
||||
gradientTransform="matrix(-0.9511,-0.3089,-0.3089,0.9511,2716.5413,-6422.6528)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1897" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1899" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000008838014493502950990000002106571545151364536_);enable-background:new"
|
||||
points="1426.9,1350.3 1413.7,1086.6 1556,629.8 1783,1051.1 1934.2,1251.5 1645,1316.7 "
|
||||
id="polygon1902" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000170269309057204161380000001402138955680408972_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2743.3877"
|
||||
y1="-1449.7526"
|
||||
x2="3411.6838"
|
||||
y2="-1449.7526"
|
||||
gradientTransform="matrix(-0.03594599,0.9994,0.9994,0.03594599,3353.26,-2151.4868)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1904" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1906" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000170269309057204161380000001402138955680408972_);enable-background:new"
|
||||
points="1737.9,1204.3 1601.6,727.3 1933.3,542.6 1995.2,761.9 "
|
||||
id="polygon1909" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000044170033691582868540000003890608974300690825_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4772.7378"
|
||||
y1="4349.7412"
|
||||
x2="5490.6982"
|
||||
y2="4349.7412"
|
||||
gradientTransform="matrix(-0.07909842,0.6653,0.9567,0.2541,-1800.8073,-3613.0259)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1911" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1913" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000044170033691582868540000003890608974300690825_);enable-background:new"
|
||||
points="1757.4,1039.3 1814,618.8 2004.8,930.8 2102.8,1186.5 "
|
||||
id="polygon1916" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000115476630761162719110000008737009919211368841_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-5810.9302"
|
||||
y1="-487.71649"
|
||||
x2="-5418.6216"
|
||||
y2="-487.71649"
|
||||
gradientTransform="matrix(0.2612,-0.9653,-0.9653,-0.2612,2723.9082,-4540.3013)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1918" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1920" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000115476630761162719110000008737009919211368841_);enable-background:new"
|
||||
points="1927.9,1264.2 1463.9,837.9 1621.5,836.5 2068.4,895.8 "
|
||||
id="polygon1923" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000137827576320685657670000017367018758092256190_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="2024.0944"
|
||||
y1="-2226.9001"
|
||||
x2="2446.3311"
|
||||
y2="-2226.9001"
|
||||
gradientTransform="matrix(0.9919,-0.1269,-0.1269,-0.9919,-750.4193,-766.7698)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1925" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1927" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000137827576320685657670000017367018758092256190_);enable-background:new"
|
||||
points="1663.6,1277.3 1515.2,992.3 1983.4,1324.7 "
|
||||
id="polygon1930" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000062875286114471441420000010794719189137940105_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="8275.8008"
|
||||
y1="-6919.5112"
|
||||
x2="8808.2402"
|
||||
y2="-6919.5112"
|
||||
gradientTransform="matrix(0.3792,0.341,0.9317,-0.5609,3459.2957,-6657.502)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#AABDCB"
|
||||
id="stop1932" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1934" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000062875286114471441420000010794719189137940105_);enable-background:new"
|
||||
points="325.9,257.4 26.2,206.4 276.7,-15.4 413.8,8.4 "
|
||||
id="polygon1937" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000087375575459333385210000002238624078503487908_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6898.5732"
|
||||
y1="-370.24261"
|
||||
x2="7484.2031"
|
||||
y2="-370.24261"
|
||||
gradientTransform="matrix(0.353,0.5695,0.9064,-0.3978,-1931.4192,-4199.8999)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1939" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1941" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000087375575459333385210000002238624078503487908_);enable-background:new"
|
||||
points="180.3,238.5 -2.7,-55.1 320.6,28.1 538.6,130 "
|
||||
id="polygon1944" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000183223659939389319390000000216397749450872199_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-7160.5947"
|
||||
y1="3998.96"
|
||||
x2="-6841.5742"
|
||||
y2="3998.96"
|
||||
gradientTransform="matrix(-0.3976,-0.9175,-0.9175,0.3976,1028.1501,-7745.7251)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1946" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1948" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000183223659939389319390000000216397749450872199_);enable-background:new"
|
||||
points="441.9,312.4 -163.5,316.3 -37.5,224.3 354.7,2.5 "
|
||||
id="polygon1951" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000134940890851672155010000009345720776688027561_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-2501.7507"
|
||||
y1="-1775.7073"
|
||||
x2="-2066.8596"
|
||||
y2="-1775.7073"
|
||||
gradientTransform="matrix(0.6964,-0.7176,-0.7176,-0.6964,664.4031,-2629.4871)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1953" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1955" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000134940890851672155010000009345720776688027561_);enable-background:new"
|
||||
points="343.4,369.7 69,278.8 626.8,214.1 "
|
||||
id="polygon1958" />
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_00000137118113169258829820000003332003489976044437_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-6019.9688"
|
||||
y1="1264.8243"
|
||||
x2="-5585.0967"
|
||||
y2="1264.8243"
|
||||
gradientTransform="matrix(-0.09480336,-0.9955,-0.9955,0.09480336,1738.578,-4784.3081)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#18F5B0"
|
||||
id="stop1960" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#05475C;stop-opacity:0"
|
||||
id="stop1962" />
|
||||
</linearGradient>
|
||||
|
||||
<polygon
|
||||
style="opacity:0.12;fill:url(#SVGID_00000137118113169258829820000003332003489976044437_);enable-background:new"
|
||||
points="1120.5,1195.3 873.3,1345.3 1185.8,878.7 "
|
||||
id="polygon1965" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 28 KiB |