초기 PM 소스 전체 업로드

This commit is contained in:
koj729
2026-06-12 17:14:03 +09:00
commit 4e33c9a02a
1769 changed files with 377797 additions and 0 deletions

84
views/index/css/reset.css Normal file
View File

@@ -0,0 +1,84 @@
@charset "utf-8";
/* Copyright Ⓒ Hanmaceng Corp. All Rights Reserved. */
/* 기술개발센터 김건우A 연구원 b25013@hanmaceng.co.kr */
/* 버전 히스토리 */
/* 2025-03-12 : -- reset.css 정의 */
/* 2025-03-19 : -- '여백 초기화'부분 수정 */
/* -- ↓ -- style -- ↓ -- */
/* 여백 초기화 ===== ===== ===== ===== ===== */
body,
div,
ul,
li,
dl,
dd,
dt,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
fieldset,
legend,
p,
select,
table,
th,
td,
tr,
textarea,
button,
form,
figure,
figcaption { margin: 0; padding: 0; line-height: 1; }
/* a 링크 초기화 ===== ===== ===== ===== ===== */
a { color: inherit; text-decoration: inherit; }
/* 폰트 스타일 초기화 (기울임) ===== ===== ===== ===== ===== */
em,
address { font-style: normal; }
/* 블릿기호 초기화 ===== ===== ===== ===== ===== */
ul,
li,
ol { list-style: none; }
/* 제목 태그 초기화 ===== ===== ===== ===== ===== */
h1,
h2,
h3,
h4,
h5,
h6 { font-size: inherit; font-weight: inherit; }
/* 버튼 초기화 ===== ===== ===== ===== ===== */
button, input { border: none; font: inherit; }
/* 테이블 테두리 초기화 ===== ===== ===== ===== ===== */
table { border-collapse: collapse; border-spacing: 0; }
/* 콜아웃 초기화 ===== ===== ===== ===== ===== */
blockquote,
q {quotes: none; }
/* 콜아웃 따옴표 초기화 ===== ===== ===== ===== ===== */
blockquote:before,
blockquote:after,
q:before,
q:after {content: '';content: none; }
/* box-sizing 초기화 ===== ===== ===== ===== ===== */
*,
*::before,
*::after { box-sizing: border-box; }
/* 요소 스타일 초기화 ===== ===== ===== ===== ===== */
article, aside, footer, header, nav, section { display: block; }

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,149 @@
@import url("/index/css/reset.css");
@import url("/index/css/system.css");
@import url("https://fonts.googleapis.com/css2?family=Aldrich&display=swap");
html {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-user-drag: none;
overflow-x: hidden;
}
body {
background-image: url(/index/img-jangheon/image__jangheon-background.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width: 100dvw;
height: 100dvh;
}
.header {
/* position: fixed;
display: flex;
justify-content: flex-start;
align-items: center;
width: 100dvw;
padding: 0.5rem 1rem;
min-height: 2.25rem;
max-height: 2.25rem;
top: 0;
background: rgba(17, 17, 17, 0.4);
-webkit-backdrop-filter: blur(0.5rem);
backdrop-filter: blur(0.5rem); */
background: rgba(17, 17, 17, 0.4);
-webkit-backdrop-filter: blur(0.5rem);
backdrop-filter: blur(0.5rem);
width: 100vw;
height: 2.25rem;
display: flex;
align-items: center;
padding: 0 1rem;
position: fixed;
z-index: 3;
top: 0;
pointer-events: all;
gap: 0.825rem;
}
.--logo__project-master {
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
font-family: "Aldrich";
color: #fff;
}
.header__logo {
height: 2.25rem;
}
.header__logo-img {
height: 2.25rem;
}
.main {
width: 100dvw;
position: absolute;
top: 2.25rem;
padding: 1rem;
}
.li-cover {
width: 30rem;
}
.main__project-list {
display: flex;
flex-direction: column;
gap: 1rem;
height: calc(100dvh - 4.5rem);
}
.main__project-item {
background: rgba(17, 17, 17, 0.4);
-webkit-backdrop-filter: blur(0.5rem);
backdrop-filter: blur(0.5rem);
padding: 0.875rem;
border-radius: 1rem;
color: #fff;
display: flex;
align-items: center;
gap: 0.5rem;
-moz-column-break-inside: avoid;
break-inside: avoid;
transition: all 0.125s ease-in-out;
/* width: 30rem; */
}
.main__project-item:hover {
cursor: pointer;
background: #fff;
color: #111;
}
.main__icon--s-icon__jangheon-symbol--aaa {
height: 1.25rem;
}
.main__project-label {
flex-grow: 1;
}
.footer {
position: fixed;
display: flex;
justify-content: space-between;
width: 100dvw;
padding: 0.5rem 1rem;
min-height: 2.25rem;
max-height: 2.25rem;
bottom: 0;
background: rgba(17, 17, 17, 0.4);
-webkit-backdrop-filter: blur(0.5rem);
backdrop-filter: blur(0.5rem);
}
.footer__manage {
display: flex;
align-items: center;
gap: 0.125rem;
}
.footer__manager {
color: #aaa;
}
.footer__debug {
color: #aaa;
text-decoration: underline;
font-size: 0.75rem;
font-weight: 300;
line-height: 1.25rem;
letter-spacing: -0.0175rem;
}
.footer__debug:hover {
color: #fff;
}
.footer__copyright {
display: flex;
gap: 0.5rem;
}
.footer__copyright-text {
color: #aaa;
min-width: -moz-fit-content;
min-width: fit-content;
}

View File

@@ -0,0 +1,253 @@
@charset "utf-8";
@import url("/index/css/reset.css");
@import url("/index/css/system.css");
@import url("https://fonts.googleapis.com/css2?family=Aldrich&display=swap");
.header {
position: fixed;
top: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #111;
height: 2.25rem;
width: 100vw;
padding: 0.5rem 1rem;
box-sizing: border-box;
}
.header__left {
display: flex;
align-items: center;
cursor: pointer;
}
.header__right {
display: flex;
align-items: center;
}
.btn-admin {
display: none;
color: #fff;
background-color: #1e5149;
border: 1px solid #4db251;
padding: 0.35rem 0.85rem;
border-radius: 4px;
font-size: 0.85rem;
font-weight: 600;
text-decoration: none;
transition: all 0.2s ease;
align-items: center;
gap: 6px;
}
.btn-admin:hover {
background-color: #193833;
border-color: #4db251;
box-shadow: 0 0 8px rgba(77, 178, 81, 0.4);
}
.--logo__project-master {
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
font-family: "Aldrich";
color: #fff;
}
.main {
position: relative;
display: flex;
}
.main__left,
.main__right {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 6rem;
padding-bottom: 2.25rem;
gap: 1rem;
}
.main__left {
position: relative;
background-image: url('/index/img-onpremise/img__sw-background.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
margin: 0;
height: 100vh;
overflow: hidden;
}
.main__left::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 40rem;
pointer-events: none;
background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(17, 17, 17, 0));
z-index: 0;
}
.main__right {
position: relative;
background-image: url('/index/img-onpremise/img__gpd-background.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
margin: 0;
height: 100vh;
overflow: hidden;
}
.main__right::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 40rem;
pointer-events: none;
background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(17, 17, 17, 0));
z-index: 0;
}
.main__title {
width: 40rem;
position: relative;
z-index: 1;
}
.main__list {
display: flex;
flex-direction: column;
flex-wrap: wrap;
gap: 1rem;
padding: 1rem 3rem;
width: 100%;
align-content: flex-start;
overflow-y: hidden;
overflow-x: auto;
height: 100%;
z-index: 0;
}
.main__list-item {
padding: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
background-color: #111111aa;
border-radius: 0.5rem;
border: 0.0625rem solid #444;
backdrop-filter: blur(0.5rem);
transition: all ease-in-out 0.2s;
flex: 1;
max-height: 3.5rem;
min-height: 3.5rem;
width: calc(50% - 0.5rem);
justify-content: space-between;
}
.main__list-item:hover {
cursor: pointer;
background-color: #111111ff;
border: 0.0625rem solid #777;
}
.main__list-item .wrap {
display: flex;
align-items: center;
gap: 0.5rem;
}
.main__list-item-label {
color: #fff;
font-size: 1.25rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.main__list-item .master{
color: #aaa;
font-size: 0.875rem;
font-weight: 300;
}
.footer {
position: fixed;
bottom: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #111111aa;
backdrop-filter: blur(0.5rem);
height: 2.25rem;
width: 100dvw;
padding: 0 1rem;
}
.footer__right {
display: flex;
align-items: center;
gap: 0.5rem;
}
.footer__copyright {
color: #aaa;
}
::-webkit-scrollbar {
width: 0.4rem;
height: 0.4rem;
}
::-webkit-scrollbar-thumb {
background-color: #777;
border-radius: 0.25rem;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
.icon {
width: 1rem;
height: 1rem;
flex-shrink: 0;
}
.btn-logout {
display: inline-flex;
color: #fff;
background-color: #8b0000;
border: 1px solid #ff4d4d;
padding: 0.35rem 0.85rem;
border-radius: 4px;
font-size: 0.85rem;
font-weight: 600;
text-decoration: none;
transition: all 0.2s ease;
align-items: center;
gap: 6px;
margin-left: 8px;
}
.btn-logout:hover {
background-color: #5f0000;
border-color: #ff4d4d;
box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
}

View File

@@ -0,0 +1,118 @@
@charset "utf-8";
@import url("/index/css/reset.css");
@import url("/index/css/system.css");
html {
user-select: none;
-webkit-user-select: none;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
}
/* 스크롤바 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
.--scrollbar::-webkit-scrollbar {
width: 0.5rem;
}
.--scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.--scrollbar::-webkit-scrollbar-thumb {
background-color: #aaa;
border: 0.125rem solid transparent;
border-radius: 0.25rem;
background-clip: padding-box;
}
.--scrollbar::-webkit-scrollbar-thumb:hover {
background-color: #777;
}
/* // 스크롤바 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
/* 컴포넌트 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
.--icon {
height: 1rem;
width: 1rem;
cursor: pointer;
}
.--selected {
background-color: var(--primary-lv-1);
outline: 0.0625rem solid var(--primary-lv-2);
box-shadow: 0 0.5rem 1.5rem -0.375rem rgba(0, 0, 0, 0.24);
}
.--selected .main__menu_list_item_text {
color: var(--primary-lv-6);
font-weight: 500;
}
.--button__xx-small {
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
border-radius: 0.25rem;
border: 0.0625rem solid var(--color-dahong-medium);
}
/* // 컴포넌트 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
/* 스타일 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
.main {
display: flex;
overflow: hidden;
}
.main__menu {
width: 24rem;
background-color: var(--primary-lv-0);
height: 100dvh;
border-right: 0.0625rem solid var(--primary-lv-2);
display: flex;
flex-direction: column;
}
.main__menu_head {
padding: 0.5rem 1rem;
background-color: var(--primary-lv-1);
color: var(--primary-lv-6);
border-bottom: 0.0625rem solid var(--primary-lv-2);
}
.main__menu_list {
padding-left: 0.5rem;
overflow-y: scroll;
flex-grow: 1;
}
.main__menu_list_item {
display: flex;
align-items: center;
padding: 0.5rem;
gap: 0.375rem;
border-radius: 0.25rem;
margin-right: 0.0625rem;
}
.main__menu_list_item:hover {
cursor: pointer;
background-color: var(--primary-lv-1);
}
.main__menu_list_item_text {
width: 0;
flex-grow: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.main__preview {
width: 100%;
background-color: #444;
}
/* // 스타일 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */

182
views/index/css/system.css Normal file
View File

@@ -0,0 +1,182 @@
@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* Copyright Ⓒ Hanmaceng Corp. All Rights Reserved. */
/* 기술개발센터 김건우A 연구원 b25013@hanmaceng.co.kr */
/* 버전 히스토리 */
/* 2025-03-17 : -- root.css 정의 */
/* 2025-03-19 : -- "root.css" → "system.css" 으로 이름 변경 */
/* 2025-03-20 : -- '컴포넌트 정의'부분 수정 */
/* 2025-03-20 : -- 'header'부분 수정 */
/* 2025-03-20 : -- '컴포넌트 정의' - 스크롤바 추가 */
/* 2025-03-25 : -- 'header'부분 수정 */
/* 2025-03-28 : -- '프라이머리컬러스케일' 추가 */
/* 2025-03-28 : -- 'header', 'footer' 리뉴얼 */
/* 2025-03-31 : -- 'main'부분 수정 */
/* 2025-03-31 : -- 'h2'정의 추가 */
/* 2025-04-15 : -- 전면 리뉴얼 */
/* -- ↓ -- style -- ↓ -- */
/* 색상 및 시스템 정의 ===== ===== ===== ===== ===== */
:root {
--color-red: #F21D0D;
--color-pink: #E8175E;
--color-magenta: #B92ED1;
--color-purple: #6D3DC2;
--color-navy: #4255bd;
--color-blue: #0D8DF2;
--color-cyan: #03AEFC;
--color-green: #4DB251;
--color-yellow: #FFBF00;
--color-orange: #FF9800;
--color-dahong: #FF3D00;
--color-brown: #A0705F;
--color-iron: #7F7F7F;
--color-steel: #688897;
--color-red-light: #FEE9E7;
--color-pink-light: #FDE8EF;
--color-magenta-light: #F8EBFB;
--color-purple-light: #F1ECF9;
--color-navy-light: #EDEEF9;
--color-blue-light: #E7F4FE;
--color-cyan-light: #E6F7FF;
--color-green-light: #EEF8EE;
--color-yellow-light: #FFF9E6;
--color-orange-light: #FFF5E6;
--color-dahong-light: #FFECE6;
--color-brown-light: #F6F1EF;
--color-iron-light: #F3F3F3;
--color-steel-light: #F0F4F5;
--color-red-medium: #FAA59E;
--color-pink-medium: #F6A2BF;
--color-magenta-medium: #E3ABEC;
--color-purple-medium: #C5B1E7;
--color-navy-medium: #B3BBE5;
--color-blue-medium: #9ED1FA;
--color-cyan-medium: #9ADFFE;
--color-green-medium: #B8E0B9;
--color-yellow-medium: #FFE599;
--color-orange-medium: #FFD699;
--color-dahong-medium: #FFB199;
--color-brown-medium: #D9C6BF;
--color-iron-medium: #CCCCCC;
--color-steel-medium: #C3CFD5;
/* 프라이머리컬러스케일 */
--primary-lv-0: #E9EEED;
--primary-lv-1: #D2DCDB;
--primary-lv-2: #A5B9B6;
--primary-lv-3: #789792;
--primary-lv-4: #4B746D;
--primary-lv-5: #35635C;
--primary-lv-6: #1E5149;
--primary-lv-7: #1B443D;
--primary-lv-8: #193833;
--primary-lv-9: #162A27;
}
/* 컴포넌트 정의 ===== ===== ===== ===== ===== */
/* 폰트 고정값 */
*, img {
user-select: none;
-webkit-user-drag: none;
}
html {
font-size: 1rem;
}
@media screen and (max-width: 1920px) {
html {
font-size: 0.8333333vw;
}
}
@media screen and (max-width: 1024px) {
html {
font-size: 1.3333333vw;
}
.main__list-item {
align-items: flex-start;
flex-direction: column;
gap: 0.125rem;
padding: 0.5rem;
}
.main__list-item .master {
padding-left: 1.5rem;
}
.main__list-item-label {
font-size: 1rem;
}
}
body {
font-family: 'Pretendard';
color: #111;
}
/* 한줄 강조 emphasize-20px */
h1 {
font-size: 1.25rem;
font-weight: 700;
line-height: 1.25rem;
letter-spacing: -0.0175rem;
}
/* 프로젝트 제목 project-title-16px */
h2 {
font-size: 1rem;
font-weight: 500;
line-height: 1.25rem;
letter-spacing: -0.0175rem;
}
/* 본문 제목 title-14px */
h3 {
font-size: 0.875rem;
font-weight: 500;
line-height: 1.25rem;
letter-spacing: -0.0175rem;
}
/* 본문 body-14px */
h4 {
font-size: 0.875rem;
font-weight: 300;
line-height: 1.25rem;
letter-spacing: -0.0175rem;
}
/* 알약형 capsule-12px */
h5 {
font-size: 0.75rem;
font-weight: 500;
line-height: 1.25rem;
letter-spacing: -0.0175rem;
}
/* 소본문 body-12px */
h6 {
font-size: 0.75rem;
font-weight: 300;
line-height: 1.25rem;
letter-spacing: -0.0175rem;
}
/* 주석 caption */
p {
font-size: 0.75rem;
font-weight: 300;
line-height: 1.25rem;
letter-spacing: -0.0175rem;
color: #777;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 MiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.07312 11.8203C7.41687 11.8203 6.87781 11.2812 6.87781 10.6133C6.87781 9.95703 7.41687 9.41797 8.07312 9.41797C8.74109 9.41797 9.28016 9.95703 9.28016 10.6133C9.28016 11.2812 8.74109 11.8203 8.07312 11.8203Z" fill="#777777"/>
</svg>

After

Width:  |  Height:  |  Size: 340 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.14437 12.5938C6.9725 12.5938 6.035 11.6562 6.035 10.4844C6.035 9.32812 6.9725 8.39062 8.14437 8.39062C9.30062 8.39062 10.2381 9.32812 10.2381 10.4844C10.2381 11.6562 9.30062 12.5938 8.14437 12.5938Z" fill="#8FA8A4"/>
</svg>

After

Width:  |  Height:  |  Size: 332 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.07312 11.8203C7.41687 11.8203 6.87781 11.2812 6.87781 10.6133C6.87781 9.95703 7.41687 9.41797 8.07312 9.41797C8.74109 9.41797 9.28016 9.95703 9.28016 10.6133C9.28016 11.2812 8.74109 11.8203 8.07312 11.8203Z" fill="#AAAAAA"/>
</svg>

After

Width:  |  Height:  |  Size: 340 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.07312 11.8203C7.41687 11.8203 6.87781 11.2812 6.87781 10.6133C6.87781 9.95703 7.41687 9.41797 8.07312 9.41797C8.74109 9.41797 9.28016 9.95703 9.28016 10.6133C9.28016 11.2812 8.74109 11.8203 8.07312 11.8203Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 338 B

View File

@@ -0,0 +1,10 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_538_1000)">
<path d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM13 17H11V15H13V17ZM13 13H11V7H13V13Z" fill="#AAAAAA"/>
</g>
<defs>
<clipPath id="clip0_538_1000">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 404 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 52 KiB

View File

@@ -0,0 +1,3 @@
<svg width="46" height="11" viewBox="0 0 46 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.066 0.787999H10.976C11.564 0.787999 12.166 0.942 12.67 1.376C13.174 1.796 13.496 2.482 13.496 3.28L13.468 3.91H11.676V3.182C11.676 2.776 11.564 2.622 11.41 2.496C11.27 2.37 11.018 2.286 10.752 2.286H3.29C3.024 2.286 2.772 2.37 2.632 2.496C2.478 2.622 2.366 2.776 2.366 3.182V7.606C2.366 8.012 2.478 8.18 2.632 8.306C2.772 8.432 3.024 8.502 3.29 8.502H10.752C11.018 8.502 11.27 8.432 11.41 8.306C11.564 8.18 11.676 8.012 11.676 7.606C11.676 7.606 11.676 7.172 11.676 6.542H6.986V5.044H13.468L13.496 7.522C13.496 8.306 13.16 8.992 12.67 9.426C12.166 9.846 11.564 10 10.976 10H3.066C2.492 10 1.876 9.846 1.372 9.426C0.882 8.992 0.56 8.306 0.56 7.522V3.28C0.56 2.482 0.882 1.796 1.372 1.376C1.876 0.942 2.492 0.787999 3.066 0.787999ZM17.275 0.787999H24.191C24.765 0.787999 25.381 0.942 25.885 1.376C26.347 1.754 26.655 2.384 26.697 3.098H24.877C24.863 2.748 24.765 2.608 24.625 2.496C24.471 2.37 24.233 2.286 23.967 2.286H17.499C17.233 2.286 16.981 2.37 16.841 2.496C16.687 2.622 16.575 2.776 16.575 3.182V3.658C16.575 4.064 16.687 4.218 16.841 4.344C16.981 4.47 17.233 4.554 17.499 4.554H24.471C25.045 4.554 25.661 4.722 26.165 5.142C26.655 5.562 26.977 6.248 26.977 7.046V7.522C26.963 8.306 26.655 8.992 26.151 9.426C25.647 9.846 25.045 10.014 24.457 10.014H17.275C16.687 10.014 16.085 9.846 15.581 9.426C15.091 8.992 14.769 8.306 14.769 7.522V7.242H16.575C16.575 7.424 16.575 7.606 16.575 7.606C16.575 8.012 16.687 8.18 16.841 8.306C16.981 8.432 17.233 8.502 17.499 8.502H24.233C24.499 8.502 24.751 8.432 24.891 8.306C25.045 8.18 25.157 8.012 25.157 7.606C25.157 7.606 25.157 7.074 25.157 6.794C25.129 6.5 25.031 6.374 24.905 6.262C24.751 6.136 24.513 6.052 24.247 6.052H17.275C16.701 6.052 16.085 5.884 15.581 5.464C15.105 5.058 14.783 4.4 14.769 3.63V3.28C14.769 2.482 15.091 1.796 15.581 1.376C16.085 0.942 16.701 0.787999 17.275 0.787999ZM28.344 0.787999H30.15V10H28.344V0.787999ZM31.8505 0.787999H33.5165L38.7805 8.082L44.0305 0.787999H45.7105V10H43.9045V3.91L39.5365 10H38.0245L33.6565 3.91V10H31.8505V0.787999Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,10 @@
<svg width="74" height="20" viewBox="0 0 74 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.67944 5.44019C6.19415 5.60666 5.73957 6.04067 5.31571 6.58764C5.1007 6.86708 1.5255 12.967 1.29822 13.2821C0.425916 14.4653 -0.0348057 14.2334 0.00205204 14.5069C0.0389098 14.7804 1.4395 14.9884 2.30566 14.5842C2.76638 14.3701 3.29468 14.0015 3.69397 13.4189C3.89669 13.1275 7.47803 7.03355 7.71146 6.72439C8.60219 5.5591 9.03219 5.77313 9.00762 5.49964C8.98305 5.22615 7.55174 5.07158 6.6733 5.44019" fill="#AAAAAA"/>
<path d="M14.0505 5.44074C13.5652 5.60721 13.1107 6.04123 12.6868 6.5882C12.4718 6.86763 8.90273 12.9735 8.6693 13.2827C7.77243 14.448 7.30556 14.2399 7.37313 14.5074C7.44685 14.7988 8.8413 14.9355 9.67674 14.5847C10.1436 14.3885 10.6535 14.0021 11.065 13.4194C11.2678 13.1281 14.8491 7.0341 15.0825 6.72494C15.9733 5.55965 16.4463 5.76774 16.3787 5.5002C16.2988 5.19104 14.9228 5.06024 14.0444 5.44074" fill="#AAAAAA"/>
<path d="M7.63145 10.6726C7.2383 10.7143 6.91887 10.5597 6.73458 10.417C6.73458 10.417 6.73458 10.417 6.72844 10.417C5.83771 11.9212 5.10055 13.1697 4.98384 13.3124C4.09311 14.4777 3.65082 14.2636 3.68768 14.5371C3.73068 14.8403 5.16813 15.0068 6.00971 14.6144C6.47043 14.3944 6.97416 14.0258 7.38573 13.4491C7.47788 13.3183 8.2396 12.0639 9.09962 10.6072C9.00133 10.5597 8.87233 10.4883 8.70033 10.4646C8.22118 10.411 7.88331 10.6726 7.63145 10.6726Z" fill="#AAAAAA"/>
<path d="M10.3647 5.441C9.87944 5.60747 9.42486 6.04148 9.00099 6.58846C8.90885 6.71331 8.09798 8.08669 7.28711 9.44818C7.39768 9.54331 7.66797 9.60276 7.88298 9.60276C8.15941 9.60276 8.41127 9.45412 8.49113 9.4244C8.63856 9.37683 8.98257 9.32333 9.302 9.43629C9.41872 9.47791 9.56 9.56709 9.66443 9.62059C10.4937 8.22343 11.2985 6.86194 11.4029 6.7252C12.2998 5.55991 12.7728 5.76205 12.6991 5.50046C12.6131 5.20319 11.2309 5.04861 10.3647 5.441Z" fill="#AAAAAA"/>
<path d="M24.7522 5.55908C24.875 5.67799 24.9057 5.84446 24.8627 6.05849C25.2129 6.07633 25.563 6.07633 25.9132 6.05849C26.2572 6.04065 26.6135 6.01093 26.9882 5.96336C27.3568 5.9158 27.5411 6.12389 27.5288 6.59357C27.5226 7.05731 27.3568 7.25945 27.0373 7.2C26.8776 7.17027 26.7179 7.15244 26.5582 7.15244C26.3985 7.15244 26.2265 7.17027 26.0545 7.2C26.1343 7.29513 26.208 7.41998 26.2695 7.58645C26.3309 7.74697 26.3677 7.91939 26.3677 8.08586C26.3677 8.56743 26.1773 9.03712 25.7903 9.49491C25.4033 9.9527 24.8566 10.1846 24.1501 10.1846C23.4437 10.1846 22.9338 9.9646 22.5223 9.53058C22.1107 9.09657 21.908 8.62689 21.908 8.13342C21.908 7.96101 21.9387 7.78265 22.0062 7.59834C22.0677 7.41403 22.1353 7.27729 22.1967 7.2C22.0861 7.15244 21.9202 7.1346 21.7052 7.14055C21.4902 7.14649 21.306 7.17027 21.1647 7.2C20.8759 7.25945 20.7285 7.05731 20.7285 6.58168C20.7285 6.10605 20.8882 5.90391 21.2077 5.96336C21.5578 6.02282 21.9202 6.05849 22.295 6.07038C22.6635 6.07633 23.0444 6.07038 23.4253 6.05849C23.4068 5.82662 23.4498 5.6542 23.5604 5.54719C23.6648 5.44017 23.8614 5.38666 24.1501 5.38666C24.4389 5.38666 24.6416 5.44612 24.7644 5.55908H24.7522ZM22.7618 12.6222C22.7803 12.8957 22.7925 13.1097 22.811 13.2643C23.0997 13.3118 23.5358 13.3356 24.1256 13.3475C24.7091 13.3535 25.3726 13.3594 26.1159 13.3594C26.8592 13.3594 27.7131 13.3535 28.6345 13.3356C29.5559 13.3178 30.2194 13.2999 30.6248 13.2643C30.9934 13.2345 31.1777 13.4486 31.1777 13.9064C31.1777 14.3642 30.9934 14.5782 30.6248 14.5485C30.2255 14.5187 29.5989 14.495 28.7451 14.4771C27.8912 14.4593 27.0189 14.4533 26.1159 14.4533C25.2129 14.4533 24.4389 14.4652 23.7447 14.489C23.0506 14.5128 22.51 14.5366 22.1414 14.5723C21.8035 14.602 21.521 14.5425 21.2998 14.3879C21.0725 14.2334 21.0049 13.9539 21.0848 13.5497C21.1462 13.2405 21.1831 12.9432 21.1831 12.6638C21.1831 12.3844 21.1524 12.0811 21.0848 11.7542C21.0172 11.3974 21.3182 11.2191 21.9755 11.2191C22.6328 11.2191 22.9215 11.3974 22.8417 11.7542C22.7803 12.0633 22.7557 12.3546 22.768 12.6281L22.7618 12.6222ZM23.4744 7.31891C23.2901 7.49132 23.198 7.70536 23.198 7.9729C23.198 8.2226 23.2901 8.43664 23.4744 8.615C23.6587 8.79336 23.8799 8.88254 24.1379 8.88254C24.3959 8.88254 24.617 8.79336 24.8013 8.615C24.9856 8.43664 25.0777 8.2226 25.0777 7.9729C25.0777 7.7113 24.9856 7.49132 24.8013 7.31891C24.617 7.14649 24.3959 7.06326 24.1379 7.06326C23.8799 7.06326 23.6587 7.14649 23.4744 7.31891ZM30.8337 6.26658C30.8152 6.51628 30.8091 6.72437 30.8091 6.89679C30.8091 7.0038 30.932 7.0692 31.1715 7.08109C31.4111 7.09893 31.62 7.07515 31.7981 7.00975C32.1483 6.8849 32.3264 7.10487 32.3264 7.67563C32.3264 8.24638 32.1483 8.49014 31.7981 8.41285C31.6077 8.36529 31.3927 8.32962 31.1593 8.29395C30.9258 8.26422 30.8091 8.29989 30.8091 8.41285C30.8091 8.64472 30.8152 9.07874 30.8337 9.70894C30.8521 10.3392 30.8767 10.7791 30.9074 11.0288C30.9565 11.3736 30.6678 11.5401 30.0535 11.5401C29.4392 11.5401 29.1444 11.3677 29.1751 11.0288C29.2058 10.6721 29.2365 10.1846 29.2611 9.5722C29.2857 8.95983 29.2979 8.47825 29.2979 8.13937C29.2979 7.80048 29.2857 7.34863 29.2611 6.83139C29.2365 6.32009 29.2058 5.89202 29.1751 5.54719C29.1444 5.19047 29.4331 5.0121 30.0535 5.024C30.674 5.02994 30.9565 5.2083 30.9074 5.54719C30.8767 5.77906 30.8521 6.02282 30.8337 6.27252V6.26658Z" fill="#AAAAAA"/>
<path d="M39.6671 5.77778C39.8453 5.9502 39.9067 6.18207 39.8575 6.47933C39.8268 6.72904 39.7961 6.95496 39.7715 7.169C39.747 7.37708 39.7347 7.56734 39.7347 7.73975C39.7347 7.94189 39.747 8.13215 39.7715 8.31051C39.7961 8.48887 39.8207 8.7029 39.8575 8.95261C39.9067 9.24987 39.8391 9.51147 39.6671 9.74334C39.489 9.97521 39.2064 10.0644 38.8255 9.99899C38.5859 9.96926 38.3341 9.93954 38.0761 9.91576C37.8181 9.89197 37.5785 9.88008 37.3512 9.88008C37.1424 9.88008 36.9151 9.89197 36.6632 9.91576C36.4113 9.93954 36.1718 9.96926 35.926 9.99899C35.5698 10.0466 35.2995 9.96926 35.109 9.76712C34.9186 9.56498 34.851 9.2796 34.9186 8.90504C34.9493 8.65534 34.98 8.4413 35.0046 8.25105C35.0292 8.06675 35.0415 7.89433 35.0415 7.73975C35.0415 7.47816 35.0292 7.25818 35.0046 7.08576C34.98 6.91335 34.9493 6.72309 34.9186 6.50312C34.8695 6.24152 34.937 6.0037 35.1213 5.80156C35.3056 5.59942 35.5759 5.52213 35.926 5.56969C36.1656 5.59942 36.4113 5.62915 36.6632 5.65293C36.9151 5.67671 37.1424 5.6886 37.3512 5.6886C37.5785 5.6886 37.8242 5.67671 38.1007 5.65293C38.3709 5.62915 38.6535 5.60536 38.9422 5.56969C39.2494 5.53997 39.489 5.61131 39.6671 5.77778ZM44.8948 11.0573C45.1712 11.2535 45.2633 11.5507 45.1835 11.9491C45.1528 12.1572 45.1221 12.3831 45.0975 12.6328C45.0729 12.8825 45.0606 13.0906 45.0606 13.263C45.0606 13.4176 45.0729 13.6138 45.0975 13.8456C45.1221 14.0775 45.1466 14.2915 45.1835 14.4759C45.2633 14.8147 44.9746 14.9931 44.3173 14.999C43.66 15.005 43.359 14.8088 43.4266 14.4045C43.4573 14.2024 43.488 13.9824 43.5126 13.7505C43.5372 13.5186 43.5495 13.2987 43.5495 13.0965C43.5495 13.0014 43.5495 12.8765 43.5372 12.722C43.531 12.5674 43.4942 12.4485 43.4266 12.3712C43.3775 12.2939 42.9167 12.2523 42.0383 12.2404C41.166 12.2344 40.4657 12.2285 39.9558 12.2285C39.446 12.2285 38.6535 12.2404 37.5969 12.2642C36.5342 12.288 35.8523 12.3177 35.5513 12.3474C35.195 12.395 35.023 12.1393 35.023 11.5923C35.023 11.0454 35.2012 10.7778 35.5513 10.8135C36.0673 10.8432 36.7983 10.873 37.7566 10.8967C38.7149 10.9205 39.489 10.9324 40.0848 10.9324C40.6807 10.9324 41.4056 10.9205 42.2164 10.8967C43.0273 10.873 43.617 10.8492 43.9856 10.8135C44.3235 10.7838 44.6306 10.8611 44.9009 11.0573H44.8948ZM36.4052 7.79326C36.3991 8.1916 36.4236 8.41752 36.4912 8.48292C36.5711 8.54238 36.8413 8.58994 37.2959 8.61372C37.7505 8.6375 38.0208 8.60183 38.1007 8.5067C38.1805 8.42941 38.2235 8.18565 38.2235 7.78137C38.2235 7.37708 38.1805 7.14521 38.1007 7.07982C38.0392 7.02036 37.7689 6.97874 37.2959 6.96091C36.8229 6.94307 36.5588 6.97874 36.5158 7.05603C36.4482 7.15116 36.4175 7.39492 36.4052 7.79326ZM42.5359 6.15828C42.5174 6.33664 42.5113 6.49122 42.5113 6.61013C42.5113 6.70526 42.6833 6.75282 43.0273 6.75282C43.3713 6.75282 43.5433 6.70526 43.5433 6.61013C43.5433 6.45555 43.5372 6.28314 43.5187 6.09883C43.5003 5.91452 43.4757 5.72427 43.445 5.53997C43.3959 5.18324 43.6785 5.00488 44.2866 5.00488C44.8948 5.00488 45.1835 5.18324 45.1528 5.53997C45.122 5.92641 45.0975 6.29503 45.079 6.63391C45.0606 6.9728 45.0545 7.29979 45.0545 7.6149C45.0545 7.93 45.0606 8.26294 45.079 8.63156C45.0975 8.99422 45.122 9.40445 45.1528 9.8563C45.1835 10.2011 44.8948 10.3676 44.2743 10.3676C43.6539 10.3676 43.3652 10.1952 43.3959 9.8563C43.4266 9.52931 43.4573 9.24393 43.4942 9.00611C43.5249 8.76235 43.5433 8.49481 43.5433 8.20349C43.5433 8.10836 43.3713 8.0608 43.0273 8.0608C42.6833 8.0608 42.5113 8.10836 42.5113 8.20349C42.5113 8.4532 42.5113 8.69696 42.5236 8.94072C42.5297 9.18448 42.5543 9.4758 42.585 9.81468C42.6157 10.1595 42.3331 10.326 41.7434 10.326C41.1537 10.326 40.865 10.1536 40.9018 9.81468C40.9326 9.46985 40.9571 9.11313 40.9756 8.74452C40.9878 8.36996 41.0001 7.97162 41.0001 7.54355C41.0001 7.11549 40.994 6.74688 40.9756 6.44961C40.9571 6.15828 40.9326 5.87291 40.9018 5.59347C40.8527 5.23675 41.1353 5.05839 41.7434 5.05839C42.3516 5.05839 42.6342 5.23675 42.585 5.59347C42.5666 5.79562 42.5543 5.98587 42.5359 6.16423V6.15828Z" fill="#AAAAAA"/>
<path d="M54.1397 5.85019C54.3793 5.99288 54.4776 6.23664 54.4468 6.59336C54.4161 6.97981 54.3916 7.38409 54.3731 7.79432C54.3547 8.20455 54.3486 8.63856 54.3486 9.09041C54.3486 9.54226 54.3547 9.97627 54.3731 10.44C54.3916 10.9037 54.4161 11.3675 54.4468 11.8134C54.4776 12.1582 54.195 12.3247 53.593 12.3247C52.991 12.3247 52.7022 12.1523 52.7391 11.8134C52.7882 11.2843 52.8128 10.8027 52.8251 10.3687C52.8312 9.93465 52.8374 9.51253 52.8374 9.10825C52.8374 8.70396 52.8374 8.30562 52.8251 7.91917C52.819 7.53273 52.7698 7.29491 52.69 7.21762C52.6224 7.15817 52.4381 7.1225 52.1248 7.11061C51.8115 7.10466 51.4675 7.09871 51.0989 7.09871C50.6996 7.09871 50.3372 7.10466 50.0116 7.1225C49.6922 7.14033 49.3789 7.16411 49.0718 7.19384C48.7155 7.2414 48.5435 6.9917 48.5435 6.44472C48.5435 5.89775 48.7216 5.65399 49.0718 5.70155C49.3789 5.73128 49.7168 5.75506 50.0976 5.7729C50.4723 5.79073 50.8594 5.79668 51.2402 5.79668C51.6211 5.79668 52.0019 5.79073 52.3705 5.7729C52.7391 5.75506 53.0524 5.73128 53.3042 5.70155C53.6237 5.65399 53.9001 5.70155 54.1335 5.84424L54.1397 5.85019ZM58.6179 6.67659C58.5995 7.00953 58.5933 7.31275 58.5933 7.57434C58.5933 7.68136 58.7162 7.73487 58.9558 7.72298C59.1953 7.71703 59.4042 7.68731 59.5823 7.63974C59.9509 7.54462 60.1352 7.75865 60.1229 8.28184C60.1168 8.80503 59.9325 9.02501 59.5823 8.94772C59.3919 8.90016 59.1769 8.87043 58.9435 8.8526C58.71 8.83476 58.5933 8.88232 58.5933 8.99529C58.5933 9.89898 58.5995 10.7848 58.6179 11.6648C58.6363 12.5447 58.6609 13.4305 58.6916 14.3342C58.71 14.6731 58.4213 14.8455 57.8378 14.8455C57.2542 14.8455 56.9655 14.6731 56.9839 14.3342C57.0146 13.6327 57.0392 12.8954 57.0576 12.1166C57.076 11.3378 57.0822 10.6005 57.0822 9.89898C57.0822 9.19743 57.076 8.47209 57.0576 7.71703C57.0392 6.96197 57.0146 6.23664 56.9839 5.53508C56.9655 5.17836 57.2542 5 57.85 5C58.4459 5 58.7223 5.17836 58.6916 5.53508C58.6609 5.9572 58.6363 6.33176 58.6179 6.6647V6.67659Z" fill="#AAAAAA"/>
<path d="M74.0003 10.12C74.0003 10.5837 73.816 10.8096 73.4474 10.7977C72.612 10.768 71.752 10.7442 70.8674 10.7264C69.9828 10.7086 69.0982 10.7026 68.2136 10.7026C67.329 10.7026 66.4567 10.7086 65.5967 10.7264C64.7367 10.7442 63.8583 10.768 62.9614 10.7977C62.6051 10.8156 62.4331 10.5897 62.4331 10.1319C62.4331 9.67407 62.6113 9.4541 62.9614 9.46599C63.7661 9.49571 64.7121 9.53733 65.8056 9.58489C66.899 9.63246 67.4458 9.60868 67.4458 9.51355V9.26979C67.4458 9.19844 67.4273 9.09737 67.3966 8.95469C67.3352 8.64553 67.5993 8.49095 68.2013 8.49095C68.8033 8.49095 69.0736 8.64553 69.0061 8.95469C68.9876 9.10926 68.9754 9.22223 68.9692 9.29357C68.9631 9.36492 68.9569 9.43626 68.9569 9.51355C68.9569 9.60868 69.5405 9.63246 70.7138 9.58489C71.8871 9.53733 72.7963 9.50166 73.4351 9.46599C73.8037 9.43626 73.988 9.65029 73.988 10.12H74.0003ZM73.5641 6.19009C73.5641 6.63599 73.3799 6.84408 73.0113 6.83219C72.5628 6.80246 71.8687 6.76084 70.9411 6.71328C70.0074 6.66572 69.6449 6.67166 69.8538 6.73706C70.4005 6.89164 70.935 7.04028 71.4571 7.18297C71.9793 7.32565 72.4891 7.4624 72.9867 7.60509C73.3737 7.7121 73.4904 7.9737 73.3491 8.38393C73.2017 8.79416 72.9744 8.94874 72.6488 8.83578C71.9117 8.60391 71.021 8.33637 69.9767 8.04504C68.9324 7.74778 68.3303 7.59914 68.1706 7.59914C68.0109 7.59914 67.4212 7.74778 66.4015 8.05099C65.3817 8.3542 64.5094 8.62174 63.7846 8.85361C63.4651 8.96063 63.2194 8.81794 63.0474 8.4196C62.8754 8.02126 63.0044 7.76561 63.4221 7.64076C63.9688 7.46834 64.5094 7.30782 65.05 7.16513C65.5906 7.0165 66.0882 6.87381 66.555 6.73112C66.7823 6.65383 66.4322 6.64194 65.5046 6.69545C64.5831 6.74895 63.8644 6.79057 63.3484 6.82624C62.9921 6.84408 62.8201 6.63005 62.8201 6.18414C62.8201 5.73824 62.9983 5.53015 63.3484 5.54204C64.1347 5.57177 64.9394 5.59555 65.7564 5.61339C66.5735 5.63123 67.3782 5.63717 68.1645 5.63717C68.9508 5.63717 69.7617 5.63123 70.5848 5.61339C71.4141 5.59555 72.2188 5.57177 73.0051 5.54204C73.3737 5.52421 73.558 5.73824 73.558 6.18414L73.5641 6.19009ZM73.0973 11.4042C73.3614 11.5944 73.4536 11.8798 73.3737 12.2663C73.343 12.4684 73.3123 12.6468 73.2877 12.8132C73.2631 12.9797 73.2508 13.1462 73.2508 13.3126C73.2508 13.4672 73.2631 13.6456 73.2877 13.8477C73.3123 14.0499 73.3369 14.2461 73.3737 14.4304C73.4536 14.7693 73.171 14.9476 72.5198 14.9536C71.8687 14.9595 71.5738 14.7633 71.6414 14.359C71.6721 14.1569 71.6967 13.9845 71.7151 13.8358C71.7335 13.6872 71.7397 13.5148 71.7397 13.3126C71.7397 13.2175 71.7397 13.1164 71.7274 13.0094C71.7213 12.9024 71.6844 12.8073 71.6168 12.73C71.5677 12.6527 71.1192 12.6111 70.2654 12.5992C69.4115 12.5932 68.7296 12.5873 68.2198 12.5873C67.7099 12.5873 66.8437 12.5992 65.6274 12.623C64.4173 12.6468 63.6556 12.6765 63.3484 12.7062C62.9921 12.7538 62.8201 12.4981 62.8201 11.9511C62.8201 11.4042 62.9983 11.1366 63.3484 11.1723C63.8644 11.202 64.6753 11.2318 65.781 11.2555C66.8868 11.2793 67.7406 11.2912 68.3365 11.2912C68.9324 11.2912 69.6572 11.2793 70.4681 11.2555C71.279 11.2318 71.8625 11.208 72.2127 11.1723C72.5321 11.1426 72.827 11.2199 73.0911 11.4101L73.0973 11.4042Z" fill="#AAAAAA"/>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.5 8V6.8H10.5V8H5.5ZM5.5 5.6V4.4H10.5V5.6H5.5ZM4.25 9.2H8.9375C9.23958 9.2 9.52083 9.2624 9.78125 9.3872C10.0417 9.5124 10.2604 9.69 10.4375 9.92L11.75 11.57V3.2H4.25V9.2ZM4.25 12.8H11.1562L9.45312 10.655C9.39062 10.575 9.31521 10.5126 9.22688 10.4678C9.13813 10.4226 9.04167 10.4 8.9375 10.4H4.25V12.8ZM11.75 14H4.25C3.90625 14 3.61208 13.8826 3.3675 13.6478C3.1225 13.4126 3 13.13 3 12.8V3.2C3 2.87 3.1225 2.5874 3.3675 2.3522C3.61208 2.1174 3.90625 2 4.25 2H11.75C12.0938 2 12.3881 2.1174 12.6331 2.3522C12.8777 2.5874 13 2.87 13 3.2V12.8C13 13.13 12.8777 13.4126 12.6331 13.6478C12.3881 13.8826 12.0938 14 11.75 14Z" fill="#8FA8A4"/>
</svg>

After

Width:  |  Height:  |  Size: 752 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.33301 12.6673V8.66732H3.33301V7.33399H7.33301V3.33398H8.66634V7.33399H12.6663V8.66732H8.66634V12.6673H7.33301Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 242 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.99967 9.66732C2.53301 9.66732 2.13856 9.50621 1.81634 9.18398C1.49412 8.86176 1.33301 8.46732 1.33301 8.00065C1.33301 7.53398 1.49412 7.13954 1.81634 6.81732C2.13856 6.4951 2.53301 6.33398 2.99967 6.33398C3.34412 6.33398 3.65523 6.42843 3.93301 6.61732C4.21079 6.80621 4.41079 7.0451 4.53301 7.33398H14.6663V8.66732H4.53301C4.41079 8.95621 4.21079 9.1951 3.93301 9.38398C3.65523 9.57287 3.34412 9.66732 2.99967 9.66732Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 551 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1486_25703)">
<path d="M11.3335 2H4.66683C3.9335 2 3.34016 2.6 3.34016 3.33333L3.3335 14L8.00016 12L12.6668 14V3.33333C12.6668 2.6 12.0668 2 11.3335 2ZM11.3335 12L8.00016 10.5467L4.66683 12V3.33333H11.3335V12Z" fill="#8FA8A4"/>
</g>
<defs>
<clipPath id="clip0_1486_25703">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 465 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1486_25699)">
<path d="M11.3335 2H4.66683C3.9335 2 3.34016 2.6 3.34016 3.33333L3.3335 14L8.00016 12L12.6668 14V3.33333C12.6668 2.6 12.0668 2 11.3335 2Z" fill="#1E5149"/>
</g>
<defs>
<clipPath id="clip0_1486_25699">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 407 B

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.33333 14C2.96667 14 2.65278 13.8694 2.39167 13.6083C2.13056 13.3472 2 13.0333 2 12.6667V10H3.33333V12.6667H6V14H3.33333ZM10 14V12.6667H12.6667V10H14V12.6667C14 13.0333 13.8694 13.3472 13.6083 13.6083C13.3472 13.8694 13.0333 14 12.6667 14H10ZM2 6V3.33333C2 2.96667 2.13056 2.65278 2.39167 2.39167C2.65278 2.13056 2.96667 2 3.33333 2H6V3.33333H3.33333V6H2ZM12.6667 6V3.33333H10V2H12.6667C13.0333 2 13.3472 2.13056 13.6083 2.39167C13.8694 2.65278 14 2.96667 14 3.33333V6H12.6667Z" fill="white"/>
<path d="M9.6416 6.36719H11.3003C11.4176 6.36719 11.5278 6.39208 11.6309 6.44185C11.7376 6.49163 11.83 6.56097 11.9083 6.64985C11.9865 6.73874 12.0469 6.84185 12.0896 6.95919C12.1358 7.07297 12.1589 7.19563 12.1589 7.32719V9.03919C12.1589 9.1743 12.1358 9.29874 12.0896 9.41252C12.0469 9.5263 11.9865 9.62763 11.9083 9.71652C11.83 9.80541 11.7376 9.87474 11.6309 9.92452C11.5278 9.9743 11.4176 9.99919 11.3003 9.99919H9.6416V6.36719ZM11.1349 9.32719C11.1883 9.32719 11.2363 9.31652 11.2789 9.29519C11.3216 9.27385 11.3589 9.24541 11.3909 9.20985C11.4265 9.1743 11.4532 9.13341 11.4709 9.08719C11.4887 9.03741 11.4976 8.98408 11.4976 8.92719V7.43385C11.4976 7.38052 11.4887 7.33074 11.4709 7.28452C11.4532 7.23474 11.4265 7.19208 11.3909 7.15652C11.3589 7.11741 11.3216 7.08719 11.2789 7.06585C11.2363 7.04452 11.1883 7.03385 11.1349 7.03385H10.3083V9.32719H11.1349Z" fill="white"/>
<path d="M8.41482 9.44452H7.43882L7.30549 9.99919H6.66016L7.59349 6.36719H8.28682L9.18282 9.99919H8.54282L8.41482 9.44452ZM7.56682 8.90585H8.29216L7.95616 7.42319H7.91882L7.56682 8.90585Z" fill="white"/>
<path d="M5.3331 9.36985C5.43621 9.36985 5.51088 9.33963 5.5571 9.27919C5.60688 9.21519 5.64421 9.13874 5.6691 9.04985H6.3411C6.32688 9.18141 6.2931 9.30585 6.23977 9.42319C6.18643 9.53697 6.11532 9.63652 6.02643 9.72185C5.9411 9.80719 5.83799 9.87474 5.7171 9.92452C5.59977 9.9743 5.47355 9.99919 5.33844 9.99919H4.87977C4.73755 9.99919 4.60243 9.97252 4.47443 9.91919C4.34643 9.8623 4.23443 9.78585 4.13843 9.68985C4.04243 9.59385 3.96599 9.48185 3.9091 9.35385C3.85577 9.22585 3.8291 9.08897 3.8291 8.94319V7.42852C3.8291 7.28274 3.85577 7.14585 3.9091 7.01785C3.96599 6.8863 4.04243 6.77252 4.13843 6.67652C4.23443 6.58052 4.34643 6.50585 4.47443 6.45252C4.60243 6.39563 4.73755 6.36719 4.87977 6.36719H5.33844C5.4771 6.36719 5.6051 6.39208 5.72243 6.44185C5.83977 6.49163 5.9411 6.56097 6.02643 6.64985C6.11532 6.73519 6.18643 6.83652 6.23977 6.95385C6.2931 7.07119 6.32688 7.19741 6.3411 7.33252H5.6691C5.65132 7.24008 5.61755 7.16185 5.56777 7.09785C5.51799 7.03385 5.43977 7.00185 5.3331 7.00185H4.8851C4.76066 7.00185 4.6611 7.0463 4.58644 7.13519C4.51532 7.22408 4.47977 7.33252 4.47977 7.46052V8.90585C4.47977 9.03385 4.51532 9.14408 4.58644 9.23652C4.6611 9.32541 4.76066 9.36985 4.8851 9.36985H5.3331Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1507_347)">
<path d="M12.6667 2.66732H12V1.33398H10.6667V2.66732H5.33333V1.33398H4V2.66732H3.33333C2.59333 2.66732 2.00667 3.26732 2.00667 4.00065L2 13.334C2 14.0673 2.59333 14.6673 3.33333 14.6673H12.6667C13.4 14.6673 14 14.0673 14 13.334V4.00065C14 3.26732 13.4 2.66732 12.6667 2.66732ZM12.6667 13.334H3.33333V6.66732H12.6667V13.334ZM6 9.33398H4.66667V8.00065H6V9.33398ZM8.66667 9.33398H7.33333V8.00065H8.66667V9.33398ZM11.3333 9.33398H10V8.00065H11.3333V9.33398ZM6 12.0007H4.66667V10.6673H6V12.0007ZM8.66667 12.0007H7.33333V10.6673H8.66667V12.0007ZM11.3333 12.0007H10V10.6673H11.3333V12.0007Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1507_347">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 847 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_689_1178)">
<path d="M6 13.9998H4.66667V12.6665H6V13.9998ZM3.33333 5.99984H2V4.6665H3.33333V5.99984ZM14 3.33317V12.6665C14 13.3998 13.4 13.9998 12.6667 13.9998H10V12.6665V3.33317V1.99984H12.6667C13.4 1.99984 14 2.59984 14 3.33317ZM3.33333 1.99984V3.33317H2C2 2.59984 2.6 1.99984 3.33333 1.99984ZM8.66667 15.3332H7.33333V0.666504H8.66667V15.3332ZM3.33333 11.3332H2V9.99984H3.33333V11.3332ZM6 3.33317H4.66667V1.99984H6V3.33317ZM3.33333 8.6665H2V7.33317H3.33333V8.6665ZM3.33333 13.9998C2.6 13.9998 2 13.3998 2 12.6665H3.33333V13.9998Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_689_1178">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 783 B

View File

@@ -0,0 +1,10 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1464_4643)">
<path d="M15 6.00714L13.9929 5L10 8.99286L6.00714 5L5 6.00714L8.99286 10L5 13.9929L6.00714 15L10 11.0071L13.9929 15L15 13.9929L11.0071 10L15 6.00714Z" fill="#AAAAAA"/>
</g>
<defs>
<clipPath id="clip0_1464_4643">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 417 B

View File

@@ -0,0 +1,10 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_745_5856)">
<path d="M15 6.00714L13.9929 5L10 8.99286L6.00714 5L5 6.00714L8.99286 10L5 13.9929L6.00714 15L10 11.0071L13.9929 15L15 13.9929L11.0071 10L15 6.00714Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_745_5856">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="11" cy="11" r="10.5" fill="white" stroke="#DDDDDD"/>
<path d="M9.83317 12.4993L8.02067 10.6868C7.86789 10.5341 7.68039 10.4577 7.45817 10.4577C7.23595 10.4577 7.0415 10.541 6.87484 10.7077C6.72206 10.8605 6.64567 11.0549 6.64567 11.291C6.64567 11.5271 6.72206 11.7216 6.87484 11.8743L9.24984 14.2493C9.40261 14.4021 9.59706 14.4785 9.83317 14.4785C10.0693 14.4785 10.2637 14.4021 10.4165 14.2493L15.1457 9.52018C15.2984 9.3674 15.3748 9.1799 15.3748 8.95768C15.3748 8.73546 15.2915 8.54102 15.1248 8.37435C14.9721 8.22157 14.7776 8.14518 14.5415 8.14518C14.3054 8.14518 14.1109 8.22157 13.9582 8.37435L9.83317 12.4993ZM10.9998 19.3327C9.84706 19.3327 8.76373 19.1138 7.74984 18.676C6.73595 18.2388 5.854 17.6452 5.104 16.8952C4.354 16.1452 3.76039 15.2632 3.32317 14.2493C2.88539 13.2355 2.6665 12.1521 2.6665 10.9993C2.6665 9.84657 2.88539 8.76324 3.32317 7.74935C3.76039 6.73546 4.354 5.85352 5.104 5.10352C5.854 4.35352 6.73595 3.75963 7.74984 3.32185C8.76373 2.88463 9.84706 2.66602 10.9998 2.66602C12.1526 2.66602 13.2359 2.88463 14.2498 3.32185C15.2637 3.75963 16.1457 4.35352 16.8957 5.10352C17.6457 5.85352 18.2393 6.73546 18.6765 7.74935C19.1143 8.76324 19.3332 9.84657 19.3332 10.9993C19.3332 12.1521 19.1143 13.2355 18.6765 14.2493C18.2393 15.2632 17.6457 16.1452 16.8957 16.8952C16.1457 17.6452 15.2637 18.2388 14.2498 18.676C13.2359 19.1138 12.1526 19.3327 10.9998 19.3327Z" fill="#4DB251"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_689_1170)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 13V3.66667C2 2.93333 2.6 2.33333 3.33333 2.33333H6V3.66667H3.33333V13H6V14.3333H3.33333C2.6 14.3333 2 13.7333 2 13ZM14 13V3.66667C14 2.93333 13.4 2.33333 12.6667 2.33333H10V3.66667H12.6667V13H10V14.3333H12.6667C13.4 14.3333 14 13.7333 14 13ZM7.33333 15.6667H8.66667V1H7.33333V15.6667Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_689_1170">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 600 B

View File

@@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.82539 13.0004L7.70039 14.9004C7.88372 15.0837 7.97956 15.3129 7.98789 15.5879C7.99622 15.8629 7.90039 16.1004 7.70039 16.3004C7.51706 16.4837 7.28372 16.5754 7.00039 16.5754C6.71706 16.5754 6.48372 16.4837 6.30039 16.3004L2.70039 12.7004C2.50039 12.5004 2.40039 12.2671 2.40039 12.0004C2.40039 11.7337 2.50039 11.5004 2.70039 11.3004L6.30039 7.70039C6.50039 7.50039 6.73372 7.40456 7.00039 7.41289C7.26706 7.42122 7.50039 7.52539 7.70039 7.72539C7.88372 7.92539 7.97956 8.15872 7.98789 8.42539C7.99622 8.69206 7.90039 8.92539 7.70039 9.12539L5.82539 11.0004H18.1504L16.2754 9.12539C16.0754 8.92539 15.9754 8.68789 15.9754 8.41289C15.9754 8.13789 16.0754 7.90039 16.2754 7.70039C16.4754 7.50039 16.7129 7.40039 16.9879 7.40039C17.2629 7.40039 17.5004 7.50039 17.7004 7.70039L21.3004 11.3004C21.5004 11.5004 21.6004 11.7337 21.6004 12.0004C21.6004 12.2671 21.5004 12.5004 21.3004 12.7004L17.7004 16.3004C17.5171 16.4837 17.2879 16.5796 17.0129 16.5879C16.7379 16.5962 16.5004 16.5004 16.3004 16.3004C16.1004 16.1004 15.9962 15.8629 15.9879 15.5879C15.9796 15.3129 16.0754 15.0754 16.2754 14.8754L18.1504 13.0004H5.82539Z" fill="#111111"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1257_533)">
<path d="M2 3.33333H3.33333V2C2.6 2 2 2.6 2 3.33333ZM2 8.66667H3.33333V7.33333H2V8.66667ZM4.66667 14H6V12.6667H4.66667V14ZM2 6H3.33333V4.66667H2V6ZM8.66667 2H7.33333V3.33333H8.66667V2ZM12.6667 2V3.33333H14C14 2.6 13.4 2 12.6667 2ZM3.33333 14V12.6667H2C2 13.4 2.6 14 3.33333 14ZM2 11.3333H3.33333V10H2V11.3333ZM6 2H4.66667V3.33333H6V2ZM7.33333 14H8.66667V12.6667H7.33333V14ZM12.6667 8.66667H14V7.33333H12.6667V8.66667ZM12.6667 14C13.4 14 14 13.4 14 12.6667H12.6667V14ZM12.6667 6H14V4.66667H12.6667V6ZM12.6667 11.3333H14V10H12.6667V11.3333ZM10 14H11.3333V12.6667H10V14ZM10 3.33333H11.3333V2H10V3.33333Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1257_533">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 864 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_776_11515)">
<path d="M12.0003 9.99935V11.9993H4.00033V9.99935H2.66699V11.9993C2.66699 12.7327 3.26699 13.3327 4.00033 13.3327H12.0003C12.7337 13.3327 13.3337 12.7327 13.3337 11.9993V9.99935H12.0003ZM11.3337 7.33268L10.3937 6.39268L8.66699 8.11268V2.66602H7.33366V8.11268L5.60699 6.39268L4.66699 7.33268L8.00033 10.666L11.3337 7.33268Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_776_11515">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 588 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.58333 18.3327C8.30556 18.3327 7.22222 17.8882 6.33333 16.9993C5.44444 16.1105 5 15.0271 5 13.7493V4.99935C5 4.08268 5.32639 3.29796 5.97917 2.64518C6.63194 1.9924 7.41667 1.66602 8.33333 1.66602C9.25 1.66602 10.0347 1.9924 10.6875 2.64518C11.3403 3.29796 11.6667 4.08268 11.6667 4.99935V12.916C11.6667 13.4993 11.4653 13.9924 11.0625 14.3952C10.6597 14.798 10.1667 14.9993 9.58333 14.9993C9 14.9993 8.50694 14.798 8.10417 14.3952C7.70139 13.9924 7.5 13.4993 7.5 12.916V5.62435C7.5 5.44379 7.55917 5.29463 7.6775 5.17685C7.79528 5.05852 7.94444 4.99935 8.125 4.99935C8.30556 4.99935 8.455 5.05852 8.57333 5.17685C8.69111 5.29463 8.75 5.44379 8.75 5.62435V12.916C8.75 13.1521 8.83 13.3499 8.99 13.5093C9.14944 13.6693 9.34722 13.7493 9.58333 13.7493C9.81944 13.7493 10.0175 13.6693 10.1775 13.5093C10.3369 13.3499 10.4167 13.1521 10.4167 12.916V4.99935C10.4167 4.41602 10.2153 3.92296 9.8125 3.52018C9.40972 3.1174 8.91667 2.91602 8.33333 2.91602C7.75 2.91602 7.25694 3.1174 6.85417 3.52018C6.45139 3.92296 6.25 4.41602 6.25 4.99935V13.7493C6.25 14.666 6.57639 15.4507 7.22917 16.1035C7.88194 16.7563 8.66667 17.0827 9.58333 17.0827C10.5 17.0827 11.2847 16.7563 11.9375 16.1035C12.5903 15.4507 12.9167 14.666 12.9167 13.7493V5.62435C12.9167 5.44379 12.9758 5.29463 13.0942 5.17685C13.2119 5.05852 13.3611 4.99935 13.5417 4.99935C13.7222 4.99935 13.8717 5.05852 13.99 5.17685C14.1078 5.29463 14.1667 5.44379 14.1667 5.62435V13.7493C14.1667 15.0271 13.7222 16.1105 12.8333 16.9993C11.9444 17.8882 10.8611 18.3327 9.58333 18.3327Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9997 9.66732C12.6552 9.66732 12.3441 9.57287 12.0663 9.38398C11.7886 9.1951 11.5886 8.95621 11.4663 8.66732H1.99967C1.81079 8.66732 1.65256 8.60332 1.52501 8.47532C1.39701 8.34776 1.33301 8.18954 1.33301 8.00065C1.33301 7.81176 1.39701 7.65332 1.52501 7.52532C1.65256 7.39776 1.81079 7.33398 1.99967 7.33398H11.4663C11.5886 7.0451 11.7886 6.80621 12.0663 6.61732C12.3441 6.42843 12.6552 6.33398 12.9997 6.33398C13.4663 6.33398 13.8608 6.4951 14.183 6.81732C14.5052 7.13954 14.6663 7.53398 14.6663 8.00065C14.6663 8.46732 14.5052 8.86176 14.183 9.18398C13.8608 9.50621 13.4663 9.66732 12.9997 9.66732Z" fill="white"/>
<path d="M3.00033 6.33268C3.34477 6.33268 3.65588 6.42713 3.93366 6.61601C4.21144 6.8049 4.41144 7.04379 4.53366 7.33268L14.0003 7.33268C14.1892 7.33268 14.3474 7.39668 14.475 7.52468C14.603 7.65224 14.667 7.81046 14.667 7.99935C14.667 8.18824 14.603 8.34668 14.475 8.47468C14.3474 8.60224 14.1892 8.66602 14.0003 8.66602L4.53366 8.66601C4.41144 8.9549 4.21144 9.19379 3.93366 9.38268C3.65588 9.57157 3.34477 9.66601 3.00033 9.66601C2.53366 9.66601 2.13922 9.5049 1.81699 9.18268C1.49477 8.86046 1.33366 8.46601 1.33366 7.99935C1.33366 7.53268 1.49477 7.13824 1.81699 6.81601C2.13922 6.49379 2.53366 6.33268 3.00033 6.33268Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1259_499)">
<path d="M8.00033 4.66667C9.84033 4.66667 11.3337 6.16 11.3337 8C11.3337 8.43333 11.247 8.84 11.0937 9.22L13.0403 11.1667C14.047 10.3267 14.8403 9.24 15.327 8C14.1737 5.07333 11.327 3 7.99366 3C7.06033 3 6.16699 3.16667 5.34033 3.46667L6.78033 4.90667C7.16033 4.75333 7.56699 4.66667 8.00033 4.66667ZM1.33366 2.84667L2.85366 4.36667L3.16033 4.67333C2.05366 5.53333 1.18699 6.68 0.666992 8C1.82033 10.9267 4.66699 13 8.00033 13C9.03366 13 10.0203 12.8 10.9203 12.44L11.2003 12.72L13.1537 14.6667L14.0003 13.82L2.18033 2L1.33366 2.84667ZM5.02033 6.53333L6.05366 7.56667C6.02033 7.70667 6.00033 7.85333 6.00033 8C6.00033 9.10667 6.89366 10 8.00033 10C8.14699 10 8.29366 9.98 8.43366 9.94667L9.46699 10.98C9.02033 11.2 8.52699 11.3333 8.00033 11.3333C6.16033 11.3333 4.66699 9.84 4.66699 8C4.66699 7.47333 4.80033 6.98 5.02033 6.53333ZM7.89366 6.01333L9.99366 8.11333L10.007 8.00667C10.007 6.9 9.11366 6.00667 8.00699 6.00667L7.89366 6.01333Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1259_499">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_781_2874)">
<path d="M8.00016 1.33398C5.42016 1.33398 3.3335 3.42065 3.3335 6.00065C3.3335 9.50065 8.00016 14.6673 8.00016 14.6673C8.00016 14.6673 12.6668 9.50065 12.6668 6.00065C12.6668 3.42065 10.5802 1.33398 8.00016 1.33398ZM8.00016 7.66732C7.08016 7.66732 6.3335 6.92065 6.3335 6.00065C6.3335 5.08065 7.08016 4.33398 8.00016 4.33398C8.92016 4.33398 9.66683 5.08065 9.66683 6.00065C9.66683 6.92065 8.92016 7.66732 8.00016 7.66732Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_781_2874">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 685 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.00033 8.00065C8.36699 8.00065 8.68099 7.86998 8.94233 7.60865C9.20321 7.34776 9.33366 7.03398 9.33366 6.66732C9.33366 6.30065 9.20321 5.98665 8.94233 5.72532C8.68099 5.46443 8.36699 5.33398 8.00033 5.33398C7.63366 5.33398 7.31988 5.46443 7.05899 5.72532C6.79766 5.98665 6.66699 6.30065 6.66699 6.66732C6.66699 7.03398 6.79766 7.34776 7.05899 7.60865C7.31988 7.86998 7.63366 8.00065 8.00033 8.00065ZM8.00033 12.9007C9.35588 11.6562 10.3614 10.5255 11.017 9.50865C11.6725 8.49221 12.0003 7.58954 12.0003 6.80065C12.0003 5.58954 11.6141 4.59776 10.8417 3.82532C10.0697 3.05332 9.12255 2.66732 8.00033 2.66732C6.8781 2.66732 5.93077 3.05332 5.15833 3.82532C4.38633 4.59776 4.00033 5.58954 4.00033 6.80065C4.00033 7.58954 4.3281 8.49221 4.98366 9.50865C5.63921 10.5255 6.64477 11.6562 8.00033 12.9007ZM8.00033 14.6673C6.21144 13.1451 4.87544 11.7311 3.99233 10.4253C3.10877 9.11998 2.66699 7.91176 2.66699 6.80065C2.66699 5.13398 3.20321 3.80621 4.27566 2.81732C5.34766 1.82843 6.58921 1.33398 8.00033 1.33398C9.41144 1.33398 10.653 1.82843 11.725 2.81732C12.7974 3.80621 13.3337 5.13398 13.3337 6.80065C13.3337 7.91176 12.8921 9.11998 12.009 10.4253C11.1254 11.7311 9.78921 13.1451 8.00033 14.6673Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="#A0705F"/>
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="#0D8DF2"/>
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="#4DB251"/>
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="#7F7F7F"/>
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="#B92ED1"/>
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="#6D3DC2"/>
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="#F21D0D"/>
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="#688897"/>
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 148 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="3" fill="#FFBF00"/>
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1257_534)">
<path d="M11.7533 3.89398C11.5133 3.55398 11.1133 3.33398 10.6667 3.33398L3.33333 3.34065C2.6 3.34065 2 3.93398 2 4.66732V11.334C2 12.0673 2.6 12.6607 3.33333 12.6607L10.6667 12.6673C11.1133 12.6673 11.5133 12.4473 11.7533 12.1073L14.6667 8.00065L11.7533 3.89398ZM10.6667 11.334H3.33333V4.66732H10.6667L13.0333 8.00065L10.6667 11.334Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1257_534">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 598 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_712_4535)">
<path d="M7.99333 12.3602L3.08 8.54016L2 9.38016L8 14.0468L14 9.38016L12.9133 8.5335L7.99333 12.3602ZM8 10.6668L12.9067 6.84683L14 6.00016L8 1.3335L2 6.00016L3.08667 6.84683L8 10.6668ZM8 3.02016L11.8267 6.00016L8 8.98016L4.17333 6.00016L8 3.02016Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_712_4535">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 511 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.0003 13.3327C12.0003 12.0438 11.7559 10.8327 11.267 9.69935C10.7781 8.56602 10.1114 7.57713 9.26699 6.73268C8.42255 5.88824 7.43366 5.22157 6.30033 4.73268C5.16699 4.24379 3.95588 3.99935 2.66699 3.99935V2.66602C4.13366 2.66602 5.51421 2.94657 6.80866 3.50768C8.1031 4.06879 9.23366 4.83268 10.2003 5.79935C11.167 6.76602 11.9309 7.89657 12.492 9.19102C13.0531 10.4855 13.3337 11.866 13.3337 13.3327H12.0003Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 541 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 9.33333C7.63333 9.33333 7.31944 9.20278 7.05833 8.94167C6.79722 8.68056 6.66667 8.36667 6.66667 8C6.66667 7.63333 6.79722 7.31944 7.05833 7.05833C7.31944 6.79722 7.63333 6.66667 8 6.66667C8.36667 6.66667 8.68056 6.79722 8.94167 7.05833C9.20278 7.31944 9.33333 7.63333 9.33333 8C9.33333 8.36667 9.20278 8.68056 8.94167 8.94167C8.68056 9.20278 8.36667 9.33333 8 9.33333ZM8 5.33333C7.81111 5.33333 7.65278 5.26944 7.525 5.14167C7.39722 5.01389 7.33333 4.85556 7.33333 4.66667V2.66667C7.33333 2.47778 7.39722 2.31944 7.525 2.19167C7.65278 2.06389 7.81111 2 8 2C8.18889 2 8.34722 2.06389 8.475 2.19167C8.60278 2.31944 8.66667 2.47778 8.66667 2.66667V4.66667C8.66667 4.85556 8.60278 5.01389 8.475 5.14167C8.34722 5.26944 8.18889 5.33333 8 5.33333ZM8 14C7.81111 14 7.65278 13.9361 7.525 13.8083C7.39722 13.6806 7.33333 13.5222 7.33333 13.3333V11.3333C7.33333 11.1444 7.39722 10.9861 7.525 10.8583C7.65278 10.7306 7.81111 10.6667 8 10.6667C8.18889 10.6667 8.34722 10.7306 8.475 10.8583C8.60278 10.9861 8.66667 11.1444 8.66667 11.3333V13.3333C8.66667 13.5222 8.60278 13.6806 8.475 13.8083C8.34722 13.9361 8.18889 14 8 14ZM11.3333 8.66667C11.1444 8.66667 10.9861 8.60278 10.8583 8.475C10.7306 8.34722 10.6667 8.18889 10.6667 8C10.6667 7.81111 10.7306 7.65278 10.8583 7.525C10.9861 7.39722 11.1444 7.33333 11.3333 7.33333H13.3333C13.5222 7.33333 13.6806 7.39722 13.8083 7.525C13.9361 7.65278 14 7.81111 14 8C14 8.18889 13.9361 8.34722 13.8083 8.475C13.6806 8.60278 13.5222 8.66667 13.3333 8.66667H11.3333ZM2.66667 8.66667C2.47778 8.66667 2.31944 8.60278 2.19167 8.475C2.06389 8.34722 2 8.18889 2 8C2 7.81111 2.06389 7.65278 2.19167 7.525C2.31944 7.39722 2.47778 7.33333 2.66667 7.33333H4.66667C4.85556 7.33333 5.01389 7.39722 5.14167 7.525C5.26944 7.65278 5.33333 7.81111 5.33333 8C5.33333 8.18889 5.26944 8.34722 5.14167 8.475C5.01389 8.60278 4.85556 8.66667 4.66667 8.66667H2.66667Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,21 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_3239_308)">
<circle cx="16" cy="16" r="14" fill="#0D8DF2" fill-opacity="0.6"/>
</g>
<g filter="url(#filter1_f_3239_308)">
<circle cx="16" cy="16" r="10" fill="#0D8DF2"/>
</g>
<circle cx="16" cy="16" r="3" fill="white"/>
<defs>
<filter id="filter0_f_3239_308" x="0" y="0" width="32" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_3239_308"/>
</filter>
<filter id="filter1_f_3239_308" x="4" y="4" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_3239_308"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,21 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_3432_909)">
<circle cx="16" cy="16" r="14" fill="#B92ED1" fill-opacity="0.6"/>
</g>
<g filter="url(#filter1_f_3432_909)">
<circle cx="16" cy="16" r="10" fill="#B92ED1"/>
</g>
<circle cx="16" cy="16" r="3" fill="white"/>
<defs>
<filter id="filter0_f_3432_909" x="0" y="0" width="32" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_3432_909"/>
</filter>
<filter id="filter1_f_3432_909" x="4" y="4" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_3432_909"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,21 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_3239_304)">
<circle cx="16" cy="16" r="14" fill="#4DB251" fill-opacity="0.6"/>
</g>
<g filter="url(#filter1_f_3239_304)">
<circle cx="16" cy="16" r="10" fill="#4DB251"/>
</g>
<circle cx="16" cy="16" r="3" fill="white"/>
<defs>
<filter id="filter0_f_3239_304" x="0" y="0" width="32" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_3239_304"/>
</filter>
<filter id="filter1_f_3239_304" x="4" y="4" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_3239_304"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,21 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_3243_369)">
<circle cx="16" cy="16" r="14" fill="#688897" fill-opacity="0.6"/>
</g>
<g filter="url(#filter1_f_3243_369)">
<circle cx="16" cy="16" r="10" fill="#688897"/>
</g>
<circle cx="16" cy="16" r="3" fill="white"/>
<defs>
<filter id="filter0_f_3243_369" x="0" y="0" width="32" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_3243_369"/>
</filter>
<filter id="filter1_f_3243_369" x="4" y="4" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_3243_369"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1464_4638)">
<path d="M13.6667 2L13.56 2.02L10 3.4L6 2L2.24 3.26667C2.1 3.31333 2 3.43333 2 3.58667V13.6667C2 13.8533 2.14667 14 2.33333 14L2.44 13.98L6 12.6L10 14L13.76 12.7333C13.9 12.6867 14 12.5667 14 12.4133V2.33333C14 2.14667 13.8533 2 13.6667 2ZM10 12.6667L6 11.26V3.33333L10 4.74V12.6667Z" fill="#111111"/>
</g>
<defs>
<clipPath id="clip0_1464_4638">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 551 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_767_10324)">
<path d="M13.6667 2L13.56 2.02L10 3.4L6 2L2.24 3.26667C2.1 3.31333 2 3.43333 2 3.58667V13.6667C2 13.8533 2.14667 14 2.33333 14L2.44 13.98L6 12.6L10 14L13.76 12.7333C13.9 12.6867 14 12.5667 14 12.4133V2.33333C14 2.14667 13.8533 2 13.6667 2ZM10 12.6667L6 11.26V3.33333L10 4.74V12.6667Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_767_10324">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 549 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_689_1190)">
<path d="M5.18021 4.50665L4.15354 3.65332L0.546875 7.99999L4.15354 12.3467L5.18021 11.4933L2.28021 7.99999L5.18021 4.50665ZM4.66687 8.66665H6.00021V7.33332H4.66687V8.66665ZM11.3335 7.33332H10.0002V8.66665H11.3335V7.33332ZM7.33354 8.66665H8.66687V7.33332H7.33354V8.66665ZM11.8469 3.65332L10.8202 4.50665L13.7202 7.99999L10.8202 11.4933L11.8469 12.3467L15.4535 7.99999L11.8469 3.65332Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_689_1190">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 647 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_689_1202)">
<path d="M13.3327 0.666504V2.6665H15.3327V3.99984H13.3327V5.99984H11.9993V3.99984H9.99935V2.6665H11.9993V0.666504H13.3327ZM7.99935 8.6665C7.26602 8.6665 6.66602 8.0665 6.66602 7.33317C6.66602 6.59984 7.26602 5.99984 7.99935 5.99984C8.73268 5.99984 9.33268 6.59984 9.33268 7.33317C9.33268 8.0665 8.73268 8.6665 7.99935 8.6665ZM8.66602 2.03984V3.3865C8.44549 3.35166 8.22261 3.33383 7.99935 3.33317C5.76602 3.33317 3.99935 5.0465 3.99935 7.4665C3.99935 9.0265 5.29935 11.0932 7.99935 13.5598C10.6993 11.0932 11.9993 9.03317 11.9993 7.4665V7.33317H13.3327V7.4665C13.3327 9.67984 11.5527 12.2998 7.99935 15.3332C4.44602 12.2998 2.66602 9.67984 2.66602 7.4665C2.66602 4.1465 5.19935 1.99984 7.99935 1.99984C8.22602 1.99984 8.44602 2.01317 8.66602 2.03984Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_689_1202">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1014 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_689_1196)">
<path d="M14.0007 8.00016L11.0873 12.1068C10.8407 12.4535 10.434 12.6668 10.0007 12.6668H8.00065V11.3335H10.0007L12.3673 8.00016L10.0007 4.66683H3.33398V6.66683H2.00065V4.66683C2.00065 3.9335 2.60065 3.3335 3.33398 3.3335H10.0007C10.434 3.3335 10.8407 3.54016 11.0873 3.8935L14.0007 8.00016ZM6.66732 10.0002H4.66732V8.00016H3.33398V10.0002H1.33398V11.3335H3.33398V13.3335H4.66732V11.3335H6.66732V10.0002Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_689_1196">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 668 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_689_1208)">
<path d="M12.0007 13.3332H2.66732V3.99984H8.66732V2.6665H2.66732C1.93398 2.6665 1.33398 3.2665 1.33398 3.99984V13.3332C1.33398 14.0665 1.93398 14.6665 2.66732 14.6665H12.0007C12.734 14.6665 13.334 14.0665 13.334 13.3332V7.33317H12.0007V13.3332ZM6.80732 11.2198L5.50065 9.6465L3.66732 11.9998H11.0007L8.64065 8.85984L6.80732 11.2198ZM13.334 2.6665V0.666504H12.0007V2.6665H10.0007C10.0073 2.67317 10.0007 3.99984 10.0007 3.99984H12.0007V5.99317C12.0073 5.99984 13.334 5.99317 13.334 5.99317V3.99984H15.334V2.6665H13.334Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_689_1208">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 782 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_689_1223)">
<path d="M8.00065 1.3335C4.32065 1.3335 1.33398 4.32016 1.33398 8.00016C1.33398 11.6802 4.32065 14.6668 8.00065 14.6668C11.6807 14.6668 14.6673 11.6802 14.6673 8.00016C14.6673 4.32016 11.6807 1.3335 8.00065 1.3335ZM8.00065 13.3335C5.06065 13.3335 2.66732 10.9402 2.66732 8.00016C2.66732 5.06016 5.06065 2.66683 8.00065 2.66683C10.9406 2.66683 13.334 5.06016 13.334 8.00016C13.334 10.9402 10.9406 13.3335 8.00065 13.3335ZM4.33398 11.6668L9.34065 9.34016L11.6673 4.3335L6.66065 6.66016L4.33398 11.6668ZM8.00065 7.26683C8.40732 7.26683 8.73398 7.5935 8.73398 8.00016C8.73398 8.40683 8.40732 8.7335 8.00065 8.7335C7.59398 8.7335 7.26732 8.40683 7.26732 8.00016C7.26732 7.5935 7.59398 7.26683 8.00065 7.26683Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_689_1223">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 968 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_689_1184)">
<path d="M10 7.33333V8.66667H8.66667V7.33333H10ZM8.66667 6V7.33333H7.33333V6H8.66667ZM8.66667 8.66667V10H7.33333V8.66667H8.66667ZM10 10V11.3333H8.66667V10H10ZM10 4.66667V6H8.66667V4.66667H10ZM14 12.6667V3.33333C14 2.6 13.4 2 12.6667 2H3.33333C2.6 2 2 2.6 2 3.33333V12.6667C2 13.4 2.6 14 3.33333 14H12.6667C13.4 14 14 13.4 14 12.6667ZM4 6V4.66667H5.33333V6H4ZM4 8.66667V7.33333H5.33333V8.66667H4ZM4 11.3333V10H5.33333V11.3333H4ZM8.66667 12.6667V11.3333H7.33333V12.6667H6V11.3333H7.33333V10H6V8.66667H7.33333V7.33333H6V6H7.33333V4.66667H6V3.33333H7.33333V4.66667H8.66667V3.33333H12.6667V12.6667H8.66667Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_689_1184">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 865 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.0013 5.33317C6.52797 5.33317 5.33464 6.5265 5.33464 7.99984C5.33464 9.47317 6.52797 10.6665 8.0013 10.6665C9.47464 10.6665 10.668 9.47317 10.668 7.99984C10.668 6.5265 9.47464 5.33317 8.0013 5.33317ZM13.9613 7.33317C13.6546 4.55317 11.448 2.3465 8.66797 2.03984V0.666504H7.33464V2.03984C4.55464 2.3465 2.34797 4.55317 2.0413 7.33317H0.667969V8.6665H2.0413C2.34797 11.4465 4.55464 13.6532 7.33464 13.9598V15.3332H8.66797V13.9598C11.448 13.6532 13.6546 11.4465 13.9613 8.6665H15.3346V7.33317H13.9613ZM8.0013 12.6665C5.4213 12.6665 3.33464 10.5798 3.33464 7.99984C3.33464 5.41984 5.4213 3.33317 8.0013 3.33317C10.5813 3.33317 12.668 5.41984 12.668 7.99984C12.668 10.5798 10.5813 12.6665 8.0013 12.6665Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 830 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1257_536)">
<path d="M12.6667 3.33333V12.6667H3.33333V3.33333H12.6667ZM12.6667 2H3.33333C2.6 2 2 2.6 2 3.33333V12.6667C2 13.4 2.6 14 3.33333 14H12.6667C13.4 14 14 13.4 14 12.6667V3.33333C14 2.6 13.4 2 12.6667 2ZM9.42667 7.90667L7.42667 10.4867L6 8.76L4 11.3333H12L9.42667 7.90667Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1257_536">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 532 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_749_8073)">
<path d="M5.33301 3.33398V12.6673L12.6663 8.00065L5.33301 3.33398Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_749_8073">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 330 B

View File

@@ -0,0 +1,12 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_24_685)">
<path d="M6 8C6 9.10667 6.89333 10 8 10C9.10667 10 10 9.10667 10 8C10 6.89333 9.10667 6 8 6C6.89333 6 6 6.89333 6 8Z" fill="white"/>
<path d="M5.33301 6.66732V5.33398H3.39301C4.31301 3.74065 6.03301 2.66732 7.99967 2.66732C10.4797 2.66732 12.5663 4.37398 13.1597 6.66732H14.533C13.913 3.62732 11.2263 1.33398 7.99967 1.33398C5.81967 1.33398 3.87967 2.38732 2.66634 4.00732V2.66732H1.33301V6.66732H5.33301Z" fill="white"/>
<path d="M10.6668 9.33398V10.6673H12.6068C11.6868 12.2607 9.9668 13.334 8.00013 13.334C5.52013 13.334 3.43346 11.6273 2.84013 9.33398H1.4668C2.0868 12.374 4.77346 14.6673 8.00013 14.6673C10.1801 14.6673 12.1201 13.614 13.3335 11.994V13.334H14.6668V9.33398H10.6668Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_24_685">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 946 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1473_5353)">
<path d="M10.3333 9.33333H9.80667L9.62 9.15333C10.2733 8.39333 10.6667 7.40667 10.6667 6.33333C10.6667 3.94 8.72667 2 6.33333 2C3.94 2 2 3.94 2 6.33333C2 8.72667 3.94 10.6667 6.33333 10.6667C7.40667 10.6667 8.39333 10.2733 9.15333 9.62L9.33333 9.80667V10.3333L12.6667 13.66L13.66 12.6667L10.3333 9.33333ZM6.33333 9.33333C4.67333 9.33333 3.33333 7.99333 3.33333 6.33333C3.33333 4.67333 4.67333 3.33333 6.33333 3.33333C7.99333 3.33333 9.33333 4.67333 9.33333 6.33333C9.33333 7.99333 7.99333 9.33333 6.33333 9.33333Z" fill="#111111"/>
</g>
<defs>
<clipPath id="clip0_1473_5353">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 781 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.175 7.1582L10 10.9749L13.825 7.1582L15 8.3332L10 13.3332L5 8.3332L6.175 7.1582Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 211 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.825 12.8418L10 9.02513L6.175 12.8418L5 11.6668L10 6.6668L15 11.6668L13.825 12.8418Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 216 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.00033 12C1.63366 12 1.31988 11.8696 1.05899 11.6087C0.797659 11.3473 0.666992 11.0333 0.666992 10.6667C0.666992 10.3 0.797659 9.986 1.05899 9.72467C1.31988 9.46378 1.63366 9.33333 2.00033 9.33333H2.17566C2.22544 9.33333 2.2781 9.34444 2.33366 9.36667L5.36699 6.33333C5.34477 6.27778 5.33366 6.22489 5.33366 6.17467V6C5.33366 5.63333 5.46433 5.31933 5.72566 5.058C5.98655 4.79711 6.30033 4.66667 6.66699 4.66667C7.03366 4.66667 7.34766 4.79711 7.60899 5.058C7.86988 5.31933 8.00033 5.63333 8.00033 6C8.00033 6.02222 7.98921 6.13333 7.96699 6.33333L9.66699 8.03333C9.72255 8.01111 9.77544 8 9.82566 8H10.175C10.2252 8 10.2781 8.01111 10.3337 8.03333L12.7003 5.66667C12.6781 5.61111 12.667 5.55822 12.667 5.508V5.33333C12.667 4.96667 12.7974 4.65289 13.0583 4.392C13.3197 4.13067 13.6337 4 14.0003 4C14.367 4 14.681 4.13067 14.9423 4.392C15.2032 4.65289 15.3337 4.96667 15.3337 5.33333C15.3337 5.7 15.2032 6.01378 14.9423 6.27467C14.681 6.536 14.367 6.66667 14.0003 6.66667H13.8257C13.7754 6.66667 13.7225 6.65556 13.667 6.63333L11.3003 9C11.3225 9.05556 11.3337 9.10844 11.3337 9.15867V9.33333C11.3337 9.7 11.2032 10.0138 10.9423 10.2747C10.681 10.536 10.367 10.6667 10.0003 10.6667C9.63366 10.6667 9.31988 10.536 9.05899 10.2747C8.79766 10.0138 8.66699 9.7 8.66699 9.33333V9.15867C8.66699 9.10844 8.6781 9.05556 8.70033 9L7.00033 7.3C6.94477 7.32222 6.89188 7.33333 6.84166 7.33333H6.66699C6.64477 7.33333 6.53366 7.32222 6.33366 7.3L3.30033 10.3333C3.32255 10.3889 3.33366 10.4418 3.33366 10.492V10.6667C3.33366 11.0333 3.20299 11.3473 2.94166 11.6087C2.68077 11.8696 2.36699 12 2.00033 12Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.8249 13.0004L7.6999 14.9004C7.88324 15.0837 7.97907 15.3129 7.9874 15.5879C7.99574 15.8629 7.8999 16.1004 7.6999 16.3004C7.51657 16.4837 7.28324 16.5754 6.9999 16.5754C6.71657 16.5754 6.48324 16.4837 6.2999 16.3004L2.6999 12.7004C2.4999 12.5004 2.3999 12.2671 2.3999 12.0004C2.3999 11.7337 2.4999 11.5004 2.6999 11.3004L6.2999 7.70039C6.4999 7.50039 6.73324 7.40456 6.9999 7.41289C7.26657 7.42122 7.4999 7.52539 7.6999 7.72539C7.88324 7.92539 7.97907 8.15872 7.9874 8.42539C7.99574 8.69206 7.8999 8.92539 7.6999 9.12539L5.8249 11.0004H18.1499L16.2749 9.12539C16.0749 8.92539 15.9749 8.68789 15.9749 8.41289C15.9749 8.13789 16.0749 7.90039 16.2749 7.70039C16.4749 7.50039 16.7124 7.40039 16.9874 7.40039C17.2624 7.40039 17.4999 7.50039 17.6999 7.70039L21.2999 11.3004C21.4999 11.5004 21.5999 11.7337 21.5999 12.0004C21.5999 12.2671 21.4999 12.5004 21.2999 12.7004L17.6999 16.3004C17.5166 16.4837 17.2874 16.5796 17.0124 16.5879C16.7374 16.5962 16.4999 16.5004 16.2999 16.3004C16.0999 16.1004 15.9957 15.8629 15.9874 15.5879C15.9791 15.3129 16.0749 15.0754 16.2749 14.8754L18.1499 13.0004H5.8249Z" fill="#111111"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.93734 9.10352L5.979 7.14518C5.86789 7.3674 5.78123 7.59657 5.719 7.83268C5.65623 8.06879 5.62484 8.3049 5.62484 8.54102C5.62484 9.33268 5.90623 10.0099 6.469 10.5727C7.03123 11.1349 7.70817 11.416 8.49984 11.416C8.69428 11.416 8.86789 11.4021 9.02067 11.3743C9.17345 11.3466 9.32623 11.3049 9.479 11.2493L12.0415 13.791C12.2082 13.9577 12.4026 14.041 12.6248 14.041C12.8471 14.041 13.0415 13.9577 13.2082 13.791L13.7915 13.2077C13.9582 13.041 14.0415 12.8466 14.0415 12.6243C14.0415 12.4021 13.9582 12.2077 13.7915 12.041L11.2498 9.47852C11.3054 9.32574 11.3471 9.18352 11.3748 9.05185C11.4026 8.91963 11.4165 8.73546 11.4165 8.49935C11.4165 7.70768 11.1354 7.03046 10.5732 6.46768C10.0104 5.90546 9.33317 5.62435 8.5415 5.62435C8.30539 5.62435 8.06928 5.65546 7.83317 5.71768C7.59706 5.78046 7.36789 5.8674 7.14567 5.97852L9.104 7.93685L7.93734 9.10352ZM9.99984 18.3327C8.84706 18.3327 7.76373 18.1138 6.74984 17.676C5.73595 17.2388 4.854 16.6452 4.104 15.8952C3.354 15.1452 2.76039 14.2632 2.32317 13.2493C1.88539 12.2355 1.6665 11.1521 1.6665 9.99935C1.6665 8.84657 1.88539 7.76324 2.32317 6.74935C2.76039 5.73546 3.354 4.85352 4.104 4.10352C4.854 3.35352 5.73595 2.75963 6.74984 2.32185C7.76373 1.88463 8.84706 1.66602 9.99984 1.66602C11.1526 1.66602 12.2359 1.88463 13.2498 2.32185C14.2637 2.75963 15.1457 3.35352 15.8957 4.10352C16.6457 4.85352 17.2393 5.73546 17.6765 6.74935C18.1143 7.76324 18.3332 8.84657 18.3332 9.99935C18.3332 11.1521 18.1143 12.2355 17.6765 13.2493C17.2393 14.2632 16.6457 15.1452 15.8957 15.8952C15.1457 16.6452 14.2637 17.2388 13.2498 17.676C12.2359 18.1138 11.1526 18.3327 9.99984 18.3327Z" fill="#0D8DF2"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,10 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1473_6467)">
<path d="M9.99984 1.66602C5.39984 1.66602 1.6665 5.39935 1.6665 9.99935C1.6665 14.5993 5.39984 18.3327 9.99984 18.3327C14.5998 18.3327 18.3332 14.5993 18.3332 9.99935C18.3332 5.39935 14.5998 1.66602 9.99984 1.66602ZM14.1665 10.8327H5.83317V9.16602H14.1665V10.8327Z" fill="#F21D0D"/>
</g>
<defs>
<clipPath id="clip0_1473_6467">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.66602 14V12.6667H13.3327V14H2.66602ZM7.99935 11.3333L4.66602 8L5.59935 7.06667L7.33268 8.8V2H8.66602V8.8L10.3993 7.06667L11.3327 8L7.99935 11.3333Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.33366 13.0007C6.33366 12.6562 6.4281 12.3451 6.61699 12.0673C6.80588 11.7895 7.04477 11.5895 7.33366 11.4673V2.00065C7.33366 1.81176 7.39766 1.65354 7.52566 1.52598C7.65321 1.39798 7.81144 1.33398 8.00033 1.33398C8.18921 1.33398 8.34766 1.39798 8.47566 1.52598C8.60321 1.65354 8.66699 1.81176 8.66699 2.00065V11.4673C8.95588 11.5895 9.19477 11.7895 9.38366 12.0673C9.57255 12.3451 9.66699 12.6562 9.66699 13.0007C9.66699 13.4673 9.50588 13.8618 9.18366 14.184C8.86144 14.5062 8.46699 14.6673 8.00033 14.6673C7.53366 14.6673 7.13921 14.5062 6.81699 14.184C6.49477 13.8618 6.33366 13.4673 6.33366 13.0007Z" fill="white"/>
<path d="M9.66634 2.99935C9.66634 3.34379 9.5719 3.65491 9.38301 3.93268C9.19412 4.21046 8.95523 4.41046 8.66634 4.53268L8.66634 13.9993C8.66634 14.1882 8.60234 14.3465 8.47434 14.474C8.34679 14.602 8.18856 14.666 7.99967 14.666C7.81079 14.666 7.65234 14.602 7.52434 14.474C7.39679 14.3465 7.33301 14.1882 7.33301 13.9993L7.33301 4.53268C7.04412 4.41046 6.80523 4.21046 6.61634 3.93268C6.42745 3.65491 6.33301 3.34379 6.33301 2.99935C6.33301 2.53268 6.49412 2.13824 6.81634 1.81602C7.13856 1.49379 7.53301 1.33268 7.99968 1.33268C8.46634 1.33268 8.86079 1.49379 9.18301 1.81602C9.50523 2.13824 9.66634 2.53268 9.66634 2.99935Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_749_7296)">
<path d="M8.00033 3C4.66699 3 1.82033 5.07333 0.666992 8C1.82033 10.9267 4.66699 13 8.00033 13C11.3337 13 14.1803 10.9267 15.3337 8C14.1803 5.07333 11.3337 3 8.00033 3ZM8.00033 11.3333C6.16033 11.3333 4.66699 9.84 4.66699 8C4.66699 6.16 6.16033 4.66667 8.00033 4.66667C9.84033 4.66667 11.3337 6.16 11.3337 8C11.3337 9.84 9.84033 11.3333 8.00033 11.3333ZM8.00033 6C6.89366 6 6.00033 6.89333 6.00033 8C6.00033 9.10667 6.89366 10 8.00033 10C9.10699 10 10.0003 9.10667 10.0003 8C10.0003 6.89333 9.10699 6 8.00033 6Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_749_7296">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 775 B

View File

@@ -0,0 +1,11 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_749_8061)">
<path d="M4.18164 14.3791H11.8187L8.00018 10.5605L4.18164 14.3791Z" fill="white"/>
<path d="M13.7275 2.28711H2.27187C1.5718 2.28711 0.999023 2.85989 0.999023 3.55995V11.197C0.999023 11.8971 1.5718 12.4699 2.27187 12.4699H4.81756V11.197H2.27187V3.55995H13.7275V11.197H11.1818V12.4699H13.7275C14.4275 12.4699 15.0003 11.8971 15.0003 11.197V3.55995C15.0003 2.85989 14.4275 2.28711 13.7275 2.28711Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_749_8061">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 658 B

View File

@@ -0,0 +1,11 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="16" height="16" rx="4" fill="#1E5149"/>
<g clip-path="url(#clip0_3341_4980)">
<path d="M11.8661 4.72461L12.5702 5.42969L12.6415 5.5L12.5702 5.57031L6.57019 11.5703L6.49988 11.6416L6.42957 11.5703L3.63464 8.77539L3.56335 8.70508L3.63464 8.63379L4.3446 7.92871L4.41492 7.8584L4.48523 7.92969L6.49988 9.94434L11.7245 4.72461L11.7948 4.65332L11.8661 4.72461Z" fill="white" stroke="white" stroke-width="0.2"/>
</g>
<defs>
<clipPath id="clip0_3341_4980">
<rect width="12" height="12" fill="white" transform="translate(2 2)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 656 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.07312 11.8203C7.41687 11.8203 6.87781 11.2812 6.87781 10.6133C6.87781 9.95703 7.41687 9.41797 8.07312 9.41797C8.74109 9.41797 9.28016 9.95703 9.28016 10.6133C9.28016 11.2812 8.74109 11.8203 8.07312 11.8203Z" fill="#AAAAAA"/>
</svg>

After

Width:  |  Height:  |  Size: 340 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3335_4953)">
<path d="M6.66667 12H9.33333V10.6667H6.66667V12ZM2 4V5.33333H14V4H2ZM4 8.66667H12V7.33333H4V8.66667Z" fill="#111111"/>
</g>
<defs>
<clipPath id="clip0_3335_4953">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 368 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3358_5760)">
<path d="M2.66659 13.3337C2.29992 13.3337 1.98614 13.2032 1.72525 12.9423C1.46392 12.681 1.33325 12.367 1.33325 12.0003V4.00033C1.33325 3.63366 1.46392 3.31988 1.72525 3.05899C1.98614 2.79766 2.29992 2.66699 2.66659 2.66699H6.11659C6.29436 2.66699 6.46392 2.70033 6.62525 2.76699C6.78614 2.83366 6.9277 2.9281 7.04992 3.05033L7.99992 4.00033H13.3333C13.6999 4.00033 14.0139 4.13099 14.2753 4.39233C14.5361 4.65321 14.6666 4.96699 14.6666 5.33366H3.99992C3.63325 5.33366 3.31947 5.4641 3.05859 5.72499C2.79725 5.98633 2.66659 6.30033 2.66659 6.66699V12.0003L3.98325 7.61699C4.07214 7.3281 4.23614 7.09744 4.47525 6.92499C4.71392 6.75299 4.9777 6.66699 5.26659 6.66699H13.8666C14.3221 6.66699 14.6806 6.84744 14.9419 7.20833C15.2028 7.56966 15.2721 7.96144 15.1499 8.38366L13.9499 12.3837C13.861 12.6725 13.6973 12.9032 13.4586 13.0757C13.2195 13.2477 12.9555 13.3337 12.6666 13.3337H2.66659Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_3358_5760">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.3334 4.66667L10.3934 5.60667L12.1134 7.33333H5.33337V8.66667H12.1134L10.3934 10.3867L11.3334 11.3333L14.6667 8L11.3334 4.66667ZM2.66671 3.33333H8.00004V2H2.66671C1.93337 2 1.33337 2.6 1.33337 3.33333V12.6667C1.33337 13.4 1.93337 14 2.66671 14H8.00004V12.6667H2.66671V3.33333Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 408 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2901_4118)">
<path d="M5.72656 11.06L8.7799 8L5.72656 4.94L6.66656 4L10.6666 8L6.66656 12L5.72656 11.06Z" fill="#AAAAAA"/>
</g>
<defs>
<clipPath id="clip0_2901_4118">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 359 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 804 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 898 KiB

View File

@@ -0,0 +1,12 @@
<svg width="274" height="22" viewBox="0 0 274 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.69922 5.26953C1.14844 5.26953 0.703125 4.82422 0.714844 4.28516C0.703125 3.74609 1.14844 3.3125 1.69922 3.3125C2.21484 3.3125 2.67188 3.74609 2.67188 4.28516C2.67188 4.82422 2.21484 5.26953 1.69922 5.26953Z" fill="white"/>
<path d="M3.57422 20.1172C1.6875 20.1172 0.609375 18.5352 0.609375 15.7578C0.609375 13.0039 1.71094 11.3984 3.57422 11.3984C5.4375 11.3984 6.53906 13.0039 6.53906 15.7578C6.53906 18.5352 5.44922 20.1172 3.57422 20.1172ZM3.57422 19.1797C4.79297 19.1797 5.50781 17.9492 5.50781 15.7578C5.50781 13.5664 4.79297 12.3125 3.57422 12.3125C2.35547 12.3125 1.62891 13.5664 1.62891 15.7578C1.62891 17.9492 2.34375 19.1797 3.57422 19.1797ZM9.49828 15.4531C8.39672 15.4531 7.79906 14.6328 7.79906 13.4141C7.79906 12.2188 8.42016 11.3867 9.49828 11.3867C10.6116 11.3867 11.1975 12.2188 11.1975 13.4141C11.1975 14.6328 10.5881 15.4531 9.49828 15.4531ZM9.49828 14.7266C10.0725 14.7266 10.342 14.2109 10.342 13.4141C10.342 12.6289 10.0959 12.1016 9.49828 12.1133C8.93578 12.1133 8.65453 12.6289 8.65453 13.4141C8.65453 14.2109 8.93578 14.7266 9.49828 14.7266ZM14.678 20.1172C13.5764 20.1289 12.967 19.2969 12.9788 18.0898C12.967 16.8828 13.5998 16.0508 14.678 16.0508C15.7795 16.0508 16.3655 16.8828 16.3655 18.0898C16.3655 19.2969 15.7561 20.1289 14.678 20.1172ZM14.678 19.3906C15.2405 19.3906 15.51 18.875 15.51 18.0898C15.51 17.293 15.2639 16.7656 14.678 16.7773C14.1155 16.7891 13.8225 17.293 13.8225 18.0898C13.8225 18.875 14.1038 19.3906 14.678 19.3906ZM8.63109 20L14.467 11.5156H15.4163L9.58031 20H8.63109Z" fill="white"/>
<path d="M69.1271 5.26953C68.5764 5.26953 68.1311 4.82422 68.1428 4.28516C68.1311 3.74609 68.5764 3.3125 69.1271 3.3125C69.6428 3.3125 70.0998 3.74609 70.0998 4.28516C70.0998 4.82422 69.6428 5.26953 69.1271 5.26953Z" fill="white"/>
<path d="M58.3684 20L58.3567 19.2266L61.2512 16.1797C62.259 15.1133 62.7395 14.5391 62.7395 13.7539C62.7395 12.8867 62.0012 12.3125 61.052 12.3125C60.0442 12.3125 59.3996 12.957 59.3996 13.9062H58.4036C58.3918 12.4062 59.552 11.3984 61.0871 11.3984C62.6223 11.3984 63.7239 12.4297 63.7239 13.7539C63.7239 14.7031 63.2786 15.4414 61.7786 16.9883L59.8332 18.9922V19.0625H63.8762V20H58.3684ZM67.937 20.1172C66.4018 20.1172 65.2417 19.168 65.1831 17.8672H66.2026C66.2846 18.6289 67.0229 19.1914 67.937 19.1914C69.0386 19.1914 69.8354 18.3828 69.8354 17.3164C69.8354 16.2148 69.0034 15.4062 67.8667 15.3945C67.1518 15.3828 66.6011 15.6055 66.2846 16.1562H65.2651L65.8628 11.5156H70.4565V12.4531H66.7417L66.4253 14.9375H66.5073C66.8823 14.6445 67.4565 14.4453 68.0542 14.4453C69.6714 14.4453 70.8667 15.6406 70.8667 17.293C70.8667 18.9336 69.6245 20.1172 67.937 20.1172ZM73.8845 15.4531C72.7829 15.4531 72.1853 14.6328 72.1853 13.4141C72.1853 12.2188 72.8064 11.3867 73.8845 11.3867C74.9978 11.3867 75.5837 12.2188 75.5837 13.4141C75.5837 14.6328 74.9743 15.4531 73.8845 15.4531ZM73.8845 14.7266C74.4587 14.7266 74.7282 14.2109 74.7282 13.4141C74.7282 12.6289 74.4821 12.1016 73.8845 12.1133C73.322 12.1133 73.0407 12.6289 73.0407 13.4141C73.0407 14.2109 73.322 14.7266 73.8845 14.7266ZM79.0642 20.1172C77.9626 20.1289 77.3532 19.2969 77.365 18.0898C77.3532 16.8828 77.9861 16.0508 79.0642 16.0508C80.1657 16.0508 80.7517 16.8828 80.7517 18.0898C80.7517 19.2969 80.1423 20.1289 79.0642 20.1172ZM79.0642 19.3906C79.6267 19.3906 79.8962 18.875 79.8962 18.0898C79.8962 17.293 79.6501 16.7656 79.0642 16.7773C78.5017 16.7891 78.2087 17.293 78.2087 18.0898C78.2087 18.875 78.49 19.3906 79.0642 19.3906ZM73.0173 20L78.8532 11.5156H79.8025L73.9665 20H73.0173Z" fill="white"/>
<path d="M137.005 5.26953C136.455 5.26953 136.009 4.82422 136.021 4.28516C136.009 3.74609 136.455 3.3125 137.005 3.3125C137.521 3.3125 137.978 3.74609 137.978 4.28516C137.978 4.82422 137.521 5.26953 137.005 5.26953Z" fill="white"/>
<path d="M128.474 20.1172C126.939 20.1172 125.779 19.168 125.72 17.8672H126.74C126.822 18.6289 127.56 19.1914 128.474 19.1914C129.576 19.1914 130.372 18.3828 130.372 17.3164C130.372 16.2148 129.54 15.4062 128.404 15.3945C127.689 15.3828 127.138 15.6055 126.822 16.1562H125.802L126.4 11.5156H130.994V12.4531H127.279L126.962 14.9375H127.044C127.419 14.6445 127.994 14.4453 128.591 14.4453C130.208 14.4453 131.404 15.6406 131.404 17.293C131.404 18.9336 130.161 20.1172 128.474 20.1172ZM135.406 20.1172C133.519 20.1172 132.441 18.5352 132.441 15.7578C132.441 13.0039 133.543 11.3984 135.406 11.3984C137.269 11.3984 138.371 13.0039 138.371 15.7578C138.371 18.5352 137.281 20.1172 135.406 20.1172ZM135.406 19.1797C136.625 19.1797 137.339 17.9492 137.339 15.7578C137.339 13.5664 136.625 12.3125 135.406 12.3125C134.187 12.3125 133.461 13.5664 133.461 15.7578C133.461 17.9492 134.175 19.1797 135.406 19.1797ZM141.33 15.4531C140.228 15.4531 139.631 14.6328 139.631 13.4141C139.631 12.2188 140.252 11.3867 141.33 11.3867C142.443 11.3867 143.029 12.2188 143.029 13.4141C143.029 14.6328 142.42 15.4531 141.33 15.4531ZM141.33 14.7266C141.904 14.7266 142.174 14.2109 142.174 13.4141C142.174 12.6289 141.928 12.1016 141.33 12.1133C140.767 12.1133 140.486 12.6289 140.486 13.4141C140.486 14.2109 140.767 14.7266 141.33 14.7266ZM146.51 20.1172C145.408 20.1289 144.799 19.2969 144.81 18.0898C144.799 16.8828 145.431 16.0508 146.51 16.0508C147.611 16.0508 148.197 16.8828 148.197 18.0898C148.197 19.2969 147.588 20.1289 146.51 20.1172ZM146.51 19.3906C147.072 19.3906 147.342 18.875 147.342 18.0898C147.342 17.293 147.096 16.7656 146.51 16.7773C145.947 16.7891 145.654 17.293 145.654 18.0898C145.654 18.875 145.935 19.3906 146.51 19.3906ZM140.463 20L146.299 11.5156H147.248L141.412 20H140.463Z" fill="white"/>
<path d="M196.735 20L200.626 12.5117V12.4531H196.137V11.5156H201.716V12.5L197.837 20H196.735ZM205.495 20.1172C203.96 20.1172 202.8 19.168 202.741 17.8672H203.761C203.843 18.6289 204.581 19.1914 205.495 19.1914C206.597 19.1914 207.394 18.3828 207.394 17.3164C207.394 16.2148 206.561 15.4062 205.425 15.3945C204.71 15.3828 204.159 15.6055 203.843 16.1562H202.823L203.421 11.5156H208.015V12.4531H204.3L203.983 14.9375H204.065C204.44 14.6445 205.015 14.4453 205.612 14.4453C207.229 14.4453 208.425 15.6406 208.425 17.293C208.425 18.9336 207.183 20.1172 205.495 20.1172ZM211.443 15.4531C210.341 15.4531 209.743 14.6328 209.743 13.4141C209.743 12.2188 210.364 11.3867 211.443 11.3867C212.556 11.3867 213.142 12.2188 213.142 13.4141C213.142 14.6328 212.532 15.4531 211.443 15.4531ZM211.443 14.7266C212.017 14.7266 212.286 14.2109 212.286 13.4141C212.286 12.6289 212.04 12.1016 211.443 12.1133C210.88 12.1133 210.599 12.6289 210.599 13.4141C210.599 14.2109 210.88 14.7266 211.443 14.7266ZM216.622 20.1172C215.521 20.1289 214.911 19.2969 214.923 18.0898C214.911 16.8828 215.544 16.0508 216.622 16.0508C217.724 16.0508 218.31 16.8828 218.31 18.0898C218.31 19.2969 217.7 20.1289 216.622 20.1172ZM216.622 19.3906C217.185 19.3906 217.454 18.875 217.454 18.0898C217.454 17.293 217.208 16.7656 216.622 16.7773C216.06 16.7891 215.767 17.293 215.767 18.0898C215.767 18.875 216.048 19.3906 216.622 19.3906ZM210.575 20L216.411 11.5156H217.361L211.525 20H210.575Z" fill="white"/>
<path d="M206.51 5.26953C205.959 5.26953 205.514 4.82422 205.525 4.28516C205.514 3.74609 205.959 3.3125 206.51 3.3125C207.025 3.3125 207.482 3.74609 207.482 4.28516C207.482 4.82422 207.025 5.26953 206.51 5.26953Z" fill="white"/>
<path d="M248.611 11.5156V20H247.544V12.6172H247.498L245.435 13.9883V12.9219L247.544 11.5156H248.611ZM253.41 20.1172C251.523 20.1172 250.445 18.5352 250.445 15.7578C250.445 13.0039 251.547 11.3984 253.41 11.3984C255.273 11.3984 256.375 13.0039 256.375 15.7578C256.375 18.5352 255.285 20.1172 253.41 20.1172ZM253.41 19.1797C254.629 19.1797 255.343 17.9492 255.343 15.7578C255.343 13.5664 254.629 12.3125 253.41 12.3125C252.191 12.3125 251.465 13.5664 251.465 15.7578C251.465 17.9492 252.179 19.1797 253.41 19.1797ZM260.318 20.1172C258.432 20.1172 257.353 18.5352 257.353 15.7578C257.353 13.0039 258.455 11.3984 260.318 11.3984C262.182 11.3984 263.283 13.0039 263.283 15.7578C263.283 18.5352 262.193 20.1172 260.318 20.1172ZM260.318 19.1797C261.537 19.1797 262.252 17.9492 262.252 15.7578C262.252 13.5664 261.537 12.3125 260.318 12.3125C259.1 12.3125 258.373 13.5664 258.373 15.7578C258.373 17.9492 259.088 19.1797 260.318 19.1797ZM266.242 15.4531C265.141 15.4531 264.543 14.6328 264.543 13.4141C264.543 12.2188 265.164 11.3867 266.242 11.3867C267.356 11.3867 267.942 12.2188 267.942 13.4141C267.942 14.6328 267.332 15.4531 266.242 15.4531ZM266.242 14.7266C266.817 14.7266 267.086 14.2109 267.086 13.4141C267.086 12.6289 266.84 12.1016 266.242 12.1133C265.68 12.1133 265.399 12.6289 265.399 13.4141C265.399 14.2109 265.68 14.7266 266.242 14.7266ZM271.422 20.1172C270.321 20.1289 269.711 19.2969 269.723 18.0898C269.711 16.8828 270.344 16.0508 271.422 16.0508C272.524 16.0508 273.11 16.8828 273.11 18.0898C273.11 19.2969 272.5 20.1289 271.422 20.1172ZM271.422 19.3906C271.985 19.3906 272.254 18.875 272.254 18.0898C272.254 17.293 272.008 16.7656 271.422 16.7773C270.86 16.7891 270.567 17.293 270.567 18.0898C270.567 18.875 270.848 19.3906 271.422 19.3906ZM265.375 20L271.211 11.5156H272.16L266.324 20H265.375Z" fill="white"/>
<path d="M272.313 5.26953C271.762 5.26953 271.317 4.82422 271.328 4.28516C271.317 3.74609 271.762 3.3125 272.313 3.3125C272.828 3.3125 273.285 3.74609 273.285 4.28516C273.285 4.82422 272.828 5.26953 272.313 5.26953Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -0,0 +1,4 @@
<svg width="640" height="120" viewBox="0 0 640 120" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M296.931 90.8594V92.4766C296.931 94.0586 296.931 95.875 296.486 98.2422H299.298V100.352H290.884V103.656H296.978V111.086H294.376V105.742H281.908V103.656H288.283V100.352H279.939V98.2422H293.861C294.283 96.0742 294.329 94.4219 294.329 92.9453H282.329V90.8594H296.931ZM318.388 89.8984V111.086H315.881V100.375H313.537V110.008H311.099V90.2969H313.537V98.2422H315.881V89.8984H318.388ZM303.74 92.3359V103.516C305.568 103.48 307.572 103.328 309.787 102.883L310.045 105.156C307.185 105.672 304.771 105.812 302.521 105.812H301.115V92.3359H303.74ZM328.033 94.9844C328.01 98.7578 329.908 102.602 333.19 104.172L331.596 106.258C329.299 105.098 327.647 102.859 326.744 100.164C325.819 103.047 324.084 105.438 321.658 106.656L320.065 104.57C323.463 102.953 325.408 98.8984 325.432 94.9844V91.6094H328.033V94.9844ZM337.057 89.8984V98.1953H340.315V100.422H337.057V111.086H334.455V89.8984H337.057ZM346.608 90.8359C349.35 90.8125 351.507 92.3945 352.046 94.7266H355.866V89.8984H358.467V101.266H355.866V96.8359H352.069C351.542 99.2148 349.362 100.82 346.608 100.82C343.35 100.82 341.007 98.7344 341.007 95.8047C341.007 92.9219 343.35 90.8125 346.608 90.8359ZM346.608 93.0156C344.78 93.0156 343.491 94.0938 343.491 95.8047C343.491 97.4922 344.78 98.6172 346.608 98.6172C348.389 98.6172 349.655 97.4922 349.678 95.8047C349.655 94.0938 348.389 93.0156 346.608 93.0156ZM347.077 102.25V104.5H355.866V102.25H358.467V110.828H344.499V102.25H347.077ZM347.077 108.719H355.866V106.516H347.077V108.719Z" fill="white"/>
<path d="M41.5391 16.36H100.979C104.259 16.36 107.779 17.24 110.659 19.72C113.459 22.12 115.299 26.04 115.299 30.6V54.84C115.299 59.32 113.459 63.24 110.659 65.72C107.779 68.12 104.259 69 100.979 69H41.5391V16.36ZM51.8591 24.92V60.44H99.6991C101.219 60.44 102.659 60.04 103.459 59.32C104.339 58.6 104.979 57.64 104.979 55.32V30.04C104.979 27.72 104.339 26.84 103.459 26.12C102.659 25.4 101.219 24.92 99.6991 24.92H51.8591ZM136.075 16.36H181.275C184.635 16.36 188.075 17.24 190.955 19.72C193.755 22.12 195.675 26.04 195.675 30.6V54.84C195.675 59.32 193.755 63.24 190.955 65.72C188.075 68.12 184.635 69 181.275 69H136.075C132.795 69 129.275 68.12 126.395 65.72C123.595 63.24 121.755 59.32 121.755 54.84V30.6C121.755 26.04 123.595 22.12 126.395 19.72C129.275 17.24 132.795 16.36 136.075 16.36ZM137.355 24.92C135.835 24.92 134.395 25.4 133.595 26.12C132.715 26.84 132.075 27.72 132.075 30.04V55.32C132.075 57.64 132.715 58.6 133.595 59.32C134.395 60.04 135.835 60.44 137.355 60.44H179.995C181.515 60.44 182.955 60.04 183.755 59.32C184.635 58.6 185.275 57.64 185.275 55.32V30.04C185.275 27.72 184.635 26.84 183.755 26.12C182.955 25.4 181.515 24.92 179.995 24.92H137.355ZM202.945 16.36H212.465L242.545 58.04L272.545 16.36H282.145V69H271.825V34.2L246.865 69H238.225L213.265 34.2V69H202.945V16.36ZM290.211 16.36H357.011V24.92H300.531V38.28H353.571V46.92H300.531V60.44H357.011V69H290.211V16.36ZM376.138 16.36H415.658C418.938 16.36 422.458 17.24 425.338 19.72C427.978 21.88 429.738 25.48 429.978 29.56H419.578C419.498 27.56 418.938 26.76 418.138 26.12C417.258 25.4 415.898 24.92 414.378 24.92H377.418C375.898 24.92 374.458 25.4 373.658 26.12C372.778 26.84 372.138 27.72 372.138 30.04V32.76C372.138 35.08 372.778 35.96 373.658 36.68C374.458 37.4 375.898 37.88 377.418 37.88H417.258C420.538 37.88 424.058 38.84 426.938 41.24C429.738 43.64 431.578 47.56 431.578 52.12V54.84C431.498 59.32 429.738 63.24 426.858 65.72C423.978 68.12 420.538 69.08 417.178 69.08H376.138C372.778 69.08 369.338 68.12 366.458 65.72C363.658 63.24 361.818 59.32 361.818 54.84V53.24H372.138C372.138 54.28 372.138 55.32 372.138 55.32C372.138 57.64 372.778 58.6 373.658 59.32C374.458 60.04 375.898 60.44 377.418 60.44H415.898C417.418 60.44 418.858 60.04 419.658 59.32C420.538 58.6 421.178 57.64 421.178 55.32C421.178 55.32 421.178 52.28 421.178 50.68C421.018 49 420.458 48.28 419.738 47.64C418.858 46.92 417.498 46.44 415.978 46.44H376.138C372.858 46.44 369.338 45.48 366.458 43.08C363.738 40.76 361.898 37 361.818 32.6V30.6C361.818 26.04 363.658 22.12 366.458 19.72C369.338 17.24 372.858 16.36 376.138 16.36ZM433.869 16.36H504.429V24.92H474.269V69H463.949V24.92H433.869V16.36ZM508.492 16.36H518.812V69H508.492V16.36ZM540.45 16.36H585.65C589.01 16.36 592.45 17.24 595.33 19.64C598.21 22.12 600.05 26.04 600.05 30.6L599.89 34.2H589.65V30.04C589.65 27.72 589.01 26.84 588.13 26.12C587.33 25.4 585.89 24.92 584.37 24.92H541.73C540.21 24.92 538.77 25.4 537.97 26.12C537.09 26.84 536.45 27.72 536.45 30.04V55.32C536.45 57.64 537.09 58.6 537.97 59.32C538.77 60.04 540.21 60.44 541.73 60.44H584.37C585.89 60.44 587.33 60.04 588.13 59.32C589.01 58.6 589.65 57.64 589.65 55.32V51.16H599.89L600.05 54.84C600.05 59.32 598.21 63.24 595.33 65.72C592.45 68.12 589.01 69 585.65 69H540.45C537.17 69 533.65 68.12 530.77 65.72C527.97 63.24 526.13 59.32 526.13 54.84V30.6C526.13 26.04 527.97 22.12 530.77 19.72C533.65 17.24 537.17 16.36 540.45 16.36Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@@ -0,0 +1,4 @@
<svg width="640" height="120" viewBox="0 0 640 120" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M289.12 100.633V102.742H269.808V100.633H278.151V98.3828H280.73V100.633H289.12ZM280.73 89.9453V91.8672H287.222V93.9297H280.94C281.257 95.6641 283.753 97.1172 288.159 97.4219L287.362 99.4141C283.565 99.1211 280.765 97.9375 279.44 96.1094C278.116 97.9375 275.292 99.1211 271.519 99.4141L270.722 97.4219C275.105 97.1172 277.601 95.6641 277.94 93.9297H271.706V91.8672H278.151V89.9453H280.73ZM279.44 103.914C284.058 103.914 286.753 105.18 286.776 107.5C286.753 109.797 284.058 111.062 279.44 111.062C274.8 111.062 272.058 109.797 272.058 107.5C272.058 105.18 274.8 103.914 279.44 103.914ZM279.44 105.859C276.323 105.859 274.683 106.398 274.706 107.5C274.683 108.578 276.323 109.117 279.44 109.117C282.487 109.117 284.151 108.578 284.175 107.5C284.151 106.398 282.487 105.859 279.44 105.859ZM301.906 90.9297V92.0781C301.906 93.2969 301.906 95.1484 301.414 97.4219L298.882 97.1406C299.21 95.4297 299.281 94.082 299.304 92.9922H291.101V90.9297H301.906ZM296.539 95.1953V98.6641C298.742 98.6055 300.98 98.4531 303.054 98.1953L303.218 100.023C298.812 100.773 293.89 100.82 290.07 100.82L289.835 98.7812C291.113 98.7812 292.519 98.7812 293.984 98.7344V95.1953H296.539ZM306.968 89.8984V94.6094H309.71V96.7188H306.968V101.219H304.296V89.8984H306.968ZM306.968 102.039V107.289H295.203V108.906H307.695V110.875H292.625V105.438H304.32V103.961H292.578V102.039H306.968ZM328.027 89.8984V111.086H325.402V89.8984H328.027ZM321.699 92.1484C321.699 98.4531 319.262 103.82 311.832 107.336L310.473 105.25C316.016 102.613 318.594 99.0273 319.051 94.2109H311.551V92.1484H321.699ZM343.883 91.5859V93.5078H331.344V91.5859H336.29V89.7812H338.891V91.5859H343.883ZM337.625 94.1172C340.719 94.0938 342.829 95.3359 342.829 97.3047C342.829 98.9688 341.282 100.082 338.891 100.375V101.5C340.684 101.418 342.477 101.266 344.165 101.055L344.352 102.836C339.805 103.609 334.79 103.68 331.04 103.68L330.688 101.664C332.375 101.676 334.297 101.664 336.29 101.594V100.352C333.887 100.07 332.375 98.957 332.399 97.3047C332.375 95.3359 334.461 94.0938 337.625 94.1172ZM337.625 95.875C335.961 95.8516 334.883 96.3672 334.907 97.3047C334.883 98.1719 335.961 98.6875 337.625 98.6641C339.243 98.6875 340.321 98.1719 340.344 97.3047C340.321 96.3672 339.243 95.8516 337.625 95.875ZM348.266 89.9453V104.195H345.641V89.9453H348.266ZM348.266 105.062V111.086H345.641V107.102H333.688V105.062H348.266ZM368.458 89.8984V100.703H365.88V89.8984H368.458ZM368.505 101.688V107.195H357.044V108.836H369.138V110.898H354.489V105.25H365.903V103.703H354.442V101.688H368.505ZM358.755 92.0547C358.755 94.75 360.536 97.2812 363.888 98.2891L362.622 100.305C360.161 99.5547 358.403 97.9727 357.442 95.9453C356.481 98.1484 354.677 99.8711 352.145 100.68L350.833 98.6406C354.255 97.5391 356.06 94.8203 356.06 92.0547V90.4141H358.755V92.0547Z" fill="white"/>
<path d="M219.981 16.36H265.181C268.541 16.36 271.981 17.24 274.861 19.72C277.741 22.12 279.581 26.04 279.581 30.6L279.421 34.2H269.181V30.04C269.181 27.72 268.541 26.84 267.661 26.12C266.861 25.4 265.421 24.92 263.901 24.92H221.261C219.741 24.92 218.301 25.4 217.501 26.12C216.621 26.84 215.981 27.72 215.981 30.04V55.32C215.981 57.64 216.621 58.6 217.501 59.32C218.301 60.04 219.741 60.44 221.261 60.44H263.901C265.421 60.44 266.861 60.04 267.661 59.32C268.541 58.6 269.181 57.64 269.181 55.32C269.181 55.32 269.181 52.84 269.181 49.24H242.381V40.68H279.421L279.581 54.84C279.581 59.32 277.661 63.24 274.861 65.72C271.981 68.12 268.541 69 265.181 69H219.981C216.701 69 213.181 68.12 210.301 65.72C207.501 63.24 205.661 59.32 205.661 54.84V30.6C205.661 26.04 207.501 22.12 210.301 19.72C213.181 17.24 216.701 16.36 219.981 16.36ZM286.695 16.36H340.535C343.815 16.36 347.335 17.24 350.215 19.72C353.015 22.12 354.855 26.04 354.855 30.6V36.92C354.855 41.48 353.015 45.4 350.215 47.8C347.335 50.28 343.815 51.16 340.535 51.16H297.015V69H286.695V16.36ZM297.015 24.92V42.6H339.255C340.775 42.6 342.135 42.12 343.015 41.4C343.815 40.68 344.455 39.8 344.455 37.48V30.04C344.455 27.72 343.815 26.84 343.015 26.12C342.135 25.4 340.775 24.92 339.255 24.92H297.015ZM360.523 16.36H419.963C423.243 16.36 426.763 17.24 429.643 19.72C432.443 22.12 434.283 26.04 434.283 30.6V54.84C434.283 59.32 432.443 63.24 429.643 65.72C426.763 68.12 423.243 69 419.963 69H360.523V16.36ZM370.843 24.92V60.44H418.683C420.203 60.44 421.643 60.04 422.443 59.32C423.323 58.6 423.963 57.64 423.963 55.32V30.04C423.963 27.72 423.323 26.84 422.443 26.12C421.643 25.4 420.203 24.92 418.683 24.92H370.843Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,3 @@
<svg width="46" height="11" viewBox="0 0 46 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.35498 0.787999H11.265C11.853 0.787999 12.455 0.942 12.959 1.376C13.463 1.796 13.785 2.482 13.785 3.28L13.757 3.91H11.965V3.182C11.965 2.776 11.853 2.622 11.699 2.496C11.559 2.37 11.307 2.286 11.041 2.286H3.57898C3.31298 2.286 3.06098 2.37 2.92098 2.496C2.76698 2.622 2.65498 2.776 2.65498 3.182V7.606C2.65498 8.012 2.76698 8.18 2.92098 8.306C3.06098 8.432 3.31298 8.502 3.57898 8.502H11.041C11.307 8.502 11.559 8.432 11.699 8.306C11.853 8.18 11.965 8.012 11.965 7.606C11.965 7.606 11.965 7.172 11.965 6.542H7.27498V5.044H13.757L13.785 7.522C13.785 8.306 13.449 8.992 12.959 9.426C12.455 9.846 11.853 10 11.265 10H3.35498C2.78098 10 2.16498 9.846 1.66098 9.426C1.17098 8.992 0.848984 8.306 0.848984 7.522V3.28C0.848984 2.482 1.17098 1.796 1.66098 1.376C2.16498 0.942 2.78098 0.787999 3.35498 0.787999ZM17.564 0.787999H24.48C25.054 0.787999 25.67 0.942 26.174 1.376C26.636 1.754 26.944 2.384 26.986 3.098H25.166C25.152 2.748 25.054 2.608 24.914 2.496C24.76 2.37 24.522 2.286 24.256 2.286H17.788C17.522 2.286 17.27 2.37 17.13 2.496C16.976 2.622 16.864 2.776 16.864 3.182V3.658C16.864 4.064 16.976 4.218 17.13 4.344C17.27 4.47 17.522 4.554 17.788 4.554H24.76C25.334 4.554 25.95 4.722 26.454 5.142C26.944 5.562 27.266 6.248 27.266 7.046V7.522C27.252 8.306 26.944 8.992 26.44 9.426C25.936 9.846 25.334 10.014 24.746 10.014H17.564C16.976 10.014 16.374 9.846 15.87 9.426C15.38 8.992 15.058 8.306 15.058 7.522V7.242H16.864C16.864 7.424 16.864 7.606 16.864 7.606C16.864 8.012 16.976 8.18 17.13 8.306C17.27 8.432 17.522 8.502 17.788 8.502H24.522C24.788 8.502 25.04 8.432 25.18 8.306C25.334 8.18 25.446 8.012 25.446 7.606C25.446 7.606 25.446 7.074 25.446 6.794C25.418 6.5 25.32 6.374 25.194 6.262C25.04 6.136 24.802 6.052 24.536 6.052H17.564C16.99 6.052 16.374 5.884 15.87 5.464C15.394 5.058 15.072 4.4 15.058 3.63V3.28C15.058 2.482 15.38 1.796 15.87 1.376C16.374 0.942 16.99 0.787999 17.564 0.787999ZM28.633 0.787999H30.439V10H28.633V0.787999ZM32.1395 0.787999H33.8055L39.0695 8.082L44.3195 0.787999H45.9995V10H44.1935V3.91L39.8255 10H38.3135L33.9455 3.91V10H32.1395V0.787999Z" fill="#AAAAAA"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,10 @@
<svg width="74" height="20" viewBox="0 0 74 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.67944 5.44019C6.19415 5.60666 5.73957 6.04067 5.31571 6.58764C5.1007 6.86708 1.5255 12.967 1.29822 13.2821C0.425916 14.4653 -0.0348057 14.2334 0.00205204 14.5069C0.0389098 14.7804 1.4395 14.9884 2.30566 14.5842C2.76638 14.3701 3.29468 14.0015 3.69397 13.4189C3.89669 13.1275 7.47803 7.03355 7.71146 6.72439C8.60219 5.5591 9.03219 5.77313 9.00762 5.49964C8.98305 5.22615 7.55174 5.07158 6.6733 5.44019" fill="#AAAAAA"/>
<path d="M14.0505 5.44074C13.5652 5.60721 13.1107 6.04123 12.6868 6.5882C12.4718 6.86763 8.90273 12.9735 8.6693 13.2827C7.77243 14.448 7.30556 14.2399 7.37313 14.5074C7.44685 14.7988 8.8413 14.9355 9.67674 14.5847C10.1436 14.3885 10.6535 14.0021 11.065 13.4194C11.2678 13.1281 14.8491 7.0341 15.0825 6.72494C15.9733 5.55965 16.4463 5.76774 16.3787 5.5002C16.2988 5.19104 14.9228 5.06024 14.0444 5.44074" fill="#AAAAAA"/>
<path d="M7.63145 10.6726C7.2383 10.7143 6.91887 10.5597 6.73458 10.417C6.73458 10.417 6.73458 10.417 6.72844 10.417C5.83771 11.9212 5.10055 13.1697 4.98384 13.3124C4.09311 14.4777 3.65082 14.2636 3.68768 14.5371C3.73068 14.8403 5.16813 15.0068 6.00971 14.6144C6.47043 14.3944 6.97416 14.0258 7.38573 13.4491C7.47788 13.3183 8.2396 12.0639 9.09962 10.6072C9.00133 10.5597 8.87233 10.4883 8.70033 10.4646C8.22118 10.411 7.88331 10.6726 7.63145 10.6726Z" fill="#AAAAAA"/>
<path d="M10.3647 5.441C9.87944 5.60747 9.42486 6.04148 9.00099 6.58846C8.90885 6.71331 8.09798 8.08669 7.28711 9.44818C7.39768 9.54331 7.66797 9.60276 7.88298 9.60276C8.15941 9.60276 8.41127 9.45412 8.49113 9.4244C8.63856 9.37683 8.98257 9.32333 9.302 9.43629C9.41872 9.47791 9.56 9.56709 9.66443 9.62059C10.4937 8.22343 11.2985 6.86194 11.4029 6.7252C12.2998 5.55991 12.7728 5.76205 12.6991 5.50046C12.6131 5.20319 11.2309 5.04861 10.3647 5.441Z" fill="#AAAAAA"/>
<path d="M24.7522 5.55908C24.875 5.67799 24.9057 5.84446 24.8627 6.05849C25.2129 6.07633 25.563 6.07633 25.9132 6.05849C26.2572 6.04065 26.6135 6.01093 26.9882 5.96336C27.3568 5.9158 27.5411 6.12389 27.5288 6.59357C27.5226 7.05731 27.3568 7.25945 27.0373 7.2C26.8776 7.17027 26.7179 7.15244 26.5582 7.15244C26.3985 7.15244 26.2265 7.17027 26.0545 7.2C26.1343 7.29513 26.208 7.41998 26.2695 7.58645C26.3309 7.74697 26.3677 7.91939 26.3677 8.08586C26.3677 8.56743 26.1773 9.03712 25.7903 9.49491C25.4033 9.9527 24.8566 10.1846 24.1501 10.1846C23.4437 10.1846 22.9338 9.9646 22.5223 9.53058C22.1107 9.09657 21.908 8.62689 21.908 8.13342C21.908 7.96101 21.9387 7.78265 22.0062 7.59834C22.0677 7.41403 22.1353 7.27729 22.1967 7.2C22.0861 7.15244 21.9202 7.1346 21.7052 7.14055C21.4902 7.14649 21.306 7.17027 21.1647 7.2C20.8759 7.25945 20.7285 7.05731 20.7285 6.58168C20.7285 6.10605 20.8882 5.90391 21.2077 5.96336C21.5578 6.02282 21.9202 6.05849 22.295 6.07038C22.6635 6.07633 23.0444 6.07038 23.4253 6.05849C23.4068 5.82662 23.4498 5.6542 23.5604 5.54719C23.6648 5.44017 23.8614 5.38666 24.1501 5.38666C24.4389 5.38666 24.6416 5.44612 24.7644 5.55908H24.7522ZM22.7618 12.6222C22.7803 12.8957 22.7925 13.1097 22.811 13.2643C23.0997 13.3118 23.5358 13.3356 24.1256 13.3475C24.7091 13.3535 25.3726 13.3594 26.1159 13.3594C26.8592 13.3594 27.7131 13.3535 28.6345 13.3356C29.5559 13.3178 30.2194 13.2999 30.6248 13.2643C30.9934 13.2345 31.1777 13.4486 31.1777 13.9064C31.1777 14.3642 30.9934 14.5782 30.6248 14.5485C30.2255 14.5187 29.5989 14.495 28.7451 14.4771C27.8912 14.4593 27.0189 14.4533 26.1159 14.4533C25.2129 14.4533 24.4389 14.4652 23.7447 14.489C23.0506 14.5128 22.51 14.5366 22.1414 14.5723C21.8035 14.602 21.521 14.5425 21.2998 14.3879C21.0725 14.2334 21.0049 13.9539 21.0848 13.5497C21.1462 13.2405 21.1831 12.9432 21.1831 12.6638C21.1831 12.3844 21.1524 12.0811 21.0848 11.7542C21.0172 11.3974 21.3182 11.2191 21.9755 11.2191C22.6328 11.2191 22.9215 11.3974 22.8417 11.7542C22.7803 12.0633 22.7557 12.3546 22.768 12.6281L22.7618 12.6222ZM23.4744 7.31891C23.2901 7.49132 23.198 7.70536 23.198 7.9729C23.198 8.2226 23.2901 8.43664 23.4744 8.615C23.6587 8.79336 23.8799 8.88254 24.1379 8.88254C24.3959 8.88254 24.617 8.79336 24.8013 8.615C24.9856 8.43664 25.0777 8.2226 25.0777 7.9729C25.0777 7.7113 24.9856 7.49132 24.8013 7.31891C24.617 7.14649 24.3959 7.06326 24.1379 7.06326C23.8799 7.06326 23.6587 7.14649 23.4744 7.31891ZM30.8337 6.26658C30.8152 6.51628 30.8091 6.72437 30.8091 6.89679C30.8091 7.0038 30.932 7.0692 31.1715 7.08109C31.4111 7.09893 31.62 7.07515 31.7981 7.00975C32.1483 6.8849 32.3264 7.10487 32.3264 7.67563C32.3264 8.24638 32.1483 8.49014 31.7981 8.41285C31.6077 8.36529 31.3927 8.32962 31.1593 8.29395C30.9258 8.26422 30.8091 8.29989 30.8091 8.41285C30.8091 8.64472 30.8152 9.07874 30.8337 9.70894C30.8521 10.3392 30.8767 10.7791 30.9074 11.0288C30.9565 11.3736 30.6678 11.5401 30.0535 11.5401C29.4392 11.5401 29.1444 11.3677 29.1751 11.0288C29.2058 10.6721 29.2365 10.1846 29.2611 9.5722C29.2857 8.95983 29.2979 8.47825 29.2979 8.13937C29.2979 7.80048 29.2857 7.34863 29.2611 6.83139C29.2365 6.32009 29.2058 5.89202 29.1751 5.54719C29.1444 5.19047 29.4331 5.0121 30.0535 5.024C30.674 5.02994 30.9565 5.2083 30.9074 5.54719C30.8767 5.77906 30.8521 6.02282 30.8337 6.27252V6.26658Z" fill="#AAAAAA"/>
<path d="M39.6671 5.77778C39.8453 5.9502 39.9067 6.18207 39.8575 6.47933C39.8268 6.72904 39.7961 6.95496 39.7715 7.169C39.747 7.37708 39.7347 7.56734 39.7347 7.73975C39.7347 7.94189 39.747 8.13215 39.7715 8.31051C39.7961 8.48887 39.8207 8.7029 39.8575 8.95261C39.9067 9.24987 39.8391 9.51147 39.6671 9.74334C39.489 9.97521 39.2064 10.0644 38.8255 9.99899C38.5859 9.96926 38.3341 9.93954 38.0761 9.91576C37.8181 9.89197 37.5785 9.88008 37.3512 9.88008C37.1424 9.88008 36.9151 9.89197 36.6632 9.91576C36.4113 9.93954 36.1718 9.96926 35.926 9.99899C35.5698 10.0466 35.2995 9.96926 35.109 9.76712C34.9186 9.56498 34.851 9.2796 34.9186 8.90504C34.9493 8.65534 34.98 8.4413 35.0046 8.25105C35.0292 8.06675 35.0415 7.89433 35.0415 7.73975C35.0415 7.47816 35.0292 7.25818 35.0046 7.08576C34.98 6.91335 34.9493 6.72309 34.9186 6.50312C34.8695 6.24152 34.937 6.0037 35.1213 5.80156C35.3056 5.59942 35.5759 5.52213 35.926 5.56969C36.1656 5.59942 36.4113 5.62915 36.6632 5.65293C36.9151 5.67671 37.1424 5.6886 37.3512 5.6886C37.5785 5.6886 37.8242 5.67671 38.1007 5.65293C38.3709 5.62915 38.6535 5.60536 38.9422 5.56969C39.2494 5.53997 39.489 5.61131 39.6671 5.77778ZM44.8948 11.0573C45.1712 11.2535 45.2633 11.5507 45.1835 11.9491C45.1528 12.1572 45.1221 12.3831 45.0975 12.6328C45.0729 12.8825 45.0606 13.0906 45.0606 13.263C45.0606 13.4176 45.0729 13.6138 45.0975 13.8456C45.1221 14.0775 45.1466 14.2915 45.1835 14.4759C45.2633 14.8147 44.9746 14.9931 44.3173 14.999C43.66 15.005 43.359 14.8088 43.4266 14.4045C43.4573 14.2024 43.488 13.9824 43.5126 13.7505C43.5372 13.5186 43.5495 13.2987 43.5495 13.0965C43.5495 13.0014 43.5495 12.8765 43.5372 12.722C43.531 12.5674 43.4942 12.4485 43.4266 12.3712C43.3775 12.2939 42.9167 12.2523 42.0383 12.2404C41.166 12.2344 40.4657 12.2285 39.9558 12.2285C39.446 12.2285 38.6535 12.2404 37.5969 12.2642C36.5342 12.288 35.8523 12.3177 35.5513 12.3474C35.195 12.395 35.023 12.1393 35.023 11.5923C35.023 11.0454 35.2012 10.7778 35.5513 10.8135C36.0673 10.8432 36.7983 10.873 37.7566 10.8967C38.7149 10.9205 39.489 10.9324 40.0848 10.9324C40.6807 10.9324 41.4056 10.9205 42.2164 10.8967C43.0273 10.873 43.617 10.8492 43.9856 10.8135C44.3235 10.7838 44.6306 10.8611 44.9009 11.0573H44.8948ZM36.4052 7.79326C36.3991 8.1916 36.4236 8.41752 36.4912 8.48292C36.5711 8.54238 36.8413 8.58994 37.2959 8.61372C37.7505 8.6375 38.0208 8.60183 38.1007 8.5067C38.1805 8.42941 38.2235 8.18565 38.2235 7.78137C38.2235 7.37708 38.1805 7.14521 38.1007 7.07982C38.0392 7.02036 37.7689 6.97874 37.2959 6.96091C36.8229 6.94307 36.5588 6.97874 36.5158 7.05603C36.4482 7.15116 36.4175 7.39492 36.4052 7.79326ZM42.5359 6.15828C42.5174 6.33664 42.5113 6.49122 42.5113 6.61013C42.5113 6.70526 42.6833 6.75282 43.0273 6.75282C43.3713 6.75282 43.5433 6.70526 43.5433 6.61013C43.5433 6.45555 43.5372 6.28314 43.5187 6.09883C43.5003 5.91452 43.4757 5.72427 43.445 5.53997C43.3959 5.18324 43.6785 5.00488 44.2866 5.00488C44.8948 5.00488 45.1835 5.18324 45.1528 5.53997C45.122 5.92641 45.0975 6.29503 45.079 6.63391C45.0606 6.9728 45.0545 7.29979 45.0545 7.6149C45.0545 7.93 45.0606 8.26294 45.079 8.63156C45.0975 8.99422 45.122 9.40445 45.1528 9.8563C45.1835 10.2011 44.8948 10.3676 44.2743 10.3676C43.6539 10.3676 43.3652 10.1952 43.3959 9.8563C43.4266 9.52931 43.4573 9.24393 43.4942 9.00611C43.5249 8.76235 43.5433 8.49481 43.5433 8.20349C43.5433 8.10836 43.3713 8.0608 43.0273 8.0608C42.6833 8.0608 42.5113 8.10836 42.5113 8.20349C42.5113 8.4532 42.5113 8.69696 42.5236 8.94072C42.5297 9.18448 42.5543 9.4758 42.585 9.81468C42.6157 10.1595 42.3331 10.326 41.7434 10.326C41.1537 10.326 40.865 10.1536 40.9018 9.81468C40.9326 9.46985 40.9571 9.11313 40.9756 8.74452C40.9878 8.36996 41.0001 7.97162 41.0001 7.54355C41.0001 7.11549 40.994 6.74688 40.9756 6.44961C40.9571 6.15828 40.9326 5.87291 40.9018 5.59347C40.8527 5.23675 41.1353 5.05839 41.7434 5.05839C42.3516 5.05839 42.6342 5.23675 42.585 5.59347C42.5666 5.79562 42.5543 5.98587 42.5359 6.16423V6.15828Z" fill="#AAAAAA"/>
<path d="M54.1397 5.85019C54.3793 5.99288 54.4776 6.23664 54.4468 6.59336C54.4161 6.97981 54.3916 7.38409 54.3731 7.79432C54.3547 8.20455 54.3486 8.63856 54.3486 9.09041C54.3486 9.54226 54.3547 9.97627 54.3731 10.44C54.3916 10.9037 54.4161 11.3675 54.4468 11.8134C54.4776 12.1582 54.195 12.3247 53.593 12.3247C52.991 12.3247 52.7022 12.1523 52.7391 11.8134C52.7882 11.2843 52.8128 10.8027 52.8251 10.3687C52.8312 9.93465 52.8374 9.51253 52.8374 9.10825C52.8374 8.70396 52.8374 8.30562 52.8251 7.91917C52.819 7.53273 52.7698 7.29491 52.69 7.21762C52.6224 7.15817 52.4381 7.1225 52.1248 7.11061C51.8115 7.10466 51.4675 7.09871 51.0989 7.09871C50.6996 7.09871 50.3372 7.10466 50.0116 7.1225C49.6922 7.14033 49.3789 7.16411 49.0718 7.19384C48.7155 7.2414 48.5435 6.9917 48.5435 6.44472C48.5435 5.89775 48.7216 5.65399 49.0718 5.70155C49.3789 5.73128 49.7168 5.75506 50.0976 5.7729C50.4723 5.79073 50.8594 5.79668 51.2402 5.79668C51.6211 5.79668 52.0019 5.79073 52.3705 5.7729C52.7391 5.75506 53.0524 5.73128 53.3042 5.70155C53.6237 5.65399 53.9001 5.70155 54.1335 5.84424L54.1397 5.85019ZM58.6179 6.67659C58.5995 7.00953 58.5933 7.31275 58.5933 7.57434C58.5933 7.68136 58.7162 7.73487 58.9558 7.72298C59.1953 7.71703 59.4042 7.68731 59.5823 7.63974C59.9509 7.54462 60.1352 7.75865 60.1229 8.28184C60.1168 8.80503 59.9325 9.02501 59.5823 8.94772C59.3919 8.90016 59.1769 8.87043 58.9435 8.8526C58.71 8.83476 58.5933 8.88232 58.5933 8.99529C58.5933 9.89898 58.5995 10.7848 58.6179 11.6648C58.6363 12.5447 58.6609 13.4305 58.6916 14.3342C58.71 14.6731 58.4213 14.8455 57.8378 14.8455C57.2542 14.8455 56.9655 14.6731 56.9839 14.3342C57.0146 13.6327 57.0392 12.8954 57.0576 12.1166C57.076 11.3378 57.0822 10.6005 57.0822 9.89898C57.0822 9.19743 57.076 8.47209 57.0576 7.71703C57.0392 6.96197 57.0146 6.23664 56.9839 5.53508C56.9655 5.17836 57.2542 5 57.85 5C58.4459 5 58.7223 5.17836 58.6916 5.53508C58.6609 5.9572 58.6363 6.33176 58.6179 6.6647V6.67659Z" fill="#AAAAAA"/>
<path d="M74.0003 10.12C74.0003 10.5837 73.816 10.8096 73.4474 10.7977C72.612 10.768 71.752 10.7442 70.8674 10.7264C69.9828 10.7086 69.0982 10.7026 68.2136 10.7026C67.329 10.7026 66.4567 10.7086 65.5967 10.7264C64.7367 10.7442 63.8583 10.768 62.9614 10.7977C62.6051 10.8156 62.4331 10.5897 62.4331 10.1319C62.4331 9.67407 62.6113 9.4541 62.9614 9.46599C63.7661 9.49571 64.7121 9.53733 65.8056 9.58489C66.899 9.63246 67.4458 9.60868 67.4458 9.51355V9.26979C67.4458 9.19844 67.4273 9.09737 67.3966 8.95469C67.3352 8.64553 67.5993 8.49095 68.2013 8.49095C68.8033 8.49095 69.0736 8.64553 69.0061 8.95469C68.9876 9.10926 68.9754 9.22223 68.9692 9.29357C68.9631 9.36492 68.9569 9.43626 68.9569 9.51355C68.9569 9.60868 69.5405 9.63246 70.7138 9.58489C71.8871 9.53733 72.7963 9.50166 73.4351 9.46599C73.8037 9.43626 73.988 9.65029 73.988 10.12H74.0003ZM73.5641 6.19009C73.5641 6.63599 73.3799 6.84408 73.0113 6.83219C72.5628 6.80246 71.8687 6.76084 70.9411 6.71328C70.0074 6.66572 69.6449 6.67166 69.8538 6.73706C70.4005 6.89164 70.935 7.04028 71.4571 7.18297C71.9793 7.32565 72.4891 7.4624 72.9867 7.60509C73.3737 7.7121 73.4904 7.9737 73.3491 8.38393C73.2017 8.79416 72.9744 8.94874 72.6488 8.83578C71.9117 8.60391 71.021 8.33637 69.9767 8.04504C68.9324 7.74778 68.3303 7.59914 68.1706 7.59914C68.0109 7.59914 67.4212 7.74778 66.4015 8.05099C65.3817 8.3542 64.5094 8.62174 63.7846 8.85361C63.4651 8.96063 63.2194 8.81794 63.0474 8.4196C62.8754 8.02126 63.0044 7.76561 63.4221 7.64076C63.9688 7.46834 64.5094 7.30782 65.05 7.16513C65.5906 7.0165 66.0882 6.87381 66.555 6.73112C66.7823 6.65383 66.4322 6.64194 65.5046 6.69545C64.5831 6.74895 63.8644 6.79057 63.3484 6.82624C62.9921 6.84408 62.8201 6.63005 62.8201 6.18414C62.8201 5.73824 62.9983 5.53015 63.3484 5.54204C64.1347 5.57177 64.9394 5.59555 65.7564 5.61339C66.5735 5.63123 67.3782 5.63717 68.1645 5.63717C68.9508 5.63717 69.7617 5.63123 70.5848 5.61339C71.4141 5.59555 72.2188 5.57177 73.0051 5.54204C73.3737 5.52421 73.558 5.73824 73.558 6.18414L73.5641 6.19009ZM73.0973 11.4042C73.3614 11.5944 73.4536 11.8798 73.3737 12.2663C73.343 12.4684 73.3123 12.6468 73.2877 12.8132C73.2631 12.9797 73.2508 13.1462 73.2508 13.3126C73.2508 13.4672 73.2631 13.6456 73.2877 13.8477C73.3123 14.0499 73.3369 14.2461 73.3737 14.4304C73.4536 14.7693 73.171 14.9476 72.5198 14.9536C71.8687 14.9595 71.5738 14.7633 71.6414 14.359C71.6721 14.1569 71.6967 13.9845 71.7151 13.8358C71.7335 13.6872 71.7397 13.5148 71.7397 13.3126C71.7397 13.2175 71.7397 13.1164 71.7274 13.0094C71.7213 12.9024 71.6844 12.8073 71.6168 12.73C71.5677 12.6527 71.1192 12.6111 70.2654 12.5992C69.4115 12.5932 68.7296 12.5873 68.2198 12.5873C67.7099 12.5873 66.8437 12.5992 65.6274 12.623C64.4173 12.6468 63.6556 12.6765 63.3484 12.7062C62.9921 12.7538 62.8201 12.4981 62.8201 11.9511C62.8201 11.4042 62.9983 11.1366 63.3484 11.1723C63.8644 11.202 64.6753 11.2318 65.781 11.2555C66.8868 11.2793 67.7406 11.2912 68.3365 11.2912C68.9324 11.2912 69.6572 11.2793 70.4681 11.2555C71.279 11.2318 71.8625 11.208 72.2127 11.1723C72.5321 11.1426 72.827 11.2199 73.0911 11.4101L73.0973 11.4042Z" fill="#AAAAAA"/>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,10 @@
<svg width="154" height="20" viewBox="0 0 154 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M40.3526 11.655H42.2876V12.435C42.2876 12.87 42.4076 13.05 42.5726 13.185C42.7226 13.32 42.9926 13.395 43.2776 13.395H49.0076C49.2926 13.395 49.5476 13.32 49.7126 13.185C49.8626 13.05 49.9826 12.87 49.9826 12.435V5.13H51.9176L51.9326 12.345C51.9326 13.185 51.5876 13.92 51.0476 14.385C50.5226 14.835 49.8626 15 49.2476 15H43.0376C42.4076 15 41.7626 14.835 41.2226 14.385C40.6976 13.92 40.3526 13.185 40.3526 12.345V11.655ZM58.7586 5.13H60.3786L67.4436 15H65.0436L63.4086 12.72H55.7136L54.0786 15H51.6936L58.7586 5.13ZM59.5686 7.335L56.8686 11.115H62.2686L59.5686 7.335ZM67.8338 5.13H69.5288L78.9038 12.36V5.13H80.8388V15.015H79.1438L69.7688 7.77V15H67.8338V5.13ZM84.5854 5.13H93.0604C93.6904 5.13 94.3354 5.295 94.8754 5.76C95.4154 6.21 95.7604 6.945 95.7604 7.8L95.7304 8.475H93.8104V7.695C93.8104 7.26 93.6904 7.095 93.5254 6.96C93.3754 6.825 93.1054 6.735 92.8204 6.735H84.8254C84.5404 6.735 84.2704 6.825 84.1204 6.96C83.9554 7.095 83.8354 7.26 83.8354 7.695V12.435C83.8354 12.87 83.9554 13.05 84.1204 13.185C84.2704 13.32 84.5404 13.395 84.8254 13.395H92.8204C93.1054 13.395 93.3754 13.32 93.5254 13.185C93.6904 13.05 93.8104 12.87 93.8104 12.435C93.8104 12.435 93.8104 11.97 93.8104 11.295H88.7854V9.69H95.7304L95.7604 12.345C95.7604 13.185 95.4004 13.92 94.8754 14.385C94.3354 14.835 93.6904 15 93.0604 15H84.5854C83.9704 15 83.3104 14.835 82.7704 14.385C82.2454 13.92 81.9004 13.185 81.9004 12.345V7.8C81.9004 6.945 82.2454 6.21 82.7704 5.76C83.3104 5.295 83.9704 5.13 84.5854 5.13ZM96.7943 5.13H98.7293V9.24H108.674V5.13H110.609V15.015H108.674V10.86H98.7293V15H96.7943V5.13ZM111.831 5.13H124.356V6.735H113.766V9.24H123.711V10.86H113.766V13.395H124.356V15H111.831V5.13ZM127.763 5.13H136.238C136.868 5.13 137.513 5.295 138.053 5.76C138.578 6.21 138.938 6.945 138.938 7.8V12.345C138.938 13.185 138.578 13.92 138.053 14.385C137.513 14.835 136.868 15 136.238 15H127.763C127.148 15 126.488 14.835 125.948 14.385C125.423 13.92 125.078 13.185 125.078 12.345V7.8C125.078 6.945 125.423 6.21 125.948 5.76C126.488 5.295 127.148 5.13 127.763 5.13ZM128.003 6.735C127.718 6.735 127.448 6.825 127.298 6.96C127.133 7.095 127.013 7.26 127.013 7.695V12.435C127.013 12.87 127.133 13.05 127.298 13.185C127.448 13.32 127.718 13.395 128.003 13.395H135.998C136.283 13.395 136.553 13.32 136.703 13.185C136.868 13.05 136.988 12.87 136.988 12.435V7.695C136.988 7.26 136.868 7.095 136.703 6.96C136.553 6.825 136.283 6.735 135.998 6.735H128.003ZM140.001 5.13H141.696L151.071 12.36V5.13H153.006V15.015H151.311L141.936 7.77V15H140.001V5.13Z" fill="white"/>
<path d="M25.8525 6.25953L29.1982 20H29.9973L25.8569 2.98926L21.6945 20H22.4892L25.8525 6.25953Z" fill="white"/>
<path d="M16.7374 3.27467L20.8075 19.9997H21.6066L16.7374 0L11.8461 19.9997H12.6452L16.7374 3.27467Z" fill="white"/>
<path d="M16.6627 7.69922L14.4673 19.9979H18.7307L16.6627 7.69922Z" fill="white"/>
<path d="M25.8306 10.2637L24.0084 19.9998H27.5473L25.8306 10.2637Z" fill="white"/>
<path d="M39.9992 5.10742C39.9992 5.10742 17.7296 8.02166 0 19.9995H10.1205C10.0327 19.7094 21.0182 8.65022 39.9992 5.10742Z" fill="white"/>
<path d="M19.0404 9.43559L18.2854 9.62012L19.1987 13.365L19.9537 13.1805L19.0404 9.43559Z" fill="white"/>
<path d="M26.8932 7.23247L26.1382 7.41699L26.687 9.66734L27.442 9.48281L26.8932 7.23247Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

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