Separate branded assets from monorepo (#3406)
* remove branded files * use branding repo * include favicons * nixpkg fixup * win fix ico path * fix fmt * skip licensenses for dev builds * review fixup * test * test * ci test * ci test * ci test * fix ci
|
|
@ -0,0 +1,2 @@
|
||||||
|
https://github.com/Keavon/graphite-branded-assets/archive/f8b02e68c92f5bbd27626bdd7a51102303b70a40.tar.gz
|
||||||
|
d06fd7b79fa9b7509c23072fa56745415fdc6eb98575d15214b0acc47ea4dd42
|
||||||
|
|
@ -34,10 +34,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: "latest"
|
node-version: "latest"
|
||||||
|
|
||||||
- name: 🚧 Install Node dependencies
|
- name: 🚧 Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
cd frontend
|
cd frontend
|
||||||
npm ci
|
npm run setup
|
||||||
|
|
||||||
- name: 🦀 Install the latest Rust
|
- name: 🦀 Install the latest Rust
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
|
|
@ -32,10 +32,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: "latest"
|
node-version: "latest"
|
||||||
|
|
||||||
- name: 🚧 Install Node dependencies
|
- name: 🚧 Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
cd frontend
|
cd frontend
|
||||||
npm ci
|
npm run setup
|
||||||
|
|
||||||
- name: 🦀 Install the latest Rust
|
- name: 🦀 Install the latest Rust
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
|
|
@ -59,10 +59,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: "latest"
|
node-version: "latest"
|
||||||
|
|
||||||
- name: 🚧 Install Node dependencies
|
- name: 🚧 Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
cd frontend
|
cd frontend
|
||||||
npm ci
|
npm run setup
|
||||||
|
|
||||||
- name: 🦀 Install the latest Rust
|
- name: 🦀 Install the latest Rust
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
branding/
|
||||||
target/
|
target/
|
||||||
result/
|
result/
|
||||||
*.spv
|
*.spv
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,22 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
brandingTar = pkgs.fetchurl (
|
||||||
|
let
|
||||||
|
lockContent = builtins.readFile "${info.src}/.branding";
|
||||||
|
lines = builtins.filter (s: s != [ ]) (builtins.split "\n" lockContent);
|
||||||
|
url = builtins.elemAt lines 0;
|
||||||
|
hash = builtins.elemAt lines 1;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
url = url;
|
||||||
|
sha256 = hash;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
branding = pkgs.runCommand "${info.pname}-branding" { } ''
|
||||||
|
mkdir -p $out
|
||||||
|
tar -xvf ${brandingTar} -C $out --strip-components 1
|
||||||
|
'';
|
||||||
resourcesCommon = {
|
resourcesCommon = {
|
||||||
pname = "${info.pname}-resources";
|
pname = "${info.pname}-resources";
|
||||||
inherit (info) version src;
|
inherit (info) version src;
|
||||||
|
|
@ -32,7 +48,7 @@ let
|
||||||
npmDeps = pkgs.fetchNpmDeps {
|
npmDeps = pkgs.fetchNpmDeps {
|
||||||
inherit (info) pname version;
|
inherit (info) pname version;
|
||||||
src = "${info.src}/frontend";
|
src = "${info.src}/frontend";
|
||||||
hash = "sha256-UWuJpKNYj2Xn34rpMDZ75pzMYUOLQjPeGuJ/QlPbX9A=";
|
hash = "sha256-D8VCNK+Ca3gxO+5wriBn8FszG8/x8n/zM6/MPo9E2j4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
npmRoot = "frontend";
|
npmRoot = "frontend";
|
||||||
|
|
@ -41,11 +57,17 @@ let
|
||||||
|
|
||||||
nativeBuildInputs = tools.frontend ++ [ pkgs.npmHooks.npmConfigHook ];
|
nativeBuildInputs = tools.frontend ++ [ pkgs.npmHooks.npmConfigHook ];
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
mkdir branding
|
||||||
|
cp -r ${branding}/* branding
|
||||||
|
cp ${info.src}/.branding branding/.branding
|
||||||
|
'';
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
export HOME="$TMPDIR"
|
export HOME="$TMPDIR"
|
||||||
|
|
||||||
pushd frontend
|
pushd frontend
|
||||||
npm run build-native${if dev then "-dev" else ""}
|
npm run native:build-${if dev then "dev" else "production"}
|
||||||
popd
|
popd
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
@ -89,6 +111,11 @@ deps.crane.lib.buildPackage (
|
||||||
{ }
|
{ }
|
||||||
);
|
);
|
||||||
|
|
||||||
|
postUnpack = ''
|
||||||
|
mkdir ./branding
|
||||||
|
cp -r ${branding}/* ./branding
|
||||||
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp target/${if dev then "debug" else "release"}/graphite $out/bin/graphite
|
cp target/${if dev then "debug" else "release"}/graphite $out/bin/graphite
|
||||||
|
|
@ -97,7 +124,7 @@ deps.crane.lib.buildPackage (
|
||||||
cp $src/desktop/assets/*.desktop $out/share/applications/
|
cp $src/desktop/assets/*.desktop $out/share/applications/
|
||||||
|
|
||||||
mkdir -p $out/share/icons/hicolor/scalable/apps
|
mkdir -p $out/share/icons/hicolor/scalable/apps
|
||||||
cp $src/desktop/assets/graphite-icon-color.svg $out/share/icons/hicolor/scalable/apps/
|
cp ${branding}/app-icons/graphite.svg $out/share/icons/hicolor/scalable/apps/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 310 KiB |
|
Before Width: | Height: | Size: 84 KiB |
|
|
@ -1,9 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="1024" height="1024">
|
|
||||||
<path fill="#ffffff" d="M.0007 659.5456c.0027 11.3936.0161 22.786.0834 34.1805.069 11.996.207 23.99.533 35.983.708 26.133 2.246 52.494 6.892 78.337 4.712 26.218 12.404 50.618 24.528 74.438 11.918 23.413 27.489 44.837 46.066 63.413 18.576 18.577 40.001 34.149 63.413 46.066 23.82 12.125 48.22 19.816 74.438 24.529 25.843 4.645 52.204 6.183 78.337 6.892 11.993.325 23.987.463 35.983.532 14.243.084 28.483.084 42.726.084h278c14.243 0 28.483 0 42.726-.084 11.996-.069 23.99-.207 35.983-.532 26.134-.709 52.494-2.247 78.338-6.892 26.217-4.713 50.617-12.404 74.437-24.529 23.413-11.917 44.837-27.489 63.414-46.066 18.576-18.576 34.148-40 46.065-63.413 12.125-23.82 19.816-48.22 24.529-74.438 4.645-25.843 6.183-52.204 6.892-78.337.325-11.993.463-23.987.532-35.983.084-14.243.084-28.483.084-42.726V373c0-14.243 0-28.483-.084-42.726-.069-11.996-.207-23.99-.532-35.983-.709-26.133-2.247-52.494-6.892-78.337-4.713-26.218-12.404-50.618-24.529-74.438-11.917-23.412-27.489-44.837-46.065-63.413-18.577-18.577-40.001-34.149-63.414-46.066-23.82-12.124-48.22-19.816-74.437-24.528-25.844-4.646-52.204-6.184-78.338-6.893-11.993-.325-23.987-.463-35.983-.532C679.483 0 665.243 0 651 0c0 0-275.1519-.002-286.5455.0007-11.3936.0027-22.7861.0161-34.1805.0834-11.996.069-23.99.207-35.983.532-26.133.709-52.494 2.247-78.337 6.893-26.218 4.712-50.618 12.404-74.438 24.528-23.412 11.917-44.837 27.489-63.413 46.066-18.577 18.576-34.148 40.001-46.066 63.413-12.124 23.82-19.816 48.22-24.528 74.438-4.646 25.843-6.184 52.204-6.892 78.337-.326 11.993-.464 23.987-.533 35.983C0 344.517 0 358.757 0 373"/>
|
|
||||||
<path fill="#f1decd" d="m789.9503 428.9507-135.005-233.833c-5.642-8.618-15.035-14.043-25.327-14.632h-270.01c-10.292.589-19.685 6.014-25.327 14.632l-135.036 233.833c-4.619 9.207-4.619 20.026 0 29.233l135.036 233.864c5.642 8.618 15.035 14.043 25.327 14.601h270.01c10.292-.558 19.685-5.983 25.327-14.601l135.036-233.864c4.588-9.207 4.588-20.026-.031-29.233Z"/>
|
|
||||||
<path fill="#3ea8ff" d="m693.8813 243.5087-42.346-73.315h-235.879l200.818 346.301 176.979-100.502-99.572-172.484Z"/>
|
|
||||||
<path fill="#2180ce" d="m552.5523 325.0697-89.373-154.876h-121.148l-37.355 51.832 106.609 184.605 95.604 165.664 142.383-79.732-96.72-167.493Z"/>
|
|
||||||
<path fill="#deba92" d="m800.4283 428.0827-166.532 81.282 205.53 312.542-38.998-393.824Z"/>
|
|
||||||
<path fill="#d49b64" d="m653.4263 499.7547-141.298 81.592 290.098 176.111-148.8-257.703Z"/>
|
|
||||||
<path fill="#473a3a" d="m870.2712 818.8377-.217-2.139c-2.666-29.109-34.565-376.278-34.658-377.766-.713-8.804-3.317-17.36-7.595-25.079-.093-.279-.217-.527-.341-.775l-.186-.465-.093.093-.062-.031.124-.062-36.58-63.364-102.889-178.25c-11.098-19.189-31.558-31-53.723-31h-278.969c-22.134 0-42.594 11.811-53.692 31l-139.5 241.583c-11.067 19.189-11.067 42.811 0 62l139.5 241.583c11.067 19.189 31.527 31 53.692 31h278.969c11.966-.093 23.653-3.689 33.635-10.292l119.629 85.808c-21.607-6.758-43.958-10.757-66.557-11.873-56.141-2.697-220.72-.868-407.402 14.353-76.601 6.231-112.809 24.428-108.593 27.993 10.819 9.238 23.622 12.896 87.42 12.648 56.792-.186 222.115 5.921 272.056 8.99 35.371 2.201 72.571 8.928 99.324 9.207 28.52-.372 56.947-2.542 85.188-6.51 42.594-5.859 99.076-17.67 112.065-33.387 6.851-6.51 10.354-15.841 9.455-25.265Zm-522.939-603.446c5.177-7.905 13.795-12.896 23.25-13.423h247.969c9.424.527 18.011 5.487 23.219 13.361l103.106 178.591c-15.469 16.12-28.892 34.1-39.959 53.506l-76.7869 8.525-45.787 62.248c-22.351-.124-44.64 2.542-66.34 7.874l-174.003-301.413 5.332-9.269Zm23.25 469.774c-9.455-.527-18.073-5.518-23.25-13.423l-124-214.737c-4.247-8.432-4.247-18.414 0-26.846l82.863-143.468 184.76 320.044.124-.062c2.139 3.844 5.084 7.161 8.649 9.765l95.883 68.758-225.029-.031Zm361.956 21.917-179.49-128.743c19.809-4.309 40.021-6.479 60.295-6.479l45.7871-62.217 76.787-8.525c10.106-17.546 22.103-33.945 35.712-48.949l21.793 219.79c-25.792-2.759-50.406 11.439-60.884 35.123Zm-325.841-87.482c4.619 7.223 2.48 16.802-4.712 21.421-7.223 4.619-16.802 2.48-21.421-4.712-.248-.372-.465-.775-.682-1.178l-108.5-187.891c-4.619-7.223-2.48-16.802 4.712-21.421 7.223-4.619 16.802-2.48 21.421 4.712.248.372.465.775.682 1.178l108.5 187.891Z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.1 KiB |
|
|
@ -5,7 +5,7 @@ Comment=Open-source vector & raster graphics editor. Featuring node based proced
|
||||||
Exec=graphite
|
Exec=graphite
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Icon=graphite-icon-color
|
Icon=graphite
|
||||||
Categories=Graphics;VectorGraphics;RasterGraphics;
|
Categories=Graphics;VectorGraphics;RasterGraphics;
|
||||||
Keywords=graphite;editor;vector;raster;procedural;design;
|
Keywords=graphite;editor;vector;raster;procedural;design;
|
||||||
StartupWMClass=rs.graphite.GraphiteEditor
|
StartupWMClass=rs.graphite.Graphite
|
||||||
|
|
@ -5,7 +5,7 @@ use std::path::{Path, PathBuf};
|
||||||
|
|
||||||
use crate::common::*;
|
use crate::common::*;
|
||||||
|
|
||||||
const APP_ID: &str = "rs.graphite.GraphiteEditor";
|
const APP_ID: &str = "rs.graphite.Graphite";
|
||||||
|
|
||||||
const PACKAGE: &str = "graphite-desktop-platform-mac";
|
const PACKAGE: &str = "graphite-desktop-platform-mac";
|
||||||
const HELPER_BIN: &str = "graphite-desktop-platform-mac-helper";
|
const HELPER_BIN: &str = "graphite-desktop-platform-mac-helper";
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ fn main() {
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
{
|
{
|
||||||
let mut res = winres::WindowsResource::new();
|
let mut res = winres::WindowsResource::new();
|
||||||
res.set_icon("../../assets/graphite-icon-color.ico");
|
res.set_icon("../../../branding/app-icons/graphite.ico");
|
||||||
res.compile().expect("Failed to compile Windows resources");
|
res.compile().expect("Failed to compile Windows resources");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
pub(crate) const APP_NAME: &str = "Graphite";
|
pub(crate) const APP_NAME: &str = "Graphite";
|
||||||
pub(crate) const APP_ID: &str = "rs.graphite.GraphiteEditor";
|
pub(crate) const APP_ID: &str = "rs.graphite.Graphite";
|
||||||
|
|
||||||
pub(crate) const APP_DIRECTORY_NAME: &str = "graphite-editor";
|
pub(crate) const APP_DIRECTORY_NAME: &str = "graphite-editor";
|
||||||
pub(crate) const APP_STATE_FILE_NAME: &str = "state.ron";
|
pub(crate) const APP_STATE_FILE_NAME: &str = "state.ron";
|
||||||
|
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
Copyright (c) 2021-2025 Graphite Labs, LLC.
|
|
||||||
|
|
||||||
The design assets in this directory (including SVG code for icons and logos) are NOT licensed under the Apache 2.0 license terms applied to other Graphite source code files. This directory and its entire contents are excluded from the Apache 2.0 source code license, and full copyright is held by the rightsholder for the creative works contained as files herein.
|
|
||||||
|
|
||||||
Parties interested in using Graphite source code in a capacity that deploys the Graphite editor reference frontend are advised to substitute all assets and "Graphite" branding or otherwise arrange written permission from the rightsholder (see https://graphite.rs/contact/ for contact info). The recommended use case for adopting Graphite open source code is to develop one's own unique frontend user interface implementation that integrates Graphite's backend technology.
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
<svg viewBox="0 0 937 240" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
|
||||||
<path d="M934.29,139.3c-3.08,2.94-6.82,5.09-10.91,6.27c-3.49,1.06-7.1,1.63-10.74,1.71c-6.08,0.08-11.98-2.06-16.6-6.02c-4.78-4.01-7.49-10.63-8.14-19.86l48.01-6.02c0-8.68-2.58-15.71-7.73-21.08c-5.16-5.37-12.72-8.06-22.7-8.06c-7.19-0.04-14.29,1.57-20.75,4.72c-6.37,3.07-11.75,7.86-15.54,13.83c-3.91,6.08-5.86,13.46-5.86,22.14c0,8.03,1.76,14.98,5.29,20.83c3.41,5.76,8.38,10.44,14.32,13.51c6.21,3.19,13.11,4.81,20.1,4.72c9.01,0,16.14-2.2,21.41-6.59c5.51-4.74,9.78-10.74,12.45-17.5L934.29,139.3z M891.64,99.01c2.28-3.85,5.26-5.78,8.95-5.78c3.79,0,6.48,1.84,8.06,5.53c1.68,4.2,2.59,8.66,2.69,13.18l-23.6,2.93C888.06,108.15,889.37,102.86,891.64,99.01" />
|
|
||||||
<path d="M844.61,151.33c-7.06,0-10.58-4.34-10.58-13.02v-34.5c0-4.34,2.17-6.51,6.51-6.51h14.65v-8.62h-21.16c0-4.12,0.05-8.19,0.16-12.21c0.11-4.01,0.59-11.63,0.91-15.76l-25.49,11.81v16.16h-9.77v8.62h9.77v44.27c0,7.16,2.01,13.02,6.02,17.58c4.01,4.56,9.87,6.83,17.58,6.84c4.07,0.13,8.11-0.71,11.8-2.44c3.03-1.49,5.72-3.6,7.89-6.18c1.98-2.37,3.62-5,4.88-7.81l-2.6-2.6C852.42,149.81,848.59,151.4,844.61,151.33" />
|
|
||||||
<path d="M783.25,154.67c-0.64-2.97-0.91-6-0.81-9.03v-38.9c0-5.21,0.08-9.52,0.24-12.94s0.3-5.94,0.41-7.57l-0.98-0.98l-35.48,16.44l1.63,3.74c1.09-0.4,2.2-0.73,3.34-0.98c0.94-0.21,1.89-0.31,2.85-0.32c0.97-0.07,1.92,0.22,2.69,0.81c0.59,0.54,0.89,1.63,0.9,3.26v37.43c0.08,3.03-0.14,6.05-0.65,9.03c-0.44,2.01-1.2,3.34-2.28,3.99c-1.35,0.73-2.86,1.12-4.39,1.14v3.74h41.5v-3.74c-2.06,0-4.1-0.39-6.02-1.14C784.64,157.85,783.56,156.38,783.25,154.67 M771.04,77.28c3.74,0.07,7.35-1.44,9.93-4.15c2.64-2.59,4.11-6.15,4.07-9.85c0.03-3.72-1.44-7.3-4.07-9.93c-2.56-2.75-6.17-4.29-9.93-4.23c-3.81-0.09-7.48,1.45-10.09,4.23c-2.64,2.63-4.1,6.21-4.07,9.93c0.02,7.75,6.32,14.02,14.07,14C770.98,77.29,771.01,77.29,771.04,77.28" />
|
|
||||||
<path d="M732.15,154.68c-0.64-2.97-0.91-6-0.81-9.03v-39.22c0-7.05-1.57-12.18-4.72-15.38c-3.15-3.2-8.08-4.8-14.81-4.8c-4.06,0.01-8.07,0.84-11.8,2.44c-3.08,1.21-6.03,2.75-8.79,4.57c-3.07,2.01-5.99,4.25-8.71,6.72V61.55c0-5.21,0.08-9.52,0.24-12.94c0.16-3.42,0.3-5.94,0.41-7.57L682.11,40l-35.45,16.42l1.66,3.82c1.09-0.4,2.2-0.73,3.34-0.98c0.94-0.21,1.89-0.32,2.85-0.33c0.96-0.07,1.92,0.22,2.68,0.81c0.6,0.55,0.9,1.63,0.9,3.26v82.63c0.08,3.03-0.14,6.05-0.65,9.03c-0.43,2.01-1.19,3.34-2.28,3.99c-1.35,0.73-2.86,1.12-4.4,1.14v3.74h41.5v-3.74c-2.06,0-4.1-0.38-6.02-1.14c-1.54-0.81-2.62-2.28-2.93-3.99c-0.64-2.97-0.91-6-0.82-9.03v-37.92c2.72-1.87,5.71-3.29,8.87-4.23c2.26-0.61,4.58-0.94,6.92-0.98c3.79,0,6.18,1,7.16,3.01c1.06,2.43,1.56,5.08,1.46,7.73v32.39c0.08,3.03-0.14,6.05-0.65,9.03c-0.43,2.01-1.19,3.34-2.28,3.99c-1.35,0.73-2.86,1.12-4.4,1.14v3.74h41.5v-3.74c-2.06,0-4.1-0.38-6.02-1.14c-1.54-0.81-2.62-2.28-2.93-3.99" />
|
|
||||||
<path d="M624.97,90.71c-4.3-2.92-9.37-4.48-14.57-4.48c-5.74-0.16-11.38,1.43-16.19,4.56c-4.26,2.76-7.67,6.65-9.85,11.23h-0.32c0-3.26,0.12-6.35,0.39-9.49c0.14-2.07,0.38-4.14,0.73-6.18l-0.98-0.98l-33.84,15.68l1.63,3.74c1.49-0.4,3.02-0.62,4.56-0.65c0.97-0.07,1.92,0.22,2.69,0.81c0.6,0.54,0.9,1.63,0.9,3.25v73.9c0.08,3.02-0.14,6.05-0.65,9.03c-0.43,2.01-1.19,3.34-2.28,3.99c-1.35,0.72-2.86,1.11-4.39,1.14V200h43.12v-3.74c-2.46,0.01-4.9-0.38-7.24-1.14c-1.71-0.68-2.96-2.18-3.33-3.99c-0.64-2.97-0.91-6-0.81-9.03v-16.76c1.52,0.22,3.17,0.38,4.96,0.49s3.77,0.16,5.94,0.16c5.18-0.03,10.33-0.8,15.3-2.28c5.21-1.52,10.1-4.01,14.4-7.32c4.5-3.5,8.15-7.98,10.66-13.1c2.71-5.37,4.07-11.96,4.07-19.78c0-7.81-1.36-14.49-4.07-20.02C633.4,98.33,629.66,93.92,624.97,90.71 M608.94,150.61c-3.26,5.04-7.27,7.57-12.04,7.57c-5.21,0-9.33-2.39-12.37-7.16v-43.3c1.7-1.75,3.75-3.11,6.02-3.99c2.03-0.79,4.18-1.2,6.35-1.22c4.77,0,8.79,2.31,12.04,6.92c3.26,4.61,4.88,11.64,4.88,21.08C613.82,138.86,612.19,145.57,608.94,150.61" />
|
|
||||||
<path d="M541.31,150.61c-1.17,0.45-2.41,0.7-3.66,0.73c-1.95,0-3.25-0.68-3.91-2.03c-0.74-1.83-1.07-3.81-0.98-5.78v-35.48c0-12.25-7.16-19.5-19.95-21.8c-8.97-1.62-19.39-1.04-28.28,0.57c-5.06,0.92-10.37,2.79-13.57,5.49v23.95h3.71c0.91-5.48,3.36-10.58,7.07-14.72c3.2-3.81,7.96-5.97,12.94-5.86c3.8,0,6.75,1.11,8.87,3.34c2.12,2.23,3.17,5.89,3.17,10.99v8.63c-13.78,3.69-23.95,7.76-30.52,12.21s-9.85,10.25-9.85,17.42c-0.06,4.5,1.47,8.88,4.31,12.36c2.87,3.58,7.29,5.37,13.27,5.37c4.5-0.01,8.92-1.16,12.86-3.34c4.18-2.27,7.62-5.69,9.93-9.85h0.33c0.95,3.66,3.1,6.9,6.1,9.2c2.87,2.12,6.97,3.17,12.29,3.17c4.71,0.08,9.34-1.19,13.35-3.66c4.15-2.73,7.43-6.6,9.44-11.15l-2.6-2.6C544.39,148.99,542.93,149.96,541.31,150.61 M506.73,146.3c-1.27,1.36-2.72,2.54-4.31,3.5c-1.74,1.05-3.75,1.58-5.78,1.54c-2.11,0.12-4.16-0.75-5.53-2.36c-1.32-1.63-2.02-3.68-1.95-5.78c0.09-1.95,0.5-3.88,1.22-5.7c1.09-2.66,2.82-5.01,5.05-6.84c2.55-2.28,6.32-4.12,11.31-5.53L506.73,146.3z" />
|
|
||||||
<path d="M440.68,91.63c-4.8,1.93-9.07,4.75-11.91,9.87h-0.33c-0.02-2.98,0.11-5.96,0.41-8.92c0.13-2.13,0.37-4.25,0.73-6.35l-0.98-0.98l-33.85,15.79l1.63,3.74c1.49-0.4,3.02-0.62,4.56-0.65c0.97-0.07,1.92,0.22,2.69,0.82c0.59,0.54,0.89,1.63,0.9,3.25v37.44c0.08,3.03-0.14,6.05-0.65,9.03c-0.43,2.01-1.19,3.34-2.28,3.99c-1.35,0.73-2.86,1.12-4.4,1.14v3.74h43.13v-3.74c-2.46,0.01-4.9-0.38-7.24-1.14c-1.71-0.68-2.97-2.18-3.34-3.99c-0.64-2.97-0.91-6-0.82-9.03v-36.29c2.1-1.79,4.53-3.15,7.16-3.99c2.49-0.72,5.06-1.08,7.65-1.06c2.42,0.01,4.78,0.68,6.84,1.95c2.17,1.3,3.71,5.12,4.48,10h4.1V92.3C455.3,89.03,446.61,89.25,440.68,91.63" />
|
|
||||||
<path d="M344.13,115.53c2.68,0.05,5.32,0.57,7.81,1.55c1.73,0.81,2.9,2.6,3.5,5.37c0.72,4.38,1.02,8.82,0.9,13.26c0,3.8-0.04,6.29-0.2,9.22c-0.16,2.93-0.39,4.51-1.58,6.47c-1.63,2.71-4.43,4-7.41,4.59c-2.7,0.57-5.46,0.87-8.22,0.9c-6.29,0-12.7-1.98-16.81-5.14c-5.27-4.05-9.38-11.35-12.04-19.92c-2.4-8.27-3.58-16.84-3.51-25.45c0-14.54,4.01-24.17,9.38-31.43c5.46-7.37,14.61-11.25,25-11.89c4.13-0.21,8.27,0.21,12.28,1.25c3.63,1.12,7.4,2.65,10.43,6.07c3.03,3.42,4.67,7.11,6.85,13.4h3.74v-24.9c-4.86-1.84-9.87-3.25-14.97-4.23c-5.73-1.18-11.56-1.78-17.41-1.79c-8.11-0.06-16.17,1.23-23.85,3.82c-7.23,2.44-13.91,6.25-19.69,11.23c-5.77,5.04-10.36,11.29-13.43,18.31c-3.38,7.91-5.05,16.46-4.88,25.07c0,10.96,2.39,20.57,7.16,28.81c4.6,8.07,11.36,14.7,19.53,19.12c8.5,4.57,18.02,6.89,27.67,6.76c7.53,0.11,15.02-0.97,22.22-3.18c5.71-1.74,11.2-4.14,16.36-7.16c3.26-1.87,6.32-4.08,9.11-6.59c-0.63-2.67-1.01-5.4-1.14-8.14c-0.11-2.61-0.16-5.37-0.16-8.3v-9.44c0-2.82,0.3-4.77,0.9-5.86c0.66-1.12,1.87-1.81,3.17-1.79v-3.74h-40.7V115.53z" />
|
|
||||||
<path d="M231.18,218.98l-0.07-0.69c-0.86-9.39-11.15-121.38-11.18-121.86c-0.23-2.84-1.07-5.6-2.45-8.09c-0.03-0.09-0.07-0.17-0.11-0.25l-0.06-0.15l-0.03,0.03l-0.02-0.01l0.04-0.02L205.5,67.5L172.31,10c-3.58-6.19-10.18-10-17.33-10H64.99c-7.14,0-13.74,3.81-17.32,10l-45,77.93c-3.57,6.19-3.57,13.81,0,20l45,77.93c3.57,6.19,10.17,10,17.32,10h89.99c3.86-0.03,7.63-1.19,10.85-3.32l38.59,27.68c-6.97-2.18-14.18-3.47-21.47-3.83c-18.11-0.87-71.2-0.28-131.42,4.63c-24.71,2.01-36.39,7.88-35.03,9.03c3.49,2.98,7.62,4.16,28.2,4.08c18.32-0.06,71.65,1.91,87.76,2.9c11.41,0.71,23.41,2.88,32.04,2.97c9.2-0.12,18.37-0.82,27.48-2.1c13.74-1.89,31.96-5.7,36.15-10.77C230.34,225.03,231.47,222.02,231.18,218.98z M62.49,24.32c1.67-2.55,4.45-4.16,7.5-4.33h79.99c3.04,0.17,5.81,1.77,7.49,4.31l33.26,57.61c-4.99,5.2-9.32,11-12.89,17.26l-24.77,2.75L138.3,122c-7.21-0.04-14.4,0.82-21.4,2.54L60.77,27.31L62.49,24.32z M69.99,175.86c-3.05-0.17-5.83-1.78-7.5-4.33l-40-69.27c-1.37-2.72-1.37-5.94,0-8.66l26.73-46.28l59.6,103.24l0.04-0.02c0.69,1.24,1.64,2.31,2.79,3.15l30.93,22.18L69.99,175.86z M186.75,182.93l-57.9-41.53c6.39-1.39,12.91-2.09,19.45-2.09l14.77-20.07l24.77-2.75c3.26-5.66,7.13-10.95,11.52-15.79l7.03,70.9C198.07,170.71,190.13,175.29,186.75,182.93z M81.64,154.71c1.49,2.33,0.8,5.42-1.52,6.91c-2.33,1.49-5.42,0.8-6.91-1.52c-0.08-0.12-0.15-0.25-0.22-0.38l-35-60.61c-1.49-2.33-0.8-5.42,1.52-6.91c2.33-1.49,5.42-0.8,6.91,1.52c0.08,0.12,0.15,0.25,0.22,0.38L81.64,154.71z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 7.7 KiB |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<rect width="8" height="2" x="2" y="5" />
|
|
||||||
<rect width="2" height="8" x="5" y="2" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 154 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon points="5.19,11.83 0.18,7.44 1.82,5.56 4.81,8.17 10,1.25 12,2.75" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 147 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M4.5,4H10V3H4.5C3.673,3,3,3.673,3,4.5V7H1l2.5,3L6,7H4V4.5C4,4.224,4.224,4,4.5,4z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 163 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon points="10,3 9,2 6,5 3,2 2,3 5,6 2,9 3,10 6,7 9,10 10,9 7,6" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 142 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="m6,1c2.76,0,5,2.24,5,5s-2.24,5-5,5S1,8.76,1,6,3.24,1,6,1m0-1C2.68,0,0,2.69,0,6s2.68,6,6,6,6-2.68,6-6S9.31,0,6,0h0Zm2.47,8.47c.2-.2.2-.51,0-.71l-1.97-1.97v-2.79c0-.28-.22-.5-.5-.5s-.5.22-.5.5v3c0,.13.05.26.15.35l2.12,2.12c.1.1.23.15.35.15s.26-.05.35-.15z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 336 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<circle cx="6" cy="6" r="1.5" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 102 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon points="6,7 2.5,4 2.5,6 6,9 9.5,6 9.5,4" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 122 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M11.4,1.8l-1.2-1.2C9.9,0.2,9.3,0,8.8,0s-1,0.2-1.4,0.6L1.6,6.4c-0.4,0.4-0.7,1-0.8,1.5L0,12l4.1-0.8c0.6-0.1,1.1-0.4,1.5-0.8l5.8-5.8C12.2,3.8,12.2,2.5,11.4,1.8z M4.9,9.7c-0.3,0.3-0.6,0.5-1,0.5l-0.1,0L1.8,8.2l0-0.1c0.1-0.4,0.3-0.7,0.5-1l4-4l2.6,2.6L4.9,9.7z M10.7,3.9L9.6,4.9L7.1,2.4l1.1-1.1C8.3,1.1,8.6,1,8.8,1s0.5,0.1,0.7,0.3l1.2,1.2C11.1,2.9,11.1,3.5,10.7,3.9z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 442 B |
|
|
@ -1,2 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 68 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="m6,1c2.76,0,5,2.24,5,5s-2.24,5-5,5S1,8.76,1,6c0-2.76,2.24-5,5-5m0-1C2.69,0,0,2.69,0,6s2.69,6,6,6,6-2.69,6-6S9.31,0,6,0m2.83,3.88l-.71-.71-2.12,2.12-2.12-2.12-.71.71,2.12,2.12-2.12,2.12.71.71,2.12-2.12,2.12,2.12.71-.71-2.12-2.12,2.12-2.12z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 321 B |
|
|
@ -1,6 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon points="11,8 11,11 8,11 8,12 12,12 12,8" />
|
|
||||||
<polygon points="1,1 4,1 4,0 0,0 0,4 1,4" />
|
|
||||||
<polygon points="4,11 1,11 1,8 0,8 0,12 4,12" />
|
|
||||||
<polygon points="11,1 11,4 12,4 12,0 8,0 8,1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 268 B |
|
|
@ -1,6 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon points="9,12 9,9 12,9 12,8 8,8 8,12" />
|
|
||||||
<polygon points="3,3 0,3 0,4 4,4 4,0 3,0" />
|
|
||||||
<polygon points="0,9 3,9 3,12 4,12 4,8 0,8" />
|
|
||||||
<polygon points="9,3 9,0 8,0 8,4 12,4 12,3" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 260 B |
|
|
@ -1,11 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<rect width="2" height="2" x="1" y="1" />
|
|
||||||
<rect width="2" height="2" x="5" y="1" />
|
|
||||||
<rect width="2" height="2" x="9" y="1" />
|
|
||||||
<rect width="2" height="2" x="1" y="5" />
|
|
||||||
<rect width="2" height="2" x="5" y="5" />
|
|
||||||
<rect width="2" height="2" x="9" y="5" />
|
|
||||||
<rect width="2" height="2" x="1" y="9" />
|
|
||||||
<rect width="2" height="2" x="5" y="9" />
|
|
||||||
<rect width="2" height="2" x="9" y="9" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 455 B |
|
|
@ -1,10 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<rect width="1" height="10" x="1" y="1" />
|
|
||||||
<rect width="1" height="10" x="4" y="1" />
|
|
||||||
<rect width="1" height="10" x="7" y="1" />
|
|
||||||
<rect width="1" height="10" x="10" y="1" />
|
|
||||||
<rect width="10" height="1" x="1" y="1" />
|
|
||||||
<rect width="10" height="1" x="1" y="4" />
|
|
||||||
<rect width="10" height="1" x="1" y="7" />
|
|
||||||
<rect width="10" height="1" x="1" y="10" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 422 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M6,0C2.69,0,0,2.69,0,6s2.69,6,6,6s6-2.69,6-6S9.31,0,6,0z M6.35,11C5.71,11,5.2,10.49,5.2,9.85c0-0.63,0.51-1.15,1.15-1.15c0.63,0,1.15,0.51,1.15,1.15C7.49,10.49,6.98,11,6.35,11z M8.59,5.04C8.2,5.76,7.21,5.98,7.21,6.9v0.99h-1.8V6.9c0-1.89,1.88-1.62,1.88-3.12c0-1.41-2.16-1.88-2.77,0.15L3,3.46C4.25-0.96,10.66,1.2,8.59,5.04z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 402 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon class="bright" points="6,11 10,6 7,6 7,1 5,1 5,6 2,6" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 135 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon class="bright" points="1,6 6,10 6,7 11,7 11,5 6,5 6,2" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 136 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon class="bright" points="11,6 6,2 6,5 1,5 1,7 6,7 6,10" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 135 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon class="bright" points="6,1 2,6 5,6 5,11 7,11 7,6 10,6" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 136 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path class="bright" d="M11,3v6H4.41l-3-3l3-3H11 M12,2H4L0,6l4,4h8V2L12,2z" />
|
|
||||||
<polygon class="bright" points="9.35,4.35 8.65,3.65 7,5.29 5.35,3.65 4.65,4.35 6.29,6 4.65,7.65 5.35,8.35 7,6.71 8.65,8.35 9.35,7.65 7.71,6" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 293 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path class="bright" d="M9,7H8V5h1c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2S7,1.9,7,3v1H5V3c0-1.1-0.9-2-2-2S1,1.9,1,3c0,1.1,0.9,2,2,2h1v2H3C1.9,7,1,7.9,1,9c0,1.1,0.9,2,2,2s2-0.9,2-2V8h2v1c0,1.1,0.9,2,2,2s2-0.9,2-2C11,7.9,10.1,7,9,7z M8,3c0-0.55,0.45-1,1-1s1,0.45,1,1S9.55,4,9,4H8V3z M3,4C2.45,4,2,3.55,2,3s0.45-1,1-1s1,0.45,1,1v1H3z M4,9c0,0.55-0.45,1-1,1S2,9.55,2,9s0.45-1,1-1h1V9z M5,7V5h2v2H5z M9,10c-0.55,0-1-0.45-1-1V8h1c0.55,0,1,0.45,1,1S9.55,10,9,10z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 522 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon points="6,1 1,5 1.6,5.8 6,2.3 10.4,5.8 11,5" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 126 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path class="bright" d="M11,3v2c0,0.55-0.45,1-1,1H3V4L0,6.5L3,9V7h7c1.1,0,2-0.9,2-2V3H11z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 163 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<rect class="bright" x="6" y="3" width="5" height="1" />
|
|
||||||
<polygon class="bright" points="11,9 5.72,9 2.72,4 1,4 1,3 3.28,3 6.28,8 11,8" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 209 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path class="bright" d="M6,0L0,6h3v6h6V6h3L6,0z M8,5v6H4V5H2.41L6,1.41L9.59,5H8z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 154 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path class="bright" d="M11,8v1c0,0.55-0.45,1-1,1H2c-0.55,0-1-0.45-1-1V8H0v1c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V8H11z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 190 B |
|
|
@ -1,6 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon class="bright" points="4,3 4,1 1,3.5 4,6 4,4 12,4 12,3" />
|
|
||||||
<polygon class="bright" points="0,1 0,6 1,6 1,3.5 1,1" />
|
|
||||||
<polygon class="bright" points="8,8 0,8 0,9 8,9 8,11 11,8.5 8,6" />
|
|
||||||
<polygon class="bright" points="11,8.5 11,11 12,11 12,6 11,6" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 331 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="m12,1.63C11.94.7,11.17,0,10.25,0h-6.25C2.9,0,2,.9,2,2v6.5H0v1.75c0,.92.7,1.69,1.62,1.75h6.12c.95-.05,1.7-.8,1.75-1.75v-6.25h2.5V1.63ZM1.63,11c-.37-.06-.63-.38-.62-.75v-.75h5v.75c0,.26.07.52.19.75H1.63Zm6.12,0c-.39-.05-.7-.36-.75-.75v-1.75h-4V2c0-.55.45-1,1-1h4.71c-.14.31-.21.66-.21,1v8.25c-.05.39-.36.7-.75.75m3.25-8h-1.5v-1c0-.3.07-1,.75-1,.37,0,.69.26.75.62v1.37Zm-3.75-.5h-3c-.14,0-.25.11-.25.25s.11.25.25.25h3c.14,0,.25-.11.25-.25s-.11-.25-.25-.25m0,2h-3c-.14,0-.25.11-.25.25s.11.25.25.25h3c.14,0,.25-.11.25-.25s-.11-.25-.25-.25m0,2h-3c-.14,0-.25.11-.25.25s.11.25.25.25h3c.14,0,.25-.11.25-.25s-.11-.25-.25-.25z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 698 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M4.68,9.32L4,10c-0.53,0.53-1.47,0.53-2,0C1.73,9.73,1.59,9.38,1.59,9S1.73,8.27,2,8l2.5-2.5c0.27-0.27,0.62-0.41,1-0.41s0.73,0.15,1,0.41l1-1c-1.07-1.07-2.93-1.07-4,0L1,7C0.47,7.53,0.17,8.24,0.17,9S0.47,10.47,1,11s1.24,0.83,2,0.83S4.47,11.53,5,11l1.27-1.27C5.71,9.7,5.17,9.56,4.68,9.32z" />
|
|
||||||
<path d="M11,1C9.93-0.07,8.07-0.07,7,1L5.7,2.3c0.56,0.03,1.11,0.16,1.61,0.39L8,2c0.27-0.27,0.62-0.41,1-0.41S9.73,1.73,10,2s0.41,0.62,0.41,1S10.27,3.73,10,4L7.5,6.5c-0.53,0.53-1.47,0.53-2,0l-1,1c0.53,0.53,1.24,0.83,2,0.83s1.47-0.29,2-0.83L11,5c0.53-0.53,0.83-1.24,0.83-2S11.53,1.53,11,1z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 657 B |
|
|
@ -1,10 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<rect width="3" height="3" />
|
|
||||||
<rect width="3" height="3" y="9" />
|
|
||||||
<rect width="1" height="4" y="4" />
|
|
||||||
<rect width="4" height="1" x="4" y="11" />
|
|
||||||
<rect width="1" height="4" x="11" y="4" />
|
|
||||||
<rect width="3" height="3" x="9" />
|
|
||||||
<rect width="3" height="3" x="9" y="9" />
|
|
||||||
<rect width="4" height="1" x="4" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 378 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<rect width="8" height="2" x="2" y="5" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 111 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<circle cx="5.75" cy="5.75" r="5.75" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 109 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M5.75,1A4.75,4.75,0,1,0,10.5,5.75,4.755,4.755,0,0,0,5.75,1m0-1A5.75,5.75,0,1,1,0,5.75,5.75,5.75,0,0,1,5.75,0z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 192 B |
|
|
@ -1,54 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<rect x="5" y="2" width="1" height="1" />
|
|
||||||
<rect x="2" y="3" width="1" height="1" />
|
|
||||||
<rect x="0" y="3" width="1" height="1" />
|
|
||||||
<rect x="5" y="6" width="1" height="1" />
|
|
||||||
<rect x="2" y="7" width="1" height="1" />
|
|
||||||
<rect x="0" y="7" width="1" height="1" />
|
|
||||||
<rect x="2" y="9" width="1" height="1" />
|
|
||||||
<rect x="6" y="3" width="1" height="1" />
|
|
||||||
<rect x="8" y="3" width="1" height="1" />
|
|
||||||
<rect x="10" y="3" width="1" height="1" />
|
|
||||||
<rect x="3" y="4" width="1" height="1" />
|
|
||||||
<rect x="1" y="4" width="1" height="1" />
|
|
||||||
<rect x="6" y="7" width="1" height="1" />
|
|
||||||
<rect x="8" y="7" width="1" height="1" />
|
|
||||||
<rect x="10" y="7" width="1" height="1" />
|
|
||||||
<rect x="6" y="9" width="1" height="1" />
|
|
||||||
<rect x="8" y="9" width="1" height="1" />
|
|
||||||
<rect x="7" y="8" width="1" height="1" />
|
|
||||||
<rect x="9" y="8" width="1" height="1" />
|
|
||||||
<rect x="7" y="10" width="1" height="1" />
|
|
||||||
<rect x="3" y="8" width="1" height="1" />
|
|
||||||
<rect x="1" y="8" width="1" height="1" />
|
|
||||||
<rect x="3" y="10" width="1" height="1" />
|
|
||||||
<rect x="5" y="8" width="1" height="1" />
|
|
||||||
<rect x="5" y="10" width="1" height="1" />
|
|
||||||
<rect x="7" y="2" width="1" height="1" />
|
|
||||||
<rect x="9" y="2" width="1" height="1" />
|
|
||||||
<rect x="8" y="1" width="1" height="1" />
|
|
||||||
<rect x="4" y="3" width="1" height="1" />
|
|
||||||
<rect x="7" y="6" width="1" height="1" />
|
|
||||||
<rect x="9" y="6" width="1" height="1" />
|
|
||||||
<rect x="4" y="7" width="1" height="1" />
|
|
||||||
<rect x="4" y="9" width="1" height="1" />
|
|
||||||
<rect x="6" y="1" width="1" height="1" />
|
|
||||||
<rect x="3" y="2" width="1" height="1" />
|
|
||||||
<rect x="1" y="2" width="1" height="1" />
|
|
||||||
<rect x="3" y="0" width="1" height="1" />
|
|
||||||
<rect x="6" y="5" width="1" height="1" />
|
|
||||||
<rect x="8" y="5" width="1" height="1" />
|
|
||||||
<rect x="10" y="5" width="1" height="1" />
|
|
||||||
<rect x="3" y="6" width="1" height="1" />
|
|
||||||
<rect x="1" y="6" width="1" height="1" />
|
|
||||||
<rect x="5" y="0" width="1" height="1" />
|
|
||||||
<rect x="2" y="1" width="1" height="1" />
|
|
||||||
<rect x="5" y="4" width="1" height="1" />
|
|
||||||
<rect x="2" y="5" width="1" height="1" />
|
|
||||||
<rect x="0" y="5" width="1" height="1" />
|
|
||||||
<rect x="7" y="0" width="1" height="1" />
|
|
||||||
<rect x="4" y="1" width="1" height="1" />
|
|
||||||
<rect x="7" y="4" width="1" height="1" />
|
|
||||||
<rect x="9" y="4" width="1" height="1" />
|
|
||||||
<rect x="4" y="5" width="1" height="1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.3 KiB |
|
|
@ -1,7 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M0,11V8.5H1V10H2.5v1z" />
|
|
||||||
<path d="M0,2.5V0H2.5V1H1V2.5z" />
|
|
||||||
<path d="M9.5,11V10H11V8.5h1V11z" />
|
|
||||||
<path d="M11,2.5V1H9.5V0H12V2.5z" />
|
|
||||||
<path d="M5.75,0.75C8.51,0.75 10.75,2.878 10.75,5.5C10.75,8.122 8.51,10.25 5.75,10.25C2.99,10.25 0.75,8.122 0.75,5.5C0.75,2.878 2.99,0.75 5.75,0.75zM2,6L3.333,6L3.5,6.5L3.333,7L2,7L2,8L4,8L4.5,6.5L5,8L6,8L6.571,6.286L7,8L9.5,8L10,6L10,5L8.5,5L8.5,6L9,6L8.75,7L7.75,7L7.5,6L7.833,4L9,4L9,3L6,3L6,5L5.5,6.5L5,5L5,3L2,3L1.5,4.5L2,6zM2.667,4L4,4L4,5L2.667,5L2.5,4.5L2.667,4z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 592 B |
|
|
@ -1,6 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M7.5,7.5L6,9C5.17,9.83,3.83,9.83,3,9S2.17,6.83,3,6l1.5-1.5L3,3L1.5,4.5c-1.66,1.66-1.66,4.34,0,6s4.34,1.66,6,0L9,9L7.5,7.5z" />
|
|
||||||
<polygon points="4,2 5.5,0.5 7,2 5.5,3.5" />
|
|
||||||
<polygon points="8.5,6.5 10,5 11.5,6.5 10,8" />
|
|
||||||
<polygon points="12,0 8.29,1.21 9.29,3.21 7,4 7,5 10.71,3.79 9.71,1.79 12,1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 381 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M9,7l3-3L9,1v2H5v2h4V7z M0,8l3,3V9h4V7H3V5L0,8z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 130 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M7,3L4,0L1,3h2v4h2V3H7z M8,12l3-3H9V5H7v4H5L8,12z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 132 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<circle cx="6" cy="2" r="1.5" />
|
|
||||||
<circle cx="6" cy="6" r="1.5" />
|
|
||||||
<circle cx="6" cy="10" r="1.5" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 171 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M11.9,9.79L6.96,0.58c-0.41-0.77-1.5-0.77-1.92,0L0.1,9.79C-0.19,10.33,0.2,11,0.81,11h10.39C11.8,11,12.19,10.33,11.9,9.79z M6.9,2.5L6.67,7H5.33L5.1,2.5L6.9,2.5z M6,10.3c-0.63,0-1.15-0.51-1.15-1.15C4.85,8.51,5.37,8,6,8c0.63,0,1.15,0.51,1.15,1.15C7.15,9.78,6.63,10.3,6,10.3z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 353 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<polygon points="11,1.7 10.3,1 6,5.3 1.7,1 1,1.7 5.3,6 1,10.3 1.7,11 6,6.7 10.3,11 11,10.3 6.7,6" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 170 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M11,1v10H1V1H11z M10,2H2v8h8V2z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 114 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<rect x="1" y="5" width="10" height="1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 112 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M11,9H9v2H1V3h2V1h8V9z M8,4H2v6h6V4z M10,2H4v1h5v5h1V2z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 138 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
|
|
||||||
<path d="M10,4c0-2.2-1.8-4-4-4S2,1.8,2,4c0,0.7,0.2,1.4,0.6,2C2.2,6.6,2,7.3,2,8c0,2.2,1.8,4,4,4s4-1.8,4-4c0-0.7-0.2-1.4-0.6-2C9.8,5.4,10,4.7,10,4z M6,1c1.7,0,3,1.3,3,3S7.7,7,6,7S3,5.7,3,4S4.3,1,6,1z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 271 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<rect y="15" width="16" height="1" />
|
|
||||||
<rect x="9" y="6" width="5" height="7" />
|
|
||||||
<rect x="2" width="5" height="13" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 188 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<rect x="8" width="1" height="16" />
|
|
||||||
<rect x="5" y="2" width="7" height="5" />
|
|
||||||
<rect x="2" y="9" width="13" height="5" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 193 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<rect width="1" height="16" />
|
|
||||||
<rect x="3" y="2" width="7" height="5" />
|
|
||||||
<rect x="3" y="9" width="13" height="5" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 187 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<rect x="15" width="1" height="16" />
|
|
||||||
<rect x="6" y="2" width="7" height="5" />
|
|
||||||
<rect y="9" width="13" height="5" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 188 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<rect width="16" height="1" />
|
|
||||||
<rect x="9" y="3" width="5" height="7" />
|
|
||||||
<rect x="2" y="3" width="5" height="13" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 187 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<rect y="8" width="16" height="1" />
|
|
||||||
<rect x="9" y="5" width="5" height="7" />
|
|
||||||
<rect x="2" y="2" width="5" height="13" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 193 B |
|
|
@ -1,7 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M13,4H5v1h7v9h1V4z" />
|
|
||||||
<path d="M4,11V2H3v10h8v-1H4z" />
|
|
||||||
<rect x="14" y="11" width="1" height="1" />
|
|
||||||
<rect x="1" y="4" width="1" height="1" />
|
|
||||||
<rect x="5" y="6" width="6" height="4" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 267 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<polygon points="12,4 12,12 4,12 4,16 16,16 16,4" />
|
|
||||||
<polygon points="12,4 12,0 0,0 0,12 4,12 4,4" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 172 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<rect x="4" y="4" width="8" height="8" />
|
|
||||||
<polygon points="13 4 13 12 13 13 12 13 4 13 4 16 16 16 16 4 13 4" />
|
|
||||||
<polygon points="3 3 4 3 12 3 12 0 0 0 0 12 3 12 3 4 3 3" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 244 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M12,4V0H0v12h4v4h12V4H12z M1,11V1h10v3H4v7H1z M15,15H5v-3h7V5h3V15z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 150 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M12,4V0H0v12h4v4h12V4H12z M1,1h10v10H1V1z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 124 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M12,4V0H0v12h4v4h12V4H12z M15,15H5V5h10V15z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 126 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<polygon points="12,4 12,0 0,0 0,12 4,12 4,16 16,16 16,4" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 130 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M15.36,14.58l-.99-.64-.39-1.78-1.99-.99v-1.88l1.55.77,1.77-.88c.25-.12.35-.42.22-.67-.12-.25-.42-.35-.67-.22l-1.32.66-1.55-.77v-1.17c0-.05-.02-.1-.03-.15l1.95-.98,1.07-2.15c.12-.25.02-.55-.22-.67-.25-.12-.55-.02-.67.22l-.93,1.85-1.85.93s0,0-.01.01c-.1-.03-.2-.06-.31-.06h-5c-.1,0-.18.03-.27.06,0,0,0,0,0,0l-1.85-.93-.93-1.85c-.12-.25-.42-.35-.67-.22-.25.12-.35.42-.22.67l1.07,2.15,1.91.95c-.01.06-.03.11-.03.17v1.19l-1.5.75-1.32-.66c-.25-.12-.55-.02-.67.22-.12.25-.02.55.22.67l1.77.88,1.5-.75v1.88l-1.94.97-.38,1.78-.99.64c-.23.15-.3.46-.15.69.1.15.26.23.42.23.09,0,.19-.03.27-.08l1.34-.87.37-1.71,1.16-.58c.31,1.4,1.47,2.48,2.91,2.69v-5.95h1v5.95c1.45-.21,2.61-1.3,2.91-2.71l1.2.6.37,1.71,1.34.87c.08.05.18.08.27.08.16,0,.32-.08.42-.23.15-.23.08-.54-.15-.69z" />
|
|
||||||
<path d="M4.97,1.05c1.34.17,1.81,1.32,1.97,2.01-.57.46-.94,1.15-.94,1.94h5c0-.77-.35-1.45-.9-1.9.15-.68.61-1.87,1.98-2.04.27-.03.47-.28.43-.56-.03-.27-.3-.46-.56-.43-1.66.21-2.45,1.48-2.76,2.55-.22-.06-.45-.11-.69-.11-.23,0-.44.04-.65.1C7.54,1.53,6.74.27,5.09.06c-.28-.03-.52.16-.56.43s.16.52.43.56z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.1 KiB |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<polygon points="7.19,13.83 2.18,9.44 3.82,7.56 6.81,10.17 12,3.25 14,4.75" />
|
|
||||||
<path d="M14,16H2c-1.1,0-2-.9-2-2V2C0,.9,.9,0,2,0H14c1.1,0,2,.9,2,2V14c0,1.1-.9,2-2,2ZM2,1c-.55,0-1,.45-1,1V14c0,.55,.45,1,1,1H14c.55,0,1-.45,1-1V2c0-.55-.45-1-1-1H2z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 320 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M14,16H2c-1.1,0-2-.9-2-2V2C0,.9,.9,0,2,0H14c1.1,0,2,.9,2,2V14c0,1.1-.9,2-2,2ZM2,1c-.55,0-1,.45-1,1V14c0,.55,.45,1,1,1H14c.55,0,1-.45,1-1V2c0-.55-.45-1-1-1H2z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 240 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M8,11l-3.45,3.45-1-1,3.45-3.45,1,1ZM13.45,3.55l-3.45,3.45,1,1,3.45-3.45-1-1ZM8,7l4.45-4.45-1-1-4.45,4.45L2.55,1.55l-1,1,4.45,4.45L1.55,11.45l1,1,4.45-4.45,6.45,6.45,1-1-6.45-6.45z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 262 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<polygon points="13.45 3.55 12.45 2.55 8 7 3.55 2.55 2.55 3.55 7 8 2.55 12.45 3.55 13.45 8 9 12.45 13.45 13.45 12.45 9 8 13.45 3.55" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 205 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M11,15c-.55,0-1-.45-1-1s.45-1,1-1c.92,0,1.11-.2,1.11-.2.11-.13-.03-.86-.09-1.21-.17-.96-.46-2.52.66-3.59-1.12-1.07-.83-2.63-.66-3.59.06-.35.2-1.08.09-1.21,0,0-.19-.2-1.11-.2-.55,0-1-.45-1-1s.45-1,1-1c.81,0,1.96.1,2.65.92.71.85.51,1.91.34,2.85-.26,1.41-.35,1.94,1.21,2.25.47.09.8.5.8.98s-.34.89-.8.98c-1.56.31-1.46.84-1.21,2.25.17.94.37,2-.34,2.85-.69.82-1.84.92-2.65.92z" />
|
|
||||||
<path d="M5,15c-.81,0-1.96-.09-2.65-.92-.71-.84-.51-1.91-.34-2.85.26-1.41.35-1.94-1.21-2.25-.47-.09-.8-.5-.8-.98s.34-.89.8-.98c1.56-.31,1.46-.84,1.21-2.25-.17-.94-.36-2,.34-2.85.69-.82,1.84-.92,2.65-.92.55,0,1,.45,1,1s-.45,1-1,1c-.92,0-1.11.2-1.11.2-.11.13.03.86.09,1.21.18.97.46,2.52-.66,3.59,1.11,1.07.83,2.63.66,3.59-.06.35-.2,1.08-.09,1.21,0,0,.19.2,1.11.2.55,0,1,.45,1,1s-.45,1-1,1z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 846 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M9,5L5,9v7h9V5H9z M13,15H6v-5h4V6h3V15z" />
|
|
||||||
<polygon points="5,1 2,4 2,13 4,13 4,12 3,12 3,5 6,5 6,2 11,2 11,4 12,4 12,1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 204 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="m2,1h6v2H2V1Zm0,12h7v2H2v-2ZM1,5h3v2H1v-2Zm-1,4h5v2H0v-2Zm7,0h4v2h-4v-2ZM10,1h4v2h-4V1Zm1,12h3v2h-3v-2ZM6,5h9v2H6v-2Zm7,4h3v2h-3v-2z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 215 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M8.2,7.2L4.5,4.4l-0.8,1C3,6.2,3.2,7.5,4.1,8.2L5,8.9c-1.1,1.1-3.3,3.2-3.7,3.7c-0.5,0.7-0.4,1.6,0.3,2.1c0.7,0.5,1.6,0.4,2.1-0.3c0.4-0.5,1.9-3.2,2.7-4.5l0.9,0.7c0.9,0.7,2.1,0.5,2.8-0.4l0.8-1L8.2,7.2z" />
|
|
||||||
<path d="M11.7,8.1L16,2.5c-5.6,0.4-7.9-2.8-9.6-0.6l-1,1.3L11.7,8.1z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 352 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M12,9c-.39,0-.65.06-.88.06-.5,0-.89-.26-2.25-1.92L3,0s-1.01.54-.04,2.27c3.12,5.6,3.62,7,4.9,7.19,1.08.16,1.42.82,1.23,1.88-.05.21-.08.44-.08.67,0,1.66,1.34,3,3,3s3-1.34,3-3-1.34-3-3-3ZM8,8.75c-.41,0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75ZM12,13.8c-.99,0-1.8-.81-1.8-1.8s.81-1.8,1.8-1.8,1.8.81,1.8,1.8-.81,1.8-1.8,1.8z" />
|
|
||||||
<path d="M7.13,9.97c-.48-.22-.89-.62-1.37-1.32-.37.32-.61.41-.88.41-.23,0-.49-.06-.88-.06-1.66,0-3,1.34-3,3s1.34,3,3,3,3-1.34,3-3c0-.23-.03-.45-.08-.67-.11-.58-.05-1.04.21-1.36ZM4,13.8c-.99,0-1.8-.81-1.8-1.8s.81-1.8,1.8-1.8,1.8.81,1.8,1.8-.81,1.8-1.8,1.8z" />
|
|
||||||
<path d="M13,0s-.01.02-4.55,5.53l.95,1.16c.28.34.52.62.71.84.65-1.09,1.52-2.75,2.92-5.26.97-1.73-.04-2.27-.04-2.27z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 800 B |
|
|
@ -1,8 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M6.5,4c.83,0,1.5.67,1.5,1.5s-.67,1.5-1.5,1.5-1.5-.67-1.5-1.5.67-1.5,1.5-1.5M6.5,3c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5,2.5-1.12,2.5-2.5-1.12-2.5-2.5-2.5h0z" />
|
|
||||||
<path d="M10,10c.55,0,1,.45,1,1s-.45,1-1,1-1-.45-1-1,.45-1,1-1M10,9c-1.1,0-2,.9-2,2s.9,2,2,2,2-.9,2-2-.9-2-2-2h0z" />
|
|
||||||
<polygon points="3 14 3 13 2 13 2 15 4 15 4 14 3 14" />
|
|
||||||
<polygon points="13 13 13 14 12 14 12 15 14 15 14 13 13 13" />
|
|
||||||
<polygon points="2 1 2 3 3 3 3 2 4 2 4 1 2 1" />
|
|
||||||
<polygon points="12 1 12 2 13 2 13 3 14 3 14 1 12 1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 590 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M15.2,2.3l-1.6-1.6C13.1,0.3,12.5,0,11.8,0c-0.7,0-1.4,0.3-1.9,0.8L2.2,8.5c-0.6,0.6-0.9,1.3-1.1,2L0,16l5.5-1.1c0.8-0.2,1.5-0.5,2-1.1l7.7-7.7C16.3,5.1,16.3,3.4,15.2,2.3z M6.6,12.9c-0.4,0.4-0.8,0.6-1.4,0.7l-0.1,0l-2.7-2.7l0-0.1c0.1-0.5,0.4-1,0.7-1.4l5.3-5.3l3.4,3.4L6.6,12.9z M14.3,5.2l-1.4,1.4L9.4,3.1l1.4-1.4c0.3-0.3,0.6-0.4,0.9-0.4s0.7,0.1,0.9,0.4l1.6,1.6C14.8,3.8,14.8,4.7,14.3,5.2z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 465 B |
|
|
@ -1,2 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 68 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M8,4c3.5,0,5.9,2.8,6.8,4c-0.9,1.2-3.3,4-6.8,4S2.1,9.2,1.2,8C2.1,6.8,4.5,4,8,4 M8,3C3,3,0,8,0,8s3,5,8,5s8-5,8-5S13,3,8,3L8,3z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 207 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M5.7,11.3l3.1-3.1l1.4-1.4l1.1-1.1L16,1h-2l-2.7,2.7C10.3,3.3,9.2,3,8,3C3,3,0,8,0,8s1.2,2.1,3.5,3.5L0,15h2L5.7,11.3z M4,8c0-2.2,1.8-4,4-4c0.8,0,1.6,0.3,2.3,0.7L9.2,5.8c-0.1,0-0.1,0-0.2,0C8.3,5.8,7.8,6.3,7.8,7c0,0.1,0,0.1,0,0.2l-3.1,3.1C4.3,9.6,4,8.8,4,8z M16,8c0,0-3,5-8,5c-0.6,0-1.2-0.1-1.8-0.2l0.9-0.9C7.4,12,7.7,12,8,12c2.2,0,4-1.8,4-4c0-0.3,0-0.6-0.1-0.9l1.8-1.8C15.2,6.6,16,8,16,8z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 467 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M8,3C3,3,0,8,0,8s3,5,8,5s8-5,8-5S13,3,8,3z M8,12c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S10.2,12,8,12z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 182 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M8,3C3,3,0,8,0,8s3,5,8,5s8-5,8-5S13,3,8,3z M8,12c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S10.2,12,8,12z" />
|
|
||||||
<circle cx="9" cy="7" r="1.2" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 216 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M13.2,5.2l1.7-1.7c0.6-0.6,0.7-1.6,0.1-2.3c0,0,0,0-0.1-0.1l0,0c-0.7-0.7-1.7-0.7-2.4,0c0,0,0,0,0,0l-1.7,1.7l-0.7-0.7c-0.2-0.3-0.7-0.3-0.9,0c0,0,0,0,0,0l-1,1l4.7,4.7l1-1c0.3-0.2,0.3-0.7,0-0.9c0,0,0,0,0,0L13.2,5.2z" />
|
|
||||||
<path d="M10.4,6.6l-6.5,6.5c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.5,0.1-0.7,0.1c0.1-0.3,0.1-0.5,0.1-0.7s0.1-0.5,0.1-0.6l6.5-6.5L8.7,4.9l-6.5,6.5c-0.6,0.6-0.2,1.9-1.1,2.9l0.6,0.6c0.9-0.9,2.3-0.5,2.9-1.1s6.5-6.5,6.5-6.5L10.4,6.6z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 522 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<polygon points="12 14 12 15 3 15 3 5 6 5 6 2 12 2 12 6 13 6 13 1 5 1 2 4 2 16 13 16 13 14 12 14" />
|
|
||||||
<polygon points="7 9 11 9 11 7 15 10 11 13 11 11 7 11 7 9" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 233 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<polygon points="6 1 3 4 3 7 4 7 4 5 7 5 7 2 13 2 13 15 4 15 4 13 3 13 3 16 14 16 14 1 6 1" />
|
|
||||||
<polygon points="1 9 6 9 6 7 10 10 6 13 6 11 1 11 1 9" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 223 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M7,0L2,5v11h12V0H7z M13,15H3V6h5V1h5V15z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 123 B |
|
|
@ -1,8 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M15,4.6v6.8l-4-2V6.6L15,4.6 M16,3l-6,3v4l6,3V3L16,3z" />
|
|
||||||
<polygon points="5,10 0,13 0,3 5,6" />
|
|
||||||
<rect x="7" y="13" width="1" height="2" />
|
|
||||||
<rect x="7" y="9" width="1" height="2" />
|
|
||||||
<rect x="7" y="5" width="1" height="2" />
|
|
||||||
<rect x="7" y="1" width="1" height="2" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 348 B |
|
|
@ -1,8 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M9.4,11l2,4H4.6l2-4H9.4 M10,10H6l-3,6h10L10,10L10,10z" />
|
|
||||||
<polygon points="6,5 3,0 13,0 10,5" />
|
|
||||||
<rect x="1" y="7" width="2" height="1" />
|
|
||||||
<rect x="5" y="7" width="2" height="1" />
|
|
||||||
<rect x="9" y="7" width="2" height="1" />
|
|
||||||
<rect x="13" y="7" width="2" height="1" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 349 B |
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M15,7v-3c0-.55-.45-1-1-1H6l-1-1H1c-.55,0-1,.45-1,1v10c0,.55.45,1,1,1h12.28c.45-.01.84-.31.96-.74l1.76-6.26h-1zM14,7h-6l-1,1H3l-2,4V3h3.59l1,1h8.41v3z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 232 B |
|
|
@ -1,4 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<path d="M14,13H2c-0.55,0-1-0.45-1-1V6h5.42l1-1H15v7C15,12.55,14.55,13,14,13z" />
|
|
||||||
<path d="M6,2H2C1.45,2,1,2.45,1,3v2h5l1-1h8c0-0.55-0.45-1-1-1H7L6,2z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 225 B |
|
|
@ -1,7 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<polygon points="3,1 1,1 0,1 0,2 0,4 1,4 1,2 3,2" />
|
|
||||||
<polygon points="15,1 13,1 13,2 15,2 15,4 16,4 16,2 16,1" />
|
|
||||||
<polygon points="1,14 1,12 0,12 0,14 0,15 1,15 3,15 3,14" />
|
|
||||||
<polygon points="15,12 15,14 13,14 13,15 15,15 16,15 16,14 16,12" />
|
|
||||||
<path d="M12,5v6H4V5H12 M13,4H3v8h10V4L13,4z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 366 B |
|
|
@ -1,8 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
||||||
<polygon points="3 1 0 1 0 4 1 4 1 2 3 2 3 1" />
|
|
||||||
<polygon points="13 1 13 2 15 2 15 4 16 4 16 1 13 1" />
|
|
||||||
<polygon points="1 14 1 12 0 12 0 15 3 15 3 14 1 14" />
|
|
||||||
<polygon points="15 12 15 14 13 14 13 15 16 15 16 12 15 12" />
|
|
||||||
<circle cx="6.5" cy="5.5" r="2.5" />
|
|
||||||
<circle cx="10" cy="11" r="2" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 368 B |