Adding ELD and C19, refactoring SCSS files, and distributed source SVG files now

This commit is contained in:
Andrew Gioia 2019-08-16 15:31:12 -04:00
parent 42006da9cf
commit b2814f1001
270 changed files with 2752 additions and 475 deletions

View File

@ -1,4 +1,4 @@
# Keyrune v3.4.3
# Keyrune v3.5.0
## The Magic: the Gathering set symbol font!
@ -54,6 +54,7 @@ All set symbol images are trademarks of Wizards of the Coast ([http://magicthega
## Changelog
* v3.5.0 - Throne of Eldraine (unofficial) and Commander 2019 added; SCSS files cleaned up and tested; SVG files now distributed with project
* v3.4.3 - Magic 2020 (finally) added, sorry everyone. M19 symbol updated to M20 style it should have been.
* v3.4.2 - Signature Spellbook: Gideon added, Mirage symbol corrected
* v3.4.1 - Fixed issue with desktop version not updating (version numbers must be present in ttf on some systems)

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"homepage": "http://andrewgioia.github.io/Keyrune",
"version": "3.4.3",
"version": "3.5.0",
"authors": [
"Andrew Gioia <andrewgioia@gmail.com>"
],

View File

@ -2,8 +2,8 @@
* Global */
@font-face {
font-family: 'Keyrune';
src: url('../fonts/keyrune.eot?v=3.4.3');
src: url('../fonts/keyrune.eot?#iefix&v=3.4.3') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.4.3') format('woff2'), url('../fonts/keyrune.woff?v=3.4.3') format('woff'), url('../fonts/keyrune.ttf?v=3.4.3') format('truetype'), url('../fonts/keyrune.svg?v=3.4.3#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=3.5.0');
src: url('../fonts/keyrune.eot?#iefix&v=3.5.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.5.0') format('woff2'), url('../fonts/keyrune.woff?v=3.5.0') format('woff'), url('../fonts/keyrune.ttf?v=3.5.0') format('truetype'), url('../fonts/keyrune.svg?v=3.5.0#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}
@ -497,6 +497,10 @@
.ss-war:before {
content: "\e95a";
}
/* Eldraine Block */
.ss-eld:before {
content: "\e95e";
}
/**
* Command Zone */
.ss-van:before {
@ -560,6 +564,9 @@
.ss-c18:before {
content: "\e946";
}
.ss-c19:before {
content: "\e95f";
}
/**
* Reprint */
.ss-chr:before {

1010
css/keyrune.min.css vendored

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 525 KiB

After

Width:  |  Height:  |  Size: 529 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -146,6 +146,8 @@
.@{ss-prefix}-rna:before, // Ravnica Allegiance
.@{ss-prefix}-gk2:before { content: "\e959"; } // RNA Guild Kits
.@{ss-prefix}-war:before { content: "\e95a"; } // War of the Spark
/* Eldraine Block */
.@{ss-prefix}-eld:before { content: "\e95e"; } // Throne of Eldraine
/**
* Command Zone */
@ -171,6 +173,7 @@
.@{ss-prefix}-cm2:before { content: "\e940"; } // Commander Anthology 2
.@{ss-prefix}-bbd:before { content: "\e942"; } // Battlebond
.@{ss-prefix}-c18:before { content: "\e946"; } // Commander 2018
.@{ss-prefix}-c19:before { content: "\e95f"; } // Commander 2019
/**
* Reprint */

View File

@ -2,6 +2,6 @@
* Global */
@ss-font-path: '../fonts';
@ss-version: '3.4.3';
@ss-version: '3.5.0';
@ss-font-size-base: 14px;
@ss-prefix: ss;

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"description": "Keyrune",
"version": "3.4.3",
"version": "3.5.0",
"author": {
"name": "Andrew Gioia",
"email": "andrewgioia@gmail.com",

View File

@ -1,50 +1,47 @@
// _helpers.scss
/** Set Symbol Size Modifiers ====================
*/
@each $size in $keyrune_sizes {
.#{$keyrune_prefix}.#{$keyrune_prefix}-#{nth($size, 1)} {
font-size: #{nth($size, 2)};
}
}
/** Set Symbol Fix Width =========================
*/
.#{$keyrune_prefix}-fw {
width: calc(18em / #{$keyrune_font_size / ($keyrune_font_size * 0 + 1)});
text-align: center;
}
/** Set Symbol No Border =========================
* | This class can remain a singleton since it is generic, making
* | it a helper class.
*/
.#{$keyrune_prefix}.#{$keyrune_prefix}-no-border {
-webkit-text-stroke: 0;
text-stroke: 0;
}
/** Set Symbol Border ============================
*/
.#{$keyrune_prefix}.#{$keyrune_prefix}-border {
&:after {
content: "";
position: absolute;
left: -0.05em;
top: 0.0em;
z-index: -1;
color: $white;
font-size: 1.15em;
background: $white;
-webkit-text-stroke: 0.05em $white;
-webkit-background-clip: $keyrune_background_clip;
-webkit-text-fill-color: $keyrune_text_fill;
}
@each $set in $mtg_setlist_borders {
/* #{nth($set, 1)} */
.#{$keyrune_prefix}.#{$keyrune_prefix}-#{nth($set, 2)}:after {
content: "#{nth($set, 3)}";
/**
* Sizes */
@each $class, $size in $keyrune_sizes {
.#{$keyrune_prefix}.#{$keyrune_prefix}-#{$class} {
font-size: #{$size};
}
}
/**
* Fixed width */
.#{$keyrune_prefix}.#{$keyrune_prefix}-fw {
width: calc(18em / #{$keyrune_font_size / ($keyrune_font_size * 0 + 1)});
text-align: center;
}
/**
* Force no border */
.#{$keyrune_prefix}.#{$keyrune_prefix}-no-border {
-webkit-text-stroke: 0;
text-stroke: 0;
}
/**
* Icon borders */
.#{$keyrune_prefix}.#{$keyrune_prefix}-border {
&:after {
content: "";
position: absolute;
left: -0.05em;
top: 0.0em;
z-index: -1;
color: $white;
font-size: 1.15em;
background: $white;
-webkit-text-stroke: 0.05em $white;
-webkit-background-clip: $keyrune_background_clip;
-webkit-text-fill-color: $keyrune_text_fill;
}
// adding a white version of the symbol for these problem sets,
// instead of using the generic text-stroke above
@each $set, $code, $glyph in $border-corrections {
&.#{$keyrune_prefix}-#{$code}:after { /* #{$set} */
content: ss-content($glyph);
}
}
}
}

28
sass/_icons.scss Normal file
View File

@ -0,0 +1,28 @@
/**
* Sets */
.#{$keyrune_prefix} {
display: inline-block;
font: $keyrune_font;
font-size: inherit;
line-height: 1em;
text-rendering: auto;
transform: translate(0, 0);
speak: none;
text-transform: none;
vertical-align: middle;
// Better font rendering
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: grayscale;
// default symbol if the set does not exist yet, or setcode does not match
&:before {
content: "#{$keyrune_default_content}";
}
@each $set, $code, $glyph in $keyrune_sets {
// comments are evaluated at top when here for some reason
&-#{$code}:before { /* #{$set} */
content: ss-content($glyph);
}
}
}

View File

@ -1,30 +1,27 @@
// _rarities.scs
/**
* Rarities */
/** Set Symbol Rarities ==========================
* | Strangely enough, autoprefixer doesn't wanna prefix
* | some of the things in here properly. Either way, I kept those
* | hard-coded prefxed to ensure it to work!
*/
@each $scheme in $keyrune_palette {
/* #{nth($scheme, 1)} */
.#{$keyrune_prefix}.#{$keyrune_prefix}-#{nth($scheme, 1)} {
color: #{nth($scheme, 2)};
// hard-prefixing some of these to ensure they get included
&.#{$keyrune_prefix}-grad {
// webkit outline/gradient
/* Chrome, Safari4+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%, #{nth($scheme, 3)}), color-stop(50%, #{nth($scheme, 4)}), color-stop(100%, #{nth($scheme, 3)}));
/* Chrome10+, Safari5.1+ */
background: -webkit-linear-gradient(left, #{nth($scheme, 3)} 0%, #{nth($scheme, 4)} 50%, #{nth($scheme, 3)} 100%);
-webkit-text-stroke: 0.03em #{nth($scheme, 5)};
-webkit-text-fill-color: $keyrune_text_fill;
-webkit-background-clip: $keyrune_background_clip;
background-clip: $keyrune_background_clip;
@each $rarity, $text, $left, $right, $stroke in $keyrune_palette {
/* #{$rarity} */
.#{$keyrune_prefix}.#{$keyrune_prefix}-#{$rarity} {
color: $text;
&.#{$keyrune_prefix}-grad {
// webkit outline/gradient
/* Chrome, Safari4+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%, #{$left}), color-stop(50%, #{$right}), color-stop(100%, #{$left}));
/* Chrome10+, Safari5.1+ */
background: -webkit-linear-gradient(left, #{$left} 0%, #{$right} 50%, #{$left} 100%);
-webkit-text-stroke: 0.03em #{$stroke};
-webkit-text-fill-color: $keyrune_text_fill;
-webkit-background-clip: $keyrune_background_clip;
background-clip: $keyrune_background_clip;
}
}
}
}
/* Hard coding foil rarity for now because it's so much more complex */
// hard coding foil rarity for now because it's so much more complex
.#{$keyrune_prefix}-foil {
color: #a6dced;
&.#{$keyrune_prefix}-grad {

View File

@ -1,42 +0,0 @@
// _keyrune.scss
/** Set Symbol Base Class ========================
*/
.#{$keyrune_prefix} {
display: inline-block;
font: $keyrune_font;
font-size: inherit;
line-height: 1em;
text-rendering: auto;
transform: translate(0, 0);
speak: none;
text-transform: none;
vertical-align: middle;
// Better font rendering
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: grayscale;
// default symbol if the set does not exist yet, or setcode does not match
&:before {
content: "#{$keyrune_default_content}";
}
}
/** Set Symbol Glyphs ============================
* | Originally, this was inside of the .#{$keyrune_prefix} class above,
* | and used a '&' parent selector.
* | However, the loop caused a strange
* | interatction and printed all of the the set name comments above all
* | of the set glyh classes; making a giant block of comments on top of
* | a huge list of classes.
* |
* | Temporary solution for proper selector specificity was to prefix the
* | class with the same variable as the main .ss class above. Not really
* | best practice (DRY, etc...) but fixes weird compilation.
*/
@each $set in $mtg_setlist {
/* #{nth($set, 1)} */
.#{$keyrune_prefix}.#{$keyrune_prefix}-#{nth($set, 2)}:before {
content: "#{nth($set, 3)}";
}
}

View File

@ -1,8 +1,3 @@
// _typography.scss
/** Keyrune Font-Family =========================
* | Concatenation is purely for readability purposes.
*/
@font-face {
font-family: "#{$keyrune_font_face}";
src:url('#{$keyrune_font_path}' + '/keyrune.eot?v=' + '#{$keyrune_version}');

View File

@ -1,30 +1,24 @@
// _variables.scss
/**
* Globals */
// #.
$keyrune_version: '3.4.3' !default;
$keyrune_version: '3.5.0' !default;
$keyrune_font_path: '../fonts' !default;
// #. Keyrune Font ==============================
//
// font specific
$keyrune_font_style: normal !default;
$keyrune_font_variant: normal !default;
$keyrune_font_weight: normal !default;
$keyrune_font_size: 14px !default;
$keyrune_font_face: 'Keyrune' !default;
$keyrune_font: $keyrune_font_style $keyrune_font_variant $keyrune_font_weight $keyrune_font_size/1 $keyrune_font_face !default;
$keyrune_prefix: 'ss' !default;
$keyrune_default_content: "\e684" !default;
$keyrune_background_clip: text !default;
$keyrune_text_fill: transparent !default;
// 4. Keyrune Colors ============================
//
// colors
$black: #000 !default;
$white: #fff !default;
$keyrune_palette: (
('common', #1a1718, #302b2c, #474040, #000),
('uncommon', #707883, #5a6572, #9e9e9e, #111),
@ -33,338 +27,356 @@ $keyrune_palette: (
('timeshifted', #652978, #652978, #c09ac5, #333)
) !default;
// #. Set Symbol Sizes ===============================
//
// sizes
$keyrune_sizes: (
'2x': 2em,
'3x': 3em,
'4x': 4em,
'5x': 5em,
'6x': 6em
'2x': 2em,
'3x': 3em,
'4x': 4em,
'5x': 5em,
'6x': 6em
) !default;
// NOTE: not really sure what to call this array. I notice it is for special borders of sorts, so setlist_borders it is.
$mtg_setlist_borders: (
("Vanguard", 'van', "\e655"),
("Archenemy", 'arc', "\e657"),
("Commander", 'cmd', "\e658"),
("Commander's Arsenal", 'cm1', "\e65a"),
("Commander 2013", 'c13', "\e65b"),
("Commander 2014", 'c14', "\e65d"),
("Commander 2015", 'c15', "\e900"),
("Planechase 2009", 'hop', "\e656"),
("Planechase 2012", 'pc2', "\e659"),
("Conspiracy", 'cns', "\e65c")
// special corrections for certain symbols when adding the border style
$border-corrections: (
("Vanguard", "van", "\e655"),
("Archenemy", "arc", "\e657"),
("Commander", "cmd", "\e658"),
("Commander's Arsenal", "cm1", "\e65a"),
("Commander 2013", "c13", "\e65b"),
("Commander 2014", "c14", "\e65d"),
("Commander 2015", "c15", "\e900"),
("Planechase 2009", "hop", "\e656"),
("Planechase 2012", "pc2", "\e659"),
("Conspiracy", "cns", "\e65c")
) !default;
// 6. MtG Setlist ==============================
// Legend/Key:
// ("Set_Name", 'Set_Code', "Set_Glyph"),
//
$mtg_setlist: (
// # Core Sets
("Alpha", 'lea', "\e600"),
("Beta", 'leb', "\e601"),
("Unlimited", '2ed', "\e602"),
("Revised", '3ed', "\e603"),
("4th Edition", '4ed', "\e604"),
("Summer Magic", 'psum', "\e605"),
("5th Edition", '5ed', "\e606"),
("6th Edition", '6ed', "\e607"),
("7th Edition", '7ed', "\e608"),
("8th Edition", '8ed', "\e609"),
("9th Edition", '9ed', "\e60a"),
("10th Edition", '10e', "\e60b"),
("Magic 2010", 'm10', "\e60c"),
("Magic 2011", 'm11', "\e60d"),
("Magic 2012", 'm12', "\e60e"),
("Magic 2013", 'm13', "\e60f"),
("Magic 2014", 'm14', "\e610"),
("Magic 2015", 'm15', "\e611"),
("Core background", 'bcore', "\e612"),
("Magic Origins", 'ori', "\e697"),
("Magic 2019", 'm19', "\e941"),
("Magic 2020", 'm20', "\e95d"),
("Alpha (MODO)", '1e', "\e947"),
("Beta (MODO)", '2e', "\e948"),
("Unlimited (MODO)", '2u', "\e949"),
("Revised (MODO)", '3e', "\e94a"),
// # Expansion Sets
// Artifact block
("Arabian Nights", 'arn', "\e613"),
("Antiquities", 'atq', "\e614"),
("Legends", 'leg', "\e615"),
// Wizards block
("The Dark", 'drk', "\e616"),
("Fallen Empires", 'fem', "\e617"),
("Homelands", 'hml', "\e618"),
// Ice Age block
("Ice Age", 'ice', "\e619"),
("Ice Age (Original)", 'ice2', "\e925"),
("Alliances", 'all', "\e61a"),
("Coldsnap", 'csp', "\e61b"),
// Mirage block
("Mirage", 'mir', "\e61c"),
("Visions", 'vis', "\e61d"),
("Weatherlight", 'wth', "\e61e"),
// Tempest block
("Tempest", 'tmp', "\e61f"),
("Stronghold", 'sth', "\e620"),
("Exodus", 'exo', "\e621"),
// Urza's block
("Urza's Saga", 'usg', "\e622"),
("Urza's Legacy", 'ulg', "\e623"),
("Urza's Destiny", 'uds', "\e624"),
// Mercadian block
("Mercadian Masque", 'mmq', "\e625"),
("Nemesis", 'nem', "\e626"),
("Nemesis", 'nms', "\e626"),
("Prophecy", 'pcy', "\e627"),
// Invasion block
("Invasion", 'inv', "\e628"),
("Planeshift", 'pls', "\e629"),
("Apocalypse", 'apc', "\e62a"),
// Odyssey block
("Odyssey", 'ody', "\e62b"),
("Torment", 'tor', "\e62c"),
("Judgement", 'jud', "\e62d"),
// Onslaught block
("Onslaught", 'ons', "\e62e"),
("Legions", 'lgn', "\e62f"),
("Scourge", 'scg', "\e630"),
// Mirrodin block
("Mirrodin", 'mrd', "\e631"),
("Darksteel", 'dst', "\e632"),
("5th Dawn", '5dn', "\e633"),
// Kamigawa block
("Champions of Kamigawa", 'chk', "\e634"),
("Betrayers of Kamigawa", 'bok', "\e635"),
("Saviors of Kamigawa", 'sok', "\e636"),
// Ravnica block
("Ravnica", 'rav', "\e637"),
("Guildpact", 'gpt', "\e638"),
("Dissension", 'dis', "\e639"),
// Time Spiral block
("Time Spiral", 'tsp', "\e63a"),
("Planeshift", 'plc', "\e63b"),
("Future Sight", 'fut', "\e63c"),
// Lorwyn block
("Lorwyn", 'lrw', "\e63d"),
("Morningtide", 'mor', "\e63e"),
// Shadowmoor block
("Shadowmoor", 'shm', "\e63f"),
("Eventide", 'eve', "\e640"),
// Alara block
("Shards of Alara", 'ala', "\e641"),
("Conflux", 'con', "\e642"),
("Alara Reborn", 'arb', "\e643"),
// Zendikar block
("Zendikar", 'zen', "\e644"),
("Worldwake", 'wwk', "\e645"),
("Rise of Eldrazi", 'roe', "\e646"),
// Scars block
("Scars of Mirrodin", 'som', "\e647"),
("Mirrodin Besieged", 'mbs', "\e648"),
("New Phyrexia", 'nph', "\e649"),
// Innistrad block
("Innistrad", 'isd', "\e64a"),
("Dark Ascension", 'dka', "\e64b"),
("Avacyn Restored", 'avr', "\e64c"),
// Return to Ravnica block
("Return to Ravnica", 'rtr', "\e64d"),
("Gatecrash", 'gtc', "\e64e"),
("Dragon's Maze", 'dgm', "\e64f"),
// Theros block
("Theros", 'ths', "\e650"),
("Born of the Gods", 'bng', "\e651"),
("Journey into Nyx", 'jou', "\e652"),
// Khans block
("Khans of Tarkir", 'ktk', "\e653"),
("Fate Reforged", 'frf', "\e654"),
("Dragons of Tarkir", 'dtk', "\e693"),
// Return to Zendikar block
("Battle for Zendikar", 'bfz', "\e699"),
("Oath of the Gatewatch", 'ogw', "\e901"),
// Return to Innistrad block
("Shadows Over Innistrad", 'soi', "\e902"),
("Eldritch Moon", 'emn', "\e90b"),
// Kaladesh block
("Kaladesh", 'kld', "\e90e"),
("Aether Revolt", 'aer', "\e90f"),
// Amonkhet block
("Amonkhet", "akh", "\e914"),
("Hour of Devastation", "hou", "\e924"),
// Ixalan block
("Ixalan", "xln", "\e92e"),
("Rivals of Ixalan", "rix", "\e92f"),
// Dominaria block
("Dominaria", "dom", "\e93f"),
// Guilds of Ravnica block
("Guilds of Ravnica", "grn", "\e94b"),
("GRN Guild Kits", "gk1", "\e94b"),
("Ravnica Allegiance", "rna", "\e959"),
("RNA Guild Kits", "gk2", "\e959"),
("War of the Spark", "war", "\e95a"),
// # Commander Sets
("Vanguard", 'van', "\e655"),
("Planechase 2009", 'hop', "\e656"),
("Archenemy", 'arc', "\e657"),
("Commander", 'cmd', "\e658"),
("Planechase 2012", 'pc2', "\e659"),
("Commander's Arsenal", 'cm1', "\e65a"),
("Commander 2013", 'c13', "\e65b"),
("Conspiracy", 'cns', "\e65c"),
("Commander 2014", 'c14', "\e65d"),
("Commander 2015", 'c15', "\e900"),
("Conspiracy 2, Take", 'cn2', "\e904"),
("Commander 2016", 'c16', "\e910"),
("Planechase Anthology", 'pca', "\e911"),
("Commander Anthology", 'cma', "\e916"),
("Archenemy: Nicol Bolas", 'e01', "\e92d"),
("Archenemy: Nicol Bolas", 'ann', "\e92d"),
("Explorers of Ixalan", 'e02', "\e931"),
("Commander 2017", 'c17', "\e934"),
("Commander Anthology 2", 'cm2', "\e940"),
("Battlebond", 'bbd', "\e942"),
("Commander 2018", 'c18', "\e946"),
// # Reprint Sets
("Chronicles", 'chr', "\e65e"),
("Anthologies", 'ath', "\e65f"),
("Battle Royale", 'brb', "\e660"),
("Beatdown", 'btd', "\e661"),
("Deckmasters", 'dkm', "\e662"),
("Modern Masters", 'mma', "\e663"),
("Modern Masters 2015", 'mm2', "\e695"),
("Eternal Masters", 'ema', "\e903"),
("Modern Masters 2017", 'mm3', "\e912"),
("Renaissance", 'xren', "\e917"),
("Rinascimento", 'xrin', "\e918"),
("Iconic Masters", 'ima', "\e935"),
("Masters 25", 'a25', "\e93d"),
("Ultimate Masters", 'uma', "\e958"),
("Modern Horizons", 'mh1', "\e95b"),
// # Beginner Sets
("Portal", 'por', "\e664"),
("Portal 2", 'p02', "\e665"),
("Portal 2", 'po2', "\e665"),
("Portal 3 Kingdoms", 'ptk', "\e666"),
("Starter 1999", 's99', "\e667"),
("Starter 2000", 's00', "\e668"),
("Welcome Deck 2016", 'w16', "\e907"),
("Welcome Deck 2017", 'w17', "\e923"),
// # Duel Decks
("Elves vs. Goblins", 'evg', "\e669"),
("Jace vs. Chandra", 'dd2', "\e66a"),
("Divine vs. Demonic", 'ddc', "\e66b"),
("Garruk vs. Liliana", 'ddd', "\e66c"),
("Phyrexia vs.", 'dde', "\e66d"),
("Elspeth vs.", 'ddf', "\e66e"),
("Knights vs. Dragons", 'ddg', "\e66f"),
("Ajani vs. Nicol", 'ddh', "\e670"),
("Venser vs. Koth", 'ddi', "\e671"),
("Izzet vs. Golgari", 'ddj', "\e672"),
("Sorin vs. Tibalt", 'ddk', "\e673"),
("Heroes vs. Monsters", 'ddl', "\e674"),
("Jace vs. Vraska", 'ddm', "\e675"),
("Speed vs. Cunning", 'ddn', "\e676"),
("Kiora vs. Elspeth", 'ddo', "\e677"),
("Zendikar vs.", 'ddp', "\e698"),
("Blessed vs. Cursed", 'ddq', "\e908"),
("Nissa vs. Ob Nixilis", 'ddr', "\e90d"),
("New Phyrexia vs. Mirrodin Pure", 'td2', "\e91c"),
("Mind vs. Might", 'dds', "\e921"),
("Merfolk vs. Goblins", 'ddt', "\e933"),
("Elves vs. Inventors", 'ddu', "\e93e"),
// # From the Vault
("Dragons", 'drb', "\e678"),
("Exiled", 'v09', "\e679"),
("Relics", 'v10', "\e67a"),
("Legends", 'v11', "\e67b"),
("Realms", 'v12', "\e67c"),
("Twenty", 'v13', "\e67d"),
("Annihilation", 'v14', "\e67e"),
("Angels", 'v15', "\e905"),
("Lore", 'v16', "\e906"),
("Vaults", 'v0x', "\e920"),
("Transform", 'v17', "\e939"),
// # Premium Deck Series
("Slivers", 'h09', "\e67f"),
("Fire & Lightning", 'pd2', "\e680"),
("Graveborn", 'pd3', "\e681"),
("Modern Event Deck", 'md1', "\e682"),
// # Signature Spellbook
("Jace", 'ss1', "\e944"),
("Gideon", 'ss2', "\e95c"),
// # Global Series
("Jiang Yanggu & Mu Yanling", 'gs1', "\e945"),
// # Guild Kits
("Azorius", 'azorius', "\e94e"),
("Boros", 'boros', "\e94f"),
("Dimir", 'dimir', "\e950"),
("Golgari", 'golgari', "\e951"),
("Gruul", 'gruul', "\e952"),
("Izzet", 'izzet', "\e953"),
("Orzhov", 'orzhov', "\e954"),
("Rakdos", 'rakdos', "\e955"),
("Selesnya", 'selesnya', "\e956"),
("Simic", 'simic', "\e957"),
// # Other Supplemental Products
("Game Night", 'gnt', "\e94d"),
// # Promotional
("Guru", 'pgru', "\e683"),
("Magic symbol", 'pmtg1', "\e684"),
("Magic symbol", 'pmtg2', "\e685"),
("Leaf", 'pleaf', "\e686"),
("Media Insert", 'pmei', "\e687"),
("DCI (Arena)", 'parl', "\e688"),
("Dragons", 'dpa', "\e689"),
("Book Insert", 'pbook', "\e68a"),
("Astral", 'past', "\e68b"),
("Arena logo", 'parl2', "\e68c"),
("Zendikar", 'exp', "\e69a"),
("Salvat 2005", 'psalvat05', "\e909"),
("Salvat 2011", 'psalvat11', "\e90a"),
("Kaladesh Inventions", 'mp1', "\e913"),
("Kaladesh Inventions", 'mps', "\e913"),
("Xbox Media Promo", 'pxbox', "\e915"),
("Magic Premiere Shop", 'pmps', "\e919"),
("Mirrodin Pure", 'pmpu', "\e91a"),
("Amonkhet Invocations", 'mp2', "\e922"),
("IDW Promo", 'pidw', "\e92c"),
("Dragon*Con Promo", 'pdrc', "\e932"),
("Phoenix Heart Celebration", 'pheart', "\e936"),
("HasCon 2017", 'h17', "\e938"),
("Duelist Extra Pulled", 'pdep', "\e93a"),
("Sega Dreamcast", 'psega', "\e93b"),
("The Sorcerer's Apprentice", 'ptsa', "\e93c"),
("Arena (MTGO)", 'parl3', "\e943"),
("2016 Heroes of the Realm", 'htr', "\e687"),
("Mythic Edition", 'med', "\e94c"),
// # Online Only
("Masters Edition", 'me1', "\e68d"),
("Masters Edition II", 'me2', "\e68e"),
("Masters Edition III", 'me3', "\e68f"),
("Masters Edition IV", 'me4', "\e690"),
("Tempest Remastered", 'tpr', "\e694"),
("Vintage Masters", 'vma', "\e696"),
("Legendary Cube", 'xlcu', "\e90c"),
("Legendary Cube", 'pz1', "\e90c"),
("Magic Online", 'modo', "\e91b"),
("Magic Online", 'pmodo', "\e91b"),
("Magic Duels", 'duels', "\e91d"),
("Magic Duels", 'xduels', "\e91d"),
("Magic Online Deck Series", 'xmods', "\e91e"),
("Treasure Chests", 'pz2', "\e91f"),
// # The Unsets
("Unglued", 'ugl', "\e691"),
("Unhinged", 'unh', "\e692"),
("Unstable", 'ust', "\e930"),
// # Unofficial
("Collector's Edition", 'xcle', "\e926"),
("International Collector's Edition", 'xice', "\e927"),
("Two Player Introductory Set", 'x2ps', "\e928"),
("Alternate 4th Edition", 'x4ea', "\e929"),
("APAC Lands", 'papac', "\e92a"),
("Euro Lands", 'peuro', "\e92b"),
("Friday Night Magic", 'pfnm', "\e937")
// sets
$keyrune_sets: (
// core sets
("Alpha", "lea", "\e600"),
("Beta", "leb", "\e601"),
("Unlimited", "2ed", "\e602"),
("Revised", "3ed", "\e603"),
("4th Edition", "4ed", "\e604"),
("Summer Magic", "psum", "\e605"),
("5th Edition", "5ed", "\e606"),
("6th Edition", "6ed", "\e607"),
("7th Edition", "7ed", "\e608"),
("8th Edition", "8ed", "\e609"),
("9th Edition", "9ed", "\e60a"),
("10th Edition", "10e", "\e60b"),
("Magic 2010", "m10", "\e60c"),
("Magic 2011", "m11", "\e60d"),
("Magic 2012", "m12", "\e60e"),
("Magic 2013", "m13", "\e60f"),
("Magic 2014", "m14", "\e610"),
("Magic 2015", "m15", "\e611"),
("Core background", "bcore", "\e612"),
("Magic Origins", "ori", "\e697"),
("Magic 2019", "m19", "\e941"),
("Magic 2020", "m20", "\e95d"),
("Alpha (MODO)", "1e", "\e947"),
("Beta (MODO)", "2e", "\e948"),
("Unlimited (MODO)", "2u", "\e949"),
("Revised (MODO)", "3e", "\e94a"),
//
// Artifact block
("Arabian Nights", "arn", "\e613"),
("Antiquities", "atq", "\e614"),
("Legends", "leg", "\e615"),
// Wizards block
("The Dark", "drk", "\e616"),
("Fallen Empires", "fem", "\e617"),
("Homelands", "hml", "\e618"),
// Ice Age block
("Ice Age", "ice", "\e619"),
("Ice Age (Original)", "ice2", "\e925"),
("Alliances", "all", "\e61a"),
("Coldsnap", "csp", "\e61b"),
// Mirage block
("Mirage", "mir", "\e61c"),
("Visions", "vis", "\e61d"),
("Weatherlight", "wth", "\e61e"),
// Tempest block
("Tempest", "tmp", "\e61f"),
("Stronghold", "sth", "\e620"),
("Exodus", "exo", "\e621"),
// Urza's block
("Urza's Saga", "usg", "\e622"),
("Urza's Legacy", "ulg", "\e623"),
("Urza's Destiny", "uds", "\e624"),
// Mercadian block
("Mercadian Masque", "mmq", "\e625"),
("Nemesis", "nem", "\e626"),
("Nemesis", "nms", "\e626"),
("Prophecy", "pcy", "\e627"),
// Invasion block
("Invasion", "inv", "\e628"),
("Planeshift", "pls", "\e629"),
("Apocalypse", "apc", "\e62a"),
// Odyssey block
("Odyssey", "ody", "\e62b"),
("Torment", "tor", "\e62c"),
("Judgement", "jud", "\e62d"),
// Onslaught block
("Onslaught", "ons", "\e62e"),
("Legions", "lgn", "\e62f"),
("Scourge", "scg", "\e630"),
// Mirrodin block
("Mirrodin", "mrd", "\e631"),
("Darksteel", "dst", "\e632"),
("5th Dawn", "5dn", "\e633"),
// Kamigawa block
("Champions of Kamigawa", "chk", "\e634"),
("Betrayers of Kamigawa", "bok", "\e635"),
("Saviors of Kamigawa", "sok", "\e636"),
// Ravnica block
("Ravnica", "rav", "\e637"),
("Guildpact", "gpt", "\e638"),
("Dissension", "dis", "\e639"),
// Time Spiral block
("Time Spiral", "tsp", "\e63a"),
("Planeshift", "plc", "\e63b"),
("Future Sight", "fut", "\e63c"),
// Lorwyn block
("Lorwyn", "lrw", "\e63d"),
("Morningtide", "mor", "\e63e"),
// Shadowmoor block
("Shadowmoor", "shm", "\e63f"),
("Eventide", "eve", "\e640"),
// Alara block
("Shards of Alara", "ala", "\e641"),
("Conflux", "con", "\e642"),
("Alara Reborn", "arb", "\e643"),
// Zendikar block
("Zendikar", "zen", "\e644"),
("Worldwake", "wwk", "\e645"),
("Rise of Eldrazi", "roe", "\e646"),
// Scars block
("Scars of Mirrodin", "som", "\e647"),
("Mirrodin Besieged", "mbs", "\e648"),
("New Phyrexia", "nph", "\e649"),
// Innistrad block
("Innistrad", "isd", "\e64a"),
("Dark Ascension", "dka", "\e64b"),
("Avacyn Restored", "avr", "\e64c"),
// Return to Ravnica block
("Return to Ravnica", "rtr", "\e64d"),
("Gatecrash", "gtc", "\e64e"),
("Dragon's Maze", "dgm", "\e64f"),
// Theros block
("Theros", "ths", "\e650"),
("Born of the Gods", "bng", "\e651"),
("Journey into Nyx", "jou", "\e652"),
// Khans block
("Khans of Tarkir", "ktk", "\e653"),
("Fate Reforged", "frf", "\e654"),
("Dragons of Tarkir", "dtk", "\e693"),
// Return to Zendikar block
("Battle for Zendikar", "bfz", "\e699"),
("Oath of the Gatewatch", "ogw", "\e901"),
// Return to Innistrad block
("Shadows Over Innistrad", "soi", "\e902"),
("Eldritch Moon", "emn", "\e90b"),
// Kaladesh block
("Kaladesh", "kld", "\e90e"),
("Aether Revolt", "aer", "\e90f"),
// Amonkhet block
("Amonkhet", "akh", "\e914"),
("Hour of Devastation", "hou", "\e924"),
// Ixalan block
("Ixalan", "xln", "\e92e"),
("Rivals of Ixalan", "rix", "\e92f"),
// Dominaria block
("Dominaria", "dom", "\e93f"),
// Guilds of Ravnica block
("Guilds of Ravnica", "grn", "\e94b"),
("GRN Guild Kits", "gk1", "\e94b"),
("Ravnica Allegiance", "rna", "\e959"),
("RNA Guild Kits", "gk2", "\e959"),
("War of the Spark", "war", "\e95a"),
// Eldraine block
("Throne of Eldraine", "eld", "\e95e"),
//
// command zone
("Vanguard", "van", "\e655"),
("Planechase 2009", "hop", "\e656"),
("Archenemy", "arc", "\e657"),
("Commander", "cmd", "\e658"),
("Planechase 2012", "pc2", "\e659"),
("Commander's Arsenal", "cm1", "\e65a"),
("Commander 2013", "c13", "\e65b"),
("Conspiracy", "cns", "\e65c"),
("Commander 2014", "c14", "\e65d"),
("Commander 2015", "c15", "\e900"),
("Conspiracy 2, Take", "cn2", "\e904"),
("Commander 2016", "c16", "\e910"),
("Planechase Anthology", "pca", "\e911"),
("Commander Anthology", "cma", "\e916"),
("Archenemy: Nicol Bolas", "e01", "\e92d"),
("Archenemy: Nicol Bolas", "ann", "\e92d"),
("Explorers of Ixalan", "e02", "\e931"),
("Commander 2017", "c17", "\e934"),
("Commander Anthology 2", "cm2", "\e940"),
("Battlebond", "bbd", "\e942"),
("Commander 2018", "c18", "\e946"),
("Commander 2019", "c19", "\e95f"),
//
// reprint
("Chronicles", "chr", "\e65e"),
("Anthologies", "ath", "\e65f"),
("Battle Royale", "brb", "\e660"),
("Beatdown", "btd", "\e661"),
("Deckmasters", "dkm", "\e662"),
("Modern Masters", "mma", "\e663"),
("Modern Masters 2015", "mm2", "\e695"),
("Eternal Masters", "ema", "\e903"),
("Modern Masters 2017", "mm3", "\e912"),
("Renaissance", "xren", "\e917"),
("Rinascimento", "xrin", "\e918"),
("Iconic Masters", "ima", "\e935"),
("Masters 25", "a25", "\e93d"),
("Ultimate Masters", "uma", "\e958"),
("Modern Horizons", "mh1", "\e95b"),
//
// beginner
("Portal", "por", "\e664"),
("Portal 2", "p02", "\e665"),
("Portal 2", "po2", "\e665"),
("Portal 3 Kingdoms", "ptk", "\e666"),
("Starter 1999", "s99", "\e667"),
("Starter 2000", "s00", "\e668"),
("Welcome Deck 2016", "w16", "\e907"),
("Welcome Deck 2017", "w17", "\e923"),
//
// duel decks
("Elves vs. Goblins", "evg", "\e669"),
("Jace vs. Chandra", "dd2", "\e66a"),
("Divine vs. Demonic", "ddc", "\e66b"),
("Garruk vs. Liliana", "ddd", "\e66c"),
("Phyrexia vs.", "dde", "\e66d"),
("Elspeth vs.", "ddf", "\e66e"),
("Knights vs. Dragons", "ddg", "\e66f"),
("Ajani vs. Nicol", "ddh", "\e670"),
("Venser vs. Koth", "ddi", "\e671"),
("Izzet vs. Golgari", "ddj", "\e672"),
("Sorin vs. Tibalt", "ddk", "\e673"),
("Heroes vs. Monsters", "ddl", "\e674"),
("Jace vs. Vraska", "ddm", "\e675"),
("Speed vs. Cunning", "ddn", "\e676"),
("Kiora vs. Elspeth", "ddo", "\e677"),
("Zendikar vs.", "ddp", "\e698"),
("Blessed vs. Cursed", "ddq", "\e908"),
("Nissa vs. Ob Nixilis", "ddr", "\e90d"),
("New Phyrexia vs. Mirrodin Pure", "td2", "\e91c"),
("Mind vs. Might", "dds", "\e921"),
("Merfolk vs. Goblins", "ddt", "\e933"),
("Elves vs. Inventors", "ddu", "\e93e"),
//
// from the vault
("Dragons", "drb", "\e678"),
("Exiled", "v09", "\e679"),
("Relics", "v10", "\e67a"),
("Legends", "v11", "\e67b"),
("Realms", "v12", "\e67c"),
("Twenty", "v13", "\e67d"),
("Annihilation", "v14", "\e67e"),
("Angels", "v15", "\e905"),
("Lore", "v16", "\e906"),
("Vaults", "v0x", "\e920"),
("Transform", "v17", "\e939"),
//
// premium deck series
("Slivers", "h09", "\e67f"),
("Fire & Lightning", "pd2", "\e680"),
("Graveborn", "pd3", "\e681"),
("Modern Event Deck", "md1", "\e682"),
//
// signature spellbook
("Jace", "ss1", "\e944"),
("Gideon", "ss2", "\e95c"),
//
// global series
("Jiang Yanggu & Mu Yanling", "gs1", "\e945"),
//
// guild kits
("Azorius", "azorius", "\e94e"),
("Boros", "boros", "\e94f"),
("Dimir", "dimir", "\e950"),
("Golgari", "golgari", "\e951"),
("Gruul", "gruul", "\e952"),
("Izzet", "izzet", "\e953"),
("Orzhov", "orzhov", "\e954"),
("Rakdos", "rakdos", "\e955"),
("Selesnya", "selesnya", "\e956"),
("Simic", "simic", "\e957"),
//
// other supplemental products
("Game Night", "gnt", "\e94d"),
//
// promos
("Guru", "pgru", "\e683"),
("Magic symbol", "pmtg1", "\e684"),
("Magic symbol", "pmtg2", "\e685"),
("Leaf", "pleaf", "\e686"),
("Media Insert", "pmei", "\e687"),
("DCI (Arena)", "parl", "\e688"),
("Dragons", "dpa", "\e689"),
("Book Insert", "pbook", "\e68a"),
("Astral", "past", "\e68b"),
("Arena logo", "parl2", "\e68c"),
("Zendikar", "exp", "\e69a"),
("Salvat 2005", "psalvat05", "\e909"),
("Salvat 2011", "psalvat11", "\e90a"),
("Kaladesh Inventions", "mp1", "\e913"),
("Kaladesh Inventions", "mps", "\e913"),
("Xbox Media Promo", "pxbox", "\e915"),
("Magic Premiere Shop", "pmps", "\e919"),
("Mirrodin Pure", "pmpu", "\e91a"),
("Amonkhet Invocations", "mp2", "\e922"),
("IDW Promo", "pidw", "\e92c"),
("Dragon*Con Promo", "pdrc", "\e932"),
("Phoenix Heart Celebration", "pheart", "\e936"),
("HasCon 2017", "h17", "\e938"),
("Duelist Extra Pulled", "pdep", "\e93a"),
("Sega Dreamcast", "psega", "\e93b"),
("The Sorcerer's Apprentice", "ptsa", "\e93c"),
("Arena (MTGO)", "parl3", "\e943"),
("2016 Heroes of the Realm", "htr", "\e687"),
("Mythic Edition", "med", "\e94c"),
//
// online only
("Masters Edition", "me1", "\e68d"),
("Masters Edition II", "me2", "\e68e"),
("Masters Edition III", "me3", "\e68f"),
("Masters Edition IV", "me4", "\e690"),
("Tempest Remastered", "tpr", "\e694"),
("Vintage Masters", "vma", "\e696"),
("Legendary Cube", "xlcu", "\e90c"),
("Legendary Cube", "pz1", "\e90c"),
("Magic Online", "modo", "\e91b"),
("Magic Online", "pmodo", "\e91b"),
("Magic Duels", "duels", "\e91d"),
("Magic Duels", "xduels", "\e91d"),
("Magic Online Deck Series", "xmods", "\e91e"),
("Treasure Chests", "pz2", "\e91f"),
//
// unsets
("Unglued", "ugl", "\e691"),
("Unhinged", "unh", "\e692"),
("Unstable", "ust", "\e930"),
//
// unoffocial
("Collector's Edition", "xcle", "\e926"),
("International Collector's Edition", "xice", "\e927"),
("Two Player Introductory Set", "x2ps", "\e928"),
("Alternate 4th Edition", "x4ea", "\e929"),
("APAC Lands", "papac", "\e92a"),
("Euro Lands", "peuro", "\e92b"),
("Friday Night Magic", "pfnm", "\e937")
) !default;
// display glyph correctly
@function ss-content($glyph) {
@return unquote("\"#{$glyph}\"");
}

View File

@ -1,15 +1,5 @@
// keyrune.scss
// Config ======================================
//
@import 'variables';
// Components ==================================
//
@import 'typography';
@import 'setsymbol';
@import 'icons';
@import 'rarities';
// Helpers =====================================
//
@import 'helpers';

5
svg/10e.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
<title>10e</title>
<path fill="#444" d="M26.371 26.131c-0.338-0.676-1.352-0.676-2.025-0.845-0.676-0.169-1.014-0.507-7.769-9.287 6.755-8.78 7.093-9.117 7.769-9.287 0.674-0.169 1.687-0.169 2.025-0.844h-8.442c0 0.338 0 0.676-0.256 1.265-0.251 0.591-0.758 1.436-4.474 6.164-3.712-4.728-4.219-5.572-4.473-6.164-0.253-0.589-0.253-0.927-0.253-1.265h-8.444c0.338 0.676 1.351 0.676 2.027 0.844 0.674 0.169 1.014 0.507 7.766 9.287-6.753 8.78-7.093 9.118-7.766 9.287-0.676 0.169-1.689 0.169-2.027 0.845h8.444c0-0.338 0-0.676 0.253-1.267s0.76-1.434 4.473-6.164c3.716 4.73 4.223 5.572 4.474 6.164 0.256 0.591 0.256 0.929 0.256 1.267h8.442z"></path>
</svg>

After

Width:  |  Height:  |  Size: 774 B

5
svg/2ed.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>2ed</title>
<path fill="#444" d="M22.848 2.6c0 0 1.688 0.18 1.688 1.926l6.267 1.748c0 0 1.565 0.601 1.081 2.649l-5.179 19.334c0 0-1.085 1.447-2.349 1.084l-8.355-2.298-8.359 2.298c-1.264 0.363-2.349-1.084-2.349-1.084l-5.179-19.334c-0.483-2.049 1.084-2.649 1.084-2.649l6.264-1.748c0-1.745 1.686-1.926 1.686-1.926h13.7zM22.794 3.321h-13.589c-0.080 0.014-0.32 0.068-0.549 0.22-0.32 0.214-0.472 0.526-0.472 0.984v0.549c0 0-6.647 1.855-6.744 1.88-0.172 0.083-0.696 0.395-0.696 1.227 0 0.169 0.023 0.358 0.072 0.573 0.012 0.034 5.054 18.859 5.136 19.162 0.221 0.252 0.875 0.907 1.494 0.73l8.556-2.352 8.552 2.352c0.618 0.177 1.271-0.478 1.494-0.73 0.084-0.303 5.128-19.128 5.136-19.162 0.048-0.215 0.072-0.404 0.072-0.573 0-0.832-0.524-1.144-0.695-1.227-0.097-0.026-6.747-1.88-6.747-1.88v-0.549c0-0.458-0.149-0.77-0.47-0.984-0.226-0.152-0.47-0.207-0.549-0.22v0zM8.041 6.071v18.592c0 0 0.158 1.208 1.125 1.208h5.218l-6.987 1.926c0 0-0.4 0.2-0.604-0.24l-5.138-19.074c0 0-0.201-0.604 0.28-0.764l6.106-1.648zM23.962 6.031l6.103 1.648c0.48 0.16 0.281 0.761 0.281 0.761l-5.142 19.077c-0.2 0.441-0.601 0.24-0.601 0.24l-6.987-1.929h5.222c0.961 0 1.124-1.204 1.124-1.204v-18.593zM22.737 4.225c0.284 0 0.32 0.36 0.32 0.36l-0 19.998c0 0.324-0.32 0.404-0.32 0.404h-13.451c-0.284 0-0.284-0.404-0.284-0.404v-19.998c0-0.24 0.284-0.36 0.284-0.36h13.451zM20.138 8.856c-0.263 0-0.65 0.037-1.159 0.112s-0.801 0.129-0.876 0.163c-0.074 0.034-0.112 0.080-0.112 0.137 0 0.069 0.123 0.22 0.369 0.455s0.395 0.446 0.446 0.635c0.052 0.189 0.083 0.341 0.095 0.455s0.017 0.275 0.017 0.481v0.361c0 0.263 0.009 0.575 0.026 0.936s0.051 0.81 0.103 1.348c0.052 0.538 0.077 1.070 0.077 1.597-0 0.63-0.034 1.151-0.103 1.563s-0.172 0.784-0.309 1.116c-0.275 0.492-0.675 0.844-1.202 1.056s-1.070 0.318-1.631 0.318c-0.16 0-0.558-0.037-1.193-0.112s-1.122-0.575-1.46-1.503c-0.338-0.927-0.507-2.335-0.507-4.224 0-0.343 0.003-0.687 0.009-1.030s0.009-0.693 0.009-1.047c0.012-0.32 0.023-0.658 0.034-1.013s0.017-0.704 0.017-1.047-0.049-0.538-0.146-0.584c-0.097-0.046-0.192-0.069-0.283-0.069-0.366 0.080-0.744 0.155-1.133 0.223s-0.864 0.103-1.425 0.103c0 0.24 0.18 0.458 0.541 0.652s0.575 0.444 0.644 0.747c0.069 0.303 0.109 0.538 0.12 0.704s0.017 0.65 0.017 1.451v1.906c0 1.602 0.086 2.77 0.258 3.503s0.446 1.282 0.824 1.648c0.378 0.366 0.747 0.627 1.107 0.781s0.747 0.232 1.159 0.232c0.641-0.092 1.23-0.172 1.768-0.241s1.039-0.281 1.502-0.635 0.89-0.71 1.279-1.064c0.172-0.034 0.335 0.123 0.489 0.472s0.358 0.609 0.609 0.781 0.444 0.278 0.575 0.318c0.132 0.040 0.278 0.060 0.438 0.060 0.275 0 0.512-0.069 0.712-0.206s0.318-0.281 0.352-0.429c-0.721-0.229-1.179-0.615-1.373-1.159s-0.292-1.399-0.292-2.567v-6.113c0-0.744-0.037-1.142-0.112-1.193s-0.169-0.077-0.283-0.077z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

5
svg/3ed.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>3ed</title>
<path fill="#444" d="M22.85 2.598c0 0 1.688 0.183 1.688 1.929l6.266 1.746c0 0 1.565 0.604 1.082 2.652l-5.179 19.335c0 0-1.085 1.447-2.349 1.084l-8.356-2.298-8.358 2.298c-1.264 0.363-2.349-1.084-2.349-1.084l-5.182-19.335c-0.48-2.049 1.085-2.652 1.085-2.652l6.266-1.746c0-1.746 1.686-1.929 1.686-1.929h13.7zM22.795 3.322h-13.589c-0.080 0.014-0.32 0.068-0.549 0.22-0.32 0.215-0.472 0.527-0.472 0.985v0.549c0 0-6.647 1.854-6.744 1.88-0.172 0.080-0.696 0.395-0.696 1.227 0 0.169 0.023 0.358 0.072 0.57 0.012 0.034 5.053 18.862 5.136 19.165 0.22 0.249 0.875 0.907 1.491 0.73l8.558-2.355 8.553 2.355c0.618 0.177 1.271-0.48 1.494-0.73 0.084-0.303 5.128-19.131 5.136-19.165 0.048-0.212 0.072-0.401 0.072-0.57 0-0.832-0.524-1.147-0.696-1.227-0.097-0.026-6.744-1.88-6.744-1.88v-0.549c0-0.458-0.152-0.77-0.472-0.985-0.226-0.152-0.47-0.206-0.549-0.22v0zM8.041 6.038v18.593c0 0 0.158 1.205 1.124 1.205h5.219l-6.987 1.929c0 0-0.401 0.2-0.604-0.24l-5.139-19.077c0 0-0.2-0.601 0.281-0.761l6.106-1.648zM23.959 5.998l6.103 1.648c0.483 0.16 0.283 0.761 0.283 0.761l-5.142 19.074c-0.2 0.443-0.601 0.243-0.601 0.243l-6.987-1.929h5.219c0.964 0 1.124-1.204 1.124-1.204v-18.593zM22.738 4.192c0.28 0 0.32 0.36 0.32 0.36v19.998c0 0.32-0.32 0.401-0.32 0.401h-13.452c-0.283 0-0.283-0.401-0.283-0.401v-19.998c0-0.24 0.283-0.36 0.283-0.36h13.452zM16.82 9.212h-0c-0.641 0-1.185 0.111-1.635 0.333s-0.844 0.478-1.185 0.767h-0.898c-0.393 0-0.868-0.046-1.425-0.139s-0.997-0.17-1.317-0.232c-0.155 0-0.233 0.093-0.233 0.279 0 0.155 0.341 0.264 1.023 0.326s1.075 0.147 1.178 0.256c0.103 0.108 0.199 0.462 0.287 1.061s0.132 1.147 0.132 1.643v4.075c0 1.26-0.067 1.916-0.201 1.968s-0.473 0.090-1.015 0.116c-0.542 0.026-0.813 0.116-0.813 0.271 0 0.196 0.093 0.295 0.279 0.295l1.829-0.171h2.324l1.348 0.124h0.155c0.186 0 0.279-0.108 0.279-0.325 0-0.134-0.077-0.201-0.232-0.201h-1.193c-0.434 0-0.733-0.054-0.899-0.163s-0.248-0.354-0.248-0.736v-0.558c0-0.248 0.005-0.814 0.016-1.697s0.046-1.325 0.108-1.325c0.857 0 1.534 0.31 2.030 0.93s1.025 1.369 1.588 2.247c0.563 0.878 0.932 1.371 1.108 1.48s0.294 0.168 0.357 0.178h2.309c0.010-0.021 0.031-0.055 0.062-0.101s0.047-0.090 0.047-0.132c0-0.145-0.183-0.23-0.55-0.256s-0.664-0.214-0.891-0.565c-0.496-0.671-0.973-1.33-1.433-1.976s-0.845-1.247-1.154-1.805c0.93-0.63 1.524-1.080 1.782-1.348s0.387-0.806 0.387-1.612c0-0.888-0.315-1.611-0.945-2.169s-1.415-0.837-2.355-0.837zM15.922 10.173c0.785 0 1.379 0.24 1.782 0.721s0.604 1.087 0.604 1.821c0 0.62-0.196 1.111-0.589 1.472s-0.878 0.542-1.457 0.542c-0.702 0-1.203-0.158-1.503-0.473s-0.449-0.741-0.449-1.278v-1.209c0-0.599 0.145-1.015 0.434-1.247s0.682-0.349 1.178-0.349z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

5
svg/4ed.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>4ed</title>
<path fill="#444" d="M0 5.125v4.304h4.892v13.181h-4.892v4.265h30.846v-4.265h-7.878l5.588-13.181h3.444v-4.304h-32zM10 22.61v-13.181h1.885l5.277 13.181h-7.162zM16.84 9.429h5.462l-2.76 7.353-2.703-7.353z"></path>
</svg>

After

Width:  |  Height:  |  Size: 367 B

5
svg/5dn.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
<title>5dn</title>
<path fill="#444" d="M15.053 7.133c0 0 2.883 0.301 5.374 1.245 0 0 0.354-0.261 0.503-0.705 0 0-0.254 1.497-0.143 2.932 0.13 1.684 0.888 3.774 3.197 3.88 2.857 0.134 3.020-3.414 3.020-3.414s0.528 1.115 0.46 2.299c-0.037 0.69-0.423 1.376-0.787 1.944-0.767 1.202-1.876 2.010-2.317 3.424-0.45 1.447-0.732 2.945-0.885 4.448-0.099 0.948-0.155 1.905-0.152 2.858 0.006 0.935 0.072 1.83 0.202 2.625l-5.12 1.050c0 0-0.068-2.23-2.037-2.364 0 0 0-4.66 1.183-8.338 0 0 3.218-0.854 3.284-4.532 0 0-3.812 0.854-6.241 1.314l-0.864 3.153-0.851-3.153c-2.433-0.46-6.241-1.314-6.241-1.314 0.065 3.678 3.284 4.532 3.284 4.532 1.183 3.678 1.183 8.338 1.183 8.338-1.969 0.134-2.034 2.364-2.034 2.364l-5.123-1.050c0.13-0.795 0.193-1.69 0.199-2.625 0.003-0.953-0.049-1.91-0.146-2.858-0.158-1.503-0.438-3.001-0.888-4.448-0.441-1.414-1.551-2.221-2.321-3.424-0.363-0.569-0.746-1.255-0.786-1.944-0.065-1.184 0.46-2.299 0.46-2.299s0.165 3.548 3.020 3.414c2.309-0.106 3.070-2.196 3.2-3.88 0.109-1.435-0.143-2.932-0.143-2.932 0.146 0.444 0.503 0.705 0.503 0.705 2.492-0.944 5.374-1.245 5.374-1.245 0.394-3.479 1.311-5.387 1.311-5.387s0.948 1.911 1.323 5.387z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

5
svg/5ed.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
<title>5ed</title>
<path fill="#444" d="M22.875 5.125v4.139h-2.848l-5.394 13.471h5.906v4.139h-17.628v-4.139h5.617l-5.792-13.471h-2.612v-4.139h22.75zM9.449 9.264l2.586 6.98 2.603-6.98h-5.19z"></path>
</svg>

After

Width:  |  Height:  |  Size: 337 B

5
svg/6ed.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>6ed</title>
<path fill="#444" d="M32 5.125v4.304h-4.892v13.181h4.892v4.265h-30.846v-4.265h7.878l-5.588-13.181h-3.444v-4.304h32zM22 22.61v-13.181h-1.885l-5.277 13.181h7.162zM15.16 9.429h-5.462l2.76 7.353 2.703-7.353z"></path>
</svg>

After

Width:  |  Height:  |  Size: 370 B

5
svg/7ed.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="22" height="32" viewBox="0 0 22 32">
<title>7ed</title>
<path fill="#444" d="M20.971 3.002c-0.242-0.132-2.136-0.004-2.71-0.008s-1.432 0.003-2.463-0.035c-1.031-0.039-6.361-0.175-7.549-0.189-1.657-0.019-3.494-0.292-3.494-0.292s-0.307 0.802-0.719 1.514c-0.941 1.608-2.456 2.726-3.48 4.278-0.32 0.484-0.797 1.136-0.366 1.772 0.454 0.664 1.51 0.27 1.893-0.122 0.288-0.295 0.232-0.649 0.605-0.91 0 0 5.081-1.751 10.367-1.841 0 0-0.101 0.271-0.741 1.562-0.534 1.078-0.851 2.349-1.55 3.307-0.173 0.237-1.559 0.274-2.249 0.293-0.198 0.005-0.018-0.708-0.687-0.704-0.252 0.001-0.585 0.523-0.677 0.718-0.168 0.354-0.303 0.807-0.381 1.163-0.084 0.381-0.352 1.661-0.010 1.855 0.196 0.114 0.911 0.155 1.186-0.227 0.146-0.203 0.393-0.371 0.43-0.388 0.498-0.252 0.789-0.243 1.216-0.060l-0.122 0.499c-1.164 3.155-2.364 5.026-3.811 8.151-0.89 1.923-1.468 2.973-1.836 3.572-0.383 0.623-0.874 0.838-0.874 0.838-0.672 0.367-1.081 0.473-1.081 1.246 0 0.672 0.95 0.575 1.362 0.445 1.16-0.367 2.512-1.246 3.083-1.583 1.975-1.167 4.651-1.903 4.651-1.903s0.263-4.73 0.887-7.048c0.487-1.812 0.953-3.429 1.648-4.889 0.096-0.201 0.549-0.37 0.778-0.465 0.448-0.185 1.203-0.328 1.765-0.381 0.936-0.088 0.901-0.345 0.994-0.927 0.117-0.732-0.948-0.413-1.365-0.371-0.072 0.006-0.681 0.064-0.751 0.078 0.302-0.645 0.874-2.026 1.264-2.762 0.639-1.206 1.685-2.438 2.594-3.497 0.405-0.472 1.343-1.251 1.908-1.51 0.561-0.256 0.565-0.817 0.533-0.915-0.062-0.194-0.249-0.263-0.249-0.263z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

5
svg/8ed.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>8ed</title>
<path fill="#444" d="M22.858 2.588c0 0 1.69 0.178 1.69 1.928l6.269 1.75c0 0 1.566 0.601 1.082 2.652l-5.184 19.352c0 0-1.086 1.449-2.351 1.085l-8.362-2.3-8.366 2.3c-1.266 0.364-2.351-1.085-2.351-1.085l-5.186-19.352c-0.481-2.051 1.089-2.652 1.089-2.652l6.269-1.75c0-1.749 1.687-1.928 1.687-1.928h13.715zM22.804 3.31h-13.607c-0.077 0.014-0.317 0.068-0.547 0.22-0.32 0.215-0.472 0.527-0.472 0.985v0.55c0 0-6.653 1.856-6.75 1.882-0.172 0.080-0.697 0.395-0.697 1.228 0 0.169 0.023 0.358 0.075 0.57 0.009 0.037 5.054 18.879 5.138 19.182 0.221 0.252 0.879 0.905 1.495 0.73l8.563-2.357 8.563 2.357c0.616 0.174 1.272-0.478 1.492-0.73 0.084-0.304 5.132-19.145 5.141-19.182 0.049-0.212 0.072-0.401 0.072-0.57 0-0.833-0.521-1.148-0.696-1.228-0.098-0.026-6.751-1.882-6.751-1.882v-0.55c0-0.458-0.152-0.771-0.469-0.985-0.23-0.152-0.473-0.206-0.55-0.22zM8.035 6.062v18.609c0 0 0.158 1.209 1.125 1.209h5.224l-6.994 1.927c0 0-0.4 0.2-0.604-0.241l-5.141-19.094c0 0-0.203-0.602 0.278-0.762l6.112-1.65zM23.97 6.022l6.109 1.65c0.481 0.161 0.281 0.762 0.281 0.762l-5.147 19.094c-0.197 0.441-0.601 0.241-0.601 0.241l-6.994-1.93h5.227c0.965 0 1.125-1.205 1.125-1.205v-18.61zM22.744 4.215c0.281 0 0.323 0.361 0.323 0.361v20.016c0 0.321-0.323 0.404-0.323 0.404h-13.463c-0.284 0-0.284-0.404-0.284-0.404l-0-20.016c0-0.24 0.284-0.361 0.284-0.361h13.463zM17.917 6.47q-2.256 0-3.987 1.34t-1.732 3.182q0 0.879 0.503 1.679t1.552 1.477q-2.15 0.784-3.145 1.912t-0.995 2.685q0 1.514 1.197 2.51t3.315 0.995q2.658 0 4.506-1.44t1.848-3.453q0-1.006-0.625-1.848t-2.012-1.509q1.747-0.741 2.648-1.869t0.9-2.431q0-1.387-1.075-2.309t-2.896-0.921zM14.93 14.518q0.943 0.402 1.694 0.784t1.25 0.784 0.741 0.858 0.244 1.038q0 1.43-1.059 2.452t-2.785 1.022q-1.303 0-2.049-0.778t-0.747-2.007q0-1.334 0.688-2.415t2.023-1.737zM17.61 7.253q1.101 0 1.673 0.657t0.572 1.663q0 1.207-0.577 2.341t-1.604 1.705q-1.747-0.71-2.568-1.419t-0.821-1.79q0-1.356 0.969-2.256t2.356-0.9z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

5
svg/9ed.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>9ed</title>
<path fill="#444" d="M22.86 2.58c0 0 1.691 0.18 1.691 1.928l6.272 1.751c0 0 1.567 0.601 1.086 2.653l-5.186 19.361c0 0-1.086 1.45-2.352 1.089l-8.367-2.304-8.37 2.304c-1.266 0.361-2.352-1.088-2.352-1.088l-5.189-19.361c-0.481-2.052 1.086-2.653 1.086-2.653l6.274-1.751c0-1.748 1.688-1.928 1.688-1.928h13.719zM22.805 3.303h-13.61c-0.077 0.014-0.321 0.068-0.547 0.22-0.323 0.215-0.472 0.527-0.472 0.986l-0 0.55c0 0-6.656 1.857-6.753 1.883-0.175 0.080-0.696 0.398-0.696 1.229 0 0.169 0.023 0.359 0.071 0.571 0.009 0.037 5.061 18.888 5.141 19.192 0.224 0.252 0.88 0.905 1.496 0.731l8.567-2.358 8.57 2.358c0.616 0.175 1.27-0.478 1.493-0.731 0.083-0.304 5.132-19.154 5.143-19.192 0.049-0.212 0.072-0.401 0.072-0.571 0-0.83-0.524-1.149-0.696-1.229-0.098-0.026-6.756-1.883-6.756-1.883l-0-0.55c0-0.458-0.149-0.771-0.47-0.986-0.229-0.152-0.47-0.206-0.55-0.22v-0zM8.029 6.059v18.615c0 0 0.16 1.21 1.126 1.21h5.226l-6.994 1.928c0 0-0.404 0.2-0.605-0.241l-5.146-19.1c0 0-0.201-0.605 0.281-0.765l6.112-1.647zM23.971 6.019l6.112 1.647c0.484 0.161 0.284 0.762 0.284 0.762l-5.149 19.103c-0.2 0.441-0.602 0.241-0.602 0.241l-6.997-1.931h5.226c0.965 0 1.126-1.206 1.126-1.206v-18.616zM22.748 4.208c0.281 0 0.321 0.361 0.321 0.361l-0 20.026c0 0.323-0.32 0.404-0.32 0.404h-13.473c-0.281 0-0.281-0.404-0.281-0.404v-20.026c0-0.241 0.281-0.361 0.281-0.361h13.473zM16.933 6.494q-2.142 0-3.753 1.762t-1.612 4.133q0 1.681 0.99 2.729t2.556 1.048q0.322 0 0.633-0.046t0.633-0.138q0.438-0.138 0.887-0.392t0.979-0.668l0.046 0.069q-0.207 0.438-0.415 0.806t-0.414 0.714q-0.415 0.645-0.829 1.163t-0.967 1.025q-0.898 0.875-2.107 1.566t-2.475 1.105q-0.092 0.023-0.196 0.058t-0.219 0.035l0.622 0.645q3.615-0.345 6.597-3.258t3.396-6.321q0.023-0.23 0.035-0.449t0.012-0.449q0-2.257-1.22-3.696t-3.178-1.439zM16.91 7.323q1.059 0 1.739 0.956t0.679 2.429q0 0.622-0.127 1.313t-0.403 1.52v0.023q-0.345 0.322-0.668 0.553t-0.645 0.368q-0.368 0.184-0.737 0.265t-0.783 0.081q-1.013 0-1.612-0.714t-0.599-1.911q0-1.98 0.933-3.431t2.222-1.451z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

5
svg/a25.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
<title>a25</title>
<path fill="#444" d="M11.582 0.115c0.007-0.053 0.043-0.116 0.105-0.115 0.074-0.001 0.105 0.080 0.112 0.142 0.731 4.492 1.463 8.985 2.195 13.477 0.404 0.044 0.807 0.1 1.207 0.167 0.775-3.256 1.448-6.541 1.903-9.859-0.004-0.139 0.209-0.19 0.224-0.032 0.688 3.747 1.374 7.494 2.061 11.24 0.257 0.137 0.509 0.286 0.754 0.444 0.608-2.308 1.218-4.616 1.827-6.923 0.024-0.053 0.096-0.074 0.139-0.027s0.044 0.115 0.054 0.175c0.391 3.533 0.788 7.065 1.178 10.598-1.446 0.78-2.827 1.685-4.103 2.721 0.861 0.71 1.52 1.671 1.832 2.745 0.402 1.372 0.285 2.907-0.398 4.172-0.504 0.947-1.32 1.715-2.274 2.201-1.173 0.602-2.517 0.802-3.825 0.751-1.682-0.076-3.38-0.687-4.597-1.877-2.98 0-5.96 0-8.939 0-0.277-0.549-0.554-1.098-0.831-1.647 1.627-1.781 3.242-3.586 4.603-5.584-1.422-1.372-3.035-2.545-4.774-3.483 0.393-3.546 0.789-7.091 1.184-10.636-0.007-0.087 0.082-0.222 0.171-0.134 0.049 0.078 0.052 0.175 0.078 0.262 0.588 2.227 1.176 4.455 1.763 6.682 0.246-0.161 0.5-0.309 0.76-0.447 0.686-3.744 1.369-7.488 2.055-11.232 0.007-0.051 0.042-0.093 0.091-0.108 0.075 0.001 0.121 0.070 0.133 0.137 0.5 3.31 1.176 6.592 1.906 9.859 0.4-0.067 0.801-0.122 1.204-0.166 0.734-4.501 1.466-9.003 2.2-13.503zM5.595 15.547c-1.036 0.235-2.009 0.722-2.848 1.369-0.542 0.428-1.048 0.928-1.365 1.549 1.101 0.591 2.124 1.314 3.115 2.071 0.086-0.084 0.171-0.168 0.256-0.253-0.181-0.655-0.26-1.37-0.043-2.026 0.127-0.392 0.393-0.755 0.777-0.924 0.494-0.216 1.090-0.158 1.549 0.119 0.401 0.238 0.669 0.664 0.752 1.119 0.105 0.565 0.014 1.148-0.147 1.694-0.232 0.761-0.617 1.465-1.040 2.136-0.683 1.070-1.476 2.063-2.287 3.037-0.95 1.134-1.94 2.234-2.933 3.331 0.050 0.1 0.1 0.199 0.151 0.299 2.809 0 5.619 0 8.428-0 0.721-1.155 1.442-2.31 2.163-3.465-0.126 0.007-0.255-0.018-0.378 0.011-0.564 0.223-1.122 0.464-1.687 0.682-1.485 0.010-2.971 0.002-4.456 0.004 1.172-1.265 2.487-2.386 3.793-3.508 0.499-0.437 0.996-0.886 1.386-1.426 0.315-0.434 0.54-0.935 0.631-1.464 0.113-0.665 0.069-1.364-0.176-1.995-0.225-0.582-0.619-1.093-1.114-1.471-0.599-0.462-1.322-0.739-2.061-0.881-0.812-0.147-1.657-0.194-2.466-0.008zM18.569 17.136c-2.080 0-4.16-0-6.24 0-0.269 2.449-0.537 4.899-0.806 7.348 1.224-0.007 2.475 0.091 3.628 0.531 0.642 0.249 1.261 0.621 1.681 1.177 0.32 0.418 0.497 0.949 0.456 1.477-0.024 0.487-0.219 0.984-0.608 1.293-0.442 0.358-1.040 0.448-1.593 0.405-0.582-0.041-1.162-0.292-1.536-0.749-0.408-0.485-0.551-1.139-0.528-1.76-0.111-0.037-0.222-0.074-0.333-0.11-0.573 0.868-1.146 1.736-1.718 2.605 0.535 0.535 1.194 0.939 1.904 1.2 1.258 0.462 2.65 0.511 3.953 0.223 1.1-0.246 2.156-0.84 2.8-1.785 0.846-1.215 0.938-2.868 0.349-4.21-0.434-1.001-1.262-1.794-2.222-2.293-1.277-0.668-2.733-0.898-4.159-0.939 0.057-0.547 0.114-1.095 0.17-1.643 2.102-0 4.205 0 6.307-0-0.169-1.238-0.338-2.477-0.508-3.715-0.117-0-0.233-0-0.349-0-0.217 0.315-0.432 0.631-0.649 0.946z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

5
svg/aer.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>aer</title>
<path fill="#444" d="M7.838 4.027c0.951-0.648 2.148-0.896 3.284-0.761 0.974 0.128 1.941 0.552 2.596 1.3 0.421 0.476 0.666 1.124 0.576 1.761-0.088 0.747-0.575 1.36-1.053 1.907-0.454 0.453-1.014 0.777-1.547 1.127-2.117 1.337-4.262 2.708-5.954 4.58-1.608 1.73-2.395 4.169-2.181 6.513 0.139 1.573 0.84 3.079 1.915 4.23 0.955 1.030 2.264 1.774 3.68 1.886 0.397 0.023 0.846 0.089 1.186-0.168 0.266-0.181 0.336-0.533 0.298-0.834-0.074-0.616-0.452-1.158-0.929-1.539-0.676-0.544-1.472-0.913-2.276-1.226-0.614-0.249-1.237-0.506-1.762-0.919-0.303-0.239-0.575-0.559-0.636-0.952-0.049-0.401 0.021-0.81 0.162-1.186 0.221 0.358 0.556 0.703 1.003 0.724 0.339-0.001 0.703-0.035 0.995-0.224 0.255-0.17 0.254-0.519 0.188-0.786-0.208-0.873-0.725-1.683-0.684-2.606 0.014-0.485 0.303-0.913 0.671-1.211 0.633-0.523 1.443-0.735 2.188-1.046 0.275-0.123 0.573-0.257 0.746-0.518 0.19-0.32 0.189-0.761-0.052-1.056-0.291-0.362-0.749-0.521-1.183-0.638 0.659-0.155 1.366-0.138 1.999 0.115 0.61 0.24 1.148 0.647 1.586 1.13 0.527 0.617 0.261 1.637-0.412 2.033-0.921 0.542-1.748 1.424-1.886 2.523-0.114 0.758 0.579 1.419 1.303 1.473-0.201-0.565-0.203-1.199 0.028-1.755 0.252-0.669 0.788-1.165 1.214-1.722 0.739-0.924 1.365-1.941 1.825-3.031 0.529-1.237 0.909-2.53 1.271-3.823 0.445 1.547 0.892 3.106 1.613 4.552 0.429 0.865 0.974 1.668 1.58 2.419 0.394 0.502 0.866 0.96 1.104 1.563 0.246 0.567 0.253 1.219 0.045 1.798 0.552-0.050 1.076-0.417 1.26-0.947 0.115-0.373 0.027-0.774-0.105-1.13-0.321-0.825-0.985-1.474-1.737-1.917-0.674-0.395-0.938-1.415-0.412-2.032 0.583-0.644 1.351-1.163 2.221-1.306 0.453-0.081 0.917-0.037 1.364 0.058-0.419 0.116-0.859 0.266-1.153 0.603-0.32 0.353-0.287 0.97 0.080 1.277 0.304 0.25 0.685 0.374 1.047 0.514 0.749 0.282 1.558 0.569 2.072 1.219 0.31 0.373 0.381 0.888 0.297 1.354-0.117 0.74-0.494 1.404-0.664 2.13-0.063 0.262-0.058 0.602 0.193 0.766 0.292 0.188 0.655 0.222 0.993 0.223 0.447-0.019 0.784-0.364 1.003-0.723 0.143 0.377 0.216 0.787 0.166 1.189-0.067 0.426-0.381 0.762-0.715 1.010-0.683 0.503-1.497 0.768-2.269 1.097-0.627 0.278-1.242 0.605-1.767 1.050-0.424 0.358-0.754 0.85-0.843 1.403-0.040 0.261-0.022 0.557 0.148 0.773 0.155 0.185 0.39 0.293 0.628 0.317 1.214 0.064 2.431-0.334 3.41-1.049 1.401-1.020 2.4-2.577 2.761-4.271 0.531-2.629-0.303-5.496-2.158-7.433-1.735-1.882-3.925-3.249-6.070-4.609-0.553-0.369-1.148-0.713-1.556-1.252-0.44-0.53-0.841-1.154-0.848-1.865-0.027-0.794 0.448-1.516 1.060-1.984 1.5-1.153 3.708-1.167 5.293-0.176 0.589 0.38 1.107 0.933 1.31 1.616 0.171 0.558-0.171 1.142-0.628 1.448-0.558 0.36-1.27 0.331-1.892 0.178 0.306-0.264 0.629-0.583 0.667-1.008 0.012-0.414-0.366-0.707-0.719-0.838-0.527-0.204-1.24 0.042-1.42 0.605-0.132 0.597 0.277 1.138 0.686 1.524 1.125 1.033 2.46 1.8 3.785 2.545 1.608 0.832 3.125 1.896 4.297 3.29 0.761 0.908 1.356 1.974 1.618 3.136 0.505 2.346 0.025 4.859-1.223 6.9-1.193 1.962-2.931 3.597-4.977 4.644-1.044 0.523-2.216 0.896-3.396 0.757-1.099-0.11-2.205-0.511-3.004-1.295-0.385-0.373-0.529-0.945-0.419-1.463 0.145-0.732 0.596-1.366 1.12-1.879 0.393-0.393 0.897-0.638 1.327-0.983 0.821-0.635 1.62-1.486 1.704-2.573-0.497 0.324-1.063 0.517-1.627 0.688-0.727 0.228-1.441 0.547-2.020 1.052-0.505 0.435-0.879 1.002-1.159 1.603-0.429 0.913-0.704 1.887-0.993 2.85-0.328-1.027-0.704-2.083-0.606-3.179 0.047-0.573 0.234-1.124 0.48-1.641 0.457-0.99 0.802-2.090 0.64-3.191-0.179-1.002-0.896-1.785-1.592-2.479-0.69 0.699-1.41 1.478-1.589 2.481-0.164 1.118 0.195 2.233 0.661 3.237 0.284 0.597 0.472 1.248 0.473 1.913 0.008 0.988-0.32 1.933-0.622 2.861-0.278-0.934-0.548-1.875-0.952-2.764-0.273-0.602-0.632-1.175-1.124-1.622-0.561-0.517-1.265-0.848-1.984-1.084-0.6-0.185-1.209-0.377-1.738-0.725 0.063 0.892 0.635 1.644 1.28 2.22 0.395 0.364 0.846 0.658 1.292 0.955 0.684 0.501 1.254 1.194 1.519 2.007 0.189 0.564 0.107 1.241-0.32 1.677-0.8 0.812-1.927 1.223-3.045 1.335-1.216 0.143-2.422-0.258-3.491-0.807-1.884-0.987-3.498-2.473-4.663-4.249-0.985-1.502-1.586-3.269-1.63-5.071-0.024-1.073 0.092-2.167 0.502-3.166 0.687-1.7 2.004-3.065 3.469-4.128 0.617-0.448 1.268-0.851 1.946-1.202 1.093-0.597 2.172-1.228 3.17-1.975 0.407-0.312 0.813-0.636 1.139-1.035 0.246-0.308 0.434-0.705 0.366-1.109-0.070-0.338-0.374-0.579-0.691-0.676-0.458-0.146-0.98 0.030-1.29 0.387-0.145 0.165-0.213 0.401-0.149 0.615 0.093 0.36 0.371 0.627 0.642 0.863-0.622 0.153-1.332 0.181-1.89-0.177-0.459-0.307-0.803-0.892-0.629-1.45 0.188-0.636 0.656-1.157 1.189-1.535z"></path>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

5
svg/akh.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="30" height="32" viewBox="0 0 30 32">
<title>akh</title>
<path fill="#444" d="M5.119 11.925c3.207-3.728 6.418-7.453 9.627-11.18 3.231 3.767 6.472 7.526 9.697 11.299-3.232 1.953-6.456 3.919-9.685 5.877-3.214-1.998-6.426-3.997-9.639-5.995zM7.476 11.814c2.163 1.346 4.321 2.7 6.483 4.049 0.001-4.051 0.001-8.101 0.001-12.152-2.162 2.701-4.327 5.399-6.484 8.104zM2.107 20.895c0.832-0.928 1.662-1.855 2.494-2.782 3.118 1.893 6.235 3.786 9.352 5.679 0.002 1.438-0.001 2.876 0.002 4.313-3.951-2.4-7.9-4.806-11.848-7.211zM0.028 21.068c4.906 3.042 9.815 6.082 14.723 9.122 4.907-2.976 9.814-5.954 14.721-8.931-1.442-1.698-2.884-3.397-4.325-5.096-3.47 2.102-6.936 4.21-10.406 6.312-3.45-2.143-6.9-4.289-10.35-6.433-1.454 1.677-2.909 3.35-4.362 5.026z"></path>
</svg>

After

Width:  |  Height:  |  Size: 850 B

5
svg/ala.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
<title>ala</title>
<path fill="#444" d="M9.978 4.395l-4.398 3.279v16.651l4.398 3.279-1.759-2.96v-17.29l1.759-2.96zM3.528 8.822v14.36l-1.756-1.174-1.759-6.447 1.759-5.568 1.756-1.171zM15.839 27.605l4.398-3.279v-16.651l-4.398-3.279 1.756 2.96v17.29l-1.756 2.96zM12.908 29.335l2.638-5.275v-16.119l-2.637-5.276-2.637 5.276v16.119l2.637 5.275zM22.285 23.182v-14.36l1.759 1.171 1.756 5.568-1.756 6.447-1.759 1.174z"></path>
</svg>

After

Width:  |  Height:  |  Size: 556 B

5
svg/all.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>all</title>
<path fill="#444" d="M25.036 14.538l-0.689-0.059 0.804 1.896c-3.445-2.183-6.718-1.035-6.718-1.035-0.344-1.379 0.059-3.273 0.059-3.273 3.501-1.664 8.841 0.403 8.841 0.403-1.723 1.146-2.297 2.067-2.297 2.067zM20.593 16.804l-0.838-0.429c0.401-0.344 0.862-0.287 0.862-0.287l-0.023 0.716zM17.802 17.234c-1.263-0.745-7.35-3.904-13.492-3.387 0 0 2.468-0.862 4.536-1.205 0 0-0.458-0.745-2.986-1.951 0 0 5.627 0.057 11.484 3.617 0 0 0 0.975 0.344 1.78 0.344 0.802 0.862 0.572 0.862 0.572s0.802 0.634 1.492 0.862c0 0-0.977 0.46-2.24-0.287zM26.185 16.66c0 0-0.195-0.608-0.596-1.47 0 0 1.113-1.229 2.663-2.031l-2.067 3.5zM30.574 9.267c-0.769 0-1.393 0.623-1.393 1.394 0 0.384 0.156 0.73 0.408 0.984l-0.275 0.466-0.847-0.034c-0.395-0.152-0.853-0.332-0.853-0.332-0.232-0.089-5.695-2.166-9.455-0.378l-0.346 0.165-0.080 0.373c-0.011 0.049-0.152 0.743-0.198 1.617-4.487-2.671-8.906-3.363-10.758-3.547-1.984-0.196-3.959-0.004-3.959-0.004 2.642 1.235 4.261 2.251 4.261 2.251s-2.424 0.331-7.046 2.599l4.343-0.203c6.472-0.545 12.768 3.125 13.034 3.281 1.073 0.636 2.141 0.655 2.751 0.401 1.484-0.61 1.214-2.451 1.214-2.451 0.988 0.102 2.158 0.416 3.362 1.178l0.846 0.551-2.584 4.464 0.976 0.689 6.028-9.819-0.114-0.458 0.277-0.471c0.129 0.040 0.266 0.070 0.41 0.070 0.771 0 1.393-0.625 1.393-1.393 0-0.771-0.623-1.394-1.393-1.394z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

5
svg/apc.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="21" height="32" viewBox="0 0 21 32">
<title>apc</title>
<path fill="#444" d="M10.294 21.265h-3.186c-0.973 2.015-0.715 5.267-0.715 5.267s-2.276-3.057-2.276-6.633c0-3.576 2.537-7.152 2.537-7.152 0.586-0.259 2.534-0.325 2.534-0.325s-1.495-3.186-4.225-2.339c-2.733 0.844-3.576 3.9-3.576 3.9 1.171-0.715 3.705-0.846 3.705-0.846s-2.342 2.733-2.342 6.633c0 3.901 4.423 9.558 4.423 9.558s-7.153-1.429-7.153-13.005c0-11.473 8.944-13.616 10.431-13.654h0.071c1.367 0 10.468 2.081 10.468 13.657 0 11.573-7.153 13.005-7.153 13.005s4.423-5.657 4.423-9.561c0-3.9-2.342-6.633-2.342-6.633s2.534 0.132 3.705 0.846c0 0-0.844-3.057-3.576-3.9-2.73-0.847-4.225 2.339-4.225 2.339s1.949 0.066 2.534 0.325c0 0 2.537 3.579 2.537 7.155s-2.276 6.63-2.276 6.63c0 0 0.258-3.251-0.715-5.267h-3.611z"></path>
</svg>

After

Width:  |  Height:  |  Size: 878 B

5
svg/arb.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="32" viewBox="0 0 24 32">
<title>arb</title>
<path fill="#444" d="M23.291 16v8.086l-1.979-1.396-2.095-5.353h-2.327l2.807 8.367-2.982 1.342-1.977-9.709h-1.862l1.52 10.752-2.741 1.235-2.744-1.235 1.523-10.752h-1.865l-1.974 9.709-2.986-1.342 2.808-8.367h-2.328l-2.091 5.353-1.98 1.396v-16.174l1.98 1.397 2.091 5.353h2.328l-2.808-8.364 2.986-1.345 1.974 9.709h1.865l-1.523-10.752 2.744-1.233 2.741 1.233-1.52 10.752h1.862l1.977-9.709 2.982 1.345-2.807 8.364h2.327l2.095-5.353 1.979-1.397v8.088z"></path>
</svg>

After

Width:  |  Height:  |  Size: 612 B

5
svg/arc.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
<title>arc</title>
<path fill="#444" d="M12.999 31.168l-8.484-8.681 0.901-1.129-5.187-4.792c0-9.417 8.585-14.041 8.585-14.041s-3.807 5.331-3.807 11.757c0 6.429 2.456 7.318 3.679 7.318 1.229 0 2.158-0.804 2.158-2.158 0-2.368-2.918-2.368-2.918-2.368l5.078-16.24 5.074 16.24c0 0-2.918 0-2.918 2.368 0 1.354 0.929 2.158 2.155 2.158s3.679-0.889 3.679-7.318c0-6.425-3.804-11.757-3.804-11.757s8.585 4.624 8.585 14.041l-5.187 4.792 0.901 1.129-8.487 8.681z"></path>
</svg>

After

Width:  |  Height:  |  Size: 596 B

5
svg/arn.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>arn</title>
<path fill="#444" d="M31.997 8.984c0 0-0.373 2.426-2.101 3.997l0.688-0.020c-1.612 1.759-2.672 1.425-2.672 1.425 0.354 0.352 0.864 0.274 0.864 0.274-1.216 1.043-3.024 1.022-3.024 1.022 0.314 0.197 0.864 0.313 0.864 0.313-1.359 0.61-2.283 0.75-2.866 0.731-1.739-0.053-2.553-0.77-2.553-0.77 0.235 0.551 0.667 0.924 0.667 0.924-7.070-0.709-10.164-3.080-10.164-3.080h-2.782l-0.162 0.161v1.421c0 0-0.016 0.113 0.102 0.113h1.587c0 0 0.285 0.008 0.285 0.303v1.286c0 0 0.5 1.356-0.295 1.356-0.796 0-0.295-1.413-0.295-1.413v-0.831c0-0.127-0.109-0.111-0.109-0.111h-1.708c-0.33 0-0.305-0.321-0.305-0.321v-1.712l-0.176-0.207h-4.361v0.884h-0.442c-0.678 0-0.795-0.913-0.795-0.913h-0.295c0.018 0-0.022 0.457-0.025 0.49-0.025 0.266-0.027 0.534-0.106 0.792-0.076 0.252-0.248 0.461-0.34 0.707-0.055 0.145 0.025 0.201 0.135 0.274 0.078 0.053 0.147 0.131 0.209 0.201 0.204 0.235 0.346 0.522 0.434 0.819 0.098 0.33 0.135 0.676 0.135 1.017 0 0.242-0.010 0.49-0.041 0.731-0.035 0.262-0.086 0.536-0.211 0.772-0.115 0.217-0.293 0.377-0.475 0.537-0.185 0.161-0.346 0.352-0.514 0.53-1.026 1.088-0.36 2.331-0.36 2.331v0c0 0-0.827-0.252-0.784-1.329 0.043-1.067 0.882-1.657 0.882-1.657s-0.737-0.647-0.737-2.062c0-0.447 0.063-0.901 0.237-1.315 0.063-0.154 0.142-0.295 0.244-0.428 0.047-0.063 0.096-0.139 0.084-0.221-0.014-0.088-0.1-0.144-0.154-0.209-0.080-0.098-0.135-0.213-0.186-0.331-0.152-0.367-0.191-0.766-0.185-1.159 0.006-0.373 0.027-0.758 0.125-1.118 0.053-0.203 0.139-0.406 0.252-0.585 0.285-0.453 0.752-0.747 1.265-0.869 0.014-0.002 0.321-0.057 0.321-0.039v-0.619c0.53-0.414 1.001 0 1.001 0v0.766l0.148 0.176h4.537l0.205-0.264v-1.091c0-0.133-0.113-0.147-0.113-0.147h-0.623c0 0-0.059 1.001-0.796 1.001s-0.913-0.854-0.913-1.237c0-0.383 0.235-1.12 0.884-1.12 0.647 0 0.776 0.709 0.776 0.709l1.217-0c0 0 0.305-0.031 0.305 0.362v1.757h4.597c0 0 3.063 2.004 8.778 2.004s9.839-5.009 9.839-5.009zM1.213 16.525c0 0-0.532 0.147-0.532 1.179 0 1.030 0.295 1.914 0.62 1.914 0.324 0 0.588-0.618 0.588-1.208s-0.147-1.886-0.676-1.886zM30.96 10.69c-1.024 0.919-2.565 2.078-4.484 2.869l-0.033 0.014c-1.28 0.522-2.719 0.883-4.286 0.883-0.762 0-1.47-0.037-2.138-0.098l-0.049-0.004c-3.958-0.366-6.233-1.607-6.721-1.9h-2.59v0.444h0.608c0 0 0.362 0.326 0.745 0.561v-0c0.344 0.211 3.131 2.062 8.829 2.815 0 0-0.246-0.374-0.119-1.009 0 0 0.643 0.381 1.188 0.59 0.381 0.145 0.981 0.383 1.851 0.411 0.334 0.010 0.864-0.051 1.595-0.285-0.24-0.147-0.721-0.717-0.721-0.717s1.118-0.045 1.12-0.045c0.041 0 1.007-0.011 1.931-0.426l-0.014-0.030c-0.328-0.232-0.25-0.781-0.25-0.781 0.432 0.029 0.926-0.069 0.926-0.069 0.223-0.045 0.555-0.164 0.971-0.453-0.33 0.011-0.662 0.020-0.662 0.020l0.925-0.841c0.641-0.583 1.075-1.298 1.376-1.949zM1.123 12.96c0 0-0.471 0.266-0.471 1.12s0.176 1.444 0.442 1.444c0.264 0 0.383-1.030 0.383-1.503 0-0.471-0.059-1.061-0.354-1.061zM8.519 12.194l-0.442 0.266v1.001l0.442 0.266v-1.534zM6.486 9.543c0 0-0.471 0.059-0.471 0.766 0 0.708 0.471 0.796 0.471 0.796s0.442-0.118 0.442-0.796c0-0.678-0.442-0.766-0.442-0.766z"></path>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

5
svg/ath.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>ath</title>
<path fill="#444" d="M18.976 18.633l12.566-4.515-17.583-5.318-11.697 3.743 16.714 6.090zM17.843 22.934c-0.119-0.412-0.207-0.893-0.209-1.415 0-0.619 0.121-1.218 0.367-1.786l-17.587-6.406c-0.019 0.034-0.038 0.073-0.057 0.113-0.143 0.301-0.312 0.774-0.312 1.312 0.002 0.509 0.143 0.983 0.432 1.445l17.368 6.737zM19.405 23.2c-0.186-0.391-0.404-0.994-0.402-1.681 0-0.569 0.141-1.092 0.43-1.596l11.898-4.272c-0.049 0.25-0.075 0.504-0.075 0.752 0 0.481 0.096 0.915 0.284 1.293 0.107 0.216 0.248 0.412 0.417 0.584l-12.551 4.921z"></path>
</svg>

After

Width:  |  Height:  |  Size: 687 B

5
svg/atq.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>atq</title>
<path fill="#444" d="M24.294 19.789c0-0.592-0.482-1.074-1.074-1.074s-1.071 0.482-1.071 1.074c0 0.592 0.479 1.071 1.071 1.071s1.074-0.48 1.074-1.071zM19.23 19.789c0-0.592-0.48-1.074-1.071-1.074s-1.071 0.482-1.071 1.074c0 0.592 0.48 1.071 1.071 1.071s1.071-0.48 1.071-1.071zM32.004 16.065h-4.724c-1.205 0-2.181 0.975-2.181 2.181s0.976 2.182 2.181 2.182l0.771 0.007c0 0 0.985 0.308 0.985 1.927 0 1.616-0.976 1.952-0.976 1.952h-15.574c0 0-0.976-0.336-0.976-1.952 0-1.619 0.983-1.927 0.983-1.927s1.541-0.007 1.543-0.007c1.249 0 2.262-1.015 2.262-2.262 0-1.25-1.012-2.262-2.262-2.262-5.932 0-6.047-1.753-6.047-1.753s-6.849-0.381-7.998-5.48h10.097l0.772-0.983h21.149l-0.005 8.378z"></path>
</svg>

After

Width:  |  Height:  |  Size: 840 B

5
svg/avr.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
<title>avr</title>
<path fill="#444" d="M10.689 26.897v-4.217c-4.273-1.176-7.315-5.122-7.315-9.602 0-2.116 0.678-4.178 1.922-5.877l-0.199-0.199h-2.039l-3.060 3.060v-7.448h7.289l4.189 4.189v6.579l-2.553-2.553c-0.356 0.692-0.541 1.457-0.541 2.25 0 2.73 2.221 4.951 4.951 4.951s4.951-2.221 4.951-4.951c0-0.794-0.185-1.559-0.541-2.251l-2.554 2.554v-6.579l4.189-4.189h7.289v7.448l-3.060-3.060h-2.039l-0.198 0.198c1.243 1.699 1.921 3.761 1.921 5.878 0 4.48-3.042 8.426-7.315 9.602v4.217l-2.644 2.489-2.644-2.489z"></path>
</svg>

After

Width:  |  Height:  |  Size: 654 B

5
svg/azorius.svg Executable file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 49 KiB

5
svg/bbd.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="31" height="32" viewBox="0 0 31 32">
<title>bbd</title>
<path fill="#444" d="M31.237 19.414c-3.050 3.105-5.743 5.836-8.080 8.192 0.381 2.113 1.077 3.445 2.088 3.997h-18.599c1.004-0.912 1.618-2.086 1.841-3.523l-8.474-8.666 15.669-19.016 15.555 19.016zM14.149 15.132c-0.259 6.228 0.319 10.206 1.733 11.935 2.15-2.804 1.733-9.613 1.733-11.935-0.913-0.278-2.068-0.278-3.466 0zM8.642 14.592c0.614-0.743 1.892-1.136 1.892-1.136 0.415-1.811 1.466-2.926 3.153-3.343 0.345 1.477 0.517 2.329 0.517 2.558 1.081-0.228 2.207-0.228 3.377 0 0.144-1.36 0.319-2.213 0.524-2.558 1.812 0.333 3.060 2.223 3.060 3.343 0.566 0.189 1.217 0.567 1.953 1.136v7.403l4.438-4.468-11.973-14.696-11.979 14.696 5.038 4.982v-7.917z"></path>
</svg>

After

Width:  |  Height:  |  Size: 809 B

5
svg/bcore.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>bcore</title>
<path fill="#444" d="M22.85 2.598c0 0 1.688 0.183 1.688 1.929l6.266 1.746c0 0 1.565 0.604 1.082 2.652l-5.179 19.335c0 0-1.085 1.447-2.349 1.084l-8.356-2.298-8.358 2.298c-1.264 0.363-2.349-1.084-2.349-1.084l-5.182-19.335c-0.48-2.049 1.085-2.652 1.085-2.652l6.266-1.746c0-1.746 1.686-1.929 1.686-1.929h13.7zM22.795 3.322h-13.592c-0.077 0.014-0.32 0.068-0.546 0.22-0.323 0.214-0.472 0.526-0.472 0.984v0.549c0 0-6.647 1.855-6.744 1.88-0.175 0.080-0.696 0.395-0.696 1.227 0 0.169 0.023 0.358 0.072 0.573 0.009 0.032 5.053 18.859 5.136 19.162 0.22 0.252 0.875 0.907 1.494 0.733l8.555-2.355 8.553 2.355c0.618 0.174 1.271-0.48 1.494-0.733 0.084-0.303 5.128-19.131 5.136-19.162 0.048-0.215 0.072-0.404 0.072-0.573 0-0.832-0.524-1.147-0.696-1.227-0.097-0.026-6.747-1.88-6.747-1.88l-0-0.549c0-0.458-0.149-0.77-0.469-0.984-0.226-0.152-0.47-0.207-0.549-0.22v0zM8.042 6.072v18.593c0 0 0.158 1.208 1.124 1.208h5.219l-6.987 1.926c0 0-0.401 0.2-0.604-0.24l-5.139-19.077c0 0-0.203-0.601 0.281-0.761l6.106-1.648zM23.963 6.032l6.1 1.648c0.483 0.16 0.283 0.761 0.283 0.761l-5.142 19.077c-0.198 0.441-0.601 0.24-0.601 0.24l-6.987-1.929h5.221c0.962 0 1.125-1.204 1.125-1.204v-18.593zM22.738 4.226c0.281 0 0.32 0.36 0.32 0.36v19.998c0 0.321-0.32 0.401-0.32 0.401h-13.452c-0.283 0-0.283-0.401-0.283-0.401v-19.998c0-0.24 0.283-0.36 0.283-0.36h13.452z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

6
svg/bfz.svg Executable file
View File

@ -0,0 +1,6 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="32" viewBox="0 0 20 32">
<title>bfz</title>
<path fill="#444" d="M9.639 1.793c3.347 4.557 6.702 9.108 10.045 13.669-1.736-0.683-3.471-1.368-5.205-2.058-1.313 1.49-2.619 2.988-3.937 4.475-0.003-2.534-0.003-5.068 0-7.602-2.026 2.125-4.059 4.243-6.083 6.369-1.47-0.547-2.94-1.097-4.41-1.645 3.194-4.404 6.393-8.804 9.589-13.207z"></path>
<path fill="#444" d="M5.254 18.596c1.304-1.477 2.608-2.954 3.918-4.424 0.003 2.532 0.005 5.064-0.001 7.596 2.031-2.141 4.070-4.272 6.103-6.411 1.469 0.549 2.938 1.096 4.407 1.645-3.193 4.404-6.391 8.804-9.585 13.206-3.345-4.544-6.688-9.095-10.032-13.636 0.009-0.017 0.028-0.051 0.038-0.068 0.13 0.066 0.248 0.152 0.383 0.21 1.59 0.624 3.181 1.25 4.769 1.883z"></path>
</svg>

After

Width:  |  Height:  |  Size: 816 B

5
svg/bng.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
<title>bng</title>
<path fill="#444" d="M9.19 2.941c-0.151 2.814-0.186 5.605-2.241 8.058-1.936-2.852-4.392-3.151-6.938-3.167 2.276 1.571 6.41 4.759 2.238 13.041 0.612 2.686 2.249 4.777 4.387 6.173 2.015 1.382 4.421 2.028 6.818 2.013 0.013-0 0.025 0 0.038 0 2.4 0.015 4.811-0.632 6.827-2.018 2.134-1.396 3.768-3.485 4.379-6.167-4.172-8.282 0.053-11.47 2.329-13.041-2.546 0.016-5.091 0.316-7.027 3.167-2.055-2.453-2.092-5.244-2.242-8.058-1.024 1.408-3.68 7.258-1.176 10.881 2.138 3.093 0.288 6.427-3.048 6.557l-0.061 0.003-0.060-0.003c-3.336-0.131-5.186-3.465-3.048-6.557 2.504-3.622-0.151-9.473-1.176-10.881z"></path>
</svg>

After

Width:  |  Height:  |  Size: 755 B

5
svg/bok.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="32" viewBox="0 0 29 32">
<title>bok</title>
<path fill="#444" d="M23.673 19.223c2.354 2.839 5.591 3.92 5.591 3.92-5.048 3.194-9.753 0.174-9.753 0.174 2.555-0.757 1.972-4.704-2.149-4.704s-3.138 4.238-3.138 4.238c-4.004 2.38-6.618 7.376-6.618 7.376-3.194-5.866 0-10.048 0-10.048 0.757 2.092 4.356 3.137 4.356-1.449s-4.413-3.312-4.413-3.312c-2.032-4.412-7.549-6.444-7.549-6.444 5.286-3.137 9.987 0.057 9.987 0.057-1.51 0.465-1.915 3.951 2.15 3.951s3.251-4.065 3.251-4.065c0 0 3.367-0.639 6.562-7.145 0 0 3.542 5.17 0.117 9.988 0 0-0.639-1.742-2.206-1.742s-2.381 2.033-2.381 2.903c0 0.871 0.813 3.951 3.077 3.951 0 0 0.81 0.113 1.279-0.697 0 0 0.483 1.413 1.838 3.047z"></path>
</svg>

After

Width:  |  Height:  |  Size: 787 B

5
svg/boros.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="31" height="32" viewBox="0 0 31 32">
<title>boros</title>
<path fill="#444" d="M15.32 1.677c0.055-0.238 0.104-0.479 0.186-0.71 0.588 2.442 1.155 4.889 1.731 7.334 0.146 0.028 0.292 0.055 0.439 0.081 1.342-1.822 2.697-3.635 4.042-5.457 0.091-0.125 0.186-0.248 0.286-0.366-0.351 2.39-0.758 4.772-1.118 7.161 0.177 0.122 0.355 0.242 0.537 0.356 1.617-0.946 3.225-1.909 4.84-2.861 0.274-0.16 0.541-0.334 0.826-0.474-1.139 1.855-2.351 3.665-3.501 5.513 0.161 0.231 0.32 0.465 0.471 0.704 2.025-0.232 4.045-0.51 6.070-0.744-1.616 1.208-3.26 2.38-4.889 3.571 0.050 0.281 0.111 0.56 0.16 0.841 1.86 0.561 3.739 1.066 5.601 1.62-1.867 0.488-3.739 0.956-5.602 1.461-0.33 2.166-1.403 4.209-2.996 5.712 0.443 1.248 0.934 2.479 1.39 3.723-1.040 0.804-2.219 1.423-3.448 1.881-0.318-1.497-0.616-3-0.925-4.498-0.134-0.691-0.298-1.376-0.411-2.070 0.555-0.53 1.111-1.059 1.671-1.585 0.102-0.093 0.202-0.198 0.224-0.34 0.274-1.169 0.569-2.332 0.834-3.503-1.145 0.609-2.274 1.25-3.414 1.871-0.237 0.123-0.46 0.275-0.707 0.374-0.097-0.011-0.182-0.063-0.267-0.103-1.174-0.623-2.357-1.231-3.531-1.854-0.117-0.062-0.24-0.124-0.377-0.117-0.761-0.004-1.522 0.006-2.283-0.003-0.001-0.172-0.001-0.344-0.001-0.515 1.198-0.008 2.396 0.010 3.594-0.009-0.001-0.74 0.001-1.48-0.001-2.219-1.895-0.015-3.79-0.006-5.684-0.004-0.013 1.23 0.001 2.46-0.007 3.69 0.004 0.124-0.011 0.267 0.083 0.364 1.029 1.258 2.060 2.513 3.089 3.771-0.501 2.256-1.029 4.506-1.538 6.761-1.247-0.45-2.435-1.081-3.486-1.89 0.456-1.244 0.947-2.475 1.389-3.723-1.593-1.504-2.666-3.546-2.996-5.712-1.862-0.505-3.734-0.974-5.601-1.461 1.862-0.555 3.74-1.059 5.6-1.62 0.049-0.281 0.11-0.56 0.16-0.841-1.535-1.113-3.066-2.232-4.6-3.346-0.099-0.072-0.195-0.147-0.289-0.225 2.025 0.233 4.044 0.512 6.068 0.743 0.152-0.238 0.311-0.471 0.472-0.702-0.979-1.565-1.989-3.113-2.979-4.671-0.176-0.281-0.369-0.553-0.525-0.846 0.286 0.142 0.554 0.316 0.829 0.477 1.615 0.952 3.223 1.914 4.84 2.861 0.182-0.114 0.36-0.235 0.538-0.356-0.361-2.389-0.768-4.771-1.119-7.161 1.458 1.929 2.888 3.88 4.328 5.823 0.146-0.026 0.293-0.053 0.439-0.081 0.515-2.209 1.040-4.416 1.557-6.624zM13.899 11.831c0 1.328 0 2.656 0 3.984 0.514 0.011 1.029-0.009 1.543 0.012-0.001 0.855-0.006 1.71 0.001 2.565 0.283 0.009 0.566 0.009 0.849 0-0.001-2.188 0.003-4.377-0.002-6.565-0.797-0.003-1.594-0.009-2.391 0.004zM16.995 12.715c-0.001 1.894-0.006 3.788 0.003 5.682 0.756-0.001 1.513-0.001 2.269 0 0.017-1.894 0.008-3.788 0.004-5.682-0.759-0.007-1.518-0.006-2.276 0zM10.665 12.803c-0.007 1.004-0.003 2.008-0.003 3.012 0.859 0.004 1.719 0.004 2.578 0.001 0-1.005 0.005-2.009-0.003-3.014-0.858 0.001-1.715 0-2.572 0.001zM19.891 13.553c-0.006 1.615-0.014 3.23 0.004 4.844 0.648-0.001 1.298 0.003 1.947-0.002 0.003-1.613 0-3.226 0.001-4.839-0.651-0.008-1.301-0.004-1.952-0.002z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

5
svg/brb.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>brb</title>
<path fill="#444" d="M25.551 7.233c1.309 0.006 2.451 0.368 3.394 0.853 1.933 0.993 3.033 2.499 3.033 2.499-2.933 0.141-3.341 2.009-3.355 2.567-0.023 0.951 0.421 1.625 0.421 1.625l1.258 0.593v1.26l-1.258 0.593c0 0-0.461 0.714-0.419 1.642 0.025 0.557 0.419 2.409 3.352 2.55 0 0-1.019 1.438-2.861 2.431-0.97 0.523-2.168 0.922-3.566 0.922-4.051 0-7.403-1.956-9.15-5.168 0 0 2.69 1.99 6.288 1.99 2.724 0 3.592-1.489 3.592-2.432 0-0.941-0.869-2.316-3.001-2.316-2.13 0-3.386 0.698-3.386 0.698s-0.315-0.734-2.933-0.734h-15.471l-0.7 0.314-0.767-1.12 0.767-1.117 0.7 0.315h15.471c2.619 0 2.933-0.734 2.933-0.734s1.256 0.698 3.386 0.698c2.132 0 3.001-1.186 3.001-2.129s-0.869-2.62-3.592-2.62c-3.598 0-6.288 1.992-6.288 1.992 1.747-3.214 5.099-5.188 9.15-5.17z"></path>
</svg>

After

Width:  |  Height:  |  Size: 915 B

5
svg/btd.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>btd</title>
<path fill="#444" d="M31.957 15.882c0-0.805-0.345-1.267-0.345-1.267h-6.338c-0.692 0-0.805 0.692-0.805 0.692h-11.754c0 0 0-1.499-2.42-1.499v-2.073c0 0-1.381 0.692-1.381 2.188h-1.728l-0.807-2.42-1.037 2.304h-1.383v1.039l-3.917 1.152v0.007l3.917 1.15v1.038h1.383l1.037 2.304 0.807-2.42h1.728c0 1.497 1.381 2.188 1.381 2.188v-2.073c2.42 0 2.42-1.499 2.42-1.499h11.754c0 0 0.113 0.692 0.805 0.692h6.338c0 0 0.345-0.461 0.345-1.268v-0.236z"></path>
</svg>

After

Width:  |  Height:  |  Size: 600 B

5
svg/c13.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="25" height="32" viewBox="0 0 25 32">
<title>c13</title>
<path fill="#444" d="M12.116 1.724l-0.035 0.024-3.75 2.522v22.704l0.007 0.007 3.778 3.296 0.037-0.032 3.748-3.271v-22.704l-0.010-0.006-3.775-2.54zM6.659 5.278l-0.037 0.036-6.597 6.3 0.001 0.011c0.712 4.273 2.518 6.598 3.612 8.228 0.547 0.815 0.915 1.455 0.886 2.076s-0.454 1.23-1.508 1.987l-0.017 0.012 0.011 0.017c1.164 1.921 2.466 2.554 3.622 2.753l0.026 0.004v-21.423zM17.447 5.278v21.423l0.026-0.004c1.156-0.199 2.457-0.831 3.622-2.753l0.011-0.017-0.017-0.012c-1.054-0.757-1.478-1.367-1.508-1.987s0.338-1.261 0.886-2.076c1.095-1.63 2.9-3.955 3.612-8.228l0.001-0.011-0.008-0.008-6.626-6.328z"></path>
</svg>

After

Width:  |  Height:  |  Size: 761 B

7
svg/c14.svg Executable file
View File

@ -0,0 +1,7 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="31" height="32" viewBox="0 0 31 32">
<title>c14</title>
<path fill="#444" d="M15.333 5.837c1.431 0 2.852 0.030 4.264 0.086v18.291l-4.264 1.95-4.264-1.95v-18.291c1.412-0.055 2.833-0.086 4.264-0.086z"></path>
<path fill="#444" d="M8.673 6.044v17.074l-7.37-3.37c2.198-5.634 1.126-9.442-1.299-12.823 2.838-0.408 5.731-0.701 8.668-0.881z"></path>
<path fill="#444" d="M21.994 6.044c2.937 0.18 5.831 0.473 8.668 0.881-2.425 3.381-3.497 7.189-1.299 12.823l-7.37 3.37v-17.074z"></path>
</svg>

After

Width:  |  Height:  |  Size: 579 B

6
svg/c15.svg Executable file
View File

@ -0,0 +1,6 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="31" height="32" viewBox="0 0 31 32">
<title>c15</title>
<path fill="#444" d="M0.024 4.68c3.007 0.003 6.015-0.022 9.020 0.012 0.84 0.419 1.612 0.978 2.346 1.564-0.366 1.293-0.267 2.764 0.502 3.898 0.545 0.859 1.488 1.414 2.483 1.572 0.002 5.179 0 10.36 0.002 15.539-3.405-1.867-6.722-3.948-9.644-6.52-1.002-0.89-1.978-1.96-2.215-3.326-0.284-1.624 0.397-3.2 0.448-4.814 0.022-1.253-0.003-2.548-0.51-3.717-0.476-1.265-1.462-2.226-2.19-3.34-0.188-0.252-0.234-0.562-0.241-0.869z"></path>
<path fill="#444" d="M19.539 6.247c0.745-0.572 1.517-1.134 2.357-1.555 3.003-0.034 6.008-0.009 9.013-0.012-0.022 0.257-0.016 0.531-0.174 0.75-0.674 1.102-1.641 2.017-2.155 3.221-0.609 1.253-0.65 2.679-0.61 4.046 0.078 1.574 0.709 3.112 0.452 4.698-0.238 1.379-1.222 2.457-2.231 3.355-2.945 2.602-6.303 4.683-9.734 6.576-0.002-5.198-0.002-10.396-0.002-15.594 1.117-0.136 2.169-0.793 2.714-1.786 0.655-1.107 0.71-2.479 0.371-3.698z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1023 B

5
svg/c16.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
<title>c16</title>
<path fill="#444" d="M6.367 3.356c1.449-0.32 2.759-1.037 4.104-1.642 0.262 1.198 0.736 2.867-0.439 3.719-2.035 1.553-4.721 1.437-7.145 1.426 0.127 3.765-0.763 7.711 0.728 11.307 1.399 3.457 4.332 5.9 7.072 8.285 0.035 1.272 0.085 2.543 0.066 3.819-4.401-3.603-9.11-7.696-10.301-13.542-0.701-4.174-0.173-8.44-0.37-12.652 2.089-0.312 4.239-0.131 6.285-0.721zM12.795 1.726c-0.208 1.195-0.713 2.813 0.439 3.68 2.031 1.588 4.752 1.464 7.187 1.441-0.139 3.569 0.644 7.26-0.52 10.721-1.295 3.742-4.386 6.405-7.314 8.879-0.031 1.279-0.081 2.555-0.062 3.838 1.811-1.534 3.649-3.037 5.295-4.752 2.952-2.998 5.175-6.944 5.326-11.226 0.042-3.411-0.023-6.825 0.031-10.235-1.249-0.096-2.489-0.266-3.746-0.293-2.351-0.1-4.555-1.017-6.636-2.054zM4.213 8.177c0.139 3.518-0.582 7.291 1.067 10.567 1.229 2.305 3.002 4.432 5.314 5.707-0.393-2.2-0.22-4.451-0.586-6.651-0.135-3.16-0.547-6.293-0.613-9.453-1.73 0.173-3.472 0.143-5.183-0.17zM13.889 8.35c-0.154 5.391-0.983 10.74-0.986 16.135 2.2-1.63 4.204-3.669 5.322-6.204 1.368-3.191 0.671-6.732 0.832-10.093-1.707 0.293-3.445 0.331-5.168 0.162z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

5
svg/c17.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="32" viewBox="0 0 24 32">
<title>c17</title>
<path fill="#444" d="M8.971 1.815v0 0c-0.191 0.909-0.050 1.808 0.446 2.594 0.53 0.84 1.455 1.375 2.43 1.505 0.003 8.091 0 16.181 0.003 24.27-1.562-1.569-3.131-3.129-4.695-4.697 0.148-4.468 0.095-8.95-0.374-13.399-0.234-1.964-0.528-3.938-1.192-5.808-0.286-0.78-0.652-1.544-1.218-2.162-0.008-0.767-0.002-1.534-0.003-2.301 3.069 0 1.534 0.001 4.603-0.003v0zM15.404 1.817v0c0.155 0.765 0.1 1.587-0.27 2.285-0.491 0.999-1.511 1.674-2.606 1.813-0.003 8.088-0.002 16.176-0.002 24.264 1.567-1.561 3.129-3.125 4.692-4.69-0.145-4.376-0.097-8.764 0.344-13.122 0.206-1.859 0.479-3.72 1.027-5.511 0.309-0.976 0.708-1.956 1.404-2.728 0.007-0.769 0.002-1.538 0.003-2.308-1.531-0.002-3.062 0.003-4.593-0.002zM3.998 5.225v0c-1.164 0.978-2.524 1.694-3.925 2.267 0.994 3.503 1.959 7.079 2.002 10.742 1.238 1.743 2.599 3.411 4.165 4.873 0.041-4.305-0.072-8.629-0.723-12.89-0.305-1.71-0.604-3.485-1.519-4.991zM20.376 5.223c-0.93 1.547-1.251 3.362-1.552 5.116-0.634 4.218-0.709 8.496-0.678 12.755 1.562-1.459 2.92-3.121 4.155-4.863 0.043-3.663 1.006-7.238 2.002-10.74-1.403-0.573-2.764-1.289-3.926-2.268z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

5
svg/c18.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
<title>c18</title>
<path fill="#444" d="M24.090 11.124c-0.344 2.813 0.177 5.617 1.070 8.273-2.266 5.228-7.597 8.568-12.13 11.693h-0.027c-3.378-2.287-6.817-4.559-9.485-7.685l7.961-6.247 0.317 3.808 12.294-9.843zM25.834 1.034l-9.883 0c-0.26 1.74-0.875 4.132-2.92 4.712l-0.001-0-0.026 0c-2.113-0.789-2.66-2.972-2.92-4.712l-9.883-0c-0.443 2.44-0.061 5.482 1.258 6.536 0.006 0.005 0.007 0.013 0.009 0.020 0.75 3.892 0.87 7.945-0.561 11.71l13.249-10.531 0.394 3.783 11.424-9.008c-0.017-1.887 0.056-1.052-0.141-2.51z"></path>
</svg>

After

Width:  |  Height:  |  Size: 657 B

5
svg/c19.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
<title>c19</title>
<path fill="#444" d="M5.158 0.332c1.133-0.228 2.291-0.371 3.447-0.301-0.409 0.759-0.669 1.638-0.532 2.504 0.1 0.714 0.414 1.394 0.867 1.952 1.016 0.998 2.436 1.467 3.825 1.632 1.573 0.152 3.204 0.087 4.701-0.465 0.904-0.336 1.802-0.88 2.246-1.772 0.697-1.175 0.623-2.694-0.080-3.847 1.693-0.099 3.381 0.225 5.002 0.684 1.239 0.361 2.449 0.824 3.614 1.379-0.804 1.708-1.44 3.492-1.954 5.307-0.74 2.66-1.186 5.415-1.149 8.181 0.009 0.501 0.102 1.036-0.101 1.511-0.182 0.325-0.607 0.135-0.826-0.046-1.521-1.186-2.863-2.581-4.241-3.927-0.611-0.563-1.164-1.185-1.756-1.767-0.088-0.090-0.191-0.158-0.31-0.201-0.032 0.196 0.124 0.338 0.222 0.487 2.837 3.812 5.68 7.62 8.604 11.367-1.267 1.355-2.668 2.579-4.101 3.755-2.605 2.088-5.423 3.961-8.526 5.224-3.397-1.41-6.47-3.503-9.276-5.862-1.168-0.984-2.286-2.028-3.353-3.121 0.918-1.952 1.408-4.086 1.566-6.232 0.023-0.306 0.132-0.67 0.453-0.78 0.239-0.051 0.5-0.036 0.722 0.075 0.656 0.295 1.122 0.862 1.623 1.355 1.486 1.575 2.912 3.206 4.385 4.794 0.913 1.003 1.836 1.995 2.748 2.999 0.135 0.138 0.253 0.331 0.469 0.342-0.028-0.185-0.148-0.327-0.254-0.47-3.411-4.588-6.835-9.167-10.325-13.694-0.122-0.133-0.101-0.324-0.138-0.487-0.51-3.044-1.448-6.013-2.731-8.818 1.65-0.766 3.375-1.385 5.158-1.757zM1.542 2.765c3.019 4.132 6.077 8.236 9.11 12.357 2.225 3.003 4.442 6.012 6.676 9.007 0.86 1.315 0.731 3.016 0.266 4.448 0.79-0.614 1.654-1.121 2.454-1.722 0.801-0.596 1.624-1.177 2.317-1.903-4.814-6.605-9.629-13.212-14.443-19.818-0.747-1.101-1.244-2.446-1.086-3.792-1.823 0.202-3.61 0.697-5.294 1.422z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

5
svg/chk.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="30" height="32" viewBox="0 0 30 32">
<title>chk</title>
<path fill="#444" d="M20.982 8.258h-4.023l0.132 1.708h4.023l-0.131-1.708zM8.431 9.965h4.023l0.132-1.708h-4.023l-0.131 1.708zM12.367 13.375l0.044-1.445h-4.023l-1.226 14.215 0.438 0.219-0.26 0.963h-3.019c0 0-0.219-0.744 0.351-1.226l1.311-14.212h-4.242v-1.882h4.418l0.175-1.705h-4.242c0 0-0.657-0.175-0.657-0.789v-0.785h-0.789c0 0-0.611-0.131-0.611-0.657v-1.399c0 0 3.060 1.53 13.775 1.53h1.924c10.717 0 13.779-1.53 13.779-1.53v1.399c0 0.526-0.613 0.657-0.613 0.657h-0.789v0.785c0 0.613-0.657 0.789-0.657 0.789h-4.242l0.175 1.705h4.418v1.882h-4.242l1.311 14.212c0.57 0.481 0.351 1.226 0.351 1.226h-3.019l-0.26-0.963 0.435-0.219-1.223-14.215h-4.023l0.044 1.445h-4.811z"></path>
</svg>

After

Width:  |  Height:  |  Size: 831 B

5
svg/chr.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
<title>chr</title>
<path fill="#444" d="M12.681 25.821l-0.811-1.346c3.897-1.123 6.746-4.713 6.746-8.97 0-5.158-4.178-9.337-9.337-9.337-1.712 0-3.32 0.465-4.7 1.269l-0.309-1.571c1.5-0.78 3.207-1.225 5.010-1.225 5.992 0 10.865 4.872 10.865 10.864 0 4.802-3.133 8.886-7.463 10.316zM3.253 17.895c-1.1-2.759-0.73-6.834 3.927-8.687 0.942-0.377 2.803-0.764 4.481-0.683l1.218 3.048-0.39 0.155c-1.309-2.322-3.496-2.497-5.289-1.78-1.991 0.794-3.209 3.351-1.894 6.655 1.275 3.2 4.054 5.467 6.645 4.434 1.121-0.447 2.574-1.894 2.941-4.724l0.935 1.954c-1.057 1.922-2.469 3.039-4.071 3.674-5.181 2.065-7.761-2.194-8.502-4.047zM9.278 2.35c-2.065 0-4.061 0.475-5.86 1.373 0 0-1.568-0.593-2.43-2.406 0 0-1.191 2.627 1.003 4.010l0.741 3.556c-1.679 1.682-2.712 4.003-2.712 6.568 0 5.097 4.098 9.239 9.182 9.309l1.767 2.578c0.525 1.672 0.047 3.344 0.047 3.344 1.433-0.528 2.6-2.755 2.6-2.755 1.844-0.643 3.537-1.699 4.963-3.126 2.487-2.486 3.856-5.786 3.856-9.296 0-7.254-5.902-13.155-13.156-13.155z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

7
svg/cm1.svg Executable file
View File

@ -0,0 +1,7 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="21" height="32" viewBox="0 0 21 32">
<title>cm1</title>
<path fill="#444" d="M16.148 3.6l4.004 2.249v22.82l-8.598 1.99 4.594-2.681v-24.378z"></path>
<path fill="#444" d="M10.080 1.34l3.96 2.225v23.077l-3.96 2.225-3.972-2.232v-23.063l3.972-2.232z"></path>
<path fill="#444" d="M4.012 3.6v24.378l4.594 2.681-8.598-1.99v-22.82l4.004-2.249z"></path>
</svg>

After

Width:  |  Height:  |  Size: 447 B

5
svg/cm2.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
<title>cm2</title>
<path fill="#444" d="M14.789 19.871l3.584 4.161c-1.524 2.439-3.555 4.525-6.022 6.008-0.441 0.214-0.184 0.11-0.784 0.277v0c-0.6-0.167-0.343-0.063-0.784-0.277-2.452-1.466-4.579-3.566-6.049-6.024l3.513-4.078c0.823 1.282 1.778 2.472 2.758 3.636 0.248 0.283 0.709 0.319 0.957 0 1.042-1.156 1.98-2.398 2.828-3.702zM23.105 8.979l-5.14 3.829c-0.543 1.996-1.285 3.942-2.356 5.719l3.575 4.151c0.482-0.833 0.905-1.699 1.294-2.579 1.517-3.426 2.715-7.326 2.626-11.12zM0.022 9.053c-0.090 3.117 0.811 6.335 1.89 9.217 0.583 1.5 1.205 2.992 2.012 4.389l3.488-4.049c-1.066-1.812-1.987-3.733-2.37-5.818l-5.019-3.74zM18.231 1.684l-13.328 0c-0.866 0-1.568 0.702-1.568 1.568 0.032 0.632 0.366 1.21 0.975 1.444 0.22 0.151 0.317 0.194 0.485 0.456 0.522 0.814-0.060 1.865-0.876 2.188l-1.281 0.095c-0.638 0.056-1.285 0.094-1.902 0.281l4.825 3.595c1.325-0.959 2.753-2.114 3.211-3.753 0.074-0.122 0.277-0.15 0.399-0.173 0.625-0.119 1.27-0.096 1.901-0.125 0.941 0.006 1.069-0.004 1.992 0.044 0.146 0.008 1.132 0.036 1.306 0.184 0.488 1.625 1.76 2.853 3.108 3.814l4.839-3.605c-0.137-0.034-0.271-0.077-0.41-0.1-0.562-0.095-0.877-0.114-1.412-0.161l-1.28-0.095c-1.101-0.502-1.546-1.915-0.391-2.644 0.589-0.249 0.966-0.8 0.975-1.444 0-0.866-0.702-1.568-1.568-1.568z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

5
svg/cma.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="25" height="32" viewBox="0 0 25 32">
<title>cma</title>
<path fill="#444" d="M12.066 0.4c0.064-0.124 0.303-0.124 0.368 0 0.666 0.924 1.38 1.811 2.081 2.708 0.084 0.136 0.252 0.275 0.156 0.45-0.508 0.258-1.081 0.588-1.168 1.209 0.025 0.769 0.634 1.342 1.172 1.818 0.84 0.558 1.838 0.955 2.862 0.898 0.735 0.033 1.435-0.224 2.15-0.356 1.057-0.207 2.054-0.626 3.033-1.060-0.024 0.128-0.013 0.274-0.024 0.403-0.018 0.226-0.048 0.437-0.058 0.665-0.11 1.119-0.453 2.198-0.827 3.254-0.044 0.195-0.264 0.147-0.41 0.159-6.136-0.007-12.271 0.001-18.407-0.003-0.168 0.033-0.308-0.069-0.335-0.238-0.296-0.88-0.597-1.764-0.728-2.685-0.081-0.39-0.093-0.728-0.136-1.177-0.012-0.12-0.013-0.246-0.042-0.364 0.522 0.122 0.96 0.456 1.477 0.591 0.906 0.341 1.859 0.511 2.799 0.725 1.336 0.289 2.766-0.053 3.861-0.86 0.511-0.47 1.091-1.025 1.11-1.768-0.084-0.583-0.601-0.93-1.092-1.163-0.2-0.081-0.070-0.317 0.030-0.427 0.71-0.925 1.45-1.829 2.131-2.777zM3.308 14.64c5.99-0.011 11.98-0.001 17.971-0.006-0.58 1.325-1.117 2.668-1.681 3.999-0.065 1.794 0.035 3.598-0.047 5.39-1.606 1.817-3.665 3.216-5.922 4.095-0.566 0.15-1.132 0.516-1.733 0.34-2.667-0.799-5.071-2.392-6.948-4.434-0.069-1.383-0.008-2.774-0.028-4.16-0.024-0.498 0.081-1.018-0.097-1.496-0.51-1.24-1.072-2.46-1.515-3.727zM0.003 11.916c0.196 0.533 0.541 0.985 0.824 1.472 0.089 0.133 0.122 0.291 0.117 0.449 0.001 3.895-0.007 7.788 0.003 11.681 0.456 0.302 0.827 0.701 1.231 1.065 1.604 1.285 3.298 2.485 5.166 3.356 1.432 0.759 2.971 1.298 4.532 1.721 0.399 0.080 0.809 0.010 1.188-0.125 0.949-0.26 1.876-0.592 2.783-0.971 2.174-0.965 4.27-2.142 6.095-3.68 0.576-0.409 1.017-0.976 1.611-1.365 0.011-3.628 0.002-7.256 0.003-10.884 0.012-0.364-0.042-0.736 0.040-1.093 0.278-0.555 0.691-1.036 0.901-1.626-8.165-0.014-16.331-0.014-24.495 0zM5.355 16.004c0.222 0.73 0.573 1.41 0.852 2.118 0.086 0.189 0.076 0.399 0.081 0.6-0.010 1.443 0.001 2.885-0.008 4.329 0.010 0.184-0.028 0.409 0.143 0.535 0.941 0.979 2.042 1.794 3.221 2.466 0.62 0.418 1.344 0.631 2.026 0.926 0.257 0.098 0.54 0.227 0.817 0.119 2.171-0.69 4.173-1.95 5.7-3.642 0.084-1.678-0.020-3.368 0.047-5.048 0.247-0.82 0.705-1.566 0.919-2.399-4.599-0.019-9.199-0.008-13.799-0.005z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

5
svg/cmd.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="32" viewBox="0 0 24 32">
<title>cmd</title>
<path fill="#444" d="M23.421 22.181v-10.908l-5.292-2.535v10.905l5.292 2.538zM5.98 19.642v-10.905l-5.292 2.535v10.908l5.292-2.538zM12.054 2.96l-4.48 2.373v13.501l4.48-2.377 4.48 2.377v-13.501l-4.48-2.373zM0.012 29.040v-4.267l12.041-6.397 12.041 6.397v4.267h-24.082z"></path>
</svg>

After

Width:  |  Height:  |  Size: 431 B

5
svg/cn2.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
<title>cn2</title>
<path fill="#444" d="M9.438 2.58c1.159-0.929 2.663-1.417 4.148-1.324 1.586 0.085 3.093 0.853 4.177 2 0.762 0.79 1.299 1.767 1.677 2.791 1.61-0.309 3.22-0.622 4.83-0.931-0.533 1.294-1.065 2.588-1.603 3.879-3.215-2.081-6.428-4.169-9.646-6.248-2.99 2.065-5.984 4.126-8.977 6.189-0.532-1.254-1.061-2.508-1.591-3.762 1.55 0.243 3.099 0.491 4.649 0.733 0.484-1.28 1.251-2.477 2.337-3.328zM12.136 8.393c1.422-0.213 2.91-0.012 4.208 0.611 1.514 0.722 2.759 1.97 3.522 3.46 0.782 1.512 1.043 3.272 0.815 4.953-0.242 1.775-1.084 3.468-2.378 4.709-1.031 0.994-2.351 1.689-3.76 1.949-1.587 0.291-3.275 0.056-4.702-0.706-1.848-0.974-3.239-2.738-3.818-4.739-0.387-1.353-0.439-2.804-0.139-4.179 0.366-1.679 1.275-3.241 2.582-4.361 1.035-0.89 2.318-1.494 3.669-1.697zM4.349 10.319c0.019 3.97 0.024 7.942 0.036 11.913 2.968 1.953 5.937 3.905 8.904 5.86 2.939-1.999 5.875-4.003 8.812-6.006-0.017-3.973-0.021-7.945-0.040-11.918-3.006-1.947-6.010-3.895-9.017-5.842-2.898 1.997-5.797 3.994-8.695 5.993zM0.502 13.235c-0.701 1.9-0.661 4.061 0.11 5.933 0.517 1.266 1.398 2.379 2.517 3.167-0.016-4.173-0.028-8.346-0.037-12.519-1.19 0.835-2.094 2.055-2.589 3.419zM23.324 9.942c0.013 4.136 0.026 8.273 0.033 12.409 1.145-0.833 2.020-2.019 2.506-3.347 0.707-1.895 0.678-4.056-0.095-5.927-0.504-1.246-1.357-2.345-2.444-3.136zM12.299 10.501c-2.157 0.344-3.926 2.131-4.422 4.232-0.359 1.448-0.194 3.029 0.51 4.35 0.632 1.207 1.704 2.19 2.986 2.667 1.439 0.544 3.113 0.419 4.454-0.334 1.282-0.708 2.243-1.946 2.666-3.343 0.412-1.372 0.348-2.89-0.22-4.21-0.505-1.19-1.413-2.213-2.559-2.819-1.035-0.556-2.257-0.749-3.414-0.543zM2.288 27.019c1.568-0.3 3.137-0.604 4.705-0.904 0.397 1 0.933 1.959 1.696 2.727 1.072 1.108 2.555 1.825 4.101 1.902 1.526 0.095 3.069-0.427 4.24-1.406 1.005-0.816 1.718-1.934 2.2-3.124 1.564 0.248 3.127 0.499 4.692 0.747-0.501-1.168-0.999-2.338-1.5-3.506-3.041 2.069-6.078 4.143-9.117 6.214-3.167-2.084-6.335-4.166-9.501-6.253-0.505 1.202-1.011 2.402-1.516 3.604z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

6
svg/cns.svg Executable file
View File

@ -0,0 +1,6 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="21" height="32" viewBox="0 0 21 32">
<title>cns</title>
<path fill="#444" d="M15.738 21.428c0.040 2.422 0.319 4.085 0.522 4.853l-5.727 4.384-6.321-3.652c-0.352-1.529-0.477-3.215-0.52-4.898l4.948 3.106 7.098-3.794z"></path>
<path fill="#444" d="M11.985 1.335l8.707 5.466-1.553 11.061-10.438 5.575-8.699-5.466 1.549-11.057 10.434-5.579zM11.317 4.403c-4.331-0.002-8.345 3.518-8.95 7.84-0.305 2.17 0.271 4.218 1.61 5.763 1.322 1.521 3.244 2.366 5.395 2.362 4.332 0 8.344-3.512 8.946-7.834 0.303-2.172-0.267-4.218-1.606-5.763-1.331-1.531-3.244-2.37-5.395-2.368zM11.317 6.51c1.529 0 2.876 0.588 3.802 1.644 0.93 1.076 1.326 2.528 1.112 4.091-0.469 3.316-3.543 6.016-6.859 6.014-1.533 0.004-2.88-0.58-3.802-1.636-0.934-1.080-1.333-2.536-1.112-4.095 0.465-3.316 3.539-6.016 6.859-6.018z"></path>
</svg>

After

Width:  |  Height:  |  Size: 889 B

5
svg/con.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="32" viewBox="0 0 29 32">
<title>con</title>
<path fill="#444" d="M4.823 8.963c-1.18-0.201-2.158-0.81-2.89-1.669 0 0-1.925 1.689-1.925 5.059 0 1.361 0.392 2.7 0.939 3.892 2.72-1.911 4.107-4.524 3.876-7.282zM18.995 7.618c-3.48-2.236-4.54-5.374-4.54-5.374s-1.060 3.138-4.544 5.374c4.145 4.799 3.607 12.941 0.042 16.59 1.066 0.748 2.087 1.637 2.54 2.213 0.756 0.962 1.375 1.821 1.961 3.335 0.583-1.514 1.202-2.373 1.96-3.335 0.46-0.587 1.507-1.491 2.593-2.249-3.614-3.623-4.174-11.731-0.013-16.554zM22.22 8.95c-0.444-0.075-0.911-0.205-1.394-0.389-3.876 3.535-3.63 11.398 0.056 14.502 0.036-0.016 0.071-0.032 0.107-0.048 1.481-0.619 3.166-1.65 4.336-2.856 0.454-0.466 1.093-1.238 1.705-2.204-3.866-2.583-5.386-5.331-4.809-9.006zM26.974 7.293c-0.728 0.86-1.707 1.465-2.884 1.669-0.253 2.787 1.108 5.347 3.876 7.273 0.544-1.19 0.933-2.525 0.933-3.883 0-3.37-1.926-5.059-1.926-5.059zM7.934 23.021c-0.003 0-0.009-0.003-0.016-0.006-1.478-0.619-3.163-1.65-4.333-2.856-0.464-0.476-1.121-1.273-1.746-2.268 3.801-2.567 5.415-5.296 4.851-8.941 0.444-0.075 0.911-0.205 1.394-0.389 3.853 3.519 3.497 11.333-0.149 14.46z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

5
svg/csp.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="18" height="32" viewBox="0 0 18 32">
<title>csp</title>
<path fill="#444" d="M5.159 0v0h12.385l-1.403 15.138-3.244-7.966-4.312 24.828-2.831-25.769-2.622 13.222-3.128-17.354 5.35-0.009-0.194-2.091zM16.459 1.044l-7.54 0.056-0.103 24.319 3.584-21.362 3.034 7.146 1.025-10.159zM5.572 3.116l-2.844 0.015 0.497 11.488c0 0 0.26-0.982 0.35-1.478v-0c0.646-3.346 1.997-10.025 1.997-10.025z"></path>
</svg>

After

Width:  |  Height:  |  Size: 490 B

5
svg/dd2.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="32" viewBox="0 0 29 32">
<title>dd2</title>
<path fill="#444" d="M15.514 3.979v24.042l8.841-8.688c0 0-5.35-1.936-5.35-5.041v-4.574c0 0 7.911 2.558 7.911 10.934 0 1.863-0.778 4.112-0.778 4.112s2.637-1.936 2.637-7.366c0-5.972-4.806-13.418-13.261-13.418zM0 14.604c0-5.43 2.637-7.369 2.637-7.369s-0.774 2.251-0.774 4.112c0 8.376 7.911 10.936 7.911 10.936v-4.576c0-3.102-5.354-5.041-5.354-5.041l8.844-8.686v24.042c-8.455 0-13.264-7.446-13.264-13.417z"></path>
</svg>

After

Width:  |  Height:  |  Size: 568 B

5
svg/ddc.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>ddc</title>
<path fill="#444" d="M24.186 21.873c0 0-1.217-0.788-3.648-1.149 0 0-1.013 2.093-4.536 2.1-3.526-0.007-4.54-2.1-4.54-2.1-2.43 0.362-3.645 1.149-3.645 1.149s3.097 4.069 8.184 4.069c5.084 0 8.184-4.069 8.184-4.069zM31.972 21.199c0 3.496-6.482 4.434-9.455 4.612 0 0 5.092-2.247 5.092-4.265 0-1.821-6.138-3.457-11.729-3.526-5.588 0.069-11.486 1.705-11.486 3.526 0 2.018 5.089 4.265 5.089 4.265-2.973-0.178-9.455-1.116-9.455-4.612 0-4.96 7.936-8.055 15.852-8.055 7.921 0 16.092 3.094 16.092 8.055zM27.337 13.268c0 0 0.344-5.366-5.024-8.766 0 0 1.968 2.661 2.413 7.536 0 0 1.38 0.589 2.612 1.229zM7.274 12.038c0.444-4.875 2.413-7.536 2.413-7.536-5.366 3.4-5.022 8.766-5.022 8.766 1.232-0.641 2.609-1.229 2.609-1.229z"></path>
</svg>

After

Width:  |  Height:  |  Size: 876 B

5
svg/ddd.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="31" height="32" viewBox="0 0 31 32">
<title>ddd</title>
<path fill="#444" d="M21.96 6.244c0 0 3.057 3.060 3.057 8.061 0 5.238-3.834 10.971-9.976 11.056-6.146-0.085-9.976-5.819-9.976-11.056 0-5.001 3.055-8.061 3.055-8.061-6.502 3.114-8.115 10.951-8.115 10.951 1.167 0 1.668 0.389 2.89 2.057 1.224 1.665 1.892 2.89 4.503 5.78 2.253 2.493 6.401 2.877 7.504 2.936v0.011c0 0 0.049 0 0.139-0.005 0.088 0.005 0.139 0.005 0.139 0.005v-0.011c1.103-0.059 5.251-0.443 7.501-2.936 2.614-2.89 3.279-4.115 4.503-5.78 1.222-1.668 1.722-2.057 2.89-2.057 0 0-1.611-7.837-8.115-10.951zM10.484 7.912c0.721 1.279 1.943 2.5 1.943 2.5v2.114c-2.444-1.614-3.501-4.336-3.501-4.336-1 1.222-1.389 3.614-1.389 3.614 1.833 3.222 4.89 4.722 4.89 4.722v2.222c-3.89-1.776-5.836-5.336-5.836-5.336 0 8.618 8.061 10.118 8.061 10.118v-19.509c-2.89 1.278-4.168 3.89-4.168 3.89zM19.599 7.912c-0.725 1.279-1.946 2.5-1.946 2.5v2.114c2.446-1.614 3.501-4.336 3.501-4.336 1.002 1.222 1.392 3.614 1.392 3.614-1.835 3.222-4.893 4.722-4.893 4.722v2.222c3.89-1.776 5.836-5.336 5.836-5.336 0 8.618-8.058 10.118-8.058 10.118v-19.509c2.89 1.278 4.168 3.89 4.168 3.89z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

5
svg/dde.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
<title>dde</title>
<path fill="#444" d="M12.794 8.588v0.003c-0.012 0-0.023 0-0.035 0-0.015 0-0.026 0-0.038 0v-0.003c-0.59-0.035-1-0.517-1-1.476 0-1.002 1.038-2.37 1.038-2.37s1.038 1.368 1.038 2.37c0 0.959-0.412 1.441-1.003 1.476zM15.953 6.925c-0.076-0.739-0.111-1.481-0.444-2.516-0.334-1.038-1.389-2.262-2.715-2.262-1.333 0-2.37 1.224-2.703 2.262-0.334 1.035-0.372 1.777-0.444 2.516-0.073 0.743-0.515 4.039 3.154 4.039 3.665 0 3.226-3.296 3.153-4.039zM23.52 23.87c0.707-1.116 1.291-2.408 1.654-3.896 0 0-1-0.392-1.596-0.529-0.596-0.141-1.628-0.392-1.628-0.392-0.29 1.549-1.017 2.853-1.19 3.145l2.759 1.672zM20.773 22.997c-0.958 3.995-5.194 6.856-5.194 6.856 0.561 0 4.758-1.493 7.532-5.378l-2.338-1.478zM25.344 19.182c0.152-0.83 0.234-1.719 0.234-2.662 0-0.938-0.079-1.809-0.219-2.625l-2.891 0.438v-0.816l2.669-0.658c-0.193-0.763-0.441-1.473-0.731-2.131l-0.976 0.38-0.483-0.444-0.035-0.59 0.892-0.537c-0.395-0.693-0.831-1.318-1.286-1.891l-1.347 1.131-0.409-0.555 1.286-1.14c-0.228-0.263-0.459-0.511-0.693-0.751-0.795-0.812-1.593-1.777-2.259-2.183-1.33-0.815-2.482-1.187-2.482-1.187 0.555 1.111 0.465 1.909 0.687 2.964s0.5 2.111-0.281 4.113c-0.777 1.998-3.442 1.888-3.442 1.888v1.499c5.889 0.204 7.925 3.206 7.925 3.206 0.027 0.801-0.061 1.487-0.114 1.806 0 0 1.228 0.175 1.891 0.304s2.063 0.441 2.063 0.441zM13.578 14.761v12.555c0 0 3.668-9.279 6.611-10.667 0 0-1.777-1.888-6.611-1.888zM4.836 22.198c-0.169-0.292-0.897-1.595-1.187-3.145 0 0-1.032 0.251-1.628 0.392-0.596 0.137-1.595 0.529-1.595 0.529 0.362 1.487 0.946 2.779 1.653 3.896l2.756-1.672zM2.486 24.475c2.776 3.885 6.971 5.378 7.535 5.378 0 0-4.235-2.861-5.194-6.856l-2.341 1.478zM2.317 18.741c0.667-0.129 1.894-0.304 1.894-0.304-0.052-0.319-0.14-1.006-0.114-1.806 0 0 2.037-3.002 7.926-3.206v-1.499c0 0-2.669 0.111-3.446-1.888-0.777-2.002-0.5-3.057-0.278-4.113s0.129-1.852 0.687-2.964c0 0-1.151 0.372-2.481 1.187-0.67 0.406-1.464 1.371-2.263 2.183-0.23 0.24-0.462 0.489-0.693 0.751l1.286 1.14-0.406 0.555-1.35-1.131c-0.456 0.573-0.891 1.199-1.282 1.891l0.891 0.537-0.038 0.59-0.479 0.444-0.976-0.38c-0.29 0.658-0.541 1.368-0.734 2.131l2.672 0.658v0.816l-2.891-0.438c-0.143 0.816-0.219 1.686-0.219 2.625 0 0.943 0.082 1.832 0.234 2.662 0 0 1.397-0.313 2.060-0.441zM12.023 14.761v12.555c0 0-3.668-9.279-6.611-10.667 0 0 1.777-1.888 6.611-1.888z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

5
svg/ddf.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
<title>ddf</title>
<path fill="#444" d="M12.735 24.421l-6.27-6.334 6.108-1.914 8.034 8.229-7.872 0.019zM12.557 7.62l6.181 6.223-6.070 2.067-8.095-8.29h7.984zM25.158 11.645l-8.245-8.315-13.375 3.229-3.538-3.624v17.419l8.245 8.311 13.455-3.146 3.458 3.545v-17.42z"></path>
</svg>

After

Width:  |  Height:  |  Size: 409 B

5
svg/ddg.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
<title>ddg</title>
<path fill="#444" d="M18.702 2.708c0 0 4.474 3.256 4.474 8.134s-3.713 6-4.678 6c-0.964 0-2.746-1.425-2.746-4.271 0-2.032 1.578-3.049 1.578-3.049s0.2-1.779-0.511-3.1c-0.711-1.325-2.843-3.764-2.843-3.764s-2.139 2.439-2.849 3.764c-0.713 1.321-0.51 3.1-0.51 3.1s1.577 1.017 1.577 3.049c0 2.846-1.781 4.271-2.745 4.271s-4.678-1.121-4.678-6 4.474-8.134 4.474-8.134c0 0-9.227 3.281-9.227 13.115 0 8.488 7.17 12.123 7.17 12.123s-0.485-1.143-0.485-1.853c0-0.714 0.611-1.375 1.578-1.375 0.964 0 4.217 0.764 5.692 4.624v0c1.475-3.86 4.728-4.624 5.692-4.624 0.967 0 1.577 0.66 1.577 1.375 0 0.71-0.485 1.853-0.485 1.853s7.17-3.635 7.17-12.123c0-9.834-9.226-13.115-9.226-13.115z"></path>
</svg>

After

Width:  |  Height:  |  Size: 832 B

8
svg/ddh.svg Executable file
View File

@ -0,0 +1,8 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
<title>ddh</title>
<path fill="#444" d="M13.413 29.315c6.945 0 12.315-2.559 12.29-7.905-0.012-2.49-5.072-6.671-5.346-9.184-0.208-1.903 1.761-6.398 2.473-8.42 0.081-0.23-0.042-0.358-0.162-0.438-0.106-0.071-0.375-0.035-0.478 0.135-1.274 2.098-4.313 7.371-4.255 9.591 0.091 3.518 3.731 5.907 3.747 8.088 0.025 3.381-3.746 3.838-8.269 3.838s-8.294-0.457-8.269-3.838c0.016-2.181 3.655-4.569 3.747-8.088 0.058-2.22-2.982-7.493-4.255-9.591-0.103-0.17-0.371-0.206-0.478-0.135-0.12 0.080-0.243 0.208-0.162 0.438 0.712 2.022 2.681 6.517 2.473 8.42-0.274 2.513-5.335 6.694-5.346 9.184-0.025 5.346 5.345 7.905 12.29 7.905z"></path>
<path fill="#444" d="M13.413 22.946c0 0 0.94 0.001 1.129 0.001 0.032 0 0.080-0.035 0.080-0.1-0.002-0.691-0.001-5.167-0.001-6.628 0-0.085 0.053-0.13 0.134-0.13 0.222-0.002 0.66-0.005 0.851-0.006 0.174-0.001 0.536 0.044 0.663-0.211 0.118-0.238-0.019-0.505-0.151-0.573-0.339-0.174-0.832-0.103-0.844-0.784-0.008-0.445 0.408-0.696 0.646-0.696 0.171 0 0.254-0.091 0.259-0.312 0.010-0.472 0.026-1.568 0.227-2.212 0.663-2.367 2.679-6.177 3.284-6.942 0.068-0.087-0.022-0.165-0.022-0.165s-2.063-1.503-6.254-1.503c-4.191 0-6.254 1.503-6.254 1.503s-0.090 0.079-0.022 0.165c0.605 0.765 2.62 4.574 3.284 6.942 0.201 0.643 0.217 1.74 0.227 2.212 0.005 0.221 0.088 0.312 0.259 0.312 0.237 0 0.653 0.251 0.646 0.696-0.012 0.681-0.505 0.61-0.844 0.784-0.132 0.067-0.269 0.335-0.151 0.573 0.127 0.256 0.489 0.21 0.663 0.211 0.191 0.001 0.628 0.004 0.851 0.006 0.081 0.001 0.134 0.045 0.134 0.13 0 1.461 0 5.937-0.001 6.628-0 0.064 0.048 0.1 0.080 0.1 0.19 0 1.129-0.001 1.129-0.001z"></path>
<path fill="#444" d="M0.013 15.444c0.016-4.113 2.488-7.4 3.244-8.174 0.033-0.038 0.077-0.018 0.101 0.036 0.365 0.848 0.992 2.808 1.263 3.848 0.018 0.077 0.001 0.136-0.063 0.184-1.132 0.734-3.128 2.442-3.136 4.093-0.002 0.063-0.038 0.117-0.116 0.116-0.388 0.002-0.832-0.004-1.2-0.008-0.046-0.001-0.092-0.044-0.093-0.095z"></path>
<path fill="#444" d="M26.813 15.444c-0.016-4.113-2.488-7.4-3.244-8.174-0.033-0.038-0.077-0.018-0.101 0.036-0.365 0.848-0.992 2.808-1.263 3.848-0.018 0.077-0.001 0.136 0.063 0.184 1.132 0.734 3.127 2.442 3.136 4.093 0.002 0.063 0.038 0.117 0.116 0.116 0.388 0.002 0.832-0.004 1.2-0.008 0.041-0.002 0.093-0.050 0.093-0.095z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

6
svg/ddi.svg Executable file
View File

@ -0,0 +1,6 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
<title>ddi</title>
<path fill="#444" d="M0.026 12.619c1.832 0 3.317 1.487 3.317 3.321s-1.485 3.321-3.317 3.321l13.269 10.484-5.115-9.111 6.63-8.744-2.826-1.809v-7.825l-11.958 10.364z"></path>
<path fill="#444" d="M27.441 19.381c-1.832 0-3.317-1.487-3.317-3.321s1.485-3.321 3.317-3.321l-13.27-10.484 5.115 9.111-6.63 8.744 2.826 1.808v7.826l11.958-10.364z"></path>
</svg>

After

Width:  |  Height:  |  Size: 502 B

5
svg/ddj.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="32" viewBox="0 0 24 32">
<title>ddj</title>
<path fill="#444" d="M19.878 22.658c2.23-2.36 3.576-3.962 3.576-7.704 0-2.453-0.277-4.284-0.787-5.537-0.091 0.2-0.32 0.266-1.301-0.487-2.015-1.546-2.726-4.501-2.803-6.834-0.029-0.881 0.438-1.622 0.877-2.096-1.65 0.679-3.642 3.008-3.642 6.728 0 1.25 0.368 2.529 1.054 3.43 2.064-0.269 2.922 1.039 2.922 1.729 0 0.719-0.676 1.112-1.603 0.737l1.799 2.256c0 2.55-1.425 4.637-2.965 4.637-0.901 0-1.564-0.196-1.806-1.003-0.162-0.543-0.209-1.122-0.256-1.704-0.102-1.246 0.734-2.249 2.442-3.030-0.909-0.17-1.699-0.484-2.257-1.079 0.442-0.817 1.107-1.673 1.826-2.392-0.485-0.055-1.581 0.283-2.246 0.649-0.478 0.263-0.818 0.381-1.361 0.516-0.225-0.261-0.243-0.855-0.044-1.344 0.425-1.046 0.959-2.013 0.894-3.088-0.598 0.603-1.119 1.041-1.476 1.213-1.612 0.781-2.362 1.504-2.95 2.283-1.419 0.885-2.412 2.496-3.647 4.568-0.373 0.626-0.352 1.505-0.087 2.091 0.402 0.889 1.029 2.060 2.608 2.29-0.444-0.31-0.781-0.86-0.758-1.473 0.019-0.488 0.309-0.811 1.119-0.777 0.681 0.028 1.163 0.473 1.163 1.279 0 1.039-0.947 1.593-2.195 1.613-2.074 0.034-4.514-2.096-4.514-5.246l1.799-2.256c-0.927 0.374-1.603-0.018-1.603-0.737 0-0.69 0.858-1.998 2.922-1.729 0.686-0.901 1.054-2.18 1.054-3.43 0-3.72-1.992-6.049-3.642-6.728 0.439 0.474 0.906 1.215 0.877 2.096-0.078 2.333-0.788 5.288-2.803 6.834-0.981 0.753-1.21 0.687-1.301 0.487-0.51 1.252-0.754 3.083-0.754 5.537 0 4.418 0.995 4.342 4.53 7.96 1.825 1.867 3.357 3.49 3.464 5.686 0.087 1.795-0.4 3.4 0.087 3.4l4.129-4.398 4.129 4.398c0.487 0 0.016-1.605 0.087-3.4 0.071-1.783 1.332-3.711 3.44-5.942z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

5
svg/ddk.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
<title>ddk</title>
<path fill="#444" d="M13.785 32c-0.052-0.17-0.074-0.385-0.101-0.675-0.032-0.364-0.070-0.775-0.222-1.207-0.054-0.153-0.164-0.279-0.308-0.354-0.437-0.229-1.018-0.586-1.48-0.943 0.547-1.010-0.195-1.939-0.688-2.539 0.146-0.129 0.319-0.249 0.488-0.366 0.375-0.262 0.763-0.532 0.938-0.956 0.084-0.204 0.057-0.437-0.071-0.617-0.12-0.167-0.274-0.287-0.423-0.403-0.142-0.11-0.255-0.202-0.338-0.307 1.009-0.57 1.714-2.054 1.749-2.619 0.019-0.318-0.071-0.726-0.575-0.951 0.025-0.112 0.052-0.214 0.079-0.313 0.128-0.477 0.248-0.929-0.12-1.67-0.074-0.15-0.203-0.264-0.361-0.32-0.401-0.141-1.509-0.366-2.779-0.366-1.079 0-2.067 0.155-2.933 0.461-1.526 0.539-1.899 1.632-2.123 2.285-0.013 0.037-0.027 0.078-0.042 0.119-0.243-0.26-0.578-0.901-0.721-1.172-0.128-0.243-0.248-0.473-0.366-0.65-0.129-0.196-0.26-0.36-0.376-0.505-0.285-0.358-0.402-0.515-0.402-0.821 0-0.193 0.067-0.276 0.351-0.544 0.252-0.239 0.599-0.567 0.801-1.111 0.305-0.825 0.577-1.235 0.737-1.41 0.013 0.034 0.026 0.069 0.037 0.1 0.202 0.548 0.54 1.465 1.89 2.2 0.986 0.537 2.19 0.541 4.185 0.551 0 0 0.181 0.001 0.182 0.001 0.302 0 0.563-0.21 0.627-0.504 0.065-0.295-0.086-0.596-0.361-0.721-3.271-1.488-4.125-4.641-4.879-7.423-0.726-2.679-1.476-5.45-4.554-5.45-0.494 0-1.030 0.072-1.62 0.216 0.035-0.044 0.070-0.084 0.105-0.121 0.575-0.615 1.577-0.996 2.617-0.996 0.762 0 1.512 0.204 2.169 0.591 2.395 1.408 3.203 3.602 3.915 5.538 0.688 1.868 1.336 3.633 3.344 3.815 0.019 0.001 0.039 0.003 0.058 0.003 0.177 0 0.347-0.073 0.469-0.204 0.135-0.145 0.196-0.344 0.164-0.539-0.269-1.67 0.094-7.073 1.086-11.101 0.964 3.937 1.062 9.35 0.898 11.112-0.017 0.186 0.047 0.371 0.178 0.506 0.121 0.125 0.288 0.195 0.461 0.195 0.013 0 0.025-0.001 0.039-0.001 2.183-0.133 2.843-1.983 3.541-3.941 0.74-2.076 1.579-4.429 4.341-5.738 0.445-0.211 0.942-0.318 1.475-0.318 1.063 0 2.148 0.435 2.767 1.106 0.030 0.032 0.060 0.067 0.090 0.104-0.621-0.16-1.181-0.239-1.69-0.239-2.975 0-3.648 2.564-4.36 5.278-0.745 2.839-1.588 6.056-5.091 7.621-0.274 0.122-0.425 0.417-0.366 0.711s0.312 0.508 0.611 0.515c0.385 0.011 0.745 0.016 1.070 0.016 2.636 0 3.573-0.351 4.468-1.041 0.639-0.494 0.945-1.118 1.167-1.574 0.041-0.083 0.090-0.184 0.134-0.264 0.12 0.138 0.323 0.48 0.618 1.321 0.008 0.024 0.018 0.047 0.030 0.070 0.162 0.331 0.399 0.595 0.63 0.849 0.272 0.302 0.507 0.563 0.511 0.816 0.006 0.401-0.152 0.579-0.509 0.942-0.172 0.176-0.367 0.373-0.54 0.625-0.203 0.297-0.34 0.645-0.461 0.952-0.074 0.189-0.203 0.515-0.304 0.65-0.030-0.072-0.063-0.163-0.091-0.238-0.246-0.679-0.658-1.814-2.45-2.426-0.537-0.183-1.173-0.271-1.946-0.271-0.867 0-1.749 0.111-2.527 0.209-0.376 0.047-0.731 0.092-1.025 0.116-0.257 0.020-0.476 0.192-0.558 0.437-0.195 0.586-0.125 1.113-0.068 1.539 0.023 0.175 0.058 0.439 0.027 0.508v0c-0.001 0-0.030 0.027-0.119 0.063-0.328 0.129-0.492 0.498-0.366 0.827 0.352 0.916 0.878 1.335 1.342 1.706 0.177 0.141 0.348 0.278 0.514 0.442-0.046 0.011-0.094 0.012-0.151 0.012-0.108 0-0.252-0.015-0.439-0.045-0.034-0.006-0.069-0.008-0.103-0.008-0.153 0-0.303 0.055-0.421 0.157-0.144 0.124-0.225 0.307-0.221 0.498 0.059 2.91 0.131 6.472-1.256 8.201z"></path>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

5
svg/ddl.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
<title>ddl</title>
<path fill="#444" d="M11.166 8.627c0.11-1.994 1.052-3.643 1.96-5.306 1.067 1.627 1.678 3.367 1.923 5.198 2.452-1.065 3.221-3.538 1.134-6.195 3.713-0.19 7.932 3.495 9.354 7.892 1.571 4.854 0.019 9.223 0.726 13.247l-3.303-1.299c-0.915 2.175-2.715 4.823-4.648 6.318 0.657-2.231 0.333-5.254-0.397-7.364 3.226-3.618 0.632-8.592-2.914-9.278l-0.026 16.931c-0.002 1.319-3.613 1.272-3.625-0.032l-0.15-16.897c-3.158 0.989-5.963 4.68-2.831 9.277-0.712 1.929-0.975 4.825-0.495 7.071-1.678-1.274-3.409-3.683-4.513-5.952l-3.048 1.191c0.574-3.876-1.162-8.464 0.327-12.886 2.139-6.354 6.466-8.446 9.581-8.266-2.443 2.726-0.986 5.393 0.944 6.353z"></path>
</svg>

After

Width:  |  Height:  |  Size: 796 B

5
svg/ddm.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
<title>ddm</title>
<path fill="#444" d="M9.598 0.684l-0.088 0.015c-4.56 0.721-7.956 4.178-9.093 8.3-1.134 4.113-0.011 8.888 4.439 12.268 0.002 0.001 0.003 0.003 0.005 0.005l4.716 9.389v-0.326l0.019-11.446v-0.058l-0.058-0.015c-3.414-0.9-5.284-3.781-5.368-6.739s1.615-5.993 5.373-7.206l0.053-0.015v-4.172zM12.914 0.684v4.167l0.049 0.019c4.84 1.77 6.055 5.739 5.417 8.684-0.457 2.11-2.018 3.369-3.263 4.444-4.239 3.662-4.094 8.021-2.169 10.726 0.963 1.353 2.366 2.295 3.89 2.533 1.518 0.237 3.15-0.234 4.556-1.677 0.001-0.001 0.004 0.001 0.005 0 0.005-0.005 0.010-0.010 0.015-0.015l0.462-0.477-0.559 0.36c-0.005 0.003-0.009 0.006-0.015 0.010-2.189 1.393-4.611 0.564-5.742-1.211-1.134-1.779-0.978-4.512 2.076-6.958 4.341-3.477 5.563-8.192 4.507-12.253s-4.388-7.47-9.136-8.339l-0.092-0.015zM11.276 7.121c-2.648 0-4.794 2.142-4.794 4.789s2.147 4.794 4.794 4.794c2.648 0 4.794-2.146 4.794-4.794s-2.146-4.789-4.794-4.789z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

5
svg/ddn.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>ddn</title>
<path fill="#444" d="M23.299 19.38c0.125 0 0.253 0.004 0.383 0.012 0.853 0.050 1.476 0.081 2.053 0.081 0.655 0 1.252-0.039 2.063-0.133-0.387-0.558-0.666-0.905-1.208-1.352 1.907-0.201 2.955-0.53 4.418-1.296-0.709-0.448-1.143-0.75-2.068-1.096 1.241-0.663 2.247-1.324 2.995-2.065-0.825-0.403-1.596-0.577-2.548-0.802 1.108-1.081 1.948-2.312 2.548-4.11-3.404 0.375-4.832 1.576-5.955 1.595-0.952 0-1.894-1.485-2.72-2.357-2.437-2.574-5.075-3.388-7.262-3.388s-4.824 0.814-7.262 3.388c-0.826 0.872-1.767 2.357-2.72 2.357-1.123-0.019-2.551-1.22-5.955-1.595 0.6 1.798 1.44 3.029 2.548 4.11-0.953 0.225-1.724 0.399-2.548 0.802 0.748 0.741 1.754 1.402 2.995 2.065-0.925 0.346-1.36 0.648-2.068 1.096 1.463 0.766 2.511 1.095 4.418 1.296-0.542 0.447-0.821 0.794-1.208 1.352 0.811 0.094 1.408 0.133 2.063 0.133 0.577 0 1.2-0.030 2.053-0.081 0.13-0.008 0.258-0.012 0.383-0.012 2.454 0 3.843 1.468 3.245 3.956l2.565 4.196v-9.781c-4.31-0.618-5.908-3.877-5.908-5.654 0-0.242 0.019-0.481 0.057-0.715 0.754-0.875 1.955-1.596 3.43-2.062-0.262 0.535-0.409 1.131-0.409 1.761 0 2.288 1.934 4.143 4.319 4.143s4.319-1.855 4.319-4.143c0-0.63-0.147-1.227-0.409-1.761 1.475 0.466 2.676 1.188 3.43 2.062 0.037 0.234 0.057 0.473 0.057 0.715 0 1.777-1.598 5.036-5.908 5.654v9.781l2.565-4.196c-0.598-2.488 0.791-3.956 3.245-3.956z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

5
svg/ddo.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>ddo</title>
<path fill="#444" d="M7.933 9.89c0-2.216-0.015-4.432 0.009-6.647 1.573 0.010 3.147 0.002 4.72 0.004 0.006 0.522-0.001 1.044 0.009 1.567 2.22-0.004 4.438-0.005 6.658 0 0.012-0.522 0.003-1.045 0.014-1.567 1.573 0 3.146 0.004 4.719-0.002 0.019 2.237 0.004 4.474 0.008 6.71-0.772 0.759-1.536 1.526-2.296 2.296-0.076 1.461 0.051 2.923-0.019 4.384-0.021 0.296 0.022 0.59 0.056 0.885 0.262-0.834 0.881-1.484 1.508-2.065 1.112-0.975 2.559-1.635 4.057-1.6 1.956-0.011 3.793 1.382 4.418 3.216 0.424 1.31 0.134 2.805-0.728 3.876-0.603 0.774-1.431 1.356-2.338 1.719-0.874 0.347-1.954 0.159-2.618-0.519-0.562-0.543-0.76-1.408-0.549-2.154 0.169-0.737 0.768-1.331 1.472-1.576 0.607-0.197 1.288-0.091 1.83 0.237 0.313 0.17 0.556 0.441 0.871 0.607-0.055-0.966-0.796-1.85-1.742-2.065-0.829-0.204-1.697 0.089-2.396 0.536-1.603 1.109-1.919 3.7-0.573 5.13 0.558 0.65 1.378 0.951 2.131 1.307-2.519 2.132-5.537 3.749-8.799 4.362-1.131 0.2-2.285 0.288-3.428 0.172-3.755-0.342-7.22-2.162-10.099-4.524 0.738-0.355 1.547-0.638 2.104-1.268 1.442-1.457 1.084-4.218-0.669-5.271-0.816-0.488-1.886-0.719-2.763-0.253-0.709 0.346-1.11 1.086-1.271 1.83 0.055-0.009 0.166-0.025 0.221-0.032 0.461-0.453 1.052-0.803 1.705-0.86 0.911-0.082 1.819 0.497 2.177 1.328 0.137 0.307 0.156 0.647 0.215 0.974-0.071 0.521-0.187 1.065-0.579 1.447-0.622 0.682-1.655 0.935-2.528 0.647-1.311-0.461-2.479-1.414-3.056-2.695-0.454-0.984-0.499-2.149-0.099-3.157 0.458-1.145 1.383-2.090 2.498-2.608 1.401-0.649 3.072-0.482 4.428 0.202 1.298 0.679 2.528 1.72 3.016 3.142 0.070-1.777 0.026-3.554 0.020-5.332-0.729-0.831-1.587-1.552-2.316-2.382zM15.578 7.742c-1.042 0.136-2.017 0.778-2.517 1.71-0.63 1.142-0.519 2.667 0.307 3.685 0.473 0.588 1.141 1.036 1.885 1.19 1.112 0.28 2.361-0.090 3.145-0.929 0.924-0.889 1.181-2.342 0.737-3.527-0.513-1.414-2.066-2.341-3.557-2.13zM15.13 18.739c-0.717 0.194-1.357 0.637-1.805 1.226-0.835 1.086-0.891 2.702-0.131 3.841 0.729 1.169 2.248 1.768 3.582 1.432 0.951-0.22 1.787-0.884 2.222-1.758 0.667-1.323 0.351-3.075-0.798-4.031-0.819-0.755-2.009-0.935-3.070-0.71z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

6
svg/ddp.svg Executable file
View File

@ -0,0 +1,6 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
<title>ddp</title>
<path fill="#444" d="M14.43 2.217c2.19 1.376 4.281 2.906 6.275 4.55 1.507 1.271 2.982 2.61 4.164 4.197 0.652 0.907 1.27 1.961 1.177 3.121-0.050 1.514-0.928 2.853-2.001 3.862-1.577 1.524-3.533 2.619-4.972 4.291-0.803 0.926-1.344 2.118-1.317 3.36 0.026 0.669 0.077 1.39 0.455 1.965 0.26 0.392 0.791 0.461 1.209 0.319 0.588-0.192 1.146-0.612 1.37-1.205 0.132-0.302-0.075-0.686-0.404-0.726-0.274-0.025-0.547 0.037-0.817 0.073 0.025-0.273 0.195-0.505 0.471-0.563 0.487-0.13 1.144-0.203 1.493 0.245 0.425 0.551 0.394 1.327 0.13 1.942-0.351 0.822-0.968 1.586-1.821 1.916-0.906 0.323-1.962 0.304-2.821-0.146-0.934-0.525-1.55-1.463-1.978-2.421-0.4-0.957-0.741-1.998-0.564-3.047 0.253-1.537 1.083-2.93 2.122-4.068 0.963-1.089 2.354-1.701 3.256-2.851 0.405-0.499 0.677-1.16 0.525-1.808-0.11-0.424-0.316-0.87-0.714-1.093-0.41-0.216-0.9-0.108-1.308 0.056-0.904 0.384-1.621 1.074-2.366 1.692-0.54 0.442-1.045 0.923-1.564 1.387-0.003-5.016-0.001-10.031-0.001-15.047z"></path>
<path fill="#444" d="M8.768 4.136c0.521-0.465 1.005-0.97 1.555-1.402 0.027 5.851 0.003 11.703 0.011 17.555-0.008 2.349 0.017 4.698-0.012 7.047-0.138-0.169-0.27-0.343-0.393-0.522-3.277-4.884-6.589-9.743-9.859-14.631 2.903-2.679 5.799-5.365 8.698-8.046z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

5
svg/ddq.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>ddq</title>
<path fill="#444" d="M20.604 3.344c2.231 0.374 4.433 0.997 6.485 1.959 1.912 0.909 3.772 2.17 4.844 4.044-0.976-0.287-2.013-0.415-3.026-0.282-0.792 0.111-1.606 0.531-1.935 1.297-0.091 0.247-0.264 0.535-0.127 0.795 0.592 1.313 1.004 2.716 1.137 4.152 0.365 4.197-1.498 8.527-4.822 11.123-1.267 0.955-2.736 1.643-4.28 2.006-0.687 0.127-1.386 0.201-2.085 0.219 0.018-1.543 0.003-3.086 0.008-4.629 2.042 0.011 4.027-1.046 5.228-2.685 0.583-0.764 0.947-1.663 1.274-2.559 0.297-0.811 0.523-1.649 0.651-2.503-0.778 0.444-1.505 0.975-2.264 1.453-1.569 1.018-3.126 2.055-4.703 3.063 0.463-3.26 0.582-6.573 0.311-9.855-0.131-1.449-0.349-2.893-0.608-4.322 1.223 2.831 2.366 5.705 3.571 8.548 1.152-0.851 1.836-2.218 2.010-3.623 0.22-1.532-0.012-3.090-0.379-4.581-0.317-1.242-0.751-2.454-1.289-3.618zM0.341 3.904c-0.081 2.854-0.176 5.707-0.273 8.561 1.37-1.453 2.734-2.913 4.106-4.364 0.126-0.091 0.314-0.052 0.461-0.031 0.421 0.303 0.826 0.63 1.24 0.942-2.024 2.156-3.119 5.114-3.12 8.059 0.011 2.32 0.686 4.641 1.981 6.571 1.068 1.619 2.56 2.959 4.296 3.825 1.458 0.734 3.088 1.123 4.721 1.121 0.004-1.521 0.001-3.042 0.002-4.562-2.269 0.013-4.447-1.297-5.598-3.235-0.868-1.426-1.22-3.164-0.959-4.814 0.236-1.613 1.037-3.147 2.262-4.229 0.702 0.517 1.38 1.065 2.087 1.576-0.004-2.084-0.003-4.167-0.001-6.249-1.243-1.055-2.486-2.112-3.728-3.169-2.493-0.009-4.985-0.003-7.478-0.003z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

5
svg/ddr.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="30" height="32" viewBox="0 0 30 32">
<title>ddr</title>
<path fill="#444" d="M4.058 3.553c0.32-0.423 0.675-0.822 0.987-1.253 0.137 0.986 0.003 2.008 0.315 2.964 0.008 0.303 0.308 0.458 0.568 0.514 1.266 0.43 2.468 1.049 3.75 1.43-0.332 0.768-0.798 1.469-1.203 2.2-0.974 1.733-1.97 3.453-2.94 5.188-0.203 0.327-0.34 0.752-0.735 0.891-1.582 0.778-3.148 1.593-4.737 2.355 0.012-0.303-0.008-0.619 0.124-0.899 0.179-0.391 0.1-0.842 0.272-1.234 0.173-0.392 0.081-0.846 0.255-1.237 0.26-0.563 0.005-1.307 0.544-1.742 1.43-1.255 2.82-2.552 4.18-3.883-0.352-0.751-0.792-1.459-1.177-2.196-0.376-0.475-0.26-1.105-0.241-1.664 0.028-0.478-0.039-0.96 0.039-1.434zM24.42 2.365c-0.065 0.795-0.079 1.594-0.139 2.391-0.071 0.368-0.143 0.829-0.547 0.969-1.33 0.446-2.593 1.078-3.931 1.494 1.487 2.729 3.063 5.411 4.59 8.119 1.672 0.852 3.345 1.717 5.044 2.509-0.025-0.327-0.015-0.668-0.153-0.973-0.205-0.418-0.075-0.915-0.272-1.334-0.207-0.414-0.081-0.907-0.284-1.322-0.153-0.359-0.108-0.76-0.196-1.134-0.824-0.919-1.797-1.686-2.689-2.536-0.635-0.532-1.189-1.153-1.814-1.697 0.459-0.854 0.948-1.693 1.394-2.552 0.097-0.912 0.053-1.844-0.015-2.757-0.263-0.439-0.634-0.807-0.987-1.177zM14.37 5.841c-1.394 2.401-2.879 4.755-4.229 7.18 1.378-0.718 2.723-1.506 4.073-2.279 0.283-0.196 0.671-0.295 0.989-0.121 0.951 0.58 1.932 1.113 2.895 1.673 0.432 0.263 0.871 0.522 1.347 0.695-1.533-2.6-3.071-5.199-4.572-7.818-0.183 0.212-0.373 0.419-0.503 0.67zM13.553 14.873c-1.385 0.748-2.795 1.447-4.181 2.192 0.222 0.704 0.578 1.358 0.843 2.048 1.458 3.429 2.919 6.86 4.376 10.29 0.075 0.063 0.224 0.191 0.299 0.253 0.387-1.23 0.971-2.391 1.437-3.594 0.918-2.233 1.85-4.46 2.77-6.693 0.339-0.758 0.591-1.555 0.997-2.283-1.704-1.001-3.491-1.856-5.232-2.788-0.486 0.040-0.866 0.399-1.307 0.575zM23.351 18.663c-0.35 0.915-0.826 1.774-1.214 2.672-1.109 2.443-2.241 4.873-3.359 7.311-0.129 0.289-0.305 0.567-0.309 0.895 0.048-0.019 0.147-0.057 0.196-0.076 0.86-0.927 1.917-1.638 2.808-2.531 0.666-0.627 1.417-1.157 2.064-1.804 0.67-0.67 1.462-1.202 2.134-1.869 0.743-0.748 1.625-1.343 2.371-2.090 0.035-0.084 0.104-0.252 0.139-0.336-1.11-0.555-2.188-1.171-3.284-1.75-0.426-0.24-0.895-0.414-1.265-0.74-0.093 0.105-0.191 0.208-0.28 0.319zM5.451 18.617c-0.612 0.329-1.211 0.688-1.834 0.999-0.814 0.41-1.578 0.931-2.443 1.231 0.623 0.791 1.513 1.302 2.216 2.014 0.727 0.747 1.604 1.326 2.336 2.068 0.426 0.422 0.901 0.79 1.358 1.175 0.62 0.49 1.138 1.095 1.769 1.573 0.812 0.638 1.51 1.406 2.34 2.021-1.098-2.436-2.228-4.86-3.347-7.288-0.54-1.293-1.239-2.52-1.71-3.839-0.229-0.057-0.468-0.065-0.684 0.045z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

5
svg/dds.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>dds</title>
<path fill="#444" d="M0.001 16.736c0 0 2.793 4.369 3.636 4.66 0.308 0.106 2.015-1.506 4.132-3.688l1.875 2.373-3.654 3.639c0 0 2.916 3.092 3.58 2.519 3.253-2.807 6.215-5.732 8.759-8.548l2.485 2.518c-3.716 4.5-8.241 9.138-10.818 9.32-4.775 0.339-9.995-7.186-9.995-7.186v-5.608zM16.236 7.893l-0.011 0.007c-0.277 0.542-0.653 0.982-0.993 1.413-1.16 1.472-2.396 2.883-3.645 4.28l2.108 2.473 2.285-2.299 9.961 9.93c0 0-2.916 3.092-3.579 2.519-0.969-0.836-1.923-1.696-2.852-2.566l-2.685 2.641c1.98 1.845 3.807 3.123 5.111 3.216 4.775 0.339 10.064-7.097 10.064-7.097v-5.672c0 0-2.861 4.345-3.705 4.636s-11.886-12.493-12.027-13.39c-0.005-0.029-0.022-0.065-0.031-0.089zM10.036 0.76c-0.608 0.033-1.21 0.401-1.71 0.715-1.501 0.943-2.771 2.276-3.568 3.863-0.625 1.286-0.928 2.428-0.516 4.254 0.113 0.5 0.319 1.084 0.536 1.595 0.543 1.281 3.894 6.1 7.875 10.704l2.482-2.589c-4.001-4.217-6.944-7.959-7.828-9.896-1.365-2.993 2.942-7.447 2.942-8.496-0.011-0.117-0.108-0.147-0.213-0.15zM22.060 0.738c-0.162 0.003-0.342 0.006-0.377 0.197 0 0.594 1.741 1.909 2.617 3.903 0.645 1.467 0.906 3.142 0.393 4.381-0.423 1.019-1.258 2.361-2.702 4.188l2.219 2.437c1.58-2.028 2.263-2.993 2.64-4.018 0.856-2.324 0.842-3.096 0.678-4.714-0.223-2.192-1.397-4.182-3.207-5.435-0.654-0.453-1.399-0.839-2.197-0.938l-0.063-0z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

5
svg/ddt.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>ddt</title>
<path fill="#444" d="M4.386 11.096c2.223-3.174 5.417-6.015 9.335-6.717-0.304 0.443-0.733 0.939-0.606 1.516 0.133 0.476 0.68 0.653 1.125 0.547 1.496-0.224 3.084-0.269 4.515 0.294 1.059 0.423 1.929 1.233 2.514 2.202-0.739 0.361-1.447 0.937-1.659 1.768-0.255 0.959 0.276 1.97 1.072 2.502 0.825 0.594 1.874 0.68 2.857 0.676-1.043-0.347-1.982-0.99-2.635-1.878 2.268-1.884 3.813-4.621 4.208-7.545 2.576 1.347 4.635 3.627 5.796 6.284 1.284 2.919 1.439 6.311 0.447 9.337-1.023 3.161-3.298 5.896-6.229 7.464-0.422-2.925-1.947-5.664-4.221-7.552 0.651-0.892 1.594-1.535 2.639-1.878-1.031-0.012-2.139 0.098-2.978 0.757-0.771 0.569-1.245 1.62-0.914 2.561 0.251 0.761 0.92 1.28 1.612 1.627-0.649 1.1-1.688 1.976-2.917 2.349-1.4 0.427-2.89 0.331-4.321 0.129-0.488-0.084-0.998 0.345-0.939 0.849 0.063 0.474 0.365 0.861 0.639 1.233-3.921-0.7-7.119-3.541-9.339-6.715 2.137 1.663 4.853 2.743 7.592 2.461 1.27-0.141 2.684-0.565 3.374-1.735 0.657-0.943 0.657-2.437-0.347-3.141-0.788-0.616-2.323-0.48-2.59 0.616-0.018 0.922 1.18 1.308 1.886 0.859-0.39 1.527-2.145 2.059-3.547 1.929-1.847-0.208-3.51-1.129-5.106-2.019-1.976-1.151-3.849-2.472-5.649-3.878 2.282-1.772 4.664-3.441 7.25-4.739 1.474-0.704 3.098-1.412 4.768-1.088 1.029 0.143 2.023 0.814 2.286 1.861-0.731-0.496-2.061 0.014-1.855 0.992 0.447 1.082 2.049 1.067 2.784 0.292 0.829-0.806 0.7-2.174 0.055-3.053-0.71-1.104-2.082-1.494-3.317-1.635-2.737-0.275-5.449 0.802-7.584 2.466zM25.973 6.428c0.167 0.404 0.312 0.822 0.539 1.202 1.206 2.051 2.053 4.337 2.323 6.711 0.427 3.439-0.529 6.945-2.255 9.913-0.253 0.406-0.42 0.857-0.594 1.302 2.888-2.427 4.672-6.178 4.529-9.968-0.118-3.519-1.863-6.899-4.541-9.16z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

5
svg/ddu.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="32" viewBox="0 0 29 32">
<title>ddu</title>
<path fill="#444" d="M12.212 1.79c2.062-0.016 4.125-0.027 6.188-0.040 0.058 0.882 0.116 1.764 0.174 2.647 0.393 0.133 0.771 0.307 1.14 0.496 1.343-0.365 2.681-0.754 4.021-1.128 1.48-0.417 2.959-0.835 4.44-1.252-0.794 2.82-1.591 5.638-2.384 8.458 0.194 0.368 0.365 0.749 0.5 1.142 0.882 0.058 1.765 0.117 2.647 0.175-0.013 2.062-0.025 4.125-0.040 6.187-0.873 0.061-1.747 0.123-2.62 0.185-0.205 0.855-0.531 1.683-0.979 2.441 0.567 0.663 1.137 1.324 1.704 1.988-1.243 1.2-2.486 2.398-3.728 3.599 0.431 0.32 0.959 0.5 1.494 0.527 0.625 0.034 1.253-0.11 1.817-0.375 0.238-0.114 0.469-0.251 0.662-0.433-0.356 1.041-1.066 1.963-1.993 2.559-1.070 0.685-2.411 0.917-3.653 0.662-1.388-0.276-2.631-1.113-3.489-2.228-0.066 0.659-0.133 1.317-0.199 1.976-1.986-0.051-3.973-0.104-5.959-0.156-0.063-0.876-0.125-1.751-0.188-2.626-0.685-0.201-1.358-0.449-2.002-0.76-1.64 1.639-3.279 3.279-4.919 4.918 0.001-1.636-0.004-3.272-0.003-4.908-1.636 0-3.272-0.004-4.908-0.003 1.639-1.64 3.279-3.279 4.918-4.919-0.312-0.643-0.559-1.317-0.76-2.002-0.875-0.063-1.751-0.125-2.626-0.188-0.052-1.986-0.105-3.973-0.156-5.959 0.658-0.066 1.316-0.133 1.974-0.199-0.941-0.727-1.683-1.724-2.054-2.858-0.318-0.954-0.356-2.003-0.082-2.973 0.264-0.973 0.85-1.853 1.643-2.476 0.448-0.353 0.952-0.64 1.494-0.82-0.237 0.254-0.4 0.567-0.53 0.886-0.25 0.63-0.357 1.33-0.226 1.999 0.075 0.389 0.237 0.76 0.471 1.080 1.199-1.243 2.398-2.485 3.597-3.728 0.664 0.567 1.325 1.137 1.988 1.705 0.758-0.448 1.585-0.775 2.441-0.979 0.063-0.873 0.124-1.747 0.185-2.62zM12.968 2.595c-0.060 0.832-0.117 1.664-0.176 2.495-1.172 0.176-2.303 0.629-3.274 1.307-0.622-0.533-1.244-1.068-1.866-1.601-1.030 1.068-2.061 2.135-3.091 3.203 0.416 0.347 0.917 0.595 1.452 0.689 0.794 0.147 1.602-0.012 2.377-0.191 0.992-0.232 1.99-0.491 3.016-0.496 0.916-0.012 1.847 0.199 2.632 0.682 0.6 0.36 1.103 0.863 1.527 1.416 0.444 0.585 0.778 1.262 0.915 1.987 1.665-1.664 3.328-3.329 4.994-4.992-0.527-0.452-1.086-0.869-1.681-1.228-0.62-0.371-1.284-0.683-1.989-0.849-0.054-0.818-0.108-1.636-0.162-2.454-1.558 0.013-3.115 0.019-4.673 0.031zM18.594 14.212c0.999 0.185 1.894 0.743 2.613 1.446 0.523 0.5 0.94 1.115 1.187 1.795 0.263 0.714 0.335 1.486 0.284 2.241-0.059 0.912-0.293 1.798-0.498 2.685-0.164 0.717-0.303 1.459-0.192 2.195 0.081 0.571 0.334 1.11 0.701 1.552 1.068-1.030 2.135-2.060 3.203-3.090-0.534-0.622-1.068-1.244-1.601-1.866 0.678-0.971 1.131-2.102 1.307-3.274 0.832-0.060 1.664-0.117 2.496-0.177 0.012-1.558 0.019-3.115 0.031-4.673-0.818-0.055-1.636-0.108-2.454-0.162-0.342-1.386-1.167-2.594-2.078-3.67-1.667 1.665-3.332 3.332-4.998 4.998zM7.233 12.838c-0.401 0.226-0.691 0.632-0.78 1.082-0.667-0.111-1.321-0.307-1.932-0.598-0.061-0.026-0.12-0.074-0.19-0.055-0.73 0.081-1.46 0.16-2.189 0.241 0.039 1.489 0.079 2.978 0.118 4.468 0.822 0.059 1.645 0.118 2.467 0.176 0.257 0.998 0.593 1.986 1.108 2.882 0.514 0.052 1.028 0.104 1.542 0.156 0.866-0.865 1.731-1.731 2.598-2.595-0.611-0.898-0.949-1.966-1.035-3.045 0.523-0.356 0.795-1.037 0.654-1.655-0.101-0.491-0.449-0.921-0.906-1.125-0.459-0.211-1.018-0.185-1.455 0.068zM14.698 12.683c-0.585 0.087-1.14 0.36-1.566 0.769-0.463 0.438-0.774 1.032-0.868 1.662-0.098 0.633 0.019 1.298 0.332 1.857 0.3 0.54 0.777 0.98 1.34 1.234 0.576 0.263 1.24 0.328 1.857 0.185 0.576-0.131 1.108-0.445 1.503-0.884 0.742-0.801 0.956-2.035 0.537-3.042-0.255-0.634-0.744-1.17-1.35-1.485-0.543-0.285-1.178-0.388-1.784-0.296zM9.497 23.309c0.052 0.515 0.103 1.030 0.156 1.545 0.897 0.514 1.884 0.851 2.882 1.107 0.058 0.822 0.117 1.645 0.176 2.467 1.489 0.039 2.978 0.079 4.468 0.118 0.078-0.706 0.154-1.413 0.233-2.119 0-0.058 0.029-0.122-0.004-0.175-0.31-0.634-0.519-1.315-0.635-2.010 0.634-0.119 1.163-0.653 1.267-1.291 0.094-0.505-0.074-1.051-0.44-1.412-0.348-0.357-0.871-0.531-1.364-0.457-0.438 0.058-0.841 0.313-1.093 0.674-1.082-0.087-2.153-0.426-3.053-1.040-0.866 0.864-1.73 1.729-2.595 2.594z"></path>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

5
svg/dgm.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>dgm</title>
<path fill="#444" d="M16.010 4.27l2.251 3.975h2.423l-3.183 4.782 5.657 5.916c-1.072 1.723-1.832 5.34-0.859 7.934h-12.69c1.020-2.357 0.271-6.157-0.786-7.928l5.672-5.921-3.157-4.782h2.277l2.396-3.975zM20.031 13.317c1.365 0.406 7.819 5.248 7.256 13.559h4.668l-9.367-17.472-2.557 3.913zM9.412 9.404l-9.367 17.472h4.668c-0.563-8.312 5.891-13.154 7.256-13.56l-2.556-3.913zM19.343 20.405c0-1.358-0.808-2.529-1.969-3.055l-0.024-4.338-1.361-8.136-1.372 8.167-0.039 4.319c-1.147 0.533-1.943 1.696-1.943 3.044 0 1.852 1.501 3.354 3.354 3.354s3.354-1.501 3.354-3.353z"></path>
</svg>

After

Width:  |  Height:  |  Size: 722 B

5
svg/dimir.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="30" height="32" viewBox="0 0 30 32">
<title>dimir</title>
<path fill="#444" d="M11 1.2c1.274 0.31 2.369 1.268 2.872 2.477-0.879 0.2-1.687 0.636-2.373 1.215 0.239-0.968 0.206-2.006-0.154-2.94-0.095-0.259-0.231-0.501-0.344-0.752zM15.752 3.676c0.879 0.201 1.688 0.636 2.375 1.215-0.144-0.631-0.207-1.288-0.106-1.93 0.081-0.622 0.318-1.207 0.604-1.761-1.275 0.31-2.368 1.269-2.873 2.476zM0.028 12.132c0.42-1.54 1.13-3.033 2.251-4.188 0.724-0.764 1.726-1.27 2.779-1.354 0.968-0.086 1.964 0.202 2.73 0.801 0.544 0.407 0.944 0.971 1.247 1.573 0.309-1.060 0.783-2.079 1.447-2.964 0.17-0.228 0.365-0.438 0.539-0.662-1.174 0.142-2.392-0.088-3.42-0.677-1.159-0.652-2.057-1.736-2.501-2.988-2.942 2.665-4.811 6.494-5.072 10.459zM24.525 1.673c-0.434 1.224-1.302 2.288-2.425 2.943-1.043 0.621-2.293 0.868-3.496 0.721 0.176 0.225 0.369 0.434 0.54 0.663 0.664 0.885 1.137 1.904 1.447 2.963 0.274-0.537 0.613-1.049 1.080-1.438 0.739-0.645 1.729-0.99 2.71-0.948 1.090 0.037 2.145 0.528 2.906 1.304 1.155 1.162 1.883 2.683 2.311 4.249-0.261-3.964-2.129-7.793-5.072-10.459zM14.079 10.527c1.041-0.131 2.14 0.004 3.074 0.501 0.549 0.297 1.062 0.755 1.235 1.374 0.152 0.522-0.022 1.093-0.371 1.496-0.503 0.59-1.242 0.925-1.985 1.097-1.134 0.251-2.363 0.164-3.417-0.34-0.587-0.287-1.147-0.74-1.357-1.38-0.187-0.544-0.010-1.157 0.364-1.579 0.617-0.705 1.55-1.046 2.458-1.17zM14.444 5.296c-0.968 0.094-1.858 0.598-2.532 1.284-1.117 1.139-1.727 2.698-1.926 4.264-0.224 1.831 0.077 3.759 1.015 5.364 0.582 0.99 1.444 1.863 2.537 2.266 0.944 0.356 2.030 0.289 2.929-0.164 1.109-0.549 1.927-1.557 2.451-2.659 0.811-1.722 0.981-3.715 0.591-5.569-0.314-1.444-1.002-2.854-2.143-3.821-0.8-0.684-1.866-1.082-2.923-0.964zM20.795 9.761c0.293 1.495 0.322 3.048 0.022 4.544 0.245-0.315 0.53-0.628 0.919-0.761 0.458-0.175 0.978-0.051 1.373 0.218 0.698 0.475 1.139 1.232 1.475 1.989 1.004 2.334 1.076 4.994 0.479 7.442 0.964-1.807 1.588-3.79 1.919-5.808 0.249-1.597 0.333-3.232 0.129-4.839-0.902 0.259-1.86 0.077-2.719-0.25-1.38-0.534-2.66-1.38-3.597-2.535zM5.408 12.228c-0.907 0.369-1.929 0.595-2.893 0.318-0.248 2.022-0.074 4.083 0.367 6.068 0.366 1.587 0.909 3.143 1.681 4.578-0.596-2.448-0.525-5.108 0.479-7.441 0.319-0.719 0.732-1.431 1.368-1.914 0.4-0.306 0.942-0.476 1.434-0.309 0.41 0.125 0.711 0.448 0.965 0.776-0.3-1.486-0.269-3.027 0.013-4.512-0.917 1.075-2.105 1.907-3.414 2.435zM14.563 11.612c-0.483 0.094-0.881 0.51-0.952 0.998-0.086 0.486 0.16 1.006 0.589 1.248 0.432 0.258 1.023 0.207 1.402-0.125 0.38-0.315 0.529-0.87 0.36-1.333-0.185-0.563-0.82-0.921-1.399-0.787zM8.264 16.419c-0.521 0.849-1.28 1.576-2.221 1.935 0 0.139 0.012 0.278 0.037 0.415 0.273 1.642 0.763 3.245 1.411 4.777 0.85 1.997 1.991 3.876 3.419 5.514 0.546 0.613 1.106 1.221 1.745 1.74-0.197-0.331-0.436-0.634-0.636-0.962-1.007-1.587-1.822-3.31-2.285-5.136-0.385-1.54-0.503-3.179-0.109-4.73 0.117-0.414 0.275-0.872 0.658-1.113 0.202-0.131 0.451-0.090 0.676-0.064-0.99-1.076-1.63-2.43-2.009-3.832-0.185 0.504-0.396 1.001-0.684 1.456zM18.668 18.795c0.198-0.019 0.408-0.063 0.596 0.024 0.261 0.115 0.43 0.363 0.547 0.612 0.185 0.405 0.272 0.846 0.34 1.285 0.217 1.445 0.040 2.925-0.348 4.326-0.351 1.258-0.871 2.465-1.495 3.611-0.396 0.746-0.873 1.444-1.337 2.148 0.314-0.236 0.584-0.523 0.865-0.796 1.525-1.526 2.778-3.316 3.739-5.246 0.89-1.793 1.55-3.704 1.915-5.673 0.042-0.242 0.096-0.484 0.092-0.73-0.338-0.137-0.663-0.307-0.955-0.527-0.949-0.704-1.565-1.764-1.951-2.864-0.38 1.402-1.019 2.756-2.009 3.832z"></path>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

5
svg/dis.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="32" viewBox="0 0 29 32">
<title>dis</title>
<path fill="#444" d="M11.794 11.646c0.145-1.44 1.365-2.569 2.843-2.569 0.136 0 0.274 0.012 0.407 0.030l0.427-1.755-0.387-1.588c-0.147-0.012-0.297-0.017-0.447-0.017-1.579 0-3.016 0.591-4.109 1.564l-2.846-1.674 1.042-0.834c0 0-3.615-2.539-8.709-1.737 0 0 0.713 4.074 5.725 6.813l0.222-1.319 2.741 1.613c-0.165 0.557-0.254 1.149-0.254 1.758 0 1.31 0.407 2.522 1.099 3.52l1.458-3.52 0.788-0.286zM20.613 4.803l1.042 0.834-2.886 1.694c-0.384-0.346-0.817-0.646-1.287-0.889l-0.228 1.804-0.961 1.364c0.725 0.516 1.2 1.365 1.2 2.32 0 0.499-0.13 0.963-0.355 1.373l1.007 0.828h2.274c0.26-0.684 0.404-1.425 0.404-2.201 0-0.598-0.086-1.178-0.248-1.726l2.796-1.645 0.222 1.319c5.015-2.739 5.725-6.813 5.725-6.813-5.093-0.802-8.706 1.737-8.706 1.737zM17.136 15.741l1.428 0.97c-0.655 0.539-1.422 0.946-2.262 1.18v3.5l1.249-0.476c0.177 5.711-2.975 8.389-2.975 8.389-3.273-3.985-2.914-8.389-2.914-8.389l1.249 0.476v-3.517c-0.834-0.239-1.593-0.652-2.242-1.195l0.814-0.344 0.984-2.548c0.522 0.612 1.301 1.001 2.17 1.001 0.626 0 1.209-0.205 1.682-0.551l0.817 1.503z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

5
svg/dka.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>dka</title>
<path fill="#444" d="M16 6.503l1.804 6.314 3.873-0.637c-0.743-4.404-3.661-7.799-3.661-7.799 6.314 1.114 8.117 5.73 8.117 5.73s3.13-0.743 5.836 0.371c-5.040 3.608-6.314 7.799-11.248 14.802l0.955-9.391-3.077 2.387-2.6 9.338-2.653-9.232-3.024-2.494 0.955 9.391c-0.329-0.506-0.646-0.997-0.952-1.473-4.841-7.525-7.052-11.483-10.295-13.329 1.963-0.849 5.836-0.371 5.836-0.371s1.592-4.351 8.117-5.73c-2.441 2.387-3.661 7.799-3.661 7.799l3.873 0.637z"></path>
</svg>

After

Width:  |  Height:  |  Size: 609 B

5
svg/dkm.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
<title>dkm</title>
<path fill="#444" d="M0.778 2.744l-0.215 0.021 2.605 7.443c0 0 0.967-4.208 1.024-4.452 0.7 0 1.776 0.009 2.963 0.118 0.014 0.25 0.548 19.732 0.548 19.732l0.883-0.086c0 0 0.393-6.084 0.413-6.374h2.802l0.422-1.589h-3.23v-1.603h3.147l-3.147-1.524v-8.298c2.539 0.464 4.584 1.371 6.072 2.708 2.022 1.816 3.050 4.438 3.050 7.796 0 2.837-0.841 5.107-2.499 6.735-1.83 1.801-4.346 2.507-6.135 2.782-1.019 0.155-1.911 0.189-2.484 0.195 0 0-0.617-0.020-0.849-0.029v-18.155c0 0-1.007 6.305-1.056 6.549-2.030 0.029-2.266 0.714-2.286 0.792l-0.075 0.347h2.195l-0.247 1.704h-1.75l-0.528 1.589h2.042c-0.068 0.367-1.265 7.008-1.308 7.258-1.434 0.054-2.395-0.057-2.406-0.060l-0.155-0.017-0.032 0.152-0.536 2.688 0.181 0.023c0.032 0.003 3.135 0.344 6.967-0.006 3.545-0.324 8.459-1.328 11.738-4.257 2.427-2.166 3.661-5.097 3.661-8.709 0-3.68-1.245-6.681-3.7-8.918-3.211-2.926-7.954-4.010-11.371-4.404-3.692-0.421-6.675-0.155-6.704-0.152z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

5
svg/dom.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="32" viewBox="0 0 24 32">
<title>dom</title>
<path fill="#444" d="M5.732 2.001c1.819-1.086 3.908-1.702 6.022-1.812 0.536-0.039 1.074 0.007 1.608 0.061 2.448 0.258 4.821 1.22 6.742 2.762 0.881 0.71 1.684 1.526 2.331 2.456-1.975 1.893-3.606 4.143-4.784 6.612-0.483-0.737-1.091-1.394-1.806-1.91-1.040-0.757-2.311-1.204-3.6-1.212-1.264-0.016-2.521 0.389-3.561 1.103-0.797 0.543-1.469 1.258-1.991 2.067-1.149-2.491-2.747-4.784-4.752-6.661 0.992-1.413 2.314-2.582 3.792-3.467zM1.461 8.927c-0.19 0.235-0.373 0.485-0.457 0.778 1.183 1.467 2.292 2.993 3.359 4.546-1.003-0.785-2-1.576-3.009-2.353-0.405 0.43-0.692 0.962-0.871 1.524 1.354 0.75 2.665 1.578 3.913 2.494 1.023 0.758 2.012 1.575 2.857 2.531-0.154-0.776-0.355-1.543-0.59-2.298-0.919-2.936-2.34-5.751-4.386-8.066-0.29 0.264-0.569 0.542-0.818 0.845zM18.834 13.195c-0.761 1.681-1.348 3.443-1.714 5.252 0.832-0.941 1.803-1.747 2.808-2.495 1.262-0.93 2.59-1.77 3.962-2.53-0.179-0.561-0.466-1.093-0.871-1.524-1.009 0.778-2.007 1.568-3.009 2.354 1.067-1.555 2.177-3.080 3.36-4.549-0.085-0.29-0.265-0.538-0.452-0.77-0.25-0.306-0.531-0.585-0.823-0.851-1.347 1.52-2.422 3.267-3.262 5.112zM10.068 11.198c-1.183 0.636-2.059 1.752-2.535 2.995 0.71 2.010 1.185 4.109 1.35 6.235 0.413 0.543 0.803 1.106 1.145 1.699 0.892 1.536 1.59 3.178 2.159 4.858 0.248-0.739 0.525-1.469 0.831-2.187 0.661-1.539 1.435-3.047 2.476-4.366 0.083-2.165 0.574-4.303 1.308-6.337-0.268-0.659-0.641-1.276-1.119-1.804-0.706-0.785-1.654-1.369-2.697-1.564-0.989-0.192-2.037-0.012-2.919 0.469zM0.119 19.429c1.192 0.768 2.308 1.663 3.267 2.711 1.069 1.169 1.947 2.537 2.425 4.054 0.238 0.77 0.395 1.576 0.36 2.385 1.239 1.663 3.138 2.749 5.13 3.247-0.010-1.921-0.355-3.838-1.014-5.641-1.098-3.022-3.035-5.696-5.4-7.856-1.115-1.015-2.317-1.94-3.616-2.71-0.576 1.202-0.912 2.504-1.153 3.81zM19.369 18.437c-2.253 2.085-4.107 4.641-5.199 7.522-0.712 1.869-1.087 3.866-1.097 5.866 1.99-0.497 3.889-1.584 5.129-3.245-0.032-0.738 0.098-1.474 0.299-2.181 0.401-1.389 1.143-2.662 2.062-3.771 1.045-1.26 2.32-2.314 3.693-3.199-0.241-1.306-0.577-2.608-1.153-3.81-1.345 0.797-2.586 1.76-3.734 2.819z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

5
svg/dpa.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
<title>dpa</title>
<path fill="#444" d="M16.727 22.111c-1.061 0.771-2.26 1.407-2.83 2.668l-1.133-0.565c0.088-0.234 0.145-0.502 0.16-0.81 0.011-0.177-0.069-0.397-0.097-0.576-0.034-0.188-0.069-0.38-0.103-0.571-0.069-0.376-0.142-0.756-0.223-1.132-0.156-0.73-0.339-1.456-0.559-2.166-0.205-0.679-0.443-1.353-0.736-2-0.274-0.605-0.605-1.185-1.010-1.712-0.242-0.311-0.508-0.602-0.787-0.882-0.126-0.123-0.259-0.242-0.382-0.368-0.085-0.091-0.194-0.26-0.331-0.265-0.22-0.009-0.337 0.237-0.408 0.408-0.097 0.232-0.188 0.446-0.317 0.665s-0.299 0.117-0.511 0.077c-0.245-0.046-0.756-0.419-0.859-0.468-0.091-0.048-0.365-0.097-0.419-0.191s0.034-0.234 0.1-0.399c0.069-0.16 0.585-1.558 0.645-1.821 0.034-0.142 0.060-0.291 0.074-0.442 0.009-0.072 0.069-0.408 0.018-0.457-0.374-0.359-1.073-0.388-1.538-0.648 0.277-0.411 0.465-0.676 0.648-0.97 1.624-0.060 2.998 0.129 4.613 0.080 0.879 2.032 1.998 3.827 3.236 5.505 0.457-0.166 0.511-0.733 1.133-0.73 0.262 0.003 0.456 0.171 0.611 0.362 0.074 0.096 0.14 0.199 0.214 0.297 0.071 0.1 0.183 0.199 0.196 0.331 0.012 0.126-0.031 0.328-0.099 0.434-1.213 1.897 0.237 4.445 0.696 6.348zM25.888 22.363c-0.151 0.291-0.317 0.579-0.491 0.859-0.283-0.091-1.361-0.431-2.031-0.462-1.849-0.12-3.005 0.448-4.212 0.97l-0.565-0.728c0.069-0.094 0.14-0.186 0.217-0.271 0.443-0.497 1.093-0.828 1.338-1.486 0.242-0.639 0.018-1.33-0.237-1.926-0.271-0.639-0.565-1.267-0.833-1.903-0.334-0.793-0.67-1.584-1.161-2.294-0.086-0.126-0.146-0.291-0.269-0.385-0.191-0.143-0.339 0.048-0.502 0.131-0.4 0.197-0.771-0.222-1.030-0.488-0.137-0.142-0.294-0.325-0.334-0.527-0.046-0.235 0.117-0.411 0.256-0.579 0.299-0.357 0.622-0.733 0.836-1.148 0.139-0.262 0.228-0.565 0.259-0.861-0.348-0.676-1.38-0.668-1.78-1.293 0.031-0.048 0.060-0.1 0.088-0.148 0.105-0.191 0.205-0.408 0.382-0.545 0.22-0.171 0.471-0.026 0.694 0.054 0.245 0.088 0.502 0.126 0.759 0.148 0.285 0.023 0.57 0.069 0.858 0.075 0.254 0.006 0.516-0.003 0.771-0.020 0.362-0.023 0.907-0.228 1.113-0.222 0.262 0.011 0.276 0.105 0.516 0.253-0.034 0.089-0.058 0.194-0.072 0.305-0.034 0.26-0.023 0.522-0.015 0.779 0.012 0.277-0.005 0.57 0.037 0.85 0.049 0.299 0.191 0.559 0.302 0.838 0.117 0.297 0.242 0.594 0.371 0.89 0.257 0.576 0.531 1.147 0.808 1.715 0.556 1.144 1.115 2.283 1.56 3.472 0.22 0.593 0.428 1.198 0.554 1.817 0.148 0.744 0.887 1.475 1.478 1.909 0.096 0.072 0.225 0.154 0.331 0.22zM6.775 22.919c0.183-0.060 0.031-0.454 0.080-0.645-0.397-0.229-0.771-0.474-0.973-0.89-0.054-0.114 0.017-0.413 0.028-0.536 0.017-0.177 0.037-0.354 0.066-0.525 0.051-0.325 0.126-0.642 0.217-0.959 0.171-0.584 0.405-1.147 0.639-1.711 0.14-0.334 0.513-1.361 0.579-1.535 0.051-0.134 0.129-0.291 0.060-0.442-0.054-0.12-0.166-0.146-0.274-0.197-0.12-0.060-0.611-0.311-0.742-0.354-0.105-0.037-0.334-0.18-0.439-0.129-0.115 0.054-0.348 0.533-0.402 0.633-0.123 0.229-0.232 0.465-0.331 0.702-0.234 0.548-0.431 1.11-0.622 1.678-0.346 1.019-0.639 2.083-1.124 3.050-0.365 0.728-0.936 1.44-1.675 1.817 0.171 0.294 0.354 0.585 0.548 0.865 0.959-0.768 2.634-1.091 4.366-0.822zM23.314 23.647h-0.009c-0.145-0.009-0.291-0.015-0.43-0.015-0.765 0-1.396 0.143-1.986 0.348-1.901 1.703-4.408 2.742-7.156 2.742-2.865 0-5.469-1.127-7.393-2.962-0.257-0.028-0.513-0.045-0.765-0.045-1.101 0-2.083 0.279-2.642 0.744 2.511 3.201 6.414 5.258 10.799 5.258 4.594 0 8.662-2.259 11.151-5.727-0.494-0.151-1.176-0.325-1.564-0.345h-0.006zM1.442 22.092h-0.003c-0.91-1.835-1.424-3.903-1.424-6.092 0-7.575 6.143-13.718 13.718-13.718s13.718 6.143 13.718 13.718c0 1.98-0.419 3.857-1.172 5.555-0.075-0.042-0.145-0.093-0.197-0.131-0.602-0.44-1.055-0.99-1.133-1.367-0.14-0.702-0.376-1.381-0.587-1.949-0.026-0.066-0.052-0.131-0.075-0.194 0.112-0.622 0.169-1.261 0.169-1.914 0-5.915-4.811-10.726-10.723-10.726s-10.723 4.811-10.723 10.726c0 1.019 0.14 2.006 0.408 2.936-0.2 0.608-0.408 1.184-0.679 1.723-0.337 0.668-0.81 1.19-1.298 1.432z"></path>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

5
svg/drb.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>drb</title>
<path fill="#444" d="M23.998 15.951c0-5.508 4.312-6.561 5.891-6.561 1.053 0 2.058 0.431 2.058 0.431-4.357-4.166-8.523-1.151-8.523-1.151-0.096-2.632-1.773-4.452-1.773-4.452 1.241 5.748-2.339 8.14-3.339 8.686-0.401-2.595-1.284-4.399-2.312-4.399s-1.912 1.805-2.311 4.399c-1.003-0.547-4.583-2.938-3.339-8.686 0 0-1.678 1.82-1.773 4.452 0 0-4.166-3.016-8.526 1.151 0 0 1.005-0.431 2.058-0.431 1.582 0 5.891 1.053 5.891 6.561s-3.926 6.754-5.841 6.754c-1.534 0-2.061-0.431-2.061-0.431s3.352 3.976 8.478 1.246c0 0 0.238 2.537 1.868 4.262 0 0-1.857-5.753 3.244-8.674 0.401 2.59 1.284 4.387 2.311 4.387 1.026 0 1.911-1.798 2.309-4.387 5.101 2.921 3.247 8.674 3.247 8.674 1.627-1.725 1.868-4.262 1.868-4.262 5.124 2.73 8.478-1.246 8.478-1.246s-0.529 0.431-2.061 0.431c-1.916 0-5.844-1.246-5.844-6.754z"></path>
</svg>

After

Width:  |  Height:  |  Size: 957 B

5
svg/drk.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
<title>drk</title>
<path fill="#444" d="M21.274 23.746c-6.202 2.68-13.453-0.061-16.265-6.231-1.763-3.864-1.292-8.125 0.669-11.562 0.863-1.508 2.274-2.964 2.274-2.964-6.822 3.128-9.838 11.215-6.725 18.045 3.116 6.84 11.218 9.868 18.057 6.749 3.697-1.684 6.281-4.828 7.383-8.439 0 0-1.975 2.926-5.393 4.402z"></path>
</svg>

After

Width:  |  Height:  |  Size: 453 B

5
svg/dst.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="22" height="32" viewBox="0 0 22 32">
<title>dst</title>
<path fill="#444" d="M21.262 12.506c-0.702-3.598-2.25-6.142-2.25-6.142l-4.754 13.535c0 0 0.347 0.102 0.818 0.33l6.187-7.723zM21.519 17.934c0.048-0.65 0.075-1.339 0.075-2.065 0-0.731-0.051-1.443-0.135-2.127l-5.581 6.983c0.413 0.3 0.941 0.734 1.255 1.216l4.385-4.008zM10.746 25.582c-1.756 0-2.301 1.588-2.301 1.588-2.478-1.345-4.518-3.655-4.518-3.655 0.021-0.302 0.084-0.581 0.171-0.836l-3.871-3.244c0.407 3.151 1.219 5.009 1.219 5.009s3.409 2.48 6.923 3.203c0 0-0.21 2.894 2.271 2.894h0.311c2.478 0 2.271-2.891 2.271-2.891 3.514-0.726 6.923-3.203 6.923-3.203s0.812-1.858 1.219-5.012l-3.871 3.244c0.087 0.258 0.15 0.537 0.171 0.836 0 0-2.040 2.313-4.521 3.655 0 0-0.542-1.588-2.298-1.588h-0.101zM6.519 20.229c0.47-0.231 0.818-0.33 0.818-0.33l-4.754-13.535c0 0-1.548 2.543-2.25 6.142l6.187 7.723zM4.461 21.942c0.314-0.485 0.842-0.916 1.255-1.216l-5.578-6.983c-0.087 0.683-0.138 1.396-0.138 2.127 0 0.725 0.027 1.414 0.075 2.065l4.385 4.008zM2.894 3.059h15.807l-5.89 17.769h-4.026l-5.89-17.769z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

7
svg/dtk.svg Executable file
View File

@ -0,0 +1,7 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="32" viewBox="0 0 24 32">
<title>dtk</title>
<path fill="#444" d="M10.468 5.318c0.548-0.824 0.926-1.746 1.326-2.648 0.299 0.764 0.646 1.51 1.041 2.231 0.191 0.319 0.38 0.702 0.768 0.806 1.933 0.759 3.707 1.847 5.538 2.811 0.731 0.45 1.571-0.001 2.184-0.442 0.709-0.524 1.455-1.254 1.41-2.209 0.61 0.028 0.961 0.683 0.784 1.236-0.554 2.19-1.164 4.366-1.778 6.54-0.031 0.161-0.154 0.272-0.26 0.386-0.881 0.909-1.753 1.827-2.627 2.743-0.242 0.235-0.408 0.567-0.378 0.911 0.048 0.473 0.498 0.823 0.952 0.875 0.303 0.047 0.598-0.056 0.881-0.15-0.451 1.188-1.143 2.266-1.873 3.299-1.075-0.174-2.251 0.179-2.944 1.044-0.699 0.8-0.774 1.993-0.349 2.941-1.081 1.245-2.197 2.461-3.349 3.64-1.174-1.164-2.273-2.401-3.374-3.633 0.235-0.584 0.349-1.236 0.2-1.856-0.226-1.005-1.078-1.8-2.060-2.063-0.473-0.141-0.972-0.111-1.459-0.087-0.7-1.046-1.408-2.107-1.852-3.293 0.497 0.235 1.163 0.258 1.561-0.176 0.413-0.358 0.333-1.018-0.028-1.382-0.936-0.964-1.856-1.945-2.792-2.909-0.087-0.080-0.145-0.177-0.173-0.291-0.603-2.143-1.19-4.292-1.75-6.447-0.082-0.329-0.097-0.716 0.124-0.996 0.15-0.209 0.409-0.272 0.638-0.356-0.033 1.027 0.783 1.798 1.562 2.338 0.563 0.376 1.314 0.751 1.969 0.367 1.681-0.866 3.292-1.875 5.042-2.606 0.366-0.187 0.84-0.244 1.069-0.624zM5.759 11.708c-0.005 0.627-0.002 1.253-0.003 1.88-0.024 0.153 0.083 0.271 0.161 0.389 1.052 1.494 2.087 3.003 3.134 4.5 0.171 0.241 0.321 0.497 0.53 0.709-0.005-1.413-0.003-2.827 0-4.24-1.272-1.082-2.544-2.162-3.821-3.237zM13.971 14.955c0.015 1.411-0.003 2.822 0.010 4.235 0.292-0.324 0.508-0.703 0.766-1.052 1.013-1.467 2.046-2.92 3.048-4.394 0.063-0.674 0.006-1.36 0.024-2.039-1.293 1.072-2.569 2.162-3.848 3.251z"></path>
<path fill="#444" d="M3.8 23.742c0.782-0.652 2.068-0.704 2.801 0.048 0.78 0.807 0.562 2.217-0.269 2.906-1.151 0.982-2.467 1.762-3.837 2.395 0.934-1.613 1.369-3.489 1.305-5.348z"></path>
<path fill="#444" d="M16.824 23.954c0.678-0.915 2.117-0.914 2.946-0.205-0.085 1.863 0.394 3.714 1.279 5.346-1.341-0.657-2.656-1.401-3.791-2.379-0.794-0.641-1.070-1.922-0.433-2.762z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

5
svg/e01.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
<title>e01</title>
<path fill="#444" d="M17.96 1.228c0.021-0.011 0.187-0.063 0.178-0.041-0.151 0.342-0.249 0.609-0.287 0.739-1.063 3.375-0.985 5.669 1.952 7.669 2.558 1.741 6.036 4.013 6.438 7.437-0.148 2.938-3.272 4.595-5.519 5.906-3.142 1.726-6.585 4.117-7.543 7.844-1.325-3.974-5.097-6.407-8.542-8.288-2.093-1.254-5.013-3.040-4.583-5.837 1.127-3.939 3.868-4.983 6.75-7.625 2.25-2.063 2.523-4.317 1.402-7.033-0.192-0.465-0.42-0.798-0.301-0.78 0.178 0.027 0.614 0.276 0.987 0.701 1.379 1.576 3.518 6.005-0.088 9.611-1.685 1.685-4.583 4.393-3.899 6.157s5.742 3.044 8.18 5.207c2.417-2.494 8.293-3.836 8.413-5.82s-3.265-4.171-4.943-6.106c-1.952-2.33-1.246-5.678 0.108-8.124 0.131-0.237 0.489-0.889 0.848-1.264 0.156-0.163 0.301-0.271 0.451-0.353zM13.152 2.785c0 0-0.053 1.735-0.778 4.090-0.498 1.619-0.733 2.272-1.061 2.977-0.557 1.198-0.95 1.718-1.44 2.749-0.32 0.658-0.645 1.325-0.803 2.054-0.134 0.895-0.038 1.84 0.353 2.65 0.478 1.076 1.398 1.898 2.458 2.228 0.527 0.2 1.095 0.136 1.643 0.131 1.607-0.186 3.017-1.567 3.362-3.272 0.298-1.112-0.074-2.604-0.572-3.599-0.372-0.78-1.017-1.69-1.438-2.75-0.469-1.181-0.729-2.219-1-3.24-0.494-1.863-0.561-3.239-0.724-4.018z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

5
svg/e02.svg Executable file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>e02</title>
<path fill="#444" d="M14.549 26.825c1.004 0.159 2.018 0.125 3.024 0.009-0.204 0.24-0.429 0.461-0.634 0.704-0.308 1.176 0.673 2.288 0.291 3.464-0.132 0.594-0.703 1.067-1.326 0.989-0.656 0.004-1.159-0.567-1.261-1.182-0.265-1.082 0.465-2.086 0.338-3.164-0.108-0.293-0.286-0.55-0.433-0.821zM24.906 22.481c-0.739 0.703-1.388 1.503-2.188 2.148 0.030 0.477 0.722 0.214 0.995 0.488 0.859 0.732 1.065 2.056 2.154 2.551 0.775 0.469 1.904-0.096 1.955-1.006 0.030-0.836-0.641-1.502-1.339-1.851-0.588-0.282-1.108-0.677-1.545-1.161 0.026-0.39 0.023-0.781-0.032-1.169zM7.208 22.489c-0.129 0.401-0.127 0.847-0.329 1.218-0.732 0.859-2.054 1.067-2.551 2.154-0.475 0.775 0.095 1.893 0.998 1.955 0.84 0.034 1.505-0.643 1.859-1.341 0.282-0.584 0.675-1.106 1.159-1.539 0.391 0.028 0.785 0.025 1.176-0.032-0.749-0.825-1.645-1.509-2.313-2.415zM16.083 14.761c0.104 0.023 0.212 0.032 0.313 0.068 0.579 0.208 0.945 0.813 0.812 1.418-0.149 0.866-1.312 1.28-1.97 0.692-0.738-0.546-0.514-1.831 0.361-2.099 0.264-0.086 0.105-0.048 0.485-0.079zM15.743 9.606c-0.244 0.006-0.484 0.032-0.726 0.065-0.017 1.282 0.047 2.566-0.038 3.845-1.061-0.739-1.836-1.808-2.814-2.646-0.509 0.418-0.978 0.881-1.371 1.413 0.883 0.936 1.874 1.776 2.691 2.774-1.271 0.089-2.545 0.009-3.82 0.049-0.076 0.654-0.066 1.312 0.025 1.965 1.246 0.026 2.494 0.004 3.742 0.011-0.864 0.889-1.759 1.749-2.623 2.638 0.395 0.526 0.864 0.981 1.36 1.411 0.974-0.826 1.776-1.834 2.763-2.648 0.045 1.278-0.015 2.557 0.038 3.835 0.647 0.085 1.301 0.093 1.952 0.015 0.045-1.273-0.030-2.545 0.045-3.816 0.998 0.806 1.827 1.798 2.763 2.676 0.531-0.391 0.993-0.862 1.415-1.367-0.849-0.955-1.842-1.77-2.653-2.757 1.278-0.057 2.561 0.008 3.841-0.038 0.089-0.651 0.098-1.309 0.013-1.959-1.275-0.040-2.549 0.030-3.822-0.043 0.747-1.048 1.789-1.842 2.659-2.786-0.401-0.543-0.868-1.036-1.43-1.415-0.904 0.889-1.749 1.842-2.719 2.661-0.061-1.275-0.009-2.549-0.030-3.824l-0.496-0.054c-0.255-0-0.509-0.001-0.764-0.006zM15.983 8.286c1.733 0.083 3.255 0.477 4.655 1.552 1.779 1.329 2.937 3.457 3.058 5.679 0.299 3.614-2.33 7.158-5.859 7.96-1.806 0.444-3.773 0.206-5.414-0.671-1.883-0.987-3.323-2.786-3.86-4.845-0.545-2.022-0.21-4.261 0.908-6.032 1.163-1.885 3.171-3.222 5.363-3.55 0.635-0.084 0.253-0.044 1.149-0.092zM16.288 6.329c-0.74 0.012-1.483 0.019-2.208 0.189-2.653 0.524-5.034 2.237-6.399 4.567-1.365 2.284-1.704 5.144-0.93 7.687 0.736 2.481 2.521 4.622 4.82 5.806 2.301 1.205 5.093 1.407 7.547 0.567 2.343-0.789 4.346-2.517 5.478-4.711 1.112-2.126 1.377-4.669 0.745-6.982-0.645-2.404-2.267-4.52-4.41-5.783-1.429-0.809-2.993-1.298-4.643-1.341zM5.148 14.717c-1.331 1.133-2.975-0.556-4.412 0.223-0.944 0.388-0.995 1.936-0.026 2.326 1.205 0.596 2.398-0.401 3.631-0.231 0.333 0.151 0.55 0.477 0.845 0.69-0.119-1-0.183-2.008-0.038-3.009zM26.862 14.439c0.104 0.998 0.142 2.005-0.013 3.001 0.367-0.187 0.717-0.509 1.159-0.439 1.070 0.066 2.162 0.724 3.221 0.216 0.968-0.363 1.046-1.931 0.076-2.337-1.244-0.645-2.494 0.49-3.763 0.18-0.233-0.2-0.446-0.422-0.679-0.62zM5.556 4.3c-0.718 0.058-1.307 0.425-1.379 1.199-0.013 0.842 0.675 1.498 1.38 1.849 0.582 0.28 1.101 0.671 1.517 1.169-0.034 0.355-0.045 0.711-0.023 1.068 0.756-0.756 1.441-1.587 2.29-2.247-0.412-0.153-0.936-0.108-1.229-0.486-0.732-0.785-1.010-2.027-2.103-2.439-0.244-0.098-0.095-0.050-0.453-0.114zM26.303 4.184l-0.267 0.085c-1.244 0.482-1.403 2.006-2.4 2.774-0.382-0.015-0.764-0.017-1.144 0.023 0.728 0.804 1.587 1.49 2.281 2.332 0.079-0.333 0.125-0.675 0.235-1 0.548-0.819 1.624-1.014 2.258-1.744 0.359-0.395 0.628-0.947 0.494-1.49-0.264-0.738-0.682-0.984-1.455-0.979zM15.823 0.003c-0.438 0.1-0.762 0.218-0.97 0.653-0.63 1.227 0.357 2.472 0.227 3.737-0.252 0.252-0.501 0.505-0.728 0.779 1.016-0.14 2.044-0.185 3.062-0.017-0.195-0.367-0.535-0.711-0.456-1.159 0.066-1.095 0.751-2.235 0.176-3.306-0.274-0.501-0.747-0.719-1.311-0.687z"></path>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

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