This commit is contained in:
2024-07-08 22:46:35 +02:00
parent 02f44c49d2
commit 27254d817a
56249 changed files with 808097 additions and 1 deletions

View File

@ -0,0 +1,597 @@
import Adw from 'gi://Adw';
import GObject from 'gi://GObject';
import Gtk from 'gi://Gtk';
import Gio from 'gi://Gio';
import * as Config from 'resource:///org/gnome/Shell/Extensions/js/misc/config.js';
import {gettext as _} from 'resource:///org/gnome/Shell/Extensions/js/extensions/prefs.js';
import * as Constants from '../constants.js';
Gio._promisify(Gtk.FileDialog.prototype, "open", "open_finish");
const IconGrid = GObject.registerClass(class LogoMenuIconGrid extends Gtk.FlowBox {
_init() {
super._init({
row_spacing: 10,
column_spacing: 10,
vexpand: false,
hexpand: true,
valign: Gtk.Align.START,
halign: Gtk.Align.CENTER,
homogeneous: true,
selection_mode: Gtk.SelectionMode.SINGLE,
margin_top: 5,
});
this.childrenCount = 0;
}
add(widget) {
this.insert(widget, -1);
this.childrenCount++;
}
});
export const LogoMenuIconsPage = GObject.registerClass(class LogoMenuIconsWidget extends Adw.PreferencesPage {
_init(settings) {
super._init();
this._settings = settings;
this.set_title('Icon');
this.set_name('Icon');
this.set_icon_name('emblem-photos-symbolic');
const symbolicIconGroup = new Adw.PreferencesGroup({
title: _('Symbolic Icons'),
});
const colouredIconGroup = new Adw.PreferencesGroup({
title: _('Coloured Icons'),
});
const iconSettingsGroup = new Adw.PreferencesGroup({
title: _('Icon Settings'),
});
// Symbolic Icons
const symbolicIconsRow = new Adw.ActionRow();
const symbolicIconsFlowBox = new IconGrid();
symbolicIconsFlowBox.connect('child-activated', () => {
const selectedChild = symbolicIconsFlowBox.get_selected_children();
const selectedChildIndex = selectedChild[0].get_index();
this._settings.set_boolean('symbolic-icon', true);
this._settings.set_int('menu-button-icon-image', selectedChildIndex);
this._settings.set_boolean('use-custom-icon', false);
});
Constants.SymbolicDistroIcons.forEach(icon => {
let iconName = icon.PATH.replace('/Resources/', '');
iconName = iconName.replace('.svg', '');
const iconImage = new Gtk.Image({
icon_name: iconName,
pixel_size: 36,
});
symbolicIconsFlowBox.add(iconImage);
});
symbolicIconsRow.set_child(symbolicIconsFlowBox);
if (this._settings.get_boolean('symbolic-icon')) {
const symbolicChildren = symbolicIconsFlowBox.childrenCount;
for (let i = 0; i < symbolicChildren; i++) {
if (i === this._settings.get_int('menu-button-icon-image')) {
symbolicIconsFlowBox.select_child(symbolicIconsFlowBox.get_child_at_index(i));
break;
}
}
}
// Coloured Icons
const colouredIconsRow = new Adw.ActionRow();
const colouredIconsFlowBox = new IconGrid();
colouredIconsFlowBox.connect('child-activated', () => {
const selectedChild = colouredIconsFlowBox.get_selected_children();
const selectedChildIndex = selectedChild[0].get_index();
this._settings.set_int('menu-button-icon-image', selectedChildIndex);
this._settings.set_boolean('symbolic-icon', false);
this._settings.set_boolean('use-custom-icon', false);
});
Constants.ColouredDistroIcons.forEach(icon => {
let iconName = icon.PATH.replace('/Resources/', '');
iconName = iconName.replace('.svg', '');
const iconImage = new Gtk.Image({
icon_name: iconName,
pixel_size: 36,
});
colouredIconsFlowBox.add(iconImage);
});
colouredIconsRow.set_child(colouredIconsFlowBox);
if (!this._settings.get_boolean('symbolic-icon')) {
const children = colouredIconsFlowBox.childrenCount;
for (let i = 0; i < children; i++) {
if (i === this._settings.get_int('menu-button-icon-image')) {
colouredIconsFlowBox.select_child(colouredIconsFlowBox.get_child_at_index(i));
break;
}
}
}
// Icon Size Scale
const menuButtonIconSizeRow = new Adw.ActionRow({
title: _('Icon Size'),
});
const iconSize = this._settings.get_int('menu-button-icon-size');
const menuButtonIconSizeScale = new Gtk.Scale({
orientation: Gtk.Orientation.HORIZONTAL,
adjustment: new Gtk.Adjustment({
lower: 14,
upper: 64,
step_increment: 1,
page_increment: 1,
page_size: 0,
}),
digits: 0,
round_digits: 0,
hexpand: true,
draw_value: true,
value_pos: Gtk.PositionType.RIGHT,
});
menuButtonIconSizeScale.set_format_value_func((scale, value) => {
return `\t${value}px`;
});
menuButtonIconSizeScale.set_value(iconSize);
menuButtonIconSizeScale.connect('value-changed', () => {
this._settings.set_int('menu-button-icon-size', menuButtonIconSizeScale.get_value());
});
menuButtonIconSizeRow.add_suffix(menuButtonIconSizeScale);
const customIconRow = new Adw.ExpanderRow({
title: _('Use Custom Icon'),
show_enable_switch: true,
enable_expansion: this._settings.get_boolean('use-custom-icon'),
});
customIconRow.connect('notify::enable-expansion', () => {
this._settings.set_boolean('use-custom-icon', customIconRow.enable_expansion);
});
this._settings.connect('changed::use-custom-icon', () => {
customIconRow.set_enable_expansion(this._settings.get_boolean('use-custom-icon'))
});
const customIconSelectionRow = new Adw.ActionRow({
title: _('Selected Icon'),
});
const customIconButton = new Gtk.Button({
icon_name: 'document-open-symbolic',
valign: Gtk.Align.CENTER,
})
const customIconPreview = new Gtk.Image({
icon_name: "start-here-symbolic",
icon_size: 2
});
if(this._settings.get_string('custom-icon-path'))
customIconPreview.set_from_file(this._settings.get_string('custom-icon-path'));
customIconButton.connect('clicked', async () => {
try {
const filter = new Gtk.FileFilter({
name: "Images",
});
filter.add_pixbuf_formats();
const fileDialog = new Gtk.FileDialog({
title: _('Select a Custom Icon'),
modal: true,
default_filter: filter
});
const file = await fileDialog.open(customIconButton.get_root(), null);
if (file) {
const filename = file.get_path();
this._settings.set_string("custom-icon-path", filename);
customIconPreview.set_from_file(filename);
console.log(`Selected custom icon: ${filename}`);
}
} catch (error) {
console.error('Error selecting custom icon:', error.message);
}
});
customIconSelectionRow.add_suffix(customIconPreview);
customIconSelectionRow.add_suffix(customIconButton);
customIconRow.add_row(customIconSelectionRow);
// iconGroup
symbolicIconGroup.add(symbolicIconsRow);
colouredIconGroup.add(colouredIconsRow);
iconSettingsGroup.add(customIconRow);
iconSettingsGroup.add(menuButtonIconSizeRow);
this.add(symbolicIconGroup);
this.add(colouredIconGroup);
this.add(iconSettingsGroup);
}
});
// Create all the customization options
export const LogoMenuOptionsPage = GObject.registerClass(class LogoMenuOptionsWidget extends Adw.PreferencesPage {
_init(settings) {
super._init();
this._settings = settings;
this.set_title('Other Options');
this.set_name('Other Options');
this.set_icon_name('emblem-system-symbolic');
const prefGroup1 = new Adw.PreferencesGroup({
title: _('Change Defaults'),
});
const prefGroup2 = new Adw.PreferencesGroup({
title: _('Show/Hide Options'),
});
const prefGroup3 = new Adw.PreferencesGroup({
title: _('Top Panel Options'),
});
// Rows
// Activities click type
const clickType = this._settings.get_int('menu-button-icon-click-type');
const menuButtonIconClickTypeRow = new Adw.ActionRow({
title: _('Icon Click Type to open Activities'),
});
const menuButtonIconClickTypeCombo = new Gtk.ComboBoxText({
valign: Gtk.Align.CENTER,
});
menuButtonIconClickTypeCombo.append('1', _('Left Click '));
menuButtonIconClickTypeCombo.append('2', _('Middle Click '));
menuButtonIconClickTypeCombo.append('3', _('Right Click '));
menuButtonIconClickTypeCombo.set_active_id(clickType.toString());
menuButtonIconClickTypeCombo.connect('changed', () => {
this._settings.set_int('menu-button-icon-click-type', parseInt(menuButtonIconClickTypeCombo.get_active_id()));
});
menuButtonIconClickTypeRow.add_suffix(menuButtonIconClickTypeCombo);
// Extensions application choice
const extensionApp = this._settings.get_string('menu-button-extensions-app');
const extensionsAppRow = new Adw.ActionRow({
title: _('Preferred Extensions Application'),
});
const extensionsAppCombo = new Gtk.ComboBoxText({
valign: Gtk.Align.CENTER,
});
extensionsAppCombo.append('org.gnome.Extensions.desktop', _('GNOME Extensions'));
extensionsAppCombo.append('com.mattjakeman.ExtensionManager.desktop', _('Extensions Manager'));
extensionsAppCombo.set_active_id(extensionApp.toString());
extensionsAppCombo.connect('changed', () => {
this._settings.set_string('menu-button-extensions-app', extensionsAppCombo.get_active_id());
});
extensionsAppRow.add_suffix(extensionsAppCombo);
// Choose Terminal
const menuButtonTerminalRow = new Adw.ActionRow({
title: _('Terminal'),
});
// Change Terminal and build it's option in prefs
const currentTerminal = this._settings.get_string('menu-button-terminal');
const changeTerminalInput = new Gtk.Entry({
valign: Gtk.Align.CENTER,
});
changeTerminalInput.set_text(currentTerminal);
changeTerminalInput.connect('changed', () => {
this._settings.set_string('menu-button-terminal', changeTerminalInput.get_text());
});
menuButtonTerminalRow.add_suffix(changeTerminalInput);
// Change Software Center and build it's option in prefs
const softwareCentreRow = new Adw.ActionRow({
title: _('Software Center'),
});
const currentSoftwareCenter = this._settings.get_string('menu-button-software-center');
const changeSoftwareCenterInput = new Gtk.Entry({
valign: Gtk.Align.CENTER,
});
changeSoftwareCenterInput.set_text(currentSoftwareCenter);
changeSoftwareCenterInput.connect('changed', () => {
this._settings.set_string('menu-button-software-center', changeSoftwareCenterInput.get_text());
});
softwareCentreRow.add_suffix(changeSoftwareCenterInput);
// Change System Monitor and build it's option in prefs
const systemMonitorRow = new Adw.ActionRow({
title: _('System Monitor'),
});
const currentSystemMonitor = this._settings.get_string('menu-button-system-monitor');
const changeSystemMonitorInput = new Gtk.Entry({
valign: Gtk.Align.CENTER,
});
changeSystemMonitorInput.set_text(currentSystemMonitor);
changeSystemMonitorInput.connect('changed', () => {
this._settings.set_string('menu-button-system-monitor', changeSystemMonitorInput.get_text());
});
systemMonitorRow.add_suffix(changeSystemMonitorInput);
// Power Options
const showPowerOptionsRow = new Adw.ActionRow({
title: _('Enable Power Options'),
});
const showPowerOptionsSwitch = new Gtk.Switch({
valign: Gtk.Align.CENTER,
});
showPowerOptionsSwitch.set_active(this._settings.get_boolean('show-power-options'));
showPowerOptionsSwitch.connect('notify::active', widget => {
this._settings.set_boolean('show-power-options', widget.get_active());
});
showPowerOptionsRow.add_suffix(showPowerOptionsSwitch);
// Toggle Force Quit option and build it's option in prefs
const forceQuitOptionrow = new Adw.ActionRow({
title: _('Hide Force Quit option'),
});
const forceQuitOptionsSwitch = new Gtk.Switch({
valign: Gtk.Align.CENTER,
});
forceQuitOptionsSwitch.set_active(this._settings.get_boolean('hide-forcequit'));
forceQuitOptionsSwitch.connect('notify::active', widget => {
this._settings.set_boolean('hide-forcequit', widget.get_active());
});
forceQuitOptionrow.add_suffix(forceQuitOptionsSwitch);
// Toggle Lock Screen option and build it's option in prefs
const lockScreenOptionRow = new Adw.ActionRow({
title: _('Show Lock Screen option'),
});
const showLockScreenSwitch = new Gtk.Switch({
valign: Gtk.Align.CENTER,
});
showLockScreenSwitch.set_active(this._settings.get_boolean('show-lockscreen'));
showLockScreenSwitch.connect('notify::active', widget => {
this._settings.set_boolean('show-lockscreen', widget.get_active());
});
lockScreenOptionRow.add_suffix(showLockScreenSwitch);
// Toggle Software centre option and build it's option in prefs
const softwareCentreOptionRow = new Adw.ActionRow({
title: _('Hide Software Centre option'),
});
const hideSoftwareCentreSwitch = new Gtk.Switch({
valign: Gtk.Align.CENTER,
});
hideSoftwareCentreSwitch.set_active(this._settings.get_boolean('hide-softwarecentre'));
hideSoftwareCentreSwitch.connect('notify::active', widget => {
this._settings.set_boolean('hide-softwarecentre', widget.get_active());
});
softwareCentreOptionRow.add_suffix(hideSoftwareCentreSwitch);
// Activities Button visibility
const activitiesButtonVisiblityRow = new Adw.ActionRow({
title: _('Show Activities Button'),
});
const activitiesButtonVisiblitySwitch = new Gtk.Switch({
valign: Gtk.Align.CENTER,
active: this._settings.get_boolean('show-activities-button'),
});
activitiesButtonVisiblitySwitch.connect('notify::active', widget => {
this._settings.set_boolean('show-activities-button', widget.get_active());
});
activitiesButtonVisiblityRow.add_suffix(activitiesButtonVisiblitySwitch);
// Icon Shadow Visibility
const iconShadowVisibilityRow = new Adw.ActionRow({
title: _('Hide Icon Shadow'),
});
const iconShadowRowVisiblitySwitch = new Gtk.Switch({
valign: Gtk.Align.CENTER,
active: this._settings.get_boolean('hide-icon-shadow'),
});
iconShadowRowVisiblitySwitch.connect('notify::active', widget => {
this._settings.set_boolean('hide-icon-shadow', widget.get_active());
});
iconShadowVisibilityRow.add_suffix(iconShadowRowVisiblitySwitch);
// Pref Group
prefGroup1.add(menuButtonIconClickTypeRow);
prefGroup1.add(extensionsAppRow);
prefGroup1.add(menuButtonTerminalRow);
prefGroup1.add(softwareCentreRow);
prefGroup1.add(systemMonitorRow);
prefGroup2.add(showPowerOptionsRow);
prefGroup2.add(forceQuitOptionrow);
prefGroup2.add(lockScreenOptionRow);
prefGroup2.add(softwareCentreOptionRow);
prefGroup3.add(activitiesButtonVisiblityRow);
prefGroup3.add(iconShadowVisibilityRow);
this.add(prefGroup1);
this.add(prefGroup2);
this.add(prefGroup3);
}
});
// Parts taken from Arc Menu
// Create the About page
export const AboutPage = GObject.registerClass(class LogoMenuAboutPage extends Adw.PreferencesPage {
_init(metadata) {
super._init({
title: _('About'),
icon_name: 'info-symbolic',
});
const PROJECT_IMAGE = 'settings-logo-menu-logo';
const EXTERNAL_LINK_ICON = 'adw-external-link-symbolic'
const logoMenuLogoGroup = new Adw.PreferencesGroup();
const logoMenuBox = new Gtk.Box({
orientation: Gtk.Orientation.VERTICAL,
margin_top: 10,
margin_bottom: 10,
hexpand: false,
vexpand: false,
});
const projectImage = new Gtk.Image({
margin_bottom: 15,
icon_name: PROJECT_IMAGE,
pixel_size: 100,
});
const logoMenuLabel = new Gtk.Label({
label: `<span size="large"><b>${_('Logo Menu')}</b></span>`,
use_markup: true,
vexpand: true,
valign: Gtk.Align.FILL,
});
const projectDescriptionLabel = new Gtk.Label({
label: _('Quick access menu for GNOME'),
hexpand: false,
vexpand: false,
margin_bottom: 5,
});
logoMenuBox.append(projectImage);
logoMenuBox.append(logoMenuLabel);
logoMenuBox.append(projectDescriptionLabel);
logoMenuLogoGroup.add(logoMenuBox);
this.add(logoMenuLogoGroup);
// -----------------------------------------------------------------------
// Extension/OS Info Group------------------------------------------------
const extensionInfoGroup = new Adw.PreferencesGroup();
const logoMenuVersionRow = new Adw.ActionRow({
title: _('Logo Menu Version'),
});
let releaseVersion;
if (metadata['version-name'])
releaseVersion = metadata['version-name'];
else
releaseVersion = 'unknown';
logoMenuVersionRow.add_suffix(new Gtk.Label({
label: `${releaseVersion}`,
}));
const gnomeVersionRow = new Adw.ActionRow({
title: _('GNOME Version'),
});
gnomeVersionRow.add_suffix(new Gtk.Label({
label: `${Config.PACKAGE_VERSION.toString()}`,
}));
const createdByRow = new Adw.ActionRow({
title: _('Created with love by'),
});
createdByRow.add_suffix(new Gtk.Label({
label: 'Aryan Kaushik',
}));
const matrixRoomRow = new Adw.ActionRow({
title: _('Matrix/Element room'),
});
matrixRoomRow.add_suffix(new Gtk.LinkButton({
icon_name: EXTERNAL_LINK_ICON,
uri: 'https://matrix.to/#/#logo-menu:matrix.org',
}));
const githubLinkRow = new Adw.ActionRow({
title: 'GitHub',
});
githubLinkRow.add_suffix(new Gtk.LinkButton({
icon_name: EXTERNAL_LINK_ICON,
uri: 'https://github.com/Aryan20/LogoMenu',
}));
const contributorRow = new Adw.ActionRow({
title: _('Contributors'),
});
contributorRow.add_suffix(new Gtk.LinkButton({
icon_name: EXTERNAL_LINK_ICON,
uri: 'https://github.com/Aryan20/Logomenu/graphs/contributors'
}));
extensionInfoGroup.add(logoMenuVersionRow);
extensionInfoGroup.add(gnomeVersionRow);
extensionInfoGroup.add(createdByRow);
extensionInfoGroup.add(githubLinkRow);
extensionInfoGroup.add(matrixRoomRow);
extensionInfoGroup.add(contributorRow);
this.add(extensionInfoGroup);
// -----------------------------------------------------------------------
const warrantyLabel = _('This program comes with absolutely no warranty.');
const urlLabel = _('See the %sGNU General Public License, version 2 or later%s for details.').format('<a href="https://gnu.org/licenses/old-licenses/gpl-2.0.html">', '</a>');
const gnuSoftwareGroup = new Adw.PreferencesGroup();
const gnuSofwareLabel = new Gtk.Label({
label: `<span size="small">${warrantyLabel}\n${urlLabel}</span>`,
use_markup: true,
justify: Gtk.Justification.CENTER,
});
const gnuSofwareLabelBox = new Gtk.Box({
orientation: Gtk.Orientation.VERTICAL,
valign: Gtk.Align.END,
vexpand: true,
margin_top: 5,
margin_bottom: 10,
});
gnuSofwareLabelBox.append(gnuSofwareLabel);
gnuSoftwareGroup.add(gnuSofwareLabelBox);
this.add(gnuSoftwareGroup);
}
});

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="496"
height="496"
viewBox="0 0 131.23333 131.23334"
version="1.1"
id="svg4110"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4107" />
<g
id="layer1">
<g
id="g4141"
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
<g
id="g45"
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
<path
id="path22-6"
d="m 56.11382,33.731278 c 2.6,-0.2 4.7,1.5 4.9,4.1 0.2,2.7 -1.7,4.9 -4.3,5.1 -2.5,0.2 -4.7,-1.7 -4.9,-4.2 -0.2,-2.7 1.6,-4.7 4.3,-5 z"
class="st1"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path24-7"
d="m 24.51382,55.031278 c 0,-2.6 2,-4.6 4.4,-4.6 2.4,0 4.7,2.2 4.7,4.7 0,2.4 -2,4.5 -4.3,4.6 -2.9,0 -4.8,-1.8 -4.8,-4.7 z"
class="st2"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path26-5"
d="m 31.61382,25.831278 c -0.4,0.2 -0.6,-0.1 -0.7,-0.4 -3.7,-6.9 -2.6,-15.6000004 3.9,-20.8000004 1.7,-1.4 4.9,-1.7 6.3,-0.3 0.6,0.5 0.7,1.1 0.8,1.8 0.2,1.5 0.5,3 1.5,4.2000004 1.1,1.3 2.5,1.8 4.1,1.7 1.4,0 2.8,-0.2 3.7,1.4 0.5,0.9 0.3,4.4 -0.5,5.1 -0.4,0.3 -0.7,0.1 -1,0 -2.3,-0.9 -4.7,-0.9 -7.1,-0.5 -0.8,0.1 -1.2,-0.1 -1.2,-1 -0.1,-1.5 -0.4,-2.9 -1.2,-4.2 -1.5,-2.7 -4.3,-2.8 -6.1,-0.3 -1.5,2 -1.9,4.4 -2.3,6.8 -0.4,2.1 -0.3,4.3 -0.2,6.5 0,0 -0.1,0 0,0 z"
class="st3"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path28-3"
d="m 34.11382,27.331278 c -0.2,-0.3 -0.1,-0.6 0.2,-0.8 5.7,-5.2 14.2,-6.2 20.8,-1.1 1.7,1.4 2.8,4.3 1.9,6 -0.4,0.7 -0.9,1 -1.5,1.2 -1.4,0.6 -2.7,1.2 -3.6,2.5 -0.9,1.3 -1.1,2.8 -0.7,4.4 0.3,1.3 0.8,2.7 -0.5,3.9 -0.7,0.7 -4.1,1.3 -5,0.7 -0.4,-0.3 -0.3,-0.6 -0.2,-1 0.3,-2.5 -0.3,-4.8 -1.2,-7 -0.3,-0.8 -0.2,-1.2 0.6,-1.4 1.4,-0.4 2.7,-1.1 3.7,-2.1 2.2,-2.1 1.7,-4.8 -1.2,-6 -2.3,-1 -4.7,-0.8 -7,-0.6 -2.2,0.1 -4.3,0.7 -6.3,1.3 z"
class="st1"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path30-5"
d="m 32.81382,29.931278 c 0.3,-0.3 0.5,-0.2 0.8,0 6.6,4 10,11.9 7,19.6 -0.8,2 -3.4,4 -5.3,3.5 -0.8,-0.2 -1.2,-0.6 -1.6,-1.1 -0.9,-1.2 -1.9,-2.3 -3.4,-2.8 -1.6,-0.5 -3,-0.2 -4.4,0.6 -1.2,0.7 -2.4,1.6 -3.9,0.7 -0.9,-0.5 -2.4,-3.6 -2.1,-4.6 0.2,-0.4 0.6,-0.4 1,-0.4 2.5,-0.4 4.5,-1.6 6.4,-3.2 0.6,-0.5 1.1,-0.5 1.6,0.2 0.8,1.2 1.8,2.2 3.1,2.9 2.6,1.5 5.1,0.2 5.4,-2.8 0.3,-2.5 -0.6,-4.7 -1.4,-6.9 -0.9,-2 -2,-3.9 -3.2,-5.7 z"
class="st2"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path32-6"
d="m 29.61382,30.531278 c -0.4,2 -1.3,3.9 -2.5,5.6 -3.6,5.4 -8.8,7.6 -15.2,7 -2.2999997,-0.2 -4.1999997,-2.1 -4.3999997,-4 -0.1,-0.8 0.1,-1.4 0.6,-2 0.7,-0.9 1.3,-1.7 1.6,-2.8 0.5999997,-2.2 -0.2,-4 -1.8,-5.6 -2.2,-2.2 -1.9,-4.2 0.7,-5.8 0.3,-0.2 0.7,-0.4 1.1,-0.6 0.5999997,-0.3 1.0999997,-0.3 1.2999997,0.4 0.9,2.3 2.7,4 4.7,5.4 0.7,0.6 0.7,1 0.1,1.7 -1.2,1.3 -1.9,2.9 -2,4.7 -0.2,2.2 1.1,3.6 3.3,3.6 1.4,0 2.7,-0.5 3.9,-1.1 3.1,-1.6 5.5,-3.9 7.8,-6.3 0.3,-0.1 0.4,-0.3 0.8,-0.2 z"
class="st4"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path34-2"
d="m 13.21382,9.5312776 c 0.2,0 0.7,0.1 1.2,0.2 3.7,0.7000004 6,-0.6 7.2,-4.1 0.8,-2.3 2.5,-3 4.7,-1.8 0.1,0 0.1,0.1 0.2,0.1 2.3,1.3 2.3,1.5 0.9,3.5 -1.2,1.6 -1.8,3.4000004 -2.1,5.3000004 -0.2,1.1 -0.6,1.3 -1.6,0.9 -1.6,-0.6 -3.3,-0.6 -5,0 -1.9,0.6 -2.7,2.3 -2.1,4.2 0.8,2.5 3,3.6 4.9,4.9 1.9,1.3 4.1,2 6.2,2.9 0.3,0.1 0.8,0.1 0.7,0.6 -0.1,0.3 -0.5,0.3 -0.9,0.3 -4.5,0.2 -8.8,-0.5 -12.3,-3.5 -3.3,-2.7 -5.6999997,-6 -5.2999997,-10.6 0.2999997,-1.5 1.3999997,-2.6000004 3.2999997,-2.9000004 z"
class="st5"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path36-9"
d="m 5.0138203,37.631278 c -2.4,0.3 -4.80000003,-1.7 -5.00000003,-4.2 -0.2,-2.4 1.80000003,-4.8 4.10000003,-5 2.6,-0.3 5,1.5 5.2,3.9 0.1,2.3 -1.4,5.1 -4.3,5.3 z"
class="st4"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path38-1"
d="m 47.01382,2.0312776 c 2.5,-0.2 4.9,1.8 5.1,4.3 0.2,2.4 -1.8,4.7000004 -4.2,4.9000004 -2.6,0.2 -4.9,-1.7000004 -5.1,-4.2000004 -0.2,-2.5 1.6,-4.8 4.2,-5 z"
class="st3"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path40-2"
d="m 20.91382,3.9312776 c 0.3,2.6 -1.5,4.8 -4.2,5.2 -2.3,0.3 -4.7,-1.6 -5,-3.8 -0.3,-2.9 1.3,-4.99999996 4,-5.29999996 2.5,-0.3 4.9,1.59999996 5.2,3.89999996 z"
class="st5"
style="fill:#cccccc;fill-opacity:1" />
</g>
</g>
</g>
<style
id="style2"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
<style
id="style2-3"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
</svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="496"
height="496"
viewBox="0 0 131.23333 131.23334"
version="1.1"
id="svg4110"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4107" />
<g
id="layer1">
<g
id="g4141"
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
<g
id="g45"
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
<path
id="path22-6"
d="m 56.11382,33.731278 c 2.6,-0.2 4.7,1.5 4.9,4.1 0.2,2.7 -1.7,4.9 -4.3,5.1 -2.5,0.2 -4.7,-1.7 -4.9,-4.2 -0.2,-2.7 1.6,-4.7 4.3,-5 z"
class="st1"
style="fill:#86da2f;fill-opacity:1" />
<path
id="path24-7"
d="m 24.51382,55.031278 c 0,-2.6 2,-4.6 4.4,-4.6 2.4,0 4.7,2.2 4.7,4.7 0,2.4 -2,4.5 -4.3,4.6 -2.9,0 -4.8,-1.8 -4.8,-4.7 z"
class="st2"
style="fill:#24c2ff;fill-opacity:1" />
<path
id="path26-5"
d="m 31.61382,25.831278 c -0.4,0.2 -0.6,-0.1 -0.7,-0.4 -3.7,-6.9 -2.6,-15.6000004 3.9,-20.8000004 1.7,-1.4 4.9,-1.7 6.3,-0.3 0.6,0.5 0.7,1.1 0.8,1.8 0.2,1.5 0.5,3 1.5,4.2000004 1.1,1.3 2.5,1.8 4.1,1.7 1.4,0 2.8,-0.2 3.7,1.4 0.5,0.9 0.3,4.4 -0.5,5.1 -0.4,0.3 -0.7,0.1 -1,0 -2.3,-0.9 -4.7,-0.9 -7.1,-0.5 -0.8,0.1 -1.2,-0.1 -1.2,-1 -0.1,-1.5 -0.4,-2.9 -1.2,-4.2 -1.5,-2.7 -4.3,-2.8 -6.1,-0.3 -1.5,2 -1.9,4.4 -2.3,6.8 -0.4,2.1 -0.3,4.3 -0.2,6.5 0,0 -0.1,0 0,0 z"
class="st3"
style="fill:#ffcb12;fill-opacity:1" />
<path
id="path28-3"
d="m 34.11382,27.331278 c -0.2,-0.3 -0.1,-0.6 0.2,-0.8 5.7,-5.2 14.2,-6.2 20.8,-1.1 1.7,1.4 2.8,4.3 1.9,6 -0.4,0.7 -0.9,1 -1.5,1.2 -1.4,0.6 -2.7,1.2 -3.6,2.5 -0.9,1.3 -1.1,2.8 -0.7,4.4 0.3,1.3 0.8,2.7 -0.5,3.9 -0.7,0.7 -4.1,1.3 -5,0.7 -0.4,-0.3 -0.3,-0.6 -0.2,-1 0.3,-2.5 -0.3,-4.8 -1.2,-7 -0.3,-0.8 -0.2,-1.2 0.6,-1.4 1.4,-0.4 2.7,-1.1 3.7,-2.1 2.2,-2.1 1.7,-4.8 -1.2,-6 -2.3,-1 -4.7,-0.8 -7,-0.6 -2.2,0.1 -4.3,0.7 -6.3,1.3 z"
class="st1"
style="fill:#86da2f;fill-opacity:1" />
<path
id="path30-5"
d="m 32.81382,29.931278 c 0.3,-0.3 0.5,-0.2 0.8,0 6.6,4 10,11.9 7,19.6 -0.8,2 -3.4,4 -5.3,3.5 -0.8,-0.2 -1.2,-0.6 -1.6,-1.1 -0.9,-1.2 -1.9,-2.3 -3.4,-2.8 -1.6,-0.5 -3,-0.2 -4.4,0.6 -1.2,0.7 -2.4,1.6 -3.9,0.7 -0.9,-0.5 -2.4,-3.6 -2.1,-4.6 0.2,-0.4 0.6,-0.4 1,-0.4 2.5,-0.4 4.5,-1.6 6.4,-3.2 0.6,-0.5 1.1,-0.5 1.6,0.2 0.8,1.2 1.8,2.2 3.1,2.9 2.6,1.5 5.1,0.2 5.4,-2.8 0.3,-2.5 -0.6,-4.7 -1.4,-6.9 -0.9,-2 -2,-3.9 -3.2,-5.7 z"
class="st2"
style="fill:#24c2ff;fill-opacity:1" />
<path
id="path32-6"
d="m 29.61382,30.531278 c -0.4,2 -1.3,3.9 -2.5,5.6 -3.6,5.4 -8.8,7.6 -15.2,7 -2.2999997,-0.2 -4.1999997,-2.1 -4.3999997,-4 -0.1,-0.8 0.1,-1.4 0.6,-2 0.7,-0.9 1.3,-1.7 1.6,-2.8 0.5999997,-2.2 -0.2,-4 -1.8,-5.6 -2.2,-2.2 -1.9,-4.2 0.7,-5.8 0.3,-0.2 0.7,-0.4 1.1,-0.6 0.5999997,-0.3 1.0999997,-0.3 1.2999997,0.4 0.9,2.3 2.7,4 4.7,5.4 0.7,0.6 0.7,1 0.1,1.7 -1.2,1.3 -1.9,2.9 -2,4.7 -0.2,2.2 1.1,3.6 3.3,3.6 1.4,0 2.7,-0.5 3.9,-1.1 3.1,-1.6 5.5,-3.9 7.8,-6.3 0.3,-0.1 0.4,-0.3 0.8,-0.2 z"
class="st4"
style="fill:#0069da;fill-opacity:1" />
<path
id="path34-2"
d="m 13.21382,9.5312776 c 0.2,0 0.7,0.1 1.2,0.2 3.7,0.7000004 6,-0.6 7.2,-4.1 0.8,-2.3 2.5,-3 4.7,-1.8 0.1,0 0.1,0.1 0.2,0.1 2.3,1.3 2.3,1.5 0.9,3.5 -1.2,1.6 -1.8,3.4000004 -2.1,5.3000004 -0.2,1.1 -0.6,1.3 -1.6,0.9 -1.6,-0.6 -3.3,-0.6 -5,0 -1.9,0.6 -2.7,2.3 -2.1,4.2 0.8,2.5 3,3.6 4.9,4.9 1.9,1.3 4.1,2 6.2,2.9 0.3,0.1 0.8,0.1 0.7,0.6 -0.1,0.3 -0.5,0.3 -0.9,0.3 -4.5,0.2 -8.8,-0.5 -12.3,-3.5 -3.3,-2.7 -5.6999997,-6 -5.2999997,-10.6 0.2999997,-1.5 1.3999997,-2.6000004 3.2999997,-2.9000004 z"
class="st5"
style="fill:#ff4649;fill-opacity:1" />
<path
id="path36-9"
d="m 5.0138203,37.631278 c -2.4,0.3 -4.80000003,-1.7 -5.00000003,-4.2 -0.2,-2.4 1.80000003,-4.8 4.10000003,-5 2.6,-0.3 5,1.5 5.2,3.9 0.1,2.3 -1.4,5.1 -4.3,5.3 z"
class="st4"
style="fill:#0069da;fill-opacity:1" />
<path
id="path38-1"
d="m 47.01382,2.0312776 c 2.5,-0.2 4.9,1.8 5.1,4.3 0.2,2.4 -1.8,4.7000004 -4.2,4.9000004 -2.6,0.2 -4.9,-1.7000004 -5.1,-4.2000004 -0.2,-2.5 1.6,-4.8 4.2,-5 z"
class="st3"
style="fill:#ffcb12;fill-opacity:1" />
<path
id="path40-2"
d="m 20.91382,3.9312776 c 0.3,2.6 -1.5,4.8 -4.2,5.2 -2.3,0.3 -4.7,-1.6 -5,-3.8 -0.3,-2.9 1.3,-4.99999996 4,-5.29999996 2.5,-0.3 4.9,1.59999996 5.2,3.89999996 z"
class="st5"
style="fill:#ff4649;fill-opacity:1" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata14">
<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="defs12" />
<path
id="path4"
d="m 247.93344,17.871894 c -20.49358,50.233214 -32.85373,83.091376 -55.67015,131.826236 13.9889,14.826 31.1605,32.09056 59.04738,51.59003 -29.98068,-12.33447 -50.43052,-24.71727 -65.71321,-37.56731 -29.20024,60.91971 -74.95051,147.69601 -167.7909,314.47259 72.96954,-42.11649 123.77827,-68.0824 176.49709,-77.99095 -2.26368,-9.73362 -3.55081,-20.26245 -3.46331,-31.24816 l 0.0805,-2.33732 c 1.15775,-46.73933 31.74236,-84.002 60.03547,-84.06511 28.29312,-0.0633 55.80715,46.15485 54.64917,92.8942 -0.2175,8.79569 -1.21012,17.25536 -2.94362,25.10278 52.1433,10.19855 103.4958,36.09772 175.4777,77.64456 -14.1938,-26.12472 -26.86242,-49.67506 -38.96013,-72.10451 -19.05704,-14.7673 -38.93365,-33.98597 -79.47881,-54.79276 27.86845,7.23979 47.82218,15.59244 63.3754,24.92903 C 300.07316,147.25839 290.11644,116.83076 247.92986,17.860386 Z"
style="fill:#cccccc;fill-rule:evenodd;stroke-width:11.50832653" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata14">
<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="defs12" />
<path
id="path4"
d="m 247.93344,17.871894 c -20.49358,50.233214 -32.85373,83.091376 -55.67015,131.826236 13.9889,14.826 31.1605,32.09056 59.04738,51.59003 -29.98068,-12.33447 -50.43052,-24.71727 -65.71321,-37.56731 -29.20024,60.91971 -74.95051,147.69601 -167.7909,314.47259 72.96954,-42.11649 123.77827,-68.0824 176.49709,-77.99095 -2.26368,-9.73362 -3.55081,-20.26245 -3.46331,-31.24816 l 0.0805,-2.33732 c 1.15775,-46.73933 31.74236,-84.002 60.03547,-84.06511 28.29312,-0.0633 55.80715,46.15485 54.64917,92.8942 -0.2175,8.79569 -1.21012,17.25536 -2.94362,25.10278 52.1433,10.19855 103.4958,36.09772 175.4777,77.64456 -14.1938,-26.12472 -26.86242,-49.67506 -38.96013,-72.10451 -19.05704,-14.7673 -38.93365,-33.98597 -79.47881,-54.79276 27.86845,7.23979 47.82218,15.59244 63.3754,24.92903 C 300.07316,147.25839 290.11644,116.83076 247.92986,17.860386 Z"
style="fill:#1793d1;fill-rule:evenodd;stroke-width:11.50832653;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12">
<linearGradient
id="linearGradient1402">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop1400" />
</linearGradient>
</defs>
<g
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
id="g849"
transform="matrix(0.91717941,0,0,0.91717941,-16.480902,-15.836491)">
<g
id="layer8"
style="display:inline"
transform="translate(287.5,550)" />
<g
id="layer7"
style="display:inline"
transform="translate(287.5,550)">
<g
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
id="g2591"
transform="matrix(1.0009916,0,0,1.0009916,-287.86695,-550.38088)">
<g
id="g1560"
style="clip-rule:evenodd;display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
transform="translate(-62.5,-6.5e-4)">
<g
id="g1445"
style="fill:#000000;fill-opacity:1"
transform="translate(0,6.5e-4)">
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 452.45312,411.80078 c -32.06055,44.58529 -64.12109,89.17057 -96.18164,133.75586 42.48698,-30.0944 84.97396,-60.1888 127.46094,-90.2832 -10.42643,-14.49089 -20.85287,-28.98177 -31.2793,-43.47266 z"
id="path1291" />
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 390,325 c 0,39.4031 0,78.8062 0,118.2093 14.18877,-19.70087 28.37753,-39.40174 42.5663,-59.10261 C 418.37753,364.40446 404.18877,344.70223 390,325 Z"
id="path1289" />
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 476.23047,152.19531 c -40.78832,17.07445 -81.57684,34.1484 -122.36524,51.22266 C 408.4679,279.35565 463.07272,355.2918 517.67406,431.23044 545.11604,411.7923 572.55802,392.35416 600,372.91602 558.74349,299.34245 517.48698,225.76888 476.23047,152.19531 Z"
id="path1287" />
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="M 223.76953,152.19531 C 182.51302,225.76888 141.25651,299.34245 100,372.91602 c 82.5,58.43815 165,116.8763 247.5,175.31445 0,-114.7474 0,-229.49479 0,-344.24219 -41.24347,-17.26436 -82.48708,-34.52841 -123.73047,-51.79297 z"
id="path1285" />
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 352.5,108.39648 v 52.19336 L 329.46484,114.52148 228.57422,148.78516 350,199.61523 471.42578,148.78516 Z"
id="path1283" />
<path
id="path1631-9"
style="color:#000000;clip-rule:evenodd;display:inline;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 390,25 c -12.5,9.615234 -25,19.230469 -37.5,28.845703 0,7.051432 0,14.102865 0,21.154297 15.83333,0 31.66667,0 47.5,0 -3.33333,-16.666667 -6.66667,-33.333333 -10,-50 z" />
</g>
<path
id="path1633-6"
style="color:#000000;clip-rule:evenodd;display:inline;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m 347.5,26.25 c -15.08789,7.544271 -30.17578,15.088541 -45.26367,22.632812 15.08789,30.175783 30.17578,60.351568 45.26367,90.527348 0,-37.72005 0,-75.440107 0,-113.16016 z" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12" />
<g
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
id="g849"
transform="matrix(0.91717941,0,0,0.91717941,-16.480902,-15.836491)">
<g
id="layer8"
style="display:inline"
transform="translate(287.5,550)" />
<g
id="layer7"
style="display:inline"
transform="translate(287.5,550)">
<path
id="path1639"
style="color:#000000;overflow:visible;fill:#2c2c2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="M 475,150 H 350 L 349.998,550 483.73242,455.27344 460,390 515.63477,432.67383 600,372.91602 Z"
transform="translate(-350,-550)" />
<path
style="color:#000000;overflow:visible;fill:#d3506f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="M -250,-177.08333 C -166.66667,-118.05555 -83.333333,-59.027777 0,0 5.6168904,-20.318129 16.776706,-39.823731 15.408525,-61.428776 17.385993,-140.95252 19.363462,-220.47626 21.340931,-300 14.958616,-318.63132 1.1436116,-335.70762 0.15443549,-355.54282 -8.4459121,-369.69334 -32.776816,-369.88554 -47.284099,-378.91365 -65.55003,-385.68541 -83.435815,-394.4311 -101.93339,-400 c -7.68887,0 -15.37774,0 -23.06661,0 -41.66667,74.30556 -83.33333,148.61111 -125,222.91667 z"
id="path1627" />
<path
style="color:#000000;overflow:visible;fill:#a61200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m -125,-400 c 41.666668,-14.15094 83.333332,-28.30189 125,-42.45283 19.801989,6.7252 39.603976,13.45041 59.405965,20.17561 -3.906867,5.09703 -24.217781,15.8645 -8.103858,17.85923 24.550851,1.71846 49.137783,2.84775 73.697893,4.41799 -41.666667,17.44186 -83.333333,34.88372 -125,52.32558"
id="path1629" />
<path
style="color:#000000;overflow:visible;fill:#00a67c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m -24.999998,-475 c 24.9999993333333,0 49.999999,0 74.999998,0 -3.333333,-16.66667 -6.666667,-33.33333 -10,-50 -21.666664,16.66667 -43.3333345,33.33333 -64.999998,50 z"
id="path1631" />
<path
style="color:#000000;overflow:visible;fill:#edbb60;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m 4.9025e-5,-400 c 3.25e-7,-41.66667 6.5e-7,-83.33333 9.75e-7,-125 -16.666686,8.33333 -33.333367,16.66667 -50.000053,25 16.666688,33.33333 33.333364,66.66667 50.000052025,100 z"
id="path1633" />
<path
style="color:#000000;overflow:visible;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="M 133.73205,-94.726837 C 122.79246,-109.93118 111.85288,-125.13553 100.91329,-140.33988 67.27492,-93.55992 33.63655,-46.77996 -0.00182072,0 -0.00121381,-115.89147 -6.0690667e-4,-231.78295 0,-347.67442 c 55.211897,76.78306 110.42379,153.56611 165.63569,230.34917 -10.63455,7.5328 -21.26909,15.06561 -31.90364,22.598413 z"
id="path1641" />
<path
style="color:#000000;overflow:visible;fill:#96caf3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m 40,-106.7907 c 0,-39.4031 0,-78.8062 0,-118.2093 14.188768,19.70223 28.377535,39.40446 42.566303,59.10669 C 68.377535,-146.19244 54.188768,-126.49157 40,-106.7907 Z"
id="path1643" />
<path
style="color:#000000;overflow:visible;opacity:1;fill:#530900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.803;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="M 4.9025e-5,-400 C 41.666699,-400 83.33335,-400 125,-400 c -21.86468,-7.42574 -43.729357,-14.85148 -65.594035,-22.27722"
id="path1955" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="496" height="496" viewBox="0 0 496 496" version="1.1">
<defs>
<linearGradient id="linear0" gradientUnits="userSpaceOnUse" x1="50" y1="50" x2="550" y2="550" gradientTransform="matrix(0.918519,0,0,0.918519,-27.555556,-27.555556)">
<stop offset="0.0684898" style="stop-color:rgb(0%,27.843139%,67.058825%);stop-opacity:1;"/>
<stop offset="0.741212" style="stop-color:rgb(54.11765%,16.862746%,88.627452%);stop-opacity:1;"/>
</linearGradient>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear0);" d="M 18.371094 110.222656 C 18.371094 59.492188 59.492188 18.371094 110.222656 18.371094 L 248 18.371094 C 374.820312 18.371094 477.628906 121.179688 477.628906 248 C 477.628906 374.820312 374.820312 477.628906 248 477.628906 C 121.179688 477.628906 18.371094 374.820312 18.371094 248 Z M 18.371094 110.222656 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:0.501961;" d="M 135.941406 18.371094 L 194.726562 18.371094 L 194.726562 135.941406 L 317.976562 135.941406 C 369.625 135.941406 411.496094 177.808594 411.496094 229.460938 C 411.496094 329.996094 329.996094 411.496094 229.460938 411.496094 C 177.808594 411.496094 135.941406 369.625 135.941406 317.976562 L 135.941406 194.726562 L 18.371094 194.726562 L 18.371094 135.941406 L 135.941406 135.941406 Z M 194.726562 194.726562 L 194.726562 317.976562 C 194.726562 337.160156 210.277344 352.710938 229.460938 352.710938 C 297.527344 352.710938 352.710938 297.527344 352.710938 229.460938 C 352.710938 210.277344 337.160156 194.726562 317.976562 194.726562 Z M 194.726562 194.726562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.698039;" d="M 194.726562 73.480469 C 194.726562 58.261719 182.390625 45.925781 167.171875 45.925781 L 163.496094 45.925781 C 148.277344 45.925781 135.941406 58.261719 135.941406 73.480469 L 135.941406 135.941406 L 73.480469 135.941406 C 58.261719 135.941406 45.925781 148.277344 45.925781 163.496094 L 45.925781 167.171875 C 45.925781 182.390625 58.261719 194.726562 73.480469 194.726562 L 135.941406 194.726562 L 135.941406 257.183594 C 135.941406 272.402344 148.277344 284.742188 163.496094 284.742188 L 167.171875 284.742188 C 182.390625 284.742188 194.726562 272.402344 194.726562 257.183594 L 194.726562 194.726562 L 257.183594 194.726562 C 272.402344 194.726562 284.742188 182.390625 284.742188 167.171875 L 284.742188 163.496094 C 284.742188 148.277344 272.402344 135.941406 257.183594 135.941406 L 194.726562 135.941406 Z M 194.726562 73.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 259.480469 161.355469 C 262.542969 163.125 262.542969 167.542969 259.480469 169.308594 L 240.191406 180.445312 C 237.132812 182.214844 233.304688 180.003906 233.304688 176.46875 L 233.304688 154.195312 C 233.304688 150.660156 237.132812 148.453125 240.191406 150.21875 Z M 259.480469 161.355469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 169.308594 259.480469 C 167.542969 262.542969 163.125 262.542969 161.355469 259.480469 L 150.21875 240.191406 C 148.453125 237.132812 150.660156 233.304688 154.195312 233.304688 L 176.46875 233.304688 C 180.003906 233.304688 182.214844 237.132812 180.445312 240.191406 Z M 169.308594 259.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 161.355469 71.183594 C 163.125 68.125 167.542969 68.125 169.308594 71.183594 L 180.445312 90.472656 C 182.214844 93.535156 180.003906 97.363281 176.46875 97.363281 L 154.195312 97.363281 C 150.660156 97.363281 148.453125 93.535156 150.21875 90.472656 Z M 161.355469 71.183594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 71.183594 169.308594 C 68.125 167.542969 68.125 163.125 71.183594 161.355469 L 90.472656 150.21875 C 93.535156 148.453125 97.363281 150.660156 97.363281 154.195312 L 97.363281 176.46875 C 97.363281 180.003906 93.535156 182.214844 90.472656 180.445312 Z M 71.183594 169.308594 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1.1"
id="svg16"
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/">
<metadata
id="metadata22">
<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="defs20" />
<path
style="fill:#cccccc;stroke-width:11.57627106"
d="M 249.52542,16.949153 A 231.52542,231.52542 0 0 0 18,248.47458 231.52542,231.52542 0 0 0 249.52542,480 231.52542,231.52542 0 0 0 481.05085,248.47458 231.52542,231.52542 0 0 0 249.52542,16.949153 Z m 48.29476,46.305085 c 4.36594,-0.05788 8.54834,0.260466 13.27201,0.655217 25.83141,2.161984 53.25158,18.874647 71.15338,45.061565 24.14967,35.32626 22.98443,80.3693 0.81392,107.32916 -11.13767,13.54389 -14.72405,14.54779 -22.22551,20.59766 4.71798,-9.04894 6.11929,-12.51974 5.53943,-19.64806 -0.365,-4.47168 -2.06473,-8.02293 -3.02973,-10.01613 -3.70735,-7.65736 -9.41584,-10.5189 -16.09825,-13.81466 -8.21369,-4.051 -17.39067,-4.74836 -23.08471,-4.27327 -4.41592,0.36813 -6.69499,0.55451 -12.39023,2.50974 -26.98011,9.26322 -57.90528,0.80687 -74.45442,-23.40132 -19.78339,-28.93917 -12.00129,-69.01402 17.43224,-89.512588 8.66928,-6.037488 18.9172,-12.00031 28.7598,-13.950333 5.40898,-1.071962 9.94613,-1.479331 14.31207,-1.537444 z M 141.4953,144.31071 c 4.34856,-0.0926 8.66651,0.20027 12.91025,0.92726 17.05544,2.91896 19.66139,5.52315 28.53371,8.99881 -10.04346,0.39128 -13.68789,0.88212 -19.46714,4.88368 -3.62492,2.51113 -5.81414,5.6975 -7.03168,7.50652 -4.67743,6.94959 -4.26467,13.27903 -3.75323,20.64281 0.6287,9.05125 4.59266,17.27041 7.82302,21.93159 2.50524,3.61504 3.8069,5.47083 8.29784,9.40572 21.26964,18.63629 29.38003,49.39989 17.00265,75.51711 v 0.0232 c -14.81831,31.21329 -52.76068,44.21193 -84.80976,28.9859 -9.441374,-4.48616 -19.592241,-10.3823 -26.13705,-17.885 C 67.670676,297.00207 64.409456,290.49239 60.393571,281.98267 49.413134,258.71506 50.065068,226.94445 63.468519,198.68781 79.289715,165.33426 111.05539,144.98422 141.4953,144.31094 Z m 186.16995,138.91525 c 31.29817,0.7131 57.69741,25.34208 60.32324,57.70054 0.8248,10.16605 0.78591,21.62679 -2.39666,30.81731 -3.49806,10.1011 -7.43853,16.03718 -12.72938,23.58213 -14.46642,20.62961 -41.95319,35.59264 -72.71345,38.05248 -41.4958,3.31822 -78.76821,-19.28283 -90.55267,-50.80455 -5.92014,-15.83541 -4.9688,-19.27333 -6.37599,-28.46582 5.28917,8.29579 7.49874,11.10952 13.76943,14.04074 3.93435,1.83797 7.73396,2.13733 9.88053,2.28366 8.24667,0.56144 13.47177,-2.87138 19.51235,-6.8961 7.4248,-4.94689 12.51028,-12.31554 14.89992,-17.31915 1.85327,-3.88048 2.78715,-5.88445 3.93413,-11.59884 5.43352,-27.071 27.70446,-48.96022 56.14039,-51.23415 v 0.0231 c 2.12458,-0.17017 4.22161,-0.22805 6.30816,-0.18059 z"
id="circle4" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,293 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 496.00001 496.00001"
version="1.1"
id="svg16"
sodipodi:docname="clear-linux-logo.svg"
width="496"
height="496"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
inkscape:dataloss="true"
inkscape:export-filename="clear-linux-logo.svg"
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:xlink="http://www.w3.org/1999/xlink"
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/">
<sodipodi:namedview
id="namedview16"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="1.3045867"
inkscape:cx="176.30105"
inkscape:cy="234.55705"
inkscape:window-width="1920"
inkscape:window-height="1048"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg16" />
<defs
id="defs16">
<style
id="style1">.cls-1{fill:url(#linear-gradient);}.cls-2{fill:url(#linear-gradient-2);}.cls-3{fill:url(#linear-gradient-3);}.cls-4{fill:url(#linear-gradient-4);}.cls-5{fill:#0070c5;}.cls-6{fill:url(#linear-gradient-5);}.cls-7{fill:url(#linear-gradient-6);}.cls-8{fill:url(#linear-gradient-7);}.cls-9{fill:url(#linear-gradient-8);}.cls-10{fill:url(#linear-gradient-9);}</style>
<linearGradient
id="linear-gradient"
x1="-727.56"
y1="-85.849998"
x2="-728.04999"
y2="-85.800003"
gradientTransform="matrix(20.22,0,0,47.23,14733.51,4089.2)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#7dd2f7"
id="stop1" />
<stop
offset="1"
stop-color="#b1e4fa"
id="stop2" />
</linearGradient>
<linearGradient
id="linear-gradient-2"
x1="-739.45001"
y1="-52.959999"
x2="-738.44"
y2="-52.279999"
gradientTransform="matrix(30.5,0,0,16.66,22572.77,885.64)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#33bef2"
id="stop3" />
<stop
offset="0.75"
stop-color="#88e1b8"
id="stop4" />
</linearGradient>
<linearGradient
id="linear-gradient-3"
x1="-714.38"
y1="-32.720001"
x2="-714.13"
y2="-32.470001"
gradientTransform="matrix(14.33,0,0,11.99,10248.5,397.99)"
xlink:href="#linear-gradient" />
<linearGradient
id="linear-gradient-4"
x1="-729.33002"
y1="1.21"
x2="-728.5"
y2="2.72"
gradientTransform="matrix(20.88,0,0,8.09,15237.47,-3.56)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#33bef2"
id="stop5" />
<stop
offset="0.85"
stop-color="#88e1b8"
id="stop6" />
</linearGradient>
<linearGradient
id="linear-gradient-5"
x1="-735.59003"
y1="-87.980003"
x2="-735.96002"
y2="-87.43"
gradientTransform="matrix(26.53,0,0,53.4,19531.2,4732.97)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#00aeff"
id="stop7" />
<stop
offset="1"
stop-color="#88e1b8"
id="stop8" />
</linearGradient>
<linearGradient
id="linear-gradient-6"
x1="-739.40997"
y1="-23.92"
x2="-739.40997"
y2="-23.200001"
gradientTransform="matrix(31.1,0,0,10.63,23011.22,315.2)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#d1d3d5"
id="stop9" />
<stop
offset="1"
stop-color="#f6f7f8"
id="stop10" />
</linearGradient>
<linearGradient
id="linear-gradient-7"
x1="-736.17999"
y1="-56.27"
x2="-735.29999"
y2="-57.07"
gradientTransform="matrix(26.53,0,0,18.16,19531.2,1089.37)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#f6f7f8"
stop-opacity="0.4"
id="stop11" />
<stop
offset="1"
stop-color="#f0f2f4"
stop-opacity="0"
id="stop12" />
</linearGradient>
<linearGradient
id="linear-gradient-8"
x1="-739.40997"
y1="-20.59"
x2="-739.40997"
y2="-20.049999"
gradientTransform="matrix(31.1,0,0,10.21,23011.22,277.76)"
xlink:href="#linear-gradient-6" />
<linearGradient
id="linear-gradient-9"
x1="-731.44"
y1="-89.099998"
x2="-729.95001"
y2="-88.629997"
gradientTransform="matrix(21.89,0,0,56.51,16019.62,5058.67)"
gradientUnits="userSpaceOnUse">
<stop
offset="0.08"
stop-color="#fdb814"
id="stop13" />
<stop
offset="0.35"
stop-color="#ffe966"
id="stop14" />
<stop
offset="0.75"
stop-color="#f6f7f8"
id="stop15" />
<stop
offset="1"
stop-color="#f0f2f4"
id="stop16" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linear-gradient"
id="linearGradient16"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(20.22,0,0,47.23,14733.51,4089.2)"
x1="-727.56"
y1="-85.849998"
x2="-728.04999"
y2="-85.800003" />
<linearGradient
inkscape:collect="always"
xlink:href="#linear-gradient-6"
id="linearGradient17"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(31.1,0,0,10.63,23011.22,315.2)"
x1="-739.40997"
y1="-23.92"
x2="-739.40997"
y2="-23.200001" />
</defs>
<title
id="title16">Asset 1</title>
<g
id="Layer_2"
data-name="Layer 2"
transform="matrix(6.3886083,0,0,6.3886083,95.980392,8.210215)">
<g
id="Layer_1-2"
data-name="Layer 1">
<g
id="Group_240"
data-name="Group 240">
<path
id="Path_174"
data-name="Path 174"
class="cls-1"
d="M 26.5,59.2 18.8,13.3 6.3,12 Z"
style="fill:url(#linearGradient16)" />
<path
id="Path_175"
data-name="Path 175"
class="cls-2"
d="M 18.3,6.2 48.8,16.7 20.5,0 Z"
style="fill:url(#linear-gradient-2)" />
<path
id="Path_176"
data-name="Path 176"
class="cls-3"
d="M 6.2,12 18.3,6.1 20.5,0 Z"
style="fill:url(#linear-gradient-3)" />
<path
id="Path_177"
data-name="Path 177"
class="cls-4"
d="M 6.2,12 27.1,14.2 18.3,6.1 Z"
style="fill:url(#linear-gradient-4)" />
<path
id="Path_178"
data-name="Path 178"
class="cls-5"
d="M 27.1,14.2 48.8,16.6 18.3,6.2 Z" />
<path
id="Path_179"
data-name="Path 179"
class="cls-6"
d="M 0,65.4 26.5,59.2 6.2,12 Z"
style="fill:url(#linear-gradient-5)" />
<path
id="Path_180"
data-name="Path 180"
class="cls-7"
d="M 26.5,59.2 31.1,69.8 0,65.4 Z"
style="fill:url(#linearGradient17)" />
<path
id="Path_181"
data-name="Path 181"
class="cls-8"
d="M 26.5,59.2 21.4,47.2 0,65.4 Z"
style="fill:url(#linear-gradient-7)" />
<path
id="Path_182"
data-name="Path 182"
class="cls-9"
d="M 31.1,69.8 22.4,75.6 0,65.4 Z"
style="fill:url(#linear-gradient-8)" />
<path
id="Path_183"
data-name="Path 183"
class="cls-10"
d="M 27.1,14.2 40.6,48.6 31.1,69.9 26.5,59.3 18.7,13.4 Z"
style="fill:url(#linear-gradient-9)" />
</g>
</g>
</g>
<metadata
id="metadata16">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Asset 1</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg
i:viewOrigin="262 450"
i:rulerOrigin="0 0"
i:pageBounds="0 792 612 0"
width="496"
height="496"
viewBox="0 0 496 496"
overflow="visible"
enable-background="new 0 0 87.041 108.445"
xml:space="preserve"
version="1.1"
id="svg12"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:i="&amp;#38;ns_ai;"
xmlns:ns0="&amp;#38;ns_vars;"
xmlns:ns1="&amp;#38;ns_sfw;"><defs
id="defs12" />
<metadata
id="metadata1">
<ns0:variableSets>
<ns0:variableSet
varSetName="binding1"
locked="none">
<ns0:variables />
<ns0:sampleDataSets />
</ns0:variableSet>
</ns0:variableSets>
<ns1:sfw>
<ns1:slices />
<ns1:sliceSourceBounds
y="341.555"
x="262"
width="87.041"
height="108.445"
bottomLeftOrigin="true" />
</ns1:sfw>
</metadata>
<g
id="Layer_1"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
transform="matrix(4.4949374,0,0,4.4949374,50.95402,5.0487757)"
style="fill:#cccccc;fill-opacity:1">
<g
id="g12"
style="fill:#cccccc;fill-opacity:1">
<path
i:knockout="Off"
fill="#a80030"
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="path1"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path2"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path3"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path4"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
id="path5"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path6"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path7"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path8"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path9"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path10"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path11"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path12"
style="fill:#cccccc;fill-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg
i:viewOrigin="262 450"
i:rulerOrigin="0 0"
i:pageBounds="0 792 612 0"
width="496"
height="496"
viewBox="0 0 496 496"
overflow="visible"
enable-background="new 0 0 87.041 108.445"
xml:space="preserve"
version="1.1"
id="svg12"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:i="&amp;ns_ai;"
xmlns:ns0="&amp;ns_vars;"
xmlns:ns1="&amp;ns_sfw;"><defs
id="defs12" />
<metadata
id="metadata1">
<ns0:variableSets>
<ns0:variableSet
varSetName="binding1"
locked="none">
<ns0:variables />
<ns0:sampleDataSets />
</ns0:variableSet>
</ns0:variableSets>
<ns1:sfw>
<ns1:slices />
<ns1:sliceSourceBounds
y="341.555"
x="262"
width="87.041"
height="108.445"
bottomLeftOrigin="true" />
</ns1:sfw>
</metadata>
<g
id="Layer_1"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
transform="matrix(4.4949374,0,0,4.4949374,50.95402,5.0487757)">
<g
id="g12">
<path
i:knockout="Off"
fill="#a80030"
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="path1" />
<path
i:knockout="Off"
fill="#a80030"
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="path2" />
<path
i:knockout="Off"
fill="#a80030"
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="path3" />
<path
i:knockout="Off"
fill="#a80030"
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="path4" />
<path
i:knockout="Off"
fill="#a80030"
d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
id="path5" />
<path
i:knockout="Off"
fill="#a80030"
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="path6" />
<path
i:knockout="Off"
fill="#a80030"
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="path7" />
<path
i:knockout="Off"
fill="#a80030"
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="path8" />
<path
i:knockout="Off"
fill="#a80030"
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="path9" />
<path
i:knockout="Off"
fill="#a80030"
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="path10" />
<path
i:knockout="Off"
fill="#a80030"
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="path11" />
<path
i:knockout="Off"
fill="#a80030"
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="path12" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
id="svg5"
version="1.1"
viewBox="0 0 131.23333 131.23334"
height="496"
width="496"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs2" />
<g
id="layer1">
<g
transform="matrix(3.8123445,0,0,3.5284776,-1318.4244,-71.638005)"
id="g26">
<g
transform="matrix(0.65134496,0,0,0.6634673,448.54237,52.231766)"
id="g20">
<path
d="m -127,-42.3 c 4.57,6.45 23.8,31.4 10.7,36.6 -6.12,2.81 -34,-1.65 -33.6,-0.921 -2,3.28 -3.59,5.92 -3.59,5.92 0,0 21.5,0.967 38.1,-1.27 23.7,-3.18 -4.88,-33.5 -11.6,-40.3 z"
style="fill:#cccccc;stroke-width:0.585;fill-opacity:1"
id="path14" />
<path
d="m -127,-42.3 c -1.52,0.209 -29.4,34.5 -29.4,34.5 0,0 2.01,0.57 6.58,1.23 1.48,-1.15 22.3,-36.2 22.9,-35.7 -0.0107,-0.0141 -0.028,-0.0193 -0.0522,-0.016 z"
style="fill:#cccccc;stroke-width:0.585;fill-opacity:0.85461253"
id="path16" />
<path
d="m -127,-42.3 c -0.96,-0.156 -22.9,35.7 -22.9,35.7 0,0 19.9,2.1 28.1,1.96 23.1,-0.39 0.176,-30.6 -5.16,-37.7 -0.007,-0.007 -0.0151,-0.0108 -0.0248,-0.0124 z"
style="fill:#cccccc;stroke-width:0.585;fill-opacity:0.54827821"
id="path18" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
id="svg5"
version="1.1"
viewBox="0 0 131.23333 131.23334"
height="496"
width="496"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs2" />
<g
id="layer1">
<g
transform="matrix(3.8123445,0,0,3.5284776,-1318.4244,-71.638005)"
id="g26">
<g
transform="matrix(0.65134496,0,0,0.6634673,448.54237,52.231766)"
id="g20">
<path
d="m -127,-42.3 c 4.57,6.45 23.8,31.4 10.7,36.6 -6.12,2.81 -34,-1.65 -33.6,-0.921 -2,3.28 -3.59,5.92 -3.59,5.92 0,0 21.5,0.967 38.1,-1.27 23.7,-3.18 -4.88,-33.5 -11.6,-40.3 z"
style="fill:#7f7fff;stroke-width:0.585"
id="path14" />
<path
d="m -127,-42.3 c -1.52,0.209 -29.4,34.5 -29.4,34.5 0,0 2.01,0.57 6.58,1.23 1.48,-1.15 22.3,-36.2 22.9,-35.7 -0.0107,-0.0141 -0.028,-0.0193 -0.0522,-0.016 z"
style="fill:#ff7f7f;stroke-width:0.585"
id="path16" />
<path
d="m -127,-42.3 c -0.96,-0.156 -22.9,35.7 -22.9,35.7 0,0 19.9,2.1 28.1,1.96 23.1,-0.39 0.176,-30.6 -5.16,-37.7 -0.007,-0.007 -0.0151,-0.0108 -0.0248,-0.0124 z"
style="fill:#7f3fbf;stroke-width:0.585"
id="path18" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="496"
width="496"
id="svg4"
version="1.1"
viewBox="0 0 496 496"
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/">
<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" />
<path
d="m 248.1215,22.133185 c -127.11688,0 -230.03813,101.032375 -230.263,225.765625 H 17.818 v 174.76598 h 0.0405 c 0.0607,28.28815 23.45355,51.20203 52.30388,51.20203 H 248.1439 C 375.2833,473.78702 478.182,372.76698 478.182,248.10118 478.1822,123.36794 375.1483,22.335565 247.9191,22.335565 Z m 46.7721,92.963945 c 38.6545,0 75.1503,29.03021 75.1503,69.07888 0,3.71479 0.023,7.43183 -0.5966,11.64358 -1.071,10.65415 -10.9982,18.31084 -21.8075,16.80874 -10.8093,-1.51965 -18.1445,-11.58736 -16.1454,-22.12009 0.1821,-1.20214 0.2485,-3.08966 0.2485,-6.33448 0,-22.71148 -18.945,-31.48126 -36.8556,-31.48126 -17.9061,0 -34.0447,14.76921 -34.0672,31.48126 0.3094,19.32275 0,38.49709 0,57.7906 l 33.2352,-0.24375 c 25.9496,-0.52709 26.2419,37.8 0.2993,37.62011 l -33.5275,0.24375 c -0.081,15.54275 0.1214,12.73192 0.041,20.55951 0,0 0.281,19.01019 -0.2973,33.41512 -4.0116,42.31981 -40.7458,76.13968 -84.88698,76.13968 -46.79465,0 -85.33671,-37.50768 -85.33671,-83.51529 1.40496,-47.31185 39.86877,-84.52719 88.32743,-84.09995 l 27.02886,-0.20013 v 37.55265 l -27.02886,0.24353 h -0.14167 c -26.62415,0.77286 -49.44807,18.51098 -49.87531,46.47983 0,25.47734 20.98901,45.89519 47.042,45.89519 26.01701,0 46.83964,-18.5672 46.83964,-45.85021 l -0.04,-142.22785 c 0.023,-2.63993 0.1012,-4.73793 0.3971,-7.64995 4.3916,-34.78679 36.1135,-61.2985 72.0246,-61.2985 z"
style="fill:#cccccc;fill-opacity:1;stroke-width:2.24866"
id="path8" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="496"
width="496"
id="svg4"
version="1.1"
viewBox="0 0 496 496"
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/">
<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" />
<path
d="m 248.1215,22.133185 c -127.11688,0 -230.03813,101.032375 -230.263,225.765625 H 17.818 v 174.76598 h 0.0405 c 0.0607,28.28815 23.45355,51.20203 52.30388,51.20203 H 248.1439 C 375.2833,473.78702 478.182,372.76698 478.182,248.10118 478.1822,123.36794 375.1483,22.335565 247.9191,22.335565 Z m 46.7721,92.963945 c 38.6545,0 75.1503,29.03021 75.1503,69.07888 0,3.71479 0.023,7.43183 -0.5966,11.64358 -1.071,10.65415 -10.9982,18.31084 -21.8075,16.80874 -10.8093,-1.51965 -18.1445,-11.58736 -16.1454,-22.12009 0.1821,-1.20214 0.2485,-3.08966 0.2485,-6.33448 0,-22.71148 -18.945,-31.48126 -36.8556,-31.48126 -17.9061,0 -34.0447,14.76921 -34.0672,31.48126 0.3094,19.32275 0,38.49709 0,57.7906 l 33.2352,-0.24375 c 25.9496,-0.52709 26.2419,37.8 0.2993,37.62011 l -33.5275,0.24375 c -0.081,15.54275 0.1214,12.73192 0.041,20.55951 0,0 0.281,19.01019 -0.2973,33.41512 -4.0116,42.31981 -40.7458,76.13968 -84.88698,76.13968 -46.79465,0 -85.33671,-37.50768 -85.33671,-83.51529 1.40496,-47.31185 39.86877,-84.52719 88.32743,-84.09995 l 27.02886,-0.20013 v 37.55265 l -27.02886,0.24353 h -0.14167 c -26.62415,0.77286 -49.44807,18.51098 -49.87531,46.47983 0,25.47734 20.98901,45.89519 47.042,45.89519 26.01701,0 46.83964,-18.5672 46.83964,-45.85021 l -0.04,-142.22785 c 0.023,-2.63993 0.1012,-4.73793 0.3971,-7.64995 4.3916,-34.78679 36.1135,-61.2985 72.0246,-61.2985 z"
style="fill:#51a2da;fill-opacity:1;stroke-width:2.24866"
id="path8" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg2"
xml:space="preserve"
width="496"
height="496"
viewBox="0 0 496 496"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs6" /><g
id="g8"
transform="matrix(1.3333333,0,0,-1.3333333,0,746.66667)"><g
id="g3535"
transform="matrix(1.1203307,0,0,1.1203307,-116.81136,-14.94012)"><g
id="g54"
transform="matrix(1.680604,0,0,1.680604,423.99221,497.23047)"
style="fill:#cccccc;fill-opacity:1"><path
d="m 0,0 c 9.895,-9.89 -17.535,-53.361 -22.171,-58 -4.637,-4.63 -16.413,-0.371 -26.305,9.522 -9.894,9.89 -14.156,21.67 -9.519,26.307 C -53.359,-17.533 -9.89,9.893 0,0"
style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path56" /></g><g
id="g58"
transform="matrix(1.680604,0,0,1.680604,190.81866,479.64379)"
style="fill-opacity:1;fill:#cccccc"><path
d="M 0,0 C -15.106,8.571 -36.597,18.104 -43.435,11.267 -50.364,4.341 -40.48,-17.636 -31.82,-32.769 -24.114,-19.37 -13.149,-8.09 0,0"
style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path60" /></g><g
id="g62"
transform="matrix(1.680604,0,0,1.680604,398.63593,405.48899)"
style="fill:#cccccc;fill-opacity:1"><path
d="m 0,0 c 1.39,-4.718 1.139,-8.616 -1.115,-10.867 -5.271,-5.271 -19.503,0.339 -32.332,12.55 -0.897,0.803 -1.784,1.636 -2.658,2.511 -4.637,4.641 -8.248,9.583 -10.557,14.132 -4.494,8.06 -5.618,15.18 -2.221,18.576 1.851,1.851 4.812,2.355 8.424,1.704 2.357,1.489 5.136,3.15 8.186,4.849 -12.4,6.467 -26.497,10.121 -41.453,10.121 -49.601,0 -89.814,-40.206 -89.814,-89.812 0,-49.599 40.213,-89.809 89.814,-89.809 49.602,0 89.815,40.21 89.815,89.809 0,16.019 -4.204,31.041 -11.551,44.063 C 2.952,4.931 1.408,2.275 0,0"
style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path64" /></g></g><g
id="g22"
transform="matrix(1.680604,0,0,1.680604,504.44542,140.54832)" /><g
id="g34"
transform="matrix(1.680604,0,0,1.680604,-5.3409333,90.456741)" /></g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg2"
xml:space="preserve"
width="496"
height="496"
viewBox="0 0 496 496"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs6" /><g
id="g8"
transform="matrix(1.3333333,0,0,-1.3333333,0,746.66667)"><g
id="g3535"
transform="matrix(1.1203307,0,0,1.1203307,-116.81136,-14.94012)"><g
id="g54"
transform="matrix(1.680604,0,0,1.680604,423.99221,497.23047)"><path
d="m 0,0 c 9.895,-9.89 -17.535,-53.361 -22.171,-58 -4.637,-4.63 -16.413,-0.371 -26.305,9.522 -9.894,9.89 -14.156,21.67 -9.519,26.307 C -53.359,-17.533 -9.89,9.893 0,0"
style="fill:#aa2d2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path56" /></g><g
id="g58"
transform="matrix(1.680604,0,0,1.680604,190.81866,479.64379)"><path
d="M 0,0 C -15.106,8.571 -36.597,18.104 -43.435,11.267 -50.364,4.341 -40.48,-17.636 -31.82,-32.769 -24.114,-19.37 -13.149,-8.09 0,0"
style="fill:#aa2d2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path60" /></g><g
id="g62"
transform="matrix(1.680604,0,0,1.680604,398.63593,405.48899)"><path
d="m 0,0 c 1.39,-4.718 1.139,-8.616 -1.115,-10.867 -5.271,-5.271 -19.503,0.339 -32.332,12.55 -0.897,0.803 -1.784,1.636 -2.658,2.511 -4.637,4.641 -8.248,9.583 -10.557,14.132 -4.494,8.06 -5.618,15.18 -2.221,18.576 1.851,1.851 4.812,2.355 8.424,1.704 2.357,1.489 5.136,3.15 8.186,4.849 -12.4,6.467 -26.497,10.121 -41.453,10.121 -49.601,0 -89.814,-40.206 -89.814,-89.812 0,-49.599 40.213,-89.809 89.814,-89.809 49.602,0 89.815,40.21 89.815,89.809 0,16.019 -4.204,31.041 -11.551,44.063 C 2.952,4.931 1.408,2.275 0,0"
style="fill:#aa2d2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path64" /></g></g><g
id="g22"
transform="matrix(1.680604,0,0,1.680604,504.44542,140.54832)" /><g
id="g34"
transform="matrix(1.680604,0,0,1.680604,-5.3409333,90.456741)" /></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
viewBox="0 0 105.83333 105.83334"
version="1.1"
id="svg8915"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8909" />
<g
id="layer1"
transform="translate(0,-191.16665)">
<g
id="g6414">
<path
d=""
id="path3437"
style="fill:#/000000;stroke-width:0.0822478" />
<path
style="fill:#cccccc;fill-opacity:1;stroke-width:0.35411"
d=""
id="path1918"
transform="matrix(0.26458334,0,0,0.26458334,0,191.16665)" />
<path
d="m 94.908121,220.98177 -9.593353,10.92364 2.065151,-14.52111 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2185" />
<path
d="M 54.598011,235.11885 72.902758,261.34807 48.569652,234.75774 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2237" />
<path
d="m 85.426002,232.07973 18.649268,0.89416 -6.567167,4.86125 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2171" />
<path
id="path2173"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
d="m 61.686811,235.54321 11.203616,25.7928 -18.276154,-26.18106 z" />
<path
d="m 69.905485,236.10484 2.987675,25.179 -11.215917,-25.7334 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2175" />
<path
d="m 64.801382,222.91117 20.30619,9.13818 L 72.674806,221.089 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2177" />
<path
d="m 97.510457,237.81811 -12.036898,-5.67943 -37.323243,2.57545 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0186333"
id="path2179" />
<path
d="m 10.550954,235.34751 20.430711,-12.65183 41.63464,-1.57862 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2181" />
<path
d="m 69.015141,212.83574 c 0,0 -39.577283,9.46391 -42.012185,10.02546 l 2.028815,-0.29466 -2.005324,0.29312 45.685144,-1.75644 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2183" />
<path
d="m 104.11354,232.97973 -9.182792,-12.02796 -9.734209,11.09484 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2187" />
<path
d="m 96.717922,248.92796 0.790181,-11.09282 6.567167,-4.86125 -1.21812,9.98184 -6.139228,5.97223"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2189" />
<path
d="m 87.379919,217.3843 -8.378319,-10.35405 -9.969541,5.7694 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2191" />
<path
d="m 50.001542,205.05454 19.034684,7.74209 9.958668,-5.76176 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2193" />
<path
d="m 27.003098,222.86104 22.998444,-17.8065 19.141792,7.76021 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2195" />
<path
d="m 87.379919,217.3843 -14.648652,3.76869 -3.73035,-8.36637 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2197" />
<path
d="m 87.379919,217.3843 -14.679927,3.75389 12.556301,11.04707 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2199" />
<path
d="m 66.007387,231.01713 19.188455,1.03481 -20.373359,-9.14301 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2201" />
<path
d="M 66.013734,231.03688 10.320382,242.84009 64.816138,222.91191 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2203" />
<path
d="m 48.595803,234.71883 17.612506,-3.72876 19.418164,1.10304 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2205" />
<path
d="M 64.832643,222.90479 16.1098,234.06355 10.320382,242.84009 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2209" />
<path
d="m 48.533988,234.72306 -38.213606,8.11703 -8.6005905,9.26977 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2211" />
<path
d="M 4.3038844,257.86852 48.533988,234.72306 6.8946596,250.1879 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2213" />
<path
d="m 5.9698729,265.74441 5.1355151,-11.43507 37.4286,-19.58628 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2215" />
<path
d="m 18.788616,277.10135 -5.712757,-16.5381 35.458129,-25.84019 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2217" />
<path
d="m 72.879703,261.29237 -3.834656,5.30036 -20.511059,-31.86967 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2219" />
<path
d="M 65.313419,272.61238 48.533988,234.72306 69.564426,267.39945 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2221" />
<path
d="M 33.416458,279.68174 21.480739,273.26579 48.533988,234.72306 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2223" />
<path
d="m 66.357935,274.97075 -17.823947,-40.24769 11.637411,44.2691 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2225" />
<path
d="M 48.533988,234.72306 51.504925,283.1121 34.16639,277.45107 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2227" />
<path
d="m 48.533988,234.72306 2.810287,45.92265 9.624572,1.36719 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2229" />
<g
id="g2340"
transform="matrix(0.99230766,0,0,0.99230766,0.40705315,1.8775694)"
style="fill:#cccccc;fill-opacity:1">
<path
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.209952px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill:#000000"
d="m 91.922238,223.72124 c 0,0 -3.359236,0.83979 -2.939326,2.72935 0,0 1.364686,-0.10495 2.939326,-2.72935 z"
id="path2235" />
<path
id="path2231"
d="m 56.755438,217.22847 c 9.705599,-4.4535 18.334521,9.1985 23.472344,3.65199 -2.23966,3.57968 -7.45376,3.90526 -11.088773,3.91761 0,0 -5.577589,-0.13282 -4.847188,-4.81398 -1.205199,-1.99087 -5.022379,-1.95121 -7.536383,-2.75562 z"
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.375614px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill:#000000" />
<path
id="path2233"
d="m 65.851926,218.62017 a 2.9547924,2.9547924 0 0 0 -1.22808,2.39306 2.9547924,2.9547924 0 0 0 2.955027,2.95504 2.9547924,2.9547924 0 0 0 2.954292,-2.95504 2.9547924,2.9547924 0 0 0 -0.08803,-0.70573 2.4069938,2.9215925 0 0 1 -2.252216,1.90082 2.4069938,2.9215925 0 0 1 -2.407015,-2.9213 2.4069938,2.9215925 0 0 1 0.06602,-0.66685 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.412713;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg16"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata22">
<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="defs20" />
<g
id="g4"
transform="matrix(0.063902,0,0,0.064257,3.3583,450.3601)"
style="fill:#705db3">
<path
id="path2"
d="m 3208.5873,-6664.1875 c -111.4456,2.8403 -221.0763,13.9377 -327.0025,33.3094 -1273.5088,232.8432 -2169.62347,1334.506 -2245.50934,2060.3757 -37.22554,356.1 154.83459,622.2976 260.70426,740.0185 286.22418,317.914 856.57788,561.129 1223.41048,762.3389 -530.1956,452.0165 -773.2554,672.5944 -1012.7753,924.0787 -358.35932,376.3224 -610.76447,790.5171 -611.53272,1087.1914 -0.27049,95.57774 -15.53661,400.25139 108.77064,640.77705 46.74941,90.49354 179.60587,392.391365 580.45538,618.45612 256.0483,144.48485 620.7718,197.59793 977.8998,146.63001 1105.2425,-157.71433 2585.6047,-1095.33614 3641.9175,-1968.34548 673.1553,-556.3496 1165.1847,-1095.4077 1307.3196,-1360.8784 114.6863,-214.2021 127.6435,-598.49 61.1189,-839.603 -189.0087,-684.9726 -1725.2864,-2088.0355 -2981.3519,-2652.734 -300.2558,-135.0016 -649.0876,-200.1358 -983.4248,-191.6149 z m 922.9967,1089.252 a 793.68409,659.13367 25.483077 0 1 431.6297,94.7772 793.68409,659.13367 25.483077 0 1 420.9251,939.188 793.68409,659.13367 25.483077 0 1 -1004.8337,242.4376 793.68409,659.13367 25.483077 0 1 -421.2704,-939.1879 793.68409,659.13367 25.483077 0 1 573.5493,-337.2149 z"
style="fill:#cccccc;fill-rule:evenodd;stroke-width:11.29758358" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg16"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<g
id="g4"
transform="matrix(0.063902,0,0,0.064257,3.3583,450.3601)"
style="fill:#705db3">
<path
id="path2"
d="m 3208.5873,-6664.1875 c -111.4456,2.8403 -221.0763,13.9377 -327.0025,33.3094 -1273.5088,232.8432 -2169.62347,1334.506 -2245.50934,2060.3757 -37.22554,356.1 154.83459,622.2976 260.70426,740.0185 286.22418,317.914 856.57788,561.129 1223.41048,762.3389 -530.1956,452.0165 -773.2554,672.5944 -1012.7753,924.0787 -358.35932,376.3224 -610.76447,790.5171 -611.53272,1087.1914 -0.27049,95.57774 -15.53661,400.25139 108.77064,640.77705 46.74941,90.49354 179.60587,392.391365 580.45538,618.45612 256.0483,144.48485 620.7718,197.59793 977.8998,146.63001 1105.2425,-157.71433 2585.6047,-1095.33614 3641.9175,-1968.34548 673.1553,-556.3496 1165.1847,-1095.4077 1307.3196,-1360.8784 114.6863,-214.2021 127.6435,-598.49 61.1189,-839.603 -189.0087,-684.9726 -1725.2864,-2088.0355 -2981.3519,-2652.734 -300.2558,-135.0016 -649.0876,-200.1358 -983.4248,-191.6149 z m 922.9967,1089.252 a 793.68409,659.13367 25.483077 0 1 431.6297,94.7772 793.68409,659.13367 25.483077 0 1 420.9251,939.188 793.68409,659.13367 25.483077 0 1 -1004.8337,242.4376 793.68409,659.13367 25.483077 0 1 -421.2704,-939.1879 793.68409,659.13367 25.483077 0 1 573.5493,-337.2149 z"
style="fill:#9690c1;fill-rule:evenodd;stroke-width:11.29758358;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 496 496"
height="496"
width="496"
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/">
<defs
id="defs2" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="matrix(2.497971,0,0,2.497971,-5723.5418,-125.61843)">
<g
transform="matrix(0.4436889,0,0,0.4436889,2965.7337,-7.469143)"
id="g2041"
style="fill:#ffffff;stroke-width:2.25383"
class="logofill">
<g
transform="matrix(3.6654483,0,0,3.6654483,-775.24519,138.17095)"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79233;stroke-miterlimit:4"
id="g2021" />
<g
transform="matrix(3.6654483,0,0,3.6654483,-1473.9329,138.17095)"
style="fill:#4a86cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79233;stroke-miterlimit:4"
id="g2055">
<g
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="g2053">
<path
d="M 86.068,0 C 61.466,0 56.851,35.041 70.691,35.041 84.529,35.041 110.671,0 86.068,0 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2043" />
<path
d="M 45.217,30.699 C 52.586,31.149 60.671,2.577 46.821,4.374 32.976,6.171 37.845,30.249 45.217,30.699 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2045" />
<path
d="M 11.445,48.453 C 16.686,46.146 12.12,23.581 3.208,29.735 -5.7,35.89 6.204,50.759 11.445,48.453 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2047" />
<path
d="M 26.212,36.642 C 32.451,35.37 32.793,9.778 21.667,14.369 10.539,18.961 19.978,37.916 26.212,36.642 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2049" />
<path
d="m 58.791,93.913 c 1.107,8.454 -6.202,12.629 -13.36,7.179 C 22.644,83.743 83.16,75.088 79.171,51.386 75.86,31.712 15.495,37.769 8.621,68.553 3.968,89.374 27.774,118.26 52.614,118.26 c 12.22,0 26.315,-11.034 28.952,-25.012 C 83.58,82.589 57.867,86.86 58.791,93.913 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2051" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="496"
height="496"
viewBox="0 0 131.23333 131.23334"
version="1.1"
id="svg4110"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4107" />
<g
id="layer1">
<g
id="g4141"
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
<g
id="g45"
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
<path
id="path22-6"
d="m 56.11382,33.731278 c 2.6,-0.2 4.7,1.5 4.9,4.1 0.2,2.7 -1.7,4.9 -4.3,5.1 -2.5,0.2 -4.7,-1.7 -4.9,-4.2 -0.2,-2.7 1.6,-4.7 4.3,-5 z"
class="st1"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path24-7"
d="m 24.51382,55.031278 c 0,-2.6 2,-4.6 4.4,-4.6 2.4,0 4.7,2.2 4.7,4.7 0,2.4 -2,4.5 -4.3,4.6 -2.9,0 -4.8,-1.8 -4.8,-4.7 z"
class="st2"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path26-5"
d="m 31.61382,25.831278 c -0.4,0.2 -0.6,-0.1 -0.7,-0.4 -3.7,-6.9 -2.6,-15.6000004 3.9,-20.8000004 1.7,-1.4 4.9,-1.7 6.3,-0.3 0.6,0.5 0.7,1.1 0.8,1.8 0.2,1.5 0.5,3 1.5,4.2000004 1.1,1.3 2.5,1.8 4.1,1.7 1.4,0 2.8,-0.2 3.7,1.4 0.5,0.9 0.3,4.4 -0.5,5.1 -0.4,0.3 -0.7,0.1 -1,0 -2.3,-0.9 -4.7,-0.9 -7.1,-0.5 -0.8,0.1 -1.2,-0.1 -1.2,-1 -0.1,-1.5 -0.4,-2.9 -1.2,-4.2 -1.5,-2.7 -4.3,-2.8 -6.1,-0.3 -1.5,2 -1.9,4.4 -2.3,6.8 -0.4,2.1 -0.3,4.3 -0.2,6.5 0,0 -0.1,0 0,0 z"
class="st3"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path28-3"
d="m 34.11382,27.331278 c -0.2,-0.3 -0.1,-0.6 0.2,-0.8 5.7,-5.2 14.2,-6.2 20.8,-1.1 1.7,1.4 2.8,4.3 1.9,6 -0.4,0.7 -0.9,1 -1.5,1.2 -1.4,0.6 -2.7,1.2 -3.6,2.5 -0.9,1.3 -1.1,2.8 -0.7,4.4 0.3,1.3 0.8,2.7 -0.5,3.9 -0.7,0.7 -4.1,1.3 -5,0.7 -0.4,-0.3 -0.3,-0.6 -0.2,-1 0.3,-2.5 -0.3,-4.8 -1.2,-7 -0.3,-0.8 -0.2,-1.2 0.6,-1.4 1.4,-0.4 2.7,-1.1 3.7,-2.1 2.2,-2.1 1.7,-4.8 -1.2,-6 -2.3,-1 -4.7,-0.8 -7,-0.6 -2.2,0.1 -4.3,0.7 -6.3,1.3 z"
class="st1"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path30-5"
d="m 32.81382,29.931278 c 0.3,-0.3 0.5,-0.2 0.8,0 6.6,4 10,11.9 7,19.6 -0.8,2 -3.4,4 -5.3,3.5 -0.8,-0.2 -1.2,-0.6 -1.6,-1.1 -0.9,-1.2 -1.9,-2.3 -3.4,-2.8 -1.6,-0.5 -3,-0.2 -4.4,0.6 -1.2,0.7 -2.4,1.6 -3.9,0.7 -0.9,-0.5 -2.4,-3.6 -2.1,-4.6 0.2,-0.4 0.6,-0.4 1,-0.4 2.5,-0.4 4.5,-1.6 6.4,-3.2 0.6,-0.5 1.1,-0.5 1.6,0.2 0.8,1.2 1.8,2.2 3.1,2.9 2.6,1.5 5.1,0.2 5.4,-2.8 0.3,-2.5 -0.6,-4.7 -1.4,-6.9 -0.9,-2 -2,-3.9 -3.2,-5.7 z"
class="st2"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path32-6"
d="m 29.61382,30.531278 c -0.4,2 -1.3,3.9 -2.5,5.6 -3.6,5.4 -8.8,7.6 -15.2,7 -2.2999997,-0.2 -4.1999997,-2.1 -4.3999997,-4 -0.1,-0.8 0.1,-1.4 0.6,-2 0.7,-0.9 1.3,-1.7 1.6,-2.8 0.5999997,-2.2 -0.2,-4 -1.8,-5.6 -2.2,-2.2 -1.9,-4.2 0.7,-5.8 0.3,-0.2 0.7,-0.4 1.1,-0.6 0.5999997,-0.3 1.0999997,-0.3 1.2999997,0.4 0.9,2.3 2.7,4 4.7,5.4 0.7,0.6 0.7,1 0.1,1.7 -1.2,1.3 -1.9,2.9 -2,4.7 -0.2,2.2 1.1,3.6 3.3,3.6 1.4,0 2.7,-0.5 3.9,-1.1 3.1,-1.6 5.5,-3.9 7.8,-6.3 0.3,-0.1 0.4,-0.3 0.8,-0.2 z"
class="st4"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path34-2"
d="m 13.21382,9.5312776 c 0.2,0 0.7,0.1 1.2,0.2 3.7,0.7000004 6,-0.6 7.2,-4.1 0.8,-2.3 2.5,-3 4.7,-1.8 0.1,0 0.1,0.1 0.2,0.1 2.3,1.3 2.3,1.5 0.9,3.5 -1.2,1.6 -1.8,3.4000004 -2.1,5.3000004 -0.2,1.1 -0.6,1.3 -1.6,0.9 -1.6,-0.6 -3.3,-0.6 -5,0 -1.9,0.6 -2.7,2.3 -2.1,4.2 0.8,2.5 3,3.6 4.9,4.9 1.9,1.3 4.1,2 6.2,2.9 0.3,0.1 0.8,0.1 0.7,0.6 -0.1,0.3 -0.5,0.3 -0.9,0.3 -4.5,0.2 -8.8,-0.5 -12.3,-3.5 -3.3,-2.7 -5.6999997,-6 -5.2999997,-10.6 0.2999997,-1.5 1.3999997,-2.6000004 3.2999997,-2.9000004 z"
class="st5"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path36-9"
d="m 5.0138203,37.631278 c -2.4,0.3 -4.80000003,-1.7 -5.00000003,-4.2 -0.2,-2.4 1.80000003,-4.8 4.10000003,-5 2.6,-0.3 5,1.5 5.2,3.9 0.1,2.3 -1.4,5.1 -4.3,5.3 z"
class="st4"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path38-1"
d="m 47.01382,2.0312776 c 2.5,-0.2 4.9,1.8 5.1,4.3 0.2,2.4 -1.8,4.7000004 -4.2,4.9000004 -2.6,0.2 -4.9,-1.7000004 -5.1,-4.2000004 -0.2,-2.5 1.6,-4.8 4.2,-5 z"
class="st3"
style="fill:#cccccc;fill-opacity:1" />
<path
id="path40-2"
d="m 20.91382,3.9312776 c 0.3,2.6 -1.5,4.8 -4.2,5.2 -2.3,0.3 -4.7,-1.6 -5,-3.8 -0.3,-2.9 1.3,-4.99999996 4,-5.29999996 2.5,-0.3 4.9,1.59999996 5.2,3.89999996 z"
class="st5"
style="fill:#cccccc;fill-opacity:1" />
</g>
</g>
</g>
<style
id="style2"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
<style
id="style2-3"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
</svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="496"
height="496"
viewBox="0 0 131.23333 131.23334"
version="1.1"
id="svg4110"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4107" />
<g
id="layer1">
<g
id="g4141"
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
<g
id="g45"
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
<path
id="path22-6"
d="m 56.11382,33.731278 c 2.6,-0.2 4.7,1.5 4.9,4.1 0.2,2.7 -1.7,4.9 -4.3,5.1 -2.5,0.2 -4.7,-1.7 -4.9,-4.2 -0.2,-2.7 1.6,-4.7 4.3,-5 z"
class="st1"
style="fill:#86da2f;fill-opacity:1" />
<path
id="path24-7"
d="m 24.51382,55.031278 c 0,-2.6 2,-4.6 4.4,-4.6 2.4,0 4.7,2.2 4.7,4.7 0,2.4 -2,4.5 -4.3,4.6 -2.9,0 -4.8,-1.8 -4.8,-4.7 z"
class="st2"
style="fill:#24c2ff;fill-opacity:1" />
<path
id="path26-5"
d="m 31.61382,25.831278 c -0.4,0.2 -0.6,-0.1 -0.7,-0.4 -3.7,-6.9 -2.6,-15.6000004 3.9,-20.8000004 1.7,-1.4 4.9,-1.7 6.3,-0.3 0.6,0.5 0.7,1.1 0.8,1.8 0.2,1.5 0.5,3 1.5,4.2000004 1.1,1.3 2.5,1.8 4.1,1.7 1.4,0 2.8,-0.2 3.7,1.4 0.5,0.9 0.3,4.4 -0.5,5.1 -0.4,0.3 -0.7,0.1 -1,0 -2.3,-0.9 -4.7,-0.9 -7.1,-0.5 -0.8,0.1 -1.2,-0.1 -1.2,-1 -0.1,-1.5 -0.4,-2.9 -1.2,-4.2 -1.5,-2.7 -4.3,-2.8 -6.1,-0.3 -1.5,2 -1.9,4.4 -2.3,6.8 -0.4,2.1 -0.3,4.3 -0.2,6.5 0,0 -0.1,0 0,0 z"
class="st3"
style="fill:#ffcb12;fill-opacity:1" />
<path
id="path28-3"
d="m 34.11382,27.331278 c -0.2,-0.3 -0.1,-0.6 0.2,-0.8 5.7,-5.2 14.2,-6.2 20.8,-1.1 1.7,1.4 2.8,4.3 1.9,6 -0.4,0.7 -0.9,1 -1.5,1.2 -1.4,0.6 -2.7,1.2 -3.6,2.5 -0.9,1.3 -1.1,2.8 -0.7,4.4 0.3,1.3 0.8,2.7 -0.5,3.9 -0.7,0.7 -4.1,1.3 -5,0.7 -0.4,-0.3 -0.3,-0.6 -0.2,-1 0.3,-2.5 -0.3,-4.8 -1.2,-7 -0.3,-0.8 -0.2,-1.2 0.6,-1.4 1.4,-0.4 2.7,-1.1 3.7,-2.1 2.2,-2.1 1.7,-4.8 -1.2,-6 -2.3,-1 -4.7,-0.8 -7,-0.6 -2.2,0.1 -4.3,0.7 -6.3,1.3 z"
class="st1"
style="fill:#86da2f;fill-opacity:1" />
<path
id="path30-5"
d="m 32.81382,29.931278 c 0.3,-0.3 0.5,-0.2 0.8,0 6.6,4 10,11.9 7,19.6 -0.8,2 -3.4,4 -5.3,3.5 -0.8,-0.2 -1.2,-0.6 -1.6,-1.1 -0.9,-1.2 -1.9,-2.3 -3.4,-2.8 -1.6,-0.5 -3,-0.2 -4.4,0.6 -1.2,0.7 -2.4,1.6 -3.9,0.7 -0.9,-0.5 -2.4,-3.6 -2.1,-4.6 0.2,-0.4 0.6,-0.4 1,-0.4 2.5,-0.4 4.5,-1.6 6.4,-3.2 0.6,-0.5 1.1,-0.5 1.6,0.2 0.8,1.2 1.8,2.2 3.1,2.9 2.6,1.5 5.1,0.2 5.4,-2.8 0.3,-2.5 -0.6,-4.7 -1.4,-6.9 -0.9,-2 -2,-3.9 -3.2,-5.7 z"
class="st2"
style="fill:#24c2ff;fill-opacity:1" />
<path
id="path32-6"
d="m 29.61382,30.531278 c -0.4,2 -1.3,3.9 -2.5,5.6 -3.6,5.4 -8.8,7.6 -15.2,7 -2.2999997,-0.2 -4.1999997,-2.1 -4.3999997,-4 -0.1,-0.8 0.1,-1.4 0.6,-2 0.7,-0.9 1.3,-1.7 1.6,-2.8 0.5999997,-2.2 -0.2,-4 -1.8,-5.6 -2.2,-2.2 -1.9,-4.2 0.7,-5.8 0.3,-0.2 0.7,-0.4 1.1,-0.6 0.5999997,-0.3 1.0999997,-0.3 1.2999997,0.4 0.9,2.3 2.7,4 4.7,5.4 0.7,0.6 0.7,1 0.1,1.7 -1.2,1.3 -1.9,2.9 -2,4.7 -0.2,2.2 1.1,3.6 3.3,3.6 1.4,0 2.7,-0.5 3.9,-1.1 3.1,-1.6 5.5,-3.9 7.8,-6.3 0.3,-0.1 0.4,-0.3 0.8,-0.2 z"
class="st4"
style="fill:#0069da;fill-opacity:1" />
<path
id="path34-2"
d="m 13.21382,9.5312776 c 0.2,0 0.7,0.1 1.2,0.2 3.7,0.7000004 6,-0.6 7.2,-4.1 0.8,-2.3 2.5,-3 4.7,-1.8 0.1,0 0.1,0.1 0.2,0.1 2.3,1.3 2.3,1.5 0.9,3.5 -1.2,1.6 -1.8,3.4000004 -2.1,5.3000004 -0.2,1.1 -0.6,1.3 -1.6,0.9 -1.6,-0.6 -3.3,-0.6 -5,0 -1.9,0.6 -2.7,2.3 -2.1,4.2 0.8,2.5 3,3.6 4.9,4.9 1.9,1.3 4.1,2 6.2,2.9 0.3,0.1 0.8,0.1 0.7,0.6 -0.1,0.3 -0.5,0.3 -0.9,0.3 -4.5,0.2 -8.8,-0.5 -12.3,-3.5 -3.3,-2.7 -5.6999997,-6 -5.2999997,-10.6 0.2999997,-1.5 1.3999997,-2.6000004 3.2999997,-2.9000004 z"
class="st5"
style="fill:#ff4649;fill-opacity:1" />
<path
id="path36-9"
d="m 5.0138203,37.631278 c -2.4,0.3 -4.80000003,-1.7 -5.00000003,-4.2 -0.2,-2.4 1.80000003,-4.8 4.10000003,-5 2.6,-0.3 5,1.5 5.2,3.9 0.1,2.3 -1.4,5.1 -4.3,5.3 z"
class="st4"
style="fill:#0069da;fill-opacity:1" />
<path
id="path38-1"
d="m 47.01382,2.0312776 c 2.5,-0.2 4.9,1.8 5.1,4.3 0.2,2.4 -1.8,4.7000004 -4.2,4.9000004 -2.6,0.2 -4.9,-1.7000004 -5.1,-4.2000004 -0.2,-2.5 1.6,-4.8 4.2,-5 z"
class="st3"
style="fill:#ffcb12;fill-opacity:1" />
<path
id="path40-2"
d="m 20.91382,3.9312776 c 0.3,2.6 -1.5,4.8 -4.2,5.2 -2.3,0.3 -4.7,-1.6 -5,-3.8 -0.3,-2.9 1.3,-4.99999996 4,-5.29999996 2.5,-0.3 4.9,1.59999996 5.2,3.89999996 z"
class="st5"
style="fill:#ff4649;fill-opacity:1" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata14">
<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="defs12" />
<path
id="path4"
d="m 247.93344,17.871894 c -20.49358,50.233214 -32.85373,83.091376 -55.67015,131.826236 13.9889,14.826 31.1605,32.09056 59.04738,51.59003 -29.98068,-12.33447 -50.43052,-24.71727 -65.71321,-37.56731 -29.20024,60.91971 -74.95051,147.69601 -167.7909,314.47259 72.96954,-42.11649 123.77827,-68.0824 176.49709,-77.99095 -2.26368,-9.73362 -3.55081,-20.26245 -3.46331,-31.24816 l 0.0805,-2.33732 c 1.15775,-46.73933 31.74236,-84.002 60.03547,-84.06511 28.29312,-0.0633 55.80715,46.15485 54.64917,92.8942 -0.2175,8.79569 -1.21012,17.25536 -2.94362,25.10278 52.1433,10.19855 103.4958,36.09772 175.4777,77.64456 -14.1938,-26.12472 -26.86242,-49.67506 -38.96013,-72.10451 -19.05704,-14.7673 -38.93365,-33.98597 -79.47881,-54.79276 27.86845,7.23979 47.82218,15.59244 63.3754,24.92903 C 300.07316,147.25839 290.11644,116.83076 247.92986,17.860386 Z"
style="fill:#cccccc;fill-rule:evenodd;stroke-width:11.50832653" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata14">
<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="defs12" />
<path
id="path4"
d="m 247.93344,17.871894 c -20.49358,50.233214 -32.85373,83.091376 -55.67015,131.826236 13.9889,14.826 31.1605,32.09056 59.04738,51.59003 -29.98068,-12.33447 -50.43052,-24.71727 -65.71321,-37.56731 -29.20024,60.91971 -74.95051,147.69601 -167.7909,314.47259 72.96954,-42.11649 123.77827,-68.0824 176.49709,-77.99095 -2.26368,-9.73362 -3.55081,-20.26245 -3.46331,-31.24816 l 0.0805,-2.33732 c 1.15775,-46.73933 31.74236,-84.002 60.03547,-84.06511 28.29312,-0.0633 55.80715,46.15485 54.64917,92.8942 -0.2175,8.79569 -1.21012,17.25536 -2.94362,25.10278 52.1433,10.19855 103.4958,36.09772 175.4777,77.64456 -14.1938,-26.12472 -26.86242,-49.67506 -38.96013,-72.10451 -19.05704,-14.7673 -38.93365,-33.98597 -79.47881,-54.79276 27.86845,7.23979 47.82218,15.59244 63.3754,24.92903 C 300.07316,147.25839 290.11644,116.83076 247.92986,17.860386 Z"
style="fill:#1793d1;fill-rule:evenodd;stroke-width:11.50832653;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12">
<linearGradient
id="linearGradient1402">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop1400" />
</linearGradient>
</defs>
<g
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
id="g849"
transform="matrix(0.91717941,0,0,0.91717941,-16.480902,-15.836491)">
<g
id="layer8"
style="display:inline"
transform="translate(287.5,550)" />
<g
id="layer7"
style="display:inline"
transform="translate(287.5,550)">
<g
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
id="g2591"
transform="matrix(1.0009916,0,0,1.0009916,-287.86695,-550.38088)">
<g
id="g1560"
style="clip-rule:evenodd;display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
transform="translate(-62.5,-6.5e-4)">
<g
id="g1445"
style="fill:#000000;fill-opacity:1"
transform="translate(0,6.5e-4)">
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 452.45312,411.80078 c -32.06055,44.58529 -64.12109,89.17057 -96.18164,133.75586 42.48698,-30.0944 84.97396,-60.1888 127.46094,-90.2832 -10.42643,-14.49089 -20.85287,-28.98177 -31.2793,-43.47266 z"
id="path1291" />
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 390,325 c 0,39.4031 0,78.8062 0,118.2093 14.18877,-19.70087 28.37753,-39.40174 42.5663,-59.10261 C 418.37753,364.40446 404.18877,344.70223 390,325 Z"
id="path1289" />
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 476.23047,152.19531 c -40.78832,17.07445 -81.57684,34.1484 -122.36524,51.22266 C 408.4679,279.35565 463.07272,355.2918 517.67406,431.23044 545.11604,411.7923 572.55802,392.35416 600,372.91602 558.74349,299.34245 517.48698,225.76888 476.23047,152.19531 Z"
id="path1287" />
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="M 223.76953,152.19531 C 182.51302,225.76888 141.25651,299.34245 100,372.91602 c 82.5,58.43815 165,116.8763 247.5,175.31445 0,-114.7474 0,-229.49479 0,-344.24219 -41.24347,-17.26436 -82.48708,-34.52841 -123.73047,-51.79297 z"
id="path1285" />
<path
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 352.5,108.39648 v 52.19336 L 329.46484,114.52148 228.57422,148.78516 350,199.61523 471.42578,148.78516 Z"
id="path1283" />
<path
id="path1631-9"
style="color:#000000;clip-rule:evenodd;display:inline;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
d="m 390,25 c -12.5,9.615234 -25,19.230469 -37.5,28.845703 0,7.051432 0,14.102865 0,21.154297 15.83333,0 31.66667,0 47.5,0 -3.33333,-16.666667 -6.66667,-33.333333 -10,-50 z" />
</g>
<path
id="path1633-6"
style="color:#000000;clip-rule:evenodd;display:inline;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m 347.5,26.25 c -15.08789,7.544271 -30.17578,15.088541 -45.26367,22.632812 15.08789,30.175783 30.17578,60.351568 45.26367,90.527348 0,-37.72005 0,-75.440107 0,-113.16016 z" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12" />
<g
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
id="g849"
transform="matrix(0.91717941,0,0,0.91717941,-16.480902,-15.836491)">
<g
id="layer8"
style="display:inline"
transform="translate(287.5,550)" />
<g
id="layer7"
style="display:inline"
transform="translate(287.5,550)">
<path
id="path1639"
style="color:#000000;overflow:visible;fill:#2c2c2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="M 475,150 H 350 L 349.998,550 483.73242,455.27344 460,390 515.63477,432.67383 600,372.91602 Z"
transform="translate(-350,-550)" />
<path
style="color:#000000;overflow:visible;fill:#d3506f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="M -250,-177.08333 C -166.66667,-118.05555 -83.333333,-59.027777 0,0 5.6168904,-20.318129 16.776706,-39.823731 15.408525,-61.428776 17.385993,-140.95252 19.363462,-220.47626 21.340931,-300 14.958616,-318.63132 1.1436116,-335.70762 0.15443549,-355.54282 -8.4459121,-369.69334 -32.776816,-369.88554 -47.284099,-378.91365 -65.55003,-385.68541 -83.435815,-394.4311 -101.93339,-400 c -7.68887,0 -15.37774,0 -23.06661,0 -41.66667,74.30556 -83.33333,148.61111 -125,222.91667 z"
id="path1627" />
<path
style="color:#000000;overflow:visible;fill:#a61200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m -125,-400 c 41.666668,-14.15094 83.333332,-28.30189 125,-42.45283 19.801989,6.7252 39.603976,13.45041 59.405965,20.17561 -3.906867,5.09703 -24.217781,15.8645 -8.103858,17.85923 24.550851,1.71846 49.137783,2.84775 73.697893,4.41799 -41.666667,17.44186 -83.333333,34.88372 -125,52.32558"
id="path1629" />
<path
style="color:#000000;overflow:visible;fill:#00a67c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m -24.999998,-475 c 24.9999993333333,0 49.999999,0 74.999998,0 -3.333333,-16.66667 -6.666667,-33.33333 -10,-50 -21.666664,16.66667 -43.3333345,33.33333 -64.999998,50 z"
id="path1631" />
<path
style="color:#000000;overflow:visible;fill:#edbb60;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m 4.9025e-5,-400 c 3.25e-7,-41.66667 6.5e-7,-83.33333 9.75e-7,-125 -16.666686,8.33333 -33.333367,16.66667 -50.000053,25 16.666688,33.33333 33.333364,66.66667 50.000052025,100 z"
id="path1633" />
<path
style="color:#000000;overflow:visible;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="M 133.73205,-94.726837 C 122.79246,-109.93118 111.85288,-125.13553 100.91329,-140.33988 67.27492,-93.55992 33.63655,-46.77996 -0.00182072,0 -0.00121381,-115.89147 -6.0690667e-4,-231.78295 0,-347.67442 c 55.211897,76.78306 110.42379,153.56611 165.63569,230.34917 -10.63455,7.5328 -21.26909,15.06561 -31.90364,22.598413 z"
id="path1641" />
<path
style="color:#000000;overflow:visible;fill:#96caf3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="m 40,-106.7907 c 0,-39.4031 0,-78.8062 0,-118.2093 14.188768,19.70223 28.377535,39.40446 42.566303,59.10669 C 68.377535,-146.19244 54.188768,-126.49157 40,-106.7907 Z"
id="path1643" />
<path
style="color:#000000;overflow:visible;opacity:1;fill:#530900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.803;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
d="M 4.9025e-5,-400 C 41.666699,-400 83.33335,-400 125,-400 c -21.86468,-7.42574 -43.729357,-14.85148 -65.594035,-22.27722"
id="path1955" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1.1"
id="svg16"
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/">
<metadata
id="metadata22">
<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="defs20" />
<path
style="fill:#cccccc;stroke-width:11.57627106"
d="M 249.52542,16.949153 A 231.52542,231.52542 0 0 0 18,248.47458 231.52542,231.52542 0 0 0 249.52542,480 231.52542,231.52542 0 0 0 481.05085,248.47458 231.52542,231.52542 0 0 0 249.52542,16.949153 Z m 48.29476,46.305085 c 4.36594,-0.05788 8.54834,0.260466 13.27201,0.655217 25.83141,2.161984 53.25158,18.874647 71.15338,45.061565 24.14967,35.32626 22.98443,80.3693 0.81392,107.32916 -11.13767,13.54389 -14.72405,14.54779 -22.22551,20.59766 4.71798,-9.04894 6.11929,-12.51974 5.53943,-19.64806 -0.365,-4.47168 -2.06473,-8.02293 -3.02973,-10.01613 -3.70735,-7.65736 -9.41584,-10.5189 -16.09825,-13.81466 -8.21369,-4.051 -17.39067,-4.74836 -23.08471,-4.27327 -4.41592,0.36813 -6.69499,0.55451 -12.39023,2.50974 -26.98011,9.26322 -57.90528,0.80687 -74.45442,-23.40132 -19.78339,-28.93917 -12.00129,-69.01402 17.43224,-89.512588 8.66928,-6.037488 18.9172,-12.00031 28.7598,-13.950333 5.40898,-1.071962 9.94613,-1.479331 14.31207,-1.537444 z M 141.4953,144.31071 c 4.34856,-0.0926 8.66651,0.20027 12.91025,0.92726 17.05544,2.91896 19.66139,5.52315 28.53371,8.99881 -10.04346,0.39128 -13.68789,0.88212 -19.46714,4.88368 -3.62492,2.51113 -5.81414,5.6975 -7.03168,7.50652 -4.67743,6.94959 -4.26467,13.27903 -3.75323,20.64281 0.6287,9.05125 4.59266,17.27041 7.82302,21.93159 2.50524,3.61504 3.8069,5.47083 8.29784,9.40572 21.26964,18.63629 29.38003,49.39989 17.00265,75.51711 v 0.0232 c -14.81831,31.21329 -52.76068,44.21193 -84.80976,28.9859 -9.441374,-4.48616 -19.592241,-10.3823 -26.13705,-17.885 C 67.670676,297.00207 64.409456,290.49239 60.393571,281.98267 49.413134,258.71506 50.065068,226.94445 63.468519,198.68781 79.289715,165.33426 111.05539,144.98422 141.4953,144.31094 Z m 186.16995,138.91525 c 31.29817,0.7131 57.69741,25.34208 60.32324,57.70054 0.8248,10.16605 0.78591,21.62679 -2.39666,30.81731 -3.49806,10.1011 -7.43853,16.03718 -12.72938,23.58213 -14.46642,20.62961 -41.95319,35.59264 -72.71345,38.05248 -41.4958,3.31822 -78.76821,-19.28283 -90.55267,-50.80455 -5.92014,-15.83541 -4.9688,-19.27333 -6.37599,-28.46582 5.28917,8.29579 7.49874,11.10952 13.76943,14.04074 3.93435,1.83797 7.73396,2.13733 9.88053,2.28366 8.24667,0.56144 13.47177,-2.87138 19.51235,-6.8961 7.4248,-4.94689 12.51028,-12.31554 14.89992,-17.31915 1.85327,-3.88048 2.78715,-5.88445 3.93413,-11.59884 5.43352,-27.071 27.70446,-48.96022 56.14039,-51.23415 v 0.0231 c 2.12458,-0.17017 4.22161,-0.22805 6.30816,-0.18059 z"
id="circle4" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,293 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 496.00001 496.00001"
version="1.1"
id="svg16"
sodipodi:docname="clear-linux-logo.svg"
width="496"
height="496"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
inkscape:dataloss="true"
inkscape:export-filename="clear-linux-logo.svg"
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:xlink="http://www.w3.org/1999/xlink"
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/">
<sodipodi:namedview
id="namedview16"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="1.3045867"
inkscape:cx="176.30105"
inkscape:cy="234.55705"
inkscape:window-width="1920"
inkscape:window-height="1048"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg16" />
<defs
id="defs16">
<style
id="style1">.cls-1{fill:url(#linear-gradient);}.cls-2{fill:url(#linear-gradient-2);}.cls-3{fill:url(#linear-gradient-3);}.cls-4{fill:url(#linear-gradient-4);}.cls-5{fill:#0070c5;}.cls-6{fill:url(#linear-gradient-5);}.cls-7{fill:url(#linear-gradient-6);}.cls-8{fill:url(#linear-gradient-7);}.cls-9{fill:url(#linear-gradient-8);}.cls-10{fill:url(#linear-gradient-9);}</style>
<linearGradient
id="linear-gradient"
x1="-727.56"
y1="-85.849998"
x2="-728.04999"
y2="-85.800003"
gradientTransform="matrix(20.22,0,0,47.23,14733.51,4089.2)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#7dd2f7"
id="stop1" />
<stop
offset="1"
stop-color="#b1e4fa"
id="stop2" />
</linearGradient>
<linearGradient
id="linear-gradient-2"
x1="-739.45001"
y1="-52.959999"
x2="-738.44"
y2="-52.279999"
gradientTransform="matrix(30.5,0,0,16.66,22572.77,885.64)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#33bef2"
id="stop3" />
<stop
offset="0.75"
stop-color="#88e1b8"
id="stop4" />
</linearGradient>
<linearGradient
id="linear-gradient-3"
x1="-714.38"
y1="-32.720001"
x2="-714.13"
y2="-32.470001"
gradientTransform="matrix(14.33,0,0,11.99,10248.5,397.99)"
xlink:href="#linear-gradient" />
<linearGradient
id="linear-gradient-4"
x1="-729.33002"
y1="1.21"
x2="-728.5"
y2="2.72"
gradientTransform="matrix(20.88,0,0,8.09,15237.47,-3.56)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#33bef2"
id="stop5" />
<stop
offset="0.85"
stop-color="#88e1b8"
id="stop6" />
</linearGradient>
<linearGradient
id="linear-gradient-5"
x1="-735.59003"
y1="-87.980003"
x2="-735.96002"
y2="-87.43"
gradientTransform="matrix(26.53,0,0,53.4,19531.2,4732.97)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#00aeff"
id="stop7" />
<stop
offset="1"
stop-color="#88e1b8"
id="stop8" />
</linearGradient>
<linearGradient
id="linear-gradient-6"
x1="-739.40997"
y1="-23.92"
x2="-739.40997"
y2="-23.200001"
gradientTransform="matrix(31.1,0,0,10.63,23011.22,315.2)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#d1d3d5"
id="stop9" />
<stop
offset="1"
stop-color="#f6f7f8"
id="stop10" />
</linearGradient>
<linearGradient
id="linear-gradient-7"
x1="-736.17999"
y1="-56.27"
x2="-735.29999"
y2="-57.07"
gradientTransform="matrix(26.53,0,0,18.16,19531.2,1089.37)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#f6f7f8"
stop-opacity="0.4"
id="stop11" />
<stop
offset="1"
stop-color="#f0f2f4"
stop-opacity="0"
id="stop12" />
</linearGradient>
<linearGradient
id="linear-gradient-8"
x1="-739.40997"
y1="-20.59"
x2="-739.40997"
y2="-20.049999"
gradientTransform="matrix(31.1,0,0,10.21,23011.22,277.76)"
xlink:href="#linear-gradient-6" />
<linearGradient
id="linear-gradient-9"
x1="-731.44"
y1="-89.099998"
x2="-729.95001"
y2="-88.629997"
gradientTransform="matrix(21.89,0,0,56.51,16019.62,5058.67)"
gradientUnits="userSpaceOnUse">
<stop
offset="0.08"
stop-color="#fdb814"
id="stop13" />
<stop
offset="0.35"
stop-color="#ffe966"
id="stop14" />
<stop
offset="0.75"
stop-color="#f6f7f8"
id="stop15" />
<stop
offset="1"
stop-color="#f0f2f4"
id="stop16" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linear-gradient"
id="linearGradient16"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(20.22,0,0,47.23,14733.51,4089.2)"
x1="-727.56"
y1="-85.849998"
x2="-728.04999"
y2="-85.800003" />
<linearGradient
inkscape:collect="always"
xlink:href="#linear-gradient-6"
id="linearGradient17"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(31.1,0,0,10.63,23011.22,315.2)"
x1="-739.40997"
y1="-23.92"
x2="-739.40997"
y2="-23.200001" />
</defs>
<title
id="title16">Asset 1</title>
<g
id="Layer_2"
data-name="Layer 2"
transform="matrix(6.3886083,0,0,6.3886083,95.980392,8.210215)">
<g
id="Layer_1-2"
data-name="Layer 1">
<g
id="Group_240"
data-name="Group 240">
<path
id="Path_174"
data-name="Path 174"
class="cls-1"
d="M 26.5,59.2 18.8,13.3 6.3,12 Z"
style="fill:url(#linearGradient16)" />
<path
id="Path_175"
data-name="Path 175"
class="cls-2"
d="M 18.3,6.2 48.8,16.7 20.5,0 Z"
style="fill:url(#linear-gradient-2)" />
<path
id="Path_176"
data-name="Path 176"
class="cls-3"
d="M 6.2,12 18.3,6.1 20.5,0 Z"
style="fill:url(#linear-gradient-3)" />
<path
id="Path_177"
data-name="Path 177"
class="cls-4"
d="M 6.2,12 27.1,14.2 18.3,6.1 Z"
style="fill:url(#linear-gradient-4)" />
<path
id="Path_178"
data-name="Path 178"
class="cls-5"
d="M 27.1,14.2 48.8,16.6 18.3,6.2 Z" />
<path
id="Path_179"
data-name="Path 179"
class="cls-6"
d="M 0,65.4 26.5,59.2 6.2,12 Z"
style="fill:url(#linear-gradient-5)" />
<path
id="Path_180"
data-name="Path 180"
class="cls-7"
d="M 26.5,59.2 31.1,69.8 0,65.4 Z"
style="fill:url(#linearGradient17)" />
<path
id="Path_181"
data-name="Path 181"
class="cls-8"
d="M 26.5,59.2 21.4,47.2 0,65.4 Z"
style="fill:url(#linear-gradient-7)" />
<path
id="Path_182"
data-name="Path 182"
class="cls-9"
d="M 31.1,69.8 22.4,75.6 0,65.4 Z"
style="fill:url(#linear-gradient-8)" />
<path
id="Path_183"
data-name="Path 183"
class="cls-10"
d="M 27.1,14.2 40.6,48.6 31.1,69.9 26.5,59.3 18.7,13.4 Z"
style="fill:url(#linear-gradient-9)" />
</g>
</g>
</g>
<metadata
id="metadata16">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Asset 1</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg
i:viewOrigin="262 450"
i:rulerOrigin="0 0"
i:pageBounds="0 792 612 0"
width="496"
height="496"
viewBox="0 0 496 496"
overflow="visible"
enable-background="new 0 0 87.041 108.445"
xml:space="preserve"
version="1.1"
id="svg12"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:i="&amp;#38;ns_ai;"
xmlns:ns0="&amp;#38;ns_vars;"
xmlns:ns1="&amp;#38;ns_sfw;"><defs
id="defs12" />
<metadata
id="metadata1">
<ns0:variableSets>
<ns0:variableSet
varSetName="binding1"
locked="none">
<ns0:variables />
<ns0:sampleDataSets />
</ns0:variableSet>
</ns0:variableSets>
<ns1:sfw>
<ns1:slices />
<ns1:sliceSourceBounds
y="341.555"
x="262"
width="87.041"
height="108.445"
bottomLeftOrigin="true" />
</ns1:sfw>
</metadata>
<g
id="Layer_1"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
transform="matrix(4.4949374,0,0,4.4949374,50.95402,5.0487757)"
style="fill:#cccccc;fill-opacity:1">
<g
id="g12"
style="fill:#cccccc;fill-opacity:1">
<path
i:knockout="Off"
fill="#a80030"
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="path1"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path2"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path3"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path4"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
id="path5"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path6"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path7"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path8"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path9"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path10"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path11"
style="fill:#cccccc;fill-opacity:1" />
<path
i:knockout="Off"
fill="#a80030"
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="path12"
style="fill:#cccccc;fill-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg
i:viewOrigin="262 450"
i:rulerOrigin="0 0"
i:pageBounds="0 792 612 0"
width="496"
height="496"
viewBox="0 0 496 496"
overflow="visible"
enable-background="new 0 0 87.041 108.445"
xml:space="preserve"
version="1.1"
id="svg12"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:i="&amp;ns_ai;"
xmlns:ns0="&amp;ns_vars;"
xmlns:ns1="&amp;ns_sfw;"><defs
id="defs12" />
<metadata
id="metadata1">
<ns0:variableSets>
<ns0:variableSet
varSetName="binding1"
locked="none">
<ns0:variables />
<ns0:sampleDataSets />
</ns0:variableSet>
</ns0:variableSets>
<ns1:sfw>
<ns1:slices />
<ns1:sliceSourceBounds
y="341.555"
x="262"
width="87.041"
height="108.445"
bottomLeftOrigin="true" />
</ns1:sfw>
</metadata>
<g
id="Layer_1"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
transform="matrix(4.4949374,0,0,4.4949374,50.95402,5.0487757)">
<g
id="g12">
<path
i:knockout="Off"
fill="#a80030"
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="path1" />
<path
i:knockout="Off"
fill="#a80030"
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="path2" />
<path
i:knockout="Off"
fill="#a80030"
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="path3" />
<path
i:knockout="Off"
fill="#a80030"
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="path4" />
<path
i:knockout="Off"
fill="#a80030"
d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
id="path5" />
<path
i:knockout="Off"
fill="#a80030"
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="path6" />
<path
i:knockout="Off"
fill="#a80030"
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="path7" />
<path
i:knockout="Off"
fill="#a80030"
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="path8" />
<path
i:knockout="Off"
fill="#a80030"
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="path9" />
<path
i:knockout="Off"
fill="#a80030"
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="path10" />
<path
i:knockout="Off"
fill="#a80030"
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="path11" />
<path
i:knockout="Off"
fill="#a80030"
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="path12" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
id="svg5"
version="1.1"
viewBox="0 0 131.23333 131.23334"
height="496"
width="496"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs2" />
<g
id="layer1">
<g
transform="matrix(3.8123445,0,0,3.5284776,-1318.4244,-71.638005)"
id="g26">
<g
transform="matrix(0.65134496,0,0,0.6634673,448.54237,52.231766)"
id="g20">
<path
d="m -127,-42.3 c 4.57,6.45 23.8,31.4 10.7,36.6 -6.12,2.81 -34,-1.65 -33.6,-0.921 -2,3.28 -3.59,5.92 -3.59,5.92 0,0 21.5,0.967 38.1,-1.27 23.7,-3.18 -4.88,-33.5 -11.6,-40.3 z"
style="fill:#cccccc;stroke-width:0.585;fill-opacity:1"
id="path14" />
<path
d="m -127,-42.3 c -1.52,0.209 -29.4,34.5 -29.4,34.5 0,0 2.01,0.57 6.58,1.23 1.48,-1.15 22.3,-36.2 22.9,-35.7 -0.0107,-0.0141 -0.028,-0.0193 -0.0522,-0.016 z"
style="fill:#cccccc;stroke-width:0.585;fill-opacity:0.85461253"
id="path16" />
<path
d="m -127,-42.3 c -0.96,-0.156 -22.9,35.7 -22.9,35.7 0,0 19.9,2.1 28.1,1.96 23.1,-0.39 0.176,-30.6 -5.16,-37.7 -0.007,-0.007 -0.0151,-0.0108 -0.0248,-0.0124 z"
style="fill:#cccccc;stroke-width:0.585;fill-opacity:0.54827821"
id="path18" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
id="svg5"
version="1.1"
viewBox="0 0 131.23333 131.23334"
height="496"
width="496"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs2" />
<g
id="layer1">
<g
transform="matrix(3.8123445,0,0,3.5284776,-1318.4244,-71.638005)"
id="g26">
<g
transform="matrix(0.65134496,0,0,0.6634673,448.54237,52.231766)"
id="g20">
<path
d="m -127,-42.3 c 4.57,6.45 23.8,31.4 10.7,36.6 -6.12,2.81 -34,-1.65 -33.6,-0.921 -2,3.28 -3.59,5.92 -3.59,5.92 0,0 21.5,0.967 38.1,-1.27 23.7,-3.18 -4.88,-33.5 -11.6,-40.3 z"
style="fill:#7f7fff;stroke-width:0.585"
id="path14" />
<path
d="m -127,-42.3 c -1.52,0.209 -29.4,34.5 -29.4,34.5 0,0 2.01,0.57 6.58,1.23 1.48,-1.15 22.3,-36.2 22.9,-35.7 -0.0107,-0.0141 -0.028,-0.0193 -0.0522,-0.016 z"
style="fill:#ff7f7f;stroke-width:0.585"
id="path16" />
<path
d="m -127,-42.3 c -0.96,-0.156 -22.9,35.7 -22.9,35.7 0,0 19.9,2.1 28.1,1.96 23.1,-0.39 0.176,-30.6 -5.16,-37.7 -0.007,-0.007 -0.0151,-0.0108 -0.0248,-0.0124 z"
style="fill:#7f3fbf;stroke-width:0.585"
id="path18" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="496"
width="496"
id="svg4"
version="1.1"
viewBox="0 0 496 496"
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/">
<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" />
<path
d="m 248.1215,22.133185 c -127.11688,0 -230.03813,101.032375 -230.263,225.765625 H 17.818 v 174.76598 h 0.0405 c 0.0607,28.28815 23.45355,51.20203 52.30388,51.20203 H 248.1439 C 375.2833,473.78702 478.182,372.76698 478.182,248.10118 478.1822,123.36794 375.1483,22.335565 247.9191,22.335565 Z m 46.7721,92.963945 c 38.6545,0 75.1503,29.03021 75.1503,69.07888 0,3.71479 0.023,7.43183 -0.5966,11.64358 -1.071,10.65415 -10.9982,18.31084 -21.8075,16.80874 -10.8093,-1.51965 -18.1445,-11.58736 -16.1454,-22.12009 0.1821,-1.20214 0.2485,-3.08966 0.2485,-6.33448 0,-22.71148 -18.945,-31.48126 -36.8556,-31.48126 -17.9061,0 -34.0447,14.76921 -34.0672,31.48126 0.3094,19.32275 0,38.49709 0,57.7906 l 33.2352,-0.24375 c 25.9496,-0.52709 26.2419,37.8 0.2993,37.62011 l -33.5275,0.24375 c -0.081,15.54275 0.1214,12.73192 0.041,20.55951 0,0 0.281,19.01019 -0.2973,33.41512 -4.0116,42.31981 -40.7458,76.13968 -84.88698,76.13968 -46.79465,0 -85.33671,-37.50768 -85.33671,-83.51529 1.40496,-47.31185 39.86877,-84.52719 88.32743,-84.09995 l 27.02886,-0.20013 v 37.55265 l -27.02886,0.24353 h -0.14167 c -26.62415,0.77286 -49.44807,18.51098 -49.87531,46.47983 0,25.47734 20.98901,45.89519 47.042,45.89519 26.01701,0 46.83964,-18.5672 46.83964,-45.85021 l -0.04,-142.22785 c 0.023,-2.63993 0.1012,-4.73793 0.3971,-7.64995 4.3916,-34.78679 36.1135,-61.2985 72.0246,-61.2985 z"
style="fill:#cccccc;fill-opacity:1;stroke-width:2.24866"
id="path8" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="496"
width="496"
id="svg4"
version="1.1"
viewBox="0 0 496 496"
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/">
<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" />
<path
d="m 248.1215,22.133185 c -127.11688,0 -230.03813,101.032375 -230.263,225.765625 H 17.818 v 174.76598 h 0.0405 c 0.0607,28.28815 23.45355,51.20203 52.30388,51.20203 H 248.1439 C 375.2833,473.78702 478.182,372.76698 478.182,248.10118 478.1822,123.36794 375.1483,22.335565 247.9191,22.335565 Z m 46.7721,92.963945 c 38.6545,0 75.1503,29.03021 75.1503,69.07888 0,3.71479 0.023,7.43183 -0.5966,11.64358 -1.071,10.65415 -10.9982,18.31084 -21.8075,16.80874 -10.8093,-1.51965 -18.1445,-11.58736 -16.1454,-22.12009 0.1821,-1.20214 0.2485,-3.08966 0.2485,-6.33448 0,-22.71148 -18.945,-31.48126 -36.8556,-31.48126 -17.9061,0 -34.0447,14.76921 -34.0672,31.48126 0.3094,19.32275 0,38.49709 0,57.7906 l 33.2352,-0.24375 c 25.9496,-0.52709 26.2419,37.8 0.2993,37.62011 l -33.5275,0.24375 c -0.081,15.54275 0.1214,12.73192 0.041,20.55951 0,0 0.281,19.01019 -0.2973,33.41512 -4.0116,42.31981 -40.7458,76.13968 -84.88698,76.13968 -46.79465,0 -85.33671,-37.50768 -85.33671,-83.51529 1.40496,-47.31185 39.86877,-84.52719 88.32743,-84.09995 l 27.02886,-0.20013 v 37.55265 l -27.02886,0.24353 h -0.14167 c -26.62415,0.77286 -49.44807,18.51098 -49.87531,46.47983 0,25.47734 20.98901,45.89519 47.042,45.89519 26.01701,0 46.83964,-18.5672 46.83964,-45.85021 l -0.04,-142.22785 c 0.023,-2.63993 0.1012,-4.73793 0.3971,-7.64995 4.3916,-34.78679 36.1135,-61.2985 72.0246,-61.2985 z"
style="fill:#51a2da;fill-opacity:1;stroke-width:2.24866"
id="path8" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg2"
xml:space="preserve"
width="496"
height="496"
viewBox="0 0 496 496"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs6" /><g
id="g8"
transform="matrix(1.3333333,0,0,-1.3333333,0,746.66667)"><g
id="g3535"
transform="matrix(1.1203307,0,0,1.1203307,-116.81136,-14.94012)"><g
id="g54"
transform="matrix(1.680604,0,0,1.680604,423.99221,497.23047)"
style="fill:#cccccc;fill-opacity:1"><path
d="m 0,0 c 9.895,-9.89 -17.535,-53.361 -22.171,-58 -4.637,-4.63 -16.413,-0.371 -26.305,9.522 -9.894,9.89 -14.156,21.67 -9.519,26.307 C -53.359,-17.533 -9.89,9.893 0,0"
style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path56" /></g><g
id="g58"
transform="matrix(1.680604,0,0,1.680604,190.81866,479.64379)"
style="fill-opacity:1;fill:#cccccc"><path
d="M 0,0 C -15.106,8.571 -36.597,18.104 -43.435,11.267 -50.364,4.341 -40.48,-17.636 -31.82,-32.769 -24.114,-19.37 -13.149,-8.09 0,0"
style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path60" /></g><g
id="g62"
transform="matrix(1.680604,0,0,1.680604,398.63593,405.48899)"
style="fill:#cccccc;fill-opacity:1"><path
d="m 0,0 c 1.39,-4.718 1.139,-8.616 -1.115,-10.867 -5.271,-5.271 -19.503,0.339 -32.332,12.55 -0.897,0.803 -1.784,1.636 -2.658,2.511 -4.637,4.641 -8.248,9.583 -10.557,14.132 -4.494,8.06 -5.618,15.18 -2.221,18.576 1.851,1.851 4.812,2.355 8.424,1.704 2.357,1.489 5.136,3.15 8.186,4.849 -12.4,6.467 -26.497,10.121 -41.453,10.121 -49.601,0 -89.814,-40.206 -89.814,-89.812 0,-49.599 40.213,-89.809 89.814,-89.809 49.602,0 89.815,40.21 89.815,89.809 0,16.019 -4.204,31.041 -11.551,44.063 C 2.952,4.931 1.408,2.275 0,0"
style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path64" /></g></g><g
id="g22"
transform="matrix(1.680604,0,0,1.680604,504.44542,140.54832)" /><g
id="g34"
transform="matrix(1.680604,0,0,1.680604,-5.3409333,90.456741)" /></g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg2"
xml:space="preserve"
width="496"
height="496"
viewBox="0 0 496 496"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs6" /><g
id="g8"
transform="matrix(1.3333333,0,0,-1.3333333,0,746.66667)"><g
id="g3535"
transform="matrix(1.1203307,0,0,1.1203307,-116.81136,-14.94012)"><g
id="g54"
transform="matrix(1.680604,0,0,1.680604,423.99221,497.23047)"><path
d="m 0,0 c 9.895,-9.89 -17.535,-53.361 -22.171,-58 -4.637,-4.63 -16.413,-0.371 -26.305,9.522 -9.894,9.89 -14.156,21.67 -9.519,26.307 C -53.359,-17.533 -9.89,9.893 0,0"
style="fill:#aa2d2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path56" /></g><g
id="g58"
transform="matrix(1.680604,0,0,1.680604,190.81866,479.64379)"><path
d="M 0,0 C -15.106,8.571 -36.597,18.104 -43.435,11.267 -50.364,4.341 -40.48,-17.636 -31.82,-32.769 -24.114,-19.37 -13.149,-8.09 0,0"
style="fill:#aa2d2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path60" /></g><g
id="g62"
transform="matrix(1.680604,0,0,1.680604,398.63593,405.48899)"><path
d="m 0,0 c 1.39,-4.718 1.139,-8.616 -1.115,-10.867 -5.271,-5.271 -19.503,0.339 -32.332,12.55 -0.897,0.803 -1.784,1.636 -2.658,2.511 -4.637,4.641 -8.248,9.583 -10.557,14.132 -4.494,8.06 -5.618,15.18 -2.221,18.576 1.851,1.851 4.812,2.355 8.424,1.704 2.357,1.489 5.136,3.15 8.186,4.849 -12.4,6.467 -26.497,10.121 -41.453,10.121 -49.601,0 -89.814,-40.206 -89.814,-89.812 0,-49.599 40.213,-89.809 89.814,-89.809 49.602,0 89.815,40.21 89.815,89.809 0,16.019 -4.204,31.041 -11.551,44.063 C 2.952,4.931 1.408,2.275 0,0"
style="fill:#aa2d2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path64" /></g></g><g
id="g22"
transform="matrix(1.680604,0,0,1.680604,504.44542,140.54832)" /><g
id="g34"
transform="matrix(1.680604,0,0,1.680604,-5.3409333,90.456741)" /></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
viewBox="0 0 105.83333 105.83334"
version="1.1"
id="svg8915"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8909" />
<g
id="layer1"
transform="translate(0,-191.16665)">
<g
id="g6414">
<path
d=""
id="path3437"
style="fill:#/000000;stroke-width:0.0822478" />
<path
style="fill:#cccccc;fill-opacity:1;stroke-width:0.35411"
d=""
id="path1918"
transform="matrix(0.26458334,0,0,0.26458334,0,191.16665)" />
<path
d="m 94.908121,220.98177 -9.593353,10.92364 2.065151,-14.52111 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2185" />
<path
d="M 54.598011,235.11885 72.902758,261.34807 48.569652,234.75774 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2237" />
<path
d="m 85.426002,232.07973 18.649268,0.89416 -6.567167,4.86125 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2171" />
<path
id="path2173"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
d="m 61.686811,235.54321 11.203616,25.7928 -18.276154,-26.18106 z" />
<path
d="m 69.905485,236.10484 2.987675,25.179 -11.215917,-25.7334 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2175" />
<path
d="m 64.801382,222.91117 20.30619,9.13818 L 72.674806,221.089 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2177" />
<path
d="m 97.510457,237.81811 -12.036898,-5.67943 -37.323243,2.57545 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0186333"
id="path2179" />
<path
d="m 10.550954,235.34751 20.430711,-12.65183 41.63464,-1.57862 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2181" />
<path
d="m 69.015141,212.83574 c 0,0 -39.577283,9.46391 -42.012185,10.02546 l 2.028815,-0.29466 -2.005324,0.29312 45.685144,-1.75644 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2183" />
<path
d="m 104.11354,232.97973 -9.182792,-12.02796 -9.734209,11.09484 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2187" />
<path
d="m 96.717922,248.92796 0.790181,-11.09282 6.567167,-4.86125 -1.21812,9.98184 -6.139228,5.97223"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2189" />
<path
d="m 87.379919,217.3843 -8.378319,-10.35405 -9.969541,5.7694 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2191" />
<path
d="m 50.001542,205.05454 19.034684,7.74209 9.958668,-5.76176 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2193" />
<path
d="m 27.003098,222.86104 22.998444,-17.8065 19.141792,7.76021 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2195" />
<path
d="m 87.379919,217.3843 -14.648652,3.76869 -3.73035,-8.36637 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2197" />
<path
d="m 87.379919,217.3843 -14.679927,3.75389 12.556301,11.04707 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2199" />
<path
d="m 66.007387,231.01713 19.188455,1.03481 -20.373359,-9.14301 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2201" />
<path
d="M 66.013734,231.03688 10.320382,242.84009 64.816138,222.91191 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2203" />
<path
d="m 48.595803,234.71883 17.612506,-3.72876 19.418164,1.10304 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2205" />
<path
d="M 64.832643,222.90479 16.1098,234.06355 10.320382,242.84009 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2209" />
<path
d="m 48.533988,234.72306 -38.213606,8.11703 -8.6005905,9.26977 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2211" />
<path
d="M 4.3038844,257.86852 48.533988,234.72306 6.8946596,250.1879 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2213" />
<path
d="m 5.9698729,265.74441 5.1355151,-11.43507 37.4286,-19.58628 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2215" />
<path
d="m 18.788616,277.10135 -5.712757,-16.5381 35.458129,-25.84019 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2217" />
<path
d="m 72.879703,261.29237 -3.834656,5.30036 -20.511059,-31.86967 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2219" />
<path
d="M 65.313419,272.61238 48.533988,234.72306 69.564426,267.39945 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2221" />
<path
d="M 33.416458,279.68174 21.480739,273.26579 48.533988,234.72306 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2223" />
<path
d="m 66.357935,274.97075 -17.823947,-40.24769 11.637411,44.2691 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2225" />
<path
d="M 48.533988,234.72306 51.504925,283.1121 34.16639,277.45107 Z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2227" />
<path
d="m 48.533988,234.72306 2.810287,45.92265 9.624572,1.36719 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
id="path2229" />
<g
id="g2340"
transform="matrix(0.99230766,0,0,0.99230766,0.40705315,1.8775694)"
style="fill:#cccccc;fill-opacity:1">
<path
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.209952px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill:#000000"
d="m 91.922238,223.72124 c 0,0 -3.359236,0.83979 -2.939326,2.72935 0,0 1.364686,-0.10495 2.939326,-2.72935 z"
id="path2235" />
<path
id="path2231"
d="m 56.755438,217.22847 c 9.705599,-4.4535 18.334521,9.1985 23.472344,3.65199 -2.23966,3.57968 -7.45376,3.90526 -11.088773,3.91761 0,0 -5.577589,-0.13282 -4.847188,-4.81398 -1.205199,-1.99087 -5.022379,-1.95121 -7.536383,-2.75562 z"
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.375614px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill:#000000" />
<path
id="path2233"
d="m 65.851926,218.62017 a 2.9547924,2.9547924 0 0 0 -1.22808,2.39306 2.9547924,2.9547924 0 0 0 2.955027,2.95504 2.9547924,2.9547924 0 0 0 2.954292,-2.95504 2.9547924,2.9547924 0 0 0 -0.08803,-0.70573 2.4069938,2.9215925 0 0 1 -2.252216,1.90082 2.4069938,2.9215925 0 0 1 -2.407015,-2.9213 2.4069938,2.9215925 0 0 1 0.06602,-0.66685 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.412713;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg16"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata22">
<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="defs20" />
<g
id="g4"
transform="matrix(0.063902,0,0,0.064257,3.3583,450.3601)"
style="fill:#705db3">
<path
id="path2"
d="m 3208.5873,-6664.1875 c -111.4456,2.8403 -221.0763,13.9377 -327.0025,33.3094 -1273.5088,232.8432 -2169.62347,1334.506 -2245.50934,2060.3757 -37.22554,356.1 154.83459,622.2976 260.70426,740.0185 286.22418,317.914 856.57788,561.129 1223.41048,762.3389 -530.1956,452.0165 -773.2554,672.5944 -1012.7753,924.0787 -358.35932,376.3224 -610.76447,790.5171 -611.53272,1087.1914 -0.27049,95.57774 -15.53661,400.25139 108.77064,640.77705 46.74941,90.49354 179.60587,392.391365 580.45538,618.45612 256.0483,144.48485 620.7718,197.59793 977.8998,146.63001 1105.2425,-157.71433 2585.6047,-1095.33614 3641.9175,-1968.34548 673.1553,-556.3496 1165.1847,-1095.4077 1307.3196,-1360.8784 114.6863,-214.2021 127.6435,-598.49 61.1189,-839.603 -189.0087,-684.9726 -1725.2864,-2088.0355 -2981.3519,-2652.734 -300.2558,-135.0016 -649.0876,-200.1358 -983.4248,-191.6149 z m 922.9967,1089.252 a 793.68409,659.13367 25.483077 0 1 431.6297,94.7772 793.68409,659.13367 25.483077 0 1 420.9251,939.188 793.68409,659.13367 25.483077 0 1 -1004.8337,242.4376 793.68409,659.13367 25.483077 0 1 -421.2704,-939.1879 793.68409,659.13367 25.483077 0 1 573.5493,-337.2149 z"
style="fill:#cccccc;fill-rule:evenodd;stroke-width:11.29758358" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg16"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<g
id="g4"
transform="matrix(0.063902,0,0,0.064257,3.3583,450.3601)"
style="fill:#705db3">
<path
id="path2"
d="m 3208.5873,-6664.1875 c -111.4456,2.8403 -221.0763,13.9377 -327.0025,33.3094 -1273.5088,232.8432 -2169.62347,1334.506 -2245.50934,2060.3757 -37.22554,356.1 154.83459,622.2976 260.70426,740.0185 286.22418,317.914 856.57788,561.129 1223.41048,762.3389 -530.1956,452.0165 -773.2554,672.5944 -1012.7753,924.0787 -358.35932,376.3224 -610.76447,790.5171 -611.53272,1087.1914 -0.27049,95.57774 -15.53661,400.25139 108.77064,640.77705 46.74941,90.49354 179.60587,392.391365 580.45538,618.45612 256.0483,144.48485 620.7718,197.59793 977.8998,146.63001 1105.2425,-157.71433 2585.6047,-1095.33614 3641.9175,-1968.34548 673.1553,-556.3496 1165.1847,-1095.4077 1307.3196,-1360.8784 114.6863,-214.2021 127.6435,-598.49 61.1189,-839.603 -189.0087,-684.9726 -1725.2864,-2088.0355 -2981.3519,-2652.734 -300.2558,-135.0016 -649.0876,-200.1358 -983.4248,-191.6149 z m 922.9967,1089.252 a 793.68409,659.13367 25.483077 0 1 431.6297,94.7772 793.68409,659.13367 25.483077 0 1 420.9251,939.188 793.68409,659.13367 25.483077 0 1 -1004.8337,242.4376 793.68409,659.13367 25.483077 0 1 -421.2704,-939.1879 793.68409,659.13367 25.483077 0 1 573.5493,-337.2149 z"
style="fill:#9690c1;fill-rule:evenodd;stroke-width:11.29758358;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 496 496"
height="496"
width="496"
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/">
<defs
id="defs2" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="matrix(2.497971,0,0,2.497971,-5723.5418,-125.61843)">
<g
transform="matrix(0.4436889,0,0,0.4436889,2965.7337,-7.469143)"
id="g2041"
style="fill:#ffffff;stroke-width:2.25383"
class="logofill">
<g
transform="matrix(3.6654483,0,0,3.6654483,-775.24519,138.17095)"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79233;stroke-miterlimit:4"
id="g2021" />
<g
transform="matrix(3.6654483,0,0,3.6654483,-1473.9329,138.17095)"
style="fill:#4a86cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79233;stroke-miterlimit:4"
id="g2055">
<g
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="g2053">
<path
d="M 86.068,0 C 61.466,0 56.851,35.041 70.691,35.041 84.529,35.041 110.671,0 86.068,0 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2043" />
<path
d="M 45.217,30.699 C 52.586,31.149 60.671,2.577 46.821,4.374 32.976,6.171 37.845,30.249 45.217,30.699 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2045" />
<path
d="M 11.445,48.453 C 16.686,46.146 12.12,23.581 3.208,29.735 -5.7,35.89 6.204,50.759 11.445,48.453 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2047" />
<path
d="M 26.212,36.642 C 32.451,35.37 32.793,9.778 21.667,14.369 10.539,18.961 19.978,37.916 26.212,36.642 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2049" />
<path
d="m 58.791,93.913 c 1.107,8.454 -6.202,12.629 -13.36,7.179 C 22.644,83.743 83.16,75.088 79.171,51.386 75.86,31.712 15.495,37.769 8.621,68.553 3.968,89.374 27.774,118.26 52.614,118.26 c 12.22,0 26.315,-11.034 28.952,-25.012 C 83.58,82.589 57.867,86.86 58.791,93.913 Z"
style="fill:#4a86cf;fill-opacity:1;stroke-width:1.79233"
id="path2051" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg14"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata20">
<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="defs18" />
<path
id="circle4"
d="M 248.30508,17.389831 A 230.30508,230.30508 0 0 0 100.54099,71.34513 c 9.35043,0.728916 18.684,1.579202 28.00095,2.653921 7.32362,0.879765 14.66196,1.618239 21.90597,3.013657 7.57179,1.681112 15.31909,2.461962 22.89556,4.138352 17.4334,3.226344 34.67822,7.50887 51.52628,13.06705 4.66857,1.01219 8.84261,3.35589 13.31451,4.94799 9.5666,3.82571 18.8864,8.35328 27.48366,14.05679 -1.95263,13.67321 -2.87925,28.64707 3.86841,41.24798 3.69458,7.38911 10.01902,13.45224 17.7452,16.46313 11.20083,4.82789 23.70236,3.22888 35.53534,3.82353 10.74193,1.94319 20.82626,6.34479 30.99223,10.16578 4.03642,1.56861 7.98675,3.30798 12.03254,4.85794 0.0518,-1.32518 0.114,-2.6378 0.17998,-3.95837 4.54683,5.33352 10.62158,9.23604 17.09296,11.8302 -0.36526,-2.25239 -0.8025,-4.48174 -1.2145,-6.7248 3.14674,2.9547 6.10825,6.12024 9.31116,9.01886 2.93133,2.40209 6.1814,4.36993 9.46861,6.25233 -0.009,-3.10452 -0.55492,-6.15871 -0.96706,-9.22119 4.90738,5.57235 10.23725,10.74765 15.0463,16.41822 3.8257,0.0576 7.65302,0.11515 11.49276,0.17964 0.28305,0.48709 0.63265,0.93389 0.92214,1.41695 10e-6,-0.31552 -7.7e-4,-0.62988 0,-0.94425 8.66785,9.03095 -0.24297,-0.32934 7.93923,8.25413 0.22754,0.23837 0.15476,0.0806 -0.15741,0.85444 -1.1897,-0.47443 -2.34378,-1.04444 -3.50855,-1.57437 1.86249,2.8232 3.63889,5.70063 5.53272,8.50148 0.87585,1.49284 1.47238,2.49156 2.11412,4.20572 0.90544,2.01574 -3.49949,0.84637 -2.45148,2.13665 6.64463,8.29767 16.60828,11.97794 26.74147,14.50658 -3.90063,1.94792 -8.46219,2.57711 -11.51525,5.78008 -0.30113,0.33164 -0.14728,0.0921 -0.35986,0.31436 -0.39036,0.75656 -0.60927,1.27981 -1.95669,3.44111 -4.04107,-3.65253 -7.56049,-7.84016 -11.80763,-11.26791 -5.73621,-4.67323 -12.12676,-7.36573 -18.86972,-10.39067 -3.54007,-1.64358 -7.52432,-3.39194 -9.37864,-7.03962 -1.38138,-3.56824 -1.68227,-7.43091 -2.02416,-11.20043 -13.04578,-6.37772 -26.63659,-11.58596 -40.14595,-16.86801 -16.51093,-6.04527 -33.32274,-12.23012 -51.00899,-13.49449 -17.11965,-1.66695 -34.53828,5.29022 -46.48833,17.49789 -14.72216,14.58637 -20.98593,36.15513 -15.33869,56.15932 4.36889,18.4168 18.41521,31.85557 36.23258,38.25666 7.71695,2.87985 15.99607,3.96068 24.20002,3.91346 33.94898,-0.023 68.16822,4.06627 100.51108,14.68644 15.13552,5.07604 29.74082,11.95238 42.86733,21.07384 A 230.30508,230.30508 0 0 0 478.61017,247.69492 230.30508,230.30508 0 0 0 248.30508,17.389831 Z M 94.648411,76.518013 A 230.30508,230.30508 0 0 0 45.303748,139.13221 c 5.739606,-0.99607 11.490174,-1.98546 17.227899,-2.9463 63.084253,-10.19883 127.135323,-13.13326 190.968793,-12.5948 0.72581,3.93798 1.63402,7.85731 2.51897,11.7626 -26.47084,-2.65496 -53.11456,-3.50651 -79.70715,-3.3286 -44.27535,0.97995 -88.445539,4.64191 -132.402938,10.00837 A 230.30508,230.30508 0 0 0 18,247.69492 230.30508,230.30508 0 0 0 248.30508,478 230.30508,230.30508 0 0 0 441.79284,372.15858 c -1.51353,-1.94539 -2.92982,-3.99038 -4.54313,-5.82511 -9.34182,-12.00615 -21.70523,-21.31093 -34.79315,-28.87807 -24.92558,-14.25393 -54.48386,-18.78863 -82.85586,-16.50815 -23.54421,2.71587 -47.70324,-7.53524 -63.22144,-25.21219 -7.73568,-8.66281 -13.43176,-16.7973 -16.62066,-27.95593 -2.93593,-12.46987 -3.64224,-24.53682 -0.24735,-36.99724 2.78148,-12.17946 9.27894,-23.27993 17.63274,-32.47659 5.86732,-6.21858 12.57251,-11.79692 20.33162,-15.49619 -7.29075,-12.33399 -12.43521,-25.82791 -16.48571,-39.53867 -2.15399,-7.32358 -3.08797,-14.92077 -4.85799,-22.33326 -0.24815,-1.2129 -1.63863,-1.50158 -2.51896,-2.09163 -6.81322,-3.41369 -13.65442,-6.75565 -20.66898,-9.73856 -4.69199,-2.13528 -9.80425,-3.07216 -14.52902,-5.12786 -7.72637,-2.28037 -15.35021,-4.90135 -23.1655,-6.88221 -4.67793,-1.20334 -9.08079,-3.29843 -13.78682,-4.40815 -9.72111,-2.47244 -19.35862,-5.44545 -29.32791,-6.747249 -19.00531,-4.087915 -38.21675,-7.004268 -57.486309,-9.423508 z M 257.66123,140.88644 c 0.79605,3.79762 1.89745,7.51889 3.05874,11.22288 -60.55564,3.09991 -119.79647,19.20088 -175.697592,42.19259 -8.597289,3.40425 -16.875273,7.53477 -25.369544,11.17785 7.529652,-4.73875 15.543283,-8.60512 23.480323,-12.59481 22.350153,-11.182 45.548333,-20.65997 69.181483,-28.76556 34.18783,-11.318 69.43558,-19.85679 105.34659,-23.23295 z m 71.20566,11.80763 c 14.8954,3.61026 29.09,9.77564 42.66491,16.82309 16.10822,8.42399 31.01164,19.15505 43.99186,31.89185 2.56608,2.68777 5.86186,4.83007 7.66935,8.16408 -1.60614,-0.24873 -3.67521,0.78304 -4.92547,-0.58497 -4.75286,-5.97504 -10.24917,-11.34115 -16.12586,-16.21579 -16.24869,-13.36425 -34.71905,-23.84175 -53.95526,-32.25169 -6.29812,-2.96886 -12.97927,-4.97505 -19.31953,-7.8268 z m 66.03278,172.52637 c 15.94432,8.18988 29.8852,19.95605 41.31547,33.71367 2.79603,3.06191 5.32736,6.32338 7.75931,9.67097 a 230.30508,230.30508 0 0 0 12.14499,-22.28835 c -8.13258,-4.82949 -16.77755,-8.77773 -25.68442,-11.96504 -11.54266,-4.03172 -23.37927,-7.56724 -35.53535,-9.13125 z"
style="fill:#cccccc;stroke-width:11.51525402" />
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg14"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata20">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs18" />
<path
style="opacity:1;fill:#2777ff;fill-opacity:1;stroke-width:28.6873"
d="M 247.5,476.39 A 229.5,229.50001 0 0 0 477,246.88999 229.5,229.50001 0 0 0 247.5,17.39 229.5,229.50001 0 0 0 18,246.89 229.5,229.50001 0 0 0 247.5,476.39 Z"
id="circle2" />
<path
id="circle4"
d="M 247.3553,16.835017 A 230.30508,230.30508 0 0 0 99.591209,70.790316 c 9.350431,0.728916 18.684001,1.579202 28.000951,2.653921 7.32362,0.879765 14.66196,1.618239 21.90597,3.013657 7.57179,1.681112 15.31909,2.461962 22.89556,4.138352 17.4334,3.226344 34.67822,7.50887 51.52628,13.06705 4.66857,1.01219 8.84261,3.35589 13.31451,4.94799 9.5666,3.825714 18.8864,8.353284 27.48366,14.056794 -1.95263,13.67321 -2.87925,28.64707 3.86841,41.24798 3.69458,7.38911 10.01902,13.45224 17.7452,16.46313 11.20083,4.82789 23.70236,3.22888 35.53534,3.82353 10.74193,1.94319 20.82626,6.34479 30.99223,10.16578 4.03642,1.56861 7.98675,3.30798 12.03254,4.85794 0.0518,-1.32518 0.114,-2.6378 0.17998,-3.95837 4.54683,5.33352 10.62158,9.23604 17.09296,11.8302 -0.36526,-2.25239 -0.8025,-4.48174 -1.2145,-6.7248 3.14674,2.9547 6.10825,6.12024 9.31116,9.01886 2.93133,2.40209 6.1814,4.36993 9.46861,6.25233 -0.009,-3.10452 -0.55492,-6.15871 -0.96706,-9.22119 4.90738,5.57235 10.23725,10.74765 15.0463,16.41822 3.8257,0.0576 7.65302,0.11515 11.49276,0.17964 0.28305,0.48709 0.63265,0.93389 0.92214,1.41695 10e-6,-0.31552 -7.7e-4,-0.62988 0,-0.94425 8.66785,9.03095 -0.24297,-0.32934 7.93923,8.25413 0.22754,0.23837 0.15476,0.0806 -0.15741,0.85444 -1.1897,-0.47443 -2.34378,-1.04444 -3.50855,-1.57437 1.86249,2.8232 3.63889,5.70063 5.53272,8.50148 0.87585,1.49284 1.47238,2.49156 2.11412,4.20572 0.90544,2.01574 -3.49949,0.84637 -2.45148,2.13665 6.64463,8.29767 16.60828,11.97794 26.74147,14.50658 -3.90063,1.94792 -8.46219,2.57711 -11.51525,5.78008 -0.30113,0.33164 -0.14728,0.0921 -0.35986,0.31436 -0.39036,0.75656 -0.60927,1.27981 -1.95669,3.44111 -4.04107,-3.65253 -7.56049,-7.84016 -11.80763,-11.26791 -5.73621,-4.67323 -12.12676,-7.36573 -18.86972,-10.39067 -3.54007,-1.64358 -7.52432,-3.39194 -9.37864,-7.03962 -1.38138,-3.56824 -1.68227,-7.43091 -2.02416,-11.20043 -13.04578,-6.37772 -26.63659,-11.58596 -40.14595,-16.86801 -16.51093,-6.04527 -33.32274,-12.23012 -51.00899,-13.49449 -17.11965,-1.66695 -34.53828,5.29022 -46.48833,17.49789 -14.72216,14.58637 -20.98593,36.15513 -15.33869,56.15932 4.36889,18.4168 18.41521,31.85557 36.23258,38.25666 7.71695,2.87985 15.99607,3.96068 24.20002,3.91346 33.94898,-0.023 68.16822,4.06627 100.51108,14.68644 15.13552,5.07604 29.74082,11.95238 42.86733,21.07384 A 230.30508,230.30508 0 0 0 477.66039,247.14011 230.30508,230.30508 0 0 0 247.3553,16.835017 Z M 93.69863,75.963199 A 230.30508,230.30508 0 0 0 44.353967,138.5774 c 5.739606,-0.99607 11.490174,-1.98546 17.227899,-2.9463 63.084254,-10.19883 127.135324,-13.13326 190.968794,-12.5948 0.72581,3.93798 1.63402,7.85731 2.51897,11.7626 -26.47084,-2.65496 -53.11456,-3.50651 -79.70715,-3.3286 -44.27535,0.97995 -88.44554,4.64191 -132.402939,10.00837 A 230.30508,230.30508 0 0 0 17.050219,247.14011 230.30508,230.30508 0 0 0 247.3553,477.44519 230.30508,230.30508 0 0 0 440.84306,371.60377 c -1.51353,-1.94539 -2.92982,-3.99038 -4.54313,-5.82511 -9.34182,-12.00615 -21.70523,-21.31093 -34.79315,-28.87807 -24.92558,-14.25393 -54.48386,-18.78863 -82.85586,-16.50815 -23.54421,2.71587 -47.70324,-7.53524 -63.22144,-25.21219 -7.73568,-8.66281 -13.43176,-16.7973 -16.62066,-27.95593 -2.93593,-12.46987 -3.64224,-24.53682 -0.24735,-36.99724 2.78148,-12.17946 9.27894,-23.27993 17.63274,-32.47659 5.86732,-6.21858 12.57251,-11.79692 20.33162,-15.49619 -7.29075,-12.33399 -12.43521,-25.82791 -16.48571,-39.53867 -2.15399,-7.32358 -3.08797,-14.92077 -4.85799,-22.33326 -0.24815,-1.2129 -1.63863,-1.50158 -2.51896,-2.09163 -6.81322,-3.41369 -13.65442,-6.75565 -20.66898,-9.73856 -4.69199,-2.13528 -9.80425,-3.07216 -14.52902,-5.12786 -7.72637,-2.28037 -15.35021,-4.901354 -23.1655,-6.882214 -4.67793,-1.20334 -9.08079,-3.29843 -13.78682,-4.40815 -9.72111,-2.47244 -19.35862,-5.44545 -29.32791,-6.747249 -19.00531,-4.087915 -38.21675,-7.004268 -57.48631,-9.423508 z m 163.01282,64.368431 c 0.79605,3.79762 1.89745,7.51889 3.05874,11.22288 -60.55564,3.09991 -119.79647,19.20088 -175.697593,42.19259 -8.597289,3.40425 -16.875273,7.53477 -25.369544,11.17785 7.529652,-4.73875 15.543283,-8.60512 23.480323,-12.59481 22.350154,-11.182 45.548334,-20.65997 69.181484,-28.76556 34.18783,-11.318 69.43558,-19.85679 105.34659,-23.23295 z m 71.20566,11.80763 c 14.8954,3.61026 29.09,9.77564 42.66491,16.82309 16.10822,8.42399 31.01164,19.15505 43.99186,31.89185 2.56608,2.68777 5.86186,4.83007 7.66935,8.16408 -1.60614,-0.24873 -3.67521,0.78304 -4.92547,-0.58497 -4.75286,-5.97504 -10.24917,-11.34115 -16.12586,-16.21579 -16.24869,-13.36425 -34.71905,-23.84175 -53.95526,-32.25169 -6.29812,-2.96886 -12.97927,-4.97505 -19.31953,-7.8268 z m 66.03278,172.52637 c 15.94432,8.18988 29.8852,19.95605 41.31547,33.71367 2.79603,3.06191 5.32736,6.32338 7.75931,9.67097 a 230.30508,230.30508 0 0 0 12.14499,-22.28835 c -8.13258,-4.82949 -16.77755,-8.77773 -25.68442,-11.96504 -11.54266,-4.03172 -23.37927,-7.56724 -35.53535,-9.13125 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:11.5153" />
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg6"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata12">
<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="defs10">
<style
id="current-color-scheme"
type="text/css">
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
</style>
</defs>
<g
transform="matrix(31.476997,0,0,31.476997,-2.680388,-2.7820803)"
id="g7"
style="fill:#cccccc">
<path
d="M 2,1 C 1.446,1 1,1.446 1,2 v 12 c 0,0.554 0.446,1 1,1 H 5 V 5 h 5 V 1 Z m 9,0 v 14 h 3 c 0.554,0 1,-0.446 1,-1 V 2 C 15,1.446 14.554,1 14,1 Z M 6,6 v 9 h 4 V 6 Z"
style="color:#dfdfdf;fill:#cccccc"
class="ColorScheme-Text"
id="path5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg6"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10">
<style
id="current-color-scheme"
type="text/css">
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
</style>
</defs>
<g
transform="matrix(31.476997,0,0,31.476997,-2.680388,-2.7820803)"
id="g7"
style="fill:#32c05c;fill-opacity:1">
<path
d="M 2,1 C 1.446,1 1,1.446 1,2 v 12 c 0,0.554 0.446,1 1,1 H 5 V 5 h 5 V 1 Z m 9,0 v 14 h 3 c 0.554,0 1,-0.446 1,-1 V 2 C 15,1.446 14.554,1 14,1 Z M 6,6 v 9 h 4 V 6 Z"
style="color:#dfdfdf;fill:#32c05c;fill-opacity:1"
class="ColorScheme-Text"
id="path5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
id="rect4"
d="M 46.379661,24.40678 C 33.981329,24.40678 24,34.388109 24,46.786441 V 449.62034 C 24,462.01867 33.981329,472 46.379661,472 H 449.21356 c 12.39833,0 22.37966,-9.98133 22.37966,-22.37966 V 46.786441 c 0,-12.398332 -9.98133,-22.379661 -22.37966,-22.379661 z m 123.088139,111.89831 92.57837,104.16154 97.64874,-104.16154 11.18984,11.18983 -98.28256,104.83908 54.83455,61.69704 21.06834,-21.06833 78.32882,89.51865 H 68.759322 L 180.65763,248.20339 216.95901,288.54799 240.344,263.61123 147.08814,158.68475 Z m 81.43224,139.17351 -23.31944,24.87119 53.7855,59.75191 23.69098,-23.691 z"
style="fill:#cccccc;stroke-width:11.18983078" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1"
id="svg6"
xmlns:xlink="http://www.w3.org/1999/xlink"
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/">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<g
id="g946"
transform="matrix(0.97173996,0,0,0.97173996,4.043873,36.112138)">
<g
id="layer7"
style="display:none"
transform="translate(-23.75651,-24.84972)">
<rect
transform="translate(-132.5822,958.04022)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5389"
width="1543.4283"
height="483.7439"
x="132.5822"
y="-957.77832" />
</g>
<g
id="layer6"
style="display:none"
transform="translate(-156.33871,933.1905)">
<rect
y="-958.02759"
x="132.65129"
height="484.30399"
width="550.41602"
id="rect5379"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5c201e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c24a46;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5372"
width="501.94415"
height="434.30405"
x="156.12303"
y="-933.02759" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d98d8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5381"
width="24.939611"
height="24.939611"
x="658.02826"
y="-958.04022" />
</g>
<g
id="layer3"
style="display:inline;opacity:1"
transform="translate(37.235605,912.8581)">
<g
id="g2072"
transform="matrix(0.99894325,0,0,0.99894325,-36.551621,-913.90743)"
style="fill:#cccccc;fill-opacity:1">
<g
style="display:none;fill:#cccccc;fill-opacity:1"
transform="matrix(0.09048806,0,0,0.09048806,-14.15991,84.454917)"
id="layer1-3">
<rect
y="-2102.4253"
x="-1045.6049"
height="7145.4614"
width="7947.0356"
id="rect995"
style="opacity:1;fill:#cccccc;fill-opacity:1;stroke-width:10.3605" />
</g>
<g
transform="translate(-156.48372,537.56136)"
style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1"
id="layer3-6">
<g
style="fill:#cccccc;stroke-width:11.0512;fill-opacity:1"
transform="matrix(0.09048806,0,0,0.09048806,142.32381,-453.10644)"
id="g955">
<g
transform="matrix(11.047619,0,0,11.047619,-1572.2888,9377.7107)"
id="g869"
style="fill:#cccccc;fill-opacity:1">
<g
transform="rotate(-60,226.35754,-449.37199)"
id="g932"
style="fill:#cccccc;stroke-width:11.0512;fill-opacity:1">
<path
id="path3336-6-7"
d="m 449.71876,-420.51322 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.27523 -22.15297,-38.55047 -33.22946,-57.8257 9.35083,-16.29387 18.70167,-32.58775 28.0525,-48.88162 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<path
id="path4260-0-5"
d="m 309.54892,-710.38827 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29391 18.70167,-32.58781 28.0525,-48.88172 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<use
x="0"
y="0"
xlink:href="#path3336-6-7"
id="use3439-6-3"
transform="rotate(60,728.23563,-692.24036)"
width="100%"
height="100%"
style="fill:#cccccc;fill-opacity:1;stroke-width:11.0512" />
<use
x="0"
y="0"
xlink:href="#path3336-6-7"
id="use3449-5-5"
transform="rotate(180,477.5036,-570.81898)"
width="100%"
height="100%"
style="fill:#cccccc;fill-opacity:1;stroke-width:11.0512" />
<use
style="display:inline;fill:#cccccc;fill-opacity:1;stroke-width:11.0512"
x="0"
y="0"
xlink:href="#path4260-0-5"
id="use4354-5-6"
transform="rotate(120,407.33916,-716.08356)"
width="100%"
height="100%" />
<use
style="display:inline;fill:#cccccc;fill-opacity:1;stroke-width:11.0512"
x="0"
y="0"
xlink:href="#path4260-0-5"
id="use4362-2-2"
transform="rotate(-120,407.28823,-715.86995)"
width="100%"
height="100%" />
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -0,0 +1,277 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1"
id="svg6"
xmlns:xlink="http://www.w3.org/1999/xlink"
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/">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10">
<linearGradient
id="linearGradient5562">
<stop
style="stop-color:#699ad7;stop-opacity:1"
offset="0"
id="stop5564" />
<stop
id="stop5566"
offset="0.24345198"
style="stop-color:#7eb1dd;stop-opacity:1" />
<stop
style="stop-color:#7ebae4;stop-opacity:1"
offset="1"
id="stop5568" />
</linearGradient>
<linearGradient
id="linearGradient5053">
<stop
style="stop-color:#415e9a;stop-opacity:1"
offset="0"
id="stop5055" />
<stop
id="stop5057"
offset="0.23168644"
style="stop-color:#4a6baf;stop-opacity:1" />
<stop
style="stop-color:#5277c3;stop-opacity:1"
offset="1"
id="stop5059" />
</linearGradient>
<linearGradient
id="linearGradient5960">
<stop
id="stop5962"
offset="0"
style="stop-color:#637ddf;stop-opacity:1" />
<stop
style="stop-color:#649afa;stop-opacity:1"
offset="0.23168644"
id="stop5964" />
<stop
id="stop5966"
offset="1"
style="stop-color:#719efa;stop-opacity:1" />
</linearGradient>
<linearGradient
y2="515.97058"
x2="282.26105"
y1="338.62445"
x1="213.95642"
gradientTransform="translate(983.36076,293.12113)"
gradientUnits="userSpaceOnUse"
id="linearGradient5855"
xlink:href="#linearGradient5960" />
<linearGradient
xlink:href="#linearGradient5562"
id="linearGradient4328"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(70.650339,-1055.1511)"
x1="200.59668"
y1="351.41116"
x2="290.08701"
y2="506.18814" />
<linearGradient
xlink:href="#linearGradient5053"
id="linearGradient4330"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(864.69589,-1491.3405)"
x1="-584.19934"
y1="782.33563"
x2="-496.29703"
y2="937.71399" />
</defs>
<g
id="g946"
transform="matrix(0.97173996,0,0,0.97173996,4.043873,36.112138)">
<g
id="layer7"
style="display:none"
transform="translate(-23.75651,-24.84972)">
<rect
transform="translate(-132.5822,958.04022)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5389"
width="1543.4283"
height="483.7439"
x="132.5822"
y="-957.77832" />
</g>
<g
id="layer6"
style="display:none"
transform="translate(-156.33871,933.1905)">
<rect
y="-958.02759"
x="132.65129"
height="484.30399"
width="550.41602"
id="rect5379"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5c201e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c24a46;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5372"
width="501.94415"
height="434.30405"
x="156.12303"
y="-933.02759" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d98d8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5381"
width="24.939611"
height="24.939611"
x="658.02826"
y="-958.04022" />
</g>
<g
id="layer1"
style="display:inline"
transform="translate(-156.33871,933.1905)">
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 309.40365,-710.2521 c 40.73228,70.55837 81.46455,141.11673 122.19683,211.6751 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83007 31.20698,-53.66013 46.81047,-80.4902 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29387 18.70167,-32.58773 28.0525,-48.8816 z"
id="path4861" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7ebae4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 353.50926,-797.4433 c -40.73919,70.55437 -81.47837,141.10873 -122.21756,211.6631 -9.51159,-16.12333 -19.02318,-32.24667 -28.53477,-48.37 10.97946,-18.89583 21.95893,-37.79167 32.93839,-56.6875 -21.80507,-0.0573 -43.61014,-0.1146 -65.41521,-0.1719 -4.64713,-8.0566 -9.29427,-16.1132 -13.9414,-24.1698 4.74546,-8.24033 9.49091,-16.48067 14.23637,-24.721 31.03726,0.098 62.07451,0.19593 93.11177,0.2939 11.15457,-19.2301 22.30914,-38.4602 33.46371,-57.6903 18.78623,-0.0488 37.57247,-0.0977 56.3587,-0.1465 z"
id="use4863" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7ebae4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 362.88537,-628.243 c 81.47146,0.004 162.94293,0.008 244.41439,0.012 -9.20743,16.29893 -18.41486,32.59787 -27.62229,48.8968 -21.854,-0.0606 -43.70799,-0.12113 -65.56199,-0.1817 10.85292,18.91237 21.70584,37.82473 32.55876,56.7371 -4.65366,8.05283 -9.30732,16.10567 -13.96098,24.1585 -9.50907,0.0107 -19.01815,0.0213 -28.52722,0.032 -15.43377,-26.92803 -30.86753,-53.85607 -46.3013,-80.7841 -22.23106,-0.0451 -44.46211,-0.0902 -66.69317,-0.1353 -9.4354,-16.2451 -18.8708,-32.4902 -28.3062,-48.7353 z"
id="use4865" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7ebae4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 505.14318,-720.9886 c -40.73228,-70.55837 -81.46455,-141.11673 -122.19683,-211.6751 18.71902,-0.1756 37.43804,-0.3512 56.15706,-0.5268 10.87453,18.9564 21.74907,37.9128 32.6236,56.8692 10.95215,-18.8551 21.9043,-37.7102 32.85645,-56.5653 9.30079,0.004 18.60158,0.007 27.90237,0.011 4.76362,8.22987 9.52724,16.45973 14.29086,24.6896 -15.60349,26.83007 -31.20698,53.66013 -46.81047,80.4902 11.07649,19.2752 22.15297,38.5504 33.22946,57.8256 -9.35083,16.29387 -18.70167,32.58773 -28.0525,48.8816 z"
id="use4867" />
<path
id="path4873"
d="m 309.40365,-710.2521 c 40.73228,70.55837 81.46455,141.11673 122.19683,211.6751 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83007 31.20698,-53.66013 46.81047,-80.4902 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29387 18.70167,-32.58773 28.0525,-48.8816 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
id="use4875"
d="m 451.3364,-803.53264 c -81.47147,-0.004 -162.94293,-0.008 -244.4144,-0.012 9.20743,-16.29895 18.41486,-32.5979 27.62229,-48.89685 21.854,0.0606 43.70799,0.12117 65.56199,0.18175 -10.85292,-18.91239 -21.70583,-37.82478 -32.55875,-56.73717 4.65366,-8.05284 9.30731,-16.10567 13.96097,-24.15851 9.50907,-0.0105 19.01815,-0.021 28.52722,-0.0315 15.43377,26.92805 30.86753,53.85609 46.3013,80.78414 22.23106,0.0451 44.46211,0.0902 66.69317,0.13524 9.4354,16.24497 18.87081,32.48993 28.30621,48.7349 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
id="use4877"
d="m 460.87178,-633.8425 c 40.73919,-70.55435 81.47838,-141.10869 122.21757,-211.66304 9.51159,16.12334 19.02318,32.24669 28.53477,48.37003 -10.97946,18.89584 -21.95893,37.79167 -32.93839,56.68751 21.80507,0.0573 43.61013,0.11453 65.4152,0.1718 4.64713,8.0566 9.29427,16.1132 13.9414,24.1698 -4.74545,8.24037 -9.49091,16.48073 -14.23636,24.7211 -31.03726,-0.098 -62.07451,-0.196 -93.11177,-0.294 -11.15457,19.23013 -22.30914,38.46027 -33.46371,57.6904 -18.78624,0.0488 -37.57247,0.0976 -56.35871,0.1464 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<g
id="layer2"
style="display:none"
transform="translate(72.039038,-1799.4476)">
<path
d="M 460.60629,594.72881 209.74183,594.7288 84.309616,377.4738 209.74185,160.21882 l 250.86446,1e-5 125.43222,217.255 z"
id="path6032"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.236;fill:#4e4d52;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
transform="translate(0,-308.26772)"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#4e4d52;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path5875"
d="m 385.59154,773.06721 -100.83495,0 -50.41747,-87.32564 50.41748,-87.32563 100.83495,10e-6 50.41748,87.32563 z" />
<path
id="path5851"
d="m 1216.5591,630.26623 c 41.0182,76.04675 82.0363,152.09355 123.0545,228.14035 -14.2269,-0.4205 -28.4538,-0.8411 -42.6807,-1.2616 -14.4941,-26.5908 -28.9882,-53.1817 -43.4823,-79.7725 -13.2169,26.7756 -26.4337,53.5511 -39.6506,80.3267 -10.8958,-6.5995 -21.7917,-13.1989 -32.6875,-19.7984 17.8246,-33.4283 35.6491,-66.8565 53.4737,-100.2848 -12.3719,-24.6298 -24.7438,-49.2597 -37.1157,-73.88955 6.3629,-11.1534 12.7257,-22.3068 19.0886,-33.4602 z"
style="fill:url(#linearGradient5855);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.415;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c53a3a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5884"
width="48.834862"
height="226.22897"
x="-34.74221"
y="446.17056"
transform="rotate(-30)" />
<path
transform="translate(0,-308.26772)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.509;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path3428"
d="m 251.98568,878.63831 -14.02447,24.29109 h -28.04894 l -14.02447,-24.29109 14.02447,-24.2911 h 28.04894 z" />
<use
x="0"
y="0"
xlink:href="#rect5884"
id="use4252"
transform="rotate(60,268.29786,489.4515)"
width="100%"
height="100%" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:0.650794;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect4254"
width="5.3947482"
height="115.12564"
x="545.71014"
y="467.07007"
transform="rotate(30,575.23539,-154.13386)" />
</g>
</g>
<g
id="layer3"
style="display:inline;opacity:1"
transform="translate(-156.33871,933.1905)">
<path
id="path3336-6"
d="m 309.54892,-710.38827 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.27523 -22.15297,-38.55047 -33.22946,-57.8257 9.35083,-16.29387 18.70167,-32.58775 28.0525,-48.88162 z"
style="opacity:1;fill:url(#linearGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<use
height="100%"
width="100%"
transform="rotate(60,407.11155,-715.78724)"
id="use3439-6"
xlink:href="#path3336-6"
y="0"
x="0" />
<use
height="100%"
width="100%"
transform="rotate(-60,407.31177,-715.70016)"
id="use3445-0"
xlink:href="#path3336-6"
y="0"
x="0" />
<use
height="100%"
width="100%"
transform="rotate(180,407.41868,-715.7565)"
id="use3449-5"
xlink:href="#path3336-6"
y="0"
x="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4330);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 309.54892,-710.38827 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -10.54113,-2.26829 -26.58606,6.01638 -31.9377,-7.5219 -4.39393,-6.91787 -12.57856,-15.53043 -6.85074,-23.97221 8.26178,-12.05394 14.90093,-25.28023 22.52611,-37.79439 6.95986,-11.9674 13.91971,-23.9348 20.87957,-35.9022 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29391 18.70167,-32.58781 28.0525,-48.88172 z"
id="path4260-0" />
<use
height="100%"
width="100%"
transform="rotate(120,407.33916,-716.08356)"
id="use4354-5"
xlink:href="#path4260-0"
y="0"
x="0"
style="display:inline" />
<use
height="100%"
width="100%"
transform="rotate(-120,407.28823,-715.86995)"
id="use4362-2"
xlink:href="#path4260-0"
y="0"
x="0"
style="display:inline" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
id="svg2951"
version="1.1"
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/">
<metadata
id="metadata2956">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(-373.71429,-334.64487)">
<path
d="m 508.01955,445.12312 c 0,7.39385 -3.88782,13.87954 -9.73369,17.5222 -3.16289,1.97619 -6.90102,3.11647 -10.90497,3.11647 -11.39765,0 -20.63865,-9.24088 -20.63865,-20.63867 0,-11.39765 9.241,-20.63865 20.63865,-20.63865 4.00395,0 7.74208,1.14028 10.90497,3.11648 5.84587,3.64264 9.73369,10.12836 9.73369,17.52217 z"
id="path1719"
style="fill:#cccccc;fill-opacity:1;stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
<path
d="m 441.91906,533.16773 c -0.2841,0.48792 -0.57737,0.96533 -0.89038,1.43446 -0.33275,0.50767 -0.68127,1.00612 -1.04691,1.49366 0.31172,-0.53924 0.64314,-1.06531 0.98773,-1.58139 0.30511,-0.45899 0.62209,-0.90877 0.94956,-1.34673 z"
id="path1721"
style="stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
<path
d="m 441.91906,533.16773 c -0.2841,0.48792 -0.57737,0.96533 -0.89038,1.43446 -0.0263,-0.0263 -0.0396,-0.0658 -0.0658,-0.0921 0.30513,-0.45899 0.62209,-0.90745 0.94957,-1.3466 z"
id="path1723"
style="stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
<path
d="m 441.91906,533.16773 c -0.2841,0.48792 -0.57737,0.96533 -0.89038,1.43446 -0.33275,0.50767 -0.68127,1.00612 -1.04691,1.49366 0.31172,-0.53924 0.64314,-1.06531 0.98773,-1.58139 0.30511,-0.45899 0.62209,-0.90877 0.94956,-1.34673 z"
id="path1725"
style="stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
<path
d="m 590.57429,445.12312 v 72.23544 c 0,0.0395 0,0.092 -0.003,0.13156 -0.0658,17.03716 -13.90281,30.82896 -30.95548,30.82896 h -4.01683 c -15.20038,-1.97094 -26.94129,-14.96561 -26.94129,-30.70007 v -63.647 l 30.95812,-8.84634 -31.97449,-9.13514 c -4.15611,-18.40203 -20.60262,-32.14217 -40.26093,-32.14217 -22.79805,0 -41.27731,18.47926 -41.27731,41.27731 v 20.63866 c 0,11.39777 9.24088,20.63866 20.63865,20.63866 17.0966,0 30.95798,13.86151 30.95798,30.95811 v 34.31183 c 0,-6.34642 -1.90912,-12.2466 -5.18551,-17.15591 -5.54916,-8.31998 -15.01979,-13.8022 -25.77247,-13.8022 -10.1594,0 -19.17853,4.89394 -24.82317,12.45546 -0.32748,0.43794 -0.64445,0.88775 -0.94957,1.34674 -0.34591,0.51556 -0.67601,1.04163 -0.98771,1.58137 -4.88353,6.55791 -12.30828,11.11661 -20.81923,12.22069 h -4.01683 c -17.05267,0 -30.88828,-13.7918 -30.95536,-30.82896 -0.002,-0.0395 -0.002,-0.0919 -0.002,-0.13156 V 372.8877 c -7e-4,-17.09646 13.86081,-30.95797 30.95728,-30.95797 9.85506,0 18.63681,4.60499 24.30474,11.78207 14.32197,-7.52534 30.62904,-11.78207 47.93202,-11.78207 56.99112,0 103.19339,46.20227 103.19339,103.19339 z"
id="path1727"
style="fill:#cccccc;fill-opacity:1;stroke-width:0.25799202;stroke-dasharray:none"
transform="matrix(2.2016185,0,0,2.2016185,-450.94333,-398.52814)" />
<line
fill="none"
x1="497.7002"
y1="552.35913"
x2="497.7002"
y2="551.67023"
id="line1729"
style="stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 149 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
style="fill:#cccccc;stroke-width:12.04524803"
id="path2"
d="M 247.78132,5.5879095 C 114.74156,5.5879095 6.8763666,113.44105 6.8763666,246.49286 c 0,133.0518 107.8651934,240.90495 240.9049534,240.90495 133.03977,0 240.90496,-107.85315 240.90496,-240.90495 0,-133.05181 -107.86519,-240.9049505 -240.90496,-240.9049505 z m 1.12924,45.4049215 h 0.0241 c 114.62442,0 207.6388,92.931129 207.6388,207.545279 0,114.62257 -93.01679,207.54528 -207.63936,207.54528 -61.89331,0 -117.43815,-27.13687 -155.458982,-70.10709 15.633532,-12.13317 41.800992,-9.17715 74.012402,-5.50515 15.43719,1.75619 33.02807,3.75896 51.1923,4.16416 50.74422,0.29511 105.34254,-8.96649 139.03792,-23.69059 21.78624,-9.55549 35.74434,-15.82818 44.4639,-23.76118 3.14393,-2.57889 4.78715,-6.89266 6.46962,-11.36289 l 1.15273,-3.01131 c 1.4123,-3.61092 3.4436,-11.38445 4.35229,-15.62124 0.40472,-1.85448 0.60841,-3.86182 -0.70573,-4.89338 l -4.70517,0.89376 c -14.78675,8.86651 -51.73275,25.75527 -86.33997,26.44305 -42.87986,0.89617 -129.32229,-43.17378 -138.33213,-47.82807 l -0.894,-1.05877 c -2.16212,-5.15778 -15.09352,-35.86316 -17.83262,-42.32303 62.22094,40.9683 113.78924,63.64191 153.31813,67.16635 43.95311,3.90628 78.241,-20.09424 92.90368,-30.34836 2.86146,-1.95266 5.05552,-3.47963 5.95205,-3.81123 l 0.98806,-1.59973 c -2.44522,-15.45406 -25.51847,-90.21253 -42.88771,-108.17199 -4.81833,-4.92591 -8.63982,-9.70305 -16.42105,-14.28025 C 296.34772,120.74686 147.12517,98.679603 140.12689,97.667803 l -1.15274,0.35293 -0.44699,0.98771 c 0,0 -0.55023,30.979407 -0.61167,34.418327 -5.12043,-1.69429 -21.01428,-6.88916 -43.758119,-13.1274 C 123.83691,83.579442 169.32043,50.992108 248.91061,50.992108 Z M 303.7729,160.83513 c 1.05867,-0.0121 2.1334,-0.0361 3.19951,0 35.20947,1.26475 62.86464,30.92352 61.66133,66.10769 -0.62635,17.02114 -7.80397,32.75224 -20.23225,44.36987 -12.46442,11.6792 -28.66145,17.77373 -45.78136,17.22085 -35.14803,-1.31413 -62.8032,-30.97291 -61.66131,-66.10769 0.60226,-17.04523 7.80107,-32.88353 20.30283,-44.46383 11.67426,-10.94936 26.62479,-16.8884 42.51125,-17.12689 z m -1.69387,18.82069 c -10.2541,0.62395 -19.92649,4.77763 -27.50174,11.8806 -8.63379,8.10524 -13.73489,19.09617 -14.11553,30.98363 -0.81064,24.56146 18.42088,45.22472 42.95826,46.13413 11.92359,0.36859 23.24182,-3.79967 31.94813,-11.88047 8.68221,-8.14258 13.72341,-19.23842 14.092,-31.0777 0.82269,-24.5988 -18.4794,-45.18016 -43.02882,-46.04019 -1.48602,-0.0602 -2.88746,-0.0843 -4.3523,0 z m 11.7159,22.27902 c 10.90577,0 19.69115,5.92686 19.69115,13.22158 0,7.25847 -8.78527,13.22147 -19.69115,13.22147 -10.94238,0 -19.78526,-5.97589 -19.78526,-13.22147 0,-7.29532 8.84336,-13.22158 19.78526,-13.22158 z" />
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<path
style="fill:#72b925;stroke-width:12.04524803;fill-opacity:1"
id="path2"
d="M 247.78132,5.5879095 C 114.74156,5.5879095 6.8763666,113.44105 6.8763666,246.49286 c 0,133.0518 107.8651934,240.90495 240.9049534,240.90495 133.03977,0 240.90496,-107.85315 240.90496,-240.90495 0,-133.05181 -107.86519,-240.9049505 -240.90496,-240.9049505 z m 1.12924,45.4049215 h 0.0241 c 114.62442,0 207.6388,92.931129 207.6388,207.545279 0,114.62257 -93.01679,207.54528 -207.63936,207.54528 -61.89331,0 -117.43815,-27.13687 -155.458982,-70.10709 15.633532,-12.13317 41.800992,-9.17715 74.012402,-5.50515 15.43719,1.75619 33.02807,3.75896 51.1923,4.16416 50.74422,0.29511 105.34254,-8.96649 139.03792,-23.69059 21.78624,-9.55549 35.74434,-15.82818 44.4639,-23.76118 3.14393,-2.57889 4.78715,-6.89266 6.46962,-11.36289 l 1.15273,-3.01131 c 1.4123,-3.61092 3.4436,-11.38445 4.35229,-15.62124 0.40472,-1.85448 0.60841,-3.86182 -0.70573,-4.89338 l -4.70517,0.89376 c -14.78675,8.86651 -51.73275,25.75527 -86.33997,26.44305 -42.87986,0.89617 -129.32229,-43.17378 -138.33213,-47.82807 l -0.894,-1.05877 c -2.16212,-5.15778 -15.09352,-35.86316 -17.83262,-42.32303 62.22094,40.9683 113.78924,63.64191 153.31813,67.16635 43.95311,3.90628 78.241,-20.09424 92.90368,-30.34836 2.86146,-1.95266 5.05552,-3.47963 5.95205,-3.81123 l 0.98806,-1.59973 c -2.44522,-15.45406 -25.51847,-90.21253 -42.88771,-108.17199 -4.81833,-4.92591 -8.63982,-9.70305 -16.42105,-14.28025 C 296.34772,120.74686 147.12517,98.679603 140.12689,97.667803 l -1.15274,0.35293 -0.44699,0.98771 c 0,0 -0.55023,30.979407 -0.61167,34.418327 -5.12043,-1.69429 -21.01428,-6.88916 -43.758119,-13.1274 C 123.83691,83.579442 169.32043,50.992108 248.91061,50.992108 Z M 303.7729,160.83513 c 1.05867,-0.0121 2.1334,-0.0361 3.19951,0 35.20947,1.26475 62.86464,30.92352 61.66133,66.10769 -0.62635,17.02114 -7.80397,32.75224 -20.23225,44.36987 -12.46442,11.6792 -28.66145,17.77373 -45.78136,17.22085 -35.14803,-1.31413 -62.8032,-30.97291 -61.66131,-66.10769 0.60226,-17.04523 7.80107,-32.88353 20.30283,-44.46383 11.67426,-10.94936 26.62479,-16.8884 42.51125,-17.12689 z m -1.69387,18.82069 c -10.2541,0.62395 -19.92649,4.77763 -27.50174,11.8806 -8.63379,8.10524 -13.73489,19.09617 -14.11553,30.98363 -0.81064,24.56146 18.42088,45.22472 42.95826,46.13413 11.92359,0.36859 23.24182,-3.79967 31.94813,-11.88047 8.68221,-8.14258 13.72341,-19.23842 14.092,-31.0777 0.82269,-24.5988 -18.4794,-45.18016 -43.02882,-46.04019 -1.48602,-0.0602 -2.88746,-0.0843 -4.3523,0 z m 11.7159,22.27902 c 10.90577,0 19.69115,5.92686 19.69115,13.22158 0,7.25847 -8.78527,13.22147 -19.69115,13.22147 -10.94238,0 -19.78526,-5.97589 -19.78526,-13.22147 0,-7.29532 8.84336,-13.22158 19.78526,-13.22158 z" />
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1"
id="svg6"
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/">
<metadata
id="metadata12">
<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="defs10" />
<path
id="circle2-5"
d="M 248.06491,3.543497 A 245.38458,245.38578 0 0 0 2.6937594,248.9162 245.38458,245.38578 0 0 0 248.06491,494.28925 245.38458,245.38578 0 0 0 493.43951,248.9162 245.38458,245.38578 0 0 0 248.06491,3.543497 Z m -54.45702,61.376614 c 21.91828,-0.488223 31.10504,4.366142 43.85029,12.154644 19.3706,12.169427 33.10949,31.144715 38.20828,53.050015 5.09536,21.90533 3.56537,38.99994 -2.54424,51.1697 v 0.93863 c -12.23641,24.82604 -32.62812,44.79155 -61.17518,54.52743 l 24.51064,60.83956 c 4.58651,11.19608 8.67104,22.86664 5.10223,33.57587 -3.5688,10.70924 -19.9035,14.1677 -31.62764,2.4858 C 187.50174,310.78275 112.05818,166.68704 106.45054,155.97781 100.8429,145.26858 94.698919,136.46855 94.698919,125.75933 95.214647,109.69548 121.23807,93.139288 133.98333,84.863939 146.72858,76.5886 171.69307,65.406611 193.61478,64.919764 Z m -21.55725,44.521639 c -13.70794,2.41703 -5.53888,32.17548 -2.40672,40.69425 3.56881,9.73554 13.26786,30.13563 23.97429,40.35835 2.54424,2.43423 5.06442,4.4153 8.12437,4.90182 3.05996,0.48821 9.20395,-2.41705 11.75164,-6.31216 2.54424,-3.89408 3.09434,-6.84987 3.09434,-10.74429 a 65.251047,62.308329 0 0 0 -1.06583,-23.36895 c -4.58996,-15.09016 -14.25117,-29.68248 -26.99643,-39.41802 -2.54423,-1.946 -5.63171,-4.3988 -9.20052,-5.37214 -2.92244,-0.91112 -5.29133,-1.08303 -7.25108,-0.73921 z m 198.70157,17.32531 a 45.993002,48.02967 0 0 1 24.98167,12.82612 c 6.13023,5.87034 6.67691,12.27497 4.6312,20.27974 -2.02851,8.0051 -9.2177,25.06225 -14.8391,37.33653 l -14.30273,28.27076 c -27.59812,51.23192 -33.22982,56.58792 -40.89692,53.38594 -9.19708,-3.73556 -6.13367,-54.94309 2.54424,-117.38142 2.54424,-17.07743 6.68378,-25.61338 11.28403,-29.88256 4.59683,-4.26954 18.41479,-6.43592 26.59073,-4.83511 z m -48.14799,184.13052 c 13.54291,-3.73488 19.65597,9.58118 16.85385,19.54123 -0.92829,3.73488 -3.30063,7.05754 -7.04821,9.13248 -3.73728,2.07323 -12.59399,2.05604 -17.73059,-1.67783 -5.13318,-3.73489 -6.0993,-9.92773 -4.69998,-14.90759 1.40964,-4.97986 6.08898,-10.4273 12.62493,-12.08725 z M 145.19173,371.60272 H 351.0103 c 10.96086,0 19.74191,6.88152 19.74191,15.37793 0,8.49643 -8.78105,15.31055 -19.74191,15.31055 H 145.19173 c -10.96086,0 -19.81068,-6.81412 -19.81068,-15.31055 0,-8.49641 8.84982,-15.37793 19.81068,-15.37793 z"
style="fill:#cccccc;stroke-width:30.6731472" />
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1"
id="svg6"
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/">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<path
id="circle2-5"
d="M 248.06491,3.543497 A 245.38458,245.38578 0 0 0 2.6937594,248.9162 245.38458,245.38578 0 0 0 248.06491,494.28925 245.38458,245.38578 0 0 0 493.43951,248.9162 245.38458,245.38578 0 0 0 248.06491,3.543497 Z m -54.45702,61.376614 c 21.91828,-0.488223 31.10504,4.366142 43.85029,12.154644 19.3706,12.169427 33.10949,31.144715 38.20828,53.050015 5.09536,21.90533 3.56537,38.99994 -2.54424,51.1697 v 0.93863 c -12.23641,24.82604 -32.62812,44.79155 -61.17518,54.52743 l 24.51064,60.83956 c 4.58651,11.19608 8.67104,22.86664 5.10223,33.57587 -3.5688,10.70924 -19.9035,14.1677 -31.62764,2.4858 C 187.50174,310.78275 112.05818,166.68704 106.45054,155.97781 100.8429,145.26858 94.698919,136.46855 94.698919,125.75933 95.214647,109.69548 121.23807,93.139288 133.98333,84.863939 146.72858,76.5886 171.69307,65.406611 193.61478,64.919764 Z m -21.55725,44.521639 c -13.70794,2.41703 -5.53888,32.17548 -2.40672,40.69425 3.56881,9.73554 13.26786,30.13563 23.97429,40.35835 2.54424,2.43423 5.06442,4.4153 8.12437,4.90182 3.05996,0.48821 9.20395,-2.41705 11.75164,-6.31216 2.54424,-3.89408 3.09434,-6.84987 3.09434,-10.74429 a 65.251047,62.308329 0 0 0 -1.06583,-23.36895 c -4.58996,-15.09016 -14.25117,-29.68248 -26.99643,-39.41802 -2.54423,-1.946 -5.63171,-4.3988 -9.20052,-5.37214 -2.92244,-0.91112 -5.29133,-1.08303 -7.25108,-0.73921 z m 198.70157,17.32531 a 45.993002,48.02967 0 0 1 24.98167,12.82612 c 6.13023,5.87034 6.67691,12.27497 4.6312,20.27974 -2.02851,8.0051 -9.2177,25.06225 -14.8391,37.33653 l -14.30273,28.27076 c -27.59812,51.23192 -33.22982,56.58792 -40.89692,53.38594 -9.19708,-3.73556 -6.13367,-54.94309 2.54424,-117.38142 2.54424,-17.07743 6.68378,-25.61338 11.28403,-29.88256 4.59683,-4.26954 18.41479,-6.43592 26.59073,-4.83511 z m -48.14799,184.13052 c 13.54291,-3.73488 19.65597,9.58118 16.85385,19.54123 -0.92829,3.73488 -3.30063,7.05754 -7.04821,9.13248 -3.73728,2.07323 -12.59399,2.05604 -17.73059,-1.67783 -5.13318,-3.73489 -6.0993,-9.92773 -4.69998,-14.90759 1.40964,-4.97986 6.08898,-10.4273 12.62493,-12.08725 z M 145.19173,371.60272 H 351.0103 c 10.96086,0 19.74191,6.88152 19.74191,15.37793 0,8.49643 -8.78105,15.31055 -19.74191,15.31055 H 145.19173 c -10.96086,0 -19.81068,-6.81412 -19.81068,-15.31055 0,-8.49641 8.84982,-15.37793 19.81068,-15.37793 z"
style="fill:#48b9c7;stroke-width:30.6731472;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
id="circle4"
d="M 248.30508,17.389831 A 230.30508,230.30508 0 0 0 18,247.69492 230.30508,230.30508 0 0 0 248.30508,478 230.30508,230.30508 0 0 0 478.61017,247.69492 230.30508,230.30508 0 0 0 248.30508,17.389831 Z M 110.12203,155.57288 H 386.48814 V 339.81695 H 110.12203 Z m 23.03051,23.03051 V 316.78644 H 363.45763 V 178.60339 Z"
style="fill:#cccccc;stroke-width:11.51525402" />
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
id="path4"
d="m 252.19068,75.20339 c -13.90839,0 -18.04156,17.89693 -34.95718,17.89693 -16.1638,0 -28.20632,-13.42784 -43.24241,-13.42784 -14.66021,0 -24.03971,9.68512 -31.18191,29.81466 0,0 -20.30613,56.65249 -22.93745,64.85343 -0.0408,0.16195 -0.81937,1.85772 -1.04077,2.38766 -0.37593,1.50352 -0.76357,3.00631 -0.38774,4.50994 0,22.17826 88.63684,95.11695 206.29433,95.11695 30.07221,0 74.52635,-6.40925 74.52635,-42.12004 0,-1.23103 -0.0251,-2.53833 -0.1024,-3.85692 l -1.50974,-6.44863 -18.03979,-77.52616 C 375.47704,129.25601 372.10308,121.41846 341.65496,106.50768 318.34903,94.57908 267.2268,75.20339 252.19068,75.20339 Z M 118.83097,176.72823 c -1.64809,3.94468 -6.709,14.95435 -7.571,18.32542 z m -8.12198,19.61109 C 70.505148,198.21386 18,205.70128 18,251.49946 18,326.79886 198.05694,420 340.8999,420 c 109.38763,0 136.82891,-49.19161 136.82891,-87.5868 0,-30.93986 -26.69651,-65.22204 -74.81204,-86.09718 l -0.69388,-2.93861 1.1836,5.53033 c 4.13493,19.92287 4.12221,21.79585 4.12221,24.42717 5e-5,33.83124 -38.42843,52.62965 -88.42347,52.62965 -112.77077,0 -213.06945,-66.16459 -213.06945,-109.76924 0,-6.0144 1.14397,-12.01355 3.77529,-17.65202 z"
style="fill:#cccccc;stroke-width:10.44838238" />
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
id="path4"
d="m 252.19068,75.20339 c -13.90839,0 -18.04156,17.89693 -34.95718,17.89693 -16.1638,0 -28.20632,-13.42784 -43.24241,-13.42784 -14.66021,0 -24.03971,9.68512 -31.18191,29.81466 0,0 -20.30613,56.65249 -22.93745,64.85343 -0.0408,0.16195 -0.81937,1.85772 -1.04077,2.38766 -0.37593,1.50352 -0.76357,3.00631 -0.38774,4.50994 0,22.17826 88.63684,95.11695 206.29433,95.11695 30.07221,0 74.52635,-6.40925 74.52635,-42.12004 0,-1.23103 -0.0251,-2.53833 -0.1024,-3.85692 l -1.50974,-6.44863 -18.03979,-77.52616 C 375.47704,129.25601 372.10308,121.41846 341.65496,106.50768 318.34903,94.57908 267.2268,75.20339 252.19068,75.20339 Z M 118.83097,176.72823 c -1.64809,3.94468 -6.709,14.95435 -7.571,18.32542 z m -8.12198,19.61109 C 70.505148,198.21386 18,205.70128 18,251.49946 18,326.79886 198.05694,420 340.8999,420 c 109.38763,0 136.82891,-49.19161 136.82891,-87.5868 0,-30.93986 -26.69651,-65.22204 -74.81204,-86.09718 l -0.69388,-2.93861 1.1836,5.53033 c 4.13493,19.92287 4.12221,21.79585 4.12221,24.42717 5e-5,33.83124 -38.42843,52.62965 -88.42347,52.62965 -112.77077,0 -213.06945,-66.16459 -213.06945,-109.76924 0,-6.0144 1.14397,-12.01355 3.77529,-17.65202 z"
style="fill:#ee0000;stroke-width:10.44838238;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="496"
height="496"
viewBox="0 0 131.23333 131.23334"
version="1.1"
id="svg4110"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4107" />
<g
id="layer1">
<g
id="g4141"
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
<g
id="g45"
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
<g
style="fill:none"
id="g1711"
transform="matrix(0.12660227,0,0,0.12660227,-23.031958,18.510873)">
<path
d="M 644.77435,162.61604 C 686.12179,52.775516 627.49022,-83.195048 518.74646,-127.87536 426.99057,-168.71975 309.4092,-143.4284 246.13635,-64.296413 186.85122,5.8665921 173.54302,112.13648 217.99392,193.26493 c 10.66602,20.48373 24.37379,39.40274 40.6814,55.76583 C 337.48425,170.22183 416.29318,91.4129 495.10211,12.60397 544.93592,62.664825 595.2245,112.27265 644.77435,162.61604 Z M 602.2952,236.65112 C 566.53181,200.88772 530.76841,165.12433 495.00502,129.36093 439.01346,185.35249 383.0219,241.34405 327.03034,297.33561 418.48361,341.52679 537.863,315.09365 602.2952,236.65112 Z"
clip-rule="evenodd"
fill="#10b981"
fill-rule="evenodd"
id="path1696"
style="stroke-width:2.42738;fill:#cccccc;fill-opacity:1" />
</g>
</g>
</g>
</g>
<style
id="style2"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
<style
id="style2-3"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="496"
height="496"
viewBox="0 0 131.23333 131.23334"
version="1.1"
id="svg4110"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4107" />
<g
id="layer1">
<g
id="g4141"
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
<g
id="g45"
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
<g
style="fill:none"
id="g1711"
transform="matrix(0.12660227,0,0,0.12660227,-23.031958,18.510873)">
<path
d="M 644.77435,162.61604 C 686.12179,52.775516 627.49022,-83.195048 518.74646,-127.87536 426.99057,-168.71975 309.4092,-143.4284 246.13635,-64.296413 186.85122,5.8665921 173.54302,112.13648 217.99392,193.26493 c 10.66602,20.48373 24.37379,39.40274 40.6814,55.76583 C 337.48425,170.22183 416.29318,91.4129 495.10211,12.60397 544.93592,62.664825 595.2245,112.27265 644.77435,162.61604 Z M 602.2952,236.65112 C 566.53181,200.88772 530.76841,165.12433 495.00502,129.36093 439.01346,185.35249 383.0219,241.34405 327.03034,297.33561 418.48361,341.52679 537.863,315.09365 602.2952,236.65112 Z"
clip-rule="evenodd"
fill="#10b981"
fill-rule="evenodd"
id="path1696"
style="stroke-width:2.42738" />
</g>
</g>
</g>
</g>
<style
id="style2"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
<style
id="style2-3"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,131 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg1"
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="defs1">
<linearGradient
id="linearGradient7">
<stop
style="stop-color:#565656;stop-opacity:1;"
offset="0"
id="stop7" />
<stop
style="stop-color:#0f05a7;stop-opacity:0.31204116;"
offset="1"
id="stop8" />
</linearGradient>
<linearGradient
id="linearGradient5">
<stop
style="stop-color:#cc85e6;stop-opacity:0.65096724;"
offset="0"
id="stop5" />
<stop
style="stop-color:#014aad;stop-opacity:0.65246779;"
offset="1"
id="stop6" />
</linearGradient>
<linearGradient
id="linearGradient3">
<stop
style="stop-color:#015aec;stop-opacity:1;"
offset="0"
id="stop3" />
<stop
style="stop-color:#cc85e6;stop-opacity:1;"
offset="1"
id="stop4" />
</linearGradient>
<linearGradient
xlink:href="#linearGradient3"
id="linearGradient4"
x1="0.67045456"
y1="255.86221"
x2="512.21588"
y2="255.86221"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6242032,0,0,0.64145249,90.712648,91.199083)" />
<linearGradient
xlink:href="#linearGradient5"
id="linearGradient6"
x1="4.75669"
y1="257.49164"
x2="507.10703"
y2="257.49164"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.019209,0,0,1.0192091,-4.8480529,-6.4377987)" />
<radialGradient
xlink:href="#linearGradient7"
id="radialGradient8"
cx="255.93185"
cy="257.49164"
fx="255.93185"
fy="257.49164"
r="251.17516"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.019209,0,0,1.0192091,-4.8480529,-6.4377987)" />
</defs>
<g
id="layer1">
<circle
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-miterlimit:11.6;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path4-0"
cx="256"
cy="256"
r="256" />
<circle
style="fill:url(#radialGradient8);fill-rule:nonzero;stroke:url(#linearGradient6);stroke-width:9.4603;stroke-miterlimit:11.6;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path4"
cx="256"
cy="256"
r="251.26985" />
<rect
style="fill:url(#linearGradient4);fill-opacity:1;fill-rule:nonzero;stroke-width:0.359414;stroke-miterlimit:11.6"
id="rect3"
width="319.30826"
height="328.55304"
x="91.131134"
y="91.045998"
ry="14.825512" />
<rect
style="fill:#000000;fill-opacity:1;stroke-width:0.359218;stroke-miterlimit:11.6"
id="rect1"
width="319.30801"
height="47.569534"
x="91.127487"
y="91.093666"
ry="13.760925" />
<rect
style="fill:#000000;fill-opacity:1;stroke-width:0.300732;stroke-miterlimit:11.6"
id="rect1-5"
width="319.30801"
height="33.340523"
x="91.13047"
y="106.82717"
ry="0" />
<ellipse
style="fill:#ffffff;fill-opacity:1;stroke-width:0.269808;stroke-miterlimit:11.6"
id="path1"
cx="124.1656"
cy="115.93983"
rx="17.723289"
ry="18.213058" />
<rect
style="fill:#333333;fill-opacity:1;stroke-width:0.402278;stroke-miterlimit:11.6"
id="rect2"
width="160.21243"
height="250.55461"
x="102.50688"
y="145.78816"
ry="12.663219" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg26"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata32">
<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="defs30" />
<g
transform="matrix(10.812189,0,0,10.812189,-17.248755,-5.746109)"
style="fill:#cccccc"
id="g857">
<path
style="fill:#cccccc"
d="m 24,4 c -11.045825,4e-7 -20,8.954175 -20,20 0,4.379808 1.4071008,8.430277 3.7949219,11.724609 0.1149929,0.158649 0.2394024,0.292149 0.359375,0.4375 A 20.000237,20.000237 0 0 1 7.390625,35.115234 c 6.897653,0.582772 14.792837,0.862764 21.443359,-0.103515 6.13364,-0.891195 11.594204,-2.853453 14.619141,-6.455078 A 20.000237,20.000237 0 0 1 42.59375,31.3125 c 0.138638,-0.332779 0.278623,-0.663295 0.398438,-1.025391 C 43.646425,28.309918 44,26.196572 44,24 44,12.954174 35.045826,4 24,4 Z m 18.59375,27.3125 c -0.0052,0.01251 -0.0084,0.02659 -0.01367,0.03906 6.95e-4,-5.65e-4 0.0013,-0.0014 0.002,-0.002 a 20.000237,20.000237 0 0 0 0.01172,-0.03711 z m -0.01367,0.03906 c -3.366442,2.738416 -8.35532,4.240932 -13.552734,4.996094 -6.441672,0.935922 -13.913233,0.729468 -20.5449221,0.210938 3.6937301,3.971212 9.5022581,2.417968 15.7656251,2.417968 8.431856,10e-7 15.411489,-0.672354 18.332031,-7.625 z M 8.4824219,36.558594 C 8.3693535,36.437031 8.2633509,36.294232 8.1542969,36.162109 a 20.000237,20.000237 0 0 0 0.2890625,0.394532 c 0.012679,9.94e-4 0.026377,9.61e-4 0.039063,0.002 z M 17.4375,5.5625 c 2.133782,3.7537513 3.977089,5.881941 6.25,10 0.226834,2.625076 1.15362,16.247204 1.25,17.5 -0.674699,-0.05516 -4.266313,-0.412979 -8.769531,-0.880859 -2.455162,-0.255067 -4.985591,-0.546499 -7.0390628,-0.839844 L 5.875,30.5625 c 3.68206,-6.505788 9.530771,-16.708616 11.5625,-25 z m 7.8125,10.625 c -2e-6,0 8.572991,6.746882 12.1875,15 -4.397649,2.168682 -8.452538,1.89 -10.9375,1.875 1.764785,-4.531585 1.762074,-10.670108 -1.25,-16.875 z m 5.9375,3.75 c 1.554725,0.427247 3.32167,0.967464 5,1.5625 3.043774,1.079143 5.871412,2.562787 7.5,4.0625 -0.931183,1.717045 -2.550489,3.769204 -5,5 0.26244,-2.569143 -0.671831,-5.04057 -2.5,-6.875 -1.349885,-1.354503 -3.13082,-2.497478 -5,-3.75 z"
id="path4" />
<path
style="fill:#cccccc;fill-rule:evenodd"
d="M 16.812656,2.7499995 C 13.803001,12.580993 9.354026,21.936745 4.312503,30.875346 L 4,31.500354 4.481746,31.748607 c 0.42292,0.196346 0.979684,0.328379 1.733418,0.479131 0.753737,0.150751 1.680914,0.301003 2.722811,0.449849 2.0838,0.297659 4.624493,0.588632 7.089319,0.844728 4.929656,0.512163 9.556999,0.885636 9.556999,0.885636 l 0.787362,0.06347 -0.06042,-0.787978 c 0,0 -1.220937,-15.884531 -1.448993,-18.494477 l -0.01221,-0.140994 -0.06837,-0.124513 C 23.336723,12.615968 17.724071,3.0217715 16.812656,2.7499995 Z m 0.625005,2.8125337 c 2.133782,3.7537513 3.977164,5.8820608 6.250075,10.0001198 0.226787,2.624442 1.119693,16.174828 1.216009,17.426814 -0.674247,-0.0551 -4.233755,-0.341444 -8.73729,-0.809323 C 13.711297,31.925046 11.182492,31.635449 9.129017,31.342103 8.102283,31.195445 7.193944,31.047255 6.480061,30.904472 6.127835,30.834032 6.120096,30.629217 5.875022,30.562843 9.557138,24.056965 15.406021,13.85397 17.437661,5.5625332 Z"
id="path6" />
<path
style="fill:#cccccc;fill-rule:evenodd"
d="m 27.478027,17.583426 v 0 c 3.14022,2.100471 5.811342,5.3405 7.754784,7.290588 1.943438,1.950093 2.854146,3.869181 2.115503,6.556463 l -0.344242,1.254297 1.223768,-0.440662 c 3.823634,-1.375766 5.640443,-4.041689 6.750397,-6.223085 l 0.312504,-0.625007 -0.625008,-0.625008 c -1.8635,-1.962438 -4.741897,-3.263167 -8.081588,-4.447224 -3.339692,-1.184055 -6.977027,-2.226959 -9.106118,-2.740362 z m 3.730076,2.484624 c 1.554206,0.427137 3.247357,0.93294 4.924987,1.527729 3.04398,1.079215 5.925893,2.46689 7.55441,3.966721 -0.931174,1.717179 -2.351285,3.697732 -4.801083,4.928653 0.262659,-2.569371 -0.869486,-4.734741 -2.697786,-6.569298 -1.349544,-1.354162 -3.111892,-2.601609 -4.980528,-3.853805 z"
id="path8" />
<circle
style="fill:#cccccc;fill-opacity:0"
cx="24.024"
cy="23.976999"
r="20.024"
id="circle10" />
<path
style="fill:#cccccc"
d="m 42.710938,30.572266 c -4.03814,2.864409 -8.807423,4.602678 -13.683594,5.351562 -6.796251,0.959012 -13.718897,0.720882 -20.5390628,0.199219 -0.050037,0.118205 -0.082655,0.233711 -0.1191406,0.349609 a 20.000237,20.000237 0 0 0 15.4335934,7.517578 c 0.172596,-5.61e-4 0.347999,0.0018 0.517578,-0.002 a 20.000237,20.000237 0 0 0 0.578126,-0.01953 c 0.273799,-0.01248 0.539697,-0.03127 0.802734,-0.05273 a 20.000237,20.000237 0 0 0 1.478516,-0.179688 c 0.0939,-0.01565 0.197559,-0.02586 0.289062,-0.04297 A 20.000237,20.000237 0 0 0 42.794922,30.763672 c -0.02981,-0.06384 -0.05123,-0.127387 -0.08398,-0.191406 z"
id="path12" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg26"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata32">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs30" />
<g
transform="matrix(10.812189,0,0,10.812189,-17.248755,-5.746109)"
style="fill:#cccccc"
id="g857">
<path
style="fill:#4c5263;fill-opacity:1"
d="m 24,4 c -11.045825,4e-7 -20,8.954175 -20,20 0,4.379808 1.4071008,8.430277 3.7949219,11.724609 0.1149929,0.158649 0.2394024,0.292149 0.359375,0.4375 A 20.000237,20.000237 0 0 1 7.390625,35.115234 c 6.897653,0.582772 14.792837,0.862764 21.443359,-0.103515 6.13364,-0.891195 11.594204,-2.853453 14.619141,-6.455078 A 20.000237,20.000237 0 0 1 42.59375,31.3125 c 0.138638,-0.332779 0.278623,-0.663295 0.398438,-1.025391 C 43.646425,28.309918 44,26.196572 44,24 44,12.954174 35.045826,4 24,4 Z m 18.59375,27.3125 c -0.0052,0.01251 -0.0084,0.02659 -0.01367,0.03906 6.95e-4,-5.65e-4 0.0013,-0.0014 0.002,-0.002 a 20.000237,20.000237 0 0 0 0.01172,-0.03711 z m -0.01367,0.03906 c -3.366442,2.738416 -8.35532,4.240932 -13.552734,4.996094 -6.441672,0.935922 -13.913233,0.729468 -20.5449221,0.210938 3.6937301,3.971212 9.5022581,2.417968 15.7656251,2.417968 8.431856,10e-7 15.411489,-0.672354 18.332031,-7.625 z M 8.4824219,36.558594 C 8.3693535,36.437031 8.2633509,36.294232 8.1542969,36.162109 a 20.000237,20.000237 0 0 0 0.2890625,0.394532 c 0.012679,9.94e-4 0.026377,9.61e-4 0.039063,0.002 z M 17.4375,5.5625 c 2.133782,3.7537513 3.977089,5.881941 6.25,10 0.226834,2.625076 1.15362,16.247204 1.25,17.5 -0.674699,-0.05516 -4.266313,-0.412979 -8.769531,-0.880859 -2.455162,-0.255067 -4.985591,-0.546499 -7.0390628,-0.839844 L 5.875,30.5625 c 3.68206,-6.505788 9.530771,-16.708616 11.5625,-25 z m 7.8125,10.625 c -2e-6,0 8.572991,6.746882 12.1875,15 -4.397649,2.168682 -8.452538,1.89 -10.9375,1.875 1.764785,-4.531585 1.762074,-10.670108 -1.25,-16.875 z m 5.9375,3.75 c 1.554725,0.427247 3.32167,0.967464 5,1.5625 3.043774,1.079143 5.871412,2.562787 7.5,4.0625 -0.931183,1.717045 -2.550489,3.769204 -5,5 0.26244,-2.569143 -0.671831,-5.04057 -2.5,-6.875 -1.349885,-1.354503 -3.13082,-2.497478 -5,-3.75 z"
id="path4" />
<path
style="fill:#4c5263;fill-rule:evenodd;fill-opacity:1"
d="M 16.812656,2.7499995 C 13.803001,12.580993 9.354026,21.936745 4.312503,30.875346 L 4,31.500354 4.481746,31.748607 c 0.42292,0.196346 0.979684,0.328379 1.733418,0.479131 0.753737,0.150751 1.680914,0.301003 2.722811,0.449849 2.0838,0.297659 4.624493,0.588632 7.089319,0.844728 4.929656,0.512163 9.556999,0.885636 9.556999,0.885636 l 0.787362,0.06347 -0.06042,-0.787978 c 0,0 -1.220937,-15.884531 -1.448993,-18.494477 l -0.01221,-0.140994 -0.06837,-0.124513 C 23.336723,12.615968 17.724071,3.0217715 16.812656,2.7499995 Z m 0.625005,2.8125337 c 2.133782,3.7537513 3.977164,5.8820608 6.250075,10.0001198 0.226787,2.624442 1.119693,16.174828 1.216009,17.426814 -0.674247,-0.0551 -4.233755,-0.341444 -8.73729,-0.809323 C 13.711297,31.925046 11.182492,31.635449 9.129017,31.342103 8.102283,31.195445 7.193944,31.047255 6.480061,30.904472 6.127835,30.834032 6.120096,30.629217 5.875022,30.562843 9.557138,24.056965 15.406021,13.85397 17.437661,5.5625332 Z"
id="path6" />
<path
style="fill:#4c5263;fill-rule:evenodd;fill-opacity:1"
d="m 27.478027,17.583426 v 0 c 3.14022,2.100471 5.811342,5.3405 7.754784,7.290588 1.943438,1.950093 2.854146,3.869181 2.115503,6.556463 l -0.344242,1.254297 1.223768,-0.440662 c 3.823634,-1.375766 5.640443,-4.041689 6.750397,-6.223085 l 0.312504,-0.625007 -0.625008,-0.625008 c -1.8635,-1.962438 -4.741897,-3.263167 -8.081588,-4.447224 -3.339692,-1.184055 -6.977027,-2.226959 -9.106118,-2.740362 z m 3.730076,2.484624 c 1.554206,0.427137 3.247357,0.93294 4.924987,1.527729 3.04398,1.079215 5.925893,2.46689 7.55441,3.966721 -0.931174,1.717179 -2.351285,3.697732 -4.801083,4.928653 0.262659,-2.569371 -0.869486,-4.734741 -2.697786,-6.569298 -1.349544,-1.354162 -3.111892,-2.601609 -4.980528,-3.853805 z"
id="path8" />
<circle
style="fill:#cccccc;fill-opacity:0"
cx="24.024"
cy="23.976999"
r="20.024"
id="circle10" />
<path
style="fill:#5294e2;fill-opacity:1"
d="m 42.710938,30.572266 c -4.03814,2.864409 -8.807423,4.602678 -13.683594,5.351562 -6.796251,0.959012 -13.718897,0.720882 -20.5390628,0.199219 -0.050037,0.118205 -0.082655,0.233711 -0.1191406,0.349609 a 20.000237,20.000237 0 0 0 15.4335934,7.517578 c 0.172596,-5.61e-4 0.347999,0.0018 0.517578,-0.002 a 20.000237,20.000237 0 0 0 0.578126,-0.01953 c 0.273799,-0.01248 0.539697,-0.03127 0.802734,-0.05273 a 20.000237,20.000237 0 0 0 1.478516,-0.179688 c 0.0939,-0.01565 0.197559,-0.02586 0.289062,-0.04297 A 20.000237,20.000237 0 0 0 42.794922,30.763672 c -0.02981,-0.06384 -0.05123,-0.127387 -0.08398,-0.191406 z"
id="path12" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
width="496"
height="496"
viewBox="0 0 496 496"
enable-background="new 0 0 712 860"
xml:space="preserve"
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/"><metadata
id="metadata23"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs21" /><path
d="m 433.89488,392.768 c -0.006,-0.006 -0.012,-0.012 -0.012,-0.017 -3.45708,-3.90197 -5.10388,-11.13627 -6.87486,-18.84337 -1.76642,-7.70141 -3.74247,-16.00662 -10.06537,-21.38963 -0.012,-0.012 -0.029,-0.0228 -0.0399,-0.0347 -1.25319,-1.09369 -2.54055,-2.01592 -3.83362,-2.78549 -1.29818,-0.769 -2.6146,-1.3956 -3.92987,-1.89117 8.78939,-26.06629 5.34313,-52.02377 -3.53172,-75.47602 -10.8856,-28.78918 -29.89416,-53.86943 -44.41404,-71.0267 -16.25155,-20.50099 -32.14481,-39.95957 -31.83094,-68.70311 0.48362,-43.867229 4.8242,-125.2161349 -72.3721,-125.3243646 -3.13866,-0.00569 -6.41404,0.1253186 -9.82612,0.3987412 C 160.89952,14.61898 183.78157,105.75984 182.4999,136.27493 c -1.57788,22.31812 -6.10074,39.90829 -21.45228,61.72514 -18.0288,21.44088 -43.42292,56.14845 -55.44782,92.28011 -5.673513,17.04904 -8.373553,34.42788 -5.884273,50.87881 -0.780398,0.70065 -1.520918,1.43604 -2.232947,2.18795 -5.291869,5.65643 -9.205229,12.50282 -13.562901,17.11112 -4.072857,4.06773 -9.871694,5.61143 -16.251553,7.89508 -6.379859,2.29048 -13.380617,5.66213 -17.630059,13.81923 0,0 0,0.006 -0.0057,0.006 -0.0057,0.0114 -0.01139,0.0285 -0.02279,0.0393 -1.999403,3.73108 -2.648781,7.75837 -2.648781,11.84262 0,3.77665 0.558237,7.60513 1.122171,11.29007 1.173439,7.66722 2.363967,14.91805 0.78609,19.82882 -5.046924,13.80215 -5.696303,23.34346 -2.14181,30.27074 3.565887,6.9381 10.885636,9.997 19.162364,11.72868 16.553458,3.45196 38.968409,2.59752 56.632649,11.96224 l 1.52091,-2.86525 -1.50382,2.87095 c 18.91172,9.88878 38.08548,13.39827 53.38005,9.90587 11.0964,-2.52859 20.09656,-9.1363 24.72196,-19.29908 11.96223,-0.0569 25.09221,-5.12667 46.12296,-6.28245 14.26925,-1.15122 32.09298,5.06913 52.59397,3.92988 0.53545,2.22156 1.31072,4.36337 2.36966,6.39694 0.012,0.0165 0.0228,0.0393 0.0347,0.0569 7.94578,15.89269 22.71059,23.16117 38.45004,21.91937 15.75541,-1.24236 32.50824,-10.53247 46.05462,-26.64731 l -2.48359,-2.08484 2.50124,2.06207 c 12.90783,-15.65344 34.33163,-22.14153 48.5439,-30.70878 7.10329,-4.28362 12.86226,-9.64897 13.31227,-17.44208 0.44317,-7.78685 -4.13096,-16.51359 -14.64634,-28.18531 z"
id="path3"
style="fill:#202020;fill-opacity:1;stroke-width:0.56963"
fill="#000000" /><path
fill="#D6A312"
d="m 442.05769,420.58306 c -0.95955,8.55967 -10.29985,12.19927 -16.86696,15.85829 -16.46483,7.82251 -33.88838,15.71635 -45.28564,30.57944 -12.30097,13.75078 -30.49013,25.02905 -49.58238,21.81154 -15.04668,-2.6496 -26.74169,-17.96886 -24.82516,-33.23598 1.6078,-22.58806 13.77085,-43.19786 13.42436,-66.06879 1.2294,-14.36784 1.21002,-29.94908 9.26319,-42.50015 2.38617,-3.38045 9.89795,-10.96775 8.83294,-2.35544 1.63782,10.89032 8.73838,23.30905 20.9314,23.97306 12.71545,0.053 24.57344,-7.14407 33.14852,-16.10481 8.38614,-0.81459 18.35252,-0.21184 23.76214,7.22306 8.00699,11.99814 5.04932,28.95445 16.0037,39.37668 4.98439,6.1948 11.00804,13.07458 11.19389,21.4431 z"
id="path5"
style="fill:#fcc624;fill-opacity:1;stroke-width:0.56963" /><path
d="m 197.82868,456.11659 c -0.2774,11.12489 -7.39938,21.8789 -18.22474,25.23241 -18.6508,6.20187 -38.79388,-0.0645 -55.51982,-8.89787 -17.98662,-9.00341 -38.551259,-8.21038 -57.849927,-11.92839 -6.791544,-1.17436 -14.594123,-5.36711 -14.719416,-13.18627 -1.310888,-10.95486 6.441987,-20.54598 4.971944,-31.47283 -0.495732,-10.45077 -5.538247,-21.91584 -0.07861,-31.80207 6.957596,-11.7531 23.448227,-9.4353 32.193652,-19.10942 7.741349,-7.66589 12.001868,-19.89914 23.087388,-23.52101 12.08117,-2.77692 22.83043,6.60657 28.88398,16.13291 7.61372,13.60835 14.76693,27.49461 22.72118,40.89467 11.04308,16.56158 26.95261,30.31809 33.5745,49.53334 0.7696,2.62502 1.23048,5.38567 0.95987,8.12453 z"
id="path7"
style="fill:#fcc624;fill-opacity:1;stroke-width:0.56963"
fill="#D6A312" /><path
d="m 290.83792,139.25403 c -5.2054,-8.51374 -16.06339,-9.69988 -24.51782,-13.37307 -8.22552,-3.3673 -15.20337,-9.57524 -24.20611,-11.06998 -11.13209,-2.90076 -22.88668,1.6339 -30.76116,9.64928 -5.91351,6.52079 -14.62478,9.93762 -20.09985,16.83332 -3.74283,7.86896 3.10072,15.89316 9.39476,19.9472 8.00266,4.08471 13.55591,11.37482 21.2064,15.90712 11.87195,6.41089 26.37504,2.20216 36.65172,-5.36177 7.60305,-5.89918 17.76774,-6.89908 25.07662,-13.25443 5.40565,-4.42047 10.8429,-12.14043 7.25544,-19.27767 z"
id="path9"
style="fill:#fcc624;fill-opacity:1;stroke-width:0.56963"
fill="#D6A312" /><path
d="m 262.42476,155.78471 c -10.03642,5.26123 -20.75162,10.90847 -32.43775,10.21746 -11.28293,-0.55577 -21.27903,-6.93917 -29.24558,-14.53223 -2.13666,-2.13642 -5.83255,-4.39947 -4.80024,-7.94597 2.75375,-1.77513 3.45879,3.21783 5.27406,4.46514 7.46074,7.32526 16.46148,14.15258 27.19017,15.30785 10.09263,1.14286 19.77136,-3.14301 28.55659,-7.61054 6.4886,-3.23298 12.21974,-7.74468 17.91425,-12.17183 1.08683,-1.66113 4.49441,-6.20579 5.81412,-2.65936 -1.63589,3.58681 -5.20625,5.78051 -8.12609,8.25746 -3.21905,2.45259 -6.55723,4.77744 -10.13953,6.67202 z"
id="path11"
style="fill:#202020;fill-opacity:1;stroke-width:0.56963" /><path
d="m 398.85123,345.90452 c -7.11676,0.49787 -1.37261,-15.58999 -12.06276,-17.49546 -12.29407,-7.32211 -27.58923,-16.19259 -42.16642,-10.61401 -8.44416,6.46268 -6.90326,17.56184 -18.07267,21.28756 -15.85026,17.19814 -12.20812,42.5598 -15.31024,63.96951 -2.65468,11.07549 -3.44853,24.52563 -16.17637,28.40628 -29.07196,17.38474 -68.22197,20.7555 -97.10361,1.11289 -3.84448,-5.43187 -16.15309,-17.41265 -12.78668,-19.90629 18.27037,-0.21621 15.82704,-22.71617 6.16242,-32.16026 -12.0175,-17.08086 -31.19989,-26.28122 -46.9842,-39.07009 -18.6647,-16.60088 -18.12101,-44.63428 -9.73821,-66.25923 5.77301,-15.68658 13.62562,-31.00367 23.08371,-44.57535 -3.85709,14.43653 -14.45649,27.05901 -18.06351,42.02292 -5.98854,18.61559 -5.83173,40.73053 6.61596,56.76909 0.36931,-30.01365 11.95971,-58.18556 25.11558,-84.64182 11.61194,-25.99821 23.53973,-52.80438 25.60431,-81.56549 12.82881,6.85019 21.81053,21.98342 38.06271,20.7348 16.26216,0.67875 27.45929,-12.87048 42.23625,-17.07284 8.30301,-1.65709 16.14651,-19.32448 16.87556,-3.213 10.11956,34.70468 25.03062,67.754 41.52453,99.83108 6.36853,14.30567 11.33919,29.28361 14.13905,44.70792 15.71703,6.73259 14.00243,-13.93445 14.07654,-24.26228 -1.92337,-22.01357 -12.76628,-42.84954 -28.47003,-58.20866 0.4831,-7.05988 14.48444,12.45798 18.1162,17.86992 13.20783,20.02598 21.81394,45.07692 15.98593,69.07774 11.80637,5.84752 27.97487,11.98222 30.215,26.71144 0.13026,2.21278 -0.22802,4.43306 -0.87905,6.54363 z"
id="path13"
fill="#ffffff"
style="stroke-width:0.56963;opacity:1" /><path
d="m 291.82908,105.83952 c 0.13221,8.18984 -2.38068,16.51054 -7.51285,22.95041 -3.29365,-2.22266 -7.70918,-2.13841 -10.77874,-4.73203 -0.98069,-1.50931 2.20844,-2.84961 2.45432,-4.68004 2.32472,-5.01415 2.12978,-10.87502 0.81529,-16.13342 -1.28842,-4.228168 -4.09236,-8.976903 -8.89939,-9.564004 -4.90328,-0.41439 -8.76479,3.782681 -10.40422,8.031024 -1.3127,3.46482 -2.24144,7.22452 -1.66085,10.93924 0.69962,1.92665 -0.89826,3.52767 -2.4914,1.79353 -2.79133,-1.18361 -6.2174,-1.2749 -8.64481,-3.38188 -2.66869,-1.90511 -1.55058,-5.24993 -1.37053,-7.92233 0.65387,-10.200971 5.53973,-20.839337 14.78719,-25.907278 5.92722,-3.43858 13.55714,-3.037527 19.37924,0.427281 7.38145,4.209598 11.72049,12.284095 13.46434,20.376541 0.53943,2.564906 0.82263,5.182626 0.86241,7.802956 z"
id="path15"
style="fill:#ffffff;stroke-width:0.56963" /><path
d="m 225.70639,111.5643 c -3.27652,0.17472 -7.36624,4.1663 -9.60866,3.31941 0.43651,-6.15895 -1.0428,-13.29447 -6.33297,-17.085346 -4.00863,-2.098027 -7.97014,1.740182 -8.73699,5.559476 -1.91464,6.00824 -1.1719,13.00795 2.14844,18.3444 3.52688,2.34706 1.23615,4.29085 -1.2317,6.02916 -4.81378,3.32556 -7.11626,-5.67955 -8.91161,-8.94726 -3.62152,-10.6165 -3.30716,-23.33822 3.22708,-32.78683 3.23938,-4.729166 9.42503,-7.938201 15.07504,-5.707026 7.64922,2.809967 11.70135,11.036516 13.4907,18.501985 0.93802,4.180611 1.19197,8.503031 0.88067,12.772031 z"
id="path17"
style="fill:#ffffff;stroke-width:0.56963" /><path
id="path28396-7"
d="m 240.32118,123.41813 c 0.36845,1.18269 2.27454,0.98667 3.37579,1.55391 0.96633,0.49772 1.74355,1.58865 2.83009,1.62002 1.03696,0.0299 2.65082,-0.35912 2.78572,-1.38771 0.17821,-1.35893 -1.8062,-2.2225 -3.08315,-2.72034 -1.6432,-0.64067 -3.74848,-0.96572 -5.28993,-0.10865 -0.35322,0.19639 -0.73874,0.65694 -0.61852,1.04278 z"
style="opacity:1;fill:#202020;fill-opacity:1;stroke:none;stroke-width:0.56963" /><path
style="opacity:1;fill:#202020;fill-opacity:1;stroke:none;stroke-width:0.56963"
d="m 229.0628,123.41813 c -0.36846,1.18269 -2.27454,0.98667 -3.37579,1.55391 -0.96633,0.49772 -1.74357,1.58865 -2.83009,1.62002 -1.03698,0.0299 -2.65083,-0.35912 -2.78573,-1.38771 -0.17822,-1.35893 1.8062,-2.2225 3.08316,-2.72034 1.6432,-0.64067 3.74848,-0.96572 5.28991,-0.10865 0.35324,0.19639 0.73876,0.65694 0.61854,1.04278 z"
id="path5461" /></svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="496"
width="496"
id="svg4"
version="1.1"
viewBox="0 0 496 496"
xml:space="preserve"
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/"><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" /></cc:Work></rdf:RDF></metadata><defs
id="defs8"></defs><g
id="g1"
transform="matrix(2.6068192,0,0,2.6068192,-76.168131,-432.5669)"><g
id="g19"><circle
class="cls-3"
cx="58.09"
cy="255.92"
r="26.299999"
id="circle16"
style="fill:#cccccc;fill-opacity:1" /><circle
class="cls-3"
cx="167.63"
cy="198.25"
r="26.299999"
id="circle17"
style="fill:#cccccc;fill-opacity:1" /><path
class="cls-3"
d="M 117.41,323.62 C 98.46,319.56 82.63,307.46 73.73,290.3 c -7.01,3.19 -14.9,4.16 -22.49,2.76 10.77,26.45 33.61,45.66 61.65,51.67 6.15,1.32 12.42,1.96 18.68,1.92 -4.83,-6.35 -7.52,-14.01 -7.7,-21.99 -2.17,-0.24 -4.33,-0.59 -6.45,-1.05 z"
id="path17"
style="fill:#cccccc;fill-opacity:1" /><circle
class="cls-3"
cx="161.71001"
cy="323.76001"
r="26.299999"
id="circle18"
style="fill:#cccccc;fill-opacity:1" /><path
class="cls-3"
d="m 198.31,314.1 c 8.18,-10.31 13.94,-22.5 16.71,-35.45 4.84,-22.59 0.32,-46.29 -12.4,-65.51 -3.03,7.14 -8.17,13.17 -14.79,17.32 7.1,13.38 9.26,28.82 6.08,43.67 -1.56,7.27 -4.31,14.12 -8.18,20.38 6.19,5.08 10.56,11.91 12.59,19.6 z"
id="path18"
style="fill:#cccccc;fill-opacity:1" /><path
class="cls-3"
d="m 56.06,218.2 c 0.67,-0.04 1.34,-0.05 2,-0.05 2.66,0 5.31,0.28 7.94,0.85 4.29,0.92 8.32,2.54 12.01,4.84 11.84,-17.03 30.95,-27.25 51.65,-27.63 0.11,-1.99 0.38,-3.97 0.79,-5.92 1.21,-5.63 3.67,-10.9 7.19,-15.41 -33.08,-2.62 -65.22,14.45 -81.59,43.33 z"
id="path19"
style="fill:#cccccc;fill-opacity:1" /></g></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="496"
width="496"
id="svg4"
version="1.1"
viewBox="0 0 496 496"
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/">
<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" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<style
id="style933">.cls-1{fill:#e9500e;}</style>
</defs>
<g
id="g959"
transform="matrix(0.61580374,0,0,0.61580374,12.468621,21.817361)">
<circle
class="cls-1"
cx="109.02696"
cy="348.09412"
r="109.02696"
id="circle937" />
<ellipse
class="cls-1"
cx="563.08368"
cy="109.02698"
id="circle939"
rx="109.02662"
ry="109.02698" />
<path
class="cls-1"
d="m 354.92039,628.68582 c -77.01891,-15.8253 -145.43904,-68.0075 -181.0712,-138.0982 -28.93817,13.2078 -61.94374,17.2648 -93.21911,11.4583 51.75695,133.1719 190.35352,224.9404 332.95672,222.1315 -21.33123,-25.4775 -29.54323,-61.4497 -33.6059,-91.347 -8.41211,-0.9891 -16.77785,-2.3728 -25.06051,-4.1446 z"
id="path941" />
<circle
class="cls-1"
cx="538.52045"
cy="629.28723"
r="109.02698"
id="circle943" />
<path
class="cls-1"
d="m 690.23645,589.24102 c 85.45532,-105.22585 101.63344,-261.1123 39.28817,-381.54731 -6.39094,-12.73675 -13.54502,-25.09063 -21.41334,-36.97169 -12.438,29.45803 -34.16446,54.90303 -61.30975,71.8031 44.28267,81.68487 40.82043,186.89167 -8.73688,265.4884 25.36982,20.67266 43.92291,49.5585 52.1718,81.2275 z"
id="path945" />
<path
class="cls-1"
d="m 100.61489,191.73908 c 31.72478,-1.7424 63.98682,6.52836 90.98772,23.31994 C 239.1057,145.42119 321.41819,101.39883 405.71083,100.54968 405.7585,68.81709 422.81019,34.82283 437.18034,12.00596 323.8486,3.01574 208.0489,52.71326 135.95771,140.54908 c -13.26,15.97642 -25.10697,33.12582 -35.34282,51.19 z"
id="path947" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="496"
width="496"
id="svg4"
version="1.1"
viewBox="0 0 496 496"
sodipodi:docname="vanilla-logo.svg"
xml:space="preserve"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
inkscape:export-filename="vanilla-logo.svg"
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/"><sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="1.6935484"
inkscape:cx="247.70476"
inkscape:cy="248"
inkscape:window-width="1920"
inkscape:window-height="1048"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" /><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" /></cc:Work></rdf:RDF></metadata><defs
id="defs8"><style
id="style933">.cls-1{fill:#e9500e;}</style></defs><g
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linecap:round;stroke-miterlimit:1"
id="g1"
transform="matrix(1.4434307,0,0,1.4434307,13.249865,24.105567)"><g
transform="translate(-146.427,-22.3022)"
id="g20">&#10; <g
transform="matrix(0.91547,-0.0630144,0.0630144,0.91547,15.0287,30.1216)"
id="g19">&#10; <g
transform="translate(0.276988,-1.52894)"
id="g17">&#10; <g
transform="rotate(-0.56642449,584.14753,-3316.3572)"
id="g4">&#10; <path
d="m 316.082,219.063 c 39.044,8.735 60.6,24.793 65.023,30.373 4.423,5.581 19.103,26.46 25.033,53.28 3.181,14.386 5.156,32.471 5.927,54.256 -10.395,-3.062 -21.194,-4.806 -32.396,-5.231 -36.164,-1.374 -67.701,-7.919 -87.47,-34.919 -13.179,-18 -23.969,-51.425 -32.371,-100.274 21.66,-1.868 40.411,-1.03 56.254,2.515 z"
style="fill:#fbbd4e;fill-rule:nonzero"
id="path1" />&#10; <clipPath
id="_clip1">&#10; <path
d="m 316.082,219.063 c 39.044,8.735 60.6,24.793 65.023,30.373 4.423,5.581 19.103,26.46 25.033,53.28 3.181,14.386 5.156,32.471 5.927,54.256 -10.395,-3.062 -21.194,-4.806 -32.396,-5.231 -36.164,-1.374 -67.701,-7.919 -87.47,-34.919 -13.179,-18 -23.969,-51.425 -32.371,-100.274 21.66,-1.868 40.411,-1.03 56.254,2.515 z"
clip-rule="nonzero"
id="path2" />&#10; </clipPath>&#10; <g
clip-path="url(#_clip1)"
id="g3">&#10; <path
d="M 380,326 C 331.803,287.134 318.115,266.34 273.5,217.384"
style="fill:none;stroke:#fddc71;stroke-width:15.26px"
id="path3" />&#10; </g>&#10; </g>&#10; <g
transform="rotate(-8.9633719,334.13305,-87.719538)"
id="g7">&#10; <path
d="m 289.816,169.32 c 27.112,-29.422 51.805,-40.041 58.851,-41.075 7.045,-1.034 32.468,-3.287 58.653,5.01 14.045,4.45 30.689,11.796 49.932,22.037 -7.855,7.465 -14.772,15.939 -20.749,25.422 -19.298,30.616 -40.754,54.638 -74.024,58.23 -22.18,2.395 -56.516,-5.002 -103.007,-22.189 9.229,-19.685 19.343,-35.496 30.344,-47.435 z"
style="fill:#fbbd4e;fill-rule:nonzero"
id="path4" />&#10; <clipPath
id="_clip2">&#10; <path
d="m 289.816,169.32 c 27.112,-29.422 51.805,-40.041 58.851,-41.075 7.045,-1.034 32.468,-3.287 58.653,5.01 14.045,4.45 30.689,11.796 49.932,22.037 -7.855,7.465 -14.772,15.939 -20.749,25.422 -19.298,30.616 -40.754,54.638 -74.024,58.23 -22.18,2.395 -56.516,-5.002 -103.007,-22.189 9.229,-19.685 19.343,-35.496 30.344,-47.435 z"
clip-rule="nonzero"
id="path5" />&#10; </clipPath>&#10; <g
clip-path="url(#_clip2)"
id="g6">&#10; <path
d="M 260.776,212.519 C 311.911,192.51 349.097,177.252 409.888,165"
style="fill:none;stroke:#fddc71;stroke-width:15.26px"
id="path6" />&#10; </g>&#10; </g>&#10; <g
transform="rotate(-8.9633719,313.65901,-92.246594)"
id="g10">&#10; <path
d="m 233.607,167.149 c -11.892,-38.201 -8.72,-64.893 -6.087,-71.509 2.633,-6.616 13.413,-29.751 33.706,-48.262 10.885,-9.929 25.577,-20.658 44.078,-32.187 2.528,10.537 6.4,20.767 11.615,30.69 16.839,32.035 26.888,62.636 13.339,93.233 -9.033,20.399 -32.628,46.416 -70.785,78.053 -12.419,-17.845 -21.041,-34.517 -25.866,-50.018 z"
style="fill:#fbbd4e;fill-rule:nonzero"
id="path7" />&#10; <clipPath
id="_clip3">&#10; <path
d="m 233.607,167.149 c -11.892,-38.201 -8.72,-64.893 -6.087,-71.509 2.633,-6.616 13.413,-29.751 33.706,-48.262 10.885,-9.929 25.577,-20.658 44.078,-32.187 2.528,10.537 6.4,20.767 11.615,30.69 16.839,32.035 26.888,62.636 13.339,93.233 -9.033,20.399 -32.628,46.416 -70.785,78.053 -12.419,-17.845 -21.041,-34.517 -25.866,-50.018 z"
clip-rule="nonzero"
id="path8" />&#10; </clipPath>&#10; <g
clip-path="url(#_clip3)"
id="g9">&#10; <path
d="M 259.916,215.675 C 265.752,162.098 273,111.046 291.088,59"
style="fill:none;stroke:#fddc71;stroke-width:15.26px"
id="path9" />&#10; </g>&#10; </g>&#10; <g
transform="rotate(-8.9633719,328.71664,-85.263521)"
id="g13">&#10; <path
d="m 203.582,214.717 c -39.022,-8.834 -60.538,-24.946 -64.946,-30.538 -4.409,-5.591 -19.037,-26.507 -24.899,-53.342 -3.145,-14.394 -5.075,-32.484 -5.79,-54.27 10.387,3.088 21.181,4.859 32.382,5.312 36.161,1.465 67.681,8.089 87.382,35.139 13.133,18.033 23.839,51.484 32.118,100.354 -21.665,1.814 -40.414,0.929 -56.247,-2.655 z"
style="fill:#fbbd4e;fill-rule:nonzero"
id="path10" />&#10; <clipPath
id="_clip4">&#10; <path
d="m 203.582,214.717 c -39.022,-8.834 -60.538,-24.946 -64.946,-30.538 -4.409,-5.591 -19.037,-26.507 -24.899,-53.342 -3.145,-14.394 -5.075,-32.484 -5.79,-54.27 10.387,3.088 21.181,4.859 32.382,5.312 36.161,1.465 67.681,8.089 87.382,35.139 13.133,18.033 23.839,51.484 32.118,100.354 -21.665,1.814 -40.414,0.929 -56.247,-2.655 z"
clip-rule="nonzero"
id="path11" />&#10; </clipPath>&#10; <g
clip-path="url(#_clip4)"
id="g12">&#10; <path
d="m 141,110 c 38.372,39.706 71.972,71.653 118.39,103.002"
style="fill:none;stroke:#fddc71;stroke-width:15.26px"
id="path12" />&#10; </g>&#10; </g>&#10; <g
transform="rotate(-13.324917,324.36699,-22.333272)"
id="g16">&#10; <path
d="m 229.723,264.525 c -27.186,29.354 -51.906,39.911 -58.954,40.927 -7.048,1.016 -32.477,3.205 -58.641,-5.157 -14.034,-4.486 -30.659,-11.874 -49.876,-22.163 7.874,-7.445 14.812,-15.902 20.813,-25.37 19.375,-30.568 40.891,-54.535 74.171,-58.044 22.186,-2.339 56.503,5.144 102.95,22.449 -9.278,19.661 -19.432,35.447 -30.463,47.358 z"
style="fill:#fbbd4e;fill-rule:nonzero"
id="path13" />&#10; <clipPath
id="_clip5">&#10; <path
d="m 229.723,264.525 c -27.186,29.354 -51.906,39.911 -58.954,40.927 -7.048,1.016 -32.477,3.205 -58.641,-5.157 -14.034,-4.486 -30.659,-11.874 -49.876,-22.163 7.874,-7.445 14.812,-15.902 20.813,-25.37 19.375,-30.568 40.891,-54.535 74.171,-58.044 22.186,-2.339 56.503,5.144 102.95,22.449 -9.278,19.661 -19.432,35.447 -30.463,47.358 z"
clip-rule="nonzero"
id="path14" />&#10; </clipPath>&#10; <g
clip-path="url(#_clip5)"
id="g15">&#10; <path
d="m 105.533,267.72 c 58.955,-13.16 94.6,-30.697 147.429,-57.639"
style="fill:none;stroke:#fddc71;stroke-width:15.26px"
id="path15" />&#10; </g>&#10; </g>&#10; </g>&#10; <g
transform="matrix(0.972408,-0.233289,0.233289,0.972408,7.17955,78.1919)"
id="g18">&#10; <path
d="m 310.717,217.052 c -2.491,9.297 -16.345,5.643 -19.955,16.819 -3.137,9.714 -7.74,17.682 -17.036,20.173 -9.297,2.491 -17.619,-5.822 -26.496,-8.2 -8.877,-2.379 -17.23,1.465 -24.035,-5.34 -6.806,-6.805 -4.785,-13.64 -7.164,-22.518 -2.379,-8.877 -9.787,-17.133 -7.296,-26.429 2.491,-9.296 12.999,-10.815 19.498,-17.314 6.498,-6.498 9.117,-18.77 18.413,-21.261 9.297,-2.491 15.891,6.134 24.769,8.513 8.877,2.378 20.347,-0.772 27.152,6.033 6.806,6.806 1.975,17.247 4.354,26.124 2.379,8.877 10.287,14.104 7.796,23.4 z"
style="fill:#fddc71;fill-rule:nonzero"
id="path17" />&#10; <path
d="m 288.281,233.884 c -6.153,6.243 -16.959,-5.301 -23.175,-0.427 -6.353,4.981 -9.36,12.515 -17.175,9.572 -7.123,-2.683 -0.863,-14.896 -5.798,-20.231 -4.936,-5.336 -21.024,-0.895 -21.928,-9.84 -0.94,-9.307 13.399,-5.066 16.014,-14.086 2.615,-9.022 -11.446,-18.962 -5.858,-24.131 5.587,-5.168 16.568,5.724 23.657,4.118 7.089,-1.607 12.702,-16.533 19.972,-14.278 7.27,2.255 0.726,17.208 5.661,22.544 4.936,5.335 21.399,2.097 23.082,9.52 1.682,7.424 -19.172,6.538 -21.325,13.481 -2.153,6.942 12.216,18.337 6.873,23.758 z"
style="fill:#feeed1;fill-rule:nonzero"
id="path18" />&#10; </g>&#10; </g>&#10; </g></g></svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
viewBox="0 0 496 496"
version="1.1"
preserveAspectRatio="xMidYMid"
id="svg6"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs6" />
<g
id="g6"
transform="matrix(1.8829212,0,0,1.8829212,6.4459535,51.238161)">
<path
d="M 128.60184,0.06351709 C 106.56996,0.11030023 85.108398,7.0707856 67.242783,19.963685 l 23.902685,23.902684 c 11.277442,-6.898594 24.236282,-10.559734 37.456372,-10.582214 39.77241,-7.9e-5 72.01434,32.241846 72.01426,72.014265 -0.0318,13.21538 -3.69956,26.16719 -10.60151,37.43708 l 23.94799,23.94799 c 12.8888,-17.87595 19.8404,-39.34715 19.87417,-61.38507 0,-58.119629 -47.11529,-105.23490291 -105.23491,-105.23490291 z"
fill="#abc2ab"
id="path1"
style="fill:#cccccc;fill-opacity:1" />
<path
d="m 189.9609,190.63315 -23.90269,-23.90268 c -11.27745,6.89859 -24.23629,10.55974 -37.45637,10.58221 -39.772411,8e-5 -72.014337,-32.24185 -72.014258,-72.01426 0.03183,-13.215385 3.699547,-26.167199 10.60151,-37.437084 L 43.241093,43.913349 C 30.352276,61.789286 23.400712,83.260494 23.366944,105.29842 c 0,58.11962 47.115274,105.2349 105.234896,105.2349 22.03188,-0.0468 43.49344,-7.00726 61.35906,-19.90017 z"
fill="#478061"
id="path2"
style="fill:#cccccc;fill-opacity:1" />
<circle
fill="#abc2ab"
cx="128.58502"
cy="105.29842"
r="33.503357"
id="circle2"
style="fill:#cccccc;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
viewBox="0 0 496 496"
version="1.1"
preserveAspectRatio="xMidYMid"
id="svg6"
sodipodi:docname="void.svg"
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="defs6" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<g
id="g6"
transform="matrix(1.8829212,0,0,1.8829212,6.4459535,51.238161)">
<path
d="M 128.60184,0.06351709 C 106.56996,0.11030023 85.108398,7.0707856 67.242783,19.963685 l 23.902685,23.902684 c 11.277442,-6.898594 24.236282,-10.559734 37.456372,-10.582214 39.77241,-7.9e-5 72.01434,32.241846 72.01426,72.014265 -0.0318,13.21538 -3.69956,26.16719 -10.60151,37.43708 l 23.94799,23.94799 c 12.8888,-17.87595 19.8404,-39.34715 19.87417,-61.38507 0,-58.119629 -47.11529,-105.23490291 -105.23491,-105.23490291 z"
fill="#abc2ab"
id="path1" />
<path
d="m 189.9609,190.63315 -23.90269,-23.90268 c -11.27745,6.89859 -24.23629,10.55974 -37.45637,10.58221 -39.772411,8e-5 -72.014337,-32.24185 -72.014258,-72.01426 0.03183,-13.215385 3.699547,-26.167199 10.60151,-37.437084 L 43.241093,43.913349 C 30.352276,61.789286 23.400712,83.260494 23.366944,105.29842 c 0,58.11962 47.115274,105.2349 105.234896,105.2349 22.03188,-0.0468 43.49344,-7.00726 61.35906,-19.90017 z"
fill="#478061"
id="path2" />
<circle
fill="#abc2ab"
cx="128.58502"
cy="105.29842"
r="33.503357"
id="circle2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
id="rect4"
d="M 42.867797,18.644068 C 30.199037,18.644068 20,28.843106 20,41.511865 V 453.1322 C 20,465.80096 30.199037,476 42.867797,476 H 454.48814 c 12.66875,0 22.86779,-10.19904 22.86779,-22.8678 V 327.35932 H 225.81017 V 18.644068 Z m 228.677963,0 V 304.49153 H 477.35593 V 41.511865 c 0,-12.668759 -10.19904,-22.867797 -22.86779,-22.867797 z"
style="fill:#cccccc;stroke-width:11.43389797" />
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="496"
width="496"
id="svg4"
version="1.1"
viewBox="0 0 496 496"
xml:space="preserve"
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/"><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" /></cc:Work></rdf:RDF></metadata><defs
id="defs8"></defs><g
style="fill:#cccccc;fill-opacity:1"
id="g128"
transform="matrix(0.63842458,0,0,0.63842458,10.630929,40.503173)"><path
d="m 125,542 62.353,108 h 375.29 L 625,542 Z M 750,324.998 687.103,434 H 288 L 687.103,216 Z M 0,325.002 62.897,216 H 462 L 62.897,434 Z M 125,108 187.353,0 h 375.29 L 625,108 Z"
id="path119"
style="fill:#cccccc;fill-opacity:1" /></g></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="496"
width="496"
id="svg4"
version="1.1"
viewBox="0 0 496 496"
xml:space="preserve"
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/"><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" /></cc:Work></rdf:RDF></metadata><defs
id="defs8"><style
id="style933">.cls-1{fill:#e9500e;}</style></defs><g
style="fill:#15a6f0"
id="g128"
transform="matrix(0.63842458,0,0,0.63842458,10.630929,40.503173)"><path
d="m 125,542 62.353,108 h 375.29 L 625,542 Z M 750,324.998 687.103,434 H 288 L 687.103,216 Z M 0,325.002 62.897,216 H 462 L 62.897,434 Z M 125,108 187.353,0 h 375.29 L 625,108 Z"
id="path119" /></g></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg14"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata20">
<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="defs18" />
<path
id="circle4"
d="M 248.30508,17.389831 A 230.30508,230.30508 0 0 0 100.54099,71.34513 c 9.35043,0.728916 18.684,1.579202 28.00095,2.653921 7.32362,0.879765 14.66196,1.618239 21.90597,3.013657 7.57179,1.681112 15.31909,2.461962 22.89556,4.138352 17.4334,3.226344 34.67822,7.50887 51.52628,13.06705 4.66857,1.01219 8.84261,3.35589 13.31451,4.94799 9.5666,3.82571 18.8864,8.35328 27.48366,14.05679 -1.95263,13.67321 -2.87925,28.64707 3.86841,41.24798 3.69458,7.38911 10.01902,13.45224 17.7452,16.46313 11.20083,4.82789 23.70236,3.22888 35.53534,3.82353 10.74193,1.94319 20.82626,6.34479 30.99223,10.16578 4.03642,1.56861 7.98675,3.30798 12.03254,4.85794 0.0518,-1.32518 0.114,-2.6378 0.17998,-3.95837 4.54683,5.33352 10.62158,9.23604 17.09296,11.8302 -0.36526,-2.25239 -0.8025,-4.48174 -1.2145,-6.7248 3.14674,2.9547 6.10825,6.12024 9.31116,9.01886 2.93133,2.40209 6.1814,4.36993 9.46861,6.25233 -0.009,-3.10452 -0.55492,-6.15871 -0.96706,-9.22119 4.90738,5.57235 10.23725,10.74765 15.0463,16.41822 3.8257,0.0576 7.65302,0.11515 11.49276,0.17964 0.28305,0.48709 0.63265,0.93389 0.92214,1.41695 10e-6,-0.31552 -7.7e-4,-0.62988 0,-0.94425 8.66785,9.03095 -0.24297,-0.32934 7.93923,8.25413 0.22754,0.23837 0.15476,0.0806 -0.15741,0.85444 -1.1897,-0.47443 -2.34378,-1.04444 -3.50855,-1.57437 1.86249,2.8232 3.63889,5.70063 5.53272,8.50148 0.87585,1.49284 1.47238,2.49156 2.11412,4.20572 0.90544,2.01574 -3.49949,0.84637 -2.45148,2.13665 6.64463,8.29767 16.60828,11.97794 26.74147,14.50658 -3.90063,1.94792 -8.46219,2.57711 -11.51525,5.78008 -0.30113,0.33164 -0.14728,0.0921 -0.35986,0.31436 -0.39036,0.75656 -0.60927,1.27981 -1.95669,3.44111 -4.04107,-3.65253 -7.56049,-7.84016 -11.80763,-11.26791 -5.73621,-4.67323 -12.12676,-7.36573 -18.86972,-10.39067 -3.54007,-1.64358 -7.52432,-3.39194 -9.37864,-7.03962 -1.38138,-3.56824 -1.68227,-7.43091 -2.02416,-11.20043 -13.04578,-6.37772 -26.63659,-11.58596 -40.14595,-16.86801 -16.51093,-6.04527 -33.32274,-12.23012 -51.00899,-13.49449 -17.11965,-1.66695 -34.53828,5.29022 -46.48833,17.49789 -14.72216,14.58637 -20.98593,36.15513 -15.33869,56.15932 4.36889,18.4168 18.41521,31.85557 36.23258,38.25666 7.71695,2.87985 15.99607,3.96068 24.20002,3.91346 33.94898,-0.023 68.16822,4.06627 100.51108,14.68644 15.13552,5.07604 29.74082,11.95238 42.86733,21.07384 A 230.30508,230.30508 0 0 0 478.61017,247.69492 230.30508,230.30508 0 0 0 248.30508,17.389831 Z M 94.648411,76.518013 A 230.30508,230.30508 0 0 0 45.303748,139.13221 c 5.739606,-0.99607 11.490174,-1.98546 17.227899,-2.9463 63.084253,-10.19883 127.135323,-13.13326 190.968793,-12.5948 0.72581,3.93798 1.63402,7.85731 2.51897,11.7626 -26.47084,-2.65496 -53.11456,-3.50651 -79.70715,-3.3286 -44.27535,0.97995 -88.445539,4.64191 -132.402938,10.00837 A 230.30508,230.30508 0 0 0 18,247.69492 230.30508,230.30508 0 0 0 248.30508,478 230.30508,230.30508 0 0 0 441.79284,372.15858 c -1.51353,-1.94539 -2.92982,-3.99038 -4.54313,-5.82511 -9.34182,-12.00615 -21.70523,-21.31093 -34.79315,-28.87807 -24.92558,-14.25393 -54.48386,-18.78863 -82.85586,-16.50815 -23.54421,2.71587 -47.70324,-7.53524 -63.22144,-25.21219 -7.73568,-8.66281 -13.43176,-16.7973 -16.62066,-27.95593 -2.93593,-12.46987 -3.64224,-24.53682 -0.24735,-36.99724 2.78148,-12.17946 9.27894,-23.27993 17.63274,-32.47659 5.86732,-6.21858 12.57251,-11.79692 20.33162,-15.49619 -7.29075,-12.33399 -12.43521,-25.82791 -16.48571,-39.53867 -2.15399,-7.32358 -3.08797,-14.92077 -4.85799,-22.33326 -0.24815,-1.2129 -1.63863,-1.50158 -2.51896,-2.09163 -6.81322,-3.41369 -13.65442,-6.75565 -20.66898,-9.73856 -4.69199,-2.13528 -9.80425,-3.07216 -14.52902,-5.12786 -7.72637,-2.28037 -15.35021,-4.90135 -23.1655,-6.88221 -4.67793,-1.20334 -9.08079,-3.29843 -13.78682,-4.40815 -9.72111,-2.47244 -19.35862,-5.44545 -29.32791,-6.747249 -19.00531,-4.087915 -38.21675,-7.004268 -57.486309,-9.423508 z M 257.66123,140.88644 c 0.79605,3.79762 1.89745,7.51889 3.05874,11.22288 -60.55564,3.09991 -119.79647,19.20088 -175.697592,42.19259 -8.597289,3.40425 -16.875273,7.53477 -25.369544,11.17785 7.529652,-4.73875 15.543283,-8.60512 23.480323,-12.59481 22.350153,-11.182 45.548333,-20.65997 69.181483,-28.76556 34.18783,-11.318 69.43558,-19.85679 105.34659,-23.23295 z m 71.20566,11.80763 c 14.8954,3.61026 29.09,9.77564 42.66491,16.82309 16.10822,8.42399 31.01164,19.15505 43.99186,31.89185 2.56608,2.68777 5.86186,4.83007 7.66935,8.16408 -1.60614,-0.24873 -3.67521,0.78304 -4.92547,-0.58497 -4.75286,-5.97504 -10.24917,-11.34115 -16.12586,-16.21579 -16.24869,-13.36425 -34.71905,-23.84175 -53.95526,-32.25169 -6.29812,-2.96886 -12.97927,-4.97505 -19.31953,-7.8268 z m 66.03278,172.52637 c 15.94432,8.18988 29.8852,19.95605 41.31547,33.71367 2.79603,3.06191 5.32736,6.32338 7.75931,9.67097 a 230.30508,230.30508 0 0 0 12.14499,-22.28835 c -8.13258,-4.82949 -16.77755,-8.77773 -25.68442,-11.96504 -11.54266,-4.03172 -23.37927,-7.56724 -35.53535,-9.13125 z"
style="fill:#cccccc;stroke-width:11.51525402" />
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg14"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata20">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs18" />
<path
style="opacity:1;fill:#2777ff;fill-opacity:1;stroke-width:28.6873"
d="M 247.5,476.39 A 229.5,229.50001 0 0 0 477,246.88999 229.5,229.50001 0 0 0 247.5,17.39 229.5,229.50001 0 0 0 18,246.89 229.5,229.50001 0 0 0 247.5,476.39 Z"
id="circle2" />
<path
id="circle4"
d="M 247.3553,16.835017 A 230.30508,230.30508 0 0 0 99.591209,70.790316 c 9.350431,0.728916 18.684001,1.579202 28.000951,2.653921 7.32362,0.879765 14.66196,1.618239 21.90597,3.013657 7.57179,1.681112 15.31909,2.461962 22.89556,4.138352 17.4334,3.226344 34.67822,7.50887 51.52628,13.06705 4.66857,1.01219 8.84261,3.35589 13.31451,4.94799 9.5666,3.825714 18.8864,8.353284 27.48366,14.056794 -1.95263,13.67321 -2.87925,28.64707 3.86841,41.24798 3.69458,7.38911 10.01902,13.45224 17.7452,16.46313 11.20083,4.82789 23.70236,3.22888 35.53534,3.82353 10.74193,1.94319 20.82626,6.34479 30.99223,10.16578 4.03642,1.56861 7.98675,3.30798 12.03254,4.85794 0.0518,-1.32518 0.114,-2.6378 0.17998,-3.95837 4.54683,5.33352 10.62158,9.23604 17.09296,11.8302 -0.36526,-2.25239 -0.8025,-4.48174 -1.2145,-6.7248 3.14674,2.9547 6.10825,6.12024 9.31116,9.01886 2.93133,2.40209 6.1814,4.36993 9.46861,6.25233 -0.009,-3.10452 -0.55492,-6.15871 -0.96706,-9.22119 4.90738,5.57235 10.23725,10.74765 15.0463,16.41822 3.8257,0.0576 7.65302,0.11515 11.49276,0.17964 0.28305,0.48709 0.63265,0.93389 0.92214,1.41695 10e-6,-0.31552 -7.7e-4,-0.62988 0,-0.94425 8.66785,9.03095 -0.24297,-0.32934 7.93923,8.25413 0.22754,0.23837 0.15476,0.0806 -0.15741,0.85444 -1.1897,-0.47443 -2.34378,-1.04444 -3.50855,-1.57437 1.86249,2.8232 3.63889,5.70063 5.53272,8.50148 0.87585,1.49284 1.47238,2.49156 2.11412,4.20572 0.90544,2.01574 -3.49949,0.84637 -2.45148,2.13665 6.64463,8.29767 16.60828,11.97794 26.74147,14.50658 -3.90063,1.94792 -8.46219,2.57711 -11.51525,5.78008 -0.30113,0.33164 -0.14728,0.0921 -0.35986,0.31436 -0.39036,0.75656 -0.60927,1.27981 -1.95669,3.44111 -4.04107,-3.65253 -7.56049,-7.84016 -11.80763,-11.26791 -5.73621,-4.67323 -12.12676,-7.36573 -18.86972,-10.39067 -3.54007,-1.64358 -7.52432,-3.39194 -9.37864,-7.03962 -1.38138,-3.56824 -1.68227,-7.43091 -2.02416,-11.20043 -13.04578,-6.37772 -26.63659,-11.58596 -40.14595,-16.86801 -16.51093,-6.04527 -33.32274,-12.23012 -51.00899,-13.49449 -17.11965,-1.66695 -34.53828,5.29022 -46.48833,17.49789 -14.72216,14.58637 -20.98593,36.15513 -15.33869,56.15932 4.36889,18.4168 18.41521,31.85557 36.23258,38.25666 7.71695,2.87985 15.99607,3.96068 24.20002,3.91346 33.94898,-0.023 68.16822,4.06627 100.51108,14.68644 15.13552,5.07604 29.74082,11.95238 42.86733,21.07384 A 230.30508,230.30508 0 0 0 477.66039,247.14011 230.30508,230.30508 0 0 0 247.3553,16.835017 Z M 93.69863,75.963199 A 230.30508,230.30508 0 0 0 44.353967,138.5774 c 5.739606,-0.99607 11.490174,-1.98546 17.227899,-2.9463 63.084254,-10.19883 127.135324,-13.13326 190.968794,-12.5948 0.72581,3.93798 1.63402,7.85731 2.51897,11.7626 -26.47084,-2.65496 -53.11456,-3.50651 -79.70715,-3.3286 -44.27535,0.97995 -88.44554,4.64191 -132.402939,10.00837 A 230.30508,230.30508 0 0 0 17.050219,247.14011 230.30508,230.30508 0 0 0 247.3553,477.44519 230.30508,230.30508 0 0 0 440.84306,371.60377 c -1.51353,-1.94539 -2.92982,-3.99038 -4.54313,-5.82511 -9.34182,-12.00615 -21.70523,-21.31093 -34.79315,-28.87807 -24.92558,-14.25393 -54.48386,-18.78863 -82.85586,-16.50815 -23.54421,2.71587 -47.70324,-7.53524 -63.22144,-25.21219 -7.73568,-8.66281 -13.43176,-16.7973 -16.62066,-27.95593 -2.93593,-12.46987 -3.64224,-24.53682 -0.24735,-36.99724 2.78148,-12.17946 9.27894,-23.27993 17.63274,-32.47659 5.86732,-6.21858 12.57251,-11.79692 20.33162,-15.49619 -7.29075,-12.33399 -12.43521,-25.82791 -16.48571,-39.53867 -2.15399,-7.32358 -3.08797,-14.92077 -4.85799,-22.33326 -0.24815,-1.2129 -1.63863,-1.50158 -2.51896,-2.09163 -6.81322,-3.41369 -13.65442,-6.75565 -20.66898,-9.73856 -4.69199,-2.13528 -9.80425,-3.07216 -14.52902,-5.12786 -7.72637,-2.28037 -15.35021,-4.901354 -23.1655,-6.882214 -4.67793,-1.20334 -9.08079,-3.29843 -13.78682,-4.40815 -9.72111,-2.47244 -19.35862,-5.44545 -29.32791,-6.747249 -19.00531,-4.087915 -38.21675,-7.004268 -57.48631,-9.423508 z m 163.01282,64.368431 c 0.79605,3.79762 1.89745,7.51889 3.05874,11.22288 -60.55564,3.09991 -119.79647,19.20088 -175.697593,42.19259 -8.597289,3.40425 -16.875273,7.53477 -25.369544,11.17785 7.529652,-4.73875 15.543283,-8.60512 23.480323,-12.59481 22.350154,-11.182 45.548334,-20.65997 69.181484,-28.76556 34.18783,-11.318 69.43558,-19.85679 105.34659,-23.23295 z m 71.20566,11.80763 c 14.8954,3.61026 29.09,9.77564 42.66491,16.82309 16.10822,8.42399 31.01164,19.15505 43.99186,31.89185 2.56608,2.68777 5.86186,4.83007 7.66935,8.16408 -1.60614,-0.24873 -3.67521,0.78304 -4.92547,-0.58497 -4.75286,-5.97504 -10.24917,-11.34115 -16.12586,-16.21579 -16.24869,-13.36425 -34.71905,-23.84175 -53.95526,-32.25169 -6.29812,-2.96886 -12.97927,-4.97505 -19.31953,-7.8268 z m 66.03278,172.52637 c 15.94432,8.18988 29.8852,19.95605 41.31547,33.71367 2.79603,3.06191 5.32736,6.32338 7.75931,9.67097 a 230.30508,230.30508 0 0 0 12.14499,-22.28835 c -8.13258,-4.82949 -16.77755,-8.77773 -25.68442,-11.96504 -11.54266,-4.03172 -23.37927,-7.56724 -35.53535,-9.13125 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:11.5153" />
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg6"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata12">
<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="defs10">
<style
id="current-color-scheme"
type="text/css">
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
</style>
</defs>
<g
transform="matrix(31.476997,0,0,31.476997,-2.680388,-2.7820803)"
id="g7"
style="fill:#cccccc">
<path
d="M 2,1 C 1.446,1 1,1.446 1,2 v 12 c 0,0.554 0.446,1 1,1 H 5 V 5 h 5 V 1 Z m 9,0 v 14 h 3 c 0.554,0 1,-0.446 1,-1 V 2 C 15,1.446 14.554,1 14,1 Z M 6,6 v 9 h 4 V 6 Z"
style="color:#dfdfdf;fill:#cccccc"
class="ColorScheme-Text"
id="path5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg6"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata12">
<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="defs10">
<style
id="current-color-scheme"
type="text/css">
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
</style>
</defs>
<g
transform="matrix(31.476997,0,0,31.476997,-2.680388,-2.7820803)"
id="g7"
style="fill:#32c05c;fill-opacity:1">
<path
d="M 2,1 C 1.446,1 1,1.446 1,2 v 12 c 0,0.554 0.446,1 1,1 H 5 V 5 h 5 V 1 Z m 9,0 v 14 h 3 c 0.554,0 1,-0.446 1,-1 V 2 C 15,1.446 14.554,1 14,1 Z M 6,6 v 9 h 4 V 6 Z"
style="color:#dfdfdf;fill:#32c05c;fill-opacity:1"
class="ColorScheme-Text"
id="path5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
id="rect4"
d="M 46.379661,24.40678 C 33.981329,24.40678 24,34.388109 24,46.786441 V 449.62034 C 24,462.01867 33.981329,472 46.379661,472 H 449.21356 c 12.39833,0 22.37966,-9.98133 22.37966,-22.37966 V 46.786441 c 0,-12.398332 -9.98133,-22.379661 -22.37966,-22.379661 z m 123.088139,111.89831 92.57837,104.16154 97.64874,-104.16154 11.18984,11.18983 -98.28256,104.83908 54.83455,61.69704 21.06834,-21.06833 78.32882,89.51865 H 68.759322 L 180.65763,248.20339 216.95901,288.54799 240.344,263.61123 147.08814,158.68475 Z m 81.43224,139.17351 -23.31944,24.87119 53.7855,59.75191 23.69098,-23.691 z"
style="fill:#cccccc;stroke-width:11.18983078" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1"
id="svg6"
xmlns:xlink="http://www.w3.org/1999/xlink"
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/">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<g
id="g946"
transform="matrix(0.97173996,0,0,0.97173996,4.043873,36.112138)">
<g
id="layer7"
style="display:none"
transform="translate(-23.75651,-24.84972)">
<rect
transform="translate(-132.5822,958.04022)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5389"
width="1543.4283"
height="483.7439"
x="132.5822"
y="-957.77832" />
</g>
<g
id="layer6"
style="display:none"
transform="translate(-156.33871,933.1905)">
<rect
y="-958.02759"
x="132.65129"
height="484.30399"
width="550.41602"
id="rect5379"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5c201e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c24a46;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5372"
width="501.94415"
height="434.30405"
x="156.12303"
y="-933.02759" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d98d8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5381"
width="24.939611"
height="24.939611"
x="658.02826"
y="-958.04022" />
</g>
<g
id="layer3"
style="display:inline;opacity:1"
transform="translate(37.235605,912.8581)">
<g
id="g2072"
transform="matrix(0.99894325,0,0,0.99894325,-36.551621,-913.90743)"
style="fill:#cccccc;fill-opacity:1">
<g
style="display:none;fill:#cccccc;fill-opacity:1"
transform="matrix(0.09048806,0,0,0.09048806,-14.15991,84.454917)"
id="layer1-3">
<rect
y="-2102.4253"
x="-1045.6049"
height="7145.4614"
width="7947.0356"
id="rect995"
style="opacity:1;fill:#cccccc;fill-opacity:1;stroke-width:10.3605" />
</g>
<g
transform="translate(-156.48372,537.56136)"
style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1"
id="layer3-6">
<g
style="fill:#cccccc;stroke-width:11.0512;fill-opacity:1"
transform="matrix(0.09048806,0,0,0.09048806,142.32381,-453.10644)"
id="g955">
<g
transform="matrix(11.047619,0,0,11.047619,-1572.2888,9377.7107)"
id="g869"
style="fill:#cccccc;fill-opacity:1">
<g
transform="rotate(-60,226.35754,-449.37199)"
id="g932"
style="fill:#cccccc;stroke-width:11.0512;fill-opacity:1">
<path
id="path3336-6-7"
d="m 449.71876,-420.51322 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.27523 -22.15297,-38.55047 -33.22946,-57.8257 9.35083,-16.29387 18.70167,-32.58775 28.0525,-48.88162 z"
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<path
id="path4260-0-5"
d="m 309.54892,-710.38827 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29391 18.70167,-32.58781 28.0525,-48.88172 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<use
x="0"
y="0"
xlink:href="#path3336-6-7"
id="use3439-6-3"
transform="rotate(60,728.23563,-692.24036)"
width="100%"
height="100%"
style="fill:#cccccc;fill-opacity:1;stroke-width:11.0512" />
<use
x="0"
y="0"
xlink:href="#path3336-6-7"
id="use3449-5-5"
transform="rotate(180,477.5036,-570.81898)"
width="100%"
height="100%"
style="fill:#cccccc;fill-opacity:1;stroke-width:11.0512" />
<use
style="display:inline;fill:#cccccc;fill-opacity:1;stroke-width:11.0512"
x="0"
y="0"
xlink:href="#path4260-0-5"
id="use4354-5-6"
transform="rotate(120,407.33916,-716.08356)"
width="100%"
height="100%" />
<use
style="display:inline;fill:#cccccc;fill-opacity:1;stroke-width:11.0512"
x="0"
y="0"
xlink:href="#path4260-0-5"
id="use4362-2-2"
transform="rotate(-120,407.28823,-715.86995)"
width="100%"
height="100%" />
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -0,0 +1,277 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1"
id="svg6"
xmlns:xlink="http://www.w3.org/1999/xlink"
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/">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10">
<linearGradient
id="linearGradient5562">
<stop
style="stop-color:#699ad7;stop-opacity:1"
offset="0"
id="stop5564" />
<stop
id="stop5566"
offset="0.24345198"
style="stop-color:#7eb1dd;stop-opacity:1" />
<stop
style="stop-color:#7ebae4;stop-opacity:1"
offset="1"
id="stop5568" />
</linearGradient>
<linearGradient
id="linearGradient5053">
<stop
style="stop-color:#415e9a;stop-opacity:1"
offset="0"
id="stop5055" />
<stop
id="stop5057"
offset="0.23168644"
style="stop-color:#4a6baf;stop-opacity:1" />
<stop
style="stop-color:#5277c3;stop-opacity:1"
offset="1"
id="stop5059" />
</linearGradient>
<linearGradient
id="linearGradient5960">
<stop
id="stop5962"
offset="0"
style="stop-color:#637ddf;stop-opacity:1" />
<stop
style="stop-color:#649afa;stop-opacity:1"
offset="0.23168644"
id="stop5964" />
<stop
id="stop5966"
offset="1"
style="stop-color:#719efa;stop-opacity:1" />
</linearGradient>
<linearGradient
y2="515.97058"
x2="282.26105"
y1="338.62445"
x1="213.95642"
gradientTransform="translate(983.36076,293.12113)"
gradientUnits="userSpaceOnUse"
id="linearGradient5855"
xlink:href="#linearGradient5960" />
<linearGradient
xlink:href="#linearGradient5562"
id="linearGradient4328"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(70.650339,-1055.1511)"
x1="200.59668"
y1="351.41116"
x2="290.08701"
y2="506.18814" />
<linearGradient
xlink:href="#linearGradient5053"
id="linearGradient4330"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(864.69589,-1491.3405)"
x1="-584.19934"
y1="782.33563"
x2="-496.29703"
y2="937.71399" />
</defs>
<g
id="g946"
transform="matrix(0.97173996,0,0,0.97173996,4.043873,36.112138)">
<g
id="layer7"
style="display:none"
transform="translate(-23.75651,-24.84972)">
<rect
transform="translate(-132.5822,958.04022)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5389"
width="1543.4283"
height="483.7439"
x="132.5822"
y="-957.77832" />
</g>
<g
id="layer6"
style="display:none"
transform="translate(-156.33871,933.1905)">
<rect
y="-958.02759"
x="132.65129"
height="484.30399"
width="550.41602"
id="rect5379"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5c201e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c24a46;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5372"
width="501.94415"
height="434.30405"
x="156.12303"
y="-933.02759" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d98d8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5381"
width="24.939611"
height="24.939611"
x="658.02826"
y="-958.04022" />
</g>
<g
id="layer1"
style="display:inline"
transform="translate(-156.33871,933.1905)">
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 309.40365,-710.2521 c 40.73228,70.55837 81.46455,141.11673 122.19683,211.6751 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83007 31.20698,-53.66013 46.81047,-80.4902 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29387 18.70167,-32.58773 28.0525,-48.8816 z"
id="path4861" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7ebae4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 353.50926,-797.4433 c -40.73919,70.55437 -81.47837,141.10873 -122.21756,211.6631 -9.51159,-16.12333 -19.02318,-32.24667 -28.53477,-48.37 10.97946,-18.89583 21.95893,-37.79167 32.93839,-56.6875 -21.80507,-0.0573 -43.61014,-0.1146 -65.41521,-0.1719 -4.64713,-8.0566 -9.29427,-16.1132 -13.9414,-24.1698 4.74546,-8.24033 9.49091,-16.48067 14.23637,-24.721 31.03726,0.098 62.07451,0.19593 93.11177,0.2939 11.15457,-19.2301 22.30914,-38.4602 33.46371,-57.6903 18.78623,-0.0488 37.57247,-0.0977 56.3587,-0.1465 z"
id="use4863" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7ebae4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 362.88537,-628.243 c 81.47146,0.004 162.94293,0.008 244.41439,0.012 -9.20743,16.29893 -18.41486,32.59787 -27.62229,48.8968 -21.854,-0.0606 -43.70799,-0.12113 -65.56199,-0.1817 10.85292,18.91237 21.70584,37.82473 32.55876,56.7371 -4.65366,8.05283 -9.30732,16.10567 -13.96098,24.1585 -9.50907,0.0107 -19.01815,0.0213 -28.52722,0.032 -15.43377,-26.92803 -30.86753,-53.85607 -46.3013,-80.7841 -22.23106,-0.0451 -44.46211,-0.0902 -66.69317,-0.1353 -9.4354,-16.2451 -18.8708,-32.4902 -28.3062,-48.7353 z"
id="use4865" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#7ebae4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 505.14318,-720.9886 c -40.73228,-70.55837 -81.46455,-141.11673 -122.19683,-211.6751 18.71902,-0.1756 37.43804,-0.3512 56.15706,-0.5268 10.87453,18.9564 21.74907,37.9128 32.6236,56.8692 10.95215,-18.8551 21.9043,-37.7102 32.85645,-56.5653 9.30079,0.004 18.60158,0.007 27.90237,0.011 4.76362,8.22987 9.52724,16.45973 14.29086,24.6896 -15.60349,26.83007 -31.20698,53.66013 -46.81047,80.4902 11.07649,19.2752 22.15297,38.5504 33.22946,57.8256 -9.35083,16.29387 -18.70167,32.58773 -28.0525,48.8816 z"
id="use4867" />
<path
id="path4873"
d="m 309.40365,-710.2521 c 40.73228,70.55837 81.46455,141.11673 122.19683,211.6751 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83007 31.20698,-53.66013 46.81047,-80.4902 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29387 18.70167,-32.58773 28.0525,-48.8816 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
id="use4875"
d="m 451.3364,-803.53264 c -81.47147,-0.004 -162.94293,-0.008 -244.4144,-0.012 9.20743,-16.29895 18.41486,-32.5979 27.62229,-48.89685 21.854,0.0606 43.70799,0.12117 65.56199,0.18175 -10.85292,-18.91239 -21.70583,-37.82478 -32.55875,-56.73717 4.65366,-8.05284 9.30731,-16.10567 13.96097,-24.15851 9.50907,-0.0105 19.01815,-0.021 28.52722,-0.0315 15.43377,26.92805 30.86753,53.85609 46.3013,80.78414 22.23106,0.0451 44.46211,0.0902 66.69317,0.13524 9.4354,16.24497 18.87081,32.48993 28.30621,48.7349 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
id="use4877"
d="m 460.87178,-633.8425 c 40.73919,-70.55435 81.47838,-141.10869 122.21757,-211.66304 9.51159,16.12334 19.02318,32.24669 28.53477,48.37003 -10.97946,18.89584 -21.95893,37.79167 -32.93839,56.68751 21.80507,0.0573 43.61013,0.11453 65.4152,0.1718 4.64713,8.0566 9.29427,16.1132 13.9414,24.1698 -4.74545,8.24037 -9.49091,16.48073 -14.23636,24.7211 -31.03726,-0.098 -62.07451,-0.196 -93.11177,-0.294 -11.15457,19.23013 -22.30914,38.46027 -33.46371,57.6904 -18.78624,0.0488 -37.57247,0.0976 -56.35871,0.1464 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5277c3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<g
id="layer2"
style="display:none"
transform="translate(72.039038,-1799.4476)">
<path
d="M 460.60629,594.72881 209.74183,594.7288 84.309616,377.4738 209.74185,160.21882 l 250.86446,1e-5 125.43222,217.255 z"
id="path6032"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.236;fill:#4e4d52;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
transform="translate(0,-308.26772)"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#4e4d52;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path5875"
d="m 385.59154,773.06721 -100.83495,0 -50.41747,-87.32564 50.41748,-87.32563 100.83495,10e-6 50.41748,87.32563 z" />
<path
id="path5851"
d="m 1216.5591,630.26623 c 41.0182,76.04675 82.0363,152.09355 123.0545,228.14035 -14.2269,-0.4205 -28.4538,-0.8411 -42.6807,-1.2616 -14.4941,-26.5908 -28.9882,-53.1817 -43.4823,-79.7725 -13.2169,26.7756 -26.4337,53.5511 -39.6506,80.3267 -10.8958,-6.5995 -21.7917,-13.1989 -32.6875,-19.7984 17.8246,-33.4283 35.6491,-66.8565 53.4737,-100.2848 -12.3719,-24.6298 -24.7438,-49.2597 -37.1157,-73.88955 6.3629,-11.1534 12.7257,-22.3068 19.0886,-33.4602 z"
style="fill:url(#linearGradient5855);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.415;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c53a3a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect5884"
width="48.834862"
height="226.22897"
x="-34.74221"
y="446.17056"
transform="rotate(-30)" />
<path
transform="translate(0,-308.26772)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.509;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path3428"
d="m 251.98568,878.63831 -14.02447,24.29109 h -28.04894 l -14.02447,-24.29109 14.02447,-24.2911 h 28.04894 z" />
<use
x="0"
y="0"
xlink:href="#rect5884"
id="use4252"
transform="rotate(60,268.29786,489.4515)"
width="100%"
height="100%" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:0.650794;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect4254"
width="5.3947482"
height="115.12564"
x="545.71014"
y="467.07007"
transform="rotate(30,575.23539,-154.13386)" />
</g>
</g>
<g
id="layer3"
style="display:inline;opacity:1"
transform="translate(-156.33871,933.1905)">
<path
id="path3336-6"
d="m 309.54892,-710.38827 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.27523 -22.15297,-38.55047 -33.22946,-57.8257 9.35083,-16.29387 18.70167,-32.58775 28.0525,-48.88162 z"
style="opacity:1;fill:url(#linearGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<use
height="100%"
width="100%"
transform="rotate(60,407.11155,-715.78724)"
id="use3439-6"
xlink:href="#path3336-6"
y="0"
x="0" />
<use
height="100%"
width="100%"
transform="rotate(-60,407.31177,-715.70016)"
id="use3445-0"
xlink:href="#path3336-6"
y="0"
x="0" />
<use
height="100%"
width="100%"
transform="rotate(180,407.41868,-715.7565)"
id="use3449-5"
xlink:href="#path3336-6"
y="0"
x="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4330);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 309.54892,-710.38827 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -10.54113,-2.26829 -26.58606,6.01638 -31.9377,-7.5219 -4.39393,-6.91787 -12.57856,-15.53043 -6.85074,-23.97221 8.26178,-12.05394 14.90093,-25.28023 22.52611,-37.79439 6.95986,-11.9674 13.91971,-23.9348 20.87957,-35.9022 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29391 18.70167,-32.58781 28.0525,-48.88172 z"
id="path4260-0" />
<use
height="100%"
width="100%"
transform="rotate(120,407.33916,-716.08356)"
id="use4354-5"
xlink:href="#path4260-0"
y="0"
x="0"
style="display:inline" />
<use
height="100%"
width="100%"
transform="rotate(-120,407.28823,-715.86995)"
id="use4362-2"
xlink:href="#path4260-0"
y="0"
x="0"
style="display:inline" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
id="svg2951"
version="1.1"
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/">
<metadata
id="metadata2956">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(-373.71429,-334.64487)">
<path
d="m 508.01955,445.12312 c 0,7.39385 -3.88782,13.87954 -9.73369,17.5222 -3.16289,1.97619 -6.90102,3.11647 -10.90497,3.11647 -11.39765,0 -20.63865,-9.24088 -20.63865,-20.63867 0,-11.39765 9.241,-20.63865 20.63865,-20.63865 4.00395,0 7.74208,1.14028 10.90497,3.11648 5.84587,3.64264 9.73369,10.12836 9.73369,17.52217 z"
id="path1719"
style="fill:#cccccc;fill-opacity:1;stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
<path
d="m 441.91906,533.16773 c -0.2841,0.48792 -0.57737,0.96533 -0.89038,1.43446 -0.33275,0.50767 -0.68127,1.00612 -1.04691,1.49366 0.31172,-0.53924 0.64314,-1.06531 0.98773,-1.58139 0.30511,-0.45899 0.62209,-0.90877 0.94956,-1.34673 z"
id="path1721"
style="stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
<path
d="m 441.91906,533.16773 c -0.2841,0.48792 -0.57737,0.96533 -0.89038,1.43446 -0.0263,-0.0263 -0.0396,-0.0658 -0.0658,-0.0921 0.30513,-0.45899 0.62209,-0.90745 0.94957,-1.3466 z"
id="path1723"
style="stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
<path
d="m 441.91906,533.16773 c -0.2841,0.48792 -0.57737,0.96533 -0.89038,1.43446 -0.33275,0.50767 -0.68127,1.00612 -1.04691,1.49366 0.31172,-0.53924 0.64314,-1.06531 0.98773,-1.58139 0.30511,-0.45899 0.62209,-0.90877 0.94956,-1.34673 z"
id="path1725"
style="stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
<path
d="m 590.57429,445.12312 v 72.23544 c 0,0.0395 0,0.092 -0.003,0.13156 -0.0658,17.03716 -13.90281,30.82896 -30.95548,30.82896 h -4.01683 c -15.20038,-1.97094 -26.94129,-14.96561 -26.94129,-30.70007 v -63.647 l 30.95812,-8.84634 -31.97449,-9.13514 c -4.15611,-18.40203 -20.60262,-32.14217 -40.26093,-32.14217 -22.79805,0 -41.27731,18.47926 -41.27731,41.27731 v 20.63866 c 0,11.39777 9.24088,20.63866 20.63865,20.63866 17.0966,0 30.95798,13.86151 30.95798,30.95811 v 34.31183 c 0,-6.34642 -1.90912,-12.2466 -5.18551,-17.15591 -5.54916,-8.31998 -15.01979,-13.8022 -25.77247,-13.8022 -10.1594,0 -19.17853,4.89394 -24.82317,12.45546 -0.32748,0.43794 -0.64445,0.88775 -0.94957,1.34674 -0.34591,0.51556 -0.67601,1.04163 -0.98771,1.58137 -4.88353,6.55791 -12.30828,11.11661 -20.81923,12.22069 h -4.01683 c -17.05267,0 -30.88828,-13.7918 -30.95536,-30.82896 -0.002,-0.0395 -0.002,-0.0919 -0.002,-0.13156 V 372.8877 c -7e-4,-17.09646 13.86081,-30.95797 30.95728,-30.95797 9.85506,0 18.63681,4.60499 24.30474,11.78207 14.32197,-7.52534 30.62904,-11.78207 47.93202,-11.78207 56.99112,0 103.19339,46.20227 103.19339,103.19339 z"
id="path1727"
style="fill:#cccccc;fill-opacity:1;stroke-width:0.25799202;stroke-dasharray:none"
transform="matrix(2.2016185,0,0,2.2016185,-450.94333,-398.52814)" />
<line
fill="none"
x1="497.7002"
y1="552.35913"
x2="497.7002"
y2="551.67023"
id="line1729"
style="stroke-width:0.257983;"
transform="matrix(2.2969998,0,0,2.2969998,-497.97909,-443.06706)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 149 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
style="fill:#cccccc;stroke-width:12.04524803"
id="path2"
d="M 247.78132,5.5879095 C 114.74156,5.5879095 6.8763666,113.44105 6.8763666,246.49286 c 0,133.0518 107.8651934,240.90495 240.9049534,240.90495 133.03977,0 240.90496,-107.85315 240.90496,-240.90495 0,-133.05181 -107.86519,-240.9049505 -240.90496,-240.9049505 z m 1.12924,45.4049215 h 0.0241 c 114.62442,0 207.6388,92.931129 207.6388,207.545279 0,114.62257 -93.01679,207.54528 -207.63936,207.54528 -61.89331,0 -117.43815,-27.13687 -155.458982,-70.10709 15.633532,-12.13317 41.800992,-9.17715 74.012402,-5.50515 15.43719,1.75619 33.02807,3.75896 51.1923,4.16416 50.74422,0.29511 105.34254,-8.96649 139.03792,-23.69059 21.78624,-9.55549 35.74434,-15.82818 44.4639,-23.76118 3.14393,-2.57889 4.78715,-6.89266 6.46962,-11.36289 l 1.15273,-3.01131 c 1.4123,-3.61092 3.4436,-11.38445 4.35229,-15.62124 0.40472,-1.85448 0.60841,-3.86182 -0.70573,-4.89338 l -4.70517,0.89376 c -14.78675,8.86651 -51.73275,25.75527 -86.33997,26.44305 -42.87986,0.89617 -129.32229,-43.17378 -138.33213,-47.82807 l -0.894,-1.05877 c -2.16212,-5.15778 -15.09352,-35.86316 -17.83262,-42.32303 62.22094,40.9683 113.78924,63.64191 153.31813,67.16635 43.95311,3.90628 78.241,-20.09424 92.90368,-30.34836 2.86146,-1.95266 5.05552,-3.47963 5.95205,-3.81123 l 0.98806,-1.59973 c -2.44522,-15.45406 -25.51847,-90.21253 -42.88771,-108.17199 -4.81833,-4.92591 -8.63982,-9.70305 -16.42105,-14.28025 C 296.34772,120.74686 147.12517,98.679603 140.12689,97.667803 l -1.15274,0.35293 -0.44699,0.98771 c 0,0 -0.55023,30.979407 -0.61167,34.418327 -5.12043,-1.69429 -21.01428,-6.88916 -43.758119,-13.1274 C 123.83691,83.579442 169.32043,50.992108 248.91061,50.992108 Z M 303.7729,160.83513 c 1.05867,-0.0121 2.1334,-0.0361 3.19951,0 35.20947,1.26475 62.86464,30.92352 61.66133,66.10769 -0.62635,17.02114 -7.80397,32.75224 -20.23225,44.36987 -12.46442,11.6792 -28.66145,17.77373 -45.78136,17.22085 -35.14803,-1.31413 -62.8032,-30.97291 -61.66131,-66.10769 0.60226,-17.04523 7.80107,-32.88353 20.30283,-44.46383 11.67426,-10.94936 26.62479,-16.8884 42.51125,-17.12689 z m -1.69387,18.82069 c -10.2541,0.62395 -19.92649,4.77763 -27.50174,11.8806 -8.63379,8.10524 -13.73489,19.09617 -14.11553,30.98363 -0.81064,24.56146 18.42088,45.22472 42.95826,46.13413 11.92359,0.36859 23.24182,-3.79967 31.94813,-11.88047 8.68221,-8.14258 13.72341,-19.23842 14.092,-31.0777 0.82269,-24.5988 -18.4794,-45.18016 -43.02882,-46.04019 -1.48602,-0.0602 -2.88746,-0.0843 -4.3523,0 z m 11.7159,22.27902 c 10.90577,0 19.69115,5.92686 19.69115,13.22158 0,7.25847 -8.78527,13.22147 -19.69115,13.22147 -10.94238,0 -19.78526,-5.97589 -19.78526,-13.22147 0,-7.29532 8.84336,-13.22158 19.78526,-13.22158 z" />
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<path
style="fill:#72b925;stroke-width:12.04524803;fill-opacity:1"
id="path2"
d="M 247.78132,5.5879095 C 114.74156,5.5879095 6.8763666,113.44105 6.8763666,246.49286 c 0,133.0518 107.8651934,240.90495 240.9049534,240.90495 133.03977,0 240.90496,-107.85315 240.90496,-240.90495 0,-133.05181 -107.86519,-240.9049505 -240.90496,-240.9049505 z m 1.12924,45.4049215 h 0.0241 c 114.62442,0 207.6388,92.931129 207.6388,207.545279 0,114.62257 -93.01679,207.54528 -207.63936,207.54528 -61.89331,0 -117.43815,-27.13687 -155.458982,-70.10709 15.633532,-12.13317 41.800992,-9.17715 74.012402,-5.50515 15.43719,1.75619 33.02807,3.75896 51.1923,4.16416 50.74422,0.29511 105.34254,-8.96649 139.03792,-23.69059 21.78624,-9.55549 35.74434,-15.82818 44.4639,-23.76118 3.14393,-2.57889 4.78715,-6.89266 6.46962,-11.36289 l 1.15273,-3.01131 c 1.4123,-3.61092 3.4436,-11.38445 4.35229,-15.62124 0.40472,-1.85448 0.60841,-3.86182 -0.70573,-4.89338 l -4.70517,0.89376 c -14.78675,8.86651 -51.73275,25.75527 -86.33997,26.44305 -42.87986,0.89617 -129.32229,-43.17378 -138.33213,-47.82807 l -0.894,-1.05877 c -2.16212,-5.15778 -15.09352,-35.86316 -17.83262,-42.32303 62.22094,40.9683 113.78924,63.64191 153.31813,67.16635 43.95311,3.90628 78.241,-20.09424 92.90368,-30.34836 2.86146,-1.95266 5.05552,-3.47963 5.95205,-3.81123 l 0.98806,-1.59973 c -2.44522,-15.45406 -25.51847,-90.21253 -42.88771,-108.17199 -4.81833,-4.92591 -8.63982,-9.70305 -16.42105,-14.28025 C 296.34772,120.74686 147.12517,98.679603 140.12689,97.667803 l -1.15274,0.35293 -0.44699,0.98771 c 0,0 -0.55023,30.979407 -0.61167,34.418327 -5.12043,-1.69429 -21.01428,-6.88916 -43.758119,-13.1274 C 123.83691,83.579442 169.32043,50.992108 248.91061,50.992108 Z M 303.7729,160.83513 c 1.05867,-0.0121 2.1334,-0.0361 3.19951,0 35.20947,1.26475 62.86464,30.92352 61.66133,66.10769 -0.62635,17.02114 -7.80397,32.75224 -20.23225,44.36987 -12.46442,11.6792 -28.66145,17.77373 -45.78136,17.22085 -35.14803,-1.31413 -62.8032,-30.97291 -61.66131,-66.10769 0.60226,-17.04523 7.80107,-32.88353 20.30283,-44.46383 11.67426,-10.94936 26.62479,-16.8884 42.51125,-17.12689 z m -1.69387,18.82069 c -10.2541,0.62395 -19.92649,4.77763 -27.50174,11.8806 -8.63379,8.10524 -13.73489,19.09617 -14.11553,30.98363 -0.81064,24.56146 18.42088,45.22472 42.95826,46.13413 11.92359,0.36859 23.24182,-3.79967 31.94813,-11.88047 8.68221,-8.14258 13.72341,-19.23842 14.092,-31.0777 0.82269,-24.5988 -18.4794,-45.18016 -43.02882,-46.04019 -1.48602,-0.0602 -2.88746,-0.0843 -4.3523,0 z m 11.7159,22.27902 c 10.90577,0 19.69115,5.92686 19.69115,13.22158 0,7.25847 -8.78527,13.22147 -19.69115,13.22147 -10.94238,0 -19.78526,-5.97589 -19.78526,-13.22147 0,-7.29532 8.84336,-13.22158 19.78526,-13.22158 z" />
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1"
id="svg6"
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/">
<metadata
id="metadata12">
<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="defs10" />
<path
id="circle2-5"
d="M 248.06491,3.543497 A 245.38458,245.38578 0 0 0 2.6937594,248.9162 245.38458,245.38578 0 0 0 248.06491,494.28925 245.38458,245.38578 0 0 0 493.43951,248.9162 245.38458,245.38578 0 0 0 248.06491,3.543497 Z m -54.45702,61.376614 c 21.91828,-0.488223 31.10504,4.366142 43.85029,12.154644 19.3706,12.169427 33.10949,31.144715 38.20828,53.050015 5.09536,21.90533 3.56537,38.99994 -2.54424,51.1697 v 0.93863 c -12.23641,24.82604 -32.62812,44.79155 -61.17518,54.52743 l 24.51064,60.83956 c 4.58651,11.19608 8.67104,22.86664 5.10223,33.57587 -3.5688,10.70924 -19.9035,14.1677 -31.62764,2.4858 C 187.50174,310.78275 112.05818,166.68704 106.45054,155.97781 100.8429,145.26858 94.698919,136.46855 94.698919,125.75933 95.214647,109.69548 121.23807,93.139288 133.98333,84.863939 146.72858,76.5886 171.69307,65.406611 193.61478,64.919764 Z m -21.55725,44.521639 c -13.70794,2.41703 -5.53888,32.17548 -2.40672,40.69425 3.56881,9.73554 13.26786,30.13563 23.97429,40.35835 2.54424,2.43423 5.06442,4.4153 8.12437,4.90182 3.05996,0.48821 9.20395,-2.41705 11.75164,-6.31216 2.54424,-3.89408 3.09434,-6.84987 3.09434,-10.74429 a 65.251047,62.308329 0 0 0 -1.06583,-23.36895 c -4.58996,-15.09016 -14.25117,-29.68248 -26.99643,-39.41802 -2.54423,-1.946 -5.63171,-4.3988 -9.20052,-5.37214 -2.92244,-0.91112 -5.29133,-1.08303 -7.25108,-0.73921 z m 198.70157,17.32531 a 45.993002,48.02967 0 0 1 24.98167,12.82612 c 6.13023,5.87034 6.67691,12.27497 4.6312,20.27974 -2.02851,8.0051 -9.2177,25.06225 -14.8391,37.33653 l -14.30273,28.27076 c -27.59812,51.23192 -33.22982,56.58792 -40.89692,53.38594 -9.19708,-3.73556 -6.13367,-54.94309 2.54424,-117.38142 2.54424,-17.07743 6.68378,-25.61338 11.28403,-29.88256 4.59683,-4.26954 18.41479,-6.43592 26.59073,-4.83511 z m -48.14799,184.13052 c 13.54291,-3.73488 19.65597,9.58118 16.85385,19.54123 -0.92829,3.73488 -3.30063,7.05754 -7.04821,9.13248 -3.73728,2.07323 -12.59399,2.05604 -17.73059,-1.67783 -5.13318,-3.73489 -6.0993,-9.92773 -4.69998,-14.90759 1.40964,-4.97986 6.08898,-10.4273 12.62493,-12.08725 z M 145.19173,371.60272 H 351.0103 c 10.96086,0 19.74191,6.88152 19.74191,15.37793 0,8.49643 -8.78105,15.31055 -19.74191,15.31055 H 145.19173 c -10.96086,0 -19.81068,-6.81412 -19.81068,-15.31055 0,-8.49641 8.84982,-15.37793 19.81068,-15.37793 z"
style="fill:#cccccc;stroke-width:30.6731472" />
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="496"
height="496"
version="1"
id="svg6"
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/">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<path
id="circle2-5"
d="M 248.06491,3.543497 A 245.38458,245.38578 0 0 0 2.6937594,248.9162 245.38458,245.38578 0 0 0 248.06491,494.28925 245.38458,245.38578 0 0 0 493.43951,248.9162 245.38458,245.38578 0 0 0 248.06491,3.543497 Z m -54.45702,61.376614 c 21.91828,-0.488223 31.10504,4.366142 43.85029,12.154644 19.3706,12.169427 33.10949,31.144715 38.20828,53.050015 5.09536,21.90533 3.56537,38.99994 -2.54424,51.1697 v 0.93863 c -12.23641,24.82604 -32.62812,44.79155 -61.17518,54.52743 l 24.51064,60.83956 c 4.58651,11.19608 8.67104,22.86664 5.10223,33.57587 -3.5688,10.70924 -19.9035,14.1677 -31.62764,2.4858 C 187.50174,310.78275 112.05818,166.68704 106.45054,155.97781 100.8429,145.26858 94.698919,136.46855 94.698919,125.75933 95.214647,109.69548 121.23807,93.139288 133.98333,84.863939 146.72858,76.5886 171.69307,65.406611 193.61478,64.919764 Z m -21.55725,44.521639 c -13.70794,2.41703 -5.53888,32.17548 -2.40672,40.69425 3.56881,9.73554 13.26786,30.13563 23.97429,40.35835 2.54424,2.43423 5.06442,4.4153 8.12437,4.90182 3.05996,0.48821 9.20395,-2.41705 11.75164,-6.31216 2.54424,-3.89408 3.09434,-6.84987 3.09434,-10.74429 a 65.251047,62.308329 0 0 0 -1.06583,-23.36895 c -4.58996,-15.09016 -14.25117,-29.68248 -26.99643,-39.41802 -2.54423,-1.946 -5.63171,-4.3988 -9.20052,-5.37214 -2.92244,-0.91112 -5.29133,-1.08303 -7.25108,-0.73921 z m 198.70157,17.32531 a 45.993002,48.02967 0 0 1 24.98167,12.82612 c 6.13023,5.87034 6.67691,12.27497 4.6312,20.27974 -2.02851,8.0051 -9.2177,25.06225 -14.8391,37.33653 l -14.30273,28.27076 c -27.59812,51.23192 -33.22982,56.58792 -40.89692,53.38594 -9.19708,-3.73556 -6.13367,-54.94309 2.54424,-117.38142 2.54424,-17.07743 6.68378,-25.61338 11.28403,-29.88256 4.59683,-4.26954 18.41479,-6.43592 26.59073,-4.83511 z m -48.14799,184.13052 c 13.54291,-3.73488 19.65597,9.58118 16.85385,19.54123 -0.92829,3.73488 -3.30063,7.05754 -7.04821,9.13248 -3.73728,2.07323 -12.59399,2.05604 -17.73059,-1.67783 -5.13318,-3.73489 -6.0993,-9.92773 -4.69998,-14.90759 1.40964,-4.97986 6.08898,-10.4273 12.62493,-12.08725 z M 145.19173,371.60272 H 351.0103 c 10.96086,0 19.74191,6.88152 19.74191,15.37793 0,8.49643 -8.78105,15.31055 -19.74191,15.31055 H 145.19173 c -10.96086,0 -19.81068,-6.81412 -19.81068,-15.31055 0,-8.49641 8.84982,-15.37793 19.81068,-15.37793 z"
style="fill:#48b9c7;stroke-width:30.6731472;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
id="circle4"
d="M 248.30508,17.389831 A 230.30508,230.30508 0 0 0 18,247.69492 230.30508,230.30508 0 0 0 248.30508,478 230.30508,230.30508 0 0 0 478.61017,247.69492 230.30508,230.30508 0 0 0 248.30508,17.389831 Z M 110.12203,155.57288 H 386.48814 V 339.81695 H 110.12203 Z m 23.03051,23.03051 V 316.78644 H 363.45763 V 178.60339 Z"
style="fill:#cccccc;stroke-width:11.51525402" />
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
id="path4"
d="m 252.19068,75.20339 c -13.90839,0 -18.04156,17.89693 -34.95718,17.89693 -16.1638,0 -28.20632,-13.42784 -43.24241,-13.42784 -14.66021,0 -24.03971,9.68512 -31.18191,29.81466 0,0 -20.30613,56.65249 -22.93745,64.85343 -0.0408,0.16195 -0.81937,1.85772 -1.04077,2.38766 -0.37593,1.50352 -0.76357,3.00631 -0.38774,4.50994 0,22.17826 88.63684,95.11695 206.29433,95.11695 30.07221,0 74.52635,-6.40925 74.52635,-42.12004 0,-1.23103 -0.0251,-2.53833 -0.1024,-3.85692 l -1.50974,-6.44863 -18.03979,-77.52616 C 375.47704,129.25601 372.10308,121.41846 341.65496,106.50768 318.34903,94.57908 267.2268,75.20339 252.19068,75.20339 Z M 118.83097,176.72823 c -1.64809,3.94468 -6.709,14.95435 -7.571,18.32542 z m -8.12198,19.61109 C 70.505148,198.21386 18,205.70128 18,251.49946 18,326.79886 198.05694,420 340.8999,420 c 109.38763,0 136.82891,-49.19161 136.82891,-87.5868 0,-30.93986 -26.69651,-65.22204 -74.81204,-86.09718 l -0.69388,-2.93861 1.1836,5.53033 c 4.13493,19.92287 4.12221,21.79585 4.12221,24.42717 5e-5,33.83124 -38.42843,52.62965 -88.42347,52.62965 -112.77077,0 -213.06945,-66.16459 -213.06945,-109.76924 0,-6.0144 1.14397,-12.01355 3.77529,-17.65202 z"
style="fill:#cccccc;stroke-width:10.44838238" />
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
version="1.1"
height="496"
width="496"
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/">
<metadata
id="metadata18">
<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="defs16" />
<path
id="path4"
d="m 252.19068,75.20339 c -13.90839,0 -18.04156,17.89693 -34.95718,17.89693 -16.1638,0 -28.20632,-13.42784 -43.24241,-13.42784 -14.66021,0 -24.03971,9.68512 -31.18191,29.81466 0,0 -20.30613,56.65249 -22.93745,64.85343 -0.0408,0.16195 -0.81937,1.85772 -1.04077,2.38766 -0.37593,1.50352 -0.76357,3.00631 -0.38774,4.50994 0,22.17826 88.63684,95.11695 206.29433,95.11695 30.07221,0 74.52635,-6.40925 74.52635,-42.12004 0,-1.23103 -0.0251,-2.53833 -0.1024,-3.85692 l -1.50974,-6.44863 -18.03979,-77.52616 C 375.47704,129.25601 372.10308,121.41846 341.65496,106.50768 318.34903,94.57908 267.2268,75.20339 252.19068,75.20339 Z M 118.83097,176.72823 c -1.64809,3.94468 -6.709,14.95435 -7.571,18.32542 z m -8.12198,19.61109 C 70.505148,198.21386 18,205.70128 18,251.49946 18,326.79886 198.05694,420 340.8999,420 c 109.38763,0 136.82891,-49.19161 136.82891,-87.5868 0,-30.93986 -26.69651,-65.22204 -74.81204,-86.09718 l -0.69388,-2.93861 1.1836,5.53033 c 4.13493,19.92287 4.12221,21.79585 4.12221,24.42717 5e-5,33.83124 -38.42843,52.62965 -88.42347,52.62965 -112.77077,0 -213.06945,-66.16459 -213.06945,-109.76924 0,-6.0144 1.14397,-12.01355 3.77529,-17.65202 z"
style="fill:#ee0000;stroke-width:10.44838238;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="496"
height="496"
viewBox="0 0 131.23333 131.23334"
version="1.1"
id="svg4110"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4107" />
<g
id="layer1">
<g
id="g4141"
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
<g
id="g45"
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
<g
style="fill:none"
id="g1711"
transform="matrix(0.12660227,0,0,0.12660227,-23.031958,18.510873)">
<path
d="M 644.77435,162.61604 C 686.12179,52.775516 627.49022,-83.195048 518.74646,-127.87536 426.99057,-168.71975 309.4092,-143.4284 246.13635,-64.296413 186.85122,5.8665921 173.54302,112.13648 217.99392,193.26493 c 10.66602,20.48373 24.37379,39.40274 40.6814,55.76583 C 337.48425,170.22183 416.29318,91.4129 495.10211,12.60397 544.93592,62.664825 595.2245,112.27265 644.77435,162.61604 Z M 602.2952,236.65112 C 566.53181,200.88772 530.76841,165.12433 495.00502,129.36093 439.01346,185.35249 383.0219,241.34405 327.03034,297.33561 418.48361,341.52679 537.863,315.09365 602.2952,236.65112 Z"
clip-rule="evenodd"
fill="#10b981"
fill-rule="evenodd"
id="path1696"
style="stroke-width:2.42738;fill:#cccccc;fill-opacity:1" />
</g>
</g>
</g>
</g>
<style
id="style2"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
<style
id="style2-3"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="496"
height="496"
viewBox="0 0 131.23333 131.23334"
version="1.1"
id="svg4110"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4107" />
<g
id="layer1">
<g
id="g4141"
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
<g
id="g45"
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
<g
style="fill:none"
id="g1711"
transform="matrix(0.12660227,0,0,0.12660227,-23.031958,18.510873)">
<path
d="M 644.77435,162.61604 C 686.12179,52.775516 627.49022,-83.195048 518.74646,-127.87536 426.99057,-168.71975 309.4092,-143.4284 246.13635,-64.296413 186.85122,5.8665921 173.54302,112.13648 217.99392,193.26493 c 10.66602,20.48373 24.37379,39.40274 40.6814,55.76583 C 337.48425,170.22183 416.29318,91.4129 495.10211,12.60397 544.93592,62.664825 595.2245,112.27265 644.77435,162.61604 Z M 602.2952,236.65112 C 566.53181,200.88772 530.76841,165.12433 495.00502,129.36093 439.01346,185.35249 383.0219,241.34405 327.03034,297.33561 418.48361,341.52679 537.863,315.09365 602.2952,236.65112 Z"
clip-rule="evenodd"
fill="#10b981"
fill-rule="evenodd"
id="path1696"
style="stroke-width:2.42738" />
</g>
</g>
</g>
</g>
<style
id="style2"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
<style
id="style2-3"
type="text/css">
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
</style>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg26"
version="1"
height="496"
width="496"
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/">
<metadata
id="metadata32">
<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="defs30" />
<g
transform="matrix(10.812189,0,0,10.812189,-17.248755,-5.746109)"
style="fill:#cccccc"
id="g857">
<path
style="fill:#cccccc"
d="m 24,4 c -11.045825,4e-7 -20,8.954175 -20,20 0,4.379808 1.4071008,8.430277 3.7949219,11.724609 0.1149929,0.158649 0.2394024,0.292149 0.359375,0.4375 A 20.000237,20.000237 0 0 1 7.390625,35.115234 c 6.897653,0.582772 14.792837,0.862764 21.443359,-0.103515 6.13364,-0.891195 11.594204,-2.853453 14.619141,-6.455078 A 20.000237,20.000237 0 0 1 42.59375,31.3125 c 0.138638,-0.332779 0.278623,-0.663295 0.398438,-1.025391 C 43.646425,28.309918 44,26.196572 44,24 44,12.954174 35.045826,4 24,4 Z m 18.59375,27.3125 c -0.0052,0.01251 -0.0084,0.02659 -0.01367,0.03906 6.95e-4,-5.65e-4 0.0013,-0.0014 0.002,-0.002 a 20.000237,20.000237 0 0 0 0.01172,-0.03711 z m -0.01367,0.03906 c -3.366442,2.738416 -8.35532,4.240932 -13.552734,4.996094 -6.441672,0.935922 -13.913233,0.729468 -20.5449221,0.210938 3.6937301,3.971212 9.5022581,2.417968 15.7656251,2.417968 8.431856,10e-7 15.411489,-0.672354 18.332031,-7.625 z M 8.4824219,36.558594 C 8.3693535,36.437031 8.2633509,36.294232 8.1542969,36.162109 a 20.000237,20.000237 0 0 0 0.2890625,0.394532 c 0.012679,9.94e-4 0.026377,9.61e-4 0.039063,0.002 z M 17.4375,5.5625 c 2.133782,3.7537513 3.977089,5.881941 6.25,10 0.226834,2.625076 1.15362,16.247204 1.25,17.5 -0.674699,-0.05516 -4.266313,-0.412979 -8.769531,-0.880859 -2.455162,-0.255067 -4.985591,-0.546499 -7.0390628,-0.839844 L 5.875,30.5625 c 3.68206,-6.505788 9.530771,-16.708616 11.5625,-25 z m 7.8125,10.625 c -2e-6,0 8.572991,6.746882 12.1875,15 -4.397649,2.168682 -8.452538,1.89 -10.9375,1.875 1.764785,-4.531585 1.762074,-10.670108 -1.25,-16.875 z m 5.9375,3.75 c 1.554725,0.427247 3.32167,0.967464 5,1.5625 3.043774,1.079143 5.871412,2.562787 7.5,4.0625 -0.931183,1.717045 -2.550489,3.769204 -5,5 0.26244,-2.569143 -0.671831,-5.04057 -2.5,-6.875 -1.349885,-1.354503 -3.13082,-2.497478 -5,-3.75 z"
id="path4" />
<path
style="fill:#cccccc;fill-rule:evenodd"
d="M 16.812656,2.7499995 C 13.803001,12.580993 9.354026,21.936745 4.312503,30.875346 L 4,31.500354 4.481746,31.748607 c 0.42292,0.196346 0.979684,0.328379 1.733418,0.479131 0.753737,0.150751 1.680914,0.301003 2.722811,0.449849 2.0838,0.297659 4.624493,0.588632 7.089319,0.844728 4.929656,0.512163 9.556999,0.885636 9.556999,0.885636 l 0.787362,0.06347 -0.06042,-0.787978 c 0,0 -1.220937,-15.884531 -1.448993,-18.494477 l -0.01221,-0.140994 -0.06837,-0.124513 C 23.336723,12.615968 17.724071,3.0217715 16.812656,2.7499995 Z m 0.625005,2.8125337 c 2.133782,3.7537513 3.977164,5.8820608 6.250075,10.0001198 0.226787,2.624442 1.119693,16.174828 1.216009,17.426814 -0.674247,-0.0551 -4.233755,-0.341444 -8.73729,-0.809323 C 13.711297,31.925046 11.182492,31.635449 9.129017,31.342103 8.102283,31.195445 7.193944,31.047255 6.480061,30.904472 6.127835,30.834032 6.120096,30.629217 5.875022,30.562843 9.557138,24.056965 15.406021,13.85397 17.437661,5.5625332 Z"
id="path6" />
<path
style="fill:#cccccc;fill-rule:evenodd"
d="m 27.478027,17.583426 v 0 c 3.14022,2.100471 5.811342,5.3405 7.754784,7.290588 1.943438,1.950093 2.854146,3.869181 2.115503,6.556463 l -0.344242,1.254297 1.223768,-0.440662 c 3.823634,-1.375766 5.640443,-4.041689 6.750397,-6.223085 l 0.312504,-0.625007 -0.625008,-0.625008 c -1.8635,-1.962438 -4.741897,-3.263167 -8.081588,-4.447224 -3.339692,-1.184055 -6.977027,-2.226959 -9.106118,-2.740362 z m 3.730076,2.484624 c 1.554206,0.427137 3.247357,0.93294 4.924987,1.527729 3.04398,1.079215 5.925893,2.46689 7.55441,3.966721 -0.931174,1.717179 -2.351285,3.697732 -4.801083,4.928653 0.262659,-2.569371 -0.869486,-4.734741 -2.697786,-6.569298 -1.349544,-1.354162 -3.111892,-2.601609 -4.980528,-3.853805 z"
id="path8" />
<circle
style="fill:#cccccc;fill-opacity:0"
cx="24.024"
cy="23.976999"
r="20.024"
id="circle10" />
<path
style="fill:#cccccc"
d="m 42.710938,30.572266 c -4.03814,2.864409 -8.807423,4.602678 -13.683594,5.351562 -6.796251,0.959012 -13.718897,0.720882 -20.5390628,0.199219 -0.050037,0.118205 -0.082655,0.233711 -0.1191406,0.349609 a 20.000237,20.000237 0 0 0 15.4335934,7.517578 c 0.172596,-5.61e-4 0.347999,0.0018 0.517578,-0.002 a 20.000237,20.000237 0 0 0 0.578126,-0.01953 c 0.273799,-0.01248 0.539697,-0.03127 0.802734,-0.05273 a 20.000237,20.000237 0 0 0 1.478516,-0.179688 c 0.0939,-0.01565 0.197559,-0.02586 0.289062,-0.04297 A 20.000237,20.000237 0 0 0 42.794922,30.763672 c -0.02981,-0.06384 -0.05123,-0.127387 -0.08398,-0.191406 z"
id="path12" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

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