Merge branch '25-add-windows-binary' into 'master'

Resolve "Add Windows binary"

Closes #25, #35, #36, and #37

See merge request libreweb/browser!20
master
Melroy van den Berg 2022-01-21 23:39:53 +00:00
commit 0e0f4b6e7f
17566 changed files with 149487 additions and 28878 deletions

21
.clang-format Normal file
View File

@ -0,0 +1,21 @@
{
BasedOnStyle: LLVM,
UseTab: Never,
IndentWidth: 2,
TabWidth: 2,
AccessModifierOffset: -2,
DerivePointerAlignment: false,
PointerAlignment: Left,
Cpp11BracedListStyle: true,
ConstructorInitializerAllOnOneLineOrOnePerLine: true,
AllowAllConstructorInitializersOnNextLine: false,
# In the future use: PackConstructorInitializers: Never, (iso the two options above)
ColumnLimit: 150,
BreakBeforeBraces: Allman,
FixNamespaceComments: false,
AllowShortIfStatementsOnASingleLine: Never,
IndentCaseLabels: false,
NamespaceIndentation: All,
BinPackParameters: false,
AllowShortFunctionsOnASingleLine: None,
}

37
.github/workflows/codeql-analysis.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: "CodeQL"
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
schedule:
- cron: '30 7 * * 1'
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: true
- name: Install dep packages
run: sudo apt install libcurl4-openssl-dev libgtkmm-3.0-dev
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: cpp
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

2
.gitignore vendored
View File

@ -70,6 +70,8 @@ Thumbs.db
# --------
*.dll
*.exe
!go-ipfs/ipfs.exe
!packaging_win/*
# Build folders
build/

View File

@ -1,4 +1,4 @@
image: danger89/gtk3-docker-cmake-ninja:2.3
image: danger89/gtk3-docker-cmake-ninja:2.5
stages:
- build
@ -12,21 +12,20 @@ variables:
doxygen:
stage: build
before_script:
- mkdir -p build/docs
script:
- doxygen misc/Doxyfile
- ./scripts/build-docs.sh
artifacts:
name: "Doxygen"
paths:
- build/docs/html/
- build_docs/docs/html/
build:
linux_build:
stage: build
script:
- ./scripts/build_prod.sh
- ./scripts/build-lnx-prod.sh
artifacts:
name: "Packages"
expire_in: 1 week
expire_in: 4 weeks
paths:
- build_prod/libreweb-browser-*.deb
- build_prod/libreweb-browser-*.rpm
@ -34,7 +33,11 @@ build:
static_code_analysis:
stage: build
script: ./check.sh
script: ./scripts/cpp-check.sh
code_style_guidelines:
stage: build
script: ./scripts/check-format.sh
#unit_test:
# stage: test

View File

@ -79,6 +79,7 @@
"render.h": "c",
"node.h": "c",
"*.in": "cpp",
"superscript.h": "c"
"superscript.h": "c",
"cmark-gfm.h": "c"
}
}

View File

@ -1,21 +1,38 @@
cmake_minimum_required (VERSION 3.11.0)
cmake_minimum_required (VERSION 3.16.0)
option(DOXYGEN "Build Doxygen documentation" ON)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
include(git_version)
include(GitVersion)
project (libreweb-browser
project(libreweb-browser
VERSION ${GIT_TAG_VERSION}
DESCRIPTION "LibreWeb Browser - Decentralized Web-Browser"
LANGUAGES C CXX)
message("CMAKE_BUILD_TYPE = ${CMAKE_BUILD_TYPE}")
message("PROJECT_VERSION = ${PROJECT_VERSION}")
message(STATUS "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
message(STATUS "PROJECT_VERSION: ${PROJECT_VERSION}")
# Build docs
if(DOXYGEN)
include(Doxygen)
endif()
# Production build
if("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
# Include CPack packaging settings
include(packaging)
include(Packaging)
endif()
set(CMAKE_C_STANDARD 99)
#set(CMAKE_C_STANDARD_REQUIRED YES)
#set(CMAKE_C_EXTENSIONS NO)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
if(NOT CYGWIN)
set(CMAKE_CXX_EXTENSIONS OFF)
endif()
# Disable CTest testcases & install in cpp-ipfs-http-client
@ -25,11 +42,20 @@ set (DISABLE_INSTALL ON CACHE BOOL "Disable Install" FORCE)
add_subdirectory (lib/commonmarker/src)
add_subdirectory (lib/commonmarker/extensions)
add_subdirectory (lib/ipfs-http-client)
add_subdirectory (lib/whereami)
add_subdirectory (src)
# Additional install files
install(FILES misc/libreweb-browser.desktop DESTINATION share/applications)
install(PROGRAMS go-ipfs/ipfs DESTINATION share/libreweb-browser/go-ipfs)
install(DIRECTORY images DESTINATION share/libreweb-browser)
if(WIN32)
# Windows specific
install(DIRECTORY packaging_win/ DESTINATION .)
install(PROGRAMS go-ipfs/ipfs.exe DESTINATION bin)
else()
# UNIX specific
install(FILES misc/libreweb-browser.desktop DESTINATION share/applications)
install(PROGRAMS go-ipfs/ipfs DESTINATION bin)
endif()
# General
install(DIRECTORY images DESTINATION share/libreweb)
install(FILES images/icons/libreweb-browser.png DESTINATION share/icons/hicolor/48x48/apps)
install(FILES images/icons/libreweb-browser.svg DESTINATION share/icons/hicolor/scalable/apps)

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2020-2021 Decentralized World Wide Web
Copyright (c) 2020-2022 LibreWeb - Decentralized World Wide Web Browser
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

149
README.md
View File

@ -1,33 +1,39 @@
# LibreWeb Browser
<!-- Add badge: ![Matrix](https://img.shields.io/matrix/libreweb:matrix.melroy.org) -->
LibreWeb is an **open-source decentralized web browser**, leveraging IPFS. What would you do different; if you could **reinvent** The Internet in 21st century?
With all the knowledge and new technologies available today. I was inspired by Douglas Engelbart, Tim Berners-Lee and Ted Nelson as well as projects like IPFS, Jekyll, ARPANET and more.
Decentralized Web-Browser; a revolution of the WWW.
[![Pipeline](https://gitlab.melroy.org/libreweb/browser/badges/master/pipeline.svg)](https://gitlab.melroy.org/libreweb/browser/-/pipelines/latest)
[![Telegram](https://img.shields.io/badge/chat-on%20telegram-brightgreen)](https://t.me/libreweb)
[![Matrix](https://img.shields.io/badge/chat-on%20matrix-brightgreen)](https://matrix.to/#/#libreweb:melroy.org)
[![Gitter](https://img.shields.io/badge/chat-on%20gitter-brightgreen)](https://gitter.im/LibreWeb/Browser)
[![Roadmap](https://img.shields.io/badge/Roadmap-yellow)](https://gitlab.melroy.org/libreweb/browser/-/milestones)
[![Release](https://img.shields.io/badge/Release-latest-orange)](https://gitlab.melroy.org/libreweb/browser/-/releases)
What would you do different; if you could **reinvent** The Internet in 21st century? With all the knowledge and new technologies available today.
*Note:* This project is still work in progress. However, we have a working [alpha version available](https://gitlab.melroy.org/libreweb/browser/-/releases).
I was inspired by Douglas Engelbart, Tim Berners-Lee and Ted Nelson as well as projects like IPFS, Jekyll, ARPANET, and more.
## For Users
*Note:* Project is still in development!
### Download
## Download
Just download the latest LibreWeb release and get started:
* [Download the latest release](https://gitlab.melroy.org/libreweb/browser/-/releases)
## Documentation
### Documentation
Visit the [dedicated documentation site](https://docs.libreweb.org) for *user* documentation.
## Screenshots
### Screenshots
![Browser Screenshot](./misc/browser_screenshot.png)
![Browser Markdown Editor](./misc/browser_screenshot_2.png)
## Community
### Community
Join our [Telegram group](https://t.me/libreweb) or [Matrix channel](https://matrix.to/#/#libreweb:melroy.org?via=melroy.org) and become part of our community!
## Ideas/Features
### Ideas / Features
The current success criteria:
@ -39,28 +45,33 @@ The current success criteria:
* Data is stored **redundantly** within the network (no single-point of failure);
* **Versioning**/revisions of content and documenents (automatically solves broken 'links', that can't happy anymore);
* Publisher user should be able to add additional information about the document/page, eg. title or path (similar in how Jekyll is using the `YML` format for meta data)
* Human-readable source-code (eg. `Markdown`, could be extended as well);
* End-user is in control about the layout and styling (just like with e-books);
* Human-readable source-code (eg. `Markdown` format, could be extended as well);
* You are in control about the layout and styling (just like with e-books);
* Content is King;
* Fast and Extensible!
*Note:* Since HyperText (so is HTML) is not used, you can even ditch the HTTP protocol. However TLS, for encryption, can still be used.
## Developers
---
Decentralized Browser is written C++ together with some [libraries](/lib). It's using the [cmark-gfm](https://github.com/github/cmark-gfm) library for example, which is used for CommonMark (markdown) parsing.
The sections below are mainly relevant for software developers, who want to contribute or help LibreWeb Browser.
## For Developers
Decentralized Browser is written C++ together with some [external libraries](/lib). LibreWeb is using the [cmark-gfm](https://github.com/github/cmark-gfm) library for example, which is used for CommonMark (markdown) parsing.
We're using markdown as the source-code of the content/site. No HTML and JavaScript anymore, content is king after all.
LibreWeb Browser is using [Gnome GTK3](https://developer.gnome.org/gtk3/stable/) as UI framework.
LibreWeb Browser is also using [Gnome GTK3](https://developer.gnome.org/gtk3/stable/) framework for the GUI. Using the C++ bindings, called [Gtkmm](https://gtkmm.org/en/).
### Development Environment
I'm using VSCodium editor, with the following extensions installed: `C/C++`, `CMake`, `CMake Tools`, `PlantUML`, `Markdown All in One`, `vscode-icons` and `GitLab Workflow`.
Personally, I'm using VSCodium editor, with the following extensions installed: `C/C++`, `CMake`, `CMake Tools`, `PlantUML`, `Markdown All in One`, `vscode-icons` and `GitLab Workflow`.
But that is up to you.
### Build Dependencies
For the build you need at least:
For the GNU/Linux build you need at least:
* GCC 9 or higher (`build-essential`, `g++-9`)
* CMake (Package: `cmake`)
@ -68,10 +79,110 @@ For the build you need at least:
* Libcurl (Package: `libcurl4-openssl-dev`)
* GTK & Pango (including C++ bindings):
* Package: `libgtkmm-3.0-dev` under Debian based distros
* Clang-format (Package: `clang-format`)
### Developer Docs
*Note:* For cross-compiling towards Windows, see the cross-compile section below.
See latest [Developer Docs](https://gitlab.melroy.org/libreweb/browser/-/jobs/artifacts/master/file/build/docs/html/index.html?job=doxygen).
### Build
Clone the source-code with SSH (do not forget `--recurse-submodules`):
```sh
git clone --recurse-submodules -j5 git@gitlab.melroy.org:libreweb/browser.git
```
Start the Linux build, which is using CMake and Ninja build system, using the wrapper script:
```sh
./scripts/build-lnx.sh
```
Optionally, use the VSCode `CMake Tools` extension to start the build or build with debug targets.
Build a release target, including packaging under GNU/Linux, using: `./scripts/build-lnx-prod.sh`
*Note:* Root access is required for Linux packaging; add `/opt/mxe/usr/bin` to the secure_path using: `sudo visudo`.
### C++ Coding Style Guidelines
#### Automated Clang-format
We use our [own Clang LLVM C++ Programming Style Format](.clang-format), using [clang-format](https://clang.llvm.org/docs/ClangFormat.html) command.
To automatically comply to our style format execute following script (inplace edits are performed for you):
```sh
./scripts/fix-format.sh
```
Check only for errors, run: `./scripts/check-format.sh`
#### Core Guidelines
We also tend to follow the [C++ Core Guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) as much as possible.
### Doxygen
See latest [Developer Documentation](https://gitlab.melroy.org/libreweb/browser/-/jobs/artifacts/master/file/build/docs/html/index.html?job=doxygen).
Doxygen is build by default. You can disable the doxygen build, if you want, using: `cmake -DDOXYGEN:BOOL=FALSE ..`
### Memory Leaks
First **build** the (GNU/Linux) target with *debug symbols*. Build target file should be present: `./build/bin/libreweb-browser`.
Next, check for memory leaks using `valgrind` by executing:
```sh
./scripts/valgrind.sh
```
### Cross-compiling Build Dependencies
For the [cross-compiling](https://en.wikipedia.org/wiki/Cross_compiler) towards **Windows** (while under GNU/Linux), you need at least:
* [MXE Gtkmm3 / Curl Binary packages](mxe.cc) (static build using Meson build with GCC11, see below for more info)
* CMake (Package: `cmake`)
* Ninja (Package: `ninja-build`)
* Nullsoft Scriptable Install System (Package: `nsis`)
For more information and the latest pre-build GTK3 Windows download, please my other [GTK 3 bundle repo](https://gitlab.melroy.org/melroy/gtk-3-bundle-for-windows).
**Note:** We're currently busy trying to upgrade the [whole GTK stack](https://github.com/danger89/mxe/tree/update_gtk).
We used the following build command to get the Windows dependencies and MXE cross-compilation toolset:
```sh
make gtkmm3 curl -j 16 MXE_TARGETS='x86_64-w64-mingw32.static' MXE_PLUGIN_DIRS='plugins/gcc10'
```
*NOTE:* Soon we need gcc11, but GTK3 upstream needs to create a new release that fixes the GCC11 builds.
Add the following line to the end of the `~/.bashrc` file:
```bash
export PATH="/opt/mxe/usr/bin:$PATH"
```
#### Cross-compile Build
Please, be sure you meet all the requirements above. So your MXE environment should be ready in: `/opt/mxe/usr`.
To start the *cross-compile* build towards Windows 64-bit (using GNU/Linux as host) you can use the commands below.
Build a Windows development release:
```sh
./scripts/build-win.sh
```
Build a production release + packaging with [NSIS](https://sourceforge.net/projects/nsis/), execute the following:
```sh
./scripts/build-win-prod.sh
```
See also: [Windows readme](Windows.md) file.
### Research

40
Windows.md Normal file
View File

@ -0,0 +1,40 @@
# Windows Packaging
The additional files in `packaging_win` are required for packaging to the Windows platform.
## GTK Windows 10 Theme
We ship the Windows binary with the Windows 10 theme. Giving LibreWeb a very native look under Windows.
For that we depend on 3rd partt GTK theme.
* [Windows 10 theme](https://github.com/B00merang-Project/Windows-10)
* [Windows 10 icon set](https://github.com/B00merang-Artwork/Windows-10/)
Those Windows 10 theme/icon files are stored inside the respectively `share/themes` and `share/icons` directories.
## Native GTK Theme Icons
Icons themes:
* Adwaita (**Source:** `/usr/share/icons/Adwaita` Linux Mint 20.x distro)
* hicolor - Used as fallback theme (**Source:** `/usr/share/icons/hicolor` Linux Mint 20.x distro)
* Important: Do not forget to remove all the apps folder contents/icons. This lead to extra size and maybe installation issues due to symbolic links.
Therefor run the `./scripts/clean-up-hicolor-icons.sh` script. Which removes all `apps` directories.
Those all the icon themes are stored in the `share/icons` directory.
## Windows GTK Binary files
The following GTK binary files should be shipped together with the `libreweb-browser.exe` binary.
The files should be placed in the `bin` directory.
* gdbus.exe / dbus-daemon.exe - Creating a gdbus daemon under Windows (**Source:** MXE cross-build)
* gspawn-win64-helper.exe - Starting processes under Windows (**Source:** MXE cross-build)
* gspawn-win64-console.exe - Starting processes under Windows (**Source:** MXE cross-build)
* And more...
And for debugging purpose:
* gdb.exe - For debugging the binary (**source:** MinGW)

View File

@ -1,2 +0,0 @@
#!/usr/bin/env bash
cppcheck --enable=all --suppressions-list=suppressions.txt --error-exitcode=1 "$@" -I lib/commonmarker/src/ -I lib/commonmarker/extensions/ ./src

16
cmake/Doxygen.cmake Normal file
View File

@ -0,0 +1,16 @@
find_package(Doxygen
REQUIRED dot
OPTIONAL_COMPONENTS mscgen dia)
set(DOXYFILE_IN ${CMAKE_SOURCE_DIR}/misc/Doxyfile.in)
set(DOXYFILE ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
# Build (configure) doxyfile
configure_file(${DOXYFILE_IN} ${DOXYFILE} @ONLY)
# The depends ALL option build the docs together with the app
add_custom_target(doc ALL
COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYFILE}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMENT "Generating documentation with Doxygen"
VERBATIM
)

76
cmake/GSettings.cmake Normal file
View File

@ -0,0 +1,76 @@
# Source: https://git.jami.net/savoirfairelinux/jami-client-gnome/-/blob/master/cmake/GSettings.cmake
option(GSETTINGS_LOCALCOMPILE "Compile GSettings schemas locally during build to the location of the binary (no need to run 'make install')" ON)
option(GSETTINGS_PREFIXINSTALL "Install GSettings Schemas relative to the location specified by the install prefix (instead of relative to where GLib is installed)" ON)
option(GSETTINGS_COMPILE "Compile GSettings Schemas after installation" ${GSETTINGS_LOCALCOMPILE})
if(GSETTINGS_LOCALCOMPILE)
message(STATUS "GSettings schemas will be compiled to the build directory during the build.")
endif()
if(GSETTINGS_PREFIXINSTALL)
message (STATUS "GSettings schemas will be installed relative to the cmake install prefix.")
else()
message (STATUS "GSettings schemas will be installed relative to the GLib install location.")
endif()
if(GSETTINGS_COMPILE)
message (STATUS "GSettings shemas will be compiled after install.")
endif()
macro(add_schema SCHEMA_NAME OUTPUT)
set(PKG_CONFIG_EXECUTABLE pkg-config)
if(GSETTINGS_PREFIXINSTALL)
set (GSETTINGS_DIR "${CMAKE_INSTALL_PREFIX}/share/glib-2.0/schemas/")
else()
execute_process (COMMAND ${PKG_CONFIG_EXECUTABLE} glib-2.0 --variable prefix OUTPUT_VARIABLE _glib_prefix OUTPUT_STRIP_TRAILING_WHITESPACE)
set (GSETTINGS_DIR "${_glib_prefix}/share/glib-2.0/schemas/")
endif()
# Validate the schema
execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} gio-2.0 --variable glib_compile_schemas OUTPUT_VARIABLE _glib_comple_schemas OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process(COMMAND ${_glib_comple_schemas} --dry-run --schema-file=${CMAKE_CURRENT_SOURCE_DIR}/schema/${SCHEMA_NAME} ERROR_VARIABLE _schemas_invalid OUTPUT_STRIP_TRAILING_WHITESPACE)
if(_schemas_invalid)
message(SEND_ERROR "Schema validation error: ${_schemas_invalid}")
endif(_schemas_invalid)
if(GSETTINGS_LOCALCOMPILE)
# compile locally during build to not force the user to 'make install'
# when running from the build dir
add_custom_command(
OUTPUT "${PROJECT_BINARY_DIR}/gschemas.compiled"
WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}/src/schema"
COMMAND
"${_glib_comple_schemas}"
ARGS
"${PROJECT_SOURCE_DIR}/src/schema"
"--targetdir=${PROJECT_BINARY_DIR}"
DEPENDS
"${PROJECT_SOURCE_DIR}/src/schema/${SCHEMA_NAME}"
VERBATIM
)
set(${OUTPUT} "${PROJECT_BINARY_DIR}/gschemas.compiled")
endif(GSETTINGS_LOCALCOMPILE)
# Install
if(WIN32)
message (STATUS "GSettings schema ${SCHEMA_NAME} will be installed into share/glib-2.0/schemas")
# For Windows the destination should always be relative
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/schema/${SCHEMA_NAME} DESTINATION share/glib-2.0/schemas)
# Also we want to ship the compiled binary to Windows
install(FILES ${PROJECT_BINARY_DIR}/gschemas.compiled DESTINATION share/glib-2.0/schemas)
else()
message (STATUS "GSettings schema ${SCHEMA_NAME} will be installed into ${GSETTINGS_DIR}")
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/schema/${SCHEMA_NAME} DESTINATION ${GSETTINGS_DIR})
endif()
# Compile
if(GSETTINGS_COMPILE)
install(CODE "message (STATUS \"Compiling GSettings schemas\")")
install(CODE "execute_process (COMMAND ${_glib_comple_schemas} ${GSETTINGS_DIR})")
endif()
endmacro()

17
cmake/GitVersion.cmake Normal file
View File

@ -0,0 +1,17 @@
find_package(Git QUIET REQUIRED)
if(GIT_FOUND)
# Get last tag from git
execute_process(COMMAND ${GIT_EXECUTABLE} describe --always --abbrev=0 --tags
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_TAG
OUTPUT_STRIP_TRAILING_WHITESPACE)
message(STATUS "GIT_TAG: ${GIT_TAG}")
if("${GIT_TAG}" MATCHES "^([0-9]+)\\.([0-9]+)\\.([0-9]+)$")
set(GIT_TAG_VERSION "${GIT_TAG}")
else()
set(GIT_TAG_VERSION "0.0.0")
endif()
else(GIT_FOUND)
message("GIT needs to be installed to generate GIT versioning.")
endif(GIT_FOUND)

66
cmake/Packaging.cmake Normal file
View File

@ -0,0 +1,66 @@
# Example 1: https://github.com/MariaDB/server/tree/10.8/cmake
# Example 2: https://gitlab.com/inkscape/inkscape/blob/master/CMakeScripts/ConfigCPack.cmake
#set(CPACK_PACKAGE_NAME "LibreWeb Browser")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LibreWeb Browser - Decentralized Web-Browser")
set(CPACK_PACKAGE_VENDOR "Melroy van den Berg")
set(CPACK_PACKAGE_CONTACT "Melroy van den Berg <info@libreweb.org>")
set(CPACK_PACKAGE_HOMEPAGE_URL "https://libreweb.org")
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/misc/package_desc.txt")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
set(CPACK_PACKAGE_VERSION "${PROJECT_VERSION}")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${PROJECT_TARGET}-${CPACK_PACKAGE_VERSION}")
set(CPACK_DEBIAN_PACKAGE_SECTION "web")
set(CPACK_RPM_PACKAGE_GROUP "Applications/Internet")
set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-v${CPACK_PACKAGE_VERSION}") # Without '-Linux' or '-Win' suffix
# Windows specific options - GUI Installer (NSIS generator)
set(CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/images/browser_logo_small.bmp")
set(CPACK_PACKAGE_INSTALL_DIRECTORY "LibreWeb")
set(CPACK_NSIS_CONTACT "${CPACK_PACKAGE_CONTACT}")
set(CPACK_NSIS_HELP_LINK "https://docs.libreweb.org/how-tos/")
set(CPACK_NSIS_URL_INFO_ABOUT "https://libreweb.org")
set(CPACK_NSIS_DISPLAY_NAME "LibreWeb Browser")
set(CPACK_NSIS_PACKAGE_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY} v${CPACK_PACKAGE_VERSION}")
set(CPACK_PACKAGE_EXECUTABLES "libreweb-browser;LibreWeb Browser")
set(CPACK_NSIS_MENU_LINKS
"${CPACK_PACKAGE_HOMEPAGE_URL}" "LibreWeb Homepage"
"https://gitlab.melroy.org/libreweb/browser" "LibreWeb Source code"
)
set(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\libreweb-browser.exe") # Import: double backlash
set(CPACK_NSIS_MUI_ICON "${CMAKE_SOURCE_DIR}/images/icons/libreweb-browser.ico")
set(CPACK_NSIS_MUI_UNIICON "${CMAKE_SOURCE_DIR}/images/icons/libreweb-browser.ico")
set(CPACK_NSIS_MODIFY_PATH ON)
# Detect Linux Distro for RPM files
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux" AND EXISTS "/etc/os-release")
execute_process (
COMMAND grep "^NAME=" /etc/os-release
COMMAND sed -e "s/NAME=//g"
COMMAND sed -e "s/\"//g"
RESULT_VARIABLE DIFINE_LINUX_DISTRO_RESULT
OUTPUT_VARIABLE LINUX_DISTRO
)
if (NOT ${DIFINE_LINUX_DISTRO_RESULT} EQUAL 0)
message (FATAL_ERROR "Linux distro identification error")
endif ()
endif ()
# RPM section
if(${LINUX_DISTRO} MATCHES "openSUSE")
# OpenSuse/Leap
set(CPACK_RPM_PACKAGE_REQUIRES "gtkmm3")
else()
# Redhat/CentOS/Fedora/etc.
set(CPACK_RPM_PACKAGE_REQUIRES "gtkmm30")
endif()
# Optional RPM packages (non for now)
set(CPACK_RPM_PACKAGE_SUGGESTS "")
# Debian Jessie/Ubuntu Trusty/Mint Qiana (libgtkmm-3.0-1) or
# Debian Stretch, Buster or newer, Ubuntu Xenial, Artful, Bionic or newer, Linux Mint Sarah, Tessa, Tina or newer (libgtkmm-3.0-1v5)
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libgtkmm-3.0-1 | libgtkmm-3.0-1v5")
# Optional deb packages (non for now)
set(CPACK_DEBIAN_PACKAGE_SUGGESTS "")
# include CPack model once all variables are set
include(CPack)

View File

@ -1,9 +0,0 @@
find_package(Doxygen REQUIRED)
set(DOXYGEN_CONFIG ${CMAKE_CURRENT_BINARY_DIR}/../doxygen.conf)
# note the option ALL which allows to build the docs together with the application
add_custom_target(Doxygen ALL
COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_CONFIG}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen"
VERBATIM)

View File

@ -1,16 +0,0 @@
find_package(Git QUIET REQUIRED)
if(GIT_FOUND)
# Get last tag from git
execute_process(COMMAND ${GIT_EXECUTABLE} describe --abbrev=0 --tags
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_TAG
OUTPUT_STRIP_TRAILING_WHITESPACE)
if("${GIT_TAG}" MATCHES "^([0-9]+)\\.([0-9]+)\\.([0-9]+)$")
set(GIT_TAG_VERSION "${GIT_TAG}")
else()
set(GIT_TAG_VERSION "0.0.0")
endif()
else(GIT_FOUND)
message("GIT needs to be installed to generate GIT versioning.")
endif(GIT_FOUND)

View File

@ -1,44 +0,0 @@
# Example: https://github.com/MariaDB/server/tree/10.5/cmake
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LibreWeb Browser - Decentralized Web-Browser")
set(CPACK_PACKAGE_VENDOR "Melroy van den Berg")
set(CPACK_PACKAGE_CONTACT "Melroy van den Berg <info@libreweb.org>")
set(CPACK_PACKAGE_HOMEPAGE_URL "https://libreweb.org")
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/misc/package_desc.txt")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
set(CPACK_PACKAGE_VERSION "${PROJECT_VERSION}")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${PROJECT_TARGET}-${CPACK_PACKAGE_VERSION}")
set(CPACK_DEBIAN_PACKAGE_SECTION "web")
set(CPACK_RPM_PACKAGE_GROUP "Applications/Internet")
set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-v${CPACK_PACKAGE_VERSION}") # Without '-Linux' suffix
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux" AND EXISTS "/etc/os-release")
execute_process (
COMMAND grep "^NAME=" /etc/os-release
COMMAND sed -e "s/NAME=//g"
COMMAND sed -e "s/\"//g"
RESULT_VARIABLE DIFINE_LINUX_DISTRO_RESULT
OUTPUT_VARIABLE LINUX_DISTRO
)
if (NOT ${DIFINE_LINUX_DISTRO_RESULT} EQUAL 0)
message (FATAL_ERROR "Linux distro identification error")
endif ()
endif ()
if(${LINUX_DISTRO} MATCHES "openSUSE")
# OpenSuse/Leap
set(CPACK_RPM_PACKAGE_REQUIRES "gtkmm3")
else()
# Redhat/CentOS/Fedora/etc.
set(CPACK_RPM_PACKAGE_REQUIRES "gtkmm30")
endif()
# Optional RPM packages
set(CPACK_RPM_PACKAGE_SUGGESTS "")
# Debian Jessie/Ubuntu Trusty/Mint Qiana (libgtkmm-3.0-1) or
# Debian Stretch, Buster or newer, Ubuntu Xenial, Artful, Bionic or newer, Linux Mint Sarah, Tessa, Tina or newer (libgtkmm-3.0-1v5)
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libgtkmm-3.0-1 | libgtkmm-3.0-1v5")
# Optional deb packages
set(CPACK_DEBIAN_PACKAGE_SUGGESTS "")
# include CPack model once all variables are set
include(CPack)

Binary file not shown.

BIN
go-ipfs/ipfs.exe Executable file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m384 42.667969h-298.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h298.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 149.332031h-426.667969c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.554687 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m384 256h-298.667969c-11.773437 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.558594-21.335938 21.332031-21.335938h298.667969c11.777344 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 362.667969h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m384 469.332031h-298.667969c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h298.667969c11.777344 0 21.332031 9.554687 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m320 42.667969h-298.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h298.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 149.332031h-426.667969c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.554687 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m320 256h-298.667969c-11.773437 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.558594-21.335938 21.332031-21.335938h298.667969c11.777344 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 362.667969h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m320 469.332031h-298.667969c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h298.667969c11.777344 0 21.332031 9.554687 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 0h-384c-35.285156 0-64 28.714844-64 64v384c0 35.285156 28.714844 64 64 64h384c35.285156 0 64-28.714844 64-64v-384c0-35.285156-28.714844-64-64-64zm21.332031 448c0 11.777344-9.554687 21.332031-21.332031 21.332031h-384c-11.777344 0-21.332031-9.554687-21.332031-21.332031v-384c0-11.777344 9.554687-21.332031 21.332031-21.332031h384c11.777344 0 21.332031 9.554687 21.332031 21.332031zm0 0"/><path d="m389.332031 277.332031h-266.664062c-20.589844 0-37.335938 16.746094-37.335938 37.335938v74.664062c0 20.589844 16.746094 37.335938 37.335938 37.335938h266.664062c20.589844 0 37.335938-16.746094 37.335938-37.335938v-74.664062c0-20.589844-16.746094-37.335938-37.335938-37.335938zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 789 B

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 0h-384c-35.285156 0-64 28.714844-64 64v384c0 35.285156 28.714844 64 64 64h384c35.285156 0 64-28.714844 64-64v-384c0-35.285156-28.714844-64-64-64zm21.332031 448c0 11.777344-9.578125 21.332031-21.332031 21.332031h-384c-11.753906 0-21.332031-9.554687-21.332031-21.332031v-384c0-11.777344 9.578125-21.332031 21.332031-21.332031h384c11.753906 0 21.332031 9.554687 21.332031 21.332031zm0 0"/><path d="m197.332031 85.332031h-74.664062c-20.589844 0-37.335938 16.746094-37.335938 37.335938v266.664062c0 20.589844 16.746094 37.335938 37.335938 37.335938h74.664062c20.589844 0 37.335938-16.746094 37.335938-37.335938v-266.664062c0-20.589844-16.746094-37.335938-37.335938-37.335938zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 788 B

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 0h-384c-35.285156 0-64 28.714844-64 64v384c0 35.285156 28.714844 64 64 64h384c35.285156 0 64-28.714844 64-64v-384c0-35.285156-28.714844-64-64-64zm21.332031 448c0 11.777344-9.578125 21.332031-21.332031 21.332031h-384c-11.753906 0-21.332031-9.554687-21.332031-21.332031v-384c0-11.777344 9.578125-21.332031 21.332031-21.332031h384c11.753906 0 21.332031 9.554687 21.332031 21.332031zm0 0"/><path d="m389.332031 85.332031h-74.664062c-20.589844 0-37.335938 16.746094-37.335938 37.335938v266.664062c0 20.589844 16.746094 37.335938 37.335938 37.335938h74.664062c20.589844 0 37.335938-16.746094 37.335938-37.335938v-266.664062c0-20.589844-16.746094-37.335938-37.335938-37.335938zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 788 B

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 0h-384c-35.285156 0-64 28.714844-64 64v384c0 35.285156 28.714844 64 64 64h384c35.285156 0 64-28.714844 64-64v-384c0-35.285156-28.714844-64-64-64zm21.332031 448c0 11.777344-9.578125 21.332031-21.332031 21.332031h-384c-11.753906 0-21.332031-9.554687-21.332031-21.332031v-384c0-11.777344 9.578125-21.332031 21.332031-21.332031h384c11.753906 0 21.332031 9.554687 21.332031 21.332031zm0 0"/><path d="m389.332031 85.332031h-266.664062c-20.589844 0-37.335938 16.746094-37.335938 37.335938v74.664062c0 20.589844 16.746094 37.335938 37.335938 37.335938h266.664062c20.589844 0 37.335938-16.746094 37.335938-37.335938v-74.664062c0-20.589844-16.746094-37.335938-37.335938-37.335938zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 788 B

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 42.667969h-298.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h298.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 149.332031h-426.667969c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.554687 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 256h-298.667969c-11.773437 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.558594-21.335938 21.332031-21.335938h298.667969c11.777344 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 362.667969h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 469.332031h-298.667969c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h298.667969c11.777344 0 21.332031 9.554687 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -21 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m405.332031 256h-149.332031c-11.777344 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.554687-21.335938 21.332031-21.335938h149.332031c11.777344 0 21.335938 9.558594 21.335938 21.335938 0 11.773437-9.558594 21.332031-21.335938 21.332031zm0 0"/><path d="m490.667969 149.332031h-234.667969c-11.777344 0-21.332031-9.554687-21.332031-21.332031s9.554687-21.332031 21.332031-21.332031h234.667969c11.773437 0 21.332031 9.554687 21.332031 21.332031s-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m405.332031 42.667969h-149.332031c-11.777344 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.554687-21.332031 21.332031-21.332031h149.332031c11.777344 0 21.335938 9.558594 21.335938 21.332031 0 11.777344-9.558594 21.335938-21.335938 21.335938zm0 0"/><path d="m474.667969 320h-202.667969c-20.585938 0-37.332031 16.746094-37.332031 37.332031v53.335938c0 20.585937 16.746093 37.332031 37.332031 37.332031h202.667969c20.585937 0 37.332031-16.746094 37.332031-37.332031v-53.335938c0-20.585937-16.746094-37.332031-37.332031-37.332031zm0 0"/><path d="m186.902344 372.265625-74.667969-69.332031c-4.671875-4.332032-11.457031-5.441406-17.300781-2.945313-5.824219 2.5625-9.601563 8.320313-9.601563 14.679688v48h-64c-11.796875 0-21.332031 9.554687-21.332031 21.332031s9.535156 21.332031 21.332031 21.332031h64v48c0 6.359375 3.777344 12.117188 9.601563 14.679688 2.070312.875 4.222656 1.320312 6.398437 1.320312 3.96875 0 7.875-1.46875 10.902344-4.265625l74.667969-69.332031c3.242187-3.03125 5.097656-7.296875 5.097656-11.734375s-1.855469-8.703125-5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m453.332031 0h-394.664062c-32.363281 0-58.667969 26.304688-58.667969 58.667969v96c0 32.363281 26.304688 58.664062 58.667969 58.664062h394.664062c32.363281 0 58.667969-26.300781 58.667969-58.664062v-96c0-32.363281-26.304688-58.667969-58.667969-58.667969zm0 0"/><path d="m325.332031 405.332031h-48v-106.664062c0-11.796875-9.554687-21.335938-21.332031-21.335938s-21.332031 9.539063-21.332031 21.335938v106.664062h-48c-6.359375 0-12.117188 3.777344-14.679688 9.601563-.875 2.070312-1.320312 4.222656-1.320312 6.398437 0 3.96875 1.46875 7.875 4.265625 10.902344l69.332031 74.667969c3.050781 3.242187 7.296875 5.097656 11.734375 5.097656s8.703125-1.855469 11.734375-5.097656l69.332031-74.667969c4.332032-4.671875 5.441406-11.457031 2.945313-17.300781-2.539063-5.824219-8.300781-9.601563-14.679688-9.601563zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 913 B

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -43 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m106.667969 165.332031v96c0 32.363281 26.300781 58.667969 58.664062 58.667969h181.335938c32.363281 0 58.664062-26.304688 58.664062-58.667969v-96c0-32.363281-26.300781-58.664062-58.664062-58.664062h-181.335938c-32.363281 0-58.664062 26.300781-58.664062 58.664062zm0 0"/><path d="m21.332031 170.667969c11.796875 0 21.335938-9.539063 21.335938-21.335938v-85.332031c0-11.777344 9.554687-21.332031 21.332031-21.332031h85.332031c11.796875 0 21.335938-9.539063 21.335938-21.335938s-9.539063-21.332031-21.335938-21.332031h-85.332031c-35.285156 0-64 28.714844-64 64v85.332031c0 11.796875 9.535156 21.335938 21.332031 21.335938zm0 0"/><path d="m490.667969 256c-11.796875 0-21.335938 9.535156-21.335938 21.332031v85.335938c0 11.773437-9.554687 21.332031-21.332031 21.332031h-85.332031c-11.796875 0-21.335938 9.535156-21.335938 21.332031s9.539063 21.335938 21.335938 21.335938h85.332031c35.285156 0 64-28.714844 64-64v-85.335938c0-11.796875-9.535156-21.332031-21.332031-21.332031zm0 0"/><path d="m149.332031 384h-85.332031c-11.777344 0-21.332031-9.558594-21.332031-21.332031v-85.335938c0-11.796875-9.539063-21.332031-21.335938-21.332031s-21.332031 9.535156-21.332031 21.332031v85.335938c0 35.285156 28.714844 64 64 64h85.332031c11.796875 0 21.335938-9.539063 21.335938-21.335938s-9.539063-21.332031-21.335938-21.332031zm0 0"/><path d="m448 0h-85.332031c-11.796875 0-21.335938 9.535156-21.335938 21.332031s9.539063 21.335938 21.335938 21.335938h85.332031c11.777344 0 21.332031 9.554687 21.332031 21.332031v85.332031c0 11.796875 9.539063 21.335938 21.335938 21.335938s21.332031-9.539063 21.332031-21.335938v-85.332031c0-35.285156-28.714844-64-64-64zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m21.332031 170.667969c11.796875 0 21.335938-9.539063 21.335938-21.335938v-85.332031c0-11.777344 9.554687-21.332031 21.332031-21.332031h85.332031c11.796875 0 21.335938-9.539063 21.335938-21.335938s-9.539063-21.332031-21.335938-21.332031h-85.332031c-35.285156 0-64 28.714844-64 64v85.332031c0 11.796875 9.535156 21.335938 21.332031 21.335938zm0 0"/><path d="m490.667969 341.332031c-11.796875 0-21.335938 9.539063-21.335938 21.335938v85.332031c0 11.777344-9.554687 21.332031-21.332031 21.332031h-85.332031c-11.796875 0-21.335938 9.539063-21.335938 21.335938s9.539063 21.332031 21.335938 21.332031h85.332031c35.285156 0 64-28.714844 64-64v-85.332031c0-11.796875-9.535156-21.335938-21.332031-21.335938zm0 0"/><path d="m149.332031 469.332031h-85.332031c-11.777344 0-21.332031-9.554687-21.332031-21.332031v-85.332031c0-11.796875-9.539063-21.335938-21.335938-21.335938s-21.332031 9.539063-21.332031 21.335938v85.332031c0 35.285156 28.714844 64 64 64h85.332031c11.796875 0 21.335938-9.535156 21.335938-21.332031s-9.539063-21.335938-21.335938-21.335938zm0 0"/><path d="m448 0h-85.332031c-11.796875 0-21.335938 9.535156-21.335938 21.332031s9.539063 21.335938 21.335938 21.335938h85.332031c11.777344 0 21.332031 9.554687 21.332031 21.332031v85.332031c0 11.796875 9.539063 21.335938 21.335938 21.335938s21.332031-9.539063 21.332031-21.335938v-85.332031c0-35.285156-28.714844-64-64-64zm0 0"/><path d="m106.667969 165.332031v181.335938c0 32.363281 26.300781 58.664062 58.664062 58.664062h181.335938c32.363281 0 58.664062-26.300781 58.664062-58.664062v-181.335938c0-32.363281-26.300781-58.664062-58.664062-58.664062h-181.335938c-32.363281 0-58.664062 26.300781-58.664062 58.664062zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m154.667969 0h-96c-32.363281 0-58.667969 26.304688-58.667969 58.667969v394.664062c0 32.363281 26.304688 58.667969 58.667969 58.667969h96c32.363281 0 58.664062-26.304688 58.664062-58.667969v-394.664062c0-32.363281-26.300781-58.667969-58.664062-58.667969zm0 0"/><path d="m506.902344 244.265625-74.667969-69.332031c-4.671875-4.332032-11.457031-5.441406-17.300781-2.945313-5.824219 2.539063-9.601563 8.300781-9.601563 14.679688v48h-106.664062c-11.796875 0-21.335938 9.554687-21.335938 21.332031s9.539063 21.332031 21.335938 21.332031h106.664062v48c0 6.359375 3.777344 12.117188 9.601563 14.679688 2.070312.875 4.222656 1.320312 6.398437 1.320312 3.96875 0 7.875-1.46875 10.902344-4.265625l74.667969-69.332031c3.242187-3.050781 5.097656-7.296875 5.097656-11.734375s-1.855469-8.703125-5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 911 B

View File

@ -1 +0,0 @@
<svg height="490pt" viewBox="0 -10 490.66667 490" width="490pt" xmlns="http://www.w3.org/2000/svg"><path d="m469.332031 43h-426.664062c-11.777344 0-21.335938-9.558594-21.335938-21.332031 0-11.777344 9.558594-21.335938 21.335938-21.335938h426.664062c11.777344 0 21.335938 9.558594 21.335938 21.335938 0 11.773437-9.558594 21.332031-21.335938 21.332031zm0 0"/><path d="m469.332031 149.667969h-213.332031c-11.777344 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.554687-21.332031 21.332031-21.332031h213.332031c11.777344 0 21.335938 9.558594 21.335938 21.332031 0 11.777344-9.558594 21.335938-21.335938 21.335938zm0 0"/><path d="m469.332031 256.332031h-213.332031c-11.777344 0-21.332031-9.554687-21.332031-21.332031s9.554687-21.332031 21.332031-21.332031h213.332031c11.777344 0 21.335938 9.554687 21.335938 21.332031s-9.558594 21.332031-21.335938 21.332031zm0 0"/><path d="m469.332031 363h-213.332031c-11.777344 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.554687-21.335938 21.332031-21.335938h213.332031c11.777344 0 21.335938 9.558594 21.335938 21.335938 0 11.773437-9.558594 21.332031-21.335938 21.332031zm0 0"/><path d="m469.332031 469.667969h-426.664062c-11.777344 0-21.335938-9.558594-21.335938-21.335938 0-11.773437 9.558594-21.332031 21.335938-21.332031h426.664062c11.777344 0 21.335938 9.558594 21.335938 21.332031 0 11.777344-9.558594 21.335938-21.335938 21.335938zm0 0"/><path d="m186.902344 223.265625-74.667969-69.332031c-4.671875-4.332032-11.457031-5.441406-17.300781-2.945313-5.824219 2.539063-9.601563 8.300781-9.601563 14.679688v48h-64c-11.796875 0-21.332031 9.554687-21.332031 21.332031s9.535156 21.332031 21.332031 21.332031h64v48c0 6.359375 3.777344 12.117188 9.601563 14.679688 2.070312.875 4.222656 1.320312 6.398437 1.320312 3.96875 0 7.875-1.46875 10.902344-4.265625l74.667969-69.332031c3.242187-3.050781 5.097656-7.296875 5.097656-11.734375s-1.855469-8.703125-5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -21 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m405.332031 42.667969h-149.332031c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h149.332031c11.796875 0 21.335938 9.558594 21.335938 21.332031 0 11.777344-9.539063 21.335938-21.335938 21.335938zm0 0"/><path d="m490.667969 149.332031h-234.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h234.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m405.332031 256h-149.332031c-11.796875 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.535156-21.335938 21.332031-21.335938h149.332031c11.796875 0 21.335938 9.558594 21.335938 21.335938 0 11.773437-9.539063 21.332031-21.335938 21.332031zm0 0"/><path d="m490.667969 362.667969h-234.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h234.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m405.332031 469.332031h-149.332031c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h149.332031c11.796875 0 21.335938 9.554687 21.335938 21.332031s-9.539063 21.332031-21.335938 21.332031zm0 0"/><path d="m186.902344 222.933594-74.667969-69.332032c-4.671875-4.332031-11.457031-5.441406-17.300781-2.945312-5.824219 2.558594-9.601563 8.320312-9.601563 14.675781v48h-64c-11.796875 0-21.332031 9.558594-21.332031 21.335938 0 11.773437 9.535156 21.332031 21.332031 21.332031h64v48c0 6.355469 3.777344 12.117188 9.601563 14.675781 2.070312.875 4.222656 1.324219 6.398437 1.324219 3.96875 0 7.875-1.472656 10.902344-4.265625l74.667969-69.335937c3.242187-3.027344 5.097656-7.292969 5.097656-11.730469s-1.855469-8.707031-5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -11 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m490.667969 63.988281h-149.335938c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h149.335938c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 170.65625h-234.667969c-11.796875 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.535156-21.335938 21.332031-21.335938h234.667969c11.796875 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 277.324219h-234.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h234.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m490.667969 383.988281h-234.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h234.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 490.65625h-234.667969c-11.796875 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.535156-21.335938 21.332031-21.335938h234.667969c11.796875 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m186.902344 73.589844-74.667969-69.332032c-4.671875-4.3320308-11.457031-5.441406-17.300781-2.945312-5.824219 2.558594-9.601563 8.320312-9.601563 14.675781v48h-64c-11.796875 0-21.332031 9.558594-21.332031 21.335938 0 11.773437 9.535156 21.332031 21.332031 21.332031h64v48c0 6.359375 3.777344 12.117188 9.601563 14.675781 2.070312.875 4.222656 1.324219 6.398437 1.324219 3.96875 0 7.875-1.472656 10.902344-4.265625l74.667969-69.335937c3.242187-3.027344 5.097656-7.292969 5.097656-11.730469s-1.855469-8.707031-5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -21 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m256 42.667969h-149.332031c-11.796875 0-21.335938-9.558594-21.335938-21.335938 0-11.773437 9.539063-21.332031 21.335938-21.332031h149.332031c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m256 149.332031h-234.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h234.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m256 256h-149.332031c-11.796875 0-21.335938-9.558594-21.335938-21.332031 0-11.777344 9.539063-21.335938 21.335938-21.335938h149.332031c11.796875 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m256 362.667969h-234.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h234.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m256 469.332031h-149.332031c-11.796875 0-21.335938-9.554687-21.335938-21.332031s9.539063-21.332031 21.335938-21.332031h149.332031c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m325.097656 222.933594 74.667969-69.332032c4.671875-4.332031 11.457031-5.441406 17.300781-2.945312 5.824219 2.558594 9.601563 8.320312 9.601563 14.675781v48h64c11.796875 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.535156 21.332031-21.332031 21.332031h-64v48c0 6.355469-3.777344 12.117188-9.601563 14.675781-2.070312.875-4.222656 1.324219-6.398437 1.324219-3.96875 0-7.875-1.472656-10.902344-4.265625l-74.667969-69.335937c-3.242187-3.027344-5.097656-7.292969-5.097656-11.730469s1.855469-8.707031 5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 42.667969h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 149.332031h-426.667969c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.554687 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 256h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.558594-21.335938 21.332031-21.335938h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 362.667969h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m362.667969 469.332031h-256c-11.777344 0-21.335938-9.554687-21.335938-21.332031s9.558594-21.332031 21.335938-21.332031h256c11.773437 0 21.332031 9.554687 21.332031 21.332031s-9.558594 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 42.667969h-426.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h426.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m448 149.332031h-426.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h426.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m448 256h-426.667969c-11.796875 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.535156-21.335938 21.332031-21.335938h426.667969c11.796875 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m448 362.667969h-426.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h426.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m448 469.332031h-426.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h426.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 42.667969h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 149.332031h-426.667969c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.554687 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 256h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.558594-21.335938 21.332031-21.335938h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 362.667969h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m298.667969 469.332031h-277.335938c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h277.335938c11.773437 0 21.332031 9.554687 21.332031 21.332031s-9.558594 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 42.667969h-426.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h426.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m448 149.332031h-426.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h426.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m448 256h-426.667969c-11.796875 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.535156-21.335938 21.332031-21.335938h426.667969c11.796875 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m448 362.667969h-426.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h426.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m448 469.332031h-277.332031c-11.796875 0-21.335938-9.554687-21.335938-21.332031s9.539063-21.332031 21.335938-21.332031h277.332031c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="-21 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m42.667969 213.332031h-21.335938c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h21.335938c11.773437 0 21.332031 9.535156 21.332031 21.332031s-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m42.667969 341.332031h-21.335938c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h21.335938c11.773437 0 21.332031 9.535156 21.332031 21.332031s-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m448 213.332031h-21.332031c-11.777344 0-21.335938-9.535156-21.335938-21.332031s9.558594-21.332031 21.335938-21.332031h21.332031c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 341.332031h-21.332031c-11.777344 0-21.335938-9.535156-21.335938-21.332031s9.558594-21.332031 21.335938-21.332031h21.332031c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 128h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.335938 21.332031-21.335938h426.667969c11.777344 0 21.332031 9.539063 21.332031 21.335938s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 42.667969h-426.667969c-11.773437 0-21.332031-9.539063-21.332031-21.335938s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 426.667969h-426.667969c-11.773437 0-21.332031-9.539063-21.332031-21.335938s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 512h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.335938 21.332031-21.335938h426.667969c11.777344 0 21.332031 9.539063 21.332031 21.335938s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m330.667969 149.332031h-192c-17.644531 0-32 14.359375-32 32v149.335938c0 17.640625 14.355469 32 32 32h192c17.640625 0 32-14.359375 32-32v-149.335938c0-17.640625-14.359375-32-32-32zm-10.667969 42.667969v86.078125l-30.316406-27.261719c-8.574219-7.679687-21.738282-7.230468-29.695313 1.128906l-34.664062 36.3125-16.789063-15.789062c-8.535156-8.019531-21.976562-7.65625-30.058594.832031l-29.144531 30.570313v-111.871094zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="-21 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 128h-426.667969c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.335938 21.332031-21.335938h426.667969c11.796875 0 21.332031 9.539063 21.332031 21.335938s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m448 42.667969h-426.667969c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h426.667969c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m448 426.667969h-426.667969c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h426.667969c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m448 512h-426.667969c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.335938 21.332031-21.335938h426.667969c11.796875 0 21.332031 9.539063 21.332031 21.335938s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m330.667969 149.332031h-192c-17.644531 0-32 14.359375-32 32v149.335938c0 17.640625 14.355469 32 32 32h192c17.640625 0 32-14.359375 32-32v-149.335938c0-17.640625-14.359375-32-32-32zm-10.667969 42.667969v86.078125l-30.316406-27.261719c-8.574219-7.679687-21.738282-7.230468-29.695313 1.128906l-34.664062 36.3125-16.789063-15.789062c-8.535156-8.019531-21.976562-7.65625-30.058594.832031l-29.144531 30.570313v-111.871094zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 192h-106.667969c-35.285156 0-64-28.714844-64-64v-106.667969c0-11.773437 9.539063-21.332031 21.335938-21.332031s21.332031 9.558594 21.332031 21.332031v106.667969c0 11.753906 9.558594 21.332031 21.332031 21.332031h106.667969c11.796875 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m298.667969 469.332031c-11.796875 0-21.335938-9.554687-21.335938-21.332031v-106.667969c0-35.285156 28.714844-64 64-64h106.667969c11.796875 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.535156 21.332031-21.332031 21.332031h-106.667969c-11.773437 0-21.332031 9.578125-21.332031 21.332031v106.667969c0 11.777344-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m128 192h-106.667969c-11.796875 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.535156-21.335938 21.332031-21.335938h106.667969c11.777344 0 21.332031-9.578125 21.332031-21.332031v-106.667969c0-11.773437 9.539063-21.332031 21.335938-21.332031s21.332031 9.558594 21.332031 21.332031v106.667969c0 35.285156-28.714844 64-64 64zm0 0"/><path d="m170.667969 469.332031c-11.796875 0-21.335938-9.554687-21.335938-21.332031v-106.667969c0-11.753906-9.554687-21.332031-21.332031-21.332031h-106.667969c-11.796875 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.535156-21.335938 21.332031-21.335938h106.667969c35.285156 0 64 28.714844 64 64v106.667969c0 11.777344-9.535156 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -75 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m192 42.667969h-170.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h170.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m192 298.667969h-170.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h170.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m192 170.667969h-170.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h170.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m362.667969 0h-85.335938c-11.773437 0-21.332031 9.558594-21.332031 21.332031 0 11.777344 9.558594 21.335938 21.332031 21.335938h85.335938c58.816406 0 106.664062 47.847656 106.664062 106.664062 0 58.816407-47.847656 106.667969-106.664062 106.667969v-48c0-6.355469-3.777344-12.117188-9.601563-14.675781-5.824218-2.519531-12.628906-1.386719-17.300781 2.941406l-74.667969 69.335937c-3.242187 3.027344-5.097656 7.273438-5.097656 11.730469 0 4.460938 1.855469 8.707031 5.097656 11.734375l74.667969 69.332032c3.027344 2.796874 6.933594 4.269531 10.902344 4.269531 2.175781 0 4.328125-.449219 6.398437-1.324219 5.824219-2.558594 9.601563-8.320312 9.601563-14.675781v-48c82.34375 0 149.332031-66.988281 149.332031-149.335938 0-82.34375-66.988281-149.332031-149.332031-149.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m474.667969 112h-266.667969c-11.777344 0-21.332031-9.558594-21.332031-21.332031v-53.335938c0-11.773437 9.554687-21.332031 21.332031-21.332031h266.667969c11.773437 0 21.332031 9.558594 21.332031 21.332031v53.335938c0 11.773437-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m474.667969 128h-266.667969c-20.585938 0-37.332031-16.746094-37.332031-37.332031v-53.335938c0-20.585937 16.746093-37.332031 37.332031-37.332031h266.667969c20.585937 0 37.332031 16.746094 37.332031 37.332031v53.335938c0 20.585937-16.746094 37.332031-37.332031 37.332031zm-266.667969-96c-2.945312 0-5.332031 2.390625-5.332031 5.332031v53.335938c0 2.941406 2.386719 5.332031 5.332031 5.332031h266.667969c2.941406 0 5.332031-2.390625 5.332031-5.332031v-53.335938c0-2.941406-2.390625-5.332031-5.332031-5.332031zm0 0"/><path d="m474.667969 304h-266.667969c-11.777344 0-21.332031-9.558594-21.332031-21.332031v-53.335938c0-11.773437 9.554687-21.332031 21.332031-21.332031h266.667969c11.773437 0 21.332031 9.558594 21.332031 21.332031v53.335938c0 11.773437-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m474.667969 320h-266.667969c-20.585938 0-37.332031-16.746094-37.332031-37.332031v-53.335938c0-20.585937 16.746093-37.332031 37.332031-37.332031h266.667969c20.585937 0 37.332031 16.746094 37.332031 37.332031v53.335938c0 20.585937-16.746094 37.332031-37.332031 37.332031zm-266.667969-96c-2.945312 0-5.332031 2.390625-5.332031 5.332031v53.335938c0 2.941406 2.386719 5.332031 5.332031 5.332031h266.667969c2.941406 0 5.332031-2.390625 5.332031-5.332031v-53.335938c0-2.941406-2.390625-5.332031-5.332031-5.332031zm0 0"/><path d="m474.667969 496h-266.667969c-11.777344 0-21.332031-9.558594-21.332031-21.332031v-53.335938c0-11.773437 9.554687-21.332031 21.332031-21.332031h266.667969c11.773437 0 21.332031 9.558594 21.332031 21.332031v53.335938c0 11.773437-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m474.667969 512h-266.667969c-20.585938 0-37.332031-16.746094-37.332031-37.332031v-53.335938c0-20.585937 16.746093-37.332031 37.332031-37.332031h266.667969c20.585937 0 37.332031 16.746094 37.332031 37.332031v53.335938c0 20.585937-16.746094 37.332031-37.332031 37.332031zm-266.667969-96c-2.945312 0-5.332031 2.390625-5.332031 5.332031v53.335938c0 2.941406 2.386719 5.332031 5.332031 5.332031h266.667969c2.941406 0 5.332031-2.390625 5.332031-5.332031v-53.335938c0-2.941406-2.390625-5.332031-5.332031-5.332031zm0 0"/><path d="m97.066406 340.011719c-5.824218 2.515625-12.628906 1.386719-17.300781-2.945313l-74.667969-69.332031c-3.242187-3.03125-5.097656-7.277344-5.097656-11.734375s1.855469-8.703125 5.097656-11.734375l74.667969-69.332031c3.027344-2.796875 6.933594-4.265625 10.902344-4.265625 2.175781 0 4.328125.445312 6.398437 1.320312 5.824219 2.5625 9.601563 8.320313 9.601563 14.679688v138.664062c0 6.378907-3.777344 12.140625-9.601563 14.679688zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m304 0h-266.667969c-20.585937 0-37.332031 16.746094-37.332031 37.332031v53.335938c0 20.585937 16.746094 37.332031 37.332031 37.332031h266.667969c20.585938 0 37.332031-16.746094 37.332031-37.332031v-53.335938c0-20.585937-16.746093-37.332031-37.332031-37.332031zm0 0"/><path d="m304 192h-266.667969c-20.585937 0-37.332031 16.746094-37.332031 37.332031v53.335938c0 20.585937 16.746094 37.332031 37.332031 37.332031h266.667969c20.585938 0 37.332031-16.746094 37.332031-37.332031v-53.335938c0-20.585937-16.746093-37.332031-37.332031-37.332031zm0 0"/><path d="m304 384h-266.667969c-20.585937 0-37.332031 16.746094-37.332031 37.332031v53.335938c0 20.585937 16.746094 37.332031 37.332031 37.332031h266.667969c20.585938 0 37.332031-16.746094 37.332031-37.332031v-53.335938c0-20.585937-16.746093-37.332031-37.332031-37.332031zm0 0"/><path d="m506.902344 244.265625-74.667969-69.332031c-3.027344-2.796875-6.933594-4.265625-10.902344-4.265625-2.175781 0-4.328125.445312-6.398437 1.320312-5.824219 2.5625-9.601563 8.320313-9.601563 14.679688v138.664062c0 6.359375 3.777344 12.117188 9.601563 14.679688 5.824218 2.515625 12.628906 1.386719 17.300781-2.945313l74.667969-69.332031c3.242187-3.03125 5.097656-7.277344 5.097656-11.734375s-1.855469-8.683594-5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -21 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m490.667969 362.667969h-298.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h298.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m490.667969 469.332031h-298.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h298.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 149.332031h-298.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h298.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 42.667969h-298.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h298.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m490.667969 213.332031h-384v-48c0-6.355469-3.777344-12.117187-9.601563-14.675781-2.070312-.875-4.222656-1.324219-6.398437-1.324219-3.96875 0-7.875 1.472657-10.902344 4.269531l-74.667969 69.332032c-3.242187 3.050781-5.097656 7.296875-5.097656 11.734375s1.855469 8.703125 5.097656 11.730469l74.667969 69.335937c4.671875 4.328125 11.457031 5.4375 17.300781 2.941406 5.824219-2.539062 9.601563-8.296875 9.601563-14.675781v-48h384c11.796875 0 21.332031-9.558594 21.332031-21.332031 0-11.777344-9.535156-21.335938-21.332031-21.335938zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -21 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m320 362.667969h-298.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h298.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m320 469.332031h-298.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h298.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m320 149.332031h-298.667969c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h298.667969c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m320 42.667969h-298.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h298.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m506.902344 222.933594-74.667969-69.332032c-3.027344-2.796874-6.933594-4.269531-10.902344-4.269531-2.175781 0-4.328125.449219-6.398437 1.324219-5.824219 2.558594-9.601563 8.320312-9.601563 14.675781v48h-384c-11.796875 0-21.332031 9.558594-21.332031 21.335938 0 11.773437 9.535156 21.332031 21.332031 21.332031h384v48c0 6.355469 3.777344 12.117188 9.601563 14.675781 5.824218 2.519531 12.628906 1.386719 17.300781-2.941406l74.667969-69.335937c3.242187-3.027344 5.097656-7.273438 5.097656-11.730469 0-4.460938-1.855469-8.683594-5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -75 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m192 362.667969h-170.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h170.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m192 106.667969h-170.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h170.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m192 234.667969h-170.667969c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h170.667969c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m362.667969 64v-48c0-6.355469-3.777344-12.117188-9.601563-14.675781-2.070312-.875-4.222656-1.324219-6.398437-1.324219-3.96875 0-7.875 1.472656-10.902344 4.265625l-74.667969 69.335937c-3.242187 3.027344-5.097656 7.292969-5.097656 11.730469s1.855469 8.707031 5.097656 11.734375l74.667969 69.332032c4.671875 4.332031 11.457031 5.441406 17.300781 2.945312 5.824219-2.558594 9.601563-8.320312 9.601563-14.675781v-48c58.816406 0 106.664062 47.847656 106.664062 106.664062 0 58.816407-47.847656 106.667969-106.664062 106.667969h-85.335938c-11.796875 0-21.332031 9.558594-21.332031 21.332031 0 11.777344 9.535156 21.335938 21.332031 21.335938h85.335938c82.324219 0 149.332031-66.988281 149.332031-149.335938 0-82.34375-67.007812-149.332031-149.332031-149.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +0,0 @@
<svg height="490pt" viewBox="0 -10 490.66667 490" width="490pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 43h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.558594-21.335938 21.332031-21.335938h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m234.667969 149.667969h-213.335938c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h213.335938c11.773437 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.558594 21.335938-21.332031 21.335938zm0 0"/><path d="m234.667969 256.332031h-213.335938c-11.773437 0-21.332031-9.554687-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h213.335938c11.773437 0 21.332031 9.554687 21.332031 21.332031s-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m234.667969 363h-213.335938c-11.773437 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.558594-21.335938 21.332031-21.335938h213.335938c11.773437 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m448 469.667969h-426.667969c-11.773437 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m303.765625 223.265625 74.667969-69.332031c4.671875-4.332032 11.453125-5.441406 17.300781-2.945313 5.824219 2.539063 9.597656 8.300781 9.597656 14.679688v48h64c11.796875 0 21.335938 9.554687 21.335938 21.332031s-9.539063 21.332031-21.335938 21.332031h-64v48c0 6.359375-3.773437 12.117188-9.597656 14.679688-2.070313.875-4.226563 1.320312-6.402344 1.320312-3.964843 0-7.871093-1.46875-10.898437-4.265625l-74.667969-69.332031c-3.242187-3.050781-5.097656-7.296875-5.097656-11.734375s1.855469-8.703125 5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m341.332031 362.667969c-11.796875 0-21.332031-9.539063-21.332031-21.335938v-320c0-11.796875 9.535156-21.332031 21.332031-21.332031s21.335938 9.535156 21.335938 21.332031v320c0 11.796875-9.539063 21.335938-21.335938 21.335938zm0 0"/><path d="m277.332031 362.667969c-11.796875 0-21.332031-9.539063-21.332031-21.335938v-320c0-11.796875 9.535156-21.332031 21.332031-21.332031s21.335938 9.535156 21.335938 21.332031v320c0 11.796875-9.539063 21.335938-21.335938 21.335938zm0 0"/><path d="m277.332031 192h-74.664062c-52.929688 0-96-43.070312-96-96s43.070312-96 96-96h181.332031c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938h-181.332031c-29.421875 0-53.335938 23.914062-53.335938 53.332031s23.914063 53.332031 53.335938 53.332031h74.664062c11.796875 0 21.335938 9.539063 21.335938 21.335938s-9.539063 21.332031-21.335938 21.332031zm0 0"/><path d="m384 362.667969h-149.332031c-11.796875 0-21.335938-9.539063-21.335938-21.335938s9.539063-21.332031 21.335938-21.332031h149.332031c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m490.667969 405.332031h-384v-48c0-6.355469-3.777344-12.117187-9.601563-14.675781-2.070312-.875-4.222656-1.324219-6.398437-1.324219-3.96875 0-7.875 1.472657-10.902344 4.269531l-74.667969 69.332032c-3.242187 3.050781-5.097656 7.296875-5.097656 11.734375s1.855469 8.703125 5.097656 11.730469l74.667969 69.335937c4.671875 4.328125 11.457031 5.4375 17.300781 2.941406 5.824219-2.539062 9.601563-8.296875 9.601563-14.675781v-48h384c11.796875 0 21.332031-9.535156 21.332031-21.332031s-9.535156-21.335938-21.332031-21.335938zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m277.332031 362.667969c-11.796875 0-21.332031-9.539063-21.332031-21.335938v-320c0-11.796875 9.535156-21.332031 21.332031-21.332031s21.335938 9.535156 21.335938 21.332031v320c0 11.796875-9.539063 21.335938-21.335938 21.335938zm0 0"/><path d="m213.332031 362.667969c-11.796875 0-21.332031-9.539063-21.332031-21.335938v-320c0-11.796875 9.535156-21.332031 21.332031-21.332031s21.335938 9.535156 21.335938 21.332031v320c0 11.796875-9.539063 21.335938-21.335938 21.335938zm0 0"/><path d="m213.332031 192h-74.664062c-52.929688 0-96-43.070312-96-96s43.070312-96 96-96h181.332031c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938h-181.332031c-29.421875 0-53.335938 23.914062-53.335938 53.332031s23.914063 53.332031 53.335938 53.332031h74.664062c11.796875 0 21.335938 9.539063 21.335938 21.335938s-9.539063 21.332031-21.335938 21.332031zm0 0"/><path d="m320 362.667969h-149.332031c-11.796875 0-21.335938-9.539063-21.335938-21.335938s9.539063-21.332031 21.335938-21.332031h149.332031c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m506.902344 414.933594-74.667969-69.332032c-3.027344-2.796874-6.933594-4.269531-10.902344-4.269531-2.175781 0-4.328125.449219-6.398437 1.324219-5.824219 2.558594-9.601563 8.320312-9.601563 14.675781v48h-384c-11.796875 0-21.332031 9.539063-21.332031 21.335938s9.535156 21.332031 21.332031 21.332031h384v48c0 6.355469 3.777344 12.117188 9.601563 14.675781 5.824218 2.519531 12.628906 1.386719 17.300781-2.941406l74.667969-69.335937c3.242187-3.027344 5.097656-7.273438 5.097656-11.730469 0-4.460938-1.855469-8.683594-5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="-10 0 511 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m469.855469 490.667969h-213.335938c-11.796875 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.535156-21.332031 21.332031-21.332031h213.335938c11.796875 0 21.332031 9.558594 21.332031 21.332031 0 11.777344-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m469.855469 277.332031h-213.335938c-11.796875 0-21.332031-9.554687-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h213.335938c11.796875 0 21.332031 9.554687 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m469.855469 64h-213.335938c-11.796875 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.535156-21.335938 21.332031-21.335938h213.335938c11.796875 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m155.164062 405.332031h-47.976562v-298.664062h47.976562c6.359376 0 12.117188-3.777344 14.679688-9.601563.894531-2.070312 1.320312-4.222656 1.320312-6.398437 0-3.96875-1.46875-7.875-4.265624-10.902344l-69.332032-74.667969c-3.03125-3.242187-7.273437-5.097656-11.734375-5.097656-4.457031 0-8.683593 1.855469-11.710937 5.097656l-69.332032 74.667969c-4.332031 4.671875-5.464843 11.457031-2.945312 17.300781 2.539062 5.824219 8.296875 9.601563 14.65625 9.601563h48.019531v298.664062h-48.019531c-6.359375 0-12.117188 3.777344-14.679688 9.601563-2.515624 5.824218-1.386718 12.628906 2.945313 17.300781l69.332031 74.667969c3.050782 3.242187 7.296875 5.097656 11.734375 5.097656s8.703125-1.855469 11.734375-5.097656l69.332032-74.667969c2.796874-3.027344 4.265624-6.933594 4.265624-10.902344 0-2.175781-.445312-4.328125-1.320312-6.398437-2.539062-5.824219-8.300781-9.601563-14.679688-9.601563zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -21 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m298.667969 42.667969h-85.335938c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m298.667969 149.332031h-85.335938c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m298.667969 256h-85.335938c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.335938 21.332031-21.335938h85.335938c11.796875 0 21.332031 9.539063 21.332031 21.335938s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m298.667969 362.667969h-85.335938c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m298.667969 469.332031h-85.335938c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m106.667969 42.667969h-85.335938c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m106.667969 149.332031h-85.335938c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m106.667969 256h-85.335938c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.335938 21.332031-21.335938h85.335938c11.796875 0 21.332031 9.539063 21.332031 21.335938s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m106.667969 362.667969h-85.335938c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m106.667969 469.332031h-85.335938c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 42.667969h-85.335938c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m490.667969 149.332031h-85.335938c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 256h-85.335938c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.335938 21.332031-21.335938h85.335938c11.796875 0 21.332031 9.539063 21.332031 21.335938s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 362.667969h-85.335938c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m490.667969 469.332031h-85.335938c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h85.335938c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 42.667969h-21.332031c-11.777344 0-21.335938-9.539063-21.335938-21.335938s9.558594-21.332031 21.335938-21.332031h21.332031c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 128h-21.332031c-11.777344 0-21.335938-9.535156-21.335938-21.332031s9.558594-21.335938 21.335938-21.335938h21.332031c11.777344 0 21.332031 9.539063 21.332031 21.335938s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 213.332031h-21.332031c-11.777344 0-21.335938-9.535156-21.335938-21.332031s9.558594-21.332031 21.335938-21.332031h21.332031c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m42.667969 128h-21.335938c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.335938 21.332031-21.335938h21.335938c11.773437 0 21.332031 9.539063 21.332031 21.335938s-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m42.667969 42.667969h-21.335938c-11.773437 0-21.332031-9.539063-21.332031-21.335938s9.558594-21.332031 21.332031-21.332031h21.335938c11.773437 0 21.332031 9.535156 21.332031 21.332031s-9.558594 21.335938-21.332031 21.335938zm0 0"/><path d="m42.667969 213.332031h-21.335938c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h21.335938c11.773437 0 21.332031 9.535156 21.332031 21.332031s-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m448 298.667969h-426.667969c-11.773437 0-21.332031-9.539063-21.332031-21.335938s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 384h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.335938 21.332031-21.335938h426.667969c11.777344 0 21.332031 9.539063 21.332031 21.335938s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 469.332031h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m330.667969 0h-192c-17.644531 0-32 14.355469-32 32v149.332031c0 17.644531 14.355469 32 32 32h192c17.640625 0 32-14.355469 32-32v-149.332031c0-17.644531-14.359375-32-32-32zm-10.667969 42.667969v86.078125l-30.316406-27.261719c-8.574219-7.683594-21.738282-7.234375-29.695313 1.128906l-34.664062 36.308594-16.789063-15.785156c-8.535156-8.023438-21.976562-7.660157-30.058594.832031l-29.144531 30.570312v-111.871093zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 213.332031h-128c-11.777344 0-21.332031-9.535156-21.332031-21.332031s9.554687-21.332031 21.332031-21.332031h128c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 298.667969h-426.667969c-11.773437 0-21.332031-9.539063-21.332031-21.335938s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 384h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.335938 21.332031-21.335938h426.667969c11.777344 0 21.332031 9.539063 21.332031 21.335938s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 469.332031h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m224 0h-192c-17.644531 0-32 14.355469-32 32v149.332031c0 17.644531 14.355469 32 32 32h192c17.644531 0 32-14.355469 32-32v-149.332031c0-17.644531-14.355469-32-32-32zm-10.667969 42.667969v86.078125l-30.3125-27.285156c-8.578125-7.679688-21.71875-7.230469-29.695312 1.152343l-34.667969 36.308594-16.789062-15.785156c-8.535157-8.023438-21.972657-7.660157-30.058594.832031l-29.140625 30.570312v-111.871093zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m448 128h-128c-11.777344 0-21.332031-9.535156-21.332031-21.332031s9.554687-21.335938 21.332031-21.335938h128c11.777344 0 21.332031 9.539063 21.332031 21.335938s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 42.667969h-128c-11.777344 0-21.332031-9.539063-21.332031-21.335938s9.554687-21.332031 21.332031-21.332031h128c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 213.332031h-128c-11.777344 0-21.332031-9.535156-21.332031-21.332031s9.554687-21.332031 21.332031-21.332031h128c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 298.667969h-426.667969c-11.773437 0-21.332031-9.539063-21.332031-21.335938s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 384h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.335938 21.332031-21.335938h426.667969c11.777344 0 21.332031 9.539063 21.332031 21.335938s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 469.332031h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m224 0h-192c-17.644531 0-32 14.355469-32 32v149.332031c0 17.644531 14.355469 32 32 32h192c17.644531 0 32-14.355469 32-32v-149.332031c0-17.644531-14.355469-32-32-32zm-10.667969 42.667969v86.078125l-30.3125-27.285156c-8.578125-7.679688-21.71875-7.230469-29.695312 1.152343l-34.667969 36.308594-16.789062-15.785156c-8.535157-8.023438-21.972657-7.660157-30.058594.832031l-29.140625 30.570312v-111.871093zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -21 512 511" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m405.332031 256.488281h-149.332031c-11.777344 0-21.332031-9.554687-21.332031-21.332031s9.554687-21.332031 21.332031-21.332031h149.332031c11.777344 0 21.335938 9.554687 21.335938 21.332031s-9.558594 21.332031-21.335938 21.332031zm0 0"/><path d="m490.667969 363.15625h-234.667969c-11.777344 0-21.332031-9.558594-21.332031-21.332031 0-11.777344 9.554687-21.335938 21.332031-21.335938h234.667969c11.773437 0 21.332031 9.558594 21.332031 21.335938 0 11.773437-9.558594 21.332031-21.332031 21.332031zm0 0"/><path d="m405.332031 469.824219h-149.332031c-11.777344 0-21.332031-9.558594-21.332031-21.335938 0-11.773437 9.554687-21.332031 21.332031-21.332031h149.332031c11.777344 0 21.335938 9.558594 21.335938 21.332031 0 11.777344-9.558594 21.335938-21.335938 21.335938zm0 0"/><path d="m474.667969 21.824219h-202.667969c-20.585938 0-37.332031 16.746093-37.332031 37.332031v53.332031c0 20.589844 16.746093 37.335938 37.332031 37.335938h202.667969c20.585937 0 37.332031-16.746094 37.332031-37.335938v-53.332031c0-20.585938-16.746094-37.332031-37.332031-37.332031zm0 0"/><path d="m186.902344 74.089844-74.667969-69.332032c-4.671875-4.332031-11.457031-5.441406-17.300781-2.945312-5.824219 2.558594-9.601563 8.320312-9.601563 14.675781v48h-64c-11.796875 0-21.332031 9.558594-21.332031 21.335938 0 11.773437 9.535156 21.332031 21.332031 21.332031h64v48c0 6.359375 3.777344 12.117188 9.601563 14.675781 2.070312.875 4.222656 1.324219 6.398437 1.324219 3.96875 0 7.875-1.472656 10.902344-4.265625l74.667969-69.335937c3.242187-3.027344 5.097656-7.292969 5.097656-11.730469s-1.855469-8.707031-5.097656-11.734375zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg height="469.33333pt" viewBox="0 0 469.33333 469.33333" width="469.33333pt" xmlns="http://www.w3.org/2000/svg"><path d="m149.332031 128h-128c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.335938 21.332031-21.335938h128c11.777344 0 21.335938 9.539063 21.335938 21.335938s-9.558594 21.332031-21.335938 21.332031zm0 0"/><path d="m149.332031 42.667969h-128c-11.773437 0-21.332031-9.539063-21.332031-21.335938s9.558594-21.332031 21.332031-21.332031h128c11.777344 0 21.335938 9.535156 21.335938 21.332031s-9.558594 21.335938-21.335938 21.335938zm0 0"/><path d="m149.332031 213.332031h-128c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h128c11.777344 0 21.335938 9.535156 21.335938 21.332031s-9.558594 21.332031-21.335938 21.332031zm0 0"/><path d="m448 298.667969h-426.667969c-11.773437 0-21.332031-9.539063-21.332031-21.335938s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.335938-21.332031 21.335938zm0 0"/><path d="m448 384h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.335938 21.332031-21.335938h426.667969c11.777344 0 21.332031 9.539063 21.332031 21.335938s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m448 469.332031h-426.667969c-11.773437 0-21.332031-9.535156-21.332031-21.332031s9.558594-21.332031 21.332031-21.332031h426.667969c11.777344 0 21.332031 9.535156 21.332031 21.332031s-9.554687 21.332031-21.332031 21.332031zm0 0"/><path d="m437.332031 0h-192c-17.640625 0-32 14.355469-32 32v149.332031c0 17.644531 14.359375 32 32 32h192c17.644531 0 32-14.355469 32-32v-149.332031c0-17.644531-14.355469-32-32-32zm-10.664062 42.667969v86.078125l-30.316407-27.261719c-8.574218-7.683594-21.738281-7.234375-29.695312 1.128906l-34.667969 36.308594-16.789062-15.785156c-8.53125-8.023438-21.972657-7.660157-30.058594.832031l-29.140625 30.570312v-111.871093zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +0,0 @@
<svg height="512pt" viewBox="0 -21 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="m213.332031 42.667969h-192c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h192c11.796875 0 21.335938 9.535156 21.335938 21.332031s-9.539063 21.335938-21.335938 21.335938zm0 0"/><path d="m213.332031 149.332031h-192c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h192c11.796875 0 21.335938 9.535156 21.335938 21.332031s-9.539063 21.332031-21.335938 21.332031zm0 0"/><path d="m213.332031 256h-192c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.335938 21.332031-21.335938h192c11.796875 0 21.335938 9.539063 21.335938 21.335938s-9.539063 21.332031-21.335938 21.332031zm0 0"/><path d="m213.332031 362.667969h-192c-11.796875 0-21.332031-9.539063-21.332031-21.335938s9.535156-21.332031 21.332031-21.332031h192c11.796875 0 21.335938 9.535156 21.335938 21.332031s-9.539063 21.335938-21.335938 21.335938zm0 0"/><path d="m213.332031 469.332031h-192c-11.796875 0-21.332031-9.535156-21.332031-21.332031s9.535156-21.332031 21.332031-21.332031h192c11.796875 0 21.335938 9.535156 21.335938 21.332031s-9.539063 21.332031-21.335938 21.332031zm0 0"/><path d="m490.667969 42.667969h-192c-11.796875 0-21.335938-9.539063-21.335938-21.335938s9.539063-21.332031 21.335938-21.332031h192c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m490.667969 149.332031h-192c-11.796875 0-21.335938-9.535156-21.335938-21.332031s9.539063-21.332031 21.335938-21.332031h192c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 256h-192c-11.796875 0-21.335938-9.535156-21.335938-21.332031s9.539063-21.335938 21.335938-21.335938h192c11.796875 0 21.332031 9.539063 21.332031 21.335938s-9.535156 21.332031-21.332031 21.332031zm0 0"/><path d="m490.667969 362.667969h-192c-11.796875 0-21.335938-9.539063-21.335938-21.335938s9.539063-21.332031 21.335938-21.332031h192c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.335938-21.332031 21.335938zm0 0"/><path d="m490.667969 469.332031h-192c-11.796875 0-21.335938-9.535156-21.335938-21.332031s9.539063-21.332031 21.335938-21.332031h192c11.796875 0 21.332031 9.535156 21.332031 21.332031s-9.535156 21.332031-21.332031 21.332031zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -1,53 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<g>
<path d="M432,32H16C7.168,32,0,39.168,0,48v32c0,8.832,7.168,16,16,16h416c8.832,0,16-7.168,16-16V48
C448,39.168,440.832,32,432,32z"/>
</g>
</g>
<g>
<g>
<path d="M506.24,371.712l-96-80c-4.768-3.968-11.424-4.8-17.024-2.176C387.584,292.128,384,297.792,384,304v48H16
c-8.832,0-16,7.168-16,16v32c0,8.832,7.168,16,16,16h368v48c0,6.208,3.584,11.84,9.216,14.496c2.144,0.992,4.48,1.504,6.784,1.504
c3.68,0,7.328-1.248,10.24-3.712l96-80c3.68-3.04,5.76-7.552,5.76-12.288C512,379.264,509.92,374.752,506.24,371.712z"/>
</g>
</g>
<g>
<g>
<polygon points="296.32,128 46.688,320 151.68,320 401.28,128 "/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512.008 512.008" style="enable-background:new 0 0 512.008 512.008;" xml:space="preserve">
<g>
<g>
<path d="M507.328,356.669l-96-96c-4.576-4.576-11.456-5.952-17.44-3.456c-5.984,2.496-9.888,8.32-9.888,14.784v48h-96
c-17.6,0-32-14.4-32-32v-128c0-70.72-57.28-128-128-128s-128,57.28-128,128v16c0,8.832,7.168,16,16,16h64c8.832,0,16-7.168,16-16
v-16c0-17.6,14.4-32,32-32c17.6,0,32,14.4,32,32v128c0,70.72,57.28,128,128,128h96v48c0,6.464,3.904,12.32,9.888,14.784
c5.984,2.496,12.864,1.12,17.44-3.456l96-96C513.568,373.053,513.568,362.909,507.328,356.669z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -1,44 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512.016 512.016" style="enable-background:new 0 0 512.016 512.016;" xml:space="preserve">
<g>
<g>
<path d="M462.793,393.896c-2.464-5.984-8.32-9.888-14.784-9.888h-48v-32c0-79.36-64.64-144-144-144c-26.56,0-48-21.44-48-48v-32
h48c6.464,0,12.32-3.904,14.784-9.888s1.088-12.832-3.488-17.44l-96-96c-6.24-6.24-16.384-6.24-22.624,0l-96,96
c-4.544,4.608-5.92,11.456-3.456,17.44s8.32,9.888,14.784,9.888h48v32c0,79.36,64.64,144,144,144c26.56,0,48,21.44,48,48v32h-48
c-6.464,0-12.32,3.904-14.784,9.888s-1.088,12.864,3.456,17.44l96,96c6.24,6.24,16.384,6.24,22.624,0l96-96
C463.881,406.728,465.257,399.88,462.793,393.896z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 496.014 496.014" style="enable-background:new 0 0 496.014 496.014;" xml:space="preserve">
<g>
<g>
<path d="M312.003,0h-16c-123.712,0-224,78.784-224,176v112h1.024c10.304-89.696,106.144-160,222.976-160h16
c8.832,0,16-7.168,16-16V16C328.003,7.168,320.835,0,312.003,0z"/>
</g>
</g>
<g>
<g>
<path d="M419.331,372.672l-96-96c-4.576-4.544-11.456-5.92-17.44-3.456s-9.888,8.32-9.888,14.784v32
c-116.832,0-212.672-70.304-222.976-160h-1.024v112c0,97.216,100.288,176,224,176v32c0,6.464,3.904,12.32,9.888,14.784
c5.984,2.496,12.864,1.12,17.44-3.456l96-96C425.571,389.056,425.571,378.944,419.331,372.672z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512.008 512.008" style="enable-background:new 0 0 512.008 512.008;" xml:space="preserve">
<g>
<g>
<path d="M363.342,100.68l-96-96c-6.24-6.24-16.384-6.24-22.624,0l-96,96c-4.608,4.608-5.984,11.456-3.488,17.44
c2.464,5.984,8.32,9.888,14.784,9.888h48v368c0,8.832,7.168,16,16,16h64c8.832,0,16-7.168,16-16v-368h48
c6.464,0,12.32-3.904,14.784-9.888S367.886,105.288,363.342,100.68z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 860 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

@ -1,49 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<g>
<path d="M447.999,320h-32c-8.832,0-16,7.168-16,16v112h-320V336c0-8.832-7.168-16-16-16h-32c-8.832,0-16,7.168-16,16v112
c0,35.36,28.64,64,64,64h320c35.36,0,64-28.64,64-64V336C463.999,327.168,456.831,320,447.999,320z"/>
</g>
</g>
<g>
<g>
<path d="M490.015,67.488l-80-64C407.071,1.152,403.519,0,399.999,0c-3.52,0-7.072,1.152-10.016,3.488l-80,64
c-5.312,4.256-7.328,11.36-5.088,17.792c2.272,6.432,8.32,10.72,15.104,10.72h48v32c0,106.048-85.952,192-192,192h-16
c-8.832,0-16,7.168-16,16v32c0,8.832,7.168,16,16,16h16c141.376,0,256-114.624,256-256V96h48c6.784,0,12.832-4.288,15.104-10.72
C497.343,78.88,495.295,71.744,490.015,67.488z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 479.992 479.992" style="enable-background:new 0 0 479.992 479.992;" xml:space="preserve">
<g>
<g>
<path d="M377.052,114.712L250.556,3.96c-6.048-5.28-15.04-5.28-21.088,0L102.94,114.712c-6.656,5.824-7.328,15.968-1.472,22.624
l21.088,23.968c5.856,6.624,15.936,7.264,22.56,1.472l62.88-55.104v228.32c0,8.832,7.168,16,16,16h32c8.832,0,16-7.168,16-16
v-228.32l62.88,55.104c6.656,5.792,16.736,5.152,22.56-1.472l21.088-24C384.38,130.68,383.708,120.536,377.052,114.712z"/>
</g>
</g>
<g>
<g>
<path d="M415.996,415.992h-352c-8.832,0-16,7.168-16,16v32c0,8.832,7.168,16,16,16h352c8.832,0,16-7.168,16-16v-32
C431.996,423.16,424.828,415.992,415.996,415.992z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<g>
<path d="M348.288,101.616l-80-96c-6.08-7.296-18.496-7.296-24.608,0l-80,96c-3.936,4.768-4.8,11.392-2.176,17.024
c2.624,5.632,8.288,9.216,14.496,9.216h48v240c0,8.832,7.168,16,16,16h32c8.832,0,16-7.168,16-16v-240h48
c6.208,0,11.84-3.584,14.496-9.216C353.12,113.008,352.256,106.384,348.288,101.616z"/>
</g>
</g>
<g>
<g>
<path d="M480,191.856H320v64h128v192H64v-192h128v-64H32c-17.664,0-32,14.336-32,32v256c0,17.696,14.336,32,32,32h448
c17.696,0,32-14.304,32-32v-256C512,206.192,497.696,191.856,480,191.856z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -1,47 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<g>
<path d="M380.032,133.472l-112-128C264.992,2.016,260.608,0,256,0c-4.608,0-8.992,2.016-12.032,5.472l-112,128
c-4.128,4.736-5.152,11.424-2.528,17.152C132.032,156.32,137.728,160,144,160h64v208c0,8.832,7.168,16,16,16h64
c8.832,0,16-7.168,16-16V160h64c6.272,0,11.968-3.648,14.56-9.376C385.152,144.896,384.192,138.176,380.032,133.472z"/>
</g>
</g>
<g>
<g>
<path d="M432,352v96H80v-96H16v128c0,17.696,14.336,32,32,32h416c17.696,0,32-14.304,32-32V352H432z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -1,47 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 511.992 511.992" style="enable-background:new 0 0 511.992 511.992;" xml:space="preserve">
<g>
<g>
<path d="M378.396,99.864l-112-96c-5.984-5.152-14.848-5.152-20.8,0l-112,96c-5.088,4.32-6.944,11.392-4.608,17.664
c2.336,6.304,8.32,10.464,15.008,10.464h48v144c0,8.832,7.168,16,16,16h96c8.832,0,16-7.168,16-16v-144h48
c6.688,0,12.672-4.16,15.008-10.464C385.34,111.256,383.484,104.184,378.396,99.864z"/>
</g>
</g>
<g>
<g>
<circle cx="255.996" cy="415.992" r="96"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 951 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512.016 512.016" style="enable-background:new 0 0 512.016 512.016;" xml:space="preserve">
<g>
<g>
<path d="M352.019,384.008h-48v-256h48c6.464,0,12.32-3.904,14.784-9.888s1.088-12.864-3.456-17.44l-96-96
c-6.24-6.24-16.384-6.24-22.624,0l-96,96c-4.608,4.608-5.984,11.456-3.488,17.44c2.464,5.984,8.32,9.888,14.784,9.888h48v256h-48
c-6.464,0-12.32,3.904-14.784,9.888c-2.496,5.984-1.12,12.864,3.456,17.44l96,96c6.24,6.24,16.384,6.24,22.624,0l96-96
c4.576-4.576,5.952-11.456,3.456-17.44C364.275,387.912,358.483,384.008,352.019,384.008z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -1,44 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512.011 512.011" style="enable-background:new 0 0 512.011 512.011;" xml:space="preserve">
<g>
<g>
<path d="M511.136,286.255C502.08,194.863,419.84,128.015,328,128.015H192v-80c0-6.144-3.52-11.744-9.056-14.432
c-5.568-2.656-12.128-1.952-16.928,1.92l-160,128C2.208,166.575,0,171.151,0,176.015s2.208,9.44,5.984,12.512l160,128
c2.912,2.304,6.464,3.488,10.016,3.488c2.368,0,4.736-0.512,6.944-1.568c5.536-2.688,9.056-8.288,9.056-14.432v-80h139.392
c41.856,0,80,30.08,84.192,71.712c4.832,47.872-32.704,88.288-79.584,88.288H208c-8.832,0-16,7.168-16,16v64
c0,8.832,7.168,16,16,16h128C438.816,480.015,521.472,391.151,511.136,286.255z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512.022 512.022" style="enable-background:new 0 0 512.022 512.022;" xml:space="preserve">
<g>
<g>
<path d="M507.347,100.68l-96-96c-6.24-6.24-16.384-6.24-22.624,0l-96,96c-4.576,4.576-5.952,11.456-3.488,17.44
s8.32,9.888,14.784,9.888h48v224h-224v-48c0-6.464-3.904-12.32-9.888-14.784s-12.864-1.088-17.44,3.488l-96,96
c-6.24,6.24-6.24,16.384,0,22.624l96,96c4.576,4.576,11.456,5.952,17.44,3.456s9.888-8.32,9.888-14.784v-48h304
c8.832,0,16-7.168,16-16v-304h48c6.464,0,12.32-3.904,14.784-9.888C513.267,112.136,511.891,105.256,507.347,100.68z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -1,44 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 511.985 511.985" style="enable-background:new 0 0 511.985 511.985;" xml:space="preserve">
<g>
<g>
<path d="M507.32,148.668l-96-96c-6.24-6.24-16.384-6.24-22.624,0l-96,96c-4.576,4.608-5.952,11.456-3.488,17.44
s8.32,9.888,14.784,9.888h48v96c0,52.928-43.072,96-96,96c-52.928,0-96-43.072-96-96v-96h48c6.464,0,12.32-3.904,14.784-9.888
s1.088-12.832-3.456-17.44l-96-96c-6.24-6.24-16.384-6.24-22.624,0l-96,96c-4.576,4.608-5.952,11.456-3.488,17.44
s8.32,9.888,14.784,9.888h48v96c0,105.888,86.112,192,192,192s192-86.112,192-192v-96h48c6.464,0,12.32-3.904,14.784-9.888
S511.864,153.276,507.32,148.668z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,44 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 511.612 511.612" style="enable-background:new 0 0 511.612 511.612;" xml:space="preserve">
<g>
<g>
<path d="M433.822,126.876l-113.28-113.28c-18.048-18.112-49.632-18.144-67.744,0c-18.752,18.752-18.752,49.312,0,68.064
l29.984,29.952h-18.976c-110.272,0-200,89.728-200,200s89.728,200,200,200h8c8.832,0,16-7.168,16-16v-64c0-8.832-7.168-16-16-16
h-8c-57.344,0-104-46.656-104-104s46.656-104,104-104h21.216l-32.224,32.192c-18.752,18.784-18.752,49.312,0,68.064
c17.984,17.952,50.304,17.536,67.744,0l113.312-113.28c8.864-8.896,13.952-21.152,13.952-33.696
C447.806,148.444,442.974,136.476,433.822,126.876z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512.014 512.014" style="enable-background:new 0 0 512.014 512.014;" xml:space="preserve">
<g>
<g>
<path d="M459.331,100.686l-96-96c-4.576-4.576-11.456-5.952-17.44-3.456c-5.984,2.496-9.888,8.32-9.888,14.784v48h-160
c-70.688,0-128,57.312-128,128v304c0,8.832,7.168,16,16,16h64c8.832,0,16-7.168,16-16v-304c0-17.664,14.336-32,32-32h160v48
c0,6.464,3.904,12.32,9.888,14.784c5.984,2.496,12.864,1.12,17.44-3.456l96-96C465.571,117.07,465.571,106.926,459.331,100.686z"
/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 949 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512.019 512.019" style="enable-background:new 0 0 512.019 512.019;" xml:space="preserve">
<g>
<g>
<path d="M288.009,96.019h-48v-80c0-6.144-3.52-11.744-9.056-14.432c-5.568-2.656-12.128-1.952-16.928,1.92l-160,128
c-3.808,3.072-6.016,7.648-6.016,12.512s2.208,9.44,6.016,12.512l160,128c2.88,2.304,6.432,3.488,9.984,3.488
c2.368,0,4.736-0.512,6.944-1.568c5.536-2.688,9.056-8.288,9.056-14.432v-80h48c44.128,0,80,35.904,80,80v240h96v-240
C464.009,174.963,385.033,96.019,288.009,96.019z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 969 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 448.008 448.008" style="enable-background:new 0 0 448.008 448.008;" xml:space="preserve">
<g>
<g>
<path d="M411.336,100.68l-96-96c-6.24-6.24-16.384-6.24-22.624,0l-96,96c-4.576,4.576-5.952,11.456-3.488,17.44
s8.32,9.888,14.784,9.888h48v224h-224v96h304c8.832,0,16-7.168,16-16v-304h48c6.464,0,12.32-3.904,14.784-9.888
S415.88,105.256,411.336,100.68z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 833 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,44 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 480 480" style="enable-background:new 0 0 480 480;" xml:space="preserve">
<g>
<g>
<path d="M428.64,119.424L340.32,6.144C337.28,2.272,332.64,0,327.68,0h-80.96c-6.176,0-11.808,3.552-14.464,9.152
c-2.656,5.568-1.824,12.192,2.08,16.96L278.272,80H248C137.728,80,48,169.728,48,280s89.728,200,200,200h8c8.832,0,16-7.168,16-16
v-64c0-8.832-7.168-16-16-16h-8c-57.344,0-104-46.656-104-104s46.656-104,104-104h31.872l-43.936,53.888
c-3.936,4.768-4.736,11.392-2.08,16.96c2.656,5.6,8.288,9.152,14.464,9.152h81.28c4.928,0,9.6-2.272,12.64-6.144l86.4-110.72
C433.12,133.344,433.12,125.248,428.64,119.424z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -1,44 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 511.995 511.995" style="enable-background:new 0 0 511.995 511.995;" xml:space="preserve">
<g>
<g>
<path d="M478.785,265.883c-2.464-5.984-8.32-9.888-14.784-9.888h-48v-57.312c0-97.568-69.952-184.64-166.752-197.056
C132.161-13.413,32.001,77.819,32.001,191.995v304c0,8.832,7.168,16,16,16h64c8.832,0,16-7.168,16-16V195.771
c0-46.432,31.296-89.088,76.864-97.92c61.28-11.904,115.136,34.944,115.136,94.144v64h-48c-6.464,0-12.32,3.904-14.784,9.888
c-2.464,5.984-1.088,12.864,3.488,17.44l96,96c6.24,6.24,16.384,6.24,22.624,0l96-96
C479.873,278.747,481.249,271.867,478.785,265.883z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

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