Mark Ritts, Autoditacker, Tarachodes maurus, Silesian Voivodeship & The South End.

This commit is contained in:
nik gaffney 2020-11-17 23:25:19 +01:00
parent d7d6536fe2
commit e11a0c991d
78 changed files with 3427 additions and 0 deletions

1
web/deck-of-cards Submodule

@ -0,0 +1 @@
Subproject commit 8d3be56c56950afe787b6217bc3993ebeab62e9c

BIN
web/img/c1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 KiB

BIN
web/img/c2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 420 KiB

BIN
web/img/c3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 KiB

BIN
web/img/c4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 KiB

BIN
web/img/prehension.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

53
web/index.html Normal file
View file

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html>
<head>
<title>superject</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<canvas id="canvas-image" width = "1000" height = "1000"></canvas>
<script src="scripts/granim.min.js"></script>
<script>
var granimInstance = new Granim({
element: '#canvas-image',
name: 'anima',
direction: 'radial',
isPausedWhenNotInView: true,
elToSetClassOn: 'body',
opacity: [1, 1],
image : {
source: 'img/prehension.png',
blendingMode: 'hue',
stretchMode: ['stretch', 'stretch'],
position: ['center', 'center']
},
states : {
"default-state": {
gradients: [
['#834D9B', '#D04ED6'],
['#1CD8D2', '#93EDC7']
],
transitionSpeed: 23*1000
}}});
</script>
<style>
#canvas-image {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
</style>
</head>
<body>
<canvas id="canvas-image"></canvas>
</body>
</html>

34
web/scripts/drag.js Normal file
View file

@ -0,0 +1,34 @@
// Make the DIV element draggable:
dragElement(document.getElementById("card"));
function dragElement(elmnt) {
var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
elmnt.onmousedown = dragMouseDown;
}
function dragMouseDown(e) {
e = e || window.event;
e.preventDefault();
pos3 = e.clientX;
pos4 = e.clientY;
document.onmouseup = closeDragElement;
document.onmousemove = elementDrag;
}
function elementDrag(e) {
e = e || window.event;
e.preventDefault();
pos1 = pos3 - e.clientX;
pos2 = pos4 - e.clientY;
pos3 = e.clientX;
pos4 = e.clientY;
elmnt.style.top = (elmnt.offsetTop - pos2) + "px";
elmnt.style.left = (elmnt.offsetLeft - pos1) + "px";
}
function closeDragElement() {
document.onmouseup = null;
document.onmousemove = null;
}
}

14
web/scripts/gradientify.min.js vendored Normal file
View file

@ -0,0 +1,14 @@
"use strict";function _slicedToArray(a,b){return _arrayWithHoles(a)||_iterableToArrayLimit(a,b)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function _iterableToArrayLimit(a,b){if(Symbol.iterator in Object(a)||"[object Arguments]"===Object.prototype.toString.call(a)){var c=[],d=!0,e=!1,f=void 0;try{for(var g,h=a[Symbol.iterator]();!(d=(g=h.next()).done)&&(c.push(g.value),!(b&&c.length===b));d=!0);}catch(a){e=!0,f=a}finally{try{d||null==h["return"]||h["return"]()}finally{if(e)throw f}}return c}}function _arrayWithHoles(a){if(Array.isArray(a))return a}function _classCallCheck(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function _defineProperties(a,b){for(var c,d=0;d<b.length;d++)c=b[d],c.enumerable=c.enumerable||!1,c.configurable=!0,"value"in c&&(c.writable=!0),Object.defineProperty(a,c.key,c)}function _createClass(a,b,c){return b&&_defineProperties(a.prototype,b),c&&_defineProperties(a,c),a}var Gradientify=/*#__PURE__*/function(){// In miliseconds
// setInterval type (yes, it's a number. lol)
function a(b,c,d){_classCallCheck(this,a),this.target=b,this.gradients=c,this.fadeInterval=d,this.createGradientElements(),this.appendGradients(),this.startAnimation()}/*
This guy beneath is responsible for creating
divs with gradient backgrounds, which are going
to be appended to the target element(s) 👩🏻🔬
*/return _createClass(a,[{key:"createGradientElements",value:function createGradientElements(){var a=this,b=Array.from(document.querySelectorAll(this.target));this.gradientElements=b.map(function(){return a.gradients.map(function(b,c){var d=document.createElement("div");return Object.assign(d.style,{position:"absolute",height:"100%",width:"100%",opacity:0===c?1:0,top:0,left:0,transitionTimingFunction:"linear",backgroundImage:b,transitionDuration:"".concat(a.fadeInterval/1e3,"s")}),d})})}// Time to append our gradients! 🧚
},{key:"appendGradients",value:function appendGradients(){var a=this,b=document.querySelectorAll(this.target);b.forEach(function(b,c){if(b instanceof HTMLElement)"absolute"!==b.style.position&&(b.style.position="relative"),a.gradientElements[c].forEach(function(a){b.appendChild(a)});else throw new Error("Element ".concat(a.target," doesn't exists!"))})}/*
Here lies the whole magic of this library:
Every X seconds we set the opacity of the next
gradient element to 1, and a CSS transition does the rest. Yay!
*uncomfortably complex computations grinning in the background*
*/},{key:"startAnimation",value:function startAnimation(){var a=this;this.interval=setInterval(function(){var b=!0,c=!1,d=void 0;try{for(var e,f=a.gradientElements.entries()[Symbol.iterator]();!(b=(e=f.next()).done);b=!0){var g=_slicedToArray(e.value,2),h=g[0],i=g[1],j=!0,k=!1,l=void 0;try{for(var m,n=i.entries()[Symbol.iterator]();!(j=(m=n.next()).done);j=!0){var o=_slicedToArray(m.value,2),p=o[0],q=o[1];if("1"===q.style.opacity){q.style.opacity="0";var r=a.gradientElements[h][++p%a.gradientElements[h].length];r.style.opacity="1";break}}}catch(a){k=!0,l=a}finally{try{j||null==n["return"]||n["return"]()}finally{if(k)throw l}}}}catch(a){c=!0,d=a}finally{try{b||null==f["return"]||f["return"]()}finally{if(c)throw d}}},this.fadeInterval)}// Fairly straightforward
},{key:"stopAnimation",value:function stopAnimation(){clearInterval(this.interval)}}]),a}();

2
web/scripts/granim.min.js vendored Normal file

File diff suppressed because one or more lines are too long

98
web/shuffle.html Normal file
View file

@ -0,0 +1,98 @@
<!DOCTYPE html>
<html>
<head>
<title>superject</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<canvas id="canvas-image" width = "1000" height = "1000"></canvas>
<script src="scripts/granim.min.js"></script>
<script>
var granimInstance = new Granim({
element: '#canvas-image',
name: 'anima',
direction: 'radial',
isPausedWhenNotInView: true,
elToSetClassOn: 'body',
opacity: [1, 1],
image : {
source: 'img/prehension.png',
blendingMode: 'hue',
stretchMode: ['stretch', 'stretch'],
position: ['center', 'center']
},
states : {
"default-state": {
gradients: [
['#834D9B', '#D04ED6'],
['#1CD8D2', '#93EDC7']
],
transitionSpeed: 23*1000
}}});
</script>
<script>
var content = document.getElementById('card');
function moveDown () {
var top = parseInt(content.style.marginTop); // get the top margin
// we'll be using this to
// push the div down
if (!top) {
top = 0; // if the margin is undefined, default it to zero
}
top += 20; // add 20 pixels to the current margin
content.style.marginTop = top + 'px'; // push div down
if (top < 200) {
// If it's not yet 200 pixels then call this function
// again in another 100 milliseconds (100 ms gives us
// roughly 10 fps which should be good enough):
setTimeout(moveDown,100);
}
}
</script>
<style>
#canvas-image {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.card {
/* Black shadow with 10px blur */
filter: drop-shadow(16px 16px 10px black);
position: "absolute";
z-index: 1;
}
#card1 { position: absolute; right: 10%; top: 50%; }
#card2 { position: absolute; right: 30%; top: 50%; }
#card3 { position: absolute; right: 40%; top: 50%; }
#card4 { position: absolute; right: 60%; top: 50%; }
</style>
</head>
<body>
<canvas id="canvas-image"></canvas>
<div class="card" id="card1"><img src="img/c1.png" height="320"></div>
<div class="card" id="card3"><img src="img/c3.png" height="320"></div>
<div class="card" id="card4"><img src="img/c4.png" height="320"></div>
</body>
</html>

980
web/shuffle/deck.js Normal file
View file

@ -0,0 +1,980 @@
'use strict';
var Deck = (function () {
'use strict';
var ticking;
var animations = [];
function animationFrames(delay, duration) {
var now = Date.now();
// calculate animation start/end times
var start = now + delay;
var end = start + duration;
var animation = {
start: start,
end: end
};
// add animation
animations.push(animation);
if (!ticking) {
// start ticking
ticking = true;
requestAnimationFrame(tick);
}
var self = {
start: function start(cb) {
// add start callback (just one)
animation.startcb = cb;
return self;
},
progress: function progress(cb) {
// add progress callback (just one)
animation.progresscb = cb;
return self;
},
end: function end(cb) {
// add end callback (just one)
animation.endcb = cb;
return self;
}
};
return self;
}
function tick() {
var now = Date.now();
if (!animations.length) {
// stop ticking
ticking = false;
return;
}
for (var i = 0, animation; i < animations.length; i++) {
animation = animations[i];
if (now < animation.start) {
// animation not yet started..
continue;
}
if (!animation.started) {
// animation starts
animation.started = true;
animation.startcb && animation.startcb();
}
// animation progress
var t = (now - animation.start) / (animation.end - animation.start);
animation.progresscb && animation.progresscb(t < 1 ? t : 1);
if (now > animation.end) {
// animation ended
animation.endcb && animation.endcb();
animations.splice(i--, 1);
continue;
}
}
requestAnimationFrame(tick);
}
// fallback
window.requestAnimationFrame || (window.requestAnimationFrame = function (cb) {
setTimeout(cb, 0);
});
var style = document.createElement('p').style;
var memoized = {};
function prefix(param) {
if (typeof memoized[param] !== 'undefined') {
return memoized[param];
}
if (typeof style[param] !== 'undefined') {
memoized[param] = param;
return param;
}
var camelCase = param[0].toUpperCase() + param.slice(1);
var prefixes = ['webkit', 'moz', 'Moz', 'ms', 'o'];
var test;
for (var i = 0, len = prefixes.length; i < len; i++) {
test = prefixes[i] + camelCase;
if (typeof style[test] !== 'undefined') {
memoized[param] = test;
return test;
}
}
}
var has3d;
function translate(a, b, c) {
typeof has3d !== 'undefined' || (has3d = check3d());
c = c || 0;
if (has3d) {
return 'translate3d(' + a + ', ' + b + ', ' + c + ')';
} else {
return 'translate(' + a + ', ' + b + ')';
}
}
function check3d() {
// I admit, this line is stealed from the great Velocity.js!
// http://julian.com/research/velocity/
var isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
if (!isMobile) {
return false;
}
var transform = prefix('transform');
var $p = document.createElement('p');
document.body.appendChild($p);
$p.style[transform] = 'translate3d(1px,1px,1px)';
has3d = $p.style[transform];
has3d = has3d != null && has3d.length && has3d !== 'none';
document.body.removeChild($p);
return has3d;
}
function createElement(type) {
return document.createElement(type);
}
var maxZ = 52;
function _card(i) {
var transform = prefix('transform');
// calculate rank/suit, etc..
var rank = i % 13 + 1;
var suit = i / 13 | 0;
var z = (52 - i) / 4;
// create elements
var $el = createElement('div');
var $face = createElement('div');
var $back = createElement('div');
// states
var isDraggable = false;
var isFlippable = false;
// self = card
var self = { i: i, rank: rank, suit: suit, pos: i, $el: $el, mount: mount, unmount: unmount, setSide: setSide };
var modules = Deck.modules;
var module;
// add classes
$face.classList.add('face');
$back.classList.add('back');
// add default transform
$el.style[transform] = translate(-z + 'px', -z + 'px');
// add default values
self.x = -z;
self.y = -z;
self.z = z;
self.rot = 0;
// set default side to back
self.setSide('back');
// add drag/click listeners
addListener($el, 'mousedown', onMousedown);
addListener($el, 'touchstart', onMousedown);
// load modules
for (module in modules) {
addModule(modules[module]);
}
self.animateTo = function (params) {
var delay = params.delay;
var duration = params.duration;
var _params$x = params.x;
var x = _params$x === undefined ? self.x : _params$x;
var _params$y = params.y;
var y = _params$y === undefined ? self.y : _params$y;
var _params$rot = params.rot;
var rot = _params$rot === undefined ? self.rot : _params$rot;
var ease$$ = params.ease;
var onStart = params.onStart;
var onProgress = params.onProgress;
var onComplete = params.onComplete;
var startX, startY, startRot;
var diffX, diffY, diffRot;
animationFrames(delay, duration).start(function () {
startX = self.x || 0;
startY = self.y || 0;
startRot = self.rot || 0;
onStart && onStart();
}).progress(function (t) {
var et = ease[ease$$ || 'cubicInOut'](t);
diffX = x - startX;
diffY = y - startY;
diffRot = rot - startRot;
onProgress && onProgress(t, et);
self.x = startX + diffX * et;
self.y = startY + diffY * et;
self.rot = startRot + diffRot * et;
$el.style[transform] = translate(self.x + 'px', self.y + 'px') + (diffRot ? 'rotate(' + self.rot + 'deg)' : '');
}).end(function () {
onComplete && onComplete();
});
};
// set rank & suit
self.setRankSuit = function (rank, suit) {
var suitName = SuitName(suit);
$el.setAttribute('class', 'card ' + suitName + ' rank' + rank);
};
self.setRankSuit(rank, suit);
self.enableDragging = function () {
// this activates dragging
if (isDraggable) {
// already is draggable, do nothing
return;
}
isDraggable = true;
$el.style.cursor = 'move';
};
self.enableFlipping = function () {
if (isFlippable) {
// already is flippable, do nothing
return;
}
isFlippable = true;
};
self.disableFlipping = function () {
if (!isFlippable) {
// already disabled flipping, do nothing
return;
}
isFlippable = false;
};
self.disableDragging = function () {
if (!isDraggable) {
// already disabled dragging, do nothing
return;
}
isDraggable = false;
$el.style.cursor = '';
};
return self;
function addModule(module) {
// add card module
module.card && module.card(self);
}
function onMousedown(e) {
var startPos = {};
var pos = {};
var starttime = Date.now();
e.preventDefault();
// get start coordinates and start listening window events
if (e.type === 'mousedown') {
startPos.x = pos.x = e.clientX;
startPos.y = pos.y = e.clientY;
addListener(window, 'mousemove', onMousemove);
addListener(window, 'mouseup', onMouseup);
} else {
startPos.x = pos.x = e.touches[0].clientX;
startPos.y = pos.y = e.touches[0].clientY;
addListener(window, 'touchmove', onMousemove);
addListener(window, 'touchend', onMouseup);
}
if (!isDraggable) {
// is not draggable, do nothing
return;
}
// move card
$el.style[transform] = translate(self.x + 'px', self.y + 'px') + (self.rot ? ' rotate(' + self.rot + 'deg)' : '');
$el.style.zIndex = maxZ++;
function onMousemove(e) {
if (!isDraggable) {
// is not draggable, do nothing
return;
}
if (e.type === 'mousemove') {
pos.x = e.clientX;
pos.y = e.clientY;
} else {
pos.x = e.touches[0].clientX;
pos.y = e.touches[0].clientY;
}
// move card
$el.style[transform] = translate(Math.round(self.x + pos.x - startPos.x) + 'px', Math.round(self.y + pos.y - startPos.y) + 'px') + (self.rot ? ' rotate(' + self.rot + 'deg)' : '');
}
function onMouseup(e) {
if (isFlippable && Date.now() - starttime < 200) {
// flip sides
self.setSide(self.side === 'front' ? 'back' : 'front');
}
if (e.type === 'mouseup') {
removeListener(window, 'mousemove', onMousemove);
removeListener(window, 'mouseup', onMouseup);
} else {
removeListener(window, 'touchmove', onMousemove);
removeListener(window, 'touchend', onMouseup);
}
if (!isDraggable) {
// is not draggable, do nothing
return;
}
// set current position
self.x = self.x + pos.x - startPos.x;
self.y = self.y + pos.y - startPos.y;
}
}
function mount(target) {
// mount card to target (deck)
target.appendChild($el);
self.$root = target;
}
function unmount() {
// unmount from root (deck)
self.$root && self.$root.removeChild($el);
self.$root = null;
}
function setSide(newSide) {
// flip sides
if (newSide === 'front') {
if (self.side === 'back') {
$el.removeChild($back);
}
self.side = 'front';
$el.appendChild($face);
self.setRankSuit(self.rank, self.suit);
} else {
if (self.side === 'front') {
$el.removeChild($face);
}
self.side = 'back';
$el.appendChild($back);
$el.setAttribute('class', 'card');
}
}
}
function SuitName(suit) {
// return suit name from suit value
return suit === 0 ? 'spades' : suit === 1 ? 'hearts' : suit === 2 ? 'clubs' : suit === 3 ? 'diamonds' : 'joker';
}
function addListener(target, name, listener) {
target.addEventListener(name, listener);
}
function removeListener(target, name, listener) {
target.removeEventListener(name, listener);
}
var ease = {
linear: function linear(t) {
return t;
},
quadIn: function quadIn(t) {
return t * t;
},
quadOut: function quadOut(t) {
return t * (2 - t);
},
quadInOut: function quadInOut(t) {
return t < 0.5 ? 2 * t * t : -1 + (4 - 2 * t) * t;
},
cubicIn: function cubicIn(t) {
return t * t * t;
},
cubicOut: function cubicOut(t) {
return --t * t * t + 1;
},
cubicInOut: function cubicInOut(t) {
return t < 0.5 ? 4 * t * t * t : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1;
},
quartIn: function quartIn(t) {
return t * t * t * t;
},
quartOut: function quartOut(t) {
return 1 - --t * t * t * t;
},
quartInOut: function quartInOut(t) {
return t < 0.5 ? 8 * t * t * t * t : 1 - 8 * --t * t * t * t;
},
quintIn: function quintIn(t) {
return t * t * t * t * t;
},
quintOut: function quintOut(t) {
return 1 + --t * t * t * t * t;
},
quintInOut: function quintInOut(t) {
return t < 0.5 ? 16 * t * t * t * t * t : 1 + 16 * --t * t * t * t * t;
}
};
var flip = {
deck: function deck(_deck) {
_deck.flip = _deck.queued(flip);
function flip(next, side) {
var flipped = _deck.cards.filter(function (card) {
return card.side === 'front';
}).length / _deck.cards.length;
_deck.cards.forEach(function (card, i) {
card.setSide(side ? side : flipped > 0.5 ? 'back' : 'front');
});
next();
}
}
};
var sort = {
deck: function deck(_deck2) {
_deck2.sort = _deck2.queued(sort);
function sort(next, reverse) {
var cards = _deck2.cards;
cards.sort(function (a, b) {
if (reverse) {
return a.i - b.i;
} else {
return b.i - a.i;
}
});
cards.forEach(function (card, i) {
card.sort(i, cards.length, function (i) {
if (i === cards.length - 1) {
next();
}
}, reverse);
});
}
},
card: function card(_card2) {
var $el = _card2.$el;
_card2.sort = function (i, len, cb, reverse) {
var z = i / 4;
var delay = i * 10;
_card2.animateTo({
delay: delay,
duration: 400,
x: -z,
y: -150,
rot: 0,
onComplete: function onComplete() {
$el.style.zIndex = i;
}
});
_card2.animateTo({
delay: delay + 500,
duration: 400,
x: -z,
y: -z,
rot: 0,
onComplete: function onComplete() {
cb(i);
}
});
};
}
};
function plusminus(value) {
var plusminus = Math.round(Math.random()) ? -1 : 1;
return plusminus * value;
}
function fisherYates(array) {
var rnd, temp;
for (var i = array.length - 1; i; i--) {
rnd = Math.random() * i | 0;
temp = array[i];
array[i] = array[rnd];
array[rnd] = temp;
}
return array;
}
function fontSize() {
return window.getComputedStyle(document.body).getPropertyValue('font-size').slice(0, -2);
}
var ____fontSize;
var shuffle = {
deck: function deck(_deck3) {
_deck3.shuffle = _deck3.queued(shuffle);
function shuffle(next) {
var cards = _deck3.cards;
____fontSize = fontSize();
fisherYates(cards);
cards.forEach(function (card, i) {
card.pos = i;
card.shuffle(function (i) {
if (i === cards.length - 1) {
next();
}
});
});
return;
}
},
card: function card(_card3) {
var $el = _card3.$el;
_card3.shuffle = function (cb) {
var i = _card3.pos;
var z = i / 4;
var delay = i * 2;
_card3.animateTo({
delay: delay,
duration: 200,
x: plusminus(Math.random() * 40 + 20) * ____fontSize / 16,
y: -z,
rot: 0
});
_card3.animateTo({
delay: 200 + delay,
duration: 200,
x: -z,
y: -z,
rot: 0,
onStart: function onStart() {
$el.style.zIndex = i;
},
onComplete: function onComplete() {
cb(i);
}
});
};
}
};
var __fontSize;
var poker = {
deck: function deck(_deck4) {
_deck4.poker = _deck4.queued(poker);
function poker(next) {
var cards = _deck4.cards;
var len = cards.length;
__fontSize = fontSize();
cards.slice(-5).reverse().forEach(function (card, i) {
card.poker(i, len, function (i) {
card.setSide('front');
if (i === 4) {
next();
}
});
});
}
},
card: function card(_card4) {
var $el = _card4.$el;
_card4.poker = function (i, len, cb) {
var delay = i * 250;
_card4.animateTo({
delay: delay,
duration: 250,
x: Math.round((i - 2.05) * 70 * __fontSize / 16),
y: Math.round(-110 * __fontSize / 16),
rot: 0,
onStart: function onStart() {
$el.style.zIndex = len - 1 + i;
},
onComplete: function onComplete() {
cb(i);
}
});
};
}
};
var intro = {
deck: function deck(_deck5) {
_deck5.intro = _deck5.queued(intro);
function intro(next) {
var cards = _deck5.cards;
cards.forEach(function (card, i) {
card.setSide('front');
card.intro(i, function (i) {
animationFrames(250, 0).start(function () {
card.setSide('back');
});
if (i === cards.length - 1) {
next();
}
});
});
}
},
card: function card(_card5) {
var transform = prefix('transform');
var $el = _card5.$el;
_card5.intro = function (i, cb) {
var delay = 500 + i * 10;
var z = i / 4;
$el.style[transform] = translate(-z + 'px', '-250px');
$el.style.opacity = 0;
_card5.x = -z;
_card5.y = -250 - z;
_card5.rot = 0;
_card5.animateTo({
delay: delay,
duration: 1000,
x: -z,
y: -z,
onStart: function onStart() {
$el.style.zIndex = i;
},
onProgress: function onProgress(t) {
$el.style.opacity = t;
},
onComplete: function onComplete() {
$el.style.opacity = '';
cb && cb(i);
}
});
};
}
};
var _fontSize;
var fan = {
deck: function deck(_deck6) {
_deck6.fan = _deck6.queued(fan);
function fan(next) {
var cards = _deck6.cards;
var len = cards.length;
_fontSize = fontSize();
cards.forEach(function (card, i) {
card.fan(i, len, function (i) {
if (i === cards.length - 1) {
next();
}
});
});
}
},
card: function card(_card6) {
var $el = _card6.$el;
_card6.fan = function (i, len, cb) {
var z = i / 4;
var delay = i * 10;
var rot = i / (len - 1) * 260 - 130;
_card6.animateTo({
delay: delay,
duration: 300,
x: -z,
y: -z,
rot: 0
});
_card6.animateTo({
delay: 300 + delay,
duration: 300,
x: Math.cos(deg2rad(rot - 90)) * 55 * _fontSize / 16,
y: Math.sin(deg2rad(rot - 90)) * 55 * _fontSize / 16,
rot: rot,
onStart: function onStart() {
$el.style.zIndex = i;
},
onComplete: function onComplete() {
cb(i);
}
});
};
}
};
function deg2rad(degrees) {
return degrees * Math.PI / 180;
}
var ___fontSize;
var bysuit = {
deck: function deck(_deck7) {
_deck7.bysuit = _deck7.queued(bysuit);
function bysuit(next) {
var cards = _deck7.cards;
___fontSize = fontSize();
cards.forEach(function (card) {
card.bysuit(function (i) {
if (i === cards.length - 1) {
next();
}
});
});
}
},
card: function card(_card7) {
var rank = _card7.rank;
var suit = _card7.suit;
_card7.bysuit = function (cb) {
var i = _card7.i;
var delay = i * 10;
_card7.animateTo({
delay: delay,
duration: 400,
x: -Math.round((6.75 - rank) * 8 * ___fontSize / 16),
y: -Math.round((1.5 - suit) * 92 * ___fontSize / 16),
rot: 0,
onComplete: function onComplete() {
cb(i);
}
});
};
}
};
function queue(target) {
var array = Array.prototype;
var queueing = [];
target.queue = queue;
target.queued = queued;
return target;
function queued(action) {
return function () {
var self = this;
var args = arguments;
queue(function (next) {
action.apply(self, array.concat.apply(next, args));
});
};
}
function queue(action) {
if (!action) {
return;
}
queueing.push(action);
if (queueing.length === 1) {
next();
}
}
function next() {
queueing[0](function (err) {
if (err) {
throw err;
}
queueing = queueing.slice(1);
if (queueing.length) {
next();
}
});
}
}
function observable(target) {
target || (target = {});
var listeners = {};
target.on = on;
target.one = one;
target.off = off;
target.trigger = trigger;
return target;
function on(name, cb, ctx) {
listeners[name] || (listeners[name] = []);
listeners[name].push({ cb: cb, ctx: ctx });
}
function one(name, cb, ctx) {
listeners[name] || (listeners[name] = []);
listeners[name].push({
cb: cb, ctx: ctx, once: true
});
}
function trigger(name) {
var self = this;
var args = Array.prototype.slice(arguments, 1);
var currentListeners = listeners[name] || [];
currentListeners.filter(function (listener) {
listener.cb.apply(self, args);
return !listener.once;
});
}
function off(name, cb) {
if (!name) {
listeners = {};
return;
}
if (!cb) {
listeners[name] = [];
return;
}
listeners[name] = listeners[name].filter(function (listener) {
return listener.cb !== cb;
});
}
}
function Deck(jokers) {
// init cards array
var cards = new Array(jokers ? 55 : 52);
var $el = createElement('div');
var self = observable({ mount: mount, unmount: unmount, cards: cards, $el: $el });
var $root;
var modules = Deck.modules;
var module;
// make queueable
queue(self);
// load modules
for (module in modules) {
addModule(modules[module]);
}
// add class
$el.classList.add('deck');
var card;
// create cards
for (var i = cards.length; i; i--) {
card = cards[i - 1] = _card(i - 1);
card.setSide('back');
card.mount($el);
}
return self;
function mount(root) {
// mount deck to root
$root = root;
$root.appendChild($el);
}
function unmount() {
// unmount deck from root
$root.removeChild($el);
}
function addModule(module) {
module.deck && module.deck(self);
}
}
Deck.animationFrames = animationFrames;
Deck.ease = ease;
Deck.modules = { bysuit: bysuit, fan: fan, intro: intro, poker: poker, shuffle: shuffle, sort: sort, flip: flip };
Deck.Card = _card;
Deck.prefix = prefix;
Deck.translate = translate;
return Deck;
})();

391
web/shuffle/example.css Normal file
View file

@ -0,0 +1,391 @@
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
}
body {
background-color: #45a173;
color: #333;
font-family: 'Open Sans', sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
overflow: hidden;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
#container {
position: fixed;
top: calc(50% + 1.5rem);
left: 50%;
z-index: 1;
-webkit-transform: translate3d(-50%, -50%, 0);
-moz-transform: translate3d(-50%, -50%, 0);
-o-transform: translate3d(-50%, -50%, 0);
-ms-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
}
#topbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #334d41;
padding: 0.25rem;
text-align: center;
}
#topbar button {
background: none;
border: 1px solid #fff;
outline: none;
margin: 0.1rem;
padding: 0.4rem;
font: inherit;
font-size: 0.75rem;
line-height: 1;
color: #fff;
cursor: pointer;
}
#topbar button:hover {
background-color: #fff;
color: #444;
}
.message {
position: fixed;
top: 2.5rem;
left: 0;
width: 100%;
padding: 1rem 0.5rem;
font-size: 0.5rem;
text-align: center;
}
.card {
position: absolute;
display: inline-block;
left: -1.9375rem;
top: -2.75rem;
width: 3.875rem;
height: 5.5rem;
background-color: #fff;
-webkit-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
box-shadow: 0 1px 1px rgba(0,0,0,0.15);
cursor: default;
will-change: transform;
}
.card:before,
.card:after {
position: absolute;
font-size: 0.7rem;
text-align: center;
line-height: 0.7rem;
font-family: 'Ubuntu Condensed', sans-serif;
white-space: pre-line;
width: 0.55rem;
letter-spacing: -0.1rem;
}
.card:before {
top: 0.15rem;
left: 0;
}
.card:after {
bottom: 0.1rem;
right: 0;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.card .face {
height: 100%;
background-position: 50% 50%;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.card .back {
position: absolute;
background-image: url("faces/back.png");
background-position: 50% 50%;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
background-size: 100% 100%;
background-repeat: no-repeat;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.card.spades,
.card.clubs,
.card.joker {
color: #000;
}
.card.hearts,
.card.diamonds,
.card.joker.rank3 {
color: #d40000;
}
.card.joker.rank1:before,
.card.joker.rank2:before,
.card.joker.rank3:before,
.card.joker.rank1:after,
.card.joker.rank2:after,
.card.joker.rank3:after {
content: "J\a O\a K\a E\a R";
letter-spacing: 0;
font-size: 0.4rem;
line-height: 0.4rem;
padding: 0.15rem 0.05rem;
width: 0.5rem;
}
.card.rank1:before,
.card.rank1:after {
content: "A";
}
.card.rank2:before,
.card.rank2:after {
content: "2";
}
.card.rank3:before,
.card.rank3:after {
content: "3";
}
.card.rank4:before,
.card.rank4:after {
content: "4";
}
.card.rank5:before,
.card.rank5:after {
content: "5";
}
.card.rank6:before,
.card.rank6:after {
content: "6";
}
.card.rank7:before,
.card.rank7:after {
content: "7";
}
.card.rank8:before,
.card.rank8:after {
content: "8";
}
.card.rank9:before,
.card.rank9:after {
content: "9";
}
.card.rank10:before,
.card.rank10:after {
content: "10";
}
.card.rank11:before,
.card.rank11:after {
content: "J";
}
.card.rank12:before,
.card.rank12:after {
content: "Q";
}
.card.rank13:before,
.card.rank13:after {
content: "K";
}
.card.spades.rank1 .face {
background-image: url("faces/0_1.svg");
}
.card.spades.rank2 .face {
background-image: url("faces/c1.png");
}
.card.spades.rank3 .face {
background-image: url("faces/c2.png");
}
.card.spades.rank4 .face {
background-image: url("faces/c3.png");
}
.card.spades.rank5 .face {
background-image: url("faces/c4.png");
}
.card.spades.rank6 .face {
background-image: url("faces/c4.png");
}
.card.spades.rank7 .face {
background-image: url("faces/c4.png");
}
.card.spades.rank8 .face {
background-image: url("faces/c1.png");
}
.card.spades.rank9 .face {
background-image: url("faces/c3.png");
}
.card.spades.rank10 .face {
background-image: url("faces/c3.png");
}
.card.spades.rank11 .face {
background-image: url("faces/c3.png");
}
.card.spades.rank12 .face {
background-image: url("faces/0_12.svg");
}
.card.spades.rank13 .face {
background-image: url("faces/0_13.svg");
}
.card.hearts.rank1 .face {
background-image: url("faces/1_1.svg");
}
.card.hearts.rank2 .face {
background-image: url("faces/1_2.svg");
}
.card.hearts.rank3 .face {
background-image: url("faces/1_3.svg");
}
.card.hearts.rank4 .face {
background-image: url("faces/1_4.svg");
}
.card.hearts.rank5 .face {
background-image: url("faces/1_5.svg");
}
.card.hearts.rank6 .face {
background-image: url("faces/1_6.svg");
}
.card.hearts.rank7 .face {
background-image: url("faces/1_7.svg");
}
.card.hearts.rank8 .face {
background-image: url("faces/1_8.svg");
}
.card.hearts.rank9 .face {
background-image: url("faces/1_9.svg");
}
.card.hearts.rank10 .face {
background-image: url("faces/1_10.svg");
}
.card.hearts.rank11 .face {
background-image: url("faces/1_11.svg");
}
.card.hearts.rank12 .face {
background-image: url("faces/1_12.svg");
}
.card.hearts.rank13 .face {
background-image: url("faces/1_13.svg");
}
.card.clubs.rank1 .face {
background-image: url("faces/2_1.svg");
}
.card.clubs.rank2 .face {
background-image: url("faces/2_2.svg");
}
.card.clubs.rank3 .face {
background-image: url("faces/2_3.svg");
}
.card.clubs.rank4 .face {
background-image: url("faces/2_4.svg");
}
.card.clubs.rank5 .face {
background-image: url("faces/2_5.svg");
}
.card.clubs.rank6 .face {
background-image: url("faces/2_6.svg");
}
.card.clubs.rank7 .face {
background-image: url("faces/2_7.svg");
}
.card.clubs.rank8 .face {
background-image: url("faces/2_8.svg");
}
.card.clubs.rank9 .face {
background-image: url("faces/2_9.svg");
}
.card.clubs.rank10 .face {
background-image: url("faces/2_10.svg");
}
.card.clubs.rank11 .face {
background-image: url("faces/2_11.svg");
}
.card.clubs.rank12 .face {
background-image: url("faces/2_12.svg");
}
.card.clubs.rank13 .face {
background-image: url("faces/2_13.svg");
}
.card.diamonds.rank1 .face {
background-image: url("faces/3_1.svg");
}
.card.diamonds.rank2 .face {
background-image: url("faces/3_2.svg");
}
.card.diamonds.rank3 .face {
background-image: url("faces/3_3.svg");
}
.card.diamonds.rank4 .face {
background-image: url("faces/3_4.svg");
}
.card.diamonds.rank5 .face {
background-image: url("faces/3_5.svg");
}
.card.diamonds.rank6 .face {
background-image: url("faces/3_6.svg");
}
.card.diamonds.rank7 .face {
background-image: url("faces/3_7.svg");
}
.card.diamonds.rank8 .face {
background-image: url("faces/3_8.svg");
}
.card.diamonds.rank9 .face {
background-image: url("faces/3_9.svg");
}
.card.diamonds.rank10 .face {
background-image: url("faces/3_10.svg");
}
.card.diamonds.rank11 .face {
background-image: url("faces/3_11.svg");
}
.card.diamonds.rank12 .face {
background-image: url("faces/3_12.svg");
}
.card.diamonds.rank13 .face {
background-image: url("faces/3_13.svg");
}
.card.joker.rank1 .face {
background-image: url("faces/4_1.svg");
}
.card.joker.rank2 .face {
background-image: url("faces/4_2.svg");
}
.card.joker.rank3 .face {
background-image: url("faces/4_3.svg");
}
@media (max-width: 540px) {
#topbar {
text-align: left;
}
.gh-ribbon {
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
-o-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
-webkit-transform-origin: 100% 0;
-moz-transform-origin: 100% 0;
-o-transform-origin: 100% 0;
-ms-transform-origin: 100% 0;
transform-origin: 100% 0;
}
}
@media (min-width: 640px) {
html {
font-size: 125%;
}
}

232
web/shuffle/example.js Normal file
View file

@ -0,0 +1,232 @@
/* global Deck */
var prefix = Deck.prefix
var transform = prefix('transform')
var translate = Deck.translate
var $container = document.getElementById('container')
var $topbar = document.getElementById('topbar')
var $sort = document.createElement('button')
var $shuffle = document.createElement('button')
var $bysuit = document.createElement('button')
var $fan = document.createElement('button')
var $poker = document.createElement('button')
var $flip = document.createElement('button')
$shuffle.textContent = 'Shuffle'
$sort.textContent = 'Sort'
$bysuit.textContent = 'By suit'
$fan.textContent = 'Fan'
$poker.textContent = 'Poker'
$flip.textContent = 'Flip'
$topbar.appendChild($flip)
$topbar.appendChild($shuffle)
$topbar.appendChild($bysuit)
$topbar.appendChild($fan)
$topbar.appendChild($poker)
$topbar.appendChild($sort)
var deck = Deck()
// easter eggs start
var acesClicked = []
var kingsClicked = []
deck.cards.forEach(function (card, i) {
card.enableDragging()
card.enableFlipping()
card.$el.addEventListener('mousedown', onTouch)
card.$el.addEventListener('touchstart', onTouch)
function onTouch () {
var card
if (i % 13 === 0) {
acesClicked[i] = true
if (acesClicked.filter(function (ace) {
return ace
}).length === 4) {
document.body.removeChild($topbar)
deck.$el.style.display = 'none'
setTimeout(function () {
startWinning()
}, 250)
}
} else if (i % 13 === 12) {
if (!kingsClicked) {
return
}
kingsClicked[i] = true
if (kingsClicked.filter(function (king) {
return king
}).length === 4) {
for (var j = 0; j < 3; j++) {
card = Deck.Card(52 + j)
card.mount(deck.$el)
card.$el.style[transform] = 'scale(0)'
card.setSide('front')
card.enableDragging()
card.enableFlipping()
deck.cards.push(card)
}
deck.sort(true)
kingsClicked = false
}
} else {
acesClicked = []
if (kingsClicked) {
kingsClicked = []
}
}
}
})
function startWinning () {
var $winningDeck = document.createElement('div')
$winningDeck.classList.add('deck')
$winningDeck.style[transform] = translate(Math.random() * window.innerWidth - window.innerWidth / 2 + 'px', Math.random() * window.innerHeight - window.innerHeight / 2 + 'px')
$container.appendChild($winningDeck)
var side = Math.floor(Math.random() * 2) ? 'front' : 'back'
for (var i = 0; i < 55; i++) {
addWinningCard($winningDeck, i, side)
}
setTimeout(startWinning, Math.round(Math.random() * 1000))
}
function addWinningCard ($deck, i, side) {
var card = Deck.Card(54 - i)
var delay = (55 - i) * 20
var animationFrames = Deck.animationFrames
var ease = Deck.ease
card.enableFlipping()
if (side === 'front') {
card.setSide('front')
} else {
card.setSide('back')
}
card.mount($deck)
card.$el.style.display = 'none'
var xStart = 0
var yStart = 0
var xDiff = -500
var yDiff = 500
animationFrames(delay, 1000)
.start(function () {
card.x = 0
card.y = 0
card.$el.style.display = ''
})
.progress(function (t) {
var tx = t
var ty = ease.cubicIn(t)
card.x = xStart + xDiff * tx
card.y = yStart + yDiff * ty
card.$el.style[transform] = translate(card.x + 'px', card.y + 'px')
})
.end(function () {
card.unmount()
})
}
// easter eggs end
$shuffle.addEventListener('click', function () {
deck.shuffle()
deck.shuffle()
})
$sort.addEventListener('click', function () {
deck.sort()
})
$bysuit.addEventListener('click', function () {
deck.sort(true) // sort reversed
deck.bysuit()
})
$fan.addEventListener('click', function () {
deck.fan()
})
$flip.addEventListener('click', function () {
deck.flip()
})
$poker.addEventListener('click', function () {
deck.queue(function (next) {
deck.cards.forEach(function (card, i) {
setTimeout(function () {
card.setSide('back')
}, i * 7.5)
})
next()
})
deck.shuffle()
deck.shuffle()
deck.poker()
})
deck.mount($container)
deck.intro()
deck.sort()
// secret message..
var randomDelay = 10000 + 30000 * Math.random()
setTimeout(function () {
printMessage('Psst..I want to share a secret with you...')
}, randomDelay)
setTimeout(function () {
printMessage('...try clicking all kings and nothing in between...')
}, randomDelay + 5000)
setTimeout(function () {
printMessage('...have fun ;)')
}, randomDelay + 10000)
function printMessage (text) {
var animationFrames = Deck.animationFrames
var ease = Deck.ease
var $message = document.createElement('p')
$message.classList.add('message')
$message.textContent = text
document.body.appendChild($message)
$message.style[transform] = translate(window.innerWidth + 'px', 0)
var diffX = window.innerWidth
animationFrames(1000, 700)
.progress(function (t) {
t = ease.cubicInOut(t)
$message.style[transform] = translate((diffX - diffX * t) + 'px', 0)
})
animationFrames(6000, 700)
.start(function () {
diffX = window.innerWidth
})
.progress(function (t) {
t = ease.cubicInOut(t)
$message.style[transform] = translate((-diffX * t) + 'px', 0)
})
.end(function () {
document.body.removeChild($message)
})
}

View file

@ -0,0 +1,389 @@
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
}
body {
background-color: #45a173;
color: #333;
font-family: 'Open Sans', sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
overflow: hidden;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
#container {
position: fixed;
top: calc(50% + 1.5rem);
left: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
-moz-transform: translate3d(-50%, -50%, 0);
-o-transform: translate3d(-50%, -50%, 0);
-ms-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
}
#topbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #334d41;
padding: 0.25rem;
text-align: center;
}
#topbar button {
background: none;
border: 1px solid #fff;
outline: none;
margin: 0.1rem;
padding: 0.4rem;
font: inherit;
font-size: 0.75rem;
line-height: 1;
color: #fff;
cursor: pointer;
}
#topbar button:hover {
background-color: #fff;
color: #444;
}
.message {
position: fixed;
top: 2.5rem;
left: 0;
width: 100%;
padding: 1rem 0.5rem;
font-size: 0.5rem;
text-align: center;
}
.card {
position: absolute;
display: inline-block;
left: -1.9375rem;
top: -2.75rem;
width: 3.875rem;
height: 5.5rem;
background-color: #fff;
-webkit-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
box-shadow: 0 1px 1px rgba(0,0,0,0.15);
cursor: default;
}
.card:before,
.card:after {
position: absolute;
font-size: 0.7rem;
text-align: center;
line-height: 0.7rem;
font-family: 'Ubuntu Condensed', sans-serif;
white-space: pre-line;
width: 0.55rem;
letter-spacing: -0.1rem;
}
.card:before {
top: 0.15rem;
left: 0;
}
.card:after {
bottom: 0.1rem;
right: 0;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.card .face {
height: 100%;
background-position: 50% 50%;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.card .back {
position: absolute;
background-image: url("faces/back.png");
background-position: 50% 50%;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
background-size: 100% 100%;
background-repeat: no-repeat;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.card.spades,
.card.clubs,
.card.joker {
color: #000;
}
.card.hearts,
.card.diamonds,
.card.joker.rank3 {
color: #d40000;
}
.card.joker.rank1:before,
.card.joker.rank2:before,
.card.joker.rank3:before,
.card.joker.rank1:after,
.card.joker.rank2:after,
.card.joker.rank3:after {
content: "J\a O\a K\a E\a R";
letter-spacing: 0;
font-size: 0.4rem;
line-height: 0.4rem;
padding: 0.15rem 0.05rem;
width: 0.5rem;
}
.card.rank1:before,
.card.rank1:after {
content: "A";
}
.card.rank2:before,
.card.rank2:after {
content: "2";
}
.card.rank3:before,
.card.rank3:after {
content: "3";
}
.card.rank4:before,
.card.rank4:after {
content: "4";
}
.card.rank5:before,
.card.rank5:after {
content: "5";
}
.card.rank6:before,
.card.rank6:after {
content: "6";
}
.card.rank7:before,
.card.rank7:after {
content: "7";
}
.card.rank8:before,
.card.rank8:after {
content: "8";
}
.card.rank9:before,
.card.rank9:after {
content: "9";
}
.card.rank10:before,
.card.rank10:after {
content: "10";
}
.card.rank11:before,
.card.rank11:after {
content: "J";
}
.card.rank12:before,
.card.rank12:after {
content: "Q";
}
.card.rank13:before,
.card.rank13:after {
content: "K";
}
.card.spades.rank1 .face {
background-image: url("faces/0_1.svg");
}
.card.spades.rank2 .face {
background-image: url("faces/0_2.svg");
}
.card.spades.rank3 .face {
background-image: url("faces/0_3.svg");
}
.card.spades.rank4 .face {
background-image: url("faces/0_4.svg");
}
.card.spades.rank5 .face {
background-image: url("faces/0_5.svg");
}
.card.spades.rank6 .face {
background-image: url("faces/0_6.svg");
}
.card.spades.rank7 .face {
background-image: url("faces/0_7.svg");
}
.card.spades.rank8 .face {
background-image: url("faces/0_8.svg");
}
.card.spades.rank9 .face {
background-image: url("faces/0_9.svg");
}
.card.spades.rank10 .face {
background-image: url("faces/0_10.svg");
}
.card.spades.rank11 .face {
background-image: url("faces/0_11.svg");
}
.card.spades.rank12 .face {
background-image: url("faces/0_12.svg");
}
.card.spades.rank13 .face {
background-image: url("faces/0_13.svg");
}
.card.hearts.rank1 .face {
background-image: url("faces/1_1.svg");
}
.card.hearts.rank2 .face {
background-image: url("faces/1_2.svg");
}
.card.hearts.rank3 .face {
background-image: url("faces/1_3.svg");
}
.card.hearts.rank4 .face {
background-image: url("faces/1_4.svg");
}
.card.hearts.rank5 .face {
background-image: url("faces/1_5.svg");
}
.card.hearts.rank6 .face {
background-image: url("faces/1_6.svg");
}
.card.hearts.rank7 .face {
background-image: url("faces/1_7.svg");
}
.card.hearts.rank8 .face {
background-image: url("faces/1_8.svg");
}
.card.hearts.rank9 .face {
background-image: url("faces/1_9.svg");
}
.card.hearts.rank10 .face {
background-image: url("faces/1_10.svg");
}
.card.hearts.rank11 .face {
background-image: url("faces/1_11.svg");
}
.card.hearts.rank12 .face {
background-image: url("faces/1_12.svg");
}
.card.hearts.rank13 .face {
background-image: url("faces/1_13.svg");
}
.card.clubs.rank1 .face {
background-image: url("faces/2_1.svg");
}
.card.clubs.rank2 .face {
background-image: url("faces/2_2.svg");
}
.card.clubs.rank3 .face {
background-image: url("faces/2_3.svg");
}
.card.clubs.rank4 .face {
background-image: url("faces/2_4.svg");
}
.card.clubs.rank5 .face {
background-image: url("faces/2_5.svg");
}
.card.clubs.rank6 .face {
background-image: url("faces/2_6.svg");
}
.card.clubs.rank7 .face {
background-image: url("faces/2_7.svg");
}
.card.clubs.rank8 .face {
background-image: url("faces/2_8.svg");
}
.card.clubs.rank9 .face {
background-image: url("faces/2_9.svg");
}
.card.clubs.rank10 .face {
background-image: url("faces/2_10.svg");
}
.card.clubs.rank11 .face {
background-image: url("faces/2_11.svg");
}
.card.clubs.rank12 .face {
background-image: url("faces/2_12.svg");
}
.card.clubs.rank13 .face {
background-image: url("faces/2_13.svg");
}
.card.diamonds.rank1 .face {
background-image: url("faces/3_1.svg");
}
.card.diamonds.rank2 .face {
background-image: url("faces/3_2.svg");
}
.card.diamonds.rank3 .face {
background-image: url("faces/3_3.svg");
}
.card.diamonds.rank4 .face {
background-image: url("faces/3_4.svg");
}
.card.diamonds.rank5 .face {
background-image: url("faces/3_5.svg");
}
.card.diamonds.rank6 .face {
background-image: url("faces/3_6.svg");
}
.card.diamonds.rank7 .face {
background-image: url("faces/3_7.svg");
}
.card.diamonds.rank8 .face {
background-image: url("faces/3_8.svg");
}
.card.diamonds.rank9 .face {
background-image: url("faces/3_9.svg");
}
.card.diamonds.rank10 .face {
background-image: url("faces/3_10.svg");
}
.card.diamonds.rank11 .face {
background-image: url("faces/3_11.svg");
}
.card.diamonds.rank12 .face {
background-image: url("faces/3_12.svg");
}
.card.diamonds.rank13 .face {
background-image: url("faces/3_13.svg");
}
.card.joker.rank1 .face {
background-image: url("faces/4_1.svg");
}
.card.joker.rank2 .face {
background-image: url("faces/4_2.svg");
}
.card.joker.rank3 .face {
background-image: url("faces/4_3.svg");
}
@media (max-width: 540px) {
#topbar {
text-align: left;
}
.gh-ribbon {
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
-o-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
-webkit-transform-origin: 100% 0;
-moz-transform-origin: 100% 0;
-o-transform-origin: 100% 0;
-ms-transform-origin: 100% 0;
transform-origin: 100% 0;
}
}
@media (min-width: 640px) {
html {
font-size: 125%;
}
}

16
web/shuffle/faces/0_1.svg Normal file
View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(9.000000, 26.000000)" fill="#000000">
<g id="A" transform="translate(0.000000, 26.000000)" sketch:type="MSShapeGroup">
<path d="M9.74600776,0.403329533 C5.45464278,5.86793403 0.863023615,9.01260303 0.786765424,13.2759124 C0.760881443,14.6564324 1.59703359,17.0028729 4.21529785,17.4520016 C5.91398389,17.7420409 8.25270115,16.5143904 8.30158205,14.0202937 C8.29162668,13.5237371 8.89034307,13.5366457 8.88476806,14.2170424 C8.80512504,16.1843694 8.10735264,18.4748693 6.93520651,20.3393563 L12.556809,20.3393563 C11.3846629,18.4748693 10.6871891,16.1843694 10.6072475,14.2170424 C10.5972921,13.5366457 11.1979,13.5237371 11.1904335,14.0202937 C11.2392148,16.5143904 13.5780316,17.7420409 15.2767177,17.4520016 C17.8949819,17.0028729 18.7308354,14.6564324 18.7052501,13.2759124 C18.6285937,9.01260303 14.0372732,5.86793403 9.74600776,0.403329533 L9.74600776,0.403329533 Z" id="path153-0-1-2-5-5-5-3-4"></path>
<path d="M197.698058,211.590287 C193.406693,206.125682 188.815073,202.981013 188.738815,198.717704 C188.712931,197.337184 189.549083,194.990743 192.167348,194.541614 C193.866034,194.251575 196.204751,195.479226 196.253632,197.973322 C196.243677,198.469879 196.842393,198.45697 196.836818,197.776574 C196.757175,195.809247 196.059402,193.518747 194.887256,191.65426 L200.508859,191.65426 C199.336713,193.518747 198.639239,195.809247 198.559297,197.776574 C198.549342,198.45697 199.14995,198.469879 199.142483,197.973322 C199.191265,195.479226 201.530081,194.251575 203.228768,194.541614 C205.847032,194.990743 206.682885,197.337184 206.6573,198.717704 C206.580644,202.981013 201.989323,206.125682 197.698058,211.590287 L197.698058,211.590287 Z" id="path153-0-1-2-5-6-5-9-1-9"></path>
<path d="M104.721664,82.0735061 C95.5368332,95.188541 85.7091832,102.735772 85.5459151,112.967699 C85.4911605,116.280967 87.2802413,121.912416 92.8841233,122.990317 C96.5198271,123.686413 101.52549,120.740058 101.630022,114.754226 C101.614093,113.5625 102.890273,113.593471 102.878327,115.226431 C102.707094,119.948 101.214385,125.4452 98.7056298,129.91997 L110.737699,129.91997 C108.228944,125.4452 106.736235,119.948 106.565002,115.226431 C106.553056,113.593471 107.829235,113.5625 107.813307,114.754226 C107.917838,120.740058 112.923502,123.686413 116.559205,122.990317 C122.163087,121.912416 123.952168,116.280967 123.897414,112.967699 C123.734145,102.735772 113.906496,95.188541 104.721664,82.0735061 L104.721664,82.0735061 Z" id="path153-6-3-1-6-92-7-2-9-8"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(10.000000, 26.000000)" fill="#000000">
<g id="10" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M52.1327456,0.180226792 C42.9479144,13.2952616 33.1202645,20.8424931 32.9569963,31.0744197 C32.9022417,34.3876876 34.6913226,40.0191367 40.2952046,41.0970378 C43.9309084,41.7931341 48.9365717,38.8467788 49.0411032,32.8609468 C49.0251746,31.669221 50.3013544,31.7001916 50.2894079,33.3331516 C50.1181754,38.0547204 48.6254662,43.5519203 46.116711,48.0266911 L58.1487802,48.0266911 C55.6400251,43.5519203 54.1473158,38.0547204 53.9760833,33.3331516 C53.9641368,31.7001916 55.2403167,31.669221 55.2243881,32.8609468 C55.3289195,38.8467788 60.3345828,41.7931341 63.9702867,41.0970378 C69.5741686,40.0191367 71.3632495,34.3876876 71.3084949,31.0744197 C71.1452267,20.8424931 61.3175768,13.2952616 52.1327456,0.180226792 L52.1327456,0.180226792 Z" id="path7293-3-2"></path>
<path d="M9.69247399,17.4033591 C5.401109,22.8679636 0.809489839,26.0126326 0.733231648,30.2759419 C0.707347667,31.6564619 1.54349981,34.0029024 4.16176407,34.4520312 C5.86045012,34.7420705 8.19916738,33.5144199 8.24804828,31.0203233 C8.2380929,30.5237667 8.8368093,30.5366752 8.83123429,31.2170719 C8.75159127,33.1843989 8.05381887,35.4748989 6.88167273,37.3393859 L12.5032752,37.3393859 C11.3311291,35.4748989 10.6336554,33.1843989 10.5537137,31.2170719 C10.5437583,30.5366752 11.1443662,30.5237667 11.1368997,31.0203233 C11.185681,33.5144199 13.5244979,34.7420705 15.2231839,34.4520312 C17.8414482,34.0029024 18.6773016,31.6564619 18.6517163,30.2759419 C18.5750599,26.0126326 13.9837394,22.8679636 9.69247399,17.4033591 L9.69247399,17.4033591 Z" id="path7295-4-8"></path>
<path d="M52.1327456,179.88444 C42.9479144,166.769405 33.1202645,159.222173 32.9569963,148.990247 C32.9022417,145.676979 34.6913226,140.04553 40.2952046,138.967629 C43.9309084,138.271532 48.9365717,141.217888 49.0411032,147.20372 C49.0251746,148.395445 50.3013544,148.364475 50.2894079,146.731515 C50.1181754,142.009946 48.6254662,136.512746 46.116711,132.037975 L58.1487802,132.037975 C55.6400251,136.512746 54.1473158,142.009946 53.9760833,146.731515 C53.9641368,148.364475 55.2403167,148.395445 55.2243881,147.20372 C55.3289195,141.217888 60.3345828,138.271532 63.9702867,138.967629 C69.5741686,140.04553 71.3632495,145.676979 71.3084949,148.990247 C71.1452267,159.222173 61.3175768,166.769405 52.1327456,179.88444 L52.1327456,179.88444 Z" id="path7297-5-1"></path>
<path d="M197.644524,228.590316 C193.353159,223.125712 188.76154,219.981043 188.685282,215.717733 C188.659398,214.337213 189.49555,211.990773 192.113814,211.541644 C193.8125,211.251605 196.151217,212.479255 196.200098,214.973352 C196.190143,215.469909 196.788859,215.457 196.783284,214.776603 C196.703641,212.809276 196.005869,210.518776 194.833723,208.654289 L200.455325,208.654289 C199.283179,210.518776 198.585705,212.809276 198.505764,214.776603 C198.495808,215.457 199.096416,215.469909 199.08895,214.973352 C199.137731,212.479255 201.476548,211.251605 203.175234,211.541644 C205.793498,211.990773 206.629351,214.337213 206.603766,215.717733 C206.52711,219.981043 201.935789,223.125712 197.644524,228.590316 L197.644524,228.590316 Z" id="path7299-3-5"></path>
<path d="M155.203555,0.180226792 C146.018724,13.2952616 136.191074,20.8424931 136.027806,31.0744197 C135.973051,34.3876876 137.762132,40.0191367 143.366014,41.0970378 C147.001718,41.7931341 152.007381,38.8467788 152.111913,32.8609468 C152.095984,31.669221 153.372164,31.7001916 153.360218,33.3331516 C153.188985,38.0547204 151.696276,43.5519203 149.187521,48.0266911 L161.21959,48.0266911 C158.710835,43.5519203 157.218126,38.0547204 157.046893,33.3331516 C157.034947,31.7001916 158.311126,31.669221 158.295198,32.8609468 C158.399729,38.8467788 163.405393,41.7931341 167.041096,41.0970378 C172.644978,40.0191367 174.434059,34.3876876 174.379305,31.0744197 C174.216036,20.8424931 164.388387,13.2952616 155.203555,0.180226792 L155.203555,0.180226792 Z" id="path7301-4-0"></path>
<path d="M52.1327456,66.109096 C42.9479144,79.2241309 33.1202645,86.7713624 32.9569963,97.0032889 C32.9022417,100.316557 34.6913226,105.948006 40.2952046,107.025907 C43.9309084,107.722003 48.9365717,104.775648 49.0411032,98.7898161 C49.0251746,97.5980902 50.3013544,97.6290609 50.2894079,99.2620208 C50.1181754,103.98359 48.6254662,109.48079 46.116711,113.95556 L58.1487802,113.95556 C55.6400251,109.48079 54.1473158,103.98359 53.9760833,99.2620208 C53.9641368,97.6290609 55.2403167,97.5980902 55.2243881,98.7898161 C55.3289195,104.775648 60.3345828,107.722003 63.9702867,107.025907 C69.5741686,105.948006 71.3632495,100.316557 71.3084949,97.0032889 C71.1452267,86.7713624 61.3175768,79.2241309 52.1327456,66.109096 L52.1327456,66.109096 Z" id="path7303-7-8"></path>
<path d="M103.66815,42.6842646 C94.4833193,55.7992994 84.6556694,63.3465309 84.4924012,73.5784574 C84.4376466,76.8917254 86.2267275,82.5231745 91.8306094,83.6010756 C95.4663132,84.2971719 100.471977,81.3508165 100.576508,75.3649846 C100.560579,74.1732588 101.836759,74.2042294 101.824813,75.8371893 C101.65358,80.5587582 100.160871,86.0559581 97.6521159,90.5307289 L109.684185,90.5307289 C107.17543,86.0559581 105.682721,80.5587582 105.511488,75.8371893 C105.499542,74.2042294 106.775722,74.1732588 106.759793,75.3649846 C106.864324,81.3508165 111.869988,84.2971719 115.505692,83.6010756 C121.109573,82.5231745 122.898654,76.8917254 122.8439,73.5784574 C122.680632,63.3465309 112.852982,55.7992994 103.66815,42.6842646 L103.66815,42.6842646 Z" id="path7305-6-7"></path>
<path d="M155.203555,66.109096 C146.018724,79.2241309 136.191074,86.7713624 136.027806,97.0032889 C135.973051,100.316557 137.762132,105.948006 143.366014,107.025907 C147.001718,107.722003 152.007381,104.775648 152.111913,98.7898161 C152.095984,97.5980902 153.372164,97.6290609 153.360218,99.2620208 C153.188985,103.98359 151.696276,109.48079 149.187521,113.95556 L161.21959,113.95556 C158.710835,109.48079 157.218126,103.98359 157.046893,99.2620208 C157.034947,97.6290609 158.311126,97.5980902 158.295198,98.7898161 C158.399729,104.775648 163.405393,107.722003 167.041096,107.025907 C172.644978,105.948006 174.434059,100.316557 174.379305,97.0032889 C174.216036,86.7713624 164.388387,79.2241309 155.203555,66.109096 L155.203555,66.109096 Z" id="path7309-8-5"></path>
<path d="M52.1327456,245.813319 C42.9479144,232.698284 33.1202645,225.151052 32.9569963,214.919126 C32.9022417,211.605858 34.6913226,205.974409 40.2952046,204.896508 C43.9309084,204.200411 48.9365717,207.146767 49.0411032,213.132599 C49.0251746,214.324325 50.3013544,214.293354 50.2894079,212.660394 C50.1181754,207.938825 48.6254662,202.441625 46.116711,197.966854 L58.1487802,197.966854 C55.6400251,202.441625 54.1473158,207.938825 53.9760833,212.660394 C53.9641368,214.293354 55.2403167,214.324325 55.2243881,213.132599 C55.3289195,207.146767 60.3345828,204.200411 63.9702867,204.896508 C69.5741686,205.974409 71.3632495,211.605858 71.3084949,214.919126 C71.1452267,225.151052 61.3175768,232.698284 52.1327456,245.813319 L52.1327456,245.813319 Z" id="path7313-6-8"></path>
<path d="M155.203555,245.813319 C146.018724,232.698284 136.191074,225.151052 136.027806,214.919126 C135.973051,211.605858 137.762132,205.974409 143.366014,204.896508 C147.001718,204.200411 152.007381,207.146767 152.111913,213.132599 C152.095984,214.324325 153.372164,214.293354 153.360218,212.660394 C153.188985,207.938825 151.696276,202.441625 149.187521,197.966854 L161.21959,197.966854 C158.710835,202.441625 157.218126,207.938825 157.046893,212.660394 C157.034947,214.293354 158.311126,214.324325 158.295198,213.132599 C158.399729,207.146767 163.405393,204.200411 167.041096,204.896508 C172.644978,205.974409 174.434059,211.605858 174.379305,214.919126 C174.216036,225.151052 164.388387,232.698284 155.203555,245.813319 L155.203555,245.813319 Z" id="path7315-7-3"></path>
<path d="M103.66815,203.309281 C94.4833193,190.194246 84.6556694,182.647015 84.4924012,172.415088 C84.4376466,169.10182 86.2267275,163.470371 91.8306094,162.39247 C95.4663132,161.696374 100.471977,164.642729 100.576508,170.628561 C100.560579,171.820287 101.836759,171.789316 101.824813,170.156356 C101.65358,165.434787 100.160871,159.937588 97.6521159,155.462807 L109.684185,155.462807 C107.17543,159.937588 105.682721,165.434787 105.511488,170.156356 C105.499542,171.789316 106.775722,171.820287 106.759793,170.628561 C106.864324,164.642729 111.869988,161.696374 115.505692,162.39247 C121.109573,163.470371 122.898654,169.10182 122.8439,172.415088 C122.680632,182.647015 112.852982,190.194246 103.66815,203.309281 L103.66815,203.309281 Z" id="path7317-0-2"></path>
<path d="M155.203555,179.88444 C146.018724,166.769415 136.191074,159.222183 136.027806,148.990257 C135.973051,145.676989 137.762132,140.04554 143.366014,138.967638 C147.001718,138.271542 152.007381,141.217898 152.111913,147.20373 C152.095984,148.395455 153.372164,148.364485 153.360218,146.731525 C153.188985,142.009956 151.696276,136.512746 149.187521,132.037975 L161.21959,132.037975 C158.710835,136.512746 157.218126,142.009956 157.046893,146.731525 C157.034947,148.364485 158.311126,148.395455 158.295198,147.20373 C158.399729,141.217898 163.405393,138.271542 167.041096,138.967638 C172.644978,140.04554 174.434059,145.676989 174.379305,148.990257 C174.216036,159.222183 164.388387,166.769415 155.203555,179.88444 L155.203555,179.88444 Z" id="path7319-5-6"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 166 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 153 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 144 KiB

17
web/shuffle/faces/0_2.svg Normal file
View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(10.000000, 26.000000)" fill="#000000">
<g id="2" transform="translate(0.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M9.8512361,17.4033295 C5.55987112,22.867934 0.968251954,26.012603 0.891993763,30.2759124 C0.866109782,31.6564324 1.70226193,34.0028729 4.32052619,34.4520016 C6.01921223,34.7420409 8.35792949,33.5143904 8.40681039,31.0202937 C8.39685502,30.5237371 8.99557141,30.5366457 8.9899964,31.2170424 C8.91035338,33.1843694 8.21258098,35.4748693 7.04043485,37.3393563 L12.6620374,37.3393563 C11.4898912,35.4748693 10.7924175,33.1843694 10.7124758,31.2170424 C10.7025204,30.5366457 11.3031283,30.5237371 11.2956618,31.0202937 C11.3444432,33.5143904 13.68326,34.7420409 15.381946,34.4520016 C18.0002103,34.0028729 18.8360638,31.6564324 18.8104784,30.2759124 C18.733822,26.012603 14.1425015,22.867934 9.8512361,17.4033295 L9.8512361,17.4033295 Z" id="path6748-4-0"></path>
<path d="M197.803286,228.590287 C193.511921,223.125682 188.920302,219.981013 188.844044,215.717704 C188.81816,214.337184 189.654312,211.990743 192.272576,211.541614 C193.971262,211.251575 196.309979,212.479226 196.35886,214.973322 C196.348905,215.469879 196.947621,215.45697 196.942046,214.776574 C196.862403,212.809247 196.164631,210.518747 194.992485,208.65426 L200.614087,208.65426 C199.441941,210.518747 198.744467,212.809247 198.664526,214.776574 C198.65457,215.45697 199.255178,215.469879 199.247712,214.973322 C199.296493,212.479226 201.63531,211.251575 203.333996,211.541614 C205.95226,211.990743 206.788114,214.337184 206.762528,215.717704 C206.685872,219.981013 202.094551,223.125682 197.803286,228.590287 L197.803286,228.590287 Z" id="path6752-9-1"></path>
<path d="M103.826893,0.18019726 C94.6420615,13.2952321 84.8144116,20.8424636 84.6511434,31.0743901 C84.5963888,34.3876581 86.3854697,40.0191072 91.9893516,41.0970083 C95.6250555,41.7931046 100.630719,38.8467492 100.73525,32.8609173 C100.719322,31.6691915 101.995501,31.7001621 101.983555,33.333122 C101.812323,38.0546909 100.319613,43.5518908 97.8108581,48.0266616 L109.842927,48.0266616 C107.334172,43.5518908 105.841463,38.0546909 105.67023,33.333122 C105.658284,31.7001621 106.934464,31.6691915 106.918535,32.8609173 C107.023067,38.8467492 112.02873,41.7931046 115.664434,41.0970083 C121.268316,40.0191072 123.057397,34.3876581 123.002642,31.0743901 C122.839374,20.8424636 113.011724,13.2952321 103.826893,0.18019726 L103.826893,0.18019726 Z" id="path6760-2-4"></path>
<path d="M103.826893,245.813289 C94.6420615,232.698254 84.8144116,225.151023 84.6511434,214.919096 C84.5963888,211.605828 86.3854697,205.974379 91.9893516,204.896478 C95.6250555,204.200382 100.630719,207.146737 100.73525,213.132569 C100.719322,214.324295 101.995501,214.293324 101.983555,212.660364 C101.812323,207.938796 100.319613,202.441596 97.8108581,197.966825 L109.842927,197.966825 C107.334172,202.441596 105.841463,207.938796 105.67023,212.660364 C105.658284,214.293324 106.934464,214.324295 106.918535,213.132569 C107.023067,207.146737 112.02873,204.200382 115.664434,204.896478 C121.268316,205.974379 123.057397,211.605828 123.002642,214.919096 C122.839374,225.151023 113.011724,232.698254 103.826893,245.813289 L103.826893,245.813289 Z" id="path6774-6-2"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

18
web/shuffle/faces/0_3.svg Normal file
View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(10.000000, 26.000000)" fill="#000000">
<g id="3" transform="translate(0.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M9.95631511,17.4033295 C5.66494017,22.867934 1.07332101,26.012603 0.997062816,30.2759124 C0.971178835,31.6564324 1.80733098,34.0028729 4.42559524,34.4520016 C6.12428128,34.7420409 8.46299854,33.5143904 8.51187945,31.0202937 C8.50192407,30.5237371 9.10064047,30.5366457 9.09506545,31.2170424 C9.01542244,33.1843694 8.31765003,35.4748693 7.1455039,37.3393563 L12.7671164,37.3393563 C11.5949702,35.4748693 10.8974965,33.1843694 10.8175548,31.2170424 C10.8075994,30.5366457 11.4082073,30.5237371 11.4007408,31.0202937 C11.4495222,33.5143904 13.788339,34.7420409 15.487025,34.4520016 C18.1052893,34.0028729 18.9411428,31.6564324 18.9155574,30.2759124 C18.838901,26.012603 14.2475805,22.867934 9.95631511,17.4033295 L9.95631511,17.4033295 Z" id="path6816-2-4"></path>
<path d="M197.908365,228.590287 C193.617,223.125682 189.025381,219.981013 188.949123,215.717704 C188.923239,214.337184 189.759391,211.990743 192.377655,211.541614 C194.076341,211.251575 196.415058,212.479226 196.463939,214.973322 C196.453984,215.469879 197.0527,215.45697 197.047125,214.776574 C196.967482,212.809247 196.26971,210.518747 195.097564,208.65426 L200.719166,208.65426 C199.54702,210.518747 198.849546,212.809247 198.769605,214.776574 C198.759649,215.45697 199.360257,215.469879 199.352791,214.973322 C199.401572,212.479226 201.740389,211.251575 203.439075,211.541614 C206.057339,211.990743 206.893193,214.337184 206.867607,215.717704 C206.790951,219.981013 202.19963,223.125682 197.908365,228.590287 L197.908365,228.590287 Z" id="path6820-0-2"></path>
<path d="M103.931992,0.18019726 C94.7471604,13.2952321 84.9195105,20.8424636 84.7562423,31.0743901 C84.7014877,34.3876581 86.4905686,40.0191072 92.0944505,41.0970083 C95.7301544,41.7931046 100.735818,38.8467492 100.840349,32.8609173 C100.824421,31.6691915 102.1006,31.7001621 102.088654,33.333122 C101.917421,38.0546909 100.424712,43.5518908 97.915957,48.0266616 L109.948026,48.0266616 C107.439271,43.5518908 105.946562,38.0546909 105.775329,33.333122 C105.763383,31.7001621 107.039563,31.6691915 107.023634,32.8609173 C107.128166,38.8467492 112.133829,41.7931046 115.769533,41.0970083 C121.373415,40.0191072 123.162495,34.3876581 123.107741,31.0743901 C122.944473,20.8424636 113.116823,13.2952321 103.931992,0.18019726 L103.931992,0.18019726 Z" id="path6828-8-3"></path>
<path d="M103.931992,245.813289 C94.7471604,232.698254 84.9195105,225.151023 84.7562423,214.919096 C84.7014877,211.605828 86.4905686,205.974379 92.0944505,204.896478 C95.7301544,204.200382 100.735818,207.146737 100.840349,213.132569 C100.824421,214.324295 102.1006,214.293324 102.088654,212.660364 C101.917421,207.938796 100.424712,202.441596 97.915957,197.966825 L109.948026,197.966825 C107.439271,202.441596 105.946562,207.938796 105.775329,212.660364 C105.763383,214.293324 107.039563,214.324295 107.023634,213.132569 C107.128166,207.146737 112.133829,204.200382 115.769533,204.896478 C121.373415,205.974379 123.162495,211.605828 123.107741,214.919096 C122.944473,225.151023 113.116823,232.698254 103.931992,245.813289 L103.931992,245.813289 Z" id="path6842-0-7"></path>
<path d="M103.931992,99.0735061 C94.7471604,112.188541 84.9195105,119.735772 84.7562423,129.967699 C84.7014877,133.280967 86.4905686,138.912416 92.0944505,139.990317 C95.7301544,140.686413 100.735818,137.740058 100.840349,131.754226 C100.824421,130.5625 102.1006,130.593471 102.088654,132.226431 C101.917421,136.948 100.424712,142.4452 97.915957,146.91997 L109.948026,146.91997 C107.439271,142.4452 105.946562,136.948 105.775329,132.226431 C105.763383,130.593471 107.039563,130.5625 107.023634,131.754226 C107.128166,137.740058 112.133829,140.686413 115.769533,139.990317 C121.373415,138.912416 123.162495,133.280967 123.107741,129.967699 C122.944473,119.735772 113.116823,112.188541 103.931992,99.0735061 L103.931992,99.0735061 Z" id="path6844-7-0"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

19
web/shuffle/faces/0_4.svg Normal file
View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(10.000000, 26.000000)" fill="#000000">
<g id="4" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M51.5018151,0.18019726 C42.3169839,13.2952321 32.489334,20.8424636 32.3260658,31.0743901 C32.2713112,34.3876581 34.0603921,40.0191072 39.664274,41.0970083 C43.2999778,41.7931046 48.3056412,38.8467492 48.4101726,32.8609173 C48.394244,31.6691915 49.6704238,31.7001621 49.6584774,33.333122 C49.4872449,38.0546909 47.9945356,43.5518908 45.4857805,48.0266616 L57.5178496,48.0266616 C55.0090945,43.5518908 53.5163852,38.0546909 53.3451528,33.333122 C53.3332063,31.7001621 54.6093861,31.6691915 54.5934575,32.8609173 C54.697989,38.8467492 59.7036523,41.7931046 63.3393561,41.0970083 C68.9432381,40.0191072 70.7323189,34.3876581 70.6775644,31.0743901 C70.5142962,20.8424636 60.6866463,13.2952321 51.5018151,0.18019726 L51.5018151,0.18019726 Z" id="path6882-1-0"></path>
<path d="M9.06154345,17.4033295 C4.77017847,22.867934 0.178559301,26.012603 0.102301111,30.2759124 C0.0764171294,31.6564324 0.912569277,34.0028729 3.53083353,34.4520016 C5.22951958,34.7420409 7.56823684,33.5143904 7.61711774,31.0202937 C7.60716236,30.5237371 8.20587876,30.5366457 8.20030375,31.2170424 C8.12066073,33.1843694 7.42288833,35.4748693 6.25074219,37.3393563 L11.8723447,37.3393563 C10.7001986,35.4748693 10.0027248,33.1843694 9.92278315,31.2170424 C9.91282777,30.5366457 10.5134357,30.5237371 10.5059692,31.0202937 C10.5547505,33.5143904 12.8935673,34.7420409 14.5922534,34.4520016 C17.2105176,34.0028729 18.0463711,31.6564324 18.0207858,30.2759124 C17.9441294,26.012603 13.3528089,22.867934 9.06154345,17.4033295 L9.06154345,17.4033295 Z" id="path6884-6-5"></path>
<path d="M197.013593,228.590287 C192.722228,223.125682 188.130609,219.981013 188.054351,215.717704 C188.028467,214.337184 188.864619,211.990743 191.482883,211.541614 C193.181569,211.251575 195.520287,212.479226 195.569168,214.973322 C195.559212,215.469879 196.157929,215.45697 196.152354,214.776574 C196.072711,212.809247 195.374938,210.518747 194.202792,208.65426 L199.824395,208.65426 C198.652248,210.518747 197.954775,212.809247 197.874833,214.776574 C197.864878,215.45697 198.465486,215.469879 198.458019,214.973322 C198.5068,212.479226 200.845617,211.251575 202.544303,211.541614 C205.162567,211.990743 205.998421,214.337184 205.972836,215.717704 C205.896179,219.981013 201.304859,223.125682 197.013593,228.590287 L197.013593,228.590287 Z" id="path6888-1-5"></path>
<path d="M154.572625,0.18019726 C145.387794,13.2952321 135.560144,20.8424636 135.396876,31.0743901 C135.342121,34.3876581 137.131202,40.0191072 142.735084,41.0970083 C146.370788,41.7931046 151.376451,38.8467492 151.480982,32.8609173 C151.465054,31.6691915 152.741234,31.7001621 152.729287,33.333122 C152.558055,38.0546909 151.065345,43.5518908 148.55659,48.0266616 L160.588659,48.0266616 C158.079904,43.5518908 156.587195,38.0546909 156.415962,33.333122 C156.404016,31.7001621 157.680196,31.6691915 157.664267,32.8609173 C157.768799,38.8467492 162.774462,41.7931046 166.410166,41.0970083 C172.014048,40.0191072 173.803129,34.3876581 173.748374,31.0743901 C173.585106,20.8424636 163.757456,13.2952321 154.572625,0.18019726 L154.572625,0.18019726 Z" id="path6890-4-9"></path>
<path d="M51.5018151,245.813289 C42.3169839,232.698254 32.489334,225.151023 32.3260658,214.919096 C32.2713112,211.605828 34.0603921,205.974379 39.664274,204.896478 C43.2999778,204.200382 48.3056412,207.146737 48.4101726,213.132569 C48.394244,214.324295 49.6704238,214.293324 49.6584774,212.660364 C49.4872449,207.938796 47.9945356,202.441596 45.4857805,197.966825 L57.5178496,197.966825 C55.0090945,202.441596 53.5163852,207.938796 53.3451528,212.660364 C53.3332063,214.293324 54.6093861,214.324295 54.5934575,213.132569 C54.697989,207.146737 59.7036523,204.200382 63.3393561,204.896478 C68.9432381,205.974379 70.7323189,211.605828 70.6775644,214.919096 C70.5142962,225.151023 60.6866463,232.698254 51.5018151,245.813289 L51.5018151,245.813289 Z" id="path6902-7-5"></path>
<path d="M154.572625,245.813289 C145.387794,232.698254 135.560144,225.151023 135.396876,214.919096 C135.342121,211.605828 137.131202,205.974379 142.735084,204.896478 C146.370788,204.200382 151.376451,207.146737 151.480982,213.132569 C151.465054,214.324295 152.741234,214.293324 152.729287,212.660364 C152.558055,207.938796 151.065345,202.441596 148.55659,197.966825 L160.588659,197.966825 C158.079904,202.441596 156.587195,207.938796 156.415962,212.660364 C156.404016,214.293324 157.680196,214.324295 157.664267,213.132569 C157.768799,207.146737 162.774462,204.200382 166.410166,204.896478 C172.014048,205.974379 173.803129,211.605828 173.748374,214.919096 C173.585106,225.151023 163.757456,232.698254 154.572625,245.813289 L154.572625,245.813289 Z" id="path6904-9-7"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

20
web/shuffle/faces/0_5.svg Normal file
View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(10.000000, 26.000000)" fill="#000000">
<g id="5" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M154.677853,197.963646 C145.493022,211.078681 135.665372,218.625913 135.502104,228.857839 C135.447349,232.171107 137.23643,237.802556 142.840312,238.880457 C146.476016,239.576554 151.481679,236.630198 151.586211,230.644366 C151.570282,229.45264 152.846462,229.483611 152.834515,231.116571 C152.663283,235.83814 151.170574,241.33534 148.661819,245.810111 L160.693888,245.810111 C158.185133,241.33534 156.692423,235.83814 156.521191,231.116571 C156.509244,229.483611 157.785424,229.45264 157.769496,230.644366 C157.874027,236.630198 162.87969,239.576554 166.515394,238.880457 C172.119276,237.802556 173.908357,232.171107 173.853602,228.857839 C173.690334,218.625913 163.862684,211.078681 154.677853,197.963646 L154.677853,197.963646 Z" id="path6950-9-9" transform="translate(154.677853, 221.886878) scale(-1, -1) translate(-154.677853, -221.886878) "></path>
<path d="M197.118138,208.650951 C192.826773,214.115556 188.235154,217.260225 188.158895,221.523534 C188.133011,222.904054 188.969163,225.250495 191.587428,225.699624 C193.286114,225.989663 195.624831,224.762012 195.673712,222.267916 C195.663757,221.771359 196.262473,221.784268 196.256898,222.464664 C196.177255,224.431991 195.479483,226.722491 194.307336,228.586978 L199.928939,228.586978 C198.756793,226.722491 198.059319,224.431991 197.979377,222.464664 C197.969422,221.784268 198.57003,221.771359 198.562563,222.267916 C198.611345,224.762012 200.950162,225.989663 202.648848,225.699624 C205.267112,225.250495 206.102965,222.904054 206.07738,221.523534 C206.000724,217.260225 201.409403,214.115556 197.118138,208.650951 L197.118138,208.650951 Z" id="path6952-6-0" transform="translate(197.118131, 218.618965) scale(-1, -1) translate(-197.118131, -218.618965) "></path>
<path d="M9.16608779,37.336048 C4.87472281,31.8714435 0.283103647,28.7267745 0.206845457,24.4634652 C0.180961475,23.0829452 1.01711362,20.7365047 3.63537788,20.2873759 C5.33406393,19.9973366 7.67278118,21.2249872 7.72166209,23.7190838 C7.71170671,24.2156404 8.31042311,24.2027318 8.3048481,23.5223352 C8.22520508,21.5550082 7.52743267,19.2645082 6.35528654,17.4000212 L11.976889,17.4000212 C10.8047429,19.2645082 10.1072692,21.5550082 10.0273275,23.5223352 C10.0173721,24.2027318 10.61798,24.2156404 10.6105135,23.7190838 C10.6592949,21.2249872 12.9981117,19.9973366 14.6967977,20.2873759 C17.315062,20.7365047 18.1509155,23.0829452 18.1253301,24.4634652 C18.0486737,28.7267745 13.4573532,31.8714435 9.16608779,37.336048 L9.16608779,37.336048 Z" id="path6956-5-0" transform="translate(9.166081, 27.368035) scale(-1, -1) translate(-9.166081, -27.368035) "></path>
<path d="M51.6070434,197.963646 C42.4222122,211.078681 32.5945623,218.625913 32.4312941,228.857839 C32.3765395,232.171107 34.1656204,237.802556 39.7695024,238.880457 C43.4052062,239.576554 48.4108695,236.630198 48.515401,230.644366 C48.4994724,229.45264 49.7756522,229.483611 49.7637057,231.116571 C49.5924732,235.83814 48.099764,241.33534 45.5910088,245.810111 L57.623078,245.810111 C55.1143229,241.33534 53.6216136,235.83814 53.4503811,231.116571 C53.4384346,229.483611 54.7146145,229.45264 54.6986859,230.644366 C54.8032173,236.630198 59.8088806,239.576554 63.4445845,238.880457 C69.0484664,237.802556 70.8375473,232.171107 70.7827927,228.857839 C70.6195245,218.625913 60.7918746,211.078681 51.6070434,197.963646 L51.6070434,197.963646 Z" id="path6958-4-1" transform="translate(51.607043, 221.886878) scale(-1, -1) translate(-51.607043, -221.886878) "></path>
<path d="M154.677853,48.0234829 C145.493022,34.908448 135.665372,27.3612165 135.502104,17.12929 C135.447349,13.816022 137.23643,8.1845729 142.840312,7.1066718 C146.476016,6.41057552 151.481679,9.35693089 151.586211,15.3427628 C151.570282,16.5344887 152.846462,16.503518 152.834515,14.8705581 C152.663283,10.1489892 151.170574,4.65178934 148.661819,0.177018536 L160.693888,0.177018536 C158.185133,4.65178934 156.692423,10.1489892 156.521191,14.8705581 C156.509244,16.503518 157.785424,16.5344887 157.769496,15.3427628 C157.874027,9.35693089 162.87969,6.41057552 166.515394,7.1066718 C172.119276,8.1845729 173.908357,13.816022 173.853602,17.12929 C173.690334,27.3612165 163.862684,34.908448 154.677853,48.0234829 L154.677853,48.0234829 Z" id="path6970-5-5" transform="translate(154.677853, 24.100251) scale(-1, -1) translate(-154.677853, -24.100251) "></path>
<path d="M51.6070434,48.0234829 C42.4222122,34.908448 32.5945623,27.3612165 32.4312941,17.12929 C32.3765395,13.816022 34.1656204,8.1845729 39.7695024,7.1066718 C43.4052062,6.41057552 48.4108695,9.35693089 48.515401,15.3427628 C48.4994724,16.5344887 49.7756522,16.503518 49.7637057,14.8705581 C49.5924732,10.1489892 48.099764,4.65178934 45.5910088,0.177018536 L57.623078,0.177018536 C55.1143229,4.65178934 53.6216136,10.1489892 53.4503811,14.8705581 C53.4384346,16.503518 54.7146145,16.5344887 54.6986859,15.3427628 C54.8032173,9.35693089 59.8088806,6.41057552 63.4445845,7.1066718 C69.0484664,8.1845729 70.8375473,13.816022 70.7827927,17.12929 C70.6195245,27.3612165 60.7918746,34.908448 51.6070434,48.0234829 L51.6070434,48.0234829 Z" id="path6972-5-8" transform="translate(51.607043, 24.100251) scale(-1, -1) translate(-51.607043, -24.100251) "></path>
<path d="M103.142448,99.0703374 C93.9576171,112.185372 84.1299672,119.732604 83.966699,129.96453 C83.9119444,133.277798 85.7010253,138.909247 91.3049072,139.987148 C94.9406111,140.683245 99.9462744,137.736889 100.050806,131.751057 C100.034877,130.559332 101.311057,130.590302 101.299111,132.223262 C101.127878,136.944831 99.6351688,142.442031 97.1264137,146.916802 L109.158483,146.916802 C106.649728,142.442031 105.157018,136.944831 104.985786,132.223262 C104.97384,130.590302 106.250019,130.559332 106.234091,131.751057 C106.338622,137.736889 111.344286,140.683245 114.979989,139.987148 C120.583871,138.909247 122.372952,133.277798 122.318198,129.96453 C122.154929,119.732604 112.327279,112.185372 103.142448,99.0703374 L103.142448,99.0703374 Z" id="path6980-6-3" transform="translate(103.142448, 122.993570) scale(-1, -1) translate(-103.142448, -122.993570) "></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

21
web/shuffle/faces/0_6.svg Normal file
View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(10.000000, 26.000000)" fill="#000000">
<g id="6" transform="translate(0.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M51.7166345,0.18019726 C42.5318033,13.2952321 32.7041534,20.8424636 32.5408852,31.0743901 C32.4861306,34.3876581 34.2752115,40.0191072 39.8790934,41.0970083 C43.5147972,41.7931046 48.5204605,38.8467492 48.624992,32.8609173 C48.6090634,31.6691915 49.8852432,31.7001621 49.8732968,33.333122 C49.7020643,38.0546909 48.209355,43.5518908 45.7005999,48.0266616 L57.732669,48.0266616 C55.2239139,43.5518908 53.7312046,38.0546909 53.5599721,33.333122 C53.5480257,31.7001621 54.8242055,31.6691915 54.8082769,32.8609173 C54.9128084,38.8467492 59.9184717,41.7931046 63.5541755,41.0970083 C69.1580574,40.0191072 70.9471383,34.3876581 70.8923837,31.0743901 C70.7291156,20.8424636 60.9014656,13.2952321 51.7166345,0.18019726 L51.7166345,0.18019726 Z" id="path7018-7-4"></path>
<path d="M9.27636283,17.4033295 C4.98499785,22.867934 0.393378686,26.012603 0.317120495,30.2759124 C0.291236514,31.6564324 1.12738866,34.0028729 3.74565292,34.4520016 C5.44433896,34.7420409 7.78305622,33.5143904 7.83193713,31.0202937 C7.82198175,30.5237371 8.42069814,30.5366457 8.41512313,31.2170424 C8.33548011,33.1843694 7.63770771,35.4748693 6.46556158,37.3393563 L12.0871641,37.3393563 C10.915018,35.4748693 10.2175442,33.1843694 10.1376025,31.2170424 C10.1276472,30.5366457 10.7282551,30.5237371 10.7207885,31.0202937 C10.7695699,33.5143904 13.1083867,34.7420409 14.8070727,34.4520016 C17.425337,34.0028729 18.2611905,31.6564324 18.2356052,30.2759124 C18.1589488,26.012603 13.5676283,22.867934 9.27636283,17.4033295 L9.27636283,17.4033295 Z" id="path7020-0-8"></path>
<path d="M197.228413,228.590287 C192.937048,223.125682 188.345429,219.981013 188.26917,215.717704 C188.243286,214.337184 189.079439,211.990743 191.697703,211.541614 C193.396389,211.251575 195.735106,212.479226 195.783987,214.973322 C195.774032,215.469879 196.372748,215.45697 196.367173,214.776574 C196.28753,212.809247 195.589758,210.518747 194.417611,208.65426 L200.039214,208.65426 C198.867068,210.518747 198.169594,212.809247 198.089652,214.776574 C198.079697,215.45697 198.680305,215.469879 198.672838,214.973322 C198.72162,212.479226 201.060437,211.251575 202.759123,211.541614 C205.377387,211.990743 206.21324,214.337184 206.187655,215.717704 C206.110999,219.981013 201.519678,223.125682 197.228413,228.590287 L197.228413,228.590287 Z" id="path7024-7-1"></path>
<path d="M154.787444,0.18019726 C145.602613,13.2952321 135.774963,20.8424636 135.611695,31.0743901 C135.55694,34.3876581 137.346021,40.0191072 142.949903,41.0970083 C146.585607,41.7931046 151.59127,38.8467492 151.695802,32.8609173 C151.679873,31.6691915 152.956053,31.7001621 152.944107,33.333122 C152.772874,38.0546909 151.280165,43.5518908 148.77141,48.0266616 L160.803479,48.0266616 C158.294724,43.5518908 156.802014,38.0546909 156.630782,33.333122 C156.618835,31.7001621 157.895015,31.6691915 157.879087,32.8609173 C157.983618,38.8467492 162.989281,41.7931046 166.624985,41.0970083 C172.228867,40.0191072 174.017948,34.3876581 173.963193,31.0743901 C173.799925,20.8424636 163.972275,13.2952321 154.787444,0.18019726 L154.787444,0.18019726 Z" id="path7026-2-6"></path>
<path d="M51.7166345,99.0735061 C42.5318033,112.188541 32.7041534,119.735772 32.5408852,129.967699 C32.4861306,133.280967 34.2752115,138.912416 39.8790934,139.990317 C43.5147972,140.686413 48.5204605,137.740058 48.624992,131.754226 C48.6090634,130.5625 49.8852432,130.593471 49.8732968,132.226431 C49.7020643,136.948 48.209355,142.4452 45.7005999,146.91997 L57.732669,146.91997 C55.2239139,142.4452 53.7312046,136.948 53.5599721,132.226431 C53.5480257,130.593471 54.8242055,130.5625 54.8082769,131.754226 C54.9128084,137.740058 59.9184717,140.686413 63.5541755,139.990317 C69.1580574,138.912416 70.9471383,133.280967 70.8923837,129.967699 C70.7291156,119.735772 60.9014656,112.188541 51.7166345,99.0735061 L51.7166345,99.0735061 Z" id="path7036-9-6"></path>
<path d="M51.7166345,245.813289 C42.5318033,232.698254 32.7041534,225.151023 32.5408852,214.919096 C32.4861306,211.605828 34.2752115,205.974379 39.8790934,204.896478 C43.5147972,204.200382 48.5204605,207.146737 48.624992,213.132569 C48.6090634,214.324295 49.8852432,214.293324 49.8732968,212.660364 C49.7020643,207.938796 48.209355,202.441596 45.7005999,197.966825 L57.732669,197.966825 C55.2239139,202.441596 53.7312046,207.938796 53.5599721,212.660364 C53.5480257,214.293324 54.8242055,214.324295 54.8082769,213.132569 C54.9128084,207.146737 59.9184717,204.200382 63.5541755,204.896478 C69.1580574,205.974379 70.9471383,211.605828 70.8923837,214.919096 C70.7291156,225.151023 60.9014656,232.698254 51.7166345,245.813289 L51.7166345,245.813289 Z" id="path7038-9-6"></path>
<path d="M154.787444,245.813289 C145.602613,232.698254 135.774963,225.151023 135.611695,214.919096 C135.55694,211.605828 137.346021,205.974379 142.949903,204.896478 C146.585607,204.200382 151.59127,207.146737 151.695802,213.132569 C151.679873,214.324295 152.956053,214.293324 152.944107,212.660364 C152.772874,207.938796 151.280165,202.441596 148.77141,197.966825 L160.803479,197.966825 C158.294724,202.441596 156.802014,207.938796 156.630782,212.660364 C156.618835,214.293324 157.895015,214.324295 157.879087,213.132569 C157.983618,207.146737 162.989281,204.200382 166.624985,204.896478 C172.228867,205.974379 174.017948,211.605828 173.963193,214.919096 C173.799925,225.151023 163.972275,232.698254 154.787444,245.813289 L154.787444,245.813289 Z" id="path7040-0-9"></path>
<path d="M154.787444,99.0735061 C145.602613,112.188541 135.774963,119.735772 135.611695,129.967699 C135.55694,133.280967 137.346021,138.912416 142.949903,139.990317 C146.585607,140.686413 151.59127,137.740058 151.695802,131.754226 C151.679873,130.5625 152.956053,130.593471 152.944107,132.226431 C152.772874,136.948 151.280165,142.4452 148.77141,146.91997 L160.803479,146.91997 C158.294724,142.4452 156.802014,136.948 156.630782,132.226431 C156.618835,130.593471 157.895015,130.5625 157.879087,131.754226 C157.983618,137.740058 162.989281,140.686413 166.624985,139.990317 C172.228867,138.912416 174.017948,133.280967 173.963193,129.967699 C173.799925,119.735772 163.972275,112.188541 154.787444,99.0735061 L154.787444,99.0735061 Z" id="path7050-2-9"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.9 KiB

22
web/shuffle/faces/0_7.svg Normal file
View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(10.000000, 26.000000)" fill="#000000">
<g id="7" transform="translate(0.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M51.8219624,0.18019726 C42.6371312,13.2952321 32.8094813,20.8424636 32.6462131,31.0743901 C32.5914585,34.3876581 34.3805394,40.0191072 39.9844213,41.0970083 C43.6201251,41.7931046 48.6257884,38.8467492 48.7303199,32.8609173 C48.7143913,31.6691915 49.9905711,31.7001621 49.9786247,33.333122 C49.8073922,38.0546909 48.3146829,43.5518908 45.8059278,48.0266616 L57.8379969,48.0266616 C55.3292418,43.5518908 53.8365325,38.0546909 53.6653,33.333122 C53.6533536,31.7001621 54.9295334,31.6691915 54.9136048,32.8609173 C55.0181363,38.8467492 60.0237996,41.7931046 63.6595034,41.0970083 C69.2633853,40.0191072 71.0524662,34.3876581 70.9977116,31.0743901 C70.8344434,20.8424636 61.0067935,13.2952321 51.8219624,0.18019726 L51.8219624,0.18019726 Z" id="path7086-8-0"></path>
<path d="M9.38169073,17.4033295 C5.09032574,22.867934 0.498706579,26.012603 0.422448388,30.2759124 C0.396564407,31.6564324 1.23271655,34.0028729 3.85098081,34.4520016 C5.54966686,34.7420409 7.88838412,33.5143904 7.93726502,31.0202937 C7.92730964,30.5237371 8.52602604,30.5366457 8.52045103,31.2170424 C8.44080801,33.1843694 7.74303561,35.4748693 6.57088947,37.3393563 L12.192492,37.3393563 C11.0203458,35.4748693 10.3228721,33.1843694 10.2429304,31.2170424 C10.232975,30.5366457 10.833583,30.5237371 10.8261164,31.0202937 C10.8748978,33.5143904 13.2137146,34.7420409 14.9124006,34.4520016 C17.5306649,34.0028729 18.3665184,31.6564324 18.3409331,30.2759124 C18.2642767,26.012603 13.6729562,22.867934 9.38169073,17.4033295 L9.38169073,17.4033295 Z" id="path7088-9-3"></path>
<path d="M197.333741,228.590287 C193.042376,223.125682 188.450756,219.981013 188.374498,215.717704 C188.348614,214.337184 189.184766,211.990743 191.803031,211.541614 C193.501717,211.251575 195.840434,212.479226 195.889315,214.973322 C195.879359,215.469879 196.478076,215.45697 196.472501,214.776574 C196.392858,212.809247 195.695085,210.518747 194.522939,208.65426 L200.144542,208.65426 C198.972396,210.518747 198.274922,212.809247 198.19498,214.776574 C198.185025,215.45697 198.785633,215.469879 198.778166,214.973322 C198.826948,212.479226 201.165764,211.251575 202.86445,211.541614 C205.482715,211.990743 206.318568,214.337184 206.292983,215.717704 C206.216327,219.981013 201.625006,223.125682 197.333741,228.590287 L197.333741,228.590287 Z" id="path7092-7-0"></path>
<path d="M154.892772,0.18019726 C145.707941,13.2952321 135.880291,20.8424636 135.717023,31.0743901 C135.662268,34.3876581 137.451349,40.0191072 143.055231,41.0970083 C146.690935,41.7931046 151.696598,38.8467492 151.80113,32.8609173 C151.785201,31.6691915 153.061381,31.7001621 153.049434,33.333122 C152.878202,38.0546909 151.385493,43.5518908 148.876738,48.0266616 L160.908807,48.0266616 C158.400052,43.5518908 156.907342,38.0546909 156.73611,33.333122 C156.724163,31.7001621 158.000343,31.6691915 157.984415,32.8609173 C158.088946,38.8467492 163.094609,41.7931046 166.730313,41.0970083 C172.334195,40.0191072 174.123276,34.3876581 174.068521,31.0743901 C173.905253,20.8424636 164.077603,13.2952321 154.892772,0.18019726 L154.892772,0.18019726 Z" id="path7094-3-5"></path>
<path d="M103.357367,49.6267969 C94.172536,62.7418317 84.3448861,70.2890632 84.1816179,80.5209897 C84.1268634,83.8342577 85.9159442,89.4657068 91.5198262,90.5436079 C95.15553,91.2397042 100.161193,88.2933488 100.265725,82.3075169 C100.249796,81.1157911 101.525976,81.1467617 101.51403,82.7797216 C101.342797,87.5012905 99.8500878,92.9984904 97.3413327,97.4732612 L109.373402,97.4732612 C106.864647,92.9984904 105.371937,87.5012905 105.200705,82.7797216 C105.188758,81.1467617 106.464938,81.1157911 106.44901,82.3075169 C106.553541,88.2933488 111.559204,91.2397042 115.194908,90.5436079 C120.79879,89.4657068 122.587871,83.8342577 122.533117,80.5209897 C122.369848,70.2890632 112.542198,62.7418317 103.357367,49.6267969 L103.357367,49.6267969 Z" id="path7098-7-3"></path>
<path d="M51.8219624,99.0735061 C42.6371312,112.188541 32.8094813,119.735772 32.6462131,129.967699 C32.5914585,133.280967 34.3805394,138.912416 39.9844213,139.990317 C43.6201251,140.686413 48.6257884,137.740058 48.7303199,131.754226 C48.7143913,130.5625 49.9905711,130.593471 49.9786247,132.226431 C49.8073922,136.948 48.3146829,142.4452 45.8059278,146.91997 L57.8379969,146.91997 C55.3292418,142.4452 53.8365325,136.948 53.6653,132.226431 C53.6533536,130.593471 54.9295334,130.5625 54.9136048,131.754226 C55.0181363,137.740058 60.0237996,140.686413 63.6595034,139.990317 C69.2633853,138.912416 71.0524662,133.280967 70.9977116,129.967699 C70.8344434,119.735772 61.0067935,112.188541 51.8219624,99.0735061 L51.8219624,99.0735061 Z" id="path7105-0-7"></path>
<path d="M51.8219624,245.813289 C42.6371312,232.698254 32.8094813,225.151023 32.6462131,214.919096 C32.5914585,211.605828 34.3805394,205.974379 39.9844213,204.896478 C43.6201251,204.200382 48.6257884,207.146737 48.7303199,213.132569 C48.7143913,214.324295 49.9905711,214.293324 49.9786247,212.660364 C49.8073922,207.938796 48.3146829,202.441596 45.8059278,197.966825 L57.8379969,197.966825 C55.3292418,202.441596 53.8365325,207.938796 53.6653,212.660364 C53.6533536,214.293324 54.9295334,214.324295 54.9136048,213.132569 C55.0181363,207.146737 60.0237996,204.200382 63.6595034,204.896478 C69.2633853,205.974379 71.0524662,211.605828 70.9977116,214.919096 C70.8344434,225.151023 61.0067935,232.698254 51.8219624,245.813289 L51.8219624,245.813289 Z" id="path7107-6-3"></path>
<path d="M154.892772,245.813289 C145.707941,232.698254 135.880291,225.151023 135.717023,214.919096 C135.662268,211.605828 137.451349,205.974379 143.055231,204.896478 C146.690935,204.200382 151.696598,207.146737 151.80113,213.132569 C151.785201,214.324295 153.061381,214.293324 153.049434,212.660364 C152.878202,207.938796 151.385493,202.441596 148.876738,197.966825 L160.908807,197.966825 C158.400052,202.441596 156.907342,207.938796 156.73611,212.660364 C156.724163,214.293324 158.000343,214.324295 157.984415,213.132569 C158.088946,207.146737 163.094609,204.200382 166.730313,204.896478 C172.334195,205.974379 174.123276,211.605828 174.068521,214.919096 C173.905253,225.151023 164.077603,232.698254 154.892772,245.813289 L154.892772,245.813289 Z" id="path7109-5-0"></path>
<path d="M154.892772,99.0735061 C145.707941,112.188541 135.880291,119.735772 135.717023,129.967699 C135.662268,133.280967 137.451349,138.912416 143.055231,139.990317 C146.690935,140.686413 151.696598,137.740058 151.80113,131.754226 C151.785201,130.5625 153.061381,130.593471 153.049434,132.226431 C152.878202,136.948 151.385493,142.4452 148.876738,146.91997 L160.908807,146.91997 C158.400052,142.4452 156.907342,136.948 156.73611,132.226431 C156.724163,130.593471 158.000343,130.5625 157.984415,131.754226 C158.088946,137.740058 163.094609,140.686413 166.730313,139.990317 C172.334195,138.912416 174.123276,133.280967 174.068521,129.967699 C173.905253,119.735772 164.077603,112.188541 154.892772,99.0735061 L154.892772,99.0735061 Z" id="path7119-1-9"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.7 KiB

23
web/shuffle/faces/0_8.svg Normal file
View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(10.000000, 26.000000)" fill="#000000">
<g id="8" transform="translate(0.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M51.9269916,0.18019726 C42.7421604,13.2952321 32.9145105,20.8424636 32.7512423,31.0743901 C32.6964877,34.3876581 34.4855686,40.0191072 40.0894505,41.0970083 C43.7251544,41.7931046 48.7308177,38.8467492 48.8353491,32.8609173 C48.8194205,31.6691915 50.0956004,31.7001621 50.0836539,33.333122 C49.9124214,38.0546909 48.4197121,43.5518908 45.910957,48.0266616 L57.9430261,48.0266616 C55.434271,43.5518908 53.9415618,38.0546909 53.7703293,33.333122 C53.7583828,31.7001621 55.0345626,31.6691915 55.018634,32.8609173 C55.1231655,38.8467492 60.1288288,41.7931046 63.7645326,41.0970083 C69.3684146,40.0191072 71.1574954,34.3876581 71.1027409,31.0743901 C70.9394727,20.8424636 61.1118228,13.2952321 51.9269916,0.18019726 L51.9269916,0.18019726 Z" id="path7155-4-0"></path>
<path d="M9.48671996,17.4033295 C5.19535497,22.867934 0.60373581,26.012603 0.52747762,30.2759124 C0.501593638,31.6564324 1.33774579,34.0028729 3.95601004,34.4520016 C5.65469609,34.7420409 7.99341335,33.5143904 8.04229425,31.0202937 C8.03233887,30.5237371 8.63105527,30.5366457 8.62548026,31.2170424 C8.54583724,33.1843694 7.84806484,35.4748693 6.6759187,37.3393563 L12.2975212,37.3393563 C11.1253751,35.4748693 10.4279013,33.1843694 10.3479597,31.2170424 C10.3380043,30.5366457 10.9386122,30.5237371 10.9311457,31.0202937 C10.979927,33.5143904 13.3187438,34.7420409 15.0174299,34.4520016 C17.6356941,34.0028729 18.4715476,31.6564324 18.4459623,30.2759124 C18.3693059,26.012603 13.7779854,22.867934 9.48671996,17.4033295 L9.48671996,17.4033295 Z" id="path7157-2-9"></path>
<path d="M197.43877,228.590287 C193.147405,223.125682 188.555786,219.981013 188.479527,215.717704 C188.453643,214.337184 189.289796,211.990743 191.90806,211.541614 C193.606746,211.251575 195.945463,212.479226 195.994344,214.973322 C195.984389,215.469879 196.583105,215.45697 196.57753,214.776574 C196.497887,212.809247 195.800115,210.518747 194.627969,208.65426 L200.249571,208.65426 C199.077425,210.518747 198.379951,212.809247 198.30001,214.776574 C198.290054,215.45697 198.890662,215.469879 198.883196,214.973322 C198.931977,212.479226 201.270794,211.251575 202.96948,211.541614 C205.587744,211.990743 206.423597,214.337184 206.398012,215.717704 C206.321356,219.981013 201.730035,223.125682 197.43877,228.590287 L197.43877,228.590287 Z" id="path7162-7-0"></path>
<path d="M154.997801,0.18019726 C145.81297,13.2952321 135.98532,20.8424636 135.822052,31.0743901 C135.767297,34.3876581 137.556378,40.0191072 143.16026,41.0970083 C146.795964,41.7931046 151.801627,38.8467492 151.906159,32.8609173 C151.89023,31.6691915 153.16641,31.7001621 153.154464,33.333122 C152.983231,38.0546909 151.490522,43.5518908 148.981767,48.0266616 L161.013836,48.0266616 C158.505081,43.5518908 157.012371,38.0546909 156.841139,33.333122 C156.829193,31.7001621 158.105372,31.6691915 158.089444,32.8609173 C158.193975,38.8467492 163.199639,41.7931046 166.835342,41.0970083 C172.439224,40.0191072 174.228305,34.3876581 174.173551,31.0743901 C174.010282,20.8424636 164.182632,13.2952321 154.997801,0.18019726 L154.997801,0.18019726 Z" id="path7164-8-3"></path>
<path d="M103.462396,49.6267969 C94.2775653,62.7418317 84.4499153,70.2890632 84.2866472,80.5209897 C84.2318926,83.8342577 86.0209735,89.4657068 91.6248554,90.5436079 C95.2605592,91.2397042 100.266223,88.2933488 100.370754,82.3075169 C100.354825,81.1157911 101.631005,81.1467617 101.619059,82.7797216 C101.447826,87.5012905 99.955117,92.9984904 97.4463619,97.4732612 L109.478431,97.4732612 C106.969676,92.9984904 105.476967,87.5012905 105.305734,82.7797216 C105.293788,81.1467617 106.569968,81.1157911 106.554039,82.3075169 C106.65857,88.2933488 111.664234,91.2397042 115.299937,90.5436079 C120.903819,89.4657068 122.6929,83.8342577 122.638146,80.5209897 C122.474878,70.2890632 112.647228,62.7418317 103.462396,49.6267969 L103.462396,49.6267969 Z" id="path7168-3-2"></path>
<path d="M51.9269916,99.0735061 C42.7421604,112.188541 32.9145105,119.735772 32.7512423,129.967699 C32.6964877,133.280967 34.4855686,138.912416 40.0894505,139.990317 C43.7251544,140.686413 48.7308177,137.740058 48.8353491,131.754226 C48.8194205,130.5625 50.0956004,130.593471 50.0836539,132.226431 C49.9124214,136.948 48.4197121,142.4452 45.910957,146.91997 L57.9430261,146.91997 C55.434271,142.4452 53.9415618,136.948 53.7703293,132.226431 C53.7583828,130.593471 55.0345626,130.5625 55.018634,131.754226 C55.1231655,137.740058 60.1288288,140.686413 63.7645326,139.990317 C69.3684146,138.912416 71.1574954,133.280967 71.1027409,129.967699 C70.9394727,119.735772 61.1118228,112.188541 51.9269916,99.0735061 L51.9269916,99.0735061 Z" id="path7174-5-0"></path>
<path d="M51.9269916,245.813289 C42.7421604,232.698254 32.9145105,225.151023 32.7512423,214.919096 C32.6964877,211.605828 34.4855686,205.974379 40.0894505,204.896478 C43.7251544,204.200382 48.7308177,207.146737 48.8353491,213.132569 C48.8194205,214.324295 50.0956004,214.293324 50.0836539,212.660364 C49.9124214,207.938796 48.4197121,202.441596 45.910957,197.966825 L57.9430261,197.966825 C55.434271,202.441596 53.9415618,207.938796 53.7703293,212.660364 C53.7583828,214.293324 55.0345626,214.324295 55.018634,213.132569 C55.1231655,207.146737 60.1288288,204.200382 63.7645326,204.896478 C69.3684146,205.974379 71.1574954,211.605828 71.1027409,214.919096 C70.9394727,225.151023 61.1118228,232.698254 51.9269916,245.813289 L51.9269916,245.813289 Z" id="path7176-7-0"></path>
<path d="M154.997801,245.813289 C145.81297,232.698254 135.98532,225.151023 135.822052,214.919096 C135.767297,211.605828 137.556378,205.974379 143.16026,204.896478 C146.795964,204.200382 151.801627,207.146737 151.906159,213.132569 C151.89023,214.324295 153.16641,214.293324 153.154464,212.660364 C152.983231,207.938796 151.490522,202.441596 148.981767,197.966825 L161.013836,197.966825 C158.505081,202.441596 157.012371,207.938796 156.841139,212.660364 C156.829193,214.293324 158.105372,214.324295 158.089444,213.132569 C158.193975,207.146737 163.199639,204.200382 166.835342,204.896478 C172.439224,205.974379 174.228305,211.605828 174.173551,214.919096 C174.010282,225.151023 164.182632,232.698254 154.997801,245.813289 L154.997801,245.813289 Z" id="path7178-9-4"></path>
<path d="M103.462396,196.36669 C94.2775653,183.251655 84.4499153,175.704423 84.2866472,165.472497 C84.2318926,162.159229 86.0209735,156.52778 91.6248554,155.449879 C95.2605592,154.753782 100.266223,157.700138 100.370754,163.68597 C100.354825,164.877695 101.631005,164.846725 101.619059,163.213765 C101.447826,158.492196 99.955117,152.994996 97.4463619,148.520215 L109.478431,148.520215 C106.969676,152.994996 105.476967,158.492196 105.305734,163.213765 C105.293788,164.846725 106.569968,164.877695 106.554039,163.68597 C106.65857,157.700138 111.664234,154.753782 115.299937,155.449879 C120.903819,156.52778 122.6929,162.159229 122.638146,165.472497 C122.474878,175.704423 112.647228,183.251655 103.462396,196.36669 L103.462396,196.36669 Z" id="path7180-5-1"></path>
<path d="M154.997801,99.0735061 C145.81297,112.188541 135.98532,119.735772 135.822052,129.967699 C135.767297,133.280967 137.556378,138.912416 143.16026,139.990317 C146.795964,140.686413 151.801627,137.740058 151.906159,131.754226 C151.89023,130.5625 153.16641,130.593471 153.154464,132.226431 C152.983231,136.948 151.490522,142.4452 148.981767,146.91997 L161.013836,146.91997 C158.505081,142.4452 157.012371,136.948 156.841139,132.226431 C156.829193,130.593471 158.105372,130.5625 158.089444,131.754226 C158.193975,137.740058 163.199639,140.686413 166.835342,139.990317 C172.439224,138.912416 174.228305,133.280967 174.173551,129.967699 C174.010282,119.735772 164.182632,112.188541 154.997801,99.0735061 L154.997801,99.0735061 Z" id="path7189-7-7"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

24
web/shuffle/faces/0_9.svg Normal file
View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Spades" sketch:type="MSLayerGroup" transform="translate(10.000000, 26.000000)" fill="#000000">
<g id="9" transform="translate(0.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M52.0321204,0.18019726 C42.8472892,13.2952321 33.0196393,20.8424636 32.8563711,31.0743901 C32.8016165,34.3876581 34.5906974,40.0191072 40.1945793,41.0970083 C43.8302831,41.7931046 48.8359465,38.8467492 48.9404779,32.8609173 C48.9245493,31.6691915 50.2007291,31.7001621 50.1887827,33.333122 C50.0175502,38.0546909 48.5248409,43.5518908 46.0160858,48.0266616 L58.0481549,48.0266616 C55.5393998,43.5518908 54.0466905,38.0546909 53.875458,33.333122 C53.8635116,31.7001621 55.1396914,31.6691915 55.1237628,32.8609173 C55.2282943,38.8467492 60.2339576,41.7931046 63.8696614,41.0970083 C69.4735434,40.0191072 71.2626242,34.3876581 71.2078697,31.0743901 C71.0446015,20.8424636 61.2169516,13.2952321 52.0321204,0.18019726 L52.0321204,0.18019726 Z" id="path7225-5-2"></path>
<path d="M9.59184874,17.4033295 C5.30048376,22.867934 0.708864596,26.012603 0.632606405,30.2759124 C0.606722424,31.6564324 1.44287457,34.0028729 4.06113883,34.4520016 C5.75982487,34.7420409 8.09854213,33.5143904 8.14742304,31.0202937 C8.13746766,30.5237371 8.73618405,30.5366457 8.73060904,31.2170424 C8.65096602,33.1843694 7.95319362,35.4748693 6.78104749,37.3393563 L12.40265,37.3393563 C11.2305039,35.4748693 10.5330301,33.1843694 10.4530884,31.2170424 C10.4431331,30.5366457 11.043741,30.5237371 11.0362744,31.0202937 C11.0850558,33.5143904 13.4238726,34.7420409 15.1225587,34.4520016 C17.7408229,34.0028729 18.5766764,31.6564324 18.5510911,30.2759124 C18.4744347,26.012603 13.8831142,22.867934 9.59184874,17.4033295 L9.59184874,17.4033295 Z" id="path7227-2-8"></path>
<path d="M52.0321204,179.88441 C42.8472892,166.769375 33.0196393,159.222144 32.8563711,148.990217 C32.8016165,145.676949 34.5906974,140.0455 40.1945793,138.967599 C43.8302831,138.271503 48.8359465,141.217858 48.9404779,147.20369 C48.9245493,148.395416 50.2007291,148.364445 50.1887827,146.731485 C50.0175502,142.009916 48.5248409,136.512717 46.0160858,132.037946 L58.0481549,132.037946 C55.5393998,136.512717 54.0466905,142.009916 53.875458,146.731485 C53.8635116,148.364445 55.1396914,148.395416 55.1237628,147.20369 C55.2282943,141.217858 60.2339576,138.271503 63.8696614,138.967599 C69.4735434,140.0455 71.2626242,145.676949 71.2078697,148.990217 C71.0446015,159.222144 61.2169516,166.769375 52.0321204,179.88441 L52.0321204,179.88441 Z" id="path7229-4-8"></path>
<path d="M197.543899,228.590287 C193.252534,223.125682 188.660914,219.981013 188.584656,215.717704 C188.558772,214.337184 189.394924,211.990743 192.013189,211.541614 C193.711875,211.251575 196.050592,212.479226 196.099473,214.973322 C196.089518,215.469879 196.688234,215.45697 196.682659,214.776574 C196.603016,212.809247 195.905243,210.518747 194.733097,208.65426 L200.3547,208.65426 C199.182554,210.518747 198.48508,212.809247 198.405138,214.776574 C198.395183,215.45697 198.995791,215.469879 198.988324,214.973322 C199.037106,212.479226 201.375922,211.251575 203.074609,211.541614 C205.692873,211.990743 206.528726,214.337184 206.503141,215.717704 C206.426485,219.981013 201.835164,223.125682 197.543899,228.590287 L197.543899,228.590287 Z" id="path7231-7-8"></path>
<path d="M155.10293,0.18019726 C145.918099,13.2952321 136.090449,20.8424636 135.927181,31.0743901 C135.872426,34.3876581 137.661507,40.0191072 143.265389,41.0970083 C146.901093,41.7931046 151.906756,38.8467492 152.011288,32.8609173 C151.995359,31.6691915 153.271539,31.7001621 153.259592,33.333122 C153.08836,38.0546909 151.595651,43.5518908 149.086896,48.0266616 L161.118965,48.0266616 C158.61021,43.5518908 157.1175,38.0546909 156.946268,33.333122 C156.934321,31.7001621 158.210501,31.6691915 158.194573,32.8609173 C158.299104,38.8467492 163.304767,41.7931046 166.940471,41.0970083 C172.544353,40.0191072 174.333434,34.3876581 174.278679,31.0743901 C174.115411,20.8424636 164.287761,13.2952321 155.10293,0.18019726 L155.10293,0.18019726 Z" id="path7233-8-9"></path>
<path d="M52.0321204,66.1090665 C42.8472892,79.2241014 33.0196393,86.7713329 32.8563711,97.0032594 C32.8016165,100.316527 34.5906974,105.947976 40.1945793,107.025878 C43.8302831,107.721974 48.8359465,104.775618 48.9404779,98.7897866 C48.9245493,97.5980607 50.2007291,97.6290313 50.1887827,99.2619913 C50.0175502,103.98356 48.5248409,109.48076 46.0160858,113.955531 L58.0481549,113.955531 C55.5393998,109.48076 54.0466905,103.98356 53.875458,99.2619913 C53.8635116,97.6290313 55.1396914,97.5980607 55.1237628,98.7897866 C55.2282943,104.775618 60.2339576,107.721974 63.8696614,107.025878 C69.4735434,105.947976 71.2626242,100.316527 71.2078697,97.0032594 C71.0446015,86.7713329 61.2169516,79.2241014 52.0321204,66.1090665 L52.0321204,66.1090665 Z" id="path7235-9-4"></path>
<path d="M155.10293,66.1090665 C145.918099,79.2241014 136.090449,86.7713329 135.927181,97.0032594 C135.872426,100.316527 137.661507,105.947976 143.265389,107.025878 C146.901093,107.721974 151.906756,104.775618 152.011288,98.7897866 C151.995359,97.5980607 153.271539,97.6290313 153.259592,99.2619913 C153.08836,103.98356 151.595651,109.48076 149.086896,113.955531 L161.118965,113.955531 C158.61021,109.48076 157.1175,103.98356 156.946268,99.2619913 C156.934321,97.6290313 158.210501,97.5980607 158.194573,98.7897866 C158.299104,104.775618 163.304767,107.721974 166.940471,107.025878 C172.544353,105.947976 174.333434,100.316527 174.278679,97.0032594 C174.115411,86.7713329 164.287761,79.2241014 155.10293,66.1090665 L155.10293,66.1090665 Z" id="path7241-7-2"></path>
<path d="M52.0321204,245.813289 C42.8472892,232.698254 33.0196393,225.151023 32.8563711,214.919096 C32.8016165,211.605828 34.5906974,205.974379 40.1945793,204.896478 C43.8302831,204.200382 48.8359465,207.146737 48.9404779,213.132569 C48.9245493,214.324295 50.2007291,214.293324 50.1887827,212.660364 C50.0175502,207.938796 48.5248409,202.441596 46.0160858,197.966825 L58.0481549,197.966825 C55.5393998,202.441596 54.0466905,207.938796 53.875458,212.660364 C53.8635116,214.293324 55.1396914,214.324295 55.1237628,213.132569 C55.2282943,207.146737 60.2339576,204.200382 63.8696614,204.896478 C69.4735434,205.974379 71.2626242,211.605828 71.2078697,214.919096 C71.0446015,225.151023 61.2169516,232.698254 52.0321204,245.813289 L52.0321204,245.813289 Z" id="path7245-1-6"></path>
<path d="M155.10293,245.813289 C145.918099,232.698254 136.090449,225.151023 135.927181,214.919096 C135.872426,211.605828 137.661507,205.974379 143.265389,204.896478 C146.901093,204.200382 151.906756,207.146737 152.011288,213.132569 C151.995359,214.324295 153.271539,214.293324 153.259592,212.660364 C153.08836,207.938796 151.595651,202.441596 149.086896,197.966825 L161.118965,197.966825 C158.61021,202.441596 157.1175,207.938796 156.946268,212.660364 C156.934321,214.293324 158.210501,214.324295 158.194573,213.132569 C158.299104,207.146737 163.304767,204.200382 166.940471,204.896478 C172.544353,205.974379 174.333434,211.605828 174.278679,214.919096 C174.115411,225.151023 164.287761,232.698254 155.10293,245.813289 L155.10293,245.813289 Z" id="path7247-0-6"></path>
<path d="M155.10293,179.88441 C145.918099,166.769385 136.090449,159.222154 135.927181,148.990227 C135.872426,145.676959 137.661507,140.04551 143.265389,138.967609 C146.901093,138.271513 151.906756,141.217868 152.011288,147.2037 C151.995359,148.395426 153.271539,148.364455 153.259592,146.731495 C153.08836,142.009926 151.595651,136.512717 149.086896,132.037946 L161.118965,132.037946 C158.61021,136.512717 157.1175,142.009926 156.946268,146.731495 C156.934321,148.364455 158.210501,148.395426 158.194573,147.2037 C158.299104,141.217868 163.304767,138.271513 166.940471,138.967609 C172.544353,140.04551 174.333434,145.676959 174.278679,148.990227 C174.115411,159.222154 164.287761,166.769385 155.10293,179.88441 L155.10293,179.88441 Z" id="path7251-3-6"></path>
<path d="M103.567525,99.0735061 C94.382694,112.188541 84.5550441,119.735772 84.3917759,129.967699 C84.3370214,133.280967 86.1261022,138.912416 91.7299842,139.990317 C95.365688,140.686413 100.371351,137.740058 100.475883,131.754226 C100.459954,130.5625 101.736134,130.593471 101.724188,132.226431 C101.552955,136.948 100.060246,142.4452 97.5514907,146.91997 L109.58356,146.91997 C107.074805,142.4452 105.582095,136.948 105.410863,132.226431 C105.398916,130.593471 106.675096,130.5625 106.659168,131.754226 C106.763699,137.740058 111.769362,140.686413 115.405066,139.990317 C121.008948,138.912416 122.798029,133.280967 122.743275,129.967699 C122.580006,119.735772 112.752356,112.188541 103.567525,99.0735061 L103.567525,99.0735061 Z" id="path7255-7-8"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

16
web/shuffle/faces/1_1.svg Normal file
View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="A" transform="translate(0.000000, 27.000000)" sketch:type="MSShapeGroup">
<path d="M9.52010605,20.6854661 C9.52010605,20.6854661 7.30533324,17.5058892 4.31772647,13.7675652 C2.31898535,11.2659028 0.721147281,8.55706525 0.572513496,6.22382245 C0.402176989,3.55849528 2.01504768,0.884545786 4.93505943,0.754941676 C7.85337677,0.625427277 9.03786757,2.81002706 9.52010605,4.61115737 C10.0023445,2.81002706 11.1869349,0.625427277 14.1051547,0.754941676 C17.0251664,0.884545786 18.6381367,3.55849528 18.4677006,6.22382245 C18.3191664,8.55706525 16.7212287,11.2659028 14.7225872,13.7675652 C11.7348789,17.5058892 9.52010605,20.6854661 9.52010605,20.6854661 L9.52010605,20.6854661 Z" id="path9698-0-0"></path>
<path d="M197.472152,192.000371 C197.472152,192.000371 195.257379,195.179948 192.26977,198.918272 C190.271029,201.419934 188.673191,204.128771 188.524557,206.462014 C188.354221,209.127341 189.967092,211.801291 192.887103,211.930895 C195.805423,212.060409 196.989913,209.87581 197.472152,208.074679 C197.95439,209.87581 199.138981,212.060409 202.057201,211.930895 C204.977208,211.801291 206.590179,209.127341 206.419742,206.462014 C206.271208,204.128771 204.673271,201.419934 202.674633,198.918272 C199.686925,195.179948 197.472152,192.000371 197.472152,192.000371 L197.472152,192.000371 Z" id="path9700-3-2"></path>
<path d="M104.495719,130.266081 C104.495719,130.266081 99.8502411,122.635098 93.5837292,113.663099 C89.3915218,107.659105 86.0399444,101.157897 85.7283411,95.5581065 C85.3709431,89.1613233 88.7539794,82.7438465 94.8787247,82.4328146 C100.999788,82.1219621 103.484352,87.3650175 104.495719,91.6877263 C105.507185,87.3650175 107.991749,82.1219621 114.112813,82.4328146 C120.23756,82.7438465 123.620596,89.1613233 123.263198,95.5581065 C122.951595,101.157897 119.600017,107.659105 115.407808,113.663099 C109.141296,122.635098 104.495719,130.266081 104.495719,130.266081 L104.495719,130.266081 Z" id="path9714-6-6"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="10" transform="translate(1.000000, 10.000000)" sketch:type="MSShapeGroup">
<path d="M51.5775317,114.301642 C51.5775317,114.301642 46.9320539,106.670659 40.6655421,97.6986593 C36.4733327,91.6946657 33.1217553,85.1934576 32.810152,79.5936669 C32.4527539,73.1968827 35.8357903,66.7794059 41.9605376,66.468374 C48.0816014,66.1575215 50.5661649,71.4005769 51.5775317,75.7232857 C52.588998,71.4005769 55.0735616,66.1575215 61.1946254,66.468374 C67.3193727,66.7794059 70.702409,73.1968827 70.345011,79.5936669 C70.0334076,85.1934576 66.6818303,91.6946657 62.4896209,97.6986593 C56.223109,106.670659 51.5775317,114.301642 51.5775317,114.301642 L51.5775317,114.301642 Z" id="path10308-5-1"></path>
<path d="M9.13731183,37.6854661 C9.13731183,37.6854661 6.92253902,34.5058892 3.93493226,30.7675652 C1.93619114,28.2659028 0.338353064,25.5570653 0.18971928,23.2238225 C0.0193827722,20.5584953 1.63225346,17.8845458 4.55226521,17.7549417 C7.47058255,17.6254273 8.65507335,19.8100271 9.13731183,21.6111574 C9.61955032,19.8100271 10.8041407,17.6254273 13.7223604,17.7549417 C16.6423722,17.8845458 18.2553424,20.5584953 18.0849064,23.2238225 C17.9363721,25.5570653 16.3384345,28.2659028 14.339793,30.7675652 C11.3520846,34.5058892 9.13731183,37.6854661 9.13731183,37.6854661 L9.13731183,37.6854661 Z" id="path10310-7-8"></path>
<path d="M197.089358,209.000371 C197.089358,209.000371 194.874585,212.179948 191.886976,215.918272 C189.888235,218.419934 188.290397,221.128771 188.141763,223.462014 C187.971427,226.127341 189.584297,228.801291 192.504309,228.930895 C195.422628,229.060409 196.607119,226.87581 197.089358,225.074679 C197.571596,226.87581 198.756187,229.060409 201.674406,228.930895 C204.594414,228.801291 206.207384,226.127341 206.036948,223.462014 C205.888414,221.128771 204.290476,218.419934 202.291839,215.918272 C199.304131,212.179948 197.089358,209.000371 197.089358,209.000371 L197.089358,209.000371 Z" id="path10312-3-5"></path>
<path d="M103.11293,90.8768091 C103.11293,90.8768091 98.4674518,83.2458254 92.20094,74.2738269 C88.0087305,68.2698332 84.6571532,61.7686251 84.3455499,56.1688344 C83.9881518,49.7720512 87.3711882,43.3545744 93.4959355,43.0435425 C99.6169993,42.73269 102.101563,47.9757454 103.11293,52.2984542 C104.124396,47.9757454 106.608959,42.73269 112.730023,43.0435425 C118.854771,43.3545744 122.237807,49.7720512 121.880409,56.1688344 C121.568806,61.7686251 118.217228,68.2698332 114.025019,74.2738269 C107.758507,83.2458254 103.11293,90.8768091 103.11293,90.8768091 L103.11293,90.8768091 Z" id="path10314-8-8"></path>
<path d="M51.5775317,48.3727714 C51.5775317,48.3727714 46.9320539,40.7417886 40.6655421,31.7697891 C36.4733327,25.7657955 33.1217553,19.2645873 32.810152,13.6647966 C32.4527539,7.26801343 35.8357903,0.850536631 41.9605376,0.539504709 C48.0816014,0.228652211 50.5661649,5.47170764 51.5775317,9.7944164 C52.588998,5.47170764 55.0735616,0.228652211 61.1946254,0.539504709 C67.3193727,0.850536631 70.702409,7.26801343 70.345011,13.6647966 C70.0334076,19.2645873 66.6818303,25.7657955 62.4896209,31.7697891 C56.223109,40.7417886 51.5775317,48.3727714 51.5775317,48.3727714 L51.5775317,48.3727714 Z" id="path10318-3-7"></path>
<path d="M154.648339,114.301642 C154.648339,114.301642 150.002862,106.670659 143.73635,97.6986593 C139.54414,91.6946657 136.192563,85.1934576 135.88096,79.5936669 C135.523562,73.1968827 138.906598,66.7794059 145.031345,66.468374 C151.152409,66.1575215 153.636973,71.4005769 154.648339,75.7232857 C155.659806,71.4005769 158.144369,66.1575215 164.265433,66.468374 C170.39018,66.7794059 173.773217,73.1968827 173.415819,79.5936669 C173.104215,85.1934576 169.752638,91.6946657 165.560429,97.6986593 C159.293917,106.670659 154.648339,114.301642 154.648339,114.301642 L154.648339,114.301642 Z" id="path10322-4-6"></path>
<path d="M154.648339,48.3727714 C154.648339,48.3727714 150.002862,40.7417886 143.73635,31.7697891 C139.54414,25.7657955 136.192563,19.2645873 135.88096,13.6647966 C135.523562,7.26801343 138.906598,0.850536631 145.031345,0.539504709 C151.152409,0.228652211 153.636973,5.47170764 154.648339,9.7944164 C155.659806,5.47170764 158.144369,0.228652211 164.265433,0.539504709 C170.39018,0.850536631 173.773217,7.26801343 173.415819,13.6647966 C173.104215,19.2645873 169.752638,25.7657955 165.560429,31.7697891 C159.293917,40.7417886 154.648339,48.3727714 154.648339,48.3727714 L154.648339,48.3727714 Z" id="path10324-9-8"></path>
<path d="M103.112931,155.808887 C103.112931,155.808887 98.4674528,163.43987 92.200941,172.41188 C88.0087315,178.415873 84.6571542,184.917081 84.3455509,190.516862 C83.9881528,196.913645 87.3711892,203.331122 93.4959365,203.642154 C99.6170003,203.953006 102.101564,198.709951 103.112931,194.387242 C104.124397,198.709951 106.60896,203.953006 112.730024,203.642154 C118.854772,203.331122 122.237808,196.913645 121.88041,190.516862 C121.568807,184.917081 118.217229,178.415873 114.02502,172.41188 C107.758508,163.43987 103.112931,155.808887 103.112931,155.808887 L103.112931,155.808887 Z" id="path10332-8-6"></path>
<path d="M154.648339,132.384057 C154.648339,132.384057 150.002862,140.015039 143.73635,148.987039 C139.54414,154.991032 136.192563,161.492241 135.88096,167.092031 C135.523562,173.488815 138.906598,179.906292 145.031345,180.217324 C151.152409,180.528176 153.636973,175.285121 154.648339,170.962412 C155.659806,175.285121 158.144369,180.528176 164.265433,180.217324 C170.39018,179.906292 173.773217,173.488815 173.415819,167.092031 C173.104215,161.492241 169.752638,154.991032 165.560429,148.987039 C159.293917,140.015039 154.648339,132.384057 154.648339,132.384057 L154.648339,132.384057 Z" id="path10334-5-0"></path>
<path d="M51.5775317,132.384057 C51.5775317,132.384057 46.9320539,140.015039 40.6655421,148.987039 C36.4733327,154.991032 33.1217553,161.492241 32.810152,167.092031 C32.4527539,173.488815 35.8357903,179.906292 41.9605376,180.217324 C48.0816014,180.528176 50.5661649,175.285121 51.5775317,170.962412 C52.588998,175.285121 55.0735616,180.528176 61.1946254,180.217324 C67.3193727,179.906292 70.702409,173.488815 70.345011,167.092031 C70.0334076,161.492241 66.6818303,154.991032 62.4896209,148.987039 C56.223109,140.015039 51.5775317,132.384057 51.5775317,132.384057 L51.5775317,132.384057 Z" id="path10336-3-5"></path>
<path d="M154.648339,198.312936 C154.648339,198.312936 150.002862,205.943919 143.73635,214.915918 C139.54414,220.919912 136.192563,227.42112 135.88096,233.02091 C135.523562,239.417694 138.906598,245.83517 145.031345,246.146202 C151.152409,246.457055 153.636973,241.213999 154.648339,236.891291 C155.659806,241.213999 158.144369,246.457055 164.265433,246.146202 C170.39018,245.83517 173.773217,239.417694 173.415819,233.02091 C173.104215,227.42112 169.752638,220.919912 165.560429,214.915918 C159.293917,205.943919 154.648339,198.312936 154.648339,198.312936 L154.648339,198.312936 Z" id="path10338-2-9"></path>
<path d="M51.5775317,198.312936 C51.5775317,198.312936 46.9320539,205.943919 40.6655421,214.915918 C36.4733327,220.919912 33.1217553,227.42112 32.810152,233.02091 C32.4527539,239.417694 35.8357903,245.83517 41.9605376,246.146202 C48.0816014,246.457055 50.5661649,241.213999 51.5775317,236.891291 C52.588998,241.213999 55.0735616,246.457055 61.1946254,246.146202 C67.3193727,245.83517 70.702409,239.417694 70.345011,233.02091 C70.0334076,227.42112 66.6818303,220.919912 62.4896209,214.915918 C56.223109,205.943919 51.5775317,198.312936 51.5775317,198.312936 L51.5775317,198.312936 Z" id="path10340-9-7"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 151 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 146 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 167 KiB

17
web/shuffle/faces/1_2.svg Normal file
View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="2" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M9.36698239,37.6854661 C9.36698239,37.6854661 7.15220958,34.5058892 4.16460281,30.7675652 C2.16586169,28.2659028 0.568023621,25.5570653 0.419389836,23.2238225 C0.249053329,20.5584953 1.86192402,17.8845458 4.78193577,17.7549417 C7.70025311,17.6254273 8.88474391,19.8100271 9.36698239,21.6111574 C9.84922087,19.8100271 11.0338112,17.6254273 13.952031,17.7549417 C16.8720428,17.8845458 18.485013,20.5584953 18.3145769,23.2238225 C18.1660427,25.5570653 16.5681051,28.2659028 14.5694635,30.7675652 C11.5817552,34.5058892 9.36698239,37.6854661 9.36698239,37.6854661 L9.36698239,37.6854661 Z" id="path9766-0-8"></path>
<path d="M197.319028,209.000371 C197.319028,209.000371 195.104255,212.179948 192.116647,215.918272 C190.117906,218.419934 188.520068,221.128771 188.371434,223.462014 C188.201097,226.127341 189.813968,228.801291 192.73398,228.930895 C195.652299,229.060409 196.83679,226.87581 197.319028,225.074679 C197.801267,226.87581 198.985857,229.060409 201.904077,228.930895 C204.824085,228.801291 206.437055,226.127341 206.266619,223.462014 C206.118085,221.128771 204.520147,218.419934 202.521509,215.918272 C199.533801,212.179948 197.319028,209.000371 197.319028,209.000371 L197.319028,209.000371 Z" id="path9768-3-3"></path>
<path d="M103.342605,48.3727714 C103.342605,48.3727714 98.6971274,40.7417886 92.4306155,31.7697891 C88.2384061,25.7657955 84.8868287,19.2645873 84.5752254,13.6647966 C84.2178274,7.26801343 87.6008637,0.850536631 93.725611,0.539504709 C99.8466748,0.228652211 102.331238,5.47170764 103.342605,9.7944164 C104.354072,5.47170764 106.838635,0.228652211 112.959699,0.539504709 C119.084446,0.850536631 122.467482,7.26801343 122.110084,13.6647966 C121.798481,19.2645873 118.446904,25.7657955 114.254694,31.7697891 C107.988182,40.7417886 103.342605,48.3727714 103.342605,48.3727714 L103.342605,48.3727714 Z" id="path9772-1-7"></path>
<path d="M103.342605,198.312936 C103.342605,198.312936 98.6971274,205.943919 92.4306155,214.915918 C88.2384091,220.919912 84.8868317,227.42112 84.5752284,233.02091 C84.2178304,239.417694 87.6008667,245.83517 93.725611,246.146202 C99.8466748,246.457055 102.331238,241.213999 103.342605,236.891291 C104.354072,241.213999 106.838635,246.457055 112.959699,246.146202 C119.084446,245.83517 122.467482,239.417694 122.110084,233.02091 C121.798481,227.42112 118.446904,220.919912 114.254694,214.915918 C107.988182,205.943919 103.342605,198.312936 103.342605,198.312936 L103.342605,198.312936 Z" id="path9786-2-1"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

18
web/shuffle/faces/1_3.svg Normal file
View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="3" transform="translate(1.000000, 10.000000)" sketch:type="MSShapeGroup">
<path d="M9.21386869,37.6854661 C9.21386869,37.6854661 6.99909588,34.5058892 4.01148911,30.7675652 C2.01274799,28.2659028 0.414909916,25.5570653 0.266276132,23.2238225 C0.0959396244,20.5584953 1.70881032,17.8845458 4.62882206,17.7549417 C7.5471394,17.6254273 8.73163021,19.8100271 9.21386869,21.6111574 C9.69610717,19.8100271 10.8806975,17.6254273 13.7989173,17.7549417 C16.718929,17.8845458 18.3318993,20.5584953 18.1614632,23.2238225 C18.012929,25.5570653 16.4149914,28.2659028 14.4163498,30.7675652 C11.4286415,34.5058892 9.21386869,37.6854661 9.21386869,37.6854661 L9.21386869,37.6854661 Z" id="path9834-5-2"></path>
<path d="M197.165915,209.000371 C197.165915,209.000371 194.951142,212.179948 191.963533,215.918272 C189.964792,218.419934 188.366954,221.128771 188.21832,223.462014 C188.047984,226.127341 189.660854,228.801291 192.580866,228.930895 C195.499185,229.060409 196.683676,226.87581 197.165915,225.074679 C197.648153,226.87581 198.832743,229.060409 201.750963,228.930895 C204.670971,228.801291 206.283941,226.127341 206.113505,223.462014 C205.964971,221.128771 204.367033,218.419934 202.368396,215.918272 C199.380687,212.179948 197.165915,209.000371 197.165915,209.000371 L197.165915,209.000371 Z" id="path9836-5-8"></path>
<path d="M103.189491,48.3727714 C103.189491,48.3727714 98.5440137,40.7417886 92.2775018,31.7697891 C88.0852924,25.7657955 84.733715,19.2645873 84.4221117,13.6647966 C84.0647137,7.26801343 87.44775,0.850536631 93.5724973,0.539504709 C99.6935611,0.228652211 102.178125,5.47170764 103.189491,9.7944164 C104.200958,5.47170764 106.685521,0.228652211 112.806585,0.539504709 C118.931332,0.850536631 122.314369,7.26801343 121.956971,13.6647966 C121.645367,19.2645873 118.29379,25.7657955 114.101581,31.7697891 C107.835069,40.7417886 103.189491,48.3727714 103.189491,48.3727714 L103.189491,48.3727714 Z" id="path9840-3-6"></path>
<path d="M103.189481,147.266081 C103.189481,147.266081 98.5440037,139.635098 92.2774918,130.663099 C88.0852844,124.659105 84.7337071,118.157897 84.4221037,112.558107 C84.0647057,106.161323 87.447742,99.7438465 93.5724873,99.4328146 C99.6935511,99.1219621 102.178115,104.365018 103.189481,108.687726 C104.200948,104.365018 106.685511,99.1219621 112.806575,99.4328146 C118.931322,99.7438465 122.314359,106.161323 121.956961,112.558107 C121.645357,118.157897 118.29378,124.659105 114.101571,130.663099 C107.835059,139.635098 103.189481,147.266081 103.189481,147.266081 L103.189481,147.266081 Z" id="path9850-2-3"></path>
<path d="M103.189491,198.312936 C103.189491,198.312936 98.5440137,205.943919 92.2775018,214.915918 C88.0852954,220.919912 84.733718,227.42112 84.4221147,233.02091 C84.0647166,239.417694 87.447753,245.83517 93.5724973,246.146202 C99.6935611,246.457055 102.178125,241.213999 103.189491,236.891291 C104.200958,241.213999 106.685521,246.457055 112.806585,246.146202 C118.931332,245.83517 122.314369,239.417694 121.956971,233.02091 C121.645367,227.42112 118.29379,220.919912 114.101581,214.915918 C107.835069,205.943919 103.189491,198.312936 103.189491,198.312936 L103.189491,198.312936 Z" id="path9854-8-0"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

19
web/shuffle/faces/1_4.svg Normal file
View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="4" transform="translate(1.000000, 10.000000)" sketch:type="MSShapeGroup">
<path d="M9.06065543,37.6854661 C9.06065543,37.6824757 6.84588262,34.5058892 3.85827585,30.7675652 C1.85953473,28.2659028 0.261696658,25.5570653 0.113062874,23.2238225 C-0.0572736338,20.5584953 1.55559706,17.8845458 4.4756088,17.7549417 C7.39392614,17.6254273 8.57841695,19.8100271 9.06065543,21.6111574 C9.54289391,19.8100271 10.7274843,17.6254273 13.645704,17.7549417 C16.5657158,17.8845458 18.178686,20.5584953 18.00825,23.2238225 C17.8597157,25.5570653 16.2617781,28.2659028 14.2631365,30.7675652 C11.2754282,34.5058892 9.06254695,37.6828744 9.06065543,37.6854661 L9.06065543,37.6854661 Z" id="path9902-6-7"></path>
<path d="M197.012701,209.000371 C197.012701,209.003361 194.797928,212.179948 191.81032,215.918272 C189.811579,218.419934 188.213741,221.128771 188.065107,223.462014 C187.89477,226.127341 189.507641,228.801291 192.427653,228.930895 C195.345972,229.060409 196.530463,226.87581 197.012701,225.074679 C197.49494,226.87581 198.67953,229.060409 201.59775,228.930895 C204.517758,228.801291 206.130728,226.127341 205.960292,223.462014 C205.811758,221.128771 204.21382,218.419934 202.215182,215.918272 C199.227474,212.179948 197.014593,209.002962 197.012701,209.000371 L197.012701,209.000371 Z" id="path9904-6-0"></path>
<path d="M51.5008753,48.3727714 C51.5008753,48.3667906 46.8553975,40.7417886 40.5888857,31.7697891 C36.3966762,25.7657955 33.0450989,19.2645873 32.7334956,13.6647966 C32.3760975,7.26801343 35.7591339,0.850536631 41.8838812,0.539504709 C48.004945,0.228652211 50.4895085,5.47170764 51.5008753,9.7944164 C52.5123416,5.47170764 54.9969052,0.228652211 61.117969,0.539504709 C67.2427162,0.850536631 70.6257526,7.26801343 70.2683545,13.6647966 C69.9567512,19.2645873 66.6051739,25.7657955 62.4129645,31.7697891 C56.1464526,40.7417886 51.5048574,48.3665513 51.5008753,48.3727714 L51.5008753,48.3727714 Z" id="path9910-2-6"></path>
<path d="M154.571683,48.3727714 C154.571683,48.3667906 149.926205,40.7417886 143.659693,31.7697891 C139.467484,25.7657955 136.115907,19.2645873 135.804303,13.6647966 C135.446905,7.26801343 138.829942,0.850536631 144.954689,0.539504709 C151.075753,0.228652211 153.560316,5.47170764 154.571683,9.7944164 C155.583149,5.47170764 158.067713,0.228652211 164.188777,0.539504709 C170.313524,0.850536631 173.69656,7.26801343 173.339162,13.6647966 C173.027559,19.2645873 169.675982,25.7657955 165.483772,31.7697891 C159.21726,40.7417886 154.575665,48.3665513 154.571683,48.3727714 L154.571683,48.3727714 Z" id="path9916-8-0"></path>
<path d="M154.571683,198.312936 C154.571683,198.318917 149.926205,205.943919 143.659693,214.915918 C139.467484,220.919912 136.115907,227.42112 135.804303,233.02091 C135.446905,239.417694 138.829942,245.83517 144.954689,246.146202 C151.075753,246.457055 153.560316,241.213999 154.571683,236.891291 C155.583149,241.213999 158.067713,246.457055 164.188777,246.146202 C170.313524,245.83517 173.69656,239.417694 173.339162,233.02091 C173.027559,227.42112 169.675982,220.919912 165.483772,214.915918 C159.21726,205.943919 154.575665,198.319156 154.571683,198.312936 L154.571683,198.312936 Z" id="path9930-7-9"></path>
<path d="M51.5008753,198.312936 C51.5008753,198.318917 46.8553975,205.943919 40.5888857,214.915918 C36.3966762,220.919912 33.0450989,227.42112 32.7334956,233.02091 C32.3760975,239.417694 35.7591339,245.83517 41.8838812,246.146202 C48.004945,246.457055 50.4895085,241.213999 51.5008753,236.891291 C52.5123416,241.213999 54.9969052,246.457055 61.117969,246.146202 C67.2427162,245.83517 70.6257526,239.417694 70.2683545,233.02091 C69.9567512,227.42112 66.6051739,220.919912 62.4129645,214.915918 C56.1464526,205.943919 51.5048574,198.319156 51.5008753,198.312936 L51.5008753,198.312936 Z" id="path9932-9-8"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

20
web/shuffle/faces/1_5.svg Normal file
View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="5" transform="translate(0.000000, 10.000000)" sketch:type="MSShapeGroup">
<path d="M9.90744217,37.6854661 C9.90744217,37.6854661 7.69266936,34.5058892 4.70506259,30.7675652 C2.70632147,28.2659028 1.1084834,25.5570653 0.959849615,23.2238225 C0.789513108,20.5584953 2.4023838,17.8845458 5.32239555,17.7549417 C8.24071289,17.6254273 9.42520369,19.8100271 9.90744217,21.6111574 C10.3896807,19.8100271 11.574271,17.6254273 14.4924908,17.7549417 C17.4125025,17.8845458 19.0254728,20.5584953 18.8550367,23.2238225 C18.7065025,25.5570653 17.1085649,28.2659028 15.1099233,30.7675652 C12.122215,34.5058892 9.90744217,37.6854661 9.90744217,37.6854661 L9.90744217,37.6854661 Z" id="path9970-5-6"></path>
<path d="M197.859488,209.000371 C197.859488,209.000371 195.644715,212.179948 192.657106,215.918272 C190.658365,218.419934 189.060527,221.128771 188.911893,223.462014 C188.741557,226.127341 190.354428,228.801291 193.274439,228.930895 C196.192759,229.060409 197.37725,226.87581 197.859488,225.074679 C198.341727,226.87581 199.526317,229.060409 202.444537,228.930895 C205.364544,228.801291 206.977515,226.127341 206.807079,223.462014 C206.658544,221.128771 205.060607,218.419934 203.061969,215.918272 C200.074261,212.179948 197.859488,209.000371 197.859488,209.000371 L197.859488,209.000371 Z" id="path9972-9-9"></path>
<path d="M52.347662,48.3727714 C52.347662,48.3727714 47.7021843,40.7417886 41.4356724,31.7697891 C37.243463,25.7657955 33.8918856,19.2645873 33.5802823,13.6647966 C33.2228843,7.26801343 36.6059206,0.850536631 42.7306679,0.539504709 C48.8517317,0.228652211 51.3362952,5.47170764 52.347662,9.7944164 C53.3591284,5.47170764 55.8436919,0.228652211 61.9647557,0.539504709 C68.089503,0.850536631 71.4725393,7.26801343 71.1151413,13.6647966 C70.803538,19.2645873 67.4519606,25.7657955 63.2597512,31.7697891 C56.9932393,40.7417886 52.347662,48.3727714 52.347662,48.3727714 L52.347662,48.3727714 Z" id="path9978-0-4"></path>
<path d="M155.41847,48.3727714 C155.41847,48.3727714 150.772992,40.7417886 144.50648,31.7697891 C140.314271,25.7657955 136.962693,19.2645873 136.65109,13.6647966 C136.293692,7.26801343 139.676728,0.850536631 145.801476,0.539504709 C151.922539,0.228652211 154.407103,5.47170764 155.41847,9.7944164 C156.429936,5.47170764 158.9145,0.228652211 165.035563,0.539504709 C171.160311,0.850536631 174.543347,7.26801343 174.185949,13.6647966 C173.874346,19.2645873 170.522768,25.7657955 166.330559,31.7697891 C160.064047,40.7417886 155.41847,48.3727714 155.41847,48.3727714 L155.41847,48.3727714 Z" id="path9984-9-5"></path>
<path d="M103.883055,147.266081 C103.883055,147.266081 99.2375772,139.635098 92.9710653,130.663099 C88.7788579,124.659105 85.4272805,118.157897 85.1156772,112.558107 C84.7582792,106.161323 88.1413155,99.7438465 94.2660608,99.4328146 C100.387125,99.1219621 102.871688,104.365018 103.883055,108.687726 C104.894521,104.365018 107.379085,99.1219621 113.500149,99.4328146 C119.624896,99.7438465 123.007932,106.161323 122.650534,112.558107 C122.338931,118.157897 118.987354,124.659105 114.795144,130.663099 C108.528632,139.635098 103.883055,147.266081 103.883055,147.266081 L103.883055,147.266081 Z" id="path9986-7-3"></path>
<path d="M155.41847,198.312936 C155.41847,198.312936 150.772992,205.943919 144.50648,214.915918 C140.314271,220.919912 136.962693,227.42112 136.65109,233.02091 C136.293692,239.417694 139.676728,245.83517 145.801476,246.146202 C151.922539,246.457055 154.407103,241.213999 155.41847,236.891291 C156.429936,241.213999 158.9145,246.457055 165.035563,246.146202 C171.160311,245.83517 174.543347,239.417694 174.185949,233.02091 C173.874346,227.42112 170.522768,220.919912 166.330559,214.915918 C160.064047,205.943919 155.41847,198.312936 155.41847,198.312936 L155.41847,198.312936 Z" id="path9998-0-9"></path>
<path d="M52.347662,198.312936 C52.347662,198.312936 47.7021843,205.943919 41.4356724,214.915918 C37.243463,220.919912 33.8918856,227.42112 33.5802823,233.02091 C33.2228843,239.417694 36.6059206,245.83517 42.7306679,246.146202 C48.8517317,246.457055 51.3362952,241.213999 52.347662,236.891291 C53.3591284,241.213999 55.8436919,246.457055 61.9647557,246.146202 C68.089503,245.83517 71.4725393,239.417694 71.1151413,233.02091 C70.803538,227.42112 67.4519606,220.919912 63.2597512,214.915918 C56.9932393,205.943919 52.347662,198.312936 52.347662,198.312936 L52.347662,198.312936 Z" id="path10000-8-2"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

21
web/shuffle/faces/1_6.svg Normal file
View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="6" transform="translate(0.000000, 10.000000)" sketch:type="MSShapeGroup">
<path d="M9.75432847,37.6854661 C9.75432847,37.6854661 7.53955566,34.5058892 4.55194889,30.7675652 C2.55320777,28.2659028 0.955369696,25.5570653 0.806735911,23.2238225 C0.636399404,20.5584953 2.2492701,17.8845458 5.16928184,17.7549417 C8.08759918,17.6254273 9.27208998,19.8100271 9.75432847,21.6111574 C10.2365669,19.8100271 11.4211573,17.6254273 14.3393771,17.7549417 C17.2593888,17.8845458 18.8723591,20.5584953 18.701923,23.2238225 C18.5533888,25.5570653 16.9554512,28.2659028 14.9568096,30.7675652 C11.9691013,34.5058892 9.75432847,37.6854661 9.75432847,37.6854661 L9.75432847,37.6854661 Z" id="path10038-5-0"></path>
<path d="M197.706374,209.000371 C197.706374,209.000371 195.491602,212.179948 192.503993,215.918272 C190.505252,218.419934 188.907414,221.128771 188.75878,223.462014 C188.588443,226.127341 190.201314,228.801291 193.121326,228.930895 C196.039645,229.060409 197.224136,226.87581 197.706374,225.074679 C198.188613,226.87581 199.373203,229.060409 202.291423,228.930895 C205.211431,228.801291 206.824401,226.127341 206.653965,223.462014 C206.505431,221.128771 204.907493,218.419934 202.908855,215.918272 C199.921147,212.179948 197.706374,209.000371 197.706374,209.000371 L197.706374,209.000371 Z" id="path10040-7-6"></path>
<path d="M52.1945483,48.3727714 C52.1945483,48.3727714 47.5490706,40.7417886 41.2825587,31.7697891 C37.0903493,25.7657955 33.7387719,19.2645873 33.4271686,13.6647966 C33.0697706,7.26801343 36.4528069,0.850536631 42.5775542,0.539504709 C48.698618,0.228652211 51.1831815,5.47170764 52.1945483,9.7944164 C53.2060147,5.47170764 55.6905782,0.228652211 61.811642,0.539504709 C67.9363893,0.850536631 71.3194256,7.26801343 70.9620276,13.6647966 C70.6504243,19.2645873 67.2988469,25.7657955 63.1066375,31.7697891 C56.8401256,40.7417886 52.1945483,48.3727714 52.1945483,48.3727714 L52.1945483,48.3727714 Z" id="path10046-1-1"></path>
<path d="M155.265356,147.266081 C155.265356,147.266081 150.619878,139.635098 144.353366,130.663099 C140.161157,124.659105 136.80958,118.157897 136.497976,112.558107 C136.140578,106.161323 139.523615,99.7438465 145.648362,99.4328146 C151.769426,99.1219621 154.253989,104.365018 155.265356,108.687726 C156.276822,104.365018 158.761386,99.1219621 164.88245,99.4328146 C171.007197,99.7438465 174.390233,106.161323 174.032835,112.558107 C173.721232,118.157897 170.369655,124.659105 166.177445,130.663099 C159.910933,139.635098 155.265356,147.266081 155.265356,147.266081 L155.265356,147.266081 Z" id="path10048-2-0"></path>
<path d="M155.265356,48.3727714 C155.265356,48.3727714 150.619878,40.7417886 144.353366,31.7697891 C140.161157,25.7657955 136.80958,19.2645873 136.497976,13.6647966 C136.140578,7.26801343 139.523615,0.850536631 145.648362,0.539504709 C151.769426,0.228652211 154.253989,5.47170764 155.265356,9.7944164 C156.276822,5.47170764 158.761386,0.228652211 164.88245,0.539504709 C171.007197,0.850536631 174.390233,7.26801343 174.032835,13.6647966 C173.721232,19.2645873 170.369655,25.7657955 166.177445,31.7697891 C159.910933,40.7417886 155.265356,48.3727714 155.265356,48.3727714 L155.265356,48.3727714 Z" id="path10052-3-1"></path>
<path d="M52.1945483,147.266081 C52.1945483,147.266081 47.5490706,139.635098 41.2825587,130.663109 C37.0903493,124.659115 33.7387719,118.157907 33.4271686,112.558116 C33.0697706,106.161333 36.4528069,99.7438565 42.5775542,99.4328245 C48.698618,99.121972 51.1831815,104.365027 52.1945483,108.687736 C53.2060147,104.365027 55.6905782,99.121972 61.811642,99.4328245 C67.9363893,99.7438565 71.3194256,106.161333 70.9620276,112.558116 C70.6504243,118.157907 67.2988469,124.659115 63.1066375,130.663109 C56.8401256,139.635098 52.1945483,147.266081 52.1945483,147.266081 L52.1945483,147.266081 Z" id="path10056-4-2"></path>
<path d="M155.265356,198.312936 C155.265356,198.312936 150.619878,205.943919 144.353366,214.915918 C140.161157,220.919912 136.80958,227.42112 136.497976,233.02091 C136.140578,239.417694 139.523615,245.83517 145.648362,246.146202 C151.769426,246.457055 154.253989,241.213999 155.265356,236.891291 C156.276822,241.213999 158.761386,246.457055 164.88245,246.146202 C171.007197,245.83517 174.390233,239.417694 174.032835,233.02091 C173.721232,227.42112 170.369655,220.919912 166.177445,214.915918 C159.910933,205.943919 155.265356,198.312936 155.265356,198.312936 L155.265356,198.312936 Z" id="path10066-9-2"></path>
<path d="M52.1945483,198.312936 C52.1945483,198.312936 47.5490706,205.943919 41.2825587,214.915918 C37.0903493,220.919912 33.7387719,227.42112 33.4271686,233.02091 C33.0697706,239.417694 36.4528069,245.83517 42.5775542,246.146202 C48.698618,246.457055 51.1831815,241.213999 52.1945483,236.891291 C53.2060147,241.213999 55.6905782,246.457055 61.811642,246.146202 C67.9363893,245.83517 71.3194256,239.417694 70.9620276,233.02091 C70.6504243,227.42112 67.2988469,220.919912 63.1066375,214.915918 C56.8401256,205.943919 52.1945483,198.312936 52.1945483,198.312936 L52.1945483,198.312936 Z" id="path10068-1-2"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.7 KiB

22
web/shuffle/faces/1_7.svg Normal file
View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="7" transform="translate(0.000000, 10.000000)" sketch:type="MSShapeGroup">
<path d="M9.60111521,37.6854661 C9.60111521,37.6854661 7.3863424,34.5058892 4.39873563,30.7675652 C2.39999451,28.2659028 0.802156437,25.5570653 0.653522653,23.2238225 C0.483186145,20.5584953 2.09605684,17.8845458 5.01606858,17.7549417 C7.93438592,17.6254273 9.11887673,19.8100271 9.60111521,21.6111574 C10.0833537,19.8100271 11.267944,17.6254273 14.1861638,17.7549417 C17.1061756,17.8845458 18.7191458,20.5584953 18.5487098,23.2238225 C18.4001755,25.5570653 16.8022379,28.2659028 14.8035963,30.7675652 C11.815888,34.5058892 9.60111521,37.6854661 9.60111521,37.6854661 L9.60111521,37.6854661 Z" id="path10106-2-3"></path>
<path d="M197.553161,209.000371 C197.553161,209.000371 195.338388,212.179948 192.35078,215.918272 C190.352038,218.419934 188.7542,221.128771 188.605567,223.462014 C188.43523,226.127341 190.048101,228.801291 192.968112,228.930895 C195.886432,229.060409 197.070923,226.87581 197.553161,225.074679 C198.0354,226.87581 199.21999,229.060409 202.13821,228.930895 C205.058217,228.801291 206.671188,226.127341 206.500752,223.462014 C206.352217,221.128771 204.75428,218.419934 202.755642,215.918272 C199.767934,212.179948 197.553161,209.000371 197.553161,209.000371 L197.553161,209.000371 Z" id="path10108-3-1"></path>
<path d="M103.576733,97.819375 C103.576733,97.819375 98.9312552,90.1883912 92.6647433,81.2163927 C88.4725339,75.2123951 85.1209566,68.7111869 84.8093533,63.1113962 C84.4519552,56.714613 87.8349916,50.2971362 93.9597388,49.9861043 C100.080803,49.6752518 102.565366,54.9183073 103.576733,59.241016 C104.588199,54.9183073 107.072763,49.6752518 113.193827,49.9861043 C119.318574,50.2971362 122.70161,56.714613 122.344212,63.1113962 C122.032609,68.7111869 118.681032,75.2123951 114.488822,81.2163927 C108.22231,90.1883912 103.576733,97.819375 103.576733,97.819375 L103.576733,97.819375 Z" id="path10110-3-5"></path>
<path d="M52.0413351,48.3727714 C52.0413351,48.3727714 47.3958573,40.7417886 41.1293455,31.7697891 C36.937136,25.7657955 33.5855587,19.2645873 33.2739554,13.6647966 C32.9165573,7.26801343 36.2995937,0.850536631 42.4243409,0.539504709 C48.5454047,0.228652211 51.0299683,5.47170764 52.0413351,9.7944164 C53.0528014,5.47170764 55.5373649,0.228652211 61.6584287,0.539504709 C67.783176,0.850536631 71.1662124,7.26801343 70.8088143,13.6647966 C70.497211,19.2645873 67.1456337,25.7657955 62.9534242,31.7697891 C56.6869124,40.7417886 52.0413351,48.3727714 52.0413351,48.3727714 L52.0413351,48.3727714 Z" id="path10114-8-3"></path>
<path d="M155.112143,147.266081 C155.112143,147.266081 150.466665,139.635098 144.200153,130.663099 C140.007944,124.659105 136.656366,118.157897 136.344763,112.558107 C135.987365,106.161323 139.370401,99.7438465 145.495149,99.4328146 C151.616212,99.1219621 154.100776,104.365018 155.112143,108.687726 C156.123609,104.365018 158.608173,99.1219621 164.729236,99.4328146 C170.853984,99.7438465 174.23702,106.161323 173.879622,112.558107 C173.568019,118.157897 170.216441,124.659105 166.024232,130.663099 C159.75772,139.635098 155.112143,147.266081 155.112143,147.266081 L155.112143,147.266081 Z" id="path10116-2-5"></path>
<path d="M155.112143,48.3727714 C155.112143,48.3727714 150.466665,40.7417886 144.200153,31.7697891 C140.007944,25.7657955 136.656366,19.2645873 136.344763,13.6647966 C135.987365,7.26801343 139.370401,0.850536631 145.495149,0.539504709 C151.616212,0.228652211 154.100776,5.47170764 155.112143,9.7944164 C156.123609,5.47170764 158.608173,0.228652211 164.729236,0.539504709 C170.853984,0.850536631 174.23702,7.26801343 173.879622,13.6647966 C173.568019,19.2645873 170.216441,25.7657955 166.024232,31.7697891 C159.75772,40.7417886 155.112143,48.3727714 155.112143,48.3727714 L155.112143,48.3727714 Z" id="path10120-6-5"></path>
<path d="M52.0413351,147.266081 C52.0413351,147.266081 47.3958573,139.635098 41.1293455,130.663109 C36.937136,124.659115 33.5855587,118.157907 33.2739554,112.558116 C32.9165573,106.161333 36.2995937,99.7438565 42.4243409,99.4328245 C48.5454047,99.121972 51.0299683,104.365027 52.0413351,108.687736 C53.0528014,104.365027 55.5373649,99.121972 61.6584287,99.4328245 C67.783176,99.7438565 71.1662124,106.161333 70.8088143,112.558116 C70.497211,118.157907 67.1456337,124.659115 62.9534242,130.663109 C56.6869124,139.635098 52.0413351,147.266081 52.0413351,147.266081 L52.0413351,147.266081 Z" id="path10124-1-1"></path>
<path d="M155.112143,198.312936 C155.112143,198.312936 150.466665,205.943919 144.200153,214.915918 C140.007944,220.919912 136.656366,227.42112 136.344763,233.02091 C135.987365,239.417694 139.370401,245.83517 145.495149,246.146202 C151.616212,246.457055 154.100776,241.213999 155.112143,236.891291 C156.123609,241.213999 158.608173,246.457055 164.729236,246.146202 C170.853984,245.83517 174.23702,239.417694 173.879622,233.02091 C173.568019,227.42112 170.216441,220.919912 166.024232,214.915918 C159.75772,205.943919 155.112143,198.312936 155.112143,198.312936 L155.112143,198.312936 Z" id="path10134-7-3"></path>
<path d="M52.0413351,198.312936 C52.0413351,198.312936 47.3958573,205.943919 41.1293455,214.915918 C36.937136,220.919912 33.5855587,227.42112 33.2739554,233.02091 C32.9165573,239.417694 36.2995937,245.83517 42.4243409,246.146202 C48.5454047,246.457055 51.0299683,241.213999 52.0413351,236.891291 C53.0528014,241.213999 55.5373649,246.457055 61.6584287,246.146202 C67.783176,245.83517 71.1662124,239.417694 70.8088143,233.02091 C70.497211,227.42112 67.1456337,220.919912 62.9534242,214.915918 C56.6869124,205.943919 52.0413351,198.312936 52.0413351,198.312936 L52.0413351,198.312936 Z" id="path10136-5-7"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

23
web/shuffle/faces/1_8.svg Normal file
View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="8" transform="translate(1.000000, 10.000000)" sketch:type="MSShapeGroup">
<path d="M9.44353924,37.6854661 C9.44353924,37.6854661 7.22876643,34.5058892 4.24115967,30.7675652 C2.24241855,28.2659028 0.644580473,25.5570653 0.495946688,23.2238225 C0.325610181,20.5584953 1.93848087,17.8845458 4.85849262,17.7549417 C7.77680996,17.6254273 8.96130076,19.8100271 9.44353924,21.6111574 C9.92577772,19.8100271 11.1103681,17.6254273 14.0285879,17.7549417 C16.9485996,17.8845458 18.5615698,20.5584953 18.3911338,23.2238225 C18.2425996,25.5570653 16.6446619,28.2659028 14.6460204,30.7675652 C11.6583121,34.5058892 9.44353924,37.6854661 9.44353924,37.6854661 L9.44353924,37.6854661 Z" id="path10174-9-0"></path>
<path d="M197.395585,209.000371 C197.395585,209.003361 195.180812,212.179948 192.193204,215.918272 C190.194462,218.419934 188.596624,221.128771 188.447991,223.462014 C188.277654,226.127341 189.890525,228.801291 192.810537,228.930895 C195.728856,229.060409 196.913347,226.87581 197.395585,225.074679 C197.877824,226.87581 199.062414,229.060409 201.980634,228.930895 C204.900641,228.801291 206.513612,226.127341 206.343176,223.462014 C206.194641,221.128771 204.596704,218.419934 202.598066,215.918272 C199.610358,212.179948 197.397477,209.002962 197.395585,209.000371 L197.395585,209.000371 Z" id="path10176-9-9"></path>
<path d="M103.419108,97.819371 C103.419108,97.819371 98.7736305,90.1883882 92.5071186,81.2163887 C88.3149092,75.2123951 84.9633318,68.7111869 84.6517285,63.1113962 C84.2943305,56.714613 87.6773668,50.2971362 93.8021141,49.9861043 C99.9231779,49.6752518 102.407741,54.9183073 103.419108,59.241016 C104.430575,54.9183073 106.915138,49.6752518 113.036202,49.9861043 C119.160949,50.2971362 122.543986,56.714613 122.186587,63.1113962 C121.874984,68.7111869 118.523407,75.2123951 114.331197,81.2163887 C108.064686,90.1883882 103.419108,97.819371 103.419108,97.819371 L103.419108,97.819371 Z" id="path10178-8-4"></path>
<path d="M51.8837591,48.3727714 C51.8837591,48.3727714 47.2382813,40.7417886 40.9717695,31.7697891 C36.7795601,25.7657955 33.4279827,19.2645873 33.1163794,13.6647966 C32.7589813,7.26801343 36.1420177,0.850536631 42.266765,0.539504709 C48.3878288,0.228652211 50.8723923,5.47170764 51.8837591,9.7944164 C52.8952254,5.47170764 55.379789,0.228652211 61.5008528,0.539504709 C67.6256001,0.850536631 71.0086364,7.26801343 70.6512384,13.6647966 C70.339635,19.2645873 66.9880577,25.7657955 62.7958483,31.7697891 C56.5293364,40.7417886 51.8837591,48.3727714 51.8837591,48.3727714 L51.8837591,48.3727714 Z" id="path10182-1-9"></path>
<path d="M154.954567,147.266081 C154.954567,147.266081 150.309089,139.635098 144.042577,130.663099 C139.850368,124.659105 136.49879,118.157897 136.187187,112.558107 C135.829789,106.161323 139.212825,99.7438465 145.337573,99.4328146 C151.458637,99.1219621 153.9432,104.365018 154.954567,108.687726 C155.966033,104.365018 158.450597,99.1219621 164.571661,99.4328146 C170.696408,99.7438465 174.079444,106.161323 173.722046,112.558107 C173.410443,118.157897 170.058865,124.659105 165.866656,130.663099 C159.600144,139.635098 154.954567,147.266081 154.954567,147.266081 L154.954567,147.266081 Z" id="path10184-9-1"></path>
<path d="M154.954567,48.3727714 C154.954567,48.3727714 150.309089,40.7417886 144.042577,31.7697891 C139.850368,25.7657955 136.49879,19.2645873 136.187187,13.6647966 C135.829789,7.26801343 139.212825,0.850536631 145.337573,0.539504709 C151.458637,0.228652211 153.9432,5.47170764 154.954567,9.7944164 C155.966033,5.47170764 158.450597,0.228652211 164.571661,0.539504709 C170.696408,0.850536631 174.079444,7.26801343 173.722046,13.6647966 C173.410443,19.2645873 170.058865,25.7657955 165.866656,31.7697891 C159.600144,40.7417886 154.954567,48.3727714 154.954567,48.3727714 L154.954567,48.3727714 Z" id="path10188-5-4"></path>
<path d="M51.8837591,147.266081 C51.8837591,147.266081 47.2382813,139.635098 40.9717695,130.663109 C36.7795601,124.659115 33.4279827,118.157907 33.1163794,112.558116 C32.7589813,106.161333 36.1420177,99.7438565 42.266765,99.4328245 C48.3878288,99.121972 50.8723923,104.365027 51.8837591,108.687736 C52.8952254,104.365027 55.379789,99.121972 61.5008528,99.4328245 C67.6256001,99.7438565 71.0086364,106.161333 70.6512384,112.558116 C70.339635,118.157907 66.9880577,124.659115 62.7958483,130.663109 C56.5293364,139.635098 51.8837591,147.266081 51.8837591,147.266081 L51.8837591,147.266081 Z" id="path10192-3-6"></path>
<path d="M103.419108,148.866325 C103.419108,148.866325 98.77373,156.497308 92.5071186,165.469317 C88.3150087,171.473311 84.9633318,177.974519 84.6518281,183.5743 C84.29443,189.971083 87.6773668,196.38856 93.8021141,196.699592 C99.9232774,197.010444 102.407841,191.767389 103.419108,187.44468 C104.430674,191.767389 106.915138,197.010444 113.036301,196.699592 C119.161049,196.38856 122.543986,189.971083 122.186587,183.5743 C121.875084,177.974519 118.523506,171.473311 114.331297,165.469317 C108.064785,156.497308 103.419108,148.866325 103.419108,148.866325 L103.419108,148.866325 Z" id="path10196-7-3"></path>
<path d="M154.954567,198.312936 C154.954567,198.312936 150.309089,205.943919 144.042577,214.915918 C139.850368,220.919912 136.49879,227.42112 136.187187,233.02091 C135.829789,239.417694 139.212825,245.83517 145.337573,246.146202 C151.458637,246.457055 153.9432,241.213999 154.954567,236.891291 C155.966033,241.213999 158.450597,246.457055 164.571661,246.146202 C170.696408,245.83517 174.079444,239.417694 173.722046,233.02091 C173.410443,227.42112 170.058865,220.919912 165.866656,214.915918 C159.600144,205.943919 154.954567,198.312936 154.954567,198.312936 L154.954567,198.312936 Z" id="path10202-2-8"></path>
<path d="M51.8837591,198.312936 C51.8837591,198.312936 47.2382813,205.943919 40.9717695,214.915918 C36.7795601,220.919912 33.4279827,227.42112 33.1163794,233.02091 C32.7589813,239.417694 36.1420177,245.83517 42.266765,246.146202 C48.3878288,246.457055 50.8723923,241.213999 51.8837591,236.891291 C52.8952254,241.213999 55.379789,246.457055 61.5008528,246.146202 C67.6256001,245.83517 71.0086364,239.417694 70.6512384,233.02091 C70.339635,227.42112 66.9880577,220.919912 62.7958483,214.915918 C56.5293364,205.943919 51.8837591,198.312936 51.8837591,198.312936 L51.8837591,198.312936 Z" id="path10204-9-4"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.9 KiB

24
web/shuffle/faces/1_9.svg Normal file
View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Hearts" sketch:type="MSLayerGroup" transform="translate(9.000000, 25.000000)" fill="#D40000">
<g id="9" transform="translate(1.000000, 10.000000)" sketch:type="MSShapeGroup">
<path d="M51.7306454,114.301642 C51.7306454,114.301642 47.0851676,106.670659 40.8186558,97.6986593 C36.6264464,91.6946657 33.274869,85.1934576 32.9632657,79.5936669 C32.6058676,73.1968827 35.988904,66.7794059 42.1136513,66.468374 C48.2347151,66.1575215 50.7192786,71.4005769 51.7306454,75.7232857 C52.7421117,71.4005769 55.2266753,66.1575215 61.3477391,66.468374 C67.4724864,66.7794059 70.8555227,73.1968827 70.4981247,79.5936669 C70.1865213,85.1934576 66.834944,91.6946657 62.6427346,97.6986593 C56.3762227,106.670659 51.7306454,114.301642 51.7306454,114.301642 L51.7306454,114.301642 Z" id="path10240-7-9"></path>
<path d="M9.29042554,37.6854661 C9.29042554,37.6824757 7.07565273,34.5058892 4.08804596,30.7675652 C2.08930484,28.2659028 0.491466769,25.5570653 0.342832984,23.2238225 C0.172496477,20.5584953 1.78536717,17.8845458 4.70537891,17.7549417 C7.62369625,17.6254273 8.80818706,19.8100271 9.29042554,21.6111574 C9.77266402,19.8100271 10.9572544,17.6254273 13.8754742,17.7549417 C16.7954859,17.8845458 18.4084561,20.5584953 18.2380201,23.2238225 C18.0894859,25.5570653 16.4915482,28.2659028 14.4929067,30.7675652 C11.5051983,34.5058892 9.29231706,37.6828744 9.29042554,37.6854661 L9.29042554,37.6854661 Z" id="path10242-3-8"></path>
<path d="M197.242471,209.000371 C197.242471,209.000371 195.027699,212.179948 192.04009,215.918272 C190.041349,218.419934 188.443511,221.128771 188.294877,223.462014 C188.12454,226.127341 189.737411,228.801291 192.657423,228.930895 C195.575742,229.060409 196.760233,226.87581 197.242471,225.074679 C197.72471,226.87581 198.9093,229.060409 201.82752,228.930895 C204.747528,228.801291 206.360498,226.127341 206.190062,223.462014 C206.041528,221.128771 204.44359,218.419934 202.444953,215.918272 C199.457244,212.179948 197.242471,209.000371 197.242471,209.000371 L197.242471,209.000371 Z" id="path10244-4-5"></path>
<path d="M51.7306454,48.3727714 C51.7306454,48.3727714 47.0851676,40.7417886 40.8186558,31.7697891 C36.6264464,25.7657955 33.274869,19.2645873 32.9632657,13.6647966 C32.6058676,7.26801343 35.988904,0.850536631 42.1136513,0.539504709 C48.2347151,0.228652211 50.7192786,5.47170764 51.7306454,9.7944164 C52.7421117,5.47170764 55.2266753,0.228652211 61.3477391,0.539504709 C67.4724864,0.850536631 70.8555227,7.26801343 70.4981247,13.6647966 C70.1865213,19.2645873 66.834944,25.7657955 62.6427346,31.7697891 C56.3762227,40.7417886 51.7306454,48.3727714 51.7306454,48.3727714 L51.7306454,48.3727714 Z" id="path10250-9-0"></path>
<path d="M154.801453,114.301642 C154.801453,114.301642 150.155975,106.670659 143.889464,97.6986593 C139.697254,91.6946657 136.345677,85.1934576 136.034073,79.5936669 C135.676675,73.1968827 139.059712,66.7794059 145.184459,66.468374 C151.305523,66.1575215 153.790086,71.4005769 154.801453,75.7232857 C155.812919,71.4005769 158.297483,66.1575215 164.418547,66.468374 C170.543294,66.7794059 173.92633,73.1968827 173.568932,79.5936669 C173.257329,85.1934576 169.905752,91.6946657 165.713542,97.6986593 C159.44703,106.670659 154.801453,114.301642 154.801453,114.301642 L154.801453,114.301642 Z" id="path10254-7-3"></path>
<path d="M154.801453,48.3727714 C154.801453,48.3727714 150.155975,40.7417886 143.889464,31.7697891 C139.697254,25.7657955 136.345677,19.2645873 136.034073,13.6647966 C135.676675,7.26801343 139.059712,0.850536631 145.184459,0.539504709 C151.305523,0.228652211 153.790086,5.47170764 154.801453,9.7944164 C155.812919,5.47170764 158.297483,0.228652211 164.418547,0.539504709 C170.543294,0.850536631 173.92633,7.26801343 173.568932,13.6647966 C173.257329,19.2645873 169.905752,25.7657955 165.713542,31.7697891 C159.44703,40.7417886 154.801453,48.3727714 154.801453,48.3727714 L154.801453,48.3727714 Z" id="path10256-4-7"></path>
<path d="M103.266038,147.266081 C103.266038,147.266081 98.6205606,139.635098 92.3540487,130.663099 C88.1618413,124.659105 84.8102639,118.157897 84.4986606,112.558107 C84.1412626,106.161323 87.5242989,99.7438465 93.6490442,99.4328146 C99.770108,99.1219621 102.254672,104.365018 103.266038,108.687726 C104.277505,104.365018 106.762068,99.1219621 112.883132,99.4328146 C119.007879,99.7438465 122.390916,106.161323 122.033518,112.558107 C121.721914,118.157897 118.370337,124.659105 114.178127,130.663099 C107.911616,139.635098 103.266038,147.266081 103.266038,147.266081 L103.266038,147.266081 Z" id="path10258-5-9"></path>
<path d="M154.801453,132.384057 C154.801453,132.384057 150.155975,140.015039 143.889464,148.987039 C139.697254,154.991032 136.345677,161.492241 136.034073,167.092031 C135.676675,173.488815 139.059712,179.906292 145.184459,180.217324 C151.305523,180.528176 153.790086,175.285121 154.801453,170.962412 C155.812919,175.285121 158.297483,180.528176 164.418547,180.217324 C170.543294,179.906292 173.92633,173.488815 173.568932,167.092031 C173.257329,161.492241 169.905752,154.991032 165.713542,148.987039 C159.44703,140.015039 154.801453,132.384057 154.801453,132.384057 L154.801453,132.384057 Z" id="path10266-8-9"></path>
<path d="M51.7306454,132.384057 C51.7306454,132.384057 47.0851676,140.015039 40.8186558,148.987039 C36.6264464,154.991032 33.274869,161.492241 32.9632657,167.092031 C32.6058676,173.488815 35.988904,179.906292 42.1136513,180.217324 C48.2347151,180.528176 50.7192786,175.285121 51.7306454,170.962412 C52.7421117,175.285121 55.2266753,180.528176 61.3477391,180.217324 C67.4724864,179.906292 70.8555227,173.488815 70.4981247,167.092031 C70.1865213,161.492241 66.834944,154.991032 62.6427346,148.987039 C56.3762227,140.015039 51.7306454,132.384057 51.7306454,132.384057 L51.7306454,132.384057 Z" id="path10268-2-7"></path>
<path d="M154.801453,198.312936 C154.801453,198.312936 150.155975,205.943919 143.889464,214.915918 C139.697254,220.919912 136.345677,227.42112 136.034073,233.02091 C135.676675,239.417694 139.059712,245.83517 145.184459,246.146202 C151.305523,246.457055 153.790086,241.213999 154.801453,236.891291 C155.812919,241.213999 158.297483,246.457055 164.418547,246.146202 C170.543294,245.83517 173.92633,239.417694 173.568932,233.02091 C173.257329,227.42112 169.905752,220.919912 165.713542,214.915918 C159.44703,205.943919 154.801453,198.312936 154.801453,198.312936 L154.801453,198.312936 Z" id="path10270-1-4"></path>
<path d="M51.7306454,198.312936 C51.7306454,198.312936 47.0851676,205.943919 40.8186558,214.915918 C36.6264464,220.919912 33.274869,227.42112 32.9632657,233.02091 C32.6058676,239.417694 35.988904,245.83517 42.1136513,246.146202 C48.2347151,246.457055 50.7192786,241.213999 51.7306454,236.891291 C52.7421117,241.213999 55.2266753,246.457055 61.3477391,246.146202 C67.4724864,245.83517 70.8555227,239.417694 70.4981247,233.02091 C70.1865213,227.42112 66.834944,220.919912 62.6427346,214.915918 C56.3762227,205.943919 51.7306454,198.312936 51.7306454,198.312936 L51.7306454,198.312936 Z" id="path10272-0-7"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

16
web/shuffle/faces/2_1.svg Normal file
View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(9.000000, 23.000000)" fill="#000000">
<g id="A" transform="translate(0.000000, 28.000000)" sketch:type="MSShapeGroup">
<path d="M104.645078,82.5288151 C94.8706266,82.7410755 90.4876992,93.7461075 97.7267184,102.292145 C98.7766254,103.538677 98.8849351,104.254019 96.9621506,103.056666 C92.0883146,99.7974696 82.7429315,101.940044 82.2643829,111.903964 C81.6732346,124.180938 98.8271852,127.718265 102.048036,114.663639 C102.218075,113.286277 103.337442,113.317707 103.067553,115.272801 C102.773884,120.579221 101.116729,125.538881 98.8389452,130.375361 L110.459102,130.375361 C108.181428,125.538881 106.524163,120.579221 106.230484,115.272801 C105.960595,113.317707 107.079971,113.286277 107.250011,114.663639 C110.470862,127.718265 127.624812,124.180938 127.033664,111.903964 C126.555215,101.940044 117.209732,99.7974696 112.335896,103.056666 C110.413122,104.254019 110.521432,103.538677 111.571329,102.292145 C118.810358,93.7461075 114.42742,82.7410855 104.653058,82.5288151 C104.653058,82.5287551 104.653058,82.5288651 104.643058,82.5288151 L104.645078,82.5288151 Z" id="path147-0-8-1-6-1-1-0-9-1-8"></path>
<path d="M197.626778,211.631343 C201.536547,211.542943 203.289781,206.957464 200.39417,203.396627 C199.974151,202.877236 199.930841,202.579165 200.699999,203.078066 C202.649553,204.436069 206.387683,203.543327 206.579122,199.391689 C206.815561,194.276289 199.953941,192.802406 198.665615,198.241826 C198.597915,198.815738 198.149836,198.802638 198.257846,197.988016 C198.375326,195.777002 199.038154,193.710477 199.949261,191.695283 L195.301404,191.695283 C196.212522,193.710477 196.87535,195.777002 196.99282,197.988016 C197.100839,198.802638 196.653051,198.815738 196.585051,198.241826 C195.296735,192.802406 188.435104,194.276289 188.671544,199.391689 C188.862983,203.543327 192.601122,204.436069 194.550677,203.078066 C195.319824,202.579165 195.276525,202.877236 194.856506,203.396627 C191.960894,206.957464 193.714129,211.542883 197.623788,211.631343 C197.624788,211.631363 197.623788,211.631323 197.623788,211.631343 L197.626778,211.631343 Z" id="path147-6-9-8-7-0-5-0-8-3"></path>
<path d="M9.6723791,0.444000888 C5.76262036,0.532001064 4.00938541,5.11781024 6.90499707,8.67871736 C7.32500586,9.1981184 7.36831574,9.49611899 6.59916795,8.99721799 C4.64961357,7.63921528 0.911484335,8.53201706 0.720044886,12.6836254 C0.483605567,17.7990356 7.34521581,19.2729385 8.6335421,13.8335277 C8.7012419,13.2596265 9.14933061,13.2727265 9.04131092,14.0873282 C8.92384126,16.2983326 8.26101317,18.3648367 7.34989579,20.3800408 L11.9977524,20.3800408 C11.086635,18.3648367 10.4238069,16.2983326 10.3063373,14.0873282 C10.1983276,13.2727265 10.6461163,13.2596265 10.7141061,13.8335277 C12.0024324,19.2729385 18.8640526,17.7990356 18.6276133,12.6836254 C18.4361739,8.53201706 14.6980446,7.63921528 12.7484802,8.99721799 C11.9793325,9.49611899 12.0226423,9.1981184 12.4426611,8.67871736 C15.3382728,5.11781024 13.5850378,0.532401065 9.67536909,0.444000888 C9.6743691,0.444000888 9.67536909,0.444000888 9.67536909,0.444000888 L9.6723791,0.444000888 Z" id="path147-6-9-8-7-4-5-6-8-9"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(10.000000, 23.000000)" fill="#000000">
<g id="10" transform="translate(0.000000, 11.000000)" sketch:type="MSShapeGroup">
<path d="M155.20614,0.63526727 C145.431667,0.847567695 141.04878,11.8525897 148.287759,20.3986068 C149.337656,21.6452093 149.445956,22.3605107 147.523161,21.1632083 C142.649375,17.9040018 133.304002,20.0465061 132.825403,30.010426 C132.234305,42.2874506 149.388256,45.8247576 152.609047,32.7701315 C152.779147,31.3927288 153.898543,31.4242288 153.628644,33.3793328 C153.334945,38.6857434 151.67775,43.6453533 149.399956,48.481863 L161.020123,48.481863 C158.74243,43.6453533 157.085234,38.6857434 156.791535,33.3793328 C156.521636,31.4242288 157.641033,31.3927288 157.811032,32.7701315 C161.031923,45.8247576 178.185875,42.2874506 177.594677,30.010426 C177.116278,20.0465061 167.770804,17.9040018 162.896918,21.1632083 C160.974123,22.3605107 161.082523,21.6452093 162.13242,20.3986068 C169.3714,11.8525897 164.988512,0.847567695 155.21414,0.63526727 C155.21414,0.63526727 155.21414,0.635367271 155.20414,0.63526727 L155.20614,0.63526727 Z" id="path147-0-8-1-6-13-2-22-1-5"></path>
<path d="M52.1356304,0.63526727 C42.361158,0.847567695 37.9781703,11.8525897 45.2172499,20.3986068 C46.267147,21.6452093 46.3754467,22.3605107 44.4526521,21.1632083 C39.5788658,17.9040018 30.2334922,20.0465061 29.7548935,30.010426 C29.1637952,42.2874506 46.3177468,45.8247576 49.5385377,32.7701315 C49.7086373,31.3927288 50.8279341,31.4242288 50.5581349,33.3793328 C50.2644357,38.6857434 48.6072404,43.6453533 46.3294468,48.481863 L57.949614,48.481863 C55.6719204,43.6453533 54.0147251,38.6857434 53.7210259,33.3793328 C53.4511267,31.4242288 54.5705236,31.3927288 54.7405231,32.7701315 C57.961414,45.8247576 75.1153656,42.2874506 74.5241673,30.010426 C74.0457686,20.0465061 64.700295,17.9040018 59.8264087,21.1632083 C57.9036142,22.3605107 58.0119138,21.6452093 59.0618109,20.3986068 C66.3008905,11.8525897 61.9179028,0.847567695 52.1436304,0.63526727 C52.1436304,0.63526727 52.1436304,0.635367271 52.1336304,0.63526727 L52.1356304,0.63526727 Z" id="path147-0-8-1-6-75-2-83-21-1-8"></path>
<path d="M155.20614,246.268859 C145.431667,246.056598 141.04878,235.051566 148.287759,226.505539 C149.337656,225.259007 149.445956,224.543655 147.523161,225.741007 C142.649375,229.000204 133.304002,226.85764 132.825403,216.89371 C132.234305,204.616735 149.388256,201.079418 152.609047,214.134034 C152.779147,215.511397 153.898543,215.479977 153.628644,213.524873 C153.334945,208.218452 151.67775,203.258793 149.399956,198.422313 L161.020123,198.422313 C158.74243,203.258793 157.085234,208.218452 156.791535,213.524873 C156.521636,215.479977 157.641033,215.511397 157.811032,214.134034 C161.031923,201.079418 178.185875,204.616735 177.594677,216.89371 C177.116278,226.85764 167.770804,229.000204 162.896918,225.741007 C160.974123,224.543655 161.082523,225.259007 162.13242,226.505539 C169.3714,235.051566 164.988512,246.056588 155.21414,246.268859 C155.21414,246.268919 155.21414,246.268809 155.20414,246.268859 L155.20614,246.268859 Z" id="path147-0-8-1-6-7-5-5-7-3-5-5"></path>
<path d="M52.1356304,246.268859 C42.361158,246.056598 37.9781703,235.051566 45.2172499,226.505539 C46.267147,225.259007 46.3754467,224.543655 44.4526521,225.741007 C39.5788658,229.000204 30.2334922,226.85764 29.7548935,216.89371 C29.1637952,204.616735 46.3177468,201.079418 49.5385377,214.134034 C49.7086373,215.511397 50.8279341,215.479977 50.5581349,213.524873 C50.2644357,208.218452 48.6072404,203.258793 46.3294468,198.422313 L57.949614,198.422313 C55.6719204,203.258793 54.0147251,208.218452 53.7210259,213.524873 C53.4511267,215.479977 54.5705236,215.511397 54.7405231,214.134034 C57.961414,201.079418 75.1153656,204.616735 74.5241673,216.89371 C74.0457686,226.85764 64.700295,229.000204 59.8264087,225.741007 C57.9036142,224.543655 58.0119138,225.259007 59.0618109,226.505539 C66.3008905,235.051566 61.9179028,246.056588 52.1436304,246.268859 C52.1436304,246.268919 52.1436304,246.268809 52.1336304,246.268859 L52.1356304,246.268859 Z" id="path147-0-8-1-6-75-6-1-2-7-9-3"></path>
<path d="M103.670785,33.6000332 C93.8963127,33.8123336 89.513525,44.8173556 96.7524046,53.3633727 C97.8023016,54.6098752 97.9106013,55.3252767 95.9879068,54.1278743 C91.1140205,50.8686677 81.7686469,53.011272 81.2900482,62.975202 C80.6989499,75.2521665 97.8529015,78.7894936 101.073792,65.7348675 C101.243792,64.3575047 102.363189,64.3889348 102.09329,66.3440387 C101.79959,71.6504593 100.142395,76.6101092 97.8647015,81.4465889 L109.484869,81.4465889 C107.207175,76.6101092 105.54988,71.6504593 105.256181,66.3440387 C104.986281,64.3889348 106.105678,64.3575047 106.275678,65.7348675 C109.496569,78.7894936 126.65052,75.2521665 126.059422,62.975202 C125.580923,53.011272 116.23545,50.8686677 111.361663,54.1278743 C109.438869,55.3252767 109.547169,54.6098752 110.597066,53.3633727 C117.836045,44.8173556 113.453158,33.8123336 103.678785,33.6000332 C103.678785,33.6000332 103.678785,33.6001332 103.668785,33.6000332 L103.670785,33.6000332 Z" id="path147-0-8-1-6-2-00-7-1-1-4"></path>
<path d="M103.670885,213.304363 C93.8964127,213.092102 89.513425,202.08708 96.7525046,193.541053 C97.8024016,192.294521 97.9107013,191.579169 95.9879068,192.776522 C91.1141205,196.035718 81.7687469,193.893154 81.2901482,183.929224 C80.6990499,171.652249 97.8530015,168.114922 101.073792,181.169548 C101.243892,182.546911 102.363289,182.515491 102.09339,180.560387 C101.79969,175.253957 100.142495,170.294297 97.8647015,165.457817 L109.484869,165.457817 C107.207175,170.294297 105.54998,175.253957 105.256281,180.560387 C104.986381,182.515491 106.105778,182.546911 106.275778,181.169548 C109.496669,168.114922 126.65062,171.652249 126.059422,183.929224 C125.581023,193.893154 116.23555,196.035718 111.361663,192.776522 C109.438869,191.579169 109.547269,192.294521 110.597066,193.541053 C117.836145,202.08708 113.453258,213.092092 103.678885,213.304363 C103.678885,213.304423 103.678885,213.304313 103.668885,213.304363 L103.670885,213.304363 Z" id="path147-0-8-1-6-2-0-8-6-8-1-8"></path>
<path d="M197.65262,228.631333 C201.562309,228.542933 203.315604,223.957464 200.419912,220.396627 C199.999913,219.877236 199.956614,219.579165 200.725811,220.078066 C202.675306,221.436069 206.413495,220.543327 206.604895,216.391689 C206.841394,211.276279 199.979713,209.802396 198.691417,215.241826 C198.623417,215.815738 198.175619,215.802638 198.283618,214.988006 C198.401118,212.777002 199.063916,210.710477 199.975014,208.695283 L195.327227,208.695283 C196.238324,210.710477 196.901122,212.777002 197.018622,214.988006 C197.126622,215.802638 196.678823,215.815738 196.610823,215.241826 C195.322527,209.802396 188.460946,211.276279 188.697345,216.391689 C188.888745,220.543327 192.626934,221.436069 194.576429,220.078066 C195.345627,219.579165 195.302327,219.877236 194.882328,220.396627 C191.986636,223.957464 193.739931,228.542883 197.64962,228.631333 C197.65062,228.631353 197.64962,228.631313 197.64962,228.631333 L197.65262,228.631333 Z" id="path147-6-9-8-7-0-5-6-83-3-7"></path>
<path d="M52.1356304,66.5643091 C42.361158,66.7765696 37.9782703,77.7816016 45.2172499,86.3276287 C46.267147,87.5741611 46.3754467,88.2895126 44.4526521,87.0921602 C39.5788658,83.8329637 30.2334922,85.975528 29.7548935,95.9394579 C29.1637952,108.216432 46.3177468,111.75375 49.5385377,98.6991334 C49.7086373,97.3217706 50.8279341,97.3531907 50.5581349,99.3082946 C50.2644357,104.614715 48.6072404,109.574375 46.3294468,114.410855 L57.949614,114.410855 C55.6719204,109.574375 54.0147251,104.614715 53.7210259,99.3082946 C53.4511267,97.3531907 54.5705236,97.3217706 54.7405231,98.6991334 C57.961414,111.75375 75.1153656,108.216432 74.5241673,95.9394579 C74.0457686,85.975528 64.700295,83.8329637 59.8264087,87.0921602 C57.9036142,88.2895126 58.0119138,87.5741611 59.0618109,86.3276287 C66.3008905,77.7816016 61.9179028,66.7765796 52.1436304,66.5643091 C52.1436304,66.5642491 52.1436304,66.5643591 52.1336304,66.5643091 L52.1356304,66.5643091 Z" id="path147-0-8-1-6-75-2-9-77-44-0-7"></path>
<path d="M52.1356304,180.339857 C42.361158,180.127596 37.9781703,169.122554 45.2172499,160.576527 C46.267147,159.329995 46.3754467,158.614643 44.4526521,159.811996 C39.5788658,163.071192 30.2334922,160.928628 29.7548935,150.964698 C29.1637952,138.687733 46.3177468,135.150406 49.5385377,148.205032 C49.7086373,149.582395 50.8279341,149.550965 50.5581349,147.595861 C50.2644357,142.289441 48.6072404,137.329781 46.3294468,132.493301 L57.949614,132.493301 C55.6719204,137.329781 54.0147251,142.289441 53.7210259,147.595861 C53.4511267,149.550965 54.5705236,149.582395 54.7405231,148.205032 C57.961414,135.150406 75.1153656,138.687733 74.5241673,150.964698 C74.0457686,160.928628 64.700295,163.071192 59.8264087,159.811996 C57.9036142,158.614643 58.0119138,159.329995 59.0618109,160.576527 C66.3008905,169.122554 61.9179028,180.127586 52.1436304,180.339857 C52.1436304,180.339917 52.1436304,180.339807 52.1336304,180.339857 L52.1356304,180.339857 Z" id="path147-0-8-1-6-75-2-8-0-3-9-3"></path>
<path d="M155.20614,66.5643091 C145.431667,66.7765696 141.04878,77.7816016 148.287759,86.3276287 C149.337656,87.5741611 149.445956,88.2895126 147.523161,87.0921602 C142.649375,83.8329637 133.304002,85.975528 132.825403,95.9394579 C132.234305,108.216432 149.388256,111.75375 152.609047,98.6991334 C152.779147,97.3217706 153.898543,97.3531907 153.628644,99.3082946 C153.334945,104.614715 151.67775,109.574375 149.399956,114.410855 L161.020123,114.410855 C158.74243,109.574375 157.085234,104.614715 156.791535,99.3082946 C156.521636,97.3531907 157.641033,97.3217706 157.811032,98.6991334 C161.031923,111.75375 178.185875,108.216432 177.594677,95.9394579 C177.116278,85.975528 167.770804,83.8329637 162.896918,87.0921602 C160.974123,88.2895126 161.082523,87.5741611 162.13242,86.3276287 C169.3714,77.7816016 164.988512,66.7765796 155.21414,66.5643091 C155.21414,66.5642491 155.21414,66.5643591 155.20414,66.5643091 L155.20614,66.5643091 Z" id="path147-0-8-1-6-75-2-9-7-1-9-7-9"></path>
<path d="M155.20614,180.339857 C145.431667,180.127596 141.04878,169.122554 148.287759,160.576527 C149.337656,159.329995 149.445956,158.614643 147.523161,159.811996 C142.649375,163.071192 133.304002,160.928628 132.825403,150.964698 C132.234305,138.687733 149.388256,135.150406 152.609047,148.205032 C152.779147,149.582395 153.898543,149.550965 153.628644,147.595861 C153.334945,142.289441 151.67775,137.329781 149.399956,132.493301 L161.020123,132.493301 C158.74243,137.329781 157.085234,142.289441 156.791535,147.595861 C156.521636,149.550965 157.641033,149.582395 157.811032,148.205032 C161.031923,135.150406 178.185875,138.687733 177.594677,150.964698 C177.116278,160.928628 167.770804,163.071192 162.896918,159.811996 C160.974123,158.614643 161.082523,159.329995 162.13242,160.576527 C169.3714,169.122554 164.988512,180.127586 155.21414,180.339857 C155.21414,180.339917 155.21414,180.339807 155.20414,180.339857 L155.20614,180.339857 Z" id="path147-0-8-1-6-75-2-8-5-1-52-2-8"></path>
<path d="M9.69815009,17.4440009 C5.78836112,17.5320011 4.03516606,22.1178102 6.9307579,25.6787174 C7.35075671,26.1981184 7.39405659,26.496119 6.62495876,25.997218 C4.67536426,24.6392153 0.937274797,25.5320171 0.745875337,29.6836254 C0.509376003,34.7990356 7.37095665,36.2729385 8.65935302,30.8335277 C8.72735283,30.2596265 9.17515157,30.2727265 9.06705187,31.0873282 C8.9496522,33.2983326 8.28675407,35.3648367 7.37565664,37.3800408 L12.0235435,37.3800408 C11.1124461,35.3648367 10.449548,33.2983326 10.3321483,31.0873282 C10.2241486,30.2727265 10.6718473,30.2596265 10.7398472,30.8335277 C12.0282435,36.2729385 18.8898242,34.7990356 18.6534248,29.6836254 C18.4619254,25.5320171 14.7238359,24.6392153 12.7742414,25.997218 C12.0051436,26.496119 12.0484435,26.1981184 12.4684423,25.6787174 C15.3640341,22.1178102 13.6108391,17.5324011 9.70115008,17.4440009 C9.70015009,17.4440009 9.70115008,17.4440009 9.70115008,17.4440009 L9.69815009,17.4440009 Z" id="path147-6-9-8-7-4-5-62-52-8-0"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 154 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 155 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 138 KiB

17
web/shuffle/faces/2_2.svg Normal file
View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(10.000000, 23.000000)" fill="#000000">
<g id="2" transform="translate(0.000000, 11.000000)" sketch:type="MSShapeGroup">
<path d="M103.87056,0.6353 C94.09607,0.8475 89.71312,11.8526 96.95217,20.3986 C98.00206,21.6451 98.11039,22.3605 96.18759,21.1631 C91.31375,17.9039 81.96835,20.0465 81.48978,30.0104 C80.89864,42.2873 98.05264,45.8247 101.2735,32.7701 C101.44354,31.3927 102.56291,31.4241 102.29302,33.3792 C101.99934,38.6856 100.34217,43.6453 98.06439,48.4817 L109.68459,48.4817 C107.40691,43.6453 105.74964,38.6856 105.45595,33.3792 C105.18605,31.4241 106.30544,31.3927 106.47548,32.7701 C109.69634,45.8247 126.85035,42.2873 126.2592,30.0104 C125.78074,20.0465 116.43524,17.9039 111.56139,21.1631 C109.6386,22.3605 109.74691,21.6451 110.79681,20.3986 C118.03587,11.8526 113.65291,0.8476 103.87851,0.6353 C103.87851,0.6352 103.87851,0.6353 103.86851,0.6353 L103.87056,0.6353 Z" id="path147-0-8-1-6-7-2-1-6-3"></path>
<path d="M103.87056,246.26834 C94.09608,246.05608 89.71312,235.05108 96.95218,226.50506 C98.00208,225.25853 98.1104,224.54319 96.1876,225.74053 C91.31375,228.99973 81.96834,226.85716 81.48978,216.89325 C80.89863,204.61631 98.05265,201.07899 101.27351,214.13359 C101.44355,215.51095 102.56292,215.47952 102.29303,213.52442 C101.99935,208.21801 100.34219,203.25837 98.0644,198.4219 L109.6846,198.4219 C107.40692,203.25837 105.74965,208.21801 105.45596,213.52442 C105.18607,215.47952 106.30545,215.51095 106.47549,214.13359 C109.69635,201.07899 126.85036,204.61631 126.25921,216.89325 C125.78075,226.85716 116.43525,228.99973 111.5614,225.74053 C109.63861,224.54319 109.74693,225.25853 110.79682,226.50506 C118.03588,235.05108 113.65292,246.05607 103.87853,246.26834 C103.87853,246.2684 103.87853,246.26829 103.86853,246.26834 L103.87056,246.26834 Z" id="path147-0-8-1-6-1-4-5-4-2"></path>
<path d="M197.85252,228.63086 C201.76229,228.54246 203.51553,223.957 200.61991,220.39616 C200.19989,219.87677 200.15659,219.57871 200.92574,220.07761 C202.8753,221.43561 206.61345,220.54286 206.80489,216.39123 C207.04133,211.27584 200.17969,209.80196 198.89136,215.24137 C198.82366,215.81528 198.37557,215.80219 198.48359,214.98756 C198.60106,212.77655 199.26389,210.71004 200.17501,208.69484 L195.52714,208.69484 C196.43826,210.71004 197.10108,212.77655 197.21856,214.98756 C197.32657,215.80219 196.87878,215.81528 196.81079,215.24137 C195.52246,209.80196 188.66082,211.27584 188.89726,216.39123 C189.0887,220.54286 192.82684,221.43561 194.7764,220.07761 C195.54556,219.57871 195.50225,219.87677 195.08223,220.39616 C192.18661,223.957 193.93985,228.5424 197.84953,228.63086 C197.85052,228.63088 197.84953,228.63084 197.84953,228.63086 L197.85252,228.63086 Z" id="path147-6-9-8-7-0-5-4-9-1"></path>
<path d="M9.89758,17.4439 C5.9878,17.5319 4.23456,22.1178 7.13018,25.6786 C7.5502,26.198 7.59351,26.4961 6.82435,25.9972 C4.87479,24.6392 1.13666,25.5319 0.94522,29.6835 C0.70878,34.7989 7.57041,36.2728 8.85874,30.8334 C8.92644,30.2595 9.37452,30.2726 9.26651,31.0872 C9.14903,33.2982 8.48621,35.3647 7.57509,37.3799 L12.22296,37.3799 C11.31184,35.3647 10.64901,33.2982 10.53154,31.0872 C10.42352,30.2726 10.87131,30.2595 10.93931,30.8334 C12.22764,36.2728 19.08928,34.7989 18.85284,29.6835 C18.6614,25.5319 14.92325,24.6392 12.97369,25.9972 C12.20454,26.4961 12.24784,26.198 12.66786,25.6786 C15.56348,22.1178 13.81024,17.5324 9.90057,17.4439 C9.89957,17.4439 9.90057,17.4439 9.90057,17.4439 L9.89758,17.4439 Z" id="path147-6-9-8-7-4-5-9-2-7"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

18
web/shuffle/faces/2_3.svg Normal file
View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(10.000000, 23.000000)" fill="#000000">
<g id="3" transform="translate(1.000000, 11.000000)" sketch:type="MSShapeGroup">
<path d="M103.0956,0.6353 C93.3211,0.8476 88.9382,11.8526 96.1772,20.3986 C97.2271,21.6451 97.3354,22.3605 95.4126,21.1631 C90.5388,17.9039 81.1934,20.0465 80.7148,30.0104 C80.1237,42.2873 97.2777,45.8247 100.4985,32.7701 C100.6686,31.3927 101.7879,31.4241 101.5181,33.3792 C101.2244,38.6856 99.5672,43.6453 97.2894,48.4817 L108.9096,48.4817 C106.6319,43.6453 104.9747,38.6856 104.681,33.3792 C104.4111,31.4241 105.5305,31.3927 105.7005,32.7701 C108.9214,45.8247 126.0754,42.2873 125.4842,30.0104 C125.0058,20.0465 115.6603,17.9039 110.7864,21.1631 C108.8636,22.3605 108.9719,21.6451 110.0219,20.3986 C117.2609,11.8526 112.878,0.8476 103.1036,0.6353 C103.1036,0.6352 103.1036,0.6353 103.0936,0.6353 L103.0956,0.6353 Z" id="path147-0-8-1-6-7-2-5-9-2"></path>
<path d="M103.0956,246.26835 C93.3211,246.05609 88.9382,235.05108 96.1772,226.50506 C97.2271,225.25853 97.3354,224.54319 95.4126,225.74054 C90.5388,228.99973 81.1934,226.85716 80.7148,216.89326 C80.1237,204.61631 97.2777,201.07899 100.4985,214.13359 C100.6686,215.51095 101.788,215.47952 101.5181,213.52443 C101.2244,208.21802 99.5672,203.25837 97.2894,198.4219 L108.9096,198.4219 C106.632,203.25837 104.9747,208.21802 104.681,213.52443 C104.4111,215.47952 105.5305,215.51095 105.7005,214.13359 C108.9214,201.07899 126.0754,204.61631 125.4842,216.89326 C125.0058,226.85716 115.6603,228.99973 110.7864,225.74054 C108.8637,224.54319 108.972,225.25853 110.0219,226.50506 C117.2609,235.05108 112.878,246.05608 103.1036,246.26835 C103.1036,246.26841 103.1036,246.2683 103.0936,246.26835 L103.0956,246.26835 Z" id="path147-0-8-1-6-1-4-3-4-3"></path>
<path d="M103.0956,99.5286 C93.3211,99.74086 88.9382,110.74587 96.1772,119.29188 C97.2271,120.53841 97.3354,121.25376 95.4126,120.05641 C90.5388,116.79722 81.1934,118.93978 80.7148,128.90369 C80.1237,141.18063 97.2777,144.71795 100.4985,131.66335 C100.6686,130.28599 101.7879,130.31742 101.5181,132.27252 C101.2244,137.57893 99.5672,142.53858 97.2894,147.37505 L108.9096,147.37505 C106.6319,142.53858 104.9747,137.57893 104.681,132.27252 C104.4111,130.31742 105.5305,130.28599 105.7005,131.66335 C108.9214,144.71795 126.0754,141.18063 125.4842,128.90369 C125.0058,118.93978 115.6603,116.79722 110.7864,120.05641 C108.8636,121.25376 108.972,120.53841 110.0219,119.29188 C117.2609,110.74587 112.878,99.74087 103.1036,99.5286 C103.1036,99.52854 103.1036,99.52865 103.0936,99.5286 L103.0956,99.5286 Z" id="path147-0-8-1-6-1-1-0-4-8-8"></path>
<path d="M197.0776,228.63086 C200.9873,228.54246 202.7406,223.957 199.845,220.39617 C199.4249,219.87677 199.3816,219.57871 200.1508,220.07761 C202.1003,221.43561 205.8385,220.54287 206.0299,216.39124 C206.2664,211.27584 199.4047,209.80196 198.1164,215.24138 C198.0484,215.81529 197.6006,215.80219 197.7086,214.98756 C197.8261,212.77656 198.4889,210.71004 199.4,208.69485 L194.7522,208.69485 C195.6633,210.71004 196.3261,212.77656 196.4436,214.98756 C196.5516,215.80219 196.1038,215.81529 196.0358,215.24138 C194.7475,209.80196 187.8859,211.27584 188.1223,216.39124 C188.3137,220.54287 192.0519,221.43561 194.0014,220.07761 C194.7706,219.57871 194.7273,219.87677 194.3073,220.39617 C191.4117,223.957 193.1649,228.54241 197.0746,228.63086 C197.0756,228.63088 197.0746,228.63084 197.0746,228.63086 L197.0776,228.63086 Z" id="path147-6-9-8-7-0-5-5-1-4"></path>
<path d="M9.1226,17.4439 C5.2128,17.5319 3.4596,22.1178 6.3552,25.6786 C6.7752,26.198 6.8185,26.4961 6.0494,25.9972 C4.0998,24.6392 0.3617,25.5319 0.1702,29.6835 C-0.06619,34.7989 6.7954,36.2728 8.0838,30.8334 C8.1518,30.2595 8.5996,30.2726 8.4915,31.0872 C8.3741,33.2982 7.7112,35.3647 6.8001,37.3799 L11.448,37.3799 C10.5369,35.3647 9.874,33.2982 9.7566,31.0872 C9.6486,30.2726 10.0963,30.2595 10.1643,30.8334 C11.4527,36.2728 18.3143,34.7989 18.0779,29.6835 C17.8864,25.5319 14.1483,24.6392 12.1987,25.9972 C11.4296,26.4961 11.4729,26.198 11.8929,25.6786 C14.7885,22.1178 13.0353,17.5324 9.1256,17.4439 C9.1246,17.4439 9.1256,17.4439 9.1256,17.4439 L9.1226,17.4439 Z" id="path147-6-9-8-7-4-5-8-2-3"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

19
web/shuffle/faces/2_4.svg Normal file
View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(10.000000, 23.000000)" fill="#000000">
<g id="4" transform="translate(0.000000, 11.000000)" sketch:type="MSShapeGroup">
<path d="M154.855541,0.635367271 C145.081068,0.847567695 140.698181,11.8525897 147.93716,20.3986068 C148.987057,21.6452093 149.095457,22.3605107 147.172662,21.1632083 C142.298776,17.9040018 132.953403,20.0465061 132.474904,30.010526 C131.883706,42.2874506 149.037657,45.8247576 152.258548,32.7701315 C152.428548,31.3928288 153.547944,31.4242288 153.278045,33.3793328 C152.984346,38.6857434 151.327251,43.6453533 149.049457,48.481863 L160.669624,48.481863 C158.391931,43.6453533 156.734635,38.6857434 156.440936,33.3793328 C156.171037,31.4242288 157.290434,31.3928288 157.460533,32.7701315 C160.681324,45.8247576 177.835276,42.2874506 177.244178,30.010526 C176.765679,20.0465061 167.420205,17.9040018 162.546419,21.1632083 C160.623624,22.3605107 160.731924,21.6452093 161.781821,20.3986068 C169.020801,11.8525897 164.637913,0.847567695 154.863541,0.635367271 C154.863541,0.63526727 154.863541,0.635367271 154.853541,0.635367271 L154.855541,0.635367271 Z" id="path147-0-8-1-6-13-2-06-7"></path>
<path d="M51.7850314,0.635367271 C42.010559,0.847567695 37.6276713,11.8525897 44.8666509,20.3986068 C45.916548,21.6452093 46.0248476,22.3605107 44.1021531,21.1632083 C39.2282668,17.9040018 29.8828932,20.0465061 29.4042945,30.010526 C28.8131962,42.2874506 45.9671478,45.8247576 49.1880387,32.7701315 C49.3580382,31.3928288 50.4774351,31.4242288 50.2075359,33.3793328 C49.9138367,38.6857434 48.2566414,43.6453533 45.9789478,48.481863 L57.599115,48.481863 C55.3214214,43.6453533 53.6641261,38.6857434 53.3704269,33.3793328 C53.1005277,31.4242288 54.2199245,31.3928288 54.3900241,32.7701315 C57.610815,45.8247576 74.7647666,42.2874506 74.1736683,30.010526 C73.6951696,20.0465061 64.349696,17.9040018 59.4759097,21.1632083 C57.5531151,22.3605107 57.6614148,21.6452093 58.7113119,20.3986068 C65.9502915,11.8525897 61.5674038,0.847567695 51.7930314,0.635367271 C51.7930314,0.63526727 51.7930314,0.635367271 51.7830314,0.635367271 L51.7850314,0.635367271 Z" id="path147-0-8-1-6-75-2-83-35-3"></path>
<path d="M154.855541,246.268869 C145.081068,246.056608 140.698181,235.051576 147.93716,226.505549 C148.987057,225.259017 149.095457,224.543665 147.172662,225.741017 C142.298776,229.000214 132.953403,226.85765 132.474904,216.89372 C131.883706,204.616745 149.037657,201.079428 152.258548,214.134044 C152.428548,215.511407 153.547944,215.479987 153.278045,213.524883 C152.984346,208.218462 151.327251,203.258803 149.049457,198.422323 L160.669624,198.422323 C158.391931,203.258803 156.734635,208.218462 156.440936,213.524883 C156.171037,215.479987 157.290434,215.511407 157.460533,214.134044 C160.681324,201.079428 177.835276,204.616745 177.244178,216.89372 C176.765679,226.85765 167.420205,229.000214 162.546419,225.741017 C160.623624,224.543665 160.731924,225.259017 161.781821,226.505549 C169.020801,235.051576 164.637913,246.056598 154.863541,246.268869 C154.863541,246.268929 154.863541,246.268819 154.853541,246.268869 L154.855541,246.268869 Z" id="path147-0-8-1-6-7-5-5-7-77-6"></path>
<path d="M51.7850314,246.268869 C42.010559,246.056608 37.6276713,235.051576 44.8666509,226.505549 C45.916548,225.259017 46.0248476,224.543665 44.1021531,225.741017 C39.2282668,229.000214 29.8828932,226.85765 29.4042945,216.89372 C28.8131962,204.616745 45.9671478,201.079428 49.1880387,214.134044 C49.3580382,215.511407 50.4774351,215.479987 50.2075359,213.524883 C49.9138367,208.218462 48.2566414,203.258803 45.9789478,198.422323 L57.599115,198.422323 C55.3214214,203.258803 53.6641261,208.218462 53.3704269,213.524883 C53.1005277,215.479987 54.2199245,215.511407 54.3900241,214.134044 C57.610815,201.079428 74.7647666,204.616745 74.1736683,216.89372 C73.6951696,226.85765 64.349696,229.000214 59.4759097,225.741017 C57.5531151,224.543665 57.6614148,225.259017 58.7113119,226.505549 C65.9502915,235.051576 61.5674038,246.056598 51.7930314,246.268869 C51.7930314,246.268929 51.7930314,246.268819 51.7830314,246.268869 L51.7850314,246.268869 Z" id="path147-0-8-1-6-75-6-1-2-08-0"></path>
<path d="M197.302021,228.631343 C201.21181,228.542943 202.965005,223.957474 200.069413,220.396637 C199.649414,219.877246 199.606115,219.579175 200.375212,220.078076 C202.324807,221.436079 206.062896,220.543337 206.254396,216.391699 C206.490795,211.276289 199.629214,209.802406 198.340818,215.241836 C198.272818,215.815748 197.82502,215.802648 197.933119,214.988016 C198.050519,212.777012 198.713417,210.710487 199.624514,208.695293 L194.976628,208.695293 C195.887725,210.710487 196.550623,212.777012 196.668023,214.988016 C196.776023,215.802648 196.328324,215.815748 196.260324,215.241836 C194.971928,209.802406 188.110347,211.276289 188.346746,216.391699 C188.538246,220.543337 192.276335,221.436079 194.22593,220.078076 C194.995028,219.579175 194.951728,219.877246 194.531729,220.396637 C191.636137,223.957474 193.389332,228.542893 197.299021,228.631343 C197.300021,228.631363 197.299021,228.631323 197.299021,228.631343 L197.302021,228.631343 Z" id="path147-6-9-8-7-0-5-6-17-9"></path>
<path d="M9.34765108,17.4440009 C5.43786211,17.5320011 3.68456705,22.1178102 6.58025888,25.6787174 C7.0002577,26.1981184 7.04355758,26.496119 6.27435975,25.997218 C4.32486524,24.6392153 0.586675786,25.5320171 0.395276325,29.6836254 C0.158876992,34.7990356 7.02045764,36.2729385 8.30875401,30.8335277 C8.37675382,30.2596265 8.82455255,30.2727265 8.71655286,31.0873282 C8.59905319,33.2983326 7.93625506,35.3648367 7.02515763,37.3800408 L11.6729445,37.3800408 C10.7618471,35.3648367 10.099049,33.2983326 9.98154929,31.0873282 C9.8735496,30.2727265 10.3213483,30.2596265 10.3893481,30.8335277 C11.6776445,36.2729385 18.5393252,34.7990356 18.3028258,29.6836254 C18.1114264,25.5320171 14.3732369,24.6392153 12.4237424,25.997218 C11.6545446,26.496119 11.6978445,26.1981184 12.1178433,25.6787174 C15.0135351,22.1178102 13.26024,17.5324011 9.35055107,17.4440009 C9.34955107,17.4440009 9.35055107,17.4440009 9.35055107,17.4440009 L9.34765108,17.4440009 Z" id="path147-6-9-8-7-4-5-62-79-3"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

20
web/shuffle/faces/2_5.svg Normal file
View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(10.000000, 23.000000)" fill="#000000">
<g id="5" transform="translate(0.000000, 11.000000)" sketch:type="MSShapeGroup">
<path d="M155.0812,0.6352 C145.3067,0.8475 140.9238,11.8525 148.1628,20.3985 C149.2127,21.645 149.321,22.3604 147.3982,21.163 C142.5244,17.9038 133.179,20.0464 132.7004,30.0103 C132.1093,42.2872 149.2633,45.8246 152.4841,32.77 C152.6542,31.3926 153.7736,31.424 153.5037,33.3791 C153.21,38.6855 151.5528,43.6452 149.275,48.4816 L160.8952,48.4816 C158.6175,43.6452 156.9603,38.6855 156.6666,33.3791 C156.3967,31.424 157.5161,31.3926 157.6861,32.77 C160.907,45.8246 178.061,42.2872 177.4698,30.0103 C176.9914,20.0464 167.6459,17.9038 162.772,21.163 C160.8492,22.3604 160.9576,21.645 162.0075,20.3985 C169.2465,11.8525 164.8636,0.8475 155.0892,0.6352 C155.0892,0.6351 155.0892,0.6352 155.0792,0.6352 L155.0812,0.6352 Z" id="path147-0-8-1-6-13-2-8-2-5"></path>
<path d="M52.0104,0.6352 C42.2359,0.8475 37.8529,11.8525 45.092,20.3985 C46.1419,21.645 46.2502,22.3604 44.3274,21.163 C39.4536,17.9038 30.1082,20.0464 29.6296,30.0103 C29.0385,42.2872 46.1925,45.8246 49.4133,32.77 C49.5834,31.3926 50.7027,31.424 50.4329,33.3791 C50.1392,38.6855 48.482,43.6452 46.2042,48.4816 L57.8244,48.4816 C55.5467,43.6452 53.8895,38.6855 53.5958,33.3791 C53.3259,31.424 54.4453,31.3926 54.6153,32.77 C57.8362,45.8246 74.9902,42.2872 74.399,30.0103 C73.9206,20.0464 64.5751,17.9038 59.7012,21.163 C57.7784,22.3604 57.8867,21.645 58.9366,20.3985 C66.1757,11.8525 61.7927,0.8475 52.0184,0.6352 C52.0184,0.6351 52.0184,0.6352 52.0084,0.6352 L52.0104,0.6352 Z" id="path147-0-8-1-6-75-2-83-7-6-4"></path>
<path d="M155.0812,246.26825 C145.3067,246.05599 140.9238,235.05098 148.1628,226.50497 C149.2127,225.25844 149.321,224.54309 147.3982,225.74044 C142.5244,228.99963 133.179,226.85707 132.7004,216.89316 C132.1093,204.61621 149.2633,201.0789 152.4841,214.13349 C152.6542,215.51085 153.7736,215.47943 153.5037,213.52433 C153.21,208.21792 151.5528,203.25827 149.275,198.4218 L160.8952,198.4218 C158.6175,203.25827 156.9603,208.21792 156.6666,213.52433 C156.3967,215.47943 157.5161,215.51085 157.6861,214.13349 C160.907,201.0789 178.061,204.61621 177.4698,216.89316 C176.9914,226.85707 167.6459,228.99963 162.772,225.74044 C160.8492,224.54309 160.9576,225.25844 162.0075,226.50497 C169.2465,235.05098 164.8636,246.05598 155.0892,246.26825 C155.0892,246.26831 155.0892,246.2682 155.0792,246.26825 L155.0812,246.26825 Z" id="path147-0-8-1-6-7-5-5-7-6-8-5"></path>
<path d="M52.0104,246.26825 C42.2359,246.05599 37.8529,235.05098 45.092,226.50497 C46.1419,225.25844 46.2502,224.54309 44.3274,225.74044 C39.4536,228.99963 30.1082,226.85707 29.6296,216.89316 C29.0385,204.61621 46.1925,201.0789 49.4133,214.13349 C49.5834,215.51085 50.7027,215.47943 50.4329,213.52433 C50.1392,208.21792 48.482,203.25827 46.2042,198.4218 L57.8244,198.4218 C55.5467,203.25827 53.8895,208.21792 53.5958,213.52433 C53.3259,215.47943 54.4453,215.51085 54.6153,214.13349 C57.8362,201.0789 74.9902,204.61621 74.399,216.89316 C73.9206,226.85707 64.5751,228.99963 59.7012,225.74044 C57.7784,224.54309 57.8867,225.25844 58.9366,226.50497 C66.1757,235.05098 61.7927,246.05598 52.0184,246.26825 C52.0184,246.26831 52.0184,246.2682 52.0084,246.26825 L52.0104,246.26825 Z" id="path147-0-8-1-6-75-6-1-2-4-9-5"></path>
<path d="M103.5458,99.5285 C93.7713,99.74076 89.3884,110.74577 96.6274,119.29178 C97.6773,120.53831 97.7856,121.25366 95.8628,120.05631 C90.989,116.79712 81.6436,118.93968 81.165,128.90359 C80.5739,141.18053 97.7279,144.71785 100.9487,131.66326 C101.1188,130.2859 102.2381,130.31732 101.9683,132.27242 C101.6746,137.57883 100.0174,142.53848 97.7396,147.37495 L109.3598,147.37495 C107.0821,142.53848 105.4249,137.57883 105.1312,132.27242 C104.8613,130.31732 105.9807,130.2859 106.1507,131.66326 C109.3716,144.71785 126.5256,141.18053 125.9344,128.90359 C125.456,118.93968 116.1105,116.79712 111.2366,120.05631 C109.3138,121.25366 109.4222,120.53831 110.472,119.29178 C117.7111,110.74577 113.3281,99.74077 103.5538,99.5285 C103.5538,99.52844 103.5538,99.52855 103.5438,99.5285 L103.5458,99.5285 Z" id="path147-0-8-1-6-1-1-0-5-6-4-0"></path>
<path d="M197.5278,228.63076 C201.4375,228.54236 203.1908,223.9569 200.2951,220.39607 C199.8751,219.87668 199.8318,219.57861 200.601,220.07751 C202.5505,221.43551 206.2887,220.54277 206.4801,216.39114 C206.7166,211.27574 199.8549,209.80186 198.5666,215.24128 C198.4986,215.81519 198.0508,215.80209 198.1588,214.98746 C198.2763,212.77646 198.9391,210.70994 199.8502,208.69475 L195.2024,208.69475 C196.1135,210.70994 196.7763,212.77646 196.8938,214.98746 C197.0018,215.80209 196.554,215.81519 196.486,215.24128 C195.1977,209.80186 188.3361,211.27574 188.5725,216.39114 C188.7639,220.54277 192.5021,221.43551 194.4516,220.07751 C195.2208,219.57861 195.1775,219.87668 194.7575,220.39607 C191.8618,223.9569 193.6151,228.54231 197.5248,228.63076 C197.5258,228.63078 197.5248,228.63074 197.5248,228.63076 L197.5278,228.63076 Z" id="path147-6-9-8-7-0-5-6-7-4-6"></path>
<path d="M9.5728,17.4438 C5.663,17.5318 3.9098,22.1177 6.8054,25.6785 C7.2254,26.1979 7.2687,26.496 6.4996,25.9971 C4.55,24.6391 0.8119,25.5318 0.6205,29.6835 C0.384,34.7988 7.2456,36.2727 8.534,30.8333 C8.602,30.2594 9.0498,30.2725 8.9417,31.0871 C8.8243,33.2981 8.1614,35.3647 7.2503,37.3798 L11.8982,37.3798 C10.9871,35.3647 10.3242,33.2981 10.2068,31.0871 C10.0988,30.2725 10.5465,30.2594 10.6145,30.8333 C11.9029,36.2727 18.7645,34.7988 18.5281,29.6835 C18.3366,25.5318 14.5985,24.6391 12.6489,25.9971 C11.8798,26.496 11.9231,26.1979 12.3431,25.6785 C15.2387,22.1177 13.4855,17.5323 9.5758,17.4438 C9.5748,17.4438 9.5758,17.4438 9.5758,17.4438 L9.5728,17.4438 Z" id="path147-6-9-8-7-4-5-62-2-3-8"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

21
web/shuffle/faces/2_6.svg Normal file
View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(10.000000, 23.000000)" fill="#000000">
<g id="6" transform="translate(0.000000, 11.000000)" sketch:type="MSShapeGroup">
<path d="M155.305739,0.635367271 C145.531267,0.847567695 141.148379,11.8525897 148.387359,20.3986068 C149.437256,21.6452093 149.545556,22.3605107 147.622761,21.1632083 C142.748975,17.9040018 133.403601,20.0465061 132.925003,30.010426 C132.333904,42.2874506 149.487856,45.8247576 152.708647,32.7701315 C152.878746,31.3928288 153.998243,31.4242288 153.728244,33.3793328 C153.434545,38.6857434 151.777349,43.6453533 149.499556,48.481863 L161.119723,48.481863 C158.84213,43.6453533 157.184834,38.6857434 156.891135,33.3793328 C156.621236,31.4242288 157.740633,31.3928288 157.910632,32.7701315 C161.131523,45.8247576 178.285475,42.2874506 177.694376,30.010426 C177.215878,20.0465061 167.870404,17.9040018 162.996518,21.1632083 C161.073823,22.3605107 161.182123,21.6452093 162.23202,20.3986068 C169.471,11.8525897 165.088112,0.847567695 155.313739,0.635367271 C155.313739,0.63526727 155.313739,0.635367271 155.303739,0.635367271 L155.305739,0.635367271 Z" id="path147-0-8-1-6-13-2-5-7-1"></path>
<path d="M52.2352301,0.635367271 C42.4607577,0.847567695 38.0778701,11.8525897 45.3168496,20.3986068 C46.3667467,21.6452093 46.4750464,22.3605107 44.5522518,21.1632083 C39.6784655,17.9040018 30.3330919,20.0465061 29.8545932,30.010426 C29.2633949,42.2874506 46.4173465,45.8247576 49.6381375,32.7701315 C49.808237,31.3928288 50.9276338,31.4242288 50.6577346,33.3793328 C50.3640354,38.6857434 48.7068401,43.6453533 46.4290465,48.481863 L58.0492137,48.481863 C55.7715202,43.6453533 54.1143248,38.6857434 53.8206257,33.3793328 C53.5507264,31.4242288 54.6701233,31.3928288 54.8401228,32.7701315 C58.0610137,45.8247576 75.2149653,42.2874506 74.623767,30.010426 C74.1453683,20.0465061 64.7998947,17.9040018 59.9260084,21.1632083 C58.0032139,22.3605107 58.1116136,21.6452093 59.1615106,20.3986068 C66.4004902,11.8525897 62.0176025,0.847567695 52.2432301,0.635367271 C52.2432301,0.63526727 52.2432301,0.635367271 52.2332301,0.635367271 L52.2352301,0.635367271 Z" id="path147-0-8-1-6-75-2-83-8-8-7"></path>
<path d="M155.305739,246.268859 C145.531267,246.056598 141.148379,235.051576 148.387359,226.505539 C149.437256,225.259007 149.545556,224.543665 147.622761,225.741017 C142.748975,229.000214 133.403701,226.85764 132.925003,216.89372 C132.334004,204.616745 149.487856,201.079418 152.708647,214.134044 C152.878746,215.511407 153.998243,215.479977 153.728244,213.524883 C153.434545,208.218452 151.777349,203.258803 149.499556,198.422323 L161.119723,198.422323 C158.84213,203.258803 157.184834,208.218452 156.891135,213.524883 C156.621236,215.479977 157.740633,215.511407 157.910632,214.134044 C161.131523,201.079418 178.285475,204.616745 177.694376,216.89372 C177.215878,226.85764 167.870404,229.000214 162.996518,225.741017 C161.073823,224.543665 161.182123,225.259007 162.23202,226.505539 C169.471,235.051576 165.088112,246.056588 155.313739,246.268859 C155.313739,246.268919 155.313739,246.268809 155.303739,246.268859 L155.305739,246.268859 Z" id="path147-0-8-1-6-7-5-5-7-8-7-8"></path>
<path d="M52.2352301,246.268859 C42.4607577,246.056598 38.0778701,235.051576 45.3168496,226.505539 C46.3667467,225.259007 46.4750464,224.543665 44.5522518,225.741017 C39.6784655,229.000214 30.3330919,226.85764 29.8545932,216.89372 C29.2633949,204.616745 46.4173465,201.079418 49.6381375,214.134044 C49.808237,215.511407 50.9276338,215.479977 50.6577346,213.524883 C50.3640354,208.218452 48.7068401,203.258803 46.4290465,198.422323 L58.0492137,198.422323 C55.7715202,203.258803 54.1143248,208.218452 53.8206257,213.524883 C53.5507264,215.479977 54.6701233,215.511407 54.8401228,214.134044 C58.0610137,201.079418 75.2149653,204.616745 74.623767,216.89372 C74.1453683,226.85764 64.7998947,229.000214 59.9260084,225.741017 C58.0032139,224.543665 58.1116136,225.259007 59.1615106,226.505539 C66.4004902,235.051576 62.0176025,246.056588 52.2432301,246.268859 C52.2432301,246.268919 52.2432301,246.268809 52.2332301,246.268859 L52.2352301,246.268859 Z" id="path147-0-8-1-6-75-6-1-2-0-6-8"></path>
<path d="M155.305739,99.5288251 C145.531267,99.7410855 141.148379,110.746107 148.387359,119.292145 C149.437256,120.538677 149.545556,121.254029 147.622761,120.056676 C142.748975,116.79748 133.403601,118.940044 132.925003,128.903974 C132.334004,141.180938 149.487856,144.718265 152.708647,131.663639 C152.878746,130.286277 153.998143,130.317707 153.728244,132.272811 C153.434545,137.579231 151.777349,142.538881 149.499556,147.375361 L161.119723,147.375361 C158.84213,142.538881 157.184834,137.579231 156.891135,132.272811 C156.621236,130.317707 157.740633,130.286277 157.910632,131.663639 C161.131523,144.718265 178.285475,141.180938 177.694376,128.903974 C177.215878,118.940044 167.870404,116.79748 162.996518,120.056676 C161.073823,121.254029 161.182123,120.538677 162.23202,119.292145 C169.471,110.746107 165.088112,99.7410955 155.313739,99.5288251 C155.313739,99.5287651 155.313739,99.5288751 155.303739,99.5288251 L155.305739,99.5288251 Z" id="path147-0-8-1-6-7-5-7-3-0-9-6-4"></path>
<path d="M52.2352301,99.5288251 C42.4607577,99.7410855 38.0778701,110.746107 45.3168496,119.292145 C46.3667467,120.538677 46.4750464,121.254029 44.5522518,120.056676 C39.6784655,116.79748 30.3330919,118.940044 29.8545932,128.903974 C29.2633949,141.180938 46.4173465,144.718265 49.6381375,131.663639 C49.808237,130.286277 50.9276338,130.317707 50.6577346,132.272811 C50.3640354,137.579231 48.7068401,142.538881 46.4290465,147.375361 L58.0492137,147.375361 C55.7715202,142.538881 54.1143248,137.579231 53.8206257,132.272811 C53.5507264,130.317707 54.6701233,130.286277 54.8401228,131.663639 C58.0610137,144.718265 75.2149653,141.180938 74.623767,128.903974 C74.1453683,118.940044 64.7998947,116.79748 59.9260084,120.056676 C58.0032139,121.254029 58.1116136,120.538677 59.1615106,119.292145 C66.4004902,110.746107 62.0176025,99.7410955 52.2432301,99.5288251 C52.2432301,99.5287651 52.2432301,99.5288751 52.2332301,99.5288251 L52.2352301,99.5288251 Z" id="path147-0-8-1-6-75-6-6-5-3-0-0-2"></path>
<path d="M197.75232,228.631343 C201.662009,228.542943 203.415304,223.957474 200.519612,220.396637 C200.099613,219.877236 200.056313,219.579175 200.825511,220.078076 C202.775006,221.436079 206.513195,220.543327 206.704595,216.391699 C206.941094,211.276289 200.079413,209.802406 198.791117,215.241836 C198.723117,215.815738 198.275318,215.802648 198.383318,214.988016 C198.500818,212.777012 199.163616,210.710487 200.074713,208.695283 L195.426926,208.695283 C196.338024,210.710487 197.000822,212.777012 197.118322,214.988016 C197.226321,215.802648 196.778523,215.815738 196.710523,215.241836 C195.422226,209.802406 188.560646,211.276289 188.797045,216.391699 C188.988444,220.543327 192.726634,221.436079 194.676128,220.078076 C195.445326,219.579175 195.402026,219.877236 194.982028,220.396637 C192.086336,223.957474 193.839631,228.542883 197.74932,228.631343 C197.75032,228.631363 197.74932,228.631323 197.74932,228.631343 L197.75232,228.631343 Z" id="path147-6-9-8-7-0-5-6-4-2-8"></path>
<path d="M9.79784981,17.4440009 C5.88806084,17.5320011 4.13476578,22.1178102 7.03045761,25.6787174 C7.45045643,26.1981184 7.49375631,26.496119 6.72455848,25.997218 C4.77506397,24.6392153 1.03687452,25.5320171 0.845475056,29.6836254 C0.609075722,34.7990356 7.47065637,36.2729385 8.75895274,30.8335277 C8.82695255,30.2596265 9.27475129,30.2727265 9.16675159,31.0873282 C9.04925192,33.2983326 8.38645379,35.3648367 7.47535636,37.3800408 L12.1231433,37.3800408 C11.2120458,35.3648367 10.5492477,33.2983326 10.431748,31.0873282 C10.3237483,30.2727265 10.7715471,30.2596265 10.8395469,30.8335277 C12.1278432,36.2729385 18.9895239,34.7990356 18.7530246,29.6836254 C18.5616251,25.5320171 14.8234356,24.6392153 12.8739411,25.997218 C12.1047433,26.496119 12.1480432,26.1981184 12.568042,25.6787174 C15.4637338,22.1178102 13.7104388,17.5324011 9.8008498,17.4440009 C9.7998498,17.4440009 9.8008498,17.4440009 9.8008498,17.4440009 L9.79784981,17.4440009 Z" id="path147-6-9-8-7-4-5-62-0-2-9"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

22
web/shuffle/faces/2_7.svg Normal file
View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(10.000000, 23.000000)" fill="#000000">
<g id="7" transform="translate(1.000000, 11.000000)" sketch:type="MSShapeGroup">
<path d="M154.530739,0.635367271 C144.756266,0.847567695 140.373379,11.8525897 147.612358,20.3987068 C148.662255,21.6452093 148.770555,22.3605107 146.847861,21.1632083 C141.973974,17.9040018 132.628601,20.0466061 132.150002,30.010526 C131.558904,42.2874506 148.712855,45.8247576 151.933746,32.7701315 C152.103746,31.3928288 153.223243,31.4242288 152.953243,33.3793328 C152.659544,38.6857434 151.002349,43.6454533 148.724555,48.481863 L160.344822,48.481863 C158.067129,43.6454533 156.409834,38.6857434 156.116134,33.3793328 C155.846235,31.4242288 156.965632,31.3928288 157.135631,32.7701315 C160.356522,45.8247576 177.510474,42.2874506 176.919376,30.010526 C176.440877,20.0466061 167.095403,17.9040018 162.221517,21.1632083 C160.298823,22.3605107 160.407122,21.6452093 161.457019,20.3987068 C168.695999,11.8525897 164.313111,0.847567695 154.538739,0.635367271 C154.538739,0.63526727 154.538739,0.635367271 154.528739,0.635367271 L154.530739,0.635367271 Z" id="path147-0-8-1-6-13-2-0-1-5"></path>
<path d="M51.4602295,0.635367271 C41.6857571,0.847567695 37.3028694,11.8525897 44.541849,20.3987068 C45.5917461,21.6452093 45.7000457,22.3605107 43.7772512,21.1632083 C38.9034649,17.9040018 29.5581913,20.0466061 29.0794926,30.010526 C28.4884943,42.2874506 45.6423459,45.8247576 48.8632368,32.7701315 C49.0332363,31.3928288 50.1526332,31.4242288 49.882734,33.3793328 C49.5890348,38.6857434 47.9318395,43.6454533 45.6540459,48.481863 L57.2743131,48.481863 C54.9966195,43.6454533 53.3393242,38.6857434 53.045625,33.3793328 C52.7757258,31.4242288 53.8951226,31.3928288 54.0651222,32.7701315 C57.2860131,45.8247576 74.4399647,42.2874506 73.8488664,30.010526 C73.3703677,20.0466061 64.0248941,17.9040018 59.1510078,21.1632083 C57.2283132,22.3605107 57.3366129,21.6452093 58.38651,20.3987068 C65.6254896,11.8525897 61.2426019,0.847567695 51.4682295,0.635367271 C51.4682295,0.63526727 51.4682295,0.635367271 51.4582295,0.635367271 L51.4602295,0.635367271 Z" id="path147-0-8-1-6-75-2-83-2-0-7"></path>
<path d="M154.530739,246.268879 C144.756266,246.056618 140.373379,235.051586 147.612358,226.505559 C148.662255,225.259027 148.770555,224.543675 146.847861,225.741027 C141.973974,229.000224 132.628701,226.85766 132.150002,216.89373 C131.559004,204.616765 148.712855,201.079438 151.933746,214.134064 C152.103746,215.511427 153.223243,215.479997 152.953243,213.524893 C152.659544,208.218472 151.002349,203.258823 148.724555,198.422333 L160.344822,198.422333 C158.067129,203.258823 156.409834,208.218472 156.116134,213.524893 C155.846235,215.479997 156.965632,215.511427 157.135631,214.134064 C160.356522,201.079438 177.510474,204.616765 176.919376,216.89373 C176.440877,226.85766 167.095403,229.000224 162.221517,225.741027 C160.298823,224.543675 160.407122,225.259027 161.457019,226.505559 C168.695999,235.051586 164.313111,246.056608 154.538739,246.268879 C154.538739,246.268939 154.538739,246.268829 154.528739,246.268879 L154.530739,246.268879 Z" id="path147-0-8-1-6-7-5-5-7-7-7-6"></path>
<path d="M51.4602295,246.268879 C41.6857571,246.056618 37.3028694,235.051586 44.541849,226.505559 C45.5917461,225.259027 45.7000457,224.543675 43.7772512,225.741027 C38.9034649,229.000224 29.5581913,226.85766 29.0794926,216.89373 C28.4884943,204.616765 45.6423459,201.079438 48.8632368,214.134064 C49.0332363,215.511427 50.1526332,215.479997 49.882734,213.524893 C49.5890348,208.218472 47.9318395,203.258823 45.6540459,198.422333 L57.2743131,198.422333 C54.9966195,203.258823 53.3393242,208.218472 53.045625,213.524893 C52.7757258,215.479997 53.8951226,215.511427 54.0651222,214.134064 C57.2860131,201.079438 74.4399647,204.616765 73.8488664,216.89373 C73.3703677,226.85766 64.0248941,229.000224 59.1510078,225.741027 C57.2283132,224.543675 57.3366129,225.259027 58.38651,226.505559 C65.6254896,235.051586 61.2426019,246.056608 51.4682295,246.268879 C51.4682295,246.268939 51.4682295,246.268829 51.4582295,246.268879 L51.4602295,246.268879 Z" id="path147-0-8-1-6-75-6-1-2-9-1-9"></path>
<path d="M102.995684,50.0822662 C93.2212117,50.2944666 88.8384241,61.2995286 96.0773037,69.8455657 C97.1272007,71.0920982 97.2356004,71.8074396 95.3127058,70.6100872 C90.4390196,67.3508907 81.0936459,69.493465 80.6150473,79.4573749 C80.023949,91.7343495 97.1778006,95.2716765 100.398591,82.2170504 C100.568691,80.8396877 101.688088,80.8711177 101.418189,82.8262117 C101.124489,88.1326423 99.4672941,93.0922922 97.1895005,97.9287719 L108.809668,97.9287719 C106.532074,93.0922922 104.874779,88.1326423 104.58108,82.8262117 C104.31118,80.8711177 105.430577,80.8396877 105.600577,82.2170504 C108.821468,95.2716765 125.975419,91.7343495 125.384321,79.4573749 C124.905822,69.493465 115.560349,67.3508907 110.686462,70.6100872 C108.763768,71.8074396 108.872068,71.0920982 109.921965,69.8455657 C117.160944,61.2995286 112.778057,50.2944666 103.003684,50.0822662 C103.003684,50.0821662 103.003684,50.0822662 102.993684,50.0822662 L102.995684,50.0822662 Z" id="path147-0-8-1-6-2-00-7-2-3-4"></path>
<path d="M154.530739,99.5288451 C144.756266,99.7410955 140.373379,110.746127 147.612358,119.292165 C148.662255,120.538697 148.770555,121.254039 146.847861,120.056686 C141.973974,116.79749 132.628601,118.940064 132.150002,128.903984 C131.559004,141.180958 148.712855,144.718285 151.933746,131.663659 C152.103746,130.286297 153.223143,130.317727 152.953243,132.272821 C152.659544,137.579251 151.002349,142.538901 148.724555,147.375381 L160.344822,147.375381 C158.067129,142.538901 156.409834,137.579251 156.116134,132.272821 C155.846235,130.317727 156.965632,130.286297 157.135631,131.663659 C160.356522,144.718285 177.510474,141.180958 176.919376,128.903984 C176.440877,118.940064 167.095403,116.79749 162.221517,120.056686 C160.298823,121.254039 160.407122,120.538697 161.457019,119.292165 C168.695999,110.746127 164.313111,99.7411055 154.538739,99.5288451 C154.538739,99.5287851 154.538739,99.5288951 154.528739,99.5288451 L154.530739,99.5288451 Z" id="path147-0-8-1-6-7-5-7-3-0-1-7-4"></path>
<path d="M51.4602295,99.5288451 C41.6857571,99.7410955 37.3028694,110.746127 44.541849,119.292165 C45.5917461,120.538697 45.7000457,121.254039 43.7772512,120.056686 C38.9034649,116.79749 29.5581913,118.940064 29.0795926,128.903984 C28.4884943,141.180958 45.6423459,144.718285 48.8632368,131.663659 C49.0332363,130.286297 50.1526332,130.317727 49.882734,132.272821 C49.5890348,137.579251 47.9318395,142.538901 45.6540459,147.375381 L57.2743131,147.375381 C54.9966195,142.538901 53.3393242,137.579251 53.045625,132.272821 C52.7757258,130.317727 53.8951226,130.286297 54.0651222,131.663659 C57.2860131,144.718285 74.4399647,141.180958 73.8488664,128.903984 C73.3703677,118.940064 64.0248941,116.79749 59.1510078,120.056686 C57.2283132,121.254039 57.3366129,120.538697 58.38651,119.292165 C65.6254896,110.746127 61.2426019,99.7411055 51.4682295,99.5288451 C51.4682295,99.5287851 51.4682295,99.5288951 51.4582295,99.5288451 L51.4602295,99.5288451 Z" id="path147-0-8-1-6-75-6-6-5-3-9-6-0"></path>
<path d="M196.977319,228.631363 C200.887008,228.542963 202.640303,223.957484 199.744711,220.396647 C199.324613,219.877256 199.281313,219.579185 200.05051,220.078086 C202.000105,221.436099 205.738194,220.543347 205.929594,216.391709 C206.166093,211.276309 199.304413,209.802426 198.016116,215.241846 C197.948116,215.815758 197.500318,215.802658 197.608317,214.988036 C197.725817,212.777022 198.388615,210.710497 199.299813,208.695303 L194.651926,208.695303 C195.563023,210.710497 196.225821,212.777022 196.343321,214.988036 C196.451321,215.802658 196.003522,215.815758 195.935522,215.241846 C194.647226,209.802426 187.785645,211.276309 188.022044,216.391709 C188.213444,220.543347 191.951633,221.436099 193.901228,220.078086 C194.670326,219.579185 194.627026,219.877256 194.207027,220.396647 C191.311435,223.957484 193.06463,228.542903 196.974319,228.631363 C196.975319,228.631383 196.974319,228.631343 196.974319,228.631363 L196.977319,228.631363 Z" id="path147-6-9-8-7-0-5-6-8-4-3"></path>
<path d="M9.02284918,17.4440009 C5.1131602,17.5320011 3.35986515,22.1179102 6.25545698,25.6787174 C6.6754558,26.1981184 6.71875567,26.496219 5.94965784,25.997318 C3.99996334,24.6393153 0.261973881,25.5320171 0.0705744209,29.6836254 C-0.165924912,34.7990356 6.69575574,36.2729385 7.98395211,30.8335277 C8.05195191,30.2596265 8.49985065,30.2727265 8.39185095,31.0873282 C8.27425129,33.2983326 7.61155316,35.3648367 6.70035572,37.3800408 L11.3482426,37.3800408 C10.4371452,35.3648367 9.77434706,33.2983326 9.65674739,31.0873282 C9.54884769,30.2727265 9.99654643,30.2596265 10.0646462,30.8335277 C11.3528426,36.2729385 18.2145233,34.7990356 17.9780239,29.6836254 C17.7866245,25.5320171 14.048535,24.6393153 12.0989405,25.997318 C11.3298427,26.496219 11.3731425,26.1981184 11.7930414,25.6787174 C14.6887332,22.1179102 12.9354381,17.5325011 9.02584917,17.4440009 L9.02584917,17.4440009 L9.02284918,17.4440009 Z" id="path147-6-9-8-7-4-5-62-5-2-9"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

23
web/shuffle/faces/2_8.svg Normal file
View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(10.000000, 23.000000)" fill="#000000">
<g id="8" transform="translate(0.000000, 11.000000)" sketch:type="MSShapeGroup">
<path d="M154.755841,0.635367271 C144.981369,0.847567695 140.598481,11.8525897 147.837461,20.3987068 C148.887358,21.6452093 148.995657,22.3605107 147.072863,21.1632083 C142.199076,17.9040018 132.853703,20.0466061 132.375104,30.010526 C131.784006,42.2874506 148.937957,45.8247576 152.158848,32.7701315 C152.328848,31.3928288 153.448345,31.4242288 153.178345,33.3793328 C152.884646,38.6857434 151.227451,43.6453533 148.949657,48.481863 L160.569925,48.481863 C158.292231,43.6453533 156.634936,38.6857434 156.341237,33.3793328 C156.071337,31.4242288 157.190734,31.3928288 157.360734,32.7701315 C160.581625,45.8247576 177.735576,42.2874506 177.144478,30.010526 C176.665979,20.0466061 167.320506,17.9040018 162.446619,21.1632083 C160.523925,22.3605107 160.632224,21.6452093 161.682121,20.3987068 C168.921101,11.8525897 164.538213,0.847567695 154.763841,0.635367271 C154.763841,0.63526727 154.763841,0.635367271 154.753841,0.635367271 L154.755841,0.635367271 Z" id="path147-0-8-1-6-13-2-2-3-8"></path>
<path d="M51.6853317,0.635367271 C41.9108593,0.847567695 37.5279716,11.8525897 44.7669512,20.3987068 C45.8168482,21.6452093 45.9251479,22.3605107 44.0023534,21.1632083 C39.1285671,17.9040018 29.7832935,20.0466061 29.3045948,30.010526 C28.7135965,42.2874506 45.8674481,45.8247576 49.088239,32.7701315 C49.2583385,31.3928288 50.3777354,31.4242288 50.1078361,33.3793328 C49.814137,38.6857434 48.1569416,43.6453533 45.8791481,48.481863 L57.4993153,48.481863 C55.2217217,43.6453533 53.5644264,38.6857434 53.2707272,33.3793328 C53.000828,31.4242288 54.1202248,31.3928288 54.2902243,32.7701315 C57.5111153,45.8247576 74.6650669,42.2874506 74.0739686,30.010526 C73.5954699,20.0466061 64.2499963,17.9040018 59.37611,21.1632083 C57.4533154,22.3605107 57.5617151,21.6452093 58.6116122,20.3987068 C65.8505917,11.8525897 61.4677041,0.847567695 51.6933317,0.635367271 C51.6933317,0.63526727 51.6933317,0.635367271 51.6833317,0.635367271 L51.6853317,0.635367271 Z" id="path147-0-8-1-6-75-2-83-9-8-9"></path>
<path d="M154.755841,246.268869 C144.981369,246.056618 140.598481,235.051586 147.837461,226.505549 C148.887358,225.259017 148.995657,224.543675 147.072863,225.741027 C142.199076,229.000224 132.853803,226.85765 132.375104,216.89373 C131.784106,204.616755 148.937957,201.079428 152.158848,214.134054 C152.328848,215.511417 153.448345,215.479987 153.178345,213.524893 C152.884646,208.218462 151.227451,203.258813 148.949657,198.422333 L160.569925,198.422333 C158.292231,203.258813 156.634936,208.218462 156.341237,213.524893 C156.071337,215.479987 157.190734,215.511417 157.360734,214.134054 C160.581625,201.079428 177.735576,204.616755 177.144478,216.89373 C176.665979,226.85765 167.320506,229.000224 162.446619,225.741027 C160.523925,224.543675 160.632224,225.259017 161.682121,226.505549 C168.921101,235.051586 164.538213,246.056608 154.763841,246.268869 C154.763841,246.268929 154.763841,246.268819 154.753841,246.268869 L154.755841,246.268869 Z" id="path147-0-8-1-6-7-5-5-7-62-3-0"></path>
<path d="M51.6853317,246.268869 C41.9108593,246.056618 37.5279716,235.051586 44.7669512,226.505549 C45.8168482,225.259017 45.9251479,224.543675 44.0023534,225.741027 C39.1285671,229.000224 29.7832935,226.85765 29.3045948,216.89373 C28.7135965,204.616755 45.8674481,201.079428 49.088239,214.134054 C49.2583385,215.511417 50.3777354,215.479987 50.1078361,213.524893 C49.814137,208.218462 48.1569416,203.258813 45.8791481,198.422333 L57.4993153,198.422333 C55.2217217,203.258813 53.5644264,208.218462 53.2707272,213.524893 C53.000828,215.479987 54.1202248,215.511417 54.2902243,214.134054 C57.5111153,201.079428 74.6650669,204.616755 74.0739686,216.89373 C73.5954699,226.85765 64.2499963,229.000224 59.37611,225.741027 C57.4533154,224.543675 57.5617151,225.259017 58.6116122,226.505549 C65.8505917,235.051586 61.4677041,246.056608 51.6933317,246.268869 C51.6933317,246.268929 51.6933317,246.268819 51.6833317,246.268869 L51.6853317,246.268869 Z" id="path147-0-8-1-6-75-6-1-2-41-4-5"></path>
<path d="M103.220786,50.0822662 C93.4463139,50.2944666 89.0635263,61.2995286 96.3024059,69.8455557 C97.3523029,71.0920882 97.4607026,71.8074396 95.537808,70.6100872 C90.6641218,67.3508907 81.3187481,69.493455 80.8401495,79.4573749 C80.2490511,91.7343395 97.4029028,95.2716665 100.623694,82.2170404 C100.793793,80.8396777 101.91319,80.8711077 101.643291,82.8262117 C101.349592,88.1326323 99.6923963,93.0922822 97.4146027,97.9287719 L109.03477,97.9287719 C106.757076,93.0922822 105.099881,88.1326323 104.806182,82.8262117 C104.536283,80.8711077 105.655679,80.8396777 105.825679,82.2170404 C109.04657,95.2716665 126.200522,91.7343395 125.609323,79.4573749 C125.130925,69.493455 115.785451,67.3508907 110.911565,70.6100872 C108.98877,71.8074396 109.09717,71.0920882 110.147067,69.8455557 C117.386046,61.2995286 113.003059,50.2944666 103.228786,50.0822662 C103.228786,50.0821662 103.228786,50.0822662 103.218786,50.0822662 L103.220786,50.0822662 Z" id="path147-0-8-1-6-2-00-7-5-5-3"></path>
<path d="M154.755841,99.5288351 C144.981369,99.7410955 140.598481,110.746127 147.837461,119.292155 C148.887358,120.538687 148.995657,121.254039 147.072863,120.056686 C142.199076,116.79749 132.853703,118.940054 132.375104,128.903984 C131.784106,141.180948 148.937957,144.718275 152.158848,131.663649 C152.328848,130.286287 153.448245,130.317717 153.178345,132.272821 C152.884646,137.579241 151.227451,142.538891 148.949657,147.375381 L160.569925,147.375381 C158.292231,142.538891 156.634936,137.579241 156.341237,132.272821 C156.071337,130.317717 157.190734,130.286287 157.360734,131.663649 C160.581625,144.718275 177.735576,141.180948 177.144478,128.903984 C176.665979,118.940054 167.320506,116.79749 162.446619,120.056686 C160.523925,121.254039 160.632224,120.538687 161.682121,119.292155 C168.921101,110.746127 164.538213,99.7411055 154.763841,99.5288351 C154.763841,99.5287751 154.763841,99.5288851 154.753841,99.5288351 L154.755841,99.5288351 Z" id="path147-0-8-1-6-7-5-7-3-0-4-4-6"></path>
<path d="M51.6853317,99.5288351 C41.9108593,99.7410955 37.5279716,110.746127 44.7669512,119.292155 C45.8168482,120.538687 45.9251479,121.254039 44.0023534,120.056686 C39.1285671,116.79749 29.7832935,118.940054 29.3046948,128.903984 C28.7135965,141.180948 45.8674481,144.718275 49.088239,131.663649 C49.2583385,130.286287 50.3777354,130.317717 50.1078361,132.272821 C49.814137,137.579241 48.1569416,142.538891 45.8791481,147.375381 L57.4993153,147.375381 C55.2217217,142.538891 53.5644264,137.579241 53.2707272,132.272821 C53.000828,130.317717 54.1202248,130.286287 54.2902243,131.663649 C57.5111153,144.718275 74.6650669,141.180948 74.0739686,128.903984 C73.5954699,118.940054 64.2499963,116.79749 59.37611,120.056686 C57.4533154,121.254039 57.5617151,120.538687 58.6116122,119.292155 C65.8505917,110.746127 61.4677041,99.7411055 51.6933317,99.5288351 C51.6933317,99.5287751 51.6933317,99.5288851 51.6833317,99.5288351 L51.6853317,99.5288351 Z" id="path147-0-8-1-6-75-6-6-5-3-2-4-8"></path>
<path d="M103.220786,196.82211 C93.4464139,196.609859 89.0634263,185.604837 96.3025059,177.0588 C97.3524029,175.812268 97.4607026,175.096926 95.537908,176.294279 C90.6640218,179.553475 81.3186481,177.410901 80.8400495,167.446981 C80.2489511,155.169996 97.4030028,151.632669 100.623694,164.687305 C100.793893,166.064668 101.91319,166.033238 101.643291,164.078144 C101.349592,158.771714 99.6924963,153.812054 97.4147027,148.975574 L109.03477,148.975574 C106.757076,153.812054 105.099881,158.771714 104.806182,164.078144 C104.536383,166.033238 105.655679,166.064668 105.825679,164.687305 C109.04657,151.632669 126.200522,155.169996 125.609323,167.446981 C125.130925,177.410901 115.785451,179.553475 110.911565,176.294279 C108.98877,175.096926 109.09717,175.812268 110.147067,177.0588 C117.386046,185.604837 113.003159,196.609849 103.228886,196.82211 C103.228886,196.82217 103.228886,196.82206 103.218886,196.82211 L103.220786,196.82211 Z" id="path147-0-8-1-6-2-0-8-6-42-9-6"></path>
<path d="M197.202421,228.631353 C201.11211,228.542953 202.865405,223.957484 199.969814,220.396647 C199.549715,219.877246 199.506415,219.579185 200.275613,220.078086 C202.225107,221.436089 205.963297,220.543347 206.154696,216.391709 C206.391195,211.276299 199.529515,209.802416 198.241218,215.241846 C198.173219,215.815758 197.72542,215.802658 197.83342,214.988026 C197.950919,212.777022 198.613717,210.710497 199.524815,208.695293 L194.877028,208.695293 C195.788125,210.710497 196.450923,212.777022 196.568423,214.988026 C196.676423,215.802658 196.228624,215.815758 196.160624,215.241846 C194.872328,209.802416 188.010747,211.276299 188.247147,216.391709 C188.438546,220.543347 192.176736,221.436089 194.12623,220.078086 C194.895428,219.579185 194.852128,219.877246 194.432129,220.396647 C191.536537,223.957484 193.289732,228.542903 197.199421,228.631353 C197.199421,228.631373 197.199421,228.631333 197.199421,228.631353 L197.202421,228.631353 Z" id="path147-6-9-8-7-0-5-6-1-6-9"></path>
<path d="M9.24795136,17.4440009 C5.33816239,17.5320011 3.58496733,22.1179102 6.48055916,25.6787174 C6.90055798,26.1981184 6.94375786,26.496119 6.17476003,25.997218 C4.22506553,24.6392153 0.487076066,25.5320171 0.295576606,29.6836254 C0.0591772731,34.7990356 6.92075792,36.2729385 8.20905429,30.8335277 C8.2770541,30.2596265 8.72495284,30.2727265 8.61685314,31.0873282 C8.49935347,33.2983326 7.83655534,35.3648367 6.92545791,37.3800408 L11.5733448,37.3800408 C10.6622474,35.3648367 9.99934924,33.2983326 9.88184957,31.0873282 C9.77394988,30.2727265 10.2216486,30.2596265 10.2896484,30.8335277 C11.5779448,36.2729385 18.4396254,34.7990356 18.2031261,29.6836254 C18.0117266,25.5320171 14.2736372,24.6392153 12.3240427,25.997218 C11.5549449,26.496119 11.5982447,26.1981184 12.0181435,25.6787174 C14.9138354,22.1179102 13.1605403,17.5325011 9.25095135,17.4440009 L9.25095135,17.4440009 L9.24795136,17.4440009 Z" id="path147-6-9-8-7-4-5-62-4-0-0"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

24
web/shuffle/faces/2_9.svg Normal file
View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Clubs" sketch:type="MSLayerGroup" transform="translate(10.000000, 23.000000)" fill="#000000">
<g id="9" transform="translate(0.000000, 11.000000)" sketch:type="MSShapeGroup">
<path d="M154.98094,0.635367271 C145.206468,0.847567695 140.82348,11.8525897 148.06256,20.3986068 C149.112457,21.6452093 149.220757,22.3605107 147.297962,21.1632083 C142.424176,17.9040018 133.078802,20.0465061 132.600204,30.010426 C132.009105,42.2874506 149.163057,45.8247576 152.383848,32.7701315 C152.553947,31.3928288 153.673444,31.4242288 153.403445,33.3793328 C153.109746,38.6857434 151.45255,43.6453533 149.174757,48.481863 L160.794924,48.481863 C158.51723,43.6453533 156.860035,38.6857434 156.566336,33.3793328 C156.296437,31.4242288 157.415834,31.3928288 157.585833,32.7701315 C160.806724,45.8247576 177.960676,42.2874506 177.369477,30.010426 C176.891079,20.0465061 167.545605,17.9040018 162.671719,21.1632083 C160.748924,22.3605107 160.857324,21.6452093 161.907121,20.3986068 C169.1462,11.8525897 164.763213,0.847567695 154.98894,0.635367271 C154.98894,0.63526727 154.98894,0.635367271 154.97894,0.635367271 L154.98094,0.635367271 Z" id="path147-0-8-1-6-13-2-9-8-8"></path>
<path d="M51.9104311,0.635367271 C42.1359586,0.847567695 37.752971,11.8525897 44.9920506,20.3986068 C46.0419476,21.6452093 46.1502473,22.3605107 44.2274527,21.1632083 C39.3536665,17.9040018 30.0083928,20.0465061 29.5296942,30.010426 C28.9385958,42.2874506 46.0925475,45.8247576 49.3133384,32.7701315 C49.4834379,31.3928288 50.6027347,31.4242288 50.3329355,33.3793328 C50.0392363,38.6857434 48.382041,43.6453533 46.1042474,48.481863 L57.7244147,48.481863 C55.4467211,43.6453533 53.7895258,38.6857434 53.4958266,33.3793328 C53.2259273,31.4242288 54.3453242,31.3928288 54.5153237,32.7701315 C57.7362146,45.8247576 74.8901662,42.2874506 74.2989679,30.010426 C73.8205693,20.0465061 64.4750956,17.9040018 59.6012094,21.1632083 C57.6784148,22.3605107 57.7867145,21.6452093 58.8366115,20.3986068 C66.0756911,11.8525897 61.6927035,0.847567695 51.918331,0.635367271 C51.918331,0.63526727 51.918331,0.635367271 51.9083311,0.635367271 L51.9104311,0.635367271 Z" id="path147-0-8-1-6-75-2-83-3-5-0"></path>
<path d="M154.98094,246.268859 C145.206468,246.056598 140.82348,235.051576 148.06256,226.505539 C149.112457,225.259007 149.220757,224.543665 147.297962,225.741017 C142.424176,229.000214 133.078802,226.85764 132.600204,216.89372 C132.009205,204.616745 149.163057,201.079418 152.383848,214.134044 C152.553947,215.511407 153.673444,215.479977 153.403445,213.524883 C153.109746,208.218452 151.45255,203.258803 149.174757,198.422323 L160.794924,198.422323 C158.51723,203.258803 156.860035,208.218452 156.566336,213.524883 C156.296437,215.479977 157.415834,215.511407 157.585833,214.134044 C160.806724,201.079418 177.960676,204.616745 177.369477,216.89372 C176.891079,226.85764 167.545605,229.000214 162.671719,225.741017 C160.748924,224.543665 160.857324,225.259007 161.907121,226.505539 C169.1462,235.051576 164.763213,246.056588 154.98894,246.268859 C154.98894,246.268919 154.98894,246.268809 154.97894,246.268859 L154.98094,246.268859 Z" id="path147-0-8-1-6-7-5-5-7-63-0-4"></path>
<path d="M51.9104311,246.268859 C42.1359586,246.056598 37.752971,235.051576 44.9920506,226.505539 C46.0419476,225.259007 46.1502473,224.543665 44.2274527,225.741017 C39.3536665,229.000214 30.0083928,226.85764 29.5296942,216.89372 C28.9385958,204.616745 46.0925475,201.079418 49.3133384,214.134044 C49.4834379,215.511407 50.6027347,215.479977 50.3329355,213.524883 C50.0392363,208.218452 48.382041,203.258803 46.1042474,198.422323 L57.7244147,198.422323 C55.4467211,203.258803 53.7895258,208.218452 53.4958266,213.524883 C53.2259273,215.479977 54.3453242,215.511407 54.5153237,214.134044 C57.7362146,201.079418 74.8901662,204.616745 74.2989679,216.89372 C73.8205693,226.85764 64.4750956,229.000214 59.6012094,225.741017 C57.6784148,224.543665 57.7867145,225.259007 58.8366115,226.505539 C66.0756911,235.051576 61.6927035,246.056588 51.918331,246.268859 C51.918331,246.268919 51.918331,246.268809 51.9083311,246.268859 L51.9104311,246.268859 Z" id="path147-0-8-1-6-75-6-1-2-46-5-0"></path>
<path d="M103.445686,99.5288251 C93.6712133,99.7410855 89.2883256,110.746107 96.5273052,119.292145 C97.5773023,120.538677 97.685602,121.254029 95.7627074,120.056676 C90.8890211,116.79748 81.5435475,118.940044 81.0650488,128.903974 C80.4739505,141.180938 97.6278021,144.718265 100.848593,131.663639 C101.018693,130.286277 102.137989,130.317707 101.86819,132.272811 C101.574491,137.579231 99.9173957,142.538881 97.6396021,147.375361 L109.259669,147.375361 C106.981976,142.538881 105.32478,137.579231 105.031081,132.272811 C104.761182,130.317707 105.880579,130.286277 106.050578,131.663639 C109.271469,144.718265 126.425421,141.180938 125.834223,128.903974 C125.355824,118.940044 116.01035,116.79748 111.136464,120.056676 C109.213669,121.254029 109.321969,120.538677 110.371866,119.292145 C117.610946,110.746107 113.227958,99.7410955 103.453686,99.5288251 C103.453686,99.5287651 103.453686,99.5288751 103.443686,99.5288251 L103.445686,99.5288251 Z" id="path147-0-8-1-6-1-1-0-5-61-2-0"></path>
<path d="M197.427421,228.631343 C201.33711,228.542943 203.090505,223.957474 200.194813,220.396637 C199.774814,219.877236 199.731514,219.579175 200.500712,220.078076 C202.450207,221.436079 206.188396,220.543327 206.379795,216.391699 C206.616195,211.276289 199.754514,209.802406 198.466318,215.241836 C198.398318,215.815738 197.950519,215.802648 198.058419,214.988016 C198.176019,212.777012 198.838817,210.710487 199.749814,208.695283 L195.102127,208.695283 C196.013225,210.710487 196.676023,212.777012 196.793522,214.988016 C196.901522,215.802648 196.453723,215.815738 196.385624,215.241836 C195.097427,209.802406 188.235747,211.276289 188.472246,216.391699 C188.663645,220.543327 192.401735,221.436079 194.351329,220.078076 C195.120527,219.579175 195.077227,219.877236 194.657229,220.396637 C191.761537,223.957474 193.514832,228.542883 197.424421,228.631343 C197.424421,228.631363 197.424421,228.631323 197.424421,228.631343 L197.427421,228.631343 Z" id="path147-6-9-8-7-0-5-6-5-2-8"></path>
<path d="M51.9104311,66.5643191 C42.1360586,66.7765796 37.753071,77.7816016 44.9920506,86.3276387 C46.0419476,87.5741711 46.1503473,88.2895226 44.2275527,87.0921702 C39.3537665,83.8329737 30.0083928,85.975538 29.5297942,95.9394679 C28.9385958,108.216432 46.0926475,111.75376 49.3134384,98.6991334 C49.4835379,97.3217706 50.6027347,97.3532007 50.3330355,99.3083046 C50.0393363,104.614725 48.382141,109.574375 46.1043474,114.410855 L57.7244147,114.410855 C55.4467211,109.574375 53.7895258,104.614725 53.4958266,99.3083046 C53.2259273,97.3532007 54.3453242,97.3217706 54.5153237,98.6991334 C57.7362146,111.75376 74.8901662,108.216432 74.2989679,95.9394679 C73.8205693,85.975538 64.4750956,83.8329737 59.6012094,87.0921702 C57.6784148,88.2895226 57.7867145,87.5741711 58.8366115,86.3276387 C66.0756911,77.7816016 61.6927035,66.7765896 51.918331,66.5643191 C51.918331,66.5642591 51.918331,66.5643691 51.9083311,66.5643191 L51.9104311,66.5643191 Z" id="path147-0-8-1-6-75-2-9-77-4-4-2"></path>
<path d="M51.9104311,180.339857 C42.1359586,180.127606 37.752971,169.122564 44.9920506,160.576527 C46.0419476,159.329995 46.1502473,158.614653 44.2274527,159.812006 C39.3536665,163.071202 30.0083928,160.928628 29.5296942,150.964708 C28.9385958,138.687733 46.0925475,135.150406 49.3133384,148.205032 C49.4834379,149.582395 50.6027347,149.550965 50.3329355,147.595871 C50.0392363,142.289441 48.382041,137.329791 46.1042474,132.493311 L57.7244147,132.493311 C55.4467211,137.329791 53.7895258,142.289441 53.4958266,147.595871 C53.2259273,149.550965 54.3453242,149.582395 54.5153237,148.205032 C57.7362146,135.150406 74.8901662,138.687733 74.2989679,150.964708 C73.8205693,160.928628 64.4750956,163.071202 59.6012094,159.812006 C57.6784148,158.614653 57.7867145,159.329995 58.8366115,160.576527 C66.0756911,169.122564 61.6927035,180.127596 51.918331,180.339857 C51.918331,180.339917 51.918331,180.339807 51.9083311,180.339857 L51.9104311,180.339857 Z" id="path147-0-8-1-6-75-2-8-0-6-4-4"></path>
<path d="M154.98094,66.5643191 C145.206468,66.7765796 140.82348,77.7816016 148.06256,86.3276387 C149.112457,87.5741711 149.220757,88.2895226 147.297962,87.0921702 C142.424176,83.8329737 133.078802,85.975538 132.600204,95.9394679 C132.009205,108.216432 149.163057,111.75376 152.383848,98.6991334 C152.553947,97.3217706 153.673344,97.3532007 153.403445,99.3083046 C153.109746,104.614725 151.45255,109.574375 149.174757,114.410855 L160.794924,114.410855 C158.51723,109.574375 156.860035,104.614725 156.566336,99.3083046 C156.296437,97.3532007 157.415834,97.3217706 157.585833,98.6991334 C160.806724,111.75376 177.960676,108.216432 177.369477,95.9394679 C176.891079,85.975538 167.545605,83.8329737 162.671719,87.0921702 C160.748924,88.2895226 160.857324,87.5741711 161.907121,86.3276387 C169.1462,77.7816016 164.763213,66.7765896 154.98894,66.5643191 C154.98894,66.5642591 154.98894,66.5643691 154.97894,66.5643191 L154.98094,66.5643191 Z" id="path147-0-8-1-6-75-2-9-7-1-36-2-4"></path>
<path d="M154.98094,180.339857 C145.206468,180.127606 140.82348,169.122564 148.06256,160.576527 C149.112457,159.329995 149.220757,158.614653 147.297962,159.812006 C142.424176,163.071202 133.078802,160.928628 132.600204,150.964708 C132.009205,138.687733 149.163057,135.150406 152.383848,148.205032 C152.553947,149.582395 153.673344,149.550965 153.403445,147.595871 C153.109746,142.289441 151.45255,137.329791 149.174757,132.493311 L160.794924,132.493311 C158.51723,137.329791 156.860035,142.289441 156.566336,147.595871 C156.296437,149.550965 157.415834,149.582395 157.585833,148.205032 C160.806724,135.150406 177.960676,138.687733 177.369477,150.964708 C176.891079,160.928628 167.545605,163.071202 162.671719,159.812006 C160.748924,158.614653 160.857324,159.329995 161.907121,160.576527 C169.1462,169.122564 164.763213,180.127596 154.98894,180.339857 C154.98894,180.339917 154.98894,180.339807 154.97894,180.339857 L154.98094,180.339857 Z" id="path147-0-8-1-6-75-2-8-5-1-55-5-4"></path>
<path d="M9.47305073,17.4440009 C5.56326175,17.5320011 3.8100667,22.1178102 6.70565853,25.6787174 C7.12565735,26.1981184 7.16885722,26.496119 6.39985939,25.997218 C4.45016489,24.6392153 0.712175432,25.5320171 0.520675972,29.6836254 C0.284276638,34.7990356 7.14585729,36.2729385 8.43415366,30.8335277 C8.50215346,30.2596265 8.9499522,30.2727265 8.84195251,31.0873282 C8.72445284,33.2983326 8.06165471,35.3648367 7.15055728,37.3800408 L11.7984442,37.3800408 C10.8873467,35.3648367 10.2244486,33.2983326 10.1069489,31.0873282 C9.99894924,30.2727265 10.446648,30.2596265 10.5147478,30.8335277 C11.8030442,36.2729385 18.6647248,34.7990356 18.4282255,29.6836254 C18.236826,25.5320171 14.4987366,24.6392153 12.5491421,25.997218 C11.7800442,26.496119 11.8233441,26.1981184 12.2432429,25.6787174 C15.1389347,22.1178102 13.3856397,17.5324011 9.47605072,17.4440009 L9.47605072,17.4440009 L9.47305073,17.4440009 Z" id="path147-6-9-8-7-4-5-62-7-8-4"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

16
web/shuffle/faces/3_1.svg Normal file
View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(10.000000, 25.000000)" fill="#D40000">
<g id="A" transform="translate(0.000000, 26.000000)" sketch:type="MSShapeGroup">
<path d="M8.17566514,20.3028471 C6.0243142,16.7456546 3.76106514,13.2882421 0.932750458,10.3348134 C3.76106514,7.3814844 6.0243142,3.92407191 8.17566514,0.36677972 C10.3269165,3.92407191 12.5901656,7.3814844 15.4184803,10.3348134 C12.5901656,13.2882421 10.3269165,16.7456546 8.17566514,20.3028471 L8.17566514,20.3028471 Z" id="path6399-9"></path>
<path d="M196.12723,211.554127 C193.97588,207.996934 191.71263,204.539522 188.884316,201.586093 C191.71263,198.632764 193.97588,195.175352 196.12723,191.61806 C198.278482,195.175352 200.541731,198.632764 203.370046,201.586093 C200.541731,204.539522 198.278482,207.996934 196.12723,211.554127 L196.12723,211.554127 Z" id="path6403-1"></path>
<path d="M103.150975,129.883734 C97.9879318,121.346313 92.5560942,113.048622 85.7680394,105.960453 C92.5560942,98.8723839 97.9879318,90.5746937 103.150975,82.0371725 C108.314118,90.5746937 113.745955,98.8723839 120.53401,105.960453 C113.745955,113.048622 108.314118,121.346313 103.150975,129.883734 L103.150975,129.883734 Z" id="path6413-1"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(11.000000, 25.000000)" fill="#D40000">
<g id="10" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M8.19688485,37.3029468 C6.04563347,33.7457543 3.78228485,30.2883418 0.953970168,27.3349131 C3.78228485,24.3815841 6.04563347,20.9241716 8.19688485,17.3668794 C10.3481362,20.9241716 12.6113853,24.3815841 15.4397995,27.3349131 C12.6113853,30.2883418 10.3481362,33.7457543 8.19688485,37.3029468 L8.19688485,37.3029468 Z" id="path7062-5"></path>
<path d="M153.707553,47.9902738 C148.54441,39.4528523 143.112572,31.155162 136.324517,24.0669929 C143.112572,16.9789235 148.544509,8.68123324 153.707553,0.143712053 C158.870596,8.68123324 164.302433,16.9789235 171.090488,24.0669929 C164.302433,31.155162 158.870596,39.4528523 153.707553,47.9902738 L153.707553,47.9902738 Z" id="path7064-0"></path>
<path d="M196.1484,228.554227 C193.997149,224.997034 191.7338,221.539622 188.905486,218.586193 C191.7338,215.632864 193.997149,212.175451 196.1484,208.618159 C198.299652,212.175451 200.562901,215.632864 203.391315,218.586193 C200.562901,221.539622 198.299652,224.997034 196.1484,228.554227 L196.1484,228.554227 Z" id="path7066-9"></path>
<path d="M50.6370358,47.9902738 C45.4739927,39.4528523 40.0420556,31.155162 33.2540008,24.0669929 C40.0420556,16.9789235 45.4739927,8.68123324 50.6370358,0.143712053 C55.800079,8.68123324 61.2319166,16.9789235 68.0199713,24.0669929 C61.2319166,31.155162 55.800079,39.4528523 50.6370358,47.9902738 L50.6370358,47.9902738 Z" id="path7068-2"></path>
<path d="M153.707553,113.926325 C148.54441,105.388903 143.112572,97.0912129 136.324517,90.0030438 C143.112572,82.9149744 148.544509,74.6172842 153.707553,66.0796633 C158.870596,74.6172842 164.302433,82.9149744 171.090488,90.0030438 C164.302433,97.0912129 158.870596,105.388903 153.707553,113.926325 L153.707553,113.926325 Z" id="path7070-0"></path>
<path d="M50.6370358,113.926325 C45.4739927,105.388903 40.0420556,97.0912129 33.2540008,90.0030438 C40.0420556,82.9149744 45.4739927,74.6172842 50.6370358,66.079763 C55.800079,74.6172842 61.2319166,82.9149744 68.0199713,90.0030438 C61.2319166,97.0912129 55.800079,105.388903 50.6370358,113.926325 L50.6370358,113.926325 Z" id="path7072-0"></path>
<path d="M102.172294,80.9547606 C97.0091515,72.4173391 91.5773139,64.1196488 84.7892591,57.0314797 C91.5773139,49.9434103 97.0091515,41.64572 102.172294,33.1081989 C107.335337,41.64572 112.767175,49.9434103 119.55523,57.0314797 C112.767175,64.1196488 107.335337,72.4173391 102.172294,80.9547606 L102.172294,80.9547606 Z" id="path7074-4"></path>
<path d="M50.6370358,245.782278 C45.4739927,237.244857 40.0420556,228.947167 33.2540008,221.858997 C40.0420556,214.770928 45.4739927,206.473238 50.6370358,197.935717 C55.800079,206.473238 61.2319166,214.770928 68.0199713,221.858997 C61.2319166,228.947167 55.800079,237.244857 50.6370358,245.782278 L50.6370358,245.782278 Z" id="path7084-9"></path>
<path d="M153.707553,245.789256 C148.54441,237.251834 143.112572,228.954144 136.324517,221.865975 C143.112572,214.777906 148.544509,206.480215 153.707553,197.942694 C158.870596,206.480215 164.302433,214.777906 171.090488,221.865975 C164.302433,228.954144 158.870596,237.251834 153.707553,245.789256 L153.707553,245.789256 Z" id="path7086-7"></path>
<path d="M153.707553,179.846925 C148.54441,171.309504 143.112572,163.011813 136.324517,155.923644 C143.112572,148.835575 148.544509,140.537885 153.707553,132.000363 C158.870596,140.537885 164.302433,148.835575 171.090488,155.923644 C164.302433,163.011813 158.870596,171.309504 153.707553,179.846925 L153.707553,179.846925 Z" id="path7088-6"></path>
<path d="M50.6370358,179.814828 C45.4739927,171.277407 40.0420556,162.979716 33.2540008,155.891547 C40.0420556,148.803478 45.4739927,140.505788 50.6370358,131.968266 C55.800079,140.505788 61.2319166,148.803478 68.0199713,155.891547 C61.2319166,162.979716 55.800079,171.277407 50.6370358,179.814828 L50.6370358,179.814828 Z" id="path7090-8"></path>
<path d="M102.172294,212.812808 C97.0091515,204.275386 91.5773139,195.977696 84.7892591,188.889527 C91.5773139,181.801457 97.009251,173.503767 102.172294,164.966246 C107.335337,173.503767 112.767175,181.801457 119.55523,188.889527 C112.767175,195.977696 107.335337,204.275386 102.172294,212.812808 L102.172294,212.812808 Z" id="path7092-79"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 158 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 127 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 123 KiB

17
web/shuffle/faces/3_2.svg Normal file
View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(11.000000, 25.000000)" fill="#D40000">
<g id="2" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M101.37514,47.9902339 C96.2120864,39.4528124 90.780219,31.1551221 83.9921642,24.0669531 C90.780219,16.9788837 96.2120864,8.68119336 101.37514,0.14367218 C106.538193,8.68119336 111.97006,16.9788837 118.758115,24.0669531 C111.97006,31.1551221 106.538193,39.4528124 101.37514,47.9902339 L101.37514,47.9902339 Z" id="path6516-8"></path>
<path d="M7.39974014,37.3029049 C5.24846884,33.7457154 2.98518991,30.2883019 0.15683541,27.3348742 C2.98518991,24.3815442 5.24846884,20.9241327 7.39974014,17.3668405 C9.55101144,20.9241327 11.8142904,24.3815442 14.6426449,27.3348742 C11.8142904,30.2883019 9.55101144,33.7457154 7.39974014,37.3029049 L7.39974014,37.3029049 Z" id="path6518-2"></path>
<path d="M195.351256,228.554227 C193.199984,224.997034 190.936705,221.539622 188.108351,218.586193 C190.936705,215.632864 193.199984,212.175451 195.351256,208.618159 C197.502527,212.175451 199.765806,215.632864 202.59416,218.586193 C199.765806,221.539622 197.502527,224.997034 195.351256,228.554227 L195.351256,228.554227 Z" id="path6522-0"></path>
<path d="M101.37514,245.777264 C96.2120864,237.239843 90.780209,228.942153 83.9921642,221.853984 C90.780209,214.765914 96.2120864,206.468224 101.37514,197.930703 C106.538193,206.468224 111.97006,214.765914 118.758115,221.853984 C111.97006,228.942153 106.538193,237.239843 101.37514,245.777264 L101.37514,245.777264 Z" id="path6538-6"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

18
web/shuffle/faces/3_3.svg Normal file
View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(11.000000, 25.000000)" fill="#D40000">
<g id="3" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M101.599264,47.9902339 C96.4362212,39.4528124 91.004284,31.1551221 84.2162292,24.0669531 C91.004284,16.9788837 96.4362212,8.68119336 101.599264,0.14367218 C106.762307,8.68119336 112.194145,16.9788837 118.9822,24.0669531 C112.194145,31.1551221 106.762307,39.4528124 101.599264,47.9902339 L101.599264,47.9902339 Z" id="path6584-3"></path>
<path d="M7.62385496,37.3029049 C5.47260357,33.7457154 3.20925495,30.2883019 0.380940274,27.3348742 C3.20925495,24.3815442 5.47260357,20.9241327 7.62385496,17.3668405 C9.77510635,20.9241327 12.0383554,24.3815442 14.8667696,27.3348742 C12.0383554,30.2883019 9.77510635,33.7457154 7.62385496,37.3029049 L7.62385496,37.3029049 Z" id="path6586-2"></path>
<path d="M195.575371,228.554227 C193.424119,224.997034 191.160771,221.539622 188.332456,218.586193 C191.160771,215.632864 193.424119,212.175451 195.575371,208.618159 C197.726622,212.175451 199.989871,215.632864 202.818285,218.586193 C199.989871,221.539622 197.726622,224.997034 195.575371,228.554227 L195.575371,228.554227 Z" id="path6590-7"></path>
<path d="M101.599264,146.883744 C96.4362212,138.346323 91.004284,130.048632 84.2162292,122.960463 C91.004284,115.872394 96.4362212,107.574704 101.599264,99.0371824 C106.762307,107.574704 112.194145,115.872394 118.9822,122.960463 C112.194145,130.048632 106.762307,138.346323 101.599264,146.883744 L101.599264,146.883744 Z" id="path6600-5"></path>
<path d="M101.599264,245.777264 C96.4362212,237.239843 91.004284,228.942153 84.2162292,221.853984 C91.004284,214.765914 96.4362212,206.468224 101.599264,197.930703 C106.762307,206.468224 112.194145,214.765914 118.9822,221.853984 C112.194145,228.942153 106.762307,237.239843 101.599264,245.777264 L101.599264,245.777264 Z" id="path6606-3"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

19
web/shuffle/faces/3_4.svg Normal file
View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(11.000000, 25.000000)" fill="#D40000">
<g id="4" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M7.84775076,37.3029049 C5.69649937,33.7457154 3.43325031,30.2883019 0.604836075,27.3348742 C3.43325031,24.3815442 5.69649937,20.9241327 7.84775076,17.3668405 C9.99900215,20.9241327 12.2623508,24.3815442 15.0906654,27.3348742 C12.2623508,30.2883019 9.99900215,33.7457154 7.84775076,37.3029049 L7.84775076,37.3029049 Z" id="path6654-0"></path>
<path d="M153.358418,47.9902339 C148.195375,39.4528124 142.763538,31.1551221 135.975483,24.0669531 C142.763538,16.9788837 148.195375,8.68119336 153.358418,0.14367218 C158.521462,8.68119336 163.953399,16.9788837 170.741454,24.0669531 C163.953399,31.1551221 158.521462,39.4528124 153.358418,47.9902339 L153.358418,47.9902339 Z" id="path6656-6"></path>
<path d="M195.799266,228.554227 C193.648015,224.997034 191.384766,221.539622 188.556352,218.586193 C191.384766,215.632864 193.648015,212.175451 195.799266,208.618159 C197.950518,212.175451 200.213866,215.632864 203.042181,218.586193 C200.213866,221.539622 197.950518,224.997034 195.799266,228.554227 L195.799266,228.554227 Z" id="path6658-8"></path>
<path d="M50.2879017,47.9902339 C45.1248586,39.4528124 39.693021,31.1551221 32.9049662,24.0669531 C39.693021,16.9788837 45.1248586,8.68119336 50.2879017,0.14367218 C55.4509449,8.68119336 60.882882,16.9788837 67.6709368,24.0669531 C60.882882,31.1551221 55.4509449,39.4528124 50.2879017,47.9902339 L50.2879017,47.9902339 Z" id="path6660-7"></path>
<path d="M50.2879017,245.782318 C45.1248586,237.244897 39.693021,228.947206 32.9049662,221.859037 C39.693021,214.770968 45.1248586,206.473278 50.2879017,197.935756 C55.4509449,206.473278 60.882882,214.770968 67.6709368,221.859037 C60.882882,228.947206 55.4509449,237.244897 50.2879017,245.782318 L50.2879017,245.782318 Z" id="path6676-4"></path>
<path d="M153.358418,245.789236 C148.195375,237.251815 142.763538,228.954124 135.975483,221.865955 C142.763538,214.777886 148.195375,206.480195 153.358418,197.942674 C158.521462,206.480195 163.953399,214.777886 170.741454,221.865955 C163.953399,228.954124 158.521462,237.251815 153.358418,245.789236 L153.358418,245.789236 Z" id="path6678-8"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

20
web/shuffle/faces/3_5.svg Normal file
View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(11.000000, 25.000000)" fill="#D40000">
<g id="5" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M8.07194522,37.3029049 C5.92069383,33.7457154 3.65734522,30.2883019 0.829030537,27.3348742 C3.65734522,24.3815442 5.92069383,20.9241327 8.07194522,17.3668405 C10.2231966,20.9241327 12.4864457,24.3815442 15.3148599,27.3348742 C12.4864457,30.2883019 10.2231966,33.7457154 8.07194522,37.3029049 L8.07194522,37.3029049 Z" id="path6722-9"></path>
<path d="M153.582613,47.9902339 C148.41957,39.4528124 142.987633,31.1551221 136.199578,24.0669531 C142.987633,16.9788837 148.41957,8.68119336 153.582613,0.14367218 C158.745656,8.68119336 164.177494,16.9788837 170.965548,24.0669531 C164.177494,31.1551221 158.745656,39.4528124 153.582613,47.9902339 L153.582613,47.9902339 Z" id="path6724-6"></path>
<path d="M196.023461,228.554227 C193.872209,224.997034 191.608861,221.539622 188.780546,218.586193 C191.608861,215.632864 193.872209,212.175451 196.023461,208.618159 C198.174712,212.175451 200.437961,215.632864 203.266375,218.586193 C200.437961,221.539622 198.174712,224.997034 196.023461,228.554227 L196.023461,228.554227 Z" id="path6726-3"></path>
<path d="M50.5120962,47.9902339 C45.3490531,39.4528124 39.9171159,31.1551221 33.1290611,24.0669531 C39.9171159,16.9788837 45.3490531,8.68119336 50.5120962,0.14367218 C55.6751394,8.68119336 61.1069769,16.9788837 67.8950317,24.0669531 C61.1069769,31.1551221 55.6751394,39.4528124 50.5120962,47.9902339 L50.5120962,47.9902339 Z" id="path6728-7"></path>
<path d="M102.047355,146.883744 C96.8843114,138.346323 91.4523743,130.048632 84.6643195,122.960463 C91.4523743,115.872394 96.8843114,107.574704 102.047355,99.0371824 C107.210398,107.574704 112.642235,115.872394 119.43029,122.960463 C112.642235,130.048632 107.210398,138.346323 102.047355,146.883744 L102.047355,146.883744 Z" id="path6736-0"></path>
<path d="M50.5120962,245.782318 C45.3490531,237.244897 39.9171159,228.947206 33.1290611,221.859037 C39.9171159,214.770968 45.3490531,206.473278 50.5120962,197.935756 C55.6751394,206.473278 61.1069769,214.770968 67.8950317,221.859037 C61.1069769,228.947206 55.6751394,237.244897 50.5120962,245.782318 L50.5120962,245.782318 Z" id="path6744-9"></path>
<path d="M153.582613,245.789236 C148.41957,237.251815 142.987633,228.954124 136.199578,221.865955 C142.987633,214.777886 148.41957,206.480195 153.582613,197.942674 C158.745656,206.480195 164.177494,214.777886 170.965548,221.865955 C164.177494,228.954124 158.745656,237.251815 153.582613,245.789236 L153.582613,245.789236 Z" id="path6746-2"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

21
web/shuffle/faces/3_6.svg Normal file
View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(11.000000, 25.000000)" fill="#D40000">
<g id="6" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M7.30040567,37.3029049 C5.14915428,33.7457154 2.88580566,30.2883019 0.0574909818,27.3348742 C2.88580566,24.3815442 5.14915428,20.9241327 7.30040567,17.3668405 C9.45165705,20.9241327 11.7149061,24.3815442 14.5433204,27.3348742 C11.7149061,30.2883019 9.45165705,33.7457154 7.30040567,37.3029049 L7.30040567,37.3029049 Z" id="path6790-5"></path>
<path d="M152.811073,47.9902339 C147.64803,39.4528124 142.216093,31.1551221 135.428038,24.0669531 C142.216093,16.9788837 147.64803,8.68119336 152.811073,0.14367218 C157.974117,8.68119336 163.405954,16.9788837 170.194009,24.0669531 C163.405954,31.1551221 157.974117,39.4528124 152.811073,47.9902339 L152.811073,47.9902339 Z" id="path6792-5"></path>
<path d="M195.251921,228.554227 C193.10067,224.997034 190.837321,221.539622 188.009007,218.586193 C190.837321,215.632864 193.10067,212.175451 195.251921,208.618159 C197.403173,212.175451 199.666422,215.632864 202.494836,218.586193 C199.666422,221.539622 197.403173,224.997034 195.251921,228.554227 L195.251921,228.554227 Z" id="path6794-1"></path>
<path d="M49.7405566,47.9902339 C44.5775135,39.4528124 39.1455764,31.1551221 32.3575216,24.0669531 C39.1455764,16.9788837 44.5775135,8.68119336 49.7405566,0.14367218 C54.9035998,8.68119336 60.3354374,16.9788837 67.1234922,24.0669531 C60.3354374,31.1551221 54.9035998,39.4528124 49.7405566,47.9902339 L49.7405566,47.9902339 Z" id="path6796-2"></path>
<path d="M49.7405566,146.851508 C44.5775135,138.314086 39.1455764,130.016396 32.3575216,122.928227 C39.1455764,115.840157 44.5775135,107.542467 49.7405566,99.0049458 C54.9035998,107.542467 60.3354374,115.840157 67.1234922,122.928227 C60.3354374,130.016396 54.9035998,138.314086 49.7405566,146.851508 L49.7405566,146.851508 Z" id="path6806-6"></path>
<path d="M152.811073,146.867028 C147.64803,138.329606 142.216093,130.031916 135.428038,122.943747 C142.216093,115.855678 147.64803,107.557987 152.811073,99.020466 C157.974117,107.557987 163.405954,115.855678 170.194009,122.943747 C163.405954,130.031916 157.974117,138.329606 152.811073,146.867028 L152.811073,146.867028 Z" id="path6808-6"></path>
<path d="M49.7405566,245.782318 C44.5775135,237.244897 39.1455764,228.947206 32.3575216,221.859037 C39.1455764,214.770968 44.5775135,206.473278 49.7405566,197.935756 C54.9035998,206.473278 60.3354374,214.770968 67.1234922,221.859037 C60.3354374,228.947206 54.9035998,237.244897 49.7405566,245.782318 L49.7405566,245.782318 Z" id="path6812-0"></path>
<path d="M152.811073,245.789236 C147.64803,237.251815 142.216093,228.954124 135.428038,221.865955 C142.216093,214.777886 147.64803,206.480195 152.811073,197.942674 C157.974117,206.480195 163.405954,214.777886 170.194009,221.865955 C163.405954,228.954124 157.974117,237.251815 152.811073,245.789236 L152.811073,245.789236 Z" id="path6814-4"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

22
web/shuffle/faces/3_7.svg Normal file
View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(11.000000, 25.000000)" fill="#D40000">
<g id="7" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M7.52450057,37.3029049 C5.37324919,33.7457154 3.10990057,30.2883019 0.28158589,27.3348742 C3.10990057,24.3815442 5.37324919,20.9241327 7.52450057,17.3668405 C9.67575196,20.9241327 11.939001,24.3815442 14.7674153,27.3348742 C11.939001,30.2883019 9.67575196,33.7457154 7.52450057,37.3029049 L7.52450057,37.3029049 Z" id="path6858-4"></path>
<path d="M153.035168,47.9902339 C147.872125,39.4528124 142.440188,31.1551221 135.652133,24.0669531 C142.440188,16.9788837 147.872125,8.68119336 153.035168,0.14367218 C158.198211,8.68119336 163.630049,16.9788837 170.418104,24.0669531 C163.630049,31.1551221 158.198211,39.4528124 153.035168,47.9902339 L153.035168,47.9902339 Z" id="path6860-1"></path>
<path d="M195.476016,228.554227 C193.324765,224.997034 191.061416,221.539622 188.233101,218.586193 C191.061416,215.632864 193.324765,212.175451 195.476016,208.618159 C197.627268,212.175451 199.890517,215.632864 202.718931,218.586193 C199.890517,221.539622 197.627268,224.997034 195.476016,228.554227 L195.476016,228.554227 Z" id="path6862-0"></path>
<path d="M49.9646516,47.9902339 C44.8016084,39.4528124 39.3696713,31.1551221 32.5816165,24.0669531 C39.3696713,16.9788837 44.8016084,8.68119336 49.9646516,0.14367218 C55.1276947,8.68119336 60.5595323,16.9788837 67.3475871,24.0669531 C60.5595323,31.1551221 55.1276947,39.4528124 49.9646516,47.9902339 L49.9646516,47.9902339 Z" id="path6864-5"></path>
<path d="M101.49991,97.4208757 C96.3368668,88.8834542 90.9049296,80.585754 84.1168749,73.4975949 C90.9049296,66.4095215 96.3368668,58.1118312 101.49991,49.574311 C106.662953,58.1118312 112.094791,66.4095215 118.882845,73.4975949 C112.094791,80.585754 106.662953,88.8834542 101.49991,97.4208757 L101.49991,97.4208757 Z" id="path6870-5"></path>
<path d="M49.9646516,146.851508 C44.8016084,138.314086 39.3696713,130.016396 32.5816165,122.928227 C39.3696713,115.840157 44.8016084,107.542467 49.9646516,99.0049458 C55.1276947,107.542467 60.5595323,115.840157 67.3475871,122.928227 C60.5595323,130.016396 55.1276947,138.314086 49.9646516,146.851508 L49.9646516,146.851508 Z" id="path6874-1"></path>
<path d="M153.035168,146.867028 C147.872125,138.329606 142.440188,130.031916 135.652133,122.943747 C142.440188,115.855678 147.872125,107.557987 153.035168,99.020466 C158.198211,107.557987 163.630049,115.855678 170.418104,122.943747 C163.630049,130.031916 158.198211,138.329606 153.035168,146.867028 L153.035168,146.867028 Z" id="path6876-6"></path>
<path d="M49.9646516,245.782318 C44.8016084,237.244897 39.3696713,228.947206 32.5816165,221.859037 C39.3696713,214.770968 44.8016084,206.473278 49.9646516,197.935756 C55.1276947,206.473278 60.5595323,214.770968 67.3475871,221.859037 C60.5595323,228.947206 55.1276947,237.244897 49.9646516,245.782318 L49.9646516,245.782318 Z" id="path6880-5"></path>
<path d="M153.035168,245.789236 C147.872125,237.251815 142.440188,228.954124 135.652133,221.865955 C142.440188,214.777886 147.872125,206.480195 153.035168,197.942674 C158.198211,206.480195 163.630049,214.777886 170.418104,221.865955 C163.630049,228.954124 158.198211,237.251815 153.035168,245.789236 L153.035168,245.789236 Z" id="path6882-9"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4 KiB

23
web/shuffle/faces/3_8.svg Normal file
View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(11.000000, 25.000000)" fill="#D40000">
<g id="8" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M7.74869504,37.3029468 C5.59744365,33.7457543 3.33409503,30.2883418 0.505780352,27.3349131 C3.33409503,24.3815841 5.59744365,20.9241716 7.74869504,17.3668794 C9.89984687,20.9241716 12.1631955,24.3815841 14.9916097,27.3349131 C12.1631955,30.2883418 9.89984687,33.7457543 7.74869504,37.3029468 L7.74869504,37.3029468 Z" id="path6926-2"></path>
<path d="M153.259263,47.9902738 C148.09622,39.4528523 142.664283,31.155162 135.876328,24.0669929 C142.664283,16.9789235 148.09632,8.68123324 153.259263,0.143712053 C158.422306,8.68123324 163.854243,16.9789235 170.642199,24.0669929 C163.854243,31.155162 158.422306,39.4528523 153.259263,47.9902738 L153.259263,47.9902738 Z" id="path6928-9"></path>
<path d="M195.700211,228.554227 C193.548959,224.997034 191.285611,221.539622 188.457296,218.586193 C191.285611,215.632864 193.548959,212.175451 195.700211,208.618159 C197.851362,212.175451 200.114611,215.632864 202.943125,218.586193 C200.114611,221.539622 197.851362,224.997034 195.700211,228.554227 L195.700211,228.554227 Z" id="path6930-6"></path>
<path d="M50.1887465,47.9902738 C45.0257033,39.4528523 39.5937662,31.155162 32.805811,24.0669929 C39.5937662,16.9789235 45.0258029,8.68123324 50.1887465,0.143712053 C55.3517896,8.68123324 60.7837267,16.9789235 67.571682,24.0669929 C60.7837267,31.155162 55.3517896,39.4528523 50.1887465,47.9902738 L50.1887465,47.9902738 Z" id="path6932-2"></path>
<path d="M101.724005,97.4208558 C96.5609617,88.8834343 91.1290245,80.585744 84.3410693,73.4975749 C91.1290245,66.4095055 96.5609617,58.1118152 101.724005,49.574294 C106.887048,58.1118152 112.318985,66.4095055 119.10694,73.4975749 C112.318985,80.585744 106.887048,88.8834343 101.724005,97.4208558 L101.724005,97.4208558 Z" id="path6938-4"></path>
<path d="M50.1887465,146.851537 C45.0257033,138.314116 39.5937662,130.016426 32.805811,122.928257 C39.5937662,115.840187 45.0258029,107.542497 50.1887465,99.0049757 C55.3517896,107.542497 60.7837267,115.840187 67.571682,122.928257 C60.7837267,130.016426 55.3517896,138.314116 50.1887465,146.851537 L50.1887465,146.851537 Z" id="path6942-4"></path>
<path d="M153.259263,146.866988 C148.09622,138.329566 142.664283,130.031876 135.876328,122.943707 C142.664283,115.855638 148.09632,107.557947 153.259263,99.0204262 C158.422306,107.557947 163.854243,115.855638 170.642199,122.943707 C163.854243,130.031876 158.422306,138.329566 153.259263,146.866988 L153.259263,146.866988 Z" id="path6944-9"></path>
<path d="M50.1887465,245.782278 C45.0257033,237.244857 39.5937662,228.947167 32.805811,221.858997 C39.5937662,214.770928 45.0258029,206.473238 50.1887465,197.935717 C55.3517896,206.473238 60.7837267,214.770928 67.571682,221.858997 C60.7837267,228.947167 55.3517896,237.244857 50.1887465,245.782278 L50.1887465,245.782278 Z" id="path6948-4"></path>
<path d="M153.259263,245.789256 C148.09622,237.251834 142.664283,228.954144 135.876328,221.865975 C142.664283,214.777906 148.09632,206.480215 153.259263,197.942694 C158.422306,206.480215 163.854243,214.777906 170.642199,221.865975 C163.854243,228.954144 158.422306,237.251834 153.259263,245.789256 L153.259263,245.789256 Z" id="path6950-4"></path>
<path d="M101.724005,196.316908 C96.5609617,187.779486 91.1290245,179.481796 84.3410693,172.393627 C91.1290245,165.305558 96.5610612,157.007867 101.724005,148.470346 C106.887048,157.007867 112.318985,165.305558 119.10694,172.393627 C112.318985,179.481796 106.887048,187.779486 101.724005,196.316908 L101.724005,196.316908 Z" id="path6956-4"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

24
web/shuffle/faces/3_9.svg Normal file
View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="315px" viewBox="0 0 227 315" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
<title>Trim</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Diamonds" sketch:type="MSLayerGroup" transform="translate(11.000000, 25.000000)" fill="#D40000">
<g id="9" transform="translate(1.000000, 9.000000)" sketch:type="MSShapeGroup">
<path d="M7.97269039,37.3029049 C5.821439,33.7457154 3.55809039,30.2883019 0.729775706,27.3348742 C3.55809039,24.3815442 5.821439,20.9241327 7.97269039,17.3668405 C10.1239418,20.9241327 12.3871908,24.3815442 15.2156051,27.3348742 C12.3871908,30.2883019 10.1239418,33.7457154 7.97269039,37.3029049 L7.97269039,37.3029049 Z" id="path6994-9"></path>
<path d="M153.483358,47.9902339 C148.320315,39.4528124 142.888378,31.1551221 136.100323,24.0669531 C142.888378,16.9788837 148.320315,8.68119336 153.483358,0.14367218 C158.646401,8.68119336 164.078239,16.9788837 170.866294,24.0669531 C164.078239,31.1551221 158.646401,39.4528124 153.483358,47.9902339 L153.483358,47.9902339 Z" id="path6996-5"></path>
<path d="M195.924206,228.554227 C193.772955,224.997034 191.509606,221.539622 188.681291,218.586193 C191.509606,215.632864 193.772955,212.175451 195.924206,208.618159 C198.075457,212.175451 200.338706,215.632864 203.167121,218.586193 C200.338706,221.539622 198.075457,224.997034 195.924206,228.554227 L195.924206,228.554227 Z" id="path6998-7"></path>
<path d="M50.4128414,47.9902339 C45.2497982,39.4528124 39.8178611,31.1551221 33.0298063,24.0669531 C39.8178611,16.9788837 45.2497982,8.68119336 50.4128414,0.14367218 C55.5758845,8.68119336 61.0077221,16.9788837 67.7957769,24.0669531 C61.0077221,31.1551221 55.5758845,39.4528124 50.4128414,47.9902339 L50.4128414,47.9902339 Z" id="path7000-7"></path>
<path d="M153.483358,113.926275 C148.320315,105.388853 142.888378,97.0911631 136.100323,90.002994 C142.888378,82.9149246 148.320315,74.6172343 153.483358,66.0797111 C158.646401,74.6172343 164.078239,82.9149246 170.866294,90.002994 C164.078239,97.0911631 158.646401,105.388853 153.483358,113.926275 L153.483358,113.926275 Z" id="path7002-0"></path>
<path d="M50.4128414,113.926275 C45.2497982,105.388853 39.8178611,97.0911631 33.0298063,90.002994 C39.8178611,82.9149246 45.2497982,74.6172343 50.4128414,66.0797151 C55.5758845,74.6172343 61.0077221,82.9149246 67.7957769,90.002994 C61.0077221,97.0911631 55.5758845,105.388853 50.4128414,113.926275 L50.4128414,113.926275 Z" id="path7004-0"></path>
<path d="M101.9481,146.883744 C96.7850566,138.346323 91.3531195,130.048632 84.5650647,122.960463 C91.3531195,115.872394 96.7850566,107.574704 101.9481,99.0371824 C107.111143,107.574704 112.54298,115.872394 119.331035,122.960463 C112.54298,130.048632 107.111143,138.346323 101.9481,146.883744 L101.9481,146.883744 Z" id="path7008-2"></path>
<path d="M50.4128414,245.782318 C45.2497982,237.244897 39.8178611,228.947206 33.0298063,221.859037 C39.8178611,214.770968 45.2497982,206.473278 50.4128414,197.935756 C55.5758845,206.473278 61.0077221,214.770968 67.7957769,221.859037 C61.0077221,228.947206 55.5758845,237.244897 50.4128414,245.782318 L50.4128414,245.782318 Z" id="path7016-2"></path>
<path d="M153.483358,245.789236 C148.320315,237.251815 142.888378,228.954124 136.100323,221.865955 C142.888378,214.777886 148.320315,206.480195 153.483358,197.942674 C158.646401,206.480195 164.078239,214.777886 170.866294,221.865955 C164.078239,228.954124 158.646401,237.251815 153.483358,245.789236 L153.483358,245.789236 Z" id="path7018-0"></path>
<path d="M153.483358,179.846885 C148.320315,171.309464 142.888378,163.011774 136.100323,155.923604 C142.888378,148.835535 148.320315,140.537845 153.483358,132.000324 C158.646401,140.537845 164.078239,148.835535 170.866294,155.923604 C164.078239,163.011774 158.646401,171.309464 153.483358,179.846885 L153.483358,179.846885 Z" id="path7020-7"></path>
<path d="M50.4128414,179.814818 C45.2497982,171.277397 39.8178611,162.979706 33.0298063,155.891537 C39.8178611,148.803468 45.2497982,140.505778 50.4128414,131.968256 C55.5758845,140.505778 61.0077221,148.803468 67.7957769,155.891537 C61.0077221,162.979706 55.5758845,171.277397 50.4128414,179.814818 L50.4128414,179.814818 Z" id="path7022-4"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

14
web/shuffle/faces/4_1.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 333 KiB

14
web/shuffle/faces/4_2.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 231 KiB

22
web/shuffle/faces/4_3.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 243 KiB

BIN
web/shuffle/faces/back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
web/shuffle/faces/c1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 KiB

BIN
web/shuffle/faces/c2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 420 KiB

BIN
web/shuffle/faces/c3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 KiB

BIN
web/shuffle/faces/c4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 KiB

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML5 Deck of Cards</title>
<link href="example.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600|Ubuntu+Condensed" rel="stylesheet" type="text/css">
</head>
<body>
<div id="container"></div>
<div id="topbar"></div>
<script src="deck.js"></script>
<script src="example.js"></script>
</body>
</html>

77
web/shuffle/index.html Normal file
View file

@ -0,0 +1,77 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML5 Deck of Cards</title>
<link href="example.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600|Ubuntu+Condensed" rel="stylesheet" type="text/css">
<canvas id="canvas-image" width = "1000" height = "1000"></canvas>
<script src="/scripts/granim.min.js"></script>
<script>
var granimInstance = new Granim({
element: '#canvas-image',
name: 'anima',
direction: 'radial',
isPausedWhenNotInView: true,
elToSetClassOn: 'body',
opacity: [1, 1],
image : {
source: '/img/prehension.png',
blendingMode: 'hue',
stretchMode: ['stretch', 'stretch'],
position: ['center', 'center']
},
states : {
"default-state": {
gradients: [
['#834D9B', '#D04ED6'],
['#1CD8D2', '#93EDC7']
],
transitionSpeed: 23*1000
}}});
</script>
<style>
#canvas-image {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
}
.card {
/* Black shadow with 10px blur */
filter: drop-shadow(8px 8px 6px black);
position: "absolute";
z-index: 1;
width: 160px;
height: 260px;
}
#card1 { position: absolute; right: 10%; top: 50%; }
#card2 { position: absolute; right: 30%; top: 50%; }
#card3 { position: absolute; right: 40%; top: 50%; }
#card4 { position: absolute; right: 60%; top: 50%; }
</style>
</head>
<body>
<div id="container"></div>
<div id="topbar"></div>
<canvas id="canvas-image"></canvas>
<script src="deck.js"></script>
<script src="example.js"></script>
</body>
</html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML5 Deck of Cards</title>
<link href="example_without_will_change.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600|Ubuntu+Condensed" rel="stylesheet" type="text/css">
</head>
<body>
<div id="container"></div>
<div id="topbar"></div><a href="https://github.com/pakastin/deck-of-cards"><img class="gh-ribbon" style="position: fixed; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/52760788cde945287fbb584134c4cbc2bc36f904/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"></a>
<script src="../dist/deck.js"></script>
<script src="example.js"></script>
</body>
</html>