diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d61dca4ad..976b30fb1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,42 +1,13 @@ -name: CI +name: CI on: [push] jobs: - deploy: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - - uses: actions/setup-go@v2 - with: - go-version: '1.14' - - uses: actions/setup-node@v2-beta - with: - node-version: '12' - - run: npm install - run: npm test - run: npm run build - - # Pin the built site to ipfs-cluster, output the cid as `steps.ipfs.outputs.cid` - # see: https://github.com/ipfs-shipyard/ipfs-github-action - - uses: ipfs-shipyard/ipfs-github-action@v2.0.0 - id: ipfs - with: - path_to_add: public - cluster_host: /dnsaddr/cluster.ipfs.io - cluster_user: ${{ secrets.CLUSTER_USER }} - cluster_password: ${{ secrets.CLUSTER_PASSWORD }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - run: echo /ipfs/${{ steps.ipfs.outputs.cid }} - - # Update the dnslink if changes to the current branch should go live - # see https://github.com/ipfs-shipyard/js-dnslink-dnsimple - - run: npx dnslink-dnsimple --domain spec.filecoin.io --link /ipfs/${{ steps.ipfs.outputs.cid }} - if: github.ref == 'refs/heads/master' - env: - DNSIMPLE_TOKEN: ${{ secrets.DNSIMPLE_TOKEN }} diff --git a/assets/_colors.scss b/assets/_colors.scss index 7948d1675..3a4b0730c 100644 --- a/assets/_colors.scss +++ b/assets/_colors.scss @@ -23,25 +23,25 @@ } .bg-na { - background-color: var(--cl-gray); + background-color: var(--cl-gray) !important; } .bg-missing { - background-color: var(--cl-red); + background-color: var(--cl-red) !important; } .bg-incorrect { - background-color: var(--cl-orange); + background-color: var(--cl-orange) !important; } .bg-wip { - background-color: var(--cl-yellow); + background-color: var(--cl-yellow) !important; } .bg-done { - background-color: var(--cl-green); + background-color: var(--cl-green) !important; } .bg-reliable { - background-color: var(--cl-green); + background-color: var(--cl-green) !important; } .bg-stable { - background-color: var(--cl-blue); + background-color: var(--cl-blue) !important; a { color: black; } diff --git a/assets/_custom.scss b/assets/_custom.scss index 46ef65eab..5756141aa 100644 --- a/assets/_custom.scss +++ b/assets/_custom.scss @@ -9,11 +9,13 @@ @import "plugins/meter"; @import "plugins/toc"; @import "plugins/table-sort"; +@import "plugins/diagrams"; @import "colors"; @import "dashboard"; @import "katex"; @import "icons"; @import "code"; +@import "utils-custom"; input.toggle { height: 20px; @@ -31,7 +33,11 @@ input.toggle { h4, h5, h6 { - a { + display: flex; + align-items: center; + flex-wrap: nowrap; + a:first-child { + flex-grow: 2; color: inherit; text-decoration: none; &:visited { @@ -67,50 +73,6 @@ input.toggle { } } -// SVG Diagrams -.diagrams-container { - margin: 20px 0px; - border: 1px solid var(--gray-200); - border-radius: $border-radius; -} -.diagrams { - height: 400px; - overflow: hidden; - outline: none; - cursor: pointer; - display: flex; - justify-content: center; - align-items: center; -} -.diagrams img { - max-height: 100%; - max-width: 100%; - display: flex; - justify-content: center; - align-items: center; -} -.diagrams:active { - cursor: grabbing; -} -.diagrams-caption { - border-top: 1px solid #e9ecef; - padding: 0.5rem; - font-size: 12px; - font-weight: 500; - .diagrams-link { - text-decoration: none !important; - float: right; - font-weight: 400; - } -} - -.label { - font-size: 10px; - font-weight: 700; - display: block; - color: var(--gray-600); -} - // Tweaks html { scroll-behavior: auto; diff --git a/assets/_fonts.scss b/assets/_fonts.scss index a146c8d93..4e6be72d3 100644 --- a/assets/_fonts.scss +++ b/assets/_fonts.scss @@ -1,7 +1,42 @@ -body { - font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji; -} +/** + * Use the default user interface font in all browsers (opinionated). + */ -code { - font-family: "/*[[font-choice]]*/", Consolas, "Liberation Mono", Menlo, Courier, monospace; -} + html { + font-family: + system-ui, + /* macOS 10.11-10.12 */ -apple-system, + /* Windows 6+ */ "Segoe UI", + /* Android 4+ */ "Roboto", + /* Ubuntu 10.10+ */ "Ubuntu", + /* Gnome 3+ */ "Cantarell", + /* KDE Plasma 5+ */ "Noto Sans", + /* fallback */ sans-serif, + /* macOS emoji */ "Apple Color Emoji", + /* Windows emoji */ "Segoe UI Emoji", + /* Windows emoji */ "Segoe UI Symbol", + /* Linux emoji */ "Noto Color Emoji"; + } + + /** + * Use the default monospace user interface font in all browsers (opinionated). + */ + + code, + kbd, + samp, + pre { + font-family: + /* macOS 10.10+ */ "Menlo", + /* Windows 6+ */ "Consolas", + /* Android 4+ */ "Roboto Mono", + /* Ubuntu 10.10+ */ "Ubuntu Monospace", + /* KDE Plasma 5+ */ "Noto Mono", + /* KDE Plasma 4+ */ "Oxygen Mono", + /* Linux/OpenOffice fallback */ "Liberation Mono", + /* fallback */ monospace, + /* macOS emoji */ "Apple Color Emoji", + /* Windows emoji */ "Segoe UI Emoji", + /* Windows emoji */ "Segoe UI Symbol", + /* Linux emoji */ "Noto Color Emoji"; + } diff --git a/assets/_icons.scss b/assets/_icons.scss index 2f59379fe..8888729c9 100644 --- a/assets/_icons.scss +++ b/assets/_icons.scss @@ -3,15 +3,12 @@ box-sizing: border-box; position: relative; display: block; - transform: scale(var(--ggs,1)); + transform: scale(var(--ggs, 1)); width: 12px; height: 12px; - box-shadow: - -2px 2px 0 0, - -4px -4px 0 -2px, - 4px 4px 0 -2px; + box-shadow: -2px 2px 0 0, -4px -4px 0 -2px, 4px 4px 0 -2px; margin-left: -2px; - margin-top: 1px + margin-top: 1px; } .gg-external::after, .gg-external::before { @@ -19,34 +16,42 @@ display: block; box-sizing: border-box; position: absolute; - right: -4px + right: -4px; } .gg-external::before { background: currentColor; transform: rotate(-45deg); width: 12px; height: 2px; - top: 1px + top: 1px; } .gg-external::after { width: 8px; height: 8px; border-right: 2px solid; border-top: 2px solid; - top: -4px + top: -4px; } - // Modifiers .gg-s-half { - --ggs: 0.5 + --ggs: 0.5; } - .gg-inline { display: inline-block; } .gg-middle { vertical-align: middle; -} \ No newline at end of file +} + +.icon { + display: inline-block; + width: 1em; + height: 1em; + stroke-width: 0; + stroke: currentColor; + fill: currentColor; + vertical-align: middle; +} diff --git a/assets/_utils-custom.scss b/assets/_utils-custom.scss new file mode 100644 index 000000000..77afcf3fe --- /dev/null +++ b/assets/_utils-custom.scss @@ -0,0 +1,3 @@ +.u-VaMiddle { + vertical-align: middle; +} diff --git a/assets/plugins/_bagdes.scss b/assets/plugins/_bagdes.scss index 6bd5c4a0a..b808c743f 100644 --- a/assets/plugins/_bagdes.scss +++ b/assets/plugins/_bagdes.scss @@ -1,24 +1,48 @@ .section-badges { - float: right; - margin-top:-2.5rem; + text-align: right; + font-size: 20px; + position: relative; } -.state-badge { - font-size: 10px; - font-weight: 500; +.section-badges .toggle { + cursor: pointer; + padding: 8px 0 8px 16px; } -.state-badge-link { - text-decoration: none !important; - color: white !important; - &:hover { - text-decoration: none; - } + +.section-badges .dropdown { + position: absolute; + right: 0; + background-color: white; + border: 1px solid #e9ecef; + padding: 0.75rem 1rem; + list-style-type: none; + margin: 0; + z-index: 10; + display: none; + text-align: left; + font-size: 14px; + font-weight: initial; + line-height: 24px; + max-width: 400px; } -.state-badge-key, .state-badge-value { - padding: 2px 5px; + +.section-badges .dropdown li { + white-space: nowrap; } -.state-badge-key { - background-color: #555; + +.section-badges .dropdown code.label { + max-width: 200px; + white-space: nowrap; + overflow: auto; + display: inline-block; +} +.section-badges .dropdown code.label::-webkit-scrollbar { + width: 3px; + height: 3px; +} +.section-badges .dropdown code.label::-webkit-scrollbar-thumb { + border-radius: 12px; +} + +.section-badges input.toggle:checked ~ .dropdown { + display: block; } -.section-intro .state-badge { - display: none; -} \ No newline at end of file diff --git a/assets/plugins/_diagrams.scss b/assets/plugins/_diagrams.scss new file mode 100644 index 000000000..984403185 --- /dev/null +++ b/assets/plugins/_diagrams.scss @@ -0,0 +1,46 @@ + +// SVG Diagrams +.diagrams-container { + margin: 20px 0px; + border: 1px solid var(--gray-200); + border-radius: $border-radius; +} +.diagrams { + height: 400px; + overflow: hidden; + outline: none; + cursor: pointer; + display: flex; + justify-content: center; + align-items: center; +} +.diagrams img { + max-height: 100%; + max-width: 100%; + display: flex; + justify-content: center; + align-items: center; +} +.diagrams:active { + cursor: grabbing; +} +.diagrams-caption { + border-bottom: 1px solid #e9ecef; + padding: 0.5rem; + font-size: 12px; + font-weight: 500; + .diagrams-link { + text-decoration: none !important; + float: right; + font-weight: 400; + } +} +.diagrams-container .highlight pre { + margin: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; + // margin: 0 -1px; +} +.diagrams-container .embed-comment { + margin: 0.5rem 1rem; +} diff --git a/assets/plugins/_toc.scss b/assets/plugins/_toc.scss index e632f3911..969693d69 100644 --- a/assets/plugins/_toc.scss +++ b/assets/plugins/_toc.scss @@ -1,54 +1,99 @@ .toc { - height: 100%; - > ol { - height: 90%; - overflow: auto; - position: relative; - > li { - font-weight: 500; - } - } - > ol li { - list-style: none; - } - > ol > li > ol { - padding-bottom: 1rem; - font-weight: 400; - } - ol { - margin: 0; - padding-left: 10px; - } - a { - color: currentColor; height: 100%; - } - li::before { - content: " "; - display: inline-block; - height: inherit; - left: 0; - margin-top: -1px; - position: absolute; - } - li:not(.active-parent) > .maybe-hide > li:not(.active) { - height:0; - } - li.active, - li.active-parent, - .maybe-hide li.active-parent, - li.active-parent > .maybe-hide > li { - height: auto; - } - ol li { - padding: 0 0; - line-height: 2; - font-size: 14px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - a.toc-link { - height: 100%; - } - } + > ol { + height: 90%; + overflow: auto; + position: relative; + > li { + font-weight: 500; + } + } + > ol li { + list-style: none; + } + > ol > li > ol { + padding-bottom: 1rem; + font-weight: 400; + } + ol { + margin: 0; + padding-left: 10px; + } + a { + color: currentColor; + height: 100%; + } + li::before { + content: " "; + display: inline-block; + height: inherit; + left: 0; + margin-top: -1px; + position: absolute; + } + li:not(.active-parent) > .maybe-hide > li:not(.active) { + height: 0; + } + li.active, + li.active-parent, + .maybe-hide li.active-parent, + li.active-parent > .maybe-hide > li { + height: auto; + } + ol li { + padding: 0 0; + line-height: 2; + font-size: 14px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + a.toc-link { + height: 100%; + } + } + .label { + font-size: 10px; + font-weight: 700; + display: block; + color: var(--gray-600); + } + input[type="range"] { + -webkit-appearance: none; + margin: 18px 0; + width: 100%; + } + input[type="range"]:focus { + outline: none; + } + input[type="range"]::-webkit-slider-runnable-track { + width: 100%; + height: 2px; + cursor: pointer; + background: var(--cl-gray); + border-radius: 1.3px; + } + input[type="range"]::-webkit-slider-thumb { + height: 16px; + width: 16px; + border-radius: 50%; + background: var(--cl-blue); + cursor: pointer; + -webkit-appearance: none; + margin-top: -7px; + } + input[type="range"]::-moz-range-track { + width: 100%; + height: 2px; + cursor: pointer; + background: #444; + border-radius: 1.3px; + } + input[type="range"]::-moz-range-thumb { + height: 16px; + width: 16px; + border-radius: 50%; + background: var(--cl-blue); + cursor: pointer; + border: 0; + } } diff --git a/content-pt/_index.md b/content-pt/_index.md deleted file mode 100644 index 6e6ba714a..000000000 --- a/content-pt/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: Home ---- \ No newline at end of file diff --git a/content-pt/intro/_index.md b/content-pt/intro/_index.md deleted file mode 100644 index cd25627b4..000000000 --- a/content-pt/intro/_index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Introduction -weight: 1 -dashboardState: wip -bookCollapseSection: true ---- - -# Introdução - -Filecoin is a distributed storage network based on a blockchain mechanism. -Filecoin *miners* can elect to provide storage capacity for the network, and thereby -earn units of the Filecoin cryptocurrency (FIL) by periodically producing -cryptographic proofs that certify that they are providing the capacity specified. -In addition, Filecoin enables parties to exchange FIL currency -through transactions recorded in a shared ledger on the Filecoin blockchain. -Rather than using Nakamoto-style proof of work to maintain consensus on the chain, however, -Filecoin uses proof of storage itself: a miner's power in the consensus protocol -is proportional to the amount of storage it provides. - -The Filecoin blockchain not only maintains the ledger for FIL transactions and -accounts, but also implements the Filecoin VM, a replicated state machine which executes -a variety of cryptographic contracts and market mechanisms among participants -on the network. -These contracts include *storage deals*, in which clients pay FIL currency to miners -in exchange for storing the specific file data that the clients request. -Via the distributed implementation of the Filecoin VM, storage deals -and other contract mechanisms recorded on the chain continue to be processed -over time, without requiring further interaction from the original parties -(such as the clients who requested the data storage). \ No newline at end of file diff --git a/content/algorithms/porep-old/porep_commitments/sdr_commitments/_index.org b/content/algorithms/porep-old/porep_commitments/sdr_commitments/_index.org deleted file mode 100644 index 7af0ea28f..000000000 --- a/content/algorithms/porep-old/porep_commitments/sdr_commitments/_index.org +++ /dev/null @@ -1,331 +0,0 @@ -#+TITLE: Stacked DRG Commitments - -#+HUGO_SECTION: algorithms/porep/porep_commitments/sdr_commitments -#+HUGO_BASE_DIR: ../../../.. -#+OPTIONS: author:nil creator:nil timestamp:nil - -* Stacked DRG Commitments - - -#+begin_src lisp :exports none - (ql:quickload :orient) -#+end_src - -#+RESULTS: -| :ORIENT | - -This section summarizes the Stacked DRG (SDR) Column Commitments algorithm described in [[https://www.overleaf.com/read/kcdhnxwptxbc][Tight PoS - ZigZag]]. - -* Graph -#+NAME: init-graph -#+BEGIN_SRC lisp :package "filecoin.theory" :exports none :results verbatim - (defparameter *layers* 4) - (defparameter *nodes* 8) - - (defparameter *regenerate-sdr-graph* nil) - - (defparameter *dumped-sdr-graph* '(:NODES 8 :CHALLENGED-NODE 7 :LAYERS 4 :RENUMBERED-PERMUTATION - (:PERM-LIST (7 4 3 6 1 8 2 5) :TYPE PERM) :REVERSED-PERMUTATION - (:PERM-LIST (3 7 8 6 5 1 4 2) :TYPE PERM) :TYPE SDR-GRAPH)) - - (defparameter *sdr-graph* (if *regenerate-sdr-graph* - (make-sdr-graph *nodes* *layers*) - (load-from-plist *dumped-sdr-graph*))) - - (let ((lg (first (sdr-graph-layer-graphs *sdr-graph*)))) - (defparameter *comm-d-graph* (make-comm-d-layer-graph (layer-graph-nodes lg) (layer-graph-challenged-node lg) :parent *sdr-graph*)) - (defparameter *replica-graph* (make-replica-layer-graph (layer-graph-nodes lg) (layer-graph-challenged-node lg) :parent *sdr-graph* :layers *layers*))) - - (dump *sdr-graph*) -#+END_SRC - -#+RESULTS: init-graph -: (:NODES 8 :CHALLENGED-NODE 7 :LAYERS 4 :RENUMBERED-PERMUTATION -: (:PERM-LIST (7 4 3 6 1 8 2 5) :TYPE PERM) :REVERSED-PERMUTATION -: (:PERM-LIST (3 7 8 6 5 1 4 2) :TYPE PERM) :TYPE SDR-GRAPH) - - - -#+NAME: legend -#+BEGIN_SRC lisp :package "filecoin.theory" :results output silent :exports none -(emit-legend nil) -#+END_SRC - -In the following graphs, DRG and expander parents are both generated by a pseudorandom permutation and are provided only -to illustrate the nature of the SDR commitment scheme. They accurately represent how parent-child relationships -function between layers, and are accurate for expander parents. However, this is not representative of the DRG parent -selection algorithm. - -The following graphs illustrate the positions of challenges, DRG parents, and expander parents between layers. Only a -single DRG parent and a single expander parent are shown. The immediate predecessor parent is shown for graph topology, -but it is not tracked in the tables below. - -In order to have a compact and concrete example, we use a graph containing only src_lisp[:package fct]{*nodes*} {{{results(=8=)}}} nodes replicated in src_lisp[:package fct]{*layers*} {{{results(=4=)}}} layers. -** Legend -#+BEGIN_SRC dot :file legend.png :var input=legend :exports results -$input -#+END_SRC - -#+RESULTS: -[[legend.png]] - -** Data Layer: $Comm_D$ Tree -#+NAME: data-layer -#+BEGIN_SRC lisp :package "filecoin.theory" :results output silent :exports none -(emit-comm-d-layer-graph *comm-d-graph*) -#+END_SRC - -#+BEGIN_SRC dot :file data-layer.png :var input=data-layer :exports results -$input -#+END_SRC - -#+RESULTS: -[[file:data-layer.png]] - -** Replica Column Layers: $Comm_C$ Tree - -#+NAME: layer-1 -#+BEGIN_SRC lisp :package "filecoin.theory" :results output silent :exports none -(emit-layer-graph (nth 0 (sdr-graph-layer-graphs *sdr-graph*))) -#+end_src - -#+BEGIN_SRC dot :file layer-1.png :var input=layer-1 :exports results -$input -#+END_SRC - -#+RESULTS: -[[file:layer-1.png]] - -#+NAME: layer-2 -#+BEGIN_SRC lisp :package "filecoin.theory" :results output silent :exports none -(emit-layer-graph (nth 1 (sdr-graph-layer-graphs *sdr-graph*))) -#+END_SRC - -#+BEGIN_SRC dot :file layer-2.png :var input=layer-2 :exports results -$input -#+END_SRC - -#+RESULTS: -[[file:layer-2.png]] - -#+NAME: layer-3 -#+BEGIN_SRC lisp :package "filecoin.theory" :results output silent :exports none -(emit-layer-graph (nth 2 (sdr-graph-layer-graphs *sdr-graph*))) -#+END_SRC - -#+BEGIN_SRC dot :file layer-3.png :var input=layer-3 :exports results -$input -#+END_SRC - -#+RESULTS: -[[file:layer-3.png]] - -#+NAME: layer-4 -#+BEGIN_SRC lisp :package "filecoin.theory" :results output silent :exports none -(emit-layer-graph (nth 3 (sdr-graph-layer-graphs *sdr-graph*))) -#+END_SRC - -#+BEGIN_SRC dot :file layer-4.png :var input=layer-4 :exports results -$input -#+END_SRC - -#+RESULTS: -[[file:layer-4.png]] - -# #+NAME: layer-5 -# #+BEGIN_SRC lisp :package "filecoin.theory" :results output silent :exports none -# (emit-layer-graph (nth 4 (sdr-graph-layer-graphs *sdr-graph*))) -# #+END_SRC - -# #+BEGIN_SRC dot :file layer-5.png :var input=layer-5 :exports results -# $input -# #+END_SRC - -# #+RESULTS: -# [[file:layer-4.png]] - -# #+NAME: layer-6 -# #+BEGIN_SRC lisp :package "filecoin.theory" :results output silent :exports none -# (emit-layer-graph (nth 5 (sdr-graph-layer-graphs *sdr-graph*))) -# #+END_SRC - -# #+BEGIN_SRC dot :file layer-6.png :var input=layer-6 :exports results -# $input -# #+END_SRC - -# #+RESULTS: - -** Final Layer: $Comm_{R_{LAST}}$ Tree -#+NAME: replica-layer -#+BEGIN_SRC lisp :package "filecoin.theory" :results output silent :exports none -(emit-replica-layer-graph *replica-graph*) -#+END_SRC - -#+BEGIN_SRC dot :file replica-layer.png :var input=replica-layer :exports results -$input -#+END_SRC - -#+RESULTS: -[[file:replica-layer.png]] - -* Commitment Algorithm -** Goal -We will generate two commitments $Comm_R, Comm_D$ to be placed on chain. - -$Comm_D$ is the merkle root of the original data. - -$Comm_R = H(Comm_C || Comm_{R_{LAST}})$. - -Their construction is described below. - -** Definitions and Notation -We will perform $L$ layers of SDR key generation over $N$ labeled nodes. - -In the running example, $L$ is src_lisp[:package fct]{*layers*} {{{results(=4=)}}} and $N$ is src_lisp[:package fct]{*nodes*} {{{results(=8=)}}}. - -Merkle roots (commitments) are generated with the vector-commitment function $VC(…)$. - -Hashes are produced with a hash function $H(…)$, which is not necessarily that used by $VC(…)$. - -$Comm = VC(l_1||…||l_N)$, where the $l_i$ are the data (labels or hashes) to be committed. - -Generated trees are retained until the proving phase, when merkle proofs of a given label's inclusion in $Comm$ will be -created. We will designate such proofs $l_i \rightarrow Comm$. - -We use the notation $e{_i}^{(l)}$, correlated in the table below with the $(l, i)$ notation used in the graphs above, -where $l$ indexes layers, and $i$ indexes labels or columns. - -#+BEGIN_SRC lisp :package "filecoin.theory" :exports results -(notation-row *sdr-graph* 1) -#+END_SRC - -#+RESULTS: -| Graph | $(1, 1)$ | $(1, 2)$ | $(1, 3)$ | $(1, 4)$ | $(1, 5)$ | $(1, 6)$ | $(1, 7)$ | $(1, 8)$ | -| Notation | $e_1^{(1)}$ | $e_2^{(1)}$ | $e_3^{(1)}$ | $e_4^{(1)}$ | $e_5^{(1)}$ | $e_6^{(1)}$ | $e_7^{(1)}$ | $e_8^{(1)}$ | - -#+BEGIN_SRC lisp :package "filecoin.theory" :exports results -(notation-row *sdr-graph* 2) -#+END_SRC -#+RESULTS: -| Graph | $(2, 1)$ | $(2, 2)$ | $(2, 3)$ | $(2, 4)$ | $(2, 5)$ | $(2, 6)$ | $(2, 7)$ | $(2, 8)$ | -| Notation | $e_1^{(2)}$ | $e_2^{(2)}$ | $e_3^{(2)}$ | $e_4^{(2)}$ | $e_5^{(2)}$ | $e_6^{(2)}$ | $e_7^{(2)}$ | $e_8^{(2)}$ | -… - -#+BEGIN_SRC lisp :package "filecoin.theory" :exports results -(notation-row *sdr-graph* 4) -#+END_SRC - -#+RESULTS: -| Graph | $(4, 1)$ | $(4, 2)$ | $(4, 3)$ | $(4, 4)$ | $(4, 5)$ | $(4, 6)$ | $(4, 7)$ | $(4, 8)$ | -| Notation | $e_1^{(4)}$ | $e_2^{(4)}$ | $e_3^{(4)}$ | $e_4^{(4)}$ | $e_5^{(4)}$ | $e_6^{(4)}$ | $e_7^{(4)}$ | $e_8^{(4)}$ | - -** Initial Data Layer - #+BEGIN_SRC lisp :package "filecoin.theory" :exports results -(initial-layer *comm-d-graph*) -#+END_SRC - - #+RESULTS: - | ~~~~~~ | ~~~~~~ | ~~~~~~ | Challenge | ~~~~~~ | ~~~~~~ | ~~~~~~ | ~~~~~~ | - | $(0, 1)$ | $(0, 2)$ | $(0, 3)$ | $(0, 4)$ | $(0, 5)$ | $(0, 6)$ | $(0, 7)$ | $(0, 8)$ | - -*** Vector Commitment -Generate Merkle root for data leaves. - -$Comm_D = VC(D_1 || D_2 || … || D_N)$, where $D_i = e_i^{(0)}$. - -This example: $Comm_D = VC(e_1^{(0)}, e_2^{(0)}, e_3^{(0)}, e_4^{(0)}, e_5^{(0)}, e_6^{(0)}, e_7^{(0)}, e_8^{(0)})$. - -*** Opening -To open $D_i$, provide a merkle proof $D_i \rightarrow Comm_D$. - -** SDR Replica Columns -*** Columns - -#+BEGIN_SRC lisp :package "filecoin.theory" :exports results -(columns *sdr-graph*) -#+END_SRC - -#+RESULTS: -| DRG Parents | Expander Parents | ~~~~~~ | Challenges | ~~~~~~ | ~~~~~~ | ~~~~~~ | ~~~~~~ | -| $(1, 1)$ | $(1, 2)^{*}$ | $(1, 3)$ | $(1, 4)$ | $(1, 5)$ | $(1, 6)$ | $(1, 7)$ | $(1, 8)$ | -| $(2, 1)$ | $(2, 2)$ | $(2, 3)$ | $(2, 4)$ | $(2, 5)$ | $(2, 6)$ | $(2, 7)$ | $(2, 8)$ | -| $(3, 1)$ | $(3, 2)$ | $(3, 3)$ | $(3, 4)$ | $(3, 5)$ | $(3, 6)$ | $(3, 7)$ | $(3, 8)$ | -| $(4, 1)$ | $(4, 2)$ | $(4, 3)$ | $(4, 4)$ | $(4, 5)$ | $(4, 6)$ | $(4, 7)$ | $(4, 8)$ | - - -$^{*}$ Indicates labels which must be hashed for column commitments but need not be opened for label checks. - - -Concatenate and hash rows of column $i$ to construct $O_i$. - -Column hash $C_i = H(e_i^{(1)} || e_i^{(2)} || … || e_i^{(L)})$. - -*** Vector Commitment - -Generate Merkle tree for column leaves, $C_i$: - -$Comm_C = VC(C_1 || C_2 || … || C_N)$. - -*** Opening -**** To open labels for column $i$: -- Reveal all labels and prove they hash to $C_i$ as above. ($L$ hash proofs). -- Provide a merkle proof $C_i \rightarrow Comm_C$. - -**** Then once, reusable for all columns, -- Reveal $Comm_{R_{LAST}}$ and prove that $H(Comm_C || Comm_{R_{LAST}}) = Comm_R$. - -** Final Replica Layer - #+BEGIN_SRC lisp :package "filecoin.theory" :exports results -(final-layer *sdr-graph*) -#+END_SRC - - #+RESULTS: - | ~~~~~~ | ~~~~~~ | ~~~~~~ | Challenge | ~~~~~~ | ~~~~~~ | ~~~~~~ | ~~~~~~ | - | $(5, 1)$ | $(5, 2)$ | $(5, 3)$ | $(5, 4)$ | $(5, 5)$ | $(5, 6)$ | $(5, 7)$ | $(5, 8)$ | - -*** Vector Commitment -Generate Merkle tree for replica leaves. - -$R_{LAST_i} = e_i^{(L+1)}$. - -$Comm_{R_{LAST}} = VC(R_{LAST_1} || R_{LAST_2} || … || R_{LAST_N})$. - -*** Opening -**** To open $R_{LAST_i}$, -- Provide a merkle proof $R_{LAST_i} \rightarrow Comm_{R_{LAST}}$. - -**** Then once (shared with Replica Columns — see above): -- Reveal $Comm_C$ and prove that $H(Comm_C || Comm_{R_{LAST}}) = Comm_pR$. - -** Replica Commitment -*** Commitment -- Produce $Comm_R$ from its constituents. - -- $Comm_R = H(Comm_C || Comm_{R_{LAST}})$. -*** Opening (performed once per PoRep) -- Reveal $Comm_C$ and $Comm_{R_{LAST}}$ and prove that $H(Comm_C || Comm_{R_{LAST}}) = Comm_R$. -* Challenge Selection -For each challenge $\chi$, we challenge each node $e_{\chi}^{(l)}$ for $l = 1, 2, .. L$. - -* Opening Commitments for Offline Proof -For use in all challenge proofs, reveal $Comm_C$ and $Comm_{R_{LAST}}$ and prove that $H(Comm_C || Comm_{R_{LAST}}) = -Comm_R$. - -To prove encoding for a challenged label $\chi$: -- Initial data layer openings - - Open label for challenged data node $e_\chi^{(0)} — using Comm_D$. -- SDR replica column openings - - Open all labels in $C_\chi$ containing challenged label's 'replica node', ($C_\chi$) — using $Comm_C$. - - Open all labels in the columns containing challenged label's DRG parents — using $Comm_C$. - - Open all labels in the columns containing challenged label's expander parents — using $Comm_C$. -- Final replica layer openings - - Open all challenged labels ($e_{\chi}^{(L+1)}$) using $Comm_{R_{LAST}}$. - -- Prove labeling for all challenged labels $e{_\chi}^{(l))} for $l = 1, 2, .. L$. -- Prove encoding for all challenged nodes $e{_\chi}^{(L+1))}$. - -* Opening Commitments for Online Proof -To prove encoding for a challenged label $C$ in the replica: -- Reveal $Comm_C$ (which must have been stored along with the replica). -- Open $Comm_{R_{LAST}}$ from provided $Comm_R$ by proving that $H(Comm_C || Comm_{R_{LAST}}) = Comm_R$. -- Provide a merkle proof $e_C^{(L)} \rightarrow Comm_{R_{LAST}}$. diff --git a/content/appendix/audit_reports/_index.md b/content/appendix/audit_reports/_index.md new file mode 100644 index 000000000..7af34ed96 --- /dev/null +++ b/content/appendix/audit_reports/_index.md @@ -0,0 +1,10 @@ +--- +title: Audit Reports +weight: 4 +dashboardState: wip +dashboardAudit: n/a +--- + +# Audit Reports + +Security is a critical component in ensuring Filecoin can fulfill its mission to be the storage network for humanity. In addition to robust secure development processes, trainings, theory audits, and investing in external security research, the Filecoin project has engaged reputable third party auditing specialists to ensure that the theory behind the protocol and its implementation delivers the intended value, enabling Filecoin to be a safe and secure network. This section covers a selection of audit reports that have been published on Filecoin's theory and implementation. diff --git a/content/appendix/audit_reports/rust-fil-proofs.md b/content/appendix/audit_reports/rust-fil-proofs.md new file mode 100644 index 000000000..9a2dd10a1 --- /dev/null +++ b/content/appendix/audit_reports/rust-fil-proofs.md @@ -0,0 +1,20 @@ +--- +title: rust-fil-proofs +weight: 1 +dashboardState: wip +dashboardAudit: n/a +--- + +# rust-fil-proofs + +## 2020-07-28: Filecoin Proving Subsystem + +Audit report: [Security Assessment - Filecoin Proving Subsystem](https://github.com/filecoin-project/rust-fil-proofs/blob/master/audits/Sigma-Prime-Protocol-Labs-Filecoin-Proofs-Security-Review-v2.1.pdf) + +This audit covers the full Proving Subsystem, including [rust-fil-proofs](https://github.com/filecoin-project/rust-fil-proofs) and [filecoin-ffi](https://github.com/filecoin-project/filecoin-ffi), through which Proof of Space-Time (PoSt), Proof of Retrievability (PoR), and Proof of Replication (PoRep) are implemented. The audit process included using fuzzing to identify potential vulnerabilities in the subsystem, each of which was resolved (the details of all issues raised and their resolutions are available in the report). + +## 2020-07-28: zk-SNARK proofs + +Audit report: [zk-SNARK Proofs Audit](https://github.com/filecoin-project/rust-fil-proofs/blob/master/audits/protocolai-audit-20200728.pdf) + +This audit covers the core logic and implementation of the zk-SNARK tree-based proofs-of-replication (including the [fork of bellman](https://github.com/filecoin-project/bellman)), as well as the SNARK circuits creation. All issues raised by the audit were resolved. diff --git a/content/appendix/orient.org b/content/appendix/orient.org deleted file mode 100644 index e892bf61a..000000000 --- a/content/appendix/orient.org +++ /dev/null @@ -1,302 +0,0 @@ -#+TITLE: Filecoin Parameters -#+DRAFT: true -#+HUGO_SECTION: appendix -#+HUGO_BASE_DIR: ../../src - -#+begin_src lisp :package orient.lang :exports none -(asdf:load-system :orient) -(in-package orient.lang) -#+end_src - -#+RESULTS: -: # - -#+begin_src lisp :package orient.lang :exports none -(defparameter *filecoin* (get-system "../orient/filecoin.orient")) -(defparameter *input* (interface:get-json-relation-list "../orient/params.json")) -(defparameter *multi-input* (interface:get-json-relation-list "../orient/multi-params.json")) -#+end_src - -#+RESULTS: -: *MULTI-INPUT* - -* All Parameters -#+begin_src lisp :package lang :exports results - (let ((result-tuple (extract (solve-for *filecoin* '() *input*)))) - (org-present-tuple result-tuple *filecoin*)) -#+end_src - -#+RESULTS: -| Parameter | Type | Value | Description | -| ACTOR-METHOD | BYTES | 8 | The size required to represent an actor method. | -| ACTORS-MESSAGES-FRACTION | | 0.30000004 | | -| ACTORS-MESSAGES-PER-BLOCK | | 32.661842 | | -| ADDRESS-SIZE | BYTES | 35 | The size of an address. | -| ALL-POST-MESSAGES-PER-YEAR | | 122557560.0 | | -| ALL-SEAL-MESSAGES-PER-YEAR | | 335544320 | | -| ALL-SEAL-SIZE-PER-YEAR | | 335544320 | | -| AVG-POSTS-MESSAGES-PER-BLOCK | | 11.650845 | | -| AVG-PROOFS-MESSAGES-PER-BLOCK | | 43.549118 | | -| AVG-SEALS-MESSAGES-PER-BLOCK | | 31.898273 | | -| AVG-TICKETS | | 1 | | -| BLOCK-FRAMING-SIZE | BYTES | 14709.481 | The total amount of block framing. | -| BLOCK-HEADER-FIXED-SIZE | | 420 | | -| BLOCK-HEADER-SIZE | | 1427 | | -| BLOCK-HEADER-VARIABLE-SIZE | | 1007 | | -| BLOCK-HEIGHT-SIZE | | 8 | | -| BLOCK-SIG-SIZE | | 96 | | -| BLOCK-SIZE | | 37265.1 | | -| BLOCK-SIZE-KIB | | 36.3917 | | -| BLOCK-TIME | | 15 | | -| BLOCKS-IN-A-YEAR | | 10519200.0 | | -| BLOCKS-IN-TEN-YEARS | | 105192000.0 | | -| BLS-AGG-SIZE | | 96 | | -| CHAIN-SIZE-YEAR | | 391999060000.0 | | -| CHAIN-SIZE-YEAR-GIB | | 365.07758 | | -| CID-SIZE | BYTES | 35 | The size of a CID. | -| COMM-C-CONSTRAINTS | | 218221140.0 | | -| COMM-C-OPENINGS | | 15 | | -| COMM-C-TIME | | 12924.399 | | -| COMM-D-CONSTRAINTS | | 11011791.0 | | -| COMM-D-OPENINGS | | 1 | | -| COMM-D-TIME | | 652.18604 | | -| COMM-P-SIZE | | 35 | | -| COMM-R-CONSTRAINTS | | 66070744.0 | | -| COMM-R-OPENINGS | | 6 | | -| COMM-R-TIME | | 3913.1165 | | -| COMMIT-SIZE | | 35 | | -| COMMIT-TIME | | 14042.3955 | | -| CORES | | 16 | | -| DEGREE | | 14 | | -| DEGREE-BASE | | 6 | | -| DEGREE-EXPANDER | | 8 | | -| DELTA | | 0.02425 | | -| DRG-D | | 1/4 | | -| DRG-E | | 0.8 | | -| EIX | | 1152921504606846976 | | -| ELECTION-PROOF-SIZE | | 64 | | -| ENCODING-AMAX | | 2 | | -| ENCODING-TIME | | 6605.1006 | | -| ENCODING-TIME-MINS | | 110.08501 | | -| EPSILON | | 0.0505 | | -| EXIT-CODE | BYTES | 4 | The size of an exit code. | -| EXPECTED-WINNING-MINERS | | 5 | | -| FROM-ADDRESS | | 35 | | -| GAS-LIMIT | | 8 | | -| GAS-PRICE | BYTES | 8 | The size required to represent the gas limit. | -| GAS-USED | BYTES | 8 | The size required to represent the amount of gas used by a message. | -| GIB | | 1073741824 | | -| INCLUSION-CIRCUIT-TIME | | 2.3098202 | | -| INCLUSION-CONSTRAINTS | | 39000.0 | | -| KDF-CONTENT | | 15 | | -| KDF-HASH-SIZE | | 32 | | -| KDF-HASH-TIME | | 4.5608e-08 | | -| KIB | BYTES | 1024 | The number of bytes in one KiB. | -| LAMBDA | | 10 | | -| LAYERS | | 9.634086 | | -| LAYERS-A | | 6.8276772 | | -| LAYERS-B | | 9.634086 | | -| LEAF-CIRCUIT-TIME | | 0.7417668 | | -| LEAF-CONSTRAINTS | | 12524.312 | | -| LEAF-HASH-CIRCUIT-TIME | | 0.076994 | | -| LEAF-HASH-CONSTRAINTS | | 1300 | | -| LEAF-HASH-TIME | | 4.5608e-08 | | -| LEAF-TIME | | 4.3939139e-07 | | -| MALICIOUS-ENCODING | | 3302.5503 | | -| MAX-TICKETS | | 19.07985 | | -| MERKLE-HASH-CONSTRAINTS | | 1300 | | -| MERKLE-HASH-TIME | | 1.3078e-05 | | -| MERKLE-HASH-TIME-CIRCUIT | | 0.076994 | | -| MESSAGE-NONCE | BYTES | 4 | The size of a message's nonce. | -| MESSAGE-RECEIPT | BYTES | 16 | The size of one message receipt. | -| MESSAGE-RECEIPTS-CID | BYTES | 35 | The size of one message receipt's CID. | -| MESSAGE-SIZE | BYTES | 106 | The size of a single message. | -| MESSAGES | | 108.872795 | | -| MESSAGES-ROOT-CID | BYTES | 35 | Size of the CID of the root merkle tree of the messages. | -| MESSAGES-SIZE | BYTES | 11540.517 | The total size of the messages in a block. | -| MIB | BYTES | 1048576 | The number of bytes in one EiX. | -| MIN-TICKETS | | 0 | | -| MINER-ADDRESS-SIZE | | 35 | | -| MINERS | | 1000 | | -| NODE-SIZE | | 32 | | -| NODES | | 1073741824 | | -| OFFLINE-CHALLENGES | | 282.3536 | | -| ONE-BLOCK-IN-TEN-YEARS | | 9.506427e-09 | | -| ONLINE-CHALLENGES | | 136.53467 | | -| OPENING-PER-CHALLENGE | | 15 | | -| OPENINGS | | 4235.304 | | -| P-SIZE | | 35.0 | | -| PARALLEL-SEAL-TIME | | 8575.856 | | -| PARENT-WEIGHT-SIZE | | 8 | | -| PARENTS | | 5 | | -| PARENTS-CIDS | | 175 | | -| PIB | | 1125899906842624 | | -| POLLING-TIME | | 825.6376 | | -| POREP-SNARK-CONSTRAINTS | | 295303680.0 | | -| POREP-SNARK-PARTITIONS | | 2.9530368 | | -| POREP-SNARK-PROOF-SIZE | | 566.98303 | | -| POREP-SNARK-TIME | | 17489.703 | | -| POST-CHALLENGE-BLOCKS | BLOCKS | 480 | The time offset before which the actual work of generating the PoSt cannot be started. This is some delta before the end of the Proving Period, and as such less than a single Proving Period. | -| POST-CHALLENGE-HOURS | HOURS | 2 | PoSt challenge time (see POST_CHALLENGE_BLOCKS). | -| POST-CHALLENGE-TIME | SECONDS | 7200 | PoSt challenge time (see POST_CHALLENGE_BLOCKS). | -| POST-CHALLENGES | | 136.53467 | | -| POST-PROOF-SIZE | | 192 | | -| POST-PROVING-PERIOD | BLOCKS | 5760 | The time interval in which a PoSt has to be submitted | -| POST-SIZE-PER-BLOCK | | 2236.9622 | | -| POST-SNARK-CIRCUIT | | 5324852.0 | | -| POST-SNARK-PROOF-PARTITIONS | | 1 | | -| POST-SNARK-PROOF-SIZE | | 192 | | -| POSTS-PER-SECTOR-PER-YEAR | | 365.25 | | -| PROOF-MESSAGES-FRACTION | | 0.4 | | -| PROOFGEN-TIME | | 17489.703 | | -| PROOFS-SIZE-PER-BLOCK | | 22555.621 | | -| PROOFS-SIZE-PER-BLOCK-KIB | | 22.026974 | | -| PROVING-PERIOD-HOURS | | 24 | | -| PROVING-PERIOD-SECONDS | | 86400 | | -| RECEIPTS | | 108.872795 | | -| RECEIPTS-SIZE | | 1741.9647 | The total size of all message receipts, in bytes. | -| REPLICA-COMMIT-TIME | | 42598.98 | | -| RESEAL | | 0 | | -| RETURN | BYTES | 4 | The size of a message's return value. | -| RSA-ELEMENT | BYTES | 256 | The size of an RSA element. | -| SEAL-COMMITMENTS-SIZE | | 70 | | -| SEAL-PROOF-SIZE | | 636.98303 | | -| SEAL-SIZE-PER-BLOCK | | 20318.658 | | -| SEAL-TIME | | 66693.78 | | -| SEALS-PER-SECTOR-PER-YEAR | | 1 | | -| SECTOR-SIZE | | 34359738368 | | -| SECTOR-SIZE-GIB | | 32 | | -| SECTORS-COUNT | | 335544320 | | -| SNARK-MAX-CONSTRAINTS | | 100000000 | | -| SNARK-SINGLE-PROOF-SIZE | | 192 | | -| SPACEGAP | | 0.1 | | -| STATE-ROOT-CID | | 35 | | -| STORAGE-NETWORK-CAPACITY | | 1.152921504606847e+19 | | -| TIB | | 1099511627776 | | -| TICKET-SIZE | | 832 | | -| TICKETS | | 1 | | -| TICKETS-SIZE | | 832 | | -| TIMESTAMP-SIZE | | 8 | | -| TO-ADDRESS | BYTES | 35 | The size of a message's 'from address'. | -| TREE-DEPTH | | 30.0 | | -| TX-MESSAGES-FRACTION | | 0.3 | | -| TX-MESSAGES-PER-BLOCK | | 32.66184 | | -| U64 | | 8 | The size of a U64, in bytes. | -| VALUE | BYTES | 8 | The size of a 'value' element. | -| VARINT | BYTES | 4 | The size of a VarInt. | -| VDF-OUTPUT-SIZE | | 0 | | -| VDF-PROOF-SIZE | | 768 | | -| YEAR-IN-SECONDS | SECONDS | 31557600.0 | The number of seconds in one year. | - - - -* Effect of Space Gap and Sector Size on Block Size. -#+begin_src lisp :package lang :exports results - (let ((res (ask *filecoin* '(sector-size-gib spacegap lambda block-size-kib) *multi-input*))) - (org-present res *filecoin* :sort-by #'< :key (partial #'trf 'block-size-kib)))) -#+end_src - -#+RESULTS: -| LAMBDA | SPACEGAP | BLOCK-SIZE-KIB | SECTOR-SIZE-GIB | -| 10 | 0.2 | 2.0183308 | 1024 | -| 10 | 0.1 | 2.1250708 | 1024 | -| 10 | 0.2 | 2.2424922 | 1024 | -| 10 | 0.06 | 2.2729497 | 1024 | -| 10 | 0.1 | 2.5627122 | 1024 | -| 10 | 0.03 | 2.6715527 | 1024 | -| 80 | 0.2 | 2.7350836 | 1024 | -| 10 | 0.2 | 2.847705 | 256 | -| 10 | 0.06 | 3.0063488 | 1024 | -| 10 | 0.1 | 3.2539802 | 256 | -| 80 | 0.1 | 3.589003 | 1024 | -| 10 | 0.06 | 3.8169022 | 256 | -| 10 | 0.2 | 3.9404943 | 128 | -| 10 | 0.03 | 4.2021575 | 1024 | -| 80 | 0.2 | 4.3927507 | 1024 | -| 10 | 0.2 | 4.730614 | 256 | -| 10 | 0.1 | 4.7323604 | 128 | -| 80 | 0.06 | 4.7720346 | 1024 | -| 10 | 0.03 | 5.3342724 | 256 | -| 10 | 0.2 | 5.501524 | 1024 | -| 80 | 0.2 | 5.57777 | 256 | -| 10 | 0.06 | 5.829611 | 128 | -| 10 | 0.1 | 5.94944 | 256 | -| 80 | 0.1 | 6.9545097 | 1024 | -| 10 | 0.1 | 7.102623 | 1024 | -| 10 | 0.06 | 7.638206 | 256 | -| 80 | 0.03 | 7.960858 | 1024 | -| 10 | 0.2 | 8.008982 | 128 | -| 10 | 0.03 | 8.787309 | 128 | -| 80 | 0.1 | 8.827972 | 256 | -| 80 | 0.2 | 9.263679 | 128 | -| 10 | 0.06 | 9.3208065 | 1024 | -| 10 | 0.1 | 10.384581 | 128 | -| 10 | 0.2 | 10.399412 | 32 | -| 80 | 0.06 | 10.503603 | 1024 | -| 10 | 0.03 | 12.190317 | 256 | -| 80 | 0.2 | 12.920809 | 256 | -| 80 | 0.06 | 13.331349 | 256 | -| 10 | 0.1 | 13.4014015 | 32 | -| 10 | 0.06 | 13.676332 | 128 | -| 10 | 0.03 | 15.2998495 | 1024 | -| 80 | 0.1 | 15.598608 | 128 | -| 80 | 0.2 | 16.252815 | 1024 | -| 10 | 0.06 | 17.561655 | 32 | -| 10 | 0.2 | 17.942131 | 256 | -| 80 | 0.03 | 20.070072 | 1024 | -| 10 | 0.03 | 22.549423 | 128 | -| 80 | 0.1 | 22.671417 | 256 | -| 80 | 0.2 | 23.978535 | 128 | -| 10 | 0.1 | 24.036263 | 256 | -| 80 | 0.06 | 24.376612 | 128 | -| 80 | 0.03 | 25.470312 | 256 | -| 10 | 0.2 | 27.385735 | 32 | -| 10 | 0.03 | 28.776114 | 32 | -| 80 | 0.1 | 29.061607 | 1024 | -| 80 | 0.2 | 30.596579 | 32 | -| 10 | 0.06 | 32.48009 | 256 | -| 10 | 0.2 | 34.33397 | 128 | -| 80 | 0.06 | 36.181545 | 256 | -| 10 | 0.1 | 36.3917 | 32 | -| 80 | 0.1 | 42.983322 | 128 | -| 10 | 0.1 | 46.211964 | 128 | -| 80 | 0.06 | 46.80707 | 1024 | -| 80 | 0.03 | 48.038197 | 128 | -| 10 | 0.06 | 48.872463 | 32 | -| 80 | 0.1 | 54.612484 | 32 | -| 10 | 0.03 | 55.240646 | 256 | -| 80 | 0.2 | 58.89311 | 256 | -| 10 | 0.06 | 62.670723 | 128 | -| 80 | 0.06 | 69.31734 | 128 | -| 80 | 0.03 | 72.59843 | 256 | -| 10 | 0.03 | 82.51584 | 32 | -| 80 | 0.06 | 87.89453 | 32 | -| 80 | 0.2 | 87.977234 | 32 | -| 80 | 0.03 | 94.63942 | 1024 | -| 10 | 0.03 | 107.03619 | 128 | -| 80 | 0.1 | 107.64613 | 256 | -| 80 | 0.2 | 114.18173 | 128 | -| 10 | 0.2 | 131.21773 | 32 | -| 80 | 0.03 | 140.30208 | 128 | -| 80 | 0.1 | 160.02498 | 32 | -| 80 | 0.06 | 175.19678 | 256 | -| 10 | 0.1 | 176.24756 | 32 | -| 80 | 0.03 | 177.6102 | 32 | -| 80 | 0.1 | 209.20566 | 128 | -| 10 | 0.06 | 238.65137 | 32 | -| 80 | 0.06 | 259.8711 | 32 | -| 80 | 0.06 | 340.8757 | 128 | -| 80 | 0.03 | 357.2812 | 256 | -| 10 | 0.03 | 406.86823 | 32 | -| 80 | 0.2 | 434.17523 | 32 | -| 80 | 0.03 | 529.018 | 32 | -| 80 | 0.03 | 695.79944 | 128 | -| 80 | 0.1 | 794.4138 | 32 | -| 80 | 0.06 | 1293.6443 | 32 | -| 80 | 0.03 | 2639.3792 | 32 | - - -* Parameter Definitions -#+INCLUDE: "../orient/filecoin.orient" src text -* Parsed Parameter Definitions -#+INCLUDE: "../../build/orient/filecoin.json" src json diff --git a/content/implementations/lotus.md b/content/implementations/lotus.md index 005902be2..a6f1c94dc 100644 --- a/content/implementations/lotus.md +++ b/content/implementations/lotus.md @@ -19,9 +19,9 @@ implRepos: auditState: done audits: - auditDate: '2020-07-28' - auditURL: https://github.com/filecoin-project/rust-fil-proofs/blob/master/audits/protocolai-audit-20200728.pdf + auditURL: /#section-appendix.audit_reports.rust-fil-proofs.2020-07-28-filecoin-proving-subsystem - auditDate: '2020-07-28' - auditURL: https://github.com/filecoin-project/rust-fil-proofs/blob/4a07a868d077f5926b23c3f913f99d8b46b8cebc/audits/Sigma-Prime-Protocol-Labs-Filecoin-Proofs-Security-Review-v2.1.pdf + auditURL: /#section-appendix.audit_reports.rust-fil-proofs.2020-07-28-zk-snark-proofs --- # Lotus diff --git a/content/libraries/libp2p/_index.md b/content/libraries/libp2p/_index.md index 8e79bc533..ab3b3d528 100644 --- a/content/libraries/libp2p/_index.md +++ b/content/libraries/libp2p/_index.md @@ -5,9 +5,7 @@ bookCollapseSection: true dashboardWeight: 1 dashboardState: stable dashboardTests: 0 -dashboardAudit: done -dashboardAuditDate: '2019-10-10' -dashboardAuditURL: https://github.com/protocol/libp2p-vulnerabilities/blob/master/DRAFT_NCC_Group_ProtocolLabs_1903ProtocolLabsLibp2p_Report_2019-10-10_v1.1.pdf +dashboardAudit: wip --- # Libp2p diff --git a/content/systems/filecoin_blockchain/struct/block/_index.md b/content/systems/filecoin_blockchain/struct/block/_index.md index 47784d17c..c467167e0 100644 --- a/content/systems/filecoin_blockchain/struct/block/_index.md +++ b/content/systems/filecoin_blockchain/struct/block/_index.md @@ -17,7 +17,8 @@ The Lotus implementation of the block has the following `struct`: {{}} -> **Note:** A block is functionally the same as a block header in the Filecoin protocol. While a block header contains Merkle links to the full system state, messages, and message receipts, a block can be thought of as the full set of this information (not just the Merkle roots, but rather the full data of the state tree, message tree, receipts tree, etc.). Because a full block is large in size, the Filecoin blockchain consists of block headers rather than full blocks. We often use the terms `block` and `block header` interchangeably. +> **Note** +> A block is functionally the same as a block header in the Filecoin protocol. While a block header contains Merkle links to the full system state, messages, and message receipts, a block can be thought of as the full set of this information (not just the Merkle roots, but rather the full data of the state tree, message tree, receipts tree, etc.). Because a full block is large in size, the Filecoin blockchain consists of block headers rather than full blocks. We often use the terms `block` and `block header` interchangeably. A `BlockHeader` is a canonical representation of a block. BlockHeaders are propagated between miner nodes. From the blockcheader message, a miner has all the required information to apply the associated `FullBlock`'s state and update the chain. In order to be able to do this, the minimum set of information items that need to be included in the `BlockHeader` are shown below and include among others: the miner's address, the Ticket, the [Proof of SpaceTime](post), the CID of the parents where this block evolved from in the IPLD DAG, as well as the messages' own CIDs. diff --git a/content/test-embed.js b/content/test-embed.js new file mode 100644 index 000000000..8398577f2 --- /dev/null +++ b/content/test-embed.js @@ -0,0 +1,3 @@ +function () { + return 1 +} diff --git a/content/test.md b/content/test.md index 7a892b561..84ea8a75d 100644 --- a/content/test.md +++ b/content/test.md @@ -42,5 +42,25 @@ over time, without requiring further interaction from the original parties {{}} +### Github code comments +{{}} +### Github code small +#### Lorem ipsum +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam sed congue eros, sit amet efficitur turpis. Ut arcu dui, tempor non ex consequat, dictum egestas est. Morbi et pulvinar magna. Nam scelerisque fermentum felis ut vehicula. Fusce malesuada tortor sed arcu pretium laoreet. Praesent ac nibh eu leo euismod condimentum. Suspendisse vitae fringilla nulla. Donec in fermentum odio. Nullam ut congue leo. Fusce urna lorem, tincidunt ac porta nec, dapibus ac ipsum. Nulla posuere vulputate nisi. Integer eget elementum diam. Aenean tincidunt lectus eu quam tincidunt aliquam. Curabitur eget lacinia diam. + +{{}} + +### Local file +{{}} + + +## Diagrams +![Protocol Overview Diagram](/intro/diagrams/orient/filecoin.dot) + +## Blockquotes +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam sed congue eros, sit amet efficitur turpis. Ut arcu dui, tempor non ex consequat, dictum egestas est. + +> **Note** +> Morbi et pulvinar magna. Nam scelerisque fermentum felis ut vehicula. Fusce malesuada tortor sed arcu pretium laoreet. Praesent ac nibh eu leo euismod condimentum. Suspendisse vitae fringilla nulla. Donec in fermentum odio. Nullam ut congue leo. Fusce urna lorem, tincidunt ac porta nec, dapibus ac ipsum. Nulla posuere vulputate nisi. Integer eget elementum diam. Aenean tincidunt lectus eu quam tincidunt aliquam. Curabitur eget lacinia diam. diff --git a/data/iconmoon-project.json b/data/iconmoon-project.json new file mode 100644 index 000000000..d26f2fb0c --- /dev/null +++ b/data/iconmoon-project.json @@ -0,0 +1,4870 @@ +{ + "metadata": { + "name": "Filecoin Spec", + "lastOpened": 0, + "created": 1602610233443 + }, + "iconSets": [ + { + "selection": [ + { + "id": 1, + "order": 0 + }, + { + "id": 2, + "order": 0 + }, + { + "id": 3, + "order": 0 + }, + { + "id": 4, + "order": 0 + }, + { + "id": 5, + "order": 0 + }, + { + "id": 6, + "order": 0 + }, + { + "id": 7, + "order": 0 + }, + { + "id": 8, + "order": 0 + }, + { + "id": 9, + "order": 0 + }, + { + "id": 10, + "order": 0 + }, + { + "id": 11, + "order": 0 + }, + { + "id": 12, + "order": 0 + }, + { + "id": 13, + "order": 0 + }, + { + "id": 14, + "order": 0 + }, + { + "id": 15, + "order": 0 + }, + { + "id": 16, + "order": 0 + }, + { + "id": 17, + "order": 0 + }, + { + "id": 18, + "order": 0 + }, + { + "id": 19, + "order": 0 + }, + { + "id": 20, + "order": 0 + }, + { + "id": 21, + "order": 0 + }, + { + "id": 22, + "order": 0 + }, + { + "id": 23, + "order": 0 + }, + { + "id": 24, + "order": 0 + }, + { + "id": 25, + "order": 0 + }, + { + "id": 26, + "order": 11, + "prevSize": 24, + "name": "award" + }, + { + "id": 27, + "order": 0 + }, + { + "id": 28, + "order": 0 + }, + { + "id": 29, + "order": 0 + }, + { + "id": 30, + "order": 0 + }, + { + "id": 31, + "order": 0 + }, + { + "id": 32, + "order": 0 + }, + { + "id": 33, + "order": 0 + }, + { + "id": 34, + "order": 0 + }, + { + "id": 35, + "order": 0 + }, + { + "id": 36, + "order": 0 + }, + { + "id": 37, + "order": 12, + "prevSize": 24, + "name": "bookmark" + }, + { + "id": 38, + "order": 0 + }, + { + "id": 39, + "order": 0 + }, + { + "id": 40, + "order": 0 + }, + { + "id": 41, + "order": 0 + }, + { + "id": 42, + "order": 0 + }, + { + "id": 43, + "order": 0 + }, + { + "id": 44, + "order": 0 + }, + { + "id": 45, + "order": 0 + }, + { + "id": 46, + "order": 0 + }, + { + "id": 47, + "order": 0 + }, + { + "id": 48, + "order": 0 + }, + { + "id": 49, + "order": 0 + }, + { + "id": 50, + "order": 0 + }, + { + "id": 51, + "order": 0 + }, + { + "id": 52, + "order": 0 + }, + { + "id": 53, + "order": 0 + }, + { + "id": 54, + "order": 0 + }, + { + "id": 55, + "order": 0 + }, + { + "id": 56, + "order": 0 + }, + { + "id": 57, + "order": 0 + }, + { + "id": 58, + "order": 0 + }, + { + "id": 59, + "order": 0 + }, + { + "id": 60, + "order": 0 + }, + { + "id": 61, + "order": 0 + }, + { + "id": 62, + "order": 0 + }, + { + "id": 63, + "order": 0 + }, + { + "id": 64, + "order": 0 + }, + { + "id": 65, + "order": 0 + }, + { + "id": 66, + "order": 0 + }, + { + "id": 67, + "order": 0 + }, + { + "id": 68, + "order": 0 + }, + { + "id": 69, + "order": 0 + }, + { + "id": 70, + "order": 0 + }, + { + "id": 71, + "order": 0 + }, + { + "id": 72, + "order": 0 + }, + { + "id": 73, + "order": 0 + }, + { + "id": 74, + "order": 0 + }, + { + "id": 75, + "order": 0 + }, + { + "id": 76, + "order": 0 + }, + { + "id": 77, + "order": 0 + }, + { + "id": 78, + "order": 0 + }, + { + "id": 79, + "order": 0 + }, + { + "id": 80, + "order": 0 + }, + { + "id": 81, + "order": 0 + }, + { + "id": 82, + "order": 0 + }, + { + "id": 83, + "order": 0 + }, + { + "id": 84, + "order": 0 + }, + { + "id": 85, + "order": 0 + }, + { + "id": 86, + "order": 0 + }, + { + "id": 87, + "order": 0 + }, + { + "id": 88, + "order": 0 + }, + { + "id": 89, + "order": 0 + }, + { + "id": 90, + "order": 0 + }, + { + "id": 91, + "order": 0 + }, + { + "id": 92, + "order": 0 + }, + { + "id": 93, + "order": 0 + }, + { + "id": 94, + "order": 0 + }, + { + "id": 95, + "order": 9, + "prevSize": 24, + "name": "external-link" + }, + { + "id": 96, + "order": 0 + }, + { + "id": 97, + "order": 0 + }, + { + "id": 98, + "order": 0 + }, + { + "id": 99, + "order": 0 + }, + { + "id": 100, + "order": 0 + }, + { + "id": 101, + "order": 0 + }, + { + "id": 102, + "order": 0 + }, + { + "id": 103, + "order": 0 + }, + { + "id": 104, + "order": 0 + }, + { + "id": 105, + "order": 0 + }, + { + "id": 106, + "order": 0 + }, + { + "id": 107, + "order": 0 + }, + { + "id": 108, + "order": 0 + }, + { + "id": 109, + "order": 0 + }, + { + "id": 110, + "order": 0 + }, + { + "id": 111, + "order": 0 + }, + { + "id": 112, + "order": 0 + }, + { + "id": 113, + "order": 0 + }, + { + "id": 114, + "order": 0 + }, + { + "id": 115, + "order": 0 + }, + { + "id": 116, + "order": 0 + }, + { + "id": 117, + "order": 0 + }, + { + "id": 118, + "order": 0 + }, + { + "id": 119, + "order": 6, + "prevSize": 24, + "name": "github" + }, + { + "id": 120, + "order": 0 + }, + { + "id": 121, + "order": 0 + }, + { + "id": 122, + "order": 0 + }, + { + "id": 123, + "order": 0 + }, + { + "id": 124, + "order": 0 + }, + { + "id": 125, + "order": 0 + }, + { + "id": 126, + "order": 0 + }, + { + "id": 127, + "order": 0 + }, + { + "id": 128, + "order": 0 + }, + { + "id": 129, + "order": 0 + }, + { + "id": 130, + "order": 0 + }, + { + "id": 131, + "order": 0 + }, + { + "id": 132, + "order": 0 + }, + { + "id": 133, + "order": 0 + }, + { + "id": 134, + "order": 0 + }, + { + "id": 135, + "order": 0 + }, + { + "id": 136, + "order": 0 + }, + { + "id": 137, + "order": 0 + }, + { + "id": 138, + "order": 0 + }, + { + "id": 139, + "order": 0 + }, + { + "id": 140, + "order": 0 + }, + { + "id": 141, + "order": 0 + }, + { + "id": 142, + "order": 0 + }, + { + "id": 143, + "order": 0 + }, + { + "id": 144, + "order": 0 + }, + { + "id": 145, + "order": 0 + }, + { + "id": 146, + "order": 0 + }, + { + "id": 147, + "order": 0 + }, + { + "id": 148, + "order": 0 + }, + { + "id": 149, + "order": 0 + }, + { + "id": 150, + "order": 0 + }, + { + "id": 151, + "order": 0 + }, + { + "id": 152, + "order": 0 + }, + { + "id": 153, + "order": 0 + }, + { + "id": 154, + "order": 0 + }, + { + "id": 155, + "order": 0 + }, + { + "id": 156, + "order": 0 + }, + { + "id": 157, + "order": 0 + }, + { + "id": 158, + "order": 0 + }, + { + "id": 159, + "order": 0 + }, + { + "id": 160, + "order": 0 + }, + { + "id": 161, + "order": 0 + }, + { + "id": 162, + "order": 0 + }, + { + "id": 163, + "order": 0 + }, + { + "id": 164, + "order": 0 + }, + { + "id": 165, + "order": 0 + }, + { + "id": 166, + "order": 7, + "prevSize": 24, + "name": "more-vertical" + }, + { + "id": 167, + "order": 0 + }, + { + "id": 168, + "order": 0 + }, + { + "id": 169, + "order": 0 + }, + { + "id": 170, + "order": 0 + }, + { + "id": 171, + "order": 0 + }, + { + "id": 172, + "order": 0 + }, + { + "id": 173, + "order": 0 + }, + { + "id": 174, + "order": 0 + }, + { + "id": 175, + "order": 0 + }, + { + "id": 176, + "order": 0 + }, + { + "id": 177, + "order": 0 + }, + { + "id": 178, + "order": 0 + }, + { + "id": 179, + "order": 0 + }, + { + "id": 180, + "order": 0 + }, + { + "id": 181, + "order": 0 + }, + { + "id": 182, + "order": 0 + }, + { + "id": 183, + "order": 0 + }, + { + "id": 184, + "order": 0 + }, + { + "id": 185, + "order": 0 + }, + { + "id": 186, + "order": 0 + }, + { + "id": 187, + "order": 0 + }, + { + "id": 188, + "order": 0 + }, + { + "id": 189, + "order": 0 + }, + { + "id": 190, + "order": 0 + }, + { + "id": 191, + "order": 0 + }, + { + "id": 192, + "order": 0 + }, + { + "id": 193, + "order": 0 + }, + { + "id": 194, + "order": 0 + }, + { + "id": 195, + "order": 0 + }, + { + "id": 196, + "order": 0 + }, + { + "id": 197, + "order": 0 + }, + { + "id": 198, + "order": 0 + }, + { + "id": 199, + "order": 0 + }, + { + "id": 200, + "order": 0 + }, + { + "id": 201, + "order": 0 + }, + { + "id": 202, + "order": 0 + }, + { + "id": 203, + "order": 0 + }, + { + "id": 204, + "order": 0 + }, + { + "id": 205, + "order": 0 + }, + { + "id": 206, + "order": 0 + }, + { + "id": 207, + "order": 0 + }, + { + "id": 208, + "order": 8, + "prevSize": 24, + "name": "settings" + }, + { + "id": 209, + "order": 0 + }, + { + "id": 210, + "order": 0 + }, + { + "id": 211, + "order": 13, + "prevSize": 24, + "name": "shield" + }, + { + "id": 212, + "order": 0 + }, + { + "id": 213, + "order": 0 + }, + { + "id": 214, + "order": 0 + }, + { + "id": 215, + "order": 0 + }, + { + "id": 216, + "order": 0 + }, + { + "id": 217, + "order": 0 + }, + { + "id": 218, + "order": 0 + }, + { + "id": 219, + "order": 0 + }, + { + "id": 220, + "order": 0 + }, + { + "id": 221, + "order": 0 + }, + { + "id": 222, + "order": 0 + }, + { + "id": 223, + "order": 0 + }, + { + "id": 224, + "order": 0 + }, + { + "id": 225, + "order": 0 + }, + { + "id": 226, + "order": 0 + }, + { + "id": 227, + "order": 0 + }, + { + "id": 228, + "order": 0 + }, + { + "id": 229, + "order": 0 + }, + { + "id": 230, + "order": 0 + }, + { + "id": 231, + "order": 0 + }, + { + "id": 232, + "order": 0, + "prevSize": 24, + "name": "tag" + }, + { + "id": 233, + "order": 0 + }, + { + "id": 234, + "order": 0 + }, + { + "id": 235, + "order": 0 + }, + { + "id": 236, + "order": 0 + }, + { + "id": 237, + "order": 0 + }, + { + "id": 238, + "order": 0 + }, + { + "id": 239, + "order": 0 + }, + { + "id": 240, + "order": 0 + }, + { + "id": 241, + "order": 0 + }, + { + "id": 242, + "order": 0 + }, + { + "id": 243, + "order": 0 + }, + { + "id": 244, + "order": 0 + }, + { + "id": 245, + "order": 0 + }, + { + "id": 246, + "order": 0 + }, + { + "id": 247, + "order": 0 + }, + { + "id": 248, + "order": 0 + }, + { + "id": 249, + "order": 0 + }, + { + "id": 250, + "order": 0 + }, + { + "id": 251, + "order": 0 + }, + { + "id": 252, + "order": 0 + }, + { + "id": 253, + "order": 0 + }, + { + "id": 254, + "order": 0 + }, + { + "id": 255, + "order": 0 + }, + { + "id": 256, + "order": 0 + }, + { + "id": 257, + "order": 0 + }, + { + "id": 258, + "order": 0 + }, + { + "id": 259, + "order": 0 + }, + { + "id": 260, + "order": 0 + }, + { + "id": 261, + "order": 0 + }, + { + "id": 262, + "order": 0 + }, + { + "id": 263, + "order": 0 + }, + { + "id": 264, + "order": 0 + }, + { + "id": 265, + "order": 0 + }, + { + "id": 266, + "order": 0 + }, + { + "id": 267, + "order": 0 + }, + { + "id": 268, + "order": 0 + }, + { + "id": 269, + "order": 0 + }, + { + "id": 270, + "order": 0 + }, + { + "id": 271, + "order": 0 + }, + { + "id": 272, + "order": 0 + }, + { + "id": 273, + "order": 0 + }, + { + "id": 274, + "order": 0 + }, + { + "id": 275, + "order": 0 + }, + { + "id": 276, + "order": 0 + }, + { + "id": 277, + "order": 0 + }, + { + "id": 278, + "order": 0 + }, + { + "id": 279, + "order": 0 + }, + { + "id": 280, + "order": 0 + }, + { + "id": 281, + "order": 0 + }, + { + "id": 282, + "order": 0 + } + ], + "id": 0, + "metadata": { + "name": "Feather", + "importSize": { + "width": 24, + "height": 24 + }, + "url": "https://feathericons.com/", + "designer": "Cole Bemis", + "designerURL": "http://colebemis.com/", + "license": "MIT", + "licenseURL": "https://github.com/feathericons/feather/blob/master/LICENSE" + }, + "height": 1024, + "prevSize": 24, + "icons": [ + { + "id": 0, + "paths": [ + "M938.667 469.333h-170.667c-18.731 0-34.645 12.075-40.491 29.184l-87.509 262.571-215.509-646.571c-7.467-22.357-31.616-34.432-53.973-27.008-13.227 4.395-22.827 14.635-27.008 27.008l-118.272 354.816h-139.904c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h170.667c18.048-0.128 34.56-11.392 40.491-29.184l87.509-262.571 215.509 646.571c4.181 12.373 13.781 22.571 26.965 26.965 22.357 7.467 46.507-4.651 53.973-26.965l118.315-354.816h139.904c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "activity" + ], + "grid": 24 + }, + { + "id": 1, + "paths": [ + "M213.333 682.667h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h42.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-426.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-682.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM544.768 612.693c-1.493-1.835-3.371-3.712-5.461-5.461-18.091-15.104-45.013-12.629-60.075 5.461l-213.333 256c-6.144 7.339-9.899 16.896-9.899 27.307 0 23.552 19.115 42.667 42.667 42.667h426.667c9.6 0.043 19.328-3.2 27.307-9.899 18.091-15.104 20.565-41.984 5.461-60.075zM512 706.645l122.24 146.688h-244.48z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "airplay" + ], + "grid": 24 + }, + { + "id": 2, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM469.333 341.333v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM512 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "alert-circle" + ], + "grid": 24 + }, + { + "id": 3, + "paths": [ + "M335.36 42.667c-10.923 0-21.845 4.181-30.165 12.501l-250.027 250.027c-7.723 7.723-12.501 18.389-12.501 30.165v353.28c0 10.923 4.181 21.845 12.501 30.165l250.027 250.027c7.723 7.723 18.389 12.501 30.165 12.501h353.28c10.923 0 21.845-4.181 30.165-12.501l250.027-250.027c7.723-7.723 12.501-18.389 12.501-30.165v-353.28c0-10.923-4.181-21.845-12.501-30.165l-250.027-250.027c-7.723-7.723-18.389-12.501-30.165-12.501zM353.024 128h317.952l225.024 225.024v317.952l-225.024 225.024h-317.952l-225.024-225.024v-317.952zM469.333 341.333v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM512 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "alert-octagon" + ], + "grid": 24 + }, + { + "id": 4, + "paths": [ + "M475.648 186.624c3.115-5.248 7.893-10.325 14.251-14.165 10.069-6.101 21.589-7.595 32.256-4.949s20.224 9.216 26.197 19.115l361.216 603.008c2.987 5.12 5.077 11.435 5.461 18.517-0.64 15.701-5.077 25.216-12.075 32.384-7.68 7.851-18.219 12.715-29.568 12.843l-722.645-0.043c-6.485-0.043-13.696-1.749-20.523-5.717-10.197-5.888-17.024-15.317-19.883-25.899s-1.621-22.144 3.925-31.787zM402.432 142.763l-361.387 603.307c-18.005 31.189-21.589 66.133-13.141 97.707s29.013 60.075 59.648 77.739c19.797 11.435 41.643 17.067 62.933 17.152h722.901c35.797-0.384 67.712-15.104 90.581-38.485s36.864-55.595 36.48-90.923c-0.256-22.869-6.528-44.544-17.323-62.891l-361.557-603.605c-18.432-30.421-47.36-50.389-79.104-58.155s-66.603-3.456-96.811 14.891c-18.304 11.093-33.067 26.24-43.179 43.264zM469.333 384v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM512 768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "alert-triangle" + ], + "grid": 24 + }, + { + "id": 5, + "paths": [ + "M768 384h-512c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h512c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 213.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 554.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM768 725.333h-512c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h512c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "align-center" + ], + "grid": 24 + }, + { + "id": 6, + "paths": [ + "M896 384h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 213.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 554.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 725.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "align-justify" + ], + "grid": 24 + }, + { + "id": 7, + "paths": [ + "M725.333 384h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 213.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 554.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM725.333 725.333h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "align-left" + ], + "grid": 24 + }, + { + "id": 8, + "paths": [ + "M896 384h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 213.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 554.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 725.333h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "align-right" + ], + "grid": 24 + }, + { + "id": 9, + "paths": [ + "M597.333 213.333c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM213.333 469.333h-128c-23.552 0-42.667 19.115-42.667 42.667 0 129.579 52.565 246.997 137.472 331.861s202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861c0-23.552-19.115-42.667-42.667-42.667h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h82.987c-9.813 89.003-50.048 168.789-110.123 228.864s-139.861 100.309-228.864 110.123v-515.029c29.995-7.723 56.832-23.424 77.995-44.587 30.848-30.848 50.005-73.6 50.005-120.704s-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661c21.163 21.205 48 36.907 77.995 44.629v515.029c-89.003-9.813-168.789-50.048-228.864-110.123s-100.309-139.861-110.123-228.864h82.987c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "anchor" + ], + "grid": 24 + }, + { + "id": 10, + "paths": [ + "M487.339 298.667l94.848-164.267c77.867 14.379 147.499 52.267 201.344 106.069 17.749 17.749 33.792 37.248 47.829 58.197h-221.611zM314.88 426.667l-94.805-164.139c6.528-7.637 13.312-14.976 20.395-22.059 64-64 150.4-105.472 246.4-111.659l-110.592 191.573zM339.541 640h-189.696c-14.165-40.021-21.845-83.115-21.845-128 0-61.013 14.208-118.656 39.509-169.899l110.933 192.171zM745.515 489.728l-61.056-105.728h189.696c14.165 40.021 21.845 83.115 21.845 128 0 61.013-14.208 118.656-39.509 169.899l-109.909-190.379zM537.088 895.189l172.032-297.856 94.805 164.181c-6.528 7.595-13.312 14.976-20.395 22.016-64 64-150.4 105.472-246.4 111.659zM456.533 978.091c1.963 0.341 3.925 0.597 5.931 0.64 16.256 1.707 32.811 2.603 49.536 2.603 129.579 0 246.997-52.565 331.861-137.472 15.616-15.616 30.123-32.299 43.392-49.963 1.792-2.005 3.371-4.139 4.693-6.357 56.235-77.355 89.387-172.629 89.387-275.541 0-65.664-13.525-128.213-37.888-185.003-0.683-1.877-1.451-3.669-2.347-5.376-23.595-53.077-56.747-100.992-97.237-141.483-72.576-72.576-168.96-121.557-276.395-134.229-1.963-0.341-3.925-0.597-5.931-0.64-16.256-1.707-32.811-2.603-49.536-2.603-129.579 0-246.997 52.565-331.861 137.472-15.616 15.573-30.123 32.299-43.392 49.963-1.792 2.005-3.371 4.139-4.736 6.357-56.192 77.355-89.344 172.629-89.344 275.541 0 65.664 13.525 128.213 37.888 185.003 0.683 1.877 1.451 3.669 2.347 5.376 23.595 53.077 56.747 100.992 97.237 141.483 72.576 72.576 168.96 121.557 276.395 134.229zM536.661 725.333l-94.848 164.267c-77.867-14.379-147.499-52.267-201.344-106.069-17.749-17.749-33.792-37.248-47.829-58.197h221.611zM659.84 512l-73.899 128h-147.883l-73.899-128 73.899-128h147.883z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "aperture" + ], + "grid": 24 + }, + { + "id": 11, + "paths": [ + "M170.667 384h682.667v469.333h-682.667zM42.667 85.333c-23.552 0-42.667 19.115-42.667 42.667v213.333c0 23.552 19.115 42.667 42.667 42.667h42.667v512c0 23.552 19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667v-512h42.667c23.552 0 42.667-19.115 42.667-42.667v-213.333c0-23.552-19.115-42.667-42.667-42.667zM85.333 170.667h853.333v128h-853.333zM426.667 554.667h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "archive" + ], + "grid": 24 + }, + { + "id": 12, + "paths": [ + "M780.501 481.835l-225.835 225.835v-494.336c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v494.336l-225.835-225.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l298.667 298.667c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l298.667-298.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-down" + ], + "grid": 24 + }, + { + "id": 13, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM469.333 341.333v238.336l-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l170.667 170.667c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835v-238.336c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-down-circle" + ], + "grid": 24 + }, + { + "id": 14, + "paths": [ + "M725.333 682.667h-323.669l353.835-353.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-353.835 353.835v-323.669c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667h426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-down-left" + ], + "grid": 24 + }, + { + "id": 15, + "paths": [ + "M682.667 298.667v323.669l-353.835-353.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l353.835 353.835h-323.669c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h426.667c5.803 0 11.307-1.152 16.341-3.243s9.728-5.163 13.824-9.259c3.925-3.925 7.083-8.619 9.259-13.824 2.091-5.035 3.243-10.539 3.243-16.341v-426.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-down-right" + ], + "grid": 24 + }, + { + "id": 16, + "paths": [ + "M542.165 780.501l-225.835-225.835h494.336c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-494.336l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-298.667 298.667c-4.096 4.096-7.168 8.789-9.259 13.824-2.176 5.205-3.243 10.795-3.243 16.341 0 10.923 4.181 21.845 12.501 30.165l298.667 298.667c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-left" + ], + "grid": 24 + }, + { + "id": 17, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM682.667 469.333h-238.336l97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-170.667 170.667c-4.096 4.096-7.168 8.789-9.259 13.824-2.176 5.205-3.243 10.795-3.243 16.341 0 10.923 4.181 21.845 12.501 30.165l170.667 170.667c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835h238.336c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-left-circle" + ], + "grid": 24 + }, + { + "id": 18, + "paths": [ + "M481.835 243.499l225.835 225.835h-494.336c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h494.336l-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l298.667-298.667c3.925-3.925 7.083-8.619 9.259-13.824 4.309-10.453 4.309-22.229 0-32.683-2.091-5.035-5.163-9.728-9.259-13.824l-298.667-298.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-right" + ], + "grid": 24 + }, + { + "id": 19, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM341.333 554.667h238.336l-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l170.667-170.667c3.925-3.925 7.083-8.619 9.259-13.824 4.309-10.453 4.309-22.229 0-32.683-2.091-5.035-5.163-9.728-9.259-13.824l-170.667-170.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835h-238.336c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-right-circle" + ], + "grid": 24 + }, + { + "id": 20, + "paths": [ + "M243.499 542.165l225.835-225.835v494.336c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-494.336l225.835 225.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-298.667-298.667c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243c-10.923 0-21.845 4.181-30.165 12.501l-298.667 298.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-up" + ], + "grid": 24 + }, + { + "id": 21, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM554.667 682.667v-238.336l97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-170.667-170.667c-4.096-4.096-8.789-7.168-13.824-9.259-5.205-2.176-10.795-3.243-16.341-3.243-10.923 0-21.845 4.181-30.165 12.501l-170.667 170.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835v238.336c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-up-circle" + ], + "grid": 24 + }, + { + "id": 22, + "paths": [ + "M341.333 725.333v-323.669l353.835 353.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-353.835-353.835h323.669c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-426.667c-23.552 0-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-up-left" + ], + "grid": 24 + }, + { + "id": 23, + "paths": [ + "M298.667 341.333h323.669l-353.835 353.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l353.835-353.835v323.669c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-426.667c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-426.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "arrow-up-right" + ], + "grid": 24 + }, + { + "id": 24, + "paths": [ + "M640 512c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM671.573 653.568c5.547 7.765 11.691 15.061 18.389 21.76 30.848 30.848 73.6 50.005 120.704 50.005s89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661v-42.667c0-129.579-52.608-246.997-137.472-331.861s-202.283-137.472-331.904-137.429-246.955 52.565-331.861 137.472-137.429 202.283-137.429 331.861 52.608 246.997 137.472 331.861 202.283 137.472 331.861 137.429c107.733 0 207.147-36.352 285.44-96.811 18.645-14.379 22.101-41.173 7.68-59.861s-41.173-22.101-59.861-7.68c-63.445 48.981-144.085 78.677-231.893 79.019-108.373-0.384-203.776-43.264-272.981-112.469-69.419-69.504-112.384-165.419-112.384-271.488s42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.488v42.667c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331v-213.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667c-35.627-26.752-80-42.667-128-42.667-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464c2.987-2.987 5.931-6.101 8.747-9.259z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "at-sign" + ], + "grid": 24 + }, + { + "id": 25, + "paths": [ + "M639.403 658.091l32 241.152-137.429-82.475c-13.269-7.851-29.995-8.363-43.904 0l-137.429 82.475 32.043-241.109c39.296 15.829 82.304 24.533 127.317 24.533s88.021-8.747 127.403-24.576zM654.165 554.283c-2.475 1.28-4.821 2.773-6.955 4.48-39.253 24.448-85.547 38.571-135.211 38.571-70.699 0-134.656-28.587-181.035-74.965s-74.965-110.336-74.965-181.035 28.587-134.656 74.965-181.035 110.336-74.965 181.035-74.965 134.656 28.587 181.035 74.965 74.965 110.336 74.965 181.035-28.587 134.656-74.965 181.035c-11.861 11.861-24.875 22.571-38.869 31.915zM304.64 612.48l-48.256 363.221c-3.115 23.339 13.312 44.8 36.693 47.915 9.984 1.323 19.669-0.939 27.563-5.717l191.36-114.816 191.403 114.816c20.224 12.117 46.421 5.589 58.539-14.635 5.205-8.661 6.955-18.389 5.717-27.563l-48.213-363.307c11.947-9.173 23.296-19.115 33.92-29.739 61.696-61.696 99.968-147.072 99.968-241.323s-38.272-179.627-99.968-241.365-147.115-99.968-241.365-99.968-179.627 38.272-241.365 99.968-99.968 147.115-99.968 241.365 38.272 179.627 99.968 241.365c10.667 10.667 22.016 20.608 33.963 29.781z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "award" + ], + "grid": 24 + }, + { + "id": 26, + "paths": [ + "M554.667 853.333v-426.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM810.667 853.333v-682.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM298.667 853.333v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "bar-chart" + ], + "grid": 24 + }, + { + "id": 27, + "paths": [ + "M810.667 853.333v-426.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM554.667 853.333v-682.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM298.667 853.333v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "bar-chart-2" + ], + "grid": 24 + }, + { + "id": 28, + "paths": [ + "M128 213.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v341.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-341.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM128 298.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v341.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-341.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM1024 554.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "battery" + ], + "grid": 24 + }, + { + "id": 29, + "paths": [ + "M213.333 725.333h-85.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-341.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h136.107c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-136.107c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v341.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM640 298.667h85.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v341.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-136.107c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h136.107c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-341.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM1024 554.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM433.835 232.32l-170.667 256c-13.056 19.627-7.765 46.080 11.819 59.179 7.339 4.907 15.659 7.211 23.68 7.168h176.256l-126.464 189.653c-13.056 19.627-7.765 46.080 11.819 59.179s46.080 7.765 59.179-11.819l170.667-256c4.523-6.656 7.211-14.848 7.211-23.68 0-23.552-19.115-42.667-42.667-42.667h-176.256l126.464-189.653c13.056-19.627 7.765-46.080-11.819-59.179s-46.080-7.765-59.179 11.819z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "battery-charging" + ], + "grid": 24 + }, + { + "id": 30, + "paths": [ + "M725.333 341.333c0 171.136 40.405 278.187 78.976 341.333h-584.619c38.571-63.147 78.976-170.197 78.976-341.333 0-58.923 23.851-112.213 62.464-150.869s91.947-62.464 150.869-62.464 112.213 23.851 150.869 62.464 62.464 91.947 62.464 150.869zM810.667 341.333c0-82.475-33.493-157.184-87.467-211.2s-128.725-87.467-211.2-87.467-157.184 33.493-211.2 87.467-87.467 128.725-87.467 211.2c0 261.419-102.101 343.339-109.355 348.757-19.328 13.141-24.448 39.424-11.477 58.923 8.192 12.245 21.589 18.901 35.499 18.987h768c23.552 0 42.667-19.115 42.667-42.667 0-14.464-7.168-27.221-18.304-35.029-7.509-5.547-109.696-87.467-109.696-348.971zM548.907 874.581c-5.931 10.197-15.317 17.024-25.941 19.84s-22.187 1.579-32.384-4.309c-6.912-4.011-12.075-9.472-15.317-15.232-11.691-20.48-37.717-27.605-58.197-15.915s-27.605 37.717-15.915 58.197c10.667 18.731 26.581 35.115 46.635 46.763 30.549 17.749 65.493 21.376 97.109 12.971s60.117-28.928 77.824-59.477c11.819-20.395 4.864-46.507-15.488-58.325s-46.507-4.864-58.325 15.488z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "bell" + ], + "grid": 24 + }, + { + "id": 31, + "paths": [ + "M548.907 874.581c-5.931 10.197-15.317 17.024-25.941 19.84s-22.187 1.579-32.384-4.309c-6.912-4.011-12.075-9.472-15.317-15.232-11.691-20.48-37.717-27.605-58.197-15.915s-27.605 37.717-15.915 58.197c10.667 18.731 26.581 35.115 46.635 46.763 30.549 17.749 65.493 21.376 97.109 12.971s60.117-28.928 77.824-59.477c11.819-20.395 4.864-46.507-15.488-58.325s-46.507-4.864-58.325 15.488zM810.667 340.352c-0.171-82.048-33.451-156.416-87.168-210.261-53.931-54.101-128.597-87.68-211.072-87.808-61.781-0.085-119.424 18.645-166.4 50.347-19.499 13.184-24.661 39.723-11.477 59.264s39.723 24.661 59.264 11.477c32.597-22.016 72.875-35.371 116.48-35.712 61.781 0.469 114.517 24.277 152.789 62.72 38.485 38.613 62.208 91.733 62.251 150.443-1.792 70.741 7.381 148.309 28.373 225.152 6.229 22.741 29.653 36.139 52.395 29.909s36.139-29.653 29.909-52.395c-18.901-69.333-26.965-138.667-25.344-200.875 0-0.213 0-0.469 0-0.683 0-0.128 0-0.256 0-0.384zM298.496 358.869l323.84 323.797h-402.645c37.205-60.928 76.075-162.645 78.805-323.797zM12.501 72.832l207.189 207.189c-4.523 21.035-6.613 41.984-6.357 61.867 0 260.864-102.101 342.784-109.355 348.203-19.328 13.141-24.448 39.424-11.477 58.923 8.192 12.245 21.589 18.901 35.499 18.987h579.669l243.499 243.499c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.667-938.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "bell-off" + ], + "grid": 24 + }, + { + "id": 32, + "paths": [ + "M554.667 409.003v-263.339l131.669 131.669zM554.667 614.997l131.669 131.669-131.669 131.669zM247.168 307.499l204.501 204.501-204.501 204.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l161.835-161.835v366.336c0 10.923 4.181 21.845 12.501 30.165 16.683 16.683 43.691 16.683 60.331 0l234.667-234.667c16.683-16.683 16.683-43.691 0-60.331l-204.501-204.501 204.501-204.501c16.683-16.683 16.683-43.691 0-60.331l-234.667-234.667c-7.723-7.723-18.389-12.501-30.165-12.501-23.552 0-42.667 19.115-42.667 42.667v366.336l-161.835-161.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "bluetooth" + ], + "grid": 24 + }, + { + "id": 33, + "paths": [ + "M298.667 469.333v-256h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496-14.293 67.285-37.504 90.496-55.125 37.504-90.496 37.504zM213.333 512v341.333c0 23.552 19.115 42.667 42.667 42.667h384c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869-23.936-112.299-62.464-150.869c-13.867-13.867-29.653-25.856-46.933-35.499 1.451-1.365 2.859-2.731 4.267-4.139 38.528-38.528 62.464-91.947 62.464-150.827s-23.936-112.299-62.464-150.869-91.989-62.464-150.869-62.464h-341.333c-23.552 0-42.667 19.115-42.667 42.667zM298.667 554.667h341.333c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496-14.293 67.285-37.504 90.496-55.125 37.504-90.496 37.504h-341.333z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "bold" + ], + "grid": 24 + }, + { + "id": 34, + "paths": [ + "M277.333 42.667c-41.216 0-78.635 16.768-105.6 43.733s-43.733 64.384-43.733 105.6v640c0 41.216 16.768 78.635 43.733 105.6s64.384 43.733 105.6 43.733h576c23.552 0 42.667-19.115 42.667-42.667v-853.333c0-23.552-19.115-42.667-42.667-42.667zM810.667 768v128h-533.333c-17.664 0-33.621-7.125-45.269-18.731s-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731zM277.333 128h533.333v554.667h-533.333c-22.912 0-44.587 5.163-64 14.379v-505.045c0-17.664 7.125-33.621 18.731-45.269s27.605-18.731 45.269-18.731z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "book" + ], + "grid": 24 + }, + { + "id": 35, + "paths": [ + "M896 170.667v554.667h-256c-31.061 0-60.245 8.32-85.333 22.827v-449.493c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504zM469.333 748.16c-25.088-14.507-54.272-22.827-85.333-22.827h-256v-554.667h213.333c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496zM938.667 85.333h-256c-58.88 0-112.299 23.936-150.869 62.464-7.125 7.125-13.739 14.763-19.797 22.869-6.059-8.107-12.672-15.744-19.797-22.869-38.571-38.528-91.989-62.464-150.869-62.464h-256c-23.552 0-42.667 19.115-42.667 42.667v640c0 23.552 19.115 42.667 42.667 42.667h298.667c23.595 0 44.843 9.515 60.331 25.003s25.003 36.736 25.003 60.331c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-23.595 9.515-44.843 25.003-60.331s36.736-25.003 60.331-25.003h298.667c23.552 0 42.667-19.115 42.667-42.667v-640c0-23.552-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "book-open" + ], + "grid": 24 + }, + { + "id": 36, + "paths": [ + "M785.877 930.731c6.869 4.949 15.488 7.936 24.789 7.936 23.552 0 42.667-19.115 42.667-42.667v-682.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-426.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c-0.043 8.491 2.56 17.237 7.936 24.789 13.696 19.157 40.363 23.637 59.52 9.899l273.877-195.584zM768 813.099l-231.211-165.163c-15.147-10.837-34.944-10.325-49.579 0l-231.211 165.163v-599.765c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h426.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "bookmark" + ], + "grid": 24 + }, + { + "id": 37, + "paths": [ + "M809.003 291.328l-297.003 171.819-297.003-171.819 275.456-157.397c4.779-2.731 9.899-4.48 15.147-5.291 9.301-1.451 18.987 0.128 27.904 5.291zM491.776 979.669c6.016 3.243 12.928 5.077 20.224 5.077 7.381 0 14.336-1.877 20.395-5.163 15.189-2.475 29.909-7.68 43.392-15.36l298.709-170.709c26.368-15.232 45.227-38.272 55.424-64.597 5.675-14.592 8.619-30.165 8.747-46.251v-341.333c0-20.395-4.821-39.723-13.397-56.917-0.939-3.029-2.219-5.973-3.883-8.832-1.963-3.371-4.267-6.357-6.912-8.96-1.323-1.835-2.731-3.669-4.139-5.419-9.813-12.203-21.845-22.528-35.456-30.507l-299.051-170.88c-26.027-15.019-55.467-19.84-83.371-15.531-15.488 2.432-30.507 7.637-44.245 15.488l-298.709 170.709c-16.341 9.429-29.824 21.888-40.149 36.267-2.56 2.56-4.864 5.547-6.784 8.832-1.664 2.901-2.987 5.888-3.925 8.96-1.707 3.413-3.243 6.955-4.608 10.496-5.632 14.635-8.576 30.208-8.704 45.995v341.632c0.043 30.293 10.581 58.155 28.331 80.128 9.813 12.203 21.845 22.528 35.456 30.507l299.051 170.88c13.824 7.979 28.587 13.099 43.605 15.445zM469.333 537.045v340.949l-277.12-158.336c-4.736-2.773-8.832-6.315-12.16-10.453-5.931-7.339-9.387-16.469-9.387-26.539v-318.379zM554.667 877.995v-340.949l298.667-172.757v318.379c-0.043 5.163-1.067 10.496-2.987 15.445-3.413 8.789-9.6 16.384-18.176 21.333z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "box" + ], + "grid": 24 + }, + { + "id": 38, + "paths": [ + "M384 256v-42.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v42.667zM384 853.333v-512h256v512zM298.667 341.333v512h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM725.333 256v-42.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v42.667h-128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-426.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM725.333 853.333v-512h128c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "briefcase" + ], + "grid": 24 + }, + { + "id": 39, + "paths": [ + "M298.667 85.333v42.667h-85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-85.333v-42.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v42.667h-256v-42.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM853.333 384h-682.667v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h85.333v42.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-42.667h256v42.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-42.667h85.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM170.667 469.333h682.667v384c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "calendar" + ], + "grid": 24 + }, + { + "id": 40, + "paths": [ + "M1024 810.667v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-147.84l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-256c-13.909 0.085-27.307 6.741-35.499 18.987l-72.661 109.013h-147.84c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h768c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM938.667 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-768c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-469.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c14.763 0 27.733-7.467 35.499-18.987l72.661-109.013h210.347l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM725.333 554.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM640 554.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "camera" + ], + "grid": 24 + }, + { + "id": 41, + "paths": [ + "M384 170.667h233.173l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v398.507c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-398.507c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-147.84l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM352.512 412.843c-6.229 6.955-12.075 14.379-17.451 22.272-33.28 48.597-43.648 106.197-33.621 159.787s40.619 103.509 89.216 136.747 106.197 43.648 159.787 33.621c37.845-7.083 73.813-24.405 103.424-51.072l139.136 139.136h-665.003c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-469.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h110.336zM444.288 383.915l-371.456-371.413c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l140.501 140.501h-25.003c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h750.336l72.832 72.832c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-566.101-566.101zM593.365 653.696c-17.067 14.336-37.333 23.68-58.667 27.691-32.256 6.059-66.688-0.213-95.872-20.181s-47.488-49.792-53.547-82.048 0.213-66.688 20.181-95.872c2.389-3.499 4.907-6.827 7.509-9.941z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "camera-off" + ], + "grid": 24 + }, + { + "id": 42, + "paths": [ + "M76.8 728.747c40.021 8.149 73.771 29.611 97.792 59.136 17.28 21.205 29.568 46.635 35.371 74.283 4.864 23.040 27.477 37.803 50.56 32.939s37.803-27.477 32.939-50.56c-8.619-40.96-26.88-78.805-52.693-110.549-36.053-44.288-86.955-76.629-146.901-88.875-23.083-4.693-45.611 10.197-50.347 33.28s10.197 45.611 33.28 50.347zM80.597 556.544c85.376 9.515 159.744 49.621 213.589 108.629 47.744 52.309 79.317 119.424 87.936 193.109 2.731 23.424 23.936 40.149 47.317 37.419s40.149-23.936 37.419-47.317c-10.709-91.733-50.091-175.445-109.653-240.725-67.328-73.771-160.555-124.075-267.221-135.936-23.424-2.603-44.501 14.251-47.104 37.675s14.251 44.501 37.675 47.104zM128 341.333v-85.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h256c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-682.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM85.333 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "cast" + ], + "grid": 24 + }, + { + "id": 43, + "paths": [ + "M823.168 225.835l-439.168 439.168-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0l469.333-469.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "check" + ], + "grid": 24 + }, + { + "id": 44, + "paths": [ + "M896 472.747v39.253c-0.043 106.027-43.051 201.941-112.64 271.445s-165.547 112.384-271.573 112.299-201.984-43.051-271.445-112.64-112.384-165.504-112.341-271.573 43.051-201.941 112.64-271.445 165.547-112.384 271.573-112.341c56.747 0.043 110.336 12.331 155.691 33.067 21.419 9.813 46.763 0.341 56.533-21.077s0.341-46.763-21.077-56.533c-56.619-25.856-122.283-40.747-191.104-40.789-129.579-0.085-246.997 52.437-331.947 137.259s-137.557 202.24-137.643 331.819 52.437 246.997 137.259 331.947 202.197 137.6 331.776 137.643 246.997-52.437 331.947-137.259 137.6-202.197 137.685-331.819v-39.253c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM908.501 140.501l-396.501 396.885-97.835-97.792c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l128 128c16.683 16.683 43.691 16.64 60.373 0l426.667-427.093c16.64-16.683 16.64-43.691-0.043-60.331s-43.691-16.64-60.331 0.043z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "check-circle" + ], + "grid": 24 + }, + { + "id": 45, + "paths": [ + "M353.835 499.499l128 128c16.683 16.683 43.691 16.683 60.331 0l426.667-426.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-396.501 396.501-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM853.333 512v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h469.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-469.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "check-square" + ], + "grid": 24 + }, + { + "id": 46, + "paths": [ + "M225.835 414.165l256 256c16.683 16.683 43.691 16.683 60.331 0l256-256c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.835 225.835-225.835-225.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "chevron-down" + ], + "grid": 24 + }, + { + "id": 47, + "paths": [ + "M670.165 737.835l-225.835-225.835 225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-256 256c-16.683 16.683-16.683 43.691 0 60.331l256 256c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "chevron-left" + ], + "grid": 24 + }, + { + "id": 48, + "paths": [ + "M414.165 798.165l256-256c16.683-16.683 16.683-43.691 0-60.331l-256-256c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l225.835 225.835-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "chevron-right" + ], + "grid": 24 + }, + { + "id": 49, + "paths": [ + "M798.165 609.835l-256-256c-16.683-16.683-43.691-16.683-60.331 0l-256 256c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l225.835-225.835 225.835 225.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "chevron-up" + ], + "grid": 24 + }, + { + "id": 50, + "paths": [ + "M268.501 584.832l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-183.168 183.168-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM268.501 286.165l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-183.168 183.168-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "chevrons-down" + ], + "grid": 24 + }, + { + "id": 51, + "paths": [ + "M499.499 695.168l-183.168-183.168 183.168-183.168c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331zM798.165 695.168l-183.168-183.168 183.168-183.168c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "chevrons-left" + ], + "grid": 24 + }, + { + "id": 52, + "paths": [ + "M584.832 755.499l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l183.168 183.168-183.168 183.168c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM286.165 755.499l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l183.168 183.168-183.168 183.168c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "chevrons-right" + ], + "grid": 24 + }, + { + "id": 53, + "paths": [ + "M755.499 439.168l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l183.168-183.168 183.168 183.168c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331zM755.499 737.835l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l183.168-183.168 183.168 183.168c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "chevrons-up" + ], + "grid": 24 + }, + { + "id": 54, + "paths": [ + "M315.819 428.075l-95.744-165.589c6.485-7.595 13.312-14.933 20.395-22.016 69.547-69.547 165.461-112.469 271.531-112.469s201.984 42.923 271.531 112.469c17.749 17.749 33.792 37.248 47.829 58.197h-319.36c-58.88 0-112.299 23.936-150.869 62.464-19.072 19.072-34.56 41.728-45.355 66.944zM456.533 978.091c1.963 0.341 3.925 0.597 5.931 0.64 16.256 1.707 32.811 2.603 49.536 2.603 129.579 0 246.997-52.565 331.861-137.472s137.472-202.283 137.472-331.861c0-65.664-13.525-128.213-37.888-185.003-0.683-1.877-1.451-3.669-2.347-5.376-23.595-53.077-56.747-100.992-97.237-141.483-84.864-84.907-202.283-137.472-331.861-137.472s-246.997 52.565-331.861 137.472c-15.616 15.573-30.123 32.299-43.392 49.963-1.792 2.005-3.371 4.139-4.736 6.357-56.192 77.355-89.344 172.629-89.344 275.541 0 129.579 52.565 246.997 137.472 331.861 72.576 72.576 168.96 121.557 276.395 134.229zM537.387 723.84l-95.616 165.76c-77.867-14.379-147.499-52.267-201.301-106.069-69.547-69.547-112.469-165.461-112.469-271.531 0-61.013 14.208-118.699 39.552-169.899l155.435 268.885c10.069 19.2 22.997 36.651 38.144 51.84 38.571 38.571 91.989 62.507 150.869 62.507 8.576 0 17.067-0.512 25.387-1.493zM624.555 573.056c-0.64 0.939-1.28 1.963-1.877 2.944l-3.243 5.632c-4.907 7.509-10.581 14.507-16.896 20.864-23.253 23.211-55.168 37.504-90.539 37.504s-67.285-14.293-90.496-37.504c-7.083-7.083-13.312-14.976-18.603-23.509-0.469-1.024-1.024-2.005-1.579-2.987l-3.499-6.016c-8.832-17.408-13.824-37.12-13.824-57.984 0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496c0 22.101-5.589 42.923-15.445 61.056zM537.088 895.189l155.307-269.269c20.864-32.939 32.939-72.021 32.939-113.92 0-48-15.915-92.373-42.667-128h191.488c14.165 40.021 21.845 83.115 21.845 128 0 106.069-42.923 201.984-112.469 271.531-64 64-150.4 105.472-246.443 111.659z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "chrome" + ], + "grid": 24 + }, + { + "id": 55, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "circle" + ], + "grid": 24 + }, + { + "id": 56, + "paths": [ + "M298.667 213.333c0 23.552 9.6 44.928 25.003 60.331s36.779 25.003 60.331 25.003h256c23.552 0 44.928-9.6 60.331-25.003s25.003-36.779 25.003-60.331h42.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM384 42.667c-23.552 0-44.928 9.6-60.331 25.003s-25.003 36.779-25.003 60.331h-42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-42.667c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003zM384 128h256v85.333h-256z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "clipboard" + ], + "grid": 24 + }, + { + "id": 57, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM469.333 256v256c0 16.597 9.472 31.019 23.595 38.144l170.667 85.333c21.077 10.539 46.72 2.005 57.259-19.072s2.005-46.72-19.072-57.259l-147.115-73.515v-229.632c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "clock" + ], + "grid": 24 + }, + { + "id": 58, + "paths": [ + "M768 469.333c47.147 0 89.728 19.072 120.661 50.005s50.005 73.515 50.005 120.661-19.072 89.728-50.005 120.661-73.515 50.005-120.661 50.005h-383.787c-62.421-0.341-121.728-19.669-170.88-53.675-56.917-39.339-100.181-98.304-118.784-170.325-20.608-79.872-6.955-160.469 31.915-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.915 116.864 102.741 137.515 182.613c4.907 18.56 21.547 32 41.301 32zM768 384h-22.187c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.541-291.029-41.003s-184.917 92.16-234.795 176.768-67.499 188.373-41.003 291.029c23.893 92.544 79.659 168.576 152.875 219.179 63.061 43.648 139.136 68.395 218.965 68.821h384.213c70.699 0 134.741-28.715 181.035-74.965s74.965-110.336 74.965-181.035-28.715-134.741-74.965-181.035-110.336-74.965-181.035-74.965z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "cloud" + ], + "grid": 24 + }, + { + "id": 59, + "paths": [ + "M298.667 810.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM298.667 554.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM640 810.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM640 554.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 896v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 640v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM870.443 746.496c64.725-28.373 111.915-80.341 135.723-141.312s24.405-131.157-3.925-195.883c-24.491-55.936-66.688-98.816-117.419-124.8-35.669-18.261-75.563-28.16-116.48-28.501h-22.528c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.499-291.029-41.003s-184.917 92.203-234.795 176.811-67.499 188.373-41.003 291.029c21.717 84.053 69.717 154.581 132.224 204.075 18.475 14.635 45.312 11.52 59.947-6.955s11.52-45.312-6.955-59.947c-48.299-38.272-85.675-92.971-102.613-158.549-20.608-79.829-6.955-160.427 31.915-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.915 116.864 102.741 137.515 182.613c4.907 18.56 21.547 32 41.301 32h53.419c27.605 0.213 54.4 6.912 78.251 19.115 33.835 17.323 61.781 45.781 78.165 83.072 18.901 43.179 18.56 89.856 2.645 130.603s-47.317 75.307-90.496 94.208c-21.589 9.472-31.403 34.603-21.973 56.192s34.603 31.403 56.192 21.973z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "cloud-drizzle" + ], + "grid": 24 + }, + { + "id": 60, + "paths": [ + "M819.157 762.88c69.248-14.080 126.336-54.955 162.475-109.483s51.541-123.051 37.461-192.299c-12.928-63.616-48.469-116.992-96.725-153.259-43.435-32.725-97.237-51.627-154.197-51.84h-22.357c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.499-291.029-41.003s-184.917 92.245-234.795 176.811-67.499 188.373-41.003 291.029c25.472 98.688 87.168 178.517 167.211 228.907 6.101 3.84 12.288 7.509 18.603 11.008 20.608 11.435 46.592 3.968 57.984-16.64s3.968-46.592-16.64-57.984c-4.907-2.731-9.771-5.589-14.507-8.576-62.379-39.296-110.208-101.291-130.048-178.048-20.608-79.872-6.955-160.469 31.872-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.872 116.864 102.741 137.515 182.613c4.949 18.56 21.589 32 41.344 32h53.589c38.229 0.171 74.24 12.8 103.253 34.645 32.171 24.192 55.765 59.605 64.384 102.059 9.387 46.208-0.811 91.733-24.96 128.213s-62.123 63.616-108.331 73.003c-23.083 4.693-38.016 27.221-33.323 50.304s27.221 38.016 50.304 33.323zM519.168 445.653l-170.667 256c-13.056 19.627-7.765 46.080 11.819 59.179 7.339 4.907 15.659 7.211 23.68 7.168h176.256l-126.464 189.653c-13.056 19.627-7.765 46.080 11.819 59.179s46.080 7.765 59.179-11.819l170.667-256c4.523-6.656 7.211-14.848 7.211-23.68 0-23.552-19.115-42.667-42.667-42.667h-176.256l126.464-189.653c13.056-19.627 7.765-46.080-11.819-59.179s-46.080-7.765-59.179 11.819z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "cloud-lightning" + ], + "grid": 24 + }, + { + "id": 61, + "paths": [ + "M1003.989 739.84c27.563-65.067 26.112-135.253 1.536-195.925s-72.363-112.085-137.429-139.648c-33.109-13.995-67.755-20.608-100.565-20.267h-21.589c-26.453-75.947-75.136-139.093-137.003-183.851-55.381-40.021-121.344-65.323-191.445-71.979-23.467-2.219-44.288 14.976-46.507 38.443s14.976 44.288 38.443 46.507c54.869 5.205 106.368 25.003 149.547 56.192 54.741 39.595 96.085 97.536 113.963 167.851 4.779 18.645 21.461 32.171 41.301 32.171h54.229c20.907-0.213 43.947 4.011 66.347 13.525 43.392 18.389 75.221 52.565 91.648 93.099s17.365 87.211-1.024 130.603c-9.173 21.717 0.939 46.72 22.656 55.936s46.72-0.939 55.936-22.656zM207.104 267.435l543.232 543.232h-366.763c-40.96 0.427-81.195-7.339-118.357-22.485-61.056-24.875-113.877-69.76-148.096-131.627-39.893-72.192-46.805-153.643-25.643-227.157 18.432-64 58.027-121.771 115.584-162.005zM12.501 72.832l133.504 133.547c-67.456 51.2-114.176 121.856-136.533 199.467-27.179 94.379-18.347 199.253 32.981 292.053 43.947 79.488 112.043 137.344 190.549 169.344 47.659 19.371 99.157 29.269 151.424 28.757h383.573c20.864-0.043 41.259-2.56 60.459-7.211l122.709 122.709c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.667-938.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "cloud-off" + ], + "grid": 24 + }, + { + "id": 62, + "paths": [ + "M640 554.667v341.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM298.667 554.667v341.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 640v341.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM870.443 746.496c64.725-28.373 111.915-80.341 135.723-141.312s24.405-131.157-3.925-195.883c-24.491-55.936-66.688-98.816-117.419-124.8-35.669-18.261-75.563-28.16-116.48-28.501h-22.528c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.499-291.029-41.003s-184.917 92.203-234.795 176.811-67.499 188.373-41.003 291.029c21.717 84.053 69.717 154.581 132.224 204.075 18.475 14.635 45.312 11.52 59.947-6.955s11.52-45.312-6.955-59.947c-48.299-38.272-85.675-92.971-102.613-158.549-20.608-79.829-6.955-160.427 31.915-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.915 116.864 102.741 137.515 182.613c4.907 18.56 21.547 32 41.301 32h53.419c27.605 0.213 54.4 6.912 78.251 19.115 33.835 17.323 61.781 45.781 78.165 83.072 18.901 43.179 18.56 89.856 2.645 130.603s-47.317 75.307-90.496 94.208c-21.589 9.472-31.403 34.603-21.973 56.192s34.603 31.403 56.192 21.973z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "cloud-rain" + ], + "grid": 24 + }, + { + "id": 63, + "paths": [ + "M870.443 789.163c64.725-28.373 111.915-80.341 135.723-141.312s24.405-131.157-3.925-195.883c-24.491-55.936-66.688-98.816-117.419-124.8-35.669-18.261-75.563-28.16-116.48-28.501h-22.528c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.499-291.029-41.003s-184.917 92.203-234.795 176.811-67.499 188.373-41.003 291.029c21.717 84.053 69.717 154.581 132.224 204.075 18.475 14.635 45.312 11.52 59.947-6.955s11.52-45.312-6.955-59.947c-48.299-38.272-85.675-92.971-102.613-158.549-20.608-79.829-6.955-160.427 31.915-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.915 116.864 102.741 137.515 182.613c4.907 18.56 21.547 32 41.301 32h53.419c27.605 0.213 54.4 6.912 78.251 19.115 33.835 17.323 61.781 45.781 78.165 83.072 18.901 43.179 18.56 89.856 2.645 130.603s-47.317 75.307-90.496 94.208c-21.589 9.472-31.403 34.603-21.973 56.192s34.603 31.403 56.192 21.973zM341.333 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM341.333 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM512 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM512 981.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM682.667 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM682.667 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "cloud-snow" + ], + "grid": 24 + }, + { + "id": 64, + "paths": [ + "M712.832 798.165l256-256c16.683-16.683 16.683-43.691 0-60.331l-256-256c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l225.835 225.835-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM311.168 225.835l-256 256c-16.683 16.683-16.683 43.691 0 60.331l256 256c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-225.835-225.835 225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "code" + ], + "grid": 24 + }, + { + "id": 65, + "paths": [ + "M224.256 512l-96.256 67.371v-134.784zM896 579.371l-96.256-67.371 96.256-67.371zM725.333 564.096l137.045 95.957-307.712 199.979v-176.512zM373.077 512l138.923-97.237 138.923 97.237-138.923 97.237zM161.621 660.011l137.045-95.915 170.667 119.467v176.512zM535.765 49.877c-6.784-4.565-14.976-7.211-23.765-7.211s-16.981 2.645-23.765 7.211l-425.344 276.48c-4.779 2.987-9.088 6.955-12.501 11.861-5.333 7.595-7.851 16.341-7.723 24.96v297.643c-0.085 7.851 1.963 15.787 6.315 22.869 1.749 2.901 3.883 5.589 6.357 8.021 2.005 2.005 4.267 3.797 6.741 5.419l0.811 0.512 425.344 276.48c6.784 4.565 14.976 7.211 23.765 7.211s16.981-2.645 23.765-7.211l425.344-276.48c4.779-2.944 9.088-6.912 12.501-11.819 5.333-7.595 7.808-16.341 7.723-25.003v-297.643c0.085-7.851-1.963-15.787-6.315-22.869-1.749-2.859-3.883-5.589-6.357-8.021-2.005-2.005-4.267-3.797-6.741-5.419l-0.811-0.512zM554.667 340.437v-176.469l307.712 200.021-137.045 95.915zM469.333 163.968v176.512l-170.667 119.467-137.045-95.957z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "codepen" + ], + "grid": 24 + }, + { + "id": 66, + "paths": [ + "M616.149 181.12l-104.149 60.16-104.149-60.16 82.603-47.189c4.779-2.731 9.899-4.48 15.147-5.291 9.301-1.451 18.987 0.128 27.904 5.291zM170.667 585.941l106.667 61.611v120.747l-85.12-48.64c-4.736-2.773-8.832-6.315-12.16-10.453-5.931-7.339-9.387-16.469-9.387-26.539zM746.667 768.299v-120.747l106.667-61.611v96.725c-0.043 5.163-1.067 10.496-2.987 15.445-3.413 8.789-9.6 16.384-18.176 21.333zM809.003 291.328l-297.003 171.819-297.003-171.819 107.093-61.227 168.576 97.408c13.611 7.851 29.739 7.381 42.709 0l168.533-97.365zM491.776 979.669c6.016 3.243 12.928 5.077 20.224 5.077 7.381 0 14.336-1.877 20.395-5.163 15.189-2.475 29.909-7.68 43.392-15.36l136.448-77.995c9.301-1.835 17.536-6.699 23.637-13.483l138.624-79.232c26.368-15.232 45.227-38.272 55.424-64.597 5.675-14.592 8.619-30.165 8.747-46.251v-341.333c0-20.395-4.821-39.723-13.397-56.917-0.939-3.029-2.219-5.973-3.883-8.832-1.963-3.371-4.267-6.357-6.912-8.96-1.323-1.835-2.731-3.669-4.139-5.419-9.813-12.203-21.845-22.528-35.456-30.507l-139.008-79.403c-6.272-7.125-14.635-11.776-23.595-13.525l-136.405-77.952c-26.027-15.019-55.467-19.84-83.371-15.531-15.488 2.432-30.507 7.637-44.245 15.488l-136.533 77.995c-8.96 1.749-17.323 6.4-23.595 13.483l-138.624 79.232c-16.341 9.429-29.824 21.888-40.149 36.267-2.56 2.56-4.864 5.547-6.784 8.832-1.664 2.901-2.987 5.888-3.925 8.96-1.707 3.413-3.243 6.955-4.608 10.496-5.632 14.635-8.576 30.208-8.704 45.995v341.632c0.043 30.293 10.581 58.155 28.331 80.128 9.813 12.203 21.845 22.528 35.456 30.507l139.008 79.445c6.059 6.827 14.293 11.691 23.637 13.483l136.405 77.952c13.824 7.979 28.587 13.099 43.605 15.445zM469.333 537.045v340.949l-106.667-60.928v-194.133c0-15.701-8.491-29.44-21.333-36.949l-170.667-98.603v-123.093zM554.667 877.995v-340.949l298.667-172.757v123.093l-170.667 98.603c-13.611 7.851-21.248 22.059-21.333 36.949v194.133z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "codesandbox" + ], + "grid": 24 + }, + { + "id": 67, + "paths": [ + "M810.667 640v-256c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496-14.293 67.285-37.504 90.496-55.125 37.504-90.496 37.504zM85.333 298.667c-23.552 0-42.667 19.115-42.667 42.667v384c0 58.88 23.936 112.299 62.464 150.869s91.989 62.464 150.869 62.464h341.333c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869-23.936-112.299-62.464-150.869-91.989-62.464-150.869-62.464h-42.667zM128 384h597.333v341.333c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504h-341.333c-35.371 0-67.285-14.293-90.496-37.504s-37.504-55.125-37.504-90.496zM213.333 42.667v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM384 42.667v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM554.667 42.667v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "coffee" + ], + "grid": 24 + }, + { + "id": 68, + "paths": [ + "M512 170.667h298.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h298.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM512 85.333h-298.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-298.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM469.333 128v768c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-768c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "columns" + ], + "grid": 24 + }, + { + "id": 69, + "paths": [ + "M682.667 682.667h85.333c23.595 0 44.843 9.515 60.331 25.003s25.003 36.736 25.003 60.331-9.515 44.843-25.003 60.331-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331zM341.333 682.667v85.333c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003zM341.333 341.333h-85.333c-23.595 0-44.843-9.515-60.331-25.003s-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM682.667 341.333h-341.333v341.333h341.333zM768 170.667c23.595 0 44.843 9.515 60.331 25.003s25.003 36.736 25.003 60.331-9.515 44.843-25.003 60.331-36.736 25.003-60.331 25.003h-85.333v-85.333c0-23.595 9.515-44.843 25.003-60.331s36.736-25.003 60.331-25.003zM426.667 426.667v-170.667c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005zM426.667 597.333h-170.667c-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 597.333v170.667c0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005zM597.333 426.667v170.667h-170.667v-170.667zM768 85.333c-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661v170.667h170.667c47.104 0 89.856-19.157 120.661-50.005s50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "command" + ], + "grid": 24 + }, + { + "id": 70, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM733.397 344.576c2.816-8.363 3.072-17.835 0-26.965-7.467-22.357-31.616-34.432-53.973-26.965l-271.36 90.453c-12.373 4.181-22.571 13.781-26.965 26.965l-90.453 271.36c-2.816 8.363-3.072 17.835 0 26.965 7.467 22.357 31.616 34.432 53.973 26.965l271.36-90.453c12.373-4.181 22.571-13.781 26.965-26.965zM625.451 398.549l-56.747 170.155-170.155 56.747 56.704-170.155z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "compass" + ], + "grid": 24 + }, + { + "id": 71, + "paths": [ + "M469.333 341.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v384c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h384c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-384c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM469.333 426.667h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v384c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-384c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-384c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM213.333 597.333h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-384c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v42.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-42.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-384c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v384c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "copy" + ], + "grid": 24 + }, + { + "id": 72, + "paths": [ + "M810.667 170.667v298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504h-409.003l140.501-140.501c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-213.333 213.333c-3.925 3.925-7.083 8.619-9.259 13.824-6.4 15.445-3.328 33.92 9.259 46.507l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-140.501-140.501h409.003c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "corner-down-left" + ], + "grid": 24 + }, + { + "id": 73, + "paths": [ + "M128 170.667v298.667c0 58.88 23.936 112.299 62.464 150.869s91.989 62.464 150.869 62.464h409.003l-140.501 140.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l213.333-213.333c3.925-3.925 7.083-8.619 9.259-13.824 6.4-15.445 3.328-33.92-9.259-46.507l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l140.501 140.501h-409.003c-35.371 0-67.285-14.293-90.496-37.504s-37.504-55.125-37.504-90.496v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "corner-down-right" + ], + "grid": 24 + }, + { + "id": 74, + "paths": [ + "M853.333 128h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v409.003l-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l213.333 213.333c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-140.501 140.501v-409.003c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "corner-left-down" + ], + "grid": 24 + }, + { + "id": 75, + "paths": [ + "M853.333 810.667h-298.667c-35.371 0-67.285-14.293-90.496-37.504s-37.504-55.125-37.504-90.496v-409.003l140.501 140.501c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-213.333-213.333c-4.096-4.096-8.789-7.168-13.824-9.259s-10.539-3.243-16.341-3.243-11.307 1.152-16.341 3.243c-5.035 2.091-9.728 5.163-13.824 9.259l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l140.501-140.501v409.003c0 58.88 23.936 112.299 62.464 150.869s91.989 62.464 150.869 62.464h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "corner-left-up" + ], + "grid": 24 + }, + { + "id": 76, + "paths": [ + "M170.667 213.333h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v409.003l-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l213.333 213.333c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-140.501 140.501v-409.003c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "corner-right-down" + ], + "grid": 24 + }, + { + "id": 77, + "paths": [ + "M170.667 896h298.667c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869v-409.003l140.501 140.501c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-213.333-213.333c-3.925-3.925-8.619-7.083-13.824-9.259-15.445-6.4-33.92-3.328-46.507 9.259l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l140.501-140.501v409.003c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "corner-right-up" + ], + "grid": 24 + }, + { + "id": 78, + "paths": [ + "M896 853.333v-298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-409.003l140.501-140.501c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-213.333 213.333c-4.096 4.096-7.168 8.789-9.259 13.824s-3.243 10.539-3.243 16.341 1.152 11.307 3.243 16.341c2.091 5.035 5.163 9.728 9.259 13.824l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-140.501-140.501h409.003c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v298.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "corner-up-left" + ], + "grid": 24 + }, + { + "id": 79, + "paths": [ + "M213.333 853.333v-298.667c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h409.003l-140.501 140.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l213.333-213.333c3.925-3.925 7.083-8.619 9.259-13.824 4.309-10.453 4.309-22.229 0-32.683-2.091-5.035-5.163-9.728-9.259-13.824l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l140.501 140.501h-409.003c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v298.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "corner-up-right" + ], + "grid": 24 + }, + { + "id": 80, + "paths": [ + "M256 213.333h512c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-512c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM384 341.333c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667v-256c0-23.552-19.115-42.667-42.667-42.667zM426.667 426.667h170.667v170.667h-170.667zM42.667 640h85.333v128c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h170.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-128h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-128h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-85.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-170.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h85.333v128h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "cpu" + ], + "grid": 24 + }, + { + "id": 81, + "paths": [ + "M128 128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v512c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h768c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM938.667 384h-853.333v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h768c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM85.333 469.333h853.333v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-768c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "credit-card" + ], + "grid": 24 + }, + { + "id": 82, + "paths": [ + "M301.952 301.952l381.099-3.285c11.435 0 22.016 4.736 29.781 12.501s12.501 18.389 12.501 30.165v384h-384c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-29.781zM43.051 304.213l173.568-1.493-3.285 379.563c0 35.712 14.379 67.755 37.504 90.88s55.168 37.504 90.496 37.504h384v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667v-384c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.88-37.504l-379.563 3.285 1.493-173.568c0.213-23.595-18.731-42.837-42.283-43.051s-42.837 18.731-43.051 42.283l-1.536 175.061-175.061 1.536c-23.552 0.213-42.496 19.456-42.283 43.051s19.456 42.496 43.051 42.283z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "crop" + ], + "grid": 24 + }, + { + "id": 83, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM554.667 893.653v-125.653c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v125.653c-89.003-9.813-168.789-50.048-228.864-110.123s-100.309-139.861-110.123-228.864h125.653c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-125.653c9.813-89.003 50.048-168.789 110.123-228.864s139.861-100.309 228.864-110.123v125.653c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-125.653c89.003 9.813 168.789 50.048 228.864 110.123s100.309 139.861 110.123 228.864h-125.653c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h125.653c-9.813 89.003-50.048 168.789-110.123 228.864s-139.861 100.309-228.864 110.123z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "crosshair" + ], + "grid": 24 + }, + { + "id": 84, + "paths": [ + "M170.667 213.419c0 0 0.128-4.053 9.088-12.288 10.453-9.6 28.629-20.608 55.723-31.147 63.957-24.96 163.029-41.984 276.523-41.984s212.565 17.024 276.565 41.984c27.051 10.539 45.269 21.547 55.723 31.147 8.747 8.064 9.045 11.989 9.045 12.288 0 0.128-0.299 4.053-9.088 12.117-10.453 9.6-28.629 20.608-55.723 31.147-63.957 24.96-163.029 41.984-276.523 41.984s-212.565-17.024-276.565-41.984c-27.051-10.539-45.269-21.547-55.723-31.147-8.875-8.192-9.045-12.117-9.045-12.117zM853.333 620.032v190.763c-1.749 4.139-4.096 7.723-9.259 12.416-10.453 9.6-28.629 20.565-55.595 31.061-63.787 24.832-162.517 41.728-276.48 41.728s-212.693-16.896-276.48-41.728c-27.008-10.496-45.141-21.461-55.595-31.061-5.12-4.693-7.509-8.277-8.491-10.325l-0.256-192.597c10.581 5.376 21.76 10.325 33.365 14.848 76.672 29.824 186.752 47.531 307.456 47.531s230.784-17.707 307.456-47.531c11.819-4.608 23.168-9.6 33.877-15.104zM853.333 321.152v190.421c0 0.171 0 0.341 0 0.555-1.749 4.139-4.096 7.723-9.259 12.416-10.453 9.6-28.629 20.565-55.595 31.061-63.787 24.832-162.517 41.728-276.48 41.728s-212.693-16.896-276.48-41.728c-27.008-10.496-45.141-21.461-55.595-31.061-5.12-4.693-7.509-8.277-8.491-10.325-0.043-1.707-0.171-3.371-0.384-4.992l-0.213-188.032c10.581 5.461 21.888 10.411 33.621 15.019 76.843 29.952 187.221 47.787 307.541 47.787s230.699-17.835 307.541-47.787c11.776-4.608 23.125-9.6 33.792-15.061zM85.333 213.333v597.333c0 2.475 0.085 4.949 0.299 7.424 2.432 28.373 18.133 51.072 36.565 68.011 21.248 19.499 50.133 35.157 82.347 47.701 76.672 29.824 186.752 47.531 307.456 47.531s230.784-17.707 307.456-47.531c32.213-12.544 61.099-28.203 82.347-47.701 18.432-16.939 34.133-39.637 36.565-68.011 0.213-2.475 0.299-4.949 0.299-7.424v-597.333c0-2.389-0.085-4.779-0.299-7.168-2.347-28.331-18.005-50.987-36.352-67.84-21.248-19.584-50.219-35.285-82.475-47.872-76.843-29.952-187.221-47.787-307.541-47.787s-230.699 17.835-307.541 47.787c-32.256 12.587-61.227 28.331-82.475 47.872-18.347 16.853-34.005 39.552-36.352 67.84-0.213 2.389-0.299 4.779-0.299 7.168z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "database" + ], + "grid": 24 + }, + { + "id": 85, + "paths": [ + "M896 213.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-535.296l-261.333-298.667 261.333-298.667zM896 128h-554.667c-12.8 0-24.235 5.632-32.128 14.549l-298.667 341.333c-14.208 16.213-13.909 40.192 0 56.192l298.667 341.333c8.448 9.643 20.224 14.549 32.128 14.592h554.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM481.835 414.165l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "delete" + ], + "grid": 24 + }, + { + "id": 86, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM682.667 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "disc" + ], + "grid": 24 + }, + { + "id": 87, + "paths": [ + "M469.333 469.333h-64c-29.483 0-56.064-11.904-75.435-31.232s-31.232-45.952-31.232-75.435 11.904-56.064 31.232-75.435 45.952-31.232 75.435-31.232h64zM554.667 554.667h64c29.483 0 56.064 11.904 75.435 31.232s31.232 45.952 31.232 75.435-11.904 56.064-31.232 75.435-45.952 31.232-75.435 31.232h-64zM725.333 170.667h-170.667v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128h-64c-52.992 0-101.077 21.547-135.765 56.235s-56.235 82.773-56.235 135.765 21.547 101.077 56.235 135.765 82.773 56.235 135.765 56.235h64v213.333h-213.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h213.333v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128h64c52.992 0 101.077-21.547 135.765-56.235s56.235-82.773 56.235-135.765-21.547-101.077-56.235-135.765-82.773-56.235-135.765-56.235h-64v-213.333h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "dollar-sign" + ], + "grid": 24 + }, + { + "id": 88, + "paths": [ + "M853.333 640v170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM554.667 537.003v-409.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v409.003l-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l213.333 213.333c3.925 3.925 8.619 7.083 13.824 9.259s10.795 3.243 16.341 3.243c10.923 0 21.845-4.181 30.165-12.501l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "download" + ], + "grid": 24 + }, + { + "id": 89, + "paths": [ + "M469.333 512v281.003l-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l170.667 170.667c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835v-281.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM915.413 806.741c57.813-40.661 93.696-100.992 104.96-165.461s-2.133-133.376-42.795-191.189c-35.2-50.091-85.248-83.755-140.245-99.157-22.443-6.272-45.739-9.515-69.163-9.6h-22.315c-30.805-87.808-91.179-158.293-166.699-203.008-84.523-50.005-188.245-67.797-290.944-41.472s-185.088 91.947-235.093 176.469-67.797 188.245-41.472 290.944c15.829 61.696 45.867 116.267 84.608 159.317 15.787 17.493 42.752 18.944 60.245 3.157s18.944-42.752 3.157-60.245c-29.525-32.811-52.992-75.093-65.408-123.435-20.523-79.915-6.699-160.469 32.256-226.304s102.912-116.736 182.827-137.216 160.469-6.699 226.304 32.256 116.736 102.912 137.216 182.827c4.949 18.56 21.589 32.043 41.387 32.043h53.589c15.787 0.043 31.445 2.219 46.507 6.443 36.736 10.283 69.931 32.64 93.44 66.048 27.136 38.571 36.053 84.395 28.544 127.488s-31.403 83.2-69.973 110.293c-19.285 13.568-23.893 40.149-10.368 59.435s40.149 23.893 59.435 10.368z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "download-cloud" + ], + "grid": 24 + }, + { + "id": 90, + "paths": [ + "M542.165 84.608c-16.683-16.683-43.733-16.64-60.373 0.043l-241.195 241.621c-74.965 75.008-112.427 173.355-112.384 271.573s37.547 196.565 112.555 271.488c74.923 74.88 173.184 112.341 271.275 112.384 98.475-0.043 196.821-37.589 271.787-112.555 74.88-74.923 112.341-173.184 112.384-271.275-0.043-98.517-37.589-196.821-112.555-271.744zM512.043 175.147l211.285 211.285c58.368 58.325 87.552 134.656 87.552 211.157s-29.099 152.875-87.424 211.2-134.656 87.509-211.157 87.552-152.875-29.099-211.2-87.424-87.509-134.656-87.552-211.157 29.099-152.875 87.424-211.2z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "droplet" + ], + "grid": 24 + }, + { + "id": 91, + "paths": [ + "M469.333 128h-298.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM759.168 76.501l-405.333 405.333c-5.205 5.163-9.259 11.947-11.221 19.84l-42.667 170.667c-1.664 6.4-1.792 13.568 0 20.693 5.717 22.869 28.885 36.779 51.755 31.061l170.667-42.667c7.125-1.749 14.080-5.504 19.84-11.221l405.333-405.333c25.984-25.984 38.997-60.16 38.997-94.165s-13.013-68.181-38.997-94.165-60.203-39.040-94.208-39.040-68.181 13.013-94.165 38.997zM819.499 136.832c9.344-9.344 21.504-13.995 33.835-13.995s24.491 4.651 33.835 13.995 13.995 21.504 13.995 33.835-4.651 24.491-13.995 33.835l-396.971 396.971-90.197 22.571 22.571-90.197z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "edit" + ], + "grid": 24 + }, + { + "id": 92, + "paths": [ + "M695.168 97.835l-576 576c-4.992 4.949-8.96 11.435-11.008 18.944l-64 234.667c-1.963 6.955-2.091 14.763 0 22.443 6.187 22.741 29.653 36.139 52.395 29.952l234.667-64c6.784-1.792 13.44-5.504 18.944-11.008l576-576c31.872-31.872 47.829-73.771 47.829-115.499s-15.957-83.627-47.829-115.499-73.771-47.829-115.499-47.829-83.627 15.957-115.499 47.829zM755.499 158.165c15.232-15.232 35.157-22.827 55.168-22.827s39.936 7.595 55.168 22.869 22.827 35.115 22.827 55.125-7.595 39.936-22.827 55.168l-567.979 567.979-151.723 41.387 41.387-151.68z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "edit-2" + ], + "grid": 24 + }, + { + "id": 93, + "paths": [ + "M512 896h384c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-384c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM673.835 119.168l-533.333 533.333c-5.205 5.163-9.259 11.947-11.221 19.84l-42.667 170.667c-1.664 6.4-1.792 13.568 0 20.693 5.717 22.869 28.885 36.779 51.755 31.061l170.667-42.667c7.125-1.749 14.080-5.504 19.84-11.221l533.333-533.333c25.984-25.984 38.997-60.16 38.997-94.165s-13.013-68.181-38.997-94.165-60.203-39.040-94.208-39.040-68.181 13.013-94.165 38.997zM734.165 179.499c9.344-9.344 21.504-13.995 33.835-13.995s24.491 4.651 33.835 13.995 13.995 21.504 13.995 33.835-4.651 24.491-13.995 33.835l-524.971 524.971-90.24 22.571 22.571-90.24z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "edit-3" + ], + "grid": 24 + }, + { + "id": 94, + "paths": [ + "M725.333 554.667v256c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-469.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-469.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h469.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM456.832 627.499l396.501-396.501v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h153.003l-396.501 396.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "external-link" + ], + "grid": 24 + }, + { + "id": 95, + "paths": [ + "M4.523 492.928c-5.803 11.691-6.229 25.728 0 38.144 0 0 16.896 33.664 47.787 78.635 19.243 27.989 44.288 61.099 74.965 94.635 38.144 41.771 85.504 84.779 141.611 119.467 68.053 42.069 149.589 72.192 243.115 72.192s175.061-30.123 243.115-72.192c56.107-34.688 103.467-77.696 141.611-119.467 30.635-33.536 55.723-66.645 74.965-94.635 30.891-44.971 47.787-78.635 47.787-78.635 5.803-11.691 6.229-25.728 0-38.144 0 0-16.896-33.664-47.787-78.635-19.243-27.989-44.288-61.099-74.965-94.635-38.144-41.771-85.504-84.779-141.611-119.467-68.053-42.069-149.589-72.192-243.115-72.192s-175.061 30.123-243.115 72.192c-56.107 34.688-103.467 77.696-141.611 119.467-30.677 33.536-55.723 66.603-74.965 94.635-30.891 44.971-47.787 78.635-47.787 78.635zM91.307 512c6.955-11.989 17.365-29.056 31.317-49.408 17.493-25.429 40.107-55.296 67.627-85.376 34.347-37.589 75.733-74.923 123.477-104.448 57.6-35.584 123.776-59.435 198.272-59.435s140.672 23.851 198.229 59.435c47.744 29.525 89.131 66.859 123.477 104.448 27.477 30.080 50.133 59.947 67.627 85.376 13.995 20.352 24.405 37.376 31.317 49.408-6.955 11.989-17.365 29.056-31.317 49.408-17.493 25.429-40.107 55.296-67.627 85.376-34.347 37.589-75.733 74.923-123.477 104.448-57.557 35.584-123.733 59.435-198.229 59.435s-140.672-23.851-198.229-59.435c-47.744-29.525-89.131-66.859-123.477-104.448-27.477-30.080-50.133-59.947-67.627-85.376-13.995-20.352-24.405-37.419-31.36-49.408zM682.667 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "eye" + ], + "grid": 24 + }, + { + "id": 96, + "paths": [ + "M432.128 222.464c27.776-6.485 55.296-9.429 79.36-9.131 75.008 0 141.184 23.851 198.741 59.435 47.744 29.525 89.131 66.859 123.477 104.448 27.477 30.080 50.133 59.947 67.627 85.376 13.952 20.267 24.32 37.291 31.275 49.28-23.296 40.661-49.493 77.696-75.861 108.459-15.317 17.877-13.269 44.843 4.608 60.16s44.843 13.269 60.16-4.608c34.901-40.704 68.736-90.112 97.408-143.787 6.315-11.904 6.955-26.368 0.555-39.211 0 0-16.896-33.664-47.787-78.635-19.243-27.989-44.288-61.099-74.965-94.635-38.144-41.771-85.504-84.779-141.611-119.467-68.053-42.027-149.589-72.149-242.603-72.149-31.317-0.384-65.707 3.371-99.84 11.349-22.955 5.376-37.205 28.331-31.829 51.285s28.331 37.205 51.285 31.829zM427.819 488.192l107.989 107.989c-7.765 2.603-15.872 4.011-24.021 4.309-21.888 0.768-43.947-6.784-61.184-22.869s-26.325-37.547-27.093-59.435c-0.341-10.155 1.067-20.309 4.309-30.037zM255.275 315.605l108.928 108.928c-18.517 29.483-27.136 63.317-25.941 96.683 1.536 43.605 19.755 86.741 54.229 118.827s78.763 47.232 122.368 45.696c29.525-1.024 58.837-9.728 84.651-25.941l99.072 99.072c-58.795 34.091-123.52 51.029-187.051 51.797-73.984 0-140.16-23.851-197.717-59.435-47.744-29.525-89.131-66.859-123.477-104.448-27.477-30.080-50.133-59.947-67.627-85.376-13.909-20.267-24.32-37.248-31.232-49.237 44.8-77.739 101.376-144.171 163.883-196.565zM12.501 72.832l182.229 182.229c-73.856 63.104-139.477 143.275-189.653 236.757-6.315 11.904-6.997 26.411-0.555 39.253 0 0 16.896 33.664 47.787 78.635 19.243 27.989 44.288 61.099 74.965 94.635 38.144 41.771 85.504 84.779 141.611 119.467 68.053 42.069 149.589 72.192 243.627 72.192 85.035-1.024 171.477-25.643 248.107-75.051l190.549 190.549c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-378.709-378.709c-0.085-0.085-0.213-0.213-0.299-0.299l-179.584-179.627c-0.341-0.299-0.683-0.683-1.024-1.024l-379.051-379.008c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "eye-off" + ], + "grid": 24 + }, + { + "id": 97, + "paths": [ + "M725.333 128v85.333h-85.333c-23.552 0-44.928 9.6-60.331 25.003s-25.003 36.779-25.003 60.331v128c0 23.552 19.115 42.667 42.667 42.667h116.011l-21.333 85.333h-94.677c-23.552 0-42.667 19.115-42.667 42.667v298.667h-85.333v-298.667c0-23.552-19.115-42.667-42.667-42.667h-85.333v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667v-128c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005zM768 42.667h-128c-70.699 0-134.741 28.715-181.035 74.965s-74.965 110.336-74.965 181.035v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667h85.333v298.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-298.667h85.333c19.883 0 36.608-13.611 41.387-32.299l42.667-170.667c5.717-22.869-8.192-46.037-31.061-51.755-3.541-0.896-7.125-1.323-10.325-1.28h-128v-85.333h128c23.552 0 42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "facebook" + ], + "grid": 24 + }, + { + "id": 98, + "paths": [ + "M597.333 723.413v-422.827l271.829 211.413zM128 723.413v-422.827l271.829 211.413zM111.531 844.331l384-298.667c10.709-8.32 16.341-20.736 16.469-33.28v298.283c0 23.552 19.115 42.667 42.667 42.667 9.899 0 19.029-3.371 26.197-9.003l384-298.667c18.603-14.464 21.931-41.259 7.467-59.861-2.304-2.944-4.907-5.504-7.467-7.467l-384-298.667c-18.603-14.464-45.397-11.136-59.861 7.467-6.101 7.851-9.045 17.109-9.003 26.197v298.24c-0.085-9.003-3.029-18.091-9.003-25.771-2.304-2.944-4.907-5.504-7.467-7.467l-384-298.667c-18.603-14.464-45.397-11.136-59.861 7.467-6.101 7.851-9.045 17.109-9.003 26.197v597.333c0 23.552 19.115 42.667 42.667 42.667 9.899 0 19.029-3.371 26.197-9.003z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "fast-forward" + ], + "grid": 24 + }, + { + "id": 99, + "paths": [ + "M772.736 673.792c2.944-2.261 5.547-4.907 7.808-7.851l113.195-113.536c58.325-58.325 87.509-134.869 87.509-211.285s-29.184-152.96-87.509-211.285-134.869-87.509-211.285-87.509-152.96 29.184-211.285 87.509l-288 288c-8.32 8.32-12.501 19.243-12.501 30.165v345.003l-115.499 115.499c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l115.499-115.499h345.003c11.819 0 22.485-4.779 30.208-12.544zM401.664 682.667h241.707l-85.077 85.333h-241.963zM728.448 597.333h-241.451l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-396.501 396.501v-242.005l275.499-275.499c41.685-41.685 96.256-62.507 150.955-62.507s109.269 20.821 150.955 62.507 62.507 96.256 62.507 150.955-20.821 109.269-62.507 150.955z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "feather" + ], + "grid": 24 + }, + { + "id": 100, + "paths": [ + "M554.667 533.333c0-29.483 11.904-56.064 31.232-75.435s45.952-31.232 75.435-31.232 56.064 11.904 75.435 31.232 31.232 45.952 31.232 75.435-11.904 56.064-31.232 75.435-45.952 31.232-75.435 31.232-56.064-11.904-75.435-31.232-31.232-45.952-31.232-75.435zM362.667 341.333c-29.483 0-56.064-11.904-75.435-31.232s-31.232-45.952-31.232-75.435 11.904-56.064 31.232-75.435 45.952-31.232 75.435-31.232h106.667v213.333zM554.667 341.333v-213.333h106.667c29.483 0 56.064 11.904 75.435 31.232s31.232 45.952 31.232 75.435-11.904 56.064-31.232 75.435-45.952 31.232-75.435 31.232zM469.333 725.333v106.667c0 29.483-11.904 56.064-31.232 75.435s-45.952 31.232-75.435 31.232-56.064-11.904-75.435-31.232-31.232-45.952-31.232-75.435 11.904-56.064 31.232-75.435 45.952-31.232 75.435-31.232zM170.667 533.333c0 52.992 21.547 101.077 56.235 135.765 4.779 4.779 9.813 9.301 15.061 13.568-5.248 4.267-10.283 8.789-15.061 13.568-34.688 34.688-56.235 82.773-56.235 135.765s21.547 101.077 56.235 135.765 82.773 56.235 135.765 56.235 101.077-21.547 135.765-56.235 56.235-82.773 56.235-135.765v-139.008c30.507 20.395 67.2 32.341 106.667 32.341 52.992 0 101.077-21.547 135.765-56.235s56.235-82.773 56.235-135.765-21.547-101.077-56.235-135.765c-4.779-4.779-9.813-9.301-15.061-13.568 5.248-4.267 10.283-8.789 15.061-13.568 34.688-34.688 56.235-82.773 56.235-135.765s-21.547-101.077-56.235-135.765-82.773-56.235-135.765-56.235h-298.667c-52.992 0-101.077 21.547-135.765 56.235s-56.235 82.773-56.235 135.765 21.547 101.077 56.235 135.765c4.779 4.779 9.813 9.301 15.061 13.568-5.248 4.267-10.283 8.789-15.061 13.568-34.688 34.688-56.235 82.773-56.235 135.765zM256 533.333c0-29.483 11.904-56.064 31.232-75.435s45.952-31.232 75.435-31.232h106.667v213.333h-106.667c-29.483 0-56.064-11.904-75.435-31.232s-31.232-45.952-31.232-75.435z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "figma" + ], + "grid": 24 + }, + { + "id": 101, + "paths": [ + "M750.336 341.333h-153.003v-153.003zM883.499 353.835l-298.667-298.667c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243h-298.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-469.333c0-11.776-4.779-22.443-12.501-30.165zM512 128v256c0 23.552 19.115 42.667 42.667 42.667h256v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "file" + ], + "grid": 24 + }, + { + "id": 102, + "paths": [ + "M750.336 298.667h-110.336v-110.336zM883.499 311.168l-256-256c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243h-341.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-11.776-4.779-22.443-12.501-30.165zM554.667 128v213.333c0 23.552 19.115 42.667 42.667 42.667h213.333v469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM384 682.667h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "file-minus" + ], + "grid": 24 + }, + { + "id": 103, + "paths": [ + "M750.336 298.667h-110.336v-110.336zM883.499 311.168l-256-256c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243h-341.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-11.776-4.779-22.443-12.501-30.165zM554.667 128v213.333c0 23.552 19.115 42.667 42.667 42.667h213.333v469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM384 682.667h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "file-plus" + ], + "grid": 24 + }, + { + "id": 104, + "paths": [ + "M750.336 298.667h-110.336v-110.336zM883.499 311.168l-256-256c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243h-341.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-11.776-4.779-22.443-12.501-30.165zM554.667 128v213.333c0 23.552 19.115 42.667 42.667 42.667h213.333v469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM682.667 512h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM682.667 682.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM426.667 341.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "file-text" + ], + "grid": 24 + }, + { + "id": 105, + "paths": [ + "M682.667 469.333h-341.333v-341.333h341.333zM341.333 554.667h341.333v341.333h-341.333zM256 256h-128v-77.653c0-13.909 5.589-26.453 14.763-35.584s21.675-14.763 35.584-14.763h77.653zM128 341.333h128v128h-128zM256 682.667h-128v-128h128zM128 768h128v128h-77.653c-13.909 0-26.453-5.589-35.584-14.763s-14.763-21.675-14.763-35.584zM896 682.667h-128v-128h128zM768 768h128v77.653c0 13.909-5.589 26.453-14.763 35.584s-21.675 14.763-35.584 14.763h-77.653zM896 256h-128v-128h77.653c13.909 0 26.453 5.589 35.584 14.763s14.763 21.675 14.763 35.584zM981.333 298.667v-120.32c0-37.461-15.232-71.424-39.723-95.957s-58.496-39.723-95.957-39.723h-667.307c-37.461 0-71.424 15.232-95.957 39.723s-39.723 58.496-39.723 95.957v667.307c0 37.461 15.232 71.424 39.723 95.957s58.496 39.723 95.957 39.723h667.307c37.461 0 71.424-15.232 95.957-39.723s39.723-58.496 39.723-95.957zM768 341.333h128v128h-128z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "film" + ], + "grid": 24 + }, + { + "id": 106, + "paths": [ + "M846.72 170.667l-281.984 333.397c-6.272 7.381-10.069 17.024-10.069 27.563v295.339l-85.333-42.667v-252.672c0.043-9.685-3.285-19.499-10.069-27.563l-281.984-333.397zM938.667 85.333h-853.333c-23.552 0-42.667 19.115-42.667 42.667 0 10.539 3.797 20.181 10.069 27.563l331.264 391.68v263.424c0 16.597 9.472 31.019 23.595 38.144l170.667 85.333c21.077 10.539 46.72 2.005 57.259-19.072 3.072-6.229 4.523-12.843 4.48-19.072v-348.757l331.264-391.68c15.232-18.005 12.971-44.928-5.035-60.117-8.064-6.827-17.877-10.155-27.563-10.112z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "filter" + ], + "grid": 24 + }, + { + "id": 107, + "paths": [ + "M213.333 571.605v-420.651c18.773-9.301 58.24-22.955 128-22.955 54.656 0 100.736 17.963 154.837 39.595 52.565 21.035 113.152 45.739 186.496 45.739 55.381 0 97.195-7.467 128-16.939v420.651c-18.773 9.301-58.24 22.955-128 22.955-54.656 0-100.736-17.963-154.837-39.595-52.565-21.035-113.152-45.739-186.496-45.739-55.381 0-97.195 7.467-128 16.939zM213.333 938.667v-275.712c18.773-9.301 58.24-22.955 128-22.955 54.656 0 100.736 17.963 154.837 39.595 52.565 21.035 113.152 45.739 186.496 45.739 138.539 0 192.299-46.635 200.832-55.168 8.32-8.32 12.501-19.243 12.501-30.165v-512c0-23.552-19.115-42.667-42.667-42.667-11.307 0-21.589 4.395-29.227 11.605-4.096 3.328-41.984 31.061-141.44 31.061-54.656 0-100.736-17.963-154.837-39.595-52.565-21.035-113.152-45.739-186.496-45.739-138.539 0-192.299 46.635-200.832 55.168-8.32 8.32-12.501 19.243-12.501 30.165v810.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "flag" + ], + "grid": 24 + }, + { + "id": 108, + "paths": [ + "M981.333 810.667v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-361.173l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-213.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM896 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h190.507l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "folder" + ], + "grid": 24 + }, + { + "id": 109, + "paths": [ + "M981.333 810.667v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-361.173l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-213.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM896 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h190.507l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM384 640h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "folder-minus" + ], + "grid": 24 + }, + { + "id": 110, + "paths": [ + "M981.333 810.667v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-361.173l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-213.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM896 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h190.507l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM384 640h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "folder-plus" + ], + "grid": 24 + }, + { + "id": 111, + "paths": [ + "M529.664 341.333l-213.333-213.333h451.669v213.333zM256 682.667v-256h238.336l213.333 213.333h-195.669c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h298.667c10.923 0 21.845-4.181 30.165-12.501 16.683-16.683 16.683-43.691 0-60.331l-225.835-225.835h195.669c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667h-597.333c-23.552 0-42.667 19.115-42.667 42.667 0 11.776 4.779 22.443 12.501 30.165l225.835 225.835h-195.669c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM183.168 712.832l298.667 298.667c16.683 16.683 43.691 16.683 60.331 0 8.32-8.32 12.501-19.243 12.501-30.165v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v195.669l-225.835-225.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM213.333 725.333h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "framer" + ], + "grid": 24 + }, + { + "id": 112, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM716.8 657.067c0 0-5.589-7.381-14.123-16.341-6.187-6.528-14.421-14.549-24.619-23.040-14.379-11.989-32.939-25.173-55.339-36.395-30.080-15.019-67.371-26.624-110.72-26.624s-80.64 11.605-110.72 26.624c-22.4 11.221-40.96 24.405-55.339 36.395-10.197 8.491-18.432 16.512-24.619 23.040-8.533 8.96-14.123 16.341-14.123 16.341-14.123 18.859-10.325 45.611 8.533 59.733s45.611 10.325 59.733-8.533c1.749-2.133 7.723-8.789 7.723-8.789 4.267-4.48 10.112-10.197 17.408-16.299 10.368-8.661 23.424-17.877 38.827-25.6 20.48-10.197 44.8-17.579 72.576-17.579s52.096 7.381 72.576 17.621c15.36 7.68 28.459 16.939 38.827 25.6 7.296 6.101 13.141 11.819 17.408 16.299 5.973 6.613 7.723 8.747 7.723 8.747 14.123 18.859 40.875 22.656 59.733 8.533s22.656-40.875 8.533-59.733zM384 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM640 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "frown" + ], + "grid": 24 + }, + { + "id": 113, + "paths": [ + "M469.333 554.667v341.333h-256v-341.333zM554.667 896v-341.333h256v341.333zM320 256c-17.664 0-33.621-7.125-45.269-18.731s-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731c26.837 0 48.725 9.515 67.584 25.003 16.043 13.141 29.909 30.677 41.643 50.219 10.283 17.109 18.475 35.029 24.747 51.328zM569.429 256c6.869-17.749 15.061-35.669 25.301-52.779 11.733-19.584 25.643-37.077 41.643-50.219 18.901-15.488 40.789-25.003 67.627-25.003 17.664 0 33.621 7.125 45.269 18.731s18.731 27.605 18.731 45.269-7.125 33.621-18.731 45.269-27.605 18.731-45.269 18.731zM469.333 341.333v128h-341.333v-128h192zM838.955 256c9.216-19.413 14.379-41.088 14.379-64 0-41.216-16.768-78.635-43.733-105.6s-64.384-43.733-105.6-43.733c-49.493 0-89.984 18.347-121.685 44.331-25.728 21.077-45.568 47.061-60.715 72.277-3.413 5.675-6.613 11.349-9.6 16.981-2.987-5.632-6.187-11.307-9.6-16.981-15.147-25.216-34.987-51.2-60.715-72.277-31.701-25.984-72.192-44.331-121.685-44.331-41.216 0-78.635 16.768-105.6 43.733s-43.733 64.384-43.733 105.6c0 22.912 5.163 44.587 14.379 64h-99.712c-23.552 0-42.667 19.115-42.667 42.667v213.333c0 23.552 19.115 42.667 42.667 42.667h42.667v384c0 23.552 19.115 42.667 42.667 42.667h682.667c23.552 0 42.667-19.115 42.667-42.667v-384h42.667c23.552 0 42.667-19.115 42.667-42.667v-213.333c0-23.552-19.115-42.667-42.667-42.667zM554.667 341.333h341.333v128h-341.333z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "gift" + ], + "grid": 24 + }, + { + "id": 114, + "paths": [ + "M853.333 256c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM341.333 768c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM723.371 420.779c-8.533 79.573-44.331 150.912-98.005 204.587s-125.013 89.515-204.587 98.005c-7.893-29.227-23.339-55.339-44.075-76.075-21.205-21.163-48.043-36.864-78.037-44.587v-474.709c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v474.709c-29.995 7.723-56.832 23.424-77.995 44.587-30.848 30.848-50.005 73.6-50.005 120.704s19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005c21.589-21.589 37.461-48.981 45.013-79.659 102.784-9.003 195.157-54.485 264.021-123.307s114.304-161.237 123.307-264.021c30.677-7.552 58.069-23.424 79.659-45.013 30.848-30.805 50.005-73.557 50.005-120.661s-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661c20.736 20.736 46.848 36.181 76.075 44.075z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "git-branch" + ], + "grid": 24 + }, + { + "id": 115, + "paths": [ + "M640 512c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM725.76 554.667h253.867c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-253.867c-1.579 0-3.115 0.085-4.651 0.256-8.448-41.899-29.227-79.36-58.24-108.416-38.571-38.571-91.989-62.507-150.869-62.507s-112.299 23.936-150.869 62.464c-29.056 29.056-49.792 66.517-58.24 108.373-1.365-0.085-2.816-0.171-4.224-0.171h-253.867c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h253.867c1.408 0 2.859-0.085 4.224-0.213 8.448 41.899 29.227 79.36 58.24 108.373 38.571 38.571 91.989 62.507 150.869 62.507s112.299-23.936 150.869-62.464c29.056-29.056 49.792-66.517 58.24-108.416 1.536 0.171 3.072 0.256 4.651 0.256z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "git-commit" + ], + "grid": 24 + }, + { + "id": 116, + "paths": [ + "M853.333 768c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM341.333 256c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM298.667 896v-255.957c12.117 16.171 25.387 31.403 39.637 45.653 68.864 68.864 161.237 114.304 264.021 123.307 7.552 30.677 23.424 58.069 45.013 79.659 30.805 30.848 73.557 50.005 120.661 50.005s89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005c-20.736 20.736-36.181 46.848-44.075 76.075-79.573-8.533-150.912-44.331-204.587-98.005s-89.515-125.013-98.005-204.587c29.141-7.936 55.253-23.424 75.989-44.16 30.848-30.805 50.005-73.557 50.005-120.661s-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661c21.163 21.205 48 36.907 77.995 44.629v474.709c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "git-merge" + ], + "grid": 24 + }, + { + "id": 117, + "paths": [ + "M853.333 768c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM341.333 256c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM554.667 298.667h128c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v261.376c-29.995 7.723-56.832 23.424-77.995 44.587-30.848 30.848-50.005 73.6-50.005 120.704s19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661c-21.205-21.205-48-36.864-77.995-44.587v-261.419c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM213.333 421.291v474.709c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-474.709c29.995-7.723 56.832-23.424 77.995-44.587 30.848-30.848 50.005-73.6 50.005-120.704s-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661c21.163 21.205 48 36.907 77.995 44.629z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "git-pull-request" + ], + "grid": 24 + }, + { + "id": 118, + "paths": [ + "M371.755 769.792c-54.101 16.213-87.893 14.293-110.208 7.253-9.856-3.115-18.389-7.509-26.197-12.885-17.536-12.117-31.019-28.8-47.744-50.005-15.189-19.243-36.267-47.232-66.176-62.976-7.893-4.181-16.469-7.552-25.771-9.899-22.869-5.717-46.037 8.192-51.755 31.061s8.192 46.037 31.061 51.755c3.157 0.981 6.613 2.56 6.613 2.56 10.752 5.675 20.779 17.237 38.997 40.363 15.616 19.797 36.523 46.848 66.261 67.371 14.165 9.771 30.336 18.176 49.024 24.064 43.307 13.696 95.403 12.629 160.427-6.912 22.571-6.784 35.371-30.549 28.587-53.12s-30.549-35.371-53.12-28.587zM725.333 938.667v-161.792c2.219-29.184-2.389-57.301-12.459-82.859 33.152-7.296 66.688-18.219 98.005-35.115 88.875-47.957 149.163-138.325 149.163-295.381 0-64.128-22.016-123.179-58.837-169.856 15.147-57.387 9.643-116.309-12.501-167.808-5.205-12.075-15.317-20.565-27.051-24.064-15.232-4.523-73.899-13.184-186.581 58.112-96.981-23.083-194.432-21.717-283.563-0.085-112.597-71.211-171.221-62.549-186.453-58.027-12.629 3.755-22.229 12.8-27.093 24.107-23.637 55.125-26.624 114.005-12.459 167.765-39.68 50.261-59.179 110.976-58.837 171.392 0 154.539 59.264 244.181 146.816 292.651 32.085 17.749 66.56 29.227 100.565 36.992-7.893 19.968-12.203 41.003-12.971 62.123-0.213 6.016-0.128 12.075 0.213 18.091l0.043 163.755c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-165.12c0-0.896-0.043-1.92-0.085-2.944-0.256-3.584-0.299-7.168-0.171-10.752 0.853-24.235 10.283-48.043 28.373-66.731 6.187-6.357 10.496-14.805 11.691-24.405 2.901-23.381-13.696-44.715-37.077-47.616-14.507-1.792-28.885-4.011-42.923-6.784-33.707-6.656-64.768-16.427-91.605-31.275-55.68-30.848-102.016-88.363-102.827-215.125 0.555-52.949 17.877-98.944 52.224-135.040 10.965-11.648 14.933-28.629 9.045-44.373-11.947-31.915-14.549-67.413-5.973-102.059 20.949 4.565 57.771 17.749 112.939 54.699 10.027 6.699 22.741 9.131 35.2 5.675 85.205-23.765 180.992-25.685 276.053 0.085 11.563 3.115 24.277 1.408 34.901-5.76 55.168-36.949 91.989-50.133 112.939-54.699 8.064 32.683 6.699 68.053-6.016 102.059-5.504 15.019-2.475 32.213 9.088 44.373 32.341 33.92 52.224 79.872 52.224 130.56 0 131.2-47.531 189.653-104.32 220.288-26.581 14.336-57.301 23.68-90.581 29.867-13.739 2.56-27.776 4.523-41.941 6.101-8.96 0.981-17.835 4.864-24.917 11.733-16.939 16.384-17.408 43.392-1.024 60.331 2.859 2.987 5.547 6.101 8.021 9.387 14.507 19.157 22.229 43.307 20.224 68.992 0 1.024-0.043 2.176-0.128 3.328v165.205c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "github" + ], + "grid": 24 + }, + { + "id": 119, + "paths": [ + "M991.488 648.491c11.136-7.253 21.035-19.029 27.093-32.597 7.339-16.427 9.131-35.456 3.2-55.68l-54.016-159.957-103.765-319.317c-2.901-9.771-8.32-18.901-16.939-27.179-11.349-10.325-25.728-15.659-40.149-15.872-14.976-0.213-30.165 5.077-41.643 15.573-7.040 6.272-12.629 14.251-16.128 23.339-0.256 0.64-0.512 1.408-0.768 2.219l-94.592 290.901h-283.605l-94.165-288.981c-2.901-9.771-8.32-18.901-16.939-27.179-11.307-10.325-25.685-15.659-40.107-15.872-14.976-0.256-30.165 5.035-41.643 15.573-7.083 6.229-12.629 14.251-16.171 23.296-0.256 0.683-0.512 1.451-0.768 2.219l-104.149 320.512-52.053 161.28c-4.523 14.037-4.992 28.843-1.621 42.837 4.181 17.365 14.336 33.408 29.952 44.885l454.4 330.24c14.763 10.581 34.901 11.093 50.176 0zM938.795 581.291l-426.795 310.187-425.941-309.547 51.413-156.245 80.469-247.68 80.683 247.808c5.845 17.92 22.4 29.312 40.576 29.44h345.6c18.859 0 34.859-12.245 40.576-29.483l80.469-247.637 80.725 248.491z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "gitlab" + ], + "grid": 24 + }, + { + "id": 120, + "paths": [ + "M723.243 469.333c-9.131-114.773-47.019-228.395-114.091-328.96 66.987 17.451 126.848 52.565 174.379 100.096 60.075 60.075 100.309 139.861 110.123 228.864zM609.237 883.584c63.275-94.976 103.979-207.061 113.877-328.917h170.539c-9.813 89.003-50.048 168.789-110.123 228.864-47.488 47.488-107.349 82.603-174.293 100.053zM300.757 554.667c9.131 114.773 47.019 228.395 114.091 328.96-66.987-17.451-126.848-52.565-174.379-100.096-60.075-60.075-100.309-139.861-110.123-228.864zM414.763 140.416c-63.232 94.976-103.936 207.061-113.877 328.917h-170.539c9.813-89.003 50.048-168.789 110.123-228.864 47.531-47.488 107.349-82.603 174.293-100.053zM512.171 42.667c0 0 0 0 0 0-129.877 0.043-247.211 52.608-332.032 137.472-84.907 84.864-137.472 202.283-137.472 331.861s52.565 246.997 137.472 331.861c84.821 84.864 202.155 137.429 331.691 137.472 0 0 0 0 0 0 129.877-0.043 247.168-52.608 332.032-137.472 84.907-84.864 137.472-202.283 137.472-331.861s-52.565-246.997-137.472-331.861c-84.821-84.864-202.155-137.429-331.691-137.472zM637.696 554.667c-10.752 118.955-56.149 228.693-125.653 317.909-73.771-94.763-115.456-205.568-125.653-317.909zM511.957 151.424c73.771 94.763 115.456 205.568 125.653 317.909h-251.307c10.752-118.955 56.149-228.693 125.653-317.909z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "globe" + ], + "grid": 24 + }, + { + "id": 121, + "paths": [ + "M128 85.333c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667h298.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667zM170.667 170.667h213.333v213.333h-213.333zM597.333 85.333c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667h298.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667zM640 170.667h213.333v213.333h-213.333zM597.333 554.667c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667h298.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667zM640 640h213.333v213.333h-213.333zM128 554.667c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667h298.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667zM170.667 640h213.333v213.333h-213.333z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "grid" + ], + "grid": 24 + }, + { + "id": 122, + "paths": [ + "M896 554.667v213.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-213.333zM270.677 237.141c2.816-5.589 6.827-10.496 11.605-14.379 7.339-5.931 16.512-9.429 26.624-9.429h405.888c6.4 0.043 12.587 1.451 18.176 4.011 8.576 3.925 15.787 10.624 20.352 19.797l116.267 232.192h-715.179zM194.389 198.912l-146.816 293.205c-1.323 2.517-2.389 5.163-3.2 7.979-1.195 4.011-1.749 8.021-1.707 11.904v256c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-256c0-6.443-1.408-12.501-3.883-17.792-0.213-0.427-0.427-0.896-0.64-1.323l-0.384-0.768-146.816-293.205c-13.44-27.051-35.371-47.403-61.141-59.179-16.555-7.552-34.645-11.605-53.077-11.733h-406.485c-30.336 0-58.325 10.624-80.341 28.459-14.123 11.435-25.813 25.856-34.176 42.453zM256 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM426.667 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "hard-drive" + ], + "grid": 24 + }, + { + "id": 123, + "paths": [ + "M606.549 426.667l-18.944 170.667h-170.155l18.944-170.667zM640.256 123.307l-24.235 218.027h-170.155l23.168-208.64c2.603-23.424-14.293-44.501-37.675-47.104s-44.501 14.293-47.104 37.717l-24.235 218.027h-189.355c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h179.883l-18.944 170.667h-160.939c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h151.424l-23.168 208.64c-2.603 23.424 14.293 44.501 37.675 47.104s44.501-14.293 47.104-37.675l24.277-218.069h170.155l-23.168 208.64c-2.603 23.424 14.293 44.501 37.675 47.104s44.501-14.293 47.104-37.675l24.235-218.069h189.355c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-179.883l18.944-170.667h160.939c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-151.424l23.168-208.64c2.603-23.424-14.293-44.501-37.675-47.104s-44.501 14.293-47.104 37.675z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "hash" + ], + "grid": 24 + }, + { + "id": 124, + "paths": [ + "M853.333 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h85.333v128zM170.667 810.667v-170.667h85.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v128c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165zM85.333 810.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h42.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-128c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-85.333v-42.667c0-94.251 38.144-179.541 99.968-241.365s147.115-99.968 241.365-99.968 179.541 38.144 241.365 99.968 99.968 147.115 99.968 241.365v42.667h-85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v128c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h42.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-117.803-47.787-224.555-124.971-301.696s-183.893-124.971-301.696-124.971-224.555 47.787-301.696 124.971-124.971 183.893-124.971 301.696v256z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "headphones" + ], + "grid": 24 + }, + { + "id": 125, + "paths": [ + "M859.008 226.859c37.547 37.589 56.277 86.656 56.277 135.851s-18.773 98.261-56.277 135.765l-347.008 347.008-347.008-347.008c-37.504-37.504-56.235-86.571-56.235-135.808s18.731-98.304 56.235-135.808 86.571-56.235 135.808-56.235 98.304 18.731 135.808 56.235l45.227 45.227c16.683 16.683 43.691 16.683 60.331 0l45.312-45.312c37.504-37.504 86.571-56.235 135.765-56.192s98.261 18.773 135.765 56.277zM919.339 166.528c-54.144-54.144-125.184-81.237-196.096-81.28s-141.952 27.051-196.139 81.195l-15.104 15.147-15.061-15.061c-54.144-54.144-125.227-81.237-196.139-81.237s-141.995 27.093-196.139 81.237-81.237 125.227-81.237 196.139 27.093 141.995 81.237 196.139l377.173 377.173c16.683 16.683 43.691 16.683 60.331 0l377.173-377.173c54.144-54.144 81.237-125.184 81.28-196.096s-27.051-141.952-81.28-196.181z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "heart" + ], + "grid": 24 + }, + { + "id": 126, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM428.075 398.165c7.808-22.229 23.851-39.168 43.605-48.64s42.965-11.392 65.195-3.541c19.541 6.869 34.944 20.053 44.8 36.651 7.808 13.099 12.117 28.373 12.203 44.245 0 6.613-1.664 13.184-4.992 19.797-3.413 6.827-8.661 13.867-15.701 20.907-30.251 30.251-78.123 46.592-78.123 46.592-22.357 7.467-34.432 31.616-26.965 53.973s31.616 34.432 53.973 26.965c0 0 65.877-21.589 111.488-67.2 11.904-11.904 23.253-26.197 31.701-43.093 8.533-17.067 13.995-36.608 13.995-58.411-0.171-31.189-8.704-61.312-24.192-87.424-19.755-33.195-50.773-59.819-89.813-73.557-44.459-15.616-91.093-11.733-130.432 7.125s-71.595 52.821-87.211 97.28c-7.851 22.229 3.84 46.592 26.069 54.4s46.592-3.883 54.4-26.069zM512 768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "help-circle" + ], + "grid": 24 + }, + { + "id": 127, + "paths": [ + "M853.333 682.667c-0.043 5.163-1.067 10.496-2.987 15.445-3.413 8.789-9.6 16.384-18.176 21.333l-298.624 170.624c-4.779 2.731-9.899 4.48-15.147 5.291-9.301 1.451-18.987-0.128-27.904-5.291l-298.283-170.453c-4.736-2.773-8.832-6.315-12.16-10.453-5.931-7.296-9.387-16.427-9.387-26.496v-341.035c0.043-5.461 1.067-10.795 2.987-15.744 3.413-8.789 9.6-16.384 18.176-21.333l298.624-170.624c4.779-2.731 9.899-4.48 15.147-5.291 9.301-1.451 18.987 0.128 27.904 5.291l298.283 170.453c4.736 2.773 8.832 6.315 12.16 10.453 5.931 7.296 9.387 16.427 9.387 26.496zM938.667 682.667v-341.333c-0.043-30.293-10.581-58.155-28.331-80.128-9.813-12.203-21.845-22.528-35.456-30.507l-299.051-170.88c-26.027-15.019-55.467-19.84-83.371-15.531-15.488 2.432-30.507 7.637-44.245 15.488l-298.709 170.709c-26.368 15.232-45.227 38.272-55.424 64.597-5.675 14.592-8.619 30.165-8.747 45.952v341.632c0.043 30.293 10.581 58.155 28.331 80.128 9.813 12.203 21.845 22.528 35.456 30.507l299.051 170.88c26.027 15.019 55.467 19.84 83.371 15.531 15.488-2.432 30.507-7.637 44.245-15.488l298.709-170.709c26.368-15.232 45.227-38.272 55.424-64.597 5.675-14.592 8.619-30.165 8.747-46.251z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "hexagon" + ], + "grid": 24 + }, + { + "id": 128, + "paths": [ + "M101.803 350.336c-10.069 7.851-16.469 20.011-16.469 33.664v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-469.333c-0.043-12.8-5.717-25.301-16.469-33.664l-384-298.667c-15.275-11.733-36.736-12.16-52.395 0zM682.667 896v-384c0-23.552-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667v384h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-448.469l341.333-265.472 341.333 265.472v448.469c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501zM426.667 896v-341.333h170.667v341.333z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "home" + ], + "grid": 24 + }, + { + "id": 129, + "paths": [ + "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM469.333 362.667c0-29.44-11.989-56.149-31.232-75.435s-45.995-31.232-75.435-31.232-56.149 11.989-75.435 31.232-31.232 45.995-31.232 75.435 11.989 56.149 31.232 75.435 45.995 31.232 75.435 31.232 56.149-11.989 75.435-31.232 31.232-45.995 31.232-75.435zM384 362.667c0 5.888-2.347 11.179-6.229 15.104s-9.216 6.229-15.104 6.229-11.179-2.347-15.104-6.229-6.229-9.216-6.229-15.104 2.347-11.179 6.229-15.104 9.216-6.229 15.104-6.229 11.179 2.347 15.104 6.229 6.229 9.216 6.229 15.104zM316.331 853.333l366.336-366.336 170.667 170.667v153.003c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501zM853.333 537.003l-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0l-454.144 454.144c-5.76-2.133-10.88-5.504-15.189-9.813-7.765-7.765-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "image" + ], + "grid": 24 + }, + { + "id": 130, + "paths": [ + "M896 554.667v213.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-213.333h190.507l72.661 109.013c7.765 11.52 20.736 18.987 35.499 18.987h170.667c13.909-0.085 27.307-6.741 35.499-18.987l72.661-109.013zM270.677 237.141c2.816-5.589 6.827-10.496 11.605-14.379 7.339-5.931 16.512-9.429 26.624-9.429h405.888c6.4 0.043 12.587 1.451 18.176 4.011 8.576 3.925 15.787 10.624 20.352 19.797l116.267 232.192h-186.923c-14.763 0-27.733 7.467-35.499 18.987l-72.661 109.013h-125.013l-72.661-109.013c-8.192-12.245-21.589-18.901-35.499-18.987h-186.923zM194.389 198.912l-146.816 293.205c-1.323 2.517-2.389 5.163-3.2 7.979-1.195 4.011-1.749 8.021-1.707 11.904v256c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-256c0-6.443-1.408-12.501-3.883-17.792-0.213-0.427-0.427-0.896-0.64-1.323l-0.384-0.768-146.816-293.205c-13.44-27.051-35.371-47.403-61.141-59.179-16.555-7.552-34.645-11.605-53.077-11.733h-406.485c-30.336 0-58.325 10.624-80.341 28.459-14.123 11.435-25.813 25.856-34.176 42.453z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "inbox" + ], + "grid": 24 + }, + { + "id": 131, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM554.667 682.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM512 384c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "info" + ], + "grid": 24 + }, + { + "id": 132, + "paths": [ + "M298.667 42.667c-70.699 0-134.741 28.715-181.035 74.965s-74.965 110.336-74.965 181.035v426.667c0 70.699 28.715 134.741 74.965 181.035s110.336 74.965 181.035 74.965h426.667c70.699 0 134.741-28.715 181.035-74.965s74.965-110.336 74.965-181.035v-426.667c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965zM298.667 128h426.667c47.147 0 89.728 19.072 120.661 50.005s50.005 73.515 50.005 120.661v426.667c0 47.147-19.072 89.728-50.005 120.661s-73.515 50.005-120.661 50.005h-426.667c-47.147 0-89.728-19.072-120.661-50.005s-50.005-73.515-50.005-120.661v-426.667c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005zM724.864 478.848c-6.4-41.472-24.363-79.232-50.944-109.525-32.171-36.736-76.971-62.507-128.384-70.144-19.797-3.157-41.387-3.285-63.019-0.085-58.283 8.619-107.563 40.149-140.032 83.925s-48.341 100.139-39.68 158.379 40.149 107.563 83.925 140.032 100.139 48.341 158.379 39.68 107.563-40.149 140.032-83.925 48.341-100.139 39.68-158.379zM640.469 491.392c5.205 34.987-4.267 68.651-23.808 95.019s-49.067 45.184-84.011 50.347-68.651-4.267-95.019-23.808-45.184-49.067-50.347-84.011 4.267-68.651 23.808-95.019 49.067-45.184 84.011-50.347c13.355-1.963 26.24-1.792 37.12-0.085 31.573 4.693 58.283 20.053 77.568 42.069 16 18.261 26.88 41.088 30.72 65.835zM746.667 320c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "instagram" + ], + "grid": 24 + }, + { + "id": 133, + "paths": [ + "M578.432 213.333l-224 597.333h-141.099c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h384c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-151.765l224-597.333h141.099c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-384c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "italic" + ], + "grid": 24 + }, + { + "id": 134, + "paths": [ + "M865.835 55.168l-85.333 85.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l85.333-85.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0zM515.925 464.981c-53.845-53.077-124.075-79.744-194.261-79.915-70.485-0.128-141.141 26.453-195.328 79.915-54.485 53.76-82.048 124.629-82.56 195.541s26.197 142.165 79.957 196.651c57.173 56.448 128.384 83.029 199.296 82.56s141.781-28.032 195.541-82.56 80.384-125.739 79.915-196.651-28.032-141.781-82.56-195.541zM456.021 525.739c37.76 37.248 56.832 86.187 57.131 135.381s-18.091 98.389-55.339 136.149-86.187 56.832-135.381 57.131-98.389-18.091-136.149-55.339c-39.083-39.552-57.472-88.747-57.131-137.941s19.413-98.133 57.131-135.381c37.504-36.992 86.315-55.424 135.211-55.296 48.683 0.085 97.237 18.56 134.485 55.296zM516.139 525.525l175.36-175.36c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-175.36 175.36c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM631.168 350.165l128 128c16.683 16.683 43.691 16.683 60.331 0l149.333-149.333c16.683-16.683 16.683-43.691 0-60.331l-128-128c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835-89.003 89.003-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM691.499 350.165l149.333-149.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-149.333 149.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "key" + ], + "grid": 24 + }, + { + "id": 135, + "paths": [ + "M512 133.035l331.264 165.632-331.264 165.632-331.264-165.632zM492.928 47.189l-426.667 213.333c-21.077 10.539-29.611 36.139-19.072 57.216 4.309 8.661 11.136 15.189 19.072 19.072l426.667 213.333c12.459 6.229 26.453 5.803 38.144 0l426.667-213.333c21.077-10.539 29.611-36.181 19.072-57.259-4.309-8.619-11.179-15.147-19.072-19.072l-426.667-213.333c-12.459-6.229-26.453-5.803-38.144 0zM66.261 763.477l426.667 213.333c12.459 6.229 26.453 5.803 38.144 0l426.667-213.333c21.077-10.539 29.611-36.181 19.072-57.259s-36.181-29.611-57.259-19.072l-407.552 203.819-407.595-203.776c-21.077-10.539-46.72-2.005-57.259 19.072s-2.005 46.72 19.072 57.259zM66.261 550.144l426.667 213.333c12.459 6.229 26.453 5.803 38.144 0l426.667-213.333c21.077-10.539 29.611-36.181 19.072-57.259s-36.181-29.611-57.259-19.072l-407.552 203.819-407.595-203.776c-21.077-10.539-46.72-2.005-57.259 19.072s-2.005 46.72 19.072 57.259z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "layers" + ], + "grid": 24 + }, + { + "id": 136, + "paths": [ + "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM853.333 341.333h-682.667v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM341.333 426.667v426.667h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-384zM426.667 853.333v-426.667h426.667v384c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "layout" + ], + "grid": 24 + }, + { + "id": 137, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM640 512c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM751.701 211.968l-122.027 122.027c0 0 0 0 0 0-33.749-22.315-74.197-35.328-117.675-35.328s-83.925 13.013-117.632 35.371l-122.027-122.027c65.664-52.608 148.992-84.011 239.659-84.011s173.995 31.403 239.701 83.968zM812.032 272.299c52.565 65.707 83.968 149.035 83.968 239.701s-31.403 173.995-83.968 239.701l-122.027-122.027c22.315-33.749 35.328-74.197 35.328-117.675s-13.013-83.925-35.371-117.632zM334.037 629.632l-122.027 122.027c-52.608-65.664-84.011-148.992-84.011-239.659s31.403-173.995 83.968-239.701l122.027 122.027c-22.315 33.749-35.328 74.197-35.328 117.675s13.013 83.925 35.371 117.632zM272.299 812.032l122.027-122.027c33.749 22.315 74.197 35.328 117.675 35.328s83.925-13.013 117.632-35.371l122.027 122.027c-65.664 52.608-148.992 84.011-239.659 84.011s-173.995-31.403-239.701-83.968z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "life-buoy" + ], + "grid": 24 + }, + { + "id": 138, + "paths": [ + "M392.491 580.224c42.325 56.619 103.68 90.709 168.448 100.053s133.248-6.059 189.867-48.384c10.197-7.637 19.84-16 27.947-24.235l127.787-127.787c49.621-51.371 73.472-117.376 72.363-182.827s-27.264-130.603-78.123-179.669c-50.005-48.299-114.688-72.192-179.157-71.808-63.659 0.341-127.317 24.363-176.512 71.808l-73.856 73.429c-16.725 16.597-16.811 43.648-0.171 60.331s43.648 16.811 60.331 0.171l72.917-72.491c32.853-31.659 75.221-47.659 117.76-47.915 43.051-0.256 86.016 15.659 119.381 47.872 33.92 32.768 51.328 76.075 52.096 119.808s-15.147 87.637-47.36 121.003l-128.213 128.213c-4.864 4.949-11.221 10.539-18.261 15.787-37.76 28.245-83.285 38.485-126.592 32.256s-84.096-28.928-112.299-66.688c-14.123-18.859-40.832-22.741-59.733-8.619s-22.741 40.832-8.619 59.733zM631.509 443.776c-42.325-56.619-103.68-90.709-168.448-100.053s-133.291 6.059-189.909 48.384c-10.197 7.637-19.797 16-27.947 24.235l-127.787 127.787c-49.621 51.371-73.472 117.376-72.363 182.827s27.264 130.603 78.123 179.669c50.005 48.299 114.688 72.192 179.157 71.808 63.659-0.341 127.317-24.363 176.512-71.808l73.515-73.515c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-72.363 72.448c-32.853 31.659-75.221 47.659-117.76 47.915-43.051 0.256-86.016-15.659-119.381-47.872-33.92-32.768-51.328-76.075-52.096-119.808s15.147-87.637 47.36-121.003l128.213-128.213c4.864-4.949 11.221-10.539 18.261-15.787 37.76-28.245 83.285-38.485 126.592-32.256s84.096 28.928 112.299 66.688c14.123 18.859 40.832 22.741 59.733 8.619s22.741-40.832 8.619-59.733z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "link" + ], + "grid": 24 + }, + { + "id": 139, + "paths": [ + "M640 341.333h128c47.147 0 89.728 19.072 120.661 50.005s50.005 73.515 50.005 120.661-19.072 89.728-50.005 120.661-73.515 50.005-120.661 50.005h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h128c70.699 0 134.741-28.715 181.035-74.965s74.965-110.336 74.965-181.035-28.715-134.741-74.965-181.035-110.336-74.965-181.035-74.965h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM384 682.667h-128c-47.147 0-89.728-19.072-120.661-50.005s-50.005-73.515-50.005-120.661 19.072-89.728 50.005-120.661 73.515-50.005 120.661-50.005h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128c-70.699 0-134.741 28.715-181.035 74.965s-74.965 110.336-74.965 181.035 28.715 134.741 74.965 181.035 110.336 74.965 181.035 74.965h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM341.333 554.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "link-2" + ], + "grid": 24 + }, + { + "id": 140, + "paths": [ + "M682.667 298.667c-82.475 0-157.184 33.493-211.2 87.467s-87.467 128.725-87.467 211.2v298.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165v298.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-82.475-33.493-157.184-87.467-211.2s-128.725-87.467-211.2-87.467zM682.667 384c58.923 0 112.213 23.851 150.869 62.464s62.464 91.947 62.464 150.869v256h-85.333v-256c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496v256h-85.333v-256c0-58.923 23.851-112.213 62.464-150.869s91.947-62.464 150.869-62.464zM85.333 341.333c-23.552 0-42.667 19.115-42.667 42.667v512c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-512c0-23.552-19.115-42.667-42.667-42.667zM128 426.667h85.333v426.667h-85.333zM298.667 170.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496 14.379 67.413 37.504 90.496 55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496zM213.333 170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165 4.736-22.4 12.501-30.165 18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "linkedin" + ], + "grid": 24 + }, + { + "id": 141, + "paths": [ + "M341.333 298.667h554.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-554.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM341.333 554.667h554.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-554.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM341.333 810.667h554.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-554.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM128 554.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM128 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "list" + ], + "grid": 24 + }, + { + "id": 142, + "paths": [ + "M469.333 85.333v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 768v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM180.181 240.512l120.747 120.747c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-120.747-120.747c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM662.741 723.072l120.747 120.747c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-120.747-120.747c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM85.333 554.667h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM768 554.667h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM240.512 843.819l120.747-120.747c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-120.747 120.747c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM723.072 361.259l120.747-120.747c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-120.747 120.747c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "loader" + ], + "grid": 24 + }, + { + "id": 143, + "paths": [ + "M213.333 512h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-298.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM768 426.667v-128c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965-134.741 28.715-181.035 74.965-74.965 110.336-74.965 181.035v128h-42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v298.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM341.333 426.667v-128c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005 89.728 19.072 120.661 50.005 50.005 73.515 50.005 120.661v128z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "lock" + ], + "grid": 24 + }, + { + "id": 144, + "paths": [ + "M640 170.667h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h170.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM537.003 469.333h-409.003c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h409.003l-140.501 140.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l213.333-213.333c4.096-4.096 7.168-8.789 9.259-13.824s3.243-10.539 3.243-16.341c0-5.547-1.067-11.136-3.243-16.341-2.091-5.035-5.163-9.728-9.259-13.824l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "log-in" + ], + "grid": 24 + }, + { + "id": 145, + "paths": [ + "M384 853.333h-170.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM793.003 469.333h-409.003c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h409.003l-140.501 140.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l213.333-213.333c3.925-3.925 7.083-8.619 9.259-13.824 6.4-15.445 3.328-33.92-9.259-46.507l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "log-out" + ], + "grid": 24 + }, + { + "id": 146, + "paths": [ + "M128 337.963l359.552 251.691c14.507 10.027 33.92 10.496 48.939 0l359.509-251.691v430.037c0 11.605-4.693 22.229-12.587 30.080s-18.475 12.587-30.080 12.587h-682.667c-11.605 0-22.229-4.693-30.080-12.587s-12.587-18.475-12.587-30.080zM42.667 255.275c0 0.427 0 0.853 0 1.28v511.445c0 35.328 14.507 67.371 37.547 90.453s55.125 37.547 90.453 37.547h682.667c35.328 0 67.371-14.507 90.453-37.547s37.547-55.125 37.547-90.453v-511.488c0-0.427 0-0.853 0-1.28-0.213-35.029-14.635-66.773-37.547-89.685-23.083-23.040-55.125-37.547-90.453-37.547h-682.667c-35.328 0-67.371 14.507-90.453 37.547-22.912 22.912-37.333 54.656-37.547 89.728zM891.477 236.971l-379.477 265.6-379.477-265.6c2.048-4.096 4.779-7.808 8.021-11.051 7.893-7.893 18.517-12.587 30.123-12.587h682.667c11.605 0 22.229 4.693 30.080 12.587 3.243 3.243 5.973 6.997 8.021 11.051z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "mail" + ], + "grid": 24 + }, + { + "id": 147, + "paths": [ + "M298.667 158.848v584.405l-213.333 121.899v-584.405zM725.333 865.152v-584.405l213.333-121.899v584.363zM662.827 976.427c3.499 1.835 7.253 3.2 11.221 4.011 1.408 0.299 2.859 0.512 4.309 0.64s2.901 0.213 4.352 0.213c-0.043 0.043-0.043 0.043-0.043 0.043s0 0 0.043 0c7.381 0 14.677-1.963 21.163-5.632l0.64-0.384 298.027-170.283c13.653-7.808 21.376-22.101 21.461-37.035v-682.667c0-23.552-19.115-42.667-42.667-42.667-7.808 0-15.104 2.091-21.163 5.632l-278.827 159.317-320.128-160.085c-3.541-1.792-7.296-3.2-11.264-4.011-1.451-0.299-2.859-0.512-4.309-0.64s-2.901-0.213-4.352-0.213c0.043 0 0.043 0 0.043 0s0 0-0.043 0c-7.381 0-14.677 1.963-21.12 5.632l-0.64 0.341-298.027 170.325c-13.696 7.808-21.419 22.101-21.504 37.035v682.667c0 23.552 19.115 42.667 42.667 42.667 7.808 0 15.104-2.091 21.163-5.632l278.827-159.317zM640 282.368v587.264l-256-128v-587.264z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "map" + ], + "grid": 24 + }, + { + "id": 148, + "paths": [ + "M938.667 426.667c0-117.803-47.787-224.555-124.971-301.696s-183.893-124.971-301.696-124.971-224.555 47.787-301.696 124.971-124.971 183.893-124.971 301.696c0 24.277 2.261 48.128 6.4 71.509 11.691 66.048 38.357 128.171 71.765 184.32 116.565 195.883 324.821 334.336 324.821 334.336 14.123 9.259 32.64 9.771 47.317 0 0 0 208.299-138.453 324.821-334.336 33.408-56.149 60.075-118.272 71.765-184.32 4.181-23.381 6.443-47.232 6.443-71.509zM853.333 426.667c0 18.944-1.749 37.845-5.077 56.661-9.429 53.333-31.445 105.728-61.099 155.563-81.579 137.131-214.869 245.205-271.744 287.573-59.648-39.083-195.755-148.352-278.613-287.573-29.653-49.835-51.669-102.229-61.099-155.563-3.285-18.816-5.035-37.717-5.035-56.661 0-94.251 38.144-179.541 99.968-241.365s147.115-99.968 241.365-99.968 179.541 38.144 241.365 99.968 99.968 147.115 99.968 241.365zM682.667 426.667c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 426.667c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "map-pin" + ], + "grid": 24 + }, + { + "id": 149, + "paths": [ + "M341.333 85.333h-128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM938.667 341.333v-128c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h128c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM682.667 938.667h128c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM85.333 682.667v128c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "maximize" + ], + "grid": 24 + }, + { + "id": 150, + "paths": [ + "M793.003 170.667l-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l225.835-225.835v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM230.997 853.333l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.835 225.835v-153.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "maximize-2" + ], + "grid": 24 + }, + { + "id": 151, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM341.333 682.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM384 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM640 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "meh" + ], + "grid": 24 + }, + { + "id": 152, + "paths": [ + "M128 554.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 298.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 810.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "menu" + ], + "grid": 24 + }, + { + "id": 153, + "paths": [ + "M938.667 490.539v-21.205c0-0.725-0.043-1.621-0.085-2.475-5.803-99.755-47.488-190.336-112.725-258.176-68.352-71.125-162.731-117.419-268.843-123.264-0.683-0.043-1.536-0.085-2.347-0.085h-20.864c-59.947-0.683-122.965 13.227-181.931 43.008-52.181 26.496-97.749 63.488-133.931 108.16-56.405 69.717-89.899 158.080-89.941 253.696-0.597 54.4 10.795 111.36 35.157 165.419l-75.605 226.859c-2.816 8.363-3.072 17.835 0 26.965 7.467 22.357 31.616 34.432 53.973 26.965l226.731-75.563c49.493 22.485 105.984 35.243 165.376 35.115 58.539-0.384 115.797-13.141 168.149-36.949 81.579-37.163 151.040-101.248 193.749-186.667 27.477-53.291 43.307-115.84 43.136-181.803zM853.333 490.795c0.128 52.267-12.459 101.333-33.664 142.464-34.176 68.352-88.832 118.827-153.259 148.139-41.387 18.859-86.827 28.971-133.376 29.269-52.096 0.128-101.163-12.459-142.293-33.664-10.624-5.504-22.528-6.059-33.067-2.56l-162.261 54.101 54.101-162.261c3.755-11.221 2.56-22.912-2.389-32.725-23.552-46.677-34.304-96.171-33.792-142.421 0.043-76.331 26.411-145.92 70.955-200.917 28.629-35.371 64.768-64.725 106.24-85.76 46.592-23.552 96.085-34.304 142.336-33.792h19.456c83.712 4.565 158.037 41.003 212.011 97.152 51.285 53.376 84.139 124.416 89.003 202.795z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "message-circle" + ], + "grid": 24 + }, + { + "id": 154, + "paths": [ + "M938.667 640v-426.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-597.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 10.923 4.181 21.845 12.501 30.165 16.683 16.683 43.691 16.683 60.331 0l158.165-158.165h494.336c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM853.333 640c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.443 4.779-30.165 12.501l-97.835 97.835v-579.669c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "message-square" + ], + "grid": 24 + }, + { + "id": 155, + "paths": [ + "M512 85.333c23.595 0 44.843 9.515 60.331 25.003s25.003 36.736 25.003 60.331v341.333c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331v-341.333c0-23.595 9.515-44.843 25.003-60.331s36.736-25.003 60.331-25.003zM512 0c-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661v341.333c0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661v-341.333c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005zM341.333 1024h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-87.979c77.184-9.643 146.432-45.056 198.699-97.323 61.696-61.739 99.968-147.115 99.968-241.365v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333c0 70.699-28.587 134.656-74.965 181.035s-110.336 74.965-181.035 74.965-134.656-28.587-181.035-74.965-74.965-110.336-74.965-181.035v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333c0 94.251 38.272 179.627 99.968 241.365 52.267 52.267 121.472 87.68 198.699 97.323v87.979h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "mic" + ], + "grid": 24 + }, + { + "id": 156, + "paths": [ + "M534.016 594.347c-6.997 1.877-14.336 2.859-21.931 2.859-23.68-0.043-44.928-9.515-60.373-24.96-15.488-15.445-25.045-36.693-25.045-60.245v-25.003zM682.667 398.507v-227.84c0.043-47.061-19.072-89.813-49.877-120.704s-73.515-50.048-120.619-50.091c-43.264-0.043-82.901 16.085-113.024 42.752-27.136 24.021-46.592 56.619-54.357 93.739-4.821 23.083 9.984 45.653 33.067 50.475s45.653-9.984 50.475-33.067c3.925-18.773 13.739-35.2 27.349-47.275 14.933-13.227 34.389-21.205 55.808-21.291 24.363 0.128 45.483 9.643 60.885 25.045 15.488 15.531 25.003 36.779 24.96 60.416v227.84c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM768 426.667v85.333c0 16.043-1.493 31.573-3.968 44.587-4.352 23.168 10.88 45.483 34.048 49.835s45.483-10.88 49.835-34.048c3.499-18.517 5.419-39.339 5.419-60.373v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM341.333 1024h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-86.357c61.696-8.064 119.083-31.232 167.851-69.419l228.651 228.651c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-249.088-249.088c-1.92-3.371-4.309-6.528-7.211-9.344-2.688-2.645-5.632-4.821-8.747-6.613l-673.621-673.664c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l328.832 328.832v110.336c0.043 47.147 19.243 89.856 50.091 120.661s73.6 49.92 120.704 49.877c31.531-0.043 61.141-8.619 86.485-23.595l63.019 63.019c-40.917 29.568-88.661 45.568-137.045 47.915-4.011-1.237-8.235-1.877-12.587-1.877-4.395 0-8.576 0.64-12.587 1.877-60.459-2.944-119.979-27.179-166.613-72.832-49.195-48.171-74.795-111.275-76.715-175.189-0.085-4.779-0.085-9.557-0.085-9.557v-85.632c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.035c0 6.357 0.128 12.715 0.128 12.715 2.56 85.077 36.736 169.344 102.315 233.6 55.424 54.315 124.757 85.888 196.224 94.848v85.803h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "mic-off" + ], + "grid": 24 + }, + { + "id": 157, + "paths": [ + "M298.667 128v128c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h128c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM896 298.667h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM725.333 896v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM128 725.333h128c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "minimize" + ], + "grid": 24 + }, + { + "id": 158, + "paths": [ + "M700.331 384l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.835 225.835v-153.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 5.803 1.152 11.307 3.243 16.341s5.163 9.728 9.216 13.781c0.043 0.043 0.043 0.043 0.085 0.085 3.925 3.925 8.619 7.083 13.781 9.216 5.035 2.091 10.539 3.243 16.341 3.243h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM158.165 926.165l225.835-225.835v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-4.096-4.053-8.789-7.125-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h153.003l-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "minimize-2" + ], + "grid": 24 + }, + { + "id": 159, + "paths": [ + "M213.333 554.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "minus" + ], + "grid": 24 + }, + { + "id": 160, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM341.333 554.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "minus-circle" + ], + "grid": 24 + }, + { + "id": 161, + "paths": [ + "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM341.333 554.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "minus-square" + ], + "grid": 24 + }, + { + "id": 162, + "paths": [ + "M512 682.667h-341.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501zM469.333 768v85.333h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-85.333h298.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-426.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-682.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "monitor" + ], + "grid": 24 + }, + { + "id": 163, + "paths": [ + "M938.496 549.632c0.939-9.941-1.621-20.309-8.021-29.056-13.867-19.029-40.576-23.211-59.605-9.344-40.533 29.568-87.893 46.336-136.021 49.579-58.368 3.925-117.973-12.075-168.533-49.408-56.875-42.027-91.264-103.040-100.992-167.893s5.291-133.291 47.317-190.123c6.059-8.149 9.216-18.56 8.149-29.483-2.261-23.467-23.125-40.619-46.592-38.315-96.341 9.387-184.064 50.347-251.52 113.109-74.069 68.907-123.819 164.139-133.845 272.469-10.837 117.291 26.923 227.968 96.683 311.936s171.605 141.355 288.939 152.192 227.968-26.923 311.936-96.683 141.355-171.605 152.192-288.939zM834.859 626.091c-20.907 58.155-56.96 108.501-103.083 146.816-67.243 55.851-155.648 86.016-249.515 77.355s-175.275-54.528-231.125-121.771-86.016-155.648-77.355-249.515c7.979-86.699 47.659-162.731 106.965-217.856 33.365-31.061 72.96-55.467 116.523-71.339-19.456 53.931-24.619 111.189-16.384 166.357 12.928 86.315 58.88 167.851 134.656 223.872 67.328 49.792 147.115 71.168 224.939 65.92 32.085-2.133 63.829-8.832 94.293-19.84z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "moon" + ], + "grid": 24 + }, + { + "id": 164, + "paths": [ + "M597.333 512c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM896 512c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM298.667 512c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "more-horizontal" + ], + "grid": 24 + }, + { + "id": 165, + "paths": [ + "M597.333 512c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM597.333 213.333c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM597.333 810.667c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "more-vertical" + ], + "grid": 24 + }, + { + "id": 166, + "paths": [ + "M207.232 207.232l524.117 218.368-208.341 70.741c-12.16 4.181-22.272 13.653-26.667 26.667l-70.741 208.341zM555.093 615.424l225.408 225.408c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-225.408-225.408 250.368-85.035c22.315-7.595 34.261-31.829 26.667-54.101-4.096-12.075-13.056-21.077-23.979-25.643l-724.053-301.653c-21.76-9.045-46.72 1.237-55.808 22.997-4.565 10.923-4.224 22.699 0 32.811l301.653 724.053c9.045 21.76 34.048 32.043 55.808 22.997 11.733-4.907 20.139-14.421 23.979-25.643z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "mouse-pointer" + ], + "grid": 24 + }, + { + "id": 167, + "paths": [ + "M469.333 188.331v281.003h-281.003l55.168-55.168c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-128 128c-7.723 7.723-12.501 18.389-12.501 30.165 0 5.803 1.152 11.307 3.243 16.341s5.163 9.728 9.259 13.824l128 128c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-55.168-55.168h281.003v281.003l-55.168-55.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l128 128c4.096 4.096 8.789 7.168 13.824 9.259s10.539 3.243 16.341 3.243c5.547 0 11.136-1.067 16.341-3.243 5.035-2.091 9.728-5.163 13.824-9.259l128-128c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-55.168 55.168v-281.003h281.003l-55.168 55.168c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l128-128c4.096-4.096 7.168-8.789 9.259-13.824 6.4-15.445 3.328-33.92-9.259-46.507l-128-128c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l55.168 55.168h-281.003v-281.003l55.168 55.168c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-128-128c-3.925-3.925-8.619-7.083-13.824-9.259-10.453-4.309-22.229-4.309-32.683 0-5.035 2.091-9.728 5.163-13.824 9.259l-128 128c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "move" + ], + "grid": 24 + }, + { + "id": 168, + "paths": [ + "M341.333 768c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM938.667 682.667v-554.667c0-2.133-0.171-4.565-0.597-6.997-3.883-23.253-25.856-38.955-49.109-35.072l-512 85.333c-20.309 3.456-35.627 20.992-35.627 42.069v406.827c-25.088-14.507-54.272-22.827-85.333-22.827-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661v-518.528l426.667-71.125v356.48c-25.088-14.507-54.272-22.827-85.333-22.827-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM853.333 682.667c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "music" + ], + "grid": 24 + }, + { + "id": 169, + "paths": [ + "M109.739 430.763c-11.179 5.333-19.925 15.36-23.125 28.203-5.717 22.869 8.192 46.037 31.061 51.755l316.501 79.104 79.104 316.501c3.029 11.989 11.136 22.528 23.125 28.203 21.291 10.069 46.72 0.981 56.832-20.309l384-810.667c5.291-11.221 5.675-24.533 0-36.523-10.069-21.291-35.541-30.379-56.832-20.309zM253.995 456.875l594.987-281.856-281.856 594.987-56.405-225.707c-3.925-15.744-16.128-27.221-31.061-31.061z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "navigation" + ], + "grid": 24 + }, + { + "id": 170, + "paths": [ + "M552.021 70.571c-4.224-11.349-13.099-20.821-25.301-25.301-22.101-8.149-46.635 3.157-54.784 25.301l-298.667 810.667c-4.181 11.477-3.499 24.576 2.987 35.925 11.691 20.48 37.76 27.563 58.197 15.872l277.547-158.549 277.504 158.549c10.624 6.016 23.637 7.509 35.925 2.987 22.101-8.149 33.451-32.683 25.301-54.784zM512 208.768l218.155 592.085-196.992-112.555c-13.525-7.723-29.483-7.253-42.325 0l-196.992 112.555z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "navigation-2" + ], + "grid": 24 + }, + { + "id": 171, + "paths": [ + "M335.36 42.667c-10.923 0-21.845 4.181-30.165 12.501l-250.027 250.027c-7.723 7.723-12.501 18.389-12.501 30.165v353.28c0 10.923 4.181 21.845 12.501 30.165l250.027 250.027c7.723 7.723 18.389 12.501 30.165 12.501h353.28c10.923 0 21.845-4.181 30.165-12.501l250.027-250.027c7.723-7.723 12.501-18.389 12.501-30.165v-353.28c0-10.923-4.181-21.845-12.501-30.165l-250.027-250.027c-7.723-7.723-18.389-12.501-30.165-12.501zM353.024 128h317.952l225.024 225.024v317.952l-225.024 225.024h-317.952l-225.024-225.024v-317.952z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "octagon" + ], + "grid": 24 + }, + { + "id": 172, + "paths": [ + "M618.965 401.28l-106.965 61.867-297.003-171.819 107.136-61.227zM809.003 291.328l-104.789 60.629-296.277-170.88 82.517-47.147c4.779-2.731 9.899-4.48 15.147-5.291 9.301-1.451 18.987 0.128 27.904 5.291zM491.776 979.669c6.016 3.243 12.928 5.077 20.224 5.077 7.381 0 14.336-1.877 20.395-5.163 15.189-2.475 29.909-7.68 43.392-15.36l298.709-170.709c26.368-15.232 45.227-38.272 55.424-64.597 5.675-14.592 8.619-30.165 8.747-46.251v-341.333c0-20.395-4.821-39.723-13.397-56.917-0.939-3.029-2.219-5.973-3.883-8.832-1.963-3.371-4.267-6.357-6.912-8.96-1.323-1.835-2.731-3.669-4.139-5.419-9.813-12.203-21.845-22.528-35.456-30.507l-299.051-170.88c-26.027-15.019-55.467-19.84-83.371-15.531-15.488 2.432-30.507 7.637-44.245 15.488l-136.491 77.995c-8.96 1.749-17.323 6.4-23.595 13.483l-138.624 79.232c-16.341 9.429-29.824 21.888-40.149 36.267-2.56 2.56-4.864 5.547-6.784 8.832-1.664 2.901-2.987 5.888-3.925 8.96-1.707 3.413-3.243 6.955-4.608 10.496-5.632 14.635-8.576 30.208-8.704 45.995v341.632c0.043 30.293 10.581 58.155 28.331 80.128 9.813 12.203 21.845 22.528 35.456 30.507l299.051 170.88c13.824 7.979 28.587 13.099 43.605 15.445zM469.333 537.045v340.949l-277.12-158.336c-4.736-2.773-8.832-6.315-12.16-10.453-5.931-7.339-9.387-16.469-9.387-26.539v-318.379zM554.667 877.995v-340.949l298.667-172.757v318.379c-0.043 5.163-1.067 10.496-2.987 15.445-3.413 8.789-9.6 16.384-18.176 21.333z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "package" + ], + "grid": 24 + }, + { + "id": 173, + "paths": [ + "M884.608 441.301l-392.107 392.107c-41.685 41.685-96.256 62.507-150.955 62.507s-109.269-20.821-150.955-62.507-62.507-96.256-62.507-150.955 20.821-109.269 62.507-150.955l392.107-392.107c25.003-25.003 57.728-37.504 90.581-37.504s65.536 12.501 90.581 37.504 37.504 57.728 37.504 90.581-12.501 65.536-37.504 90.581l-392.533 392.107c-8.363 8.363-19.243 12.544-30.208 12.544s-21.845-4.181-30.208-12.501-12.501-19.2-12.501-30.208 4.181-21.845 12.501-30.208l362.24-361.813c16.683-16.64 16.683-43.648 0.043-60.331s-43.648-16.683-60.331-0.043l-362.24 361.813c-25.003 25.003-37.504 57.856-37.504 90.539s12.501 65.536 37.504 90.539 57.856 37.504 90.539 37.504 65.536-12.501 90.539-37.504l392.533-392.107c41.685-41.685 62.507-96.341 62.507-150.912s-20.864-109.269-62.507-150.912-96.341-62.507-150.912-62.507-109.269 20.864-150.912 62.507l-392.107 392.107c-58.325 58.325-87.509 134.869-87.509 211.285s29.184 152.96 87.509 211.285 134.869 87.509 211.285 87.509 152.96-29.184 211.285-87.509l392.107-392.107c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "paperclip" + ], + "grid": 24 + }, + { + "id": 174, + "paths": [ + "M256 128c-23.552 0-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-682.667c0-23.552-19.115-42.667-42.667-42.667zM298.667 213.333h85.333v597.333h-85.333zM597.333 128c-23.552 0-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-682.667c0-23.552-19.115-42.667-42.667-42.667zM640 213.333h85.333v597.333h-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "pause" + ], + "grid": 24 + }, + { + "id": 175, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM469.333 640v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM640 640v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "pause-circle" + ], + "grid": 24 + }, + { + "id": 176, + "paths": [ + "M798.165 584.832l12.501-12.501 67.669 67.669-238.336 238.336-67.669-67.669 12.501-12.501zM96.085 44.032c-1.493-0.384-2.987-0.683-4.523-0.896-6.101-0.939-12.117-0.469-17.792 1.109-5.632 1.579-11.051 4.352-15.787 8.32-3.925 3.285-7.296 7.296-9.856 11.904-2.56 4.523-4.224 9.387-4.949 14.379-0.853 5.461-0.64 10.88 0.512 15.829 0.043 0.213 0.128 0.469 0.171 0.683l0.171 0.725 149.163 617.941c4.011 16.555 17.195 28.544 33.109 31.829l245.973 49.195c-6.016 15.317-2.859 33.408 9.557 45.781l128 128c16.683 16.683 43.691 16.683 60.331 0l298.667-298.667c16.683-16.683 16.683-43.691 0-60.331l-128-128c-12.373-12.373-30.464-15.573-45.781-9.557l-49.195-245.973c-3.328-16.725-16.043-29.184-31.829-33.109zM597.333 469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504c-19.755 0-38.485 4.48-55.168 12.501l-191.445-191.445 444.8 107.349 54.187 270.891-181.035 181.035-270.891-54.187-107.392-444.757 191.445 191.445c-8.021 16.683-12.501 35.413-12.501 55.168 0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496zM512 469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165c0-11.52 4.523-21.931 11.989-29.653 0.171-0.171 0.341-0.341 0.555-0.512s0.341-0.341 0.512-0.555c7.68-7.424 18.091-11.947 29.611-11.947 11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "pen-tool" + ], + "grid": 24 + }, + { + "id": 177, + "paths": [ + "M780.501 183.168l-597.333 597.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l597.333-597.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0zM426.667 277.333c0-41.216-16.768-78.635-43.733-105.6s-64.384-43.733-105.6-43.733-78.635 16.768-105.6 43.733-43.733 64.384-43.733 105.6 16.768 78.635 43.733 105.6 64.384 43.733 105.6 43.733 78.635-16.768 105.6-43.733 43.733-64.384 43.733-105.6zM341.333 277.333c0 17.664-7.125 33.621-18.731 45.269s-27.605 18.731-45.269 18.731-33.621-7.125-45.269-18.731-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269zM896 746.667c0-41.216-16.768-78.635-43.733-105.6s-64.384-43.733-105.6-43.733-78.635 16.768-105.6 43.733-43.733 64.384-43.733 105.6 16.768 78.635 43.733 105.6 64.384 43.733 105.6 43.733 78.635-16.768 105.6-43.733 43.733-64.384 43.733-105.6zM810.667 746.667c0 17.664-7.125 33.621-18.731 45.269s-27.605 18.731-45.269 18.731-33.621-7.125-45.269-18.731-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "percent" + ], + "grid": 24 + }, + { + "id": 178, + "paths": [ + "M981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "phone" + ], + "grid": 24 + }, + { + "id": 179, + "paths": [ + "M633.984 255.189c40.235 7.851 74.24 29.141 98.56 58.624 17.92 21.76 30.549 47.957 36.352 76.501 4.651 23.083 27.179 38.016 50.261 33.365s38.016-27.179 33.365-50.261c-8.533-42.325-27.307-81.365-54.144-113.877-36.437-44.203-87.765-76.331-148.053-88.064-23.125-4.523-45.525 10.581-50.048 33.707s10.581 45.525 33.707 50.048zM637.44 85.077c85.333 9.472 159.701 49.579 213.547 108.544 47.701 52.224 79.275 119.211 87.979 192.811 2.773 23.381 23.979 40.149 47.36 37.376s40.149-23.979 37.376-47.36c-10.795-91.605-50.176-175.189-109.696-240.384-67.328-73.728-160.512-123.989-267.136-135.808-23.424-2.603-44.501 14.293-47.104 37.675s14.293 44.501 37.675 47.104zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "phone-call" + ], + "grid": 24 + }, + { + "id": 180, + "paths": [ + "M640 256h238.336l-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l170.667-170.667c3.925-3.925 7.083-8.619 9.259-13.824 4.309-10.453 4.309-22.229 0-32.683-2.091-5.035-5.163-9.728-9.259-13.824l-170.667-170.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835h-238.336c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "phone-forwarded" + ], + "grid": 24 + }, + { + "id": 181, + "paths": [ + "M951.168 12.501l-225.835 225.835v-153.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 10.923 4.181 21.845 12.501 30.165 4.096 4.096 8.789 7.168 13.824 9.259s10.539 3.243 16.341 3.243h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-153.003l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "phone-incoming" + ], + "grid": 24 + }, + { + "id": 182, + "paths": [ + "M695.168 72.832l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "phone-missed" + ], + "grid": 24 + }, + { + "id": 183, + "paths": [ + "M257.237 523.349c-71.765-110.635-112.64-232.107-124.331-349.227-1.024-11.349 2.731-22.315 9.771-30.763s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l54.571-54.571c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.507-19.456-57.429-41.088-77.013-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.909c13.056 130.645 58.496 265.131 137.643 387.2 12.8 19.755 39.253 25.387 59.008 12.587s25.387-39.253 12.587-59.008zM396.16 688.213l60.629-60.629c39.637 35.328 81.835 65.323 123.691 88.533 16.939 9.429 37.547 6.059 50.901-7.125l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.24 1.451 19.541 6.997 26.112 15.019 6.229 7.595 9.856 17.28 9.771 27.691v128.256c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-38.699-24.576-74.112-51.627-104.832-79.189zM951.168 12.501l-521.856 521.813c-1.323 1.024-2.603 2.176-3.797 3.371-1.237 1.237-2.347 2.517-3.413 3.84l-409.6 409.6c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l262.912-262.912c35.115 31.915 75.264 62.72 118.187 89.984 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496v-127.744c0.171-30.848-10.624-59.733-29.099-82.304-19.627-23.936-48-40.875-81.792-45.653-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-25.984-16.512-52.096-36.011-77.227-58.069l494.251-494.208c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "phone-off" + ], + "grid": 24 + }, + { + "id": 184, + "paths": [ + "M712.832 371.499l225.835-225.835v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h153.003l-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "phone-outgoing" + ], + "grid": 24 + }, + { + "id": 185, + "paths": [ + "M865.664 661.376c-41.301 97.664-118.229 169.301-209.323 206.293s-196.224 39.125-293.888-2.176-169.301-118.229-206.293-209.323-39.168-196.267 2.133-293.931c39.936-94.464 113.152-164.523 200.064-202.368 21.589-9.429 31.488-34.56 22.101-56.149s-34.56-31.488-56.149-22.101c-106.197 46.251-195.797 132.011-244.608 247.381-50.475 119.381-47.744 247.979-2.645 359.211s132.779 205.397 252.117 255.872 247.979 47.744 359.211 2.645 205.397-132.779 255.872-252.117c9.173-21.717-0.981-46.72-22.699-55.936s-46.72 0.981-55.936 22.699zM893.653 469.333h-338.987v-338.987c89.003 9.813 168.789 50.048 228.864 110.123s100.309 139.861 110.123 228.864zM981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472c-23.552 0-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667h426.667c23.552 0 42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "pie-chart" + ], + "grid": 24 + }, + { + "id": 186, + "paths": [ + "M236.416 92.117c-6.528-4.267-14.507-6.784-23.083-6.784-23.552 0-42.667 19.115-42.667 42.667v768c-0.043 7.765 2.133 15.872 6.784 23.083 12.757 19.84 39.125 25.557 58.965 12.8l597.333-384c4.864-3.072 9.344-7.424 12.8-12.8 12.757-19.84 6.997-46.208-12.8-58.965zM256 206.165l475.776 305.835-475.776 305.835z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "play" + ], + "grid": 24 + }, + { + "id": 187, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM450.347 305.835c-6.656-4.48-14.848-7.168-23.68-7.168-23.552 0-42.667 19.115-42.667 42.667v341.333c-0.043 8.021 2.261 16.341 7.168 23.68 13.056 19.627 39.552 24.917 59.179 11.819l256-170.667c4.395-2.901 8.533-6.912 11.819-11.819 13.056-19.627 7.765-46.080-11.819-59.179zM469.333 421.077l136.405 90.923-136.405 90.923z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "play-circle" + ], + "grid": 24 + }, + { + "id": 188, + "paths": [ + "M213.333 554.667h256v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "plus" + ], + "grid": 24 + }, + { + "id": 189, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM341.333 554.667h128v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "plus-circle" + ], + "grid": 24 + }, + { + "id": 190, + "paths": [ + "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM341.333 554.667h128v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "plus-square" + ], + "grid": 24 + }, + { + "id": 191, + "paths": [ + "M170.667 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v256c0 129.579 52.565 246.997 137.472 331.861s202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861v-256c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM170.667 170.667h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v256c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531v-256c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM311.168 456.832l170.667 170.667c16.683 16.683 43.691 16.683 60.331 0l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-140.501 140.501-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "pocket" + ], + "grid": 24 + }, + { + "id": 192, + "paths": [ + "M753.195 313.472c66.645 66.688 99.968 153.941 99.925 241.365s-33.365 174.677-100.011 241.323c-66.645 66.603-153.856 99.925-241.237 99.925-87.552 0-174.848-33.365-241.451-100.011-66.645-66.645-99.925-153.941-99.925-241.323s33.323-174.677 99.925-241.323c16.64-16.683 16.64-43.691 0-60.331s-43.691-16.64-60.331 0c-83.285 83.285-124.928 192.555-124.928 301.653s41.643 218.368 124.928 301.653c83.285 83.328 192.555 125.013 301.696 125.013s218.411-41.643 301.739-124.928c83.328-83.285 125.013-192.555 125.013-301.653-0.043-109.269-41.685-218.453-124.928-301.739-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM469.333 85.333v426.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-426.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "power" + ], + "grid": 24 + }, + { + "id": 193, + "paths": [ + "M725.333 341.333h-426.667v-213.333h426.667zM213.333 810.667v128c0 23.552 19.115 42.667 42.667 42.667h512c23.552 0 42.667-19.115 42.667-42.667v-128h42.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-213.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-42.667v-256c0-23.552-19.115-42.667-42.667-42.667h-512c-23.552 0-42.667 19.115-42.667 42.667v256h-42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v213.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504zM256 554.667c-23.552 0-42.667 19.115-42.667 42.667v128h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-213.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v213.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667v-128c0-23.552-19.115-42.667-42.667-42.667zM298.667 640h426.667v256h-426.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "printer" + ], + "grid": 24 + }, + { + "id": 194, + "paths": [ + "M640 512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496 14.379 67.413 37.504 90.496 55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496zM554.667 512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165 4.736-22.4 12.501-30.165 18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165zM662.741 361.301c41.685 41.643 62.549 96.171 62.549 150.827s-20.779 109.184-62.379 150.869c-16.64 16.683-16.64 43.691 0.043 60.331s43.691 16.64 60.331-0.043c58.283-58.325 87.381-134.869 87.339-211.243s-29.269-152.875-87.595-211.157c-16.683-16.64-43.691-16.64-60.331 0.043s-16.64 43.691 0.043 60.331zM361.259 662.699c-41.685-41.6-62.549-96.128-62.592-150.784s20.779-109.184 62.379-150.869c16.64-16.683 16.64-43.691-0.043-60.331s-43.691-16.64-60.331 0.043c-58.24 58.283-87.381 134.827-87.339 211.2s29.269 152.875 87.595 211.157c16.683 16.64 43.691 16.64 60.331-0.043s16.64-43.691-0.043-60.331zM783.488 240.512c74.965 75.008 112.427 173.184 112.427 271.531 0 98.304-37.461 196.48-112.427 271.445-16.64 16.683-16.64 43.691 0 60.331s43.691 16.64 60.331 0c91.605-91.605 137.387-211.755 137.429-331.776 0-120.107-45.824-240.256-137.429-331.861-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM240.512 783.488c-74.965-75.008-112.427-173.184-112.427-271.531 0-98.304 37.461-196.48 112.427-271.445 16.64-16.683 16.64-43.691 0-60.331s-43.691-16.64-60.331 0c-91.605 91.605-137.387 211.755-137.429 331.776 0 120.021 45.824 240.213 137.429 331.861 16.64 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "radio" + ], + "grid": 24 + }, + { + "id": 195, + "paths": [ + "M914.475 369.749c-39.296-111.061-119.979-195.712-218.453-242.731s-215.040-56.448-326.101-17.152c-62.805 22.229-117.419 57.771-159.744 100.864l-124.843 117.333v-157.397c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v255.915c0 0.64 0 1.28 0.043 1.877 0.213 4.907 1.237 9.6 2.944 13.909 1.707 4.352 4.181 8.448 7.381 12.16 0.512 0.555 1.024 1.152 1.536 1.664 3.883 4.053 8.576 7.339 13.824 9.6 5.077 2.176 10.624 3.413 16.469 3.499 0.171 0 0.299 0 0.469 0h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.624-42.667-42.624h-148.309l120.747-113.451c33.152-33.792 76.672-62.293 127.275-80.213 88.875-31.445 181.973-23.936 260.864 13.739s143.317 105.301 174.763 194.176c7.851 22.229 32.256 33.835 54.443 25.984s33.835-32.256 25.984-54.443zM873.6 640l-119.467 112.256c-67.584 67.627-154.88 100.949-242.304 100.949s-174.72-33.28-241.365-99.925c-37.973-37.973-64.981-82.389-80.341-127.189-7.68-22.272-31.915-34.133-54.229-26.496s-34.133 31.915-26.496 54.229c19.627 57.131 53.632 112.725 100.736 159.787 83.328 83.285 192.597 124.928 301.739 124.885s218.368-41.728 300.715-124.117l126.080-118.4v157.355c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-255.915c0-0.64 0-1.28-0.043-1.877-0.213-4.907-1.237-9.6-2.944-13.909-1.707-4.352-4.181-8.448-7.381-12.16-0.512-0.555-1.024-1.152-1.536-1.664-3.883-4.053-8.576-7.339-13.824-9.6-5.077-2.176-10.624-3.413-16.469-3.499-0.171 0-0.299 0-0.469 0h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "refresh-ccw" + ], + "grid": 24 + }, + { + "id": 196, + "paths": [ + "M189.995 398.251c31.445-88.875 95.872-156.544 174.763-194.219s172.032-45.184 260.864-13.739c50.603 17.92 94.123 46.421 127.275 80.213l120.747 113.493h-148.309c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h255.872c0.213 0 0.384 0 0.597 0 5.845-0.043 11.435-1.323 16.469-3.499 5.077-2.176 9.771-5.376 13.824-9.6 0.512-0.555 1.024-1.109 1.536-1.664 3.2-3.712 5.675-7.808 7.381-12.16s2.731-9.003 2.944-13.909c0.043-0.64 0.043-1.237 0.043-1.835v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v157.397l-124.843-117.291c-42.325-43.093-96.896-78.635-159.701-100.864-111.061-39.296-227.627-29.824-326.101 17.152s-179.157 131.669-218.453 242.731c-7.893 22.187 3.755 46.549 25.941 54.443s46.592-3.755 54.443-25.984zM85.333 695.979l126.080 118.485c82.304 82.389 191.573 124.075 300.715 124.117s218.411-41.6 301.739-124.885c47.104-47.104 81.109-102.699 100.736-159.787 7.68-22.272-4.181-46.549-26.496-54.229s-46.549 4.181-54.229 26.496c-15.403 44.8-42.368 89.216-80.341 127.189-66.688 66.645-153.984 99.925-241.365 99.925s-174.677-33.365-242.304-100.949l-119.467-112.341h148.267c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-255.872c-0.213 0-0.384 0-0.597 0-5.845 0.043-11.435 1.323-16.469 3.499-5.077 2.176-9.771 5.376-13.824 9.6-0.512 0.555-1.024 1.109-1.536 1.664-3.2 3.712-5.675 7.808-7.381 12.16s-2.731 9.003-2.944 13.909c-0.043 0.64-0.043 1.237-0.043 1.835v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "refresh-cw" + ], + "grid": 24 + }, + { + "id": 197, + "paths": [ + "M170.667 469.333v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h494.336l-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l170.667-170.667c4.096-4.096 7.168-8.789 9.259-13.824s3.243-10.539 3.243-16.341c0-5.547-1.067-11.136-3.243-16.341-2.091-5.035-5.163-9.728-9.259-13.824l-170.667-170.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835h-494.336c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM853.333 554.667v85.333c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504h-494.336l97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-170.667 170.667c-3.925 3.925-7.083 8.619-9.259 13.824s-3.243 10.795-3.243 16.341c0 10.923 4.181 21.845 12.501 30.165l170.667 170.667c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835h494.336c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "repeat" + ], + "grid": 24 + }, + { + "id": 198, + "paths": [ + "M426.667 723.413l-271.829-211.413 271.829-211.413zM912.469 844.331c7.168 5.632 16.299 9.003 26.197 9.003 23.552 0 42.667-19.115 42.667-42.667v-597.333c0.043-9.088-2.901-18.347-9.003-26.197-14.464-18.603-41.259-21.931-59.861-7.467l-384 298.667c-2.603 1.963-5.205 4.523-7.467 7.467-5.973 7.68-8.917 16.725-9.003 25.771v-298.24c0.043-9.088-2.901-18.347-9.003-26.197-14.464-18.603-41.259-21.931-59.861-7.467l-384 298.667c-2.603 1.963-5.205 4.523-7.467 7.467-14.464 18.603-11.136 45.397 7.467 59.861l384 298.667c7.168 5.632 16.299 9.003 26.197 9.003 23.552 0 42.667-19.115 42.667-42.667v-298.283c0.128 12.587 5.76 24.96 16.469 33.28zM896 723.413l-271.829-211.413 271.829-211.413z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "rewind" + ], + "grid": 24 + }, + { + "id": 199, + "paths": [ + "M109.525 654.165c39.168 111.104 119.68 195.883 218.112 243.029s214.955 56.747 326.101 17.621 195.883-119.68 243.029-218.112 56.747-214.955 17.621-326.101-119.68-195.883-218.112-243.029-214.955-56.747-326.101-17.621c-62.891 22.187-117.547 57.685-159.957 100.779l-124.885 117.333v-157.397c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v255.915c0 0.64 0 1.28 0.043 1.877 0.213 4.907 1.237 9.6 2.944 13.909 1.707 4.352 4.181 8.448 7.381 12.16 0.512 0.555 1.024 1.152 1.536 1.664 3.883 4.053 8.576 7.339 13.824 9.6 5.077 2.176 10.624 3.413 16.469 3.499 0.171 0 0.299 0 0.469 0h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.624-42.667-42.624h-148.309l120.704-113.451c33.237-33.792 76.8-62.251 127.445-80.085 88.917-31.317 182.016-23.68 260.864 14.080s143.189 105.515 174.507 194.432 23.68 182.016-14.080 260.864-105.515 143.189-194.432 174.507-182.016 23.68-260.864-14.080-143.189-105.515-174.507-194.432c-7.851-22.229-32.213-33.877-54.4-26.069s-33.877 32.213-26.069 54.4z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "rotate-ccw" + ], + "grid": 24 + }, + { + "id": 200, + "paths": [ + "M834.005 625.792c-31.403 88.875-95.787 156.587-174.677 194.261s-171.989 45.269-260.864 13.867-156.587-95.787-194.261-174.677-45.269-171.989-13.867-260.864 95.787-156.587 174.677-194.261 171.989-45.269 260.864-13.867c50.688 17.92 94.251 46.421 127.445 80.299l120.491 113.451h-148.48c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h255.872c0.171 0 0.384 0 0.555 0 5.845-0.043 11.392-1.28 16.469-3.499 5.077-2.176 9.771-5.376 13.824-9.6 0.512-0.512 0.981-1.067 1.451-1.621 3.243-3.712 5.717-7.851 7.467-12.245 1.749-4.352 2.773-9.088 2.944-13.995 0.085-0.597 0.085-1.195 0.085-1.792v-255.915c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v157.227l-124.416-117.12c-42.368-43.179-97.024-78.763-159.915-100.949-111.104-39.296-227.669-29.781-326.144 17.28s-179.072 131.755-218.325 242.859-29.696 227.627 17.323 326.101 131.755 179.072 242.859 218.325 227.627 29.739 326.101-17.323 179.072-131.755 218.325-242.859c7.851-22.229-3.797-46.592-26.027-54.443s-46.592 3.797-54.443 26.027z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "rotate-cw" + ], + "grid": 24 + }, + { + "id": 201, + "paths": [ + "M170.667 512c94.251 0 179.541 38.144 241.365 99.968s99.968 147.115 99.968 241.365c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-117.803-47.787-224.555-124.971-301.696s-183.893-124.971-301.696-124.971c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM170.667 213.333c176.725 0 336.683 71.595 452.565 187.435s187.435 275.84 187.435 452.565c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-200.277-81.237-381.696-212.437-512.896s-312.619-212.437-512.896-212.437c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM298.667 810.667c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "rss" + ], + "grid": 24 + }, + { + "id": 202, + "paths": [ + "M810.667 938.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-469.333c0-10.923-4.181-21.845-12.501-30.165l-213.333-213.333c-7.723-7.723-18.389-12.501-30.165-12.501h-469.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504zM341.333 853.333v-256h341.333v256zM256 170.667v170.667c0 23.552 19.115 42.667 42.667 42.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-298.667v-128h323.669l188.331 188.331v451.669c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667h-426.667c-23.552 0-42.667 19.115-42.667 42.667v298.667h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "save" + ], + "grid": 24 + }, + { + "id": 203, + "paths": [ + "M314.795 706.176c0.469 0.512 0.981 1.067 1.493 1.536s1.024 0.981 1.536 1.493c14.635 15.317 23.509 35.968 23.509 58.795 0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003c22.827 0 43.477 8.875 58.795 23.509zM587.264 648.021l235.947 235.52c16.683 16.64 43.691 16.64 60.331-0.043s16.64-43.691-0.043-60.331l-235.947-235.52c-16.683-16.64-43.691-16.64-60.331 0.043s-16.64 43.691 0.043 60.331zM317.824 314.795c-0.512 0.469-1.024 0.981-1.536 1.493s-1.024 1.024-1.493 1.536c-15.317 14.635-35.968 23.509-58.795 23.509-23.595 0-44.843-9.515-60.331-25.003s-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331c0 22.827-8.875 43.477-23.509 58.795zM342.699 403.029l108.971 108.971-108.971 108.971c-25.429-15.019-55.083-23.637-86.699-23.637-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661c0-31.616-8.619-61.269-23.637-86.699l480.469-480.469c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-311.168 311.168-108.971-108.971c15.019-25.429 23.637-55.083 23.637-86.699 0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005c31.616 0 61.269-8.619 86.699-23.637z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "scissors" + ], + "grid": 24 + }, + { + "id": 204, + "paths": [ + "M684.416 676.523c-1.451 1.109-2.859 2.347-4.224 3.712s-2.56 2.731-3.712 4.224c-53.675 51.755-126.677 83.541-207.147 83.541-82.475 0-157.099-33.365-211.2-87.467s-87.467-128.725-87.467-211.2 33.365-157.099 87.467-211.2 128.725-87.467 211.2-87.467 157.099 33.365 211.2 87.467 87.467 128.725 87.467 211.2c0 80.469-31.787 153.472-83.584 207.189zM926.165 865.835l-156.8-156.8c52.523-65.707 83.968-149.035 83.968-239.701 0-106.027-43.008-202.069-112.469-271.531s-165.504-112.469-271.531-112.469-202.069 43.008-271.531 112.469-112.469 165.504-112.469 271.531 43.008 202.069 112.469 271.531 165.504 112.469 271.531 112.469c90.667 0 173.995-31.445 239.701-83.968l156.8 156.8c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "search" + ], + "grid": 24 + }, + { + "id": 205, + "paths": [ + "M979.755 96.811c1.835-6.443 2.133-13.397 0.64-20.309-1.024-4.821-2.901-9.557-5.589-13.867-2.731-4.352-6.187-8.107-10.155-11.179-4.992-3.84-10.624-6.4-16.469-7.723s-12.032-1.451-18.176-0.171c-1.792 0.384-3.627 0.896-5.376 1.493l-0.896 0.299-852.48 298.368c-10.752 3.755-19.925 11.776-24.917 22.955-9.557 21.547 0.128 46.763 21.675 56.32l369.024 164.011 164.011 369.024c4.608 10.368 13.355 18.901 24.875 22.955 22.229 7.765 46.592-3.925 54.357-26.197l298.368-852.437c0.427-1.152 0.811-2.304 1.152-3.499zM459.904 503.765l-258.901-115.029 575.275-201.387zM836.651 247.723l-201.387 575.275-115.029-258.901z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "send" + ], + "grid": 24 + }, + { + "id": 206, + "paths": [ + "M170.667 42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v170.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-170.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM170.667 128h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-170.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM170.667 554.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v170.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-170.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM170.667 640h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-170.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM256 298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM256 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "server" + ], + "grid": 24 + }, + { + "id": 207, + "paths": [ + "M682.667 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM866.773 657.237c1.963-4.48 4.779-8.149 8.192-10.965 4.779-3.925 10.709-6.229 17.195-6.272h3.84c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496-14.379-67.413-37.504-90.496-55.168-37.504-90.496-37.504h-6.784c-4.693-0.043-9.173-1.195-13.141-3.243-5.419-2.816-9.813-7.339-12.459-13.312-0.128-1.237-0.171-2.517-0.171-3.797-1.024-2.347-1.707-4.736-2.091-7.168 0.853-14.251 3.285-19.371 7.168-23.339l2.645-2.645c24.96-25.003 37.461-57.856 37.419-90.539s-12.544-65.536-37.589-90.539c-25.003-24.96-57.856-37.461-90.539-37.419s-65.536 12.544-90.453 37.504l-1.963 1.963c-3.541 3.413-7.808 5.803-12.288 7.083-5.973 1.664-12.416 1.365-18.688-1.408-4.309-1.877-7.979-4.693-10.795-8.107-3.925-4.779-6.229-10.709-6.272-17.195v-3.84c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496v6.784c-0.043 4.693-1.195 9.173-3.243 13.141-2.816 5.419-7.339 9.813-13.312 12.459-1.237 0.128-2.517 0.171-3.797 0.171-2.347 1.024-4.736 1.707-7.168 2.091-14.293-0.896-19.413-3.328-23.381-7.211l-2.645-2.645c-25.003-24.96-57.813-37.461-90.539-37.461s-65.493 12.544-90.539 37.632c-24.96 25.003-37.461 57.813-37.461 90.539s12.544 65.536 37.504 90.453l2.048 2.005c3.413 3.541 5.803 7.808 7.083 12.288 1.664 5.973 1.365 12.416-1.323 18.517-0.256 0.683-0.555 1.451-0.896 2.219-1.749 4.651-4.608 8.661-8.149 11.733-4.693 4.053-10.667 6.528-16.341 6.656h-3.84c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.211-37.504 90.539 14.379 67.413 37.504 90.496 55.168 37.504 90.496 37.504h6.784c4.693 0.043 9.173 1.195 13.141 3.243 5.461 2.859 9.941 7.424 12.629 13.696 1.024 2.347 1.707 4.736 2.091 7.168-0.853 14.251-3.285 19.371-7.168 23.339l-2.645 2.645c-24.96 25.003-37.461 57.856-37.419 90.539s12.544 65.536 37.589 90.539c25.003 24.96 57.856 37.461 90.539 37.419s65.536-12.544 90.453-37.504l2.005-2.048c3.541-3.413 7.808-5.803 12.288-7.083 5.973-1.664 12.416-1.365 18.517 1.323 0.683 0.256 1.451 0.555 2.219 0.896 4.651 1.749 8.661 4.608 11.733 8.149 4.053 4.693 6.528 10.667 6.656 16.341v3.925c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496v-6.784c0.043-4.693 1.195-9.173 3.243-13.141 2.859-5.461 7.424-9.941 13.696-12.629 2.347-1.024 4.736-1.707 7.168-2.091 14.251 0.853 19.371 3.285 23.339 7.168l2.645 2.645c25.003 24.96 57.856 37.461 90.539 37.419s65.536-12.544 90.539-37.589c24.96-25.003 37.461-57.856 37.419-90.539s-12.544-65.536-37.504-90.453l-2.048-2.005c-3.413-3.541-5.803-7.808-7.083-12.288-1.664-5.973-1.365-12.416 1.323-18.517zM784.896 396.885c-0.512-8.576-1.621-12.672-3.243-16.299v3.413c0 1.835 0.128 3.584 0.341 5.333 0.896 2.56 1.835 5.077 2.901 7.552 0.171 3.84 0.213 3.883 0.213 3.925 10.624 24.789 29.184 43.947 51.541 55.595 15.829 8.235 33.493 12.715 51.669 12.928h7.68c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165-4.736 22.4-12.501 30.165-18.389 12.501-30.165 12.501h-3.84c-27.179 0.128-52.053 9.728-71.467 25.728-13.781 11.349-24.789 25.899-32 42.368-10.965 24.832-12.288 51.627-5.419 76.032 5.077 18.048 14.549 34.731 27.819 48.469l3.072 3.115c8.363 8.363 12.544 19.2 12.544 30.165s-4.139 21.845-12.459 30.165c-8.405 8.405-19.243 12.587-30.251 12.587s-21.845-4.139-30.165-12.459l-2.603-2.603c-19.755-19.328-44.373-29.952-69.632-32.085-18.645-1.579-37.632 1.451-55.168 9.045-24.661 10.581-43.819 29.141-55.467 51.456-8.235 15.829-12.715 33.493-12.928 51.669v7.723c0 11.776-4.736 22.4-12.501 30.165s-18.347 12.459-30.123 12.459-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165v-3.84c-0.64-28.16-10.88-52.992-27.477-72.192-12.117-13.995-27.563-24.96-45.141-31.744-24.533-10.539-50.901-11.691-74.923-4.949-18.048 5.077-34.731 14.549-48.469 27.819l-3.115 3.072c-8.363 8.363-19.2 12.544-30.165 12.544s-21.845-4.139-30.165-12.459c-8.405-8.405-12.587-19.243-12.587-30.251s4.139-21.845 12.459-30.165l2.603-2.603c19.328-19.755 29.952-44.373 32.085-69.632 1.579-18.645-1.451-37.632-9.045-55.168-10.581-24.661-29.141-43.819-51.456-55.467-15.829-8.235-33.493-12.715-51.669-12.928l-7.68 0.043c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165 4.736-22.4 12.501-30.165 18.389-12.501 30.165-12.501h3.84c28.16-0.64 52.992-10.88 72.192-27.477 13.995-12.117 24.96-27.563 31.744-45.141 10.539-24.533 11.691-50.901 4.949-74.923-5.077-18.048-14.549-34.731-27.819-48.469l-3.115-3.115c-8.363-8.363-12.544-19.2-12.544-30.165s4.139-21.845 12.459-30.165c8.405-8.405 19.243-12.587 30.251-12.587s21.845 4.139 30.165 12.459l2.603 2.603c19.755 19.328 44.373 29.952 69.632 32.085 15.787 1.365 31.787-0.597 46.976-5.845 4.096-0.512 7.936-1.536 11.349-3.072-1.323 0.043-2.603 0.128-3.797 0.171-8.576 0.512-12.672 1.621-16.299 3.243h3.413c1.835 0 3.584-0.128 5.333-0.341 2.56-0.896 5.077-1.835 7.552-2.901 3.84-0.171 3.883-0.213 3.925-0.213 24.789-10.624 43.947-29.184 55.595-51.541 8.235-15.787 12.715-33.493 12.928-51.627v-7.723c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165v3.84c0.128 27.179 9.728 52.053 25.728 71.467 11.349 13.781 25.899 24.789 42.496 32.043 24.661 10.88 51.456 12.203 75.861 5.333 18.048-5.077 34.731-14.549 48.469-27.819l3.115-3.072c8.363-8.363 19.2-12.544 30.165-12.544s21.845 4.139 30.165 12.459c8.405 8.405 12.587 19.243 12.587 30.251s-4.139 21.845-12.459 30.165l-2.603 2.603c-19.328 19.755-29.952 44.373-32.085 69.632-1.365 15.787 0.597 31.787 5.845 46.976 0.512 4.053 1.579 7.893 3.072 11.349-0.043-1.365-0.085-2.645-0.171-3.797z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "settings" + ], + "grid": 24 + }, + { + "id": 208, + "paths": [ + "M128 512v341.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v341.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 188.331v451.669c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-451.669l97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-170.667-170.667c-3.925-3.925-8.619-7.083-13.824-9.259-10.453-4.309-22.229-4.309-32.683 0-5.035 2.091-9.728 5.163-13.824 9.259l-170.667 170.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "share" + ], + "grid": 24 + }, + { + "id": 209, + "paths": [ + "M691.797 772.181c1.067-1.408 2.048-2.859 2.987-4.437 0.853-1.493 1.621-3.029 2.304-4.565 3.115-4.608 6.656-8.917 10.581-12.843 15.488-15.488 36.736-25.003 60.331-25.003s44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331-9.515 44.843-25.003 60.331-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331c0-13.867 3.285-26.923 9.131-38.485zM695.509 258.389c-0.384-0.725-0.768-1.451-1.195-2.176s-0.853-1.451-1.323-2.133c-6.571-12.075-10.325-25.941-10.325-40.747 0-23.595 9.515-44.843 25.003-60.331s36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331-9.515 44.843-25.003 60.331-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003c-4.608-4.608-8.704-9.728-12.16-15.275zM328.491 466.944c0.384 0.725 0.768 1.451 1.195 2.176s0.853 1.451 1.323 2.133c6.571 12.075 10.325 25.941 10.325 40.747s-3.755 28.672-10.368 40.789c-0.469 0.683-0.896 1.408-1.323 2.133s-0.811 1.408-1.152 2.133c-3.456 5.547-7.552 10.667-12.16 15.275-15.488 15.488-36.736 25.003-60.331 25.003s-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003c4.608 4.608 8.704 9.728 12.16 15.275zM603.733 259.755l-226.475 132.139c-0.171-0.213-0.384-0.384-0.597-0.597-30.805-30.805-73.557-49.963-120.661-49.963s-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005c0.213-0.213 0.384-0.384 0.597-0.597l226.517 132.011c-4.181 14.805-6.443 30.464-6.443 46.592 0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005c-0.128 0.128-0.299 0.299-0.427 0.427l-226.645-132.053c4.181-14.763 6.4-30.293 6.4-46.379s-2.219-31.659-6.4-46.421l226.475-132.181c0.171 0.213 0.384 0.384 0.597 0.597 30.805 30.848 73.557 50.005 120.661 50.005s89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661c0 16.085 2.219 31.659 6.4 46.421z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "share-2" + ], + "grid": 24 + }, + { + "id": 210, + "paths": [ + "M512 890.112c-50.517-28.672-188.587-114.987-258.133-236.757-3.371-5.888-6.528-11.776-9.515-17.792-19.456-38.869-31.019-80.128-31.019-123.563v-269.099l298.667-112 298.667 112v269.099c0 43.435-11.563 84.693-30.976 123.605-2.987 5.973-6.187 11.904-9.515 17.792-69.589 121.771-207.659 208.043-258.133 236.757zM531.072 976.811c0 0 212.864-105.6 313.173-281.131 4.096-7.168 8.021-14.507 11.776-21.973 24.235-48.427 39.979-102.741 39.979-161.707v-298.667c0-18.176-11.392-33.707-27.691-39.936l-341.333-128c-10.069-3.797-20.693-3.499-29.952 0l-341.333 128c-17.024 6.357-27.563 22.485-27.691 39.936v298.667c0 58.965 15.744 113.28 40.021 161.749 3.712 7.467 7.637 14.763 11.776 21.973 100.309 175.531 313.173 281.131 313.173 281.131 12.459 6.229 26.453 5.803 38.144 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "shield" + ], + "grid": 24 + }, + { + "id": 211, + "paths": [ + "M880.853 609.963c10.283-33.109 15.275-66.859 15.147-98.133v-298.496c0-18.176-11.392-33.707-27.691-39.936l-341.333-128c-10.069-3.755-20.651-3.499-29.909 0l-134.827 50.347c-22.059 8.192-33.28 32.768-25.045 54.869s32.811 33.28 54.912 25.045l119.851-44.757 298.709 112v269.269c0.085 22.272-3.499 47.403-11.307 72.533-6.997 22.485 5.589 46.421 28.117 53.376s46.421-5.589 53.376-28.117zM213.333 273.664l479.189 479.189c-50.731 51.499-112.213 98.731-181.845 136.491-51.584-29.44-187.819-115.285-256.811-235.989-3.371-5.888-6.528-11.776-9.515-17.792-19.456-38.869-31.019-80.128-31.019-123.563zM12.501 72.832l120.491 120.533c-3.2 6.059-4.949 12.885-4.992 19.968v298.667c0 58.965 15.744 113.28 40.021 161.749 3.712 7.467 7.637 14.763 11.776 21.973 100.309 175.531 313.173 281.131 313.173 281.131 12.715 6.357 27.136 5.76 38.997-0.427 84.693-44.672 159.573-100.949 220.928-163.2l198.315 198.315c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.709-938.709c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "shield-off" + ], + "grid": 24 + }, + { + "id": 212, + "paths": [ + "M810.667 213.333h-597.333l64-85.333h469.333zM929.877 230.059l-127.744-170.325c-8.363-11.136-21.077-17.024-34.133-17.067h-512c-13.909 0-26.283 6.656-34.133 17.067l-127.744 170.325c-1.835 2.389-3.456 4.992-4.736 7.765-2.773 5.845-4.096 12.075-4.053 18.176v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-9.344-3.029-18.005-8.064-24.96-0.171-0.213-0.299-0.427-0.469-0.64zM170.667 298.667h682.667v554.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165zM640 426.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667c0 58.88 23.936 112.299 62.464 150.869s91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "shopping-bag" + ], + "grid": 24 + }, + { + "id": 213, + "paths": [ + "M469.333 896c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM938.667 896c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM308.096 298.667h621.653l-58.496 306.816c-1.963 9.728-7.083 18.133-14.165 24.235-7.68 6.656-17.621 10.496-29.355 10.283h-415.317c-9.899 0.128-19.243-3.029-26.709-8.661-8.107-6.101-14.037-14.976-16.171-25.728zM42.667 85.333h135.68l36.181 180.864c4.608 18.645 21.419 32.469 41.472 32.469h52.096l-17.067-85.333h-35.029c-23.552 0-42.667 19.115-42.667 42.667 0 2.261 0.171 4.48 0.512 6.613 0.171 1.195 0.427 2.432 0.725 3.584l71.296 356.139c6.357 32.043 24.32 59.008 48.64 77.269 22.229 16.725 49.92 26.155 79.104 25.728h414.123c31.915 0.64 62.080-11.136 85.12-31.019 21.077-18.176 36.181-43.221 42.027-71.808l68.352-358.485c4.395-23.168-10.752-45.483-33.92-49.92-2.773-0.555-5.547-0.811-7.979-0.768h-690.347l-35.84-179.029c-4.011-19.712-21.205-34.304-41.813-34.304h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "shopping-cart" + ], + "grid": 24 + }, + { + "id": 214, + "paths": [ + "M200.832 883.499l652.501-652.501v110.336c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-213.333c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-213.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h110.336l-652.501 652.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM609.835 670.165l183.168 183.168h-110.336c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h213.333c5.547 0 11.136-1.067 16.341-3.243s9.899-5.333 13.824-9.259c4.096-4.096 7.168-8.789 9.259-13.824s3.243-10.539 3.243-16.341v-213.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v110.336l-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM140.501 200.832l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "shuffle" + ], + "grid": 24 + }, + { + "id": 215, + "paths": [ + "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM426.667 853.333v-682.667h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501zM341.333 170.667v682.667h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "sidebar" + ], + "grid": 24 + }, + { + "id": 216, + "paths": [ + "M784 886.656c7.253 5.803 16.555 9.344 26.667 9.344 23.552 0 42.667-19.115 42.667-42.667v-682.667c0.043-9.301-3.029-18.731-9.344-26.667-14.72-18.389-41.557-21.376-59.989-6.656l-426.667 341.333c-2.261 1.792-4.608 4.053-6.656 6.656-14.72 18.389-11.733 45.269 6.656 59.989zM768 764.544l-315.691-252.544 315.691-252.544zM256 810.667v-597.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v597.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "skip-back" + ], + "grid": 24 + }, + { + "id": 217, + "paths": [ + "M240 137.344c-7.253-5.803-16.555-9.344-26.667-9.344-23.552 0-42.667 19.115-42.667 42.667v682.667c-0.043 9.301 3.029 18.731 9.344 26.667 14.72 18.389 41.557 21.376 59.989 6.656l426.667-341.333c2.261-1.792 4.608-4.053 6.656-6.656 14.72-18.389 11.733-45.269-6.656-59.989zM256 259.456l315.691 252.544-315.691 252.544zM768 213.333v597.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-597.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "skip-forward" + ], + "grid": 24 + }, + { + "id": 218, + "paths": [ + "M618.667 469.333c29.44 0 56.149-11.947 75.435-31.232s31.232-45.995 31.232-75.435v-213.333c0-29.44-11.947-56.149-31.232-75.435s-45.995-31.232-75.435-31.232-56.149 11.947-75.435 31.232-31.232 45.995-31.232 75.435v213.333c0 29.44 11.947 56.149 31.232 75.435s45.995 31.232 75.435 31.232zM618.667 384c-5.973 0-11.264-2.347-15.104-6.229s-6.229-9.131-6.229-15.104v-213.333c0-5.973 2.347-11.264 6.229-15.104s9.131-6.229 15.104-6.229 11.264 2.347 15.104 6.229 6.229 9.131 6.229 15.104v213.333c0 5.973-2.347 11.264-6.229 15.104s-9.131 6.229-15.104 6.229zM874.667 469.333c29.44 0 56.149-11.947 75.435-31.232s31.232-45.995 31.232-75.435-11.947-56.149-31.232-75.435-45.995-31.232-75.435-31.232-56.149 11.947-75.435 31.232-31.232 45.995-31.232 75.435v64c0 23.552 19.115 42.667 42.667 42.667zM874.667 384h-21.333v-21.333c0-5.973 2.347-11.264 6.229-15.104s9.131-6.229 15.104-6.229 11.264 2.347 15.104 6.229 6.229 9.131 6.229 15.104-2.347 11.264-6.229 15.104-9.131 6.229-15.104 6.229zM405.333 554.667c-29.44 0-56.149 11.947-75.435 31.232s-31.232 45.995-31.232 75.435v213.333c0 29.44 11.947 56.149 31.232 75.435s45.995 31.232 75.435 31.232 56.149-11.947 75.435-31.232 31.232-45.995 31.232-75.435v-213.333c0-29.44-11.947-56.149-31.232-75.435s-45.995-31.232-75.435-31.232zM405.333 640c5.973 0 11.264 2.347 15.104 6.229s6.229 9.131 6.229 15.104v213.333c0 5.973-2.347 11.264-6.229 15.104s-9.131 6.229-15.104 6.229-11.264-2.347-15.104-6.229-6.229-9.131-6.229-15.104v-213.333c0-5.973 2.347-11.264 6.229-15.104s9.131-6.229 15.104-6.229zM149.333 554.667c-29.44 0-56.149 11.947-75.435 31.232s-31.232 45.995-31.232 75.435 11.947 56.149 31.232 75.435 45.995 31.232 75.435 31.232 56.149-11.947 75.435-31.232 31.232-45.995 31.232-75.435v-64c0-23.552-19.115-42.667-42.667-42.667zM149.333 640h21.333v21.333c0 5.973-2.347 11.264-6.229 15.104s-9.131 6.229-15.104 6.229-11.264-2.347-15.104-6.229-6.229-9.131-6.229-15.104 2.347-11.264 6.229-15.104 9.131-6.229 15.104-6.229zM554.667 618.667c0 29.44 11.947 56.149 31.232 75.435s45.995 31.232 75.435 31.232h213.333c29.44 0 56.149-11.947 75.435-31.232s31.232-45.995 31.232-75.435-11.947-56.149-31.232-75.435-45.995-31.232-75.435-31.232h-213.333c-29.44 0-56.149 11.947-75.435 31.232s-31.232 45.995-31.232 75.435zM640 618.667c0-5.973 2.347-11.264 6.229-15.104s9.131-6.229 15.104-6.229h213.333c5.973 0 11.264 2.347 15.104 6.229s6.229 9.131 6.229 15.104-2.347 11.264-6.229 15.104-9.131 6.229-15.104 6.229h-213.333c-5.973 0-11.264-2.347-15.104-6.229s-6.229-9.131-6.229-15.104zM661.333 853.333c5.973 0 11.264 2.347 15.104 6.229s6.229 9.131 6.229 15.104-2.347 11.264-6.229 15.104-9.131 6.229-15.104 6.229-11.264-2.347-15.104-6.229-6.229-9.131-6.229-15.104v-21.333zM661.333 768h-64c-23.552 0-42.667 19.115-42.667 42.667v64c0 29.44 11.947 56.149 31.232 75.435s45.995 31.232 75.435 31.232 56.149-11.947 75.435-31.232 31.232-45.995 31.232-75.435-11.947-56.149-31.232-75.435-45.995-31.232-75.435-31.232zM384 405.333c0 5.973-2.347 11.264-6.229 15.104s-9.131 6.229-15.104 6.229h-213.333c-5.973 0-11.264-2.347-15.104-6.229s-6.229-9.131-6.229-15.104 2.347-11.264 6.229-15.104 9.131-6.229 15.104-6.229h213.333c5.973 0 11.264 2.347 15.104 6.229s6.229 9.131 6.229 15.104zM469.333 405.333c0-29.44-11.947-56.149-31.232-75.435s-45.995-31.232-75.435-31.232h-213.333c-29.44 0-56.149 11.947-75.435 31.232s-31.232 45.995-31.232 75.435 11.947 56.149 31.232 75.435 45.995 31.232 75.435 31.232h213.333c29.44 0 56.149-11.947 75.435-31.232s31.232-45.995 31.232-75.435zM362.667 170.667c-5.973 0-11.264-2.347-15.104-6.229s-6.229-9.131-6.229-15.104 2.347-11.264 6.229-15.104 9.131-6.229 15.104-6.229 11.264 2.347 15.104 6.229 6.229 9.131 6.229 15.104v21.333zM362.667 256h64c23.552 0 42.667-19.115 42.667-42.667v-64c0-29.44-11.947-56.149-31.232-75.435s-45.995-31.232-75.435-31.232-56.149 11.947-75.435 31.232-31.232 45.995-31.232 75.435 11.947 56.149 31.232 75.435 45.995 31.232 75.435 31.232z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "slack" + ], + "grid": 24 + }, + { + "id": 219, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM812.032 751.701l-539.733-539.733c65.707-52.565 149.035-83.968 239.701-83.968 106.069 0 201.984 42.923 271.531 112.469s112.469 165.461 112.469 271.531c0 90.667-31.403 173.995-83.968 239.701zM211.968 272.299l539.733 539.733c-65.707 52.565-149.035 83.968-239.701 83.968-106.069 0-201.984-42.923-271.531-112.469s-112.469-165.461-112.469-271.531c0-90.667 31.403-173.995 83.968-239.701z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "slash" + ], + "grid": 24 + }, + { + "id": 220, + "paths": [ + "M213.333 426.667v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM554.667 896v-384c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v384c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM896 512v-384c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v384c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM42.667 640h85.333v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM384 384h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM725.333 725.333h85.333v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "sliders" + ], + "grid": 24 + }, + { + "id": 221, + "paths": [ + "M298.667 42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h426.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-682.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM298.667 128h426.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v682.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-426.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM512 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "smartphone" + ], + "grid": 24 + }, + { + "id": 222, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM307.2 622.933c0 0 5.589 7.381 14.123 16.341 6.187 6.528 14.421 14.549 24.619 23.040 14.379 11.989 32.939 25.173 55.339 36.395 30.080 15.019 67.371 26.624 110.72 26.624s80.64-11.605 110.72-26.624c22.4-11.221 40.96-24.405 55.339-36.395 10.197-8.491 18.432-16.512 24.619-23.040 8.533-8.96 14.123-16.341 14.123-16.341 14.123-18.859 10.325-45.611-8.533-59.733s-45.611-10.325-59.733 8.533c-1.749 2.133-7.723 8.789-7.723 8.789-4.267 4.48-10.112 10.197-17.408 16.299-10.368 8.661-23.424 17.877-38.827 25.6-20.48 10.197-44.8 17.579-72.576 17.579s-52.096-7.381-72.576-17.621c-15.36-7.68-28.459-16.939-38.827-25.6-7.296-6.101-13.141-11.819-17.408-16.299-5.973-6.613-7.723-8.747-7.723-8.747-14.123-18.859-40.875-22.656-59.733-8.533s-22.656 40.875-8.533 59.733zM384 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM640 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "smile" + ], + "grid": 24 + }, + { + "id": 223, + "paths": [ + "M256 42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-682.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM256 128h512c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v682.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM725.333 597.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM640 597.333c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM512 298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "speaker" + ], + "grid": 24 + }, + { + "id": 224, + "paths": [ + "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "square" + ], + "grid": 24 + }, + { + "id": 225, + "paths": [ + "M550.272 66.432c-3.925-8.064-10.581-15.019-19.371-19.371-21.12-10.411-46.72-1.749-57.131 19.371l-121.941 246.997-272.683 39.893c-8.875 1.237-17.536 5.419-24.363 12.416-16.469 16.896-16.085 43.904 0.768 60.331l197.248 192.128-46.549 271.445c-1.536 8.832-0.256 18.389 4.309 27.051 10.965 20.864 36.779 28.885 57.643 17.92l243.797-128.213 243.84 128.213c7.936 4.224 17.408 5.931 27.051 4.309 23.211-3.968 38.827-26.027 34.859-49.28l-46.549-271.445 197.248-192.128c6.443-6.229 11.051-14.677 12.459-24.405 3.413-23.296-12.715-44.971-36.053-48.384l-272.64-39.851zM512 181.717l93.568 189.611c6.443 13.013 18.603 21.291 32.085 23.339l209.323 30.592-151.424 147.499c-10.411 10.155-14.549 24.277-12.288 37.76l35.712 208.341-187.136-98.432c-12.843-6.741-27.605-6.315-39.723 0l-187.136 98.432 35.712-208.341c2.475-14.336-2.517-28.203-12.288-37.76l-151.424-147.499 209.365-30.635c14.336-2.091 25.984-11.093 32.085-23.296z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "star" + ], + "grid": 24 + }, + { + "id": 226, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM384 341.333c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667v-256c0-23.552-19.115-42.667-42.667-42.667zM426.667 426.667h170.667v170.667h-170.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "stop-circle" + ], + "grid": 24 + }, + { + "id": 227, + "paths": [ + "M768 512c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965-134.741 28.715-181.035 74.965-74.965 110.336-74.965 181.035 28.715 134.741 74.965 181.035 110.336 74.965 181.035 74.965 134.741-28.715 181.035-74.965 74.965-110.336 74.965-181.035zM682.667 512c0 47.147-19.072 89.728-50.005 120.661s-73.515 50.005-120.661 50.005-89.728-19.072-120.661-50.005-50.005-73.515-50.005-120.661 19.072-89.728 50.005-120.661 73.515-50.005 120.661-50.005 89.728 19.072 120.661 50.005 50.005 73.515 50.005 120.661zM469.333 42.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 896v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM149.888 210.219l60.587 60.587c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-60.587-60.587c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM753.195 813.525l60.587 60.587c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-60.587-60.587c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM42.667 554.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM896 554.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM210.219 874.112l60.587-60.587c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-60.587 60.587c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM813.525 270.805l60.587-60.587c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-60.587 60.587c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "sun" + ], + "grid": 24 + }, + { + "id": 228, + "paths": [ + "M768 768c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965-134.741 28.715-181.035 74.965-74.965 110.336-74.965 181.035c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005 89.728 19.072 120.661 50.005 50.005 73.515 50.005 120.661c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM149.888 466.219l60.587 60.587c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-60.587-60.587c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM42.667 810.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM896 810.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM813.525 526.805l60.587-60.587c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-60.587 60.587c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM981.333 896h-938.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h938.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM371.499 286.165l97.835-97.835v195.669c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-195.669l97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-170.667-170.667c-3.925-3.925-8.619-7.083-13.824-9.259-10.453-4.309-22.229-4.309-32.683 0-5.035 2.091-9.728 5.163-13.824 9.259l-170.667 170.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "sunrise" + ], + "grid": 24 + }, + { + "id": 229, + "paths": [ + "M768 768c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965-134.741 28.715-181.035 74.965-74.965 110.336-74.965 181.035c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005 89.728 19.072 120.661 50.005 50.005 73.515 50.005 120.661c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM149.888 466.219l60.587 60.587c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-60.587-60.587c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM42.667 810.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM896 810.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM813.525 526.805l60.587-60.587c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-60.587 60.587c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM981.333 896h-938.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h938.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM652.501 183.168l-97.835 97.835v-195.669c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v195.669l-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l170.667 170.667c4.096 4.096 8.789 7.168 13.824 9.259s10.539 3.243 16.341 3.243 11.307-1.152 16.341-3.243c5.035-2.091 9.728-5.163 13.824-9.259l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "sunset" + ], + "grid": 24 + }, + { + "id": 230, + "paths": [ + "M256 42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-682.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM256 128h512c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v682.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM512 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "tablet" + ], + "grid": 24 + }, + { + "id": 231, + "paths": [ + "M908.672 602.325c24.875-25.003 37.291-57.685 37.291-90.24 0.043-32.597-12.373-65.365-37.291-90.453l-366.507-366.507c-7.723-7.68-18.389-12.459-30.165-12.459h-426.667c-23.552 0-42.667 19.115-42.667 42.667v426.667c0 10.923 4.181 21.845 12.501 30.208l366.592 366.165c25.003 24.96 57.856 37.461 90.539 37.419s65.536-12.544 90.453-37.504zM848.341 541.995l-305.92 305.92c-8.363 8.363-19.2 12.544-30.165 12.544s-21.845-4.139-30.165-12.459l-354.091-353.707v-366.293h366.336l354.005 354.005c8.192 8.235 12.331 19.072 12.331 30.037 0 10.923-4.139 21.717-12.331 29.952zM298.667 341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "tag" + ], + "grid": 24 + }, + { + "id": 232, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM810.667 512c0-82.475-33.493-157.184-87.467-211.2s-128.725-87.467-211.2-87.467-157.184 33.493-211.2 87.467-87.467 128.725-87.467 211.2 33.493 157.184 87.467 211.2 128.725 87.467 211.2 87.467 157.184-33.493 211.2-87.467 87.467-128.725 87.467-211.2zM725.333 512c0 58.923-23.851 112.213-62.464 150.869s-91.947 62.464-150.869 62.464-112.213-23.851-150.869-62.464-62.464-91.947-62.464-150.869 23.851-112.213 62.464-150.869 91.947-62.464 150.869-62.464 112.213 23.851 150.869 62.464 62.464 91.947 62.464 150.869zM640 512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496 14.379 67.413 37.504 90.496 55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496zM554.667 512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165 4.736-22.4 12.501-30.165 18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "target" + ], + "grid": 24 + }, + { + "id": 233, + "paths": [ + "M200.832 755.499l256-256c16.683-16.683 16.683-43.691 0-60.331l-256-256c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l225.835 225.835-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM512 853.333h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "terminal" + ], + "grid": 24 + }, + { + "id": 234, + "paths": [ + "M554.667 629.76c0.085 14.037 6.869 27.563 19.328 35.712 14.891 9.728 29.269 23.637 40.875 40.96 22.912 34.304 29.781 74.539 22.315 112.085s-29.184 72.107-63.488 95.019-74.539 29.781-112.085 22.315-72.107-29.184-95.019-63.488-29.781-74.539-22.315-112.085 29.184-72.107 63.488-95.019c11.435-7.765 18.901-20.779 18.901-35.499v-480.427c0-17.664 7.125-33.621 18.731-45.269s27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269zM640 608.256v-458.923c0-41.216-16.768-78.635-43.733-105.6s-64.384-43.733-105.6-43.733-78.635 16.768-105.6 43.733-43.733 64.384-43.733 105.6v459.051c-42.965 35.371-70.571 83.627-80.811 135.253-11.691 58.837-0.939 122.283 35.029 176.171s90.496 88.064 149.333 99.797 122.283 0.939 176.171-35.029 88.064-90.496 99.797-149.333 0.939-122.283-35.029-176.171c-13.099-19.584-28.715-36.693-45.781-50.773z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "thermometer" + ], + "grid": 24 + }, + { + "id": 235, + "paths": [ + "M469.333 640c0-23.552-19.115-42.667-42.667-42.667h-242.304c-2.773-0.085-6.528-0.469-6.528-0.469-11.648-1.749-21.419-8.021-27.947-16.896s-9.6-20.053-7.851-31.659l58.88-383.915c1.579-10.197 6.656-19.115 13.867-25.6 7.637-6.869 17.707-10.923 29.269-10.795h438.613v417.621l-153.941 346.368c-13.099-4.181-24.832-11.435-34.389-20.992-15.488-15.488-25.003-36.736-25.003-60.331zM384 682.667v128c0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005c17.28 0 32.171-10.283 38.997-25.344l170.667-384c2.56-5.717 3.712-11.733 3.669-17.323v-469.333c0-23.552-19.115-42.667-42.667-42.667h-481.28c-32.725-0.384-63.232 11.989-86.229 32.555-21.547 19.285-36.565 45.909-41.259 76.075l-58.88 384.085c-5.333 34.987 4.096 68.864 23.467 95.189s48.939 45.355 83.84 50.645c7.040 1.067 14.208 1.579 20.992 1.451zM725.333 128h113.92c15.403-0.256 28.757 5.077 38.912 14.165 9.088 8.149 15.531 19.2 17.835 31.829v289.579c-1.579 14.507-8.875 26.88-19.413 35.541-10.027 8.277-22.912 13.056-36.736 12.843l-114.517 0.043c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h113.323c34.56 0.512 66.944-11.52 92.16-32.256 26.539-21.803 45.184-53.376 50.176-90.027 0.213-1.707 0.341-3.712 0.341-5.717v-298.667c0-1.792-0.128-3.797-0.384-5.845-4.736-34.261-21.547-64.427-45.867-86.187-25.6-22.912-59.605-36.608-95.829-35.925h-113.92c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "thumbs-down" + ], + "grid": 24 + }, + { + "id": 236, + "paths": [ + "M554.667 384c0 23.552 19.115 42.667 42.667 42.667h242.304c2.773 0.085 6.528 0.469 6.528 0.469 11.648 1.749 21.419 8.021 27.947 16.896s9.6 20.053 7.851 31.659l-58.88 383.915c-1.579 10.197-6.656 19.115-13.867 25.6-7.68 6.869-17.707 10.923-29.269 10.795h-438.613v-417.621l153.941-346.368c13.099 4.181 24.832 11.435 34.389 20.992 15.488 15.488 25.003 36.736 25.003 60.331zM640 341.333v-128c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005c-17.28 0-32.171 10.283-38.997 25.344l-170.667 384c-2.56 5.717-3.712 11.733-3.669 17.323v469.333c0 23.552 19.115 42.667 42.667 42.667h481.28c32.725 0.384 63.232-11.989 86.229-32.555 21.547-19.285 36.565-45.909 41.259-76.075l58.88-384.085c5.333-34.987-4.096-68.864-23.467-95.189s-48.939-45.355-83.84-50.645c-7.040-1.067-14.208-1.579-20.992-1.451zM298.667 896h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-298.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v298.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "thumbs-up" + ], + "grid": 24 + }, + { + "id": 237, + "paths": [ + "M341.333 170.667c-94.251 0-179.627 38.272-241.365 99.968s-99.968 147.115-99.968 241.365 38.272 179.627 99.968 241.365 147.115 99.968 241.365 99.968h341.333c94.251 0 179.627-38.272 241.365-99.968s99.968-147.115 99.968-241.365-38.272-179.627-99.968-241.365-147.115-99.968-241.365-99.968zM341.333 256h341.333c70.699 0 134.656 28.587 181.035 74.965s74.965 110.336 74.965 181.035-28.587 134.656-74.965 181.035-110.336 74.965-181.035 74.965h-341.333c-70.699 0-134.656-28.587-181.035-74.965s-74.965-110.336-74.965-181.035 28.587-134.656 74.965-181.035 110.336-74.965 181.035-74.965zM512 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM426.667 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "toggle-left" + ], + "grid": 24 + }, + { + "id": 238, + "paths": [ + "M341.333 170.667c-94.251 0-179.627 38.272-241.365 99.968s-99.968 147.115-99.968 241.365 38.272 179.627 99.968 241.365 147.115 99.968 241.365 99.968h341.333c94.251 0 179.627-38.272 241.365-99.968s99.968-147.115 99.968-241.365-38.272-179.627-99.968-241.365-147.115-99.968-241.365-99.968zM341.333 256h341.333c70.699 0 134.656 28.587 181.035 74.965s74.965 110.336 74.965 181.035-28.587 134.656-74.965 181.035-110.336 74.965-181.035 74.965h-341.333c-70.699 0-134.656-28.587-181.035-74.965s-74.965-110.336-74.965-181.035 28.587-134.656 74.965-181.035 110.336-74.965 181.035-74.965zM853.333 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM768 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "toggle-right" + ], + "grid": 24 + }, + { + "id": 239, + "paths": [ + "M657.365 298.368l160.853-160.256c3.456-3.371 6.485-7.68 8.747-12.629 9.685-21.504 0.085-46.763-21.376-56.405-11.221-5.035-22.699-9.387-34.432-13.056-67.499-20.992-142.507-18.261-211.755 13.099-75.136 34.005-129.408 95.317-156.331 166.784-23.637 62.592-26.325 133.291-3.712 200.405l-275.072 275.072c-25.984 25.984-38.997 60.16-38.997 94.165s13.013 68.181 38.997 94.165 60.16 38.997 94.165 38.997 68.181-13.013 94.165-38.997l275.115-275.115c2.133 0.725 4.267 1.408 6.443 2.091 67.499 20.992 142.507 18.261 211.755-13.099 75.136-34.005 129.408-95.317 156.331-166.784s26.624-153.344-7.381-228.48c-1.92-4.395-4.864-8.747-8.704-12.587-16.683-16.683-43.691-16.683-60.331 0l-160.256 160.853zM596.736 238.933c-16.341 16.64-24.448 38.4-24.405 59.989 0.085 21.419 8.192 42.965 24.363 59.477l68.565 68.608c16.981 16.64 38.699 24.747 60.288 24.704 21.419-0.085 42.965-8.192 59.477-24.363l109.824-109.824c3.84 33.963-0.64 67.968-12.416 99.243-19.285 51.157-57.984 94.805-111.659 119.125-49.493 22.4-102.912 24.363-151.253 9.344-8.405-2.603-16.683-5.76-24.704-9.387-16.512-7.424-35.285-3.499-47.701 8.747l-294.827 294.827c-9.344 9.344-21.504 13.995-33.835 13.995s-24.491-4.651-33.835-13.995-13.995-21.504-13.995-33.835 4.651-24.491 13.995-33.835l294.827-294.827c12.843-12.843 15.787-31.829 8.704-47.744-24.277-53.675-24.533-112.043-5.248-163.2s57.984-94.805 111.659-119.125c36.352-16.469 74.88-21.888 111.915-17.621z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "tool" + ], + "grid": 24 + }, + { + "id": 240, + "paths": [ + "M768 298.667v554.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-426.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-554.667zM725.333 213.333v-42.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h42.667v554.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h426.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-554.667h42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM384 213.333v-42.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "trash" + ], + "grid": 24 + }, + { + "id": 241, + "paths": [ + "M768 298.667v554.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-426.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-554.667zM725.333 213.333v-42.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h42.667v554.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h426.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-554.667h42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM384 213.333v-42.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v42.667zM384 469.333v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM554.667 469.333v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "trash-2" + ], + "grid": 24 + }, + { + "id": 242, + "paths": [ + "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM298.667 256c-23.552 0-42.667 19.115-42.667 42.667v384c0 23.552 19.115 42.667 42.667 42.667h128c23.552 0 42.667-19.115 42.667-42.667v-384c0-23.552-19.115-42.667-42.667-42.667zM341.333 341.333h42.667v298.667h-42.667zM597.333 256c-23.552 0-42.667 19.115-42.667 42.667v213.333c0 23.552 19.115 42.667 42.667 42.667h128c23.552 0 42.667-19.115 42.667-42.667v-213.333c0-23.552-19.115-42.667-42.667-42.667zM640 341.333h42.667v128h-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "trello" + ], + "grid": 24 + }, + { + "id": 243, + "paths": [ + "M725.333 810.667h256c5.803 0 11.307-1.152 16.341-3.243s9.728-5.163 13.824-9.259 7.168-8.789 9.259-13.824c2.091-5.035 3.243-10.539 3.243-16.341v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v153.003l-332.501-332.501c-16.683-16.683-43.691-16.683-60.331 0l-183.168 183.168-289.835-289.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l320 320c16.683 16.683 43.691 16.683 60.331 0l183.168-183.168 302.336 302.336h-153.003c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "trending-down" + ], + "grid": 24 + }, + { + "id": 244, + "paths": [ + "M725.333 298.667h153.003l-302.336 302.336-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0l-320 320c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l289.835-289.835 183.168 183.168c16.683 16.683 43.691 16.683 60.331 0l332.501-332.501v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "trending-up" + ], + "grid": 24 + }, + { + "id": 245, + "paths": [ + "M475.648 186.624c3.115-5.248 7.893-10.325 14.251-14.165 10.069-6.101 21.589-7.595 32.256-4.949s20.224 9.216 26.197 19.115l361.216 603.008c2.987 5.12 5.077 11.435 5.461 18.517-0.64 15.701-5.077 25.216-12.075 32.384-7.68 7.851-18.219 12.715-29.568 12.843l-722.645-0.043c-6.485-0.043-13.696-1.749-20.523-5.717-10.197-5.888-17.024-15.317-19.883-25.899s-1.621-22.144 3.925-31.787zM402.432 142.763l-361.387 603.307c-18.005 31.189-21.589 66.133-13.141 97.707s29.013 60.075 59.648 77.739c19.797 11.435 41.643 17.067 62.933 17.152h722.901c35.797-0.384 67.712-15.104 90.581-38.485s36.864-55.595 36.48-90.923c-0.256-22.869-6.528-44.544-17.323-62.891l-361.557-603.605c-18.432-30.421-47.36-50.389-79.104-58.155s-66.603-3.456-96.811 14.891c-18.304 11.093-33.067 26.24-43.179 43.264z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "triangle" + ], + "grid": 24 + }, + { + "id": 246, + "paths": [ + "M640 640h-554.667v-469.333h554.667v170.667zM725.333 384h110.336l102.997 102.997v153.003h-213.333zM298.667 789.333c0 17.664-7.125 33.621-18.731 45.269s-27.605 18.731-45.269 18.731-33.621-7.125-45.269-18.731-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269zM938.667 789.333c0-22.912-5.163-44.587-14.379-64h57.045c23.552 0 42.667-19.115 42.667-42.667v-213.333c0-10.923-4.181-21.845-12.501-30.165l-128-128c-7.723-7.723-18.389-12.501-30.165-12.501h-128v-170.667c0-23.552-19.115-42.667-42.667-42.667h-640c-23.552 0-42.667 19.115-42.667 42.667v554.667c0 23.552 19.115 42.667 42.667 42.667h57.045c-9.216 19.413-14.379 41.088-14.379 64 0 41.216 16.768 78.635 43.733 105.6s64.384 43.733 105.6 43.733 78.635-16.768 105.6-43.733 43.733-64.384 43.733-105.6c0-22.912-5.163-44.587-14.379-64h284.757c-9.216 19.413-14.379 41.088-14.379 64 0 41.216 16.768 78.635 43.733 105.6s64.384 43.733 105.6 43.733 78.635-16.768 105.6-43.733 43.733-64.384 43.733-105.6zM853.333 789.333c0 17.664-7.125 33.621-18.731 45.269s-27.605 18.731-45.269 18.731-33.621-7.125-45.269-18.731-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "truck" + ], + "grid": 24 + }, + { + "id": 247, + "paths": [ + "M512 341.333h341.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-469.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h341.333zM695.168 55.168l-183.168 183.168-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l140.501 140.501h-238.336c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-238.336l140.501-140.501c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "tv" + ], + "grid": 24 + }, + { + "id": 248, + "paths": [ + "M853.333 128v451.669l-145.664 145.664h-195.669c-10.923 0-21.845 4.181-30.165 12.501l-97.835 97.835v-67.669c0-23.552-19.115-42.667-42.667-42.667h-170.667v-597.333zM896 42.667h-768c-23.552 0-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667h170.667v128c0 23.552 19.115 42.667 42.667 42.667 11.776 0 22.443-4.779 30.165-12.501l158.165-158.165h195.669c11.776 0 22.443-4.779 30.165-12.501l170.667-170.667c8.32-8.32 12.501-19.243 12.501-30.165v-512c0-23.552-19.115-42.667-42.667-42.667zM512 469.333v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM725.333 469.333v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "twitch" + ], + "grid": 24 + }, + { + "id": 249, + "paths": [ + "M888.875 224.512c-7.936 10.325-16.683 20.267-26.283 29.696-9.941 9.899-14.805 24.192-11.861 38.741 1.579 7.765 2.56 17.237 2.603 27.051 0 224.256-103.637 382.763-247.893 464.981-112.939 64.384-253.355 83.413-393.472 47.787 53.12-15.403 104.96-39.296 153.301-72.107 6.272-4.224 11.648-10.368 15.019-17.963 9.557-21.547-0.128-46.763-21.675-56.32-118.357-52.608-176.213-125.056-203.477-195.968-17.792-46.251-23.296-93.781-22.187-137.685 0.896-34.603 5.888-66.56 11.861-93.099 16.811 14.635 34.261 30.123 52.693 44.288 87.509 67.285 197.291 105.771 315.52 102.699 23.168-0.64 41.643-19.499 41.643-42.667v-43.136c-0.085-7.637 0.384-15.232 1.451-22.741 4.821-34.389 21.504-66.944 49.579-91.349 30.933-26.923 69.803-38.741 107.776-36.096s74.795 19.755 101.717 50.688c10.752 12.203 27.691 17.749 44.075 12.971 9.856-2.859 19.755-6.101 29.653-9.728zM956.757 93.141c-31.573 22.272-64.981 39.509-97.579 51.413-39.723-35.669-89.216-55.552-139.776-59.093-59.648-4.139-121.003 14.464-169.685 56.832-44.203 38.443-70.485 89.941-78.080 143.872-1.579 11.307-2.347 22.699-2.304 34.133-82.005-6.059-157.568-36.267-219.733-84.053-33.067-25.429-62.379-55.851-86.784-90.283-13.653-19.2-40.277-23.765-59.477-10.112-6.571 4.651-11.392 10.795-14.293 17.451 0 0-5.632 12.757-12.16 32.427-4.779 14.379-10.283 33.067-15.232 55.040-6.955 30.805-12.885 68.352-13.909 109.696-1.323 52.352 5.12 111.445 27.819 170.496 29.141 75.733 83.883 148.395 176.939 205.781-66.944 30.976-138.453 44.331-207.915 41.259-23.552-1.024-43.477 17.195-44.501 40.747-0.725 16.597 8.107 31.403 21.888 39.168 209.28 116.267 444.843 114.261 625.749 11.136 172.373-98.176 290.944-285.867 290.944-539.051-0.043-7.125-0.341-14.080-0.981-20.864 42.923-47.573 71.509-103.637 85.163-161.323 5.419-22.912-8.789-45.909-31.701-51.328-12.373-2.944-24.747-0.128-34.432 6.656z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "twitter" + ], + "grid": 24 + }, + { + "id": 250, + "paths": [ + "M469.333 213.333v597.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-597.333h256v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-23.552-19.115-42.667-42.667-42.667h-682.667c-23.552 0-42.667 19.115-42.667 42.667v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "type" + ], + "grid": 24 + }, + { + "id": 251, + "paths": [ + "M931.84 469.333h-839.424c16.512-77.824 53.717-148.224 106.027-204.629 68.992-74.411 164.181-124.373 272.811-134.741 117.888-11.264 229.077 26.283 313.771 96.213 73.259 60.501 126.507 145.109 146.816 243.2zM1023.787 507.947c-13.483-141.312-83.029-263.851-184.448-347.605s-234.88-128.853-376.192-115.371c-130.219 12.416-244.523 72.491-327.253 161.664-75.051 80.939-124.117 185.899-135.68 301.099-2.347 23.467 14.763 44.373 38.187 46.72 1.493 0.171 2.987 0.213 4.267 0.213h938.667c22.656 0 41.216-17.664 42.581-39.979-0.043-5.845-0.085-6.315-0.128-6.741zM725.333 810.667c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v298.667c0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "umbrella" + ], + "grid": 24 + }, + { + "id": 252, + "paths": [ + "M213.333 128v298.667c0 82.475 33.493 157.184 87.467 211.2s128.725 87.467 211.2 87.467 157.184-33.493 211.2-87.467 87.467-128.725 87.467-211.2v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v298.667c0 58.923-23.851 112.213-62.464 150.869s-91.947 62.464-150.869 62.464-112.213-23.851-150.869-62.464-62.464-91.947-62.464-150.869v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM170.667 938.667h682.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-682.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "underline" + ], + "grid": 24 + }, + { + "id": 253, + "paths": [ + "M213.333 512h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-298.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM341.333 426.667v-128c-0.043-47.189 18.987-89.813 49.877-120.789 30.848-30.891 73.344-50.005 120.363-50.091 43.947 0.128 83.115 16.128 113.152 42.667 27.221 24.107 46.805 56.832 54.613 94.251 4.821 23.083 27.392 37.888 50.475 33.067s37.888-27.392 33.067-50.475c-11.605-55.765-40.875-104.704-81.579-140.757-45.227-40.021-104.619-64.171-169.515-64.085-70.699 0.085-134.699 28.843-180.949 75.179s-74.923 110.379-74.837 181.035v128h-42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v298.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "unlock" + ], + "grid": 24 + }, + { + "id": 254, + "paths": [ + "M853.333 640v170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 230.997v409.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-409.003l140.501 140.501c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-213.333-213.333c-3.925-3.925-8.619-7.083-13.824-9.259-10.453-4.309-22.229-4.309-32.683 0-5.035 2.091-9.728 5.163-13.824 9.259l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "upload" + ], + "grid": 24 + }, + { + "id": 255, + "paths": [ + "M469.333 614.997v281.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-281.003l97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-170.667-170.667c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243c-10.923 0-21.845 4.181-30.165 12.501l-170.667 170.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM890.411 822.101c62.037-33.835 104.576-89.685 123.051-152.491s13.013-132.779-20.821-194.816c-28.971-53.12-74.112-91.947-126.251-113.621-30.891-12.843-64.213-19.627-98.091-19.84h-22.485c-30.933-87.765-91.477-158.208-167.125-202.752-84.608-49.835-188.373-67.456-291.029-40.917s-184.875 92.245-234.752 176.853-67.456 188.373-40.917 291.029c15.872 61.312 45.781 115.584 84.267 158.421 15.744 17.536 42.752 18.944 60.245 3.2s18.944-42.752 3.2-60.245c-29.355-32.64-52.693-74.667-65.109-122.752-20.651-79.872-6.997-160.469 31.829-226.347s102.699-116.907 182.571-137.557 160.469-6.997 226.347 31.829 116.907 102.699 137.557 182.571c4.949 18.56 21.589 32 41.344 32h53.461c22.869 0.171 45.269 4.736 65.92 13.312 34.773 14.464 64.725 40.235 84.053 75.648 22.571 41.387 26.24 87.936 13.867 129.877s-40.661 79.104-82.048 101.632c-20.693 11.264-28.331 37.205-17.024 57.899s37.205 28.331 57.899 17.024z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "upload-cloud" + ], + "grid": 24 + }, + { + "id": 256, + "paths": [ + "M896 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-341.333c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h341.333c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM725.333 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM640 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "user" + ], + "grid": 24 + }, + { + "id": 257, + "paths": [ + "M725.333 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM576 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM490.667 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM695.168 499.499l85.333 85.333c16.683 16.683 43.691 16.683 60.331 0l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-140.501 140.501-55.168-55.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "user-check" + ], + "grid": 24 + }, + { + "id": 258, + "paths": [ + "M725.333 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM576 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM490.667 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM981.333 426.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "user-minus" + ], + "grid": 24 + }, + { + "id": 259, + "paths": [ + "M725.333 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM576 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM490.667 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM981.333 426.667h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "user-plus" + ], + "grid": 24 + }, + { + "id": 260, + "paths": [ + "M725.333 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM576 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM490.667 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM951.168 311.168l-76.501 76.501-76.501-76.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l76.501 76.501-76.501 76.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l76.501-76.501 76.501 76.501c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-76.501-76.501 76.501-76.501c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "user-x" + ], + "grid": 24 + }, + { + "id": 261, + "paths": [ + "M768 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-341.333c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h341.333c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM597.333 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM512 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM1024 896v-85.333c-0.043-53.12-19.499-101.76-51.84-139.136-27.819-32.128-65.195-55.936-107.904-67.243-22.784-6.016-46.123 7.552-52.139 30.336s7.552 46.123 30.336 52.139c25.899 6.869 48.469 21.248 65.195 40.619 19.371 22.443 30.976 51.456 31.019 83.285v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM672.085 174.891c34.261 8.789 61.653 30.507 78.379 58.752s22.656 62.72 13.867 96.981c-7.509 29.355-24.533 53.589-47.147 70.485-13.397 10.027-28.8 17.451-45.355 21.803-22.784 5.973-36.437 29.312-30.421 52.096s29.312 36.437 52.096 30.421c27.179-7.125 52.565-19.413 74.752-36.011 37.717-28.16 66.219-68.821 78.72-117.675 14.592-57.045 4.693-114.731-23.125-161.621s-73.6-83.328-130.645-97.963c-22.827-5.845-46.080 7.936-51.925 30.763s7.936 46.080 30.763 51.925z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "users" + ], + "grid": 24 + }, + { + "id": 262, + "paths": [ + "M938.667 381.568v260.864l-182.613-130.432zM128 170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h469.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-130.432l231.211 165.163c19.157 13.696 45.824 9.259 59.52-9.899 5.376-7.595 7.979-16.341 7.936-24.832v-426.667c0-23.552-19.115-42.667-42.667-42.667-9.301 0-17.92 2.987-24.789 7.936l-231.211 165.163v-130.432c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM128 256h469.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-469.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "video" + ], + "grid": 24 + }, + { + "id": 263, + "paths": [ + "M454.827 256h142.507c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v142.507c0 11.776 4.779 22.443 12.501 30.165l42.667 42.667c14.976 14.976 38.315 16.512 55.168 4.395l188.331-136.192v343.125c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-426.667c0.043-8.576-2.603-17.408-8.107-25.003-13.824-19.072-40.491-23.381-59.563-9.557l-226.517 163.883-4.48-4.48v-124.843c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-142.507c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM195.669 256l444.331 444.331v25.003c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-469.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM12.501 72.832l98.901 98.901c-28.715 3.712-54.485 16.981-73.899 36.437-23.125 23.083-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h469.333c35.328 0 67.413-14.379 90.496-37.504 11.477-11.477 20.821-25.173 27.307-40.363l236.032 236.032c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.667-938.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "video-off" + ], + "grid": 24 + }, + { + "id": 264, + "paths": [ + "M384 490.667c0 41.259-16.683 78.507-43.733 105.6s-64.341 43.733-105.6 43.733-78.507-16.683-105.6-43.733-43.733-64.341-43.733-105.6 16.683-78.507 43.733-105.6 64.341-43.733 105.6-43.733 78.507 16.683 105.6 43.733 43.733 64.341 43.733 105.6zM938.667 490.667c0 41.259-16.683 78.507-43.733 105.6s-64.341 43.733-105.6 43.733-78.507-16.683-105.6-43.733-43.733-64.341-43.733-105.6 16.683-78.507 43.733-105.6 64.341-43.733 105.6-43.733 78.507 16.683 105.6 43.733 43.733 64.341 43.733 105.6zM234.667 725.333h554.667c64.811 0 123.52-26.325 165.931-68.736s68.736-101.12 68.736-165.931-26.325-123.52-68.736-165.931-101.12-68.736-165.931-68.736-123.52 26.325-165.931 68.736-68.736 101.12-68.736 165.931c0 56.704 20.181 108.8 53.632 149.333h-192.597c33.451-40.533 53.632-92.629 53.632-149.333 0-64.811-26.325-123.52-68.736-165.931s-101.12-68.736-165.931-68.736-123.52 26.325-165.931 68.736-68.736 101.12-68.736 165.931 26.325 123.52 68.736 165.931 101.12 68.736 165.931 68.736z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "voicemail" + ], + "grid": 24 + }, + { + "id": 265, + "paths": [ + "M426.667 302.123v419.797l-144-115.2c-7.253-5.845-16.555-9.387-26.667-9.387h-128v-170.667h128c9.301 0.043 18.731-3.029 26.667-9.344zM442.667 180.011l-201.643 161.323h-155.691c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h155.691l201.643 161.323c18.389 14.72 45.269 11.733 59.989-6.656 6.315-7.893 9.387-17.365 9.344-26.667v-597.333c0-23.552-19.115-42.667-42.667-42.667-10.112 0-19.413 3.541-26.667 9.344z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "volume" + ], + "grid": 24 + }, + { + "id": 266, + "paths": [ + "M426.667 302.123v419.797l-144-115.2c-7.253-5.845-16.555-9.387-26.667-9.387h-128v-170.667h128c9.301 0.043 18.731-3.029 26.667-9.344zM442.667 180.011l-201.643 161.323h-155.691c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h155.691l201.643 161.323c18.389 14.72 45.269 11.733 59.989-6.656 6.315-7.893 9.387-17.365 9.344-26.667v-597.333c0-23.552-19.115-42.667-42.667-42.667-10.112 0-19.413 3.541-26.667 9.344zM632.875 391.125c33.323 33.323 49.963 76.928 49.963 120.661s-16.64 87.339-49.963 120.661c-16.64 16.683-16.64 43.691 0 60.331s43.691 16.64 60.331 0c49.963-49.963 74.965-115.541 74.965-180.992s-25.003-131.029-74.965-180.992c-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "volume-1" + ], + "grid": 24 + }, + { + "id": 267, + "paths": [ + "M426.667 302.123v419.797l-144-115.2c-7.253-5.845-16.555-9.387-26.667-9.387h-128v-170.667h128c9.301 0.043 18.731-3.029 26.667-9.344zM442.667 180.011l-201.643 161.323h-155.691c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h155.691l201.643 161.323c18.389 14.72 45.269 11.733 59.989-6.656 6.315-7.893 9.387-17.365 9.344-26.667v-597.333c0-23.552-19.115-42.667-42.667-42.667-10.112 0-19.413 3.541-26.667 9.344zM783.488 240.512c74.965 75.008 112.427 173.184 112.427 271.531 0 98.304-37.461 196.48-112.427 271.445-16.64 16.683-16.64 43.691 0 60.331s43.691 16.64 60.331 0c91.605-91.605 137.387-211.755 137.429-331.776 0-120.021-45.824-240.213-137.429-331.861-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM632.875 391.125c33.323 33.323 49.963 76.928 49.963 120.661s-16.64 87.339-49.963 120.661c-16.64 16.683-16.64 43.691 0 60.331s43.691 16.64 60.331 0c49.963-49.963 74.965-115.541 74.965-180.992s-25.003-131.029-74.965-180.992c-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "volume-2" + ], + "grid": 24 + }, + { + "id": 268, + "paths": [ + "M426.667 302.123v419.797l-144-115.2c-7.253-5.845-16.555-9.387-26.667-9.387h-128v-170.667h128c9.301 0.043 18.731-3.029 26.667-9.344zM442.667 180.011l-201.643 161.323h-155.691c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h155.691l201.643 161.323c18.389 14.72 45.269 11.733 59.989-6.656 6.315-7.893 9.387-17.365 9.344-26.667v-597.333c0-23.552-19.115-42.667-42.667-42.667-10.112 0-19.413 3.541-26.667 9.344zM695.168 414.165l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "volume-x" + ], + "grid": 24 + }, + { + "id": 269, + "paths": [ + "M469.333 384v128c0 11.776 4.779 22.443 12.501 30.165l64 64c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-51.499-51.499v-110.336c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM654.080 822.443l-7.083 77.355c-1.024 11.349-6.272 21.12-14.208 28.075-7.68 6.784-17.707 10.795-28.587 10.795h-184.789c-11.52 0.043-21.717-4.267-29.44-11.477-7.467-6.997-12.416-16.597-13.44-27.435l-7.040-77.525c43.349 19.968 91.648 31.104 142.507 31.104 50.688 0 98.816-11.051 142.080-30.891zM349.312 314.325c44.245-36.48 100.864-58.325 162.688-58.325 70.699 0 134.656 28.587 181.035 74.965s74.965 110.336 74.965 181.035-28.587 134.656-74.965 181.035c-4.437 4.437-9.003 8.704-13.781 12.8-1.493 1.323-3.029 2.603-4.565 3.84-44.245 36.48-100.864 58.325-162.688 58.325-70.699 0-134.656-28.587-181.035-74.965s-74.965-110.336-74.965-181.035 28.587-134.656 74.965-181.035c4.437-4.437 9.003-8.704 13.781-12.8 1.493-1.323 3.029-2.603 4.565-3.84zM746.283 263.765l-13.44-147.413c-2.987-32.256-17.835-61.013-40.021-81.792-22.997-21.547-54.016-34.688-87.808-34.56h-185.771c-32.213 0.128-62.037 12.203-84.693 32.299-23.509 20.821-39.467 50.432-42.539 84.139l-13.397 146.475c-2.688 2.517-5.376 5.12-7.979 7.723-61.696 61.739-99.968 147.115-99.968 241.365s38.272 179.627 99.968 241.365c2.475 2.475 4.992 4.907 7.509 7.296l13.44 146.987c2.987 32.256 17.835 61.013 40.021 81.792 22.997 21.547 54.016 34.688 87.808 34.56h184.704c32.384 0.043 62.421-12.032 85.205-32.171 23.595-20.864 39.637-50.517 42.667-84.267l13.397-146.475c2.688-2.517 5.376-5.12 7.979-7.723 61.696-61.739 99.968-147.115 99.968-241.365s-38.272-179.627-99.968-241.365c-2.304-2.304-4.693-4.608-7.040-6.869zM369.92 201.557l7.083-77.355c1.024-11.307 6.272-21.077 14.123-28.032 7.637-6.784 17.579-10.795 28.459-10.837h185.429c11.52-0.043 21.717 4.267 29.44 11.477 7.467 6.997 12.416 16.597 13.44 27.435l7.083 77.696c-43.52-20.053-91.947-31.275-142.976-31.275-50.688 0-98.816 11.051-142.080 30.891z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "watch" + ], + "grid": 24 + }, + { + "id": 270, + "paths": [ + "M240.64 568.235c83.712-69.717 186.069-101.931 287.275-98.347 92.459 3.285 183.893 36.48 259.029 98.475 18.176 14.976 45.056 12.416 60.075-5.76s12.416-45.056-5.76-60.075c-89.899-74.155-199.424-113.963-310.272-117.888-121.429-4.309-244.523 34.389-344.917 118.059-18.091 15.061-20.565 41.984-5.461 60.075s41.984 20.565 60.075 5.461zM88.789 416c125.312-110.464 281.6-162.987 436.736-159.445 146.901 3.371 292.651 57.045 409.771 159.531 17.749 15.531 44.672 13.739 60.203-4.011s13.739-44.672-4.011-60.203c-132.608-116.053-297.685-176.853-464.043-180.651-175.744-4.011-353.067 55.595-495.061 180.779-17.707 15.573-19.371 42.539-3.797 60.203s42.539 19.371 60.203 3.797zM388.651 722.133c42.24-30.037 91.563-42.453 139.691-38.656 38.016 2.987 75.307 16.128 107.648 38.784 19.285 13.525 45.909 8.832 59.435-10.453s8.832-45.909-10.453-59.435c-44.928-31.488-96.811-49.792-149.888-53.973-67.413-5.333-136.704 12.16-195.84 54.144-19.2 13.653-23.723 40.277-10.069 59.477s40.277 23.723 59.477 10.069zM512 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "wifi" + ], + "grid": 24 + }, + { + "id": 271, + "paths": [ + "M694.656 510.251c33.664 16.427 63.915 36.565 88.064 57.472 17.835 15.403 44.757 13.483 60.203-4.352s13.483-44.757-4.352-60.203c-29.995-25.984-66.517-50.133-106.496-69.675-21.163-10.325-46.72-1.536-57.045 19.627s-1.536 46.72 19.627 57.045zM460.373 258.005c171.52-13.824 332.629 41.301 456.363 142.379 6.229 5.12 12.373 10.325 18.432 15.659 17.664 15.573 44.629 13.867 60.203-3.797s13.867-44.629-3.797-60.203c-6.827-6.016-13.824-11.947-20.864-17.707-140.117-114.475-322.816-177.024-517.205-161.323-23.467 1.835-40.96 22.4-39.083 45.867s22.485 41.003 45.952 39.083zM388.651 722.133c42.24-30.037 91.563-42.453 139.691-38.656 38.016 2.987 75.307 16.128 107.648 38.784 9.941 6.955 21.845 9.088 32.853 6.912l282.325 282.325c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-544-544c-2.133-2.688-4.523-5.12-7.211-7.211l-387.456-387.456c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l174.421 174.421c-53.632 26.837-106.24 61.995-154.581 104.747-17.664 15.616-19.328 42.581-3.712 60.245s42.581 19.328 60.245 3.712c50.816-44.928 106.624-80.085 162.219-104.576l99.115 99.115c-57.941 19.499-113.963 50.219-164.224 92.203-18.091 15.104-20.48 42.027-5.376 60.117s42.027 20.48 60.117 5.376c54.187-45.312 116.224-74.667 178.688-88.491l118.997 118.997c-1.109-0.085-2.219-0.213-3.328-0.299-67.413-5.333-136.704 12.16-195.84 54.144-19.2 13.653-23.723 40.277-10.069 59.477s40.277 23.723 59.477 10.069zM512 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "wifi-off" + ], + "grid": 24 + }, + { + "id": 272, + "paths": [ + "M439.424 225.92c8.32-8.363 19.157-12.544 30.123-12.587s21.845 4.096 30.208 12.416 12.544 19.157 12.587 30.123-4.096 21.845-12.416 30.208c-8.192 8.277-18.859 12.459-29.739 12.587h-384.853c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h385.835c32.341-0.384 64.683-12.971 89.301-37.76 24.917-25.045 37.333-57.941 37.205-90.624s-12.715-65.493-37.76-90.411-57.899-37.291-90.581-37.205-65.493 12.715-90.411 37.76c-16.64 16.725-16.555 43.733 0.171 60.331s43.733 16.512 60.331-0.171zM506.923 858.24c24.917 25.045 57.685 37.675 90.411 37.76s65.579-12.331 90.624-37.205 37.675-57.685 37.76-90.411-12.331-65.579-37.205-90.624c-24.619-24.789-56.96-37.376-89.301-37.76h-513.877c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h512.853c10.88 0.128 21.547 4.309 29.781 12.587 8.32 8.363 12.459 19.243 12.416 30.208s-4.224 21.803-12.587 30.123-19.243 12.459-30.208 12.416-21.803-4.224-30.123-12.587c-16.597-16.725-43.648-16.811-60.331-0.171s-16.811 43.648-0.171 60.331zM786.603 360.021c12.544-12.501 28.843-18.688 45.269-18.688s32.725 6.272 45.227 18.816 18.688 28.843 18.688 45.269-6.272 32.725-18.816 45.227c-12.459 12.459-28.715 18.645-45.099 18.688l-746.539-0c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h746.752c38.016-0.085 76.117-14.592 105.216-43.605 29.184-29.099 43.819-67.371 43.861-105.557s-14.507-76.459-43.605-105.643-67.413-43.819-105.557-43.861-76.459 14.507-105.643 43.605c-16.683 16.64-16.725 43.648-0.085 60.331s43.648 16.725 60.331 0.085z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "wind" + ], + "grid": 24 + }, + { + "id": 273, + "paths": [ + "M225.835 286.165l225.835 225.835-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l225.835-225.835 225.835 225.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-225.835-225.835 225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.835 225.835-225.835-225.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "x" + ], + "grid": 24 + }, + { + "id": 274, + "paths": [ + "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM353.835 414.165l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "x-circle" + ], + "grid": 24 + }, + { + "id": 275, + "paths": [ + "M335.36 42.667c-10.923 0-21.845 4.181-30.165 12.501l-250.027 250.027c-7.723 7.723-12.501 18.389-12.501 30.165v353.28c0 10.923 4.181 21.845 12.501 30.165l250.027 250.027c7.723 7.723 18.389 12.501 30.165 12.501h353.28c10.923 0 21.845-4.181 30.165-12.501l250.027-250.027c7.723-7.723 12.501-18.389 12.501-30.165v-353.28c0-10.923-4.181-21.845-12.501-30.165l-250.027-250.027c-7.723-7.723-18.389-12.501-30.165-12.501zM353.024 128h317.952l225.024 225.024v317.952l-225.024 225.024h-317.952l-225.024-225.024v-317.952zM353.835 414.165l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "x-octagon" + ], + "grid": 24 + }, + { + "id": 276, + "paths": [ + "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM609.835 353.835l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "x-square" + ], + "grid": 24 + }, + { + "id": 277, + "paths": [ + "M920.021 283.179c12.245 65.237 19.115 140.587 18.645 218.667 0.811 65.195-5.248 139.392-18.645 214.229-2.432 8.875-6.4 17.195-11.605 24.533-9.685 13.696-23.808 24.107-40.491 28.8-25.771 6.869-91.989 11.733-165.419 14.549-95.147 3.669-190.507 3.669-190.507 3.669s-95.36 0-190.507-3.627c-73.429-2.816-139.648-7.637-164.949-14.421-8.747-2.432-16.896-6.357-24.149-11.435-13.269-9.387-23.467-22.869-28.587-39.381-12.16-65.109-18.944-140.203-18.475-218.027-0.896-65.707 5.163-140.459 18.645-215.893 2.432-8.875 6.4-17.195 11.605-24.533 9.685-13.696 23.808-24.107 40.491-28.8 25.771-6.869 91.989-11.733 165.419-14.549 95.147-3.627 190.507-3.627 190.507-3.627s95.36 0 190.549 3.328c73.344 2.56 140.032 6.955 164.523 12.928 9.344 2.688 17.963 7.040 25.515 12.757 13.099 9.899 22.955 23.936 27.435 40.875zM1003.093 263.552c-9.259-36.949-30.635-67.84-59.008-89.301-15.915-12.032-33.963-21.077-53.291-26.667-38.315-9.387-115.029-13.781-185.259-16.213-96.725-3.371-193.536-3.371-193.536-3.371s-96.939 0-193.749 3.712c-70.059 2.688-147.2 7.467-184.192 17.365-37.291 10.539-67.456 32.853-88.064 61.867-11.52 16.256-20.011 34.603-25.045 54.101-0.256 1.024-0.469 2.091-0.64 3.029-14.635 80.981-21.291 161.835-20.309 233.856-0.512 82.091 6.869 163.456 20.352 234.752 0.256 1.323 0.555 2.645 0.896 3.755 10.453 36.693 32.853 66.859 61.909 87.381 15.232 10.752 32.299 18.901 50.432 23.936 37.504 10.027 114.603 14.805 184.661 17.493 96.811 3.712 193.749 3.712 193.749 3.712s96.939 0 193.749-3.712c70.059-2.688 147.157-7.467 184.192-17.365 37.248-10.539 67.456-32.853 88.021-61.867 11.52-16.256 20.053-34.603 25.045-54.059 0.256-1.067 0.512-2.133 0.64-3.029 14.507-80.384 21.163-160.64 20.309-232.107 0.512-82.133-6.869-163.541-20.352-234.837-0.171-0.853-0.341-1.707-0.512-2.432zM458.667 567.509v-132.352l116.352 66.176zM437.077 677.931l245.333-139.52c20.48-11.648 27.648-37.717 16-58.197-3.968-6.997-9.643-12.459-16-16l-245.333-139.52c-20.48-11.648-46.549-4.48-58.197 16-3.84 6.741-5.632 14.080-5.589 21.077v279.040c0 23.552 19.115 42.667 42.667 42.667 7.765 0 15.019-2.091 21.077-5.589z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "youtube" + ], + "grid": 24 + }, + { + "id": 278, + "paths": [ + "M494.293 224.427l-24.619 196.949c1.408 30.549 19.84 47.957 42.325 47.957h292.907l-275.2 330.24 24.619-196.949c-1.408-30.549-19.84-47.957-42.325-47.957h-292.907zM521.899 58.027l-426.667 512c-15.104 18.091-12.629 45.013 5.461 60.075 7.979 6.699 17.707 9.941 27.307 9.899h335.659l-36.651 293.376c-2.944 23.381 13.653 44.715 37.035 47.616 14.891 1.877 28.928-4.181 38.059-15.019l426.667-512c15.104-18.091 12.629-45.013-5.461-60.075-7.979-6.699-17.707-9.941-27.307-9.899h-335.659l36.651-293.376c2.944-23.381-13.653-44.715-37.035-47.616-14.891-1.877-28.928 4.181-38.059 15.019z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "zap" + ], + "grid": 24 + }, + { + "id": 279, + "paths": [ + "M571.819 293.248l25.173-202.667c2.901-23.381-13.696-44.715-37.077-47.616-14.891-1.835-28.928 4.224-38.059 15.061l-103.68 124.587c-15.061 18.133-12.587 45.013 5.504 60.117s45.013 12.629 60.075-5.504l10.624-12.757-7.253 58.283c-2.901 23.381 13.696 44.715 37.077 47.616s44.715-13.696 47.616-37.077zM825.088 578.176l103.68-124.16c15.104-18.091 12.672-45.013-5.419-60.117-8.021-6.656-17.749-9.941-27.349-9.899h-227.84c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h136.619l-45.227 54.144c-15.104 18.091-12.672 45.013 5.419 60.117s45.013 12.672 60.117-5.419zM553.003 613.333l71.936 71.936-95.232 114.261zM344.192 404.523l150.144 150.144h-275.243zM12.501 72.832l271.104 271.104-188.373 226.091c-15.104 18.091-12.629 45.013 5.461 60.075 7.979 6.699 17.707 9.941 27.307 9.899h335.659l-36.651 293.376c-2.944 23.381 13.653 44.715 37.035 47.616 14.891 1.877 28.928-4.181 38.059-15.019l183.424-220.117 265.643 265.643c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.667-938.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "zap-off" + ], + "grid": 24 + }, + { + "id": 280, + "paths": [ + "M684.416 676.523c-1.451 1.109-2.859 2.347-4.224 3.712s-2.56 2.731-3.712 4.224c-53.675 51.755-126.677 83.541-207.147 83.541-82.475 0-157.099-33.365-211.2-87.467s-87.467-128.725-87.467-211.2 33.365-157.099 87.467-211.2 128.725-87.467 211.2-87.467 157.099 33.365 211.2 87.467 87.467 128.725 87.467 211.2c0 80.469-31.787 153.472-83.584 207.189zM926.165 865.835l-156.8-156.8c52.523-65.707 83.968-149.035 83.968-239.701 0-106.027-43.008-202.069-112.469-271.531s-165.504-112.469-271.531-112.469-202.069 43.008-271.531 112.469-112.469 165.504-112.469 271.531 43.008 202.069 112.469 271.531 165.504 112.469 271.531 112.469c90.667 0 173.995-31.445 239.701-83.968l156.8 156.8c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331zM341.333 512h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "zoom-in" + ], + "grid": 24 + }, + { + "id": 281, + "paths": [ + "M684.416 676.523c-1.451 1.109-2.859 2.347-4.224 3.712s-2.56 2.731-3.712 4.224c-53.675 51.755-126.677 83.541-207.147 83.541-82.475 0-157.099-33.365-211.2-87.467s-87.467-128.725-87.467-211.2 33.365-157.099 87.467-211.2 128.725-87.467 211.2-87.467 157.099 33.365 211.2 87.467 87.467 128.725 87.467 211.2c0 80.469-31.787 153.472-83.584 207.189zM926.165 865.835l-156.8-156.8c52.523-65.707 83.968-149.035 83.968-239.701 0-106.027-43.008-202.069-112.469-271.531s-165.504-112.469-271.531-112.469-202.069 43.008-271.531 112.469-112.469 165.504-112.469 271.531 43.008 202.069 112.469 271.531 165.504 112.469 271.531 112.469c90.667 0 173.995-31.445 239.701-83.968l156.8 156.8c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331zM341.333 512h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "zoom-out" + ], + "grid": 24 + } + ] + } + ], + "uid": -1, + "preferences": { + "showGlyphs": true, + "showCodes": true, + "showQuickUse": true, + "showQuickUse2": true, + "showSVGs": true, + "fontPref": { + "prefix": "icon-", + "metadata": {}, + "metrics": { + "emSize": 1024, + "baseline": 6.25, + "whitespace": 50 + } + }, + "imagePref": { + "prefix": "icon-", + "png": false, + "useClassSelector": true, + "color": 0, + "bgColor": 16777215, + "name": "icomoon", + "classSelector": ".icon", + "height": 32, + "columns": 16, + "margin": 16 + }, + "historySize": 50 + } +} \ No newline at end of file diff --git a/i18n/cn.yaml b/i18n/cn.yaml deleted file mode 100644 index ba91f48bb..000000000 --- a/i18n/cn.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# This should be removed in future, 'cn' is moved to `zh' -- id: Search - translation: 搜索 - -- id: Edit this page - translation: 编辑本页 - -- id: Last modified by - translation: 最后修改者 - -- id: Expand - translation: 展开 - -- id: bookSearchConfig - translation: | - { - encode: false, - tokenize: function(str) { - return str.replace(/[\x00-\x7F]/g, '').split(''); - } - } diff --git a/i18n/de.yaml b/i18n/de.yaml deleted file mode 100644 index 3c34c2aa8..000000000 --- a/i18n/de.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- id: Search - translation: Suche - -- id: Edit this page - translation: Seite bearbeiten - -- id: Last modified by - translation: Zuletzt geändert am - -- id: Expand - translation: Erweitern - -- id: bookSearchConfig - translation: '{ cache: true }' diff --git a/i18n/en.yaml b/i18n/en.yaml deleted file mode 100644 index 2eace9329..000000000 --- a/i18n/en.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- id: Search [s] - translation: Search [s] - -- id: Edit this page - translation: Edit this page - -- id: Last modified by - translation: Last modified by - -- id: Expand - translation: Expand - -- id: bookSearchConfig - translation: '{ cache: true }' diff --git a/i18n/es.yaml b/i18n/es.yaml deleted file mode 100644 index db4da6016..000000000 --- a/i18n/es.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- id: Search - translation: Buscar - -- id: Edit this page - translation: Editar esta página - -- id: Last modified by - translation: Última modificación por - -- id: Expand - translation: Expand - -- id: bookSearchConfig - translation: '{ cache: true }' diff --git a/i18n/fr.yaml b/i18n/fr.yaml deleted file mode 100644 index 3397f9a8c..000000000 --- a/i18n/fr.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- id: Search - translation: Rechercher - -- id: Edit this page - translation: Modifier cette page - -- id: Last modified by - translation: Dernière modification par - -- id: Expand - translation: Développer - -- id: bookSearchConfig - translation: '{ cache: true }' diff --git a/i18n/jp.yaml b/i18n/jp.yaml deleted file mode 100644 index 77f87becf..000000000 --- a/i18n/jp.yaml +++ /dev/null @@ -1,20 +0,0 @@ -- id: Search - translation: 検索 - -- id: Edit this page - translation: このページを編集する - -- id: Last modified by - translation: 最終更新者 - -- id: Expand - translation: 展開 - -- id: bookSearchConfig - translation: | - { - encode: false, - tokenize: function(str) { - return str.replace(/[\x00-\x7F]/g, '').split(''); - } - } diff --git a/i18n/ko.yaml b/i18n/ko.yaml deleted file mode 100644 index 5c1fdb07d..000000000 --- a/i18n/ko.yaml +++ /dev/null @@ -1,20 +0,0 @@ -- id: Search - translation: Search - -- id: Edit this page - translation: Edit this page - -- id: Last modified by - translation: Last modified by - -- id: Expand - translation: Expand - -- id: bookSearchConfig - translation: | - { - encode: false, - tokenize: function(str) { - return str.replace(/[\x00-\x7F]/g, '').split(''); - } - } diff --git a/i18n/nb.yaml b/i18n/nb.yaml deleted file mode 100644 index 4b8537865..000000000 --- a/i18n/nb.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- id: Search - translation: Søk - -- id: Edit this page - translation: Rediger denne siden - -- id: Last modified by - translation: Sist endret av - -- id: Expand - translation: Utvid - -- id: bookSearchConfig - translation: '{ cache: true }' diff --git a/i18n/pt.yaml b/i18n/pt.yaml deleted file mode 100644 index a3ac233c6..000000000 --- a/i18n/pt.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- id: Search [s] - translation: Pesquisar [s] - -- id: Edit this page - translation: Editar página - -- id: Last modified by - translation: Última modificação por - -- id: Expand - translation: Expandir - -- id: bookSearchConfig - translation: '{ cache: true }' diff --git a/i18n/ru.yaml b/i18n/ru.yaml deleted file mode 100644 index b4fd64555..000000000 --- a/i18n/ru.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- id: Search - translation: Поиск - -- id: Edit this page - translation: Редактировать эту страницу - -- id: Last modified by - translation: Последнее изменение от - -- id: Expand - translation: Развернуть - -- id: bookSearchConfig - translation: '{ split: /[^a-zа-яё0-9\w]/gi }' diff --git a/i18n/sv.yaml b/i18n/sv.yaml deleted file mode 100644 index c2b9d4e0b..000000000 --- a/i18n/sv.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- id: Search - translation: Sök - -- id: Edit this page - translation: Redigera denna sida - -- id: Last modified by - translation: Senast modifierad av - -- id: Expand - translation: Expandera - -- id: bookSearchConfig - translation: '{ cache: true }' diff --git a/i18n/uk.yaml b/i18n/uk.yaml deleted file mode 100644 index 03e21f773..000000000 --- a/i18n/uk.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- id: Search - translation: Пошук - -- id: Edit this page - translation: Редагувати цю сторінку - -- id: Last modified by - translation: Остання зміна від - -- id: Expand - translation: Розгорнути - -- id: bookSearchConfig - translation: '{ split: /[^a-zа-яё0-9\w]/gi }' diff --git a/i18n/zh.yaml b/i18n/zh.yaml deleted file mode 100644 index 6f326d132..000000000 --- a/i18n/zh.yaml +++ /dev/null @@ -1,20 +0,0 @@ -- id: Search - translation: 搜索 - -- id: Edit this page - translation: 编辑本页 - -- id: Last modified by - translation: 最后修改者 - -- id: Expand - translation: 展开 - -- id: bookSearchConfig - translation: | - { - encode: false, - tokenize: function(str) { - return str.replace(/[\x00-\x7F]/g, '').split(''); - } - } diff --git a/layouts/_default/_markup/render-heading.html b/layouts/_default/_markup/render-heading.html index a01bf5df9..7315abcfc 100644 --- a/layouts/_default/_markup/render-heading.html +++ b/layouts/_default/_markup/render-heading.html @@ -1,5 +1,5 @@ -{{/* - render-heading.html is a hugo hook called for each heading in each markdown doc, +{{/* + render-heading.html is a hugo hook called for each heading in each markdown doc, allowing us to control the HTML generated and fix the id generation to work for a single page site, and add anchors and state badges. */}} @@ -10,7 +10,7 @@ {{- $pathParts := split $path "/" -}} {{- $pathSize := len $pathParts -}} -{{/* +{{/* .Level is the heading number from the original markdown, e.g 1 for an h1. $level is the corrected heading number given the depth of the file in the tree. */}} @@ -18,28 +18,57 @@ {{- $originalLevel := default 1 .Level -}} {{- $anchor := "" -}} -{{/* +{{/* each markdown doc must have exactly 1 h1 element. - e.g. in intro/_index.md, the h1 gets the id #intro... - + e.g. in intro/_index.md, the h1 gets the id #intro... + ...while the subsequent headings have the .Anchor appended which is a hugo provided id derived from the heading text. e.g in intro/_index.md

Spec Status

gets the id #intro__spec-status */}} -{{- if eq .Level 1 -}} - {{- $anchor = (delimit $pathParts "__") -}} -{{- else -}} - {{- $anchor = printf "%s__%s" (delimit $pathParts "__") .Anchor -}} -{{- end -}} +{{- $anchor = printf "section-%s.%s" (delimit $pathParts ".") .Anchor -}} -{{/* +{{/* - headings get numbered by css; changing the nesting requires updating numbered.scss. - heading text is grabbed by toc.js as the ToC link text */}} - {{ .Text | safeHTML }} + {{ .Text | safeHTML }} + + +
+ + + + +
-
-{{- if or (eq $level 2) (eq $level 3) -}} - {{- partial "state-badge.html" .Page.Params -}} -{{- end -}} -
diff --git a/layouts/_default/_markup/render-image.html b/layouts/_default/_markup/render-image.html index b5de27b79..0da2c825d 100644 --- a/layouts/_default/_markup/render-image.html +++ b/layouts/_default/_markup/render-image.html @@ -6,17 +6,14 @@ {{ $ext := path.Ext .Destination }} {{ $supported := in ".mmd,.dot" $ext }} -
-
+ {{- if $isRemote -}} {{ $genPath = .Destination }} - {{ .Text }} {{- else if eq $supported false -}} {{ $src := .Page.Resources.GetMatch .Destination }} - {{ with $src }} + {{ with $src }} {{ $genPath = .RelPermalink }} - {{ $title }} {{- else -}} {{- errorf "Image '%s' not found from Page '%s'" .Destination .Page.File }} {{ end }} @@ -30,15 +27,26 @@ {{- end -}} {{ if fileExists $path }} - {{ .Text }} {{ else }} {{- errorf "Image '%s' not found from Page '%s'" $src .Page.File }} {{ end }} {{- end -}} -
+{{ $slug := (printf "figure-%s" (anchorize $title)) }} + + + +
- Figure: {{ $title }} - Open in tab + + + + + +
-
\ No newline at end of file +
+ {{ $title }} +
+ +
diff --git a/layouts/shortcodes/embed.html b/layouts/shortcodes/embed.html index 3326f2b55..92bf3c437 100644 --- a/layouts/shortcodes/embed.html +++ b/layouts/shortcodes/embed.html @@ -38,6 +38,17 @@ {{ end }} {{ if $content }} +
+
+ + {{- if $external -}} + + + + + + {{- end -}} +
{{ if eq $markdown "true" }} {{ $content | markdownify }} {{ else if $symbolName }} @@ -70,39 +81,23 @@ {{- end -}} {{- if $body }} -

- {{ (replace $comment "//" "") | .Page.RenderString }} -

+ {{- if $comment }} +
+ {{- (replace $comment "//" "") | .Page.RenderString -}} +
+ {{- end -}}
{{ highlight ($body | safeHTML) $lang "" }} - {{- template "embed-legend" (dict "Title" $title "URL" $url) -}}
{{- else -}} {{- errorf "Symbol '%s' not found in file '%s' from Page '%s'" $symbolName $path .Page.File }} {{- end -}} {{ else if $lang }} -
+
{{ highlight ($content | safeHTML ) (.Get "lang") "" }} - {{- template "embed-legend" (dict "Title" $title "URL" $url) -}}
{{ else }} {{ $content | safeHTML }} {{ end }} -{{ end }} - -{{ define "embed-legend" }} -
- {{- if .Title -}} - - {{- end -}} - {{- if .URL -}} - {{- if eq .Title "" -}} -
- {{- end -}} - - Github - - {{- end -}}
- -{{ end }} \ No newline at end of file +{{ end }} diff --git a/static/symbol-defs.svg b/static/symbol-defs.svg new file mode 100644 index 000000000..751b58bd0 --- /dev/null +++ b/static/symbol-defs.svg @@ -0,0 +1,25 @@ + diff --git a/themes/book/assets/_markdown.scss b/themes/book/assets/_markdown.scss index e71de431d..dd1c6dc7f 100644 --- a/themes/book/assets/_markdown.scss +++ b/themes/book/assets/_markdown.scss @@ -5,7 +5,7 @@ // remove padding at the beginning of page > :first-child { - margin-top: 0; + // margin-top: 0; } h1, @@ -35,7 +35,7 @@ h4, h5, h6 { - font-weight: bolder; + font-weight: 600; } h5 { @@ -49,7 +49,7 @@ b, optgroup, strong { - font-weight: bolder; + font-weight: 600; } a { @@ -92,6 +92,7 @@ border-inline-start: $padding-4 solid var(--gray-200); border-radius: $border-radius; + background-color: var(--gray-100); :first-child { margin-top: 0; diff --git a/tools/toc/build-model.js b/tools/toc/build-model.js index beb5416b4..2221a1c27 100644 --- a/tools/toc/build-model.js +++ b/tools/toc/build-model.js @@ -8,76 +8,84 @@ // { text: "Baz", id: "baz", tag: 'h1', children: [] } // ] -function buildTocModel (root) { - const model = [] - const headingList = root.querySelectorAll('h1,h2,h3,h4,h5,h6') - let parents = [{tagName: 'H0', children: model}] - let prevSibling = null - let sectionNumber = [0] +function buildTocModel(root) { + const model = []; + const headingList = root.querySelectorAll("h1,h2,h3,h4,h5,h6"); + let parents = [{ tagName: "H0", children: model }]; + let prevSibling = null; + let sectionNumber = [0]; - function addSibling(node) { - sectionNumber[sectionNumber.length - 1] = sectionNumber[sectionNumber.length - 1] + 1 - node.number = sectionNumber.join('.') - parents[parents.length - 1].children.push(node) - prevSibling = node - } - - function addChild(node) { - sectionNumber.push(1) - node.number = sectionNumber.join('.') - parents.push(prevSibling) - prevSibling.children.push(node) - prevSibling = node - } + function addSibling(node) { + sectionNumber[sectionNumber.length - 1] = + sectionNumber[sectionNumber.length - 1] + 1; + node.number = sectionNumber.join("."); + parents[parents.length - 1].children.push(node); + prevSibling = node; + } - for (let el of headingList) { - let node = { - id: el.id, - number: '', - tagName: el.tagName, - text: cleanHeadingText(el), - page: Boolean(el.dataset.page), - dashboardWeight: el.dataset.dashboardWeight, - dashboardAudit: el.dataset.dashboardAudit, - dashboardAuditURL: el.dataset.dashboardAuditUrl, - dashboardAuditDate: el.dataset.dashboardAuditDate, - dashboardState: el.dataset.dashboardState, - children: [] + function addChild(node) { + sectionNumber.push(1); + node.number = sectionNumber.join("."); + parents.push(prevSibling); + prevSibling.children.push(node); + prevSibling = node; } - - if (!prevSibling || headingNum(node) === headingNum(prevSibling)) { - // sibling: h2 == h2 - addSibling(node) - - } else if (headingNum(node) > headingNum(prevSibling)) { - // child: h3 > h2 - addChild(node) - } else { - // h2 or h1 after an h3... gotta find out how far to unwind. Parents may not be contiguous, so walk till we find a parent - let target = headingNum(node) - let rmCount = 0 - while (target <= headingNum(parents[parents.length - (rmCount + 1)])) { - rmCount++ - } - parents = parents.slice(0, parents.length - rmCount) - sectionNumber = sectionNumber.slice(0, sectionNumber.length - rmCount) + for (let el of headingList) { + let node = { + id: el.id, + number: "", + tagName: el.tagName, + text: cleanHeadingText(el), + page: Boolean(el.dataset.page), + dashboardWeight: el.dataset.dashboardWeight, + dashboardAudit: el.dataset.dashboardAudit, + dashboardAuditURL: el.dataset.dashboardAuditUrl, + dashboardAuditDate: el.dataset.dashboardAuditDate, + dashboardState: el.dataset.dashboardState, + children: [], + }; - addSibling(node) + if (!prevSibling || headingNum(node) === headingNum(prevSibling)) { + // sibling: h2 == h2 + addSibling(node); + } else if (headingNum(node) > headingNum(prevSibling)) { + // child: h3 > h2 + addChild(node); + } else { + // h2 or h1 after an h3... gotta find out how far to unwind. Parents may not be contiguous, so walk till we find a parent + let target = headingNum(node); + let rmCount = 0; + while ( + target <= headingNum(parents[parents.length - (rmCount + 1)]) + ) { + rmCount++; + } + parents = parents.slice(0, parents.length - rmCount); + sectionNumber = sectionNumber.slice( + 0, + sectionNumber.length - rmCount + ); + + addSibling(node); + } } - } - return model + return model; } -function cleanHeadingText (el) { - return el.textContent.trim() +function cleanHeadingText(el) { + const anchorText = el.querySelector("a"); + if (anchorText) { + return anchorText.textContent.trim(); + } + return el.textContent.trim(); } -function headingNum (el) { - return Number(el.tagName[1]) +function headingNum(el) { + return Number(el.tagName[1]); } module.exports = { - buildTocModel -} \ No newline at end of file + buildTocModel, +};