Unverified Commit e409ad5b authored by Daniel Farina's avatar Daniel Farina Committed by GitHub
Browse files

Remove docs from Osmosis repo (#828)


* Added Algolia crawler settings and instructions.

* Added Algolia crawler settings and instructions. (Config & Readme)

* created example dropdowns in place of very busy page. Styl changes required

* footer no longer blank, different favicon than app

* rearranged cli section, took out mailing list function until implemented

* added asset page with ibc denoms and channels

* added module accounts with their addresses

* added history of changes to osmosis

* band-aid fix for testnet snapshot path issue

* github edit now takes you to docs branch instead of main

* pubkey update

* pubkey update

* Updated "Recommended readings" for IBC

* limitnofile update inf

* limitnofile to inf

* added limitnproc to inf

* added limitnproc to inf

* changed rpc

* rocksdb guide

* use 6.2.0

* correct from tx send to tx bank send

* swap exact amount out fix

* create rocksdb guide (#779)

* Update rocksdb.md

* Update rocksdb.md

* Update rocksdb.md

* need to reload journald now for logs to work

* created airdrop account export instructions

* state export time increase and 2> explanation

* added atom scan block explorer

* Updated docs build to execute on commits on the main branch that contain the tag: documentation. If the tag is not present, the docs will not build a new version.

* Updated docsBranch on the vue app for the "edit this page on Github" link.

* Remove Docs from osmosis's repo
Remove Doc's git action
Added a placer holder to let people know about the new repository.

Co-authored-by: default avatarAdam Tucker <adamleetucker@outlook.com>
Co-authored-by: default avatarclemensgg <79083520+clemensgg@users.noreply.github.com>
parent 1bcc8db2
Showing with 0 additions and 616 deletions
+0 -616
name: Build and Deploy Docs
on:
push:
branches:
- docs
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Install and Build 🔧 # This will create version inside the 'build' folder.
run: |
cd docs
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/.vuepress/dist
File deleted
File deleted
module.exports = {
title: "Osmosis Docs",
markdown: {
lineNumbers: true,
extendMarkdown: (md) => {
md.use(require("markdown-it-footnote"));
},
},
base: "/",
description:
"Osmosis - The Cosmos Interchain AMM",
plugins: [
[
"@vuepress/register-components",
{
componentsDir: "theme/components",
},
],
[
"vuepress-plugin-mathjax",
{
target: "svg",
macros: {
"*": "\\times",
},
},
],
// https://github.com/znicholasbrown/vuepress-plugin-code-copy
// ["vuepress-plugin-code-copy", {
// color: "#ffffff",
// backgroundColor: "#3e3383",
// }
// ],
["@maginapp/vuepress-plugin-copy-code", {
color: "#ffffff",
backgroundColor: "#ffffff",
align: { bottom: '7px', right: '12px' },
successText: " ",
duration: 350,
}
],
[ 'tabs' ],
],
head: [
[
"link",
{
rel: "stylesheet",
type: "text/css",
href: "https://cloud.typography.com/7420256/6416592/css/fonts.css",
},
],
[
"link",
{
rel: "stylesheet",
type: "text/css",
href:
"https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined",
},
],
[
"link",
{
rel: "stylesheet",
type: "text/css",
href:
"https://fonts.googleapis.com/css?family=Noto+Sans+KR:400,500,700&display=swap",
},
],
[
"link",
{
rel: "icon",
type: "image/png",
href: "/img/favicon.png",
},
],
[
"script",
{},
`window.onload = function() {
requestAnimationFrame(function() {
if (location.hash) {
const element = document.getElementById(location.hash.slice(1))
if (element) {
element.scrollIntoView()
}
}
})
}`,
],
[
"meta",
{
property:"og:image",
content:"/img/osmosis-tile.png",
},
],
],
themeConfig: {
sidebarDepth: 3,
smoothScroll: true,
// overrideTheme: 'dark',
// prefersTheme: 'dark',
// overrideTheme: { light: [6, 18], dark: [18, 6] },
// theme: 'default-prefers-color-scheme',
logo: "/img/osmosis-logo-dark.svg",
logoDark: "/img/osmosis-logo-light.svg",
lastUpdated: "Updated on",
repo: "osmosis-labs/osmosis",
editLinks: true,
editLinkText: "Edit this page on GitHub",
docsBranch: 'main',
docsDir: "docs",
algolia: {
apiKey: "a95b2bd527cd60164d4e6e26c15fc4d1", //TODO GET KEY
indexName: "Docs",
appId: "YQ6N23UJAN"
// If Algolia did not provided you any `appId`, use `BH4D9OD16A` or remove this option
},
nav: [
{ text: 'Home', link: '/', },
{ text: 'Overview', link: '/overview/',},
{ text: 'Develop', link: '/developing/',},
{ text: 'Validate', link: '/validators/',},
{ text: 'Integrate', link: '/integrate/',},
{ text: 'Chat', link: 'https://v2.vuepress.vuejs.org/',},
{
text: "GitHub",
link: "https://github.com/osmosis-labs/osmosis",
icon: "/img/github.svg",
},
],
sidebar: {
"/overview/": [
{
title: "About",
children: [
'/overview/',
'/overview/osmo',
'/overview/terminology',
'/overview/governance',
],
collapsable: true,
},
{
title: "Osmosis AMM App",
children: [
'/overview/osmosis-app/',
'/overview/osmosis-app/learn-more',
],
collapsable: true,
},
{
title: 'Wallets',
children: [
'/overview/wallets/keplr/install-keplr',
'/overview/wallets/keplr/create-keplr-wallet',
'/overview/wallets/keplr/import-account',
'/overview/wallets/keplr/import-ledger-account',
],
collapsable: true,
},
],
'/developing': [
{
title: 'Home',
children: [
'/developing/',
],
collapsable: false,
},
{
title: 'Chain Developer Guide',
children: [
'/developing/chain-dev-guide',
'/developing/cli/',
'/developing/cli/install',
],
collapsable: true,
},
{
title: "osmosisd",
children: [
"/developing/osmosisd/",
"/developing/osmosisd/commands",
"/developing/osmosisd/subcommands",
],
collapsable: true,
},
{
title: 'Networks',
children: [
'/developing/network/join-testnet',
'/developing/network/join-mainnet',
],
collapsable: true,
},
{
title: 'Modules',
children: [
"/developing/modules/",
"/developing/modules/spec-epochs",
"/developing/modules/spec-gamm",
"/developing/modules/spec-gov",
"/developing/modules/spec-lockup",
"/developing/modules/spec-mint",
"/developing/modules/spec-incentives",
"/developing/modules/spec-pool-incentives"
],
collapsable: true,
},
{
title: 'Web Developer Guide',
children: [
'/developing/web-dev-guide'
],
collapsable: true,
},
],
'/validators': [
{
title: 'Home',
children: [
'/validators/',
],
collapsable: false,
},
{
title: 'Validate',
children: [
'/validators/validating-testnet',
'/validators/validating-mainnet',
],
collapsable: true,
},
],
'/integrate': [
{
title: 'Home',
children: [
'/integrate/',
],
collapsable: false,
},
{
title: 'Integrate',
children: [
'/integrate/token-listings',
],
collapsable: true,
},
],
"/": [
{
title: "Overview",
children: [
"/history-and-changes",
],
collapsable: false,
},
],
},
},
};
docs/.vuepress/public/img/404page.png

187 KB

docs/.vuepress/public/img/bigdipper.png

1.18 MB

docs/.vuepress/public/img/bonding.png

534 KB

<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="book-open-reader" class="svg-inline--fa fa-book-open-reader" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M0 219.2v212.5c0 14.25 11.62 26.25 26.5 27C75.32 461.2 180.2 471.3 240 511.9V245.2C181.4 205.5 79.99 194.8 29.84 192C13.59 191.1 0 203.6 0 219.2zM482.2 192c-50.09 2.848-151.3 13.47-209.1 53.09C272.1 245.2 272 245.3 272 245.5v266.5c60.04-40.39 164.7-50.76 213.5-53.28C500.4 457.9 512 445.9 512 431.7V219.2C512 203.6 498.4 191.1 482.2 192zM352 96c0-53-43-96-96-96S160 43 160 96s43 96 96 96S352 149 352 96z"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 4.706c-2.938-1.83-7.416-2.566-12-2.706v17.714c3.937.12 7.795.681 10.667 1.995.846.388 1.817.388 2.667 0 2.872-1.314 6.729-1.875 10.666-1.995v-17.714c-4.584.14-9.062.876-12 2.706zm-10 13.104v-13.704c5.157.389 7.527 1.463 9 2.334v13.168c-1.525-.546-4.716-1.504-9-1.798zm20 0c-4.283.293-7.475 1.252-9 1.799v-13.171c1.453-.861 3.83-1.942 9-2.332v13.704zm-2-10.214c-2.086.312-4.451 1.023-6 1.672v-1.064c1.668-.622 3.881-1.315 6-1.626v1.018zm0 3.055c-2.119.311-4.332 1.004-6 1.626v1.064c1.549-.649 3.914-1.361 6-1.673v-1.017zm0-2.031c-2.119.311-4.332 1.004-6 1.626v1.064c1.549-.649 3.914-1.361 6-1.673v-1.017zm0 6.093c-2.119.311-4.332 1.004-6 1.626v1.064c1.549-.649 3.914-1.361 6-1.673v-1.017zm0-2.031c-2.119.311-4.332 1.004-6 1.626v1.064c1.549-.649 3.914-1.361 6-1.673v-1.017zm-16-6.104c2.119.311 4.332 1.004 6 1.626v1.064c-1.549-.649-3.914-1.361-6-1.672v-1.018zm0 5.09c2.086.312 4.451 1.023 6 1.673v-1.064c-1.668-.622-3.881-1.315-6-1.626v1.017zm0-2.031c2.086.312 4.451 1.023 6 1.673v-1.064c-1.668-.622-3.881-1.316-6-1.626v1.017zm0 6.093c2.086.312 4.451 1.023 6 1.673v-1.064c-1.668-.622-3.881-1.315-6-1.626v1.017zm0-2.031c2.086.312 4.451 1.023 6 1.673v-1.064c-1.668-.622-3.881-1.315-6-1.626v1.017z"/></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
.st1{fill:#5E12A0;}
.st2{opacity:0.6;fill:#29143F;enable-background:new ;}
.st3{opacity:0.6;fill:#A98698;enable-background:new ;}
.st4{opacity:0.6;fill:url(#SVGID_2_);enable-background:new ;}
.st5{opacity:0.6;}
.st6{opacity:0.6;fill:url(#SVGID_3_);enable-background:new ;}
.st7{opacity:0.7;}
.st8{opacity:0.7;fill:url(#SVGID_4_);enable-background:new ;}
.st9{fill:#FFFFFF;}
.st10{opacity:0.6;fill:url(#SVGID_5_);enable-background:new ;}
.st11{opacity:0.2;fill:#FFFFFF;enable-background:new ;}
.st12{opacity:0.4;}
.st13{opacity:0.6;fill:url(#SVGID_6_);enable-background:new ;}
.st14{opacity:0.3;fill:#FFFFFF;enable-background:new ;}
.st15{opacity:0.6;fill:url(#SVGID_7_);enable-background:new ;}
.st16{opacity:0.6;fill:url(#SVGID_8_);enable-background:new ;}
.st17{opacity:0.6;fill:url(#SVGID_9_);enable-background:new ;}
.st18{opacity:0.6;fill:url(#SVGID_10_);enable-background:new ;}
.st19{opacity:0.6;fill:url(#SVGID_11_);enable-background:new ;}
</style>
<radialGradient id="SVGID_1_" cx="-241.4882" cy="344.1521" r="1.8545" gradientTransform="matrix(38.1657 0 0 -38.8229 9287.8389 13391.1367)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#FFEAFF;stop-opacity:0.6"/>
<stop offset="0.6807" style="stop-color:#A087C9"/>
<stop offset="1" style="stop-color:#10002F"/>
</radialGradient>
<path class="st0" d="M47.3,92.3c20,0,36.2-16.5,36.2-36.8S67.3,18.7,47.3,18.7c-20,0-36.2,16.5-36.2,36.8S27.3,92.3,47.3,92.3z"/>
<path class="st1" d="M47.3,16.6C26.2,16.6,9,34,9,55.5s17.2,39,38.3,39c21.2,0,38.3-17.4,38.3-39S68.4,16.6,47.3,16.6z M47.3,92.3
c-20,0-36.2-16.5-36.2-36.8s16.2-36.8,36.2-36.8c20,0,36.2,16.5,36.2,36.8S67.3,92.3,47.3,92.3z"/>
<path class="st2" d="M47.3,92.3c20,0,36.2-16.5,36.2-36.8S67.3,18.7,47.3,18.7c-20,0-36.2,16.5-36.2,36.8S27.3,92.3,47.3,92.3z"/>
<path class="st3" d="M47.1,87.9c-19.7-3.2-33.1-22.1-29.9-42.2c1.4-8.9,5.8-16.5,12-21.9c-9.1,5.3-15.8,14.6-17.6,25.9
c-3.2,20.1,10.2,39,29.9,42.2c11,1.8,21.6-1.6,29.4-8.5C64,87.5,55.6,89.2,47.1,87.9z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="73.1246" y1="71.1214" x2="42.7396" y2="43.7143" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st4" d="M53.1,19.3c-9.1-1.5-18,0.6-25.2,5.3c-0.1,0.1-0.3,0.3-0.3,0.3c2.8-1.7,6.9-3.2,6.9-3.2
C24,27.7,20.7,34.8,20.7,34.8c4.1-8,16.1-13.7,25.4-14.1c9.4-0.4,15.5,2.4,23,8.6c7.5,6.2,12,18.8,11.6,28.8
c-0.4,10-5.6,18.1-5.6,18.1c3.6-4.7,5.7-8.1,7.1-11.6c0.3-1.1,0.5-2.1,0.6-3.2C86.2,41.4,72.8,22.5,53.1,19.3z"/>
<g class="st5">
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="85.1052" y1="43.5358" x2="47.0788" y2="8.2069" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st6" d="M79,55.2c0,18.8-14.6,34.2-33,35c0.5,0,0.9,0,1.4,0c19,0,34.4-15.7,34.4-35H79z"/>
</g>
<g class="st7">
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="12.8827" y1="29.3182" x2="49.6467" y2="29.3182" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0" style="stop-color:#000292"/>
<stop offset="0.9952" style="stop-color:#7D00C7"/>
</linearGradient>
<path class="st8" d="M17.7,55.2h-4.9c0,19.3,15.4,35,34.4,35c0.8,0,1.6,0,2.4-0.1C31.8,88.8,17.7,73.6,17.7,55.2z"/>
</g>
<path class="st9" d="M58.6,38.9c3.2,0,5.8-2.7,5.8-5.9c0-3.3-2.6-5.9-5.8-5.9s-5.8,2.7-5.8,5.9C52.8,36.3,55.4,38.9,58.6,38.9z"/>
<path class="st9" d="M68.1,43.3c1.4,0,2.5-1.1,2.5-2.5c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5C65.6,42.2,66.7,43.3,68.1,43.3z"/>
<g class="st5">
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="80.5821" y1="80.9727" x2="75.524" y2="72.8923" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st10" d="M76.9,28.3c-0.1,0-0.1,0-0.1,0c-0.4-0.1-0.6-0.5-0.6-0.9c0.6-3,3-5.9,3.2-6.1c0.3-0.3,0.8-0.3,1-0.1
c0.3,0.3,0.3,0.8,0.1,1.1c-0.1,0.1-2.3,2.8-2.8,5.4C77.5,28.1,77.2,28.3,76.9,28.3z"/>
</g>
<path class="st11" d="M44.9,83c1,0,1.8-0.8,1.8-1.8s-0.8-1.8-1.8-1.8c-1,0-1.8,0.8-1.8,1.8S43.9,83,44.9,83z"/>
<g class="st12">
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="43.0933" y1="20.8415" x2="45.8316" y2="20.8415" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st13" d="M43.9,82.3c-0.7-0.7-0.7-1.9,0-2.6c0.1-0.1,0.3-0.2,0.4-0.3c-0.3,0.1-0.5,0.2-0.6,0.4c-0.7,0.7-0.7,1.9,0,2.6
c0.6,0.6,1.5,0.7,2.2,0.3C45.2,83,44.4,82.9,43.9,82.3z"/>
</g>
<path class="st14" d="M45.6,80.6c0.2,0,0.4-0.2,0.4-0.4c0-0.2-0.2-0.4-0.4-0.4c-0.2,0-0.4,0.2-0.4,0.4
C45.2,80.4,45.4,80.6,45.6,80.6z"/>
<path class="st11" d="M54.4,82.1c1,0,1.8-0.8,1.8-1.8c0-1-0.8-1.8-1.8-1.8c-1,0-1.8,0.8-1.8,1.8C52.6,81.2,53.4,82.1,54.4,82.1z"/>
<g class="st12">
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="52.5347" y1="21.7642" x2="55.2732" y2="21.7642" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st15" d="M53.3,81.4c-0.7-0.7-0.7-1.9,0-2.6c0.1-0.1,0.3-0.2,0.4-0.3c-0.3,0.1-0.5,0.2-0.6,0.4c-0.7,0.7-0.7,1.9,0,2.6
c0.6,0.6,1.5,0.7,2.2,0.3C54.6,82.1,53.9,81.9,53.3,81.4z"/>
</g>
<path class="st14" d="M55,79.7c0.2,0,0.4-0.2,0.4-0.4c0-0.2-0.2-0.4-0.4-0.4c-0.2,0-0.4,0.2-0.4,0.4C54.6,79.5,54.8,79.7,55,79.7z"
/>
<path class="st11" d="M49.7,86.3c0.8,0,1.4-0.6,1.4-1.4s-0.6-1.4-1.4-1.4c-0.8,0-1.4,0.6-1.4,1.4S49,86.3,49.7,86.3z"/>
<g class="st12">
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="48.3437" y1="17" x2="50.3996" y2="17" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st16" d="M48.9,85.8c-0.5-0.5-0.5-1.4,0-2c0.1-0.1,0.2-0.1,0.3-0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.5,0.5-0.5,1.4,0,2
c0.5,0.5,1.1,0.5,1.7,0.2C49.9,86.3,49.3,86.2,48.9,85.8z"/>
</g>
<path class="st14" d="M50.2,84.5c0.1,0,0.3-0.1,0.3-0.3c0-0.1-0.1-0.3-0.3-0.3c-0.1,0-0.3,0.1-0.3,0.3C49.9,84.4,50,84.5,50.2,84.5z
"/>
<path class="st11" d="M58.1,85.4c0.8,0,1.4-0.6,1.4-1.4s-0.6-1.4-1.4-1.4c-0.8,0-1.4,0.6-1.4,1.4S57.3,85.4,58.1,85.4z"/>
<g class="st12">
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="56.6652" y1="17.9879" x2="58.7211" y2="17.9879" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st17" d="M57.3,84.8c-0.5-0.5-0.5-1.4,0-2c0.1-0.1,0.2-0.1,0.3-0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.5,0.5-0.5,1.4,0,2
c0.5,0.5,1.1,0.5,1.7,0.2C58.3,85.4,57.7,85.2,57.3,84.8z"/>
</g>
<path class="st14" d="M58.5,83.5c0.1,0,0.3-0.1,0.3-0.3c0-0.1-0.1-0.3-0.3-0.3c-0.1,0-0.3,0.1-0.3,0.3
C58.3,83.4,58.4,83.5,58.5,83.5z"/>
<path class="st11" d="M37.2,82.3c1.6,0,3-1.4,3-3c0-1.7-1.3-3-3-3c-1.6,0-3,1.4-3,3C34.2,81,35.6,82.3,37.2,82.3z"/>
<g class="st12">
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="34.2463" y1="22.6158" x2="38.7184" y2="22.6158" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st18" d="M35.5,81.2c-1.2-1.2-1.2-3.1,0-4.3c0.2-0.2,0.4-0.3,0.6-0.5c-0.4,0.1-0.7,0.4-1,0.7c-1.2,1.2-1.2,3.1,0,4.3
c1,1,2.5,1.2,3.6,0.5C37.7,82.3,36.4,82.1,35.5,81.2z"/>
</g>
<path class="st14" d="M38.3,78.4c0.4,0,0.6-0.3,0.6-0.7s-0.3-0.7-0.6-0.7c-0.4,0-0.6,0.3-0.6,0.7S37.9,78.4,38.3,78.4z"/>
<path class="st11" d="M63.8,74.9c1.6,0,3-1.4,3-3c0-1.7-1.3-3-3-3c-1.6,0-3,1.4-3,3C60.8,73.5,62.2,74.9,63.8,74.9z"/>
<g class="st12">
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="60.8068" y1="30.0554" x2="65.2791" y2="30.0554" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st19" d="M62.1,73.8c-1.2-1.2-1.2-3.1,0-4.3c0.2-0.2,0.4-0.3,0.6-0.5c-0.4,0.1-0.7,0.4-1,0.7c-1.2,1.2-1.2,3.1,0,4.3
c1,1,2.5,1.2,3.6,0.5C64.2,74.9,63,74.7,62.1,73.8z"/>
</g>
<path class="st14" d="M64.9,70.9c0.4,0,0.6-0.3,0.6-0.7c0-0.4-0.3-0.7-0.6-0.7c-0.4,0-0.6,0.3-0.6,0.7
C64.2,70.6,64.5,70.9,64.9,70.9z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
.st1{fill:#CBB3E5;}
.st2{opacity:0.6;fill:url(#SVGID_2_);enable-background:new ;}
.st3{opacity:0.6;fill:#A98698;enable-background:new ;}
.st4{opacity:0.6;fill:url(#SVGID_3_);enable-background:new ;}
.st5{opacity:0.6;}
.st6{opacity:0.6;fill:url(#SVGID_4_);enable-background:new ;}
.st7{fill:#FFFFFF;}
.st8{opacity:0.6;fill:url(#SVGID_5_);enable-background:new ;}
.st9{opacity:0.2;fill:#FFFFFF;enable-background:new ;}
.st10{opacity:0.4;}
.st11{opacity:0.6;fill:url(#SVGID_6_);enable-background:new ;}
.st12{opacity:0.3;fill:#FFFFFF;enable-background:new ;}
.st13{opacity:0.6;fill:url(#SVGID_7_);enable-background:new ;}
.st14{opacity:0.6;fill:url(#SVGID_8_);enable-background:new ;}
.st15{opacity:0.6;fill:url(#SVGID_9_);enable-background:new ;}
.st16{opacity:0.6;fill:url(#SVGID_10_);enable-background:new ;}
.st17{opacity:0.6;fill:url(#SVGID_11_);enable-background:new ;}
</style>
<radialGradient id="SVGID_1_" cx="-241.4882" cy="344.1521" r="1.8545" gradientTransform="matrix(38.1657 0 0 -38.8229 9287.8389 13391.1367)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#FFEAFF;stop-opacity:0.6"/>
<stop offset="0.6807" style="stop-color:#A087C9"/>
<stop offset="1" style="stop-color:#10002F"/>
</radialGradient>
<path class="st0" d="M47.3,92.3c20,0,36.2-16.5,36.2-36.8S67.3,18.7,47.3,18.7c-20,0-36.2,16.5-36.2,36.8S27.3,92.3,47.3,92.3z"/>
<path class="st1" d="M47.3,16.6C26.2,16.6,9,34,9,55.5s17.2,39,38.3,39c21.2,0,38.3-17.4,38.3-39S68.4,16.6,47.3,16.6z M47.3,92.3
c-20,0-36.2-16.5-36.2-36.8s16.2-36.8,36.2-36.8c20,0,36.2,16.5,36.2,36.8S67.3,92.3,47.3,92.3z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="41.3307" y1="10.1658" x2="53.3023" y2="82.7725" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0" style="stop-color:#81FFFF"/>
<stop offset="0.6202" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st2" d="M47.3,92.3c20,0,36.2-16.5,36.2-36.8S67.3,18.7,47.3,18.7c-20,0-36.2,16.5-36.2,36.8S27.3,92.3,47.3,92.3z"/>
<path class="st3" d="M47.1,87.9c-19.7-3.2-33.1-22.1-29.9-42.2c1.4-8.9,5.8-16.5,12-21.9c-9.1,5.3-15.8,14.6-17.6,25.9
c-3.2,20.1,10.2,39,29.9,42.2c11,1.8,21.6-1.6,29.4-8.5C64,87.5,55.6,89.2,47.1,87.9z"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="73.1246" y1="71.1214" x2="42.7396" y2="43.7143" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st4" d="M53.1,19.3c-9.1-1.5-18,0.6-25.2,5.3c-0.1,0.1-0.3,0.3-0.3,0.3c2.8-1.7,6.9-3.2,6.9-3.2
C24,27.7,20.7,34.8,20.7,34.8c4.1-8,16.1-13.7,25.4-14.1c9.4-0.4,15.5,2.4,23,8.6c7.5,6.2,12,18.8,11.6,28.8
c-0.4,10-5.6,18.1-5.6,18.1c3.6-4.7,5.7-8.1,7.1-11.6c0.3-1.1,0.5-2.1,0.6-3.2C86.2,41.4,72.8,22.5,53.1,19.3z"/>
<g class="st5">
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="85.1052" y1="43.5358" x2="47.0788" y2="8.2069" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st6" d="M79,55.2c0,18.8-14.6,34.2-33,35c0.5,0,0.9,0,1.4,0c19,0,34.4-15.7,34.4-35H79z"/>
</g>
<path class="st7" d="M58.6,38.9c3.2,0,5.8-2.7,5.8-5.9c0-3.3-2.6-5.9-5.8-5.9s-5.8,2.7-5.8,5.9C52.8,36.3,55.4,38.9,58.6,38.9z"/>
<path class="st7" d="M68.1,43.3c1.4,0,2.5-1.1,2.5-2.5c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5C65.6,42.2,66.7,43.3,68.1,43.3z"/>
<g class="st5">
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="80.5821" y1="80.9727" x2="75.524" y2="72.8923" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st8" d="M76.9,28.3c-0.1,0-0.1,0-0.1,0c-0.4-0.1-0.6-0.5-0.6-0.9c0.6-3,3-5.9,3.2-6.1c0.3-0.3,0.8-0.3,1-0.1
c0.3,0.3,0.3,0.8,0.1,1.1c-0.1,0.1-2.3,2.8-2.8,5.4C77.5,28.1,77.2,28.3,76.9,28.3z"/>
</g>
<path class="st9" d="M44.9,83c1,0,1.8-0.8,1.8-1.8s-0.8-1.8-1.8-1.8c-1,0-1.8,0.8-1.8,1.8S43.9,83,44.9,83z"/>
<g class="st10">
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="43.0933" y1="20.8415" x2="45.8316" y2="20.8415" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st11" d="M43.9,82.3c-0.7-0.7-0.7-1.9,0-2.6c0.1-0.1,0.3-0.2,0.4-0.3c-0.3,0.1-0.5,0.2-0.6,0.4c-0.7,0.7-0.7,1.9,0,2.6
c0.6,0.6,1.5,0.7,2.2,0.3C45.2,83,44.4,82.9,43.9,82.3z"/>
</g>
<path class="st12" d="M45.6,80.6c0.2,0,0.4-0.2,0.4-0.4c0-0.2-0.2-0.4-0.4-0.4c-0.2,0-0.4,0.2-0.4,0.4
C45.2,80.4,45.4,80.6,45.6,80.6z"/>
<path class="st9" d="M54.4,82.1c1,0,1.8-0.8,1.8-1.8c0-1-0.8-1.8-1.8-1.8c-1,0-1.8,0.8-1.8,1.8C52.6,81.2,53.4,82.1,54.4,82.1z"/>
<g class="st10">
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="52.5347" y1="21.7642" x2="55.2732" y2="21.7642" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st13" d="M53.3,81.4c-0.7-0.7-0.7-1.9,0-2.6c0.1-0.1,0.3-0.2,0.4-0.3c-0.3,0.1-0.5,0.2-0.6,0.4c-0.7,0.7-0.7,1.9,0,2.6
c0.6,0.6,1.5,0.7,2.2,0.3C54.6,82.1,53.9,81.9,53.3,81.4z"/>
</g>
<path class="st12" d="M55,79.7c0.2,0,0.4-0.2,0.4-0.4c0-0.2-0.2-0.4-0.4-0.4c-0.2,0-0.4,0.2-0.4,0.4C54.6,79.5,54.8,79.7,55,79.7z"
/>
<path class="st9" d="M49.7,86.3c0.8,0,1.4-0.6,1.4-1.4s-0.6-1.4-1.4-1.4c-0.8,0-1.4,0.6-1.4,1.4S49,86.3,49.7,86.3z"/>
<g class="st10">
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="48.3437" y1="17" x2="50.3996" y2="17" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st14" d="M48.9,85.8c-0.5-0.5-0.5-1.4,0-2c0.1-0.1,0.2-0.1,0.3-0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.5,0.5-0.5,1.4,0,2
c0.5,0.5,1.1,0.5,1.7,0.2C49.9,86.3,49.3,86.2,48.9,85.8z"/>
</g>
<path class="st12" d="M50.2,84.5c0.1,0,0.3-0.1,0.3-0.3c0-0.1-0.1-0.3-0.3-0.3c-0.1,0-0.3,0.1-0.3,0.3C49.9,84.4,50,84.5,50.2,84.5z
"/>
<path class="st9" d="M58.1,85.4c0.8,0,1.4-0.6,1.4-1.4s-0.6-1.4-1.4-1.4c-0.8,0-1.4,0.6-1.4,1.4S57.3,85.4,58.1,85.4z"/>
<g class="st10">
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="56.6652" y1="17.9879" x2="58.7211" y2="17.9879" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st15" d="M57.3,84.8c-0.5-0.5-0.5-1.4,0-2c0.1-0.1,0.2-0.1,0.3-0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.5,0.5-0.5,1.4,0,2
c0.5,0.5,1.1,0.5,1.7,0.2C58.3,85.4,57.7,85.2,57.3,84.8z"/>
</g>
<path class="st12" d="M58.5,83.5c0.1,0,0.3-0.1,0.3-0.3c0-0.1-0.1-0.3-0.3-0.3c-0.1,0-0.3,0.1-0.3,0.3
C58.3,83.4,58.4,83.5,58.5,83.5z"/>
<path class="st9" d="M37.2,82.3c1.6,0,3-1.4,3-3c0-1.7-1.3-3-3-3c-1.6,0-3,1.4-3,3C34.2,81,35.6,82.3,37.2,82.3z"/>
<g class="st10">
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="34.2463" y1="22.6158" x2="38.7184" y2="22.6158" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st16" d="M35.5,81.2c-1.2-1.2-1.2-3.1,0-4.3c0.2-0.2,0.4-0.3,0.6-0.5c-0.4,0.1-0.7,0.4-1,0.7c-1.2,1.2-1.2,3.1,0,4.3
c1,1,2.5,1.2,3.6,0.5C37.7,82.3,36.4,82.1,35.5,81.2z"/>
</g>
<path class="st12" d="M38.3,78.4c0.4,0,0.6-0.3,0.6-0.7s-0.3-0.7-0.6-0.7c-0.4,0-0.6,0.3-0.6,0.7S37.9,78.4,38.3,78.4z"/>
<path class="st9" d="M63.8,74.9c1.6,0,3-1.4,3-3c0-1.7-1.3-3-3-3c-1.6,0-3,1.4-3,3C60.8,73.5,62.2,74.9,63.8,74.9z"/>
<g class="st10">
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="60.8068" y1="30.0554" x2="65.2791" y2="30.0554" gradientTransform="matrix(1 0 0 -1 0 102)">
<stop offset="0.2888" style="stop-color:#FFFFFF"/>
<stop offset="0.7796" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path class="st17" d="M62.1,73.8c-1.2-1.2-1.2-3.1,0-4.3c0.2-0.2,0.4-0.3,0.6-0.5c-0.4,0.1-0.7,0.4-1,0.7c-1.2,1.2-1.2,3.1,0,4.3
c1,1,2.5,1.2,3.6,0.5C64.2,74.9,63,74.7,62.1,73.8z"/>
</g>
<path class="st12" d="M64.9,70.9c0.4,0,0.6-0.3,0.6-0.7c0-0.4-0.3-0.7-0.6-0.7c-0.4,0-0.6,0.3-0.6,0.7
C64.2,70.6,64.5,70.9,64.9,70.9z"/>
</svg>
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="check-double" class="svg-inline--fa fa-check-double" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M169.4 246.6C175.6 252.9 183.8 256 192 256s16.38-3.125 22.62-9.375l160-160C380.9 80.38 384 72.19 384 64c0-18.28-14.95-32-32-32c-8.188 0-16.38 3.125-22.62 9.375L192 178.8L134.6 121.4C128.4 115.1 120.2 112 112 112c-17.05 0-32 13.73-32 32c0 8.188 3.125 16.38 9.375 22.62L169.4 246.6zM480 192c0-18.28-14.95-32-32-32c-8.188 0-16.38 3.125-22.62 9.375L192 402.8L86.63 297.4C80.38 291.1 72.19 288 64 288c-17.05 0-32 13.73-32 32c0 8.188 3.125 16.38 9.375 22.62l128 128C175.6 476.9 183.8 480 192 480s16.38-3.125 22.62-9.375l256-256C476.9 208.4 480 200.2 480 192z"></path></svg>
\ No newline at end of file
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="check-to-slot" class="svg-inline--fa fa-check-to-slot" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M480 80C480 53.49 458.5 32 432 32h-288C117.5 32 96 53.49 96 80V384h384V80zM378.9 166.8l-88 112c-4.031 5.156-10 8.438-16.53 9.062C273.6 287.1 272.7 287.1 271.1 287.1c-5.719 0-11.21-2.019-15.58-5.769l-56-48C190.3 225.6 189.2 210.4 197.8 200.4c8.656-10.06 23.81-11.19 33.84-2.594l36.97 31.69l72.53-92.28c8.188-10.41 23.31-12.22 33.69-4.062C385.3 141.3 387.1 156.4 378.9 166.8zM528 288H512v112c0 8.836-7.164 16-16 16h-416C71.16 416 64 408.8 64 400V288H48C21.49 288 0 309.5 0 336v96C0 458.5 21.49 480 48 480h480c26.51 0 48-21.49 48-48v-96C576 309.5 554.5 288 528 288z"></path></svg>
\ No newline at end of file
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="circle-check" class="svg-inline--fa fa-circle-check" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM371.8 211.8l-128 128C238.3 345.3 231.2 348 224 348s-14.34-2.719-19.81-8.188l-64-64c-10.91-10.94-10.91-28.69 0-39.63c10.94-10.94 28.69-10.94 39.63 0L224 280.4l108.2-108.2c10.94-10.94 28.69-10.94 39.63 0C382.7 183.1 382.7 200.9 371.8 211.8z"></path></svg>
\ No newline at end of file
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="code-pull-request" class="svg-inline--fa fa-code-pull-request" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M160 95.1c0-44.18-35.82-80-80-80c-44.18 0-80 35.82-80 80C0 128.8 19.77 156.9 48 169.2V342.8C19.77 355.1 0 383.2 0 415.1c0 44.18 35.82 80 80 80c44.18 0 80-35.82 80-80c0-32.79-19.77-60.89-48-73.25V169.2C140.2 156.9 160 128.8 160 95.1zM80 439.1c-13.23 0-24-10.77-24-24s10.77-24 24-24c13.23 0 24 10.77 24 24S93.23 439.1 80 439.1zM80 119.1c-13.23 0-24-10.77-24-24s10.77-24 24-24c13.23 0 24 10.77 24 24S93.23 119.1 80 119.1zM464 342.8v-182.8c0-52.94-43.06-96-96-96H320v-48c0-6.219-3.594-11.84-9.219-14.5c-5.594-2.594-12.25-1.781-17.03 2.219l-96 80C194.1 86.75 192 91.25 192 95.1S194.1 105.2 197.8 108.3l96 80C296.7 190.7 300.3 191.1 304 191.1c2.312 0 4.625-.5 6.781-1.5C316.4 187.8 320 182.2 320 175.1v-48h48c17.66 0 32 14.34 32 32v182.8c-28.23 12.36-48 40.46-48 73.25c0 44.18 35.82 80 80 80c44.18 0 80-35.82 80-80C512 383.2 492.2 355.1 464 342.8zM432 439.1c-13.23 0-24-10.77-24-24s10.77-24 24-24c13.23 0 24 10.77 24 24S445.2 439.1 432 439.1z"></path></svg>
\ No newline at end of file
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="code" class="svg-inline--fa fa-code" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="currentColor" d="M416 31.94C416 21.75 408.1 0 384.1 0c-13.98 0-26.87 9.072-30.89 23.18l-128 448c-.8404 2.935-1.241 5.892-1.241 8.801C223.1 490.3 232 512 256 512c13.92 0 26.73-9.157 30.75-23.22l128-448C415.6 37.81 416 34.85 416 31.94zM176 143.1c0-18.28-14.95-32-32-32c-8.188 0-16.38 3.125-22.62 9.376l-112 112C3.125 239.6 0 247.8 0 255.1S3.125 272.4 9.375 278.6l112 112C127.6 396.9 135.8 399.1 144 399.1c17.05 0 32-13.73 32-32c0-8.188-3.125-16.38-9.375-22.63L77.25 255.1l89.38-89.38C172.9 160.3 176 152.2 176 143.1zM640 255.1c0-8.188-3.125-16.38-9.375-22.63l-112-112C512.4 115.1 504.2 111.1 496 111.1c-17.05 0-32 13.73-32 32c0 8.188 3.125 16.38 9.375 22.63l89.38 89.38l-89.38 89.38C467.1 351.6 464 359.8 464 367.1c0 18.28 14.95 32 32 32c8.188 0 16.38-3.125 22.62-9.376l112-112C636.9 272.4 640 264.2 640 255.1z"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M10.553 3.123c.47-.079.953-.123 1.447-.123 4.971 0 9 4.029 9 9 0 1.742-.5 3.363-1.359 4.738.226-.877.359-1.791.359-2.738 0-5.537-4.116-10.119-9.447-10.877zm12.447 8.877c0 .947-.133 1.861-.359 2.738.859-1.375 1.359-2.996 1.359-4.738 0-4.971-4.029-9-9-9-.494 0-.977.044-1.447.123 5.331.758 9.447 5.34 9.447 10.877zm-5 2c0 4.971-4.029 9-9 9s-9-4.029-9-9 4.029-9 9-9 9 4.029 9 9zm-5.584 1.736c0-1.787-1.86-2.285-3.286-2.955-.864-.449-.757-1.525.483-1.597.691-.042 1.396.162 2.036.387l.302-1.372c-.756-.23-1.43-.335-2.035-.352v-.847h-.832v.889c-1.621.223-2.488 1.24-2.488 2.375 0 2.032 2.373 2.342 3.148 2.703 1.061.474.863 1.458-.094 1.675-.83.188-1.893-.14-2.688-.45l-.378 1.37c.744.385 1.637.591 2.5.605v.833h.832v-.877c1.381-.194 2.503-.956 2.5-2.387z"/></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 18 18" style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#1E1E1E;}
</style>
<g id="Layer_2_1_">
<g id="Layer_1-2">
<path class="st0" d="M15.8,4.2c-1.2-1-2.7-1.5-4.3-1.6l-0.2,0.2c1.4,0.4,2.7,1.1,3.8,2c-1.4-0.8-3-1.3-4.6-1.5
c-1-0.1-2.1-0.1-3.1,0c-0.1,0-0.2,0-0.3,0c-1.2,0.2-2.4,0.5-3.5,1C3,4.6,2.6,4.7,2.6,4.7c1.2-1,2.5-1.6,4-2L6.5,2.6
C4.9,2.6,3.4,3.2,2.2,4.2C0.8,6.9,0,10,0,13.1c1.1,1.5,2.8,2.4,4.7,2.4c0,0,0.6-0.7,1-1.3c-1.1-0.3-2-0.9-2.7-1.8
c0.1,0.1,0.3,0.2,0.4,0.3h0.1l0.1,0.1c0.4,0.2,0.7,0.4,1.1,0.5c0.7,0.3,1.5,0.6,2.3,0.8c1.3,0.2,2.7,0.2,4,0
c0.8-0.1,1.5-0.4,2.2-0.7c0.6-0.2,1.2-0.5,1.8-0.9c-0.7,0.9-1.7,1.6-2.8,1.8c0.5,0.6,1,1.2,1,1.2c1.9,0,3.6-0.8,4.7-2.4
C17.9,10,17.2,6.9,15.8,4.2z M6.1,11.7c-0.9,0-1.6-0.8-1.6-1.7C4.5,9.1,5.2,8.3,6.1,8.3c0,0,0,0,0.1,0C7,8.3,7.7,9,7.7,9.9
c0,0,0,0,0,0.1C7.7,10.9,7,11.6,6.1,11.7z M11.8,11.7c-0.9,0-1.6-0.8-1.6-1.7c0-0.9,0.6-1.7,1.5-1.7c0,0,0,0,0,0
c0.9,0,1.6,0.8,1.6,1.7C13.4,10.9,12.6,11.6,11.8,11.7z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->
<title>Artboard</title>
<desc>Created with Sketch.</desc>
<g id="Artboard" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="open_in_new-24px">
<polygon id="Path" points="0 0 12 0 12 12 0 12"></polygon>
<path d="M9.5,9.5 L2.5,9.5 L2.5,2.5 L6,2.5 L6,1.5 L2.5,1.5 C1.945,1.5 1.5,1.95 1.5,2.5 L1.5,9.5 C1.5,10.05 1.945,10.5 2.5,10.5 L9.5,10.5 C10.05,10.5 10.5,10.05 10.5,9.5 L10.5,6 L9.5,6 L9.5,9.5 Z M7,1.5 L7,2.5 L8.795,2.5 L3.88,7.415 L4.585,8.12 L9.5,3.205 L9.5,5 L10.5,5 L10.5,1.5 L7,1.5 Z" id="Shape" fill="#444444" fill-rule="nonzero"></path>
</g>
</g>
</svg>
\ No newline at end of file
docs/.vuepress/public/img/favicon.png

11.5 KB

Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment