Библа для отрисовки всякого на диод

есть 2 экзампла для i2c oled 128x32
- плеер с иконками
- вывод графиками синус и ЭКГ (не встроена пока в gfx библиотеку)
This commit is contained in:
2025-02-20 18:17:53 +03:00
parent d3b5b834c9
commit 6746b8355e
1209 changed files with 606687 additions and 0 deletions

View File

@@ -0,0 +1,1090 @@
/* Page Font Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap'); */
/* Code Font Import */
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap'); */
/* DARK COLORS, DEFAULT */
* {
--v-color-bg: #000;
--v-color-bg-main: #111;
--v-color-body-border: #222;
--v-color-border: #555;
--v-color-text: #ccc;
--v-color-list-mark: #71b686;
--v-color-block: #1a1a1a;
--v-color-block-border: #333;
--v-color-code-bg: #333;
--v-color-code-block-bg: #1c1c1c;
--v-color-code: #bbb;
--v-color-link: #298aba;
--v-color-link-visited: #cc0cc6;
--v-color-checkbox-bg: #4a72be;
--v-color-checkbox-mark: #fff;
--v-color-table-even: #222;
--v-color-table-odd: #1a1a1a;
--v-color-table-head: #333;
--v-color-table-head-text: #ddd;
--v-color-table-line: #666;
--v-color-quote: #a33811;
--v-color-quote-gradient: #222;
--v-color-quote-text: #aaa;
--v-color-menu-bg: #222;
--v-color-menu-select: #555;
--v-color-menu-text: #ccc;
--v-color-menu-shadow: #3c6f4b;
--v-color-header: #47b165;
--v-color-header-main: #47a3ea;
--v-color-header-text: #8cc5f1;
--v-color-button: #375f42;
--v-color-button-hover: #219c46;
--v-color-button-text: #fff;
}
/* LIGHT COLORS */
html[light-theme],
html[light-theme] * {
--v-color-bg: #fff;
--v-color-bg-main: #fbfbfb;
--v-color-body-border: #f2f2f2;
--v-color-border: #d0d0d0;
--v-color-text: #000;
--v-color-list-mark: #01b90a;
--v-color-block: #f5f5f5;
--v-color-block-border: #e8e8e8;
--v-color-code-bg: #f2f2f2;
--v-color-code-block-bg: #f5f5f5;
--v-color-code: #000;
--v-color-link: #185bed;
--v-color-link-visited: #cc0cc6;
--v-color-checkbox-bg: #2c75fc;
--v-color-checkbox-mark: #fff;
--v-color-table-even: #ededed;
--v-color-table-odd: #f4f4f4;
--v-color-table-head: #eaeaea;
--v-color-table-head-text: #348b4d;
--v-color-table-line: #bbb;
--v-color-quote: #ffa962;
--v-color-quote-gradient: #e8e8e8;
--v-color-quote-text: #444;
--v-color-menu-bg: #eee;
--v-color-menu-select: #ccc;
--v-color-menu-text: #555;
--v-color-menu-shadow: #acedbf;
--v-color-header: #2ba64e;
--v-color-header-main: #2699f1;
--v-color-header-text: #1b83d3;
--v-color-button: #69b57e;
--v-color-button-hover: #2cdc61;
--v-color-button-text: #fff;
}
* {
margin: 0;
padding: 0;
border-width: 0;
font: inherit;
font-size: 100%;
text-align: justify;
vertical-align: baseline;
box-sizing: border-box;
}
html {
font-family: 'Roboto', 'Fira Sans', 'Noto Sans', Arial, sans-serif;
line-height: 1.8em;
-webkit-text-size-adjust: 100%;
background-color: var(--v-color-bg);
color: var(--v-color-text);
}
body {
text-rendering: optimizeLegibility;
max-width: 58em;
margin: 0 auto;
/* padding: 0; */
/* border-style: solid; */
/* border-width: 2px; */
/* border-radius: 12px; */
/* border-color: var(--v-color-body-border); */
}
/* CONTENT */
p {
margin-bottom: 0.4em;
margin-top: 0.4em;
hyphens: auto;
}
a {
text-decoration: none;
color: var(--v-color-link);
}
a:visited {
color: var(--v-color-link-visited);
}
a img {
border: none
}
b,
strong {
font-weight: bold;
}
i,
em {
font-style: italic;
margin-right: 0.1em;
}
hr {
border-top: 2px solid var(--v-color-border);
margin: 1em 0;
}
/* CONTENT END */
/* HEADERS */
h1,
h2,
h3,
h4,
h5,
h6 {
display: flex;
justify-content: space-between;
text-align: left;
line-height: 1.2em;
margin-bottom: 0.5em;
margin-top: 1.5em;
color: var(--v-color-header);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
h1 a:visited,
h2 a:visited,
h3 a:visited,
h4 a:visited,
h5 a:visited,
h6 a:visited {
color: var(--v-color-header);
}
.toc-h::after {
font-size: 12px;
font-weight: normal;
font-style: normal;
width: 100px;
text-align: right;
color: var(--v-color-list-mark);
content: '1';
}
.toc-h:hover::after {
font-size: 28px;
content: '↑';
}
h2.toc-h::after {
content: '2';
}
h3.toc-h::after {
content: '3';
}
h4.toc-h::after {
content: '4';
}
h5.toc-h::after {
content: '5';
}
h6.toc-h::after {
content: '6';
}
h1 {
padding-bottom: 0.1em;
font-size: 1.8em;
border-bottom-width: 2px;
border-bottom-style: solid;
border-color: var(--v-color-border);
}
.caption {
display: block;
font-size: 2em;
margin: 0em;
margin-bottom: 1.5em;
padding: 0.25em;
text-align: center;
border-radius: 0;
/* background-image: linear-gradient(to top, var(--v-color-block-border) 0%, var(--v-color-bg) 100%); */
}
.caption::after {
content: none;
}
h2 {
font-weight: bold;
font-size: 1.5em;
}
h3 {
font-size: 1.5em;
}
h4 {
font-size: 1.2em;
font-weight: bold;
}
h5 {
font-weight: bold;
}
h6 {
font-style: italic;
}
/* HEADERS END */
/* BLOCKQUOTES */
blockquote {
display: block;
margin: 0.6em 0;
padding: 0.5em 0;
padding-left: 1em;
border-left: 0.2em solid var(--v-color-quote);
background-image: linear-gradient(to right, var(--v-color-quote-gradient) 0%, var(--v-color-bg-main) 100%);
color: var(--v-color-quote-text);
}
/* BLOCKQUOTES END */
/* IMAGES */
img {
max-width: 100%;
height: auto;
}
img,
embed {
vertical-align: middle;
max-width: 100%;
}
.div-img,
.div-embed {
text-align: center;
width: 100%;
border-style: solid;
border-width: 2px;
border-radius: 6px;
margin-top: 0.8em;
margin-bottom: 1em;
background-color: var(--v-color-block);
border-color: var(--v-color-block-border);
}
.div-img p,
.div-embed p {
text-align: center;
margin: 0;
padding: 0.4em 0;
font-size: 0.8em;
line-height: 1.4em;
/* font-style: italic; */
border-top: 1px solid var(--v-color-block-border);
}
.div-img a,
.div-embed a {
display: block;
width: 100%;
padding: 0.5em;
}
.div-img a *,
.div-embed a * {
display: block;
margin: 0 auto;
}
/* IMAGES END*/
/* LISTS */
ul,
ol {
margin-left: 2em;
margin-top: 0.25em;
margin-bottom: 0.25em;
list-style-position: outside;
}
ul {
list-style-type: disc;
}
ul ul {
list-style-type: circle;
}
ul ul ul {
list-style-type: square;
}
ul p,
ol p {
margin-bottom: 0;
}
ol ol > li {
counter-increment: ol2;
}
ol ol > li::marker {
content: counter(ol2)') ';
}
ol ol ol > li {
counter-increment: ol3;
}
ol ol ol > li::marker {
content: counter(ol3, lower-alpha)') ';
}
li::marker {
color: var(--v-color-list-mark);
}
/* LISTS END */
/* CODE */
code {
font-family: 'Fira Mono', monospace;
font-weight: normal;
display: inline;
border-style: solid;
border-width: 1px;
border-radius: .2em;
padding: 0.05em 0.3em;
background-color: var(--v-color-code-bg);
border-color: var(--v-color-border);
color: var(--v-color-code);
}
pre {
display: block;
background: transparent;
text-align: left;
padding: 0;
margin: 0.75em 0;
}
pre > code {
display: block;
width: 100%;
line-height: 1.5em;
border-width: 1px;
border-radius: 6px;
padding: 1.5em 1em;
background-color: var(--v-color-code-block-bg);
}
pre[class*=language-] {
overflow: auto;
scrollbar-width: thin;
background-color: var(--v-color-code-block-bg);
border: 1px solid var(--v-color-border);
border-radius: 6px;
box-shadow: none;
}
pre[class*=language-] > code {
border: 0;
padding: 0;
}
/* CODE END */
/* TODO LIST */
input[type="checkbox"] {
position: relative;
appearance: none;
background: var(--v-color-checkbox-bg);
width: 1.2em;
height: 1.2em;
border-radius: 0.2em;
margin: 0 0.35em 0.25em -1.6em;
vertical-align: middle;
}
input[type="checkbox"]:checked::before {
content: '✓';
color: var(--v-color-checkbox-mark);
font-size: 1.3em;
font-weight: bold;
position: absolute;
left: .05em;
top: -0.2em;
}
/* TODO LIST END */
/* TABLE */
table {
border-collapse: collapse;
border-spacing: 0;
margin: 0.8em auto 1em auto;
}
table th {
font-weight: bold;
color: var(--v-color-table-head-text);
}
table td,
table th {
border: 0;
text-align: left;
vertical-align: middle;
padding: 0.6em 1em;
font-size: .95em;
line-height: 1.5em;
}
table td {
border-left: 2px solid var(--v-color-bg);
}
table td:first-child {
border-left: 0;
}
thead tr {
background-color: var(--v-color-table-head);
}
tbody tr:nth-child(even) {
background-color: var(--v-color-table-even);
}
tbody tr:nth-child(odd) {
background-color: var(--v-color-table-odd);
}
table tr:first-child > td {
border-top: 4px solid var(--v-color-table-line);
}
/* TABLE END */
/* TOC */
.toc {
border-style: solid;
border-width: 2px;
border-radius: 6px;
padding: 1em;
margin: 2.5em 0;
background-color: var(--v-color-block);
border-color: var(--v-color-block-border);
}
.toc ul {
list-style-type: none;
}
ul.toc-h1 {
margin-left: 0;
}
ul.toc-h1 > li:first-child {
text-align: center;
margin-bottom: 1em;
font-size: 1.2em;
border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: var(--v-color-border);
}
ul.toc-h1 > li:first-child > a {
color: var(--v-color-header);
}
/* TOC END */
/* HEADER */
header {
background:
no-repeat left 0em center / 8em url(../img/_logo/logoR-square-opt.svg);
/* linear-gradient(to top, var(--v-color-bg), var(--v-color-body-border)); */
padding: 0.8em 1em;
padding-top: 1.8em;
padding-left: 8em;
}
header .site-name {
display: flex;
justify-content: space-between;
margin: 0;
}
header .site-name > a {
font-size: 2em;
line-height: 1em;
margin-top: -0.3em;
margin-bottom: 0.4em;
text-shadow: 0 0 0.15em var(--v-color-header);
}
header a,
header a:visited {
color: var(--v-color-header);
}
header p {
font-size: 0.8em;
line-height: 1.1em;
color: var(--v-color-header);
}
/* HEADER END */
/* FOOTER */
footer {
font-size: 0.8em;
color: var(--v-color-header);
line-height: 1.6em;
padding: 2em;
/* background:
linear-gradient(to bottom, var(--v-color-bg), var(--v-color-body-border)); */
}
footer p {
text-align: center;
/* margin: 0em 7em; */
color: var(--v-color-quote-text);
}
/* FOOTER END */
#main {
margin: 1em 0;
padding: 1em 3em;
border-radius: 20px;
background-color: var(--v-color-bg-main);
/* border: 1px solid var(--v-color-border); */
}
#sec-langs {
font-size: 1.5em;
margin: 0.2em 0;
}
#sec-langs * {
display: flex;
align-items: center;
padding: 0;
margin: 0;
color: var(--v-color-text);
}
#sec-langs ul {
height: 100%;
list-style: none;
}
#sec-langs ul li {
margin-left: 0.5em;
/* border: 1px solid var(--v-color-border); */
}
/* #sec-langs ul li a {
padding: 0.3em 0.4em;
} */
#sec-header {
margin-bottom: 3em;
}
#sec-header .caption {
border: 0;
color: var(--v-color-header-main);
/* background: var(--v-color-bg-main); */
margin: 0.5em 0;
margin-bottom: 1em;
}
#sec-header div {
/* border: 4px solid var(--v-color-border); */
padding: 0 15%;
color: var(--v-color-header-text);
}
#sec-header p {
text-align: center;
hyphens: none;
}
#sec-toc ul.toc-h1 > li:first-child {
border: inherit;
text-align: inherit;
margin-bottom: 0;
font-size: inherit;
}
#sec-toc ul.toc-h1 > li:first-child a {
color: var(--v-color-link);
}
#sec-images {
display: flex;
flex-direction: row;
overflow-x: auto;
scrollbar-width: thin;
scrollbar-color: var(--v-color-block-border) var(--v-color-bg-main);
}
#sec-images .div-img {
display: flex;
flex-direction: column;
background-color: inherit;
padding: 0 1em;
padding-bottom: 0.5em;
margin: 0;
margin-top: 0.5em;
border: 0;
border-radius: 0;
border-right: 1em dotted var(--v-color-block-border);
}
#sec-images .div-img:first-child {
padding-left: 0;
}
#sec-images .div-img:last-child {
padding-right: 0;
border: 0;
}
#sec-images .div-img img,
#sec-images .div-img embed {
min-width: 60vmin;
height: 40vmin;
object-fit: cover;
}
#sec-images a,
#sec-images p {
padding: 0;
}
#sec-images p {
flex-grow: 1;
padding: 0.5em;
border-color: var(--v-color-bg-main);
background-color: var(--v-color-block);
}
#sec-links {
text-align: center;
margin: 3em 0;
}
#sec-links p {
display: inline;
}
#sec-links p a {
display: inline-block;
padding: 0.7em;
margin: 0.25em 0.1em;
color: var(--v-color-button-text);
background-color: var(--v-color-button);
background-repeat: no-repeat;
background-size: 1.5em;
background-blend-mode: soft-light;
background-position: 0.8em center;
}
#sec-links p a:hover {
background-color: var(--v-color-button-hover);
}
#sec-links p a:active {
text-shadow: 0 0 0.8em black;
}
#sec-links .btn-download {
padding-left: 3em;
background-image: url(../img/_icons/download.svg);
}
#sec-links .btn-help {
padding-left: 3em;
background-image: url(../img/_icons/help.svg);
}
#sec-links .btn-info {
padding-left: 3em;
background-image: url(../img/_icons/info.svg);
}
#sec-links .btn-link {
padding-left: 3em;
background-image: url(../img/_icons/link.svg);
}
#sec-links .btn-source {
padding-left: 3em;
background-image: url(../img/_icons/src.svg);
}
#sec-links .btn-firmware {
padding-left: 3em;
background-image: url(../img/_icons/cpu.svg);
}
#sec-menu {
display: flex;
justify-content: center;
z-index: 512;
margin: 0;
border-radius: 5em;
color: var(--v-color-menu-text);
box-shadow: 0 0 1em var(--v-color-button);
}
#sec-menu p {
margin: 0;
}
#sec-menu a {
text-decoration: none;
color: var(--v-color-menu-text);
display: block;
}
#sec-menu ul {
margin: 0;
list-style: none;
}
#sec-menu li {
float: left;
}
#sec-menu input {
display: none;
}
#sec-menu label {
display: block;
padding: 0.3em 1em;
}
#sec-menu > label:first-of-type {
display: none;
}
#sec-menu label:hover {
background-color: var(--v-color-menu-select);
}
#sec-menu > ul li {
display: block;
}
#sec-menu > ul ul {
position: absolute;
left: calc(50% - 27em);
z-index: 512;
border: 1px solid var(--v-color-border);
width: 54em;
display: none;
margin: 0;
}
#sec-menu > ul ul li {
float: none;
margin: 0;
}
#sec-menu > ul ul li a {
border-right: none;
padding: 0.5em 1em;
width: calc(100% - 360px);
}
#sec-menu > ul ul li div {
height: 100%;
display: flex;
position: absolute;
right: 0;
top: 0;
}
#sec-menu > ul ul li img {
height: 240px;
width: 360px;
object-fit: cover;
display: none;
padding: 1em;
}
#sec-menu > ul ul:has(li img) {
min-height: 240px;
}
#sec-menu > ul ul li:hover img {
margin-top: auto;
margin-bottom: auto;
display: block;
}
#sec-menu > ul ul li a:hover {
background-image: linear-gradient(to right, var(--v-color-menu-select) 0%, var(--v-color-menu-bg) 100%);
}
#sec-menu > ul li:hover ul {
display: block;
background: var(--v-color-menu-bg);
}
#header-bottom {
display: flex;
justify-content: space-between;
margin: 0.5em 0;
margin-bottom: 1.5em;
padding: 0 2em;
border-radius: 5em;
box-shadow: 0 0 1em var(--v-color-menu-shadow);
}
#header-bottom #sec-menu {
padding-left: 0;
border-radius: 0;
box-shadow: none;
}
#sec-themes {
font-size: 1.5em;
margin: 0.2em;
display: flex;
align-items: center;
cursor: pointer;
}
@media screen and (max-width: 60em) {
#main {
border-radius: 0;
padding: 1em;
}
#sec-links p a {
width: 100%;
text-align: center;
font-size: medium;
padding-left: 3em;
padding-right: 3em;
}
#sec-links p:first-of-type a {
border-top-left-radius: 0.75em;
border-top-right-radius: 0.75em;
}
#sec-links p:last-of-type a {
border-bottom-left-radius: 0.75em;
border-bottom-right-radius: 0.75em;
}
#sec-menu {
justify-content: center;
margin: 0;
font-size: 1.2em;
box-shadow: none;
}
#main #sec-menu {
margin: 0;
position: inherit;
}
#sec-menu ul {
display: none;
width: calc(100vw - 2em);
background: var(--v-color-menu-bg);
}
#sec-menu label {
padding: 0.6em;
font-size: 1.2em;
font-weight: bold;
filter: brightness(0.8);
}
#sec-menu > label:first-of-type {
display: inherit;
}
#sec-menu > input:checked ~ label {
background: var(--v-color-menu-select);
}
#sec-menu > input:checked ~ ul {
display: block;
}
#sec-menu li {
float: none;
}
#sec-menu > ul li {
border: none;
}
#sec-menu > ul ul:has(li img) {
min-height: 0;
}
#sec-menu > ul li:hover a {
background: none;
}
#sec-menu > ul ul {
display: block;
position: static;
border: none;
width: 100%;
}
#sec-menu > ul ul li:hover img {
display: none;
}
#sec-menu > ul ul li a {
border: none;
padding: 1em 2em;
width: 100%;
}
#sec-menu > ul ul li a:hover {
background: var(--v-color-menu-select);
width: 100%;
}
#header-bottom {
display: flex;
justify-content: space-between;
margin: 0;
padding: 0 1em;
box-shadow: none;
}
#header-bottom #sec-menu {
max-width: 100%;
}
}
@media (pointer: none) and (orientation: portrait),
(pointer: coasre) and (orientation: portrait),
(pointer: none) and (orientation: landscape),
(pointer: coasre) and (orientation: landscape) {
body {
font-size: 90%;
line-height: 1.3em;
}
}
@media (pointer: none) and (orientation: landscape),
(pointer: coasre) and (orientation: landscape) {
#sec-links p a {
width: inherit;
text-align: inherit;
}
#sec-links p:first-child a,
#sec-links p:last-child a {
border-radius: 0;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,247 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="622"
height="532"
viewBox="0 0 622 532"
version="1.1"
id="svg1"
xml:space="preserve"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
sodipodi:docname="find.svg"
inkscape:export-filename="find.svg"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:clip-to-page="false"
inkscape:zoom="1.0814955"
inkscape:cx="272.77044"
inkscape:cy="215.90474"
inkscape:window-width="1920"
inkscape:window-height="1013"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg1" /><defs
id="defs1"><rect
x="143.05498"
y="164.64003"
width="37.461594"
height="37.405231"
id="rect4" /></defs><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"><image
width="622"
height="532"
preserveAspectRatio="none"
xlink:href="find.png"
id="image1"
x="0"
y="0" /><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3-57"
r="26.479837"
cy="153.24324"
cx="363.48044" /><path
style="fill:none;stroke:#ff7070;stroke-width:3.99874;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="M 476.49735,153.24326 586.69728,43.043331"
id="path5" /><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3-57-3"
r="26.479837"
cy="153.24324"
cx="476.49734" /><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3-52"
r="26.479837"
cy="153.24324"
cx="228.24718" /><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3"
r="26.479837"
cy="153.24324"
cx="136.71193" /><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3-2"
r="26.479837"
cy="286.51901"
cx="164.30063" /><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3-9"
r="26.479837"
cy="286.51901"
cx="401.56619" /><text
xml:space="preserve"
id="text4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="153.89174"
y="299.47083"><tspan
sodipodi:role="line"
id="tspan7"
x="153.89174"
y="299.47083"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">5</tspan></text><text
xml:space="preserve"
id="text4-2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="391.33963"
y="299.70782"><tspan
sodipodi:role="line"
id="tspan12"
x="391.33963"
y="299.70782"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">6</tspan></text><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3-9-3"
r="26.479837"
cy="393.92722"
cx="136.71193" /><text
xml:space="preserve"
id="text4-2-2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="126.48537"
y="407.11603"><tspan
sodipodi:role="line"
id="tspan12-0"
x="126.48537"
y="407.11603"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">7</tspan></text><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3-9-6"
r="26.479837"
cy="393.92722"
cx="207.44266" /><text
xml:space="preserve"
id="text4-2-0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="197.21609"
y="407.11603"><tspan
sodipodi:role="line"
id="tspan12-5"
x="197.21609"
y="407.11603"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">8</tspan></text><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3-9-5"
r="26.479837"
cy="393.92722"
cx="326.47476" /><text
xml:space="preserve"
id="text4-2-28"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="316.2482"
y="407.11603"><tspan
sodipodi:role="line"
id="tspan12-8"
x="316.2482"
y="407.11603"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">9</tspan></text><circle
style="fill:#ff4853;fill-opacity:1.0;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
id="path3-9-35"
r="26.479837"
cy="393.92786"
cx="476.4967" /><text
xml:space="preserve"
id="text4-2-9"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="475.35739"
y="407.11664"><tspan
sodipodi:role="line"
id="tspan12-9"
x="475.35739"
y="407.11664"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">10</tspan></text><text
xml:space="preserve"
id="text4-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="466.78122"
y="166.60522"><tspan
sodipodi:role="line"
id="tspan11"
x="466.78122"
y="166.60522"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">4</tspan></text><text
xml:space="preserve"
id="text4-0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="353.16275"
y="166.42291"><tspan
sodipodi:role="line"
id="tspan10"
x="353.16275"
y="166.42291"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">3</tspan></text><text
xml:space="preserve"
id="text4-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="218.28639"
y="166.6599"><tspan
sodipodi:role="line"
id="tspan9"
x="218.28639"
y="166.6599"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">2</tspan></text><text
xml:space="preserve"
id="text4-4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1.0;stroke:#ff7070;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="126.30309"
y="166.19505"><tspan
sodipodi:role="line"
id="tspan8"
x="126.30309"
y="166.19505"
style="fill-opacity:1.0;fill:#ffffff;stroke-opacity:1.0;stroke:#ff7070">1</tspan></text><path
style="fill:none;fill-opacity:1;stroke:#ff7070;stroke-width:3.99874016;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="M 363.48043,126.7634 V 82.755777"
id="path4-76"
sodipodi:nodetypes="cc" /><path
style="fill:none;fill-opacity:1;stroke:#ff7070;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="M 136.71193,126.7634 V 82.755777"
id="path4-76-1"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#ff7070;stroke-width:3.99874;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="M 8.0906486,82.755777 H 218.25795"
id="path1"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#ff7070;stroke-width:3.99874;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="m 238.15508,82.755777 250.6507,0"
id="path2"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#ff7070;stroke-width:3.99874;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="M 228.24718,126.7634 V 41.190858"
id="path4" /><path
style="fill:none;stroke:#ff7070;stroke-width:3.99874;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="M 110.23209,393.92722 H 49.93086"
id="path6" /><path
style="fill:none;stroke:#ff7070;stroke-width:3.99874;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="m 207.44266,420.40705 v 98.40161"
id="path7" /><path
style="fill:none;stroke:#ff7070;stroke-width:3.99874;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="m 326.47476,420.40705 v 56.01657"
id="path8" /><path
style="fill:none;stroke:#ff7070;stroke-width:3.99874;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
d="m 502.97659,393.92785 h 71.13609"
id="path9" /><text
xml:space="preserve"
style="font-size:13.3333px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';text-align:center;text-anchor:middle;fill:none;stroke:#ff7070;stroke-width:3.99874;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1.0"
x="326.47476"
y="393.92722"
id="text13"><tspan
sodipodi:role="line"
id="tspan13"
style="stroke-opacity:1.0;stroke:#ff7070" /></text></g></svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m14 5v6h-6"/><path d="m2 11c2.2548-11.849 9.0774-3.0082 12 0"/></g></svg>

After

Width:  |  Height:  |  Size: 349 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m2 5v6h6"/><path d="m14 11c-2.2548-11.849-9.0774-3.0082-12 0"/></g></svg>

After

Width:  |  Height:  |  Size: 349 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m8 2v12"/><path d="m6 12 2 2 2-2"/><path d="m6 4 2-2 2 2"/><path d="m14 8h-12"/><path d="m4 6-2 2 2 2"/><path d="m12 6 2 2-2 2"/></g></svg>

After

Width:  |  Height:  |  Size: 415 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m14 8-6 6-6-6"/><path d="m8 2v12"/></g></svg>

After

Width:  |  Height:  |  Size: 321 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m8 2-6 6 6 6"/><path d="m14 8h-12"/></g></svg>

After

Width:  |  Height:  |  Size: 322 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m8 2 6 6-6 6"/><path d="m2 8h12"/></g></svg>

After

Width:  |  Height:  |  Size: 320 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m14 2-6 6-6-6"/><path d="m14 8-6 6-6-6"/></g></svg>

After

Width:  |  Height:  |  Size: 327 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m14 2-6 6 6 6"/><path d="m8 2-6 6 6 6"/></g></svg>

After

Width:  |  Height:  |  Size: 326 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m2 2 6 6-6 6"/><path d="m8 2 6 6-6 6"/></g></svg>

After

Width:  |  Height:  |  Size: 325 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m2 14 6-6 6 6"/><path d="m2 8 6-6 6 6"/></g></svg>

After

Width:  |  Height:  |  Size: 326 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m13 7-5 5-5-5"/><path d="m8 2 2e-7 10"/><path d="m3 14h10"/></g></svg>

After

Width:  |  Height:  |  Size: 346 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m9 3-5 5 5 5"/><path d="m14 8-10-2e-7"/><path d="m2 13v-10"/></g></svg>

After

Width:  |  Height:  |  Size: 347 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m7 3 5 5-5 5"/><path d="m2 8 10-2e-7"/><path d="m14 13v-10"/></g></svg>

After

Width:  |  Height:  |  Size: 347 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m13 9-5-5-5 5"/><path d="m8 14 2e-7 -10"/><path d="m3 2h10"/></g></svg>

After

Width:  |  Height:  |  Size: 347 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m14 8-6-6-6 6"/><path d="m8 14v-12"/></g></svg>

After

Width:  |  Height:  |  Size: 323 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m2 14h5v-5l-1-1v-3l1-1v-2h-4v2l1 1v2l-2 2z"/><path d="m14 14h-5v-5l1-1v-3l-1-1v-2h4v2l-1 1v2l2 2z"/><path d="m7 4h2"/><path d="m7 10h2"/></g></svg>

After

Width:  |  Height:  |  Size: 423 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 760 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><circle cx="8" cy="8" r="6"/><path d="m12.243 3.7574-8.4853 8.4853"/></g></svg>

After

Width:  |  Height:  |  Size: 346 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m2 4 2 4-2 4"/><path d="m14 4-2 4 2 4"/><rect x="6" y="3" width="4" height="10"/></g></svg>

After

Width:  |  Height:  |  Size: 367 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m2 4 2 4-2 4"/><path d="m14 4-2 4 2 4"/><rect x="6" y="6" width="4" height="4"/><path d="m12 2-4 2-4-2"/><path d="m12 14-4-2-4 2"/></g></svg>

After

Width:  |  Height:  |  Size: 417 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m12 2-4 2-4-2"/><path d="m12 14-4-2-4 2"/><rect transform="rotate(90)" x="6" y="-13" width="4" height="10"/></g></svg>

After

Width:  |  Height:  |  Size: 394 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 796 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg width="14mm" height="14mm" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1 -1)" fill="none" stroke="#49d095" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0"><path d="m14 13h-4"/><path d="m2 6 8.58e-5 4.0226m5.8252 0.98608a3 3 0 0 1-3.326 1.9492 3 3 0 0 1-2.4992-2.9353m-7.39e-5 -4.031a3 3 0 0 1 2.5012-2.9499 3 3 0 0 1 3.3302 1.9667"/></g></svg>

After

Width:  |  Height:  |  Size: 455 B

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