feat: 首次提交

This commit is contained in:
耗子 2024-03-25 01:57:54 +08:00
parent 46800785e4
commit b1ab490fa5
714 changed files with 39097 additions and 2 deletions

56
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,56 @@
name: CI
on: [push]
jobs:
prepare-job:
runs-on: ubuntu-latest
container:
image: node:10.24.1
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
build-job:
needs: prepare-job
runs-on: ubuntu-latest
container:
image: node:10.24.1
steps:
- uses: actions/checkout@v4
- name: Build
run: npm run build
zip-job:
needs: build-job
runs-on: ubuntu-latest
container:
image: alpine:latest
steps:
- uses: actions/checkout@v4
- name: Prepare environment
run: |
apk add zip
- name: Zip files
run: |
cd icon-font
zip -r icon-font.zip *
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: icon-font.zip
path: icon-font/icon-font.zip

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
node_modules/
svg/output/
/npm-debug.log
.idea/
svg-min-react/
.DS_Store

323
Gruntfile.js Normal file
View file

@ -0,0 +1,323 @@
/*
* Export Dashicons
*/
'use strict';
var multiline = require( 'multiline' ),
xml2js = require( 'xml2js' );
var KEBAB_REGEX = /\-(\w)/g;
/**
* Transforms kebab case names to camel case
* @param name ex: foo-bar-baz
* @returns {String} ex: fooBarBaz
*/
function kebabToCamelCase( name ) {
return name.replace( KEBAB_REGEX, function replacer( match, capture ) {
return capture.toUpperCase();
} );
}
module.exports = function( grunt ) {
require( 'load-grunt-tasks' )( grunt );
// Project configuration.
grunt.initConfig({
// clean up tmp dirs
clean: [ 'svg-min-react' ],
// Minify SVGs from svg directory, output to svg-min
svgmin: {
dist: {
files: [{
attrs: 'fill',
expand: true,
cwd: 'sources/svg',
src: [ '**/*.svg' ],
dest: 'svg-min/',
ext: '.svg'
}]
},
options: {
plugins: [
{ removeStyleElement: true },
{ removeAttrs: false },
{ removeViewBox: false },
{ removeEmptyAttrs: false },
{ removeTitle: true } // addtitle will add it back in later
]
}
},
// Create single SVG sprite for use outside of React environments, output to svg-sprite
svgstore: {
withCustomTemplate:{
options: {
includeTitleElement: false,
svg: { // will add and overide the the default xmlns="http://www.w3.org/2000/svg" attribute to the resulting SVG
viewBox : '0 0 20 20',
xmlns: 'http://www.w3.org/2000/svg'
},
cleanup : ['style', 'fill', 'id'],
},
files: {
'svg-sprite/dashicons.svg': [ 'svg-min/**/*.svg' ]
}
},
},
// Generate a web font.
webfont: {
icons: {
src: 'svg-min/*.svg',
dest: 'icon-font/fonts',
destCss: 'icon-font/css'
},
options: {
engine: 'node',
autoHint: false,
normalize: true,
optimize: false,
font: 'dashicons',
types: 'eot,woff2,woff,ttf',
order: 'eot,woff,ttf',
embed: true,
descent: 0,
template: 'icon-font/css-template.css',
htmlDemo: true,
htmlDemoTemplate: 'icon-font/demo-template.html',
destHtml: 'icon-font',
templateOptions: {
baseClass: 'dashicons',
classPrefix: 'dashicons-',
mixinPrefix: 'dashicons-'
},
codepointsFile: 'codepoints.json'
}
},
babel: {
options: {
sourceMap: false,
presets: [
'es2015',
'stage-2',
'babili'
],
comments: false,
plugins: [
'transform-runtime',
'transform-class-properties',
'transform-export-extensions',
'add-module-exports',
'syntax-jsx',
'transform-react-jsx',
'transform-react-display-name'
]
},
dist: {
files: {
"react/index.js": "react/index.jsx",
"react/example.js": "react/example.jsx"
}
}
}
});
// Load the SVGstore
grunt.loadNpmTasks('grunt-svgstore');
// Load svgmin
grunt.loadNpmTasks('grunt-svgmin');
// ****************************************************************************************************
// Rewrite to add <g> group tag in `svg-min/`
grunt.registerTask( 'group', 'Add <g> tag to SVGs', function() {
var svgFiles = grunt.file.expand( { filter: 'isFile', cwd: 'svg-min/' }, [ '**/*.svg' ] );
// Add stuff
svgFiles.forEach( function( svgFile ) {
if ( svgFile != 'wordpress.svg' && svgFile != 'wordpress-alt.svg' ) {
// Grab the relevant bits from the file contents
var fileContent = grunt.file.read( 'svg-min/' + svgFile );
// Add <g> to each file
fileContent = fileContent.slice( 0, fileContent.indexOf('viewBox="0 0 20 20">') + 20 ) + // opening SVG tag
'<g>' +
fileContent.slice( fileContent.indexOf('viewBox="0 0 20 20">') + 20, -6 ) + // child elements of SVG
'</g>' +
fileContent.slice( -6 ); // closing SVG tag
// Save and overwrite the files in svg-min
grunt.file.write( 'svg-min/' + svgFile, fileContent );
}
} );
});
// ****************************************************************************************************
// Create temporary SVGs with React syntax (`svg-min/` --> `svg-min-react/`)
grunt.registerTask( 'kebabToCamelCase', 'Rename any svg attributes to camel case for react', function() {
var svgFiles = grunt.file.expand( { filter: 'isFile', cwd: 'svg-min/' }, [ '**/*.svg' ] );
// Add stuff
svgFiles.forEach( function( svgFile ) {
// Grab the relevant bits from the file contents
var fileContent = grunt.file.read( 'svg-min/' + svgFile );
// Rename any attributes to camel case for react
xml2js.parseString( fileContent, {
async: false, // set callback is sync, since this task is sync
trim: true,
attrNameProcessors: [ kebabToCamelCase ]
},
function ( err, result ) {
if ( ! err ) {
var builder = new xml2js.Builder( {
renderOpts: { pretty: false },
headless: true //omit xml header
} );
fileContent = builder.buildObject( result );
}
} );
grunt.file.write( 'svg-min-react/' + svgFile, fileContent );
} );
});
// ****************************************************************************************************
// Create React component (`svg-min-react/` --> `react/`)
grunt.registerTask( 'svgreact', 'Output a react component for SVGs', function() {
var svgFiles = grunt.file.expand( { filter: 'isFile', cwd: 'svg-min-react/' }, [ '**/*.svg' ] ),
content, designContent;
// Start the React component
content = grunt.file.read( 'sources/react/index-header.jsx' );
// Ensure alphabetical ordering ignoring prefix
svgFiles.sort( function( a, b ) {
return a.replace( /^gutenberg\//, '' ).localeCompare(
b.replace( /^gutenberg\//, '' )
);
} );
// Create a switch() case for each svg file
svgFiles.forEach( function( svgFile ) {
// Clean up the filename to use for the react components
console.log( svgFile );
var name = svgFile.split( '.' );
name = name[0];
// strip out "gutenberg/" from those SVGs
name = name.split( 'gutenberg/' );
if ( name.length > 1 ) {
name = name[1];
}
// Grab the relevant bits from the file contents
var fileContent = grunt.file.read( 'svg-min-react/' + svgFile );
// Grab SVG path
var path = fileContent.slice( fileContent.lastIndexOf( '<path d="' ) + 9, -13 );
// Output the case for each icon
var iconComponent = " case '" + name + "':\n" +
" path = '" + path + "';\n" +
" break;\n";
content += iconComponent;
} );
// Finish up the React component
content += grunt.file.read( 'sources/react/index-footer.jsx' );
// Start design/docs component
designContent = "/* eslint-disable no-alert */\n" +
"/**\n" +
" * External dependencies\n" +
" */\n" +
"var React = require( 'react' );\n\n" +
"/**\n" +
" * Internal dependencies\n" +
" */\n" +
"import Dashicon from './index.js';\n\n" +
"module.exports = React.createClass( {\n" +
" displayName: 'Dashicons',\n\n" +
" handleClick: function( icon ) {\n" +
" var toCopy = '<Dashicon icon=\"' + icon + '\" />';\n" +
" window.prompt( 'Copy component code:', toCopy );\n" +
" },\n\n" +
" render: function() {\n" +
' return (\n' +
' <div>\n';
// Create a switch() case for each svg file
svgFiles.forEach( function( svgFile ) {
// Clean up the filename to use for the react components
var name = svgFile.split( '.' );
name = name[0].replace( 'dashicons-', '' );
// Output the case for each icon
var iconComponent = ' <Dashicon icon="' + name + '" size={ 40 } onClick={ this.handleClick.bind( this, \'' + name + '\' ) } />\n';
designContent += iconComponent;
} );
designContent += ' </div>\n' +
' );\n' +
' }\n' +
'} );\n';
// Write the React component to dashicon/index.jsx
grunt.file.write( 'react/index.jsx', content );
grunt.file.write( 'react/example.jsx', designContent );
});
// ****************************************************************************************************
// Rewrite to add transparent square in `svg-min/`
// This ensures precise 20x20 pixel copy/pasting and placement to design apps (i.e. Sketch)
grunt.registerTask( 'addsquare', 'Add transparent square to SVGs', function() {
var svgFiles = grunt.file.expand( { filter: 'isFile', cwd: 'svg-min/' }, [ '**/*.svg' ] );
// Add stuff
svgFiles.forEach( function( svgFile ) {
// Grab the relevant bits from the file contents
var fileContent = grunt.file.read( 'svg-min/' + svgFile );
// Add transparent rectangle to each file
var insertAt = fileContent.indexOf( '>' ) + 1;
fileContent = fileContent.slice( 0, insertAt ) +
'<rect x="0" fill="none" width="20" height="20"/>' +
fileContent.slice( insertAt );
// Save and overwrite the files in svg-min
grunt.file.write( 'svg-min/' + svgFile, fileContent );
} );
});
// ****************************************************************************************************
// Default task
grunt.registerTask('default', [
'svgmin',
'group',
'svgstore',
'kebabToCamelCase',
'svgreact',
'babel',
'webfont',
'addsquare',
'clean'
]);
};

View file

@ -1,2 +1,18 @@
# dashicons
这是文派的后台图标存储库
# Dashicons
这是文派的管理后台图标存储库,分叉自 [github.com/WordPress/dashicons](https://github.com/WordPress/dashicons),想了解更多信息,请移步 [WordPress Developer Resource](https://developer.wordpress.org/resource/dashicons/)。
## Setup
首先你需要安装 <a href="https://nodejs.org">Node JS 10.x</a> 然后只需在终端运行 `npm run build` 即可获得压缩过的 SVG 图标和字体文件。
## Adding an icon
将 SVG 图标添加至 `sources/svg` 文件夹,然后在终端运行 `npm run build`
## License
Dashicons is licensed under [GPLv2](http://www.gnu.org/licenses/gpl-3.0.html), or any later version with [font exception](http://www.gnu.org/licenses/gpl-faq.html#FontException).

345
codepoints.json Normal file
View file

@ -0,0 +1,345 @@
{
"menu": 62259,
"admin-site": 62233,
"dashboard": 61990,
"admin-media": 61700,
"admin-page": 61701,
"admin-comments": 61697,
"admin-appearance": 61696,
"admin-plugins": 61702,
"admin-users": 61712,
"admin-tools": 61703,
"admin-settings": 61704,
"admin-network": 61714,
"admin-generic": 61713,
"admin-home": 61698,
"admin-collapse": 61768,
"filter": 62774,
"admin-customizer": 62784,
"admin-multisite": 62785,
"admin-links": 61699,
"admin-post": 61705,
"format-image": 61736,
"format-gallery": 61793,
"format-audio": 61735,
"format-video": 61734,
"format-chat": 61733,
"format-status": 61744,
"format-aside": 61731,
"format-quote": 61730,
"welcome-write-blog": 61721,
"welcome-add-page": 61747,
"welcome-view-site": 61717,
"welcome-widgets-menus": 61718,
"welcome-comments": 61719,
"welcome-learn-more": 61720,
"image-crop": 61797,
"image-rotate": 62769,
"image-rotate-left": 61798,
"image-rotate-right": 61799,
"image-flip-vertical": 61800,
"image-flip-horizontal": 61801,
"image-filter": 62771,
"undo": 61809,
"redo": 61810,
"editor-bold": 61952,
"editor-italic": 61953,
"editor-ul": 61955,
"editor-ol": 61956,
"editor-quote": 61957,
"editor-alignleft": 61958,
"editor-aligncenter": 61959,
"editor-alignright": 61960,
"editor-insertmore": 61961,
"editor-spellcheck": 61968,
"editor-expand": 61969,
"editor-contract": 62726,
"editor-kitchensink": 61970,
"editor-underline": 61971,
"editor-justify": 61972,
"editor-textcolor": 61973,
"editor-paste-word": 61974,
"editor-paste-text": 61975,
"editor-removeformatting": 61976,
"editor-video": 61977,
"editor-customchar": 61984,
"editor-outdent": 61985,
"editor-indent": 61986,
"editor-help": 61987,
"editor-strikethrough": 61988,
"editor-unlink": 61989,
"editor-rtl": 62240,
"editor-break": 62580,
"editor-code": 62581,
"editor-code-duplicate": 62612,
"editor-paragraph": 62582,
"editor-table": 62773,
"align-left": 61749,
"align-right": 61750,
"align-center": 61748,
"align-none": 61752,
"lock": 61792,
"lock-duplicate": 62229,
"unlock": 62760,
"calendar": 61765,
"calendar-alt": 62728,
"visibility": 61815,
"hidden": 62768,
"post-status": 61811,
"edit": 62564,
"edit-large": 62247,
"sticky": 62775,
"external": 62724,
"arrow-up": 61762,
"arrow-up-duplicate": 61763,
"arrow-down": 61760,
"arrow-left": 61761,
"arrow-right": 61753,
"arrow-up-alt": 62274,
"arrow-down-alt": 62278,
"arrow-left-alt": 62272,
"arrow-right-alt": 62276,
"arrow-up-alt2": 62275,
"arrow-down-alt2": 62279,
"arrow-left-alt2": 62273,
"arrow-right-alt2": 62277,
"leftright": 61993,
"sort": 61782,
"randomize": 62723,
"list-view": 61795,
"excerpt-view": 61796,
"grid-view": 62729,
"move": 62789,
"hammer": 62216,
"art": 62217,
"migrate": 62224,
"performance": 62225,
"universal-access": 62595,
"universal-access-alt": 62727,
"tickets": 62598,
"nametag": 62596,
"clipboard": 62593,
"heart": 62599,
"megaphone": 62600,
"schedule": 62601,
"wordpress": 61728,
"wordpress-alt": 62244,
"pressthis": 61783,
"update": 62563,
"screenoptions": 61824,
"cart": 61812,
"feedback": 61813,
"translation": 62246,
"tag": 62243,
"category": 62232,
"archive": 62592,
"tagcloud": 62585,
"text": 62584,
"media-archive": 62721,
"media-audio": 62720,
"media-code": 62617,
"media-default": 62616,
"media-document": 62615,
"media-interactive": 62614,
"media-spreadsheet": 62613,
"media-text": 62609,
"media-video": 62608,
"playlist-audio": 62610,
"playlist-video": 62611,
"controls-play": 62754,
"controls-pause": 62755,
"controls-forward": 62745,
"controls-skipforward": 62743,
"controls-back": 62744,
"controls-skipback": 62742,
"controls-repeat": 62741,
"controls-volumeon": 62753,
"controls-volumeoff": 62752,
"yes": 61767,
"no": 61784,
"no-alt": 62261,
"plus": 61746,
"plus-alt": 62722,
"plus-alt2": 62787,
"minus": 62560,
"dismiss": 61779,
"marker": 61785,
"star-filled": 61781,
"star-half": 62553,
"star-empty": 61780,
"flag": 61991,
"info": 62280,
"warning": 62772,
"share": 62007,
"share1": 62007,
"share-alt": 62016,
"share-alt2": 62018,
"twitter": 62209,
"rss": 62211,
"email": 62565,
"email-alt": 62566,
"facebook": 62212,
"facebook-alt": 62213,
"networking": 62245,
"googleplus": 62562,
"location": 62000,
"location-alt": 62001,
"camera": 62214,
"images-alt": 62002,
"images-alt2": 62003,
"video-alt": 62004,
"video-alt2": 62005,
"video-alt3": 62006,
"vault": 61816,
"shield": 62258,
"shield-alt": 62260,
"sos": 62568,
"search": 61817,
"slides": 61825,
"analytics": 61827,
"chart-pie": 61828,
"chart-bar": 61829,
"chart-line": 62008,
"chart-area": 62009,
"groups": 62215,
"businessman": 62264,
"id": 62262,
"id-alt": 62263,
"products": 62226,
"awards": 62227,
"forms": 62228,
"testimonial": 62579,
"portfolio": 62242,
"book": 62256,
"book-alt": 62257,
"download": 62230,
"upload": 62231,
"backup": 62241,
"clock": 62569,
"lightbulb": 62265,
"microphone": 62594,
"desktop": 62578,
"laptop": 62791,
"tablet": 62577,
"smartphone": 62576,
"phone": 62757,
"smiley": 62248,
"index-card": 62736,
"carrot": 62737,
"building": 62738,
"store": 62739,
"album": 62740,
"palmtree": 62759,
"tickets-alt": 62756,
"money": 62758,
"thumbs-up": 62761,
"thumbs-down": 62786,
"layout": 62776,
"paperclip": 62790,
"email-alt2": 62567,
"menu-alt": 61992,
"trash": 61826,
"heading": 61710,
"insert": 61711,
"align-full-width": 61716,
"button": 61722,
"align-wide": 61723,
"ellipsis": 61724,
"buddicons-activity": 62546,
"buddicons-buddypress-logo": 62536,
"buddicons-community": 62547,
"buddicons-forums": 62537,
"buddicons-friends": 62548,
"buddicons-groups": 62550,
"buddicons-pm": 62551,
"buddicons-replies": 62545,
"buddicons-topics": 62544,
"buddicons-tracking": 62549,
"admin-site-alt": 61725,
"admin-site-alt2": 61726,
"admin-site-alt3": 61727,
"rest-api": 61732,
"yes-alt": 61738,
"buddicons-bbpress-logo": 62583,
"tide": 61709,
"editor-ol-rtl": 61740,
"instagram": 61741,
"businessperson": 61742,
"businesswoman": 61743,
"color-picker": 61745,
"camera-alt": 61737,
"editor-ltr": 61708,
"cloud": 61814,
"twitter-alt": 62210,
"menu-alt2": 62249,
"menu-alt3": 62281,
"plugins-checked": 62597,
"text-page": 61729,
"update-alt": 61715,
"code-standards": 61754,
"align-pull-left": 61706,
"align-pull-right": 61707,
"block-default": 61739,
"cloud-saved": 61751,
"cloud-upload": 61755,
"columns": 61756,
"cover-image": 61757,
"embed-audio": 61758,
"embed-generic": 61759,
"embed-photo": 61764,
"embed-post": 61766,
"embed-video": 61769,
"exit": 61770,
"html": 61771,
"info-outline": 61772,
"insert-after": 61773,
"insert-before": 61774,
"remove": 61775,
"shortcode": 61776,
"table-col-after": 61777,
"table-col-before": 61778,
"table-col-delete": 61786,
"table-row-after": 61787,
"table-row-before": 61788,
"table-row-delete": 61789,
"saved": 61790,
"airplane": 61791,
"amazon": 61794,
"bank": 61802,
"beer": 61804,
"bell": 61805,
"calculator": 61806,
"coffee": 61807,
"database-add": 61808,
"database-export": 61818,
"database-import": 61819,
"database-remove": 61820,
"database-view": 61821,
"database": 61822,
"drumstick": 61823,
"edit-page": 61830,
"food": 61831,
"fullscreen-alt": 61832,
"fullscreen-exit-alt": 61833,
"games": 61834,
"google": 61835,
"hourglass": 61836,
"linkedin": 61837,
"money-alt": 61838,
"open-folder": 61839,
"pdf": 61840,
"pets": 61841,
"pinterest": 61842,
"printer": 61843,
"privacy": 61844,
"reddit": 61845,
"spotify": 61846,
"superhero-alt": 61847,
"superhero": 61848,
"twitch": 61849,
"whatsapp": 61850,
"youtube": 61851,
"car": 61803,
"podio": 61852,
"xing": 61853
}

View file

@ -0,0 +1,85 @@
/**
* DO NOT EDIT THIS FILE DIRECTLY
* This file is automatically built using a build process
* If you need to fix errors, see https://github.com/WordPress/dashicons
*/
/* stylelint-disable function-url-quotes, declaration-colon-newline-after */
<% if (fontfaceStyles) { %>@font-face {
font-family: <%= fontFamilyName %>;<% if (fontSrc1) { %>
src: <%= fontSrc1 %>;<% }%>
src: <%= fontSrc2 %>;
font-weight: 400;
font-style: normal;
}
/* stylelint-enable */
<% } %>
<% if (baseStyles) { %>.<%= baseClass %>,
.dashicons-before:before<% if (addLigatures) { %>,
.ligature-icons<% } %> {
<% if (stylesheet === 'less') { %>&:before {<% } %>font-family: <%= fontFamilyName %>;<% if (stylesheet === 'less') { %>}<% } %>
display: inline-block;
line-height: 1;
font-weight: 400;
font-style: normal;
speak: never;
text-decoration: inherit;
text-transform: none;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 20px;
height: 20px;
font-size: 20px;
vertical-align: top;
text-align: center;
transition: color 0.1s ease-in;
}
<% } %>
<% if (iconsStyles) { %>/* Icons */<% for (var glyphIdx = 0; glyphIdx < glyphs.length; glyphIdx++) { %><% if (stylesheet === 'less') { %>
.<%= classPrefix %><%= glyphs[glyphIdx] %> {
&:before {
content: "<% if (addLigatures) { %><%= glyphs[glyphIdx] %><% } else { %>\<%= codepoints[glyphIdx] %><% } %>";
}<% if (ie7) {%>
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x<%= codepoints[glyphIdx] %>;');
<% } %>
}<% } else { %>
<% if (ie7) {%>.<%= classPrefix %><%= glyphs[glyphIdx] %> {
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x<%= codepoints[glyphIdx] %>;');
}
<% } %>
.<%= classPrefix %><%= glyphs[glyphIdx] %>:before {
content: "<% if (addLigatures) { %><%= glyphs[glyphIdx] %><% } else { %>\<%= codepoints[glyphIdx] %><% } %>";
}<% } } } %>
/* Additional CSS classes, manually added to the CSS template file */
.dashicons-editor-distractionfree:before {
content: "\f211";
}
/* This is a typo, but was previously released. It should remain for backward compatibility. See https://core.trac.wordpress.org/ticket/30832. */
.dashicons-exerpt-view:before {
content: "\f164";
}
.dashicons-format-links:before {
content: "\f103";
}
.dashicons-format-standard:before {
content: "\f109";
}
.dashicons-post-trash:before {
content: "\f182";
}
.dashicons-share1:before {
content: "\f237";
}
.dashicons-welcome-edit-page:before {
content: "\f119";
}

1440
icon-font/css/dashicons.css Normal file

File diff suppressed because one or more lines are too long

2205
icon-font/dashicons.html Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,91 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><%= fontFamilyName %></title>
<style>
<style type="text/css">
html, body {
margin: 0;
padding: 0;
height: 100%;
}
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body {
font: 11pt/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
}
.icons {
margin-bottom:40px;
-webkit-column-count:5;
-moz-column-count:5;
column-count:5;
-webkit-column-gap:20px;
-moz-column-gap:20px;
column-gap:20px;
}
.icons__item,
.icons__item i {
line-height:2em;
cursor:pointer;
overflow:hidden;
}
.icons__item i {
font-size: 20px;
display:inline-block;
width:32px;
height:32px;
text-align:center;
}
/* Legacy duplicate Dashicons CSS */
.dashicons-editor-distractionfree:before {
content: "\f211";
}
<%= styles %>
</style>
</head>
<body>
<h1><%= fontFamilyName %><% if (version) { %><small>version <%= version %></small><% } %></h1>
<div class="icons" id="icons">
<% for (var glyphIdx = 0; glyphIdx < glyphs.length; glyphIdx++) { var glyph = glyphs[glyphIdx] %>
<div class="icons__item" data-name="<%= glyph %>"><i class="<%= baseClass %> <%= classPrefix %><%= glyph %>"></i> <%= classPrefix %><%= glyph %></div>
<% } %>
</div>
<% if (addLigatures) { %>
<div class="ligature-icons" style="display:none">
<% for (var glyphIdx = 0; glyphIdx < glyphs.length; glyphIdx++) { var glyph = glyphs[glyphIdx]; %>
<%= glyph %>
<% } %>
</div>
<% } %>
<h1>Usage</h1>
<pre><code>&lt;i class=&quot;<%= baseClass ? baseClass + ' ' : '' %><%= classPrefix %><span id="name">name</span>&quot;&gt;&lt;/i&gt;</code></pre>
<% if (addLigatures) { %>
<pre><code>&lt;i class=&quot;ligature-icons&quot;&gt;<span id="name2">name</span>&lt;/i&gt;</code></pre>
<% } %>
<script>
(function() {
document.getElementById('icons').onclick = function(e) {
e = e || window.event;
var name = e.target.getAttribute('data-name') || e.target.parentNode.getAttribute('data-name');
document.getElementById('name').innerHTML = name;
<% if (addLigatures) { %>document.getElementById('name2').innerHTML = name;<% } %>
}
})();
</script>
</body>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

3
index.html Normal file
View file

@ -0,0 +1,3 @@
<script>
window.location.replace("http://developer.wordpress.org/resource/dashicons/");
</script>

6678
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

47
package.json Normal file
View file

@ -0,0 +1,47 @@
{
"name": "dashicons",
"version": "0.9.0",
"main": "build/index.js",
"scripts": {
"build": "grunt --verbose",
"prepublish": "npm run build"
},
"peerDependencies": {
"react": ">=14.x"
},
"repository": {
"type": "git",
"url": "https://github.com/WordPress/dashicons"
},
"license": "GPL-2.0-or-later",
"files": [
"build/index.js",
"build/example.js"
],
"devDependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-react-display-name": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babili": "0.0.10",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^0.6.0",
"grunt-rename": "^0.1.4",
"grunt-svgmin": "^2.0.1",
"grunt-svgstore": "^0.3.6",
"grunt-webfont": "^1.7.2",
"handlebars": "^4.7.6",
"jit-grunt": "^0.10.0",
"load-grunt-tasks": "^3.5.2",
"multiline": "^0.3.4",
"xml2js": "^0.4.17"
}
}

1
react/example.js Normal file

File diff suppressed because one or more lines are too long

368
react/example.jsx Normal file
View file

@ -0,0 +1,368 @@
/* eslint-disable no-alert */
/**
* External dependencies
*/
var React = require( 'react' );
/**
* Internal dependencies
*/
import Dashicon from './index.js';
module.exports = React.createClass( {
displayName: 'Dashicons',
handleClick: function( icon ) {
var toCopy = '<Dashicon icon="' + icon + '" />';
window.prompt( 'Copy component code:', toCopy );
},
render: function() {
return (
<div>
<Dashicon icon="admin-appearance" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-appearance' ) } />
<Dashicon icon="admin-collapse" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-collapse' ) } />
<Dashicon icon="admin-comments" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-comments' ) } />
<Dashicon icon="admin-customizer" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-customizer' ) } />
<Dashicon icon="admin-generic" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-generic' ) } />
<Dashicon icon="admin-home" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-home' ) } />
<Dashicon icon="admin-links" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-links' ) } />
<Dashicon icon="admin-media" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-media' ) } />
<Dashicon icon="admin-multisite" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-multisite' ) } />
<Dashicon icon="admin-network" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-network' ) } />
<Dashicon icon="admin-page" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-page' ) } />
<Dashicon icon="admin-plugins" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-plugins' ) } />
<Dashicon icon="admin-post" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-post' ) } />
<Dashicon icon="admin-settings" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-settings' ) } />
<Dashicon icon="admin-site-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-site-alt' ) } />
<Dashicon icon="admin-site-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-site-alt2' ) } />
<Dashicon icon="admin-site-alt3" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-site-alt3' ) } />
<Dashicon icon="admin-site" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-site' ) } />
<Dashicon icon="admin-tools" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-tools' ) } />
<Dashicon icon="admin-users" size={ 40 } onClick={ this.handleClick.bind( this, 'admin-users' ) } />
<Dashicon icon="airplane" size={ 40 } onClick={ this.handleClick.bind( this, 'airplane' ) } />
<Dashicon icon="album" size={ 40 } onClick={ this.handleClick.bind( this, 'album' ) } />
<Dashicon icon="align-center" size={ 40 } onClick={ this.handleClick.bind( this, 'align-center' ) } />
<Dashicon icon="align-full-width" size={ 40 } onClick={ this.handleClick.bind( this, 'align-full-width' ) } />
<Dashicon icon="align-left" size={ 40 } onClick={ this.handleClick.bind( this, 'align-left' ) } />
<Dashicon icon="align-none" size={ 40 } onClick={ this.handleClick.bind( this, 'align-none' ) } />
<Dashicon icon="align-pull-left" size={ 40 } onClick={ this.handleClick.bind( this, 'align-pull-left' ) } />
<Dashicon icon="align-pull-right" size={ 40 } onClick={ this.handleClick.bind( this, 'align-pull-right' ) } />
<Dashicon icon="align-right" size={ 40 } onClick={ this.handleClick.bind( this, 'align-right' ) } />
<Dashicon icon="align-wide" size={ 40 } onClick={ this.handleClick.bind( this, 'align-wide' ) } />
<Dashicon icon="amazon" size={ 40 } onClick={ this.handleClick.bind( this, 'amazon' ) } />
<Dashicon icon="analytics" size={ 40 } onClick={ this.handleClick.bind( this, 'analytics' ) } />
<Dashicon icon="archive" size={ 40 } onClick={ this.handleClick.bind( this, 'archive' ) } />
<Dashicon icon="arrow-down-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-down-alt' ) } />
<Dashicon icon="arrow-down-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-down-alt2' ) } />
<Dashicon icon="arrow-down" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-down' ) } />
<Dashicon icon="arrow-left-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-left-alt' ) } />
<Dashicon icon="arrow-left-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-left-alt2' ) } />
<Dashicon icon="arrow-left" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-left' ) } />
<Dashicon icon="arrow-right-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-right-alt' ) } />
<Dashicon icon="arrow-right-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-right-alt2' ) } />
<Dashicon icon="arrow-right" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-right' ) } />
<Dashicon icon="arrow-up-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-up-alt' ) } />
<Dashicon icon="arrow-up-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-up-alt2' ) } />
<Dashicon icon="arrow-up-duplicate" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-up-duplicate' ) } />
<Dashicon icon="arrow-up" size={ 40 } onClick={ this.handleClick.bind( this, 'arrow-up' ) } />
<Dashicon icon="art" size={ 40 } onClick={ this.handleClick.bind( this, 'art' ) } />
<Dashicon icon="awards" size={ 40 } onClick={ this.handleClick.bind( this, 'awards' ) } />
<Dashicon icon="backup" size={ 40 } onClick={ this.handleClick.bind( this, 'backup' ) } />
<Dashicon icon="bank" size={ 40 } onClick={ this.handleClick.bind( this, 'bank' ) } />
<Dashicon icon="beer" size={ 40 } onClick={ this.handleClick.bind( this, 'beer' ) } />
<Dashicon icon="bell" size={ 40 } onClick={ this.handleClick.bind( this, 'bell' ) } />
<Dashicon icon="block-default" size={ 40 } onClick={ this.handleClick.bind( this, 'block-default' ) } />
<Dashicon icon="book-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'book-alt' ) } />
<Dashicon icon="book" size={ 40 } onClick={ this.handleClick.bind( this, 'book' ) } />
<Dashicon icon="buddicons-activity" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-activity' ) } />
<Dashicon icon="buddicons-bbpress-logo" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-bbpress-logo' ) } />
<Dashicon icon="buddicons-buddypress-logo" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-buddypress-logo' ) } />
<Dashicon icon="buddicons-community" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-community' ) } />
<Dashicon icon="buddicons-forums" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-forums' ) } />
<Dashicon icon="buddicons-friends" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-friends' ) } />
<Dashicon icon="buddicons-groups" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-groups' ) } />
<Dashicon icon="buddicons-pm" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-pm' ) } />
<Dashicon icon="buddicons-replies" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-replies' ) } />
<Dashicon icon="buddicons-topics" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-topics' ) } />
<Dashicon icon="buddicons-tracking" size={ 40 } onClick={ this.handleClick.bind( this, 'buddicons-tracking' ) } />
<Dashicon icon="building" size={ 40 } onClick={ this.handleClick.bind( this, 'building' ) } />
<Dashicon icon="businessman" size={ 40 } onClick={ this.handleClick.bind( this, 'businessman' ) } />
<Dashicon icon="businessperson" size={ 40 } onClick={ this.handleClick.bind( this, 'businessperson' ) } />
<Dashicon icon="businesswoman" size={ 40 } onClick={ this.handleClick.bind( this, 'businesswoman' ) } />
<Dashicon icon="button" size={ 40 } onClick={ this.handleClick.bind( this, 'button' ) } />
<Dashicon icon="calculator" size={ 40 } onClick={ this.handleClick.bind( this, 'calculator' ) } />
<Dashicon icon="calendar-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'calendar-alt' ) } />
<Dashicon icon="calendar" size={ 40 } onClick={ this.handleClick.bind( this, 'calendar' ) } />
<Dashicon icon="camera-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'camera-alt' ) } />
<Dashicon icon="camera" size={ 40 } onClick={ this.handleClick.bind( this, 'camera' ) } />
<Dashicon icon="car" size={ 40 } onClick={ this.handleClick.bind( this, 'car' ) } />
<Dashicon icon="carrot" size={ 40 } onClick={ this.handleClick.bind( this, 'carrot' ) } />
<Dashicon icon="cart" size={ 40 } onClick={ this.handleClick.bind( this, 'cart' ) } />
<Dashicon icon="category" size={ 40 } onClick={ this.handleClick.bind( this, 'category' ) } />
<Dashicon icon="chart-area" size={ 40 } onClick={ this.handleClick.bind( this, 'chart-area' ) } />
<Dashicon icon="chart-bar" size={ 40 } onClick={ this.handleClick.bind( this, 'chart-bar' ) } />
<Dashicon icon="chart-line" size={ 40 } onClick={ this.handleClick.bind( this, 'chart-line' ) } />
<Dashicon icon="chart-pie" size={ 40 } onClick={ this.handleClick.bind( this, 'chart-pie' ) } />
<Dashicon icon="clipboard" size={ 40 } onClick={ this.handleClick.bind( this, 'clipboard' ) } />
<Dashicon icon="clock" size={ 40 } onClick={ this.handleClick.bind( this, 'clock' ) } />
<Dashicon icon="cloud-saved" size={ 40 } onClick={ this.handleClick.bind( this, 'cloud-saved' ) } />
<Dashicon icon="cloud-upload" size={ 40 } onClick={ this.handleClick.bind( this, 'cloud-upload' ) } />
<Dashicon icon="cloud" size={ 40 } onClick={ this.handleClick.bind( this, 'cloud' ) } />
<Dashicon icon="code-standards" size={ 40 } onClick={ this.handleClick.bind( this, 'code-standards' ) } />
<Dashicon icon="coffee" size={ 40 } onClick={ this.handleClick.bind( this, 'coffee' ) } />
<Dashicon icon="color-picker" size={ 40 } onClick={ this.handleClick.bind( this, 'color-picker' ) } />
<Dashicon icon="columns" size={ 40 } onClick={ this.handleClick.bind( this, 'columns' ) } />
<Dashicon icon="controls-back" size={ 40 } onClick={ this.handleClick.bind( this, 'controls-back' ) } />
<Dashicon icon="controls-forward" size={ 40 } onClick={ this.handleClick.bind( this, 'controls-forward' ) } />
<Dashicon icon="controls-pause" size={ 40 } onClick={ this.handleClick.bind( this, 'controls-pause' ) } />
<Dashicon icon="controls-play" size={ 40 } onClick={ this.handleClick.bind( this, 'controls-play' ) } />
<Dashicon icon="controls-repeat" size={ 40 } onClick={ this.handleClick.bind( this, 'controls-repeat' ) } />
<Dashicon icon="controls-skipback" size={ 40 } onClick={ this.handleClick.bind( this, 'controls-skipback' ) } />
<Dashicon icon="controls-skipforward" size={ 40 } onClick={ this.handleClick.bind( this, 'controls-skipforward' ) } />
<Dashicon icon="controls-volumeoff" size={ 40 } onClick={ this.handleClick.bind( this, 'controls-volumeoff' ) } />
<Dashicon icon="controls-volumeon" size={ 40 } onClick={ this.handleClick.bind( this, 'controls-volumeon' ) } />
<Dashicon icon="cover-image" size={ 40 } onClick={ this.handleClick.bind( this, 'cover-image' ) } />
<Dashicon icon="dashboard" size={ 40 } onClick={ this.handleClick.bind( this, 'dashboard' ) } />
<Dashicon icon="database-add" size={ 40 } onClick={ this.handleClick.bind( this, 'database-add' ) } />
<Dashicon icon="database-export" size={ 40 } onClick={ this.handleClick.bind( this, 'database-export' ) } />
<Dashicon icon="database-import" size={ 40 } onClick={ this.handleClick.bind( this, 'database-import' ) } />
<Dashicon icon="database-remove" size={ 40 } onClick={ this.handleClick.bind( this, 'database-remove' ) } />
<Dashicon icon="database-view" size={ 40 } onClick={ this.handleClick.bind( this, 'database-view' ) } />
<Dashicon icon="database" size={ 40 } onClick={ this.handleClick.bind( this, 'database' ) } />
<Dashicon icon="desktop" size={ 40 } onClick={ this.handleClick.bind( this, 'desktop' ) } />
<Dashicon icon="dismiss" size={ 40 } onClick={ this.handleClick.bind( this, 'dismiss' ) } />
<Dashicon icon="download" size={ 40 } onClick={ this.handleClick.bind( this, 'download' ) } />
<Dashicon icon="drumstick" size={ 40 } onClick={ this.handleClick.bind( this, 'drumstick' ) } />
<Dashicon icon="edit-large" size={ 40 } onClick={ this.handleClick.bind( this, 'edit-large' ) } />
<Dashicon icon="edit-page" size={ 40 } onClick={ this.handleClick.bind( this, 'edit-page' ) } />
<Dashicon icon="edit" size={ 40 } onClick={ this.handleClick.bind( this, 'edit' ) } />
<Dashicon icon="editor-aligncenter" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-aligncenter' ) } />
<Dashicon icon="editor-alignleft" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-alignleft' ) } />
<Dashicon icon="editor-alignright" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-alignright' ) } />
<Dashicon icon="editor-bold" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-bold' ) } />
<Dashicon icon="editor-break" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-break' ) } />
<Dashicon icon="editor-code-duplicate" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-code-duplicate' ) } />
<Dashicon icon="editor-code" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-code' ) } />
<Dashicon icon="editor-contract" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-contract' ) } />
<Dashicon icon="editor-customchar" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-customchar' ) } />
<Dashicon icon="editor-expand" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-expand' ) } />
<Dashicon icon="editor-help" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-help' ) } />
<Dashicon icon="editor-indent" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-indent' ) } />
<Dashicon icon="editor-insertmore" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-insertmore' ) } />
<Dashicon icon="editor-italic" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-italic' ) } />
<Dashicon icon="editor-justify" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-justify' ) } />
<Dashicon icon="editor-kitchensink" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-kitchensink' ) } />
<Dashicon icon="editor-ltr" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-ltr' ) } />
<Dashicon icon="editor-ol-rtl" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-ol-rtl' ) } />
<Dashicon icon="editor-ol" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-ol' ) } />
<Dashicon icon="editor-outdent" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-outdent' ) } />
<Dashicon icon="editor-paragraph" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-paragraph' ) } />
<Dashicon icon="editor-paste-text" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-paste-text' ) } />
<Dashicon icon="editor-paste-word" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-paste-word' ) } />
<Dashicon icon="editor-quote" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-quote' ) } />
<Dashicon icon="editor-removeformatting" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-removeformatting' ) } />
<Dashicon icon="editor-rtl" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-rtl' ) } />
<Dashicon icon="editor-spellcheck" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-spellcheck' ) } />
<Dashicon icon="editor-strikethrough" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-strikethrough' ) } />
<Dashicon icon="editor-table" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-table' ) } />
<Dashicon icon="editor-textcolor" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-textcolor' ) } />
<Dashicon icon="editor-ul" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-ul' ) } />
<Dashicon icon="editor-underline" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-underline' ) } />
<Dashicon icon="editor-unlink" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-unlink' ) } />
<Dashicon icon="editor-video" size={ 40 } onClick={ this.handleClick.bind( this, 'editor-video' ) } />
<Dashicon icon="ellipsis" size={ 40 } onClick={ this.handleClick.bind( this, 'ellipsis' ) } />
<Dashicon icon="email-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'email-alt' ) } />
<Dashicon icon="email-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'email-alt2' ) } />
<Dashicon icon="email" size={ 40 } onClick={ this.handleClick.bind( this, 'email' ) } />
<Dashicon icon="embed-audio" size={ 40 } onClick={ this.handleClick.bind( this, 'embed-audio' ) } />
<Dashicon icon="embed-generic" size={ 40 } onClick={ this.handleClick.bind( this, 'embed-generic' ) } />
<Dashicon icon="embed-photo" size={ 40 } onClick={ this.handleClick.bind( this, 'embed-photo' ) } />
<Dashicon icon="embed-post" size={ 40 } onClick={ this.handleClick.bind( this, 'embed-post' ) } />
<Dashicon icon="embed-video" size={ 40 } onClick={ this.handleClick.bind( this, 'embed-video' ) } />
<Dashicon icon="excerpt-view" size={ 40 } onClick={ this.handleClick.bind( this, 'excerpt-view' ) } />
<Dashicon icon="exit" size={ 40 } onClick={ this.handleClick.bind( this, 'exit' ) } />
<Dashicon icon="external" size={ 40 } onClick={ this.handleClick.bind( this, 'external' ) } />
<Dashicon icon="facebook-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'facebook-alt' ) } />
<Dashicon icon="facebook" size={ 40 } onClick={ this.handleClick.bind( this, 'facebook' ) } />
<Dashicon icon="feedback" size={ 40 } onClick={ this.handleClick.bind( this, 'feedback' ) } />
<Dashicon icon="filter" size={ 40 } onClick={ this.handleClick.bind( this, 'filter' ) } />
<Dashicon icon="flag" size={ 40 } onClick={ this.handleClick.bind( this, 'flag' ) } />
<Dashicon icon="food" size={ 40 } onClick={ this.handleClick.bind( this, 'food' ) } />
<Dashicon icon="format-aside" size={ 40 } onClick={ this.handleClick.bind( this, 'format-aside' ) } />
<Dashicon icon="format-audio" size={ 40 } onClick={ this.handleClick.bind( this, 'format-audio' ) } />
<Dashicon icon="format-chat" size={ 40 } onClick={ this.handleClick.bind( this, 'format-chat' ) } />
<Dashicon icon="format-gallery" size={ 40 } onClick={ this.handleClick.bind( this, 'format-gallery' ) } />
<Dashicon icon="format-image" size={ 40 } onClick={ this.handleClick.bind( this, 'format-image' ) } />
<Dashicon icon="format-quote" size={ 40 } onClick={ this.handleClick.bind( this, 'format-quote' ) } />
<Dashicon icon="format-status" size={ 40 } onClick={ this.handleClick.bind( this, 'format-status' ) } />
<Dashicon icon="format-video" size={ 40 } onClick={ this.handleClick.bind( this, 'format-video' ) } />
<Dashicon icon="forms" size={ 40 } onClick={ this.handleClick.bind( this, 'forms' ) } />
<Dashicon icon="fullscreen-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'fullscreen-alt' ) } />
<Dashicon icon="fullscreen-exit-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'fullscreen-exit-alt' ) } />
<Dashicon icon="games" size={ 40 } onClick={ this.handleClick.bind( this, 'games' ) } />
<Dashicon icon="google" size={ 40 } onClick={ this.handleClick.bind( this, 'google' ) } />
<Dashicon icon="googleplus" size={ 40 } onClick={ this.handleClick.bind( this, 'googleplus' ) } />
<Dashicon icon="grid-view" size={ 40 } onClick={ this.handleClick.bind( this, 'grid-view' ) } />
<Dashicon icon="groups" size={ 40 } onClick={ this.handleClick.bind( this, 'groups' ) } />
<Dashicon icon="hammer" size={ 40 } onClick={ this.handleClick.bind( this, 'hammer' ) } />
<Dashicon icon="heading" size={ 40 } onClick={ this.handleClick.bind( this, 'heading' ) } />
<Dashicon icon="heart" size={ 40 } onClick={ this.handleClick.bind( this, 'heart' ) } />
<Dashicon icon="hidden" size={ 40 } onClick={ this.handleClick.bind( this, 'hidden' ) } />
<Dashicon icon="hourglass" size={ 40 } onClick={ this.handleClick.bind( this, 'hourglass' ) } />
<Dashicon icon="html" size={ 40 } onClick={ this.handleClick.bind( this, 'html' ) } />
<Dashicon icon="id-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'id-alt' ) } />
<Dashicon icon="id" size={ 40 } onClick={ this.handleClick.bind( this, 'id' ) } />
<Dashicon icon="image-crop" size={ 40 } onClick={ this.handleClick.bind( this, 'image-crop' ) } />
<Dashicon icon="image-filter" size={ 40 } onClick={ this.handleClick.bind( this, 'image-filter' ) } />
<Dashicon icon="image-flip-horizontal" size={ 40 } onClick={ this.handleClick.bind( this, 'image-flip-horizontal' ) } />
<Dashicon icon="image-flip-vertical" size={ 40 } onClick={ this.handleClick.bind( this, 'image-flip-vertical' ) } />
<Dashicon icon="image-rotate-left" size={ 40 } onClick={ this.handleClick.bind( this, 'image-rotate-left' ) } />
<Dashicon icon="image-rotate-right" size={ 40 } onClick={ this.handleClick.bind( this, 'image-rotate-right' ) } />
<Dashicon icon="image-rotate" size={ 40 } onClick={ this.handleClick.bind( this, 'image-rotate' ) } />
<Dashicon icon="images-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'images-alt' ) } />
<Dashicon icon="images-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'images-alt2' ) } />
<Dashicon icon="index-card" size={ 40 } onClick={ this.handleClick.bind( this, 'index-card' ) } />
<Dashicon icon="info-outline" size={ 40 } onClick={ this.handleClick.bind( this, 'info-outline' ) } />
<Dashicon icon="info" size={ 40 } onClick={ this.handleClick.bind( this, 'info' ) } />
<Dashicon icon="insert-after" size={ 40 } onClick={ this.handleClick.bind( this, 'insert-after' ) } />
<Dashicon icon="insert-before" size={ 40 } onClick={ this.handleClick.bind( this, 'insert-before' ) } />
<Dashicon icon="insert" size={ 40 } onClick={ this.handleClick.bind( this, 'insert' ) } />
<Dashicon icon="instagram" size={ 40 } onClick={ this.handleClick.bind( this, 'instagram' ) } />
<Dashicon icon="laptop" size={ 40 } onClick={ this.handleClick.bind( this, 'laptop' ) } />
<Dashicon icon="layout" size={ 40 } onClick={ this.handleClick.bind( this, 'layout' ) } />
<Dashicon icon="leftright" size={ 40 } onClick={ this.handleClick.bind( this, 'leftright' ) } />
<Dashicon icon="lightbulb" size={ 40 } onClick={ this.handleClick.bind( this, 'lightbulb' ) } />
<Dashicon icon="linkedin" size={ 40 } onClick={ this.handleClick.bind( this, 'linkedin' ) } />
<Dashicon icon="list-view" size={ 40 } onClick={ this.handleClick.bind( this, 'list-view' ) } />
<Dashicon icon="location-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'location-alt' ) } />
<Dashicon icon="location" size={ 40 } onClick={ this.handleClick.bind( this, 'location' ) } />
<Dashicon icon="lock-duplicate" size={ 40 } onClick={ this.handleClick.bind( this, 'lock-duplicate' ) } />
<Dashicon icon="lock" size={ 40 } onClick={ this.handleClick.bind( this, 'lock' ) } />
<Dashicon icon="marker" size={ 40 } onClick={ this.handleClick.bind( this, 'marker' ) } />
<Dashicon icon="media-archive" size={ 40 } onClick={ this.handleClick.bind( this, 'media-archive' ) } />
<Dashicon icon="media-audio" size={ 40 } onClick={ this.handleClick.bind( this, 'media-audio' ) } />
<Dashicon icon="media-code" size={ 40 } onClick={ this.handleClick.bind( this, 'media-code' ) } />
<Dashicon icon="media-default" size={ 40 } onClick={ this.handleClick.bind( this, 'media-default' ) } />
<Dashicon icon="media-document" size={ 40 } onClick={ this.handleClick.bind( this, 'media-document' ) } />
<Dashicon icon="media-interactive" size={ 40 } onClick={ this.handleClick.bind( this, 'media-interactive' ) } />
<Dashicon icon="media-spreadsheet" size={ 40 } onClick={ this.handleClick.bind( this, 'media-spreadsheet' ) } />
<Dashicon icon="media-text" size={ 40 } onClick={ this.handleClick.bind( this, 'media-text' ) } />
<Dashicon icon="media-video" size={ 40 } onClick={ this.handleClick.bind( this, 'media-video' ) } />
<Dashicon icon="megaphone" size={ 40 } onClick={ this.handleClick.bind( this, 'megaphone' ) } />
<Dashicon icon="menu-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'menu-alt' ) } />
<Dashicon icon="menu-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'menu-alt2' ) } />
<Dashicon icon="menu-alt3" size={ 40 } onClick={ this.handleClick.bind( this, 'menu-alt3' ) } />
<Dashicon icon="menu" size={ 40 } onClick={ this.handleClick.bind( this, 'menu' ) } />
<Dashicon icon="microphone" size={ 40 } onClick={ this.handleClick.bind( this, 'microphone' ) } />
<Dashicon icon="migrate" size={ 40 } onClick={ this.handleClick.bind( this, 'migrate' ) } />
<Dashicon icon="minus" size={ 40 } onClick={ this.handleClick.bind( this, 'minus' ) } />
<Dashicon icon="money-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'money-alt' ) } />
<Dashicon icon="money" size={ 40 } onClick={ this.handleClick.bind( this, 'money' ) } />
<Dashicon icon="move" size={ 40 } onClick={ this.handleClick.bind( this, 'move' ) } />
<Dashicon icon="nametag" size={ 40 } onClick={ this.handleClick.bind( this, 'nametag' ) } />
<Dashicon icon="networking" size={ 40 } onClick={ this.handleClick.bind( this, 'networking' ) } />
<Dashicon icon="no-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'no-alt' ) } />
<Dashicon icon="no" size={ 40 } onClick={ this.handleClick.bind( this, 'no' ) } />
<Dashicon icon="open-folder" size={ 40 } onClick={ this.handleClick.bind( this, 'open-folder' ) } />
<Dashicon icon="palmtree" size={ 40 } onClick={ this.handleClick.bind( this, 'palmtree' ) } />
<Dashicon icon="paperclip" size={ 40 } onClick={ this.handleClick.bind( this, 'paperclip' ) } />
<Dashicon icon="pdf" size={ 40 } onClick={ this.handleClick.bind( this, 'pdf' ) } />
<Dashicon icon="performance" size={ 40 } onClick={ this.handleClick.bind( this, 'performance' ) } />
<Dashicon icon="pets" size={ 40 } onClick={ this.handleClick.bind( this, 'pets' ) } />
<Dashicon icon="phone" size={ 40 } onClick={ this.handleClick.bind( this, 'phone' ) } />
<Dashicon icon="pinterest" size={ 40 } onClick={ this.handleClick.bind( this, 'pinterest' ) } />
<Dashicon icon="playlist-audio" size={ 40 } onClick={ this.handleClick.bind( this, 'playlist-audio' ) } />
<Dashicon icon="playlist-video" size={ 40 } onClick={ this.handleClick.bind( this, 'playlist-video' ) } />
<Dashicon icon="plugins-checked" size={ 40 } onClick={ this.handleClick.bind( this, 'plugins-checked' ) } />
<Dashicon icon="plus-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'plus-alt' ) } />
<Dashicon icon="plus-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'plus-alt2' ) } />
<Dashicon icon="plus" size={ 40 } onClick={ this.handleClick.bind( this, 'plus' ) } />
<Dashicon icon="podio" size={ 40 } onClick={ this.handleClick.bind( this, 'podio' ) } />
<Dashicon icon="portfolio" size={ 40 } onClick={ this.handleClick.bind( this, 'portfolio' ) } />
<Dashicon icon="post-status" size={ 40 } onClick={ this.handleClick.bind( this, 'post-status' ) } />
<Dashicon icon="pressthis" size={ 40 } onClick={ this.handleClick.bind( this, 'pressthis' ) } />
<Dashicon icon="printer" size={ 40 } onClick={ this.handleClick.bind( this, 'printer' ) } />
<Dashicon icon="privacy" size={ 40 } onClick={ this.handleClick.bind( this, 'privacy' ) } />
<Dashicon icon="products" size={ 40 } onClick={ this.handleClick.bind( this, 'products' ) } />
<Dashicon icon="randomize" size={ 40 } onClick={ this.handleClick.bind( this, 'randomize' ) } />
<Dashicon icon="reddit" size={ 40 } onClick={ this.handleClick.bind( this, 'reddit' ) } />
<Dashicon icon="redo" size={ 40 } onClick={ this.handleClick.bind( this, 'redo' ) } />
<Dashicon icon="remove" size={ 40 } onClick={ this.handleClick.bind( this, 'remove' ) } />
<Dashicon icon="rest-api" size={ 40 } onClick={ this.handleClick.bind( this, 'rest-api' ) } />
<Dashicon icon="rss" size={ 40 } onClick={ this.handleClick.bind( this, 'rss' ) } />
<Dashicon icon="saved" size={ 40 } onClick={ this.handleClick.bind( this, 'saved' ) } />
<Dashicon icon="schedule" size={ 40 } onClick={ this.handleClick.bind( this, 'schedule' ) } />
<Dashicon icon="screenoptions" size={ 40 } onClick={ this.handleClick.bind( this, 'screenoptions' ) } />
<Dashicon icon="search" size={ 40 } onClick={ this.handleClick.bind( this, 'search' ) } />
<Dashicon icon="share-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'share-alt' ) } />
<Dashicon icon="share-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'share-alt2' ) } />
<Dashicon icon="share" size={ 40 } onClick={ this.handleClick.bind( this, 'share' ) } />
<Dashicon icon="shield-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'shield-alt' ) } />
<Dashicon icon="shield" size={ 40 } onClick={ this.handleClick.bind( this, 'shield' ) } />
<Dashicon icon="shortcode" size={ 40 } onClick={ this.handleClick.bind( this, 'shortcode' ) } />
<Dashicon icon="slides" size={ 40 } onClick={ this.handleClick.bind( this, 'slides' ) } />
<Dashicon icon="smartphone" size={ 40 } onClick={ this.handleClick.bind( this, 'smartphone' ) } />
<Dashicon icon="smiley" size={ 40 } onClick={ this.handleClick.bind( this, 'smiley' ) } />
<Dashicon icon="sort" size={ 40 } onClick={ this.handleClick.bind( this, 'sort' ) } />
<Dashicon icon="sos" size={ 40 } onClick={ this.handleClick.bind( this, 'sos' ) } />
<Dashicon icon="spotify" size={ 40 } onClick={ this.handleClick.bind( this, 'spotify' ) } />
<Dashicon icon="star-empty" size={ 40 } onClick={ this.handleClick.bind( this, 'star-empty' ) } />
<Dashicon icon="star-filled" size={ 40 } onClick={ this.handleClick.bind( this, 'star-filled' ) } />
<Dashicon icon="star-half" size={ 40 } onClick={ this.handleClick.bind( this, 'star-half' ) } />
<Dashicon icon="sticky" size={ 40 } onClick={ this.handleClick.bind( this, 'sticky' ) } />
<Dashicon icon="store" size={ 40 } onClick={ this.handleClick.bind( this, 'store' ) } />
<Dashicon icon="superhero-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'superhero-alt' ) } />
<Dashicon icon="superhero" size={ 40 } onClick={ this.handleClick.bind( this, 'superhero' ) } />
<Dashicon icon="table-col-after" size={ 40 } onClick={ this.handleClick.bind( this, 'table-col-after' ) } />
<Dashicon icon="table-col-before" size={ 40 } onClick={ this.handleClick.bind( this, 'table-col-before' ) } />
<Dashicon icon="table-col-delete" size={ 40 } onClick={ this.handleClick.bind( this, 'table-col-delete' ) } />
<Dashicon icon="table-row-after" size={ 40 } onClick={ this.handleClick.bind( this, 'table-row-after' ) } />
<Dashicon icon="table-row-before" size={ 40 } onClick={ this.handleClick.bind( this, 'table-row-before' ) } />
<Dashicon icon="table-row-delete" size={ 40 } onClick={ this.handleClick.bind( this, 'table-row-delete' ) } />
<Dashicon icon="tablet" size={ 40 } onClick={ this.handleClick.bind( this, 'tablet' ) } />
<Dashicon icon="tag" size={ 40 } onClick={ this.handleClick.bind( this, 'tag' ) } />
<Dashicon icon="tagcloud" size={ 40 } onClick={ this.handleClick.bind( this, 'tagcloud' ) } />
<Dashicon icon="testimonial" size={ 40 } onClick={ this.handleClick.bind( this, 'testimonial' ) } />
<Dashicon icon="text-page" size={ 40 } onClick={ this.handleClick.bind( this, 'text-page' ) } />
<Dashicon icon="text" size={ 40 } onClick={ this.handleClick.bind( this, 'text' ) } />
<Dashicon icon="thumbs-down" size={ 40 } onClick={ this.handleClick.bind( this, 'thumbs-down' ) } />
<Dashicon icon="thumbs-up" size={ 40 } onClick={ this.handleClick.bind( this, 'thumbs-up' ) } />
<Dashicon icon="tickets-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'tickets-alt' ) } />
<Dashicon icon="tickets" size={ 40 } onClick={ this.handleClick.bind( this, 'tickets' ) } />
<Dashicon icon="tide" size={ 40 } onClick={ this.handleClick.bind( this, 'tide' ) } />
<Dashicon icon="translation" size={ 40 } onClick={ this.handleClick.bind( this, 'translation' ) } />
<Dashicon icon="trash" size={ 40 } onClick={ this.handleClick.bind( this, 'trash' ) } />
<Dashicon icon="twitch" size={ 40 } onClick={ this.handleClick.bind( this, 'twitch' ) } />
<Dashicon icon="twitter-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'twitter-alt' ) } />
<Dashicon icon="twitter" size={ 40 } onClick={ this.handleClick.bind( this, 'twitter' ) } />
<Dashicon icon="undo" size={ 40 } onClick={ this.handleClick.bind( this, 'undo' ) } />
<Dashicon icon="universal-access-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'universal-access-alt' ) } />
<Dashicon icon="universal-access" size={ 40 } onClick={ this.handleClick.bind( this, 'universal-access' ) } />
<Dashicon icon="unlock" size={ 40 } onClick={ this.handleClick.bind( this, 'unlock' ) } />
<Dashicon icon="update-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'update-alt' ) } />
<Dashicon icon="update" size={ 40 } onClick={ this.handleClick.bind( this, 'update' ) } />
<Dashicon icon="upload" size={ 40 } onClick={ this.handleClick.bind( this, 'upload' ) } />
<Dashicon icon="vault" size={ 40 } onClick={ this.handleClick.bind( this, 'vault' ) } />
<Dashicon icon="video-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'video-alt' ) } />
<Dashicon icon="video-alt2" size={ 40 } onClick={ this.handleClick.bind( this, 'video-alt2' ) } />
<Dashicon icon="video-alt3" size={ 40 } onClick={ this.handleClick.bind( this, 'video-alt3' ) } />
<Dashicon icon="visibility" size={ 40 } onClick={ this.handleClick.bind( this, 'visibility' ) } />
<Dashicon icon="warning" size={ 40 } onClick={ this.handleClick.bind( this, 'warning' ) } />
<Dashicon icon="welcome-add-page" size={ 40 } onClick={ this.handleClick.bind( this, 'welcome-add-page' ) } />
<Dashicon icon="welcome-comments" size={ 40 } onClick={ this.handleClick.bind( this, 'welcome-comments' ) } />
<Dashicon icon="welcome-learn-more" size={ 40 } onClick={ this.handleClick.bind( this, 'welcome-learn-more' ) } />
<Dashicon icon="welcome-view-site" size={ 40 } onClick={ this.handleClick.bind( this, 'welcome-view-site' ) } />
<Dashicon icon="welcome-widgets-menus" size={ 40 } onClick={ this.handleClick.bind( this, 'welcome-widgets-menus' ) } />
<Dashicon icon="welcome-write-blog" size={ 40 } onClick={ this.handleClick.bind( this, 'welcome-write-blog' ) } />
<Dashicon icon="whatsapp" size={ 40 } onClick={ this.handleClick.bind( this, 'whatsapp' ) } />
<Dashicon icon="wordpress-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'wordpress-alt' ) } />
<Dashicon icon="wordpress" size={ 40 } onClick={ this.handleClick.bind( this, 'wordpress' ) } />
<Dashicon icon="xing" size={ 40 } onClick={ this.handleClick.bind( this, 'xing' ) } />
<Dashicon icon="yes-alt" size={ 40 } onClick={ this.handleClick.bind( this, 'yes-alt' ) } />
<Dashicon icon="yes" size={ 40 } onClick={ this.handleClick.bind( this, 'yes' ) } />
<Dashicon icon="youtube" size={ 40 } onClick={ this.handleClick.bind( this, 'youtube' ) } />
</div>
);
}
} );

1
react/index.js Normal file

File diff suppressed because one or more lines are too long

1078
react/index.jsx Normal file

File diff suppressed because it is too large Load diff

1
react/path.js Normal file
View file

@ -0,0 +1 @@
export default ( props ) => ( <path { ...props } /> );

3
react/path.native.js Normal file
View file

@ -0,0 +1,3 @@
import { Path } from 'react-native-svg';
export default ( props ) => ( <Path { ...props } /> );

4
react/style.scss Normal file
View file

@ -0,0 +1,4 @@
svg.dashicon {
fill: currentColor;
outline: none;
}

5
react/svg.js Normal file
View file

@ -0,0 +1,5 @@
export default ( props ) => (
<svg { ...props } >
{ props.children }
</svg>
);

7
react/svg.native.js Normal file
View file

@ -0,0 +1,7 @@
import Svg from 'react-native-svg';
export default ( props ) => (
<Svg width={ props.width } height={ props.height } >
{ props.children }
</Svg>
);

View file

@ -0,0 +1,362 @@
%PDF-1.5 %âãÏÓ
1 0 obj <</Metadata 2 0 R/OCProperties<</D<</ON[5 0 R 6 0 R 7 0 R 26 0 R 40 0 R 54 0 R 55 0 R 71 0 R 72 0 R 88 0 R 89 0 R]/Order 90 0 R/RBGroups[]>>/OCGs[5 0 R 6 0 R 7 0 R 26 0 R 40 0 R 54 0 R 55 0 R 71 0 R 72 0 R 88 0 R 89 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <</Length 10885/Subtype/XML/Type/Metadata>>stream
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c137 79.159768, 2016/08/11-13:24:42 ">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about=""
xmlns:xmp="http://ns.adobe.com/xap/1.0/"
xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/"
xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/"
xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
<xmp:CreatorTool>Adobe Illustrator CC 2017 (Macintosh)</xmp:CreatorTool>
<xmp:CreateDate>2017-04-07T12:38:13+02:00</xmp:CreateDate>
<xmp:MetadataDate>2017-04-14T12:29:15+02:00</xmp:MetadataDate>
<xmp:ModifyDate>2017-04-14T12:29:15+02:00</xmp:ModifyDate>
<xmp:Thumbnails>
<rdf:Alt>
<rdf:li rdf:parseType="Resource">
<xmpGImg:width>256</xmpGImg:width>
<xmpGImg:height>256</xmpGImg:height>
<xmpGImg:format>JPEG</xmpGImg:format>
<xmpGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA&#xA;AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK&#xA;DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f&#xA;Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAEAAwER&#xA;AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA&#xA;AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB&#xA;UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE&#xA;1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ&#xA;qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy&#xA;obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp&#xA;0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo&#xA;+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq&#xA;7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq&#xA;7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq&#xA;7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq&#xA;7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq&#xA;7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq&#xA;7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX//2Q==</xmpGImg:image>
</rdf:li>
</rdf:Alt>
</xmp:Thumbnails>
<xmpTPg:NPages>1</xmpTPg:NPages>
<xmpTPg:HasVisibleTransparency>False</xmpTPg:HasVisibleTransparency>
<xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint>
<xmpTPg:MaxPageSize rdf:parseType="Resource">
<stDim:w>20.000000</stDim:w>
<stDim:h>20.000000</stDim:h>
<stDim:unit>Pixels</stDim:unit>
</xmpTPg:MaxPageSize>
<xmpTPg:SwatchGroups>
<rdf:Seq>
<rdf:li rdf:parseType="Resource">
<xmpG:groupName>Default Swatch Group</xmpG:groupName>
<xmpG:groupType>0</xmpG:groupType>
<xmpG:Colorants>
<rdf:Seq>
<rdf:li rdf:parseType="Resource">
<xmpG:swatchName>Dark</xmpG:swatchName>
<xmpG:type>PROCESS</xmpG:type>
<xmpG:tint>100.000000</xmpG:tint>
<xmpG:mode>RGB</xmpG:mode>
<xmpG:red>88</xmpG:red>
<xmpG:green>88</xmpG:green>
<xmpG:blue>91</xmpG:blue>
</rdf:li>
</rdf:Seq>
</xmpG:Colorants>
</rdf:li>
</rdf:Seq>
</xmpTPg:SwatchGroups>
<dc:format>application/pdf</dc:format>
<dc:title>
<rdf:Alt>
<rdf:li xml:lang="x-default">icon-template-new-new</rdf:li>
</rdf:Alt>
</dc:title>
<xmpMM:DocumentID>xmp.did:dc9a4adf-1161-4185-a802-401cfa874ad4</xmpMM:DocumentID>
<xmpMM:InstanceID>uuid:55a55c42-be89-b94d-8995-36cb94389c80</xmpMM:InstanceID>
<xmpMM:OriginalDocumentID>xmp.did:847ad137-7ca1-49c7-adae-740407498739</xmpMM:OriginalDocumentID>
<xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass>
<xmpMM:DerivedFrom rdf:parseType="Resource">
<stRef:instanceID>uuid:59e1eb92-9b50-ce43-a47a-05083a240cb9</stRef:instanceID>
<stRef:documentID>xmp.did:3b9e7ed9-7527-4cd9-b6f8-6cee86723c45</stRef:documentID>
<stRef:originalDocumentID>xmp.did:847ad137-7ca1-49c7-adae-740407498739</stRef:originalDocumentID>
<stRef:renditionClass>proof:pdf</stRef:renditionClass>
</xmpMM:DerivedFrom>
<xmpMM:History>
<rdf:Seq>
<rdf:li rdf:parseType="Resource">
<stEvt:action>saved</stEvt:action>
<stEvt:instanceID>xmp.iid:847ad137-7ca1-49c7-adae-740407498739</stEvt:instanceID>
<stEvt:when>2014-11-24T14:18:35-05:00</stEvt:when>
<stEvt:softwareAgent>Adobe Illustrator CC 2014 (Macintosh)</stEvt:softwareAgent>
<stEvt:changed>/</stEvt:changed>
</rdf:li>
<rdf:li rdf:parseType="Resource">
<stEvt:action>saved</stEvt:action>
<stEvt:instanceID>xmp.iid:dc9a4adf-1161-4185-a802-401cfa874ad4</stEvt:instanceID>
<stEvt:when>2017-04-07T12:38:13+02:00</stEvt:when>
<stEvt:softwareAgent>Adobe Illustrator CC 2017 (Macintosh)</stEvt:softwareAgent>
<stEvt:changed>/</stEvt:changed>
</rdf:li>
</rdf:Seq>
</xmpMM:History>
<illustrator:Type>Document</illustrator:Type>
<pdf:Producer>Adobe PDF library 11.00</pdf:Producer>
</rdf:Description>
</rdf:RDF>
</x:xmpmeta>
<?xpacket end="w"?> endstream endobj 3 0 obj <</Count 1/Kids[9 0 R]/Type/Pages>> endobj 9 0 obj <</ArtBox[0.0 0.0 0.0 0.0]/BleedBox[0.0 0.0 20.0 20.0]/Contents 91 0 R/LastModified(D:20170414122915+02'00')/MediaBox[0.0 0.0 20.0 20.0]/Parent 3 0 R/PieceInfo<</Illustrator 92 0 R>>/Resources<</Properties<</MC0 88 0 R/MC1 89 0 R>>>>/Thumb 93 0 R/TrimBox[0.0 0.0 20.0 20.0]/Type/Page>> endobj 91 0 obj <</Filter/FlateDecode/Length 34>>stream
H‰Ò÷wVÐ÷u6PprqVàrõú!C$!€œˆÆ endstream endobj 93 0 obj <</BitsPerComponent 8/ColorSpace 94 0 R/Filter[/ASCII85Decode/FlateDecode]/Height 2/Length 21/Width 2>>stream
8;Xp,rVCYe!!<3,C'.`~> endstream endobj 94 0 obj [/Indexed/DeviceRGB 255 95 0 R] endobj 95 0 obj <</Filter[/ASCII85Decode/FlateDecode]/Length 428>>stream
8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0
b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup`
E1r!/,*0[*9.aFIR2&b-C#s<Xl5FH@[<=!#6V)uDBXnIr.F>oRZ7Dl%MLY\.?d>Mn
6%Q2oYfNRF$$+ON<+]RUJmC0I<jlL.oXisZ;SYU[/7#<&37rclQKqeJe#,UF7Rgb1
VNWFKf>nDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j<etJICj7e7nPMb=O6S7UOH<
PO7r\I.Hu&e0d&E<.')fERr/l+*W,)q^D*ai5<uuLX.7g/>$XKrcYp0n+Xl_nU*O(
l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> endstream endobj 88 0 obj <</Intent 96 0 R/Name(Adv. Guides)/Type/OCG/Usage 97 0 R>> endobj 89 0 obj <</Intent 98 0 R/Name(icon)/Type/OCG/Usage 99 0 R>> endobj 98 0 obj [/View/Design] endobj 99 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 96 0 obj [/View/Design] endobj 97 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 92 0 obj <</LastModified(D:20170414122915+02'00')/Private 100 0 R>> endobj 100 0 obj <</AIMetaData 101 0 R/AIPrivateData1 102 0 R/AIPrivateData2 103 0 R/ContainerVersion 11/CreatorVersion 21/NumBlock 2/RoundtripStreamType 1/RoundtripVersion 17>> endobj 101 0 obj <</Length 1221>>stream
%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 17.0 %%AI8_CreatorVersion: 21.0.2 %%For: (Joen Asmussen) () %%Title: (dashicons-icon-template.ai) %%CreationDate: 14/04/2017 12.29 %%Canvassize: 16383 %%BoundingBox: 0 0 0 0 %%HiResBoundingBox: 0 0 0 0 %%DocumentProcessColors: %AI5_FileFormat 13.0 %AI12_BuildNumber: 242 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0.345421999692917 0.348580986261368 0.357237994670868 (Dark) %%+ 0 0 0 ([Registration]) %AI3_Cropmarks: 2 2 22 22 %AI3_TemplateBox: 11.5 12.5 11.5 12.5 %AI3_TileBox: -276 -344 300 390 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 2 %AI17_Begin_Content_if_version_gt:17 1 %AI9_OpenToView: -18.75 35.4375 32 1946 1329 18 1 0 368 133 1 0 0 1 1 0 1 1 0 1 %AI17_Alternate_Content %AI9_OpenToView: -18.75 35.4375 32 1946 1329 18 1 0 368 133 1 0 0 1 1 0 1 1 0 1 %AI17_End_Versioned_Content %AI5_OpenViewLayers: 73 %%PageOrigin:0 0 %AI7_GridSettings: 3 3 3 3 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 102 0 obj <</Length 67>>stream
%%BoundingBox: 8203 24587 -24563 -8179 %%HiResBoundingBox: 0 0 0 0 endstream endobj 103 0 obj <</Length 26052>>stream
%AI12_CompressedDataxœì½çz2É®(üÝ÷&çnr2& ŒÁLh‰î†wfö<66>sí_Uun:f¯½ÏsÖ»ÐÕR•JRIªRÉjj¶½ÙénLxƒ>Ìh°Zó$1:ìÈ„ýj¬®×Gê@Ÿ<11>ú0Ð([<5B> ™†]¤»mÂÀ}˜/–àێDZ5f©Í¢ˆ­Óèp'<27>åaM€gÓµXNv[Ê ÿzÄf¿ßhéd{@ÀO #òc!ãF<à ÄaƒÑöψ¢ÿG± ø-·;n§Ëí<·û;aÄèàçʲEP
Ï
»ÉqClMr7!(*¿[ïH*aƒ KË5ƱŒx9[ÅÃÜq¹ž>7cŒ0
ÀŸƒCôâ+5šƒî Ïðçè°º¿´‰Ãc«œ"¡p(€ÇãñH<c„¿ÄÂ1,"x0ƒ¿„£<E2809E>`4E¢X üâ(ŒÈ¤”›<19>ã£EÌ—hšÝ¾œL¿ÈÝ~ZäøþŸ~ÒaŽã¾0$m˜ÿÄ´4@-¼<>hÄè †BÆ †ƒqŒ~ÎÓ<C38E>ø³$þJŸw[&_<´éé …À+è/ý¤u\äëvy½ŠÀŸâ4ýê»)±í¹÷Kë"ú‡óé<06>9'`nwëã±_ŒÅæ§6úp%6š·è0¨³ÐÝár6üC3íp~H@¾¢ûÑØÛή†âÅc¾hØ ûBAøß€ä¼ˆñê œ<äú†ó´Ùõ<C399> ·€Î,ê Oq;2bHL…¸ÂÄÄR$
³A.M A£Ã2¹œòÌdþ!œ>@Zø?<1C>0À¥z‰£ÿE#x8†‡z~¡éFÀ0»|] F˜¯ÞccÎï6<C3AF>ý((ýp<70>h­wsú÷=¯÷4AhVœÚ$—[ÓðŒžÄ†Íõ<*“»ã¾º<C2BE>í Zv‰ Ðr€™§ÆÆø|º ‰¶±CŽ&øÎµlïTGFú!x}eÿ«ýv<C3BD>˜¥Ä¿NÿZÜþ!Ö»½,ÝN^s=ÚŽH#ú<>W[þOF€<<@Ø<>8ôt@ä@0P t•ˆjËí ôÛˆ<üµúE(XÁ|£½ÔöŠ8LR¸Ì¯WAnŽ cnMl§€þÊSRžþM{üùÑz½œ“£=XI<58>9òH-Œ<>ÝnÍÁyÎá>C<>àÚ(Û(˜¤6ñ#óóÿ0Mô¶±¥çäÓ@Š ¬Jô;ÿCqqïÈáÿ·àhÿ³ïÖKjÃO½à—&ÃådM´ÿ¡€á¨{ŒÅéªRRmÓþkÄ¿¶«Š%äl¹<6C>m—ÄÝf-Pc{1ÚhlË60ŒVqÁºäõj-Xô¢‡ºA¯Lìˆé)¨Õ><07>i<EFBFBD>Sý™QU§øÁß#Ч<7F>ýN£<4E>î \s…]¹ñ<C2B9>´<E2809D>Á¡Ô5ðXIôhb˜Qðï¦ýŽÓO Ñ{øgMPÿÓv÷×}1&À¶;
þçц0z þ,ZáØ§~=€ËµhŸ_€Å×H7 u¢^û™&nôw—Ôr¼FO!´£Éê ¹µœð¯3Bw w+ÂØ˜Í(X=¸òû
ë¡ÑO“:SÌà" ´©QœÍ<C593>YåGî!h@xÖ i :XXN ™?"ÿ1&%wÀôŸìóNé®ä/Ø4èêZN<5A>°”ìG?x& XGK
¸?ÿÐ_a?ý&3%`œ-æ‹Âp4<E280B9>EŽ…<C5BD>ð—@ Š…ƒ‘øo™ÆÀä „BÀ¿ †1dõâá@<„ãÑH´ŒÅP£(÷5<04><>½¬<C2BD>ui0cïðå-aã_€U<E282AC>uãÇ'½–¶ìM ˆ™1i4°ãD½…½OyŒI 8PŽ2
|)ÐIzxA
œ”3˜JmÎÐóô–!.C LJ 
¤ÆòÁ+EÿÛÆtª@•1"óëVƒDÀÎ%?<þ}Å<>üÅ¿‰ ò<>Ñô®œ2†"ÿOý?ôÿtÐÿÓAÿô~ׇ/<2F>j/7û5§…0cÃÀh8ú×h9ˆ†âÑŠ€ÿ†â(h<1C>Q< …b!ô ž¹Çâᔃ8†‡ÂQ<Ž…ñ`çF®Àùrd@<40>“MGCø±!£X‰¼É§i76Gk8h„Íñ<C38D>Ç$ #
öþËpnNæH(<28>8 Ü<>X@ àà Âx4„~ €ß"¡p,аŒK¢a,<16>ðp(C½»<vM÷oe`"Ù GBRçØÜ50H!<21><>Ìjp‰q<E280B0>cô#Ú…`þ?ægHò£p¦¯l¼¼0:Œ Ö¡ŸýX~¤½
9`?K#zÁ†"ÚfIrô<72>ìk0Èoô·ˆÑº¹]hëήEÇzÁSàzî¨%l<>žhp,*fIª£ bx,`Dxˆ
âÓPéÐÍïFäÔˆñ~Ý.'»)Á.uPÚéf8 t#Û¢sPh[¥X´Ì¼ó˜Ì_®cˆd ùzõÚ3èŸ,Á+oÖ[ðØ;:€Œ<>:%û¿ âð­&åzJ[äôt³OáŸÃ?{†pÛ–R³¿[EØòÏh}dÂß)…v[ÁT° =ÿ<>ôU?®:~íQSëå„Ð3lM^ûÏÍ2'BJƒï‡Ý¦F̬˜kÏòé;7¶Ké„ÀB‰`ñ‰DYå£ÈκXùÔ¨¢á˜Ö¨þÑ3ªÛiÆ GöűH4†ã1íQ-ˆå|qÐ34¶åÿ®ñýµœz†Ç4Ô¯Zÿ]½ØÞÉ <09>\èUÿ^‡fýïÖÒh-þ3"©ÿÁñ<C3B1>:ÛÝÐA˜õn²"¦z(öüϪ
Çx‰N+á:Ƙ£M0f¯öø„­ÿï°ÅÀˆ£ñú»9v¾ 'þèuØô?ÌÑpx“#¬Ãÿ¬&û÷ø0A<30>`( ºö@ÄþãK+mB<6D><42>ôßÕ•ÿ8Y6Äa4Stm?âWöÃ<eB?z¸\ÐXäºÁ£Æöq¿' Š2¾-ÂØøC<C3B8>{{¢Û†cñK3Áá*xÖoý´×¥`
¥õnG¶Ø…1Ƹ(ޤaž<>Ûm++5Îëu؉lW¡"ô<>ýh²<üsJÌ8£<38> ¤qw<¬á 0
íM°â/Õò"uÐ&Ö•Ñ¡°›€‘dµ@ ãDò-k»Éh Qa[aƒdwˆ•™m<æÃ}˜`ªWÙjé¸^³ñ?æè&xJ¿€ † o´=,<2C>£õrÄŒ,¨H2H[xþöž¹Äßš“€¼zág¿4šÙí|-<2D>7€¡7G$  6Õ,”à¶áè°/×d5VD°Ë$Á
"º<14>-nÆ<:[®‰'â­¡!˜òü% »
Em¹Ûê”^¼p¹~<>,NúC<¬Hd8Å¿œVÀÔÆ÷#ÃjMy1WhÕÄ<>pi\XÚ¸ $…gBz$¹5ALs(TÔåU¢Îa£>
ÇŠ)Î+<ö Ä­°¤£í„ÁÃãc,: iŸtý0ââÎê$†‡Ùyêªh[ž¶‘Ri(`pe1ƒ %Rwk”à"†KŽšºeöÛ¥<“­Æá)X:Ô?<3F>çöŒeÙK¶)É’@³åœïj8
Ä”Ûx¨Â…76<37>´äÂØ
í õ ÊáÀ²Ê˜Î-á•§ã£NL—Ç<E28094>Ï5ø:Ýâ@ø¸ýtÜÜXâ-êÈÁ(ØáµP<> ÆÖˆJaù_ˆíØX]/z£q<ì<><07>w0np§<70>«<EFBFBD>¶ó#<ÄÞÜíáÇSíìöù?Cb(xê`…×È~¬vínÉbn÷w¯/¿&sóFíw¼´Ñ?<3F><05>ü´U”USÓýÒÇP*Âvu?š2|Á
`[¯³UcöxØqD”Y-q#k{—€¶#`a<>áv8sdCkŽ…dáÆ<C3A1>ûÑðµÜ×#~Â4¡ „Wl'Ößðù<C3B0>m©ý˜¯“ŒåÔHi wµÝMVÀ@Íw,ð³ÉO3ܬÆ„ª % 3 H$¡º%ÔßBŠIùµX$-!HÕkhy†·Kj¡CÙ v>«Û)ñwiIR‡3— „^h£ñ0î£sbâ±x hŒñ¨<ŽœÐì.Žº{ÄA8é<38>^:´‰Én; <>ÆÏ!P6B*DqŽ
ÑXHßTÂ1ÈͤîÞpDwç5¯ÈzkÇ@©—vÛÕ2ÌYpJÞÉž]Žv¬“ÆèµX(Èq.ŽEcº&<26>§<EFBFBD>tÖ£üº*ÂO"=çýƒr•ŒãÑš·Š”º<Y/÷@©ÀÈÆß`•<>MÅébo˜%ŒJ' ¨ÞþHtÏ3nt²².½âW€'þâßûy€nX“Dqs#^ÆháW1 µ&ôkµÚ¾ ·eüóXÎK<C38E>kñн¦‹=¼P-œÌSã—ôæòob HH<61>ƒ5{ü|¬Ìõ?pȆ2®Ò¼ \àÂî¯-ÿzZ²J<>â[¼ð Ùa#  D0#Uä×ʵÀÖ¯<14>Îà€7¸ÅZ­CŒ±Ö¬”:Æ0egqÜŒ·£åš­a<Iž`
½S ¨ <08>ž áa¡Ë¦L1”…ßm™ÔØæn½diÀYTrˆhW¡Dî6Y:=J#$§†²ˆÚ?¼}¬óÅA[d@‰Î)ŽQðp|:ÑÑF7<ƺÙð¼¬
y:är'áM <Baµ™«ï¶;^¢Pªiv¼û£><œBYaäý ñ{º|}.<2E>ŠTA<54><41>\ ~ÔD„áDÁU 'VEÒQ(Nßrw‡T§@;/gK¼DŽZÔz9ŽxÍ„uLÊi! <1E>,@_ ùyRUL´<><E2809D>»ñè@'¦_B`¦é¤D(¤£<kf«(³ž ÙéS9Lãêv²>Jõª–” i+<08>zlW}uET/¯çÍí9賸Uä<>ª)]5¼<Ç**H½,¤-š~`´n§À˜ŸrX8“Tj­c» j­mƒf¿×<68>17bEQ<45>M&µ¦ô˜–Û• 1†"F2;  )Œðº„Ã0Né#¾Fй
Âø×‚Ø©Ñ(³£­0ñÇ%Î8¢àÏL~o¡ÄÅ6|F`B<>à¯Ø?»£qœ#à-ªp¢¦ÁÍaBÔR„ÈcȸW·`¬ÆÃ˜Æå6×£`L|šo)˜±
ºW݃d9ßò`hl[À"Gл݌G¿¤ŒÇí
fTøtG5˜O÷ŠC/<2F>|íiÆ4(½}êíÖÜ j
<03>S´µ[²Æš!`—17iÉ<E28093>ötœyÉêë¨Âú¤Ó;ªºRrŠí ¥°²‰ìã¡p òxTØp²[¯‰‰Ø4n:ÀHyî9ã±æ¬·šmç«ÕX¸@@Øðaè¡aûp§ÞîíÉQÏó´5¼¹ YÞ,ó­é±dò8ìùåÈGY"¯•bĜȼÓõÐC¢öi¯gÈã$Z*ê1+
™1Œ*üæÌI|®Lʳ§2ÔSÀo°f5É6z<äæ•—Z&"Úùå}zRðùìóTµià‹JÖDô½|(ü|åBï^Ov³«QÙjû°p§#æc©²¼å~Öö7ƒµ0ÃDzÀ,Ñø,Ú}ùøÌvò¾®2Ra»ÄW&µ*}e”oã.x¬Ç£<<3C>¬ˆX¥o0¹…Ù×[4·Î¬{‰YnqÈ/¢ï¸ˆß¶Â¯ýfRö7è2•Ì;ðÉö[¨N«¦œ7öcɶ½æ-݇Þhz4Xã?÷¤8 ¿8òÐ0™ÊZƒ6wîÙóíÎäí¯¥<qt¥»<C2A5>æEr2­à§¥»8«-hÌ8æEÉ¥å;±<NskëƒÝKº?<3F>ÙZÛö ûïÌ$Aƒ5ì~e²Û‰}㾯'ýÑÍçý2õS³`œTq÷*<2A>s'…Gª ȵѷ 6M,óþ˜_¼~ïðzˆÜ:ÚÜÐ#è׬™|5e~+zâa
ÌKõ#bNGó»<C3B3><>~$ÞZÁ€ÒNÉGä-ò²…tJçVΈ—aÍî´†á_æzÁ?JÙJ&÷; ±Dàƒ‚‚𬨸®BŸÝéRŠù”z+>ÑÍóžâ7 ,ÐTëö0w:]ô
ó{ÎÛ}*9ýy ™ä: à5ra h”{ä:ðÅwwÜ·`#"„~ r…!"5X,B÷ÈÏ$Û)ü¸ 3ÿÓoq4²[rñëK¼ií½fù\³0k/3¿_‰¹Áš õ;Cš˜ïé{qˆ»»¹P/Û(~Þ†ùåOÄŸœm¬óR~æÂÓßÑhkºãñÅÚ¿§l£æz*œÓ'š6,¡iÞ³Øû^ÜÝÑ/= t$6Ê$;‡»lçñp<š„²Ñ#M,¨6<C2A8>œFþ`°ß§Öyà;õPÀJŸ™ b<>ÔwªTÜáò¸s»ø@:WbÊ
'<>šsÔQ ŒEH§ÇZ9;|ÄǤÜûäwÉ1{òe±Tç=à´ RtGÄäˆ[q¢ä°í<C2B0>ùE¤µ*ºk¾Ï©@ú;¨aÚÅ)äÐ ª<> ÍìÌÏE*šœ¼¶²Ñ÷Àtš•uWû®\ôzÆq¹)‰¯ˆ§¼ÁšíÔ§n aÒñB®Ö_Éõµ´+÷£3 4Å(‡ê§œshœÍu²T¿Üéò·×`åÇF5™•Š…p4ñ6ºHáøðJ׃<C397>üß{Wîç0ÝäÖÛî.ÛYô,Ä“›°/zvÏ<76>Íýȶf ;xí˸k Z[: 3{%z»[ÐZ°ØíUX<}u¥Ìü¾üwaZ¼e_­JÜÎmu>Ö±Ÿµ7…4¿,üóÝ#–Ê­ûe)UÆÝþÞr<C39E>„4k‰@YãØøXtÜÿ¾ñ+<2B>ä)àdÇ!:Ý#Ú'Ïcßîd•š<01>=1‡søqým?æ™§ñìw&UÉû@“ï.Ð5[?³íc'Ä?E<><45>?l2ä$a£gK(Ÿþ~ê¡ßF[³¹^³AÉR„<<3C>ÇËùZ~Jc<4A>#ƉÜãÈ?p¿¥ù7 V¾%ú~ÍAU˜G/¢¯v-ðŸÞÓo³òð· ,ò¢ao¡¾ï°I
5†_ +×½lôÌá±@|b®óiî<69>$j{ÓD]â†E1XÑ0éÃNE•zþDÀx,„”Dl—¥HÑW^Á½<C382>ÞIÂçh<)QsÔ=šŠÛyò…#AÑ“ÃL˜}ñDÉLí!™ ý$ ÑILŽ{4*þ+Æa.Ëô!#;–´ö”Ð]FŸ8ˆ4RñWš-€æWb E¶€<C2B6>kܨxV%z8ù”X÷ôXä°ä¸çÇ ˆ*TŽ€÷4Å$ÃD4IˆA<ˆ{“ç0Ó<-AŠóR8™Ÿ-Ѭ¦y®EÍ!%²2¢äzØä”ͤèìù¤VçDrDE™á19ˆ†Æ‰æylHO 'C´¶D}lEb¸³<C2B8>>Ñä‡Ã@<40>ÞŦŸ+Ûé>mK–þ, \0âÙ-X+çµÒw½Ÿ(™\>°ŠÁqÅØÕÞkKa•y3¿ÎóËÁ0Sœ¬~môR&0'‡¦²;#4;ÜoÈ<6F>¾˜Ø¡A-̽ÎÚôkV<6B>Ÿü'ò¶0s¦kwÄócë½ðôô(7$²­iÈ1°`×™ .ÆâF¾Câ[SÞïÒNúÔçüNhw_œx:þ\Äð
üF<7žW±ÂÛVÐRz<ÆyÂ0VØg¬!pÝ„FpM¡o_—v3Ú<;Ð <0B>×¼;½õ™…ý°ÖÃï×8':\h)]éœèpM«<>ãP/í2|ßÁŠ÷PbkYaæàÕºbì£Þc™±<<3C>xPÿwyÈfý©Êgá)±Îqî%óáʽX¿È†ª"*C'¡/‚Ø>ª?ÑO6àY@Â1äÏn+ÑîºÖÉ6^Ÿ»餙“ïˆSAÓ3¸8(çÖ‘ù²þ VÞþ?í(Ñ(”WVˆ×K
5&à“çPÞß<C39E>ãqw2ô,[SpRRvZÔ³íuÆ Þžÿâ“ÖC#<23>y5ÅOµã"±V! §?ð¾2矦èðpÈÎþ— ×d?·ª»<C2AA>#Òœ…8I@Ç`<60>[îMüŽÙ±Ät³Æà4=Š|äH®”*~ú8(ÑÒàËe.·G •k|£9ËcñÄ¢“Úc«EóÌtôØ·f_žÛ]èk³Þ~ <0C>w6,º:ŽXmï[—©AJ03R)Á}kÌ+Ç’¥ I.^C‰úÛB<>ÄßлËc³x¾*€ÝØç*¹Ð1‡ážWÊ$šƒ<C5A1>A6ž|òr:¡_ß2|±¢'CÞ=VJ.§'ÔÕðo<Ó-X<>Z¥ÒÐiZÀ3©ñ`y{qÛ w{ ¿øâs<C3A2>v> `T¼…GÒõMóØ)ǘŠiº%'¿"`ú¤7ÉÚÐ
ã0Zò䃎êÒ+è”^à
îfù%µŒÀ¨‚÷£…=ˆ:¼|ØX¹Yé óåi<C3A5>š$ð˜ Øü%g¿yÈ>õñ)=<3D>÷OÏÓÂt÷°Ìç¸VÈWÌôbäÝ™Ò>:@GÏÞîà âÛF0tª4ý¹µ¯… í-2; Vãókì«8X?@çç¦ÌonààV¬Çw@ëF,V@‰x®9óâØÿ¾Û0Hc ß<>Y¯ks`)Eßêû¶xí¦[FSÁ"Q4ÆC`$¡Â™97ö™ 9â/@ý½Åh[€A4gR¯¶Bu³üÈ…»=_öÅÕœg[7ð,ÊÖòW4·Â§¤ÐT¡”{¡úQsAc£…šíœjËu>Ö±YÚ¥¡ÙÖ/̽rë˜ÅSxt8ȸádY
ðDü.9³´2HC`mQE·+2.op®öÃÜ Óµæ˜â¹)r¨•Z€“ßWôÈnªå[_Q„¶þ3%–ö—:0é<ÙR¡_qÉ MÔ.ì6X“_»<5F>OµF]WôylHš$‰<>s…âh‰çyrYôìÞq Ãx¶.}•7¶ûa5Ì ™)°–Ô´é•óÏù7˜Ý ÒôÌæß˜ä̯À:d@a>@Þ·½ÁŠ6@dæÀäó)¹/ýVR…u-ÌÁÌ$̦¬ý½Ë/ï,aÀØ¡Fv®îäxÎ dºÆn²<6E>×g~<ÛHŸ2ÉÜ^hy3=K92¤7~„:9“<39>~MŸ ³ø·¿øNlH{¬ûƒ~v·h¸ÅÄÌ™Kèë'ßyЩ‡ª€KÒ÷ ƒÄWÙb'<1B>·<EFBFBD>Ù8,Ì^(°"ÓªémÅ\Êg¿æ¥|fÞªXîñj6î_eåd]?™n§:*¥
Ao€&6ßeoÄ<Û“C—<Å:š+ÀEÍ…ÞÒfžJª¼®oÜéh¹Ö—ß÷dŸ¨ P”E
†é_wüØ2ÝYç(€<>Ž< ¾ÖÔI<ÿ¬Æ9øÓ‰Ü•¶yfë…×ß,ô^s°ú‰Èo_ûÄà›%5£Ò8*Š*xÆ¥bÊi±¾^ìÿæ6<C3A6>tø”_^îÀòµz‡Rw=²S­ã/Ì:$pö°ÙF <20>Uêë»l-™ž2¤yp(Ìv¤O†aã`Õœ;áÞN¯”Ÿ=yñaühDa 6±JÞÏ „WB9m%€‰<11>Ð1ØI÷<49>âÀ&KŽêô :—ŸPGô
Dj]…£wÙ]ž ËጅÉä°ŠÊ?Ùž 7ûa•I¥÷f¡,²fø4õ ¨ˆQž÷Hú5T̆½O/PQà§XP#ÔÑA)Б]“îJµmqÞÌ^ŸS†Xöl´]/<2F>9è7³»ìÌ!<21>Pþ)¦Â¬'lž¨»ƒ`%íØLº$UÄöô¼(1>@ˆ;Û,x(½¦úÆŠ“>.d*û_¶±g ºÍHå~f<>6ëÂ}ÿøþ( Xu¾rëhÆ\ f#37¢®#Ô­„w"¹‘
CõŠË­×ûo‰Ïó˜`ÙÇXÊ.´àˆúAv="஄nÖ`ÙÖ®v(x¿SÖRZ¹^ ׄÅVœÜE¾€'c"KÅX«"56~+­r”“³<E2809C>ÍÜöŸo ÉXu ±>4ÙŠM|+ºv7 àÀ«Ö.]bød˜K>9Ì+‡û-“Z—œB\
¬­,wP„óÏÅø7ZPÜiê=Î+G <>î/Î>ôPžýKs"Å´l£Òpí<70>Yg¢½y1+S¸õí-9½Ý<þº¡D¶cn9…˜Ó¿dEB<45>ü0!ÄÚò˜<C3B2><CB9C>÷sÁîû˨–œ Rªzw®·1Œ˜Æ`<60>üâñ6°·Û¥Rf˜¼}ìLµù7œ^DèÔû¼€=ªgÛž ˜—¹k+Ƴ89Þ ³1¯ï {<7B>åhKäB«é4Ò}ýêÆ¢ùJ~ñ1½ƒÖ]&õžžRwÜf±ô5`<60>•F¶b&ùõ
ÌÎè‹ x~'@Ë¿¯Àš;Ûg[ëðH <09>zÊÙ»+<=Ûs{9…ÊîÚ7ߣ<C39F>áqk°ùûÂ<¹KyŽŸËHú×U^<5E>ë·”*Mnäô§šX<C5A1>Äè1Šq*š6÷}&zW@g@G¾òÑöt—ÖøÞ2ðòÁÍÄt:é$#W3·öâ<C3B6>rï½·órÈñÑ<ºÉó`|,}ð´…ùFÞ­§B!œl ^JÏÆÌï}ÿêÈnÇsŠÓm"ˆƒÀ­<>3"°]`¼Ž€€}+Pk/Gþ)ÍcoÙÎk´ÃÓ.¾ÊüÔÀÈ7o¢<6F>%¤ò÷X¢ö•ÅRÏ{AL+gOu
®¥òôŸrÙ˜§
áÙ–`,HV9ƒH‰òìä0^S¹I¶ñT<C3B1>Û¥ó>¤C@Ô¥—;°8ÉÑÛîx¯þâ<C3BE>µTŒïÅAoñ
Ž·/Óü;òÚøøa4L­ô©»ä<$wÅIÄÎÕ<C38E>Îet[}qCO\<1A>~ë~½dìly/zû±y.ôô
f9ð̳<EFBFBD>åŠü><3E>î<>ÎU
ãã ¸î<C2B8>¼Œ«ûÂײo0¹õ`ÍÙ(<28>¾ä™©·P]çß$K>xù4—˜—æ»g'¿(á4ÃúŸáâ¸S óšQ„ù•)
÷8Š©@9ˆMÅ1—DqôýãÉnLÍÒ·ã+…á³ðhša|÷XØÃA²Ú¨´"‰Þ댅(1&"`5F[<bs0ûÀÌsŸÂX}$aþÒu´(ºuwH<>Ûd¨C
õjÛ[â¯ÅK|þ|dг
ŒËûÙÎbr€}ü?i6Õwcc<03>ǤŒt <09>(ÿöäíhϦC
SúÄ€‰êüIWú„<C3BA>ïg7ÞÑÍ9j'øãyÊ]Yìþª07Ù2†Û£?Dý¸>,÷kÍU“&k„aµT5þæ|0à·ÅrMÔwðLïp?:,äîpQN™ž?ƒ÷¡CÊ£õz$îšRsjµÜ<C2B5>×#ö°²OÙ“v°ÂÎh;×—hß`û)xKîä'l
<EFBFBD>WždLKLæ"v¨ÈŸöŽ®Fc€lÏÅù»j4­„h¼<lFðL°ôþ<C3B4>Óã»ûùfåó»»ÙÌ7œö•Í7@ÍQKis¹é?R{P^íøñd¿'}í7^È µB‰ôÌtˆÙr è2þÇX <20>¤<EFBFBD>êó _ç¯uÂc²ƒm0?Åw`Ï5ËŽ4cNÃ냶æ
¢lõiSá=©¢ËúÏ<ä È<C388>œúv䨀Ñ领kÒ·ÙM¥×NœLÅB2aJÍ„£ÒÀ­P
ŸÚÁÉ)h¥4Ì J¶<À;/T{x•CÑbF7 ÇCê“Nò<57>Ùz¹_ìÈÿb *´Ú3W°«ÑÍîÜ·ÐÑæÏIZ½´o bai¶û£>Fj²_«å[Ñm&[JƒVq"±ÂøÀ|®G{m:0íTúŽT±…9ìS]ì‹^ /Y„gøõ¿ìÞhôe¬žp„ÚÀ%o©šiA÷TKÛ@MHAÙ
Ý« ¯ç”QÃ4§1—æ¤èa'½­@æt¬fî*$£ö@ÕÃT>¡Úц}^OT—Ùöà®E:Y¡Ížœí¸[-äîØS`ЈµÊÚFcš긨ãXM`”-1ñ3M¤Wº)ò ÅÀQÌRà¨ÅXZjYš°q€Y?[€VµÝŸ ›TRˆþÞû¤×xÈöKŒO><3E>À"¥œÜ<04>v캅RR•ÇÀ·ä“P• …H-4™ËX—rív{꬛»$¯‹ õ†L<>­|й²ó/xc§š"Ž%^PÂ{!еÜ
¥¡÷äÑvË^¶%ïÄ VôŠ¢Â_¨ǦÆÓtÃãvÂtj•sÆj1Áãˆ7à“©#Z77À ÚñKuAxë…jj*h£®Ë<C2AE>Ðåâjæw<>ð'* ®œ'è¼BÇØ+&›Ø Ί&mæ ]"9pØÇÌ<C387>üŠCâÑï Öa”ë(uX³þÇž¾eD_Û½>C¾BsÝ9o€¶pZ×[½—ˆ —èî« =¤µP
”æxŠry‹ØÙβ­î¶è@àKd«Æ29šB7É8ÚN™Ë9Ô®¤_BuÏañeøºíð$T„ 7í³QÑoiã:÷ÞAmÛÝrq ¦Ób8ÿ^/Þ=]œÀÃ&IL”ð á O`†OŸÀ®Ó•©%+ôl³…W¸'=Öÿ
ñèQ}1þápàM´ô<C2B4>§ šó™˜^à·B§ ;tº0®†æ¾ÁÜôÐáYñýÁðšCxoPV´@àÂÛ·;þN2˜´ èô±}X8¡<38>è!ù»t²rNbƒðJØ=Éegâ+:!0v
Í:BcBž"H§óðš—<sÍKKtÍ¼É ºåBP»ÚSJ+)ij[ÈL<C388> †¦BqíN#ê}R™BBFgtö~$<24>~†oé{¾§lÇ{ äè/îqò4äÈ×Z—σô¥ËêA†`ŸPZ¼ðÙ„rw:üu?tÇ~Ìï®{ÝC~
„R/‰ ÷à…û„<0F>C®0—Wsë~ϵ¤¹§÷}+²09ƒ•{“×oo¬&wz•29Ÿßã&Ïb }Ï|&÷1Ñ6yê½ÉÕ˜ÿ¾ï@èæ¼ó%D¨:è\azh|§ƒ¹X0y<>lÞÑ¡N´YÂ?Å*C"o°dú~œõìŸ3Oq*«¤Þ|¥Ý{¨[$?ß±Â{©ß)Ýgï'¸+ÝbþñêN÷¿Øc³•Ç*ßaàÛTiàû¢«ØƒUGWHòÁtÌ}×<>õl%2i$lÛ¥«>Ô3 ÝvÆÀJ‰¯Faÿn{³àÝÇ 6µõ Ò=š—ò:¯X~lÐåqj™Þ;S{ô6ƒyÔÊ1Ÿ¾Ðk>?þŸÚû“&ˆbT¬´íñ¾tßBÜ ~ÉOjók±£;]6ÙxJ°±rð-iž¡n2<6E>§;W£H2I½“_Éfó‡Ú0Ø[-xÿ õ5<>,Ò¯y®¢ˆ4øñä<E280BA>ÂÙORcràw¿!´'HŸsNóë~]“CJ™‘œÒJú%ºí"¤ëÉXCΞ;9iÔeÞ•!E¤X)÷”Cj°´³eK:ïå ê°Òì¹-<2D>´lJÙðÇaGè ¤<>ÇN xOw¾RËѳúF~Ó5ˆÔy:§Ž~ðc<C3B0>;ÒÐŽG
<EFBFBD>¡Y­a,<2C>i8¼î•<C3AE>ɯŶ£€43ŠDKÍ‹-<2D>tððÝRBZ±ÉOy¤)Óe^- R€…Fû-›šRwr<77>H+ <20>˜Í¿Ç÷¨<ÒPÿ+=¥šÜXïJ¸5ô\xCŠ•vËGE¤¶zƒ(K<>B, Z+¿˜ßå üü†YWþn <20>î¥Bc/ƒ Ò¾×!Aþ]µ[Œß«h¬ïi¬V<C2AC>!R×ÉH+«ßh(÷CŠÕ63BaaÐÆêÅÁX émy¤Oö÷'ŸoGÊ"m׃Q •Jc­•CO!¤!¬Sm;<15>íZù#Ê#5Xh»Øa©ˆ´C<ûJH«Xw`OË#­Åík×az~<7E>ë·kSDúu$ÍJH—Ø»ç~À#E×ÕphŸ«Ä<C2AB>iârÈ"ýßÕ‘®kû£ÒÏÀɃA6$?Ö†ûnï2)‹ô;Øs("½ë\~)\Å„
ÂD¥æ
"uŸM#<23>qßÅR€4ñ+ÕIG|Ûe<C39B>®â. RƒõwÝ<>mÀžvTÄ+MÓ<4D>ØŠ©çTR;~kcYo¤J:Òâóc<>Ü`^ĪЊY†´Ð¾‰G±VzÁŠÅ×Dê“ %<25>ßV“<56>pDûié(A
5¿ßûF£}ÀŸ¼¤w<C2A4>ÇN ! >¼ÖjB¤<42>ÃÖÈ&)v2Ònðó§WH¹ÒG“Á*%0IÝìªÚÜHžšñêLùipRõÊ=eV1wú~·V|¨^©ø+¦¦öiûdY®e*œ†)wO|­Õª<<3C>~O”ŸÖMë9ÿô„bX=dñ)¿Ý8®~”Ÿ¶»ñ¸ÜS†bX{QÌ)¿ÝiíŠOɃ'À.jåþ‰ôv_£¿<Å>¥†uçù£òÓ7KÓ¢ò4òéàŸžRì­²((¿ýþp+?ýZ9rOYŠ ¡žòÛƒù€P|
÷tZùi¨ë©P ¿÷Í^•Ÿæâ¡<C3A2>òÓçtp§B1¼ñH*¾<>°íwCŧ&;ÉŠ™,õôŠ}>–ê>S+lŸºS<C2BA>ZAåi²Uâ)F?ß <>‰-׬¾UuÍ*÷àÚåsþGxš™xlÜíNÌk²Á§r¸Šö|©÷YšÕ஀^ ÌvÇÜì_Þ<5F><C39E>îŠ`5xh‰ô&y°ß7½ Å(s·ßŒ5mÚ‘#I»;‰üGŸWÖþzlkÞy@ŒYJ)X ¸dÝgÐ26*æª+ ÎN´åüR@Úÿ”Cj°Òc½+íƒrceÜóû«"R{uì³HËk!Ҕɉ<C389>rë~¨m¸<08>Nm63<36>”²Gm<EHà §ãác-A
­q†À_±ŠÞ•F>E¤ÈwP@1CÏá_÷Åc õ‡*Hˈ2Rè9H<39>"kœa%hŒ”<C592>¶”ÆžŸºÊH¡="Ò0­>÷pŸ¼Œ±åº÷ëjÌcríàXD-±oW"«"2Ôxmƒ[!ú<>SÁµŸD{Òñr/°?`UH˜ 4—ö=?y¯+Ϲú@'-/ð·/M€¨a'J+¤žé^€Oèþf‰jè_à« ú»G€6 Þ4m{¶I;Ãøb¼ÚÃÃV+ÿ'½wL;Œ½<C592>à𠃎f~é&¢x#êpο
ØÉu\r¡:0<30>>²Ø+…”O§<56>§¾Sìô÷éN•(ÕN™qÏ+î<>>„ñ¦_ ÉÅ' ÉŠ ‰ŽþŒzÞ'—|ªi<C2AA>þ<>“ƒ"$Š3h¿ãgPqþ |¾ ݰÓñ¡˜Rs£c]9þ4X•ˆ¥ŒZ½<5A>Åì´^ü¢Ê×pËWIŸÁzÊ#ÓHîëy”Ÿå}çk¸¾È(ŸâgÚ%V=E©êáF¯Cõðž8¤wßCŠÈuY¬zˆ¦ÏF´+BO¼*é<>X*‡G;ÐíuG;Ù<>
ÐxP |sOòj[A*éhÞ)£õ½w×í!ñRgÖR;mH†:âÙs¦<*$ûO6föeؽøYð^= „¥¿r:'†" cƒZŠÓ„Íð»¾"Y V½„Q[¥s†iîë~vàt@Hž“÷<E2809C>Ü{üñB`R©Ý•ÝHêØˆ"ø\ºFŽ™äl~v.aR©ýa´ Úk<C39A>aÑÝðN{:Ñ.žL‡±O¸£t¢…À2qxõŸôkt*¬û£»z@<C3BD>ûþÔ
S™ÚNä!m<>•µ¬0ݪgZÆ]¹ŸdYBq~}6£`~W±ƒú²$¡"·—t:¿ óƒãM¬§2Ä"ÖÔ§Är ^å.wJ]ÊÀ«C™þè锜IÇv©ÑâdV:œu!šA-“N÷üÅë‹®T#V׫Π†³€ùÎâ,”x濘 (ì–ÃoI±À-)¼†b̲Ì0š‡Ñü"Çu^Á¦öQñjë8<C3AB>ëMzƒÖcÊ®„¼LºÍk%©œWÄküåRyx°hñ؉£Œvse©s°ª»YÔ±<C394>E9ÚÀkPGÃW<C383>άaÆ2Ô<32>cƒž®œãâÉvÄ`…]Ñ]=ØâŽp¶¥M4$UêŽîe~<7E>X}º>Ç'wKBÜ%ïÁQ <20>ä…šÎA Ôø©Ê¹Öœ #§>”äúU\ãe»ÄhK¹NÝHKÁªËß×£¾Ûyþ¾2уÝN]¿Æf»tº¾|Q Ir­%_E¬my-Sa3ûoO]3ÄŽ<C384>O¸ÿpfXQ4B/ +t3b \k­<!DÄñGŠ %¾?Jü*<2A>†9'®·y¸B„„<E2809E>$°1%1£- ‡EÕiÔëT<"û]G„DGHvó(¶ß¥C3H§0´<30>ãšðŠŽn¥ËòùqÀG±K)<18>Á*7[òŠÿÝhõ¸<C3B5>€ÇÑÖð•q@YÂñ®ë“Æ@D½˜:*ñšSU±ˆb bcÚº´›Ò<08>)­ /¯nó•´Û?ñË =/§ýÑ»&^ì:8 g!CK\//û'ñ¨¡•:bÅGe°ªs:×å'~å;@<'Þ‘,z(€ÄI¼Ú•ì1-ÂDtL·ÄØcbêˆmYyêè²eáV}Ú¶%œnðëùr'7p¨Ý<12>ï˜7ÌM©k>zµ£#WêëÐA@:Þ*gvt2v¸R¯ôÚh“B['«Çâá¬<C3A1>½äqÚRGìH^°e¡pòÇZ}—ÂQ۩࡬ZpNW¾ó×=f‡WºCx0qXnó:$ö&Œ*ü>u¥¡7„Aar ïõ,¿ s©lú(ìñ)ð$¨.R
ÍOY<EFBFBD>ÆJ%\<N5øí& Î µºz/r¤B¤7˜È•N «I<C2AB>Mv}<7D>Àš¦k5Ú+¯Ñ®‘}0k:5šºìC8×k4xrøzõæŽX£‰¶^^ø]9[@xžž2µ ™hëP>â¶ŠÊ·Ó-ïuoµ[îïy7ZÉ×´ÌàtÊjF9%k°j¨YLy»T¯eu2v©Ó(æâ秬ÛCï½êçîÉ¡&}JAÊcÝkL{áÚ‚½ Ž~‡Z1:Šà¨=Ò2ÉE <45>uq³X5ßéZO§ßȾ½Ç—Ф§¾€)¯…¢s° 0ýç)TÊÔØ,ŽÁ^Âhoröýù«˜Ë«CZÌìß`5½Q] õ®bŽ>û^
ç‰#8—¯†Ò S<>'Ÿ¿zOƒ[½žd-»I• ²ðè”GprXqü=¨«(L‰<4C>”¼@*ï¾åÚ±ºE©ÛÒ f=š_<C5A1>t`+õúÉYkŠéq5ççä!©KÎÕvO¡(øäB×üi(ÍãtböRÒá¢çEua Ó˜:kYk¥â”÷)‡"õœ\ûûcJ. ('^Ú¬Ò¿ái[LrúJÕyfÖËßj·‰<C2B7>Œ)]ñdÞÄ8=…Èͤ_îð­Òž¸Ï([ú"ŽvI~7uJ'G¨<47>Ue„¶“kQyÏB”/<17>}Ì¢ì%*¹ZÜù :¨ÇnC§žA‡îî¸A<0E>R>ƒŽ‹ö\™C§žAÇf¤^­t|„äº :>[ðº :…lÁ³sèܪt|¶àu9tâ9•æ±±7·\C§žA'Ȱ»*‡NÆÀÌ«îW^”C§žA‡l~ÕÉÊ™@÷{m§W|^9¨ï-+øú»„ä%¯îÖE
^9=<3D>R<åÂ<C3A5>ëÓ™+ <20>ôªÑI#Ò[<5B>®öO]ûNãœ^:íÄ ½Ì9³úΠ3¬½=<3D>NbPÿ¥p´º||’Ã}âüv„úÆ÷©ž&*èzæ£m§y¸OW—ôD®Tè¤3eNõœN†-~VSd„'‡5¨´öÀ4<C380>plßkº:lÌ­/ }ÉžRÓÚùGANNBÂd7÷ E¢wa¤<>±m£”÷Ú÷ìUl~}<0E>,Ò< ]Žˆ0 /×`U&>‚å:5"F%-Ÿ\§N.ɹ½g9½¼<C2BD><*<2A>•dªb:üJäX¬“Ïóí±Tö²…aáIµÀaè4~¿Š‘пę;V`T=å-?½Y`\Ÿ–Ù¥?<3F>O愱Øßן¦‘ÿ×ÁwIq—gZŸu-“ç¥ÆÍ*gàùÉÓ—%Ž`Êœ<C38A>×<EFBFBD>\(<28>`êœ?ù<>­œ˜3˜Ý‚ Z÷¯¦–"CŸ<43>×LãTýySÍ™9³_ ÇûÍ(¦z6Å$<24>ßCúWrÔ)<29>ë 4ÌF¹Òa`ÒG½Â®·ÔÌ—ShÜ$×ÊfG4¤;×ûU­é®hE¿³'oŠUäÔƒ4j­BójÞAXO¢œíT9ÍJSªyâbŸG^,`Š›–ìËC•¦Û‰;/GNx®O¼À)Y.p@êWžHœ+Il\lGÊìvþTµ²bÅn¦"'WÏ ïèK<C3A8>“Í»«ŠQEóÍ챯ƒU#©UÇæ&m<> ï(§Ù¹ír]œ ÒI§ÂAGxG²‘«ê¹µd6ù•:ùò´KZÂ,YÅT:u^DFñtº4-î<:‰#2AK|å—ÞÝñ¨ušO_D&hIÜÉžØ9ë”ÚæñˆÌéx 9¶ÛDdÀÐpûÕ'ˆ6<CB86>z#2´˜†¦qÖQ;"óÈœƒ½AšfDÆ +?ïÚˆŒÁ
>?=G<>:òÉ9RNÖ—jžh¤y¨¯Vå³4Ü<34>ÚÆ2°æÌ2ƒ@Ã<]ÔaïŸ$!™Ø¸Î šCïÐ '+¥¡é<´§ž>&8wqM^<5E>ž£Àí¼º«ï Û?Á3ð—Ÿ×ã £®¬¹ìZÍ (¤NôBé¥mKÉQ=‡ÌNjûš…Nt3wë|8iœ_÷™º³òá4î»Q>”ýk…O;Nï Õëòáøs}ÂŒ¸«F%#e ž<>§´3rÛ|8:÷Mšwë|8I öb O=N|K€`íºi>œ8j-=jyY>Ü鮯b¾XæÚ[ `òkG(å‹é?ùªãL¤ABBÅ3¯ºÎDjÊ~wwuz=TBn<42>'!5á(^k¡‡—†sÎU&Ê½áŒøË3¹ ¿Yt$Ó -†0¹N9 ¦<>N„P|C;°½NÅüv¶ÊF{ò:N5èʈR0ç¹§õa÷¬£ÉHÕr¬®CžÚH¯³Æáî‘C ­Û€œóÅðÄ{¥á\-†Š’/­ÿ®GWvø©aªa0åmWÍcä⨴] ,­“¼j—KèÚ}*þÞ$#¿S>ÓqvF*~§+‰T_F*~ºÚuÔ&d“nÎËH}»QFêÛM2Rßn”úv£ŒÔ7ý×@k…´òëé5Т Ú'$b(¹šÁ~}U_ÀtŠ¡J*: u^¶Î©pˆbòļa*¢ØBÇ<42>VW¥ÂéŒ[^™
§èWÞ4NiÝ¿m*œðöl}9Ú—¤ÂôžËÍK®VQ§7ÂˬÈyßu7¼ô­˜ê™@ £q*f¯©^dxŽ “÷]ž<<3C>É¡O×mZjG`þ¡Ê’'àƒÞNéäùÅ<C3B9><C385>Àóò «ÆÉ²33¨@&57y·/C“§;(š¼ÙàÀä}Œa™õ<üÔ7y?ø'crO|<7C>«ÉShåáX<>3ná&Ô&é2óI”wFR¸ʬ(C)tHÄ…'TE)`w6µd7ŸWÈ/"¤îT`þ"‡”©Ž Ëj(%»½«%»ý¨eØÍžÛ¢]q
,«=QB:UËÅʵH¹\,®ßà•¢4 šæF*Mvë+"ä½W˰ÃJqìYiÄlim¥d7<64> ;*$7V&ÙÍóÝUD
kÉ.”r }ªv¥š])I½¦MŠHM™/oG4§Dœ‰ó£ÏüD8óïÓ<C3AF>¤¥l»Áq³Õl‡ªýн†fËðá;fé„IGŸY‰!ÊFiÉr
ÇR:*WIÒqäVlÁÊì}¤wª\šGBØI¸g¡«è—V<E28094>.….IÏ\¤FðÅ©b%­[š¯ª$']2Ü¢œÎ(\Aû µN:%]r—ò¹¾ ŠÈ)Eá\Š~¥v9ýãójݯ{|šµôwJ÷ÉRI—$Qíúqú»$ˆÉW”=îª3N#Ò{£l:q˜dÓÉåÒ‰ÏÀß"Nnhë­³éN;RpëÛ¯<'›îâÌÇ«·±ÑÍ-7ͦ“# Ëm³é´n¹M6<4D>žùúl:¾K¼ß¬µ¾(N.ÎBŸƒ½e6<65>\.<2E>ÜÙžë²éä CQnÂM²éärédïU¸*NNµòæVÙtr]BëËM³éT,¥fÓɧ(sÓl:¹ùÓ®0un6<6E>¨ówxµ²éä@©äW^˜M§@±gÓÝŒbš†¡:ÅnM'·<>"sü•Ùtr¹t25R¯Ì¦“Ë¥“¿³ëšl:±lÓ¹tù•dÓÉP>Ÿ|i6<69>ˆ"C¿$ž|«l:9“FQö/ΦƒÙ8Õs Í¥çxbÈÜpxe6<65>ü騩ðb(v_ÔØ'v«¼ÈI奉t[“64hÛw5…]h]ÈFs<46>N¾i½:­8ÌmêÕÉåb)ìŠNÙ¯¦<13> Í
<EFBFBD>zLƒ:ê½êì”nUpÚ%iu9Ýâ¬Õ% }Ë™
<EFBFBD>t ³ú]<5D>°SµÐçÙ*SìÝN«ÿÀ¤*­óGz"sÂ2wŸ†:«ÌÃÉJ&ùãùç5ŒV¡»«ËÜ êWj%Ò]q'8{rXµÐÝÕeîNµ¥V†á%eî$EùBw'„9·Ì<C2B7>*'ë:þ¤§ÌÝ¥÷Â=Isã/¹ç
¡F½uðá5jד+ªÃè~R?¬/— ÍyM•Þåyºðì¡$N1©ˆó+u¨»ìì¯p­„9tz2`5ó OjÔHU2 añ¾3ò‰N+L‰í_¨#í'ùD£¡3H:åóí³äN1‡ê†§¡°Û<C2B0>†jn.\í¤™<C2A4>õe>:¥É½'Q<05>p\gõF>û C•Žn1*<2A>®“]ÚpôÔ&Óu² ÓH¸S=¹¶Ÿ…ûv:OW¾^熷`7±ð˜~‰”™¾JФœÚÊur”꽪¦2œ^Æ êÛ{RO\ñ uwwuF ]eFcÔú36©•¬ò¸¬!µÒU§KCöù<C3B9>¯H<78>‰«j ½êMdPß­Fp®¾% ‡¢
×W«F½Q.­<C2AD><vF*<O<>)úßìðÚeNVÀL¼¼:õFàE5î®HìŒYþD„n1ÔYáNWÝê«+Üñ™<C3B1>ò5îÎÌ|T°éϯ”wI>\¥¼ëÅPZáîšJyú+Ü©ÇÆ°T¸ãë½Ê׸»:±–Ï~jé¸C3±KÍÌ9ëÞQXNî"3GîÞQìúÄÚÏ_þŒÓU™<55>^‰µZ÷\!8WG³×ë_ØÕƒNÝpôæ·Ë…´Ä1%T.ïÊüváF4LB(Á~½‰Q}”õ˜FÓ )=½Ø»Óµ3®9¼xB±[]m@ñnû%qK1Å"·ò+Á\võ8©ŠIL(>†ª'êJcÒÙ%)G£
䏿z}¯Ä0<9š!wk“¾×1¥·Ü£ž¹u¹G¡=†¹Rwô—{”žÙPŠ(êÊqÍõ:bѺl˜þÕå¹s°0ÕóúWX<57>NiÉ“f=kç¸.<2E>Jöœo²Ããµ5JcúÁ4%“ë)‰£=˜Ö×6y†ÓŽÉÕÉFà§&Êí3XMÞ§aó÷VQfé¹ß­„Ýc£KâÜ)‡r>\¬éÇ„ôwè„*W‡Í²Û —:Q6ÇØÒZ)•¹S­87ðŠãc4¼\¤¡€4b¶lƒÉ¡RÞ@‚”ÖÉ\6SXi¹Lö9¤Ò$<óoäø©”šöe°ªäþ½d„uÅ©iîäúU) /¼peÞ\{)h¬Ê¹€ÀsL)Vúª(¥¬4ëÊß+åþ<C3A5>T<EFBFBD>±„"Rš?šy¤tÝ7aÞ§9òªD`<60>ÚH«6ÉœBÑô"ôt6º—MÂ<N[
Û5Ì„žvw<EFBFBD>{“8ίÐ<WVÁ2 Ç|bt² Þõ8$K'rŸk?5Z27:¨!hÚ6Ý >vz}³½ú‰rþOFw•/¹.q7ƒ5mš§Üõe[Éy —UfiÚ4Ž—J¹pö•u\Ù¦ž#hšSg¿»YVšê‰íó²ÒÜgщuZ“ óÜh|Ü)-<2D>§UÆçÓÑ%A nµN)€×Õ%f7A=N|&<26>NOiñ;V<>WùJuÕ÷l¥êJ;Ƭ³fJߣœ­;[¼Y6Ò (çþÊÜp¨Ãî{ïΚì.Oñ7Ñö={>®uq| æ§éñ5îµ.Þ"² s<00>ƒ Z<C2A0>Qatçiz-˜(©è¼K~¸ˆ"—5 oÛ!¥«ë°ft×S¼”ç,¹$ –» XÇ®7L¸S>3wVˆª”/Ãײ㤙F÷éiYóÖË*¦\§÷ÜD²<44>ƒœ="¬™¢?Pëê…3r¬Î*,¢Ò¥Ããâ¹qmk\Ü%‘¾—&ΰ(WqË…©œ'èüV½Ïów²¿0<>ºÆfÁýcÚÀ´ªè(‚’æ#—OV•«©<>Ës0<><30>Ëó(¦UOç,вZB6]XÙ:å2ëË…Y€zsåï!QqqE=Îê»( Poà¥ñäó*êÉÚ–º³õæjT1ÓÈÔ;C²¹¢º³‚“@Õ,Í,@m¶W¸Õü¬,@½9€:}d…Ý7õ@¦7ܹ¾Ä~â(q£¢|JÙn[”Oo|«kîÚ¢|¢ŠlÿZQ>õ<>Ä[åCwÜ)VÀ»UQ>鹋§(Ÿ\µ¬Ûå“©_yEQ>I—$7·ˆ­gº?©Á’º~lÖMî†R¬ëwf&×<>î†Wõ»în(¾®ß5§mõ×õSͺÓYËF»®ßÕwCéªë§y7ÔMêú©Wõ3fúšº~êG¹wWÖõS7ØE'ˆ®¨ëÇá“­ê'­õ|i]?õóL(ÿåuýÔ«ú]·äêú©<C3BA>ˆÞº~êBXnP×O½ªŸîüJ<C3BC>º~ê'Τ9‰×\œ­\ÕO<C395>1tU]?aFÉiU¿ ³ÒNêú©Ç”o :¯®Ÿª•G³ƒº~ê{)çÔã»>çýÚº~(2KÞeõøÎ­«)—3rI]?•.V[[ê«ë§^ÕO%óQØ¡QáØpF˜Z]?õª~rórI]?µ×°
óiÞÃ%uýä$ž?zrmVš¾<C5A1>aÁþþUuýÔ7ºšÿªº~<µåì÷KêñéÍ{P‰\]X×OÊ êX¢º~êPÔ²9ˆ3êúé8m{ƒº~"1<©êÇØc7C¥Û•ÏÎJ»è|†lÆÐuý”ûur“Þ%bÈÔõ»Î×[×O3ëù&uýÔ«ú<C2AB>Y<EFBFBD>ïB_ZdÁžÖõ;¯Ÿ”äF<C3A4>ëëúI³pÅUýd3/¨ëw¹;§®Ÿº™Cßnz}]?®_²UýλµI¹®ßyy¯—ÖõS¯êwM=>ý®µz=¾ë“áéª~ŽˆóržÔ«úéº;]G]?õª~røKêú©Wõ“]Å.¨ë§^ÕOãž+ý9OªUý÷Â]U×OgÜòʺ~Š3yzóä9Ol]¿›œÔ¬ë§nB=vº~ꆡ`<60>諸~'¤Uõ;Ù¹°®ŸúŽ<C3BA>$»öâº~êç<C3AA>%Ùµ×õ“¡XT…bÖõS_Í Ê)±ésêú©w‰Ïâ¼®®Ÿtq_AÌbù¢æŠaÅ -¸Z—˜:±Óƒ ½ØUÎR?x/N[,IBZya ëÛºÔy‡Fw†˜ œ¤ÃÍOO‰'
sß*1¯Év,¾åÞLà·öžÏ±"ò$yÈ¥_¿ú“u ™ì ¬dríÚ/¦@¢]w'׉œ;}OfܯO ;V|Þ±R¼˜ÁJ¹§"Vö[X-šûÀjï¬î¢|X;icíá´-_ÆS¬kß.°n ÿźûG öö0.`_<>Õöuðõ°aջž]-+ö<>8IòÙk'©ìW„¤v¶*yL>(ó>7ók±#“Ù9ß5Ó»©þ𳢫cd'šæî{'mÙþ->Û¿Û‰Ø]çqâuwJM{ú%EDÜ\* ½B|½ÑšíL‰»ÓÞ¼&rùå·6õ2÷e#½ÂüRçrסQ HXO2äì»S)oBXˆ`¸6ì»îxŒÔ`•ŒÕ<C592>œ„ÀÛØC+uÞJXÙ¼kTìmŠ2I¹äÐŽûÞïEµ(ïèœÄbñÇORŸ»$üÍ|r³1-%¼u•¾ß lgÚœ`â­µ¸pOFl'Ò³ñU:ÂÚ˜=º|¦§þÖ39¼£;ƒ&Ù>Â?IXT³iòúmH¶4¬¶ù KiÆa÷x­­â<>‰¡¹Ênv5*ûôö6p<ÖcÉQ©V<C2A9>ÿ¹ù, <0A>O@¢ûaÚ†±@ îo³—v>ÓáO
~õ3J8\±sŸ°‚߯‚`Q<>ŠÎúëµ~õ0_ó>üêãüýpÅï.v{ØŸÏàCwŸË/G~ó§C®£_ØÔáH°^$R샌‡·Z=€<<04>¾Žƒ ûN ãÑ—N8R§s9ãæi'Ä\.y Vþ²¨Á¯5?½2øË Þçøú€°]@¯â ˆxÀŸè|­zY]r¤S—Ào5ö 26à‡u6þLá× 6øÐÙúèùsZ|Näbþ~Í$À’Ç“ Ò~ǰs±`,I œ³ü"R6Ln,‰¦ªT˜Ô{e5?€ØòËA”ƒ‡ª1ê€øŠñ#¯÷‰|öÕ–üÎ/¢Oûl'»}CÒÈ}¸4ÿ:'½e&Y3€¹:0‡—e¯oáüŽk<³Œ€hú6à·’ÈÓxœô§Ñ]×>’·]ô§Ü{°)UEŸ VfjÇó0´ê`þÕ«F>p0k1;z`gô§‘%Ïôf5
¯ìƒy¨T ԡ྇c^KÐ7ú<06>"ïÞ‚”²%æ[ûk)U ýð‹:³ð–{/LŒŽþÄþX¥âyÊËáÃûŒ÷lÖE*~>ºéO~æAô[ ×w%½‰¼o*ëÂÌJu2©‡^(ûÔÃ€Ê <7F>.yq0&h[ZmÅÉê7®¾€óK>æýÆ8äY™Be‡6“3õzÑÞ¥µeÁd)ÄRœÞ|€<>Mžß}>x€jt
4l¯brýšÉÓ ü<>bf«êê[F¬ ù/ w Ö†·Èôê0†@ÞŠ#ĜЩò1Úf8kK àýpcþð½‡<C2BD>øŠ—©3~Íû iÔcÔqùÉÉ8Üá_>´®b'³<>ý
o@ñIT+Úá5;€v~ .ãžšžK}ò¢>âžù½¿ð˜Úa­
­së»m ÷Zª VŸ<>hrhC­\»ó¡ñÁ±m
ç·Ù/
Ø+³CŠj4 гõKkÐðø Z\Ï4)ñJ¤ÆÃ¦g¬^‰‰(½éÈ&²ë†u».Ÿóa`×õŸ³ž=ÉN^žK…wø1ëÙeœ¥ÎC´Ÿ­D¾Ÿsßõ·¼Á/Æ&ž"9H ïµmº¼îö>³•ðñSû2 ¹ó€¼v8un´3w”†nÔN êÌû|>·²o? ¾¨<C2BE>2X“Dœ\eÛGÓ"ú[iÕŠ£ÝW|ŸÞ-<2D>Á 0䬻¯¼ÄùÐÔ`<60>˜µV&Q$¹•ÃñR¬4—xæ7ëϪ›%U*¬ñk<>–€Ê­¬ôýLIé£Í¤3œýSÜÉ'Ká³P.߯²<C2AF>Bð÷¬áBx~ÞUâO§C%j;Ø»üó!á ØÓwVg™©¢{ù¾ÈvºoäY˜é±Ä«"ŸG/æ·@ÁçK½•†‡/<“|\µäHŽìd¢?$Ó¶ §ûrsÍ©“C挶 Øé 5˜«3ê[¨½´$bN à1 £
Û\£™ù*Âáïl'ùã(T?"<22>³ã¬%'¿hCR™~ºŠr3-Gmú~˜Ké}JíƒÝªd7@OµC§Ñ<1E>C¿pàÀ³`‡þ/2šÁª9ôϸÀÁO‡»¿|ˆ5XYEúŠŽ£ÅR¤™YgŸ,_ãFx=XÀƒf#ã'Ü÷s ÃéRÜÒšæ¿Í•äqžöä|!² Œ|WYŽÈN¾½°K˜<4B>ÏÑ; P­¿Ÿ‰`¾0ÌvòƒOÌg°²Âo—¹`âu ¬•
¾åN†k°ª 0šwë<77>Gú-<2D>äCâåÂ1C¿òŒIÊloQ3Wç± Õ̉Rî¾éWëç®á<<3C>é_Åu,(ºƒÙÿ7ŒÉpUyìfë'ðø´¬ƒÑÔ1s·i]3ɲru-<2D><>o­1FN¯ ZN“ ˆy
­tÜžMîwGKðιGøÕ#e_0ôõ =¾—»¤Éó6Löý«…öó€Û>Jmè쥟“$=&<26>éÛݾîI̬y|±û>sA 4#÷<>^÷“Á‡Î!“_ld¦kïýfv²_z*ælcžª„,…Ù ÕBaÊôe/0spÿnFöA0Kš
â1 0C«ï7<>¹8ú.®2Û_ÿ7@ßêë5'ü ëÎ#<23>Áj ˜CúR˜Ùöf¨ÑÇýd¨ß†h·¤Øˆ8ÏpÔa=1§ Ç-e«ÞµµžrvÅIV¤6Ð0WÐû6«Ø­QI<51>Ã\„6Xoc?¨/ßÀ‚=[Ãþ»žxà`ºf(†¥<E280A0>Ù½¤ó(/E/3Sºùªbr Ö{NÌè~K1ÑQ hôë—*Q¸0br>¿Çáâ<C3A2>rp™x¦¿ºìæ\?jpá©ÁEä ®/Ÿ.8møC p“ûwÖ—K«n…îªDݲw¨ÞØ]•`ï½êVõ]"Ó}º¯ ì˜ŠßÆB}a…» ÜÒúß¼¾ÜbeX°ª¦yu0ÆaΜd Ö»j\àl L†®Lòs1,øZßd~v¿ŸoBI³9þk†9« W¼.ä6`]\+Ø:¸Í`=K¼..6mr <0A><>£M…ëB=v¦p¡s°úÅëBá<v¾‡·å¹ÞBzy˜G_Íz<[‰D2K%Ê徟ÍÏè‡x1v ”ÃG¼]|˵kÿáá)[ ¿ú
ï¥n|ÅJ Û®<C39B>(˜§Loèï¬8ÿÅaëâ_ËüKq~‰Yunœ_ÛSý7|d}V4ÒÉ·³(œ a.öõûPÀ¶¼,yÇë<C387><C3AB>7‰<37><>¨³J|ìWâ¿5˺Ol|LÆcâc«¸ë¢ø˜<C3B8>4yã=ä<>Àê Ù`ô†¾
'åÙÒpµv•²ëÑ<C3AB>ÁªCÄÑ'tR<74><~×¢ÜéŸ^>‡ë¾€ÓíŽüÒôáÔ«Ûøs}^'™O\¬a"-×g¶óú3ÐÅÝèSihŸ’>@qþ^Ò%ÃexÌë²U“—®bÚÃ…» ²vŽ/<2F>Èœ ×`½ÍüjÆan2¿êÃE7çß`~Õg—ί¼~~Õg÷ÂXß™Ãeí±kçW}¸2öØEó«>\äñ]6¿L„+ Ú—ž´]jæq~»¨·î­Ð©@W§îÖ†ÛÜÌà& =}bÊÝŸÌ<15>†÷ÿðv FÜ…ý<*ô5ô\xa<78>Ò-ì&<02>zh w°ê§Ç'±`Ì%Æl~UÙA+-e˜¶¶÷À£`ôôïTƒð"®˜Cƒ8Š@TláÉÄP.ƒN»Óžç¬> <0B>ïUÜð“<C3B0>ûÍÏý†¡,6XK<12>„Ä0‡ï]²úÒ¥v¬)Ó7S­åû>€ìr®ÄÑ'˜°P<ÀÅë§cÃíð†œ_<C593>øTrÓâD·OŸh?-÷ÃbAós>¹ÙÓþ•/ßÝÏ+»|ûàÁæP öÇéxøX X •àE F+æ|}àˆó<íNNux¢òŽí<C5BD> @K@28F{ˆ œ'3ÿ>°DðyEDý²ÒëI˜¿p$xôFìï£+|Õ‰0J=#" Þ?ÖxŒ'<01>[#@ʤ| õ˜*|<÷÷L;&™ëèàä#gŽ,kM<L!êÃÆ¡§Â𲊟rŒDó˜*ˆöV„&æN•k@ô÷ey çE Äçï•}@µ8Y©¼ Ê]ÔÀX}§ ˆÃ•ÃXXЦØÙLµ6<C2B5>Å•`,'ú©»=_ºEú; búA|î¯Õ0Í¡Ò;Í1)ŒEâ] AiΆË"ð<>ÿ݉OB6W2UsuT@Ÿ¶Õ±3i“RyÉCÖ8yÇèoxX¥ÞŸˆl¦OŽwúÞŠË×ÁvC)ƒÈò˜Ú¨úã ´Ž˜Çú„,èçóþBA ß_]Ê <1C>õ·Ç+‡A*k<1D><Ö?Þ]ÓÈcïf³´¨O„ÉÞ]´…}<18>5´½¾¨QbLü^Ù‡)X<>ñŠÒÁª+òx{¸Pq±~<7E>×®Èã£Iøub¾}µ™Å³?qZ„ÏW×)úº¥D_¢¯‡£ðëÚlËËÚ&êÊÚi}õXXÏæ%AKw±ELJ+ƒ‰=ú0„§ÞkÐÆ)LNcáÒHa-5?ã Ý÷CâÍ*7Jæ†C6—§¹cÓ<63>Ú{Ü3Ÿ§Ýè|9<>»¸ºó±ùb(Í8H~ôæS9˜O?J<u2©Tö_èêWÜÌׄÃë¦S©ÐWÐMúµÙkâ@{]0UJ<55>Åù%ÌÎLG<4C>œSÁÒ÷nÁAf\:ï
2úÒU¿œgÙG œO"eb å{— çT€¹œ÷0—«>@m<> îYô>QΞ¸?€¿Ë-} >¼šÀ×f†‡=D·2€ßJ(MÔ|"‡\Ê€žL-<X?š ?<3F>
Ku@Ùo¾âtâ)<29>ÙüúëíU¼Ýä7§Ì(ñ”I²ì×xÂ|³X´²<>w6“<36>Kq;ÉcŒƒ>nó: ÊÁ3ÈB…mœ<6D>±—x¬\ÊØ‰N¡:eŠ«Qõp;^ÎõÐ̰WB³<>rNì5nÐI¦LòïøÕÏ0þ¸‡áãZÕ >}àLÖáxHÇ«0WãQ<C3A3>ý4 !ÌÄ®Z^úÌ•Ý~豩ȫŒý4À9§\º4x0
 LÁ!<21>Xû]ÿµ2cYm"Â]õD_Aš/ÿGšæ{èñ¹„†U ÊHáè3ø4åse'L¢àá'tv>tK.g:ízïê¥ïº¥˜æ‚¶!ÅËî0˜«¯“QÛÃÌz£Sȳ3:Ißu²9 ÍCÅÞÊͦÊ(¤©üË»¦<C2BB>ÓS«\|tÁyæölðCÆÃN&ó1œpãËT{ŸÞéÂË3*èbŽ ¼1݇²8ñòÀo<>­øåî
¦3ë1t<EFBFBD>wk•<6B>½<EFBFBD>è‰Öò¸Û~³ú÷ÉŤwæ­{¦Ëé R†Æ@q±É˜O>Äâ+}w€gŸÇØ”P‰
{|`æè1v|ÏnaJè…Žž½°Z‰—÷ ?ü
þD»•ü÷*K=Fç·íÅÃæUõ̱҆2ú[Ç5A6Èå|¹5z Iƒ?[Åñ×ítW" ¢Cü}(ì&Ç ±=F<7F>¯Vcá1ÙM #ºø&üå´…—ÃÖÂ+iDÑO´ +ÌâåUÅܺfX?-ݨ³ï;¿ðø`…>Jh… ë½ç¨PøµOhBFS /ç§9l64Á*Ëd¯dR<64>J·-J;b°*wŬÜÃ=Ø¢ÏAzKðà{æ3¹<33>‰6\ë &/VÀ]Z°™¿<I\f³l™0»bm:bÍ ï%¢W0O<30>ÅüW¹Õ<ç§wÿ!õ˜ñSÓd)n^5o™ <20>Yk°2¹µÓÙ¢ gÛ<67>»WQX<51>»?`Ùº¾åW8þ"àÞ­}Lº6}¯EŸd4îÁAò‚Ë~Âpau0Z:EßðjÃê%l£¯@b?H”©Í¾Vòs™Ü¿4Àgÿ<9—qxâ‡÷À-|PsO¸^áƒA”àøÅXöù9÷¼SÎýBéÙ%üíÕ1æÒ«=ÂóД{àCzÈscàñŠ·ügœIÓ~hÁ¯/BØã¹1_è»@ð‰%š` O}Gkƒ‰÷Ft_ü(êŒOª<>l/4P€eòòŠÀfEeH2·•8½!¨K:^áü<>IrÑÊ­}sW¶9™Õ
OUSgHŒ­hž—^ß&© 8+¥ÔYåà ."_j÷¼Ô†M Qþz<C3BE>ͳí£eY|Ÿ6á
ÐÁyþÞ`Ò9Ë#$xá!:1XÙ){£ ß@á%õëŸeü7{ü償pvq{CW+ìà§ ÷)D(&7ðÆŸwÞpR
"yyçî„yǸOn |ܵïAáƒÂÊš?aðÛº Œ³¢'î<>u-nÁ±3Fö[Ü•ìæº1æf:°Öûx¤A³‰úþôß`á<>/}Bcù
[Öç!ø[HÒØ—Òw·Ÿ/¸cÎR©XïÆX[fƈq"‚®ÆZR©oh@½k_ÄÜm•c¯Ó€y¢SvQ{¶ „Šo¹ß.Ж®‚;¥X½¹ê<>+Ê£<05>îø#té_˦ÆÚ´Ü>)=a<>Fg<46>þÒ†ÏèîÝ„âf œ_<C593>Ò’í“¢ MÁ%>àk”DÚ¶o\Ùû½H[¶CŒë•pü²ÖQÆvL¡c¬O—dMÅhнzxj²×ÉÍ™OéìÃP¿úeT«Öªl‡¿<6æò ¸Y³¢¯²éUŒ3J¦«ø,ub8M; KáE%ó­KÒj4Œx êP¤(-ö:<3A>r£½3<C2BD>KÈ_ÄìÕê¹"ñY?/*¬jBsÎ3²,ÅA˜ßú”Ù;õ
7>'±'Qˆýj:8¸è Õ<r•щVv“wç:ÝäõÖùm®€#Þ
/…¿FÌ&kÎÂR<>ØN@äüx©WÆy¹bü
hÈ@ÓÀ¿L¿1ï_zi„¥½gíþ¢_qà_6¶nNŸÀì??‰ýáL™ Œÿ¿½kïJ‰âŸ ßaj—-ˆ„Ì<E2809E>ÁjøÀmª¥ºZcÒT 4†ötÿØÏ¾w2yáíÙ³ç,Íc¿¹3™¹3ó»áìh…B«nèNmóíå¦X1ŸØGÍ«t˜<74>˜Wƒ/ôÎm`-,i[L^ZÂK˜?†¬j?j·•TP7ý©9Öb9i*ÏCÊÀJ7W3lÌoj›Ã¶ý÷¥ÔËýËÚwf3<66>ÓILöÚ³ú%Ã^ðôCÛxVWš
üþ{³²<>ýÔ§Qa^ˆL€/¯¾o&ã!|ýn¡A)<>Ë<EFBFBD>AÔò[«U£Á—F†uØbóWCùÅez]fÍòJ<C3B2>
fW! €ËÍ AçáüÄÑ=}l‡šŸR…%!BÕß\MÃPj¤˜ 1g<31> {1­¸5"-ÃXS¶qiúã¤cÚ(tI³D§JtvÊÑ×í…è7„™í€ÙN|Dé·cÌ^#Þ8jîEòKú†Ð÷T:ØåÂt‡ßp޾ov7ÔÇŽ´<C5BD>É]džZÁo²ÖIúØTˆÏ|v™³ŸC)°ÄœÑEfÉЯÍè Áü2 ®jW®ÍÒ¡¥s¹j4e Ï!Cº<43><C2BA>Iñ¦EfÈàíq Ð}¾ý:pÿ9·™ÌÈKµÄ}§XœW6¿ŒKÑÇ+u*JÕ”1qFžö4ÌÒ¿Ð t\nTq™r£¼ŒÖ ˆJØŽKÄdçÎbÕÒ SÔ¯`·|¤ÁY}îãaW³‡Ÿš±TõOõbÂñì]晃Èd™r{j»\d7¹z(½imÑwvKŒ´¢®"¢ tÙÞ˜ÉWY
®¨ëõÀ`ÀvбÁ€ñ<E282AC>Œ<EFBFBD>Yï٢ͨÈdÃBgñ„L :bHE4r1ønk˜Ql㘠|ǧótv¾¤vËIĈGH¶Ö6bó$MrL1W'išT¥mNb²‰º…¤L! vºÄJy„Œ±ÏŠ, ŒÚ7ÎJñš?p°§nTÏø<C38F>q”çL`æ³y܆°æõ ŽÜéc#'ÛÛ“‚\‹›å‚rxF3é«1z#¦¯.ÊT
Í<E280B9>qùåÓëb{Û“wÛâI]¹µò!9y}þ"²`Þ<>”éú.é^¤0°bªq+ÍB6wèúöéÇëcFŽ<46>}óT
¯ºm^ n>‡l9(:ûÆééPSÝ¥×o)â5îI<C3AE>è]<5D>qÐD´Bì»ÂUÜÛ®ÓÖØ»më[!¹ÓMêrwù¢±0¿ØFùbÐc¹ÁqL"ÝÙ8ÿ<38>´ÅÐîö<C3AE>1Ez[ Ó}|¬<>JsÚ¸¸=Üïn˜õÖŧW÷¥·—Áš_{MµIdéõû2#S™2;Ô¥…œÚf¹´eî§ŸÓ©mKÛø§åŸÍ©mKÛ`{V§¶Y.mG·«:µ­ÿ½ËmÃÈ;ÆX?p­´ñËå äÜö}š@Ò÷ìŽãjÆ/Ûã0ÂHþé#"IHQ韀$¨ÝsùºõƒGGDzŸ
Hs9Õ¸œ^®{þ¾cúNÏ5¼_¨Fƒ®Þkíã}TCA&=Ê´ ÷°×!D¨õTiu(¿pW?)&üŸr¯ˆªB°(ÃYTe ¼¬¨X‰‚%Y«b"@œ,©ªJ2Ë«%«‚„+2f`@[ªIµªHª( T%„(T¢Thj^"ŠX+@((ˆ*b¬È"¤¬VƒDJ|K*<10>®¨Üqy¿àæ¸øA?Ð{ts+ V²ÅDzäà@P—ËïÐæÌvÜwŒDtu¬OiGA/<2F><ýñô9¬¢
@KpÔàH0œ ,:ÓÐüýägÜW±JP¹e]”7œZ­e¾ávºv­Ö€Îk{WL\<5C><>ªi;<3B>¯>K$LBêy®íµ Ë<Õj$D'¤¾t,ÿ+KSAåc×Kqì:¾ctφåîB…cxfµÿdéòÇî£ëXTn»}õàÜ÷·3«Õ¸D\üêÛqçÎÍddy…éÕ©ÓÓJÂÍ(`¸½*áÃBå½^/#q·g>ütž•(]áU«²RK,š;]2^¤…•Ä ÚfÉ4ç‡}þÕ  Ïx|
±‡ ²KHem®Õµ½ãÑÎFg¡)}õÑö|ÇMH ÉVZù@‰ÃŠ<>ÊÝÛ«0¶z¾AõNZib$<24>b«ÀQƒ#è2<C3A8>†Egé_Rl“ÔÐòŠmª\+¶µb[+¶ÿœbkö<篞ë?§j<13>ªM„£G¸ÕhXt¦¡yw>Õ†Ê'=äêym1ѧGÏ­øägW|“׊o­øÖŠï?§øÎ¿ ÏÖÉ„<C389>íb*/§‡J/§3µGÏ<47> b+7¯ú[ee·Vpk·Vpÿ{÷Ú KC®.ƒ=* 3Øð=ÒP…ˆ*V"᪀Ua™WA‰"V‰€»\̫ɧJ Èä†2
˜VÆÑ*ãÅštß<TˆPEchTàÑb!ÌäÆäƒPšx1«ÆæÔ Žgv'O2ÑÜÙ¦AøÒ­šÓWhWªÈWhY:W¬Ò¶Ó'ÈÑÖ<C391>J!‰rÐwµ=fƒ8p­ÀQ*eÚ$ð,ŒSw~cK=QF!²BdI—û`tì Ïp`ès<C3A8>'ã‡<C3A3> ×¥#ÔîC êxö“ßólôôµ÷“†@(y.wpzÈýßáè endstream endobj 5 0 obj <</Intent 15 0 R/Name(Adv. Guides)/Type/OCG/Usage 16 0 R>> endobj 6 0 obj <</Intent 17 0 R/Name(Guides)/Type/OCG/Usage 18 0 R>> endobj 7 0 obj <</Intent 19 0 R/Name(Artwork)/Type/OCG/Usage 20 0 R>> endobj 26 0 obj <</Intent 33 0 R/Name(Adv. Guides)/Type/OCG/Usage 34 0 R>> endobj 40 0 obj <</Intent 47 0 R/Name(Adv. Guides)/Type/OCG/Usage 48 0 R>> endobj 54 0 obj <</Intent 62 0 R/Name(Adv. Guides)/Type/OCG/Usage 63 0 R>> endobj 55 0 obj <</Intent 64 0 R/Name(icon)/Type/OCG/Usage 65 0 R>> endobj 71 0 obj <</Intent 79 0 R/Name(Adv. Guides)/Type/OCG/Usage 80 0 R>> endobj 72 0 obj <</Intent 81 0 R/Name(Layer 2)/Type/OCG/Usage 82 0 R>> endobj 81 0 obj [/View/Design] endobj 82 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 79 0 obj [/View/Design] endobj 80 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 64 0 obj [/View/Design] endobj 65 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 62 0 obj [/View/Design] endobj 63 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 47 0 obj [/View/Design] endobj 48 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 33 0 obj [/View/Design] endobj 34 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 19 0 obj [/View/Design] endobj 20 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 17 0 obj [/View/Design] endobj 18 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 15 0 obj [/View/Design] endobj 16 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 21.0)/Subtype/Artwork>>>> endobj 90 0 obj [89 0 R 88 0 R] endobj 104 0 obj <</CreationDate(D:20170407123813+02'00')/Creator(Adobe Illustrator CC 2017 \(Macintosh\))/ModDate(D:20170414122915+02'00')/Producer(Adobe PDF library 11.00)/Title(icon-template-new-new)>> endobj xref 0 105 0000000004 65535 f
0000000016 00000 n
0000000281 00000 n
0000011243 00000 n
0000000008 00000 f
0000040540 00000 n
0000040614 00000 n
0000040683 00000 n
0000000010 00000 f
0000011294 00000 n
0000000011 00000 f
0000000012 00000 f
0000000013 00000 f
0000000014 00000 f
0000000021 00000 f
0000042120 00000 n
0000042151 00000 n
0000042004 00000 n
0000042035 00000 n
0000041888 00000 n
0000041919 00000 n
0000000022 00000 f
0000000023 00000 f
0000000024 00000 f
0000000025 00000 f
0000000027 00000 f
0000040753 00000 n
0000000028 00000 f
0000000029 00000 f
0000000030 00000 f
0000000031 00000 f
0000000032 00000 f
0000000035 00000 f
0000041772 00000 n
0000041803 00000 n
0000000036 00000 f
0000000037 00000 f
0000000038 00000 f
0000000039 00000 f
0000000041 00000 f
0000040828 00000 n
0000000042 00000 f
0000000043 00000 f
0000000044 00000 f
0000000045 00000 f
0000000046 00000 f
0000000049 00000 f
0000041656 00000 n
0000041687 00000 n
0000000050 00000 f
0000000051 00000 f
0000000052 00000 f
0000000053 00000 f
0000000056 00000 f
0000040903 00000 n
0000040978 00000 n
0000000057 00000 f
0000000058 00000 f
0000000059 00000 f
0000000060 00000 f
0000000061 00000 f
0000000066 00000 f
0000041540 00000 n
0000041571 00000 n
0000041424 00000 n
0000041455 00000 n
0000000067 00000 f
0000000068 00000 f
0000000069 00000 f
0000000070 00000 f
0000000000 00000 f
0000041046 00000 n
0000041121 00000 n
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000041308 00000 n
0000041339 00000 n
0000041192 00000 n
0000041223 00000 n
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000012417 00000 n
0000012492 00000 n
0000042236 00000 n
0000011595 00000 n
0000012792 00000 n
0000011697 00000 n
0000011856 00000 n
0000011904 00000 n
0000012676 00000 n
0000012707 00000 n
0000012560 00000 n
0000012591 00000 n
0000012867 00000 n
0000013045 00000 n
0000014318 00000 n
0000014435 00000 n
0000042268 00000 n
trailer <</Size 105/Root 1 0 R/Info 104 0 R/ID[<88192C8CAC8E4FBFB318ABABCCE34F6F><AD006BBCFFD24A45A3E519E89F2A37E9>]>> startxref 42473 %%EOF

View file

@ -0,0 +1,24 @@
}
if ( ! path ) {
return null;
}
const iconClass = [ 'dashicon', 'dashicons-' + icon, className ].filter( Boolean ).join( ' ' );
return (
<SVG
aria-hidden
role="img"
focusable="false"
className={ iconClass }
xmlns="http://www.w3.org/2000/svg"
width={ size }
height={ size }
viewBox="0 0 20 20"
>
<path d={ path } />
</SVG>
);
}
}

View file

@ -0,0 +1,28 @@
/* !!!
IF YOU ARE EDITING dashicon/index.jsx
THEN YOU ARE EDITING A FILE THAT GETS OUTPUT FROM THE DASHICONS REPO!
DO NOT EDIT THAT FILE! EDIT index-header.jsx and index-footer.jsx instead
OR if you're looking to change now SVGs get output, you'll need to edit strings in the Gruntfile :)
!!! */
/**
* WordPress dependencies
*/
import { Component } from '@wordpress/element';
import SVG from './svg';
import Path from './path';
export default class Dashicon extends Component {
shouldComponentUpdate( nextProps ) {
return (
this.props.icon !== nextProps.icon ||
this.props.size !== nextProps.size ||
this.props.className !== nextProps.className
);
}
render() {
const { icon, className, size = 20 } = this.props;
let path;
switch ( icon ) {

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M15 6v2c1.1 0 2 0.9 2 2v7c0 1.1-0.9 2-2 2h-10c-1.1 0-2-0.9-2-2v-7c0-1.1 0.9-2 2-2v-2c0-2.76 2.24-5 5-5s5 2.24 5 5zM8 6v2h4v-2c0-1.1-0.9-2-2-2s-2 0.9-2 2zM10.8 16.25v-2.17c0.7-0.31 1.2-1.010 1.2-1.83 0-1.1-0.9-2-2-2s-2 0.9-2 2c0 0.82 0.5 1.52 1.2 1.83v2.17h1.6z"></path>
</svg>

After

Width:  |  Height:  |  Size: 598 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M14.48 11.060l-7.070-7.070 1.5-1.5c0.5-0.56 2.3-0.47 3.51 0.32 1.21 0.8 1.43 1.28 2.91 2.1 1.18 0.64 2.45 1.26 4.45 0.85zM13.77 11.77l-7.070-7.070-1.77 1.77c-0.39 0.39-0.39 1.020 0 1.41l1.060 1.060c0.39 0.39 0.39 1.030 0 1.42-0.6 0.6-1.43 1.11-2.21 1.69-0.35 0.26-0.7 0.53-1.010 0.84-1.34 1.34-2.37 3.19-1.37 4.18 0.99 1 2.84-0.030 4.18-1.36 0.31-0.31 0.58-0.66 0.85-1.020 0.57-0.78 1.080-1.61 1.69-2.21 0.39-0.39 1.020-0.39 1.41 0l1.060 1.060c0.39 0.39 1.020 0.39 1.41 0z"></path>
</svg>

After

Width:  |  Height:  |  Size: 810 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M10 2.16c4.33 0 7.84 3.51 7.84 7.84s-3.51 7.84-7.84 7.84-7.84-3.51-7.84-7.84 3.55-7.84 7.84-7.84zM12 13.88v-7.76l-5.82 3.85z"></path>
</svg>

After

Width:  |  Height:  |  Size: 462 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M5 2h9c1.1 0 2 0.9 2 2v7c0 1.1-0.9 2-2 2h-2l-5 5v-5h-2c-1.1 0-2-0.9-2-2v-7c0-1.1 0.9-2 2-2z"></path>
</svg>

After

Width:  |  Height:  |  Size: 429 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M18.33 3.57c0 0 0.27-0.8-0.31-1.36-0.53-0.52-1.22-0.24-1.22-0.24-0.61 0.3-5.76 3.47-7.67 5.57-0.86 0.96-2.060 3.79-1.090 4.82 0.92 0.98 3.96-0.17 4.79-1 2.060-2.060 5.21-7.17 5.5-7.79zM1.4 17.65c2.37-1.56 1.46-3.41 3.23-4.64 0.93-0.65 2.22-0.62 3.080 0.29 0.63 0.67 0.8 2.57-0.16 3.46-1.57 1.45-4 1.55-6.15 0.89z"></path>
</svg>

After

Width:  |  Height:  |  Size: 650 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M18 12h-2.18c-0.17 0.7-0.44 1.35-0.81 1.93l1.54 1.54-2.1 2.1-1.54-1.54c-0.58 0.36-1.23 0.63-1.91 0.79v2.18h-3v-2.18c-0.68-0.16-1.33-0.43-1.91-0.79l-1.54 1.54-2.12-2.12 1.54-1.54c-0.36-0.58-0.63-1.23-0.79-1.91h-2.18v-2.97h2.17c0.16-0.7 0.44-1.35 0.8-1.94l-1.54-1.54 2.1-2.1 1.54 1.54c0.58-0.37 1.24-0.64 1.93-0.81v-2.18h3v2.18c0.68 0.16 1.33 0.43 1.91 0.79l1.54-1.54 2.12 2.12-1.54 1.54c0.36 0.59 0.64 1.24 0.8 1.94h2.17v2.97zM9.5 13.5c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z"></path>
</svg>

After

Width:  |  Height:  |  Size: 825 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M16 8.5l1.53 1.53-1.060 1.060-6.47-6.47-6.47 6.47-1.060-1.060 7.53-7.53 4 4v-2h2v4zM10 6.040l6 5.99v5.97h-12v-5.97zM12 17v-5h-4v5h4z"></path>
</svg>

After

Width:  |  Height:  |  Size: 470 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M17.74 2.76c1.68 1.69 1.68 4.41 0 6.1l-1.53 1.52c-1.12 1.12-2.7 1.47-4.14 1.090l2.62-2.61 0.76-0.77 0.76-0.76c0.84-0.84 0.84-2.2 0-3.040-0.84-0.85-2.2-0.85-3.040 0l-0.77 0.76-3.38 3.38c-0.37-1.44-0.020-3.020 1.1-4.14l1.52-1.53c1.69-1.68 4.42-1.68 6.1 0zM8.59 13.43l5.34-5.34c0.42-0.42 0.42-1.1 0-1.52-0.44-0.43-1.13-0.39-1.53 0l-5.33 5.34c-0.42 0.42-0.42 1.1 0 1.52 0.44 0.43 1.13 0.39 1.52 0zM7.83 15.72l4.14-4.15c0.38 1.44 0.030 3.020-1.090 4.14l-1.52 1.53c-1.69 1.68-4.41 1.68-6.1 0-1.68-1.68-1.68-4.42 0-6.1l1.53-1.52c1.12-1.12 2.7-1.47 4.14-1.1l-4.14 4.15c-0.85 0.84-0.85 2.2 0 3.050 0.84 0.84 2.2 0.84 3.040 0z"></path>
</svg>

After

Width:  |  Height:  |  Size: 954 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M13 11v-7c0-0.55-0.45-1-1-1h-1.67l-1.33-2h-4l-1.33 2h-1.67c-0.55 0-1 0.45-1 1v7c0 0.55 0.45 1 1 1h10c0.55 0 1-0.45 1-1zM7 4.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5zM14 6h5v10.5c0 1.38-1.12 2.5-2.5 2.5s-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5c0.17 0 0.34 0.020 0.5 0.050v-5.050h-3v-3zM10 14.050v-1.050h2v3.5c0 1.38-1.12 2.5-2.5 2.5s-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5c0.17 0 0.34 0.020 0.5 0.050z"></path>
</svg>

After

Width:  |  Height:  |  Size: 764 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M14.27 6.87l-4.27-3.73-4.27 3.73-0.73-0.73 5-4.38 5 4.38zM14 8.42l-4.050 3.43-3.95-3.47v-0.74l4-3.5 4 3.5v0.78zM11 9.7v-1.7h-2v1.7h2zM9.27 13.73l-4.27-3.73-4.27 3.73-0.73-0.73 5-4.38 5 4.38zM19.27 13.73l-4.27-3.73-4.27 3.73-0.73-0.73 5-4.38 5 4.38zM5 11l4 3.5v3.5h-8v-3.5zM15 11l4 3.5v3.5h-8v-3.5zM6 17v-2h-2v2h2zM16 17v-2h-2v2h2z"></path>
</svg>

After

Width:  |  Height:  |  Size: 668 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M16.95 2.58c1.96 1.95 1.96 5.12 0 7.070-1.51 1.51-3.75 1.84-5.59 1.010l-1.87 3.31-2.99 0.31-1.5 3.72h-3l-1-2 7.95-7.69c-0.92-1.87-0.62-4.18 0.93-5.73 1.95-1.96 5.12-1.96 7.070 0zM14.44 6.37c0.74 0 1.33-0.6 1.33-1.34 0-0.73-0.59-1.33-1.33-1.33-0.73 0-1.33 0.6-1.33 1.33 0 0.74 0.6 1.34 1.33 1.34z"></path>
</svg>

After

Width:  |  Height:  |  Size: 633 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M6 15v-13h10v13h-10zM5 16h8v2h-10v-13h2v11z"></path>
</svg>

After

Width:  |  Height:  |  Size: 381 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M13.11 4.36l-3.24 3.24-1.87-1.87 3.24-3.24c0.35-0.34 1.050-0.2 1.56 0.32 0.52 0.51 0.66 1.21 0.31 1.55zM5.11 6.13l0.91-1.12 9.010 9.010-1.19 0.84c-0.71 0.71-2.63 1.16-3.82 1.16h-3.88l-1.24 1.24c-0.59 0.59-1.54 0.59-2.12 0-0.59-0.58-0.59-1.53 0-2.12l1.24-1.24v-3.88c0-1.13 0.4-3.19 1.090-3.89zM12.37 10.1l3.24-3.24c0.34-0.35 1.040-0.21 1.55 0.31 0.52 0.51 0.66 1.21 0.31 1.55l-3.24 3.25z"></path>
</svg>

After

Width:  |  Height:  |  Size: 724 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M10.44 3.020l1.82-1.82 6.36 6.35-1.83 1.82c-1.050-0.68-2.48-0.57-3.41 0.36l-0.75 0.75c-0.92 0.93-1.040 2.35-0.35 3.41l-1.83 1.82-2.41-2.41-2.8 2.79c-0.42 0.42-3.38 2.71-3.8 2.29s1.86-3.39 2.28-3.81l2.79-2.79-2.41-2.42 1.83-1.82c1.050 0.69 2.48 0.57 3.4-0.36l0.75-0.75c0.93-0.92 1.050-2.35 0.36-3.41z"></path>
</svg>

After

Width:  |  Height:  |  Size: 637 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M18 16v-12c0-0.55-0.45-1-1-1h-13c-0.55 0-1 0.45-1 1v12c0 0.55 0.45 1 1 1h13c0.55 0 1-0.45 1-1zM8 11h1c0.55 0 1 0.45 1 1s-0.45 1-1 1h-1v1.5c0 0.28-0.22 0.5-0.5 0.5s-0.5-0.22-0.5-0.5v-1.5h-1c-0.55 0-1-0.45-1-1s0.45-1 1-1h1v-5.5c0-0.28 0.22-0.5 0.5-0.5s0.5 0.22 0.5 0.5v5.5zM13 9h-1c-0.55 0-1-0.45-1-1s0.45-1 1-1h1v-1.5c0-0.28 0.22-0.5 0.5-0.5s0.5 0.22 0.5 0.5v1.5h1c0.55 0 1 0.45 1 1s-0.45 1-1 1h-1v5.5c0 0.28-0.22 0.5-0.5 0.5s-0.5-0.22-0.5-0.5v-5.5z"></path>
</svg>

After

Width:  |  Height:  |  Size: 786 B

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M9,0 C4.02943725,2.22044605e-16 6.66133815e-16,4.02943725 0,9 C-6.66133815e-16,13.9705627 4.02943725,18 9,18 C13.9705627,18 18,13.9705627 18,9 C18,4.02943725 13.9705627,6.66133815e-16 9,0 Z M16.5,6.48 C16.2261471,7.37642337 15.5923462,8.11887585 14.75,8.53 C14.3000578,6.84078067 13.0922534,5.45568393 11.48,4.78 C11.6094706,4.33629614 11.8886263,3.95113191 12.27,3.69 C11.84,3.41 11.27,3.27 10.93,3.76 C10.4,4.45 10.93,5.37 11.14,5.76 L11.14,5.9 C10.5847716,5.56322584 10.1506329,5.05906478 9.9,4.46 C8.93374658,4.42896728 7.97797291,4.6679107 7.14,5.15 C7.05301227,4.58540171 7.10800024,4.00802805 7.3,3.47 C8.03333333,3.54 8.75333333,3.24 9.22,2.67 C9.68,2.15 9.09,1.49 8.63,1.09 L8.99,1.09 C10.3513888,1.08081732 11.6918198,1.42540112 12.88,2.09 C14.2401262,3.09522829 15.0741611,4.66042142 15.15,6.35 C15.39,6.35 15.85,5.8 16.06,5.43 C16.2318547,5.7689041 16.378907,6.11982437 16.5,6.48 L16.5,6.48 Z M9,16.84 C6.95,14.76 9.25,13.09 8,11.6 C7.08,10.75 5.71,11.34 4.89,10.37 C4.60799015,8.89673086 5.15714037,7.38752783 6.32,6.44 C6.84,6 10.32,5.44 11.74,6.66 C12.5705425,7.37534003 13.1548235,8.33398074 13.41,9.4 C13.8689041,9.43466968 14.327888,9.33383231 14.73,9.11 C15.14,12.09 11.58,15.85 9,16.84 Z M5.15,2.09 C5.93621436,1.79024548 6.82559895,2.06200188 7.31,2.75 C6.89040474,3.13038882 6.36924397,3.38054599 5.81,3.47 C5.83067957,3.17554711 5.89470269,2.88575828 6,2.61 L5.15,2.09 Z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M9,0 C4.02943725,2.22044605e-16 6.66133815e-16,4.02943725 0,9 C-6.66133815e-16,13.9705627 4.02943725,18 9,18 C13.9705627,18 18,13.9705627 18,9 C18,4.02943725 13.9705627,6.66133815e-16 9,0 Z M11.92,12.34 C11.92,12.69 12.06,12.97 12.28,13 C12.5,13.03 12.75,12.78 12.86,12.4 L13.06,12.48 C13.7780926,12.8638078 14.1286829,13.6985465 13.9,14.48 C13.7489426,15.1714395 13.156505,15.6780759 12.45,15.72 C11.96,14.51 10.34,15.78 8.89,15.5 C8.27804991,15.3459953 7.78084222,14.9011253 7.56,14.31 C8.75,14.2 10.41,12.58 11.92,12.34 Z M8,11.27 C8.91847918,11.2685337 9.69520764,10.5899632 9.82,9.68 C10.2585924,10.2213383 10.2286642,11.003748 9.75,11.51 C9.49509539,11.7331871 9.15595895,11.8349182 8.82029585,11.7888844 C8.48463275,11.7428506 8.18540615,11.5535725 8,11.27 Z M11,10.51 C11.41,10.9 14,10.45 14.52,11.6 C13.57,11.4 11.57,12.21 11.05,10.52 L11,10.51 Z M9.73,5.45 C9.73,5.54 9.73,5.63 9.73,5.72 C9.08,4.95 8.4,4.65 8.12,5.15 C7.84,5.65 9.12,6.26 8.88,7.03 C8.64,7.8 7.61,7.59 7,8.64 C6.39,9.69 6.51,11.06 8.24,12.31 C7.04759955,12.1778108 6.04860772,11.3479397 5.7,10.2 C5.3,9 5.61,7.94 4.92,7.74 C4,7.46 3,8.71 3,9.8 C1.74,8.54 3.05,6.94 1.8,5.62 C3.50107129,1.99793048 7.64428663,0.222880756 11.44,1.49 C10.3385198,2.51082161 9.71780255,3.94827216 9.73,5.45 L9.73,5.45 Z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M9,0 C4.02943725,2.22044605e-16 6.66133815e-16,4.02943725 0,9 C-6.66133815e-16,13.9705627 4.02943725,18 9,18 C13.9705627,18 18,13.9705627 18,9 C18,4.02943725 13.9705627,6.66133815e-16 9,0 Z M1.11,9.68 L3.62,9.68 C3.65933277,10.5901454 3.78659176,11.4943541 4,12.38 L1.84,12.38 C1.43720535,11.5308804 1.18995828,10.616405 1.11,9.68 L1.11,9.68 Z M9.68,4.28 L9.68,1.19 C10.6436821,1.55622437 11.4355545,2.26962301 11.9,3.19 C12.1052862,3.53679193 12.2857382,3.89769592 12.44,4.27 L9.68,4.28 Z M12.9,5.63 C13.1319638,6.51292717 13.2694028,7.41801345 13.31,8.33 L9.68,8.33 L9.68,5.63 L12.9,5.63 Z M8.32,1.19 L8.32,4.28 L5.56,4.28 C5.71426185,3.90769592 5.89471384,3.54679193 6.1,3.2 C6.56246862,2.27585284 7.35459109,1.55866088 8.32,1.19 L8.32,1.19 Z M8.32,5.63 L8.32,8.33 L4.7,8.33 C4.74059717,7.41801345 4.8780362,6.51292717 5.11,5.63 L8.32,5.63 Z M3.62,8.32 L1.11,8.32 C1.18995828,7.38359504 1.43720535,6.46911958 1.84,5.62 L4,5.62 C3.78659176,6.50564592 3.65933277,7.40985457 3.62,8.32 L3.62,8.32 Z M4.7,9.68 L8.32,9.68 L8.32,12.38 L5.11,12.38 C4.8780362,11.4970728 4.74059717,10.5919866 4.7,9.68 L4.7,9.68 Z M8.33,13.68 L8.33,16.77 C7.36631795,16.4037756 6.57444546,15.690377 6.11,14.77 C5.90471384,14.4232081 5.72426185,14.0623041 5.57,13.69 L8.33,13.68 Z M9.68,16.77 L9.68,13.73 L12.44,13.73 C12.2857382,14.1023041 12.1052862,14.4632081 11.9,14.81 C11.4355545,15.730377 10.6436821,16.4437756 9.68,16.81 L9.68,16.77 Z M9.68,12.33 L9.68,9.63 L13.3,9.63 C13.2594028,10.5419866 13.1219638,11.4470728 12.89,12.33 L9.68,12.33 Z M14.39,9.63 L16.9,9.63 C16.8200417,10.566405 16.5727946,11.4808804 16.17,12.33 L14,12.33 C14.2102491,11.4606837 14.3374867,10.573369 14.38,9.68 L14.39,9.63 Z M14.39,8.28 C14.3442064,7.38631004 14.2136199,6.498991 14,5.63 L16.16,5.63 C16.5627946,6.47911958 16.8100417,7.39359504 16.89,8.33 L14.39,8.28 Z M15.39,4.28 L13.6,4.28 C13.2761223,3.37030005 12.8066804,2.51922545 12.21,1.76 C13.4543816,2.31857928 14.5352785,3.18605067 15.35,4.28 L15.39,4.28 Z M5.79,1.76 C5.19331963,2.51922545 4.72387769,3.37030005 4.4,4.28 L2.65,4.28 C3.46472154,3.18605067 4.54561843,2.31857928 5.79,1.76 L5.79,1.76 Z M2.64,13.76 L4.4,13.76 C4.72387769,14.6696999 5.19331963,15.5207745 5.79,16.28 C4.54217533,15.7130139 3.46094647,14.8349459 2.65,13.73 L2.64,13.76 Z M12.2,16.28 C12.7966804,15.5207745 13.2661223,14.6696999 13.59,13.76 L15.35,13.76 C14.530299,14.8392953 13.4498383,15.6926527 12.21,16.24 L12.2,16.28 Z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M9,0 C4.02943725,2.22044605e-16 6.66133815e-16,4.02943725 0,9 C-6.66133815e-16,13.9705627 4.02943725,18 9,18 C13.9705627,18 18,13.9705627 18,9 C18,4.02943725 13.9705627,6.66133815e-16 9,0 Z M12.46,11.95 C12.46,13.42 11.66,15.25 8.4,16.65 C8.7,12.48 5.88,12.96 5.2,11.65 C5.32585594,10.5486495 6.00438361,9.58740195 7,9.1 C5.44816932,8.83382651 4.00092548,8.14136534 2.82,7.1 C2.8697862,7.57063002 3.09899651,8.00398077 3.46,8.31 C2.67791156,8.01519945 2.00215848,7.49270996 1.52,6.81 C2.49711943,3.58500598 5.40348457,1.32806312 8.77,1.18 C7.93,2.56 7.27,5.31 8.77,6.75 C7.23,7 6.26,5 5.41,5.79 C4.28,6.85 5.74,8.3 8.83,8.87 C12.12,9.46 12.49,10.45 12.46,11.95 Z M13.8,7.95 C13.48,6.84 14.42,5.72 15.49,4.81 C16.8462909,6.76503346 17.1600342,9.26003943 16.33,11.49 C15.56,9.6 14.16,9.17 13.8,7.92 L13.8,7.95 Z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M16.68 9.77c-1.34 1.34-3.3 1.67-4.95 0.99l-5.41 6.52c-0.99 0.99-2.59 0.99-3.58 0s-0.99-2.59 0-3.57l6.52-5.42c-0.68-1.65-0.35-3.61 0.99-4.95 1.28-1.28 3.12-1.62 4.72-1.060l-2.89 2.89 2.82 2.82 2.86-2.87c0.53 1.58 0.18 3.39-1.080 4.65zM3.81 16.21c0.4 0.39 1.040 0.39 1.43 0 0.4-0.4 0.4-1.040 0-1.43-0.39-0.4-1.030-0.4-1.43 0-0.39 0.39-0.39 1.030 0 1.43z"></path>
</svg>

After

Width:  |  Height:  |  Size: 689 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M10 9.25c-2.27 0-2.73-3.44-2.73-3.44-0.27-1.79 0.55-3.81 2.7-3.81 2.16 0 2.98 2.020 2.71 3.81 0 0-0.41 3.44-2.68 3.44zM10 11.82l2.72-1.82c2.39 0 4.52 2.33 4.52 4.53v2.49s-3.65 1.13-7.24 1.13c-3.65 0-7.24-1.13-7.24-1.13v-2.49c0-2.25 1.94-4.48 4.47-4.48z"></path>
</svg>

After

Width:  |  Height:  |  Size: 590 B

9
sources/svg/airplane.svg Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M17.6,2.4c-0.8-0.8-2.1-0.1-2.7,0.5l-3.5,3.8l-2.4-1l0.6-0.6c0.2-0.2,0.2-0.5,0-0.7C9.5,4.2,9.2,4.3,9,4.4L8.1,5.3L6.3,4.5
L6.8,4C7,3.8,7,3.5,6.8,3.4c-0.2-0.2-0.5-0.2-0.7,0L5.3,4.2L4.8,4C4,3.6,3.1,3.7,2.5,4.4l5.8,5.8L6,12.6l-3.5-0.2L2,13.1l3.1,1.8
L6.9,18l0.7-0.5L7.4,14l2.5-2.3l5.8,5.8c0.6-0.6,0.8-1.6,0.4-2.3l-0.2-0.5l0.8-0.8c0.2-0.2,0.2-0.5,0-0.7c-0.2-0.2-0.5-0.2-0.7,0
l-0.5,0.5l-0.8-1.9l0.9-0.9c0.2-0.2,0.2-0.5,0-0.7c-0.2-0.2-0.5-0.2-0.6,0l-0.6,0.6l-1-2.4L17.2,5C17.8,4.5,18.4,3.1,17.6,2.4z"/>
</svg>

After

Width:  |  Height:  |  Size: 859 B

6
sources/svg/album.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M0 18h10v-0.26c1.52 0.4 3.17 0.35 4.76-0.24 4.14-1.52 6.27-6.12 4.75-10.26-1.43-3.89-5.58-6-9.51-4.98v-0.26h-10v16zM9 3v14h-8v-14h8zM14.45 11.22c-0.68 1.35-2.32 1.9-3.67 1.23-0.31-0.15-0.57-0.35-0.78-0.59v-3.73c0.8-0.86 2.11-1.13 3.22-0.58 1.35 0.68 1.9 2.32 1.23 3.67zM11.7 10.4c0.22 0.16 0.53 0.12 0.7-0.1 0.16-0.22 0.12-0.53-0.1-0.7s-0.53-0.12-0.7 0.1c-0.16 0.21-0.12 0.53 0.1 0.7zM14.71 14.070c-1.17 0.78-2.56 0.99-3.83 0.69-0.27-0.060-0.44-0.34-0.37-0.61s0.34-0.43 0.62-0.36l0.17 0.040c0.96 0.17 1.98-0.010 2.86-0.59 0.47-0.32 0.86-0.72 1.14-1.18 0.15-0.23 0.45-0.3 0.69-0.16 0.23 0.15 0.3 0.46 0.16 0.69-0.36 0.57-0.84 1.080-1.44 1.48zM15.76 15.64c-1.48 0.99-3.21 1.32-4.84 1.060-0.28-0.050-0.47-0.32-0.41-0.6 0.050-0.27 0.32-0.45 0.61-0.39l0.22 0.040c1.31 0.15 2.68-0.14 3.87-0.94 0.71-0.47 1.27-1.070 1.7-1.74 0.14-0.24 0.45-0.31 0.68-0.16 0.24 0.14 0.31 0.45 0.16 0.69-0.49 0.79-1.16 1.49-1.99 2.040z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M3 5h14v-2h-14v2zM15 13v-6h-10v6h10zM3 17h14v-2h-14v2z"></path>
</svg>

After

Width:  |  Height:  |  Size: 392 B

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<title>Align None</title>
<g>
<path d="M17,13V3H3v10H17z M5,17h10v-2H5V17z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 436 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M3 5h14v-2h-14v2zM12 13v-6h-9v6h9zM14 9h3v-2h-3v2zM14 13h3v-2h-3v2zM3 17h14v-2h-14v2z"></path>
</svg>

After

Width:  |  Height:  |  Size: 423 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M3 5h14v-2h-14v2zM13 13v-6h-10v6h10zM3 17h14v-2h-14v2z"></path>
</svg>

After

Width:  |  Height:  |  Size: 392 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M9,16V4H3v12H9z M11,9h6V7h-6V9z M11,13h6v-2h-6V13z"/>
</svg>

After

Width:  |  Height:  |  Size: 415 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M17,16V4h-6v12H17z M9,7H3v2h6V7z M9,11H3v2h6V11z"/>
</svg>

After

Width:  |  Height:  |  Size: 413 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M3 5h14v-2h-14v2zM3 9h3v-2h-3v2zM17 13v-6h-9v6h9zM3 13h3v-2h-3v2zM3 17h14v-2h-14v2z"></path>
</svg>

After

Width:  |  Height:  |  Size: 421 B

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<title>Align None</title>
<g>
<path d="M5,5h10V3H5V5z M17,13V7H3v6H17z M5,17h10v-2H5V17z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 450 B

16
sources/svg/amazon.svg Normal file
View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<style type="text/css">
.st0{fill-rule:evenodd;clip-rule:evenodd;}
</style>
<path class="st0" d="M16.2,14.9c-1.9,0.8-4,1.2-6.1,1.2c-2.8,0-5.5-0.7-7.9-2.1c-0.2-0.1-0.3,0.1-0.2,0.2c2.2,2,5,3,7.9,3
c2.3,0,4.6-0.7,6.5-2C16.8,15.1,16.5,14.7,16.2,14.9z M18,13.9c-0.9-0.4-2-0.3-2.8,0.3c-0.2,0.1-0.1,0.3,0,0.2
c0.6-0.1,1.8-0.2,2,0.1c0.2,0.3-0.2,1.5-0.5,2c-0.1,0.2,0.1,0.2,0.2,0.1C17.7,15.9,18.1,14.9,18,13.9z M9,12.6
c1.1,0.1,2.2-0.4,2.9-1.3c0.3,0.4,0.6,0.8,1,1.2c0.1,0.1,0.3,0.1,0.4,0l0,0c0.3-0.3,1-0.9,1.3-1.2c0.1-0.1,0.1-0.3,0-0.5
c-0.4-0.4-0.6-1-0.7-1.6V6.5c0-1.1,0.1-2.2-0.8-3c-0.7-0.6-1.7-0.9-2.6-0.9C8.9,2.7,7,3.3,6.7,5.3c0,0,0,0,0,0
c0,0.2,0.1,0.3,0.3,0.3l1.7,0.2c0.2,0,0.3-0.2,0.3-0.3c0.1-0.7,0.7-1.1,1.4-1c0.4,0,0.7,0.2,1,0.5c0.2,0.4,0.3,0.8,0.2,1.3v0.2
c-1.1,0-2.2,0.2-3.3,0.6C7.1,7.5,6.3,8.6,6.4,9.9c0,0.1,0,0.3,0,0.4C6.4,11.6,7.6,12.7,9,12.6z M11.5,7.8l0,0.4
c0.1,0.6,0,1.3-0.3,1.8c-0.2,0.5-0.7,0.8-1.2,0.8c-0.7,0-1.1-0.5-1.1-1.3C8.9,8.1,10.2,7.8,11.5,7.8z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M18 18v-16h-16v16h16zM16 5h-12v-1h12v1zM7 7v3h3c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3zM8 9v-2c1.1 0 2 0.9 2 2h-2zM16 8h-4v-1h4v1zM16 11h-4v-2h4v2zM16 13h-4v-1h4v1zM16 16h-12v-1h12v1z"></path>
</svg>

After

Width:  |  Height:  |  Size: 523 B

6
sources/svg/archive.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M19 4v2h-18v-2h18zM2 7h16v10h-16v-10zM13 10v-1h-6v1h6z"></path>
</svg>

After

Width:  |  Height:  |  Size: 392 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M9 2h2v12l4-4 2 1-7 7-7-7 2-1 4 4v-12z"></path>
</svg>

After

Width:  |  Height:  |  Size: 376 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M5 6l5 5 5-5 2 1-7 7-7-7z"></path>
</svg>

After

Width:  |  Height:  |  Size: 363 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M15 8l-4.030 6-3.97-6h8z"></path>
</svg>

After

Width:  |  Height:  |  Size: 362 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M18 9v2h-12l4 4-1 2-7-7 7-7 1 2-4 4h12z"></path>
</svg>

After

Width:  |  Height:  |  Size: 377 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M14 5l-5 5 5 5-1 2-7-7 7-7z"></path>
</svg>

After

Width:  |  Height:  |  Size: 365 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M13 14l-6-4.030 6-3.97v8z"></path>
</svg>

After

Width:  |  Height:  |  Size: 363 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M2 11v-2h12l-4-4 1-2 7 7-7 7-1-2 4-4h-12z"></path>
</svg>

After

Width:  |  Height:  |  Size: 379 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M6 15l5-5-5-5 1-2 7 7-7 7z"></path>
</svg>

After

Width:  |  Height:  |  Size: 364 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M8 6l6 4.030-6 3.97v-8z"></path>
</svg>

After

Width:  |  Height:  |  Size: 361 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M11 18h-2v-12l-4 4-2-1 7-7 7 7-2 1-4-4v12z"></path>
</svg>

After

Width:  |  Height:  |  Size: 380 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M15 14l-5-5-5 5-2-1 7-7 7 7z"></path>
</svg>

After

Width:  |  Height:  |  Size: 366 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M7 13l4.030-6 3.97 6h-8z"></path>
</svg>

After

Width:  |  Height:  |  Size: 362 B

6
sources/svg/arrow-up.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<polygon points="11,7 7,13 15,13 "/>
</svg>

After

Width:  |  Height:  |  Size: 389 B

6
sources/svg/art.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M8.55 3.060c1.010 0.34-1.95 2.010-0.1 3.13 1.040 0.63 3.31-2.22 4.45-2.86 0.97-0.54 2.67-0.65 3.53 1.23 1.090 2.38 0.14 8.57-3.79 11.060-3.97 2.5-8.97 1.23-10.7-2.66-2.010-4.53 3.12-11.090 6.61-9.9zM9.76 9.51c0.73 1.64 4.7-0.5 3.79-2.8-0.59-1.49-4.48 1.25-3.79 2.8z"></path>
</svg>

After

Width:  |  Height:  |  Size: 603 B

6
sources/svg/awards.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M4.46 5.16l0.54 2.3-0.54 2.29 2.010 1.24 1.23 2.010 2.3-0.54 2.3 0.54 1.23-2.010 2.010-1.24-0.54-2.29 0.54-2.3-2-1.24-1.24-2.010-2.3 0.55-2.29-0.54-1.25 2zM10.010 11.5c-2.22 0-4.010-1.79-4.010-4.010 0-2.2 1.79-3.99 4.010-3.99 2.2 0 3.99 1.79 3.99 3.99 0 2.22-1.79 4.010-3.99 4.010zM9.99 10.5c-1.66 0-2.99-1.34-2.99-3 0-1.65 1.33-3 2.99-3s3.010 1.35 3.010 3c0 1.66-1.35 3-3.010 3zM13.83 11.6l-1.28 2.24-2.080-0.47 2.53 5.83 1.4-2.2h2.5zM6.13 11.67l1.25 2.25 2.13-0.51-2.51 5.79-1.4-2.2h-2.5z"></path>
</svg>

After

Width:  |  Height:  |  Size: 828 B

6
sources/svg/backup.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M13.65 2.88c3.93 2.010 5.48 6.84 3.47 10.77s-6.83 5.48-10.77 3.47c-1.87-0.96-3.2-2.56-3.86-4.4l1.64-1.030c0.45 1.57 1.52 2.95 3.080 3.76 3.010 1.54 6.69 0.35 8.23-2.66 1.55-3.010 0.36-6.69-2.65-8.24-3.010-1.54-6.69-0.35-8.23 2.66l1.88 0.97-4.95 3.080-0.39-5.82 1.78 0.91c2.020-3.95 6.87-5.46 10.77-3.47zM9.29 10.71c-0.18-0.18-0.29-0.43-0.29-0.71 0-0.070 0.030-0.12 0.040-0.19h-0.010l0.97-4.81 0.97 4.81 3.030 3.19-4.5-2.12 0.020-0.020c-0.080-0.040-0.16-0.090-0.23-0.15z"></path>
</svg>

After

Width:  |  Height:  |  Size: 807 B

6
sources/svg/bank.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M10,2L3,6v1h14V6L10,2z M5,8l-0.2,7h2.5L7,8H5z M9,8l-0.2,7h2.5L11,8H9z M13,8l-0.2,7h2.5L15,8H13z M3,18h14v-2H3V18z"/>
</svg>

After

Width:  |  Height:  |  Size: 478 B

15
sources/svg/beer.svg Normal file
View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M13.8,9.3c-0.8-0.1-1.5-0.4-2-1c-0.5-0.6-0.9-1.3-1-2c-0.4-0.1-0.7-0.3-1-0.6C9.4,5.2,9.2,4.7,9.1,4.2L8.2,5.1L7.4,4.4
C6.8,3.7,5.7,3.7,5,4.4c0,0,0,0,0,0L2.5,6.9c-0.7,0.7-0.7,1.8,0,2.5l0.7,0.8l-0.6,0.6c-0.7,0.7-0.7,1.8,0,2.5l4.3,4.3
c0.7,0.7,1.8,0.7,2.4,0c0,0,0,0,0,0l6.4-6.5c-0.5-0.1-1-0.3-1.4-0.7C14.2,10,14,9.6,13.8,9.3z M3.6,7.6l2-2c0.3-0.3,0.8-0.3,1,0l0,0
l0.5,0.5L4.2,9.2L3.6,8.6C3.4,8.3,3.4,7.9,3.6,7.6z M4.2,12.3C4.2,12.3,4.2,12.3,4.2,12.3c-0.3-0.3-0.3-0.7,0-0.9L8.5,7
c0.3-0.3,0.7-0.3,0.9,0c0,0,0,0,0,0c0.3,0.3,0.3,0.7,0,0.9l-4.3,4.3C4.8,12.5,4.4,12.5,4.2,12.3z M6,14.1C6,14.1,6,14.1,6,14.1
c-0.3-0.3-0.3-0.7,0-0.9l4.3-4.3c0.3-0.3,0.7-0.3,0.9,0c0,0,0,0,0,0c0.3,0.3,0.3,0.7,0,0.9l-4.3,4.3C6.7,14.4,6.3,14.4,6,14.1z
M13.1,11.6L8.8,16c-0.3,0.3-0.7,0.3-0.9,0l0,0c-0.3-0.3-0.3-0.7,0-0.9l4.3-4.3c0.3-0.3,0.7-0.3,0.9,0l0,0
C13.3,10.9,13.3,11.4,13.1,11.6z M17.5,7.2C17.3,7,17,6.8,16.8,6.8c0.4-1,0.2-2.2-0.6-2.9h0c-0.8-0.8-1.9-1-2.9-0.6
C13.2,3,13,2.7,12.8,2.5c-0.7-0.7-1.8-0.7-2.4,0c-0.7,0.7-0.7,1.8,0,2.5c0.3,0.3,0.8,0.5,1.2,0.5c-0.1,0.8,0.2,1.6,0.8,2.2
c0.6,0.6,1.4,0.8,2.2,0.8c0,0.5,0.2,0.9,0.5,1.2c0,0,0,0,0,0c0.7,0.7,1.8,0.7,2.4,0C18.2,9,18.2,7.9,17.5,7.2z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

8
sources/svg/bell.svg Normal file
View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M10,18c1.1,0,2-0.9,2-2H8C8,17.1,8.9,18,10,18z M14,9.8V7.5c0-1.8-1.2-3.4-3-3.9c0.1-0.2,0.1-0.4,0.2-0.5
C11.1,2.5,10.6,2,10,2C9.4,2,8.9,2.5,8.9,3.1c0,0.2,0.1,0.4,0.2,0.5c-1.8,0.4-3,2-3,3.9v2.2c-0.1,1.2-0.9,2.3-2,2.8V15h12v-2.5
C14.9,12.1,14.1,11,14,9.8z"/>
</svg>

After

Width:  |  Height:  |  Size: 618 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M15,6V4h-3v2H8V4H5v2H4C3.4,6,3,6.4,3,7v8h14V7c0-0.6-0.4-1-1-1H15z"/>
</svg>

After

Width:  |  Height:  |  Size: 430 B

6
sources/svg/book-alt.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M5 17h13v2h-13c-1.66 0-3-1.34-3-3v-12c0-1.66 1.34-3 3-3h13v14h-13c-0.55 0-1 0.45-1 1s0.45 1 1 1zM7 13.5v-11c0-0.28-0.22-0.5-0.5-0.5s-0.5 0.22-0.5 0.5v11c0 0.28 0.22 0.5 0.5 0.5s0.5-0.22 0.5-0.5z"></path>
</svg>

After

Width:  |  Height:  |  Size: 532 B

6
sources/svg/book.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M16 3h2v16h-13c-1.66 0-3-1.34-3-3v-12c0-1.66 1.34-3 3-3h9v14h-9c-0.55 0-1 0.45-1 1s0.45 1 1 1h11v-14z"></path>
</svg>

After

Width:  |  Height:  |  Size: 439 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M8 1v7h2v-2c0-1.52 1.45-3 3-3v0.86c0.55-0.52 1.26-0.86 2-0.86v3h1c1.1 0 2 0.9 2 2s-0.9 2-2 2h-1v6c0 0.55-0.45 1-1 1s-1-0.45-1-1v-2.18c-0.31 0.11-0.65 0.18-1 0.18v2c0 0.55-0.45 1-1 1s-1-0.45-1-1v-2h-2v2c0 0.55-0.45 1-1 1s-1-0.45-1-1v-2c-0.35 0-0.69-0.070-1-0.18v2.18c0 0.55-0.45 1-1 1s-1-0.45-1-1v-4h-1v-1c0-1.66 1.34-3 3-3h2v-7h1zM13 8c0.55 0 1-0.45 1-1s-0.45-1-1-1-1 0.45-1 1 0.45 1 1 1z"></path>
</svg>

After

Width:  |  Height:  |  Size: 726 B

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M4.5,6.2C3.7,7.3,3.3,8.6,3.3,10c0,1,0.2,1.9,0.6,2.8l1-4.6C5.2,6.5,5.3,6.2,4.5,6.2z M8.5,12.6c0.3-1.3,0-2.3-1.1-2.3
c-0.8,0-1.6,0.6-1.8,1.5l-0.3,1.7c-0.3,1,0.3,1.5,1,1.5C7.5,15,8.2,13.9,8.5,12.6z M10,2c-4.4,0-8,3.6-8,8s3.6,8,8,8s8-3.6,8-8
S14.4,2,10,2z M10,17.5c-2.1,0-4-0.8-5.3-2.2c-0.3-0.4-0.7-0.8-1-1.2C3,12.9,2.5,11.5,2.5,10c0-4.1,3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5
S14.1,17.5,10,17.5z M13.8,12.6c0.3-1.3,0-2.3-1.1-2.3c-0.8,0-1.6,0.6-1.8,1.5l-0.4,1.7c-0.2,1.1,0.4,1.6,1.1,1.6
C12.7,15,13.5,13.9,13.8,12.6z M10,3.3c-2,0-3.9,0.9-5.1,2.3c0.6-0.1,1.4-0.2,1.8-0.3c0.2,0,0.2,0.1,0.2,0.2c0,0.2-1,4.8-1,4.8
C6.4,10,7.1,9.6,7.7,9.6c0.9,0,1.5,0.4,1.9,0.9l0.5-2.4c0.4-1.6,0.4-1.9-0.4-1.9c-0.4,0-0.4-0.5,0-0.6c0.6-0.1,1.8-0.2,2.3-0.3
c0.2,0,0.2,0.1,0.2,0.2l-1,4.8c0.5-0.4,1.2-0.7,1.9-0.7c1.7,0,2.5,1.3,2.1,3c-0.3,1.7-2,3-3.8,3c-1.3,0-2.1-0.7-2.3-1.4
c-0.7,0.8-1.7,1.3-2.8,1.4c1.1,0.7,2.4,1.1,3.7,1.1c3.7,0,6.7-3,6.7-6.7S13.7,3.3,10,3.3z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M10 0c5.52 0 10 4.48 10 10s-4.48 10-10 10-10-4.48-10-10 4.48-10 10-10zM10 0.5c-5.25 0-9.5 4.25-9.5 9.5s4.25 9.5 9.5 9.5 9.5-4.25 9.5-9.5-4.25-9.5-9.5-9.5zM10 1.5c4.7 0 8.5 3.8 8.5 8.5s-3.8 8.5-8.5 8.5-8.5-3.8-8.5-8.5 3.8-8.5 8.5-8.5zM11.8 3.21c-0.57 0-1.1 0.17-1.55 0.45 1.56 0.37 2.73 1.77 2.73 3.45 0 0.69-0.21 1.33-0.55 1.87 1.31-0.29 2.29-1.45 2.29-2.85 0-1.61-1.31-2.92-2.92-2.92zM9.42 4.21c-1.61 0-2.92 1.31-2.92 2.93 0 1.61 1.31 2.92 2.92 2.92 1.62 0 2.93-1.31 2.93-2.92 0-1.62-1.31-2.93-2.93-2.93zM13.67 9.22l-0.51 0.59c2.34 0.69 2.45 3.61 2.45 3.61h1.28c0-4.71-3.22-4.2-3.22-4.2zM11.57 10.020l-2.12 2.090-2.12-2.090c-4.21 0.22-3.44 4.98-3.44 4.98h11.080c0.47-4.98-3.4-4.98-3.4-4.98z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M9 3c0-0.67-0.47-1.43-1-2-0.5 0.5-1 1.38-1 2 0 0.48 0.45 1 1 1s1-0.47 1-1zM13 3c0-0.67-0.47-1.43-1-2-0.5 0.5-1 1.38-1 2 0 0.48 0.45 1 1 1s1-0.47 1-1zM9 9v-3.5c0-0.55-0.45-1-1-1-0.57 0-1 0.49-1 1v3.5c0 0.55 0.45 1 1 1 0.57 0 1-0.49 1-1zM13 9v-3.5c0-0.55-0.45-1-1-1-0.57 0-1 0.49-1 1v3.5c0 0.55 0.45 1 1 1 0.57 0 1-0.49 1-1zM17 10c0-1.48-1.41-2.77-3.5-3.46v2.46c0 0.83-0.67 1.5-1.5 1.5s-1.5-0.67-1.5-1.5v-2.99c-0.17 0-0.33-0.010-0.5-0.010s-0.33 0.010-0.5 0.010v2.99c0 0.83-0.67 1.5-1.5 1.5s-1.5-0.67-1.5-1.5v-2.46c-2.090 0.69-3.5 1.98-3.5 3.46 0 1.41 0.95 2.65 3.21 3.37 1.11 0.35 2.39 1.12 3.79 1.12s2.69-0.78 3.79-1.13c2.25-0.71 3.21-1.95 3.21-3.36zM10 15.43c1.43 0 2.74-0.79 3.88-1.11 1.9-0.53 2.49-1.34 3.12-2.32v3c0 2.21-3.13 4-7 4s-7-1.79-7-4v-3c0.64 0.99 1.32 1.8 3.15 2.33 1.13 0.33 2.44 1.1 3.85 1.1z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M13.5 7h-7c-0.83 0-1.5-0.67-1.5-1.5s0.67-1.5 1.5-1.5h1.59c-0.050-0.16-0.090-0.32-0.090-0.5 0-0.83 0.67-1.5 1.5-1.5h1c0.83 0 1.5 0.67 1.5 1.5 0 0.18-0.040 0.34-0.090 0.5h1.59c0.83 0 1.5 0.67 1.5 1.5s-0.67 1.5-1.5 1.5zM4 8h12c0.55 0 1 0.45 1 1s-0.45 1-1 1h-12c-0.55 0-1-0.45-1-1s0.45-1 1-1zM5 11h10c0.55 0 1 0.45 1 1s-0.45 1-1 1h-10c-0.55 0-1-0.45-1-1s0.45-1 1-1zM7 14h6c0.55 0 1 0.45 1 1s-0.45 1-1 1h-1.090c0.050 0.16 0.090 0.32 0.090 0.5 0 0.83-0.67 1.5-1.5 1.5h-1c-0.83 0-1.5-0.67-1.5-1.5 0-0.18 0.040-0.34 0.090-0.5h-1.090c-0.55 0-1-0.45-1-1s0.45-1 1-1z"></path>
</svg>

After

Width:  |  Height:  |  Size: 893 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M8.75 5.77c0-1.38-1.75-3.77-1.75-3.77s-1.75 2.39-1.75 3.77 0.65 1.73 1.75 1.73 1.75-0.35 1.75-1.73zM14.75 5.77c0-1.38-1.75-3.77-1.75-3.77s-1.75 2.39-1.75 3.77 0.65 1.73 1.75 1.73 1.75-0.35 1.75-1.73zM9 17v-8c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v8c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1zM15 17v-8c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v8c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1zM6 11l2-1v2l-2 1v-2zM12 11l2-1v2l-2 1v-2zM6 14l2-1v2l-2 1v-2zM12 14l2-1v2l-2 1v-2z"></path>
</svg>

After

Width:  |  Height:  |  Size: 798 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M15.45 6.25c1.83 0.94 1.98 3.18 0.7 4.98-0.8 1.12-2.33 1.88-3.46 1.78l-2.64 4.99h-1.050l-2.65-4.99c-1.13 0.16-2.73-0.63-3.55-1.79-1.28-1.8-1.13-4.040 0.71-4.97 0.48-0.24 0.96-0.33 1.43-0.31-0.010 0.4 0.010 0.8 0.070 1.21 0.26 1.69 1.41 3.53 2.86 4.37-0.19 0.55-0.49 0.99-0.88 1.25l2.010 3.81v-5.66c-1.36-0.37-2.74-2.16-3-3.92-0.4-2.65 1-5 3.5-5s3.9 2.35 3.5 5c-0.26 1.76-1.64 3.55-3 3.92v5.77l2.070-3.84c-0.44-0.23-0.77-0.71-0.99-1.3 1.48-0.83 2.65-2.69 2.91-4.4 0.060-0.41 0.080-0.82 0.070-1.22 0.46-0.010 0.92 0.080 1.39 0.32z"></path>
</svg>

After

Width:  |  Height:  |  Size: 866 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M10 2c3 0 8 5 8 5v11h-16v-11s5-5 8-5zM17 16.72l-3.73-2.92 3.73-2.8-0.43-0.37-2.26 1.3 0.24-4.31-8.77-0.52-0.46 4.54-1.99-0.95-0.33 0.31 3.73 2.8-3.44 2.85 0.4 0.43 6.31-4.080 6.53 4.15z"></path>
</svg>

After

Width:  |  Height:  |  Size: 523 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M17.54 10.29c1.17 1.17 1.17 3.080 0 4.25-1.18 1.17-3.080 1.17-4.25 0l-0.34-0.52c0 3.66-2 4.38-2.95 4.98-0.82-0.6-2.95-1.28-2.95-4.98l-0.34 0.52c-1.17 1.17-3.070 1.17-4.25 0-1.17-1.17-1.17-3.080 0-4.25 0 0 1.020-0.67 2.1-1.3-0.85-1.15-1.36-2.57-1.36-4.11 0-0.34 0.030-0.67 0.080-1 0.25 1.78 1.19 3.34 2.52 4.42 0.67-0.35 1.85-0.83 2.37-0.92h-0.17c-1.1 0-2-0.9-2-2s0.9-2 2-2v-0.5c0-0.28 0.22-0.5 0.5-0.5s0.5 0.22 0.5 0.5v0.5h2v-0.5c0-0.28 0.22-0.5 0.5-0.5s0.5 0.22 0.5 0.5v0.5c1.1 0 2 0.9 2 2s-0.9 2-2 2h-0.17c0.51 0.090 1.78 0.61 2.38 0.92 1.33-1.080 2.27-2.64 2.52-4.42 0.050 0.33 0.080 0.66 0.080 1 0 1.54-0.51 2.96-1.36 4.11 1.080 0.63 2.090 1.3 2.090 1.3zM8.5 6.38c0.5 0 1-0.45 1-1s-0.45-1-1-1-1 0.45-1 1 0.45 1 1 1zM11.5 4.38c-0.55 0-1 0.45-1 1s0.45 1 1 1 1-0.45 1-1-0.45-1-1-1zM9.2 10.11c-0.12 0.11-0.19 0.26-0.19 0.43 0.020 0.25 0.23 0.46 0.49 0.46h1c0.26 0 0.47-0.21 0.49-0.46 0-0.15-0.070-0.29-0.19-0.43-0.080-0.060-0.18-0.11-0.3-0.11h-1c-0.12 0-0.22 0.050-0.3 0.11zM12 12.5c0-0.12-0.060-0.28-0.19-0.38-0.090-0.070-0.19-0.12-0.31-0.12h-3c-0.12 0-0.22 0.050-0.31 0.12-0.11 0.1-0.19 0.25-0.19 0.38 0 0.28 0.22 0.5 0.5 0.5h3c0.28 0 0.5-0.22 0.5-0.5zM8.5 15h3c0.28 0 0.5-0.22 0.5-0.5s-0.22-0.5-0.5-0.5h-3c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5zM9.5 17h1c0.28 0 0.5-0.22 0.5-0.5s-0.22-0.5-0.5-0.5h-1c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M10.44 1.66c-0.59-0.58-1.54-0.58-2.12 0l-5.66 5.66c-0.58 0.58-0.58 1.53 0 2.12 0.6 0.6 1.56 0.56 2.12 0l5.66-5.66c0.58-0.58 0.59-1.53 0-2.12zM13.27 4.49c-0.59-0.59-1.54-0.59-2.12 0l-5.66 5.66c-0.59 0.58-0.59 1.53 0 2.12 0.6 0.6 1.56 0.55 2.12 0l5.66-5.66c0.58-0.58 0.58-1.53 0-2.12zM14.33 11.21l4.18 4.18c0.59 0.58 0.59 1.53 0 2.12s-1.54 0.59-2.12 0l-4.18-4.18-1.77 1.77c-0.59 0.58-1.54 0.58-2.12 0-0.59-0.59-0.59-1.54 0-2.13l5.66-5.65c0.58-0.59 1.53-0.59 2.12 0 0.58 0.58 0.58 1.53 0 2.12zM5 15c0-1.59-1.66-4-1.66-4s-1.34 2.78-1.34 4 0.6 2 1.34 2h0.32c0.74 0 1.34-0.41 1.34-2z"></path>
</svg>

After

Width:  |  Height:  |  Size: 915 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M10.98 6.78l4.52 8.22c-1 2-3.5 3-5.5 3s-4.5-1-5.5-3l4.5-8.18c-0.75-1.23-2.28-1.98-4.29-2.030l2.46-2.92c1.68 1.19 2.46 2.32 2.97 3.31 0.56-0.87 1.2-1.68 2.7-2.12l1.83 2.86c-1.42-0.34-2.64 0.080-3.69 0.86zM8.17 10.4l-0.93 1.69c0.49 0.11 1 0.16 1.54 0.16 1.35 0 2.58-0.36 3.55-0.95l-1.010-1.82c-0.87 0.53-1.96 0.86-3.15 0.92zM9.030 15.78c1.99 0 3.73-0.74 4.74-1.86l-0.98-1.76c-1 1.12-2.74 1.87-4.74 1.87-0.62 0-1.21-0.080-1.76-0.21l-0.63 1.15c0.94 0.5 2.1 0.81 3.37 0.81z"></path>
</svg>

After

Width:  |  Height:  |  Size: 806 B

6
sources/svg/building.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by IcoMoon.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
<path d="M3 20h14v-20h-14v20zM7 3h-2v-2h2v2zM11 3h-2v-2h2v2zM15 3h-2v-2h2v2zM7 6h-2v-2h2v2zM11 6h-2v-2h2v2zM15 6h-2v-2h2v2zM7 9h-2v-2h2v2zM11 9h-2v-2h2v2zM15 9h-2v-2h2v2zM7 12h-2v-2h2v2zM11 12h-2v-2h2v2zM15 12h-2v-2h2v2zM11 19h-6v-6h6v6zM15 15h-2v-2h2v2zM15 18h-2v-2h2v2z"></path>
</svg>

After

Width:  |  Height:  |  Size: 600 B

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M17,16.9v-2.5c0-0.7-0.1-1.4-0.5-2.1c-0.4-0.7-0.9-1.3-1.6-1.7C14.2,10.1,12.7,10,12,10l-1.6,1.7L11,13v3l-1,1.1L9,16v-3
l0.7-1.3L8,10c-0.8,0-2.3,0.1-3,0.6c-0.7,0.4-1.1,1-1.5,1.7S3,13.6,3,14.4v2.5c0,0,2.6,1.1,7,1.1S17,16.9,17,16.9z"/>
<path d="M10,2.1c-1.9,0-3,1.8-2.7,3.8c0.3,2,1.3,3.4,2.7,3.4s2.4-1.4,2.7-3.4C13,3.8,11.9,2.1,10,2.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 696 B

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M13.2,10L11,13l-1-1.4L9,13l-2.2-3C3,11,3,13,3,16.9c0,0,3,1.1,6.4,1.1h1.2c3.4-0.1,6.4-1.1,6.4-1.1C17,13,17,11,13.2,10z
M10,10.7L8.4,10l1.6,1.6l1.6-1.6L10,10.7z"/>
<path d="M10,2.1c-1.9,0-3,1.8-2.7,3.8c0.3,2,1.3,3.4,2.7,3.4s2.4-1.4,2.7-3.4C13,3.8,11.9,2.1,10,2.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 628 B

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<g>
<path d="M16,11c-0.9-0.8-2.2-0.9-3.4-1l1,2.1L10,15.8l-3.6-3.6l1-2.2c-1.2,0-2.5,0.2-3.4,1c-0.8,0.7-1,1.9-1,3.1C3,15,3,16,3,16.9
c0,0,3.4,1.2,7,1.1c3.6,0.1,7-1.1,7-1.1c0-0.9,0-1.9,0-2.8C17,13,16.8,11.8,16,11z"/>
<path d="M6.6,9.3c0.8,0,2-0.4,2.2-0.7C8,7.6,7.3,6.6,8,4.7c0,0,1.1,1.2,4.3,1.5c0,1-0.5,1.7-1.1,2.4c0.2,0.3,1.4,0.7,2.2,0.7
s1.4-0.2,1.4-0.5c0-0.3-1.3-1.3-1.6-2.2c-0.3-0.9-0.1-1.9-0.5-3.1C12.1,2.1,10.7,2,10,2C9.3,2,7.9,2.1,7.3,3.5
C6.9,4.7,7.1,5.7,6.8,6.6C6.5,7.5,5.2,8.5,5.2,8.8C5.2,9.1,5.8,9.3,6.6,9.3z"/>
<polygon points="10,11 7.7,10 10,15.8 12.3,10 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 937 B

9
sources/svg/button.svg Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<g>
<path d="M17,5H3C1.9,5,1,5.9,1,7v6c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7C19,5.9,18.1,5,17,5z M18,12c0,0.6-0.4,1-1,1H3
c-0.6,0-1-0.4-1-1V7c0-0.6,0.4-1,1-1h14c0.6,0,1,0.4,1,1V12z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 543 B

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
<path d="M15,2H5C4.4,2,4,2.4,4,3v14c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1V3C16,2.4,15.6,2,15,2z M6.5,16.8c-0.7,0-1.2-0.6-1.2-1.2
s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2S7.2,16.8,6.5,16.8z M6.5,13.2c-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2
S7.2,13.2,6.5,13.2z M6.5,9.8c-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2S7.2,9.8,6.5,9.8z M10,16.8
c-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2S10.7,16.8,10,16.8z M10,13.2c-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2
s1.2,0.6,1.2,1.2S10.7,13.2,10,13.2z M10,9.8c-0.7,0-1.2-0.6-1.2-1.2S9.3,7.2,10,7.2s1.2,0.6,1.2,1.2S10.7,9.8,10,9.8z M14.8,15.5
c0,0.7-0.6,1.2-1.2,1.2s-1.2-0.6-1.2-1.2V12c0-0.7,0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2V15.5z M13.5,9.8c-0.7,0-1.2-0.6-1.2-1.2
s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2S14.2,9.8,13.5,9.8z M15,6.4H5V3h10V6.4z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

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