initial commit in new repository

This commit is contained in:
Daniel Alejandro Gallegos 2024-04-16 14:26:41 -04:00
commit e1f7b5e8bd
Signed by: taco
SSH key fingerprint: SHA256:LlPRME+vkNz+HJIJp27uDA+PgoqS+M+KnFziTqGRSr8
8490 changed files with 320855 additions and 0 deletions

13
.gitignore vendored Normal file
View file

@ -0,0 +1,13 @@
# Generated files by hugo
/public/
/resources/_gen/
/assets/jsconfig.json
hugo_stats.json
# Executable may be added to repository
hugo.exe
hugo.darwin
hugo.linux
# Temporary lock file while building
/.hugo_build.lock

21
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,21 @@
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
variables:
GIT_SUBMODULE_STRATEGY: recursive
test:
script:
- hugo
except:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
pages:
script:
- hugo
artifacts:
paths:
- public
only:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH

6
archetypes/default.md Normal file
View file

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

21
assets/sass/base.sass Normal file
View file

@ -0,0 +1,21 @@
html, body
height: 100%
width: 100%
overflow: hidden
@font-face
font-family: SpaceGrotesk
src: url("/fonts/SpaceGrotesk-Medium.ttf")
body
background: $background
color: $foreground
font-family: SpaceGrotesk
a
color: $green
text-decoration: none
&:visited
color: $green
&:hover
color: $green-alt

26
assets/sass/colors.sass Normal file
View file

@ -0,0 +1,26 @@
$black: #121212
$black-alt: #5d5d5d
$red: #d74c4c
$red-alt: #f086aa
$green: #82e64e
$green-alt: #4d7936
$yellow: #fcf36e
$yellow-alt: #b0aa4d
$blue: #4faaf4
$blue-alt: #2f6692
$magenta: #b87ac2
$magenta-alt: #9575cd
$cyan: #4bb5c1
$cyan-alt: #4bb5c1
$white: #eeeeee
$white-alt: #e2e2e5
$foreground: $white
$background: #151515

21
assets/sass/layout.sass Normal file
View file

@ -0,0 +1,21 @@
.center
height: 100vh
padding: 0
margin: 0
display: flex
align-items: center
justify-content: center
flex-direction: row
img
height: 20vh
.smaller
img
height: 10vh
.about
display: flex
flex-direction: column
padding: 0 10vw
text-align: center
width: 666px
margin: auto

6
assets/sass/main.sass Normal file
View file

@ -0,0 +1,6 @@
@import "colors"
@import "base"
@import "layout"
@import "module"
@import "state"
@import "theme"

0
assets/sass/module.sass Normal file
View file

0
assets/sass/state.sass Normal file
View file

0
assets/sass/theme.sass Normal file
View file

10
config.toml Normal file
View file

@ -0,0 +1,10 @@
baseURL = 'https://tacowolf.net/'
languageCode= 'en-us'
title = '🌮🐺'
enableEmoji = true
[markup]
[markup.goldmark]
[markup.goldmark.parser]
[markup.goldmark.parser.attribute]
block = true

7
content/_index.md Normal file
View file

@ -0,0 +1,7 @@
---
title: TacoWolf
description: taco wolf dot net
---
[![taco](/emoji/taco.svg)](https://mestizo.monster)
[![wolf](/emoji/wolf.svg)](/wolf)

13
content/about.md Normal file
View file

@ -0,0 +1,13 @@
---
title: about
description: information and attribution
layout: about
---
content that is not user generated within taco wolf dot net, bird cat dot cafe, fursona dot directory and all subdomains therin are licensed under a [creative commons attribution-noncommercial-sharealike 4.0 international license](http://creativecommons.org/licenses/by-nc-sa/4.0/) unless specified otherwise.
this website anonymously (without cookies) collects basic analytics on a self-hosted instance of [umami](https://umami.is); you can see the analytics [here](https://umami.birdcat.cafe/share/lLN83UleWd68T6rg/tacowolf).
most of these websites also extensively use [mutant standard emoji](https://mutant.tech/), which are licensed under a [creative commons attribution-noncommercial-sharealike 4.0 international license](http://creativecommons.org/licenses/by-nc-sa/4.0/). you should check out [dzuk](https://dzuk.zone/), ze's cool.
[made by taco :taco:](https://fursona.directory/@taco)

10
content/wolf.md Normal file
View file

@ -0,0 +1,10 @@
---
title: wolf
layout: index
description: all of the stuff on here
---
[![back](/emoji/symbols/arrows/back.svg)](/)
[![fox](/emoji/people_animals/creatures/canids/fox.svg)](https://fox.tacowolf.net)
[![bird](/emoji/people_animals/creatures/birds/parrot.svg)](https://bird.tacowolf.net)
[![about](/emoji/symbols/signs/info.svg)](/about)

View file

@ -0,0 +1,7 @@
{{ define "main" }}
<main aria-role="main">
<div class="center about">
{{.Content}}
</div>
</main>
{{ end }}

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
{{ partial "head.html" . }}
<body>
{{ block "main" . }}
{{ end }}
{{ block "footer" . }}
{{ partial "footer.html" . }}
{{ end }}
</body>
</html>

View file

@ -0,0 +1,20 @@
{{ define "title" }}
{{ .Title }} &ndash; {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<main>
<article>
<header>
<h1>{{.Title}}</h1>
</header>
{{.Content}}
</article>
<ul>
{{ range .Pages }}
<li>
<a href="{{.Permalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a>
</li>
{{ end }}
</ul>
</main>
{{ end }}

View file

@ -0,0 +1,11 @@
{{ define "title" }}
{{ .Page.Title }} &ndash; {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<main aria-role="main">
<div class="center smaller">
{{.Content}}
</div>
</main>
{{ end }}

7
layouts/index.html Normal file
View file

@ -0,0 +1,7 @@
{{ define "main" }}
<main aria-role="main">
<div class="center">
{{.Content}}
</div>
</main>
{{ end }}

View file

@ -0,0 +1,7 @@
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#aa3d1e">
<meta name="theme-color" content="#151515">

View file

View file

@ -0,0 +1,12 @@
<head>
<meta charset="utf-8">
{{ partial "favicon.html" . }}
<title>{{ if .IsHome }}home &ndash; {{ else }}{{ if .Page.Title }}{{ .Page.Title }} &ndash; {{ end }}{{ end }}{{ .Site.Title }} dot 🌐 </title>
{{ template "_internal/opengraph.html" . }}
{{ $sass := resources.Get "sass/main.sass" }}
{{ $style := $sass | resources.ToCSS }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
<script async src="https://umami.birdcat.cafe/script.js" data-website-id="92c2c9cb-d376-4819-8994-2fcc1f417b58"></script>
</head>
{{ template "_internal/twitter_cards.html" . }}

View file

@ -0,0 +1,3 @@
<header>
<h1>{{ .Site.Title }}</h1>
</header>

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
static/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

9
static/browserconfig.xml Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#aa3d1e</TileColor>
</tile>
</msapplication>
</browserconfig>

View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:1.5;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="closed_umbrella" x="0" y="0" width="32" height="32" style="fill:none;"/>
<clipPath id="_clip1">
<rect x="0" y="0" width="32" height="32"/>
</clipPath>
<g clip-path="url(#_clip1)">
<g id="outline">
<path d="M18.772,9.986l1.985,-1.986c0,0 -0.808,-0.808 -1.585,-1.586c-0.781,-0.781 -0.781,-2.047 0,-2.828c0.827,-0.828 1.71,-1.711 1.71,-1.711c1.998,-1.998 5.238,-1.998 7.236,0c0.002,0.002 0.005,0.005 0.007,0.007c1.998,1.998 1.998,5.238 0,7.236l-5.111,5.11c0.684,-0.17 1.411,-0.032 1.987,0.383c0.627,0.452 0.999,1.178 0.999,1.951c0,0.289 0,0.639 0,0.921c0,1.038 -0.556,1.995 -1.456,2.51c-3.044,1.739 -20.552,11.743 -20.552,11.743c-0.783,0.448 -1.768,0.316 -2.406,-0.322c-0.638,-0.638 -0.77,-1.623 -0.322,-2.406c0,0 10.004,-17.508 11.743,-20.552c0.515,-0.9 1.472,-1.456 2.51,-1.456l0.921,0c0.773,0 1.499,0.372 1.951,0.999c0.415,0.576 0.553,1.303 0.383,1.987Z"/>
</g>
<g id="emoji">
<path d="M22,5c0,0 0.471,-0.471 1.004,-1.004c0.826,-0.826 2.166,-0.826 2.992,0c0.003,0.003 0.005,0.005 0.008,0.008c0.396,0.397 0.619,0.935 0.619,1.496c0,0.561 -0.223,1.1 -0.619,1.496c-1.05,1.05 -2.267,2.267 -2.267,2.267" style="fill:none;stroke:#525252;stroke-width:2px;"/>
<g>
<path d="M17,15.414l0,-0.828l3.724,-3.724l1.603,-0.096l0.282,1.039l-4.609,4.609l-1,-1Z" style="fill:#3d3d3d;"/>
<path d="M20.724,10.862l3.276,-3.276l1.414,1.414l-2.805,2.805l-1.885,-0.943Z" style="fill:#525252;"/>
</g>
<g>
<path d="M18.354,14.646c0.108,0.109 0.269,0.146 0.414,0.098c0.532,-0.177 1.227,-0.409 1.699,-0.566c0.123,-0.041 0.259,-0.021 0.365,0.055c0.105,0.076 0.168,0.199 0.168,0.329c0,0.536 0,1.34 0,1.876c0,0.13 0.063,0.253 0.168,0.329c0.106,0.076 0.242,0.096 0.365,0.055c0.546,-0.182 1.388,-0.462 1.934,-0.644c0.123,-0.041 0.259,-0.021 0.365,0.055c0.105,0.076 0.168,0.199 0.168,0.329c0,0.289 0,0.639 0,0.921c0,0.32 -0.171,0.615 -0.448,0.773c-3.044,1.74 -20.552,11.744 -20.552,11.744l0.864,-1.372l13.136,-13.628l1.354,-0.354Z" style="fill:#b3222e;"/>
<path d="M3,30l11.744,-20.552c0.158,-0.277 0.453,-0.448 0.773,-0.448c0.282,0 0.632,0 0.921,0c0.13,0 0.253,0.063 0.329,0.168c0.076,0.106 0.096,0.242 0.055,0.365c-0.182,0.546 -0.462,1.388 -0.644,1.934c-0.041,0.123 -0.021,0.259 0.055,0.365c0.076,0.105 0.199,0.168 0.329,0.168c0.536,0 1.34,0 1.876,0c0.13,0 0.253,0.063 0.329,0.168c0.076,0.106 0.096,0.242 0.055,0.365c-0.157,0.472 -0.389,1.167 -0.566,1.699l0.098,0.414l-15.354,15.354Z" style="fill:#e82731;"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:1.5;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="umbrella" x="0" y="0" width="32" height="32" style="fill:none;"/>
<clipPath id="_clip1">
<rect x="0" y="0" width="32" height="32"/>
</clipPath>
<g clip-path="url(#_clip1)">
<g id="outline">
<path d="M13,16.528l-2.671,0.445c-0.417,0.069 -0.845,0.005 -1.223,-0.184c0,0 -1.383,-0.691 -2.522,-1.261c-0.695,-0.347 -1.46,-0.528 -2.236,-0.528l-2.348,0c-0.693,0 -1.337,-0.359 -1.701,-0.949c-0.365,-0.589 -0.398,-1.325 -0.088,-1.945c0,0 0.677,-1.353 1.387,-2.774c1.249,-2.497 3.317,-4.49 5.858,-5.645c3.242,-1.474 7.716,-3.508 7.716,-3.508c0.526,-0.239 1.13,-0.239 1.656,0c0,0 4.474,2.034 7.716,3.508c2.541,1.155 4.609,3.148 5.858,5.645c0.71,1.421 1.387,2.774 1.387,2.774c0.31,0.62 0.277,1.356 -0.088,1.945c-0.364,0.59 -1.008,0.949 -1.701,0.949l-2.348,0c-0.776,0 -1.541,0.181 -2.236,0.528c-1.139,0.57 -2.522,1.261 -2.522,1.261c-0.378,0.189 -0.806,0.253 -1.223,0.184l-2.671,-0.445l0,10.472c-0.002,0.554 -0.092,1.105 -0.273,1.628c-0.28,0.814 -0.772,1.55 -1.417,2.12c-0.505,0.446 -1.1,0.787 -1.739,0.999c-0.497,0.164 -1.017,0.248 -1.54,0.253l-0.031,0c-1.326,0 -2.598,-0.527 -3.536,-1.464c-0.937,-0.938 -1.464,-2.21 -1.464,-3.536c0,-0.255 0,-1.132 0,-2c0,-0.53 0.211,-1.039 0.586,-1.414c0.375,-0.375 0.884,-0.586 1.414,-0.586c1,0 2,0 2,0l0,-6.472Z"/>
</g>
<g id="emoji">
<path d="M16,11l0,16c0,0.53 -0.211,1.039 -0.586,1.414c-0.375,0.375 -0.884,0.586 -1.414,0.586c-0.53,0 -1.039,-0.211 -1.414,-0.586c-0.375,-0.375 -0.586,-0.884 -0.586,-1.414c0,-0.551 0,-1 0,-1" style="fill:none;stroke:#525252;stroke-width:2px;"/>
<rect x="15" y="13.249" width="2" height="6.751" style="fill:#3d3d3d;"/>
<path d="M16,2c0,0 4.475,2.034 7.716,3.507c2.125,0.966 3.853,2.632 4.897,4.719c0.711,1.421 1.387,2.774 1.387,2.774c0,0 -1.246,0 -2.348,0c-1.086,0 -2.158,0.253 -3.13,0.739l-2.522,1.261l-6,-13Z" style="fill:#a31f28;"/>
<path d="M16,2l3.567,5.351c0.287,0.43 0.505,0.902 0.647,1.399l1.786,6.25c0,0 -3.107,-0.518 -4.849,-0.808c-0.762,-0.127 -1.54,-0.127 -2.302,0c-1.742,0.29 -4.849,0.808 -4.849,0.808c0,0 -1.383,-0.691 -2.522,-1.261c-0.972,-0.486 -2.044,-0.739 -3.13,-0.739l-2.348,0l1.387,-2.774c1.044,-2.087 2.772,-3.753 4.897,-4.719l7.716,-3.507Z" style="fill:#e82731;"/>
<clipPath id="_clip2">
<path d="M16,2l3.567,5.351c0.287,0.43 0.505,0.902 0.647,1.399l1.786,6.25c0,0 -3.107,-0.518 -4.849,-0.808c-0.762,-0.127 -1.54,-0.127 -2.302,0c-1.742,0.29 -4.849,0.808 -4.849,0.808c0,0 -1.383,-0.691 -2.522,-1.261c-0.972,-0.486 -2.044,-0.739 -3.13,-0.739l-2.348,0l1.387,-2.774c1.044,-2.087 2.772,-3.753 4.897,-4.719l7.716,-3.507Z"/>
</clipPath>
<g clip-path="url(#_clip2)">
<path d="M16,1l0,1c0,0 -2.532,3.798 -3.567,5.351c-0.287,0.43 -0.505,0.902 -0.647,1.399c-0.517,1.807 -1.786,6.25 -1.786,6.25l0,2" style="fill:none;stroke:#bd242e;stroke-width:2px;stroke-miterlimit:3;"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:3;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<path id="musical_score" d="M0,0l0,32l32,0l0,-32l-32,0Z" style="fill:none;"/><clipPath id="_clip1"><path d="M0,0l0,32l32,0l0,-32l-32,0Z"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><path d="M9,9l0,-1c0,0 0,-0.066 0,-0.179c0,-1.75 0.918,-3.372 2.419,-4.272c1.276,-0.766 2.581,-1.549 2.581,-1.549c0,0 0.086,1.205 0.187,2.616c0.11,1.54 -0.216,3.054 -0.908,4.384l16.721,0l0,17l-19.5,0c0,0.796 -0.316,1.559 -0.879,2.121c-0.562,0.563 -1.325,0.879 -2.121,0.879c-0.167,0 -0.335,0 -0.5,0c-1.381,0 -2.5,-1.119 -2.5,-2.5c0,-0.009 0,-0.018 0,-0.027c0,-0.163 0.027,-0.322 0.078,-0.473l-2.578,0l0,-17l7,0Zm-0.076,17l-1.502,0c0.051,0.151 0.078,0.31 0.078,0.473c0,0.3 0,0.527 0,0.527c0,0 0.012,0 0.034,0c0.646,0 1.195,-0.419 1.39,-1Zm1.701,-17l0.846,-0.712c0.969,-0.817 1.529,-2.02 1.529,-3.288c0,0 0,0 0,0c0,0 -0.986,0.789 -1.719,1.375c-0.494,0.395 -0.781,0.993 -0.781,1.625l0,1l0.125,0Z" style="fill:none;stroke:#000;stroke-width:4px;"/><rect x="6.59" y="25" width="3.133" height="3.014"/></g><g id="emoji"><path d="M30,24l-1,-1l-26,0l-1,1l0,2l28,0l0,-2Z" style="fill:#737373;"/><path d="M30,9l-28,0l0,3l0.394,0.512l-0.394,0.488l0,3l0.359,0.564l-0.359,0.436l0,3l0.43,0.562l-0.43,0.438l0,3l28,0l0,-3l-0.484,-0.492l0.484,-0.508l0,-3l-0.484,-0.634l0.484,-0.366l0,-3l-0.43,-0.541l0.43,-0.459l0,-3Z" style="fill:#fff;"/><rect x="2" y="20" width="28" height="1" style="fill:#b0b0b0;"/><rect x="2" y="16" width="28" height="1" style="fill:#b0b0b0;"/><rect x="2" y="12" width="28" height="1" style="fill:#b0b0b0;"/><path d="M9,8l0,-0.179c0,-1.75 0.918,-3.372 2.419,-4.272c1.276,-0.766 2.581,-1.549 2.581,-1.549c0,0 0.086,1.205 0.187,2.616c0.196,2.739 -0.988,5.396 -3.157,7.083l-0.53,0.412l0,1.911c0.146,-0.015 0.294,-0.022 0.445,-0.022c0.037,0 0.073,0 0.11,0c2.455,0 4.445,1.99 4.445,4.445c0,0.018 0,0.036 0,0.054c0,2.869 -2.197,5.225 -5,5.478l0,2.023c0,0.796 -0.316,1.559 -0.879,2.121c-0.562,0.563 -1.325,0.879 -2.121,0.879c-0.167,0 -0.335,0 -0.5,0c-1.381,0 -2.5,-1.119 -2.5,-2.5c0,-0.009 0,-0.018 0,-0.027c0,-0.391 0.155,-0.765 0.431,-1.042c0.277,-0.276 0.651,-0.431 1.042,-0.431c0.018,0 0.036,0 0.054,0c0.391,0 0.765,0.155 1.042,0.431c0.276,0.277 0.431,0.651 0.431,1.042c0,0.3 0,0.527 0,0.527c0,0 0.012,0 0.034,0c0.809,0 1.466,-0.656 1.466,-1.466c0,-0.304 0,-0.534 0,-0.534l0,-1l-0.074,0c-2.997,0 -5.426,-2.429 -5.426,-5.426c0,-0.001 0,-0.001 0,-0.002c0,-2.265 1,-4.414 2.732,-5.873l2.768,-2.331l0,-2.368Zm0,5.278l-1.516,1.179c-1.252,0.973 -1.984,2.471 -1.984,4.057c0,0.176 0,0.354 0,0.532c0,0.783 0.311,1.535 0.865,2.089c0.554,0.554 1.306,0.865 2.089,0.865l0.546,0l0,-4.323c-0.311,0.353 -0.5,0.816 -0.5,1.323l0,2l0,0c-1.105,0 -2,-0.895 -2,-2c0,-0.179 0,-0.365 0,-0.555c0,-1.758 1.02,-3.277 2.5,-3.998l0,-1.169Zm1.5,3.722l0,4.855c1.161,-0.382 2,-1.476 2,-2.765c0,-0.031 0,-0.061 0,-0.092c0,-1.103 -0.895,-1.998 -1.998,-1.998l-0.002,0Zm0,-7.895l0.971,-0.817c0.969,-0.817 1.529,-2.02 1.529,-3.288c0,0 0,0 0,0c0,0 -0.986,0.789 -1.719,1.375c-0.494,0.395 -0.781,0.993 -0.781,1.625l0,1.105Z" style="fill:#199d4e;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<path id="stage_microphone" d="M0,0l0,32l32,0l0,-32l-32,0Z" style="fill:none;"/><clipPath id="_clip1"><path d="M0,0l0,32l32,0l0,-32l-32,0Z"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><path d="M7.394,15.814c-3.091,-0.726 -5.394,-3.503 -5.394,-6.814c0,-3.863 3.137,-7 7,-7c3.311,0 6.088,2.303 6.815,5.394l13.851,18.274l0,0c0.654,0.719 0.321,2.153 -0.762,3.236c-1.082,1.082 -2.514,1.415 -3.234,0.764l0,0l-18.276,-13.854Z" style="fill:none;stroke:#000;stroke-width:4px;"/></g><g id="emoji"><path d="M8.6,10.4l3.4,0.6l16,15l1.271,2.487c-0.11,0.143 -0.233,0.283 -0.367,0.417c-1.082,1.082 -2.514,1.415 -3.234,0.764l0,0l-20.67,-15.668l3.6,-3.6Z" style="fill:#737373;"/><path d="M8.6,10.4l5.4,-5.4l15.666,20.668l0,0c0.573,0.63 0.388,1.809 -0.395,2.819l-20.671,-18.087Z" style="fill:#808080;"/><circle cx="9" cy="9" r="7" style="fill:#313131;"/><path d="M15.354,17.354c-0.094,-0.094 -0.147,-0.221 -0.147,-0.354c0,-0.133 0.053,-0.26 0.147,-0.354c0.364,-0.364 0.928,-0.928 1.292,-1.292c0.094,-0.094 0.221,-0.147 0.354,-0.147c0.133,0 0.26,0.053 0.354,0.147c0.577,0.577 1.715,1.715 2.292,2.292c0.094,0.094 0.147,0.221 0.147,0.354c0,0.133 -0.053,0.26 -0.147,0.354c-0.364,0.364 -0.928,0.928 -1.292,1.292c-0.094,0.094 -0.221,0.147 -0.354,0.147c-0.133,0 -0.26,-0.053 -0.354,-0.147c-0.577,-0.577 -1.715,-1.715 -2.292,-2.292Z" style="fill:#212121;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#808080;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#808080;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#434895;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#434895;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#5963EF;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#5963EF;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#A3A9FF;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#A3A9FF;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#1B7A76;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#1B7A76;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#00E2D7;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#00E2D7;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#85E9E4;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#85E9E4;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#8C441B;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#8C441B;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#E5641A;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#E5641A;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#F2B38F;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#F2B38F;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#6A4E35;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#6A4E35;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#A77F58;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#A77F58;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#CBB39C;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#CBB39C;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#807167;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#807167;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#E5E5E5;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#E5E5E5;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#CEB07D;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#CEB07D;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#43782E;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#43782E;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#6DD349;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#6DD349;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#B1ED9B;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#B1ED9B;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#5C392E;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#5C392E;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#885030;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#885030;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#B68862;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#B68862;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#D8A68D;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#D8A68D;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#F9D8C8;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#F9D8C8;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#4D4D4D;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#4D4D4D;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#808080;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#808080;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#CCCCCC;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#CCCCCC;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#6C7829;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#6C7829;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#B8D419;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#B8D419;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#D9E580;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#D9E580;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#7D2982;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#7D2982;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#D445D9;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#D445D9;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#F793FE;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#F793FE;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#7F531D;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#7F531D;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#EF8E10;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#EF8E10;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#F2C181;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#F2C181;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#8C2B62;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#8C2B62;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#ED399F;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#ED399F;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#FD9BD6;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#FD9BD6;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#8C262D;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#8C262D;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#E91C2A;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#E91C2A;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#ED9298;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#ED9298;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#1F5F7D;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#1F5F7D;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#09A4E7;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#09A4E7;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#8ACFED;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#8ACFED;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#318268;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#318268;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#21E2A8;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#21E2A8;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#8DEBCF;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#8DEBCF;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#633A92;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#633A92;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#925ADB;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#925ADB;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#C596FD;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#C596FD;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#7C6112;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#7C6112;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#FFC20B;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#FFC20B;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="artist" x="0" y="0" width="32" height="32" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="32" height="32"/></clipPath><g clip-path="url(#_clip1)"><g id="outline"><rect x="14" y="9" width="16" height="23" style="fill-rule:nonzero;"/><rect x="16" y="11" width="12" height="19" style="fill:#fff;"/><clipPath id="_clip2"><rect x="16" y="11" width="12" height="19"/></clipPath><g clip-path="url(#_clip2)"><path d="M23,14c0.343,0 0.685,-0.003 1.028,0.001c0.075,0.003 0.15,0.007 0.225,0.014c0.323,0.036 0.636,0.115 0.934,0.246c0.757,0.336 1.355,0.98 1.635,1.759c0.092,0.258 0.149,0.528 0.17,0.802c0.005,0.073 0.008,0.146 0.008,0.22c0,0.065 -0.001,0.128 0.004,0.193c0.005,0.041 0.012,0.082 0.022,0.123c0.073,0.279 0.281,0.508 0.556,0.599c0.08,0.026 0.162,0.04 0.246,0.043l0.027,0l1.145,0l0,8.5l-3,0l0,-4.514c0.005,-0.198 0.031,-0.391 0.09,-0.581c0.148,-0.477 0.477,-0.889 0.91,-1.137l0,-0.398c-0.06,-0.018 -0.118,-0.039 -0.177,-0.061c-0.064,-0.026 -0.128,-0.053 -0.191,-0.082c-0.21,-0.102 -0.408,-0.224 -0.589,-0.372c-0.47,-0.386 -0.809,-0.92 -0.957,-1.51c-0.046,-0.181 -0.073,-0.366 -0.083,-0.553c-0.005,-0.107 0.001,-0.214 -0.006,-0.322c-0.004,-0.043 -0.009,-0.085 -0.017,-0.127c-0.024,-0.109 -0.061,-0.214 -0.116,-0.311c-0.127,-0.225 -0.337,-0.398 -0.583,-0.479c-0.098,-0.032 -0.2,-0.049 -0.303,-0.053l-0.032,0l-2.946,0l0,-6l2,0c0,1 0,3 0,4Z" style="fill:#a746ec;fill-rule:nonzero;"/></g><path d="M7.043,23.279c-0.167,-0.132 -0.329,-0.271 -0.486,-0.416c-0.769,-0.714 -1.395,-1.579 -1.831,-2.533c-0.326,-0.712 -0.546,-1.471 -0.652,-2.246c-0.045,-0.327 -0.067,-0.655 -0.073,-0.985c-0.005,-0.733 -0.005,-1.465 0,-2.198c0.005,-0.264 0.019,-0.527 0.048,-0.79c0.069,-0.616 0.21,-1.224 0.419,-1.808c0.431,-1.204 1.153,-2.297 2.089,-3.166c0.815,-0.757 1.787,-1.339 2.838,-1.701c0.807,-0.278 1.652,-0.42 2.506,-0.435c0.099,-0.001 0.099,-0.001 0.198,0c0.854,0.015 1.699,0.157 2.506,0.435c1.302,0.449 2.48,1.236 3.391,2.268c0.671,0.759 1.194,1.645 1.535,2.598c0.3,0.835 0.452,1.712 0.468,2.598c0.005,0.733 0.005,1.467 0,2.2c-0.005,0.296 -0.023,0.592 -0.06,0.886c-0.005,0.04 -0.01,0.079 -0.016,0.119c0.185,-0.261 0.395,-0.503 0.627,-0.724c0.495,-0.473 1.088,-0.842 1.731,-1.077c0.35,-0.128 0.715,-0.217 1.085,-0.264c0.168,-0.021 0.337,-0.032 0.506,-0.039l2.128,-0.026c0,1.679 0,3.358 0,5.038c-0.002,0.165 -0.009,0.33 -0.026,0.496c-0.037,0.372 -0.117,0.74 -0.237,1.094c-0.181,0.536 -0.455,1.04 -0.804,1.485c-0.27,0.343 -0.585,0.65 -0.933,0.911l0,7.001l-22,0c0,-0.725 -0.011,-1.45 0.002,-2.175c0.023,-0.746 0.156,-1.483 0.408,-2.186c0.523,-1.463 1.537,-2.728 2.849,-3.557c0.433,-0.273 0.897,-0.499 1.379,-0.672c0.134,-0.048 0.269,-0.092 0.405,-0.131Z"/></g><g id="emoji"><path d="M19,27c0.628,0.835 1,1.874 1,3l0,0l-1,0l-1,-1.5l1,-1.5Z" style="fill:#333333;"/><path d="M19,30l-15,0c0,0 0,0 0,0c0,-2.47 1.791,-4.522 4.146,-4.927c0.469,1.687 7.239,1.687 7.708,0c1.282,0.22 2.396,0.929 3.146,1.927l0,3Z" style="fill:#999999;"/><path d="M8.146,25.073c0.277,-0.048 0.563,-0.073 0.854,-0.073c1.911,0 4.089,0 6,0c0.291,0 0.577,0.025 0.854,0.073c-0.469,1.687 -2.018,2.927 -3.854,2.927c-1.836,0 -3.385,-1.24 -3.854,-2.927Z" style="fill:#FFD877;"/><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z" style="fill:#FFD877;"/><clipPath id="_clip3"><path d="M18,15c0,-1.591 -0.632,-3.117 -1.757,-4.243c-1.126,-1.125 -2.652,-1.757 -4.243,-1.757c0,0 0,0 0,0c-1.591,0 -3.117,0.632 -4.243,1.757c-1.125,1.126 -1.757,2.652 -1.757,4.243c0,0.663 0,1.337 0,2c0,1.591 0.632,3.117 1.757,4.243c1.126,1.125 2.652,1.757 4.243,1.757c0,0 0,0 0,0c1.591,0 3.117,-0.632 4.243,-1.757c1.125,-1.126 1.757,-2.652 1.757,-4.243c0,-0.663 0,-1.337 0,-2Z"/></clipPath><g clip-path="url(#_clip3)"><path d="M16,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/></g><rect x="21" y="23" width="1" height="7" style="fill:#705c32;"/><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z" style="fill:#bfaf91;"/><clipPath id="_clip4"><path d="M24,18c0,0 0,0 0,0c-1.657,0 -3,1.343 -3,3c0,1.5 0,3 0,3c0,0 0,0 0,0c1.657,0 3,-1.343 3,-3c0,-1.5 0,-3 0,-3Z"/></clipPath><g clip-path="url(#_clip4)"><rect x="19.5" y="17.143" width="5.25" height="3.429" style="fill:#7731a6;"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#808080;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#2B2B2B;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#434895;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#1D1659;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#5963EF;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#28168F;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#A3A9FF;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#343394;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#1B7A76;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#083139;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#00E2D7;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#005766;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#85E9E4;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#107286;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#8C441B;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#48170A;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#E5641A;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#65130A;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#F2B38F;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#93482A;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#6A4E35;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#2B1B11;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#A77F58;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#4E3629;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#CBB39C;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#614430;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#807167;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#3D3026;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc = "http://purl.org/dc/elements/1.1/"
>
<rdf:Description rdf:about="">
<dc:title>Mutant Standard emoji 2020.04</dc:title>
</rdf:Description>
<cc:work rdf:about="">
<cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
<cc:attributionName>Dzuk</cc:attributionName>
<cc:attributionURL>http://mutant.tech/</cc:attributionURL>
</cc:work>
</rdf:RDF>
</metadata>
<rect id="astronaut" x="0" y="0" width="32" height="32" style="fill:none;"/><g id="outline"><path d="M8.068,23.208c-0.017,-0.017 -0.034,-0.033 -0.051,-0.05c-1.084,-1.057 -1.921,-2.36 -2.431,-3.786c-0.248,-0.692 -0.419,-1.41 -0.51,-2.139c-0.046,-0.368 -0.068,-0.738 -0.075,-1.109c-0.005,-0.749 -0.005,-1.499 0,-2.248c0.007,-0.371 0.029,-0.741 0.075,-1.109c0.091,-0.729 0.262,-1.448 0.51,-2.139c0.51,-1.426 1.347,-2.729 2.431,-3.786c1.054,-1.028 2.334,-1.817 3.726,-2.297c0.695,-0.239 1.416,-0.402 2.146,-0.483c0.328,-0.037 0.657,-0.055 0.987,-0.061c0.749,-0.005 1.499,-0.005 2.248,0c0.33,0.006 0.659,0.024 0.987,0.061c0.77,0.086 1.531,0.262 2.261,0.524c1.465,0.524 2.8,1.393 3.872,2.521c0.987,1.036 1.745,2.284 2.211,3.636c0.239,0.695 0.402,1.416 0.483,2.146c0.037,0.328 0.055,0.657 0.061,0.987c0.005,0.749 0.005,1.499 0,2.248c-0.006,0.33 -0.024,0.659 -0.061,0.987c-0.081,0.73 -0.244,1.451 -0.483,2.146c-0.466,1.352 -1.224,2.6 -2.211,3.636c-0.102,0.108 -0.206,0.212 -0.312,0.315c0.179,0.122 0.354,0.253 0.521,0.391c1.135,0.936 1.96,2.228 2.327,3.653c0.146,0.57 0.216,1.154 0.22,1.742l0,3.006l-22,0c0,-1.06 -0.017,-2.12 0.002,-3.18c0.01,-0.296 0.034,-0.59 0.079,-0.883c0.095,-0.627 0.277,-1.241 0.538,-1.819c0.53,-1.172 1.386,-2.187 2.449,-2.91Z"/></g><g id="emoji"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z" style="fill:#fff;"/><clipPath id="_clip1"><path d="M22.229,24.523c1.643,0.819 2.771,2.516 2.771,4.477c0,0.597 0,1 0,1l-18,0c0,0 0,-0.403 0,-1c0,-1.96 1.128,-3.657 2.771,-4.477c0.621,0.381 11.872,0.36 12.458,0Z"/></clipPath><g clip-path="url(#_clip1)"><rect x="14" y="25" width="4" height="6" style="fill:#878787;"/></g><path d="M9.771,24.523c0.671,-0.335 1.428,-0.523 2.229,-0.523c2.495,0 5.505,0 8,0c0.801,0 1.558,0.188 2.229,0.523c-0.586,0.36 -1.209,0.659 -1.857,0.891c-0.73,0.262 -1.491,0.438 -2.261,0.524c-0.328,0.037 -0.657,0.055 -0.987,0.061c-0.749,0.005 -1.499,0.005 -2.248,0c-0.33,-0.006 -0.659,-0.024 -0.987,-0.061c-0.73,-0.081 -1.451,-0.244 -2.146,-0.483c-0.689,-0.238 -1.351,-0.551 -1.972,-0.932Z" style="fill:#5f5f5f;"/><path id="_.28.Curve.29." d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z" style="fill:#333;"/><clipPath id="_clip2"><path d="M25,14c0,-2.122 -0.843,-4.157 -2.343,-5.657c-1.5,-1.5 -3.535,-2.343 -5.657,-2.343c-0.664,0 -1.336,0 -2,0c-2.122,0 -4.157,0.843 -5.657,2.343c-1.5,1.5 -2.343,3.535 -2.343,5.657c0,0.664 0,1.336 0,2c0,2.122 0.843,4.157 2.343,5.657c1.5,1.5 3.535,2.343 5.657,2.343c0.664,0 1.336,0 2,0c2.122,0 4.157,-0.843 5.657,-2.343c1.5,-1.5 2.343,-3.535 2.343,-5.657c0,-0.664 0,-1.336 0,-2Z"/></clipPath><g clip-path="url(#_clip2)"><path d="M10,16.472l0.5,-2.472l2.5,-3l6,0l2.5,3l0.5,2.465l0,0.535c0,1.591 -0.632,3.117 -1.757,4.243c-1.126,1.125 -2.652,1.757 -4.243,1.757c0,0 0,0 0,0c-1.591,0 -3.117,-0.632 -4.243,-1.757c-1.125,-1.126 -1.757,-2.652 -1.757,-4.243l0,-0.528Z" style="fill:#E5E5E5;"/><path d="M10,16.472l0,-1.472c0,-1.591 0.632,-3.117 1.757,-4.243c1.126,-1.125 2.652,-1.757 4.243,-1.757c0,0 0,0 0,0c1.591,0 3.117,0.632 4.243,1.757c1.125,1.126 1.757,2.652 1.757,4.243l0,1.465c-0.296,-0.595 -0.592,-1.189 -0.895,-1.78c-0.205,-0.386 -0.453,-0.745 -0.749,-1.068c-0.658,-0.717 -1.526,-1.232 -2.47,-1.468c-0.369,-0.092 -0.744,-0.138 -1.123,-0.148c-0.509,-0.005 -1.017,-0.005 -1.526,0c-0.379,0.01 -0.754,0.056 -1.123,0.148c-0.973,0.243 -1.862,0.783 -2.528,1.533c-0.293,0.33 -0.535,0.697 -0.736,1.09l-0.85,1.7Z" style="fill:#585858;"/><path d="M20,15c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Zm-6,0c0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1c0,0.322 0,0.678 0,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.322 0,-0.678 0,-1Z"/><path d="M8,16c0,0 0.485,-0.97 1.065,-2.13c1.186,-2.372 3.61,-3.87 6.261,-3.87c0.447,0 0.901,0 1.348,0c2.651,0 5.075,1.498 6.261,3.87c0.58,1.16 1.065,2.13 1.065,2.13l3,0l0,-12l-22,0l0,12l3,0Z" style="fill:#ababab;"/></g></g></svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

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