first commit
All checks were successful
Deploying Website / build (push) Successful in 16s

This commit is contained in:
Maxime Delporte
2025-04-04 18:47:44 -03:00
commit 51ea013bc3
822 changed files with 18303 additions and 0 deletions

1
themes/Eclectic/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
node_modules

23
themes/Eclectic/LICENSE Normal file
View File

@@ -0,0 +1,23 @@
MIT License
NOTE: REQUIRES ATTRIBUTION IN FOOTER TO STAY INTACT FOR USAGE.
Copyright (c) 2016-2020 Atishay Jain
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

175
themes/Eclectic/README.md Normal file
View File

@@ -0,0 +1,175 @@
Eclectic
=====
A theme for high performance customizable hugo websites.
![Eclectic Theme](exampleSite/assets/theme.jpg?raw=true "Eclectic Theme")
NOTE: REQUIRES ATTRIBUTION IN FOOTER TO STAY INTACT FOR USAGE.
See [atishay.me](https://github.com/atishay/atishay.github.io) for sample website.
## Key Features:
* Fast
* Millions of color themes with CSS Variables
* Color switcher to allow users to customize the color theme.
* Dark mode support.
* Structured metadata support for adding advanced content to any page (not just home page).
* Configurable footer.
* Search support (no external dependencies).
* Full SEO with JSON-LD, twitter cards and open graph.
* CSS Grid based powerful grid system.
## Layout Types
* `default` Pages with simple markdown content. Support structured metadata described below.
* `post` Used for pages where the content has a sidebar, a cover image etc.
* `contact` Used for Contact Us pages.
## Images
* `assets/image/favicon.svg` - Favicon SVG Version
* `assets/image/favicon.png` - Favicon PNG Version
* `assets/image/logo.svg` or `assets/image/logo.png` - Logo
## Search
* The theme creates a JSON of the entire website in the home pages's index.json which is used for search.
* To get the search functionality, add the json output format to the home page.
```
[outputs]
home = [
"html",
"rss",
"json"
]
```
## Series
If `series` taxonomy is used, pages from the same series are shown in the related pages before using any other related pages.
## Menus
* `main` - Top menu shown in the header. Supports one nested level of submenus. Uses the Section name to find the appropriate top level item to highlight.
* `footer` The footer menu (does not have submenu support).
## Template blocks
* `favicon` - Present in the `<head>` tag. Defaults to basic favicon and basic apple touch icon support.
* `social` - All the data for open graph, twitter cards and JSON-LD. Contains sub-blocks
* `opengraph` - For Open Graph tags
* `meta` - General meta tags like description and canonical url.
* `jsonld` - JSON-LD for Google.
## Footer
* The footer contains multiple sections that can be specified in the front matter. The template has special column arrangement for the sectioning as defined below.
* There can be modified in the settings as an array in `Site.Params.Footer` with the following options
* `title` - Title of the section.
* `content` - In Markdown
* `image` - Show an image in the section (by default pulled to the left with 50% width).
* `recent` - Name of the section to show recents from.
* `recentCount` - Count for the recent range.
* `contact` - Optimized version of the contact us snippets. The order and contents are not customizable as you can still use markdown to make a custom version.
* `menu` - Displays the menu named `footer`. Does not have sub-menu support.
## Column arrangements
CSS Grids are used for column arrangements in the most logical manner.
* 1 - Single Item
* 2 - Two items till `md`
* 3 - Three items till `lg`
* 4 - 4 items till `xl`, 2 2 till `md`
* 5 - 2 3 till `lg`, 2 2 1 till `md`
* 6 - 3 3 till `lg`, 2 2 2 till `md`
* 7 - 3 4 till `xl`, 3 3 1 till `lg`, 2 2 2 1 till `md`
* 8 - 4 4 till `xl`, 2 2 2 2 till `md`
* 9 - 3 3 3 till `lg`
* 12 - 4 4 4 till `xl`, 3 3 3 3 till `lg`, 2 2 2 2 2 2 till `md`
8 and 9 can be further improved if needed.
## Settings
* `Site.Params.colorPickerEnabled` Enable color picker to help the user switch color themes as well as dark mode.
* `Site.Params.checksDarkMode` - Should enable automatic switching to dark mode based on media query.
* `Site.Params.custom_css` - Custom CSS File for overrides.
* `Site.Params.github` - Github link for the octocat on top right.
* `Site.Params.custom_css` - Custom CSS Overrides file.
* `Site.Author` - Contains `facebook`, `twitter`, `github`, `email`, `linkedin` and `name` fields.
* `Site.Params.color` - Default theme color.
* `Site.Params.description` - Default Description.
* `Site.Params.sidebar` - Shared sidebar for all posts. Will be available under the post specific sidebar.
* `Site.Params.sharedHeader` - List of sections where the header has no changes (like blogs unless we have a submenu). This cached headers to improve performance.
* `Site.Params.Tex` - tex2svg hosted location.
* `Site.Params.Guitar` - guitar2svg hosted location.
* `Site.Params.scss` - Set this to true if using Hugo extended - the scss version is pre-compiled as main.css to support non-extended Hugo version. This is to allow new developers on Hugo to non get stuck with the extended requirement. Enable if looking for CSS bugs.
## Browsers
* This theme uses all modern CSS like CSS Variables, CSS Grid and Flexbox. Do not expect this to support older browsers.
## Posts
* Use Hugo Page Bundles for posts. The theme automatically picks up `cover.jpg` in the page bundle as the cover image.
## Top Matter
* `sidebar` - You can add stuff to the page sidebar by using a the front matter and passing a list to `sidebar` with `title` and `content` properties. `content` can be markdown.
* `coverAnchor` - Add anchoring position for the cover image.
## Shortcodes
* `fig` Same as `figure`, but added support for providing image size.
* `tex` Renders Latex as SVG. Optional parameter `inline` for inline latex. Needs `Site.Params.Tex` for the `tex2svg` hosting.
* `guitar` Renders guitar tabs and chords using jtab. Needs `Site.Params.Guitar` for the `guitar2svg` hosting.
## Structured metadata
You can supplied structured metadata in a default page. These pages provide multiple sections with advanced styling and grouping into columns, support for carousels, lists etc. In the front matter, you can supply the following information a list in the `content` to render structured data:
* `file` Reads the structured data from a file instead of from inline properties. The file can be present in the page bundle for the page or the asset bundle for the entire website. It is _recommended_ to use separate files if the data gets large.
* `title` The title of the section
* `subtitle` Section's subtitle
* `image` Top level image for the section:
* `href` relative location fo the image inside assets folder.
* `alt` Alt text to the image
* `width` Desired width
* `height` Desired height
* `content` Markdown content
* `icon` Section icon (Can be a file relative to assets or a fontawesome name eg link for `fa-link`)
* `items` List of items to display in the section. Each item contains the following:
* `title` Item's title
* `content` Markdown content of the item
* `image` Image for the item. Contains the following:
* `href` relative location
* `width` desired width
* `height` desired height
* `alt` Alt text to the image
* `anchor` Anchor location for resizing the image
* `attribution` Markdown content for image attribution.
* `icon` Contains the item's icon. Consists of:
* `href` relative location
* `alt` Alt text
* `width` Element width
* `height` Element height
* `type` Section type. Can be one fo the following:
* Unspecified content grouped into columns as described in column arrangement.
* `left-image` Full sized image floated to the left.
* `item-icon-left` Icon is shown to the left of the item in the grid
* `full-width` Each item takes full width instead of being placed in the grid.
* `max-2` Alternate grid with maximum items specified each row to be 2.
* `filter` Provides a filter list. The top level has additional parameter called `filter` for the default filter. Each item has a a space separated list of filters in a field called `filter` applicable to the item.
* `blog` to show recent blog entries. Has additional parameters `count` which is the number of blog items and `section` which is the name of the section to get recent posts from.
* `carousel` Provides support for running a carousel of content.
* `centered` Provides content centered on the page behind the background image supplied as `background`
* `content` Renders the content of the page's markdown content outside of the params. If not provided, page's markdown is rendered at the bottom and honors the page's title and subtitle properties.
NOTE: Almost all the properties are optional. The theme is usable without providing any of the config properties.
## Credits
`Ecelectic` is a collection of some of the best work in Hugo. It incorporates many of great components that the Hugo community provides. Here are some of them:
* Hugo debug bar: https://github.com/JugglerX/hugo-debug-bar
* Hugo tag cloud: https://www.sidorenko.io/post/2017/07/nice-tagcloud-with-hugo/
* Series in Hugo: https://discourse.gohugo.io/t/previous-in-series-and-next-in-series-links/2654/6

View File

@@ -0,0 +1,6 @@
---
date: {{ .Date }}
title: "{{ replace .Name "-" " " | title }}"
description: "Placeholder"
draft: true
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -0,0 +1,13 @@
---
date: {{ .Date }}
type: post
title: "{{ replace .Name "-" " " | title }}"
description: "Placeholder"
draft: true
tags:
sidebar:
- title: attribution
content: "Image by author from [Website](Link)"
categories:
- general
---

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,51 @@
/* CSS for Pretty Print for Debug (debugprint.html) */
/* https://github.com/kaushalmodi/hugo-debugprint/blob/master/layouts/partials/debugprint.html */
/* https://github.com/kaushalmodi/hugo-debugprint/blob/master/layouts/partials/debugprint.css */
.debugprint_wrap {
padding: 20px;
display: inline-block;
margin: 10px auto;
border-radius: 5px;
border: 2px solid #ddd;
}
.debugprint td, .debugprint th {
padding-left: 4px;
padding-right: 4px;
}
.debugprint th {
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 10px;
}
.debugprint tr {
padding: 5px 10px;
}
.debugprint .key {
font-weight: bold;
}
.debugprint .type {
/* Hide Type columns in debugprint */
/* display: none; */
font-size: 0.9em;
font-family: monospace;
font-style: italic;
}
.debugprint .value {
font-family: monospace;
}
.debugprint .true {
color: green;
}
.debugprint .false {
color: red;
}
/* Don't touch the table headers */
.debugprint th.key,
.debugprint th.type,
.debugprint th.value {
font-family: helvetica, arial, san-serif;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 1em;
font-style: normal;
}

View File

@@ -0,0 +1,59 @@
/* Background */ .chroma { color: #f8f8f2; background-color: #272822 }
/* Error */ .chroma .err { color: #960050; background-color: #1e0010 }
/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; overflow: auto; display: block; }
/* LineHighlight */ .chroma .hl { display: block; width: 100%;background-color: #ffffcc }
/* LineNumbersTable */ .chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em; }
/* LineNumbers */ .chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em; }
/* Keyword */ .chroma .k { color: #66d9ef }
/* KeywordConstant */ .chroma .kc { color: #66d9ef }
/* KeywordDeclaration */ .chroma .kd { color: #66d9ef }
/* KeywordNamespace */ .chroma .kn { color: #f92672 }
/* KeywordPseudo */ .chroma .kp { color: #66d9ef }
/* KeywordReserved */ .chroma .kr { color: #66d9ef }
/* KeywordType */ .chroma .kt { color: #66d9ef }
/* NameAttribute */ .chroma .na { color: #a6e22e }
/* NameClass */ .chroma .nc { color: #a6e22e }
/* NameConstant */ .chroma .no { color: #66d9ef }
/* NameDecorator */ .chroma .nd { color: #a6e22e }
/* NameException */ .chroma .ne { color: #a6e22e }
/* NameFunction */ .chroma .nf { color: #a6e22e }
/* NameOther */ .chroma .nx { color: #a6e22e }
/* NameTag */ .chroma .nt { color: #f92672 }
/* Literal */ .chroma .l { color: #ae81ff }
/* LiteralDate */ .chroma .ld { color: #e6db74 }
/* LiteralString */ .chroma .s { color: #e6db74 }
/* LiteralStringAffix */ .chroma .sa { color: #e6db74 }
/* LiteralStringBacktick */ .chroma .sb { color: #e6db74 }
/* LiteralStringChar */ .chroma .sc { color: #e6db74 }
/* LiteralStringDelimiter */ .chroma .dl { color: #e6db74 }
/* LiteralStringDoc */ .chroma .sd { color: #e6db74 }
/* LiteralStringDouble */ .chroma .s2 { color: #e6db74 }
/* LiteralStringEscape */ .chroma .se { color: #ae81ff }
/* LiteralStringHeredoc */ .chroma .sh { color: #e6db74 }
/* LiteralStringInterpol */ .chroma .si { color: #e6db74 }
/* LiteralStringOther */ .chroma .sx { color: #e6db74 }
/* LiteralStringRegex */ .chroma .sr { color: #e6db74 }
/* LiteralStringSingle */ .chroma .s1 { color: #e6db74 }
/* LiteralStringSymbol */ .chroma .ss { color: #e6db74 }
/* LiteralNumber */ .chroma .m { color: #ae81ff }
/* LiteralNumberBin */ .chroma .mb { color: #ae81ff }
/* LiteralNumberFloat */ .chroma .mf { color: #ae81ff }
/* LiteralNumberHex */ .chroma .mh { color: #ae81ff }
/* LiteralNumberInteger */ .chroma .mi { color: #ae81ff }
/* LiteralNumberIntegerLong */ .chroma .il { color: #ae81ff }
/* LiteralNumberOct */ .chroma .mo { color: #ae81ff }
/* Operator */ .chroma .o { color: #f92672 }
/* OperatorWord */ .chroma .ow { color: #f92672 }
/* Comment */ .chroma .c { color: #75715e }
/* CommentHashbang */ .chroma .ch { color: #75715e }
/* CommentMultiline */ .chroma .cm { color: #75715e }
/* CommentSingle */ .chroma .c1 { color: #75715e }
/* CommentSpecial */ .chroma .cs { color: #75715e }
/* CommentPreproc */ .chroma .cp { color: #75715e }
/* CommentPreprocFile */ .chroma .cpf { color: #75715e }
/* GenericDeleted */ .chroma .gd { color: #f92672 }
/* GenericEmph */ .chroma .ge { font-style: italic }
/* GenericInserted */ .chroma .gi { color: #a6e22e }
/* GenericStrong */ .chroma .gs { font-weight: bold }
/* GenericSubheading */ .chroma .gu { color: #75715e }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

View File

@@ -0,0 +1,16 @@
<svg version="1.1"
xmlns="http://www.w3.org/2000/svg" width="30px" height="30px"
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 25 28" xml:space="preserve">
<g class="svg-menu-toggle">
<path class="bar" d="M20.945,8.75c0,0.69-0.5,1.25-1.117,1.25H3.141c-0.617,0-1.118-0.56-1.118-1.25l0,0
c0-0.69,0.5-1.25,1.118-1.25h16.688C20.445,7.5,20.945,8.06,20.945,8.75L20.945,8.75z">
</path>
<path class="bar" d="M20.923,15c0,0.689-0.501,1.25-1.118,1.25H3.118C2.5,16.25,2,15.689,2,15l0,0c0-0.689,0.5-1.25,1.118-1.25 h16.687C20.422,13.75,20.923,14.311,20.923,15L20.923,15z">
</path>
<path class="bar" d="M20.969,21.25c0,0.689-0.5,1.25-1.117,1.25H3.164c-0.617,0-1.118-0.561-1.118-1.25l0,0
c0-0.689,0.5-1.25,1.118-1.25h16.688C20.469,20,20.969,20.561,20.969,21.25L20.969,21.25z">
</path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 871 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M26.201,12.831c-3.325,0-5.29,3.153-5.416,3.153c-0.126,0-2.078-3.153-5.428-3.153c-3.35,0-4.307,3.153-4.408,3.153 c-0.101,0-0.869-2.587-3.766-2.587c-2.342,0-2.67,1.08-2.871,1.08c0,0,0.176-1.155,0.529-3.215h5.781V9H2.801l-1.322,7.574H4.01 c0,0,0.579-1.068,2.116-1.068c1.536,0,2.468,1.181,2.468,2.512c0,1.331-1.033,2.788-2.468,2.788c-1.436,0-2.267-1.231-2.267-2.085 c-1.184,0-2.821,0-2.821,0C1.038,19.475,1.643,23,6.126,23c3.652,0,4.824-2.721,4.824-3.048c0,0.276,1.411,3.048,4.408,3.048 c3.476,0,5.226-3.048,5.428-3.048c0.202,0,2.267,3.048,5.416,3.048c3.149,0,4.761-2.772,4.761-5.108 C30.962,15.556,29.526,12.831,26.201,12.831z M19.104,17.939h-0.001c-0.022,0.027-1.946,2.363-3.73,2.363 c-1.793,0-2.125-1.787-2.125-2.363h0v-0.001v-0.001h0c0-0.576,0.332-2.363,2.125-2.363c1.784,0,3.708,2.336,3.73,2.363h0.001 V17.939L19.104,17.939z M28.349,17.939L28.349,17.939c0,0.576-0.332,2.364-2.125,2.364c-1.784,0-3.708-2.336-3.73-2.363h-0.001 l0.001-0.001l-0.001-0.001h0.001c0.022-0.027,1.946-2.363,3.73-2.363C28.017,15.575,28.348,17.362,28.349,17.939L28.349,17.939z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4 C 9.3844277 4 4 9.3844277 4 16 C 4 22.615572 9.3844277 28 16 28 C 22.615572 28 28 22.615572 28 16 C 28 9.3844277 22.615572 4 16 4 z M 16 6 L 16 26 C 10.465308 26 6 21.534692 6 16 C 6 10.465308 10.465308 6 16 6 z"/></svg>

After

Width:  |  Height:  |  Size: 296 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4 C 9.3844277 4 4 9.3844277 4 16 C 4 22.615572 9.3844277 28 16 28 C 22.615572 28 28 22.615572 28 16 C 28 9.3844277 22.615572 4 16 4 z M 16 6 C 21.534692 6 26 10.465308 26 16 C 26 21.534692 21.534692 26 16 26 C 10.465308 26 6 21.534692 6 16 C 6 10.465308 10.465308 6 16 6 z M 16 9.9375 L 9.40625 19.84375 L 11 19.84375 L 12.53125 17.53125 L 19.46875 17.53125 L 21.03125 19.84375 L 22.625 19.84375 L 16 9.9375 z M 16 12.34375 L 18.84375 16.59375 L 13.15625 16.59375 L 16 12.34375 z"/></svg>

After

Width:  |  Height:  |  Size: 562 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 7 L 3 9 L 29 9 L 29 7 L 3 7 z M 7 11 L 7 13 L 25 13 L 25 11 L 7 11 z M 3 15 L 3 17 L 29 17 L 29 15 L 3 15 z M 7 19 L 7 21 L 25 21 L 25 19 L 7 19 z M 3 23 L 3 25 L 29 25 L 29 23 L 3 23 z"/></svg>

After

Width:  |  Height:  |  Size: 267 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 7 L 3 9 L 29 9 L 29 7 L 3 7 z M 3 11 L 3 13 L 29 13 L 29 11 L 3 11 z M 3 15 L 3 17 L 29 17 L 29 15 L 3 15 z M 3 19 L 3 21 L 29 21 L 29 19 L 3 19 z M 3 23 L 3 25 L 29 25 L 29 23 L 3 23 z"/></svg>

After

Width:  |  Height:  |  Size: 267 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 7 L 3 9 L 29 9 L 29 7 L 3 7 z M 3 11 L 3 13 L 21 13 L 21 11 L 3 11 z M 3 15 L 3 17 L 29 17 L 29 15 L 3 15 z M 3 19 L 3 21 L 21 21 L 21 19 L 3 19 z M 3 23 L 3 25 L 29 25 L 29 23 L 3 23 z"/></svg>

After

Width:  |  Height:  |  Size: 267 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 7 L 3 9 L 29 9 L 29 7 L 3 7 z M 11 11 L 11 13 L 29 13 L 29 11 L 11 11 z M 3 15 L 3 17 L 29 17 L 29 15 L 3 15 z M 11 19 L 11 21 L 29 21 L 29 19 L 11 19 z M 3 23 L 3 25 L 29 25 L 29 23 L 3 23 z"/></svg>

After

Width:  |  Height:  |  Size: 273 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="4 -4 32 32"><path d="M 16.1875 4 C 12.8955 4 9.23875 5.2445 8.46875 9.3125 C 8.38675 9.7445 8.68575 9.96725 8.96875 10.03125 L 12.3125 10.375 C 12.6265 10.359 12.8775 10.062 12.9375 9.75 C 13.2255 8.348 14.39975 7.65625 15.71875 7.65625 C 16.43075 7.65625 17.23525 7.9255 17.65625 8.5625 C 18.14225 9.2735 18.0625 10.2385 18.0625 11.0625 L 18.0625 11.53125 C 16.0565 11.75625 13.4395 11.89475 11.5625 12.71875 C 9.3945 13.65575 7.875 15.566 7.875 18.375 C 7.875 21.969 10.1495 23.78125 13.0625 23.78125 C 15.5225 23.78125 16.851 23.185 18.75 21.25 C 19.378 22.159 19.601 22.6065 20.75 23.5625 C 21.008 23.7005 21.3335 23.67375 21.5625 23.46875 L 21.5625 23.5 C 22.2535 22.885 23.51275 21.7805 24.21875 21.1875 C 24.49975 20.9575 24.43975 20.59625 24.21875 20.28125 C 23.58575 19.40725 22.9375 18.6835 22.9375 17.0625 L 22.9375 11.6875 C 22.9375 9.4035 23.08925 7.29075 21.40625 5.71875 C 20.07825 4.44475 17.8705 4 16.1875 4 z M 17.125 14.3125 C 17.436814 14.292063 17.749625 14.3125 18.0625 14.3125 L 18.0625 15.0625 C 18.0625 16.4105 18.1165 17.51975 17.4375 18.71875 C 16.8875 19.69275 16.00225 20.28125 15.03125 20.28125 C 13.70425 20.28125 12.9375 19.27825 12.9375 17.78125 C 12.9375 15.2035 14.942299 14.455562 17.125 14.3125 z M 26.6875 22.375 C 25.81125 22.387125 24.7845 22.574 24 23.125 C 23.759 23.295 23.7945 23.532 24.0625 23.5 C 24.9455 23.394 26.899 23.14475 27.25 23.59375 C 27.601 24.04275 26.86125 25.89175 26.53125 26.71875 C 26.43125 26.96775 26.649 27.064 26.875 26.875 C 28.345 25.645 28.7385 23.09175 28.4375 22.71875 C 28.288 22.53425 27.56375 22.362875 26.6875 22.375 z M 3.65625 22.84375 C 3.4735312 22.867844 3.401 23.10725 3.59375 23.28125 C 6.86275 26.23225 11.17275 28 15.96875 28 C 19.39075 28 23.384 26.92925 26.125 24.90625 C 26.578 24.57125 26.18275 24.053 25.71875 24.25 C 22.64575 25.554 19.288 26.1875 16.25 26.1875 C 11.746 26.1875 7.401 24.95825 3.875 22.90625 C 3.79775 22.86125 3.7171562 22.835719 3.65625 22.84375 z" transform="translate(4 -4)"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 18 3 C 16.895 3 16 3.895 16 5 L 16 6 L 2 6 L 1 6 L 1 7 L 1 24 L 1 25 L 2 25 L 4.15625 25 C 4.6033156 26.719842 6.1468019 28 8 28 C 9.8531978 28 11.396684 26.719842 11.84375 25 L 20.15625 25 C 20.603316 26.719842 22.146802 28 24 28 C 25.853198 28 27.396684 26.719842 27.84375 25 L 30 25 L 31 25 L 31 24 L 31 14 L 31 13.625 L 30.75 13.34375 L 24.75 6.34375 L 24.46875 6 L 24 6 L 20 6 L 20 5 C 20 3.895 19.105 3 18 3 z M 3 8 L 23.53125 8 L 29 14.375 L 29 23 L 27.84375 23 C 27.396684 21.280158 25.853198 20 24 20 C 22.146802 20 20.603316 21.280158 20.15625 23 L 11.84375 23 C 11.396684 21.280158 9.8531978 20 8 20 C 6.1468019 20 4.6033156 21.280158 4.15625 23 L 3 23 L 3 8 z M 14 11 L 14 14 L 11 14 L 11 16 L 14 16 L 14 19 L 16 19 L 16 16 L 19 16 L 19 14 L 16 14 L 16 11 L 14 11 z M 8 22 C 9.116414 22 10 22.883586 10 24 C 10 25.116414 9.116414 26 8 26 C 6.883586 26 6 25.116414 6 24 C 6 22.883586 6.883586 22 8 22 z M 24 22 C 25.116414 22 26 22.883586 26 24 C 26 25.116414 25.116414 26 24 26 C 22.883586 26 22 25.116414 22 24 C 22 22.883586 22.883586 22 24 22 z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4 C 13.802706 4 12 5.8027056 12 8 C 12 9.8531978 13.280158 11.396684 15 11.84375 L 15 14 L 12 14 L 12 16 L 15 16 L 15 23.96875 C 12.573856 23.776099 10.959278 22.889748 9.8125 21.875 C 8.9381373 21.101304 8.3529411 20.251933 7.9375 19.53125 L 9.53125 18.75 L 5.53125 16.9375 L 4.46875 21.25 L 6.125 20.4375 C 6.5978015 21.286157 7.3335925 22.370534 8.46875 23.375 C 9.9235523 24.66231 12.067003 25.730999 15 25.9375 L 15 26 L 16 27 L 17 26 L 17 25.9375 C 19.932997 25.730999 22.076448 24.66231 23.53125 23.375 C 24.666407 22.370534 25.402198 21.286157 25.875 20.4375 L 27.53125 21.25 L 26.46875 16.9375 L 22.46875 18.75 L 24.0625 19.53125 C 23.647059 20.251933 23.061863 21.101304 22.1875 21.875 C 21.040722 22.889748 19.426144 23.776099 17 23.96875 L 17 16 L 20 16 L 20 14 L 17 14 L 17 11.84375 C 18.719842 11.396684 20 9.8531978 20 8 C 20 5.8027056 18.197294 4 16 4 z M 16 6 C 17.116414 6 18 6.883586 18 8 C 18 9.116414 17.116414 10 16 10 C 14.883586 10 14 9.116414 14 8 C 14 6.883586 14.883586 6 16 6 z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 10.53125 3.5 A 0.50005 0.50005 0 0 0 10.28125 4.3125 L 11.75 6.4375 C 10.083434 7.7192576 9 9.7440996 9 12 L 9 22 C 9 22.702291 9.4424038 23.205054 10 23.5625 L 10 26.5 C 10 27.869063 11.130937 29 12.5 29 C 13.869063 29 15 27.869063 15 26.5 L 15 24 L 17 24 L 17 26.5 C 17 27.869063 18.130937 29 19.5 29 C 20.869063 29 22 27.869063 22 26.5 L 22 23.5625 C 22.557596 23.205054 23 22.702291 23 22 L 23 12 C 23 9.7440996 21.916566 7.7192576 20.25 6.4375 L 21.71875 4.3125 A 0.50005 0.50005 0 0 0 21.3125 3.5 A 0.50005 0.50005 0 0 0 21.21875 3.5 A 0.50005 0.50005 0 0 0 20.90625 3.75 L 19.40625 5.875 C 18.399833 5.3135663 17.229922 5 16 5 C 14.770078 5 13.600167 5.3135663 12.59375 5.875 L 11.09375 3.75 A 0.50005 0.50005 0 0 0 10.6875 3.5 A 0.50005 0.50005 0 0 0 10.59375 3.5 A 0.50005 0.50005 0 0 0 10.53125 3.5 z M 16 7 C 18.426958 7 20.442195 8.7157262 20.90625 11 L 11.09375 11 C 11.557805 8.7157262 13.573042 7 16 7 z M 14 8 C 13.447715 8 13 8.4477153 13 9 C 13 9.5522847 13.447715 10 14 10 C 14.552285 10 15 9.5522847 15 9 C 15 8.4477153 14.552285 8 14 8 z M 18 8 C 17.447715 8 17 8.4477153 17 9 C 17 9.5522847 17.447715 10 18 10 C 18.552285 10 19 9.5522847 19 9 C 19 8.4477153 18.552285 8 18 8 z M 6 11 L 6 21 L 8 21 L 8 11 L 6 11 z M 24 11 L 24 21 L 26 21 L 26 11 L 24 11 z M 11 13 L 21 13 L 21 22 L 20 22 L 20 23 L 20 26.5 C 20 26.786937 19.786937 27 19.5 27 C 19.213063 27 19 26.786937 19 26.5 L 19 23 L 19 22 L 18 22 L 14 22 L 13 22 L 13 23 L 13 26.5 C 13 26.786937 12.786937 27 12.5 27 C 12.213063 27 12 26.786937 12 26.5 L 12 23 L 12 22 L 11 22 L 11 13 z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 5.21875 6.6875 L 3.78125 8.09375 L 15.28125 19.59375 L 16 20.3125 L 16.71875 19.59375 L 28.21875 8.09375 L 26.78125 6.6875 L 16 17.46875 L 5.21875 6.6875 z M 5.21875 13.6875 L 3.78125 15.09375 L 15.28125 26.59375 L 16 27.3125 L 16.71875 26.59375 L 28.21875 15.09375 L 26.78125 13.6875 L 16 24.46875 L 5.21875 13.6875 z"/></svg>

After

Width:  |  Height:  |  Size: 398 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 15.90625 4.78125 L 5.40625 15.28125 L 4.6875 16 L 5.40625 16.71875 L 15.90625 27.21875 L 17.3125 25.78125 L 7.53125 16 L 17.3125 6.21875 L 15.90625 4.78125 z M 22.90625 4.78125 L 12.40625 15.28125 L 11.6875 16 L 12.40625 16.71875 L 22.90625 27.21875 L 24.3125 25.78125 L 14.53125 16 L 24.3125 6.21875 L 22.90625 4.78125 z"/></svg>

After

Width:  |  Height:  |  Size: 401 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 9.09375 4.78125 L 7.6875 6.21875 L 17.46875 16 L 7.6875 25.78125 L 9.09375 27.21875 L 19.59375 16.71875 L 20.3125 16 L 19.59375 15.28125 L 9.09375 4.78125 z M 16.09375 4.78125 L 14.6875 6.21875 L 24.46875 16 L 14.6875 25.78125 L 16.09375 27.21875 L 26.59375 16.71875 L 27.3125 16 L 26.59375 15.28125 L 16.09375 4.78125 z"/></svg>

After

Width:  |  Height:  |  Size: 400 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4.6875 L 15.28125 5.40625 L 3.78125 16.90625 L 5.21875 18.3125 L 16 7.53125 L 26.78125 18.3125 L 28.21875 16.90625 L 16.71875 5.40625 L 16 4.6875 z M 16 11.6875 L 15.28125 12.40625 L 3.78125 23.90625 L 5.21875 25.3125 L 16 14.53125 L 26.78125 25.3125 L 28.21875 23.90625 L 16.71875 12.40625 L 16 11.6875 z"/></svg>

After

Width:  |  Height:  |  Size: 388 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4.21875 10.78125 L 2.78125 12.21875 L 15.28125 24.71875 L 16 25.40625 L 16.71875 24.71875 L 29.21875 12.21875 L 27.78125 10.78125 L 16 22.5625 L 4.21875 10.78125 z"/></svg>

After

Width:  |  Height:  |  Size: 243 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 19.03125 4.28125 L 8.03125 15.28125 L 7.34375 16 L 8.03125 16.71875 L 19.03125 27.71875 L 20.46875 26.28125 L 10.1875 16 L 20.46875 5.71875 L 19.03125 4.28125 z"/></svg>

After

Width:  |  Height:  |  Size: 240 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 12.96875 4.28125 L 11.53125 5.71875 L 21.8125 16 L 11.53125 26.28125 L 12.96875 27.71875 L 23.96875 16.71875 L 24.65625 16 L 23.96875 15.28125 L 12.96875 4.28125 z"/></svg>

After

Width:  |  Height:  |  Size: 243 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 6.59375 L 15.28125 7.28125 L 2.78125 19.78125 L 4.21875 21.21875 L 16 9.4375 L 27.78125 21.21875 L 29.21875 19.78125 L 16.71875 7.28125 L 16 6.59375 z"/></svg>

After

Width:  |  Height:  |  Size: 233 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 20.84375 2 C 19.201974 2 17.547858 2.8511558 16.4375 4.15625 L 16.4375 4.1875 C 15.649668 5.1662554 14.79492 6.7157178 15.0625 8.5 C 14.932754 8.4507048 14.925 8.4644739 14.78125 8.40625 C 14.091115 8.1267215 13.233334 7.8125 12.21875 7.8125 C 8.2365773 7.8125 5.21875 11.41611 5.21875 16.15625 C 5.21875 19.222434 6.249998 22.09652 7.625 24.25 C 8.312501 25.32674 9.0930688 26.213926 9.90625 26.875 C 10.719431 27.536074 11.57039 28 12.53125 28 C 13.492047 28 14.210218 27.673857 14.75 27.4375 C 15.289782 27.201143 15.705121 27 16.5 27 C 17.215788 27 17.578079 27.196571 18.125 27.4375 C 18.671921 27.678429 19.416874 28 20.40625 28 C 21.475665 28 22.385296 27.478157 23.125 26.8125 C 23.864704 26.146843 24.482954 25.293469 25 24.46875 C 25.517046 23.644031 25.922297 22.835148 26.21875 22.1875 C 26.366976 21.863676 26.47587 21.593214 26.5625 21.375 C 26.64913 21.156786 26.691696 21.094192 26.75 20.84375 L 26.9375 20.03125 L 26.1875 19.6875 C 26.010615 19.60818 25.310855 19.262271 24.6875 18.625 C 24.064145 17.987729 23.53125 17.11639 23.53125 15.78125 C 23.53125 14.488243 24.027487 13.620026 24.5625 13 C 24.830007 12.689987 25.10455 12.4377 25.3125 12.28125 C 25.416475 12.20303 25.50051 12.164758 25.5625 12.125 C 25.62449 12.08524 25.61226 12.09856 25.71875 12.03125 L 26.5625 11.5 L 26 10.65625 C 24.367358 8.1447654 21.755134 7.8137382 20.71875 7.8125 C 20.23671 7.8125 19.899235 7.9788442 19.46875 8.0625 C 19.710692 7.8371109 20.02176 7.6950755 20.21875 7.4375 C 20.22285 7.43215 20.21465 7.41161 20.21875 7.40625 C 20.22855 7.395538 20.24031 7.385779 20.25 7.375 L 20.28125 7.375 C 21.346925 6.1824159 21.937915 4.5830302 21.84375 2.9375 L 21.78125 2 L 20.84375 2 z M 19.65625 4.3125 C 19.484287 4.9713788 19.201256 5.6031689 18.75 6.09375 L 18.71875 6.125 L 18.6875 6.15625 C 18.303929 6.6737582 17.715543 7.0555744 17.125 7.28125 C 17.288029 6.6275457 17.57241 5.9689974 17.96875 5.46875 C 17.97795 5.457992 17.99068 5.448179 18 5.4375 C 18.437878 4.9360285 19.042294 4.5629434 19.65625 4.3125 z M 12.21875 9.8125 C 12.776166 9.8125 13.390635 10.021779 14.03125 10.28125 C 14.671865 10.540721 15.270804 10.875 16.125 10.875 C 16.975431 10.875 17.619338 10.539977 18.375 10.28125 C 19.130662 10.022523 19.932187 9.8125 20.71875 9.8125 C 21.242591 9.8131259 22.53364 10.144205 23.625 11.15625 C 23.435087 11.32761 23.264797 11.453059 23.0625 11.6875 C 22.299513 12.571724 21.53125 13.946257 21.53125 15.78125 C 21.53125 17.68911 22.361605 19.123021 23.25 20.03125 C 23.800887 20.594436 24.140838 20.725714 24.5625 20.96875 C 24.50882 21.09458 24.47573 21.191964 24.40625 21.34375 C 24.13814 21.929477 23.767204 22.680969 23.3125 23.40625 C 22.857796 24.131531 22.307108 24.839282 21.78125 25.3125 C 21.255392 25.785718 20.782835 26 20.40625 26 C 19.838626 26 19.508579 25.845321 18.9375 25.59375 C 18.366421 25.342179 17.581212 25 16.5 25 C 15.364879 25 14.522468 25.337607 13.9375 25.59375 C 13.352532 25.849893 13.047453 26 12.53125 26 C 12.28511 26 11.754944 25.799207 11.15625 25.3125 C 10.557556 24.825793 9.903999 24.082635 9.3125 23.15625 C 8.129502 21.30348 7.21875 18.763066 7.21875 16.15625 C 7.21875 12.21439 9.4189227 9.8125 12.21875 9.8125 z"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4 5 L 4 6 L 4 10 L 4 11 L 5 11 L 5 26 L 5 27 L 6 27 L 26 27 L 27 27 L 27 26 L 27 11 L 28 11 L 28 10 L 28 6 L 28 5 L 27 5 L 5 5 L 4 5 z M 6 7 L 26 7 L 26 9 L 6 9 L 6 7 z M 7 11 L 25 11 L 25 25 L 7 25 L 7 11 z M 12.8125 13 A 1.001098 1.001098 0 0 0 13 15 L 19 15 A 1.0001 1.0001 0 1 0 19 13 L 13 13 A 1.0001 1.0001 0 0 0 12.90625 13 A 1.001098 1.001098 0 0 0 12.8125 13 z"/></svg>

After

Width:  |  Height:  |  Size: 449 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 28 4.0625 L 26.375 5.3125 L 21.75 8.9375 L 16.15625 8 L 15.78125 7.9375 L 15.4375 8.15625 L 9.75 11.9375 L 5.1875 11.03125 L 4 10.78125 L 4 12 L 4 16.53125 L 4 18 L 4 20 L 4 27 L 4 28 L 5 28 L 27 28 L 28 28 L 28 27 L 28 16 L 28 14 L 28 11.90625 L 28 6.09375 L 28 4.0625 z M 26 8.15625 L 26 13.53125 L 21.78125 16.875 L 16.3125 15.0625 L 15.84375 14.90625 L 15.4375 15.15625 L 9.875 18.875 L 6 17.3125 L 6 13.21875 L 9.8125 13.96875 L 10.21875 14.0625 L 10.5625 13.84375 L 16.21875 10.0625 L 21.84375 11 L 22.28125 11.0625 L 22.625 10.78125 L 26 8.15625 z M 26 16.09375 L 26 26 L 6 26 L 6 20 L 6 19.5 L 9.625 20.9375 L 10.125 21.125 L 10.5625 20.84375 L 16.1875 17.09375 L 21.6875 18.9375 L 22.1875 19.125 L 22.625 18.78125 L 26 16.09375 z"/></svg>

After

Width:  |  Height:  |  Size: 818 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.8321429 3 3 8.8321429 3 16 C 3 23.167857 8.8321429 29 16 29 C 23.167857 29 29 23.167857 29 16 C 29 8.8321429 23.167857 3 16 3 z M 16 5 C 22.086977 5 27 9.9130231 27 16 C 27 22.086977 22.086977 27 16 27 C 9.9130231 27 5 22.086977 5 16 C 5 9.9130231 9.9130231 5 16 5 z M 15 9 L 15 19.28125 L 11 15.28125 L 9.59375 16.71875 L 15.28125 22.40625 L 16 23.125 L 16.71875 22.40625 L 22.40625 16.71875 L 21 15.28125 L 17 19.28125 L 17 9 L 15 9 z"/></svg>

After

Width:  |  Height:  |  Size: 525 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.8321429 3 3 8.8321429 3 16 C 3 23.167857 8.8321429 29 16 29 C 23.167857 29 29 23.167857 29 16 C 29 8.8321429 23.167857 3 16 3 z M 16 5 C 22.086977 5 27 9.9130231 27 16 C 27 22.086977 22.086977 27 16 27 C 9.9130231 27 5 22.086977 5 16 C 5 9.9130231 9.9130231 5 16 5 z M 15.28125 9.59375 L 9.59375 15.28125 L 8.875 16 L 9.59375 16.71875 L 15.28125 22.40625 L 16.71875 21 L 12.71875 17 L 23 17 L 23 15 L 12.71875 15 L 16.71875 11 L 15.28125 9.59375 z"/></svg>

After

Width:  |  Height:  |  Size: 536 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.8321429 3 3 8.8321429 3 16 C 3 23.167857 8.8321429 29 16 29 C 23.167857 29 29 23.167857 29 16 C 29 8.8321429 23.167857 3 16 3 z M 16 5 C 22.086977 5 27 9.9130231 27 16 C 27 22.086977 22.086977 27 16 27 C 9.9130231 27 5 22.086977 5 16 C 5 9.9130231 9.9130231 5 16 5 z M 15 9 L 15 19.28125 L 11 15.28125 L 9.59375 16.71875 L 15.28125 22.40625 L 16 23.125 L 16.71875 22.40625 L 22.40625 16.71875 L 21 15.28125 L 17 19.28125 L 17 9 L 15 9 z"/></svg>

After

Width:  |  Height:  |  Size: 525 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.8321429 3 3 8.8321429 3 16 C 3 23.167857 8.8321429 29 16 29 C 23.167857 29 29 23.167857 29 16 C 29 8.8321429 23.167857 3 16 3 z M 16 5 C 22.086977 5 27 9.9130231 27 16 C 27 22.086977 22.086977 27 16 27 C 9.9130231 27 5 22.086977 5 16 C 5 9.9130231 9.9130231 5 16 5 z M 15.28125 9.59375 L 9.59375 15.28125 L 8.875 16 L 9.59375 16.71875 L 15.28125 22.40625 L 16.71875 21 L 12.71875 17 L 23 17 L 23 15 L 12.71875 15 L 16.71875 11 L 15.28125 9.59375 z"/></svg>

After

Width:  |  Height:  |  Size: 536 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.8321429 3 3 8.8321429 3 16 C 3 23.167857 8.8321429 29 16 29 C 23.167857 29 29 23.167857 29 16 C 29 8.8321429 23.167857 3 16 3 z M 16 5 C 22.086977 5 27 9.9130231 27 16 C 27 22.086977 22.086977 27 16 27 C 9.9130231 27 5 22.086977 5 16 C 5 9.9130231 9.9130231 5 16 5 z M 16.71875 9.59375 L 15.28125 11 L 19.28125 15 L 9 15 L 9 17 L 19.28125 17 L 15.28125 21 L 16.71875 22.40625 L 22.40625 16.71875 L 23.125 16 L 22.40625 15.28125 L 16.71875 9.59375 z"/></svg>

After

Width:  |  Height:  |  Size: 537 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.8321429 3 3 8.8321429 3 16 C 3 23.167857 8.8321429 29 16 29 C 23.167857 29 29 23.167857 29 16 C 29 8.8321429 23.167857 3 16 3 z M 16 5 C 22.086977 5 27 9.9130231 27 16 C 27 22.086977 22.086977 27 16 27 C 9.9130231 27 5 22.086977 5 16 C 5 9.9130231 9.9130231 5 16 5 z M 16 8.875 L 15.28125 9.59375 L 9.59375 15.28125 L 11 16.71875 L 15 12.71875 L 15 23 L 17 23 L 17 12.71875 L 21 16.71875 L 22.40625 15.28125 L 16.71875 9.59375 L 16 8.875 z"/></svg>

After

Width:  |  Height:  |  Size: 528 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.8321429 3 3 8.8321429 3 16 C 3 23.167857 8.8321429 29 16 29 C 23.167857 29 29 23.167857 29 16 C 29 8.8321429 23.167857 3 16 3 z M 16 5 C 22.086977 5 27 9.9130231 27 16 C 27 22.086977 22.086977 27 16 27 C 9.9130231 27 5 22.086977 5 16 C 5 9.9130231 9.9130231 5 16 5 z M 16.71875 9.59375 L 15.28125 11 L 19.28125 15 L 9 15 L 9 17 L 19.28125 17 L 15.28125 21 L 16.71875 22.40625 L 22.40625 16.71875 L 23.125 16 L 22.40625 15.28125 L 16.71875 9.59375 z"/></svg>

After

Width:  |  Height:  |  Size: 537 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.8321429 3 3 8.8321429 3 16 C 3 23.167857 8.8321429 29 16 29 C 23.167857 29 29 23.167857 29 16 C 29 8.8321429 23.167857 3 16 3 z M 16 5 C 22.086977 5 27 9.9130231 27 16 C 27 22.086977 22.086977 27 16 27 C 9.9130231 27 5 22.086977 5 16 C 5 9.9130231 9.9130231 5 16 5 z M 16 8.875 L 15.28125 9.59375 L 9.59375 15.28125 L 11 16.71875 L 15 12.71875 L 15 23 L 17 23 L 17 12.71875 L 21 16.71875 L 22.40625 15.28125 L 16.71875 9.59375 L 16 8.875 z"/></svg>

After

Width:  |  Height:  |  Size: 528 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 15 4 L 15 24.0625 L 8.21875 17.28125 L 6.78125 18.71875 L 15.28125 27.21875 L 16 27.90625 L 16.71875 27.21875 L 25.21875 18.71875 L 23.78125 17.28125 L 17 24.0625 L 17 4 L 15 4 z"/></svg>

After

Width:  |  Height:  |  Size: 258 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 13.28125 6.78125 L 4.78125 15.28125 L 4.09375 16 L 4.78125 16.71875 L 13.28125 25.21875 L 14.71875 23.78125 L 7.9375 17 L 28 17 L 28 15 L 7.9375 15 L 14.71875 8.21875 L 13.28125 6.78125 z"/></svg>

After

Width:  |  Height:  |  Size: 267 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 18.71875 6.78125 L 17.28125 8.21875 L 24.0625 15 L 4 15 L 4 17 L 24.0625 17 L 17.28125 23.78125 L 18.71875 25.21875 L 27.21875 16.71875 L 27.90625 16 L 27.21875 15.28125 L 18.71875 6.78125 z"/></svg>

After

Width:  |  Height:  |  Size: 270 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4.09375 L 15.28125 4.78125 L 6.78125 13.28125 L 8.21875 14.71875 L 15 7.9375 L 15 28 L 17 28 L 17 7.9375 L 23.78125 14.71875 L 25.21875 13.28125 L 16.71875 4.78125 L 16 4.09375 z"/></svg>

After

Width:  |  Height:  |  Size: 261 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4 4 L 4 5 L 4 13 L 6 13 L 6 7.4375 L 14.5625 16 L 6 24.5625 L 6 19 L 4 19 L 4 27 L 4 28 L 5 28 L 13 28 L 13 26 L 7.4375 26 L 16 17.4375 L 24.5625 26 L 19 26 L 19 28 L 27 28 L 28 28 L 28 27 L 28 19 L 26 19 L 26 24.5625 L 17.4375 16 L 26 7.4375 L 26 13 L 28 13 L 28 5 L 28 4 L 27 4 L 19 4 L 19 6 L 24.5625 6 L 16 14.5625 L 7.4375 6 L 13 6 L 13 4 L 5 4 L 4 4 z"/></svg>

After

Width:  |  Height:  |  Size: 437 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 9.28125 6.78125 L 0.78125 15.28125 L 0.09375 16 L 0.78125 16.71875 L 9.28125 25.21875 L 10.71875 23.78125 L 3.9375 17 L 28.0625 17 L 21.28125 23.78125 L 22.71875 25.21875 L 31.21875 16.71875 L 31.90625 16 L 31.21875 15.28125 L 22.71875 6.78125 L 21.28125 8.21875 L 28.0625 15 L 3.9375 15 L 10.71875 8.21875 L 9.28125 6.78125 z"/></svg>

After

Width:  |  Height:  |  Size: 406 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 2.09375 L 15.28125 2.78125 L 7.28125 10.78125 L 8.71875 12.21875 L 15 5.9375 L 15 26.0625 L 8.71875 19.78125 L 7.28125 21.21875 L 15.28125 29.21875 L 16 29.90625 L 16.71875 29.21875 L 24.71875 21.21875 L 23.28125 19.78125 L 17 26.0625 L 17 5.9375 L 23.28125 12.21875 L 24.71875 10.78125 L 16.71875 2.78125 L 16 2.09375 z"/></svg>

After

Width:  |  Height:  |  Size: 403 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4 4 L 4 5 L 4 13 L 6 13 L 6 7.4375 L 14.5625 16 L 6 24.5625 L 6 19 L 4 19 L 4 27 L 4 28 L 5 28 L 13 28 L 13 26 L 7.4375 26 L 16 17.4375 L 24.5625 26 L 19 26 L 19 28 L 27 28 L 28 28 L 28 27 L 28 19 L 26 19 L 26 24.5625 L 17.4375 16 L 26 7.4375 L 26 13 L 28 13 L 28 5 L 28 4 L 27 4 L 19 4 L 19 6 L 24.5625 6 L 16 14.5625 L 7.4375 6 L 13 6 L 13 4 L 5 4 L 4 4 z"/></svg>

After

Width:  |  Height:  |  Size: 437 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M17.7,17l6.2,8.4L21.5,27l-5.5-8.7L10.5,27l-2.3-1.6l6.2-8.4l-9.3-2.4L6,12l9.1,3.2L14.5,5h3L17,15.2l9-3.2l0.8,2.7 L17.7,17z"/></svg>

After

Width:  |  Height:  |  Size: 199 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16.1875 4 C 8.8227525 3.8922232 2.9146119 10.485994 4.15625 18.03125 C 4.9981586 23.151675 9.2050458 27.181379 14.34375 27.875 C 17.808627 28.342845 21.04781 27.343076 23.5 25.375 L 22.25 23.8125 C 20.20419 25.454424 17.512873 26.300405 14.59375 25.90625 C 10.338454 25.331871 6.8523414 21.952325 6.15625 17.71875 C 5.1078881 11.348006 9.9909975 5.9097768 16.15625 6 C 21.411045 6.077063 25.840449 10.43502 26 15.6875 C 26.0035 15.80006 26 15.909499 26 16.03125 C 25.992 18.234184 24.20805 20.000804 22 20 C 20.883008 19.999326 20 19.115742 20 18 L 20 17.5 L 20 14.5 L 20 10 L 18 10 L 18 10.78125 C 17.281448 10.294583 16.427539 10 15.5 10 C 13.026562 10 11 12.026562 11 14.5 L 11 17.5 C 11 19.973438 13.026562 22 15.5 22 C 16.847912 22 18.048165 21.385525 18.875 20.4375 C 19.60945 21.371627 20.728798 21.999233 22 22 C 25.28395 22.0012 27.988022 19.320316 28 16.03125 C 28 15.899001 28.0045 15.76844 28 15.625 C 27.807551 9.2894804 22.524705 4.0929369 16.1875 4 z M 15.5 12 C 16.892562 12 18 13.107438 18 14.5 L 18 17.5 C 18 18.892562 16.892562 20 15.5 20 C 14.107438 20 13 18.892562 13 17.5 L 13 14.5 C 13 13.107438 14.107438 12 15.5 12 z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 9.5 6 C 8.1798539 6 7.0045735 6.8592569 6.625 8.125 L 5.25 12.71875 L 3.3125 12.0625 L 2.6875 13.9375 L 4.65625 14.59375 L 4.03125 16.71875 A 1.0001 1.0001 0 0 0 4 17 L 4 24 A 1.0001 1.0001 0 0 0 4 24.09375 L 4 25 C 4 25.552 4.448 26 5 26 L 8 26 L 8.34375 25 L 23.65625 25 L 24 26 L 27 26 C 27.552 26 28 25.552 28 25 L 28 24.15625 A 1.0001 1.0001 0 0 0 28 24 L 28 17 A 1.0001 1.0001 0 0 0 27.96875 16.71875 L 27.34375 14.59375 L 29.3125 13.9375 L 28.6875 12.0625 L 26.75 12.71875 L 25.375 8.125 C 24.995209 6.8600268 23.820146 6 22.5 6 L 9.5 6 z M 9.5 8 L 22.5 8 C 22.945854 8 23.340541 8.2917232 23.46875 8.71875 L 24.75 13 L 7.25 13 L 8.53125 8.71875 C 8.6596765 8.2904931 9.0541461 8 9.5 8 z M 6.65625 15 L 25.34375 15 L 26 17.1875 L 26 23 L 9 23 L 6 23 L 6 17.1875 L 6.65625 15 z M 8.5 16 C 7.6715729 16 7 16.671573 7 17.5 C 7 18.328427 7.6715729 19 8.5 19 C 9.3284271 19 10 18.328427 10 17.5 C 10 16.671573 9.3284271 16 8.5 16 z M 23.5 16 C 22.671573 16 22 16.671573 22 17.5 C 22 18.328427 22.671573 19 23.5 19 C 24.328427 19 25 18.328427 25 17.5 C 25 16.671573 24.328427 16 23.5 16 z M 12 19 L 10.75 22 L 12.90625 22 L 13.34375 21 L 18.65625 21 L 19.09375 22 L 21.25 22 L 20 19 L 12 19 z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 17 5 L 15.40625 6.1875 L 3.40625 15.1875 L 2.34375 16 L 3.40625 16.8125 L 15.40625 25.8125 L 17 27 L 17 25 L 17 19.625 L 25.40625 25.8125 L 27 26.96875 L 27 25 L 27 7 L 27 5.03125 L 25.40625 6.1875 L 17 12.375 L 17 7 L 17 5 z M 25 8.96875 L 25 23.03125 L 16.59375 16.84375 L 15.46875 16 L 16.59375 15.15625 L 25 8.96875 z M 15 9 L 15 14.375 L 15 15.65625 L 15 16.34375 L 15 17.625 L 15 23 L 5.6875 16 L 15 9 z"/></svg>

After

Width:  |  Height:  |  Size: 489 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 5 C 14.707983 5 13.605718 5.8442551 13.1875 7 L 6 7 L 6 9 L 7.40625 9 L 7.125 9.5 L 3.125 16.5 L 3 16.75 L 3 17 C 3 19.749516 5.2504839 22 8 22 C 10.749516 22 13 19.749516 13 17 L 13 16.75 L 12.875 16.5 L 8.875 9.5 L 8.59375 9 L 13.1875 9 C 13.49281 9.8437236 14.157891 10.508062 15 10.8125 L 15 24 L 11 24 L 11 26 L 21 26 L 21 24 L 17 24 L 17 10.8125 C 17.839984 10.508543 18.508543 9.8399844 18.8125 9 L 23.40625 9 L 23.125 9.5 L 19.125 16.5 L 19 16.75 L 19 17 C 19 19.749516 21.250484 22 24 22 C 26.749516 22 29 19.749516 29 17 L 29 16.75 L 28.875 16.5 L 24.875 9.5 L 24.59375 9 L 26 9 L 26 7 L 18.8125 7 C 18.394282 5.8442551 17.292017 5 16 5 z M 16 7 C 16.564129 7 17 7.4358709 17 8 C 17 8.5641291 16.564129 9 16 9 C 15.435871 9 15 8.5641291 15 8 C 15 7.4358709 15.435871 7 16 7 z M 8 12.03125 L 10.28125 16 L 5.71875 16 L 8 12.03125 z M 24 12.03125 L 26.28125 16 L 21.71875 16 L 24 12.03125 z M 5.25 18 L 10.75 18 C 10.348049 19.161004 9.3060098 20 8 20 C 6.6939902 20 5.6519508 19.161004 5.25 18 z M 21.25 18 L 26.75 18 C 26.348049 19.161004 25.30601 20 24 20 C 22.69399 20 21.651951 19.161004 21.25 18 z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.8321429 3 3 8.8321429 3 16 C 3 23.167857 8.8321429 29 16 29 C 23.167857 29 29 23.167857 29 16 C 29 8.8321429 23.167857 3 16 3 z M 16 5 C 22.086977 5 27 9.9130231 27 16 C 27 18.726349 26.010263 21.205644 24.375 23.125 L 9.03125 7.46875 C 10.926833 5.9178445 13.352785 5 16 5 z M 7.625 8.875 L 22.96875 24.53125 C 21.073167 26.082156 18.647215 27 16 27 C 9.9130231 27 5 22.086977 5 16 C 5 13.273651 5.9897374 10.794356 7.625 8.875 z"/></svg>

After

Width:  |  Height:  |  Size: 519 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3.90625 L 15.625 4.0625 L 3.625 9.0625 L 3 9.34375 L 3 10 L 3 11 L 3 12 L 4 12 L 5 12 L 5 23 L 4 23 L 3 23 L 3 24 L 3 27 L 3 28 L 4 28 L 28 28 L 29 28 L 29 27 L 29 24 L 29 23 L 28 23 L 27 23 L 27 12 L 28 12 L 29 12 L 29 11 L 29 10 L 29 9.34375 L 28.375 9.0625 L 16.375 4.0625 L 16 3.90625 z M 16 6.09375 L 25.375 10 L 6.625 10 L 16 6.09375 z M 7 12 L 9 12 L 9 23 L 7 23 L 7 12 z M 11 12 L 13 12 L 13 23 L 11 23 L 11 12 z M 15 12 L 17 12 L 17 23 L 15 23 L 15 12 z M 19 12 L 21 12 L 21 23 L 19 23 L 19 12 z M 23 12 L 25 12 L 25 23 L 23 23 L 23 12 z M 5 25 L 27 25 L 27 26 L 5 26 L 5 25 z"/></svg>

After

Width:  |  Height:  |  Size: 668 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 21 4 L 21 5 L 21 27 L 21 28 L 22 28 L 28 28 L 29 28 L 29 27 L 29 5 L 29 4 L 28 4 L 22 4 L 21 4 z M 23 6 L 27 6 L 27 26 L 23 26 L 23 6 z M 3 10 L 3 11 L 3 27 L 3 28 L 4 28 L 10 28 L 11 28 L 11 27 L 11 11 L 11 10 L 10 10 L 4 10 L 3 10 z M 5 12 L 9 12 L 9 26 L 5 26 L 5 12 z M 12 16 L 12 17 L 12 27 L 12 28 L 13 28 L 19 28 L 20 28 L 20 27 L 20 17 L 20 16 L 19 16 L 13 16 L 12 16 z M 14 18 L 18 18 L 18 26 L 14 26 L 14 18 z"/></svg>

After

Width:  |  Height:  |  Size: 499 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 21 4 L 21 5 L 21 27 L 21 28 L 22 28 L 28 28 L 29 28 L 29 27 L 29 5 L 29 4 L 28 4 L 22 4 L 21 4 z M 23 6 L 27 6 L 27 26 L 23 26 L 23 6 z M 3 10 L 3 11 L 3 27 L 3 28 L 4 28 L 10 28 L 11 28 L 11 27 L 11 11 L 11 10 L 10 10 L 4 10 L 3 10 z M 5 12 L 9 12 L 9 26 L 5 26 L 5 12 z M 12 16 L 12 17 L 12 27 L 12 28 L 13 28 L 19 28 L 20 28 L 20 27 L 20 17 L 20 16 L 19 16 L 13 16 L 12 16 z M 14 18 L 18 18 L 18 26 L 14 26 L 14 18 z"/></svg>

After

Width:  |  Height:  |  Size: 499 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 2 7 L 2 25 L 4 25 L 4 7 L 2 7 z M 6 7 L 6 25 L 12 25 L 12 7 L 6 7 z M 14 7 L 14 25 L 16 25 L 16 7 L 14 7 z M 18 7 L 18 25 L 22 25 L 22 7 L 18 7 z M 24 7 L 24 25 L 26 25 L 26 7 L 24 7 z M 28 7 L 28 25 L 30 25 L 30 7 L 28 7 z"/></svg>

After

Width:  |  Height:  |  Size: 303 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4 7 L 4 9 L 28 9 L 28 7 L 4 7 z M 4 15 L 4 17 L 28 17 L 28 15 L 4 15 z M 4 23 L 4 25 L 28 25 L 28 23 L 4 23 z"/></svg>

After

Width:  |  Height:  |  Size: 189 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z"/></svg>

After

Width:  |  Height:  |  Size: 240 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z M 7 12 L 7 20 L 11 20 L 11 12 L 7 12 z"/></svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z M 7 12 L 7 20 L 15 20 L 15 12 L 7 12 z"/></svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z M 7 12 L 7 20 L 21 20 L 21 12 L 7 12 z"/></svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z M 7 12 L 7 20 L 23 20 L 23 12 L 7 12 z"/></svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z"/></svg>

After

Width:  |  Height:  |  Size: 240 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z M 7 12 L 7 20 L 23 20 L 23 12 L 7 12 z"/></svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z M 7 12 L 7 20 L 15 20 L 15 12 L 7 12 z"/></svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z M 7 12 L 7 20 L 11 20 L 11 12 L 7 12 z"/></svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 8 L 3 9 L 3 23 L 3 24 L 4 24 L 26 24 L 27 24 L 27 23 L 27 19 L 29 19 L 29 13 L 27 13 L 27 9 L 27 8 L 26 8 L 4 8 L 3 8 z M 5 10 L 25 10 L 25 22 L 5 22 L 5 10 z M 7 12 L 7 20 L 21 20 L 21 12 L 7 12 z"/></svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 6 6 C 4.3545455 6 3 7.3545455 3 9 L 3 15.78125 C 2.3897999 16.33203 2 17.121617 2 18 L 2 26 L 2 27 L 3 27 L 6 27 L 7 27 L 7 26 L 7 25 L 25 25 L 25 26 L 25 27 L 26 27 L 29 27 L 30 27 L 30 26 L 30 18 C 30 17.121617 29.6102 16.33203 29 15.78125 L 29 9 C 29 7.3545455 27.645455 6 26 6 L 6 6 z M 6 8 L 26 8 C 26.554545 8 27 8.4454545 27 9 L 27 15 L 25 15 L 25 14 C 25 12.354545 23.645455 11 22 11 L 18 11 C 17.232928 11 16.532874 11.300266 16 11.78125 C 15.467126 11.300266 14.767072 11 14 11 L 10 11 C 8.3545455 11 7 12.354545 7 14 L 7 15 L 5 15 L 5 9 C 5 8.4454545 5.4454545 8 6 8 z M 10 13 L 14 13 C 14.554545 13 15 13.445455 15 14 L 15 15 L 9 15 L 9 14 C 9 13.445455 9.4454545 13 10 13 z M 18 13 L 22 13 C 22.554545 13 23 13.445455 23 14 L 23 15 L 17 15 L 17 14 C 17 13.445455 17.445455 13 18 13 z M 5 17 L 27 17 C 27.554545 17 28 17.445455 28 18 L 28 25 L 27 25 L 27 24 L 27 23 L 26 23 L 6 23 L 5 23 L 5 24 L 5 25 L 4 25 L 4 18 C 4 17.445455 4.4454545 17 5 17 z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 13.5 4 C 12.253894 4 11.189641 4.583156 10.375 5.40625 C 9.9285152 5.2327875 9.5068235 5 9 5 C 6.8026661 5 5 6.8026661 5 9 C 5 10.027886 5.4176901 10.945219 6.0625 11.65625 A 1.0001 1.0001 0 0 0 6 12 L 6 25 C 6 26.64497 7.3550302 28 9 28 L 21 28 C 22.64497 28 24 26.64497 24 25 L 24 23 L 25 23 C 26.64497 23 28 21.64497 28 20 L 28 16 C 28 14.35503 26.64497 13 25 13 L 24 13 L 24 11.8125 A 1.0001 1.0001 0 0 0 24 11.59375 C 24.610415 10.890852 25 9.9967242 25 9 C 25 6.8026661 23.197334 5 21 5 C 20.252221 5 19.594604 5.267348 19 5.625 C 18.405396 5.267348 17.747779 5 17 5 C 16.743509 5 16.539554 5.0790237 16.3125 5.125 C 15.536196 4.4738021 14.59568 4 13.5 4 z M 13.5 6 C 14.234874 6 14.879991 6.3321664 15.34375 6.84375 L 15.78125 7.3125 L 16.40625 7.125 C 16.630376 7.0526018 16.810505 7 17 7 C 17.512933 7 17.97976 7.2035217 18.34375 7.53125 L 19 8.125 L 19.65625 7.53125 C 20.02024 7.2035217 20.487067 7 21 7 C 22.116666 7 23 7.8833339 23 9 C 23 10.116666 22.116666 11 21 11 C 19.892184 11 18.28125 10.53125 18.28125 10.53125 L 17 10.15625 L 17 11.5 C 17 12.90213 17.300315 13.974508 17.5625 14.78125 C 17.824685 15.587992 18 16.103624 18 16.5 C 18 17.340812 17.340812 18 16.5 18 C 15.659188 18 15 17.340812 15 16.5 C 15 16.103624 15.175632 15.558516 15.4375 14.75 C 15.699368 13.941484 16 12.892723 16 11.5 L 16 9.71875 L 14.5 10.65625 C 14.5 10.65625 14.32194 10.74594 14.09375 10.84375 C 13.86556 10.94156 13.583625 11 13.5 11 C 12.85375 11 12.264789 10.755319 11.8125 10.34375 L 11.09375 9.6875 L 10.4375 10.375 C 10.07095 10.755001 9.5683695 11 9 11 C 7.8833339 11 7 10.116666 7 9 C 7 7.8833339 7.8833339 7 9 7 C 9.4046799 7 9.774715 7.1348902 10.09375 7.34375 L 10.90625 7.84375 L 11.46875 7.0625 C 11.923095 6.4165117 12.649333 6 13.5 6 z M 11.1875 12.25 C 11.870036 12.674602 12.635116 13 13.5 13 C 13.603844 13 13.654097 12.94767 13.75 12.9375 C 13.66948 13.323278 13.67157 13.819495 13.5625 14.15625 C 13.324368 14.891484 13 15.592376 13 16.5 C 13 18.421188 14.578812 20 16.5 20 C 18.421188 20 20 18.421188 20 16.5 C 20 15.592376 19.675315 14.888008 19.4375 14.15625 C 19.30861 13.759655 19.271912 13.19425 19.1875 12.71875 C 19.82627 12.867001 20.117028 13 21 13 C 21.344103 13 21.680662 12.926758 22 12.84375 L 22 13.6875 A 1.001098 1.001098 0 0 0 22 14.28125 L 22 21.8125 A 1.0001 1.0001 0 0 0 22 22.21875 L 22 25 C 22 25.56503 21.56503 26 21 26 L 9 26 C 8.4349698 26 8 25.56503 8 25 L 8 12.84375 C 8.3193379 12.926758 8.6558975 13 9 13 C 9.823788 13 10.550363 12.68035 11.1875 12.25 z M 24 15 L 25 15 C 25.56503 15 26 15.43497 26 16 L 26 20 C 26 20.56503 25.56503 21 25 21 L 24 21 L 24 15 z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 1 6.75 L 1 25.25 L 9.9375 25.25 C 10.7645 25.25 16.46875 25.083 16.46875 19.875 C 16.46875 16.62 14.23075 15.5145 13.09375 15.1875 C 13.92875 14.7925 15.59375 13.85675 15.59375 11.34375 C 15.59375 9.94375 15.3945 6.75 9.6875 6.75 L 1 6.75 z M 21.375 8.46875 L 21.375 10.15625 L 28.28125 10.15625 L 28.28125 8.46875 L 21.375 8.46875 z M 5.0625 9.90625 L 8.875 9.90625 C 9.235 9.90625 11.65625 9.71625 11.65625 12.03125 C 11.65625 14.01125 9.9075 14.21875 9.1875 14.21875 L 5.0625 14.21875 L 5.0625 9.90625 z M 25 11.6875 C 19.779 11.6875 18.6875 16.2235 18.6875 18.1875 C 18.6875 24.0185 23.468 24.6875 25 24.6875 C 29.129 24.6875 30.30125 22.01625 30.78125 20.53125 L 27.78125 20.53125 C 27.66525 20.91325 26.788 22.15625 25.125 22.15625 C 22.335 22.15625 22.09375 19.975 22.09375 19 L 30.96875 19 C 31.14875 15.624 29.67 11.6875 25 11.6875 z M 24.90625 14.21875 C 25.73825 14.21875 26.4105 14.46025 26.8125 14.90625 C 27.2165 15.35525 27.51275 16.011 27.59375 16.875 L 22.09375 16.875 C 22.10975 16.635 22.163 16.3625 22.25 16.0625 C 22.336 15.7545 22.4685 15.4605 22.6875 15.1875 C 22.9075 14.9185 23.2115 14.683 23.5625 14.5 C 23.9215 14.314 24.36525 14.21875 24.90625 14.21875 z M 5.0625 17 L 9.46875 17 C 10.34375 17 12.40625 17.13525 12.40625 19.65625 C 12.40625 22.09825 9.80725 22.09375 9.40625 22.09375 L 5.0625 22.09375 L 5.0625 17 z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 1 6.75 L 1 25.25 L 9.9375 25.25 C 10.7645 25.25 16.46875 25.083 16.46875 19.875 C 16.46875 16.62 14.23075 15.5145 13.09375 15.1875 C 13.92875 14.7925 15.59375 13.85675 15.59375 11.34375 C 15.59375 9.94375 15.3945 6.75 9.6875 6.75 L 1 6.75 z M 21.375 8.46875 L 21.375 10.15625 L 28.28125 10.15625 L 28.28125 8.46875 L 21.375 8.46875 z M 5.0625 9.90625 L 8.875 9.90625 C 9.235 9.90625 11.65625 9.71625 11.65625 12.03125 C 11.65625 14.01125 9.9075 14.21875 9.1875 14.21875 L 5.0625 14.21875 L 5.0625 9.90625 z M 25 11.6875 C 19.779 11.6875 18.6875 16.2235 18.6875 18.1875 C 18.6875 24.0185 23.468 24.6875 25 24.6875 C 29.129 24.6875 30.30125 22.01625 30.78125 20.53125 L 27.78125 20.53125 C 27.66525 20.91325 26.788 22.15625 25.125 22.15625 C 22.335 22.15625 22.09375 19.975 22.09375 19 L 30.96875 19 C 31.14875 15.624 29.67 11.6875 25 11.6875 z M 24.90625 14.21875 C 25.73825 14.21875 26.4105 14.46025 26.8125 14.90625 C 27.2165 15.35525 27.51275 16.011 27.59375 16.875 L 22.09375 16.875 C 22.10975 16.635 22.163 16.3625 22.25 16.0625 C 22.336 15.7545 22.4685 15.4605 22.6875 15.1875 C 22.9075 14.9185 23.2115 14.683 23.5625 14.5 C 23.9215 14.314 24.36525 14.21875 24.90625 14.21875 z M 5.0625 17 L 9.46875 17 C 10.34375 17 12.40625 17.13525 12.40625 19.65625 C 12.40625 22.09825 9.80725 22.09375 9.40625 22.09375 L 5.0625 22.09375 L 5.0625 17 z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 14.895431 3 14 3.8954305 14 5 C 14 5.0852793 14.020891 5.1675298 14.03125 5.25 C 10.573943 6.133638 8 9.273843 8 13 L 8 22 C 8 22.56503 7.5650302 23 7 23 L 6 23 L 6 25 L 13.1875 25 C 13.073239 25.315761 13 25.647008 13 26 C 13 27.64501 14.35499 29 16 29 C 17.64501 29 19 27.64501 19 26 C 19 25.647008 18.926761 25.315761 18.8125 25 L 26 25 L 26 23 L 25 23 C 24.43497 23 24 22.56503 24 22 L 24 13.28125 C 24 9.5227364 21.490109 6.1735161 17.96875 5.25 C 17.979109 5.1675298 18 5.0852793 18 5 C 18 3.8954305 17.104569 3 16 3 z M 15.5625 7 C 15.70799 6.9894429 15.851727 7.0001055 16 7 C 16.063546 6.9999548 16.12349 6.9980784 16.1875 7 C 19.454262 7.098037 22 9.9618599 22 13.28125 L 22 22 C 22 22.352983 22.073236 22.684242 22.1875 23 L 9.8125 23 C 9.9267636 22.684242 10 22.352983 10 22 L 10 13 C 10 9.8240913 12.44485 7.2262234 15.5625 7 z M 16 25 C 16.564128 25 17 25.435872 17 26 C 17 26.564128 16.564128 27 16 27 C 15.435872 27 15 26.564128 15 26 C 15 25.435872 15.435872 25 16 25 z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3.71875 2.28125 L 2.28125 3.71875 L 28.28125 29.71875 L 29.71875 28.28125 L 26 24.5625 L 26 23 L 25 23 C 24.448 23 24 22.552 24 22 L 24 13.28125 C 24 9.4540228 21.417972 6.2014684 17.96875 5.28125 C 17.981784 5.1890095 18 5.0958376 18 5 C 18 3.8954305 17.104569 3 16 3 C 14.895431 3 14 3.8954305 14 5 C 14 5.0852793 14.020891 5.1675298 14.03125 5.25 C 12.693023 5.5888868 11.456312 6.2598315 10.4375 7.25 C 10.137914 7.5403049 9.8712755 7.8616454 9.625 8.1875 L 3.71875 2.28125 z M 15.5625 7 C 15.763939 6.9863145 15.98275 6.9935 16.1875 7 C 19.3935 7.096 22 9.90825 22 13.28125 L 22 20.5625 L 11.0625 9.625 C 11.286211 9.2977665 11.520497 8.9706001 11.8125 8.6875 C 12.840625 7.689125 14.152424 7.0957988 15.5625 7 z M 8.03125 12.25 C 8.00725 12.502 8 12.744 8 13 L 8 22 C 8 22.552 7.552 23 7 23 L 6 23 L 6 25 L 13.1875 25 C 13.073239 25.315761 13 25.647008 13 26 C 13 27.64501 14.35499 29 16 29 C 17.64501 29 19 27.64501 19 26 C 19 25.647008 18.926761 25.315761 18.8125 25 L 20.8125 25 L 18.8125 23 L 9.8125 23 C 9.9245 22.686 10 22.352 10 22 L 10 14.1875 L 8.03125 12.25 z M 16 25 C 16.564128 25 17 25.435872 17 26 C 17 26.564128 16.564128 27 16 27 C 15.435872 27 15 26.564128 15 26 C 15 25.435872 15.435872 25 16 25 z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3.71875 2.28125 L 2.28125 3.71875 L 28.28125 29.71875 L 29.71875 28.28125 L 26 24.5625 L 26 23 L 25 23 C 24.448 23 24 22.552 24 22 L 24 13.28125 C 24 9.4540228 21.417972 6.2014684 17.96875 5.28125 C 17.981784 5.1890095 18 5.0958376 18 5 C 18 3.8954305 17.104569 3 16 3 C 14.895431 3 14 3.8954305 14 5 C 14 5.0852793 14.020891 5.1675298 14.03125 5.25 C 12.693023 5.5888868 11.456312 6.2598315 10.4375 7.25 C 10.137914 7.5403049 9.8712755 7.8616454 9.625 8.1875 L 3.71875 2.28125 z M 15.5625 7 C 15.763939 6.9863145 15.98275 6.9935 16.1875 7 C 19.3935 7.096 22 9.90825 22 13.28125 L 22 20.5625 L 11.0625 9.625 C 11.286211 9.2977665 11.520497 8.9706001 11.8125 8.6875 C 12.840625 7.689125 14.152424 7.0957988 15.5625 7 z M 8.03125 12.25 C 8.00725 12.502 8 12.744 8 13 L 8 22 C 8 22.552 7.552 23 7 23 L 6 23 L 6 25 L 13.1875 25 C 13.073239 25.315761 13 25.647008 13 26 C 13 27.64501 14.35499 29 16 29 C 17.64501 29 19 27.64501 19 26 C 19 25.647008 18.926761 25.315761 18.8125 25 L 20.8125 25 L 18.8125 23 L 9.8125 23 C 9.9245 22.686 10 22.352 10 22 L 10 14.1875 L 8.03125 12.25 z M 16 25 C 16.564128 25 17 25.435872 17 26 C 17 26.564128 16.564128 27 16 27 C 15.435872 27 15 26.564128 15 26 C 15 25.435872 15.435872 25 16 25 z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 14.895431 3 14 3.8954305 14 5 C 14 5.0852793 14.020891 5.1675298 14.03125 5.25 C 10.573943 6.133638 8 9.273843 8 13 L 8 22 C 8 22.56503 7.5650302 23 7 23 L 6 23 L 6 25 L 13.1875 25 C 13.073239 25.315761 13 25.647008 13 26 C 13 27.64501 14.35499 29 16 29 C 17.64501 29 19 27.64501 19 26 C 19 25.647008 18.926761 25.315761 18.8125 25 L 26 25 L 26 23 L 25 23 C 24.43497 23 24 22.56503 24 22 L 24 13.28125 C 24 9.5227364 21.490109 6.1735161 17.96875 5.25 C 17.979109 5.1675298 18 5.0852793 18 5 C 18 3.8954305 17.104569 3 16 3 z M 15.5625 7 C 15.70799 6.9894429 15.851727 7.0001055 16 7 C 16.063546 6.9999548 16.12349 6.9980784 16.1875 7 C 19.454262 7.098037 22 9.9618599 22 13.28125 L 22 22 C 22 22.352983 22.073236 22.684242 22.1875 23 L 9.8125 23 C 9.9267636 22.684242 10 22.352983 10 22 L 10 13 C 10 9.8240913 12.44485 7.2262234 15.5625 7 z M 16 25 C 16.564128 25 17 25.435872 17 26 C 17 26.564128 16.564128 27 16 27 C 15.435872 27 15 26.564128 15 26 C 15 25.435872 15.435872 25 16 25 z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 19 6 L 19 7 L 19 7.25 L 19 7.4375 L 19.09375 7.625 L 20.125 10 L 11.9375 10 L 11.4375 10 L 11.125 10.4375 L 8.40625 14.28125 C 7.802522 14.095314 7.1640848 14 6.5 14 C 2.917 14 5.9211895e-16 16.916 0 20.5 C 0 24.084 2.916 27 6.5 27 C 9.9132127 27 12.708944 24.347721 12.96875 21 L 15.875 21 L 16.40625 21 L 16.71875 20.5625 L 21.59375 13.375 L 22.25 14.875 C 20.310517 16.004057 19 18.109537 19 20.5 C 19 24.070455 21.929545 27 25.5 27 C 29.070455 27 32 24.070455 32 20.5 C 32 16.929545 29.070455 14 25.5 14 C 25.019564 14 24.545402 14.055741 24.09375 14.15625 L 21.40625 8 L 24.5 8 C 24.786937 8 25 8.2130628 25 8.5 C 25 8.7869372 24.786937 9 24.5 9 L 24.5 11 C 25.869063 11 27 9.8690628 27 8.5 C 27 7.1309372 25.869063 6 24.5 6 L 20 6 L 19 6 z M 8 7 L 8 9 L 14 9 L 13 7 L 8 7 z M 13.46875 12 L 20.125 12 L 16.09375 17.9375 L 13.46875 12 z M 11.71875 13 L 14.34375 19 L 6 19 L 6 21 L 10.9375 21 C 10.684618 23.243145 8.8095191 25 6.5 25 C 4.019 25 2 22.981 2 20.5 C 2 18.019 4.019 16 6.5 16 C 8.057 16 9.442 16.795 10.25 18 L 12.5 18 C 12.017965 16.848417 11.23166 15.86057 10.21875 15.15625 L 11.71875 13 z M 25.5 16 C 27.979545 16 30 18.020455 30 20.5 C 30 22.979545 27.979545 25 25.5 25 C 23.020455 25 21 22.979545 21 20.5 C 21 18.925393 21.832762 17.554471 23.0625 16.75 L 25.09375 21.40625 L 26.90625 20.59375 L 24.9375 16.0625 C 25.123763 16.038868 25.307471 16 25.5 16 z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 11 5 C 9.0324246 5 7.4597826 6.4414951 7.125 8.3125 C 5.2359745 8.7886073 3.5935337 10.018444 2.875 11.96875 L 2.84375 11.96875 L 0.71875 17.9375 C 0.26582757 18.863052 0 19.903751 0 21 C 0 24.854148 3.1458513 28 7 28 C 10.471624 28 13.365403 25.448353 13.90625 22.125 C 14.449196 22.659566 15.185962 23 16 23 C 16.814038 23 17.550804 22.659566 18.09375 22.125 C 18.634597 25.448353 21.528376 28 25 28 C 28.854148 28 32 24.854148 32 21 C 32 20.026447 31.799662 19.093879 31.4375 18.25 L 29.15625 11.875 L 29.125 11.84375 L 29.125 11.8125 C 28.395391 10.040591 26.77674 8.8003956 24.875 8.3125 C 24.540217 6.4414951 22.967575 5 21 5 C 19.142915 5 17.638423 6.2848308 17.1875 8 L 14.8125 8 C 14.361577 6.2848308 12.857085 5 11 5 z M 11 7 C 12.190196 7 13 7.8098039 13 9 L 13 10 L 14 10 L 18 10 L 19 10 L 19 9 C 19 7.8098039 19.809804 7 21 7 C 22.190196 7 23 7.8098039 23 9 L 23 9.90625 L 23.90625 10 C 25.392247 10.156421 26.672101 11.192362 27.25 12.53125 C 27.2591 12.55239 27.27248 12.57245 27.28125 12.59375 L 28.03125 14.71875 C 27.112106 14.273563 26.086233 14 25 14 C 22.075522 14 19.5752 15.817416 18.53125 18.375 C 17.995152 17.544443 17.052597 17 16 17 C 14.947403 17 14.004848 17.544443 13.46875 18.375 C 12.4248 15.817416 9.9244779 14 7 14 C 5.9282903 14 4.9097689 14.253428 4 14.6875 L 4.75 12.65625 L 4.75 12.625 C 5.3305473 11.076539 6.5584091 10.161615 8.09375 10 L 9 9.90625 L 9 9 C 9 7.8098039 9.8098039 7 11 7 z M 7 16 C 9.7732677 16 12 18.226732 12 21 C 12 23.773268 9.7732677 26 7 26 C 4.2267317 26 2 23.773268 2 21 C 2 20.291826 2.175079 19.64017 2.4375 19.03125 C 2.454016 18.992926 2.4513123 18.944063 2.46875 18.90625 C 3.2592583 17.192074 4.979476 16 7 16 z M 25 16 C 27.773268 16 30 18.226732 30 21 C 30 23.773268 27.773268 26 25 26 C 22.226732 26 20 23.773268 20 21 C 20 18.226732 22.226732 16 25 16 z M 16 19 C 16.564128 19 17 19.435872 17 20 C 17 20.564128 16.564128 21 16 21 C 15.435872 21 15 20.564128 15 20 C 15 19.435872 15.435872 19 16 19 z"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 1.25 L 15.1875 2.4375 C 15.1875 2.4375 14.648128 3.1913546 14.125 4.09375 C 13.863436 4.5449477 13.617642 5.0190835 13.40625 5.5 C 13.194858 5.9809165 13 6.4219697 13 7 C 13 8.6454545 14.354545 10 16 10 C 17.645455 10 19 8.6454545 19 7 C 19 6.4219697 18.805142 5.9809165 18.59375 5.5 C 18.382358 5.0190835 18.136564 4.5449477 17.875 4.09375 C 17.351872 3.1913546 16.8125 2.4375 16.8125 2.4375 L 16 1.25 z M 16 10 L 14 10 L 13 10 L 13 11 L 13 14 L 7 14 C 4.7901961 14 3 15.790196 3 18 C 3 19.015812 3.3765617 19.950905 4 20.65625 L 4 27 L 4 28 L 5 28 L 27 28 L 28 28 L 28 27 L 28 20.65625 C 28.623438 19.950905 29 19.015812 29 18 C 29 15.790196 27.209804 14 25 14 L 19 14 L 19 11 L 19 10 L 18 10 L 16 10 z M 16 4.875 C 16.06572 4.9839175 16.05811 4.978371 16.125 5.09375 C 16.363436 5.5050523 16.617642 5.9402915 16.78125 6.3125 C 16.944858 6.6847085 17 7.0280303 17 7 C 17 7.5545455 16.554545 8 16 8 C 15.445455 8 15 7.5545455 15 7 C 15 7.0280303 15.055142 6.6847085 15.21875 6.3125 C 15.382358 5.9402915 15.636564 5.5050523 15.875 5.09375 C 15.941886 4.978371 15.934283 4.9839175 16 4.875 z M 15 12 L 17 12 L 17 14 L 15 14 L 15 12 z M 7 16 L 25 16 C 26.190196 16 27 16.809804 27 18 C 27 19.190196 26.190196 20 25 20 C 23.809804 20 23 19.190196 23 18 L 21 18 C 21 19.190196 20.190196 20 19 20 C 17.809804 20 17 19.190196 17 18 L 15 18 C 15 19.190196 14.190196 20 13 20 C 11.809804 20 11 19.190196 11 18 L 9 18 C 9 19.190196 8.1901961 20 7 20 C 5.8098039 20 5 19.190196 5 18 C 5 16.809804 5.8098039 16 7 16 z M 10 20.65625 C 10.732793 21.485316 11.806008 22 13 22 C 14.193992 22 15.267207 21.485316 16 20.65625 C 16.732793 21.485316 17.806008 22 19 22 C 20.193992 22 21.267207 21.485316 22 20.65625 C 22.732793 21.485316 23.806008 22 25 22 C 25.346055 22 25.679789 21.92629 26 21.84375 L 26 26 L 6 26 L 6 21.84375 C 6.3202111 21.92629 6.6539447 22 7 22 C 8.1939917 22 9.2672068 21.485316 10 20.65625 z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 5 C 13.706573 5 11.404791 5.2986879 9.59375 5.78125 C 8.6882294 6.022531 7.912284 6.2776889 7.28125 6.65625 C 6.650216 7.0348111 6 7.6017691 6 8.5 C 6 8.7245577 6.0541823 8.9396189 6.125 9.125 C 6.2718008 9.8857561 8.7785615 22.924058 9.03125 24.1875 C 9.151927 24.789773 9.5344617 25.232713 9.96875 25.5625 C 10.403038 25.892287 10.899173 26.136806 11.5 26.34375 C 12.701654 26.757639 14.250765 27 16 27 C 17.748229 27 19.289974 26.756124 20.5 26.34375 C 21.105013 26.137563 21.625618 25.897967 22.0625 25.5625 C 22.499382 25.227033 22.910312 24.784642 23 24.15625 C 23.02022 24.014744 23.212108 22.812815 23.5 21.3125 C 23.787892 19.812185 24.165738 17.933795 24.53125 16.0625 C 25.21875 12.542735 25.798158 9.5200373 25.875 9.125 C 25.945818 8.9396189 26 8.7245577 26 8.5 C 26 7.6017691 25.349784 7.0348111 24.71875 6.65625 C 24.087716 6.2776889 23.311771 6.022531 22.40625 5.78125 C 20.595209 5.2986879 18.293427 5 16 5 z M 16 7 C 18.124573 7 20.321791 7.2653121 21.90625 7.6875 C 22.698479 7.898594 23.321346 8.1553423 23.6875 8.375 C 23.790305 8.4366731 23.796654 8.4598727 23.84375 8.5 C 23.796654 8.5401273 23.790305 8.5633269 23.6875 8.625 C 23.321346 8.8446577 22.698479 9.101406 21.90625 9.3125 C 20.321791 9.7346879 18.124573 10 16 10 C 13.875427 10 11.678209 9.7346879 10.09375 9.3125 C 9.3015206 9.101406 8.6786535 8.8446577 8.3125 8.625 C 8.2096954 8.5633269 8.203346 8.5401273 8.15625 8.5 C 8.203346 8.4598727 8.2096954 8.4366731 8.3125 8.375 C 8.6786535 8.1553423 9.3015206 7.898594 10.09375 7.6875 C 11.678209 7.2653121 13.875427 7 16 7 z M 8.46875 10.875 C 8.8228148 10.999406 9.1856427 11.110008 9.59375 11.21875 C 11.404791 11.701312 13.706573 12 16 12 C 18.293427 12 20.595209 11.701312 22.40625 11.21875 C 22.814358 11.110008 23.177185 10.999406 23.53125 10.875 C 23.255232 12.236125 23.038977 13.216849 22.5625 15.65625 C 22.328952 16.851938 22.145042 17.921983 21.9375 19.03125 C 21.924994 19.045924 21.913635 19.033858 21.8125 19.15625 C 21.672288 19.325929 21.414577 19.607903 21 19.875 C 20.170847 20.409195 18.675415 21 16 21 C 13.323583 21 11.799549 20.406094 10.96875 19.875 C 10.553351 19.609453 10.327901 19.355903 10.1875 19.1875 C 10.047099 19.019097 10.03125 19 10.03125 19 C 9.3520676 15.491878 8.8714825 12.960997 8.46875 10.875 z M 16 13 C 14.35499 13 13 14.35499 13 16 C 13 17.64501 14.35499 19 16 19 C 17.64501 19 19 17.64501 19 16 C 19 14.35499 17.64501 13 16 13 z M 16 15 C 16.564128 15 17 15.435872 17 16 C 17 16.564128 16.564128 17 16 17 C 15.435872 17 15 16.564128 15 16 C 15 15.435872 15.435872 15 16 15 z M 10.59375 21.90625 C 11.795996 22.503733 13.513117 23 16 23 C 18.45775 23 20.174609 22.533946 21.375 21.9375 C 21.224291 22.694041 21.035956 23.59206 21 23.84375 C 20.979676 23.870072 20.926969 23.90485 20.84375 23.96875 C 20.658819 24.110752 20.336237 24.311562 19.875 24.46875 C 18.952526 24.783126 17.565771 25 16 25 C 14.435235 25 13.071846 24.784111 12.15625 24.46875 C 11.698452 24.311069 11.349493 24.115494 11.15625 23.96875 C 10.963007 23.822006 10.956573 23.751727 10.96875 23.8125 C 10.939223 23.664867 10.689761 22.399585 10.59375 21.90625 z"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 5 C 13.706573 5 11.404791 5.2986879 9.59375 5.78125 C 8.6882294 6.022531 7.912284 6.2776889 7.28125 6.65625 C 6.650216 7.0348111 6 7.6017691 6 8.5 C 6 8.7245577 6.0541823 8.9396189 6.125 9.125 C 6.2718008 9.8857561 8.7785615 22.924058 9.03125 24.1875 C 9.151927 24.789773 9.5344617 25.232713 9.96875 25.5625 C 10.403038 25.892287 10.899173 26.136806 11.5 26.34375 C 12.701654 26.757639 14.250765 27 16 27 C 17.748229 27 19.289974 26.756124 20.5 26.34375 C 21.105013 26.137563 21.625618 25.897967 22.0625 25.5625 C 22.499382 25.227033 22.910312 24.784642 23 24.15625 C 23.02022 24.014744 23.212108 22.812815 23.5 21.3125 C 23.787892 19.812185 24.165738 17.933795 24.53125 16.0625 C 25.21875 12.542735 25.798158 9.5200373 25.875 9.125 C 25.945818 8.9396189 26 8.7245577 26 8.5 C 26 7.6017691 25.349784 7.0348111 24.71875 6.65625 C 24.087716 6.2776889 23.311771 6.022531 22.40625 5.78125 C 20.595209 5.2986879 18.293427 5 16 5 z M 16 7 C 18.124573 7 20.321791 7.2653121 21.90625 7.6875 C 22.698479 7.898594 23.321346 8.1553423 23.6875 8.375 C 23.790305 8.4366731 23.796654 8.4598727 23.84375 8.5 C 23.796654 8.5401273 23.790305 8.5633269 23.6875 8.625 C 23.321346 8.8446577 22.698479 9.101406 21.90625 9.3125 C 20.321791 9.7346879 18.124573 10 16 10 C 13.875427 10 11.678209 9.7346879 10.09375 9.3125 C 9.3015206 9.101406 8.6786535 8.8446577 8.3125 8.625 C 8.2096954 8.5633269 8.203346 8.5401273 8.15625 8.5 C 8.203346 8.4598727 8.2096954 8.4366731 8.3125 8.375 C 8.6786535 8.1553423 9.3015206 7.898594 10.09375 7.6875 C 11.678209 7.2653121 13.875427 7 16 7 z M 8.46875 10.875 C 8.8228148 10.999406 9.1856427 11.110008 9.59375 11.21875 C 11.404791 11.701312 13.706573 12 16 12 C 18.293427 12 20.595209 11.701312 22.40625 11.21875 C 22.814358 11.110008 23.177185 10.999406 23.53125 10.875 C 23.255232 12.236125 23.038977 13.216849 22.5625 15.65625 C 22.328952 16.851938 22.145042 17.921983 21.9375 19.03125 C 21.924994 19.045924 21.913635 19.033858 21.8125 19.15625 C 21.672288 19.325929 21.414577 19.607903 21 19.875 C 20.170847 20.409195 18.675415 21 16 21 C 13.323583 21 11.799549 20.406094 10.96875 19.875 C 10.553351 19.609453 10.327901 19.355903 10.1875 19.1875 C 10.047099 19.019097 10.03125 19 10.03125 19 C 9.3520676 15.491878 8.8714825 12.960997 8.46875 10.875 z M 16 13 C 14.35499 13 13 14.35499 13 16 C 13 17.64501 14.35499 19 16 19 C 17.64501 19 19 17.64501 19 16 C 19 14.35499 17.64501 13 16 13 z M 16 15 C 16.564128 15 17 15.435872 17 16 C 17 16.564128 16.564128 17 16 17 C 15.435872 17 15 16.564128 15 16 C 15 15.435872 15.435872 15 16 15 z M 10.59375 21.90625 C 11.795996 22.503733 13.513117 23 16 23 C 18.45775 23 20.174609 22.533946 21.375 21.9375 C 21.224291 22.694041 21.035956 23.59206 21 23.84375 C 20.979676 23.870072 20.926969 23.90485 20.84375 23.96875 C 20.658819 24.110752 20.336237 24.311562 19.875 24.46875 C 18.952526 24.783126 17.565771 25 16 25 C 14.435235 25 13.071846 24.784111 12.15625 24.46875 C 11.698452 24.311069 11.349493 24.115494 11.15625 23.96875 C 10.963007 23.822006 10.956573 23.751727 10.96875 23.8125 C 10.939223 23.664867 10.689761 22.399585 10.59375 21.90625 z"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 12 3 L 12 6 L 9 6 L 8 6 L 8 7 L 8 16 L 8 17 L 8 25 L 8 26 L 9 26 L 12 26 L 12 29 L 14 29 L 14 26 L 16 26 L 16 29 L 18 29 L 18 26 L 19.5 26 C 22.525577 26 25 23.525577 25 20.5 C 25 18.419916 23.839134 16.590353 22.125 15.65625 C 23.280912 14.646142 24 13.146733 24 11.5 C 24 8.4744232 21.525577 6 18.5 6 L 18 6 L 18 3 L 16 3 L 16 6 L 14 6 L 14 3 L 12 3 z M 10 8 L 18.5 8 C 20.444423 8 22 9.5555768 22 11.5 C 22 13.444423 20.444423 15 18.5 15 L 10 15 L 10 8 z M 10 17 L 18.5 17 L 19.5 17 C 21.444423 17 23 18.555577 23 20.5 C 23 22.444423 21.444423 24 19.5 24 L 10 24 L 10 17 z"/></svg>

After

Width:  |  Height:  |  Size: 655 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 5 5 L 5 6 L 5 26 L 5 27 L 6 27 L 26 27 L 27 27 L 27 26 L 27 6 L 27 5 L 26 5 L 6 5 L 5 5 z M 7 7 L 25 7 L 25 25 L 7 25 L 7 7 z M 12 9 L 14.8125 12.625 L 12 20.375 L 16 24 L 20 20.375 L 17.1875 12.625 L 20 9 L 12 9 z"/></svg>

After

Width:  |  Height:  |  Size: 294 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16,7c2.8,0,5,2.2,5,5c0,1.3-0.5,2.4-1.3,3.3C21.6,16,23,17.8,23,20c0,2.8-2.2,5-5,5H7V7H16 M9,15h7c1.7,0,3-1.3,3-3 s-1.3-3-3-3H9V15 M9,23h9c1.7,0,3-1.3,3-3s-1.3-3-3-3H9V23 M16,5H7H5v2v18v2h2h11c3.9,0,7-3.1,7-7c0-2.1-1-4.1-2.5-5.4 c0.3-0.8,0.5-1.7,0.5-2.6C23,8.1,19.9,5,16,5L16,5z M11,11h5c0.6,0,1,0.4,1,1s-0.4,1-1,1h-5V11L11,11z M11,19h7c0.6,0,1,0.4,1,1 s-0.4,1-1,1h-7V19L11,19z"/></svg>

After

Width:  |  Height:  |  Size: 454 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 18.875 4 L 11.96875 11.3125 L 11.125 12.21875 L 12.1875 12.84375 L 19.375 17.1875 L 12 24.5625 L 12 20 L 10 20 L 10 27 L 10 28 L 11 28 L 18 28 L 18 26 L 13.4375 26 L 21.71875 17.71875 L 22.625 16.8125 L 21.53125 16.15625 L 14.28125 11.78125 L 20.3125 5.375 L 18.875 4 z"/></svg>

After

Width:  |  Height:  |  Size: 349 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 23.40625 1.875 L 22 3.28125 L 18.28125 7 L 17.9375 7.34375 L 18 7.84375 L 18.03125 8.125 C 15.908339 7.807844 13.690968 8.4340319 12.0625 10.0625 L 11.90625 10.1875 L 5.5 16.59375 C 3.6192315 18.475121 3.3468267 21.20603 3.4375 23.375 C 3.528173 25.54397 4.03125 27.28125 4.03125 27.28125 L 4.1875 27.8125 L 4.71875 27.96875 C 4.71875 27.96875 6.4559961 28.471958 8.625 28.5625 C 10.794004 28.65304 13.524953 28.381297 15.40625 26.5 L 21.9375 19.9375 C 23.565861 18.309139 24.192493 16.091876 23.875 13.96875 L 24.15625 14 L 24.65625 14.0625 L 25 13.71875 L 28.71875 10 L 30.125 8.59375 L 28.15625 8.3125 L 24.25 7.75 L 23.6875 3.84375 L 23.40625 1.875 z M 22 6.125 L 22.375 8.78125 L 22.46875 9.53125 L 23.21875 9.625 L 25.875 10 L 23.9375 11.9375 L 22.71875 11.75 L 21 11.5 L 21.625 13.125 C 22.352514 14.927136 22.00005 17.06245 20.53125 18.53125 L 14 25.0625 C 12.759297 26.303203 10.622246 26.641958 8.71875 26.5625 C 7.1442058 26.496773 6.2869451 26.231591 5.875 26.125 C 5.7684041 25.713048 5.5033247 24.855822 5.4375 23.28125 C 5.3579233 21.37772 5.6972685 19.240629 6.9375 18 L 13.46875 11.46875 C 14.937415 10.000085 17.072501 9.6481723 18.875 10.375 L 20.46875 11 L 20.25 9.28125 L 20.0625 8.0625 L 22 6.125 z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 10 5 C 6.7729384 5 3.625 6.3125 3.625 6.3125 L 3 6.59375 L 3 7.25 L 3 25.46875 L 3 26.96875 L 3 27 L 14.28125 27 C 14.627196 27.596897 15.260107 28 16 28 C 16.739893 28 17.372804 27.596897 17.71875 27 L 29 27 L 29 26.96875 L 29 25.46875 L 29 7.25 L 29 6.59375 L 28.375 6.3125 C 28.375 6.3125 25.227062 5 22 5 C 19.080278 5 16.517877 5.9809907 16 6.1875 C 15.482123 5.9809907 12.919722 5 10 5 z M 10 7 C 11.933413 7 13.999795 7.6259376 15 7.96875 L 15 24.09375 C 13.887962 23.724721 12.057028 23.21875 10 23.21875 C 7.8969385 23.21875 6.1875284 23.70191 5 24.09375 L 5 7.96875 C 5.7681164 7.6900448 7.8008862 7 10 7 z M 22 7 C 24.199114 7 26.231884 7.6900448 27 7.96875 L 27 24.09375 C 25.812472 23.70191 24.103061 23.21875 22 23.21875 C 19.942972 23.21875 18.112038 23.724721 17 24.09375 L 17 7.96875 C 18.000205 7.6259376 20.066587 7 22 7 z"/></svg>

After

Width:  |  Height:  |  Size: 921 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 7 5 L 7 6 L 7 26 L 7 28 L 8.59375 26.8125 L 16 21.25 L 23.40625 26.8125 L 25 28 L 25 26 L 25 6 L 25 5 L 24 5 L 8 5 L 7 5 z M 9 7 L 23 7 L 23 24 L 16.59375 19.1875 L 16 18.75 L 15.40625 19.1875 L 9 24 L 9 7 z"/></svg>

After

Width:  |  Height:  |  Size: 287 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 7 5 L 7 6 L 7 26 L 7 28 L 8.59375 26.8125 L 16 21.25 L 23.40625 26.8125 L 25 28 L 25 26 L 25 6 L 25 5 L 24 5 L 8 5 L 7 5 z M 9 7 L 23 7 L 23 24 L 16.59375 19.1875 L 16 18.75 L 15.40625 19.1875 L 9 24 L 9 7 z"/></svg>

After

Width:  |  Height:  |  Size: 287 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 14.136251 3 12.600787 4.2754401 12.15625 6 L 4 6 L 3 6 L 3 7 L 3 25 L 3 26 L 4 26 L 28 26 L 29 26 L 29 25 L 29 7 L 29 6 L 28 6 L 19.84375 6 C 19.399213 4.2754401 17.863749 3 16 3 z M 16 5 C 16.810108 5 17.427761 5.3850682 17.75 6 L 14.25 6 C 14.572239 5.3850682 15.189892 5 16 5 z M 5 8 L 27 8 L 27 17 L 5 17 L 5 8 z M 16 14 C 15.447715 14 15 14.447715 15 15 C 15 15.552285 15.447715 16 16 16 C 16.552285 16 17 15.552285 17 15 C 17 14.447715 16.552285 14 16 14 z M 5 19 L 27 19 L 27 24 L 5 24 L 5 19 z"/></svg>

After

Width:  |  Height:  |  Size: 588 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 12 3 L 12 6 L 9 6 L 8 6 L 8 7 L 8 16 L 8 17 L 8 25 L 8 26 L 9 26 L 12 26 L 12 29 L 14 29 L 14 26 L 16 26 L 16 29 L 18 29 L 18 26 L 19.5 26 C 22.525577 26 25 23.525577 25 20.5 C 25 18.419916 23.839134 16.590353 22.125 15.65625 C 23.280912 14.646142 24 13.146733 24 11.5 C 24 8.4744232 21.525577 6 18.5 6 L 18 6 L 18 3 L 16 3 L 16 6 L 14 6 L 14 3 L 12 3 z M 10 8 L 18.5 8 C 20.444423 8 22 9.5555768 22 11.5 C 22 13.444423 20.444423 15 18.5 15 L 10 15 L 10 8 z M 10 17 L 18.5 17 L 19.5 17 C 21.444423 17 23 18.555577 23 20.5 C 23 22.444423 21.444423 24 19.5 24 L 10 24 L 10 17 z"/></svg>

After

Width:  |  Height:  |  Size: 655 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 10.71875 3.28125 L 9.28125 4.71875 L 11.21875 6.65625 C 9.7571264 7.7749169 8.6089253 9.4115915 7.875 11.3125 L 5.4375 10.09375 L 4.5625 11.90625 L 7.3125 13.28125 C 7.1296685 14.157104 7 15.062959 7 16 C 7 16.340323 7.0062438 16.666395 7.03125 17 L 4 17 L 4 19 L 7.375 19 C 7.6173022 20.043389 7.9364203 21.03909 8.40625 21.9375 L 5.40625 24.1875 L 6.59375 25.8125 L 9.53125 23.625 C 11.149057 25.680857 13.4166 27 16 27 C 18.5834 27 20.850943 25.680857 22.46875 23.625 L 25.40625 25.8125 L 26.59375 24.1875 L 23.59375 21.9375 C 24.06358 21.03909 24.382698 20.043389 24.625 19 L 28 19 L 28 17 L 24.96875 17 C 24.993756 16.666395 25 16.340323 25 16 C 25 15.062959 24.870332 14.157104 24.6875 13.28125 L 27.4375 11.90625 L 26.5625 10.09375 L 24.125 11.3125 C 23.391075 9.4115915 22.242874 7.7749169 20.78125 6.65625 L 22.71875 4.71875 L 21.28125 3.28125 L 18.96875 5.59375 C 18.045715 5.2033938 17.046992 5 16 5 C 14.953008 5 13.954285 5.2033938 13.03125 5.59375 L 10.71875 3.28125 z M 16 7 C 17.978032 7 19.827322 8.0938286 21.125 9.875 C 19.991202 10.386272 18.200706 11 16 11 C 13.799294 11 12.008798 10.386272 10.875 9.875 C 12.172678 8.0938286 14.021968 7 16 7 z M 9.90625 11.59375 C 11.058777 12.136082 12.829995 12.775241 15 12.9375 L 15 24.90625 C 11.697753 24.28155 9 20.628575 9 16 C 9 14.382289 9.3372993 12.885354 9.90625 11.59375 z M 22.09375 11.59375 C 22.662701 12.885354 23 14.382289 23 16 C 23 20.628575 20.302247 24.28155 17 24.90625 L 17 12.9375 C 19.170005 12.775241 20.941223 12.136082 22.09375 11.59375 z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4 3 L 4 4 L 4 28 L 4 29 L 5 29 L 14 29 L 15 29 L 15 28 L 15 25 L 17 25 L 17 28 L 17 29 L 18 29 L 27 29 L 28 29 L 28 28 L 28 4 L 28 3 L 27 3 L 5 3 L 4 3 z M 6 5 L 26 5 L 26 27 L 19 27 L 19 24 L 19 23 L 18 23 L 14 23 L 13 23 L 13 24 L 13 27 L 6 27 L 6 5 z M 8 7 L 8 9 L 12 9 L 12 7 L 8 7 z M 14 7 L 14 9 L 18 9 L 18 7 L 14 7 z M 20 7 L 20 9 L 24 9 L 24 7 L 20 7 z M 8 11 L 8 13 L 12 13 L 12 11 L 8 11 z M 14 11 L 14 13 L 18 13 L 18 11 L 14 11 z M 20 11 L 20 13 L 24 13 L 24 11 L 20 11 z M 8 15 L 8 17 L 12 17 L 12 15 L 8 15 z M 14 15 L 14 17 L 18 17 L 18 15 L 14 15 z M 20 15 L 20 17 L 24 17 L 24 15 L 20 15 z M 8 19 L 8 21 L 12 21 L 12 19 L 8 19 z M 14 19 L 14 21 L 18 21 L 18 19 L 14 19 z M 20 19 L 20 21 L 24 21 L 24 19 L 20 19 z M 8 23 L 8 25 L 12 25 L 12 23 L 8 23 z M 20 23 L 20 25 L 24 25 L 24 23 L 20 23 z"/></svg>

After

Width:  |  Height:  |  Size: 891 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4 3 L 4 4 L 4 28 L 4 29 L 5 29 L 14 29 L 15 29 L 15 28 L 15 25 L 17 25 L 17 28 L 17 29 L 18 29 L 27 29 L 28 29 L 28 28 L 28 4 L 28 3 L 27 3 L 5 3 L 4 3 z M 6 5 L 26 5 L 26 27 L 19 27 L 19 24 L 19 23 L 18 23 L 14 23 L 13 23 L 13 24 L 13 27 L 6 27 L 6 5 z M 8 7 L 8 9 L 12 9 L 12 7 L 8 7 z M 14 7 L 14 9 L 18 9 L 18 7 L 14 7 z M 20 7 L 20 9 L 24 9 L 24 7 L 20 7 z M 8 11 L 8 13 L 12 13 L 12 11 L 8 11 z M 14 11 L 14 13 L 18 13 L 18 11 L 14 11 z M 20 11 L 20 13 L 24 13 L 24 11 L 20 11 z M 8 15 L 8 17 L 12 17 L 12 15 L 8 15 z M 14 15 L 14 17 L 18 17 L 18 15 L 14 15 z M 20 15 L 20 17 L 24 17 L 24 15 L 20 15 z M 8 19 L 8 21 L 12 21 L 12 19 L 8 19 z M 14 19 L 14 21 L 18 21 L 18 19 L 14 19 z M 20 19 L 20 21 L 24 21 L 24 19 L 20 19 z M 8 23 L 8 25 L 12 25 L 12 23 L 8 23 z M 20 23 L 20 25 L 24 25 L 24 23 L 20 23 z"/></svg>

After

Width:  |  Height:  |  Size: 891 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 28 3.03125 L 26.40625 4.1875 C 26.40625 4.1875 24.419288 5.6623555 21.5625 7.125 C 18.705712 8.5876445 14.989218 10 11.71875 10 L 3 10 L 2 10 L 2 11 L 2 19 L 2 19.125 L 2.03125 19.28125 L 4.03125 26.28125 L 4.25 27 L 5 27 L 9 27 L 10.3125 27 L 9.96875 25.71875 L 8.34375 20 L 11.71875 20 C 14.94439 20 18.662884 21.44286 21.53125 22.90625 C 24.399616 24.36964 26.40625 25.8125 26.40625 25.8125 L 28 26.96875 L 28 25 L 28 17.8125 C 29.155736 17.394273 30 16.291987 30 15 C 30 13.708013 29.155736 12.605727 28 12.1875 L 28 5 L 28 3.03125 z M 26 6.75 L 26 12 L 26 13 L 26 17 L 26 18 L 26 23.21875 C 25.17299 22.660572 24.515216 22.153764 22.4375 21.09375 C 19.499137 19.594649 15.707655 18.073248 12 18 L 12 12 C 15.743199 11.925334 19.539335 10.374829 22.46875 8.875 C 24.541526 7.8137614 25.179862 7.3083494 26 6.75 z M 4 12 L 10 12 L 10 18 L 4 18 L 4 12 z M 4.34375 20 L 6.25 20 L 7.65625 25 L 5.75 25 L 4.34375 20 z"/></svg>

After

Width:  |  Height:  |  Size: 996 B

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