Re-add images, digital-climate-strike to css

commit 067f09de7a removed the entire css
directory from lego, but some of the files are necessary and shouldn't
have been removed
This commit is contained in:
kez 2023-01-30 14:19:36 -08:00
parent 8ef7ee38ce
commit 6344dce05e
269 changed files with 3896 additions and 0 deletions

View File

@ -0,0 +1,44 @@
/* button */
.dcs-button {
background-color: var(--grey);
box-shadow: 0.3rem 0.3rem 0 #fff;
color: #fff;
display: inline-flex;
font: 400 1.5rem/1.5rem 'Greve', 'Impact', sans-serif;
letter-spacing: calc(0.07rem - 0.01rem);
padding: 1rem 2rem;
text-align: center;
text-decoration: none;
text-transform: uppercase;
white-space: nowrap;
border: 0;
cursor: pointer;
}
.dcs-button:hover,
.dcs-button:focus {
background-color: #fff !important;
box-shadow: 0.3rem 0.3rem 0 #000 !important;
color: #000 !important;
}
.dcs-button:focus {
outline: 2px dotted #000;
}
.dcs-button__icon {
font-size: 1.5rem;
height: 100%;
display: inline-block;
padding-left: 0.5rem;
width: 1rem;
}
@media (min-width: 900px) {
.dcs-button {
font-size: 1.75rem;
line-height: 1;
padding: 0.8rem 3rem;
}
}

View File

@ -0,0 +1,53 @@
/* close.css */
.dcs-close {
align-items: center;
justify-content: center;
cursor: pointer;
display: flex;
height: 100%;
max-height: 3rem;
max-width: 3rem;
position: relative;
width: 100%;
background-color: transparent;
padding: 0;
border: 0;
&::before,
&::after {
background-color: rgba(0, 0, 0, 0.5);
content: '';
height: 1.2rem;
position: absolute;
width: 2px;
}
&::before {
transform: rotate(45deg);
}
&::after {
transform: rotate(-45deg);
}
&:hover,
&:focus {
&::before,
&::after {
background-color: rgba(0, 0, 0, 1);
}
}
&:focus {
outline: 2px dotted var(--black);
}
}
.dcs-close.dcs-full-page-close {
&::before,
&::after {
height: 2rem;
background-color: rgba(0, 0, 0, 1);
}
}

View File

@ -0,0 +1,107 @@
/* footer */
.dcs-banner__containter {
position: fixed;
right: 0;
left: 0;
bottom: 0;
padding: 1.25rem 1.25rem 2rem;
width: 100%;
}
.dcs-footer {
background-color: #4ee58b;
bottom: 0;
box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.2);
font-family: 'Katwijk Bold';
left: 0;
padding: 1.25rem 1.25rem 2rem;
position: fixed;
right: 0;
width: 100%;
}
.dcs-footer__close {
height: 3rem;
position: absolute;
right: 0;
top: 0;
width: 3rem;
margin-top: -4.5rem;
margin-right: -2rem;
z-index: 1;
font-weight: bolder;
visibility: inherit;
}
.dcs-footer__container {
display: flex;
flex-wrap: nowrap;
margin: 0 auto;
max-width: 50rem;
}
.dcs-footer__logo {
display: block;
flex: 0 0 15%;
}
.dcs-footer__main {
flex: 0 0 70%;
margin-top: -.4rem; /* magic number: top text align to logo */
margin: 0 1rem;
}
.dcs-footer__body {
color: var(--grey);
font: normal .875rem/1rem 'Katwijk Bold', Courier, sans-serif;
max-width: 26rem;
}
.dcs-footer__action {
margin: 1rem 0 0;
}
#trigger {
position: absolute;
top: -9999px;
left: -9999px;
}
#trigger:checked ~ #dcs-banner-footer, .dcs-banner__containter > #trigger:checked, #trigger:checked + label {
display: none;
visibility: hidden;
}
/* Breakpoint */
@media(min-width: 900px) {
.dcs-footer {
padding: 2rem;
}
.dcs-footer__container {
max-width: 60rem;
}
.dcs-footer__logo {
flex: 0 0 10%;
}
.dcs-footer__main {
flex: 1;
display: flex;
}
.dcs-footer__body {
font-size: 1.125rem;
line-height: 1.5rem;
max-width: none;
}
.dcs-footer__action {
display: inline-block;
margin: 0 0 0 1rem;
}
}

View File

@ -0,0 +1,83 @@
/* Full page styles */
.dcs-full-page {
align-items: center;
background-color: var(--green);
bottom: 0;
color: var(--grey);
display: none;
justify-content: center;
left: 0;
position: absolute;
right: 0;
top: 0;
width: 100%;
text-align: center;
}
.dcs-full-page__container {
max-width: 40rem;
}
.dcs-full-page__close {
display: none; /* The full page close button can be configured to display: 'flex'.*/
height: 2.5rem;
position: absolute;
right: 0;
top: 0;
width: 2.5rem;
}
.dcs-full-page__main {
padding: 1rem;
}
.dcs-full-page__logo {
margin: 0 auto;
width: 5.7rem;
display: block;
}
.dcs-full-page__body {
margin: 2.25rem auto 0;
}
.dcs-full-page__body p {
font: normal 3.2rem/3.5rem 'Greve';
}
.dcs-full-page__action {
margin: 1.25rem auto 0;
}
.dcs-full-page__footer {
bottom: 0;
font: 400 10px/13px 'Katwijk Bold', monospace;
left: 0;
position: absolute;
right: 0;
text-align: center;
}
.dcs-full-page__footer small {
display: inline-block;
max-width: 15.6rem;
margin: 3rem auto;
}
.dcs-website-name__prefix {
display: none;
}
@media (min-width: 900px) {
.dcs-full-page__footer {
font-size: 0.875rem;
line-height: 1.4;
}
}
@media (max-height: 600px) {
.dcs-full-page__body p {
font: normal 2.2rem/2.5rem 'Greve';
}
}

View File

@ -0,0 +1,61 @@
/* stylelint-disable */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
text-decoration: none;
}
*::before,
*::after {
box-sizing: inherit;
}
img {
max-width: 100%;
}
/**
* Shared CSS custom properties
*/
:root {
/* Colors */
--black: #000;
--green: #4ee58b;
--white: #fff;
--grey:#231F20;
}
/**
* Font Definitions
*/
@font-face {
font-family: "Greve";
font-style: normal;
src: url('./webfonts/greve-800-web.woff2') format('woff2'),
url('./webfonts/greve-800-web.woff') format('woff');
}
@font-face {
font-family: "Katwijk Bold";
font-style: normal;
src: url('./webfonts/katwijk-mono-bold-web.woff2') format('woff2'),
url('./webfonts/katwijk-mono-bold-web.woff') format('woff'),
url('./webfonts/katwijk-mono-bold-web.ttf') format('truetype');
}
/**
* Type scale
* Baseline body copy font is 16px = 1rem;
*/
html, body {
color: var(--grey);
font-family: 'Katwijk', monospace;
font-size: 100%; /* 16px base font */
font-weight: bold;
}
/* stylelint-enable */

View File

@ -0,0 +1,19 @@
/* logo.css */
.dcs-logo {
max-height: 5rem;
}
.dcs-logo--med {
max-height: 10rem;
}
@media(min-width: 900px) {
.dcs-logo {
max-height: 2.8rem;
}
.dcs-logo--med {
max-height: 10rem;
}
}

View File

@ -0,0 +1,11 @@
@import url(./global.css);
/* Components */
@import url(./button.css);
@import url(./close.css);
@import url(./logo.css);
@import url(./sr-only.css);
/* Views */
@import url(./footer.css);
@import url(./full-page.css);
/*# sourceMappingURL=main.css.map */

View File

@ -0,0 +1,7 @@
{
"version": 3,
"mappings": "AAAQ,gCAAqB;AAE7B,gBAAgB;AACR,gCAAqB;AACrB,+BAAoB;AACpB,8BAAmB;AACnB,iCAAsB;AAE9B,WAAW;AACH,gCAAqB;AACrB,mCAAwB",
"sources": ["main.scss"],
"names": [],
"file": "main.css"
}

View File

@ -0,0 +1,8 @@
.dcs-sr-only {
height: 1px;
left: -10000px;
overflow: hidden;
position: absolute;
top: auto;
width: 1px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 KiB

View File

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1288px" height="401px" viewBox="0 0 1288 401" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: sketchtool 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>0FCE7078-26FD-4F77-A8AB-6FE4C61BC38C</title>
<desc>Created with sketchtool.</desc>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.4">
<g id="Block/download" transform="translate(1.000000, -7.000000)">
<g id="Donate">
<g id="Pattern-" style="mix-blend-mode: lighten;" transform="translate(0.000000, 9.000000)">
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="201.438725" cy="196.561275" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="201.438725" cy="196.561275" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="202.044988" cy="197.167537" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="201.438725" cy="196.561275" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="414.095588" cy="331.178922" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="414.095588" cy="331.178922" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="414.701851" cy="331.785184" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="414.095588" cy="331.178922" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="537.982843" cy="64.870098" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="537.982843" cy="64.870098" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="538.589106" cy="65.4763606" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="537.982843" cy="64.870098" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="959.394608" cy="331.178922" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="959.394608" cy="331.178922" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="960.00087" cy="331.785184" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="959.394608" cy="331.178922" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="1082.30637" cy="64.870098" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="1082.30637" cy="64.870098" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="1082.91264" cy="65.4763606" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="1082.30637" cy="64.870098" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="749.664216" cy="196.561275" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="749.664216" cy="196.561275" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="750.270478" cy="197.167537" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="749.664216" cy="196.561275" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="687.232843" cy="331.178922" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="687.232843" cy="331.178922" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="687.839106" cy="331.785184" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="687.232843" cy="331.178922" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="811.120098" cy="64.870098" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="811.120098" cy="64.870098" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="811.726361" cy="65.4763606" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="811.120098" cy="64.870098" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="1023.77696" cy="196.561275" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="1023.77696" cy="196.561275" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="1024.38322" cy="197.167537" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="1023.77696" cy="196.561275" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="141.933824" cy="331.178922" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="141.933824" cy="331.178922" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="142.540086" cy="331.785184" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="141.933824" cy="331.178922" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="262.894608" cy="64.870098" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="262.894608" cy="64.870098" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="263.50087" cy="65.4763606" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="262.894608" cy="64.870098" r="18.7941406"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="474.57598" cy="196.561275" r="64.870098"></circle>
<circle id="Oval" stroke="#FFFFFF" stroke-width="4" cx="474.57598" cy="196.561275" r="49.1072705"></circle>
<circle id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" cx="475.182243" cy="197.167537" r="33.9507055"></circle>
<circle id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" cx="474.57598" cy="196.561275" r="18.7941406"></circle>
<path d="M550.664216,396.04902 C586.490982,396.04902 615.534314,367.005687 615.534314,331.178922 C615.534314,295.352156 586.490982,266.308824 550.664216,266.308824 C514.83745,266.308824 485.794118,295.352156 485.794118,331.178922 C485.794118,367.005687 514.83745,396.04902 550.664216,396.04902 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M550.664216,380.286192 C577.785412,380.286192 599.771486,358.300118 599.771486,331.178922 C599.771486,304.057725 577.785412,282.071651 550.664216,282.071651 C523.543019,282.071651 501.556945,304.057725 501.556945,331.178922 C501.556945,358.300118 523.543019,380.286192 550.664216,380.286192 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M551.270478,365.73589 C570.020935,365.73589 585.221184,350.535641 585.221184,331.785184 C585.221184,313.034727 570.020935,297.834479 551.270478,297.834479 C532.520021,297.834479 517.319773,313.034727 517.319773,331.785184 C517.319773,350.535641 532.520021,365.73589 551.270478,365.73589 Z" id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M550.664216,349.973062 C561.043933,349.973062 569.458356,341.558639 569.458356,331.178922 C569.458356,320.799204 561.043933,312.384781 550.664216,312.384781 C540.284498,312.384781 531.870075,320.799204 531.870075,331.178922 C531.870075,341.558639 540.284498,349.973062 550.664216,349.973062 Z" id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M674.551471,129.740196 C710.378236,129.740196 739.421569,100.696864 739.421569,64.870098 C739.421569,29.0433322 710.378236,0 674.551471,0 C638.724705,0 609.681373,29.0433322 609.681373,64.870098 C609.681373,100.696864 638.724705,129.740196 674.551471,129.740196 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="6,10"></path>
<path d="M674.551471,113.977369 C701.672667,113.977369 723.658741,91.9912946 723.658741,64.870098 C723.658741,37.7489014 701.672667,15.7628276 674.551471,15.7628276 C647.430274,15.7628276 625.4442,37.7489014 625.4442,64.870098 C625.4442,91.9912946 647.430274,113.977369 674.551471,113.977369 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="6,10"></path>
<path d="M675.157733,99.4270662 C693.90819,99.4270662 709.108439,84.2268175 709.108439,65.4763606 C709.108439,46.7259037 693.90819,31.5256551 675.157733,31.5256551 C656.407276,31.5256551 641.207028,46.7259037 641.207028,65.4763606 C641.207028,84.2268175 656.407276,99.4270662 675.157733,99.4270662 Z" id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="6,10"></path>
<path d="M674.551471,83.6642386 C684.931188,83.6642386 693.345611,75.2498153 693.345611,64.870098 C693.345611,54.4903808 684.931188,46.0759575 674.551471,46.0759575 C664.171753,46.0759575 655.75733,54.4903808 655.75733,64.870098 C655.75733,75.2498153 664.171753,83.6642386 674.551471,83.6642386 Z" id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="6,10"></path>
<path d="M122.42402,130.715686 C158.250785,130.715686 187.294118,101.672354 187.294118,65.8455882 C187.294118,30.0188224 158.250785,0.975490196 122.42402,0.975490196 C86.5972537,0.975490196 57.5539216,30.0188224 57.5539216,65.8455882 C57.5539216,101.672354 86.5972537,130.715686 122.42402,130.715686 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M122.42402,114.952859 C149.545216,114.952859 171.53129,92.9667848 171.53129,65.8455882 C171.53129,38.7243916 149.545216,16.7383178 122.42402,16.7383178 C95.302823,16.7383178 73.3167491,38.7243916 73.3167491,65.8455882 C73.3167491,92.9667848 95.302823,114.952859 122.42402,114.952859 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M123.030282,100.402556 C141.780739,100.402556 156.980988,85.2023077 156.980988,66.4518508 C156.980988,47.7013939 141.780739,32.5011453 123.030282,32.5011453 C104.279825,32.5011453 89.0795767,47.7013939 89.0795767,66.4518508 C89.0795767,85.2023077 104.279825,100.402556 123.030282,100.402556 Z" id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M122.42402,84.6397288 C132.803737,84.6397288 141.21816,76.2253054 141.21816,65.8455882 C141.21816,55.465871 132.803737,47.0514477 122.42402,47.0514477 C112.044302,47.0514477 103.629879,55.465871 103.629879,65.8455882 C103.629879,76.2253054 112.044302,84.6397288 122.42402,84.6397288 Z" id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M1095.96324,396.04902 C1131.79,396.04902 1160.83333,367.005687 1160.83333,331.178922 C1160.83333,295.352156 1131.79,266.308824 1095.96324,266.308824 C1060.13647,266.308824 1031.09314,295.352156 1031.09314,331.178922 C1031.09314,367.005687 1060.13647,396.04902 1095.96324,396.04902 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="6,10"></path>
<path d="M1095.96324,380.286192 C1123.08443,380.286192 1145.07051,358.300118 1145.07051,331.178922 C1145.07051,304.057725 1123.08443,282.071651 1095.96324,282.071651 C1068.84204,282.071651 1046.85596,304.057725 1046.85596,331.178922 C1046.85596,358.300118 1068.84204,380.286192 1095.96324,380.286192 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="6,10"></path>
<path d="M1096.5695,365.73589 C1115.31995,365.73589 1130.5202,350.535641 1130.5202,331.785184 C1130.5202,313.034727 1115.31995,297.834479 1096.5695,297.834479 C1077.81904,297.834479 1062.61879,313.034727 1062.61879,331.785184 C1062.61879,350.535641 1077.81904,365.73589 1096.5695,365.73589 Z" id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="6,10"></path>
<path d="M1095.96324,349.973062 C1106.34295,349.973062 1114.75738,341.558639 1114.75738,331.178922 C1114.75738,320.799204 1106.34295,312.384781 1095.96324,312.384781 C1085.58352,312.384781 1077.16909,320.799204 1077.16909,331.178922 C1077.16909,341.558639 1085.58352,349.973062 1095.96324,349.973062 Z" id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="6,10"></path>
<path d="M1219.85049,129.740196 C1255.67726,129.740196 1284.72059,100.696864 1284.72059,64.870098 C1284.72059,29.0433322 1255.67726,0 1219.85049,0 C1184.02372,0 1154.98039,29.0433322 1154.98039,64.870098 C1154.98039,100.696864 1184.02372,129.740196 1219.85049,129.740196 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,10"></path>
<path d="M1219.85049,113.977369 C1246.97169,113.977369 1268.95776,91.9912946 1268.95776,64.870098 C1268.95776,37.7489014 1246.97169,15.7628276 1219.85049,15.7628276 C1192.72929,15.7628276 1170.74322,37.7489014 1170.74322,64.870098 C1170.74322,91.9912946 1192.72929,113.977369 1219.85049,113.977369 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,10"></path>
<path d="M1220.45675,99.4270662 C1239.20721,99.4270662 1254.40746,84.2268175 1254.40746,65.4763606 C1254.40746,46.7259037 1239.20721,31.5256551 1220.45675,31.5256551 C1201.7063,31.5256551 1186.50605,46.7259037 1186.50605,65.4763606 C1186.50605,84.2268175 1201.7063,99.4270662 1220.45675,99.4270662 Z" id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,10"></path>
<path d="M1219.85049,83.6642386 C1230.23021,83.6642386 1238.64463,75.2498153 1238.64463,64.870098 C1238.64463,54.4903808 1230.23021,46.0759575 1219.85049,46.0759575 C1209.47077,46.0759575 1201.05635,54.4903808 1201.05635,64.870098 C1201.05635,75.2498153 1209.47077,83.6642386 1219.85049,83.6642386 Z" id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,10"></path>
<path d="M822.82598,396.04902 C858.652746,396.04902 887.696078,367.005687 887.696078,331.178922 C887.696078,295.352156 858.652746,266.308824 822.82598,266.308824 C786.999215,266.308824 757.955882,295.352156 757.955882,331.178922 C757.955882,367.005687 786.999215,396.04902 822.82598,396.04902 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,10"></path>
<path d="M822.82598,380.286192 C849.947177,380.286192 871.933251,358.300118 871.933251,331.178922 C871.933251,304.057725 849.947177,282.071651 822.82598,282.071651 C795.704784,282.071651 773.71871,304.057725 773.71871,331.178922 C773.71871,358.300118 795.704784,380.286192 822.82598,380.286192 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,10"></path>
<path d="M823.432243,365.73589 C842.1827,365.73589 857.382949,350.535641 857.382949,331.785184 C857.382949,313.034727 842.1827,297.834479 823.432243,297.834479 C804.681786,297.834479 789.481537,313.034727 789.481537,331.785184 C789.481537,350.535641 804.681786,365.73589 823.432243,365.73589 Z" id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,10"></path>
<path d="M822.82598,349.973062 C833.205698,349.973062 841.620121,341.558639 841.620121,331.178922 C841.620121,320.799204 833.205698,312.384781 822.82598,312.384781 C812.446263,312.384781 804.03184,320.799204 804.03184,331.178922 C804.03184,341.558639 812.446263,349.973062 822.82598,349.973062 Z" id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,10"></path>
<path d="M946.713235,129.740196 C982.540001,129.740196 1011.58333,100.696864 1011.58333,64.870098 C1011.58333,29.0433322 982.540001,0 946.713235,0 C910.886469,0 881.843137,29.0433322 881.843137,64.870098 C881.843137,100.696864 910.886469,129.740196 946.713235,129.740196 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,7"></path>
<path d="M946.713235,113.977369 C973.834432,113.977369 995.820506,91.9912946 995.820506,64.870098 C995.820506,37.7489014 973.834432,15.7628276 946.713235,15.7628276 C919.592039,15.7628276 897.605965,37.7489014 897.605965,64.870098 C897.605965,91.9912946 919.592039,113.977369 946.713235,113.977369 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,7"></path>
<path d="M947.319498,99.4270662 C966.069955,99.4270662 981.270203,84.2268175 981.270203,65.4763606 C981.270203,46.7259037 966.069955,31.5256551 947.319498,31.5256551 C928.569041,31.5256551 913.368792,46.7259037 913.368792,65.4763606 C913.368792,84.2268175 928.569041,99.4270662 947.319498,99.4270662 Z" id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,7"></path>
<path d="M946.713235,83.6642386 C957.092953,83.6642386 965.507376,75.2498153 965.507376,64.870098 C965.507376,54.4903808 957.092953,46.0759575 946.713235,46.0759575 C936.333518,46.0759575 927.919095,54.4903808 927.919095,64.870098 C927.919095,75.2498153 936.333518,83.6642386 946.713235,83.6642386 Z" id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4,7"></path>
<path d="M338.007353,261.431373 C373.834119,261.431373 402.877451,232.38804 402.877451,196.561275 C402.877451,160.734509 373.834119,131.691176 338.007353,131.691176 C302.180587,131.691176 273.137255,160.734509 273.137255,196.561275 C273.137255,232.38804 302.180587,261.431373 338.007353,261.431373 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M338.007353,245.668545 C365.12855,245.668545 387.114623,223.682471 387.114623,196.561275 C387.114623,169.440078 365.12855,147.454004 338.007353,147.454004 C310.886156,147.454004 288.900082,169.440078 288.900082,196.561275 C288.900082,223.682471 310.886156,245.668545 338.007353,245.668545 Z" id="Oval" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M338.613616,231.118243 C357.364072,231.118243 372.564321,215.917994 372.564321,197.167537 C372.564321,178.41708 357.364072,163.216832 338.613616,163.216832 C319.863159,163.216832 304.66291,178.41708 304.66291,197.167537 C304.66291,215.917994 319.863159,231.118243 338.613616,231.118243 Z" id="Oval-Copy" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M338.007353,215.355415 C348.38707,215.355415 356.801493,206.940992 356.801493,196.561275 C356.801493,186.181557 348.38707,177.767134 338.007353,177.767134 C327.627636,177.767134 319.213212,186.181557 319.213212,196.561275 C319.213212,206.940992 327.627636,215.355415 338.007353,215.355415 Z" id="Oval-Copy-2" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,7"></path>
<path d="M1095.47549,131.691176 L1227.16667,131.691176 C1227.16667,168.056691 1197.68659,197.536765 1161.32108,197.536765 C1124.95556,197.536765 1095.47549,168.056691 1095.47549,131.691176 Z" id="Combined-Shape-Copy-6" fill-opacity="0.2" fill="#FFFFFF"></path>
<path d="M1095.47549,197.536765 L1227.16667,197.536765 C1227.16667,233.902279 1197.68659,263.382353 1161.32108,263.382353 C1124.95556,263.382353 1095.47549,233.902279 1095.47549,197.536765 Z" id="Combined-Shape-Copy-7" stroke="#FFFFFF" fill="#FFFFFF"></path>
<path d="M211.681373,266.308824 L343.372549,266.308824 C343.372549,302.674338 313.892475,332.154412 277.526961,332.154412 C241.161447,332.154412 211.681373,302.674338 211.681373,266.308824 Z" id="Combined-Shape-Copy-6" fill-opacity="0.2" fill="#FFFFFF"></path>
<path d="M211.681373,332.154412 L343.372549,332.154412 C343.372549,368.519926 313.892475,398 277.526961,398 C241.161447,398 211.681373,368.519926 211.681373,332.154412 Z" id="Combined-Shape-Copy-7" stroke="#FFFFFF" fill="#FFFFFF"></path>
<path d="M333.617647,0 L465.308824,0 C465.308824,36.3655142 435.82875,65.8455882 399.463235,65.8455882 C363.097721,65.8455882 333.617647,36.3655142 333.617647,-1.42108547e-14 Z" id="Combined-Shape-Copy-6" stroke="#FFFFFF" fill="#FFFFFF"></path>
<path d="M333.617647,68.2843137 L465.308824,68.2843137 C465.308824,104.649828 435.82875,134.129902 399.463235,134.129902 C363.097721,134.129902 333.617647,104.649828 333.617647,68.2843137 Z" id="Combined-Shape-Copy-7" fill-opacity="0.2" fill="#FFFFFF"></path>
<path d="M821.362745,123.887255 L953.053922,123.887255 C953.053922,160.252769 923.573848,189.732843 887.208333,189.732843 C850.842819,189.732843 821.362745,160.252769 821.362745,123.887255 Z" id="Combined-Shape-Copy-2" stroke="#FFFFFF" fill="#FFFFFF" transform="translate(887.208333, 156.810049) scale(1, -1) translate(-887.208333, -156.810049) "></path>
<path d="M821.362745,192.659314 L953.053922,192.659314 C953.053922,229.024828 923.573848,258.504902 887.208333,258.504902 C850.842819,258.504902 821.362745,229.024828 821.362745,192.659314 Z" id="Combined-Shape-Copy-3" fill-opacity="0.2" fill="#FFFFFF" transform="translate(887.208333, 225.582108) scale(1, -1) translate(-887.208333, -225.582108) "></path>
<path d="M0,131.691176 L131.691176,131.691176 C131.691176,168.056691 102.211102,197.536765 65.8455882,197.536765 C29.480074,197.536765 0,168.056691 0,131.691176 Z" id="Combined-Shape-Copy-2" stroke="#FFFFFF" transform="translate(65.845588, 164.613971) scale(1, -1) translate(-65.845588, -164.613971) "></path>
<path d="M0,197.536765 L131.691176,197.536765 C131.691176,233.902279 102.211102,263.382353 65.8455882,263.382353 C29.480074,263.382353 0,233.902279 0,197.536765 Z" id="Combined-Shape-Copy-3" stroke="#FFFFFF" transform="translate(65.845588, 230.459559) scale(1, -1) translate(-65.845588, -230.459559) "></path>
<path d="M512.674785,164.613971 L643.009143,164.613971 C643.009143,200.979485 613.832803,230.459559 577.841964,230.459559 C541.851125,230.459559 512.674785,200.979485 512.674785,164.613971 Z" id="Combined-Shape-Copy-4" fill-opacity="0.2" fill="#FFFFFF" transform="translate(577.841964, 197.536765) scale(-1, -1) rotate(90.000000) translate(-577.841964, -197.536765) "></path>
<path d="M581.231053,164.613971 L711.565411,164.613971 C711.565411,200.979485 682.389072,230.459559 646.398232,230.459559 C610.407393,230.459559 581.231053,200.979485 581.231053,164.613971 Z" id="Combined-Shape-Copy-5" stroke="#FFFFFF" fill="#FFFFFF" transform="translate(646.398232, 197.536765) scale(-1, -1) rotate(90.000000) translate(-646.398232, -197.536765) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 285 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 459 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: sketchtool 52.5 (67469) - http://www.bohemiancoding.com/sketch -->
<title>0BC8DFFF-C6F0-44B0-A296-76F4BD4E6560</title>
<desc>Created with sketchtool.</desc>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.6">
<g id="Footer" transform="translate(-1020.000000, -325.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="span2">
<g transform="translate(1020.000000, 118.000000)">
<g id="social-media" transform="translate(0.000000, 207.000000)">
<g id="facebook-square">
<path d="M20,2.14285714 L20,17.8571429 C20,19.0401786 19.0401786,20 17.8571429,20 L14.0491071,20 L14.0491071,12.0892857 L16.7544643,12.0892857 L17.1428571,9.07142857 L14.0491071,9.07142857 L14.0491071,7.14285714 C14.0491071,6.26785714 14.2901786,5.67410714 15.5446429,5.67410714 L17.1428571,5.67410714 L17.1428571,2.97767857 C16.8660714,2.94196429 15.9196429,2.85714286 14.8125,2.85714286 C12.5089286,2.85714286 10.9285714,4.26339286 10.9285714,6.84821429 L10.9285714,9.07589286 L8.21428571,9.07589286 L8.21428571,12.09375 L10.9330357,12.09375 L10.9330357,20 L2.14285714,20 C0.959821429,20 0,19.0401786 0,17.8571429 L0,2.14285714 C0,0.959821429 0.959821429,0 2.14285714,0 L17.8571429,0 C19.0401786,0 20,0.959821429 20,2.14285714 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 538 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: sketchtool 52.5 (67469) - http://www.bohemiancoding.com/sketch -->
<title>B56BD0F9-AFB4-4A2A-8480-F1768DB4B584</title>
<desc>Created with sketchtool.</desc>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.6">
<g id="Footer" transform="translate(-1129.000000, -364.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="span2">
<g transform="translate(1020.000000, 118.000000)">
<g id="social-media" transform="translate(0.000000, 207.000000)">
<g id="github" transform="translate(109.000000, 39.000000)">
<path d="M6.68951613,16.0909091 C6.68951613,16.1735537 6.59677419,16.2396694 6.47983871,16.2396694 C6.34677419,16.2520661 6.25403226,16.1859504 6.25403226,16.0909091 C6.25403226,16.0082645 6.34677419,15.9421488 6.46370968,15.9421488 C6.58467742,15.9297521 6.68951613,15.9958678 6.68951613,16.0909091 Z M5.43548387,15.9049587 C5.40725806,15.9876033 5.48790323,16.0826446 5.60887097,16.107438 C5.71370968,16.1487603 5.83467742,16.107438 5.85887097,16.0247934 C5.88306452,15.9421488 5.80645161,15.8471074 5.68548387,15.8099174 C5.58064516,15.7809917 5.46370968,15.822314 5.43548387,15.9049587 Z M7.21774194,15.8347107 C7.10080645,15.8636364 7.02016129,15.9421488 7.03225806,16.0371901 C7.04435484,16.1198347 7.14919355,16.1735537 7.27016129,16.1446281 C7.38709677,16.1157025 7.46774194,16.0371901 7.45564516,15.9545455 C7.44354839,15.8760331 7.33467742,15.822314 7.21774194,15.8347107 Z M9.87096774,0 C4.27822581,0 0,4.35123967 0,10.0826446 C0,14.6652893 2.81451613,18.5867769 6.83467742,19.9669421 C7.35080645,20.0619835 7.53225806,19.7355372 7.53225806,19.4669421 C7.53225806,19.2107438 7.52016129,17.7975207 7.52016129,16.9297521 C7.52016129,16.9297521 4.69758065,17.5495868 4.10483871,15.6983471 C4.10483871,15.6983471 3.64516129,14.4958678 2.98387097,14.1859504 C2.98387097,14.1859504 2.06048387,13.5371901 3.0483871,13.5495868 C3.0483871,13.5495868 4.05241935,13.6322314 4.60483871,14.6157025 C5.48790323,16.2107438 6.96774194,15.7520661 7.54435484,15.4793388 C7.63709677,14.8181818 7.89919355,14.3595041 8.18951613,14.0867769 C5.93548387,13.8305785 3.66129032,13.4958678 3.66129032,9.52066116 C3.66129032,8.38429752 3.96774194,7.81404959 4.61290323,7.08677686 C4.50806452,6.81818182 4.16532258,5.7107438 4.71774194,4.28099174 C5.56048387,4.01239669 7.5,5.39669421 7.5,5.39669421 C8.30645161,5.16528926 9.1733871,5.04545455 10.0322581,5.04545455 C10.891129,5.04545455 11.7580645,5.16528926 12.5645161,5.39669421 C12.5645161,5.39669421 14.5040323,4.00826446 15.3467742,4.28099174 C15.8991935,5.71487603 15.5564516,6.81818182 15.4516129,7.08677686 C16.0967742,7.81818182 16.4919355,8.38842975 16.4919355,9.52066116 C16.4919355,13.5082645 14.1169355,13.8264463 11.8629032,14.0867769 C12.233871,14.4132231 12.5483871,15.0330579 12.5483871,16.0041322 C12.5483871,17.3966942 12.5362903,19.1198347 12.5362903,19.4586777 C12.5362903,19.7272727 12.7217742,20.053719 13.233871,19.9586777 C17.266129,18.5867769 20,14.6652893 20,10.0826446 C20,4.35123967 15.4637097,0 9.87096774,0 Z M3.91935484,14.2520661 C3.86693548,14.2933884 3.87903226,14.3884298 3.94758065,14.4669421 C4.01209677,14.5330579 4.10483871,14.5619835 4.15725806,14.5082645 C4.20967742,14.4669421 4.19758065,14.3719008 4.12903226,14.2933884 C4.06451613,14.2272727 3.97177419,14.1983471 3.91935484,14.2520661 Z M3.48387097,13.9173554 C3.45564516,13.9710744 3.49596774,14.0371901 3.5766129,14.0785124 C3.64112903,14.1198347 3.72177419,14.107438 3.75,14.0495868 C3.77822581,13.9958678 3.73790323,13.9297521 3.65725806,13.8884298 C3.5766129,13.8636364 3.51209677,13.8760331 3.48387097,13.9173554 Z M4.79032258,15.3884298 C4.72580645,15.4421488 4.75,15.5661157 4.84274194,15.6446281 C4.93548387,15.7396694 5.05241935,15.7520661 5.10483871,15.6859504 C5.15725806,15.6322314 5.13306452,15.5082645 5.05241935,15.4297521 C4.96370968,15.3347107 4.84274194,15.322314 4.79032258,15.3884298 Z M4.33064516,14.7809917 C4.26612903,14.822314 4.26612903,14.9297521 4.33064516,15.0247934 C4.39516129,15.1198347 4.50403226,15.161157 4.55645161,15.1198347 C4.62096774,15.0661157 4.62096774,14.9586777 4.55645161,14.8636364 C4.5,14.768595 4.39516129,14.7272727 4.33064516,14.7809917 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 89 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 273 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 183 KiB

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