Add files

This commit is contained in:
Gaëtan L. H.-F. 2023-05-13 16:55:36 +02:00
parent 9e4699ba54
commit a54552cde3
308 changed files with 361974 additions and 0 deletions

185
gui.js Normal file
View File

@ -0,0 +1,185 @@
var GUI =
(window["webpackJsonpGUI"] = window["webpackJsonpGUI"] || []).push([["gui"],{
/***/ "./node_modules/css-loader/index.js?!./node_modules/postcss-loader/src/index.js?!./src/playground/index.css":
/*!*****************************************************************************************************************!*\
!*** ./node_modules/css-loader??ref--5-1!./node_modules/postcss-loader/src??postcss!./src/playground/index.css ***!
\*****************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
exports = module.exports = __webpack_require__(/*! ../../node_modules/css-loader/lib/css-base.js */ "./node_modules/css-loader/lib/css-base.js")(false);
// imports
// module
exports.push([module.i, "html,\nbody,\n.index_app_3Qs6X {\n /* probably unecessary, transitional until layout is refactored */\n width: 100%; \n height: 100%;\n margin: 0;\n\n /* Setting min height/width makes the UI scroll below those sizes */\n min-width: 1024px;\n min-height: 640px; /* Min height to fit sprite/backdrop button */\n}\n\n/* @todo: move globally? Safe / side FX, for blocks particularly? */\n\n* { -webkit-box-sizing: border-box; box-sizing: border-box; }\n", ""]);
// exports
exports.locals = {
"app": "index_app_3Qs6X"
};
/***/ }),
/***/ "./src/playground/index.css":
/*!**********************************!*\
!*** ./src/playground/index.css ***!
\**********************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var content = __webpack_require__(/*! !../../node_modules/css-loader??ref--5-1!../../node_modules/postcss-loader/src??postcss!./index.css */ "./node_modules/css-loader/index.js?!./node_modules/postcss-loader/src/index.js?!./src/playground/index.css");
if(typeof content === 'string') content = [[module.i, content, '']];
var transform;
var insertInto;
var options = {"hmr":true}
options.transform = transform
options.insertInto = undefined;
var update = __webpack_require__(/*! ../../node_modules/style-loader/lib/addStyles.js */ "./node_modules/style-loader/lib/addStyles.js")(content, options);
if(content.locals) module.exports = content.locals;
if(false) {}
/***/ }),
/***/ "./src/playground/index.jsx":
/*!**********************************!*\
!*** ./src/playground/index.jsx ***!
\**********************************/
/*! no exports provided */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var es6_object_assign_auto__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! es6-object-assign/auto */ "./node_modules/es6-object-assign/auto.js");
/* harmony import */ var es6_object_assign_auto__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(es6_object_assign_auto__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var core_js_fn_array_includes__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/fn/array/includes */ "./node_modules/core-js/fn/array/includes.js");
/* harmony import */ var core_js_fn_array_includes__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_fn_array_includes__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var intl__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! intl */ "./node_modules/intl/index.js");
/* harmony import */ var intl__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(intl__WEBPACK_IMPORTED_MODULE_2__);
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react */ "./node_modules/react/index.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_3__);
/* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! react-dom */ "./node_modules/react-dom/index.js");
/* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(react_dom__WEBPACK_IMPORTED_MODULE_4__);
/* harmony import */ var _lib_analytics__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../lib/analytics */ "./src/lib/analytics.js");
/* harmony import */ var _lib_app_state_hoc_jsx__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../lib/app-state-hoc.jsx */ "./src/lib/app-state-hoc.jsx");
/* harmony import */ var _components_browser_modal_browser_modal_jsx__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../components/browser-modal/browser-modal.jsx */ "./src/components/browser-modal/browser-modal.jsx");
/* harmony import */ var _lib_supported_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../lib/supported-browser */ "./src/lib/supported-browser.js");
/* harmony import */ var _index_css__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./index.css */ "./src/playground/index.css");
/* harmony import */ var _index_css__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(_index_css__WEBPACK_IMPORTED_MODULE_9__);
// Polyfills
// For Safari 9
// Register "base" page view
_lib_analytics__WEBPACK_IMPORTED_MODULE_5__["default"].pageview('/');
var appTarget = document.createElement('div');
appTarget.className = _index_css__WEBPACK_IMPORTED_MODULE_9___default.a.app;
document.body.appendChild(appTarget);
if (Object(_lib_supported_browser__WEBPACK_IMPORTED_MODULE_8__["default"])()) {
// require needed here to avoid importing unsupported browser-crashing code
// at the top level
__webpack_require__(/*! ./render-gui.jsx */ "./src/playground/render-gui.jsx").default(appTarget);
} else {
_components_browser_modal_browser_modal_jsx__WEBPACK_IMPORTED_MODULE_7__["default"].setAppElement(appTarget);
var WrappedBrowserModalComponent = Object(_lib_app_state_hoc_jsx__WEBPACK_IMPORTED_MODULE_6__["default"])(_components_browser_modal_browser_modal_jsx__WEBPACK_IMPORTED_MODULE_7__["default"], true
/* localesOnly */
);
var handleBack = function handleBack() {}; // eslint-disable-next-line react/jsx-no-bind
react_dom__WEBPACK_IMPORTED_MODULE_4___default.a.render(react__WEBPACK_IMPORTED_MODULE_3___default.a.createElement(WrappedBrowserModalComponent, {
onBack: handleBack
}), appTarget);
}
/***/ }),
/***/ "./src/playground/render-gui.jsx":
/*!***************************************!*\
!*** ./src/playground/render-gui.jsx ***!
\***************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react-dom */ "./node_modules/react-dom/index.js");
/* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react_dom__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var redux__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! redux */ "./node_modules/redux/es/index.js");
/* harmony import */ var _lib_app_state_hoc_jsx__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../lib/app-state-hoc.jsx */ "./src/lib/app-state-hoc.jsx");
/* harmony import */ var _containers_gui_jsx__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../containers/gui.jsx */ "./src/containers/gui.jsx");
/* harmony import */ var _lib_hash_parser_hoc_jsx__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../lib/hash-parser-hoc.jsx */ "./src/lib/hash-parser-hoc.jsx");
/* harmony import */ var _lib_titled_hoc_jsx__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../lib/titled-hoc.jsx */ "./src/lib/titled-hoc.jsx");
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
/*
* Render the GUI playground. This is a separate function because importing anything
* that instantiates the VM causes unsupported browsers to crash
* {object} appTarget - the DOM element to render to
*/
/* harmony default export */ __webpack_exports__["default"] = (function (appTarget) {
_containers_gui_jsx__WEBPACK_IMPORTED_MODULE_4__["default"].setAppElement(appTarget); // note that redux's 'compose' function is just being used as a general utility to make
// the hierarchy of HOC constructor calls clearer here; it has nothing to do with redux's
// ability to compose reducers.
var WrappedGui = Object(redux__WEBPACK_IMPORTED_MODULE_2__["compose"])(_lib_app_state_hoc_jsx__WEBPACK_IMPORTED_MODULE_3__["default"], _lib_hash_parser_hoc_jsx__WEBPACK_IMPORTED_MODULE_5__["default"], _lib_titled_hoc_jsx__WEBPACK_IMPORTED_MODULE_6__["default"])(_containers_gui_jsx__WEBPACK_IMPORTED_MODULE_4__["default"]); // TODO a hack for testing the backpack, allow backpack host to be set by url param
var backpackHostMatches = window.location.href.match(/[?&]backpack_host=([^&]*)&?/);
var backpackHost = backpackHostMatches ? backpackHostMatches[1] : null;
if (false) {}
react_dom__WEBPACK_IMPORTED_MODULE_1___default.a.render(react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(WrappedGui, {
backpackVisible: true,
showComingSoon: true,
showPreviewInfo: true,
backpackHost: backpackHost
}), appTarget);
});
/***/ }),
/***/ 1:
/*!*******************************************!*\
!*** ./locale-data/complete.js (ignored) ***!
\*******************************************/
/*! no static exports found */
/***/ (function(module, exports) {
/* (ignored) */
/***/ })
},[["./src/playground/index.jsx","lib.min"]]]);
//# sourceMappingURL=gui.js.map

1
gui.js.map Normal file

File diff suppressed because one or more lines are too long

63
index.html Normal file
View File

@ -0,0 +1,63 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google" value="notranslate">
<link rel="shortcut icon" href="static/favicon.ico">
<title>Scratch for Marty V1</title>
</head>
<body>
<script type="text/javascript" src="lib.min.js"></script>
<script type="text/javascript" src="gui.js"></script>
</body>
<style>
.preview-modal_body_1YvSe.box_box_2jjDp h2 span {
visibility: hidden;
}
.preview-modal_body_1YvSe.box_box_2jjDp h2 span::after {
content: "Welcome to Scratch for Marty V1";
visibility: visible;
text-align: center !important;
display: flow-root;
margin-top: -24px;
}
.preview-modal_button-row_2oTub button.preview-modal_no-button_o09Wq {
display: none;
}
.preview-modal_button-row_2oTub button.preview-modal_view-project-button_4-I9L {
display: none;
}
.preview-modal_faq-link-text_2FkbK.box_box_2jjDp {
display: none;
}
.menu-bar_feedback-link_1BnAR {
display: none;
}
.menu-bar_coming-soon_3yU1L {
display: none;
}
.menu-bar_account-info-group_MeJZP {
display: none;
}
.menu-bar_menu-bar-item_oLDa-.menu-bar_hoverable_c6WFB.menu-bar_language-menu_2JEDx {
display: none;
}
.backpack_backpack-container_2_wGr {
display: none;
}
</style>
</html>

357722
lib.min.js vendored Normal file

File diff suppressed because one or more lines are too long

1
lib.min.js.map Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.3 (51167) - http://www.bohemiancoding.com/sketch -->
<title>fill</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="fill" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10.7000634,5.80137446 L9.29979614,5.80137446 L9.29979614,8.59994895 L7.89980891,8.59994895 L7.89980891,4.39998724 L6.49982167,4.39998724 L6.49982167,5.80137446 L5.09983443,5.80137446 L5.09983443,3 L9.29979614,3 L9.29979614,4.39998724 L10.7011834,4.39998724 L10.7011834,5.80123446 L12.1000506,5.80123446 L12.1000506,7.2012217 L10.7000634,7.2012217 L10.7000634,5.80137446 Z M5.10011443,8.60120894 L5.10011443,7.2012217 L6.50010167,7.2012217 L6.50010167,8.60120894 L5.10011443,8.60120894 Z M16.3000123,16.9997324 L16.3000123,10.0011962 L17.6999996,10.0011962 L17.6999996,16.9997324 L16.3000123,16.9997324 Z M12.1003306,7.20080171 L13.5003179,7.20080171 L13.5003179,8.60078894 L16.3002923,8.60078894 L16.3002923,10.0007762 L14.9003051,10.0007762 L14.9003051,11.3573638 L13.5003179,11.3573638 L13.5003179,12.758751 L12.1003306,12.758751 L12.1003306,14.1587383 L10.7003434,14.1587383 L10.7003434,15.5587255 L9.29895615,15.5587255 L9.29895615,16.9587128 L7.89896891,16.9587128 L7.89896891,15.5587255 L6.49898168,15.5587255 L6.49898168,14.1587383 L5.10039442,14.1587383 L5.10039442,12.758751 L3.70040719,12.758751 L3.70040719,11.3573638 L6.49898168,11.3573638 L6.49898168,11.3713637 L9.29895615,11.3713637 L9.29895615,10.0007762 L12.1003306,10.0007762 L12.1003306,7.20080171 Z M3.69998719,8.60064895 L5.09997443,8.60064895 L5.09997443,10.0006362 L3.69998719,10.0006362 L3.69998719,11.3572238 L2.29999995,11.3572238 L2.29999995,9.95723658 L3.69998719,9.95723658 L3.69998719,8.60064895 Z" id="Combined-Shape" fill="#575E75"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>swap</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="swap" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Swap-v2" transform="translate(2.000000, 2.000000)" fill="#4C97FF">
<path d="M3.69424597,2.00682151 L7.95663608,2.66498231 C8.44536222,2.73588913 8.7900887,3.24405473 8.7176525,3.79585529 C8.66179809,4.24129561 8.34150792,4.58764819 7.95663608,4.64128284 L3.69424597,5.30126176 L3.69424597,6.79666856 C3.69424597,7.22392764 3.23781067,7.42846657 2.97250219,7.13483958 L0.120436084,3.97403142 C-0.0401453614,3.78767373 -0.0401453614,3.48404706 0.120436084,3.30587093 L2.97250219,0.135972153 C3.23781067,-0.157654834 3.69424597,0.0559747078 3.69424597,0.474143173 L3.69424597,2.00682151 Z M12.305754,10.7340942 L12.305754,9.2014159 C12.305754,8.78324744 12.7621893,8.56961789 13.0274978,8.86324488 L15.8795639,12.0331437 C16.0401454,12.2113198 16.0401454,12.5149465 15.8795639,12.7013041 L13.0274978,15.8621123 C12.7621893,16.1557393 12.305754,15.9512004 12.305754,15.5239413 L12.305754,14.0285345 L8.04336392,13.3685556 C7.65849208,13.3149209 7.33820191,12.9685683 7.2823475,12.523128 C7.2099113,11.9713275 7.55463778,11.4631619 8.04336392,11.392255 L12.305754,10.7340942 Z" id="Swap-v1"></path>
<path d="M11.2727273,1.45454545 L13.4545455,1.45454545 C14.0567273,1.45454545 14.5454545,1.94327273 14.5454545,2.54545455 L14.5454545,4.72727273 C14.5454545,5.33054545 14.0567273,5.81818182 13.4545455,5.81818182 L11.2727273,5.81818182 C10.6705455,5.81818182 10.1818182,5.33054545 10.1818182,4.72727273 L10.1818182,2.54545455 C10.1818182,1.94327273 10.6705455,1.45454545 11.2727273,1.45454545" id="Fill-6" fill-opacity="0.5"></path>
<path d="M2.54545455,10.1818182 L4.72727273,10.1818182 C5.32945455,10.1818182 5.81818182,10.6705455 5.81818182,11.2727273 L5.81818182,13.4545455 C5.81818182,14.0578182 5.32945455,14.5454545 4.72727273,14.5454545 L2.54545455,14.5454545 C1.94327273,14.5454545 1.45454545,14.0578182 1.45454545,13.4545455 L1.45454545,11.2727273 C1.45454545,10.6705455 1.94327273,10.1818182 2.54545455,10.1818182" id="Fill-6-Copy" fill-opacity="0.5"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>line</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square">
<g id="line" stroke="#575E75" stroke-width="2">
<path d="M5,15 L15,5" id="Line"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 606 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.3 (51167) - http://www.bohemiancoding.com/sketch -->
<title>rectange</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="rectange" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect id="rectangle-icon" fill="#575E75" x="4" y="4" width="12" height="12"></rect>
</g>
</svg>

After

Width:  |  Height:  |  Size: 543 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>wedo2-block-icon</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 18.9025641 31.0588235 18.9025641 31.0588235 0.424182751 0 0.424182751"></polygon>
</defs>
<g id="wedo2-block-icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="WeDo" transform="translate(4.000000, 10.000000)">
<path d="M19.5128913,1.16923077 L18.7825384,1.16923077 C18.4644208,1.16923077 18.2065384,1.38281026 18.2065384,1.6478359 L18.2065384,2.72820513 L20.0888913,2.72820513 L20.0888913,1.6478359 C20.0888913,1.38281026 19.831009,1.16923077 19.5128913,1.16923077" id="Fill-1" fill="#7C87A5"></path>
<path d="M20.9099405,1.16923077 L20.1795875,1.16923077 C19.8614699,1.16923077 19.6035875,1.38281026 19.6035875,1.6478359 L19.6035875,2.72820513 L21.4859405,2.72820513 L21.4859405,1.6478359 C21.4859405,1.38281026 21.2280581,1.16923077 20.9099405,1.16923077 Z" id="Stroke-3"></path>
<path d="M5.54051765,1.16923077 L4.81204706,1.16923077 C4.49204706,1.16923077 4.23604706,1.38281026 4.23604706,1.6478359 L4.23604706,2.72820513 L6.1184,2.72820513 L6.1184,1.6478359 C6.1184,1.38281026 5.86051765,1.16923077 5.54051765,1.16923077" id="Fill-5" fill="#7C87A5"></path>
<path d="M6.93756678,1.16923077 L6.20909619,1.16923077 C5.88909619,1.16923077 5.63309619,1.38281026 5.63309619,1.6478359 L5.63309619,2.72820513 L7.51544913,2.72820513 L7.51544913,1.6478359 C7.51544913,1.38281026 7.25756678,1.16923077 6.93756678,1.16923077 Z" id="Stroke-7"></path>
<path d="M22.3051073,1.16923077 L21.5747543,1.16923077 C21.2566367,1.16923077 21.0006367,1.38281026 21.0006367,1.6478359 L21.0006367,2.72820513 L22.8829896,2.72820513 L22.8829896,1.6478359 C22.8829896,1.38281026 22.6232249,1.16923077 22.3051073,1.16923077" id="Fill-9" fill="#7C87A5"></path>
<path d="M23.7021564,1.16923077 L22.9718035,1.16923077 C22.6536858,1.16923077 22.3976858,1.38281026 22.3976858,1.6478359 L22.3976858,2.72820513 L24.2800388,2.72820513 L24.2800388,1.6478359 C24.2800388,1.38281026 24.020274,1.16923077 23.7021564,1.16923077 Z" id="Stroke-11"></path>
<path d="M25.1010879,1.16923077 L24.3707349,1.16923077 C24.0526173,1.16923077 23.7947349,1.38281026 23.7947349,1.6478359 L23.7947349,2.72820513 L25.6770879,2.72820513 L25.6770879,1.6478359 C25.6770879,1.38281026 25.4192055,1.16923077 25.1010879,1.16923077" id="Fill-13" fill="#7C87A5"></path>
<path d="M26.498137,1.16923077 L25.7677841,1.16923077 C25.4496664,1.16923077 25.1917841,1.38281026 25.1917841,1.6478359 L25.1917841,2.72820513 L27.074137,2.72820513 L27.074137,1.6478359 C27.074137,1.38281026 26.8162547,1.16923077 26.498137,1.16923077 Z" id="Stroke-15"></path>
<path d="M13.9246948,1.16923077 L13.1943419,1.16923077 C12.8762242,1.16923077 12.6183419,1.38281026 12.6183419,1.6478359 L12.6183419,2.72820513 L14.5006948,2.72820513 L14.5006948,1.6478359 C14.5006948,1.38281026 14.2428125,1.16923077 13.9246948,1.16923077" id="Fill-17" fill="#7C87A5"></path>
<path d="M15.3217439,1.16923077 L14.591391,1.16923077 C14.2732734,1.16923077 14.015391,1.38281026 14.015391,1.6478359 L14.015391,2.72820513 L15.8977439,2.72820513 L15.8977439,1.6478359 C15.8977439,1.38281026 15.6398616,1.16923077 15.3217439,1.16923077 Z" id="Stroke-19"></path>
<path d="M16.7169107,1.16923077 L15.9865578,1.16923077 C15.6684401,1.16923077 15.4124401,1.38281026 15.4124401,1.6478359 L15.4124401,2.72820513 L17.2947931,2.72820513 L17.2947931,1.6478359 C17.2947931,1.38281026 17.0350284,1.16923077 16.7169107,1.16923077" id="Fill-21" fill="#7C87A5"></path>
<path d="M18.1139599,1.16923077 L17.3836069,1.16923077 C17.0654893,1.16923077 16.8094893,1.38281026 16.8094893,1.6478359 L16.8094893,2.72820513 L18.6918422,2.72820513 L18.6918422,1.6478359 C18.6918422,1.38281026 18.4320775,1.16923077 18.1139599,1.16923077 Z" id="Stroke-23"></path>
<path d="M11.1287142,1.16923077 L10.4002436,1.16923077 C10.0802436,1.16923077 9.8242436,1.38281026 9.8242436,1.6478359 L9.8242436,2.72820513 L11.7065965,2.72820513 L11.7065965,1.6478359 C11.7065965,1.38281026 11.4487142,1.16923077 11.1287142,1.16923077" id="Fill-25" fill="#7C87A5"></path>
<path d="M12.5257633,1.16923077 L11.7972927,1.16923077 C11.4772927,1.16923077 11.2212927,1.38281026 11.2212927,1.6478359 L11.2212927,2.72820513 L13.1036457,2.72820513 L13.1036457,1.6478359 C13.1036457,1.38281026 12.8457633,1.16923077 12.5257633,1.16923077 Z" id="Stroke-27"></path>
<path d="M8.33461592,1.16923077 L7.60426298,1.16923077 C7.28614533,1.16923077 7.03014533,1.38281026 7.03014533,1.6478359 L7.03014533,2.72820513 L8.91249827,2.72820513 L8.91249827,1.6478359 C8.91249827,1.38281026 8.65273356,1.16923077 8.33461592,1.16923077" id="Fill-29" fill="#7C87A5"></path>
<path d="M9.73166505,1.16923077 L9.00131211,1.16923077 C8.68319446,1.16923077 8.42719446,1.38281026 8.42719446,1.6478359 L8.42719446,2.72820513 L10.3095474,2.72820513 L10.3095474,1.6478359 C10.3095474,1.38281026 10.0497827,1.16923077 9.73166505,1.16923077 Z" id="Stroke-31"></path>
<path d="M27.8933038,1.16923077 L27.1629509,1.16923077 C26.8448332,1.16923077 26.5888332,1.38281026 26.5888332,1.6478359 L26.5888332,2.72820513 L28.4711862,2.72820513 L28.4711862,1.6478359 C28.4711862,1.38281026 28.2114215,1.16923077 27.8933038,1.16923077" id="Fill-33" fill="#7C87A5"></path>
<path d="M29.2903529,1.16923077 L28.56,1.16923077 C28.2418824,1.16923077 27.9858824,1.38281026 27.9858824,1.6478359 L27.9858824,2.72820513 L29.8682353,2.72820513 L29.8682353,1.6478359 C29.8682353,1.38281026 29.6084706,1.16923077 29.2903529,1.16923077 Z" id="Stroke-35"></path>
<path d="M29.6470588,18.4065268 L11.7647059,18.4065268 L11.7647059,2.53333333 L29.6470588,2.53333333 C30.1665882,2.53333333 30.5882353,2.97778275 30.5882353,3.52540793 L30.5882353,17.4144522 C30.5882353,17.9620774 30.1665882,18.4065268 29.6470588,18.4065268" id="Fill-37" fill="#FFFFFF"></path>
<path d="M29.6470588,18.4065268 L11.7647059,18.4065268 L11.7647059,2.53333333 L29.6470588,2.53333333 C30.1665882,2.53333333 30.5882353,2.97778275 30.5882353,3.52540793 L30.5882353,17.4144522 C30.5882353,17.9620774 30.1665882,18.4065268 29.6470588,18.4065268 Z" id="Stroke-39" stroke="#7C87A5" stroke-width="0.892857143" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.7647059,18.4065268 L1.41176471,18.4065268 C0.892235294,18.4065268 0.470588235,17.9620774 0.470588235,17.4144522 L0.470588235,6.5016317 C0.470588235,4.311131 2.15717647,2.53333333 4.23529412,2.53333333 L19.2941176,2.53333333 L15.5294118,2.53333333 C13.4512941,2.53333333 11.7647059,4.311131 11.7647059,6.5016317 L11.7647059,18.4065268 Z" id="Fill-41" fill="#FFFFFF"></path>
<path d="M11.7647059,18.4065268 L1.41176471,18.4065268 C0.892235294,18.4065268 0.470588235,17.9620774 0.470588235,17.4144522 L0.470588235,6.5016317 C0.470588235,4.311131 2.15717647,2.53333333 4.23529412,2.53333333 L19.2941176,2.53333333 L15.5294118,2.53333333 C13.4512941,2.53333333 11.7647059,4.311131 11.7647059,6.5016317 L11.7647059,18.4065268 Z" id="Stroke-43" stroke="#7C87A5" stroke-width="0.892857143" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.94117647,2.53333333 L7.05882353,2.53333333 C5.50023529,2.53333333 4.23529412,3.86668159 4.23529412,5.50955711 L4.23529412,7.49569044 C4.23529412,8.04331562 4.65694118,8.48776503 5.17647059,8.48776503 L8,8.48776503 C8.51952941,8.48776503 8.94117647,8.04331562 8.94117647,7.49569044 L8.94117647,5.50955711 C8.94117647,3.86668159 10.2061176,2.53333333 11.7647059,2.53333333 L12.7058824,2.53333333 L8.94117647,2.53333333 Z" id="Fill-45" fill="#4C97FF"></path>
<path d="M8.94117647,2.53333333 L7.05882353,2.53333333 C5.50023529,2.53333333 4.23529412,3.86668159 4.23529412,5.50955711 L4.23529412,7.49569044 C4.23529412,8.04331562 4.65694118,8.48776503 5.17647059,8.48776503 L8,8.48776503 C8.51952941,8.48776503 8.94117647,8.04331562 8.94117647,7.49569044 L8.94117647,5.50955711 C8.94117647,3.86668159 10.2061176,2.53333333 11.7647059,2.53333333 L12.7058824,2.53333333 L8.94117647,2.53333333 Z" id="Stroke-47" stroke="#3D79CC" stroke-width="0.892857143" stroke-linecap="round" stroke-linejoin="round"></path>
<polyline id="Stroke-50" stroke="#7C87A5" stroke-width="0.892857143" stroke-linecap="round" stroke-linejoin="round" points="0.470588235 10.4738984 28.4310588 10.4738984 30.5882353 13.448138"></polyline>
<path d="M11.7647059,18.4065268 L1.41176471,18.4065268 C0.892235294,18.4065268 0.470588235,17.9620774 0.470588235,17.4144522 L0.470588235,6.5016317 C0.470588235,4.311131 2.15717647,2.53333333 4.23529412,2.53333333 L19.2941176,2.53333333 L15.5294118,2.53333333 C13.4512941,2.53333333 11.7647059,4.311131 11.7647059,6.5016317 L11.7647059,18.4065268 Z" id="Stroke-52" stroke="#7C87A5" stroke-width="0.892857143" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.3069176,8.96410256 L16.5765647,8.96410256 C16.2584471,8.96410256 16.0005647,9.17768205 16.0005647,9.44270769 L16.0005647,10.5230769 L17.8829176,10.5230769 L17.8829176,9.44270769 C17.8829176,9.17768205 17.6250353,8.96410256 17.3069176,8.96410256" id="Fill-54" fill="#7C87A5"></path>
<path d="M17.3069176,8.96410256 L16.5765647,8.96410256 C16.2584471,8.96410256 16.0005647,9.17768205 16.0005647,9.44270769 L16.0005647,10.5230769 L17.8829176,10.5230769 L17.8829176,9.44270769 C17.8829176,9.17768205 17.6250353,8.96410256 17.3069176,8.96410256 Z" id="Stroke-56"></path>
<path d="M20.1782588,8.96410256 L19.4497882,8.96410256 C19.1297882,8.96410256 18.8737882,9.17768205 18.8737882,9.44270769 L18.8737882,10.5230769 L20.7561412,10.5230769 L20.7561412,9.44270769 C20.7561412,9.17768205 20.4982588,8.96410256 20.1782588,8.96410256" id="Fill-58" fill="#7C87A5"></path>
<path d="M20.1782588,8.96410256 L19.4497882,8.96410256 C19.1297882,8.96410256 18.8737882,9.17768205 18.8737882,9.44270769 L18.8737882,10.5230769 L20.7561412,10.5230769 L20.7561412,9.44270769 C20.7561412,9.17768205 20.4982588,8.96410256 20.1782588,8.96410256 Z" id="Stroke-60"></path>
<path d="M23.0514824,8.96410256 L22.3211294,8.96410256 C22.0030118,8.96410256 21.7451294,9.17768205 21.7451294,9.44270769 L21.7451294,10.5230769 L23.6274824,10.5230769 L23.6274824,9.44270769 C23.6274824,9.17768205 23.3696,8.96410256 23.0514824,8.96410256" id="Fill-62" fill="#7C87A5"></path>
<path d="M23.0514824,8.96410256 L22.3211294,8.96410256 C22.0030118,8.96410256 21.7451294,9.17768205 21.7451294,9.44270769 L21.7451294,10.5230769 L23.6274824,10.5230769 L23.6274824,9.44270769 C23.6274824,9.17768205 23.3696,8.96410256 23.0514824,8.96410256 Z" id="Stroke-64"></path>
<path d="M25.9228235,8.96410256 L25.1943529,8.96410256 C24.8743529,8.96410256 24.6183529,9.17768205 24.6183529,9.44270769 L24.6183529,10.5230769 L26.5007059,10.5230769 L26.5007059,9.44270769 C26.5007059,9.17768205 26.2428235,8.96410256 25.9228235,8.96410256" id="Fill-66" fill="#7C87A5"></path>
<path d="M25.9228235,8.96410256 L25.1943529,8.96410256 C24.8743529,8.96410256 24.6183529,9.17768205 24.6183529,9.44270769 L24.6183529,10.5230769 L26.5007059,10.5230769 L26.5007059,9.44270769 C26.5007059,9.17768205 26.2428235,8.96410256 25.9228235,8.96410256 Z" id="Stroke-68"></path>
<path d="M29.6470588,18.4065268 L11.7647059,18.4065268 L11.7647059,10.4699301 L28.4310588,10.4699301 L30.5882353,13.448138 L30.5882353,17.4144522 C30.5882353,17.9620774 30.1665882,18.4065268 29.6470588,18.4065268" id="Fill-70" fill="#E6E7E8"></path>
<path d="M29.6470588,18.4065268 L11.7647059,18.4065268 L11.7647059,10.4699301 L28.4310588,10.4699301 L30.5882353,13.448138 L30.5882353,17.4144522 C30.5882353,17.9620774 30.1665882,18.4065268 29.6470588,18.4065268 Z" id="Stroke-72" stroke="#7C87A5" stroke-width="0.892857143" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.7647059,18.4065268 L1.41176471,18.4065268 C0.892235294,18.4065268 0.470588235,17.9620774 0.470588235,17.4144522 L0.470588235,10.4699301 L11.7647059,10.4699301 L11.7647059,18.4065268 Z" id="Fill-74" fill="#E6E7E8"></path>
<path d="M11.7647059,18.4065268 L1.41176471,18.4065268 C0.892235294,18.4065268 0.470588235,17.9620774 0.470588235,17.4144522 L0.470588235,10.4699301 L11.7647059,10.4699301 L11.7647059,18.4065268 Z" id="Stroke-76" stroke="#7C87A5" stroke-width="0.892857143" stroke-linecap="round" stroke-linejoin="round"></path>
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-79"></g>
<polygon id="Fill-78" fill="#E6E7E8" mask="url(#mask-2)" points="15.5294118 14.4382284 26.8235294 14.4382284 26.8235294 10.4699301 15.5294118 10.4699301"></polygon>
<polygon id="Stroke-80" stroke="#7C87A5" stroke-width="0.892857143" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)" points="15.5294118 14.4382284 26.8235294 14.4382284 26.8235294 10.4699301 15.5294118 10.4699301"></polygon>
<path d="M28.432,10.4738984 L30.5891765,7.68021632" id="Stroke-81" stroke="#7C87A5" stroke-width="0.892857143" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>bluetooth-white</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="bluetooth-white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10.0067929,12.1067505 L12.3957387,14.0016608 L10.0067929,15.9178959 L10.0067929,12.1067505 Z M10.0067929,4.08928413 L12.3854344,5.99452362 L10.0067929,7.87910469 L10.0067929,4.08928413 Z M8.88494896,1.00684787 C8.38336008,1.07015593 8.00841492,1.49998436 8.01240369,2.00678206 L8.01240369,7.96240477 L6.64126113,6.8795037 C6.43185026,6.70790553 6.16194292,6.62927025 5.89336518,6.66092428 C5.34557295,6.71856794 4.9480247,7.21003843 5.00552959,7.75915257 C5.03411584,8.03404284 5.17505267,8.28494269 5.39476788,8.45187606 L7.3476073,9.99292759 L5.39476788,11.5443083 C4.96165303,11.8895039 4.88952262,12.5212517 5.23388715,12.9550785 C5.57791929,13.3895718 6.20814627,13.461543 6.64126113,13.1166807 L8.01240369,12.0234504 L8.01240369,18.0000647 C8.01240369,18.5521777 8.45848208,18.9999989 9.00926589,18.9999989 C9.23596146,19.0003321 9.45600907,18.9230297 9.63284491,18.7810863 L14.6188179,14.7826823 C15.0519327,14.4418184 15.1270547,13.8130694 14.7870114,13.3789093 C14.7378164,13.3162677 14.6813087,13.2596236 14.6188179,13.21031 L10.5675486,10.0032568 L14.6188179,6.78587441 C15.0489412,6.44134526 15.1190772,5.81192984 14.7753774,5.38076861 C14.7291741,5.32279175 14.6766552,5.2701461 14.6188179,5.22383126 L9.63284491,1.22542729 C9.42343405,1.05416232 9.15352671,0.975193838 8.88494896,1.00684787 Z" id="Fill-1" fill="#FFFFFF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 57 49"><defs><style>.cls-1{opacity:0.3;}.cls-2{opacity:0.1;}.cls-3{fill:#ff6680;stroke-miterlimit:10;}.cls-3,.cls-4{stroke:#f35;}.cls-4{fill:#ff4d6a;stroke-linecap:round;stroke-linejoin:round;}</style></defs><title>R1_ C.Procedure Editble Inputs</title><g id="boolean_boolean_inputs" data-name="boolean + boolean inputs"><rect class="cls-3" x="0.5" y="0.5" width="56" height="48" rx="4" ry="4"/><path class="cls-4" d="M32.5,40.5h-8l-16-16h0l16-16h8l16,16h0Z"/></g></svg>

After

Width:  |  Height:  |  Size: 523 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.3 (51167) - http://www.bohemiancoding.com/sketch -->
<title>oval</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="oval" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<polygon id="Page-1" fill="#575E75" points="6.66666667 4 6.66666667 5.33333333 5.33333333 5.33333333 5.33333333 6.66666667 4 6.66666667 4 13.3333333 5.33333333 13.3333333 5.33333333 14.6666667 6.66666667 14.6666667 6.66666667 16 13.3333333 16 13.3333333 14.6666667 14.6666667 14.6666667 14.6666667 13.3333333 16 13.3333333 16 6.66666667 14.6666667 6.66666667 14.6666667 5.33333333 13.3333333 5.33333333 13.3333333 4"></polygon>
</g>
</svg>

After

Width:  |  Height:  |  Size: 879 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>Language</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="Language" stroke="#FFFFFF" stroke-width="1.25">
<g id="language" transform="translate(2.000000, 2.000000)">
<path d="M15.6352,8.11294118 C15.6352,12.2682353 12.2667294,15.6357647 8.11237647,15.6357647 C3.95708235,15.6357647 0.588611765,12.2682353 0.588611765,8.11294118 C0.588611765,3.95764706 3.95708235,0.589176471 8.11237647,0.589176471 C12.2667294,0.589176471 15.6352,3.95764706 15.6352,8.11294118 Z" id="Stroke-1"></path>
<path d="M11.9808,8.11661176 C11.9808,9.74955294 11.7153882,11.2601412 11.2542118,12.4921412 C10.5558588,14.3933176 9.40762353,15.6347294 8.11068235,15.6347294 C6.81374118,15.6347294 5.66927059,14.3933176 4.96715294,12.4921412 C4.51068235,11.2601412 4.24432941,9.74955294 4.24432941,8.11661176 C4.24432941,6.48272941 4.51068235,4.97308235 4.96715294,3.74108235 C5.66927059,1.82955294 6.81374118,0.588141176 8.11068235,0.588141176 C9.40762353,0.588141176 10.5558588,1.82955294 11.2542118,3.74108235 C11.7153882,4.97308235 11.9808,6.48272941 11.9808,8.11661176 Z" id="Stroke-3"></path>
<path d="M0.955011765,10.2811294 L15.2684235,10.2811294" id="Stroke-5"></path>
<path d="M0.955011765,5.94663529 L15.2684235,5.94663529" id="Stroke-7"></path>
<path d="M8.11218824,0.590023529 L8.11218824,15.6375529" id="Stroke-9"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="20px"
height="20px"
viewBox="0 0 20 20"
version="1.1"
id="svg11">
<metadata
id="metadata15">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>close</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title
id="title2">close</title>
<desc
id="desc4">Created with Sketch.</desc>
<defs
id="defs6" />
<g
id="close"
transform="matrix(0.59089262,-0.59089262,0.59089262,0.59089262,-1.8185447,9.9997188)"
style="opacity:1;vector-effect:none;fill:#4c97ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
<path
d="m 15.464935,15.467297 c -0.700529,0.710473 -1.846347,0.710473 -2.556821,0 L 9.998819,12.558002 7.0884188,15.467297 c -0.7060537,0.706054 -1.8507669,0.706054 -2.5568207,0 -0.3524745,-0.352474 -0.531474,-0.818757 -0.531474,-1.27841 0,-0.460758 0.1789995,-0.925936 0.531474,-1.278411 L 7.4408933,10.001181 4.5271783,7.0863611 C 4.173599,6.7327818 3.9945994,6.2676039 4.0001241,5.8024261 c 0,-0.4607582 0.1734749,-0.9204113 0.5270542,-1.2728858 0.7049489,-0.7060537 1.8496621,-0.7060537 2.5568208,0 l 2.9148199,2.913715 2.913715,-2.913715 c 0.706054,-0.7060537 1.851872,-0.7060537 2.557926,0 0.706053,0.7049489 0.706053,1.850767 0,2.5568208 l -2.915925,2.9148199 2.915925,2.913715 c 0.706053,0.706054 0.706053,1.840823 -0.0055,2.552401"
id="path8"
style="vector-effect:none;fill:#4c97ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><defs><style>.cls-1,.cls-2{fill:#4c97ff;}.cls-1{opacity:0.15;}.cls-3{fill:#fff;}</style></defs><title>01_Dial Elements</title><circle class="cls-1" cx="20" cy="20" r="20"/><circle class="cls-2" cx="20" cy="20" r="16"/><path class="cls-3" d="M20.53,12.44l5,5A.74.74,0,0,1,25,18.68H22.37L21,26.86a1.08,1.08,0,0,1-2.13,0l-1.34-8.18H15a.74.74,0,0,1-.52-1.26l5-5A.77.77,0,0,1,20.53,12.44Z"/></svg>

After

Width:  |  Height:  |  Size: 508 B

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.1 (57501) - http://www.bohemiancoding.com/sketch -->
<title>left-right-active</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="left-right-active" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Flip-Left-Right" transform="translate(2.000000, 4.000000)">
<path d="M4.66453333,2.41690667 L4.66453333,9.60624 C4.66453333,10.08224 4.08853333,10.3209067 3.7512,9.98357333 L0.156533333,6.38890667 C-0.0514666667,6.17957333 -0.0514666667,5.84090667 0.156533333,5.63290667 L3.7512,2.03824 C4.08853333,1.70090667 4.66453333,1.93957333 4.66453333,2.41690667" id="Fill-1" fill="#4D97FF" transform="translate(2.332533, 6.010929) scale(-1, 1) translate(-2.332533, -6.010929) "></path>
<path d="M7.87546667,11.7567733 C7.70213333,11.7567733 7.54213333,11.6901067 7.4088,11.5581067 C7.35546667,11.5047733 7.30213333,11.42344 7.26213333,11.34344 C7.2368,11.2647733 7.2088,11.18344 7.2088,11.0901067 C7.2088,11.0101067 7.2368,10.9167733 7.26213333,10.8381067 C7.30213333,10.7567733 7.35546667,10.6767733 7.4088,10.62344 C7.59546667,10.4381067 7.89013333,10.3701067 8.14213333,10.4767733 C8.22346667,10.5167733 8.29013333,10.5581067 8.35546667,10.62344 C8.4088,10.6767733 8.46213333,10.7567733 8.50346667,10.8381067 C8.5288,10.9167733 8.5568,11.0101067 8.5568,11.0901067 C8.5568,11.18344 8.5288,11.2647733 8.50346667,11.34344 C8.46213333,11.42344 8.42213333,11.5047733 8.35546667,11.5581067 C8.2368,11.6901067 8.06346667,11.7567733 7.87546667,11.7567733 Z M7.22306667,3.27757333 C7.22306667,2.90424 7.5164,2.61090667 7.88973333,2.61090667 C8.24973333,2.61090667 8.5564,2.90424 8.5564,3.27757333 C8.5564,3.63757333 8.24973333,3.94424 7.88973333,3.94424 C7.5164,3.94424 7.22306667,3.63757333 7.22306667,3.27757333 Z M7.22306667,5.87757333 C7.22306667,5.50424 7.5164,5.21090667 7.88973333,5.21090667 C8.24973333,5.21090667 8.5564,5.50424 8.5564,5.87757333 C8.5564,6.24957333 8.24973333,6.54424 7.88973333,6.54424 C7.5164,6.54424 7.22306667,6.24957333 7.22306667,5.87757333 Z M7.22306667,8.49090667 C7.22306667,8.11757333 7.5164,7.82424 7.88973333,7.82424 C8.24973333,7.82424 8.5564,8.11757333 8.5564,8.49090667 C8.5564,8.85090667 8.24973333,9.15757333 7.88973333,9.15757333 C7.5164,9.15757333 7.22306667,8.85090667 7.22306667,8.49090667 Z M7.87546667,1.33104 C7.79546667,1.33104 7.70213333,1.31770667 7.62346667,1.29104 C7.54213333,1.24970667 7.47546667,1.19637333 7.4088,1.14304 C7.35546667,1.07770667 7.30213333,0.997706667 7.26213333,0.916373333 C7.2368,0.837706667 7.2088,0.756373333 7.2088,0.664373333 C7.2088,0.58304 7.2368,0.49104 7.26213333,0.41104 C7.30213333,0.33104 7.35546667,0.249706667 7.4088,0.196373333 C7.59546667,0.01104 7.89013333,-0.0556266667 8.14213333,0.05104 C8.22346667,0.0897066667 8.29013333,0.13104 8.35546667,0.196373333 C8.47546667,0.317706667 8.5568,0.49104 8.5568,0.664373333 C8.5568,0.756373333 8.5288,0.837706667 8.50346667,0.916373333 C8.46213333,0.997706667 8.42213333,1.07770667 8.35546667,1.14304 C8.22346667,1.26437333 8.06346667,1.33104 7.87546667,1.33104 Z" id="Combined-Shape" fill-opacity="0.25" fill="#575E75"></path>
<path d="M11.102,9.60570667 L11.102,2.41637333 C11.102,1.93904 11.6793333,1.70037333 12.0166667,2.03770667 L15.61,5.63370667 C15.8193333,5.84170667 15.8193333,6.18037333 15.61,6.38970667 L12.0166667,9.98304 C11.6793333,10.3203733 11.102,10.0817067 11.102,9.60570667" id="Fill-3" fill="#4D97FF" transform="translate(13.434500, 6.010396) scale(-1, 1) translate(-13.434500, -6.010396) "></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>fill-solid-enabled</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="fill-solid-enabled" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-opacity="0.15">
<rect id="Solid" stroke="#000000" fill="#4C97FF" x="0.5" y="0.5" width="19" height="19" rx="4"></rect>
</g>
</svg>

After

Width:  |  Height:  |  Size: 604 B

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>robot</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="robot">
<g transform="translate(3.250000, 1.500000)">
<path d="M9.60527273,8.03587273 L3.906,8.03587273 C3.20345455,8.03587273 2.63327273,7.46696364 2.63327273,6.76314545 L2.63327273,4.63641818 C2.63327273,3.93387273 3.20345455,3.36369091 3.906,3.36369091 L9.60527273,3.36369091 C10.3090909,3.36369091 10.878,3.93387273 10.878,4.63641818 L10.878,6.76314545 C10.878,7.46696364 10.3090909,8.03587273 9.60527273,8.03587273" id="Fill-1" fill="#CF63CF"></path>
<path d="M9.11310909,13.0782909 L4.39892727,13.0782909 C3.77147273,13.0782909 3.26238182,12.5692 3.26238182,11.9404727 L3.26238182,11.0126545 C3.26238182,9.0832 4.82656364,7.51901818 6.75601818,7.51901818 C8.68547273,7.51901818 10.2496545,9.0832 10.2496545,11.0126545 L10.2496545,11.9404727 C10.2496545,12.5692 9.74056364,13.0782909 9.11310909,13.0782909" id="Fill-3" fill="#CF63CF"></path>
<path d="M7.777,15.5218 C7.777,16.0843455 7.32009091,16.5425273 6.75627273,16.5425273 C6.19245455,16.5425273 5.73554545,16.0843455 5.73554545,15.5218 C5.73554545,14.9579818 6.19245455,14.4998 6.75627273,14.4998 C7.32009091,14.4998 7.777,14.9579818 7.777,15.5218" id="Fill-5" fill="#CF63CF"></path>
<path d="M8.03052727,1.27450909 C8.03052727,1.9796 7.46034545,2.54978182 6.75652727,2.54978182 C6.05143636,2.54978182 5.48125455,1.9796 5.48125455,1.27450909 C5.48125455,0.570690909 6.05143636,0.000509090909 6.75652727,0.000509090909 C7.46034545,0.000509090909 8.03052727,0.570690909 8.03052727,1.27450909" id="Fill-8" fill="#CF63CF"></path>
<path d="M6.75652727,15.5218 L6.75652727,1.2698" id="Stroke-11" stroke="#CF63CF" stroke-width="0.75"></path>
<path d="M1.51161818,13.2809091 C1.51161818,10.3841818 3.8598,8.036 6.75652727,8.036 C9.65198182,8.036 12.0001636,10.3841818 12.0001636,13.2809091" id="Stroke-13" stroke="#CF63CF" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10.9663273,14.315 C10.9663273,13.7435455 11.4296,13.2815455 11.9997818,13.2815455 C12.5725091,13.2815455 13.0345091,13.7435455 13.0345091,14.315" id="Stroke-15" stroke="#CF63CF" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M0.477527273,14.315 C0.477527273,13.7435455 0.939527273,13.2815455 1.51098182,13.2815455 C2.08243636,13.2815455 2.54570909,13.7435455 2.54570909,14.315" id="Stroke-17" stroke="#CF63CF" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.75636364,6.40398182 L4.75490909,6.40398182 C4.36672727,6.40398182 4.05236364,6.08961818 4.05236364,5.70016364 C4.05236364,5.31198182 4.36672727,4.99634545 4.75490909,4.99634545 L8.75636364,4.99634545 C9.14581818,4.99634545 9.46145455,5.31198182 9.46145455,5.70016364 C9.46145455,6.08961818 9.14581818,6.40398182 8.75636364,6.40398182" id="Fill-19" fill="#FFFFFF"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>Extensions/Connection/Wifi</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M14.2588749,9.82321433 C14.7290964,10.2624212 14.7491059,10.9837611 14.3189032,11.4539826 C14.0998,11.6940957 13.7886534,11.824157 13.4785073,11.824157 C13.1983753,11.824157 12.9182434,11.7141051 12.6981397,11.5130104 C11.2274469,10.1433652 8.77729262,10.1233557 7.2855899,11.4539826 C6.80536367,11.8741805 6.08502433,11.8341617 5.65482166,11.3539354 C5.23462371,10.8837139 5.27564304,10.1533699 5.7548688,9.73317192 C6.91541551,8.70268647 8.40611777,8.13241782 9.9568483,8.13241782 C11.5576024,8.13241782 13.0883235,8.73270061 14.2588749,9.82321433 Z M12.0380287,14.4151776 C12.0380287,15.4766776 11.1676187,16.3460872 10.1071191,16.3460872 C9.03661479,16.3460872 8.16620475,15.4766776 8.16620475,14.4151776 C8.16620475,13.3446733 9.03661479,12.4752637 10.1071191,12.4752637 C11.1676187,12.4752637 12.0380287,13.3446733 12.0380287,14.4151776 Z M17.6500725,6.11146577 C18.101285,6.55067268 18.1212945,7.27201249 17.6800866,7.7322293 C17.4509787,7.97234241 17.1498368,8.08239426 16.8506959,8.08239426 C16.5595588,8.08239426 16.2704225,7.98234712 16.0493184,7.76124296 C14.4095459,6.18149877 12.2385232,5.30008354 9.95744858,5.30008354 C7.70638813,5.30008354 5.57538424,6.15148463 3.93461129,7.69221044 C3.47339402,8.12241311 2.74405043,8.10240368 2.3128473,7.64218688 C1.87263992,7.18197008 1.90365453,6.45162602 2.36387134,6.01041817 C4.42384176,4.0705043 7.1251143,3 9.95744858,3 C12.8378055,3 15.5690922,4.11052315 17.6500725,6.11146577 Z" id="path-1"></path>
</defs>
<g id="Extensions/Connection/Wifi" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="wifi" fill="#4C97FF" xlink:href="#path-1"></use>
<g id="Color/1_Blue" mask="url(#mask-2)" fill="#575E75">
<g id="Color/Gray">
<g id="Color">
<rect x="0" y="0" width="20" height="20"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51 (57462) - http://www.bohemiancoding.com/sketch -->
<title>fill-radial-enabled</title>
<desc>Created with Sketch.</desc>
<defs>
<radialGradient cx="50%" cy="50%" fx="50%" fy="50%" r="39.3896484%" id="radialGradient-1">
<stop stop-color="#4C97FF" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</radialGradient>
</defs>
<g id="fill-radial-enabled" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-opacity="0.15">
<rect id="Radial" stroke="#000000" fill="url(#radialGradient-1)" x="0.5" y="0.5" width="19" height="19" rx="4"></rect>
</g>
</svg>

After

Width:  |  Height:  |  Size: 870 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.2 (51160) - http://www.bohemiancoding.com/sketch -->
<title>Paint Editor V1</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Paint-Editor-V1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M16.1998226,6.58685277 C15.5417294,7.94213763 14.5662678,9.50539101 13.6457617,10.6638734 C12.8750097,11.639511 12.2567593,12.2117734 11.6659868,12.4909258 C11.5972923,12.5341944 11.5299717,12.5481521 11.4461644,12.5481521 C11.3912089,12.5481521 11.3362533,12.5341944 11.2675588,12.5048834 C11.1439087,12.4644063 11.0339976,12.366703 10.979042,12.2410844 C10.8141752,11.8628329 10.580614,11.5432035 10.2659932,11.2905705 C9.94862474,11.053291 9.59141344,10.871842 9.18062043,10.7741386 C9.05559648,10.7462234 8.93194641,10.6638734 8.86325193,10.5368591 C8.79455745,10.4251981 8.76845354,10.2856219 8.79455745,10.1474415 C8.9594242,9.50539101 9.38532999,8.75167956 10.1272304,7.81651905 C11.5849273,5.94480227 14.4975733,3.16863175 15.9113058,3.01370218 C16.2959949,2.9578717 16.5158172,3.08349028 16.6532062,3.19515123 C17.0117914,3.50221886 17.3690027,4.17358036 16.1998226,6.58685277 Z M10.2654437,13.9990466 C10.3478771,14.6969276 10.1692714,15.3808509 9.74199174,15.9251981 C9.37241543,16.412319 8.85033737,16.7486977 8.25956482,16.8882738 C8.23208703,16.9022315 8.19087034,16.9161891 8.16339255,16.9161891 L8.0246297,16.9301467 C7.76496455,16.9720196 7.51766442,16.9999348 7.2689904,16.9999348 C5.29196321,16.9999348 3.90296079,15.6586076 3.35477883,14.7806733 C3.14732149,14.4317328 2.83270076,13.7896823 3.10747869,13.3849114 C3.17617317,13.287208 3.36714383,13.0778437 3.77931072,13.1615894 C5.08450588,13.4407418 5.55162835,12.8545218 5.63543562,12.7428609 C6.51472499,11.5843784 8.14965365,11.3750141 9.27486926,12.2403866 C9.82579901,12.6730728 10.1816364,13.3011656 10.2654437,13.9990466 Z" id="Fill-4" fill="#4C97FF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1,14 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="6 6 24 24">
<defs>
<style>
.cls-4{fill:none;stroke:#575e75;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;}
</style>
</defs>
<title>zoom-out</title>
<g class="cls-3">
<circle class="cls-4" cx="18" cy="18" r="7"/>
<line class="cls-4" x1="23" y1="23" x2="26" y2="26"/>
<line class="cls-4" x1="16" y1="18" x2="20" y2="18"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 480 B

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>flip-horizontal</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="flip-horizontal">
<g transform="translate(2.000000, 3.000000)">
<circle id="Oval" fill="#575E75" opacity="0.5" cx="8" cy="0.75" r="1"></circle>
<circle id="Oval" fill="#575E75" opacity="0.5" cx="8" cy="13.25" r="1"></circle>
<circle id="Oval-Copy" fill="#575E75" opacity="0.5" cx="8" cy="3.875" r="1"></circle>
<circle id="Oval-Copy-2" fill="#575E75" opacity="0.5" cx="8" cy="7" r="1"></circle>
<circle id="Oval-Copy-3" fill="#575E75" opacity="0.5" cx="8" cy="10.125" r="1"></circle>
<path d="M16,3.08425423 L16,10.9157458 C16,11.4342626 15.2574491,11.6956996 14.8235798,11.3282353 L10.2019293,7.41103711 C9.93269025,7.18445835 9.93269025,6.81408922 10.2019293,6.58751046 L14.8235798,2.67176469 C15.2574491,2.30430042 16,2.56573745 16,3.08425423" id="Fill-11" fill="#4C97FF" opacity="0.5"></path>
<path d="M0,10.9157458 L0,3.08425423 C0,2.56573745 0.742550911,2.30430042 1.17470525,2.67176469 L5.79807074,6.58896289 C6.06730975,6.81554165 6.06730975,7.18591078 5.79807074,7.41248954 L1.17470525,11.3282353 C0.742550911,11.6956996 0,11.4342626 0,10.9157458" id="Fill-14" fill="#4C97FF"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.3 (51167) - http://www.bohemiancoding.com/sketch -->
<title>line</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="line" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M12,7.998 L12,6 L14,6 L14,8 L12.002,8 L12.002,10 L10,10 L10,7.998 L12,7.998 Z M8,12 L8,10 L10,10 L10,12 L8,12 Z M14,6 L14,4 L16,4 L16,6 L14,6 Z M4,16 L4,14 L6,14 L6,16 L4,16 Z M6,14 L6,12 L8,12 L8,14 L6,14 Z" id="Combined-Shape" fill="#575E75"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 712 B

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="18px" height="8px" viewBox="0 0 18 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>re-record</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop---1280x720" transform="translate(-446.000000, -454.000000)" fill="#4C97FF">
<g id="Step-4---Playing-Trim" transform="translate(0.000000, 42.000000)">
<g id="Re-record" transform="translate(434.000000, 400.000000)">
<path d="M23.6951773,18.0886272 L20.5085204,21.2806841 C20.2691162,21.5146883 19.9451104,21.6466907 19.6085044,21.6466907 C19.2730984,21.6466907 18.9490926,21.5146883 18.7084883,21.2806841 L15.5230315,18.0886272 C15.157025,17.7226207 15.049023,17.1766109 15.2470266,16.7026025 C15.4450301,16.228594 15.9010382,15.9225886 16.4170474,15.9225886 L17.5630679,15.9225886 C17.5330673,15.6465836 17.455066,15.3345781 17.3230636,15.0045722 C17.2816629,14.9085705 17.2390621,14.8125688 17.1910612,14.716567 C17.1250601,14.6085651 17.1316602,14.5785646 17.0410586,14.4465622 C16.897056,14.2305584 16.7650536,14.0685555 16.6084509,13.8825522 C16.2910452,13.5405461 15.9070383,13.2465408 15.4990311,13.030537 C15.0850237,12.8145331 14.653016,12.6825308 14.2690091,12.6105295 C13.8910024,12.5445283 13.5429962,12.5385282 13.3389925,12.5385282 C13.2369907,12.5325281 13.1049884,12.5565285 13.0389872,12.5625286 C12.9669859,12.5685287 12.9249852,12.5745288 12.9249852,12.5745288 C12.4989776,12.6165296 12.1149707,12.304524 12.07297,11.8785164 C12.0369693,11.51851 12.2469731,11.1945042 12.5649787,11.0745021 C12.5649787,11.0745021 12.6069795,11.0565018 12.6729807,11.0325013 C12.750982,11.0085009 12.8229833,10.9665001 12.9909863,10.9184993 C13.3269923,10.8164975 13.7529999,10.7084955 14.3110099,10.6544946 C14.8630197,10.6064937 15.5290316,10.6184939 16.2316441,10.7624965 C16.9330566,10.9124992 17.6710698,11.1945042 18.355082,11.6025115 C18.6790878,11.8125152 19.027094,12.0585196 19.2970988,12.2985239 C19.417101,12.3885255 19.6211046,12.5925292 19.7411067,12.7185314 C19.8791092,12.862534 20.0051114,13.0065365 20.1317137,13.1565392 C20.6171224,13.7565499 20.9771288,14.4045615 21.211133,14.992572 C21.3491354,15.328578 21.4451371,15.6465836 21.5171384,15.9225886 L22.8011613,15.9225886 C23.3171705,15.9225886 23.7731787,16.228594 23.9711822,16.7026025 C24.1691857,17.1766109 24.0611838,17.7226207 23.6951773,18.0886272" id="re-record" transform="translate(18.068963, 16.137926) scale(-1, 1) rotate(-45.000000) translate(-18.068963, -16.137926) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.2 (51160) - http://www.bohemiancoding.com/sketch -->
<title>Sounds V1</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Sounds-V1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M12.6307801,13.637142 C12.480284,13.637142 12.3255684,13.5975477 12.1849178,13.5141169 C11.7671856,13.2652385 11.6279416,12.7236452 11.8754866,12.303663 C12.346666,11.5004646 12.346666,10.5049512 11.8754866,9.70316691 C11.6279416,9.28177059 11.7671856,8.74017733 12.1849178,8.49129896 C12.6068695,8.24524876 13.1441547,8.38382876 13.3888867,8.80239692 C14.1863754,10.1599153 14.1863754,11.8455006 13.3888867,13.2030189 C13.225732,13.4830071 12.9317723,13.637142 12.6307801,13.637142 Z M15.2566363,15.0553244 C15.1061402,15.0553244 14.950018,15.0157301 14.810774,14.9322993 C14.3930418,14.683421 14.2537977,14.1418277 14.5013427,13.7218455 C15.4873032,12.0447447 15.4873032,9.96038836 14.5013427,8.28470164 C14.2537977,7.8647194 14.3930418,7.32171206 14.810774,7.07283369 C15.2299126,6.82819757 15.7671978,6.96536349 16.0147428,7.38393165 C17.3284191,9.61535244 17.3284191,12.3897806 16.0147428,14.6212014 C15.8501816,14.9011895 15.5576285,15.0553244 15.2566363,15.0553244 Z M10.3785286,6.67858774 L10.3785286,15.3200405 C10.3785286,16.3438356 9.17174676,16.8797725 8.41926624,16.1897007 L6.79475223,14.6978446 C6.21949142,14.1703921 5.46982391,13.8776773 4.69061978,13.8776773 L4.40650564,13.8776773 C3.63011453,13.8776773 3,13.2455828 3,12.4635956 L3,9.5505875 C3,8.77001445 3.63011453,8.13650589 4.40650564,8.13650589 L4.67514822,8.13650589 C5.45435235,8.13650589 6.20401986,7.84379099 6.77928066,7.31633855 L8.41926624,5.81034163 C9.17174676,5.1202698 10.3785286,5.65620673 10.3785286,6.67858774 Z" id="Combined-Shape" fill="#4C97FF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.2 (51160) - http://www.bohemiancoding.com/sketch -->
<title>Code V2</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Code-V2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M15,14.51 C15,14.786 14.776,15.01 14.5,15.01 L9.197,15.01 C9.064,15.01 8.937,15.062 8.844,15.156 L8.146,15.854 C8.053,15.947 7.926,16 7.793,16 L6.207,16 C6.074,16 5.947,15.947 5.854,15.854 L5.156,15.156 C5.062,15.062 4.936,15.01 4.803,15.01 L3.5,15.01 C3.224,15.01 3,14.786 3,14.51 L3,11.5 C3,11.224 3.224,11 3.5,11 L4.793,11 C4.926,11 5.053,11.053 5.146,11.146 L5.854,11.854 C5.947,11.947 6.074,12 6.207,12 L7.793,12 C7.926,12 8.053,11.947 8.146,11.854 L8.854,11.146 C8.947,11.053 9.074,11 9.207,11 L14.5,11 C14.776,11 15,11.224 15,11.5 L15,14.51 Z M17,9.51 C17,9.786 16.776,10.01 16.5,10.01 L9.197,10.01 C9.064,10.01 8.937,10.062 8.844,10.156 L8.146,10.854 C8.053,10.947 7.926,11 7.793,11 L6.207,11 C6.074,11 5.947,10.947 5.854,10.854 L5.156,10.156 C5.062,10.062 4.936,10.01 4.803,10.01 L3.5,10.01 C3.224,10.01 3,9.786 3,9.51 L3,6.5 C3,6.224 3.224,6 3.5,6 L4.793,6 C4.926,6 5.053,6.053 5.146,6.146 L5.854,6.854 C5.947,6.947 6.074,7 6.207,7 L7.793,7 C7.926,7 8.053,6.947 8.146,6.854 L8.854,6.146 C8.947,6.053 9.074,6 9.207,6 L16.5,6 C16.776,6 17,6.224 17,6.5 L17,9.51 Z" id="Code" fill="#4C97FF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="52px" height="52px" viewBox="0 0 52 52" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>stop-playback</title>
<desc>Created with Sketch.</desc>
<defs>
<rect id="path-1" x="0" y="0" width="44" height="44" rx="4"></rect>
<filter x="-13.6%" y="-13.6%" width="127.3%" height="127.3%" filterUnits="objectBoundingBox" id="filter-2">
<feMorphology radius="2" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
<feOffset dx="0" dy="0" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.298039216 0 0 0 0 0.592156863 0 0 0 0 1 0 0 0 0.1 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop---1280x720" transform="translate(-619.000000, -345.000000)">
<g id="Step-4---Playing-Trim" transform="translate(0.000000, 42.000000)">
<g id="Play-/-Record-/-Stop" transform="translate(623.000000, 307.000000)">
<g id="stop-playback">
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
<use fill="#4C97FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<rect stroke="#4280D7" stroke-width="1" x="0.5" y="0.5" width="43" height="43" rx="4"></rect>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>General/Check</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M7.86144059,15.4028776 C7.43526859,15.4028776 7.00909658,15.2397336 6.68447338,14.9151104 L3.48818336,11.7188204 C2.83727221,11.0679093 2.83727221,10.0157971 3.48818336,9.364886 C4.1390945,8.71397485 5.19120664,8.71397485 5.84211778,9.364886 L7.86144059,11.3842088 L14.1591308,5.08818336 C14.8083772,4.43727221 15.862154,4.43727221 16.5130652,5.08818336 C17.1623116,5.73742977 17.1623116,6.79120664 16.5130652,7.44211778 L9.0384078,14.9151104 C8.7137846,15.2397336 8.28761259,15.4028776 7.86144059,15.4028776" id="path-1"></path>
</defs>
<g id="General/Check" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="Check" fill="#575E75" xlink:href="#path-1"></use>
<g id="Color/White" mask="url(#mask-2)" fill="#FFFFFF">
<rect id="Color" x="0" y="0" width="20" height="20"></rect>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 57 49"><defs><style>.cls-1{opacity:0.3;}.cls-2{opacity:0.1;}.cls-3{fill:#ff6680;stroke-miterlimit:10;}.cls-3,.cls-4{stroke:#f35;}.cls-4{fill:#ff4d6a;stroke-linecap:round;stroke-linejoin:round;}</style></defs><title>R1_ C.Procedure Editble Inputs</title><g id="boolean_boolean_inputs" data-name="boolean + boolean inputs"><rect class="cls-3" x="0.5" y="0.5" width="56" height="48" rx="4" ry="4"/><rect class="cls-4" x="8.5" y="8.5" width="40" height="32" rx="16" ry="16"/></g></svg>

After

Width:  |  Height:  |  Size: 534 B

View File

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.63 17.5"><defs><style>.cls-1,.cls-2{fill:#4cbf56;stroke:#45993d;stroke-linecap:round;stroke-linejoin:round;}.cls-2{stroke-width:1.5px;}</style></defs><title>icon--green-flag</title><path class="cls-1" d="M.75,2A6.44,6.44,0,0,1,8.44,2h0a6.44,6.44,0,0,0,7.69,0V12.4a6.44,6.44,0,0,1-7.69,0h0a6.44,6.44,0,0,0-7.69,0"/><line class="cls-2" x1="0.75" y1="16.75" x2="0.75" y2="0.75"/></svg>

After

Width:  |  Height:  |  Size: 471 B

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>See Community</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="See-Community" fill="#FFFFFF">
<path d="M11.1795886,5.69863689 C10.0344146,5.50396503 8.8909358,5.87638076 8.11109855,6.59582023 L9.1028481,7.58526111 C9.48429024,7.97460483 9.2130425,8.63564275 8.66207052,8.63564275 L4.61878391,8.63564275 C4.27972423,8.63564275 4,8.35633095 4,8.0169248 L4,3.98044614 C4,3.42944014 4.66116637,3.15943873 5.05108499,3.53947206 L5.89873418,4.38587144 C6.67009494,3.78492788 7.56860307,3.35326419 8.50949367,3.15012834 C9.60296112,2.91398291 10.7379634,2.95630288 11.7814195,3.27793465 C13.8835895,3.91273418 15.5110759,5.6732449 15.977283,7.68767544 C16.0874774,8.17012309 15.7823237,8.66103473 15.2991637,8.77106665 C14.8499096,8.88109857 14.409132,8.62717876 14.2480787,8.21244306 L14.2480787,8.20397906 C13.7310127,6.85735764 12.4849684,5.89246235 11.1795886,5.69863689 Z M8.82041139,14.3015249 C9.96473779,14.4953503 11.1090642,14.123781 11.8889014,13.4043415 L10.8971519,12.4140542 C10.5157098,12.0247105 10.7861099,11.364519 11.3379295,11.364519 L15.3803684,11.364519 C15.7202758,11.364519 16,11.6438308 16,11.9823906 L16,16.0197156 C16,16.5698752 15.337986,16.840723 14.9480674,16.4598433 L14.1004182,15.6134439 C13.3290574,16.2143875 12.4313969,16.6460512 11.4896587,16.849187 C10.3961912,17.0861788 9.26118897,17.0438589 8.21858047,16.7222271 C6.11641049,16.0874276 4.48892405,14.3269169 4.022717,12.3124863 C3.9125226,11.8300387 4.21682866,11.339127 4.70083635,11.2290951 C5.15009042,11.1190632 5.59002034,11.372983 5.75192134,11.7877187 L5.75192134,11.7961827 C6.26813969,13.1419577 7.51503165,14.106853 8.82041139,14.3015249 Z" id="see-community" transform="translate(10.000000, 10.000000) rotate(90.000000) translate(-10.000000, -10.000000) "></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>surprise</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="surprise" fill="#FFFFFF">
<path d="M6.99375039,8.65327167 C7.80357478,8.43603525 8.43603525,7.80357478 8.65327167,6.99375039 L9.14824073,5.15274045 C9.38335104,4.28241985 10.6180239,4.28241985 10.8517593,5.15274045 L11.3481032,6.99375039 C11.5653397,7.80357478 12.1978001,8.43603525 13.0062496,8.65327167 L14.8472595,9.14824073 C15.7175802,9.38335104 15.7175802,10.6180239 14.8472595,10.8531342 L13.0062496,11.3481032 C12.1978001,11.5653397 11.5653397,12.1978001 11.3481032,13.0062496 L10.8517593,14.8472595 C10.6180239,15.7175802 9.38335104,15.7175802 9.14824073,14.8472595 L8.65327167,13.0062496 C8.43603525,12.1978001 7.80357478,11.5653397 6.99375039,11.3481032 L5.15274045,10.8531342 C4.28241985,10.6180239 4.28241985,9.38335104 5.15274045,9.14824073 L6.99375039,8.65327167 Z M3.9061823,14.5100817 C4.20079987,14.430095 4.4314281,14.2007999 4.51008165,13.9061823 L4.69005166,13.2369605 C4.77403766,12.9210132 5.22329612,12.9210132 5.30994834,13.2369605 L5.48858524,13.9061823 C5.5685719,14.2007999 5.79786702,14.430095 6.09248459,14.5100817 L6.76303949,14.6900517 C7.07898684,14.7740377 7.07898684,15.2232961 6.76303949,15.3099483 L6.09248459,15.4885852 C5.79786702,15.5685719 5.5685719,15.797867 5.48858524,16.0924846 L5.30994834,16.7617064 C5.22329612,17.0789868 4.77403766,17.0789868 4.69005166,16.7617064 L4.51008165,16.0924846 C4.4314281,15.797867 4.20079987,15.5685719 3.9061823,15.4885852 L3.23696051,15.3099483 C2.92101316,15.2232961 2.92101316,14.7740377 3.23696051,14.6900517 L3.9061823,14.5100817 Z M13.9064844,4.50925154 C14.2012002,4.42923821 14.4305718,4.2012002 14.5092515,3.90648441 L14.6906151,3.23703951 C14.7746291,2.92098683 15.2240373,2.92098683 15.3093849,3.23703951 L15.4894149,3.90648441 C15.5680947,4.2012002 15.7987998,4.42923821 16.0935156,4.50925154 L16.7629605,4.6906151 C17.0790132,4.7746291 17.0790132,5.22403734 16.7629605,5.3093849 L16.0935156,5.4894149 C15.7987998,5.56809468 15.5680947,5.7987998 15.4894149,6.09218203 L15.3093849,6.76162694 C15.2240373,7.07901317 14.7746291,7.07901317 14.6906151,6.76162694 L14.5092515,6.09218203 C14.4305718,5.7987998 14.2012002,5.56809468 13.9064844,5.4894149 L13.2370395,5.3093849 C12.9209868,5.22403734 12.9209868,4.7746291 13.2370395,4.6906151 L13.9064844,4.50925154 Z M5.75,5.75 C5.75,6.164 5.414,6.5 5,6.5 C4.586,6.5 4.25,6.164 4.25,5.75 C4.25,5.336 4.586,5 5,5 C5.414,5 5.75,5.336 5.75,5.75 Z M16,14.25 C16,14.9416667 15.44,15.5 14.75,15.5 C14.0583333,15.5 13.5,14.9416667 13.5,14.25 C13.5,13.56 14.0583333,13 14.75,13 C15.44,13 16,13.56 16,14.25 Z" id="surprise-icon"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.3 (51167) - http://www.bohemiancoding.com/sketch -->
<title>eraser</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="eraser" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9.30022904,14.1996946 L7.89984723,14.1996946 L7.89984723,12.7997327 L6.49988541,12.7997327 L6.49988541,11.3997709 L5.09992359,11.3997709 L5.09992359,9.99840913 L3.69996177,9.99840913 L3.69996177,8.59984728 L2.29999995,8.59984728 L2.29999995,7.19988546 L3.69996177,7.19988546 L3.69996177,5.79992364 L5.09992359,5.79992364 L5.09992359,4.39996182 L6.49988541,4.39996182 L6.49988541,3 L7.89984723,3 L7.89984723,4.39996182 L9.30120901,4.39996182 L9.30120901,5.79992364 L10.7011708,5.79992364 L10.7011708,7.19988546 L12.1011326,7.19988546 L12.1011326,8.59984728 L13.4996945,8.59984728 L13.4996945,9.99840913 L12.1011326,9.99840913 L12.1011326,11.3997709 L10.7011708,11.3997709 L10.7011708,12.7997327 L9.30120901,12.7997327 L9.30120901,14.1995546 L10.7001909,14.1995546 L10.7001909,15.5995164 L9.30022904,15.5995164 L9.30022904,14.1996946 Z M10.7001909,16.9994782 L10.7001909,15.5995164 L14.9000763,15.5995164 L14.9000763,16.9994782 L10.7001909,16.9994782 Z M14.9000763,15.5995164 L14.9000763,14.1995546 L16.3000381,14.1995546 L16.3000381,15.5995164 L14.9000763,15.5995164 Z M14.9000763,12.7995927 L14.9000763,11.3996309 L16.3000381,11.3996309 L16.3000381,12.7995927 L14.9000763,12.7995927 Z M16.3000381,14.1995546 L16.3000381,12.7995927 L17.7,12.7995927 L17.7,14.1995546 L16.3000381,14.1995546 Z M13.5001145,11.3996309 L13.5001145,9.99826914 L14.9000763,9.99826914 L14.9000763,11.3996309 L13.5001145,11.3996309 Z" id="Combined-Shape" fill="#575E75"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>ev3-block-icon</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="ev3-block-icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="ev3" transform="translate(5.500000, 3.500000)" fill-rule="nonzero">
<rect id="Rectangle-path" stroke="#7C87A5" fill="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" x="0.5" y="3.59" width="28" height="25.81" rx="1"></rect>
<rect id="Rectangle-path" stroke="#7C87A5" fill="#E6E7E8" stroke-linecap="round" stroke-linejoin="round" x="2.5" y="0.5" width="24" height="32" rx="1"></rect>
<rect id="Rectangle-path" stroke="#7C87A5" fill="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" x="2.5" y="14.5" width="24" height="13"></rect>
<path d="M14.5,10.5 L14.5,14.5" id="Shape" stroke="#7C87A5" fill="#E6E7E8" stroke-linecap="round" stroke-linejoin="round"></path>
<rect id="Rectangle-path" fill="#414757" x="4.5" y="2.5" width="20" height="10" rx="1"></rect>
<rect id="Rectangle-path" fill="#7C87A5" opacity="0.5" x="13.5" y="20.13" width="2" height="2" rx="0.5"></rect>
<path d="M9.06,20.13 L10.56,20.13 C10.8361424,20.13 11.06,20.3538576 11.06,20.63 L11.06,21.63 C11.06,21.9061424 10.8361424,22.13 10.56,22.13 L9.06,22.13 C8.50771525,22.13 8.06,21.6822847 8.06,21.13 C8.06,20.5777153 8.50771525,20.13 9.06,20.13 Z" id="Shape" fill="#7C87A5" opacity="0.5"></path>
<path d="M18.91,20.13 L20.42,20.13 C20.6961424,20.13 20.92,20.3538576 20.92,20.63 L20.92,21.63 C20.92,21.9061424 20.6961424,22.13 20.42,22.13 L18.92,22.13 C18.3677153,22.13 17.92,21.6822847 17.92,21.13 C17.9199726,20.581597 18.3616245,20.135484 18.91,20.13 Z" id="Shape" fill="#7C87A5" opacity="0.5" transform="translate(19.420000, 21.130000) rotate(-180.000000) translate(-19.420000, -21.130000) "></path>
<path d="M8.23,17.5 L5,17.5 C4.72385763,17.5 4.5,17.2761424 4.5,17 L4.5,14.5 L10.5,14.5 L8.65,17.28 C8.55466961,17.4179082 8.39765006,17.5001566 8.23,17.5 Z" id="Shape" fill="#7C87A5" opacity="0.5"></path>
<path d="M18.15,18.85 L17.65,19.35 C17.5523416,19.4440756 17.4980339,19.5744142 17.5,19.71 L17.5,20 C17.5,20.2761424 17.2761424,20.5 17,20.5 L16.5,20.5 C16.2238576,20.5 16,20.2761424 16,20 C16,19.7238576 15.7761424,19.5 15.5,19.5 L13.5,19.5 C13.2238576,19.5 13,19.7238576 13,20 C13,20.2761424 12.7761424,20.5 12.5,20.5 L12,20.5 C11.7238576,20.5 11.5,20.2761424 11.5,20 L11.5,19.71 C11.5019661,19.5744142 11.4476584,19.4440756 11.35,19.35 L10.85,18.85 C10.6582167,18.6521863 10.6582167,18.3378137 10.85,18.14 L12.36,16.65 C12.4502803,16.5528617 12.5773961,16.4983835 12.71,16.5 L16.29,16.5 C16.4226039,16.4983835 16.5497197,16.5528617 16.64,16.65 L18.15,18.14 C18.3417833,18.3378137 18.3417833,18.6521863 18.15,18.85 Z" id="Shape" fill="#7C87A5" opacity="0.5"></path>
<path d="M10.85,23.45 L11.35,22.95 C11.4476584,22.8559244 11.5019661,22.7255858 11.5,22.59 L11.5,22.3 C11.5,22.0238576 11.7238576,21.8 12,21.8 L12.5,21.8 C12.7761424,21.8 13,22.0238576 13,22.3 C13,22.5761424 13.2238576,22.8 13.5,22.8 L15.5,22.8 C15.7761424,22.8 16,22.5761424 16,22.3 C16,22.0238576 16.2238576,21.8 16.5,21.8 L17,21.8 C17.2761424,21.8 17.5,22.0238576 17.5,22.3 L17.5,22.59 C17.4980339,22.7255858 17.5523416,22.8559244 17.65,22.95 L18.15,23.45 C18.3405714,23.6444218 18.3405714,23.9555782 18.15,24.15 L16.64,25.65 C16.5497197,25.7471383 16.4226039,25.8016165 16.29,25.8 L12.71,25.8 C12.5773961,25.8016165 12.4502803,25.7471383 12.36,25.65 L10.85,24.15 C10.6594286,23.9555782 10.6594286,23.6444218 10.85,23.45 Z" id="Shape" fill="#7C87A5" opacity="0.5"></path>
<path d="M21.5,27.5 L26.5,27.5 L26.5,31.5 C26.5,32.0522847 26.0522847,32.5 25.5,32.5 L21.5,32.5 L21.5,27.5 Z" id="Shape" stroke="#CC4C23" fill="#F15A29" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>straight-point</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="straight-point" fill="#4C97FF">
<polyline id="Path-2" stroke="#4C97FF" stroke-width="0.75" fill-opacity="0.25" stroke-linecap="round" stroke-linejoin="round" points="2 15 10 7 18 15"></polyline>
<circle id="Oval-4" fill-opacity="0.25" cx="10" cy="7" r="3"></circle>
<circle id="Oval-4" cx="10" cy="7" r="2"></circle>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 852 B

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.2 (51160) - http://www.bohemiancoding.com/sketch -->
<title>Previous</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Previous" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10.1575922,16.994103 C9.84650021,16.994103 9.55614768,16.8751967 9.34045723,16.6608889 L4.99899559,12.3194272 C4.66301623,11.9627084 4.57314521,11.4621959 4.75980041,11.0321977 C4.94507298,10.6021994 5.35433178,10.3367342 5.82857425,10.3367342 L7.47528788,10.3367342 L8.31454496,4.29463633 C8.43483386,3.36965613 9.23952516,2.6658969 10.1866275,2.6658969 C10.2682027,2.6658969 10.3511606,2.67142742 10.4327358,2.68110584 C11.2872018,2.81522106 11.9467168,3.48164924 12.0504142,4.30154948 L12.9117934,10.3367342 L14.4866102,10.3367342 C14.9663832,10.3367342 15.3936162,10.618791 15.5747408,11.0543198 C15.7558655,11.4926138 15.6576987,11.9779173 15.3161888,12.3194272 L10.9747272,16.6608889 C10.7590367,16.8751967 10.4686842,16.994103 10.1575922,16.994103" id="Fill-1" fill="#FFFFFF" transform="translate(10.164103, 9.830000) rotate(-270.000000) translate(-10.164103, -9.830000) "></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>icon--softer</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="softer">
<g transform="translate(5.000000, 4.000000)">
<path d="M7.54011246,1.3873625 L7.54011246,10.8531125 C7.54011246,11.2457375 7.22294659,11.5629875 6.83155041,11.5629875 L5.50777655,11.5629875 C5.2018577,11.5629875 4.9296799,11.3661125 4.83408026,11.0736125 C4.29422346,9.4266125 2.75788098,8.3128625 1.02471572,8.3128625 L0.709799251,8.3128625 C0.319527773,8.3128625 0.0001125,7.9933625 0.0001125,7.6029875 L0.0001125,4.6374875 C0.0001125,4.2471125 0.319527773,3.9276125 0.709799251,3.9276125 L1.02471572,3.9276125 C2.75788098,3.9276125 4.29422346,2.8138625 4.83408026,1.1668625 C4.9296799,0.8743625 5.2018577,0.6774875 5.50777655,0.6774875 L6.83155041,0.6774875 C7.22294659,0.6774875 7.54011246,0.9947375 7.54011246,1.3873625" id="Fill-1" fill="#CF63CF"></path>
<path d="M9.25,4.8645125 C9.9385,5.5541375 9.9385,6.6858875 9.25,7.3755125" id="Stroke-3" stroke="#CF63CF" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>record</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="record" fill="#FFFFFF">
<path d="M15.9365006,11.148381 C15.0369707,13.3332285 13.0518011,14.8264697 10.771958,15.1093996 L10.771958,17.2140836 C10.771958,17.6557686 10.430757,18 9.99650116,18 C9.56224533,18 9.22104432,17.6557686 9.22104432,17.2140836 L9.22104432,15.1093996 C6.95671033,14.8264697 4.97309171,13.347375 4.05650172,11.1798177 C3.90141035,10.7868595 4.07356177,10.3153097 4.47524842,10.1581264 C4.86297684,9.98522477 5.32825095,10.1581264 5.48334232,10.5668029 C6.25879916,12.3901289 8.02684077,13.5847218 9.99650116,13.5847218 C11.9661616,13.5847218 13.7497123,12.3901289 14.50966,10.5337944 C14.6802605,10.1408362 15.1455346,9.95378812 15.533263,10.1266897 C15.9209915,10.2995913 16.1071011,10.7554228 15.9365006,11.148381 Z M7.28224711,8.64692982 L7.28224711,4.68640351 C7.28224711,3.19736842 8.47003548,2 9.91342388,2 C11.3718476,2 12.5446007,3.19736842 12.5446007,4.68640351 L12.5446007,8.64692982 C12.5446007,10.120614 11.3718476,11.3333333 9.91342388,11.3333333 C8.47003548,11.3333333 7.28224711,10.120614 7.28224711,8.64692982 Z" id="record-icon"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.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 14 14" style="enable-background:new 0 0 14 14;" xml:space="preserve">
<style type="text/css">
.st0{fill:#EC5959;stroke:#B84848;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<polygon class="st0" points="4.3,0.5 9.7,0.5 13.5,4.3 13.5,9.7 9.7,13.5 4.3,13.5 0.5,9.7 0.5,4.3 "/>
</svg>

After

Width:  |  Height:  |  Size: 586 B

View File

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="112" height="112" viewBox="0 0 112 112"><defs><style>.cls-1{opacity:0.25;}.cls-2{fill:#4c97ff;}.cls-3{fill:#3d79cc;}.cls-4{opacity:0.15;}.cls-5{fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;}</style></defs><title>dial-face</title><g class="cls-1"><circle class="cls-2" cx="56" cy="56" r="55.5"/><path class="cls-3" d="M56,1A55,55,0,1,1,1,56,55.06,55.06,0,0,1,56,1m0-1a56,56,0,1,0,56,56A56,56,0,0,0,56,0Z"/></g><g class="cls-4"><line class="cls-5" x1="56" y1="14.86" x2="56" y2="20.73"/><line class="cls-5" x1="56" y1="91.27" x2="56" y2="97.14"/><line class="cls-5" x1="45.35" y1="16.26" x2="46.87" y2="21.94"/><line class="cls-5" x1="65.13" y1="90.06" x2="66.65" y2="95.74"/><line class="cls-5" x1="35.43" y1="20.37" x2="38.37" y2="25.46"/><line class="cls-5" x1="73.63" y1="86.54" x2="76.57" y2="91.63"/><line class="cls-5" x1="26.91" y1="26.91" x2="31.06" y2="31.06"/><line class="cls-5" x1="80.94" y1="80.94" x2="85.09" y2="85.09"/><line class="cls-5" x1="20.37" y1="35.43" x2="25.46" y2="38.37"/><line class="cls-5" x1="86.54" y1="73.63" x2="91.63" y2="76.57"/><line class="cls-5" x1="16.26" y1="45.35" x2="21.94" y2="46.87"/><line class="cls-5" x1="90.06" y1="65.13" x2="95.74" y2="66.65"/><line class="cls-5" x1="14.86" y1="56" x2="20.73" y2="56"/><line class="cls-5" x1="91.27" y1="56" x2="97.14" y2="56"/><line class="cls-5" x1="16.26" y1="66.65" x2="21.94" y2="65.13"/><line class="cls-5" x1="90.06" y1="46.87" x2="95.74" y2="45.35"/><line class="cls-5" x1="20.37" y1="76.57" x2="25.46" y2="73.63"/><line class="cls-5" x1="86.54" y1="38.37" x2="91.63" y2="35.43"/><line class="cls-5" x1="26.91" y1="85.09" x2="31.06" y2="80.94"/><line class="cls-5" x1="80.94" y1="31.06" x2="85.09" y2="26.91"/><line class="cls-5" x1="35.43" y1="91.63" x2="38.37" y2="86.54"/><line class="cls-5" x1="73.63" y1="25.46" x2="76.57" y2="20.37"/><line class="cls-5" x1="45.35" y1="95.74" x2="46.87" y2="90.06"/><line class="cls-5" x1="65.13" y1="21.94" x2="66.65" y2="16.26"/></g><circle class="cls-2" cx="56" cy="56" r="2"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>copy v2</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="copy-v2">
<g id="copy" transform="translate(3.000000, 2.000000)">
<polyline id="Path-3" stroke-opacity="0.5" stroke="#575E75" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1,2" points="0.503173828 3 0.503173828 15.5 13 15.5"></polyline>
<path d="M2,1.00684547 C2,0.450780073 2.45303631,0 2.99703014,0 L10,0 L10,2.34995317 C10,3.26124887 10.7336617,4 11.6500468,4 L14,4 L14,13.0046024 C14,13.5543453 13.544239,14 12.9975267,14 L3.00247329,14 C2.44882258,14 2,13.5500512 2,12.9931545 L2,1.00684547 Z" id="Rectangle-4" fill="#4C97FF"></path>
<path d="M11,0 L14,3 L11.9989566,3 C11.4472481,3 11,2.55733967 11,2.00104344 L11,0 Z" id="Rectangle-5" fill="#4C97FF"></path>
<path d="M9.8115942,9.1884058 L8.6884058,9.1884058 L8.6884058,10.3115942 C8.6884058,10.6859903 8.38647343,11 8,11 C7.61352657,11 7.3115942,10.6859903 7.3115942,10.3115942 L7.3115942,9.1884058 L6.1884058,9.1884058 C5.81400966,9.1884058 5.5,8.88647343 5.5,8.5 C5.5,8.11352657 5.81400966,7.8115942 6.1884058,7.8115942 L7.3115942,7.8115942 L7.3115942,6.6884058 C7.3115942,6.31280193 7.61352657,6 8,6 C8.38647343,6 8.6884058,6.31280193 8.6884058,6.6884058 L8.6884058,7.8115942 L9.8115942,7.8115942 C10.1859903,7.8115942 10.5,8.11352657 10.5,8.5 C10.5,8.88647343 10.1859903,9.1884058 9.8115942,9.1884058 Z" id="Fill-1" stroke="#FFFFFF" stroke-width="0.25" fill="#FFFFFF"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>backdrop-library</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M16.8970588,3.98529412 L17.5588235,3.98529412 C17.9243061,3.98529412 18.2205882,4.28157627 18.2205882,4.64705882 C18.2205882,5.01254138 17.9243061,5.30882353 17.5588235,5.30882353 L16.8970588,5.30882353 L16.8970588,5.97058824 C16.8970588,6.33607079 16.6007767,6.63235294 16.2352941,6.63235294 C15.8698116,6.63235294 15.5735294,6.33607079 15.5735294,5.97058824 L15.5735294,5.30882353 L14.9117647,5.30882353 C14.5462822,5.30882353 14.25,5.01254138 14.25,4.64705882 C14.25,4.28157627 14.5462822,3.98529412 14.9117647,3.98529412 L15.5735294,3.98529412 L15.5735294,3.32352941 C15.5735294,2.95804686 15.8698116,2.66176471 16.2352941,2.66176471 C16.6007767,2.66176471 16.8970588,2.95804686 16.8970588,3.32352941 L16.8970588,3.98529412 Z" id="path-1"></path>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="backdrop-library">
<g id="backdrop-lib-icon" transform="translate(3.850000, 4.650000)" stroke="#FFFFFF" stroke-linecap="round" stroke-width="1.5">
<path d="M12.2943964,8.13062054 L9.83551715,5.59754978 C9.48424868,5.23568253 8.89880123,5.17537132 8.48898801,5.53723857 L5.44466128,8.00999813 C4.97630332,8.37186538 4.33231112,8.31155417 3.98104265,7.8290645 L3.68831893,7.46719725 C3.33705046,6.98470758 2.63451352,6.92439637 2.22470031,7.28626362 L0,9.15591109 L0,9.15591109 C4.82683843e-16,10.0078757 0.690653747,10.6985294 1.54261832,10.6985294 L10.3529412,10.6985294 C11.4575107,10.6985294 12.3529412,9.80309891 12.3529412,8.69852941 L12.3529412,8.13062054 L12.2943964,8.13062054 Z" id="Shape" fill="#FFFFFF" stroke-linejoin="round"></path>
<path d="M12.3529412,3.52941176 L12.3529412,8.82352941 C12.3529412,9.79814956 11.5628554,10.5882353 10.5882353,10.5882353 L1.76470588,10.5882353 C0.790085736,10.5882353 1.19356544e-16,9.79814956 0,8.82352941 L0,1.76470588 C-1.19356544e-16,0.790085736 0.790085736,4.61992691e-15 1.76470588,4.4408921e-15 L8.82352941,4.4408921e-15" id="Rectangle"></path>
</g>
<g id="Combined-Shape">
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-1"></use>
<path stroke="#FFFFFF" stroke-width="0.1" d="M16.9470588,3.93529412 L17.5588235,3.93529412 C17.9519203,3.93529412 18.2705882,4.25396203 18.2705882,4.64705882 C18.2705882,5.04015562 17.9519203,5.35882353 17.5588235,5.35882353 L16.9470588,5.30882353 L16.9470588,5.97058824 C16.9470588,6.36368503 16.6283909,6.68235294 16.2352941,6.68235294 C15.8421973,6.68235294 15.5235294,6.36368503 15.5235294,5.97058824 L15.5735294,5.35882353 L14.9117647,5.35882353 C14.5186679,5.35882353 14.2,5.04015562 14.2,4.64705882 C14.2,4.25396203 14.5186679,3.93529412 14.9117647,3.93529412 L15.5235294,3.98529412 L15.5235294,3.32352941 C15.5235294,2.93043262 15.8421973,2.61176471 16.2352941,2.61176471 C16.6283909,2.61176471 16.9470588,2.93043262 16.9470588,3.32352941 L16.9470588,3.93529412 Z"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>x-icon_V2</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="x-icon_V2" stroke="#575E75" stroke-width="2">
<path d="M3,8 L12,8" id="Stroke-1"></path>
<polyline id="Stroke-5" points="4 10 2 7.99943423 4 6"></polyline>
<polyline id="Stroke-5-Copy" transform="translate(13.000000, 8.000000) scale(-1, 1) translate(-13.000000, -8.000000) " points="14 10 12 7.99943423 14 6"></polyline>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 898 B

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="100px" height="100px" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>Artboard</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M63.1539006,65.6857098 C62.40142,65.6857098 61.6278419,65.4877384 60.9245891,65.0705843 C58.8359282,63.8261925 58.1397079,61.1182262 59.3774329,59.018315 C61.7333299,55.0023232 61.7333299,50.0247559 59.3774329,46.0158346 C58.1397079,43.9088529 58.8359282,41.2008866 60.9245891,39.9564948 C63.0343476,38.7262438 65.7207734,39.4191438 66.9444333,41.5119846 C70.9318768,48.2995764 70.9318768,56.7275028 66.9444333,63.5150946 C66.12866,64.9150354 64.6588616,65.6857098 63.1539006,65.6857098 Z M76.2831813,72.7766221 C75.5307008,72.7766221 74.7500901,72.5786507 74.0538698,72.1614966 C71.965209,70.9171048 71.2689887,68.2091385 72.5067136,66.1092273 C77.4365159,57.7237233 77.4365159,47.3019418 72.5067136,38.9235082 C71.2689887,36.823597 71.965209,34.1085603 74.0538698,32.8641685 C76.1495632,31.6409879 78.835989,32.3268175 80.073714,34.4196583 C86.6420953,45.5767622 86.6420953,59.4489029 80.073714,70.6060068 C79.2509082,72.0059476 77.7881423,72.7766221 76.2831813,72.7766221 Z M51.892643,30.8929387 L51.892643,74.1002025 C51.892643,79.219178 45.8587338,81.8988626 42.0963312,78.4485035 L33.9737611,70.9892229 C31.0974571,68.3519607 27.3491195,66.8883863 23.4530989,66.8883863 L22.0325282,66.8883863 C18.1505726,66.8883863 15,63.7279138 15,59.8179782 L15,45.2529375 C15,41.3500723 18.1505726,38.1825294 22.0325282,38.1825294 L23.3757411,38.1825294 C27.2717617,38.1825294 31.0200993,36.718955 33.8964033,34.0816927 L42.0963312,26.5517081 C45.8587338,23.101349 51.892643,25.7810337 51.892643,30.8929387 Z" id="path-1"></path>
</defs>
<g id="Artboard" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Editor-Tabs/Sounds" transform="translate(50.000000, 50.000000) scale(-1, 1) translate(-50.000000, -50.000000) ">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="sound" fill="#4C97FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<g id="Color/Gray" mask="url(#mask-2)" fill="#575E75" fill-rule="evenodd">
<rect id="Color" x="0" y="0" width="100" height="100"></rect>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>rectangle</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="rectangle" stroke="#575E75" stroke-width="1.5">
<rect id="rectangle-icon" x="5" y="5" width="10" height="10"></rect>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 670 B

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>group</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="group" stroke-width="0.75">
<g id="group-icon" transform="translate(2.000000, 2.000000)">
<rect id="Rectangle-2" stroke="#4C97FF" fill="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" x="0" y="0" width="3" height="3"></rect>
<rect id="Rectangle-2-Copy-2" stroke="#4C97FF" fill="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" x="13" y="0" width="3" height="3"></rect>
<rect id="Rectangle-2-Copy" stroke="#4C97FF" fill="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" x="0" y="13" width="3" height="3"></rect>
<rect id="Rectangle-2-Copy-3" stroke="#4C97FF" fill="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" x="13" y="13" width="3" height="3"></rect>
<path d="M1.5,3 L1.5,13" id="Line" stroke="#4C97FF" stroke-linecap="square"></path>
<path d="M14.5,3 L14.5,13" id="Line-Copy" stroke="#4C97FF" stroke-linecap="square"></path>
<path d="M13,1.5 L3,1.5" id="Line-Copy-2" stroke="#4C97FF" stroke-linecap="square"></path>
<path d="M13,14.5 L3,14.5" id="Line-Copy-3" stroke="#4C97FF" stroke-linecap="square"></path>
<g id="Group" transform="translate(8.000000, 8.000000) rotate(180.000000) translate(-8.000000, -8.000000) translate(4.000000, 4.000000)" stroke="#575E75">
<rect id="Rectangle-3-Copy" fill="#FFFFFF" transform="translate(5.500000, 5.500000) rotate(180.000000) translate(-5.500000, -5.500000) " x="3" y="3" width="5" height="5" rx="0.5"></rect>
<rect id="Rectangle-3" fill="#575E75" transform="translate(2.500000, 2.500000) rotate(180.000000) translate(-2.500000, -2.500000) " x="0" y="0" width="5" height="5" rx="0.5"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="6 6 24 24">
<defs>
<style>
.cls-4{fill:none;stroke:#575e75;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;}
</style>
</defs>
<title>zoom-in</title>
<g class="cls-3">
<circle class="cls-4" cx="18" cy="18" r="7"/>
<line class="cls-4" x1="23" y1="23" x2="26" y2="26"/>
<line class="cls-4" x1="16" y1="18" x2="20" y2="18"/>
<line class="cls-4" x1="18" y1="16" x2="18" y2="20"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 537 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="8px" height="10px" viewBox="0 0 8 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>handle</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="Desktop---1280x720" transform="translate(-461.000000, -329.000000)" stroke="#E64D00" fill="#FF661A">
<g id="Step-5---Confirming-Trim" transform="translate(0.000000, 42.000000)">
<g id="Sound-Sketches" transform="translate(427.000000, 167.000000)">
<g id="start-playhead" transform="translate(35.000000, 0.000000)">
<path d="M0,122.213854 C0,121.658366 0.45097518,121.208054 0.990777969,121.208054 L5.00922203,121.208054 C5.55641359,121.208054 6,121.659838 6,122.213854 L6,126.298963 L3,129.208054 L0,126.298963 L0,122.213854 Z" id="handle" transform="translate(3.000000, 125.208054) scale(1, -1) translate(-3.000000, -125.208054) "></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>back</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="back" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10.1575922,16.994103 C9.84650021,16.994103 9.55614768,16.8751967 9.34045723,16.6608889 L4.99899559,12.3194272 C4.66301623,11.9627084 4.57314521,11.4621959 4.75980041,11.0321977 C4.94507298,10.6021994 5.35433178,10.3367342 5.82857425,10.3367342 L7.47528788,10.3367342 L8.31454496,4.29463633 C8.43483386,3.36965613 9.23952516,2.6658969 10.1866275,2.6658969 C10.2682027,2.6658969 10.3511606,2.67142742 10.4327358,2.68110584 C11.2872018,2.81522106 11.9467168,3.48164924 12.0504142,4.30154948 L12.9117934,10.3367342 L14.4866102,10.3367342 C14.9663832,10.3367342 15.3936162,10.618791 15.5747408,11.0543198 C15.7558655,11.4926138 15.6576987,11.9779173 15.3161888,12.3194272 L10.9747272,16.6608889 C10.7590367,16.8751967 10.4686842,16.994103 10.1575922,16.994103" id="Fill-1" fill="#FFFFFF" transform="translate(10.164103, 9.830000) rotate(-270.000000) translate(-10.164103, -9.830000) "></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 47.1 (45422) - http://www.bohemiancoding.com/sketch -->
<title>Fullscreen</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Fullscreen" fill="#575E75">
<g id="fullscreen" transform="translate(3.000000, 3.000000)">
<path d="M13.338093,4.35035264 L12.4488644,3.45883199 L9.31483512,5.83342741 C8.95713791,6.10825708 8.4389784,6.03619808 8.1648553,5.66752413 C7.94254816,5.37090918 7.94756261,4.96201625 8.1648553,4.6821592 L10.5333457,1.54005165 L9.66584641,0.668640487 C9.41679554,0.418947674 9.59397267,0.00502737208 9.93495506,0.00502737208 L13.6122161,0 C13.8244944,0.00502737208 14,0.180985395 14,0.388783441 L14,4.08055034 C14,4.42241164 13.5821294,4.59501808 13.338093,4.35035264" id="Fill-1"></path>
<path d="M0.661906989,9.64928834 L1.55113557,10.5408826 L4.68516488,8.16609118 C5.04286209,7.89123882 5.5610216,7.9649797 5.8351447,8.33200815 C6.05745184,8.62864758 6.05243739,9.03757425 5.8351447,9.3174544 L3.4649828,12.4598213 L4.33415359,13.3313043 C4.58320446,13.5810178 4.40602733,13.9949722 4.06504494,13.9949722 L0.387783893,14 C0.175505641,13.9949722 0,13.8189997 0,13.6111845 L0,9.9191129 C0,9.57722339 0.417870574,9.4046027 0.661906989,9.64928834" id="Fill-3"></path>
<path d="M0.661906989,4.35035264 L1.55113557,3.45883199 L4.68516488,5.83342741 C5.04286209,6.10825708 5.5610216,6.03619808 5.8351447,5.66752413 C6.05745184,5.37090918 6.05243739,4.96201625 5.8351447,4.6821592 L3.4649828,1.54005165 L4.33415359,0.668640487 C4.58320446,0.418947674 4.40602733,0.00502737208 4.06504494,0.00502737208 L0.387783893,0 C0.175505641,0.00502737208 0,0.180985395 0,0.388783441 L0,4.08055034 C0,4.42241164 0.417870574,4.59501808 0.661906989,4.35035264" id="Fill-5"></path>
<path d="M13.338093,9.64928834 L12.4488644,10.5408826 L9.31483512,8.16609118 C8.95713791,7.89123882 8.4389784,7.9649797 8.1648553,8.33200815 C7.94254816,8.62864758 7.94756261,9.03757425 8.1648553,9.3174544 L10.5333457,12.4598213 L9.66584641,13.3313043 C9.41679554,13.5810178 9.59397267,13.9949722 9.93495506,13.9949722 L13.6122161,14 C13.8244944,13.9949722 14,13.8189997 14,13.6111845 L14,9.9191129 C14,9.57722339 13.5821294,9.4046027 13.338093,9.64928834" id="Fill-7"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>icon--slower</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="slower" fill="#CF63CF">
<path d="M2.574,8.93936441 L9.59666667,4.66998941 C10.3633333,4.19148941 11.3206667,4.78548941 11.3206667,5.71086441 L11.3206667,7.69498941 L16.2753333,4.66998941 C17.042,4.19148941 17.9993333,4.78548941 17.9993333,5.71086441 L17.9993333,14.2812394 C17.9993333,15.2203644 17.042,15.8006144 16.2753333,15.3372394 L11.3206667,12.3122394 L11.3206667,14.2812394 C11.3206667,15.2203644 10.3633333,15.8006144 9.59666667,15.3372394 L2.574,11.0527394 C1.80866667,10.5893644 1.80866667,9.41786441 2.574,8.93936441"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>backdrop-library</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M16.8970588,3.98529412 L17.5588235,3.98529412 C17.9243061,3.98529412 18.2205882,4.28157627 18.2205882,4.64705882 C18.2205882,5.01254138 17.9243061,5.30882353 17.5588235,5.30882353 L16.8970588,5.30882353 L16.8970588,5.97058824 C16.8970588,6.33607079 16.6007767,6.63235294 16.2352941,6.63235294 C15.8698116,6.63235294 15.5735294,6.33607079 15.5735294,5.97058824 L15.5735294,5.30882353 L14.9117647,5.30882353 C14.5462822,5.30882353 14.25,5.01254138 14.25,4.64705882 C14.25,4.28157627 14.5462822,3.98529412 14.9117647,3.98529412 L15.5735294,3.98529412 L15.5735294,3.32352941 C15.5735294,2.95804686 15.8698116,2.66176471 16.2352941,2.66176471 C16.6007767,2.66176471 16.8970588,2.95804686 16.8970588,3.32352941 L16.8970588,3.98529412 Z" id="path-1"></path>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="backdrop-library">
<g id="backdrop-lib-icon" transform="translate(3.850000, 4.650000)" stroke="#FFFFFF" stroke-linecap="round" stroke-width="1.5">
<path d="M12.2943964,8.13062054 L9.83551715,5.59754978 C9.48424868,5.23568253 8.89880123,5.17537132 8.48898801,5.53723857 L5.44466128,8.00999813 C4.97630332,8.37186538 4.33231112,8.31155417 3.98104265,7.8290645 L3.68831893,7.46719725 C3.33705046,6.98470758 2.63451352,6.92439637 2.22470031,7.28626362 L0,9.15591109 L0,9.15591109 C4.82683843e-16,10.0078757 0.690653747,10.6985294 1.54261832,10.6985294 L10.3529412,10.6985294 C11.4575107,10.6985294 12.3529412,9.80309891 12.3529412,8.69852941 L12.3529412,8.13062054 L12.2943964,8.13062054 Z" id="Shape" fill="#FFFFFF" stroke-linejoin="round"></path>
<path d="M12.3529412,3.52941176 L12.3529412,8.82352941 C12.3529412,9.79814956 11.5628554,10.5882353 10.5882353,10.5882353 L1.76470588,10.5882353 C0.790085736,10.5882353 1.19356544e-16,9.79814956 0,8.82352941 L0,1.76470588 C-1.19356544e-16,0.790085736 0.790085736,4.61992691e-15 1.76470588,4.4408921e-15 L8.82352941,4.4408921e-15" id="Rectangle"></path>
</g>
<g id="Combined-Shape">
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-1"></use>
<path stroke="#FFFFFF" stroke-width="0.1" d="M16.9470588,3.93529412 L17.5588235,3.93529412 C17.9519203,3.93529412 18.2705882,4.25396203 18.2705882,4.64705882 C18.2705882,5.04015562 17.9519203,5.35882353 17.5588235,5.35882353 L16.9470588,5.30882353 L16.9470588,5.97058824 C16.9470588,6.36368503 16.6283909,6.68235294 16.2352941,6.68235294 C15.8421973,6.68235294 15.5235294,6.36368503 15.5235294,5.97058824 L15.5735294,5.35882353 L14.9117647,5.35882353 C14.5186679,5.35882353 14.2,5.04015562 14.2,4.64705882 C14.2,4.25396203 14.5186679,3.93529412 14.9117647,3.93529412 L15.5235294,3.98529412 L15.5235294,3.32352941 C15.5235294,2.93043262 15.8421973,2.61176471 16.2352941,2.61176471 C16.6283909,2.61176471 16.9470588,2.93043262 16.9470588,3.32352941 L16.9470588,3.93529412 Z"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>sprite-library</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="sprite-library" fill="#FFFFFF">
<path d="M18.5,2.5 L19.25,2.5 C19.6642136,2.5 20,2.83578644 20,3.25 C20,3.66421356 19.6642136,4 19.25,4 L18.5,4 L18.5,4.75 C18.5,5.16421356 18.1642136,5.5 17.75,5.5 C17.3357864,5.5 17,5.16421356 17,4.75 L17,4 L16.25,4 C15.8357864,4 15.5,3.66421356 15.5,3.25 C15.5,2.83578644 15.8357864,2.5 16.25,2.5 L17,2.5 L17,1.75 C17,1.33578644 17.3357864,1 17.75,1 C18.1642136,1 18.5,1.33578644 18.5,1.75 L18.5,2.5 Z M15.9214311,12.3870691 C15.9214311,15.6404905 13.2729235,17 10.0195022,17 C6.767318,17 4.13241787,15.6404905 4.13241787,12.3870691 C4.13241787,11.5829915 4.26725548,10.9026183 4.52827141,10.3335788 L4.42930802,5.63281784 C4.4169376,5.11326006 4.99834749,4.81636989 5.41894188,5.12563048 L7.93013778,7.01830528 C8.51154766,6.70904469 9.22903221,6.57297003 10.0195022,6.57297003 C10.8124464,6.57297003 11.5423013,6.70904469 12.1237112,7.01830528 L14.6349071,5.12563048 C15.0431311,4.81636989 15.624541,5.11326006 15.624541,5.63281784 L15.5255776,10.3335788 C15.7853565,10.9026183 15.9214311,11.5829915 15.9214311,12.3870691 Z M12.5062047,14.4154474 C12.6806277,14.2311281 12.6546498,13.9330009 12.4579601,13.759815 C12.2724037,13.5989995 11.9742765,13.6237403 11.8023276,13.8229041 C11.6650159,13.9824826 11.4670892,14.0690756 11.256792,14.0690756 C10.8609384,14.0690756 10.526937,13.7474445 10.526937,13.3392206 L10.526937,12.6588473 C11.2444215,12.4609205 11.7887202,11.8560068 11.7887202,11.4589162 C11.7887202,10.9640993 11.0093835,10.9640993 10.0692313,10.9640993 C9.11794581,10.9640993 8.35097957,10.9640993 8.35097957,11.4589162 C8.35097957,11.8560068 8.87053734,12.4609205 9.59915527,12.6464769 L9.59915527,13.3392206 C9.59915527,13.7474445 9.27876131,14.0690756 8.88167073,14.0690756 C8.66024015,14.0690756 8.46107634,13.9824826 8.32500168,13.8229041 C8.16418618,13.6237403 7.86729603,13.5989995 7.66936926,13.759815 C7.47267953,13.9330009 7.45907206,14.2311281 7.62112461,14.4154474 C7.93038519,14.7865601 8.3868538,14.9968573 8.88167073,14.9968573 C9.33937638,14.9968573 9.75997077,14.8001676 10.0692313,14.490907 C10.3673585,14.8001676 10.7867159,14.9968573 11.256792,14.9968573 C11.7404755,14.9968573 12.1969441,14.7865601 12.5062047,14.4154474 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="8px" height="5px" viewBox="0 0 8 5" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>dropdown-caret</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="dropdown-caret" fill="#4C97FF">
<path d="M4,5 C3.72520708,5 3.45163006,4.89695045 3.24127973,4.68965311 L0.314613572,1.80666227 C-0.104871191,1.39326583 -0.104871191,0.724642023 0.314613572,0.310047331 C0.732882438,-0.10334911 7.26711756,-0.10334911 7.68538643,0.310047331 C8.10487119,0.723443772 8.10487119,1.39326583 7.68538643,1.80666227 L4.75993617,4.68965311 C4.54958583,4.89695045 4.27600882,5 4,5"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 920 B

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>help</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="help" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9.99905449,18 C5.58160974,18 2,14.4173461 2,10.0009453 C2,5.58265391 5.58160974,2 9.99905449,2 C14.4183903,2 18,5.58265391 18,10.0009453 C18,14.4173461 14.4183903,18 9.99905449,18 Z M9.85325612,12.3615266 C9.26892802,12.3615266 8.80562581,12.8360629 8.80562581,13.4221434 C8.80562581,13.9930994 9.26892802,14.4676356 9.85325612,14.4676356 C10.4394752,14.4676356 10.9141236,13.9930994 10.9141236,13.4221434 C10.9141236,12.8360629 10.4394752,12.3615266 9.85325612,12.3615266 Z M9.46181302,11.6431053 L10.1596029,11.6431053 C10.3487058,11.6431053 10.5245716,11.5239986 10.5699563,11.3406121 C10.6588347,10.9700579 10.9141236,10.7167198 11.2545089,10.4614912 L11.7159201,10.1211863 C12.4458575,9.57291741 12.8978135,8.90554177 12.8978135,7.93000118 C12.8978135,6.71435661 11.9106961,5.53274253 9.93835244,5.53274253 C8.16078478,5.53274253 7.1018083,6.7370436 7.1018083,8.16065225 C7.1018083,8.1984639 7.10369933,8.23627555 7.10369933,8.27597779 C7.11315447,8.49717594 7.28902021,8.67867187 7.51027065,8.6862342 L8.38392625,8.71648352 C8.62408699,8.72593643 8.81886302,8.53309701 8.81886302,8.29299303 L8.81886302,8.28354012 C8.81886302,7.71258419 9.23299846,7.13973768 9.93835244,7.13973768 C10.6701808,7.13973768 11.0219123,7.60103982 11.0219123,8.07557604 C11.0219123,8.3931939 10.9141236,8.6862342 10.5850845,8.93011934 L9.96482685,9.39331206 C9.26892802,9.91511284 9.0363314,10.5352239 9.0363314,11.1080704 C9.0363314,11.1515538 9.03822243,11.1950372 9.03822243,11.2347395 C9.04578655,11.4634999 9.23299846,11.6431053 9.46181302,11.6431053 Z" id="help-icon" fill="#FFFFFF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="72px" height="72px" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
<title>mic-indicator</title>
<desc>Created with Sketch.</desc>
<style type="text/css">
<![CDATA[
@-webkit-keyframes pulsate {
0% { transform: scale(0.9);}
100% { transform: scale(1);}
}
@keyframes pulsate {
0% { transform: scale(0.9);}
100% { transform: scale(1);}
}
#outer2 {
transform-origin: 36px 36px;
-webkit-animation: pulsate 0.5s ease-in-out infinite alternate;
animation: pulsate 0.5s ease-in-out infinite alternate;
}
]]>
</style>
<defs>
<rect id="path-1" x="12" y="12" width="48" height="48" rx="24"></rect>
<filter x="-25.0%" y="-25.0%" width="150.0%" height="150.0%" filterUnits="objectBoundingBox" id="filter-2">
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="4" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
</defs>
<g id="mic-indicator" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<circle id="outer2" fill-opacity="0.5" fill="#FF6680" cx="36" cy="36" r="36"></circle>
<circle id="outer1" fill-opacity="0.75" fill="#FF6680" cx="36" cy="36" r="30"></circle>
<g id="inner">
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
<use fill="#FF6680" fill-rule="evenodd" xlink:href="#path-1"></use>
</g>
<path d="M36.9963348,44.7623014 L36.9963348,48.2884231 C36.9963348,49.0019454 36.4179107,49.5803695 35.7043884,49.5803695 C34.9908661,49.5803695 34.412442,49.0019454 34.412442,48.2884231 L34.412442,44.7622856 C30.605975,44.2998533 27.3265946,41.8173633 25.8174076,38.25498 C25.5390741,37.5979834 25.8460411,36.8397485 26.5030377,36.561415 C27.1600343,36.2830814 27.9182692,36.5900485 28.1966027,37.2470451 C29.4739872,40.2622666 32.4093867,42.2564316 35.7043884,42.2564316 C39.0137059,42.2564316 41.9570951,40.2456265 43.2309675,37.2070862 C43.5068404,36.5490526 44.2639212,36.2392502 44.9219548,36.515123 C45.5799884,36.7909959 45.8897908,37.5480767 45.613918,38.2061103 C44.1094038,41.7947953 40.8201868,44.2978089 36.9963348,44.7623014 Z M35.7092978,38.8775668 C33.2106734,38.8775668 31.1849015,36.8292863 31.1849015,34.3028994 L31.1849015,27.5754474 C31.1849015,25.0490605 33.2106734,23.00078 35.7092978,23.00078 C38.210506,23.00078 40.236278,25.0490605 40.236278,27.5754474 L40.236278,34.3028994 C40.236278,36.8292863 38.210506,38.8775668 35.7092978,38.8775668 Z" id="icon" fill="#FFFFFF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1 @@
<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>music-block-icon</title><defs><path d="M32.18 25.874C32.636 28.157 30.512 30 27.433 30c-3.07 0-5.923-1.843-6.372-4.126-.458-2.285 1.665-4.136 4.743-4.136.647 0 1.283.084 1.89.234.338.086.637.18.938.302.87-.02-.104-2.294-1.835-12.23-2.134-12.302 3.06-1.87 8.768-2.752 5.708-.885.076 4.82-3.65 3.844-3.724-.987-4.65-7.153.263 14.738zm-16.998 5.99C15.63 34.148 13.507 36 10.44 36c-3.07 0-5.922-1.852-6.38-4.136-.448-2.284 1.674-4.135 4.75-4.135 1.003 0 1.975.196 2.855.543.822-.055-.15-2.377-1.862-12.228-2.133-12.303 3.06-1.87 8.764-2.753 5.706-.894.076 4.82-3.648 3.834-3.724-.987-4.65-7.152.262 14.738z" id="a"/></defs><g fill="none" fill-rule="evenodd"><use fill="#FFF" xlink:href="#a"/><path stroke-opacity=".1" stroke="#000" d="M28.456 21.675c-.01-.312-.087-.825-.256-1.702-.096-.495-.612-3.022-.753-3.73-.395-1.98-.76-3.92-1.142-6.113-.732-4.223-.693-6.05.344-6.527.5-.23 1.06-.08 1.84.35.414.227 2.182 1.365 2.07 1.296 1.994 1.242 3.464 1.774 4.93 1.548 1.526-.237 2.504-.06 2.876.618.348.635.015 1.416-.73 2.18-1.472 1.516-3.975 2.514-5.848 2.023-.822-.22-1.238-.465-2.38-1.267l-.095-.066c.047.593.264 1.74.717 3.803.294 1.336 2.08 9.187 2.637 11.674l.002.012c.528 2.637-1.873 4.724-5.236 4.724-3.29 0-6.363-1.988-6.862-4.528-.53-2.64 1.873-4.734 5.233-4.734.672 0 1.347.085 2.014.25.227.057.436.118.636.187zm-16.996 5.99c-.01-.318-.09-.838-.266-1.737-.09-.46-.595-2.937-.753-3.727-.39-1.96-.75-3.89-1.13-6.07-.732-4.223-.692-6.05.344-6.526.502-.23 1.06-.082 1.84.35.415.227 2.182 1.364 2.07 1.295 1.993 1.242 3.462 1.774 4.926 1.548 1.525-.24 2.504-.064 2.876.614.348.635.015 1.415-.728 2.18-1.474 1.517-3.977 2.513-5.847 2.017-.82-.22-1.236-.464-2.378-1.267l-.095-.065c.047.593.264 1.74.717 3.802.294 1.337 2.078 9.19 2.636 11.675l.003.013c.517 2.638-1.884 4.732-5.234 4.732-3.287 0-6.36-1.993-6.87-4.54-.52-2.64 1.884-4.73 5.24-4.73.905 0 1.803.15 2.65.436z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 47.1 (45422) - http://www.bohemiancoding.com/sketch -->
<title>Large Stage (active)</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="Large-Stage-(active)" stroke="#4C97FF">
<g id="large-stage-(inactive)" transform="translate(3.000000, 4.000000)">
<path d="M1,0 L7,0 L7,12 L1,12 L1,12 C0.44771525,12 6.76353751e-17,11.5522847 0,11 L0,1 L0,1 C-6.76353751e-17,0.44771525 0.44771525,1.01453063e-16 1,0 Z" id="Rectangle"></path>
<path d="M7,0 L13,0 L13,0 C13.5522847,-1.01453063e-16 14,0.44771525 14,1 L14,5.25 L7,5.25 L7,0 Z" id="Rectangle" fill="#4C97FF"></path>
<path d="M7,5 L14,5 L14,11 L14,11 C14,11.5522847 13.5522847,12 13,12 L7,12 L7,5 Z" id="Rectangle-Copy"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>fill-horz-gradient-enabled</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="linearGradient-1">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#4C97FF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="fill-horz-gradient-enabled" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-opacity="0.15">
<rect id="Horizontal" stroke="#000000" fill="url(#linearGradient-1)" x="0.5" y="0.5" width="19" height="19" rx="4"></rect>
</g>
</svg>

After

Width:  |  Height:  |  Size: 875 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>search-sprite-library</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="search-sprite-library" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9.08920325,5.28249422 C11.1744967,5.28249422 12.8944833,6.9872597 12.8944833,9.0877743 C12.8944833,11.1882889 11.1744967,12.8930544 9.08920325,12.8930544 C6.98868865,12.8930544 5.28392318,11.1882889 5.28392318,9.0877743 C5.28392318,6.9872597 6.98868865,5.28249422 9.08920325,5.28249422 M16.667799,15.0544535 L14.5459749,12.9311072 C14.3009148,12.684525 14.2674284,12.3116076 14.4348607,12.0056631 C15.2872434,10.4272329 15.4957728,8.41347867 14.5794613,6.43777725 C13.8473255,4.85630285 12.3997969,3.64470168 10.7117747,3.20937764 C6.25959699,2.06018306 2.30667205,5.81523343 3.10273664,10.2263141 C3.50457422,12.4485977 5.20325124,14.3192733 7.37530511,14.9342066 C9.05876101,15.4121498 10.6706777,15.1503465 11.9918709,14.4334317 C12.2978154,14.2659994 12.672255,14.2994859 12.9203592,14.5445459 L15.0558824,16.6678922 C15.2689781,16.896209 15.5581794,17.0027569 15.8626018,17.0027569 C16.1518031,17.0027569 16.4410044,16.896209 16.667799,16.6678922 C17.1107337,16.2264797 17.1107337,15.4958659 16.667799,15.0544535" id="search" fill="#FFFFFF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>select</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="select" fill="#575E75">
<path d="M9.08480709,12.7519131 L10.2692937,15.3910753 C10.5025281,15.912848 11.1105098,16.1432755 11.6267701,15.9075508 C12.1430304,15.6705018 12.3710236,15.0560284 12.1377892,14.53558 L10.9669627,11.925728 L13.925853,11.925728 C14.5130486,11.925728 14.7937693,11.2121948 14.3623865,10.8190495 L7.0791007,4.17004294 C6.6670336,3.7934914 6,4.08324462 6,4.63849857 L6,14.5028722 C6,15.0900373 6.73013138,15.3657496 7.12288282,14.9279287 L9.08480709,12.7519131 Z" id="select-icon"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1014 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,436 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="116px"
height="95px"
viewBox="0 0 116 95"
version="1.1"
id="svg2954">
<metadata
id="metadata2958">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>microbit-illustration</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title
id="title2421">microbit-illustration</title>
<desc
id="desc2423">Created with Sketch.</desc>
<defs
id="defs2425">
<linearGradient
y2="179.76875"
x2="35.988384"
y1="179.76875"
x1="-12.131486"
gradientTransform="translate(18.405328,8.25397)"
gradientUnits="userSpaceOnUse"
id="linearGradient5530"
xlink:href="#linearGradient1005" />
<linearGradient
id="linearGradient1005">
<stop
id="stop1001"
offset="0"
style="stop-color:#f0c000;stop-opacity:1;" />
<stop
id="stop1003"
offset="1"
style="stop-color:#f0c000;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="translate(9.4237895,-3.5296701)"
gradientUnits="userSpaceOnUse"
y2="191.5524"
x2="44.969925"
y1="191.5524"
x1="-3.1499486"
id="linearGradient976"
xlink:href="#linearGradient974" />
<linearGradient
id="linearGradient974">
<stop
id="stop970"
offset="0"
style="stop-color:#f9c600;stop-opacity:1;" />
<stop
id="stop972"
offset="1"
style="stop-color:#f9c600;stop-opacity:0;" />
</linearGradient>
</defs>
<g
transform="matrix(0.5824391,0,0,0.5824391,-4.3889337,-92.891586)"
id="g1030">
<g
id="g1189"
transform="translate(2.1166658)">
<g
transform="matrix(1.0019709,0,0,1.0019709,-0.20694654,-0.50174009)"
id="g1189-6">
<g
id="g1968-2"
transform="translate(0.045225,82.41411)">
<g
id="g1899-5-3"
transform="translate(0,0.280633)">
<g
id="g1604-4-8"
transform="rotate(-180,79.784564,207.91221)">
<g
transform="translate(0,0.39687503)"
id="g1580-7-6">
<path
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:1.6253438px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 253.23828,665.03711 20.76563,0.60351 3.00586,4.86133 1.58984,2.38672 c 0,0 1.06199,6.18695 1.15039,6.98242 0.0884,0.79552 -1.94531,7.24805 -1.94531,7.24805 0,0 -5.03904,4.06445 -5.39258,4.06445 -0.35356,0 -6.00977,1.76954 -6.00977,1.76953 l 10.51758,0.97071 v 17.76758 c 0,0 -15.20154,17.67765 -16.17383,18.38476 -0.97226,0.70711 -6.45312,6.80469 -6.45312,6.80469 l -10.42969,5.6582 114.55664,0.46289 -10.42969,-5.65625 c 0,0 -5.48085,-6.09949 -6.45312,-6.80664 -0.97228,-0.70711 -16.17578,-18.38476 -16.17578,-18.38476 v -17.76563 l 10.51953,-0.97265 c 0,0 -5.65816,-1.76758 -6.01172,-1.76758 -0.35354,0 -5.39062,-4.06641 -5.39062,-4.06641 0,0 -2.0337,-6.45253 -1.94532,-7.24805 0.0884,-0.79547 1.15039,-6.98242 1.15039,-6.98242 l 1.58985,-2.38672 3.00586,-4.86132 24.54687,-0.7129 z m 105.18164,77.96484 0.0781,-73.49218 -0.34375,7.99609 z"
transform="scale(0.26458333)"
id="path1529-6-2" />
<path
style="opacity:1;vector-effect:none;fill:#84d8f7;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 64.592321,179.13401 -0.0702,17.32908 2.75956,-1.4967 c 0,0 1.44994,-1.61364 1.70718,-1.80073 0.25725,-0.18709 4.27966,-4.86431 4.27966,-4.86431 v -4.7006 l -2.78294,-0.25725 c 0,0 1.4967,-0.46772 1.59025,-0.46772 0.0935,0 1.42655,-1.07576 1.42655,-1.07576 0,0 0.53788,-1.70718 0.51449,-1.91766 -0.0234,-0.21047 -0.30402,-1.8475 -0.30402,-1.8475 l -0.42094,-0.63142 -0.79513,-1.28624 -8.04481,-0.23386 z"
id="path1498-1-5-8" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 94.761384,179.25682 0.0702,17.32908 -2.75956,-1.4967 c 0,0 -1.44994,-1.61364 -1.70718,-1.80073 -0.25725,-0.18709 -4.27966,-4.86431 -4.27966,-4.86431 v -4.7006 l 2.78294,-0.25725 c 0,0 -1.4967,-0.46772 -1.59025,-0.46772 -0.0935,0 -1.42655,-1.07576 -1.42655,-1.07576 0,0 -0.53788,-1.70718 -0.51449,-1.91766 0.0234,-0.21047 0.30402,-1.8475 0.30402,-1.8475 l 0.42094,-0.63142 0.79513,-1.28624 8.04481,-0.23386 z"
id="path1498-1-2-6-4" />
</g>
<path
id="path1582-9-7"
d="m 72.958855,180.43735 a 2.9434896,2.2158854 0 0 1 -2.94349,2.21588 2.9434896,2.2158854 0 0 1 -2.943489,-2.21588 2.9434896,2.2158854 0 0 1 2.943489,-2.21589 2.9434896,2.2158854 0 0 1 2.94349,2.21589 z"
style="opacity:1;vector-effect:none;fill:#34bff3;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
transform="matrix(-0.99982842,0.01852365,0.01852365,0.99982842,206.6903,-3.3252016)"
id="g1784-3-2-6">
<g
id="g1827-4-7"
transform="translate(-0.18124978,0.92955857)">
<path
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 110.05491,183.3904 0.28063,9.21412 0.0936,5.47235 0.42095,33.20823 2.19829,-0.0468 -0.37418,-4.81753 -0.0935,-6.73519 -0.23386,-24.46185 -0.42095,-11.78658 z"
id="path1654-2-0-5" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.43003887px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 111.92589,183.43715 h 3.15132 v 4.42222 l -0.67799,0.29766 0.19843,8.7974 h -2.29856 l 0.0331,-1.85209 z"
id="path1699-6-6" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.43003887px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 113.04838,231.2383 2.32649,0.0127 -0.0331,-3.34036 -0.3142,-0.0331 0.0661,-8.3013 -2.51354,0.0661 0.094,6.77832 z"
id="path1746-5-2" />
</g>
<g
id="g1822-9-3"
transform="translate(0.67482272,0.71522671)">
<path
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 147.55432,182.5305 0.28063,9.21412 0.0936,5.47235 0.42095,33.20823 2.19829,-0.0468 -0.37418,-4.81753 -0.0935,-6.73519 -0.23386,-24.46185 -0.42095,-11.78658 z"
id="path1654-5-0-9" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.43003887px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 145.45469,196.49141 0.33072,-11.1125 -0.19843,-3.3073 1.96734,0.45889 0.38083,13.86169 z"
id="path1730-1-0" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.43003887px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 145.99932,230.56013 c 0.18709,0.0702 2.35018,-0.13493 2.35018,-0.13493 l -0.15189,-11.16054 -2.19829,-0.18709 z"
id="path1762-5-8" />
</g>
</g>
<path
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 61.758559,196.75592 0.234096,22.68441 12.628168,-0.65475 v -10.47687 h 11.693342 v 10.85101 h 11.8799 v -22.4038 z m 24.037293,2.91507 0.198437,3.37344 -0.760677,0.3638 -10.31875,0.0331 -0.132291,-3.63802 z"
id="path1449-8-9-1" />
<g
id="g1604-31-5"
transform="translate(0,-0.27593196)">
<g
transform="translate(0,0.39687503)"
id="g1580-10-6">
<path
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:1.6253438px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 253.23828,665.03711 20.76563,0.60351 3.00586,4.86133 1.58984,2.38672 c 0,0 1.06199,6.18695 1.15039,6.98242 0.0884,0.79552 -1.94531,7.24805 -1.94531,7.24805 0,0 -5.03904,4.06445 -5.39258,4.06445 -0.35356,0 -6.00977,1.76954 -6.00977,1.76953 l 10.51758,0.97071 v 17.76758 c 0,0 -15.20154,17.67765 -16.17383,18.38476 -0.97226,0.70711 -6.45312,6.80469 -6.45312,6.80469 l -10.42969,5.6582 114.55664,0.46289 -10.42969,-5.65625 c 0,0 -5.48085,-6.09949 -6.45312,-6.80664 -0.97228,-0.70711 -16.17578,-18.38476 -16.17578,-18.38476 v -17.76563 l 10.51953,-0.97265 c 0,0 -5.65816,-1.76758 -6.01172,-1.76758 -0.35354,0 -5.39062,-4.06641 -5.39062,-4.06641 0,0 -2.0337,-6.45253 -1.94532,-7.24805 0.0884,-0.79547 1.15039,-6.98242 1.15039,-6.98242 l 1.58985,-2.38672 3.00586,-4.86132 24.54687,-0.7129 z m 105.18164,77.96484 0.0781,-73.49218 -0.34375,7.99609 z"
transform="scale(0.26458333)"
id="path1529-3" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 64.592321,179.13401 -0.0702,17.32908 2.75956,-1.4967 c 0,0 1.44994,-1.61364 1.70718,-1.80073 0.25725,-0.18709 4.27966,-4.86431 4.27966,-4.86431 v -4.7006 l -2.78294,-0.25725 c 0,0 1.4967,-0.46772 1.59025,-0.46772 0.0935,0 1.42655,-1.07576 1.42655,-1.07576 0,0 0.53788,-1.70718 0.51449,-1.91766 -0.0234,-0.21047 -0.30402,-1.8475 -0.30402,-1.8475 l -0.42094,-0.63142 -0.79513,-1.28624 -8.04481,-0.23386 z"
id="path1498-1-40" />
<path
style="opacity:1;vector-effect:none;fill:#84d8f7;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 94.761384,179.25682 0.0702,17.32908 -2.75956,-1.4967 c 0,0 -1.44994,-1.61364 -1.70718,-1.80073 -0.25725,-0.18709 -4.27966,-4.86431 -4.27966,-4.86431 v -4.7006 l 2.78294,-0.25725 c 0,0 -1.4967,-0.46772 -1.59025,-0.46772 -0.0935,0 -1.42655,-1.07576 -1.42655,-1.07576 0,0 -0.53788,-1.70718 -0.51449,-1.91766 0.0234,-0.21047 0.30402,-1.8475 0.30402,-1.8475 l 0.42094,-0.63142 0.79513,-1.28624 8.04481,-0.23386 z"
id="path1498-1-2-3" />
</g>
<path
id="path1582-91"
d="m 72.958855,180.43735 a 2.9434896,2.2158854 0 0 1 -2.94349,2.21588 2.9434896,2.2158854 0 0 1 -2.943489,-2.21588 2.9434896,2.2158854 0 0 1 2.943489,-2.21589 2.9434896,2.2158854 0 0 1 2.94349,2.21589 z"
style="opacity:1;vector-effect:none;fill:#096d93;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g1863-9-2">
<g
id="g1604-3-6-9"
transform="translate(50.453524,0.18708896)">
<g
id="g1580-1-9-1"
transform="translate(0,0.39687503)">
<path
id="path1529-9-3-2"
transform="scale(0.26458333)"
d="m 253.23828,665.03711 20.76563,0.60351 3.00586,4.86133 1.58984,2.38672 c 0,0 1.06199,6.18695 1.15039,6.98242 0.0884,0.79552 -1.94531,7.24805 -1.94531,7.24805 0,0 -5.03904,4.06445 -5.39258,4.06445 -0.35356,0 -6.00977,1.76954 -6.00977,1.76953 l 10.51758,0.97071 v 17.76758 c 0,0 -15.20154,17.67765 -16.17383,18.38476 -0.97226,0.70711 -6.45312,6.80469 -6.45312,6.80469 l -10.42969,5.6582 114.55664,0.46289 -10.42969,-5.65625 c 0,0 -5.48085,-6.09949 -6.45312,-6.80664 -0.97228,-0.70711 -16.17578,-18.38476 -16.17578,-18.38476 v -17.76563 l 10.51953,-0.97265 c 0,0 -5.65816,-1.76758 -6.01172,-1.76758 -0.35354,0 -5.39062,-4.06641 -5.39062,-4.06641 0,0 -2.0337,-6.45253 -1.94532,-7.24805 0.0884,-0.79547 1.15039,-6.98242 1.15039,-6.98242 l 1.58985,-2.38672 3.00586,-4.86132 24.54687,-0.7129 z m 105.18164,77.96484 0.0781,-73.49218 -0.34375,7.99609 z"
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:1.6253438px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
id="path1498-1-4-3"
d="m 64.592321,179.13401 -0.0702,17.32908 2.75956,-1.4967 c 0,0 1.44994,-1.61364 1.70718,-1.80073 0.25725,-0.18709 4.27966,-4.86431 4.27966,-4.86431 v -4.7006 l -2.78294,-0.25725 c 0,0 1.4967,-0.46772 1.59025,-0.46772 0.0935,0 1.42655,-1.07576 1.42655,-1.07576 0,0 0.53788,-1.70718 0.51449,-1.91766 -0.0234,-0.21047 -0.30402,-1.8475 -0.30402,-1.8475 l -0.42094,-0.63142 -0.79513,-1.28624 -8.04481,-0.23386 z"
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
id="path1498-1-2-7-8"
d="m 94.761384,179.25682 0.0702,17.32908 -2.75956,-1.4967 c 0,0 -1.44994,-1.61364 -1.70718,-1.80073 -0.25725,-0.18709 -4.27966,-4.86431 -4.27966,-4.86431 v -4.7006 l 2.78294,-0.25725 c 0,0 -1.4967,-0.46772 -1.59025,-0.46772 -0.0935,0 -1.42655,-1.07576 -1.42655,-1.07576 0,0 -0.53788,-1.70718 -0.51449,-1.91766 0.0234,-0.21047 0.30402,-1.8475 0.30402,-1.8475 l 0.42094,-0.63142 0.79513,-1.28624 8.04481,-0.23386 z"
style="opacity:1;vector-effect:none;fill:#84d8f7;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
style="opacity:1;vector-effect:none;fill:#096d93;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 72.958855,180.43735 a 2.9434896,2.2158854 0 0 1 -2.94349,2.21588 2.9434896,2.2158854 0 0 1 -2.943489,-2.21588 2.9434896,2.2158854 0 0 1 2.943489,-2.21589 2.9434896,2.2158854 0 0 1 2.94349,2.21589 z"
id="path1582-8-0" />
</g>
<g
id="g1604-4-3-5"
transform="rotate(180,104.99205,207.80316)">
<g
transform="translate(0,0.39687503)"
id="g1580-7-7-6">
<path
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:1.6253438px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 253.23828,665.03711 20.76563,0.60351 3.00586,4.86133 1.58984,2.38672 c 0,0 1.06199,6.18695 1.15039,6.98242 0.0884,0.79552 -1.94531,7.24805 -1.94531,7.24805 0,0 -5.03904,4.06445 -5.39258,4.06445 -0.35356,0 -6.00977,1.76954 -6.00977,1.76953 l 10.51758,0.97071 v 17.76758 c 0,0 -15.20154,17.67765 -16.17383,18.38476 -0.97226,0.70711 -6.45312,6.80469 -6.45312,6.80469 l -10.42969,5.6582 114.55664,0.46289 -10.42969,-5.65625 c 0,0 -5.48085,-6.09949 -6.45312,-6.80664 -0.97228,-0.70711 -16.17578,-18.38476 -16.17578,-18.38476 v -17.76563 l 10.51953,-0.97265 c 0,0 -5.65816,-1.76758 -6.01172,-1.76758 -0.35354,0 -5.39062,-4.06641 -5.39062,-4.06641 0,0 -2.0337,-6.45253 -1.94532,-7.24805 0.0884,-0.79547 1.15039,-6.98242 1.15039,-6.98242 l 1.58985,-2.38672 3.00586,-4.86132 24.54687,-0.7129 z m 105.18164,77.96484 0.0781,-73.49218 -0.34375,7.99609 z"
transform="scale(0.26458333)"
id="path1529-6-4-6" />
<path
style="opacity:1;vector-effect:none;fill:#84d8f7;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 64.592321,179.13401 -0.0702,17.32908 2.75956,-1.4967 c 0,0 1.44994,-1.61364 1.70718,-1.80073 0.25725,-0.18709 4.27966,-4.86431 4.27966,-4.86431 v -4.7006 l -2.78294,-0.25725 c 0,0 1.4967,-0.46772 1.59025,-0.46772 0.0935,0 1.42655,-1.07576 1.42655,-1.07576 0,0 0.53788,-1.70718 0.51449,-1.91766 -0.0234,-0.21047 -0.30402,-1.8475 -0.30402,-1.8475 l -0.42094,-0.63142 -0.79513,-1.28624 -8.04481,-0.23386 z"
id="path1498-1-5-5-4" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 94.761384,179.25682 0.0702,17.32908 -2.75956,-1.4967 c 0,0 -1.44994,-1.61364 -1.70718,-1.80073 -0.25725,-0.18709 -4.27966,-4.86431 -4.27966,-4.86431 v -4.7006 l 2.78294,-0.25725 c 0,0 -1.4967,-0.46772 -1.59025,-0.46772 -0.0935,0 -1.42655,-1.07576 -1.42655,-1.07576 0,0 -0.53788,-1.70718 -0.51449,-1.91766 0.0234,-0.21047 0.30402,-1.8475 0.30402,-1.8475 l 0.42094,-0.63142 0.79513,-1.28624 8.04481,-0.23386 z"
id="path1498-1-2-6-2-0" />
</g>
<path
id="path1582-9-5-0"
d="m 72.958855,180.43735 a 2.9434896,2.2158854 0 0 1 -2.94349,2.21588 2.9434896,2.2158854 0 0 1 -2.943489,-2.21588 2.9434896,2.2158854 0 0 1 2.943489,-2.21589 2.9434896,2.2158854 0 0 1 2.94349,2.21589 z"
style="opacity:1;vector-effect:none;fill:#34bff3;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
id="path1449-8-4"
d="m 112.24485,196.97243 0.23409,22.6844 12.62817,-0.65474 v -10.47687 h 11.69334 v 10.85101 h 11.8799 v -22.4038 z m 24.03729,2.91507 0.19844,3.37344 -0.76068,0.3638 -10.31875,0.0331 -0.13229,-3.63802 z"
style="opacity:1;vector-effect:none;fill:#08a9ff;fill-opacity:1;stroke:#000000;stroke-width:0.46014422px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="g1784-6-7">
<path
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 110.05491,183.3904 0.28063,9.21412 0.0936,5.47235 0.42095,33.20823 2.19829,-0.0468 -0.37418,-4.81753 -0.0935,-6.73519 -0.23386,-24.46185 -0.42095,-11.78658 z"
id="path1654-26-0" />
<path
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 147.55432,182.5305 0.28063,9.21412 0.0936,5.47235 0.42095,33.20823 2.19829,-0.0468 -0.37418,-4.81753 -0.0935,-6.73519 -0.23386,-24.46185 -0.42095,-11.78658 z"
id="path1654-5-7" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.43003887px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 111.92589,183.43715 h 3.15132 v 4.42222 l -0.67799,0.29766 0.19843,8.7974 h -2.29856 l 0.0331,-1.85209 z"
id="path1699-5" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.43003887px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 145.45469,196.49141 0.33072,-11.1125 -0.19843,-3.3073 1.96734,0.45889 0.38083,13.86169 z"
id="path1730-6" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.43003887px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 113.04838,231.2383 2.32649,0.0127 -0.0331,-3.34036 -0.3142,-0.0331 0.0661,-8.3013 -2.51354,0.0661 0.094,6.77832 z"
id="path1746-9" />
<path
style="opacity:1;vector-effect:none;fill:#46a7cf;fill-opacity:1;stroke:#000000;stroke-width:0.43003887px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 145.99932,230.56013 c 0.18709,0.0702 2.35018,-0.13493 2.35018,-0.13493 l -0.15189,-11.16054 -2.19829,-0.18709 z"
id="path1762-8" />
</g>
<path
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 112.24485,196.97242 0.2341,22.68441 12.62816,-0.65475 v -10.47687 h 11.69335 v 10.85101 h 11.8799 v -22.4038 z m 24.03729,2.91507 0.19844,3.37344 -0.76068,0.3638 -10.31875,0.0331 -0.13229,-3.63802 z"
id="path1449-8-9-2-7" />
</g>
</g>
<g
transform="translate(0,93.750064)"
id="g1385-2">
<g
id="g1319-8-9"
transform="translate(0,-93.731423)">
<path
id="path1307-2-3"
d="m 48.766015,150.7681 -2.265495,-0.97565 c 0,0 -2.501303,-0.25964 -3.869531,3.68763 -5.301875,15.29564 -21.665365,50.67717 -21.665365,50.67717 l -4.057486,-1.02899 -6.9201173,3.38424 -3.4395833,7.60677 4.1671876,9.12812 0.661458,0.1323 3.538802,2.44739 1.289844,-3.07578 -3.274219,-3.00963 -2.480468,-5.82084 2.248958,-5.22552 4.365625,-2.01745 10.583333,3.10886 1.918229,3.43958 -2.149739,5.65547 -6.217709,3.14193 -1.322916,3.93567 0.496093,0.26459 10.054167,-4.99401 3.009635,-7.87136 -3.241145,-6.7138 -3.770313,-1.25677 19.189295,-45.59417 2.408767,-0.23386 6.11546,0.21047 -0.163701,-8.67624 z"
style="opacity:1;vector-effect:none;fill:#ffd42a;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
id="path1309-9-6"
d="m 16.205729,222.7513 -2.414323,-5.27513 2.414323,-5.52318 4.084505,-2.08359 8.813932,2.53008 -1.455208,-2.61276 -10.583333,-3.10886 -4.365625,2.01745 -2.248958,5.22552 2.480468,5.82084 z"
style="fill:#aa8800;fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path1311-9-0"
d="m 20.372916,226.22396 3.819922,2.46393 8.813932,-4.84518 2.745052,-7.12722 -3.224609,-6.35 -0.859896,-0.77721 1.769401,3.77031 -3.009635,7.87136 z"
style="fill:#aa8800;fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path1313-60"
d="m 30.195573,206.64479 17.114474,-34.64341 2.291834,0.6782 6.056998,-0.44434 0.11693,-12.48817 -1.637027,0.0234 -6.11546,-0.21047 -2.408767,0.23386 -19.189295,45.59417 z"
style="fill:#aa8800;fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path1307-7-2"
d="m 48.766014,150.7681 -2.265495,-0.97565 c 0,0 -2.501302,-0.25964 -3.869531,3.68763 -5.301875,15.29564 -21.665365,50.67717 -21.665365,50.67717 l -4.057486,-1.02899 -6.9201173,3.38424 -3.4395835,7.60677 4.1671878,9.12812 0.661458,0.1323 3.538802,2.44739 1.289844,-3.07578 -3.274219,-3.00963 -2.480468,-5.82084 2.248958,-5.22552 4.365625,-2.01745 10.583333,3.10886 1.91823,3.43958 -2.149739,5.65547 -6.21771,3.14193 -1.322916,3.93567 0.496093,0.26459 10.054167,-4.99401 3.009635,-7.87136 -3.241144,-6.7138 -3.770314,-1.25677 19.189295,-45.59417 2.408769,-0.23386 6.11546,0.21047 -0.163703,-8.67624 z"
style="opacity:1;vector-effect:none;fill:url(#linearGradient5530);fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g1319-6-7-6"
transform="matrix(-1,0,0,1,209.90955,-93.731423)">
<path
id="path1307-0-61-2"
d="m 48.766015,150.7681 -2.265495,-0.97565 c 0,0 -2.501303,-0.25964 -3.869531,3.68763 -5.301875,15.29564 -21.665365,50.67717 -21.665365,50.67717 l -4.057486,-1.02899 -6.9201173,3.38424 -3.4395833,7.60677 4.1671876,9.12812 0.661458,0.1323 3.538802,2.44739 1.289844,-3.07578 -3.274219,-3.00963 -2.480468,-5.82084 2.248958,-5.22552 4.365625,-2.01745 10.583333,3.10886 1.918229,3.43958 -2.149739,5.65547 -6.217709,3.14193 -1.322916,3.93567 0.496093,0.26459 10.054167,-4.99401 3.009635,-7.87136 -3.241145,-6.7138 -3.770313,-1.25677 19.189295,-45.59417 2.408767,-0.23386 6.11546,0.21047 -0.163701,-8.67624 z"
style="opacity:1;vector-effect:none;fill:#ffd42a;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
id="path1309-6-3-6"
d="m 16.205729,222.7513 -2.414323,-5.27513 2.414323,-5.52318 4.084505,-2.08359 8.813932,2.53008 -1.455208,-2.61276 -10.583333,-3.10886 -4.365625,2.01745 -2.248958,5.22552 2.480468,5.82084 z"
style="fill:#aa8800;fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path1311-2-2-1"
d="m 20.372916,226.22396 3.819922,2.46393 8.813932,-4.84518 2.745052,-7.12722 -3.224609,-6.35 -0.859896,-0.77721 1.769401,3.77031 -3.009635,7.87136 z"
style="fill:#aa8800;fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path1313-6-1"
d="m 30.195573,206.64479 17.114474,-34.64341 2.291834,0.6782 6.056998,-0.44434 0.11693,-12.48817 -1.637027,0.0234 -6.11546,-0.21047 -2.408767,0.23386 -19.189295,45.59417 z"
style="fill:#aa8800;fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path1307-0-6-5"
d="m 48.766015,150.7681 -2.2655,-0.97565 c 0,0 -2.5013,-0.25964 -3.86953,3.68763 -5.30187,15.29564 -21.66536,50.67717 -21.66536,50.67717 l -4.05749,-1.02899 -6.9201204,3.38424 -3.43958,7.60677 4.1671904,9.12812 0.66145,0.1323 3.53881,2.44739 1.28984,-3.07578 -3.27422,-3.00963 -2.48046,-5.82084 2.24895,-5.22552 4.36563,-2.01745 10.58333,3.10886 1.91823,3.43958 -2.14974,5.65547 -6.21771,3.14193 -1.32291,3.93567 0.49609,0.26459 10.05417,-4.99401 3.00963,-7.87136 -3.24114,-6.7138 -3.77032,-1.25677 19.1893,-45.59417 2.40877,-0.23386 6.11546,0.21047 -0.16371,-8.67624 z"
style="opacity:1;vector-effect:none;fill:url(#linearGradient976);fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g1305-9-8"
transform="translate(0,-92.421802)">
<g
id="g1260-9-7">
<path
style="opacity:1;vector-effect:none;fill:#ffd42a;fill-opacity:1;stroke:#000000;stroke-width:0.49986845;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 158.16008,114.30791 c 0.74836,0.0234 2.82972,-0.35079 2.82972,-0.35079 l 0.21047,0.53788 0.44434,0.35079 v 0.65481 l 0.44433,0.46773 -0.0935,1.14591 0.39756,0.53788 -0.11693,1.42656 0.44434,0.58465 -0.25725,1.66041 0.35079,0.23386 -0.14032,2.33861 0.30402,0.37417 -0.23386,2.29184 0.32741,0.63142 -0.28063,2.05798 0.25724,0.95883 c 0,0 -0.37418,1.49671 -0.37418,1.33301 0,-0.16371 0.37418,1.52009 0.37418,1.52009 l -0.42095,1.63703 0.35079,1.47332 -0.46772,0.72497 -0.37418,1.5201 0.49111,0.72496 -0.35079,1.00561 0.0702,1.68379 -0.39756,0.25725 0.21047,2.0112 -0.39756,0.30402 -0.0468,1.61364 -0.42095,0.1637 0.0935,1.26285 -0.42095,0.14032 v 0.77174 l -3.71839,-0.0234 z"
id="path1254-1-9" />
<path
style="opacity:1;vector-effect:none;fill:#ffd42a;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 154.45052,175.20878 0.16536,0.59531 4.36563,0.54591 0.29765,-0.39688 0.29766,-0.39687 0.16537,-0.95912 0.56224,0.0992 -0.1323,-1.48828 0.46302,-0.0992 0.0992,-2.28203 0.62839,0.13229 -0.29766,-2.57968 0.52917,0.0661 -0.0661,-2.18281 0.42995,-0.79375 -0.26458,-1.88516 0.33073,-1.38906 -0.46302,-1.38906 c 0,0 0.79375,-0.95912 0.76067,-1.48828 -0.0331,-0.52917 -0.69453,-0.89297 -0.69453,-0.89297 l 0.59531,-1.62057 -0.33072,-1.12448 0.29765,-2.54662 -0.39687,0.13229 c 0,0 0.0992,-1.78593 0.0661,-1.9513 -0.0331,-0.16536 -0.42995,-0.89297 -0.42995,-0.89297 0,0 0.0331,-0.46302 0.0331,-0.92604 0,-0.46302 -0.23151,-0.16536 -0.23151,-0.16536 l -0.26405,-0.97138 v -0.77174 l -4.5646,0.12254 z"
id="path1256-4-2" />
</g>
<g
id="g1260-0-9-0"
transform="matrix(-1,0,0,1,210.11395,0.12693201)">
<path
style="fill:#ffd42a;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 158.16008,114.30791 c 0.74836,0.0234 2.82972,-0.35079 2.82972,-0.35079 l 0.21047,0.53788 0.44434,0.35079 v 0.65481 l 0.44433,0.46773 -0.0935,1.14591 0.39756,0.53788 -0.11693,1.42656 0.44434,0.58465 -0.25725,1.66041 0.35079,0.23386 -0.14032,2.33861 0.30402,0.37417 -0.23386,2.29184 0.32741,0.63142 -0.28063,2.05798 0.25724,0.95883 c 0,0 -0.37418,1.49671 -0.37418,1.33301 0,-0.16371 0.37418,1.52009 0.37418,1.52009 l -0.42095,1.63703 0.35079,1.47332 -0.46772,0.72497 -0.37418,1.5201 0.49111,0.72496 -0.35079,1.00561 0.0702,1.68379 -0.39756,0.25725 0.21047,2.0112 -0.39756,0.30402 -0.0468,1.61364 -0.42095,0.1637 0.0935,1.26285 -0.42095,0.14032 v 0.77174 l -3.71839,-0.0234 z"
id="path1254-9-1-2" />
<path
style="opacity:1;vector-effect:none;fill:#ffd42a;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 154.24005,175.41926 0.16536,0.59531 4.5761,0.33543 0.29765,-0.39688 0.29766,-0.39687 0.16537,-0.95912 0.56224,0.0992 -0.1323,-1.48828 0.46302,-0.0992 0.0992,-2.28203 0.62839,0.13229 -0.29766,-2.57968 0.52917,0.0661 -0.0661,-2.18281 0.42995,-0.79375 -0.26458,-1.88516 0.33073,-1.38906 -0.46302,-1.38906 c 0,0 0.79375,-0.95912 0.76067,-1.48828 -0.0331,-0.52917 -0.69453,-0.89297 -0.69453,-0.89297 l 0.59531,-1.62057 -0.33072,-1.12448 0.29765,-2.54662 -0.39687,0.13229 c 0,0 0.0992,-1.78593 0.0661,-1.9513 -0.0331,-0.16536 -0.42995,-0.89297 -0.42995,-0.89297 0,0 0.0331,-0.46302 0.0331,-0.92604 0,-0.46302 -0.23151,-0.16536 -0.23151,-0.16536 l -0.26405,-0.97138 v -0.77174 l -4.5646,0.12254 z"
id="path1256-3-0-3" />
</g>
<path
id="rect1236-7-7"
d="m 104.47573,103.68049 c 18.29274,0.0244 54.8828,-3.32834 54.46185,7.63123 -0.42095,10.95956 -1.50553,59.44566 -1.58937,61.27668 -0.0838,1.83102 -0.0429,3.36519 -1.7364,3.49036 -1.69346,0.12517 -95.742307,0.0145 -99.313979,0.23248 -3.571672,0.21802 -3.704184,-1.99334 -3.852779,-3.38976 -0.148595,-1.39642 -0.795638,-55.89294 -0.609415,-63.07534 0.219049,-8.44846 34.347359,-6.19005 52.640093,-6.16565 z"
style="opacity:1;vector-effect:none;fill:#5bcbf5;fill-opacity:1;stroke:#000000;stroke-width:0.4300389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
id="path1176-5-5"
d="m 104.79154,150.20586 6.7848,3.91721 v 7.4268 l -6.70074,3.86868 -6.589986,-3.80473 v -7.7534 z"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#c0c0c0;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 105.6889,164.18129 c 0,0 5.07016,-3.10398 5.18219,-2.99194 0.11204,0.11203 0,-5.30936 0,-5.30936"
id="path2214-8" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.19008262"
d="m 152.14676,172.69249 c 0.93772,-21.34277 1.78189,-43.99515 1.40998,-64.87018"
id="path1061-7" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.19008262"
d="M 58.119322,173.06676 C 57.181601,151.72399 56.337431,129.07161 56.709341,108.19658"
id="path1061-1-0" />
</g>
</g>
</g>
</g>
</g>
<g
id="g2087">
<path
id="path1063-2-2"
d="m 83.931433,188.07318 c -0.781076,0.002 -1.56959,0.0454 -2.363163,0.13126 -5.347882,0.57886 -10.07814,3.00091 -13.66325,6.59236 -0.991862,-0.91176 -6.087752,-5.58428 -6.667809,-5.8446 -1.362781,0.1046 -2.935385,0.60047 -3.67161,1.89859 0.415237,0.39308 2.827586,2.07605 3.882451,3.00499 1.658001,1.46006 2.575695,2.50442 3.793048,4.12481 -3.219087,4.60397 -4.874482,10.40384 -4.258138,16.50028 1.328198,13.13761 12.697645,22.67369 25.394833,21.29948 12.697187,-1.37421 21.913895,-13.1383 20.585825,-26.27592 v -5.3e-4 C 105.71831,197.18743 95.647577,188.03654 83.931433,188.07318 Z"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 57.565707,190.85056 c -0.859797,-0.67523 -2.921217,-2.34507 -3.598964,-3.13683 0.74141,-0.50798 23.158254,-10.39943 30.234872,-14.33717 0.732849,0.63423 1.457962,1.96521 2.064735,3.26587 -6.10703,3.91341 -25.668977,12.02269 -25.028897,12.30994 -2.362636,1.21941 -1.552673,0.68022 -3.671746,1.89819 z"
id="path1063-3-2" />
<path
id="path1063-2-8-5"
d="m 86.550362,234.7766 c 11.959428,-1.29435 20.640608,-12.3749 19.389708,-24.74916 v -5e-4"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#c0c0c0;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g2082">
<path
id="path1012-3-7"
d="m 151.5294,187.02056 c -0.57187,0.29697 -5.53216,5.4007 -6.36935,6.26383 -3.5387,-2.87899 -7.94129,-4.70865 -12.80177,-5.00592 -12.74743,-0.77964 -23.80986,9.26767 -24.70917,22.44147 -0.89932,13.17382 8.70538,24.48551 21.45277,25.26555 12.7474,0.78003 23.81041,-9.26701 24.71011,-22.4408 l -2.6e-4,-0.002 c 0.4531,-6.64016 -1.76327,-12.80602 -5.70471,-17.38969 1.12544,-1.7736 2.18559,-3.54649 5.02281,-5.73022 0.74461,-0.5731 1.90318,-1.58311 2.13319,-1.93699 -0.58932,-0.59397 -1.70794,-0.33533 -3.73362,-1.46562 z"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 155.26324,188.486 c 2.11383,-1.39877 2.8234,-2.828 2.8234,-2.828 -1.90758,-1.0219 -17.90007,-8.36603 -28.37955,-13.81904 -0.85031,0.46226 -2.09925,2.88812 -2.50745,3.49489 7.29266,5.09988 24.19871,12.0834 28.0636,13.15215 z"
id="path1063-5-6-6" />
<path
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#c0c0c0;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 133.0339,234.61781 c 11.95943,-1.29435 20.64061,-12.3749 19.38971,-24.74916 v -5e-4"
id="path1063-2-8-6" />
</g>
<g
id="g2077">
<g
style="stroke:#000000;stroke-opacity:1"
transform="translate(0.9597498,91.940427)"
id="g1174-8">
<path
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1597003px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 89.527261,119.29922 a 5.323614,5.323614 0 0 1 -5.32361,5.32361 5.323614,5.323614 0 0 1 -5.32362,-5.32361 5.323614,5.323614 0 0 1 5.32362,-5.32362 5.323614,5.323614 0 0 1 5.32361,5.32362 z"
id="path1046-7-6-6-9" />
<ellipse
cy="119.29922"
cx="88.37355"
id="path1046-3-5-2-7"
style="opacity:1;vector-effect:none;fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.0142622px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
rx="0.20181125"
ry="1.1200297" />
</g>
<g
id="g2069"
transform="translate(0,8.1892766)">
<path
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.1597003px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 136.27076,204.00558 a 5.3236141,5.3236141 0 0 1 -6.1429,4.35275 5.3236141,5.3236141 0 0 1 -4.35276,-6.1429 5.3236141,5.3236141 0 0 1 6.14291,-4.35276 5.3236141,5.3236141 0 0 1 4.35275,6.14291 z"
id="path1046-7-5-3" />
<ellipse
transform="rotate(9.6792767)"
cy="178.18983"
cx="167.47719"
id="path1046-3-5-29"
style="opacity:1;vector-effect:none;fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.0142622px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
rx="0.20181125"
ry="1.1200297" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 47.1 (45422) - http://www.bohemiancoding.com/sketch -->
<title>bitmap</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="bitmap" fill="#FFFFFF">
<path d="M4,3 L16,3 L16,4 L4,4 L4,3 Z M2,5 L3,5 L3,13 L2,13 L2,5 Z M17,5 L18,5 L18,13 L17,13 L17,5 Z M2,13 L18,13 L18,15 L2,15 L2,13 Z M4,12 L16,12 L16,13 L4,13 L4,12 Z M5,11 L8,11 L8,12 L5,12 L5,11 Z M6,10 L7,10 L7,11 L6,11 L6,10 Z M9,11 L16,11 L16,12 L9,12 L9,11 Z M10,10 L15,10 L15,11 L10,11 L10,10 Z M11,9 L14,9 L14,10 L11,10 L11,9 Z M12,8 L13,8 L13,9 L12,9 L12,8 Z M16,12 L17,12 L17,13 L16,13 L16,12 Z M3,15 L17,15 L17,16 L3,16 L3,15 Z M3,4 L4,4 L4,5 L3,5 L3,4 Z M16,4 L17,4 L17,5 L16,5 L16,4 Z M4,16 L16,16 L16,17 L4,17 L4,16 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>Extensions/Software/Video-Sensing-Block</title>
<desc>Created with Sketch.</desc>
<g id="Extensions/Software/Video-Sensing-Block" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-opacity="0.15">
<g id="video-motion" transform="translate(0.000000, 10.000000)" fill-rule="nonzero" stroke="#000000">
<circle id="Oval-Copy" fill="#FFFFFF" opacity="0.25" stroke-linecap="round" stroke-linejoin="round" cx="32" cy="16" r="4.5"></circle>
<circle id="Oval-Copy" fill="#FFFFFF" opacity="0.5" stroke-linecap="round" stroke-linejoin="round" cx="32" cy="12" r="4.5"></circle>
<circle id="Oval-Copy" fill="#FFFFFF" opacity="0.75" stroke-linecap="round" stroke-linejoin="round" cx="32" cy="8" r="4.5"></circle>
<circle id="Oval" fill="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" cx="32" cy="4" r="4.5"></circle>
<path d="M22.6719477,4.41957649 L16.5,8.41991298 L16.5,6.1 C16.5,4.08976454 14.9371806,2.5 13,2.5 L4.1,2.5 C2.07614237,2.5 0.5,4.07614237 0.5,6.1 L0.5,14 C0.5,15.9273987 2.08449839,17.5118971 4.1,17.6 L13,17.6 C14.9016602,17.6 16.5,15.946545 16.5,14 L16.5,11.7169048 L22.7572479,15.4712535 L22.8535534,15.5464466 C22.8737886,15.5666818 22.951531,15.6 23,15.6 C23.2669865,15.6 23.5,15.3825207 23.5,15.1 L23.5,4.8 C23.5,4.83676538 23.4438058,4.70564563 23.3712535,4.55724788 C23.2259056,4.31500139 22.9415937,4.25813899 22.6719477,4.41957649 Z" id="video_37_" fill="#4D4D4D"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="34px" height="34px" viewBox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
<title>add extension</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="add-extension">
<g transform="translate(4.000000, 5.000000)">
<path d="M18,15.51 C18,15.786 17.776,16.01 17.5,16.01 L7.197,16.01 C7.064,16.01 6.937,16.062 6.844,16.156 L6.146,16.854 C6.053,16.947 5.926,17 5.793,17 L3.207,17 C3.074,17 2.947,16.947 2.854,16.854 L2.156,16.156 C2.062,16.062 1.936,16.01 1.803,16.01 L0.5,16.01 C0.224,16.01 0,15.786 0,15.51 L0,11.5 C0,11.224 0.224,11 0.5,11 L1.793,11 C1.926,11 2.053,11.053 2.146,11.146 L2.854,11.854 C2.947,11.947 3.074,12 3.207,12 L5.793,12 C5.926,12 6.053,11.947 6.146,11.854 L6.854,11.146 C6.947,11.053 7.074,11 7.207,11 L17.5,11 C17.776,11 18,11.224 18,11.5 L18,15.51 Z M12.9961,8.51 C12.9961,8.786 12.7721,9.01 12.4961,9.01 L7.1971,9.01 C7.0641,9.01 6.9371,9.062 6.8441,9.156 L6.1461,9.854 C6.0531,9.947 5.9261,10 5.7931,10 L3.2071,10 C3.0741,10 2.9471,9.947 2.8531,9.854 L2.1561,9.156 C2.0621,9.062 1.9351,9.01 1.8031,9.01 L0.5001,9.01 C0.2241,9.01 0.0001,8.786 0.0001,8.51 L0.0001,4.5 C0.0001,4.224 0.2241,4 0.5001,4 L1.7931,4 C1.9261,4 2.0531,4.053 2.1461,4.146 L2.8531,4.854 C2.9471,4.947 3.0741,5 3.2071,5 L5.7931,5 C5.9261,5 6.0531,4.947 6.1461,4.854 L6.8531,4.146 C6.9471,4.053 7.0741,4 7.2071,4 L12.4961,4 C12.7721,4 12.9961,4.224 12.9961,4.5 L12.9961,8.51 Z" id="Combined-Shape" fill="#FFFFFF"></path>
<g id="+" transform="translate(16.000000, 0.000000)" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M2,0 L2,4" id="Shape"></path>
<path d="M4,2 L0,2" id="Shape"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="108px" height="48px" viewBox="0 0 108 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>wedo-illustration</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="wedo-illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="wedo" transform="translate(2.000000, 2.000000)">
<path d="M17.3432381,0.495238095 L23.2860952,0.495238095 C23.8331201,0.495238095 24.2765714,0.938689391 24.2765714,1.48571429 L24.2765714,4.45714286 L16.3527619,4.45714286 L16.3527619,1.48571429 C16.3527619,0.938689391 16.7962132,0.495238095 17.3432381,0.495238095 Z" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M21.5428571,0.495238095 L21.5428571,4.45714286 L24.2666667,4.45714286 L24.2666667,1.23809524 C24.234804,1.00778495 24.1122456,0.799750406 23.9262425,0.660248071 C23.7402394,0.520745736 23.5062099,0.461339413 23.2761905,0.495238095 L21.5428571,0.495238095 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.3432381,0.495238095 L23.2860952,0.495238095 C23.8331201,0.495238095 24.2765714,0.938689391 24.2765714,1.48571429 L24.2765714,4.45714286 L16.3527619,4.45714286 L16.3527619,1.48571429 C16.3527619,0.938689391 16.7962132,0.495238095 17.3432381,0.495238095 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M12.3809524,4.45714286 L81.7142857,4.45714286 C82.8083355,4.45714286 83.6952381,5.34404545 83.6952381,6.43809524 L83.6952381,24.2666667 L0.495238095,24.2666667 L0.495238095,16.3428571 C0.495238095,9.7785584 5.81665364,4.45714286 12.3809524,4.45714286 Z" id="Shape" stroke="#7C87A5" fill="#FFFFFF" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M26.247619,4.45713963 C21.4613509,4.45978939 17.1436423,7.33305662 15.2929524,11.7470476 C15.144645,12.1314215 14.7738877,12.383852 14.3619048,12.3809524 L8.61714286,12.3809524 C8.27597869,12.3834032 7.95756866,12.2100986 7.77440125,11.9222641 C7.59123385,11.6344296 7.56909634,11.272588 7.71580952,10.9645714 C9.74291381,6.96965253 13.8440196,4.45384815 18.3238095,4.45714286 L26.247619,4.45713963 Z" id="Shape" stroke="#3D79CC" fill="#4C97FF" fill-rule="nonzero" opacity="0.75" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M97.5619048,6.43809524 L97.5619048,24.2666667 L89.6380952,24.2666667 L89.6380952,6.43809524 C89.6380952,5.34404545 88.7511926,4.45714286 87.6571429,4.45714286 L95.5809524,4.45714286 C96.6750022,4.45714286 97.5619048,5.34404545 97.5619048,6.43809524 Z" id="Shape" stroke="#7C87A5" fill="#FFFFFF" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M82.7047619,44.0761905 L1.48571429,44.0761905 C0.938689391,44.0761905 0.495238095,43.6327392 0.495238095,43.0857143 L0.495238095,16.3428571 L72.968381,16.3428571 C74.7624344,16.3437015 76.4829046,17.0561115 77.752381,18.3238095 C79.0218573,19.5915075 80.7423275,20.3039176 82.536381,20.3047619 L83.6952381,20.3047619 L83.6952381,43.0857143 C83.6952381,43.6327392 83.2517868,44.0761905 82.7047619,44.0761905 Z" id="Shape" stroke="#7C87A5" fill="#E6E7E8" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M88.6575238,0.495238095 L94.600381,0.495238095 C95.1474058,0.495238095 95.5908571,0.938689391 95.5908571,1.48571429 L95.5908571,4.45714286 L87.6670476,4.45714286 L87.6670476,1.48571429 C87.6670476,0.938689391 88.1104989,0.495238095 88.6575238,0.495238095 Z" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M92.8571429,0.495238095 L92.8571429,4.45714286 L95.5809524,4.45714286 L95.5809524,1.23809524 C95.5490897,1.00778495 95.4265313,0.799750406 95.2405282,0.660248071 C95.0545251,0.520745736 94.8204956,0.461339413 94.5904762,0.495238095 L92.8571429,0.495238095 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M88.6575238,0.495238095 L94.600381,0.495238095 C95.1474058,0.495238095 95.5908571,0.938689391 95.5908571,1.48571429 L95.5908571,4.45714286 L87.6670476,4.45714286 L87.6670476,1.48571429 C87.6670476,0.938689391 88.1104989,0.495238095 88.6575238,0.495238095 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M76.7718095,0.495238095 L82.7146667,0.495238095 C83.2616916,0.495238095 83.7051429,0.938689391 83.7051429,1.48571429 L83.7051429,4.45714286 L75.7813333,4.45714286 L75.7813333,1.48571429 C75.7813333,0.938689391 76.2247846,0.495238095 76.7718095,0.495238095 Z" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M80.9714286,0.495238095 L80.9714286,4.45714286 L83.6952381,4.45714286 L83.6952381,1.23809524 C83.6633754,1.00778495 83.5408171,0.799750406 83.3548139,0.660248071 C83.1688108,0.520745736 82.9347813,0.461339413 82.7047619,0.495238095 L80.9714286,0.495238095 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M76.7718095,0.495238095 L82.7146667,0.495238095 C83.2616916,0.495238095 83.7051429,0.938689391 83.7051429,1.48571429 L83.7051429,4.45714286 L75.7813333,4.45714286 L75.7813333,1.48571429 C75.7813333,0.938689391 76.2247846,0.495238095 76.7718095,0.495238095 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M64.8860952,0.495238095 L70.8289524,0.495238095 C71.3759773,0.495238095 71.8194286,0.938689391 71.8194286,1.48571429 L71.8194286,4.45714286 L63.895619,4.45714286 L63.895619,1.48571429 C63.895619,0.938689391 64.3390703,0.495238095 64.8860952,0.495238095 Z" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M69.0857143,0.495238095 L69.0857143,4.45714286 L71.8095238,4.45714286 L71.8095238,1.23809524 C71.7776611,1.00778495 71.6551028,0.799750406 71.4690997,0.660248071 C71.2830965,0.520745736 71.0490671,0.461339413 70.8190476,0.495238095 L69.0857143,0.495238095 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M64.8860952,0.495238095 L70.8289524,0.495238095 C71.3759773,0.495238095 71.8194286,0.938689391 71.8194286,1.48571429 L71.8194286,4.45714286 L63.895619,4.45714286 L63.895619,1.48571429 C63.895619,0.938689391 64.3390703,0.495238095 64.8860952,0.495238095 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M53.000381,0.495238095 L58.9432381,0.495238095 C59.490263,0.495238095 59.9337143,0.938689391 59.9337143,1.48571429 L59.9337143,4.45714286 L52.0099048,4.45714286 L52.0099048,1.48571429 C52.0099048,0.938689391 52.4533561,0.495238095 53.000381,0.495238095 Z" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M57.2,0.495238095 L57.2,4.45714286 L59.9238095,4.45714286 L59.9238095,1.23809524 C59.8919468,1.00778495 59.7693885,0.799750406 59.5833854,0.660248071 C59.3973823,0.520745736 59.1633528,0.461339413 58.9333333,0.495238095 L57.2,0.495238095 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M53.000381,0.495238095 L58.9432381,0.495238095 C59.490263,0.495238095 59.9337143,0.938689391 59.9337143,1.48571429 L59.9337143,4.45714286 L52.0099048,4.45714286 L52.0099048,1.48571429 C52.0099048,0.938689391 52.4533561,0.495238095 53.000381,0.495238095 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M41.1146667,0.495238095 L47.0575238,0.495238095 C47.6045487,0.495238095 48.048,0.938689391 48.048,1.48571429 L48.048,4.45714286 L40.1241905,4.45714286 L40.1241905,1.48571429 C40.1241905,0.938689391 40.5676418,0.495238095 41.1146667,0.495238095 Z" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M45.3142857,0.495238095 L45.3142857,4.45714286 L48.0380952,4.45714286 L48.0380952,1.23809524 C48.0062325,1.00778495 47.8836742,0.799750406 47.6976711,0.660248071 C47.511668,0.520745736 47.2776385,0.461339413 47.047619,0.495238095 L45.3142857,0.495238095 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M41.1146667,0.495238095 L47.0575238,0.495238095 C47.6045487,0.495238095 48.048,0.938689391 48.048,1.48571429 L48.048,4.45714286 L40.1241905,4.45714286 L40.1241905,1.48571429 C40.1241905,0.938689391 40.5676418,0.495238095 41.1146667,0.495238095 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M29.2289524,0.495238095 L35.1718095,0.495238095 C35.7188344,0.495238095 36.1622857,0.938689391 36.1622857,1.48571429 L36.1622857,4.45714286 L28.2384762,4.45714286 L28.2384762,1.48571429 C28.2384762,0.938689391 28.6819275,0.495238095 29.2289524,0.495238095 Z" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M33.4285714,0.495238095 L33.4285714,4.45714286 L36.152381,4.45714286 L36.152381,1.23809524 C36.1205182,1.00778495 35.9979599,0.799750406 35.8119568,0.660248071 C35.6259537,0.520745736 35.3919242,0.461339413 35.1619048,0.495238095 L33.4285714,0.495238095 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M29.2289524,0.495238095 L35.1718095,0.495238095 C35.7188344,0.495238095 36.1622857,0.938689391 36.1622857,1.48571429 L36.1622857,4.45714286 L28.2384762,4.45714286 L28.2384762,1.48571429 C28.2384762,0.938689391 28.6819275,0.495238095 29.2289524,0.495238095 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M32.1904762,4.45714286 L101.52381,4.45714286 C102.617859,4.45714286 103.504762,5.34404545 103.504762,6.43809524 L103.504762,24.2666667 L20.3047619,24.2666667 L20.3047619,16.3428571 C20.3047619,9.7785584 25.6261774,4.45714286 32.1904762,4.45714286 Z" id="Shape" stroke="#7C87A5" fill="#FFFFFF" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M102.514286,44.0761905 L21.2952381,44.0761905 C20.7482132,44.0761905 20.3047619,43.6327392 20.3047619,43.0857143 L20.3047619,16.3428571 L92.7779048,16.3428571 C94.5719582,16.3437015 96.2924284,17.0561115 97.5619048,18.3238095 C98.8313811,19.5915075 100.551851,20.3039176 102.345905,20.3047619 L103.504762,20.3047619 L103.504762,43.0857143 C103.504762,43.6327392 103.061311,44.0761905 102.514286,44.0761905 Z" id="Shape" stroke="#7C87A5" fill="#E6E7E8" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round"></path>
<rect id="Rectangle-path" stroke="#7C87A5" fill="#E6E7E8" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round" x="36.152381" y="16.3428571" width="51.5047619" height="15.847619" rx="1"></rect>
<polyline id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round" points="91.6190476 16.3428571 95.5809524 12.3809524 103.504762 12.3809524"></polyline>
<path d="M87.6571429,16.3428571 L87.6571429,31.2 C87.6571429,31.7470249 87.2136916,32.1904762 86.6666667,32.1904762 L37.1428571,32.1904762 C36.5958322,32.1904762 36.152381,31.7470249 36.152381,31.2 L36.152381,28.2285714 L80.7931429,28.2285714 C82.3959258,28.2285714 83.6952381,26.9292591 83.6952381,25.3264762 L83.6952381,16.3428571 L87.6571429,16.3428571 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M103.504762,6.43809524 L103.504762,43.0857143 C103.504762,43.6327392 103.061311,44.0761905 102.514286,44.0761905 L21.2952381,44.0761905 C20.7482132,44.0761905 20.3047619,43.6327392 20.3047619,43.0857143 L20.3047619,40.1142857 L96.6407619,40.1142857 C98.2435448,40.1142857 99.5428571,38.8149734 99.5428571,37.2121905 L99.5428571,4.45714286 L101.52381,4.45714286 C102.617859,4.45714286 103.504762,5.34404545 103.504762,6.43809524 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M32.1904762,4.45714286 C25.6261774,4.45714286 20.3047619,9.7785584 20.3047619,16.3428571 L20.3047619,43.0857143 C20.3047619,43.6327392 19.8613106,44.0761905 19.3142857,44.0761905 L1.48571429,44.0761905 C0.938689391,44.0761905 0.495238095,43.6327392 0.495238095,43.0857143 L0.495238095,40.1142857 L13.4407619,40.1142857 C15.0435448,40.1142857 16.3428571,38.8149734 16.3428571,37.2121905 L16.3428571,16.3428571 C16.3428571,9.7785584 21.6642727,4.45714286 28.2285714,4.45714286 L32.1904762,4.45714286 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M76.7718095,12.3809524 L82.7146667,12.3809524 C83.2616916,12.3809524 83.7051429,12.8244037 83.7051429,13.3714286 L83.7051429,16.3428571 L75.7813333,16.3428571 L75.7813333,13.3714286 C75.7813333,12.8244037 76.2247846,12.3809524 76.7718095,12.3809524 Z" id="Shape" fill="#E6E7E8" fill-rule="nonzero"></path>
<path d="M80.9714286,12.3809524 L80.9714286,16.3428571 L83.6952381,16.3428571 L83.6952381,13.1238095 C83.6633754,12.8934992 83.5408171,12.6854647 83.3548139,12.5459624 C83.1688108,12.40646 82.9347813,12.3470537 82.7047619,12.3809524 L80.9714286,12.3809524 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M76.7718095,12.3809524 L82.7146667,12.3809524 C83.2616916,12.3809524 83.7051429,12.8244037 83.7051429,13.3714286 L83.7051429,16.3428571 L75.7813333,16.3428571 L75.7813333,13.3714286 C75.7813333,12.8244037 76.2247846,12.3809524 76.7718095,12.3809524 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M41.1146667,12.3809524 L47.0575238,12.3809524 C47.6045487,12.3809524 48.048,12.8244037 48.048,13.3714286 L48.048,16.3428571 L40.1241905,16.3428571 L40.1241905,13.3714286 C40.1241905,12.8244037 40.5676418,12.3809524 41.1146667,12.3809524 Z" id="Shape" fill="#E6E7E8" fill-rule="nonzero"></path>
<path d="M45.3142857,12.3809524 L45.3142857,16.3428571 L48.0380952,16.3428571 L48.0380952,13.1238095 C48.0062325,12.8934992 47.8836742,12.6854647 47.6976711,12.5459624 C47.511668,12.40646 47.2776385,12.3470537 47.047619,12.3809524 L45.3142857,12.3809524 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M41.1146667,12.3809524 L47.0575238,12.3809524 C47.6045487,12.3809524 48.048,12.8244037 48.048,13.3714286 L48.048,16.3428571 L40.1241905,16.3428571 L40.1241905,13.3714286 C40.1241905,12.8244037 40.5676418,12.3809524 41.1146667,12.3809524 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M64.8860952,12.3809524 L70.8289524,12.3809524 C71.3759773,12.3809524 71.8194286,12.8244037 71.8194286,13.3714286 L71.8194286,16.3428571 L63.895619,16.3428571 L63.895619,13.3714286 C63.895619,12.8244037 64.3390703,12.3809524 64.8860952,12.3809524 Z" id="Shape" fill="#E6E7E8" fill-rule="nonzero"></path>
<path d="M69.0857143,12.3809524 L69.0857143,16.3428571 L71.8095238,16.3428571 L71.8095238,13.1238095 C71.7776611,12.8934992 71.6551028,12.6854647 71.4690997,12.5459624 C71.2830965,12.40646 71.0490671,12.3470537 70.8190476,12.3809524 L69.0857143,12.3809524 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M64.8860952,12.3809524 L70.8289524,12.3809524 C71.3759773,12.3809524 71.8194286,12.8244037 71.8194286,13.3714286 L71.8194286,16.3428571 L63.895619,16.3428571 L63.895619,13.3714286 C63.895619,12.8244037 64.3390703,12.3809524 64.8860952,12.3809524 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M53.000381,12.3809524 L58.9432381,12.3809524 C59.490263,12.3809524 59.9337143,12.8244037 59.9337143,13.3714286 L59.9337143,16.3428571 L52.0099048,16.3428571 L52.0099048,13.3714286 C52.0099048,12.8244037 52.4533561,12.3809524 53.000381,12.3809524 Z" id="Shape" fill="#E6E7E8" fill-rule="nonzero"></path>
<path d="M57.2,12.3809524 L57.2,16.3428571 L59.9238095,16.3428571 L59.9238095,13.1238095 C59.8919468,12.8934992 59.7693885,12.6854647 59.5833854,12.5459624 C59.3973823,12.40646 59.1633528,12.3470537 58.9333333,12.3809524 L57.2,12.3809524 Z" id="Shape" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M53.000381,12.3809524 L58.9432381,12.3809524 C59.490263,12.3809524 59.9337143,12.8244037 59.9337143,13.3714286 L59.9337143,16.3428571 L52.0099048,16.3428571 L52.0099048,13.3714286 C52.0099048,12.8244037 52.4533561,12.3809524 53.000381,12.3809524 Z" id="Shape" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round"></path>
<circle id="Oval" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round" cx="49.8011429" cy="23.6426667" r="4.59580952"></circle>
<circle id="Oval" fill="#7C87A5" fill-rule="nonzero" cx="49.8011429" cy="23.6426667" r="3.2487619"></circle>
<circle id="Oval" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round" cx="49.8011429" cy="23.6426667" r="4.59580952"></circle>
<circle id="Oval" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round" cx="61.9047619" cy="23.6426667" r="4.59580952"></circle>
<circle id="Oval" fill="#7C87A5" fill-rule="nonzero" cx="61.9047619" cy="23.6426667" r="3.2487619"></circle>
<circle id="Oval" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round" cx="61.9047619" cy="23.6426667" r="4.59580952"></circle>
<circle id="Oval" stroke="#7C87A5" stroke-linecap="round" stroke-linejoin="round" cx="74.008381" cy="23.6426667" r="4.59580952"></circle>
<circle id="Oval" fill="#7C87A5" fill-rule="nonzero" cx="74.008381" cy="23.6426667" r="3.2487619"></circle>
<circle id="Oval" stroke="#231F20" fill="#231F20" fill-rule="nonzero" opacity="0.1" stroke-linecap="round" stroke-linejoin="round" cx="74.008381" cy="23.6426667" r="4.59580952"></circle>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="100px" height="100px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.3 (51167) - http://www.bohemiancoding.com/sketch -->
<title>Sound</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Sound" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M12.4785058,12.6666667 C12.3144947,12.6666667 12.1458852,12.6272044 11.9926038,12.5440517 C11.537358,12.2960031 11.3856094,11.7562156 11.6553847,11.3376335 C12.1688774,10.5371131 12.1688774,9.54491867 11.6553847,8.74580756 C11.3856094,8.32581618 11.537358,7.78602861 11.9926038,7.53798001 C12.452448,7.29275014 13.0379829,7.43086811 13.3046926,7.84804076 C14.1737981,9.20103311 14.1737981,10.8809986 13.3046926,12.233991 C13.1268862,12.5130457 12.806528,12.6666667 12.4785058,12.6666667 Z M15.3806784,13.8333333 C15.2408902,13.8333333 15.0958763,13.796281 14.9665396,13.7182064 C14.5785295,13.485306 14.4491928,12.9784829 14.6791247,12.5854634 C15.5949331,11.0160321 15.5949331,9.065491 14.6791247,7.49738299 C14.4491928,7.10436352 14.5785295,6.59621712 14.9665396,6.36331669 C15.3558562,6.13438616 15.8549129,6.26274605 16.0848448,6.65444223 C17.3050517,8.74260632 17.3050517,11.3389168 16.0848448,13.4270809 C15.9319924,13.6890939 15.6602547,13.8333333 15.3806784,13.8333333 Z M10.3043478,5.62501557 L10.3043478,13.873675 C10.3043478,14.850934 9.10969849,15.3625101 8.36478311,14.7038052 L6.7566013,13.2797607 C6.18712394,12.7762834 5.44499329,12.4968737 4.67362297,12.4968737 L4.3923652,12.4968737 C3.62377961,12.4968737 3,11.8935108 3,11.1470686 L3,8.36646989 C3,7.62137743 3.62377961,7.01666471 4.3923652,7.01666471 L4.65830695,7.01666471 C5.42967727,7.01666471 6.17180792,6.73725504 6.74128529,6.23377771 L8.36478311,4.79623519 C9.10969849,4.13753026 10.3043478,4.64910643 10.3043478,5.62501557 Z" id="Combined-Shape" fill="#575E75"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="8px" height="5px" viewBox="0 0 8 5" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch -->
<title>dropdown-caret</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="dropdown-caret" fill="#FFFFFF">
<path d="M4,5 C3.72520708,5 3.45163006,4.89695045 3.24127973,4.68965311 L0.314613572,1.80666227 C-0.104871191,1.39326583 -0.104871191,0.724642023 0.314613572,0.310047331 C0.732882438,-0.10334911 7.26711756,-0.10334911 7.68538643,0.310047331 C8.10487119,0.723443772 8.10487119,1.39326583 7.68538643,1.80666227 L4.75993617,4.68965311 C4.54958583,4.89695045 4.27600882,5 4,5"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 904 B

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