@iamproperty/components 2.7.7 → 2.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +136 -136
- package/assets/css/core.min.css +1 -1
- package/assets/css/core.min.css.map +1 -1
- package/assets/css/email.min.css +1 -1
- package/assets/css/email.min.css.map +1 -1
- package/assets/css/error.min.css +1 -1
- package/assets/css/error.min.css.map +1 -1
- package/assets/css/style.min.css +1 -1
- package/assets/css/style.min.css.map +1 -1
- package/assets/js/modules/accordion.js +32 -36
- package/assets/js/modules/alert.js +56 -56
- package/assets/js/modules/carousel.js +101 -101
- package/assets/js/modules/chart.js +216 -216
- package/assets/js/modules/drawer.js +15 -15
- package/assets/js/modules/form.js +158 -158
- package/assets/js/modules/helpers.js +119 -97
- package/assets/js/modules/modal.js +89 -89
- package/assets/js/modules/nav.js +26 -26
- package/assets/js/modules/table.js +584 -584
- package/assets/js/modules/testimonial.js +82 -82
- package/assets/js/modules/youtubevideo.js +145 -145
- package/assets/js/scripts.bundle.js +174 -85
- package/assets/js/scripts.bundle.js.map +1 -1
- package/assets/js/scripts.bundle.min.js +2 -2
- package/assets/js/scripts.bundle.min.js.map +1 -1
- package/assets/sass/_components.scss +14 -14
- package/assets/sass/_corefiles.scss +40 -40
- package/assets/sass/_fonts.scss +16 -16
- package/assets/sass/_forms.scss +9 -9
- package/assets/sass/_func.scss +12 -10
- package/assets/sass/_functions/functions.scss +141 -141
- package/assets/sass/_functions/mixins.scss +170 -170
- package/assets/sass/_functions/utilities.scss +250 -250
- package/assets/sass/_functions/variables.scss +466 -462
- package/assets/sass/_print.scss +61 -61
- package/assets/sass/components/accordion.scss +197 -197
- package/assets/sass/components/alert.scss +98 -98
- package/assets/sass/components/cardDeck.scss +107 -107
- package/assets/sass/components/carousel.scss +234 -234
- package/assets/sass/components/charts.scss +569 -569
- package/assets/sass/components/drawer.scss +46 -46
- package/assets/sass/components/header.scss +63 -63
- package/assets/sass/components/modal.scss +136 -136
- package/assets/sass/components/nav.scss +916 -820
- package/assets/sass/components/property-searchbar.scss +143 -143
- package/assets/sass/components/snapshot.scss +70 -70
- package/assets/sass/components/stepper.scss +164 -164
- package/assets/sass/components/tabs.scss +87 -74
- package/assets/sass/components/testimonial.scss +132 -132
- package/assets/sass/components/timeline.scss +95 -95
- package/assets/sass/core.scss +6 -6
- package/assets/sass/elements/buttons.scss +209 -209
- package/assets/sass/elements/card.scss +177 -177
- package/assets/sass/elements/container.scss +225 -225
- package/assets/sass/elements/forms.scss +194 -194
- package/assets/sass/elements/links.scss +96 -96
- package/assets/sass/elements/lists.scss +112 -112
- package/assets/sass/elements/panel.scss +161 -161
- package/assets/sass/elements/tables.scss +290 -290
- package/assets/sass/elements/tooltips.scss +84 -84
- package/assets/sass/elements/type.scss +136 -136
- package/assets/sass/email.scss +65 -65
- package/assets/sass/error.scss +4 -4
- package/assets/sass/foundations/brand.scss +72 -72
- package/assets/sass/foundations/circles.scss +74 -74
- package/assets/sass/foundations/icons.scss +72 -72
- package/assets/sass/foundations/media.scss +50 -50
- package/assets/sass/foundations/reboot.scss +130 -129
- package/assets/sass/foundations/root.scss +106 -104
- package/assets/sass/main.scss +7 -7
- package/assets/svg/icons.svg +598 -588
- package/assets/svg/logo.svg +42 -42
- package/assets/{js/main.js → ts/main.ts} +68 -67
- package/assets/ts/modules/accordion.ts +43 -0
- package/dist/components.common.js +148 -98
- package/dist/components.common.js.map +1 -1
- package/dist/components.css +1 -1
- package/dist/components.css.map +1 -1
- package/dist/components.umd.js +182 -132
- package/dist/components.umd.js.map +1 -1
- package/dist/components.umd.min.js +1 -1
- package/dist/components.umd.min.js.map +1 -1
- package/package.json +108 -103
- package/src/components/Accordion/Accordion.vue +22 -22
- package/src/components/Accordion/AccordionItem.vue +52 -52
- package/src/components/Accordion/README.md +34 -34
- package/src/components/Alert/Alert.vue +39 -39
- package/src/components/Alert/README.md +28 -28
- package/src/components/Banner/Banner.vue +38 -38
- package/src/components/Banner/README.md +23 -23
- package/src/components/CardDeck/CardDeck.vue +77 -77
- package/src/components/CardDeck/README.md +24 -24
- package/src/components/Carousel/Carousel.vue +85 -85
- package/src/components/Carousel/README.md +19 -19
- package/src/components/Chart/Chart.vue +88 -88
- package/src/components/Chart/README.md +17 -17
- package/src/components/Drawer/Drawer.vue +53 -53
- package/src/components/Drawer/README.md +22 -22
- package/src/components/Header/Header.vue +38 -38
- package/src/components/Header/README.md +27 -27
- package/src/components/Modal/Modal.vue +43 -43
- package/src/components/Modal/README.md +19 -19
- package/src/components/Nav/Nav.vue +212 -189
- package/src/components/Nav/README.md +22 -22
- package/src/components/NoteFeed/NoteFeed.vue +79 -79
- package/src/components/NoteFeed/README.md +16 -16
- package/src/components/PropertySearchbar/PropertySearchbar.vue +204 -204
- package/src/components/PropertySearchbar/README.md +25 -25
- package/src/components/Snapshot/README.md +20 -20
- package/src/components/Snapshot/Snapshot.vue +32 -32
- package/src/components/Stepper/README.md +32 -32
- package/src/components/Stepper/Step.vue +28 -28
- package/src/components/Stepper/Stepper.vue +33 -33
- package/src/components/Tabs/README.md +27 -27
- package/src/components/Tabs/Tab.vue +26 -26
- package/src/components/Tabs/Tabs.vue +75 -75
- package/src/components/Testimonial/README.md +25 -25
- package/src/components/Testimonial/Testimonial.vue +60 -60
- package/src/components/Timeline/README.md +18 -18
- package/src/components/Timeline/Timeline.vue +24 -24
- package/src/elements/Card/Card.vue +113 -113
- package/src/elements/Card/README.md +24 -24
- package/src/elements/FileUploads/FileUploads.vue +48 -48
- package/src/elements/FileUploads/README.md +24 -24
- package/src/elements/Input/Input.vue +268 -268
- package/src/elements/Input/README.md +19 -19
- package/src/elements/Table/README.md +62 -62
- package/src/elements/Table/Table.vue +126 -116
- package/src/foundations/Icon/Icon.vue +24 -24
- package/src/foundations/Icon/README.md +11 -11
- package/src/foundations/Logo/Logo.vue +39 -39
- package/src/foundations/Logo/README.md +20 -20
- package/src/foundations/YoutubeVideo/README.md +11 -11
- package/src/foundations/YoutubeVideo/YoutubeVideo.vue +24 -24
- package/src/helpers/strings.js +12 -12
- package/src/index.js +27 -27
- package/assets/.DS_Store +0 -0
- package/src/.DS_Store +0 -0
package/assets/svg/icons.svg
CHANGED
|
@@ -1,589 +1,599 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" class="visually-hidden">
|
|
2
|
-
<!-- Document -->
|
|
3
|
-
<symbol id="icon-document" viewBox="0 0 400 400">
|
|
4
|
-
<path d="M294.7,318.08a5.68,5.68,0,0,1-5.65,5.65H111a5.76,5.76,0,0,1-5.65-5.65v-159h63.49a19.4,19.4,0,0,0,19.36-19.36V76.27h100.9a5.76,5.76,0,0,1,5.65,5.65ZM175.1,85.51v54.25a6.32,6.32,0,0,1-6.31,6.31H114.54Zm114-22.29H184a12,12,0,0,0-8.59,3.59L95.84,146.4A12,12,0,0,0,92.25,155V318.08a18.7,18.7,0,0,0,18.7,18.7h178.1a18.7,18.7,0,0,0,18.7-18.7V81.92a18.7,18.7,0,0,0-18.7-18.7M265.67,294.27a6.53,6.53,0,1,0,0-13H134.44a6.53,6.53,0,1,0,0,13H265.67m0-43.93a6.53,6.53,0,1,0,0-13.05H134.44a6.53,6.53,0,1,0,0,13.05H265.67m0-43.82a6.52,6.52,0,1,0,0-13H134.44a6.52,6.52,0,1,0,0,13H265.67m0-87.74a6.53,6.53,0,1,0,0-13h-49.9a6.53,6.53,0,1,0,0,13h49.9m0,43.93a6.53,6.53,0,1,0,0-13.05h-49.9a6.53,6.53,0,1,0,0,13.05h49.9"/>
|
|
5
|
-
</symbol>
|
|
6
|
-
<!-- Tick -->
|
|
7
|
-
<symbol id="icon-tick" viewBox="0 0 400 400">
|
|
8
|
-
<path d="M308.46,200A108.46,108.46,0,1,1,200,91.54,108.46,108.46,0,0,1,308.46,200m13,0A121.5,121.5,0,1,0,200,321.5,121.5,121.5,0,0,0,321.5,200M267,154.32a8.1,8.1,0,0,0-11.42,0l-75.25,75.24a2.17,2.17,0,0,1-3,0l-32.89-32.88A8.08,8.08,0,1,0,133,208.1l44.31,44.31a2.19,2.19,0,0,0,3,0L267,166a8.1,8.1,0,0,0,0-11.42Z" />
|
|
9
|
-
</symbol>
|
|
10
|
-
|
|
11
|
-
<!-- Mobile Phone -->
|
|
12
|
-
<symbol id="icon-mobile" viewBox="0 0 400 400">
|
|
13
|
-
<path d="M109.35,89.78V44.13a19.21,19.21,0,0,1,19.56-19.56H271.09a19.21,19.21,0,0,1,19.56,19.56V89.78Zm181.3,207.39H109.35V102.83h181.3Zm0,58.7a19.21,19.21,0,0,1-19.56,19.56H128.91a19.21,19.21,0,0,1-19.56-19.56V310.22h181.3ZM271.09,11.52H128.91a32.29,32.29,0,0,0-32.6,32.61V355.87a32.29,32.29,0,0,0,32.6,32.61H271.09a32.29,32.29,0,0,0,32.6-32.61V44.13a32.7,32.7,0,0,0-32.6-32.61M200,46.74a9.13,9.13,0,1,0,9.13,9.13A9.13,9.13,0,0,0,200,46.74m-28,300H228a6.54,6.54,0,0,0,6.53-6.52v-.66A6.54,6.54,0,0,0,228,333H172a6.53,6.53,0,0,0-6.52,6.52v.66c.65,3.26,3.26,6.52,6.52,6.52" />
|
|
14
|
-
</symbol>
|
|
15
|
-
|
|
16
|
-
<!-- Computer -->
|
|
17
|
-
<symbol id="icon-computer" viewBox="0 0 400 400">
|
|
18
|
-
<path d="M36.68,57.61H363.31a7.91,7.91,0,0,1,7.9,7.89V227.11H28.79V65.5a7.9,7.9,0,0,1,7.89-7.89M28.79,240.15H371.21v46.32a7.9,7.9,0,0,1-7.9,7.89H36.68a7.9,7.9,0,0,1-7.89-7.89V240.15ZM236.71,342.4H163.28v-35h73.43ZM363.32,44.58H36.68A21,21,0,0,0,15.75,65.5v221a21,21,0,0,0,20.93,20.92H150.25v35H118.34a6.51,6.51,0,1,0,0,13H281.66a6.51,6.51,0,1,0,0-13h-31.9v-35H363.32a21,21,0,0,0,20.93-20.92V65.5a21,21,0,0,0-20.93-20.92M200,278.57c7.72,0,11.32-3.59,11.32-11.32s-3.7-11.33-11.32-11.33-11.32,3.71-11.32,11.33,3.59,11.32,11.32,11.32" />
|
|
19
|
-
</symbol>
|
|
20
|
-
|
|
21
|
-
<!-- Lock -->
|
|
22
|
-
<symbol id="icon-lock" viewBox="0 0 400 400">
|
|
23
|
-
<path d="M316.36,327.35a44.88,44.88,0,0,1-44.57,44.57h-143a44.89,44.89,0,0,1-44.57-44.57V191.91a45.09,45.09,0,0,1,36-44.06,46.76,46.76,0,0,1,8.91-.83H271.47a42.52,42.52,0,0,1,21.59,5.61,45,45,0,0,1,23.11,39.28ZM249.82,134.42H150.49v-31.2a49.67,49.67,0,1,1,99.33,0ZM125,103.34a75.14,75.14,0,0,1,150.27,0h0v31.2H262.56V103.22a62.4,62.4,0,0,0-124.8,0v31.07H125Zm174.47,38.21A57,57,0,0,0,288,136.9V103.22a87.87,87.87,0,1,0-175.74,0v33.49a57.62,57.62,0,0,0-41.07,55.2V327.35a57.68,57.68,0,0,0,57.62,57.3H271.47a57.68,57.68,0,0,0,57.31-57.3V191.91a57.69,57.69,0,0,0-29.29-50.36m-91.69,114a6.36,6.36,0,0,0-3.5,6.36l3.63,34.9H192.39L196,262a6.36,6.36,0,0,0-3.5-6.36,17.64,17.64,0,1,1,15.28,0m-7.64-46.29A30.44,30.44,0,0,0,183,264.76l-4,37.82a6.35,6.35,0,0,0,6.36,7.07H215a6.35,6.35,0,0,0,6.36-7.07l-4-37.82a30.44,30.44,0,0,0-17.19-55.46" />
|
|
24
|
-
</symbol>
|
|
25
|
-
|
|
26
|
-
<!-- Lock2 -->
|
|
27
|
-
<symbol id="icon-lock2" viewBox="0 0 400 400">
|
|
28
|
-
<path d="M200,317.25c-22.31,0-43.29-9.14-59.1-25.72-15.9-16.71-24.68-38.99-24.74-62.74-.04-16.9,4.44-33.35,12.95-47.56,.44-.72,1.11-1.16,1.84-1.22,21.95-1.49,45.17-2.25,69.05-2.25s47.09,.76,69.04,2.25c.73,.06,1.42,.52,1.86,1.26,8.46,14.14,12.93,30.5,12.93,47.32,0,48.89-37.61,88.66-83.83,88.66m-56.49-178.73c0-7.52,1.5-14.83,4.44-21.71,2.85-6.64,6.92-12.6,12.11-17.72,5.18-5.13,11.22-9.15,17.95-11.96,6.97-2.9,14.36-4.38,21.99-4.38s15.02,1.48,21.98,4.38c6.73,2.81,12.77,6.83,17.95,11.96,5.19,5.12,9.26,11.08,12.11,17.72,2.95,6.89,4.44,14.18,4.44,21.71v27.97c-18.2-.98-37.13-1.48-56.48-1.48s-38.29,.5-56.49,1.48v-27.97Zm138.51,36.26c-2.61-4.35-7.12-7.15-12.09-7.49-.18,0-.35-.02-.53-.03v-28.74c0-9.24-1.84-18.22-5.46-26.67-3.49-8.16-8.5-15.5-14.86-21.78-6.38-6.29-13.79-11.23-22.06-14.69-8.57-3.57-17.65-5.39-27.02-5.39s-18.46,1.81-27.03,5.39c-8.26,3.45-15.68,8.39-22.05,14.69-6.38,6.28-11.37,13.62-14.87,21.78-3.62,8.46-5.46,17.43-5.46,26.67v28.74c-.18,0-.35,.02-.53,.03-4.96,.34-9.47,3.13-12.06,7.45-9.69,16.18-14.79,34.88-14.74,54.07,.06,27,10.08,52.38,28.24,71.45,18.27,19.18,42.6,29.73,68.51,29.73,53.35,0,96.74-45.49,96.74-101.41,0-19.1-5.09-37.7-14.72-53.8"/>
|
|
29
|
-
<path d="M200,249.35c-5.67,0-10.27-4.55-10.27-10.14s4.61-10.14,10.27-10.14,10.27,4.55,10.27,10.14-4.61,10.14-10.27,10.14m0-33.04c-12.79,0-23.19,10.27-23.19,22.89,0,10.41,7.08,19.23,16.73,21.99v16.04c0,3.52,2.89,6.38,6.46,6.38s6.46-2.86,6.46-6.38v-16.04c9.65-2.76,16.73-11.58,16.73-21.99,0-12.62-10.4-22.89-23.19-22.89"/>
|
|
30
|
-
</symbol>
|
|
31
|
-
|
|
32
|
-
<!-- calendar -->
|
|
33
|
-
<symbol id="icon-calendar" viewBox="0 0 400 400">
|
|
34
|
-
<path d="M330.59,326.17a10.06,10.06,0,0,1-10,10H79.44a10.06,10.06,0,0,1-10-10V172.48H330.59ZM69.41,99.74A9.73,9.73,0,0,1,79.13,90h49.7v26.58a6.52,6.52,0,0,0,13,0V90H258.13v26.58a6.52,6.52,0,0,0,13,0V90h49.7a9.73,9.73,0,0,1,9.72,9.71v59.69H69.41ZM320.87,77h-49.7V57.27a6.52,6.52,0,0,0-13,0V77H141.87V57.27a6.52,6.52,0,0,0-13,0V77H79.13A22.79,22.79,0,0,0,56.37,99.74V326.17a23.1,23.1,0,0,0,23.07,23.08H320.56a23.1,23.1,0,0,0,23.07-23.08V99.74A22.79,22.79,0,0,0,320.87,77M128.75,211.86H142v13.21h-13.2Zm-6.52,26.25h26.24a6.53,6.53,0,0,0,6.53-6.52h0V205.34a6.52,6.52,0,0,0-6.52-6.52H122.23a6.51,6.51,0,0,0-6.52,6.51h0v26.25a6.51,6.51,0,0,0,6.51,6.52Zm71.17-26.25h13.2v13.21H193.4Zm-6.53,26.25h26.26a6.52,6.52,0,0,0,6.52-6.52h0V205.34a6.52,6.52,0,0,0-6.52-6.52H186.87a6.51,6.51,0,0,0-6.52,6.51h0v26.25a6.52,6.52,0,0,0,6.52,6.52Zm71.18-26.25h13.2v13.21h-13.2Zm-6.52,26.25h26.24a6.52,6.52,0,0,0,6.52-6.52h0V205.34a6.51,6.51,0,0,0-6.51-6.52H251.53a6.51,6.51,0,0,0-6.53,6.51h0v26.25a6.52,6.52,0,0,0,6.52,6.52ZM128.75,281.2H142v13.2h-13.2Zm-6.52,26.24h26.24a6.53,6.53,0,0,0,6.53-6.52h0V274.68a6.52,6.52,0,0,0-6.52-6.53H122.23a6.52,6.52,0,0,0-6.52,6.52h0v26.24a6.51,6.51,0,0,0,6.51,6.52ZM193.4,281.2h13.2v13.2H193.4Zm-6.53,26.24h26.26a6.52,6.52,0,0,0,6.52-6.52h0V274.68a6.52,6.52,0,0,0-6.52-6.53H186.87a6.52,6.52,0,0,0-6.52,6.52h0v26.24a6.52,6.52,0,0,0,6.52,6.52Zm71.18-26.24h13.2v13.2h-13.2Zm-6.52,26.24h26.24a6.52,6.52,0,0,0,6.52-6.52h0V274.68a6.51,6.51,0,0,0-6.51-6.53H251.53a6.53,6.53,0,0,0-6.53,6.52h0v26.24a6.52,6.52,0,0,0,6.52,6.52Z" />
|
|
35
|
-
</symbol>
|
|
36
|
-
|
|
37
|
-
<!-- phone -->
|
|
38
|
-
<symbol id="icon-phone" viewBox="0 0 400 400">
|
|
39
|
-
<path d="M130.29,90.61l35.82,35.82c3.65,3.65,4.58,4.84,4.58,8.45s-1.34,5.1-4.58,8.34c0,0-14,14-14.37,14.48A21.29,21.29,0,0,0,146.37,168c-.6,5.57.15,10.43,3.46,13.84l68.38,68.38c3.55,3.28,9.86,4.1,13.84,3.46a20.78,20.78,0,0,0,10-5.23c.51-.44,14.64-14.51,14.64-14.51,3.24-3.24,4.89-4.58,8.44-4.58s4.8.93,8.45,4.58l35.82,35.82c3.14,3.14,4.62,6.18,4.58,8.24-.11,5.11-.33,4.79-4.27,8.24L283.64,309c-3.51,3.07-10.51,5-18.52,5-26.31,0-73.94-21.35-115.9-63.3S86,161.19,86,134.88c0-8,1.8-15,4.88-18.52L113.7,90.3c2.67-3,5.4-4.31,8.15-4.31s5.76,2,8.44,4.62M121.74,73a23.87,23.87,0,0,0-17.8,8.65l-22.8,26.06C74.69,115.08,73,125.16,73,134.88c0,32.84,23.26,81.25,67.06,125.06S232.28,327,265.12,327c9.72,0,19.7-1.69,27.07-8.14l26.05-22.8c4.83-4.21,8.59-10.09,8.76-17.8.16-7.39-4-13.32-8.45-17.81l-35.82-35.82c-4.39-4.39-10.1-8.35-17.61-8.35-8,0-13.72,4.47-17.6,8.35,0,0-13.68,13.63-14,13.89-2.64,2.53-4.77,2.83-7.19,1.37L160,173.54c-2.31-2.3-.46-4.7,1-6.59.34-.45,14.3-14.47,14.3-14.47,3.88-3.88,8.45-9.61,8.45-17.6,0-7.51-4.06-13.32-8.45-17.71L139.45,81.35C135,76.86,129.13,72.84,121.74,73" />
|
|
40
|
-
</symbol>
|
|
41
|
-
|
|
42
|
-
<!-- clock -->
|
|
43
|
-
<symbol id="icon-clock" viewBox="0 0 400 400">
|
|
44
|
-
<path d="M200,304.27A104.27,104.27,0,1,1,304.27,200,104.39,104.39,0,0,1,200,304.27M200,82.7A117.3,117.3,0,1,0,317.3,200,117.43,117.43,0,0,0,200,82.7m42.76,134.46-36.24-20.92V128.32a6.52,6.52,0,0,0-13,0V200a6.52,6.52,0,0,0,3.26,5.64l39.51,22.81a6.38,6.38,0,0,0,3.25.88,6.52,6.52,0,0,0,3.26-12.17" />
|
|
45
|
-
</symbol>
|
|
46
|
-
<symbol id="icon-time" viewBox="0 0 400 400">
|
|
47
|
-
<use xlink:href="#icon-clock"></use>
|
|
48
|
-
</symbol>
|
|
49
|
-
|
|
50
|
-
<!-- clock2 -->
|
|
51
|
-
<symbol id="icon-clock2" viewBox="0 0 400 400">
|
|
52
|
-
<path d="M201.97,219.81c-1.84,0-3.63-.82-4.8-2.36l-39.26-51.35c-2-2.62-1.47-6.34,1.18-8.32,2.65-1.98,6.43-1.46,8.43,1.16l36.07,47.17,34.8-19.59c2.89-1.62,6.56-.62,8.2,2.22,1.65,2.85,.64,6.49-2.25,8.11l-39.4,22.17c-.94,.53-1.96,.78-2.97,.78"/>
|
|
53
|
-
<path d="M200,96.06c-58.04,0-105.27,46.63-105.27,103.94s47.23,103.95,105.27,103.95,105.27-46.63,105.27-103.95-47.23-103.94-105.27-103.94m0,219.77c-64.68,0-117.3-51.96-117.3-115.83s52.62-115.83,117.3-115.83,117.3,51.96,117.3,115.83-52.62,115.83-117.3,115.83"/>
|
|
54
|
-
<path d="M200,130.7c-3.32,0-6.02-2.66-6.02-5.94v-15.84c0-3.28,2.7-5.94,6.02-5.94s6.02,2.66,6.02,5.94v15.84c0,3.28-2.7,5.94-6.02,5.94"/>
|
|
55
|
-
<path d="M292.24,205.94h-14.71c-3.32,0-6.02-2.66-6.02-5.94s2.7-5.94,6.02-5.94h14.71c3.32,0,6.02,2.65,6.02,5.94s-2.7,5.94-6.02,5.94"/>
|
|
56
|
-
<path d="M200,297.02c-3.32,0-6.02-2.66-6.02-5.94v-15.84c0-3.28,2.7-5.94,6.02-5.94s6.02,2.66,6.02,5.94v15.84c0,3.28-2.7,5.94-6.02,5.94"/>
|
|
57
|
-
<path d="M122.47,205.94h-14.71c-3.32,0-6.01-2.66-6.01-5.94s2.69-5.94,6.01-5.94h14.71c3.32,0,6.02,2.65,6.02,5.94s-2.7,5.94-6.02,5.94"/>
|
|
58
|
-
</symbol>
|
|
59
|
-
|
|
60
|
-
<!-- envelope/email -->
|
|
61
|
-
<symbol id="icon-envelope" viewBox="0 0 400 400">
|
|
62
|
-
<path d="M377.44,73.59l0,0,0,0,0,0,0,0a23.49,23.49,0,0,0-16.61-6.92H39.26a23.4,23.4,0,0,0-14.34,4.94,5.16,5.16,0,0,0-.61.43,23.3,23.3,0,0,0-8.56,18.14V309.91a23.41,23.41,0,0,0,8.65,18.22,23.67,23.67,0,0,0,14.86,5.29H360.74a23.49,23.49,0,0,0,23.51-23.51V90.09A23.31,23.31,0,0,0,377.44,73.59Zm-6,14.87a11,11,0,0,1,.12,1.63V309.91a10.51,10.51,0,0,1-.13,1.69L259.87,200.06Zm-10.68-9.18a10.14,10.14,0,0,1,1.74.15L211.66,230.31a14.83,14.83,0,0,1-20.89-.05l-151-151ZM28.46,309.91V90.09a11,11,0,0,1,.59-3.58L142.6,200.06,29.09,313.52A10.75,10.75,0,0,1,28.46,309.91Zm11.4,10.81L151.59,209.05l30.19,30.19c.67.67,1.37,1.3,2.09,1.89l0,0c.35.28.7.56,1.06.82l.36.26.76.53.84.52.31.19a27.61,27.61,0,0,0,33.4-4.16l30.26-30.26L362.43,320.58h0c-.25,0-.49.06-.74.08l-.17,0c-.25,0-.5,0-.76,0Z"/>
|
|
63
|
-
</symbol>
|
|
64
|
-
<symbol id="icon-email" viewBox="0 0 400 400">
|
|
65
|
-
<use xlink:href="#icon-envelope"></use>
|
|
66
|
-
</symbol>
|
|
67
|
-
|
|
68
|
-
<!-- paper plane/send -->
|
|
69
|
-
<symbol id="icon-paper-plane" viewBox="0 0 400 400">
|
|
70
|
-
<path d="M390.44,58.74c.07-.23.11-.45.16-.68s.08-.28.1-.42a6,6,0,0,0,.05-.85c0-.09,0-.18,0-.27a6.73,6.73,0,0,0-.13-1.11c0-.11-.07-.22-.09-.33a7.75,7.75,0,0,0-.24-.78l0-.08a5.5,5.5,0,0,0-.36-.73,1.09,1.09,0,0,1-.08-.15,5.52,5.52,0,0,0-.56-.78.76.76,0,0,1-.08-.11,6.9,6.9,0,0,0-.72-.71l0,0-.06,0a5.79,5.79,0,0,0-.82-.58.41.41,0,0,1-.11-.07,8,8,0,0,0-.89-.42l-.11,0a5.26,5.26,0,0,0-1-.27h-.05a6.13,6.13,0,0,0-2.05,0h-.11c-.23,0-.45.08-.68.13L14.11,145.92a6.52,6.52,0,0,0-1.28,12.14l105.59,52.79V316.09a7.32,7.32,0,0,0,.1,1,.59.59,0,0,0,0,.13,6.85,6.85,0,0,0,.28,1l0,.07a6.31,6.31,0,0,0,.45,1l0,0a6.52,6.52,0,0,0,.59.82,1.34,1.34,0,0,1,.11.14l.12.14c.19.2.39.38.59.56l.12.09a7.52,7.52,0,0,0,.82.57l0,0a6.63,6.63,0,0,0,.94.43l.15.06a7.13,7.13,0,0,0,1,.26H124a5.74,5.74,0,0,0,.93.08h0a6.72,6.72,0,0,0,1.1-.1l.35-.08a5.94,5.94,0,0,0,.72-.21,2.78,2.78,0,0,0,.4-.16,6.14,6.14,0,0,0,.63-.31l.37-.22a7.51,7.51,0,0,0,.65-.5l.19-.14,47.17-43.43,52.38,69.84a6.54,6.54,0,0,0,5.22,2.61,4.53,4.53,0,0,0,.52,0,6.52,6.52,0,0,0,5.26-3.47L390,59.72c.08-.16.13-.33.21-.5S390.38,58.9,390.44,58.74ZM148.27,228.94h0c-.17.13-.33.27-.49.41l-.22.23-.22.23a3.92,3.92,0,0,0-.25.32l-.15.18c-.1.14-.19.29-.28.44a.33.33,0,0,0-.06.1,6.6,6.6,0,0,0-.54,1.18v0l-14.6,43.77V210.58l168.06-97.29ZM339.62,75,124.71,199.42,34.22,154.18ZM139.11,294.09,154.48,248l14.18,18.9Zm94,37-50.5-67.33h0l-21.31-28.41L364.8,79.78Z" />
|
|
71
|
-
</symbol>
|
|
72
|
-
<symbol id="icon-send" viewBox="0 0 400 400">
|
|
73
|
-
<use xlink:href="#icon-paper-plane"></use>
|
|
74
|
-
</symbol>
|
|
75
|
-
|
|
76
|
-
<!-- Rocket/launch -->
|
|
77
|
-
<symbol id="icon-rocket" viewBox="0 0 400 400">
|
|
78
|
-
<path d="M227.66,108.21a28.33,28.33,0,1,0-28.33,28.33A28.36,28.36,0,0,0,227.66,108.21ZM199.33,123.5a15.29,15.29,0,1,1,15.29-15.29A15.3,15.3,0,0,1,199.33,123.5Zm162.5,258.81c-1.16-11.09-5.64-19.64-13.32-25.41-8.5-6.39-19-7.74-26.3-7.74h-.86c-.91-11.65-5.13-21.46-12.57-29.17-9.75-10.1-22.95-14.31-32.38-16.07l.2-.22a70.69,70.69,0,0,0-16.79-106.29,235,235,0,0,0-5.6-103.27,154.77,154.77,0,0,0-29-55.77L204.39,12.79a6.72,6.72,0,0,0-10.12,0L173.46,38.38a155.08,155.08,0,0,0-29,55.77,235.28,235.28,0,0,0-5.6,103.26,70.7,70.7,0,0,0-16.79,106.3l.39.45c-9.33,1.88-21.87,6.15-31.23,15.84-7.44,7.71-11.66,17.52-12.57,29.17h-.86c-7.3,0-17.79,1.35-26.3,7.74-7.68,5.77-12.16,14.32-13.32,25.41A6.53,6.53,0,0,0,44,389.47a5.07,5.07,0,0,0,.68,0,6.51,6.51,0,0,0,6.48-5.84c.78-7.42,3.44-12.76,8.14-16.32,5.63-4.25,13.14-5.15,18.45-5.15a39.56,39.56,0,0,1,6.16.43,7.21,7.21,0,0,0,1.14.1A6.52,6.52,0,0,0,91.54,356c-.39-11.21,2.64-20.25,9-26.88,9.86-10.25,25.53-12.65,31.93-13.21l4.62,5.39a6.51,6.51,0,0,0,4.95,2.28,6.69,6.69,0,0,0,1.41-.15,6.52,6.52,0,0,0,4.87-4.61l15.72-56.13h18.86c.56,8.87,1.33,17.74,2.27,25.75,3.17,26.93,6.47,35.14,14.14,35.14s11-8.21,14.15-35.14c.94-8,1.71-16.88,2.26-25.75h18.85l15.73,56.13a6.52,6.52,0,0,0,4.87,4.61,6.69,6.69,0,0,0,1.41.15,6.51,6.51,0,0,0,4.95-2.28l4.71-5.5c5.29.32,22.45,2.21,33.14,13.28,6.4,6.63,9.45,15.69,9.06,26.92a6.54,6.54,0,0,0,6.52,6.75,7,7,0,0,0,1.12-.1,41.8,41.8,0,0,1,6.17-.42c5.31,0,12.82.89,18.45,5.14,4.7,3.56,7.36,8.9,8.14,16.32a6.5,6.5,0,0,0,6.48,5.84,5.07,5.07,0,0,0,.68,0A6.53,6.53,0,0,0,361.83,382.31ZM256.61,213.1c.15-.62.29-1.25.43-1.87a57.69,57.69,0,0,1,9.65,84l-7.11,8.3L246.28,256Zm-53.54,43.17c-.77,15-2.2,29.3-3.74,39.64A460.58,460.58,0,0,1,195,234.2c0-13.48.88-22.25,2.6-26a4.57,4.57,0,0,1,.41-.8,9.54,9.54,0,0,1,1.32,0,7.17,7.17,0,0,1,1.37.06c0,.06.21.44.37.78,1.72,3.8,2.59,12.57,2.59,26,0,7-.2,14.12-.54,21.13a5.55,5.55,0,0,0-.06.82S203.07,256.23,203.07,256.27Zm10.08-53.09c-2.59-6.16-6.85-8.91-13.82-8.91s-11.23,2.75-13.81,8.91c-2.49,5.93-3.56,15.2-3.56,31,0,4.84.11,10.06.31,15.43h-18l-11.67-49.52A222,222,0,0,1,157,97.71a141.68,141.68,0,0,1,19-40.89,56.07,56.07,0,0,0,23.16,5,56,56,0,0,0,23.41-5.13,142.06,142.06,0,0,1,19.09,41,222.06,222.06,0,0,1,4.43,102.17l-11.73,49.75h-18c.2-5.37.31-10.59.31-15.43C216.7,218.38,215.64,209.11,213.15,203.18Zm-14-154.39A43.1,43.1,0,0,1,184.06,46l15.27-18.79,15.2,18.68A42.81,42.81,0,0,1,199.16,48.79ZM132,295.23a57.68,57.68,0,0,1,9.65-84c.15.63.29,1.25.44,1.88L152.39,256l-13.31,47.51Zm-4.73,39.09a6.53,6.53,0,0,1-4,8.3,9.79,9.79,0,0,0-6.76,8.85,6.52,6.52,0,1,1-13,0c0-.64.17-15.85,15.53-21.17a6.59,6.59,0,0,1,2.14-.36A6.52,6.52,0,0,1,127.24,334.32Zm152.87,20.34a28.82,28.82,0,0,1,.46,26.42,6.52,6.52,0,0,1-11.69-5.78,15.71,15.71,0,0,0-27.24-15.54,6.52,6.52,0,0,1-10.94-7.08,28.75,28.75,0,0,1,49.41,2Z" />
|
|
79
|
-
</symbol>
|
|
80
|
-
<symbol id="icon-launch" viewBox="0 0 400 400">
|
|
81
|
-
<use xlink:href="#icon-rocket"></use>
|
|
82
|
-
</symbol>
|
|
83
|
-
|
|
84
|
-
<!-- Tag/offer -->
|
|
85
|
-
<symbol id="icon-tag" viewBox="0 0 400 400">
|
|
86
|
-
<path d="M320.54,226,226,320.55a22.11,22.11,0,0,1-31.22,0L83.58,209.36A21.93,21.93,0,0,1,77.12,194l-.48-53.66a22.22,22.22,0,0,1,6.47-15.81L87.64,120a6.48,6.48,0,1,1,9.16,9.16l-4.54,4.54a9.12,9.12,0,0,0-2.66,6.52l.47,53.66a9.06,9.06,0,0,0,2.67,6.37L203.92,311.39a9.14,9.14,0,0,0,12.9,0l94.56-94.56a9.14,9.14,0,0,0,0-12.91L200.2,92.74a9.06,9.06,0,0,0-6.37-2.67l-53.65-.48a9.17,9.17,0,0,0-6.53,2.68l-4.53,4.53A6.48,6.48,0,1,1,120,87.64l4.54-4.53a22.22,22.22,0,0,1,15.8-6.47l53.65.48a22,22,0,0,1,15.42,6.46L320.54,194.76a22.1,22.1,0,0,1,0,31.22m-185-90.49a13.07,13.07,0,1,1,0,18.48,13.09,13.09,0,0,1,0-18.48m27.63,27.64a26,26,0,1,0-36.79,0,26,26,0,0,0,36.79,0m-27.63-27.64a6.45,6.45,0,0,0,0-9.15L84.06,74.9a6.48,6.48,0,0,0-9.16,9.16l51.43,51.43a6.48,6.48,0,0,0,9.16,0" />
|
|
87
|
-
</symbol>
|
|
88
|
-
<symbol id="icon-offer" viewBox="0 0 400 400">
|
|
89
|
-
<use xlink:href="#icon-tag"></use>
|
|
90
|
-
</symbol>
|
|
91
|
-
|
|
92
|
-
<!-- sold -->
|
|
93
|
-
<symbol id="icon-sold" viewBox="0 0 400 400">
|
|
94
|
-
<path d="M82.91,341.23a6.52,6.52,0,1,1,0-13H301.67a33.05,33.05,0,0,0,33-33v-81.7a6.53,6.53,0,0,1,13.05,0v81.7a46.12,46.12,0,0,1-46.07,46.06Zm-2-21.42a26.67,26.67,0,0,1-26.64-26.64v-81.7A26.67,26.67,0,0,1,80.9,184.83H299.68a26.67,26.67,0,0,1,26.64,26.64v81.7a26.67,26.67,0,0,1-26.64,26.64Zm0-121.94a13.61,13.61,0,0,0-13.6,13.6v81.7a13.61,13.61,0,0,0,13.6,13.6H299.68a13.61,13.61,0,0,0,13.59-13.6v-81.7a13.61,13.61,0,0,0-13.59-13.6Zm122.91,84a6.53,6.53,0,0,1-6.52-6.52v-44a6.52,6.52,0,1,1,13,0v37.52h18.09a6.52,6.52,0,1,1,0,13Zm-95.28,0a24.58,24.58,0,0,1-7.82-1.25,21,21,0,0,1-6.63-3.57,17.46,17.46,0,0,1-4.77-5.86A6.52,6.52,0,1,1,101,265.42a4.58,4.58,0,0,0,1.25,1.48,8,8,0,0,0,2.58,1.37,11.75,11.75,0,0,0,3.7.58,12.49,12.49,0,0,0,3.84-.6,10.15,10.15,0,0,0,3-1.49A6.26,6.26,0,0,0,117,265a3,3,0,0,0,.5-1.49,2.5,2.5,0,0,0-.27-1.25,4.48,4.48,0,0,0-1.26-1.51,8.45,8.45,0,0,0-2.6-1.37,11.87,11.87,0,0,0-3.68-.56,23.08,23.08,0,0,1-7.28-1.17,19.73,19.73,0,0,1-6.22-3.36,16.5,16.5,0,0,1-4.48-5.5,14.65,14.65,0,0,1-1.52-7.3,15.11,15.11,0,0,1,2.18-7.08,18,18,0,0,1,4.76-5.22,21.62,21.62,0,0,1,6.31-3.22,23.82,23.82,0,0,1,7.31-1.13A22.77,22.77,0,0,1,118,226a20.12,20.12,0,0,1,6.21,3.35,6.52,6.52,0,1,1-8.19,10.15,7,7,0,0,0-2.14-1.13,10.11,10.11,0,0,0-3.16-.48,10.94,10.94,0,0,0-3.3.5,8.29,8.29,0,0,0-2.52,1.27,5,5,0,0,0-1.35,1.43,2.39,2.39,0,0,0-.36,1.06,1.53,1.53,0,0,0,.19.86,3.41,3.41,0,0,0,1,1.15,7.19,7.19,0,0,0,2.15,1.14,10.11,10.11,0,0,0,3.16.48,24.75,24.75,0,0,1,7.81,1.24,21.44,21.44,0,0,1,6.65,3.59,17.45,17.45,0,0,1,4.75,5.84,15.39,15.39,0,0,1,1.62,7.72,16.05,16.05,0,0,1-2.31,7.52,19.27,19.27,0,0,1-5.09,5.56,23.35,23.35,0,0,1-6.76,3.45A25.64,25.64,0,0,1,108.53,281.89Zm140.31,0a6.53,6.53,0,0,1-6.51-6.52v-44a6.53,6.53,0,0,1,6.51-6.52h14.57a28.54,28.54,0,0,1,0,57.08Zm14.57-13a15.5,15.5,0,0,0,0-31h-8.05v31Zm-101,13a28.54,28.54,0,1,1,28.53-28.54A28.58,28.58,0,0,1,162.38,281.89Zm0-44a15.5,15.5,0,1,0,15.5,15.5A15.53,15.53,0,0,0,162.38,237.85Zm105.3-55.22a6.56,6.56,0,0,1-5.65-3.25l-44.92-77.81a6.52,6.52,0,0,1,2.39-8.9,6.39,6.39,0,0,1,3.25-.88,6.55,6.55,0,0,1,5.65,3.26l44.92,77.8a6.55,6.55,0,0,1-2.38,8.91A6.66,6.66,0,0,1,267.68,182.63Zm-154.78,0a6.66,6.66,0,0,1-3.24-.86,6.55,6.55,0,0,1-2.4-8.92L152.19,95a6.52,6.52,0,0,1,11.3,6.52l-44.93,77.82A6.56,6.56,0,0,1,112.9,182.63Zm77.39-71.26a26.3,26.3,0,1,1,26.3-26.3A26.33,26.33,0,0,1,190.29,111.37Zm0-39.56a13.26,13.26,0,1,0,13.26,13.26A13.27,13.27,0,0,0,190.29,71.81Z" />
|
|
95
|
-
</symbol>
|
|
96
|
-
|
|
97
|
-
<!-- search -->
|
|
98
|
-
<symbol id="icon-search" viewBox="0 0 400 400">
|
|
99
|
-
<path d="M307.92,328.66a20.65,20.65,0,0,1-14.68-6.07l-65.52-65.53a101.18,101.18,0,1,1,29.35-29.35l65.52,65.53a20.75,20.75,0,0,1-14.67,35.42Zm-5.46-15.29a7.72,7.72,0,1,0,10.91-10.92l-63-63-10.92,10.91Zm-130-229a88.07,88.07,0,1,0,88.08,88.06A88.17,88.17,0,0,0,172.44,84.37ZM111.85,179a6.52,6.52,0,0,1-6.51-6.51,67.19,67.19,0,0,1,67.11-67.13,6.52,6.52,0,0,1,0,13,54.15,54.15,0,0,0-54.09,54.1A6.52,6.52,0,0,1,111.85,179Z" />
|
|
100
|
-
</symbol>
|
|
101
|
-
|
|
102
|
-
<!-- tick-list -->
|
|
103
|
-
<symbol id="icon-tick-list" viewBox="0 0 400 400">
|
|
104
|
-
<path d="M269.7,122.73a6.3,6.3,0,1,1,0,12.59H195.81a6.3,6.3,0,0,1,0-12.59H269.7M160.55,253.93a11.62,11.62,0,0,1,11.6,11.6v43.24a11.61,11.61,0,0,1-11.6,11.59H113.73a11.6,11.6,0,0,1-11.59-11.59V265.53a11.61,11.61,0,0,1,11.59-11.6h46.82m-.89,12.5h-45v41.45h45.05ZM79.87,76.18A26.2,26.2,0,0,1,106,50H294a26.22,26.22,0,0,1,26.18,26.18V323.83A26.21,26.21,0,0,1,294,350H106a26.19,26.19,0,0,1-26.17-26.17V76.18M294,337.52a13.7,13.7,0,0,0,13.69-13.69V76.18A13.7,13.7,0,0,0,294,62.48H106a13.71,13.71,0,0,0-13.69,13.7V323.83A13.7,13.7,0,0,0,106,337.52H294M269.7,193.71H195.81a6.3,6.3,0,0,0,0,12.59H269.7a6.3,6.3,0,1,0,0-12.59M160.55,167a11.61,11.61,0,0,1,11.6,11.59v43.24a11.61,11.61,0,0,1-11.6,11.59H113.73a11.6,11.6,0,0,1-11.59-11.59V178.6A11.6,11.6,0,0,1,113.73,167h46.82m-.89,12.48h-45V221h45.05Zm.89-99.4a11.61,11.61,0,0,1,11.6,11.59v43.24a11.61,11.61,0,0,1-11.6,11.59H113.73a11.6,11.6,0,0,1-11.59-11.59V91.68a11.6,11.6,0,0,1,11.59-11.59h46.82m-.89,12.48h-45V134h45.05Zm110,172.12H195.81a6.3,6.3,0,0,0,0,12.59H269.7a6.3,6.3,0,1,0,0-12.59M131,125.86a5.66,5.66,0,0,0,4,1.71,1.46,1.46,0,0,0,.29,0,5.65,5.65,0,0,0,4.13-2.11l14.11-17.65a5.66,5.66,0,1,0-8.84-7.07l-10.12,12.65L129.39,108a5.66,5.66,0,0,0-8.1,7.9Zm0,86.93a5.69,5.69,0,0,0,4,1.7h.29a5.62,5.62,0,0,0,4.13-2.12l14.11-17.65a5.66,5.66,0,1,0-8.84-7.06l-10.12,12.64L129.39,195a5.66,5.66,0,1,0-8.1,7.9Zm0,86.92a5.65,5.65,0,0,0,4,1.7h.29a5.59,5.59,0,0,0,4.13-2.12l14.11-17.64a5.66,5.66,0,1,0-8.84-7.07l-10.12,12.65-5.22-5.34a5.66,5.66,0,0,0-8.1,7.91Z" />
|
|
105
|
-
</symbol>
|
|
106
|
-
|
|
107
|
-
<!-- chat -->
|
|
108
|
-
<symbol id="icon-chat" viewBox="0 0 400 400">
|
|
109
|
-
<path d="M158.12,92.3C88.83,92.3,32.47,140.62,32.47,200c0,21.36,7.3,42,21.11,59.74A6,6,0,0,1,54.65,265L41.86,313.49l41.59-23.4a6,6,0,0,1,5.86,0,140.45,140.45,0,0,0,68.81,17.61c69.28,0,125.65-48.32,125.65-107.7S227.4,92.3,158.12,92.3M32.47,331.63a6,6,0,0,1-5.79-7.51l15.65-59.4C28,245.41,20.5,223.09,20.5,200c0-66,61.74-119.67,137.62-119.67S295.73,134,295.73,200,234,319.66,158.12,319.66a153.16,153.16,0,0,1-71.71-17.5l-51,28.7a6.06,6.06,0,0,1-2.94.77M367.8,307.7a6,6,0,0,1-2.92-.77l-48.58-27.2A142.93,142.93,0,0,1,279.72,293a6,6,0,0,1-2.53-11.7,130.23,130.23,0,0,0,36.23-13.6,6,6,0,0,1,5.85,0l39.14,21.91-12.05-45.46a6,6,0,0,1,1.09-5.21c13.13-16.8,20.08-36.37,20.08-56.57,0-56.25-53.69-102-119.66-102A141.42,141.42,0,0,0,226.55,82a6,6,0,1,1-1.81-11.83,153.57,153.57,0,0,1,23.13-1.75c72.57,0,131.63,51.13,131.63,114,0,22-7.19,43.16-20.82,61.54l14.91,56.3a6,6,0,0,1-2.13,6.26,6,6,0,0,1-3.66,1.25M241.88,200a18,18,0,1,1-17.95-18,17.93,17.93,0,0,1,17.95,18m-65.81,0a18,18,0,1,1-18-18,17.93,17.93,0,0,1,18,18m-65.82,0a18,18,0,1,1-18-18,17.93,17.93,0,0,1,18,18" />
|
|
110
|
-
</symbol>
|
|
111
|
-
|
|
112
|
-
<!-- documents -->
|
|
113
|
-
<symbol id="icon-documents" viewBox="0 0 400 400">
|
|
114
|
-
<path d="M137.42,187.31h36a6.51,6.51,0,0,0,0-13h-36a6.51,6.51,0,0,0,0,13Z"/><path d="M130.92,207.41a6.5,6.5,0,0,0,6.5,6.5h83.7a6.51,6.51,0,0,0,0-13h-83.7A6.5,6.5,0,0,0,130.92,207.41Z"/><path d="M38.34,112.35l26.5-7.22a11.32,11.32,0,0,0,7.94-13.87l-6.54-24L191.38,33.18a4.81,4.81,0,0,1,5.88,3.36l2.06,7.55a6.5,6.5,0,1,0,12.54-3.42l-2-7.54A17.83,17.83,0,0,0,188,20.63L58.56,55.87a17.72,17.72,0,0,0-10.78,8.34L27,100.49A17.78,17.78,0,0,0,25.31,114L79.14,311.65a6.52,6.52,0,0,0,6.28,4.8,6.29,6.29,0,0,0,1.71-.23,6.51,6.51,0,0,0,4.57-8Zm17.09-35.3,4.35,16-16,4.35Z"/><path d="M281.34,110H147.22a17.67,17.67,0,0,0-12.58,5.22l-29.55,29.55a17.71,17.71,0,0,0-5.22,12.59V362.19A17.83,17.83,0,0,0,117.67,380H281.34a17.83,17.83,0,0,0,17.81-17.81V127.8A17.83,17.83,0,0,0,281.34,110Zm-142.7,19.62v16.55H122.08ZM286.13,362.19a4.8,4.8,0,0,1-4.79,4.8H117.67a4.8,4.8,0,0,1-4.79-4.8v-203h27.46a11.32,11.32,0,0,0,11.31-11.31V123H281.34a4.8,4.8,0,0,1,4.79,4.79Z"/><path d="M261.59,200.9H244.84a6.51,6.51,0,1,0,0,13h16.75a6.51,6.51,0,0,0,0-13Z"/><path d="M261.59,174.29h-63a6.51,6.51,0,0,0,0,13h63a6.51,6.51,0,0,0,0-13Z"/><path d="M372.21,81.76A17.72,17.72,0,0,0,360.8,74.3L229,49.6a17.64,17.64,0,0,0-2.7-.27l-.7,0a17.78,17.78,0,0,0-9.94,3.11L181.16,76a17.66,17.66,0,0,0-7.45,11.42l-1.83,9.75a6.51,6.51,0,0,0,12.79,2.39l1.49-7.95,27,5.06a11.66,11.66,0,0,0,2.11.19,11.29,11.29,0,0,0,11.09-9.23l4.58-24.43L358.4,87.1a4.8,4.8,0,0,1,3.07,2,4.76,4.76,0,0,1,.75,3.59L319.05,323.07a4.79,4.79,0,0,1-5.59,3.84,6.5,6.5,0,1,0-2.4,12.78,17.79,17.79,0,0,0,20.78-14.22L375,95.09A17.63,17.63,0,0,0,372.21,81.76ZM213.88,83.57l-16.28-3L216.93,67.3Z"/><path d="M218.41,280.7h-81a6.51,6.51,0,1,0,0,13h81a6.51,6.51,0,0,0,0-13Z"/><path d="M261.59,227.5H137.42a6.51,6.51,0,1,0,0,13H261.59a6.51,6.51,0,0,0,0-13Z"/><path d="M137.41,267.11h21.17a6.51,6.51,0,0,0,0-13H137.41a6.51,6.51,0,0,0,0,13Z"/><path d="M261.59,254.1H182.3a6.51,6.51,0,0,0,0,13h79.29a6.51,6.51,0,0,0,0-13Z"/>
|
|
115
|
-
</symbol>
|
|
116
|
-
|
|
117
|
-
<!-- in progress -->
|
|
118
|
-
<symbol id="icon-in-progress" viewBox="0 0 400 400">
|
|
119
|
-
<path d="M200,317.44A117.37,117.37,0,0,1,145.39,96.21a115.78,115.78,0,0,1,54.54-13.65,118.26,118.26,0,0,1,68.54,22.22,116.44,116.44,0,0,1,43.3,59.89l2.65,8.39,10.25-31.71a6.48,6.48,0,0,1,6.18-4.5,5.58,5.58,0,0,1,.7,0,6.16,6.16,0,0,1,1.28.27,6.5,6.5,0,0,1,3.81,3.24,6.37,6.37,0,0,1,.4,4.95l-15.35,47.52,0,0c-.07.14-.12.26-.17.38l-.09.26,0,.09-.14.25a5.08,5.08,0,0,1-.35.59c-.15.22-.24.36-.34.49s-.3.34-.45.5-.29.29-.42.4a6.25,6.25,0,0,1-.54.4,5.33,5.33,0,0,1-.48.31,4.89,4.89,0,0,1-.57.27l-.5-.79.37.85a4.07,4.07,0,0,1-.44.18,6,6,0,0,1-.64.16,4.28,4.28,0,0,1-.57.11c-.23,0-.45,0-.68,0H315c-.21,0-.42,0-.64-.08s-.44-.08-.64-.14l-.29-.07-.09,0-.28-.12-.37-.13-.06,0-45.34-20.89A6.5,6.5,0,0,1,270,163.51a5.48,5.48,0,0,1,.7,0,6.21,6.21,0,0,1,2,.56L302,177.56l-1.7-5.9A104.83,104.83,0,0,0,211.38,96.4,106.76,106.76,0,0,0,200,95.78a104.3,104.3,0,0,0-11.26,208,107.91,107.91,0,0,0,11.63.64,102,102,0,0,0,44.83-10.24,6.41,6.41,0,0,1,2.85-.66,6.54,6.54,0,0,1,2.83,12.44A118.5,118.5,0,0,1,200,317.44Zm27-84.73a7.59,7.59,0,0,1-5.17-2L195,205.72a3.08,3.08,0,0,0-.24-.25c-.11-.11-.22-.24-.33-.37l-.44-.53-.19-.22-.05-.07-.3-.55-.15-.27a3.81,3.81,0,0,1-.23-.41l0-.09,0-.1c0-.12-.07-.25-.12-.37l-.11-.31a5.52,5.52,0,0,1-.16-.54l0-.1v-.1c0-.09,0-.21,0-.34a9.42,9.42,0,0,1-.11-1V136.92a7.6,7.6,0,1,1,15.19,0v59.79l24.51,22.83a7.63,7.63,0,0,1,.38,10.75A7.53,7.53,0,0,1,227,232.71Z" />
|
|
120
|
-
</symbol>
|
|
121
|
-
|
|
122
|
-
<!-- settings -->
|
|
123
|
-
<symbol id="icon-settings" viewBox="0 0 400 400">
|
|
124
|
-
<path xmlns="http://www.w3.org/2000/svg" d="M309.53,174.96l-14.36-34.72,7.34-21.13-10.81-10.81-10.81-10.81-21.13,7.34-34.72-14.36-9.8-20.16h-30.53l-9.76,20.16-34.72,14.36-21.13-7.34-10.81,10.81-10.81,10.81,7.34,21.13-14.36,34.72-20.16,9.76v30.57l20.16,9.76,14.36,34.72-7.34,21.13,21.62,21.62,21.13-7.34,34.72,14.36,9.76,20.16h30.53l9.8-20.16,34.72-14.36,21.13,7.34,21.62-21.62-7.34-21.13,14.36-34.72,20.16-9.76v-30.57l-20.16-9.76Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
125
|
-
<path xmlns="http://www.w3.org/2000/svg" d="M270.57,200c0,24.04-12,45.24-30.31,57.96-11.42,7.98-25.3,12.65-40.26,12.65-15.75,0-30.31-5.15-42.04-13.91-17.35-12.82-28.57-33.45-28.57-56.7,0-39,31.6-70.61,70.61-70.61s70.57,31.6,70.57,70.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
126
|
-
</symbol>
|
|
127
|
-
|
|
128
|
-
<!-- clipboard -->
|
|
129
|
-
<symbol id="icon-clipboard" viewBox="0 0 400 400">
|
|
130
|
-
<path d="M269.68,188.25h-48.88c-2.34,0-4.82,2.48-4.82,4.82s2.48,4.82,4.82,4.82h50.02c2.34,0,4.82-2.48,4.82-4.82s-2.55-4.82-5.96-4.82Z"/>
|
|
131
|
-
<path d="M235.57,217.81h-14.78c-2.34,0-4.82,2.48-4.82,4.82s1.49,4.82,4.82,4.82h14.78c2.34,0,4.82-2.48,4.82-4.82s-2.48-4.82-4.82-4.82Z"/>
|
|
132
|
-
<path d="M269.68,266.69h-48.88c-2.34,0-4.82,2.48-4.82,4.82s2.48,4.82,4.82,4.82h50.02c2.34,0,4.82-2.48,4.82-4.82s-2.55-4.82-5.96-4.82Z"/>
|
|
133
|
-
<path d="M190.88,186.25c0-2.52-2.65-5.32-6.46-5.32h-42.06c-2.59,0-5.32,2.73-5.32,5.32v43.2c0,2.59,2.73,5.32,5.32,5.32h43.2c2.59,0,5.32-2.73,5.32-5.32v-43.2Zm-11.78,37.88h-31.42v-31.42h31.42v31.42Z"/>
|
|
134
|
-
<path d="M190.88,257.25c0-2.52-2.65-5.32-6.46-5.32h-42.06c-2.59,0-5.32,2.73-5.32,5.32v43.2c0,2.59,2.73,5.32,5.32,5.32h43.2c2.59,0,5.32-2.73,5.32-5.32v-43.2Zm-11.78,37.88h-31.42v-31.42h31.42v31.42Z"/>
|
|
135
|
-
<path d="M234.44,295.11h-13.64c-2.34,0-4.82,2.48-4.82,4.82s2.48,4.82,4.82,4.82h14.78c2.24,0,4.61-2.25,4.81-4.52-1.23-3.44-3.18-5.12-5.94-5.12Z"/>
|
|
136
|
-
<path d="M201.07,59.93c-18.38,0-33.33,14.47-33.33,32.26v7.44h-27.82c-2.64,0-5.44,2.79-5.44,5.44v7.44h-8.51c-14.48,0-25.82,11.34-25.82,25.82v175.93c0,14.48,11.34,25.82,25.82,25.82h148.04c14.48,0,25.82-11.34,25.82-25.82V139.39c0-14.48-11.34-25.82-25.82-25.82h-7.44v-8.51c0-2.64-2.79-5.44-5.44-5.44h-27.82v-7.44c0-17.79-14.47-32.26-32.25-32.26Zm64.44,85.89v-21.38h8.34c8.1,0,14.95,6.84,14.95,14.95v174.86c0,8.1-6.84,14.95-14.95,14.95H125.98c-8.1,0-14.95-6.84-14.95-14.95V139.39c0-8.1,6.84-14.95,14.95-14.95h7.44v21.38c0,2.64,2.79,5.44,5.44,5.44h121.22c2.64,0,5.44-2.79,5.44-5.44Zm-10.87-34.26v28.82h-109.27v-28.82h27.82c2.64,0,5.44-2.79,5.44-5.44v-13.95c0-11.79,9.59-21.38,21.38-21.38s21.38,9.59,21.38,21.38v13.95c0,2.64,2.79,5.44,5.44,5.44h27.82Z"/>
|
|
137
|
-
</symbol>
|
|
138
|
-
|
|
139
|
-
<!-- agree -->
|
|
140
|
-
<symbol id="icon-agree" viewBox="0 0 400 400">
|
|
141
|
-
<path d="M309.51,130.03l-19.65-25.96c-4.42-5.16-9.7-7.81-15.61-7.81-3.47,0-6.59,.98-10.43,3.29l-15.33,10.46c-4.78,3.19-13.07,3.17-17.13-.03l-10.45-6.97c-4.5-3-9.92-4.65-15.27-4.65-4.42,0-9.1,1.23-12.53,3.29l-.1,.06-3.39,1.69-11.82-4.43c-8.09-2.69-20.97-1.16-28.08,3.36l-4.11,2.74c-4.92,4.04-13.93,4.44-18.99,2.27l-.14-.07-11.2-6.3c-8.63-4.65-20.32-1.71-26.04,6.55l-19.66,25.28c-6.07,8.78-4.94,21.14,2.63,28.08l20.08,17.85-6.03,6.03c-7.05,7.7-7.07,20.21,0,27.29l.84,.86c1.59,2.12,4.16,3.36,6.64,4.56,.42,.2,.83,.4,1.23,.6l1.16,.58-.41,1.23c-.62,1.87-.62,3.79-.62,5.83,0,5.23,1.98,10.46,5.16,13.65l.79,.8c3.14,3.77,7.59,5.76,12.85,5.76h2.67l.21,1.25c.65,3.91,2.59,7.8,5.18,10.39l.79,.8c3.14,3.77,7.59,5.76,12.85,5.76,1.86,0,3.79-.64,5.83-1.32l1.54-.51,.39,1.57c.73,2.91,2.16,5.36,4.51,7.71l.79,.8c3.14,3.77,7.59,5.76,12.85,5.76,4.96,0,9.89-2.21,12.85-5.76l.09-.1,3.86-3.86,4.65,4.66c2.96,3.55,7.89,5.76,12.85,5.76,4.39,0,8.91-1.89,12.14-5.06,1.35-2.03,2.62-3.95,3.24-5.82l.68-2.04,1.68,1.34c3.85,3.08,7.66,4.57,11.67,4.57,4.23,0,8.12-1.74,11.54-5.16,2.35-2.35,3.77-5.43,4.48-9.69l.21-1.25h4.07c4.33,0,8.94-1.85,12.99-5.21,3.14-3.16,5.15-7.69,5.83-13.08l.16-1.31h1.32c4.23,0,8.12-1.74,11.54-5.16,3.33-3.33,5.16-7.93,5.16-12.94,0-5.47-2.08-10.56-5.86-14.34l-4.1-4.1,1.52-1.01c2.08-1.38,4.04-2.69,6.02-4.66l28.67-35.67c6.78-8.14,7.09-20.52,.7-28.19ZM99.92,208.39c-2.39,0-4.86-.8-6.69-2.63-3.93-3.93-4.24-9.79-.7-13.33l13.96-15.35c1.66-1.67,4.09-2.59,6.71-2.59,2.4,0,4.18,.76,5.96,2.54l.7,.7c3.32,3.32,3.37,9.12,.11,13.2l-14.28,15.67c-1.52,1.14-3.62,1.79-5.78,1.79Zm19.94,23.98c-1.61,1.61-3.92,2.54-6.31,2.54s-4.7-.93-6.31-2.54l-.7-.7c-1.61-1.61-2.54-4.04-2.54-6.66s.93-5.05,2.54-6.66l5.6-5.6,13.96-15.35,.75-.75c1.75-1.75,4.26-2.54,5.96-2.54,2.4,0,4.18,.76,5.96,2.54l.7,.7c3.32,3.32,3.37,9.12,.11,13.2l-19.72,21.83Zm21.01,17.51c-1.61,1.61-3.92,2.54-6.31,2.54s-4.7-.93-6.31-2.54l-.7-.7c-2.65-2.65-3.34-6.82-1.68-10.13l.1-.19,19.5-20.94h.65s.21-.09,.35-.15c.53-.22,1.34-.55,2.46-.55,2.4,0,4.18,.76,5.96,2.54l.7,.7c3.32,3.32,3.37,9.12,.11,13.2l-14.82,16.23Zm33.72,4.78l-.07,.08-8.4,9.1c-1.71,1.71-4.04,2.56-6.37,2.56s-4.62-.84-6.3-2.52l-.7-.7c-2.61-2.61-3.31-6.87-1.68-10.13l.09-.18,12.04-13.45c1.2-1.2,2.94-1.2,4.62-1.2,2.4,0,4.18,.76,5.96,2.54l.7,.7c3.33,3.32,3.37,9.12,.11,13.2Zm94.42-32.09c-1.64,1.64-3.81,2.41-6.11,2.18-2.1-.21-4.17-1.23-5.81-2.88l-29.79-31.82-6.98,6.98,29.82,31.85c1.72,1.72,2.51,4.22,2.51,5.93,0,2.46-.79,4.09-2.35,6.43l-.19,.23c-1.61,1.61-3.92,2.54-6.31,2.54s-4.7-.93-6.31-2.54l-26.28-27.62-6.98,6.98,22.81,24.15c1.58,1.58,2.51,4.01,2.51,6.63,0,1.62-.76,4.18-1.84,5.26-3.2,3.2-8.33,2.9-11.92-.7l-18.5-19.82-6.44,7.51,8.19,8.82c1.72,1.72,2.66,4.27,2.48,6.8-.15,2.12-1.09,3.99-2.59,5.16-1.66,1.64-3.41,2.47-5.19,2.47-2.62,0-5.05-.93-6.66-2.54l-.09-.1-4.17-5.01,.53-.91c4.74-8.13,3.71-17.81-2.57-24.09-3.51-3.51-8.16-5.96-12.46-6.58l-1.29-.18v-1.3c0-4.43-1.93-9.01-5.16-12.24l-.7-.7c-2.69-2.69-5.98-4.58-9.04-5.19l-1.35-.27,.15-1.37c.51-4.56,.02-11.09-5.17-16.28l-.79-.8c-3.14-3.77-7.59-5.76-12.85-5.76h-1.5v-1.5c0-4.43-1.93-9.01-5.16-12.24l-.81-.82c-2.45-3.06-6.94-5.04-11.43-5.04-4.97,0-9.89,2.21-12.85,5.76l-.09,.1-1.72,1.72-20.67-19.19c-3.58-3.58-3.94-9.38-.85-13.24l19.58-25.88c3.33-4.16,10.4-5.69,14.57-3.18l11.83,6.26c7.79,3.9,20.53,3.31,27.84-1.3l3.63-2.88c5.13-2.93,14.71-4.55,20.24-2.18l2.54,1.09-4.4,2.94c-8.71,5.36-12.44,17.16-8.54,26.9l.11,.27v.59c3.17,5.42,10.06,10.8,17.41,10.8,2.56,0,4.49-.64,6.53-1.32l6.86-2.75c4.65-2.31,8.29-2.93,9.72-2.93h.64l33.35,34.77,29.41,30.81c1.59,1.59,2.52,4.02,2.52,6.64,0,.81,0,2.72-1.84,4.56Zm32.25-70.07l-29.45,34.35c-1.7,1.7-3.83,2.55-5.96,2.55s-4.26-.85-5.96-2.55l-15.41-16.11-32.93-34.33c-1.02-1.02-2.72-1.64-4.52-1.64-3.2,0-7.91,1.69-11.35,2.93-1.44,.52-2.7,.97-3.59,1.2l-6.91,2.76c-2.03,.81-4.53,.71-6.84-.28-2.31-.99-4.1-2.73-4.92-4.76l-.11-.27v-.75c-1.52-4.91,.27-10.35,4.23-12.73l19.63-11.22c4.6-2.3,13.58-2.45,18.38,.75l10.5,7c3.93,2.62,8.6,3.95,13.87,3.95s9.94-1.33,13.87-3.95l15.39-10.5c2.09-1.26,4.69-1.71,7.22-1.29,2.65,.44,4.86,1.82,6.07,3.79l19.56,25.85c3.39,4.24,3.03,11.36-.79,15.23Z" />
|
|
142
|
-
</symbol>
|
|
143
|
-
|
|
144
|
-
<!-- sofa -->
|
|
145
|
-
<symbol id="icon-sofa" viewBox="0 0 400 400">
|
|
146
|
-
<path d="M348.73,167.28c-3.49,0-6.32-2.83-6.32-6.32v-24.35c0-18.45-15.02-33.46-33.46-33.46H91.05c-18.45,0-33.46,15.01-33.46,33.46v24.35c0,3.49-2.83,6.32-6.32,6.32s-6.32-2.83-6.32-6.32v-24.35c0-25.42,20.68-46.1,46.1-46.1h217.9c25.42,0,46.1,20.68,46.1,46.1v24.35c0,3.49-2.83,6.32-6.32,6.32Z"/>
|
|
147
|
-
<path d="M365.43,287.78H34.57c-3.49,0-6.32-2.83-6.32-6.32v-54.54c-10.35-7.41-16.42-19.08-16.42-31.87,0-21.75,17.69-39.43,39.43-39.43s39.43,17.69,39.43,39.43v28.71h218.59v-28.71c0-21.75,17.69-39.43,39.44-39.43s39.43,17.69,39.43,39.43c0,12.81-6.1,24.49-16.46,31.9l.04,54.51c0,3.49-2.83,6.32-6.32,6.32Zm-324.54-12.63H359.11v-51.51c0-2.24,1.17-4.44,3.11-5.57,8.33-4.9,13.31-13.5,13.31-23.01,0-14.78-12.02-26.8-26.8-26.8s-26.8,12.02-26.8,26.8v35.02c0,3.49-2.83,6.32-6.32,6.32H84.39c-3.49,0-6.32-2.83-6.32-6.32v-35.02c0-14.78-12.02-26.8-26.8-26.8s-26.8,12.02-26.8,26.8c0,9.51,4.98,18.11,13.31,23.01,2.13,1.25,3.33,3.62,3.08,6.08l.02,51.01Z"/>
|
|
148
|
-
<path d="M70.29,329.65h-21.31c-3.49,0-6.32-2.83-6.32-6.32v-41.87c0-3.49,2.83-6.32,6.32-6.32s6.32,2.83,6.32,6.32v35.55h11.67l27.06-39.14c1.97-2.88,5.91-3.59,8.79-1.6,2.87,1.98,3.59,5.92,1.6,8.79l-28.93,41.87c-1.17,1.71-3.12,2.73-5.19,2.73Z"/>
|
|
149
|
-
<path d="M351.01,329.65h-21.32c-2.07,0-4.02-1.02-5.19-2.73l-28.92-41.87c-1.99-2.87-1.27-6.8,1.6-8.79,2.86-1.96,6.81-1.27,8.79,1.61l27.05,39.14h11.68v-35.55c0-3.49,2.83-6.32,6.32-6.32s6.32,2.83,6.32,6.32v41.87c0,3.49-2.83,6.32-6.32,6.32Z"/>
|
|
150
|
-
</symbol>
|
|
151
|
-
|
|
152
|
-
<!-- bed -->
|
|
153
|
-
<symbol id="icon-bed" viewBox="0 0 400 400">
|
|
154
|
-
<path d="M344.31,182.35v-60.18c0-16.33-13.28-29.61-29.61-29.61H90.08c-16.33,0-29.61,13.28-29.61,29.61v60.18c-18.73,4.28-32.75,21.03-32.75,41.03v49.31c0,3.77,3.05,6.82,6.82,6.82h10.92v36.44c0,7,5.69,12.69,12.69,12.69h15.56c7,0,12.69-5.69,12.69-12.69v-36.44h231.99v36.44c0,7,5.69,12.69,12.69,12.69h15.56c7,0,12.69-5.69,12.69-12.69v-36.44h10.92c3.77,0,6.82-3.05,6.82-6.82v-49.31c0-20-14.03-36.76-32.75-41.03ZM90.08,106.21h224.62c8.8,0,15.97,7.16,15.97,15.97v59.09h-10.92v-27.48c0-8.92-7.26-16.19-16.18-16.19h-76.8c-8.92,0-16.19,7.26-16.19,16.19v27.48h-16.38v-27.48c0-8.92-7.26-16.19-16.18-16.19H101.21c-8.92,0-16.19,7.26-16.19,16.19v27.48h-10.92v-59.09c0-8.8,7.16-15.97,15.97-15.97Zm216.03,75.06h-81.88v-27.48c0-1.4,1.14-2.54,2.54-2.54h76.8c1.4,0,2.54,1.14,2.54,2.54v27.48Zm-125.55,0H98.67v-27.48c0-1.4,1.14-2.54,2.54-2.54h76.8c1.4,0,2.54,1.14,2.54,2.54v27.48Zm-110.72,13.65H334.94c15.7,0,28.48,12.77,28.48,28.48v10.19H41.36v-10.19c0-15.7,12.78-28.48,28.48-28.48Zm2.91,120.09h-13.65v-35.48h13.65v35.48Zm272.93,0h-13.65v-35.48h13.65v35.48Zm13.65-49.13H41.36v-18.65H363.42v18.65h-4.09Z"/>
|
|
155
|
-
</symbol>
|
|
156
|
-
|
|
157
|
-
<!-- bath -->
|
|
158
|
-
<symbol id="icon-bath" viewBox="0 0 400 400">
|
|
159
|
-
<path d="M370.11,198.79H29.89c-6.21,0-11.25-5.05-11.25-11.25,0-25.99,21.14-47.14,47.14-47.14H334.23c25.99,0,47.14,21.14,47.14,47.14,0,6.21-5.05,11.25-11.25,11.25ZM65.77,152.28c-19.44,0-35.26,15.82-35.26,35.26l338.97-.63c-.34-19.15-16.03-34.63-35.26-34.63H65.77Z"/>
|
|
160
|
-
<path d="M295.01,291.82H104.98c-32.22,0-58.43-26.21-58.43-58.43v-40.54c0-3.28,3.58,1.16,6.86,1.16s5.01-4.45,5.01-1.16v40.54c0,25.67,20.89,46.56,46.56,46.56h190.04c25.68,0,46.57-20.89,46.57-46.56v-40.54c0-3.28,2.66-5.94,5.94-5.94s5.94,2.66,5.94,5.94v40.54c0,32.22-26.21,58.43-58.44,58.43Z"/>
|
|
161
|
-
<path d="M68.43,318.4c-1.14,0-2.27-.32-3.28-.99-2.74-1.81-3.48-5.5-1.67-8.23l19.52-29.46c1.82-2.74,5.52-3.44,8.23-1.67,2.74,1.81,3.48,5.5,1.67,8.23l-19.52,29.46c-1.15,1.72-3.04,2.66-4.95,2.66Z"/>
|
|
162
|
-
<path d="M331.57,318.4c-1.91,0-3.8-.93-4.95-2.66l-19.53-29.46c-1.81-2.74-1.07-6.41,1.67-8.23,2.7-1.79,6.41-1.09,8.23,1.67l19.53,29.46c1.81,2.74,1.07,6.41-1.67,8.23-1.01,.66-2.15,.99-3.28,.99Z"/>
|
|
163
|
-
</symbol>
|
|
164
|
-
|
|
165
|
-
<!-- pin -->
|
|
166
|
-
<symbol id="icon-pin" viewBox="0 0 400 400">
|
|
167
|
-
<path d="M205.56,79.43c-40.93,0-74.11,32.98-74.11,73.66,0,13.33,3.58,25.83,9.82,36.62l57.93,120.99c1.28,2.67,3.82,4.01,6.37,4.01s5.09-1.34,6.37-4.01l57.93-120.99c6.23-10.79,9.81-23.28,9.81-36.62,0-40.68-33.18-73.66-74.11-73.66Zm0,102.15c-15.83,0-28.66-12.75-28.66-28.48s12.83-28.48,28.66-28.48,28.66,12.75,28.66,28.48-12.83,28.48-28.66,28.48Zm-55.81,4.07c-.11-.22-.22-.43-.34-.64-5.6-9.69-8.55-20.72-8.55-31.91,0-33.86,26.51-61.66,60-64.06v26.49c-18.77,2.32-33.36,18.27-33.36,37.57s14.59,35.25,33.36,37.57v101.71l-51.1-106.73Zm111.95-.64c-.12,.21-.23,.43-.34,.64l-51.1,106.73v-101.71c18.77-2.32,33.36-18.27,33.36-37.57s-14.59-35.25-33.36-37.57v-26.49c33.48,2.4,59.99,30.21,59.99,64.06,0,11.19-2.96,22.23-8.55,31.91Z"/>
|
|
168
|
-
</symbol>
|
|
169
|
-
|
|
170
|
-
<!-- house -->
|
|
171
|
-
<symbol id="icon-house" viewBox="0 0 400 400">
|
|
172
|
-
<path xmlns="http://www.w3.org/2000/svg" d="M325.87,161.95l-102.76-82.2c-3.43-2.74-7.92-4.25-12.65-4.25s-9.22,1.51-12.64,4.25l-102.08,81.65c-3.7,2.96-5.83,7.16-5.83,11.53s2.12,8.57,5.82,11.52c7.09,5.68,18.2,5.68,25.29,0l3.9-3.12v107.8c0,10.69,9.31,19.4,20.76,19.4h130.23c11.45,0,20.76-8.7,20.76-19.4v-107.25l3.9,3.12c3.43,2.74,7.92,4.25,12.64,4.25s9.22-1.51,12.64-4.25c3.7-2.96,5.83-7.16,5.83-11.53s-2.12-8.57-5.83-11.52Zm-39.25,127.18c0,5.15-4.8,9.34-10.7,9.34H145.69c-5.9,0-10.7-4.19-10.7-9.34v-115.84h0l70.68-56.53c2.83-2.26,6.78-2.26,9.61,0l71.35,57.07v115.3Zm32.96-111.98c-3.24,2.6-9.46,2.6-12.71,0l-85.31-68.24c-3.27-2.61-7.18-3.92-11.09-3.92s-7.83,1.31-11.09,3.92l-74.44,59.54h0l-10.19,8.15c-3.38,2.71-9.32,2.71-12.72,0-1.32-1.05-2.05-2.36-2.05-3.67s.73-2.62,2.05-3.67l102.08-81.65c3.25-2.6,9.46-2.6,12.72,0l102.76,82.2c1.32,1.05,2.05,2.36,2.05,3.67s-.73,2.62-2.05,3.67Z"/>
|
|
173
|
-
</symbol>
|
|
174
|
-
|
|
175
|
-
<!-- pound -->
|
|
176
|
-
<symbol id="icon-pound" viewBox="0 0 400 400">
|
|
177
|
-
<path d="M338.46,203.9c0,70.54-57.18,127.73-127.72,127.73s-127.73-57.19-127.73-127.73,57.18-127.72,127.73-127.72,127.72,57.18,127.72,127.72m15.36,0c0-79.02-64.06-143.08-143.08-143.08S67.65,124.88,67.65,203.9s64.06,143.08,143.08,143.08,143.08-64.06,143.08-143.08"/>
|
|
178
|
-
<path d="M257,248.25v15.65h-92.52v-15.65h15.13v-31.65h-12.17v-14.09h12.17v-25.39c0-25.39,18.61-37.22,36.52-37.22s36.52,11.83,36.52,37.22v5.04h-16.17v-5.04c0-15.13-10.44-21.57-20.35-21.57-10.78,0-20.52,6.44-20.52,21.57v25.39h37.74v14.09h-37.74v31.65h61.39Z"/>
|
|
179
|
-
</symbol>
|
|
180
|
-
|
|
181
|
-
<!-- stopwatch -->
|
|
182
|
-
<symbol id="icon-stopwatch" viewBox="0 0 400 400">
|
|
183
|
-
<path d="M200,304.27c-57.49,0-104.27-46.77-104.27-104.27s46.77-104.27,104.27-104.27,104.27,46.77,104.27,104.27-46.77,104.27-104.27,104.27m0-221.57c-64.68,0-117.3,52.62-117.3,117.3s52.62,117.3,117.3,117.3,117.3-52.62,117.3-117.3-52.62-117.3-117.3-117.3m42.76,134.47l-36.25-20.93v-67.92c0-3.6-2.92-6.52-6.52-6.52s-6.52,2.92-6.52,6.52v71.68c0,2.33,1.24,4.48,3.26,5.64l39.5,22.81c1.03,.59,2.14,.87,3.25,.87,2.25,0,4.44-1.17,5.65-3.26,1.8-3.12,.73-7.1-2.39-8.9"/>
|
|
184
|
-
<rect x="185.12" y="64.97" width="29.77" height="19.52"/>
|
|
185
|
-
</symbol>
|
|
186
|
-
|
|
187
|
-
<!-- savings -->
|
|
188
|
-
<symbol id="icon-savings" viewBox="0 0 400 400">
|
|
189
|
-
|
|
190
|
-
<path d="M379.49,166.22c-1.72-3.22-5.73-4.44-8.95-2.71-11.15,5.96-19.25,12.91-24.24,20.77-7.52,1.28-13.89,4.7-18.39,7.81-4.99-13.99-13.22-27.66-24.13-39.52-11.02-11.98-24.25-21.68-39.33-28.85-16.65-7.91-35.2-12.52-55.14-13.68-29.65-1.74-55.63,1.42-77.27,9.38-14.83-5.51-30.5-8.38-44.4-8.11-19.48,.38-25.92,6.15-28.02,9.56-2.71,4.39-1.73,9.67,2.5,13.45,6.58,5.91,13.87,12.7,19.24,20.21-7.05,8.21-13.32,17.55-19.5,29-6.46,11.98-17.75,21.1-30.96,25.03-3.57,1.06-10.99,3.27-11.11,9.87-.15,7.98,.01,11.71,.34,19.14,.09,2.12,.2,4.56,.32,7.52,.05,1.26,.09,2.49,.13,3.67,.31,9.36,.54,16.12,4.5,20.2,1.87,1.93,5.54,4.52,25.45,10.99,9.05,2.94,17.65,7.46,25.56,13.44,4.6,3.47,9.61,6.77,14.9,9.79,6.86,3.92,12.18,10.27,14.95,17.86l4.69,12.82c2.41,6.59,8.7,11.04,15.69,11.16l23.76,1.75c.16,.01,.32,.02,.48,.02,9.37,0,17-7.63,17-17v-3.26c1.81,.15,3.63,.28,5.42,.38,.29,.02,.58,.03,.86,.04l1.01,.06c.37,.03,.74,.05,1.12,.07,17.78,1.04,35.13-.02,51.69-3.17v5.88c0,9.37,7.63,17,17,17,.17,0,.34,0,.5-.02l22.85-1.75c7.58-.12,14.12-5.21,16.12-12.51,7.71-19.91,18.28-39.13,31.43-57.11,10.71-14.66,16.67-31.09,17.71-48.83,.4-6.75-.15-13.71-1.54-20.72,1.7-1.49,4.85-3.97,8.89-5.93-.1,.83-.18,1.66-.23,2.51-.72,12.33,6.85,22.11,17.61,22.74,.34,.02,.68,.03,1.02,.03,5.23,0,9.94-2.39,13.35-6.81,2.47-3.21,4.14-7.42,4.35-11,.2-3.35-.13-8.33-2.81-13-1.86-3.24-5.27-7.01-11.43-9.07,3.65-3.61,8.42-6.99,14.29-10.13,3.22-1.72,4.44-5.73,2.71-8.95Zm-59.41,59.57c-.89,15.17-6,29.23-15.19,41.8-13.91,19.03-25.09,39.39-33.23,60.51-.1,.26-.19,.54-.25,.81-.41,1.7-1.92,2.88-3.67,2.88-.17,0-.34,0-.5,.02l-22.76,1.74c-2-.1-3.59-1.75-3.59-3.77v-14.04c0-2.02-.92-3.93-2.51-5.18-1.58-1.25-3.65-1.72-5.62-1.25-17.73,4.17-36.58,5.71-56.01,4.57-.33-.02-.65-.04-.98-.06l-.62-.04h-.09l-.62-.03c-.23-.01-.47-.02-.69-.03-1.86-.11-3.76-.25-5.65-.4-2.1-.18-4.25-.39-6.4-.64-1.87-.21-3.75,.38-5.15,1.64-1.41,1.25-2.21,3.05-2.21,4.93v10.55c0,2.02-1.6,3.68-3.6,3.77l-23.67-1.74c-.16-.01-.32-.02-.48-.02-1.58,0-3.01-1-3.55-2.48l-4.69-12.82c-3.85-10.52-11.24-19.32-20.81-24.79-4.81-2.75-9.34-5.73-13.49-8.86-9.09-6.87-18.99-12.07-29.44-15.46-14.26-4.63-18.62-6.81-19.86-7.56-.63-1.92-.82-7.41-.95-11.49-.04-1.21-.08-2.46-.13-3.75-.12-2.97-.22-5.43-.32-7.57-.27-6.29-.42-9.67-.37-15.22,.45-.16,1.02-.34,1.71-.55,16.56-4.93,30.71-16.38,38.83-31.43,6.63-12.28,13.3-21.86,21.01-30.15,2-2.15,2.34-5.36,.84-7.88-5.76-9.69-14.14-17.98-21.96-25.09,2.81-1.02,7.92-2.17,16.04-2.17h.02c12.57,0,26.83,2.89,40.16,8.13,1.55,.61,3.27,.61,4.83,0,20.32-7.94,45.25-11.11,74.1-9.41,18.23,1.07,35.13,5.25,50.24,12.43,13.54,6.43,25.41,15.13,35.27,25.85,8.87,9.64,15.94,20.86,20.45,32.45,4.24,10.89,6.17,21.89,5.58,31.82Zm43.45-19.19c-.03,.46-.46,2.2-1.62,3.7-1.2,1.55-2.25,1.71-3.13,1.66-1-.06-2.48-.35-3.69-2.2-1.1-1.67-1.64-4.06-1.49-6.56,.12-2.08,.51-4.1,1.17-6.08,3.86,.41,6.44,1.7,7.68,3.85,.83,1.44,1.21,3.44,1.08,5.64Z"/>
|
|
191
|
-
<circle cx="89.73" cy="205.23" r="8.79" transform="translate(-116.47 117.75) rotate(-43.39)"/>
|
|
192
|
-
<path d="M237.42,138.73c-9.06-2.42-18.73-3.95-28.76-4.54-3.38-.2-6.74-.33-10-.4-14.89-.32-28.64,.68-40.87,2.97-3.33,.62-5.52,3.83-4.89,7.15,.62,3.33,3.82,5.52,7.15,4.89,11.4-2.14,24.3-3.07,38.35-2.77,3.11,.07,6.32,.2,9.55,.39,9.2,.54,18.05,1.93,26.31,4.14,.53,.14,1.06,.21,1.59,.21,2.71,0,5.18-1.81,5.91-4.54,.87-3.27-1.07-6.63-4.34-7.5Z"/>
|
|
193
|
-
<path d="M197.38,97.31c-18.19,0-32.99-14.8-32.99-32.99s14.8-32.99,32.99-32.99,32.99,14.8,32.99,32.99-14.8,32.99-32.99,32.99Zm0-53.77c-11.46,0-20.78,9.32-20.78,20.78s9.32,20.78,20.78,20.78,20.78-9.32,20.78-20.78-9.32-20.78-20.78-20.78Z"/>
|
|
194
|
-
</symbol>
|
|
195
|
-
<symbol id="icon-piggy-bank" viewBox="0 0 400 400">
|
|
196
|
-
<use xlink:href="#icon-savings"></use>
|
|
197
|
-
</symbol>
|
|
198
|
-
|
|
199
|
-
<!-- timer -->
|
|
200
|
-
<symbol id="icon-timer" viewBox="0 0 400 400">
|
|
201
|
-
<path d="M302.95,86.84V50.83c0-3.31-2.78-6-6.21-6H98.01c-3.43,0-6.21,2.69-6.21,6v36.01c0,3.31,2.78,6,6.21,6h5.06c-9.34,61.94,35.4,79.18,59.87,88.59,6.25,2.41,14.81,5.7,15.87,7.13-1.06,2.03-9.61,5.32-15.87,7.72-24.47,9.42-69.21,26.66-59.87,88.61h-5.06c-3.43,0-6.21,2.69-6.21,6v36.01c0,3.31,2.78,6,6.21,6h198.73c3.43,0,6.21-2.69,6.21-6v-36.01c0-3.31-2.78-6-6.21-6h-5.06c9.35-61.96-35.4-79.2-59.87-88.61-6.25-2.4-14.81-5.69-15.87-7.13,1.06-2.02,9.62-5.32,15.87-7.72,24.46-9.41,69.2-26.65,59.87-88.59h5.06c3.43,0,6.21-2.69,6.21-6ZM104.22,56.83h186.31v24.01H104.22v-24.01Zm186.31,264.07H104.22v-24.01h186.31v24.01Zm-63.31-150.62c-13.2,5.08-23.64,9.09-23.64,18.58s10.43,13.5,23.63,18.58c25.85,9.94,60.96,23.46,51.91,77.45H115.62c-9.05-53.99,26.06-67.52,51.91-77.45,13.2-5.08,23.63-9.1,23.63-18.58s-10.43-13.5-23.63-18.58c-25.84-9.94-60.94-23.46-51.91-77.44h163.5c9.04,53.98-26.07,67.5-51.91,77.44Z"/>
|
|
202
|
-
<ellipse cx="197.36" cy="206.87" rx="6.22" ry="6.01"/>
|
|
203
|
-
<path d="M197.36,230.87c-3.43,0-6.22,2.69-6.22,6.01s2.78,6.01,6.22,6.01,6.22-2.69,6.22-6.01-2.78-6.01-6.22-6.01Z"/>
|
|
204
|
-
<ellipse cx="197.36" cy="266.88" rx="6.22" ry="6.01"/>
|
|
205
|
-
</symbol>
|
|
206
|
-
|
|
207
|
-
<!-- telescope -->
|
|
208
|
-
<symbol id="icon-telescope" viewBox="0 0 400 400">
|
|
209
|
-
<path d="M297.16,101.67l-28.99-45.84c-1.64-2.59-4.19-4.38-7.17-5.02-2.96-.64-6.01-.09-8.55,1.59l-24.65,16.14c-4.44,2.91-6.24,8.48-4.45,13.46l-81.18,53.16c-3.17,2.08-4.11,6.39-2.08,9.61l2.46,3.9-31.7,20.77c-1.49-1.83-3.59-3.1-5.97-3.62-3.44-.73-7.25,.04-10.48,2.15l-4.54,2.97c-6.12,4.01-8.27,11.34-4.89,16.7l18.18,28.79c1.49,2.35,3.88,3.99,6.73,4.61,3.47,.75,7.27-.05,10.49-2.15l4.53-2.97c5.72-3.74,7.98-10.52,5.38-15.76l31.7-20.77,2.36,3.74c1.01,1.6,2.58,2.69,4.42,3.1,1.8,.38,3.73,.04,5.29-.98l18.45-12.08v17.74h-21.3c-3.64,0-6.59,2.87-6.59,6.39v18.9c0,3.53,2.96,6.39,6.59,6.39h3.83l-46.68,85.22c-.76,1.38-.93,2.97-.49,4.49,.44,1.51,1.45,2.76,2.82,3.52,.87,.48,1.85,.73,2.83,.73,2.16,0,4.14-1.17,5.18-3.06l49.78-90.88h4.03v108.93c0,3.25,2.65,5.9,5.9,5.9s5.9-2.65,5.9-5.9v-108.93h4.03l49.77,90.88c1.04,1.89,3.02,3.06,5.18,3.06,.98,0,1.96-.25,2.83-.73,1.38-.76,2.39-2.01,2.83-3.52,.44-1.51,.27-3.1-.49-4.49l-46.68-85.22h3.82c3.64,0,6.59-2.87,6.59-6.39v-18.9c0-3.53-2.96-6.39-6.59-6.39h-21.3v-25.46l50.79-33.26c1.52,1.49,3.39,2.5,5.46,2.96,2.89,.64,6.02,.07,8.56-1.59l24.65-16.14c5.19-3.4,6.71-10.45,3.38-15.72ZM119.5,204.94c-.13,.26-.44,.71-1.05,1.11l-4.53,2.97c-.49,.32-.91,.44-1.19,.48l-17.48-27.55c.13-.26,.44-.73,1.07-1.14l4.54-2.97c.44-.29,.85-.43,1.16-.52l17.49,27.62Zm167.52-97.22l-23.95,15.6-28.52-45.1,24.08-15.4,28.39,44.9Zm-98.47,25.5c-1.32,.86-2.22,2.19-2.54,3.73-.32,1.54-.02,3.12,.84,4.43,1.09,1.67,2.94,2.67,4.94,2.67,1.15,0,2.26-.33,3.22-.96l47.1-30.84,6.41,10.14-76.81,50.3-19.13-30.24,76.82-50.3,6.41,10.14-47.25,30.94Zm-32.87,36.2l-31.6,20.7-6.82-10.79,31.6-20.7,6.82,10.79Zm20.74,41.37v-8.1h43.99v8.1h-43.99Z"/>
|
|
210
|
-
</symbol>
|
|
211
|
-
|
|
212
|
-
<!-- telescope -->
|
|
213
|
-
<symbol id="icon-lightbuld" viewBox="0 0 400 400">
|
|
214
|
-
<path d="M224,295.22h-48.61c-4.68,0-8.5-3.81-8.5-8.5v-1.38c0-15.52-6.51-30.54-17.86-41.2-3.61-3.39-6.9-7.16-9.76-11.2-2.89-4.08-5.37-8.46-7.37-13.02-4.17-9.51-6.26-19.64-6.21-30.12,.05-9.98,2.05-19.65,5.94-28.74,3.75-8.78,9.11-16.65,15.91-23.4,6.8-6.75,14.72-12.04,23.53-15.73,9.07-3.8,18.7-5.72,28.62-5.72h.16c9.97,.02,19.64,1.99,28.75,5.86,8.79,3.74,16.69,9.07,23.47,15.86,6.78,6.79,12.1,14.7,15.82,23.5,3.85,9.12,5.8,18.79,5.8,28.77s-2.11,20.42-6.27,29.84c-2,4.52-4.46,8.87-7.33,12.91-2.84,4.01-6.1,7.75-9.68,11.12-11.39,10.73-17.93,25.77-17.93,41.26v1.38c0,4.68-3.81,8.5-8.5,8.5Zm-47.72-9.38h46.84v-.5c0-4.51,.47-9.04,1.4-13.46,.92-4.36,2.28-8.65,4.07-12.75,1.78-4.09,3.98-8.01,6.55-11.67,2.59-3.68,5.57-7.12,8.85-10.22,13.11-12.34,20.32-29.05,20.32-47.05,0-35.56-28.92-64.54-64.48-64.62h-.14c-35.45,0-64.43,28.8-64.62,64.26-.1,17.9,7.33,35.2,20.38,47.46,3.28,3.09,6.26,6.52,8.85,10.2,2.56,3.65,4.76,7.57,6.53,11.66,1.77,4.09,3.14,8.38,4.05,12.74,.92,4.41,1.39,8.93,1.39,13.43v.5Z"/>
|
|
215
|
-
<rect x="169.89" y="300.2" width="59.61" height="7.75" rx="3.88" ry="3.88"/>
|
|
216
|
-
<path d="M225.63,308.86h-51.86c-2.64,0-4.79-2.15-4.79-4.79s2.15-4.79,4.79-4.79h51.86c2.64,0,4.79,2.15,4.79,4.79s-2.15,4.79-4.79,4.79Zm-51.86-7.75c-1.64,0-2.97,1.33-2.97,2.97s1.33,2.97,2.97,2.97h51.86c1.64,0,2.97-1.33,2.97-2.97s-1.33-2.97-2.97-2.97h-51.86Z"/>
|
|
217
|
-
<rect x="173.83" y="315.73" width="51.74" height="5.99" rx="2.99" ry="2.99"/>
|
|
218
|
-
<path d="M222.58,323.5h-45.75c-2.63,0-4.78-2.14-4.78-4.78s2.14-4.78,4.78-4.78h45.75c2.63,0,4.78,2.14,4.78,4.78s-2.14,4.78-4.78,4.78Zm-45.75-5.99c-.66,0-1.21,.56-1.21,1.21s.56,1.21,1.21,1.21h45.75c.66,0,1.21-.56,1.21-1.21s-.56-1.21-1.21-1.21h-45.75Z"/>
|
|
219
|
-
<path d="M208.59,335.35h-17.77c-3.06,0-5.97-1.24-7.91-3.37l-2.17-2.39c-.22-.24-.03-.61,.32-.61h37.29c.35,0,.54,.37,.32,.61l-2.17,2.39c-1.94,2.13-4.84,3.37-7.91,3.37Z"/>
|
|
220
|
-
<path d="M208.59,336.4h-17.77c-3.37,0-6.54-1.36-8.69-3.72l-2.17-2.39c-.38-.42-.48-1-.25-1.51,.23-.52,.76-.86,1.35-.86h37.29c.59,0,1.12,.34,1.35,.86,.23,.51,.13,1.09-.25,1.51l-2.17,2.39c-2.15,2.36-5.31,3.72-8.69,3.72Zm-26.02-6.37l1.12,1.24c1.75,1.92,4.35,3.03,7.13,3.03h17.77c2.78,0,5.38-1.1,7.13-3.03l1.12-1.24h-34.27Z"/>
|
|
221
|
-
<path d="M199.7,110.92c-2.59,0-4.69-2.1-4.69-4.69v-30.53c0-2.59,2.1-4.69,4.69-4.69s4.69,2.1,4.69,4.69v30.53c0,2.59-2.1,4.69-4.69,4.69Z"/>
|
|
222
|
-
<path d="M145.78,125.59c-1.2,0-2.4-.46-3.32-1.37l-21.59-21.59c-1.83-1.83-1.83-4.8,0-6.63,1.83-1.83,4.8-1.83,6.63,0l21.59,21.59c1.83,1.83,1.83,4.8,0,6.63-.92,.92-2.12,1.37-3.32,1.37Z"/>
|
|
223
|
-
<path d="M111.48,187.98h-30.53c-2.59,0-4.69-2.1-4.69-4.69s2.1-4.69,4.69-4.69h30.53c2.59,0,4.69,2.1,4.69,4.69s-2.1,4.69-4.69,4.69Z"/>
|
|
224
|
-
<path d="M108.8,277.04c-1.2,0-2.4-.46-3.32-1.37-1.83-1.83-1.83-4.8,0-6.63l21.59-21.59c1.83-1.83,4.8-1.83,6.63,0,1.83,1.83,1.83,4.8,0,6.63l-21.59,21.59c-.92,.92-2.12,1.37-3.32,1.37Z"/>
|
|
225
|
-
<path d="M289.01,277.04c-1.2,0-2.4-.46-3.32-1.37l-21.59-21.59c-1.83-1.83-1.83-4.8,0-6.63,1.83-1.83,4.8-1.83,6.63,0l21.59,21.59c1.83,1.83,1.83,4.8,0,6.63-.92,.92-2.12,1.37-3.32,1.37Z"/>
|
|
226
|
-
<path d="M317.94,192.83h-30.53c-2.59,0-4.69-2.1-4.69-4.69s2.1-4.69,4.69-4.69h30.53c2.59,0,4.69,2.1,4.69,4.69s-2.1,4.69-4.69,4.69Z"/>
|
|
227
|
-
<path d="M249.47,125.59c-1.2,0-2.4-.46-3.32-1.37-1.83-1.83-1.83-4.8,0-6.63l21.59-21.59c1.83-1.83,4.8-1.83,6.63,0,1.83,1.83,1.83,4.8,0,6.63l-21.59,21.59c-.92,.92-2.12,1.37-3.32,1.37Z"/>
|
|
228
|
-
<path d="M155.56,187.98c-.15,0-.31,0-.47-.02-2.58-.26-4.46-2.55-4.2-5.13,.04-.43,1.11-10.55,7.55-21.02,3.83-6.22,8.76-11.3,14.66-15.09,7.31-4.71,16.08-7.41,26.05-8.03,2.58-.16,4.81,1.8,4.97,4.39,.16,2.58-1.8,4.81-4.39,4.97-15.05,.94-26.26,7.22-33.31,18.68-5.32,8.65-6.2,16.95-6.2,17.03-.24,2.42-2.28,4.23-4.66,4.23Z"/>
|
|
229
|
-
</symbol>
|
|
230
|
-
<symbol id="icon-idea" viewBox="0 0 400 400">
|
|
231
|
-
<use xlink:href="#icon-lightbuld"></use>
|
|
232
|
-
</symbol>
|
|
233
|
-
|
|
234
|
-
<!-- move-in -->
|
|
235
|
-
<symbol id="icon-move-in" viewBox="0 0 400 400">
|
|
236
|
-
<path d="M235.53,259.82c2.04-2.5,1.65-6.16-.89-8.18l-30.95-24.64s-.03-.02-.04-.03c-.25-.2-.5-.36-.77-.52-.02,0-.03-.02-.04-.03-.26-.14-.54-.26-.83-.36-.04-.02-.08-.03-.13-.04-.27-.09-.55-.16-.84-.21l-.15-.03c-.29-.04-.58-.08-.87-.08h-.02c-.3,0-.59,.03-.87,.08-.06,0-.11,.02-.16,.03-.29,.05-.57,.12-.84,.21-.04,0-.08,.03-.13,.04-.29,.1-.56,.22-.82,.36-.02,0-.03,.02-.04,.03-.27,.15-.53,.32-.78,.52,0,0-.03,.02-.04,.03l-30.95,24.64c-2.53,2.01-2.93,5.67-.88,8.17,1.16,1.43,2.87,2.16,4.58,2.16,1.3,0,2.6-.42,3.69-1.29l21.37-17.01v90.51c0,3.22,2.63,5.81,5.89,5.81s5.89-2.6,5.89-5.81v-90.51l21.36,17.01c2.54,2.02,6.24,1.63,8.28-.87"/>
|
|
237
|
-
<path d="M320.09,153.02l-14.89-11.73c-.45-.5-.98-.92-1.59-1.25L204.32,61.82c-1.09-1.14-2.63-1.82-4.28-1.82h-.09c-1.65,0-3.19,.68-4.28,1.82l-99.82,78.63c-.29,.2-.56,.41-.81,.64l-15.14,11.93c-2.54,2-2.95,5.66-.92,8.17,2.03,2.51,5.73,2.92,8.27,.92l5.96-4.69v122.73c0,11.66,9.6,21.14,21.4,21.14h46.56c3.25,0,5.89-2.6,5.89-5.82s-2.64-5.81-5.89-5.81h-46.56c-5.31,0-9.63-4.27-9.63-9.51V148.14l95.02-74.86,94.93,74.78v132.08c0,5.24-4.32,9.51-9.63,9.51h-46.55c-3.26,0-5.89,2.6-5.89,5.81s2.63,5.82,5.89,5.82h46.55c11.8,0,21.4-9.48,21.4-21.14v-122.8l6.05,4.77c1.09,.86,2.38,1.27,3.67,1.27,1.73,0,3.44-.75,4.61-2.19,2.03-2.51,1.61-6.17-.93-8.17"/>
|
|
238
|
-
</symbol>
|
|
239
|
-
|
|
240
|
-
<!-- judge -->
|
|
241
|
-
<symbol id="icon-judge" viewBox="0 0 400 400">
|
|
242
|
-
<line x1="97.72" y1="178.09" x2="187.43" y2="88.39" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
243
|
-
<line x1="229.64" y1="130.6" x2="139.94" y2="220.3" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
244
|
-
<path d="M147.03,244.87l-3.63,3.63c-4.83,4.83-12.65,4.83-17.48,0l-56.39-56.39c-4.83-4.83-4.83-12.65,0-17.48l3.63-3.63c4.83-4.83,12.65-4.83,17.48,0l56.39,56.39c4.83,4.83,4.83,12.65,0,17.48Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
245
|
-
<path d="M257.84,134.06l-3.63,3.63c-4.83,4.83-12.65,4.83-17.48,0l-56.39-56.39c-4.83-4.83-4.83-12.65,0-17.48l3.63-3.63c4.83-4.83,12.65-4.83,17.48,0l56.39,56.39c4.83,4.83,4.83,12.65,0,17.48Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
246
|
-
<line x1="192.7" y1="167.54" x2="229.64" y2="204.47" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
247
|
-
<line x1="213.81" y1="220.3" x2="176.87" y2="183.37" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
248
|
-
<rect x="247.92" y="193.81" width="37.31" height="126.86" transform="translate(-103.82 263.84) rotate(-45)" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
249
|
-
<polyline points="324.62 288.9 345.72 310 319.34 336.39 298.23 315.28" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
250
|
-
<rect x="54.28" y="321.04" width="126.86" height="22.39" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
251
|
-
<path d="M69.2,321.04v-8.86c0-11.59,9.4-20.99,20.99-20.99h55.03c11.59,0,20.99,9.4,20.99,20.99v8.86" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
252
|
-
</symbol>
|
|
253
|
-
|
|
254
|
-
<!-- notes -->
|
|
255
|
-
<symbol id="icon-notes" viewBox="0 0 400 400">
|
|
256
|
-
<path d="M287.91,195.37v138.8c0,5.11-4.14,9.25-9.25,9.25H84.33c-5.11,0-9.25-4.14-9.25-9.25V65.82c0-5.11,4.14-9.25,9.25-9.25h194.32c5.11,0,9.25,4.14,9.25,9.25v92.53" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
257
|
-
<polygon points="324.92 158.36 306.42 139.85 186.12 260.15 167.61 297.16 204.63 278.65 324.92 158.36" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
258
|
-
<line x1="102.84" y1="93.58" x2="167.61" y2="93.58" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
259
|
-
<line x1="102.84" y1="232.39" x2="167.61" y2="232.39" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
260
|
-
<line x1="102.84" y1="121.35" x2="204.63" y2="121.35" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
261
|
-
<line x1="102.84" y1="149.11" x2="204.63" y2="149.11" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
262
|
-
<line x1="102.84" y1="176.87" x2="204.63" y2="176.87" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
263
|
-
<line x1="102.84" y1="204.63" x2="204.63" y2="204.63" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
264
|
-
</symbol>
|
|
265
|
-
|
|
266
|
-
<!-- loud-speaker -->
|
|
267
|
-
<symbol id="icon-loud-speaker" viewBox="0 0 400 400">
|
|
268
|
-
<path d="M248,73.07c-25.37,34.48-55.9,63.31-92.16,85.86l12.62,39.56,12.62,39.56c42.62-2.61,84.21,3.21,124.86,16.63,5.03,1.66,9.42-3.35,7.69-8.75l-27.15-85.09-27.15-85.09c-1.72-5.4-8.2-6.94-11.34-2.68Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
269
|
-
<path d="M295.93,190.31c9.33-10.08,13.33-23.4,9.38-35.79-3.96-12.42-14.97-20.97-28.46-23.77" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
270
|
-
<path d="M109.93,260.7c10.89,26.17,28.26,46.76,45.65,64.39,6.26,6.35,15.94,5.58,20.55-1.65l4.15-6.5c2.38-3.72,1.75-8.94-1.48-12.21-15.11-15.26-30.42-31.97-40.46-53.67" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
271
|
-
<path d="M88.25,174.21h82.8v82.46H88.25c-16.9,0-30.61-13.72-30.61-30.61v-21.23c0-16.9,13.72-30.61,30.61-30.61Z" transform="translate(-60.07 44.94) rotate(-17.69)" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
272
|
-
<line x1="365.68" y1="135.23" x2="337.83" y2="144.12" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
273
|
-
<line x1="325.15" y1="82.82" x2="309.25" y2="107.64" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
274
|
-
<line x1="363.18" y1="202.05" x2="335.85" y2="191.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
275
|
-
<path d="M70.77,256.35l-10.37,3.31c-8.02,2.56-16.6-1.87-19.15-9.89l-6.2-19.42c-2.56-8.02,1.87-16.6,9.89-19.15l10.37-3.31" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
276
|
-
</symbol>
|
|
277
|
-
|
|
278
|
-
<!-- like -->
|
|
279
|
-
<symbol id="icon-like" viewBox="0 0 400 400">
|
|
280
|
-
<path d="M327.51,200h-81.76c-10.95,0-19.83,8.88-19.83,19.83v59.38c0,10.95,8.88,19.83,19.83,19.83h12.6c1.33,0,2.41,1.08,2.41,2.41v25.88c0,2.15,2.6,3.23,4.12,1.71l29.29-29.29c.45-.45,1.07-.71,1.71-.71h31.62c10.95,0,19.83-8.88,19.83-19.83v-59.38c0-10.95-8.88-19.83-19.83-19.83Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
281
|
-
<path d="M285.85,279.72c-1.25-.76-30.72-18.86-30.72-38.03,0-9.25,7.52-16.77,16.77-16.77,6.22,0,11.84,3.46,14.73,8.75,2.89-5.29,8.51-8.75,14.73-8.75,9.25,0,16.77,7.52,16.77,16.77,0,19.17-29.47,37.27-30.72,38.03l-.78,.47-.78-.47Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
282
|
-
<path d="M240.02,316.25c-6.82,3.37-14.03,6.18-21.59,8.37-68.82,19.89-140.74-19.77-160.64-88.6-19.89-68.82,19.77-140.74,88.6-160.64,68.82-19.89,140.74,19.77,160.64,88.6,1.67,5.79,2.93,11.61,3.78,17.41" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
283
|
-
<path d="M197.71,90.43c23.78,17.88,44.87,49.69,56.21,88.9" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
284
|
-
<path d="M168.53,310.61c-24.35-17.67-46.06-49.95-57.62-89.94-11.33-39.21-10.46-77.37,.11-105.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
285
|
-
<line x1="151.12" y1="91.73" x2="213.71" y2="308.27" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
286
|
-
<line x1="74.14" y1="231.3" x2="290.69" y2="168.7" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
287
|
-
<line x1="80.1" y1="152.1" x2="243.39" y2="104.9" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
288
|
-
<line x1="121.44" y1="295.1" x2="203.08" y2="271.5" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
289
|
-
</symbol>
|
|
290
|
-
|
|
291
|
-
<!-- read -->
|
|
292
|
-
<symbol id="icon-read" viewBox="0 0 400 400">
|
|
293
|
-
<path d="M324.54,122.16h20.76v186.8h-119.35c-2.87,0-5.19,2.32-5.19,5.19,0,5.73-4.65,10.38-10.38,10.38h-20.76c-5.73,0-10.38-4.65-10.38-10.38,0-2.87-2.32-5.19-5.19-5.19H54.71V122.16h20.76" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
294
|
-
<path d="M200,122.16c26.32-29.7,64.1-46.7,103.78-46.7V251.89c-39.68,0-77.47,17-103.78,46.7-26.32-29.7-64.1-46.7-103.78-46.7V75.46c39.68,0,77.47,17,103.78,46.7Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
295
|
-
<path d="M96.22,102.14c-6.9-.52-13.8-.73-20.76-.73v176.43c42.86,0,85.25,8.82,124.54,25.95,39.28-17.12,81.68-25.95,124.54-25.95V101.41c-6.95,0-13.85,.21-20.76,.73" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
296
|
-
<line x1="200" y1="122.16" x2="200" y2="298.59" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
297
|
-
<path d="M272.65,114.28c-18.63,3.53-36.27,10.84-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
298
|
-
<path d="M127.35,114.28c18.63,3.53,36.27,10.84,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
299
|
-
<path d="M272.65,140.07c-18.63,3.53-36.27,10.84-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
300
|
-
<path d="M127.35,140.07c18.63,3.53,36.27,10.84,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
301
|
-
<path d="M272.65,165.86c-18.63,3.53-36.27,10.84-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
302
|
-
<path d="M127.35,165.86c18.63,3.53,36.27,10.84,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
303
|
-
<path d="M272.65,191.65c-18.63,3.53-36.27,10.84-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
304
|
-
<path d="M127.35,191.65c18.63,3.53,36.27,10.84,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
305
|
-
<path d="M272.65,217.43c-18.63,3.53-36.27,10.85-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
306
|
-
<path d="M127.35,217.43c18.63,3.53,36.27,10.85,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
307
|
-
</symbol>
|
|
308
|
-
|
|
309
|
-
<!-- calculator -->
|
|
310
|
-
<symbol id="icon-calculator" viewBox="0 0 400 400">
|
|
311
|
-
<rect x="89.52" y="70.31" width="220.96" height="259.38" rx="19.21" ry="19.21" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
312
|
-
<rect x="113.54" y="94.33" width="172.92" height="38.43" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
313
|
-
<path d="M238.43,166.38c0,5.31-4.3,9.61-9.61,9.61h-9.61c-5.31,0-9.61-4.3-9.61-9.61s4.3-9.61,9.61-9.61h9.61c5.31,0,9.61,4.3,9.61,9.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
314
|
-
<path d="M286.46,166.38c0,5.31-4.3,9.61-9.61,9.61h-9.61c-5.31,0-9.61-4.3-9.61-9.61s4.3-9.61,9.61-9.61h9.61c5.31,0,9.61,4.3,9.61,9.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
315
|
-
<rect x="257.64" y="195.2" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
316
|
-
<rect x="209.61" y="195.2" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
317
|
-
<rect x="161.57" y="195.2" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
318
|
-
<rect x="113.54" y="195.2" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
319
|
-
<rect x="209.61" y="238.43" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
320
|
-
<rect x="161.57" y="238.43" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
321
|
-
<rect x="113.54" y="238.43" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
322
|
-
<rect x="257.64" y="238.43" width="28.82" height="67.25" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
323
|
-
<rect x="209.61" y="281.66" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
324
|
-
<rect x="161.57" y="281.66" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
325
|
-
<rect x="113.54" y="281.66" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
326
|
-
<path d="M142.36,166.38c0,5.31-4.3,9.61-9.61,9.61h-9.61c-5.31,0-9.61-4.3-9.61-9.61s4.3-9.61,9.61-9.61h9.61c5.31,0,9.61,4.3,9.61,9.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/><path d="M190.39,166.38c0,5.31-4.3,9.61-9.61,9.61h-9.61c-5.31,0-9.61-4.3-9.61-9.61s4.3-9.61,9.61-9.61h9.61c5.31,0,9.61,4.3,9.61,9.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
327
|
-
</symbol>
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
<!-- alarm -->
|
|
331
|
-
<symbol id="icon-alarm" viewBox="0 0 400 400">
|
|
332
|
-
<path d="M85.86,284.59c-4.65,0-8.43-3.76-8.43-8.41,0-1.92,.65-3.78,1.85-5.28l8.5-10.61c16.91-21.2,26.13-47.5,26.17-74.62v-19.07c.01-40.03,29.08-74.12,68.6-80.46l4.44-.71v-14.69c0-7.18,5.81-13,12.99-13,7.18,0,13,5.81,13,12.99h0v14.76l4.44,.71c39.52,6.31,68.61,40.38,68.65,80.4v19.07c.05,27.11,9.26,53.4,26.13,74.61l8.51,10.62c2.91,3.63,2.33,8.93-1.3,11.84-1.49,1.2-3.35,1.85-5.26,1.85H85.86ZM195.43,102.01c-35.66,.04-64.57,28.94-64.61,64.6v19.07c0,26.23-7.57,51.91-21.81,73.94l-5.24,8.12h192.43l-5.23-8.11c-14.24-22.04-21.82-47.72-21.82-73.95v-19.07c-.04-35.66-28.95-64.56-64.61-64.6h-9.12Z"/><path d="M199.99,342.26c-10.54,.04-20.65-4.13-28.09-11.6-5.7-5.86-9.53-13.29-10.99-21.33-.83-4.6,2.23-8.99,6.82-9.82,4.6-.83,8.99,2.23,9.82,6.82,.83,4.67,3.02,8.99,6.3,12.41,4.28,4.29,10.11,6.69,16.17,6.66,11.16,.05,20.68-8.05,22.43-19.07,.83-4.6,5.22-7.65,9.82-6.82,4.6,.83,7.65,5.22,6.82,9.82h0c-1.46,8.04-5.29,15.47-10.99,21.33-7.51,7.37-17.6,11.53-28.13,11.6Z"/>
|
|
333
|
-
</symbol>
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
<!-- account settings -->
|
|
337
|
-
<symbol id="icon-account-settings" viewBox="0 0 400 400">
|
|
338
|
-
<circle cx="134.65" cy="243.3" r="25.64" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
339
|
-
<path d="M208.9,264.75c0-41.01-33.24-74.25-74.25-74.25-.19,0-.38,0-.58,0-40.74,.31-73.68,33.43-73.68,74.25s33.24,74.25,74.25,74.25,74.25-33.24,74.25-74.25Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
340
|
-
<path d="M147.98,282.77h-27.42c-19.91,0-36.3,14.89-38.75,34.13,13.46,13.64,32.16,22.1,52.84,22.1s38.77-8.19,52.18-21.44c-2.14-19.57-18.71-34.8-38.85-34.8Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
341
|
-
<path d="M198.91,302.46c7.57,.47,15.24,.15,22.91-1.03l14.72,27.51,39.93-16.14-8.53-30.02c9.51-6.73,17.71-14.86,24.41-23.98l29.86,9.04,16.83-39.65-27.25-15.2c1.91-11.16,2.05-22.7,.29-34.22l27.52-14.72-16.14-39.93-30.02,8.53c-6.73-9.51-14.86-17.71-23.98-24.41l9.04-29.86-39.65-16.83-15.2,27.25c-11.16-1.91-22.7-2.05-34.22-.29l-14.72-27.51-39.93,16.14,8.53,30.02c-9.51,6.73-17.71,14.86-24.41,23.98l-29.86-9.04-16.83,39.65,27.25,15.2c-1.27,7.45-1.76,15.07-1.42,22.73m36.23-9.96c1.96-26.31,18.45-50.52,44.56-61.07,36.63-14.8,78.33,2.89,93.13,39.52,14.8,36.63-2.89,78.33-39.52,93.13-7.72,3.12-15.66,4.8-23.53,5.16" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
342
|
-
</symbol>
|
|
343
|
-
|
|
344
|
-
<!-- directions -->
|
|
345
|
-
<symbol id="icon-directions" viewBox="0 0 400 400">
|
|
346
|
-
<path d="M247.21,128.68c-42.65,0-77.23,34.58-77.23,77.23,0,9.14,1.72,17.86,4.51,26.04,9.78,28.65,72.72,82.81,72.72,82.81,0,0,65.4-62.17,72.72-82.81,2.89-8.15,4.51-16.9,4.51-26.04,0-42.65-34.58-77.23-77.23-77.23Zm0,123.91c-25.78,0-46.68-20.9-46.68-46.68s20.9-46.68,46.68-46.68,46.68,20.9,46.68,46.68-20.9,46.68-46.68,46.68Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
347
|
-
<circle cx="247.21" cy="205.91" r="46.68" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
348
|
-
<path d="M111.62,85.24c-19.92,0-36.06,16.14-36.06,36.06,0,4.27,.8,8.34,2.11,12.16,4.57,13.38,33.95,38.67,33.95,38.67,0,0,30.54-29.03,33.95-38.67,1.35-3.8,2.11-7.89,2.11-12.16,0-19.92-16.14-36.06-36.06-36.06Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
349
|
-
<path d="M111.62,105.54c-8.7,0-15.76,7.06-15.76,15.76s7.06,15.76,15.76,15.76,15.76-7.06,15.76-15.76-7.06-15.76-15.76-15.76Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
350
|
-
<path d="M111.99,172.52h4.42c19.64,0,35.56,15.92,35.56,35.56h0c0,19.64-15.92,35.56-35.56,35.56h-.49" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
351
|
-
<path d="M247.21,314.76H115.92c-19.64,0-35.56-15.92-35.56-35.56h0c0-19.64,15.92-35.56,35.56-35.56" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
352
|
-
</symbol>
|
|
353
|
-
|
|
354
|
-
<!-- downwards-graph -->
|
|
355
|
-
<symbol id="icon-downwards-graph" viewBox="0 0 400 400">
|
|
356
|
-
<path d="M340.41,329.33h-34.41v-75.2c0-4.38-3.57-7.95-7.95-7.95s-7.95,3.57-7.95,7.95v75.2h-48.42v-121.48c0-4.38-3.57-7.95-7.95-7.95s-7.95,3.57-7.95,7.95v121.48h-51.56V160c0-4.38-3.57-7.95-7.95-7.95s-7.95,3.57-7.95,7.95v169.32h-50.48V108.23c0-4.38-3.57-7.95-7.95-7.95s-7.95,3.57-7.95,7.95v221.09H59.59c-4.38,0-7.95,3.57-7.95,7.95s3.57,7.95,7.95,7.95H340.41c4.38,0,7.95-3.57,7.95-7.95s-3.57-7.95-7.95-7.95Z"/>
|
|
357
|
-
<path d="M302.31,179.48l-14.93,7.74c-3.89,2.02-5.42,6.82-3.4,10.71,1.37,2.65,4.08,4.29,7.06,4.29,1.27,0,2.53-.31,3.65-.89l31.21-16.18c.13-.06,.25-.14,.38-.21,.19-.11,.38-.22,.56-.35,.12-.09,.25-.17,.37-.26,.25-.19,.49-.4,.72-.62,.07-.07,.13-.14,.19-.2,.2-.21,.39-.43,.57-.67,.05-.07,.1-.13,.15-.2,.21-.29,.39-.6,.56-.92,.04-.07,.07-.14,.1-.21,.17-.34,.32-.7,.43-1.07,.08-.26,.15-.52,.2-.78,0-.03,0-.06,.02-.1,.05-.23,.08-.46,.11-.69,0-.01,0-.03,0-.04,.15-1.52-.13-3.06-.85-4.45l-16.24-31.33c-1.37-2.65-4.08-4.29-7.06-4.29-1.26,0-2.52,.31-3.65,.89-3.89,2.01-5.42,6.82-3.4,10.71l6.98,13.45c-14.31-5.37-35.25-13.84-57.14-24.78-35.65-17.82-81.34-46.09-96.58-79.61-1.29-2.84-4.12-4.67-7.22-4.67-1.14,0-2.26,.24-3.31,.72-1.93,.88-3.41,2.46-4.15,4.45-.74,1.99-.67,4.15,.21,6.08,26.07,57.36,123.86,98.5,164.46,113.46Z"/>
|
|
358
|
-
</symbol>
|
|
359
|
-
|
|
360
|
-
<!-- paint -->
|
|
361
|
-
<symbol id="icon-paint" viewBox="0 0 400 400">
|
|
362
|
-
<path d="M241.97,140.68c-4.78-9.51-6.01-20.76-2.68-30.95,3.48-10.64,11.97-19.34,22.35-23.43,8.61-3.39,17.92-3.33,27.03-3.58,9.08-.24,18.3-1.08,26.22-5.94,2.18-1.34,4.2-2.92,6.05-4.68,1.04-.99,2.03-2.04,2.96-3.13,.18-.22,1.28-1.75,1.44-1.7,.15,.05,.31,.77,.36,.89,.24,.68,.45,1.37,.66,2.07,1.71,5.79,2.74,11.81,3.31,17.81,.87,9.17,.55,18.49-1.3,27.52-2.21,10.78-6.7,21.03-13.43,29.76-1.86,2.41-3.88,4.7-6.03,6.85-8.74,8.74-21.55,12.69-33.74,11.47-4.73-.47-9.25-1.73-13.43-3.68" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
363
|
-
<path d="M261.84,159.81s-1.73-4.5-7.96-10.73c-5.54-5.54-11.42-8.65-11.42-8.65l-18.34,10.04s6.58,3.81,15.23,12.46,12.46,15.23,12.46,15.23l10.04-18.34Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
364
|
-
<path d="M251.8,178.15c-35.43,65.8-167.13,167.13-180.98,153.29-11.84-11.84,87.49-145.55,153.29-180.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
365
|
-
<path d="M258.6,112.42c2.97-4.9,7.64-8.66,13.15-10.56,4.98-1.72,10.38-1.8,15.79-1.66" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
366
|
-
<path d="M182.32,206.63c10.7-10.57,21.49-20.24,31.91-28.31" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
367
|
-
</symbol>
|
|
368
|
-
|
|
369
|
-
<!-- send-email -->
|
|
370
|
-
<symbol id="icon-send-email" viewBox="0 0 400 400">
|
|
371
|
-
<path d="M199.5,125.12H95.91c-7.54,0-13.65,6.11-13.65,13.65v154.63h233.4v-99.8" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
372
|
-
<path d="M60.8,293.41c0,11.86,9.61,21.46,21.46,21.46h233.4c11.85,0,21.46-9.61,21.46-21.46" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
373
|
-
<line x1="111.98" y1="205.25" x2="176.99" y2="162.06" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
374
|
-
<line x1="138.13" y1="221.44" x2="191.92" y2="185.7" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
375
|
-
<line x1="164.28" y1="237.62" x2="207.39" y2="208.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
376
|
-
<line x1="190.42" y1="253.8" x2="223.39" y2="231.9" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
377
|
-
<rect x="201.73" y="112.62" width="124.69" height="83.84" rx="2.27" ry="2.27" transform="translate(-41.4 171.94) rotate(-33.6)" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
378
|
-
<line x1="278.6" y1="144.95" x2="339.2" y2="154.96" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
379
|
-
<line x1="235.34" y1="223.96" x2="251.42" y2="163" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
380
|
-
<path d="M292.81,85.13l-18.73,78.82c-.29,1.21-1.53,2.06-2.77,1.89l-82.36-11.71" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
381
|
-
</symbol>
|
|
382
|
-
|
|
383
|
-
<!-- send-browser -->
|
|
384
|
-
<symbol id="icon-browser" viewBox="0 0 400 400">
|
|
385
|
-
<line x1="181.54" y1="320" x2="181.54" y2="292.87" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
386
|
-
<line x1="218.46" y1="292.87" x2="218.46" y2="320" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
387
|
-
<line x1="248.45" y1="320" x2="151.55" y2="320" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
388
|
-
<rect x="60.8" y="80" width="278.4" height="196.27" rx="18.81" ry="18.81" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
389
|
-
<line x1="339.2" y1="249.14" x2="60.8" y2="249.14" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
390
|
-
<path d="M262.09,164.57c0,34.28-27.79,62.08-62.07,62.08s-62.07-27.79-62.07-62.08,27.79-62.08,62.07-62.08,62.07,27.79,62.07,62.08Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
391
|
-
<path d="M223.14,164.57c0,34.28-10.35,62.08-23.12,62.08s-23.12-27.79-23.12-62.08,10.36-62.08,23.12-62.08,23.12,27.79,23.12,62.08Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
392
|
-
<line x1="141.67" y1="185.26" x2="258.36" y2="185.26" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
393
|
-
<line x1="141.67" y1="143.88" x2="258.36" y2="143.88" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
394
|
-
</symbol>
|
|
395
|
-
|
|
396
|
-
<!-- phone-notification -->
|
|
397
|
-
<symbol id="icon-phone-notification" viewBox="0 0 400 400">
|
|
398
|
-
<line x1="181.54" y1="320" x2="181.54" y2="292.87" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
399
|
-
<line x1="218.46" y1="292.87" x2="218.46" y2="320" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
400
|
-
<line x1="248.45" y1="320" x2="151.55" y2="320" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
401
|
-
<rect x="60.8" y="80" width="278.4" height="196.27" rx="18.81" ry="18.81" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
402
|
-
<line x1="339.2" y1="249.14" x2="60.8" y2="249.14" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
403
|
-
<path d="M262.09,164.57c0,34.28-27.79,62.08-62.07,62.08s-62.07-27.79-62.07-62.08,27.79-62.08,62.07-62.08,62.07,27.79,62.07,62.08Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
404
|
-
<path d="M223.14,164.57c0,34.28-10.35,62.08-23.12,62.08s-23.12-27.79-23.12-62.08,10.36-62.08,23.12-62.08,23.12,27.79,23.12,62.08Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
405
|
-
<line x1="141.67" y1="185.26" x2="258.36" y2="185.26" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
406
|
-
<line x1="141.67" y1="143.88" x2="258.36" y2="143.88" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
407
|
-
</symbol>
|
|
408
|
-
|
|
409
|
-
<!-- danger -->
|
|
410
|
-
<symbol id="icon-danger" viewBox="0 0 400 400">
|
|
411
|
-
<path d="M211.04,278.69c0,6.1-4.94,11.04-11.04,11.04s-11.04-4.94-11.04-11.04,4.94-11.04,11.04-11.04,11.04,4.94,11.04,11.04Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
412
|
-
<path id="d" d="M200,249.44h0c-5.44,0-9.94-4.25-10.24-9.69l-4.85-87.53c-.48-8.66,6.42-15.95,15.09-15.95h0c8.68,0,15.57,7.29,15.09,15.95l-4.85,87.53c-.3,5.44-4.8,9.69-10.24,9.69Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
413
|
-
<path d="M185.41,88.43l-119.11,206.3c-6.49,11.23,1.62,25.27,14.59,25.27h238.21c12.97,0,21.08-14.04,14.59-25.27L214.59,88.43c-6.49-11.23-22.7-11.23-29.18,0Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
414
|
-
</symbol>
|
|
415
|
-
|
|
416
|
-
<!-- warning -->
|
|
417
|
-
<symbol id="icon-warning" viewBox="0 0 400 400">
|
|
418
|
-
<path id="c" d="M211.04,265.69c0,6.1-4.94,11.04-11.04,11.04s-11.04-4.94-11.04-11.04,4.94-11.04,11.04-11.04,11.04,4.94,11.04,11.04Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
419
|
-
<path id="d" d="M200,236.44h0c-5.44,0-9.94-4.25-10.24-9.69l-4.85-87.53c-.48-8.66,6.42-15.95,15.09-15.95h0c8.68,0,15.57,7.29,15.09,15.95l-4.85,87.53c-.3,5.44-4.8,9.69-10.24,9.69Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
420
|
-
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
421
|
-
</symbol>
|
|
422
|
-
|
|
423
|
-
<!-- basket -->
|
|
424
|
-
<symbol id="icon-basket" viewBox="0 0 400 400">
|
|
425
|
-
<rect x="71.9" y="161.95" width="256.2" height="58.17" rx="12" ry="12" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
426
|
-
<path d="M84.97,220.12l18.35,106.94c1.14,6.65,6.91,11.51,13.66,11.51h166.04c6.75,0,12.52-4.86,13.66-11.51l18.35-106.94" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/><path d="M284.31,161.95l-63.13-94.37c-2.57-3.84-6.89-6.15-11.52-6.15h-30.13c-4.95,0-9.52,2.64-12,6.92l-54.09,93.59" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
427
|
-
<line x1="148.37" y1="261.68" x2="148.37" y2="297.01" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
428
|
-
<line x1="200" y1="261.68" x2="200" y2="297.01" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
429
|
-
<line x1="251.63" y1="261.68" x2="251.63" y2="297.01" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
430
|
-
</symbol>
|
|
431
|
-
<!-- alarm2 -->
|
|
432
|
-
<symbol id="icon-alarm2" viewBox="0 0 400 400">
|
|
433
|
-
|
|
434
|
-
<path d="M249.68,115.12c6.35-8.38,16.41-13.8,27.74-13.8,19.21,0,34.78,15.57,34.78,34.78,0,11.01-5.11,20.82-13.1,27.19" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
435
|
-
<path d="M114.99,284.12l-21.98,48.78c-1.63,3.62,2.43,7.15,5.78,5.03l45.24-28.5" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
436
|
-
<circle cx="199.74" cy="216.17" r="108.62" transform="translate(-94.35 204.55) rotate(-45)" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
437
|
-
<line x1="199.74" y1="298.24" x2="199.74" y2="324.79" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
438
|
-
<line x1="199.74" y1="108.57" x2="199.74" y2="134.09" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
439
|
-
<line x1="127.48" y1="257.79" x2="127.48" y2="257.79" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
440
|
-
<line x1="272.07" y1="174.32" x2="272.07" y2="174.32" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
441
|
-
<line x1="117.67" y1="216.17" x2="91.12" y2="216.17" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
442
|
-
<line x1="308.36" y1="216.17" x2="281.81" y2="216.17" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
443
|
-
<line x1="157.4" y1="142.98" x2="157.4" y2="142.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
444
|
-
<line x1="241.46" y1="288.57" x2="241.46" y2="288.57" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
445
|
-
<line x1="157.62" y1="288.91" x2="157.62" y2="288.91" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
446
|
-
<line x1="241.46" y1="143.7" x2="241.46" y2="143.7" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
447
|
-
<line x1="125.96" y1="173.6" x2="125.96" y2="173.6" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
448
|
-
<line x1="272.07" y1="257.96" x2="272.07" y2="257.96" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
449
|
-
<polyline points="199.74 164.75 199.74 216.17 226.75 243.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
450
|
-
<path d="M286.27,284.12l21.98,48.78c1.63,3.62-2.43,7.15-5.78,5.03l-45.23-28.5" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
451
|
-
<path d="M279.07,82.32c28.87,0,52.27,23.4,52.27,52.27" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
452
|
-
<path d="M279.07,61.43c40.4,0,73.16,32.75,73.16,73.16" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
453
|
-
<path d="M150.32,115.12c-6.35-8.38-16.41-13.8-27.74-13.8-19.21,0-34.78,15.57-34.78,34.78,0,11.01,5.11,20.82,13.1,27.19" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
454
|
-
<path d="M120.93,82.32c-28.87,0-52.27,23.4-52.27,52.27" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
455
|
-
<path d="M120.93,61.43c-40.4,0-73.16,32.75-73.16,73.16" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
456
|
-
</symbol>
|
|
457
|
-
|
|
458
|
-
<!-- download -->
|
|
459
|
-
<symbol id="icon-download" viewBox="0 0 400 400">
|
|
460
|
-
<polyline points="235.39 270.77 200 306.16 164.61 270.77" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
461
|
-
<line x1="200" y1="235.39" x2="200" y2="164.61" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
462
|
-
<line x1="200" y1="306.16" x2="200" y2="235.39" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
463
|
-
<path d="M247.18,235.39h35.39c26.06,0,47.18-21.12,47.18-47.18s-21.12-47.18-47.18-47.18c-5.38,0-10.46,1.09-15.28,2.75-8.94-28.84-35.51-49.93-67.29-49.93-39.09,0-70.77,31.69-70.77,70.77,0,3.43,.54,6.72,1.01,10.02-6.37-6.18-15.03-10.02-24.6-10.02-19.54,0-35.39,15.84-35.39,35.39s15.84,35.39,35.39,35.39h47.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
464
|
-
</symbol>
|
|
465
|
-
|
|
466
|
-
<!-- loading -->
|
|
467
|
-
<symbol id="icon-loading" viewBox="0 0 400 400">
|
|
468
|
-
<path d="M267.7,200c0,37.39-30.31,67.7-67.7,67.7-17.09,0-32.7-6.33-44.61-16.77" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
469
|
-
<polygon points="175.91 242.38 138.01 227.25 143.85 267.64 175.91 242.38"/>
|
|
470
|
-
<path d="M132.3,200c0-37.39,30.31-67.7,67.7-67.7,17.09,0,32.7,6.33,44.61,16.77" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
471
|
-
<polygon points="224.09 157.61 261.99 172.75 256.15 132.36 224.09 157.61"/>
|
|
472
|
-
<circle cx="200" cy="200" r="129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
473
|
-
</symbol>
|
|
474
|
-
|
|
475
|
-
<!-- refresh -->
|
|
476
|
-
<symbol id="icon-refresh" viewBox="0 0 400 400">
|
|
477
|
-
<path d="M267.7,200c0,37.39-30.31,67.7-67.7,67.7s-67.7-30.31-67.7-67.7,30.31-67.7,67.7-67.7c16.74,0,32.07,6.08,43.89,16.15" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
478
|
-
<polygon points="223.49 157.29 261.6 171.88 255.19 131.58 223.49 157.29"/>
|
|
479
|
-
<circle cx="200" cy="200" r="129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
480
|
-
</symbol>
|
|
481
|
-
|
|
482
|
-
<!-- battery -->
|
|
483
|
-
<symbol id="icon-battery" viewBox="0 0 400 400">
|
|
484
|
-
<rect x="133.28" y="102.49" width="133.44" height="236.08" rx="1" ry="1" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
485
|
-
<path d="M165.07,61.43h69.85c.55,0,1,.45,1,1v40.06h-71.85V62.43c0-.55,.45-1,1-1Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
486
|
-
<rect x="164.07" y="174.34" width="71.85" height="123.17" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
487
|
-
<line x1="164.07" y1="215.4" x2="235.93" y2="215.4" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
488
|
-
<line x1="164.07" y1="256.45" x2="235.93" y2="256.45" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
489
|
-
<line x1="184.6" y1="318.04" x2="215.4" y2="318.04" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
490
|
-
<line x1="184.6" y1="138.41" x2="215.4" y2="138.41" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
491
|
-
<line x1="200" y1="153.81" x2="200" y2="123.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
492
|
-
</symbol>
|
|
493
|
-
|
|
494
|
-
<!-- key -->
|
|
495
|
-
<symbol id="icon-key" viewBox="0 0 400 400">
|
|
496
|
-
<circle cx="251.69" cy="148.62" r="23.96" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
497
|
-
<path d="M66.86,281.38l98.29-98.29c-11.08-30.78-4.16-66.58,20.76-91.09,34.05-33.49,89.31-32.88,122.66,1.3,33.02,33.86,32.77,88.08-.77,121.62-24.49,24.49-60,31.23-90.57,20.23l-7.58,7.58c-2.82,2.82-6.2,5.02-9.92,6.45l-23.9,9.19-13.28,32.3-30.05,11.03-12,31.02-47.04-5.87-6.6-45.47Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
498
|
-
<line x1="183.46" y1="206.42" x2="92.04" y2="297.85" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
499
|
-
</symbol>
|
|
500
|
-
|
|
501
|
-
<!-- next -->
|
|
502
|
-
<symbol id="icon-next" viewBox="0 0 400 400">
|
|
503
|
-
<path d="M147.14,149.68c0-2.64,1.36-5.08,3.57-6.38,2.21-1.31,4.92-1.29,7.11,.06l81.97,50.32c2.15,1.32,3.47,3.73,3.47,6.33s-1.32,5-3.47,6.33l-81.97,50.32c-2.19,1.34-4.9,1.37-7.11,.06-2.21-1.3-3.57-3.75-3.57-6.38v-100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
504
|
-
<line x1="252.86" y1="142.33" x2="252.86" y2="257.67" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
505
|
-
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
506
|
-
</symbol>
|
|
507
|
-
|
|
508
|
-
<!-- prev -->
|
|
509
|
-
<symbol id="icon-prev" viewBox="0 0 400 400">
|
|
510
|
-
<path d="M252.86,250.32c0,2.64-1.36,5.08-3.57,6.38-2.21,1.31-4.92,1.29-7.11-.06l-81.97-50.32c-2.15-1.32-3.47-3.73-3.47-6.33s1.32-5,3.47-6.33l81.97-50.32c2.19-1.34,4.9-1.37,7.11-.06,2.21,1.3,3.57,3.75,3.57,6.38v100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
511
|
-
<line x1="147.14" y1="257.67" x2="147.14" y2="142.33" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
512
|
-
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
513
|
-
</symbol>
|
|
514
|
-
|
|
515
|
-
<!-- pause -->
|
|
516
|
-
<symbol id="icon-pause" viewBox="0 0 400 400">
|
|
517
|
-
<rect x="219.22" y="147.14" width="28.83" height="105.72" rx="12" ry="12" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
518
|
-
<rect x="151.94" y="147.14" width="28.83" height="105.72" rx="12" ry="12" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
519
|
-
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
520
|
-
</symbol>
|
|
521
|
-
|
|
522
|
-
<!-- forwards -->
|
|
523
|
-
<symbol id="icon-forwards" viewBox="0 0 400 400">
|
|
524
|
-
<path d="M195.19,149.68c0-2.64,1.36-5.08,3.57-6.38,2.21-1.31,4.92-1.29,7.11,.06l81.97,50.32c2.15,1.32,3.47,3.73,3.47,6.33s-1.32,5-3.47,6.33l-81.97,50.32c-2.19,1.34-4.9,1.37-7.11,.06-2.21-1.3-3.57-3.75-3.57-6.38v-100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
525
|
-
<path d="M195.19,221.91l-56.61,34.75c-2.16,1.34-4.9,1.34-7.11,.04-2.21-1.3-3.56-3.75-3.56-6.39v-100.63c0-2.64,1.35-5.1,3.56-6.39,2.22-1.3,4.95-1.3,7.11,.05l56.61,34.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
526
|
-
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
527
|
-
</symbol>
|
|
528
|
-
|
|
529
|
-
<!-- backwards -->
|
|
530
|
-
<symbol id="icon-backwards" viewBox="0 0 400 400">
|
|
531
|
-
<path d="M204.81,149.68c0-2.64-1.36-5.08-3.57-6.38-2.21-1.31-4.92-1.29-7.11,.06l-81.97,50.32c-2.15,1.32-3.47,3.73-3.47,6.33s1.32,5,3.47,6.33l81.97,50.32c2.19,1.34,4.9,1.37,7.11,.06,2.21-1.3,3.57-3.75,3.57-6.38v-100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
532
|
-
<path d="M204.81,178.09l56.61-34.75c2.17-1.35,4.9-1.35,7.11-.05,2.21,1.3,3.56,3.75,3.56,6.39v100.63c0,2.64-1.34,5.1-3.56,6.39-2.21,1.3-4.95,1.3-7.11-.04l-56.61-34.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
533
|
-
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
534
|
-
</symbol>
|
|
535
|
-
|
|
536
|
-
<!-- play -->
|
|
537
|
-
<symbol id="icon-play" viewBox="0 0 400 400">
|
|
538
|
-
<path d="M166.36,149.68c0-2.64,1.36-5.08,3.57-6.38,2.21-1.3,4.92-1.29,7.11,.06l81.97,50.32c2.15,1.32,3.47,3.73,3.47,6.33s-1.32,5-3.47,6.33l-81.97,50.32c-2.19,1.34-4.9,1.37-7.11,.06-2.21-1.3-3.57-3.75-3.57-6.38v-100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
539
|
-
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
540
|
-
</symbol>
|
|
541
|
-
|
|
542
|
-
<!-- delete -->
|
|
543
|
-
<symbol id="icon-delete" viewBox="0 0 400 400">
|
|
544
|
-
<path d="M99.22,111.82v201.55c0,13.92,11.27,25.19,25.19,25.19h151.17c13.92,0,25.19-11.27,25.19-25.19V111.82" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
545
|
-
<line x1="86.63" y1="111.82" x2="313.37" y2="111.82" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
546
|
-
<line x1="149.61" y1="162.21" x2="149.61" y2="288.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
547
|
-
<line x1="200" y1="162.21" x2="200" y2="288.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
548
|
-
<line x1="250.39" y1="162.21" x2="250.39" y2="288.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
549
|
-
<path d="M250.39,111.82v-25.19c0-13.92-11.27-25.19-25.19-25.19h-50.39c-13.93,0-25.19,11.27-25.19,25.19v25.19" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
550
|
-
</symbol>
|
|
551
|
-
|
|
552
|
-
<!-- download2 -->
|
|
553
|
-
<symbol id="icon-download2" viewBox="0 0 400 400">
|
|
554
|
-
<line x1="200" y1="176.41" x2="200" y2="93.84" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
555
|
-
<line x1="200" y1="258.98" x2="200" y2="176.41" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
556
|
-
<polyline points="294.37 188.2 329.75 188.2 329.75 306.16 70.25 306.16 70.25 188.2 105.63 188.2" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
557
|
-
<line x1="200" y1="258.98" x2="152.82" y2="211.8" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
558
|
-
<line x1="247.18" y1="211.8" x2="200" y2="258.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
559
|
-
</symbol>
|
|
560
|
-
|
|
561
|
-
<!-- upload -->
|
|
562
|
-
<symbol id="icon-upload" viewBox="0 0 400 400">
|
|
563
|
-
<line x1="200" y1="93.84" x2="247.18" y2="141.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
564
|
-
<line x1="200" y1="188.2" x2="200" y2="258.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
565
|
-
<polyline points="294.37 188.2 329.75 188.2 329.75 306.16 70.25 306.16 70.25 188.2 105.63 188.2" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
566
|
-
<line x1="152.82" y1="141.02" x2="200" y2="93.84" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
567
|
-
<line x1="200" y1="188.2" x2="200" y2="93.84" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
568
|
-
</symbol>
|
|
569
|
-
|
|
570
|
-
<!-- pin2 -->
|
|
571
|
-
<symbol id="icon-pin2" viewBox="0 0 400 400">
|
|
572
|
-
<path d="M250.39,187.4c27.85,0,50.39,22.54,50.39,50.39H99.22c0-27.85,22.54-50.39,50.39-50.39h100.78Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
573
|
-
<polyline points="149.61 187.4 149.61 61.43 250.39 61.43 250.39 187.4" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
574
|
-
<line x1="200" y1="237.79" x2="200" y2="338.57" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
575
|
-
</symbol>
|
|
576
|
-
|
|
577
|
-
<!-- left -->
|
|
578
|
-
<symbol id="icon-left" viewBox="0 0 400 400">
|
|
579
|
-
<circle cx="200" cy="200" r="129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
580
|
-
<polyline points="211.8 152.82 164.61 200 211.8 247.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
581
|
-
</symbol>
|
|
582
|
-
|
|
583
|
-
<!-- right -->
|
|
584
|
-
<symbol id="icon-right" viewBox="0 0 400 400">
|
|
585
|
-
<circle cx="200" cy="200" r="129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
586
|
-
<polyline points="188.2 247.18 235.39 200 188.2 152.82" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
587
|
-
</symbol>
|
|
588
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" class="visually-hidden">
|
|
2
|
+
<!-- Document -->
|
|
3
|
+
<symbol id="icon-document" viewBox="0 0 400 400">
|
|
4
|
+
<path d="M294.7,318.08a5.68,5.68,0,0,1-5.65,5.65H111a5.76,5.76,0,0,1-5.65-5.65v-159h63.49a19.4,19.4,0,0,0,19.36-19.36V76.27h100.9a5.76,5.76,0,0,1,5.65,5.65ZM175.1,85.51v54.25a6.32,6.32,0,0,1-6.31,6.31H114.54Zm114-22.29H184a12,12,0,0,0-8.59,3.59L95.84,146.4A12,12,0,0,0,92.25,155V318.08a18.7,18.7,0,0,0,18.7,18.7h178.1a18.7,18.7,0,0,0,18.7-18.7V81.92a18.7,18.7,0,0,0-18.7-18.7M265.67,294.27a6.53,6.53,0,1,0,0-13H134.44a6.53,6.53,0,1,0,0,13H265.67m0-43.93a6.53,6.53,0,1,0,0-13.05H134.44a6.53,6.53,0,1,0,0,13.05H265.67m0-43.82a6.52,6.52,0,1,0,0-13H134.44a6.52,6.52,0,1,0,0,13H265.67m0-87.74a6.53,6.53,0,1,0,0-13h-49.9a6.53,6.53,0,1,0,0,13h49.9m0,43.93a6.53,6.53,0,1,0,0-13.05h-49.9a6.53,6.53,0,1,0,0,13.05h49.9"/>
|
|
5
|
+
</symbol>
|
|
6
|
+
<!-- Tick -->
|
|
7
|
+
<symbol id="icon-tick" viewBox="0 0 400 400">
|
|
8
|
+
<path d="M308.46,200A108.46,108.46,0,1,1,200,91.54,108.46,108.46,0,0,1,308.46,200m13,0A121.5,121.5,0,1,0,200,321.5,121.5,121.5,0,0,0,321.5,200M267,154.32a8.1,8.1,0,0,0-11.42,0l-75.25,75.24a2.17,2.17,0,0,1-3,0l-32.89-32.88A8.08,8.08,0,1,0,133,208.1l44.31,44.31a2.19,2.19,0,0,0,3,0L267,166a8.1,8.1,0,0,0,0-11.42Z" />
|
|
9
|
+
</symbol>
|
|
10
|
+
|
|
11
|
+
<!-- Mobile Phone -->
|
|
12
|
+
<symbol id="icon-mobile" viewBox="0 0 400 400">
|
|
13
|
+
<path d="M109.35,89.78V44.13a19.21,19.21,0,0,1,19.56-19.56H271.09a19.21,19.21,0,0,1,19.56,19.56V89.78Zm181.3,207.39H109.35V102.83h181.3Zm0,58.7a19.21,19.21,0,0,1-19.56,19.56H128.91a19.21,19.21,0,0,1-19.56-19.56V310.22h181.3ZM271.09,11.52H128.91a32.29,32.29,0,0,0-32.6,32.61V355.87a32.29,32.29,0,0,0,32.6,32.61H271.09a32.29,32.29,0,0,0,32.6-32.61V44.13a32.7,32.7,0,0,0-32.6-32.61M200,46.74a9.13,9.13,0,1,0,9.13,9.13A9.13,9.13,0,0,0,200,46.74m-28,300H228a6.54,6.54,0,0,0,6.53-6.52v-.66A6.54,6.54,0,0,0,228,333H172a6.53,6.53,0,0,0-6.52,6.52v.66c.65,3.26,3.26,6.52,6.52,6.52" />
|
|
14
|
+
</symbol>
|
|
15
|
+
|
|
16
|
+
<!-- Computer -->
|
|
17
|
+
<symbol id="icon-computer" viewBox="0 0 400 400">
|
|
18
|
+
<path d="M36.68,57.61H363.31a7.91,7.91,0,0,1,7.9,7.89V227.11H28.79V65.5a7.9,7.9,0,0,1,7.89-7.89M28.79,240.15H371.21v46.32a7.9,7.9,0,0,1-7.9,7.89H36.68a7.9,7.9,0,0,1-7.89-7.89V240.15ZM236.71,342.4H163.28v-35h73.43ZM363.32,44.58H36.68A21,21,0,0,0,15.75,65.5v221a21,21,0,0,0,20.93,20.92H150.25v35H118.34a6.51,6.51,0,1,0,0,13H281.66a6.51,6.51,0,1,0,0-13h-31.9v-35H363.32a21,21,0,0,0,20.93-20.92V65.5a21,21,0,0,0-20.93-20.92M200,278.57c7.72,0,11.32-3.59,11.32-11.32s-3.7-11.33-11.32-11.33-11.32,3.71-11.32,11.33,3.59,11.32,11.32,11.32" />
|
|
19
|
+
</symbol>
|
|
20
|
+
|
|
21
|
+
<!-- Lock -->
|
|
22
|
+
<symbol id="icon-lock" viewBox="0 0 400 400">
|
|
23
|
+
<path d="M316.36,327.35a44.88,44.88,0,0,1-44.57,44.57h-143a44.89,44.89,0,0,1-44.57-44.57V191.91a45.09,45.09,0,0,1,36-44.06,46.76,46.76,0,0,1,8.91-.83H271.47a42.52,42.52,0,0,1,21.59,5.61,45,45,0,0,1,23.11,39.28ZM249.82,134.42H150.49v-31.2a49.67,49.67,0,1,1,99.33,0ZM125,103.34a75.14,75.14,0,0,1,150.27,0h0v31.2H262.56V103.22a62.4,62.4,0,0,0-124.8,0v31.07H125Zm174.47,38.21A57,57,0,0,0,288,136.9V103.22a87.87,87.87,0,1,0-175.74,0v33.49a57.62,57.62,0,0,0-41.07,55.2V327.35a57.68,57.68,0,0,0,57.62,57.3H271.47a57.68,57.68,0,0,0,57.31-57.3V191.91a57.69,57.69,0,0,0-29.29-50.36m-91.69,114a6.36,6.36,0,0,0-3.5,6.36l3.63,34.9H192.39L196,262a6.36,6.36,0,0,0-3.5-6.36,17.64,17.64,0,1,1,15.28,0m-7.64-46.29A30.44,30.44,0,0,0,183,264.76l-4,37.82a6.35,6.35,0,0,0,6.36,7.07H215a6.35,6.35,0,0,0,6.36-7.07l-4-37.82a30.44,30.44,0,0,0-17.19-55.46" />
|
|
24
|
+
</symbol>
|
|
25
|
+
|
|
26
|
+
<!-- Lock2 -->
|
|
27
|
+
<symbol id="icon-lock2" viewBox="0 0 400 400">
|
|
28
|
+
<path d="M200,317.25c-22.31,0-43.29-9.14-59.1-25.72-15.9-16.71-24.68-38.99-24.74-62.74-.04-16.9,4.44-33.35,12.95-47.56,.44-.72,1.11-1.16,1.84-1.22,21.95-1.49,45.17-2.25,69.05-2.25s47.09,.76,69.04,2.25c.73,.06,1.42,.52,1.86,1.26,8.46,14.14,12.93,30.5,12.93,47.32,0,48.89-37.61,88.66-83.83,88.66m-56.49-178.73c0-7.52,1.5-14.83,4.44-21.71,2.85-6.64,6.92-12.6,12.11-17.72,5.18-5.13,11.22-9.15,17.95-11.96,6.97-2.9,14.36-4.38,21.99-4.38s15.02,1.48,21.98,4.38c6.73,2.81,12.77,6.83,17.95,11.96,5.19,5.12,9.26,11.08,12.11,17.72,2.95,6.89,4.44,14.18,4.44,21.71v27.97c-18.2-.98-37.13-1.48-56.48-1.48s-38.29,.5-56.49,1.48v-27.97Zm138.51,36.26c-2.61-4.35-7.12-7.15-12.09-7.49-.18,0-.35-.02-.53-.03v-28.74c0-9.24-1.84-18.22-5.46-26.67-3.49-8.16-8.5-15.5-14.86-21.78-6.38-6.29-13.79-11.23-22.06-14.69-8.57-3.57-17.65-5.39-27.02-5.39s-18.46,1.81-27.03,5.39c-8.26,3.45-15.68,8.39-22.05,14.69-6.38,6.28-11.37,13.62-14.87,21.78-3.62,8.46-5.46,17.43-5.46,26.67v28.74c-.18,0-.35,.02-.53,.03-4.96,.34-9.47,3.13-12.06,7.45-9.69,16.18-14.79,34.88-14.74,54.07,.06,27,10.08,52.38,28.24,71.45,18.27,19.18,42.6,29.73,68.51,29.73,53.35,0,96.74-45.49,96.74-101.41,0-19.1-5.09-37.7-14.72-53.8"/>
|
|
29
|
+
<path d="M200,249.35c-5.67,0-10.27-4.55-10.27-10.14s4.61-10.14,10.27-10.14,10.27,4.55,10.27,10.14-4.61,10.14-10.27,10.14m0-33.04c-12.79,0-23.19,10.27-23.19,22.89,0,10.41,7.08,19.23,16.73,21.99v16.04c0,3.52,2.89,6.38,6.46,6.38s6.46-2.86,6.46-6.38v-16.04c9.65-2.76,16.73-11.58,16.73-21.99,0-12.62-10.4-22.89-23.19-22.89"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
|
|
32
|
+
<!-- calendar -->
|
|
33
|
+
<symbol id="icon-calendar" viewBox="0 0 400 400">
|
|
34
|
+
<path d="M330.59,326.17a10.06,10.06,0,0,1-10,10H79.44a10.06,10.06,0,0,1-10-10V172.48H330.59ZM69.41,99.74A9.73,9.73,0,0,1,79.13,90h49.7v26.58a6.52,6.52,0,0,0,13,0V90H258.13v26.58a6.52,6.52,0,0,0,13,0V90h49.7a9.73,9.73,0,0,1,9.72,9.71v59.69H69.41ZM320.87,77h-49.7V57.27a6.52,6.52,0,0,0-13,0V77H141.87V57.27a6.52,6.52,0,0,0-13,0V77H79.13A22.79,22.79,0,0,0,56.37,99.74V326.17a23.1,23.1,0,0,0,23.07,23.08H320.56a23.1,23.1,0,0,0,23.07-23.08V99.74A22.79,22.79,0,0,0,320.87,77M128.75,211.86H142v13.21h-13.2Zm-6.52,26.25h26.24a6.53,6.53,0,0,0,6.53-6.52h0V205.34a6.52,6.52,0,0,0-6.52-6.52H122.23a6.51,6.51,0,0,0-6.52,6.51h0v26.25a6.51,6.51,0,0,0,6.51,6.52Zm71.17-26.25h13.2v13.21H193.4Zm-6.53,26.25h26.26a6.52,6.52,0,0,0,6.52-6.52h0V205.34a6.52,6.52,0,0,0-6.52-6.52H186.87a6.51,6.51,0,0,0-6.52,6.51h0v26.25a6.52,6.52,0,0,0,6.52,6.52Zm71.18-26.25h13.2v13.21h-13.2Zm-6.52,26.25h26.24a6.52,6.52,0,0,0,6.52-6.52h0V205.34a6.51,6.51,0,0,0-6.51-6.52H251.53a6.51,6.51,0,0,0-6.53,6.51h0v26.25a6.52,6.52,0,0,0,6.52,6.52ZM128.75,281.2H142v13.2h-13.2Zm-6.52,26.24h26.24a6.53,6.53,0,0,0,6.53-6.52h0V274.68a6.52,6.52,0,0,0-6.52-6.53H122.23a6.52,6.52,0,0,0-6.52,6.52h0v26.24a6.51,6.51,0,0,0,6.51,6.52ZM193.4,281.2h13.2v13.2H193.4Zm-6.53,26.24h26.26a6.52,6.52,0,0,0,6.52-6.52h0V274.68a6.52,6.52,0,0,0-6.52-6.53H186.87a6.52,6.52,0,0,0-6.52,6.52h0v26.24a6.52,6.52,0,0,0,6.52,6.52Zm71.18-26.24h13.2v13.2h-13.2Zm-6.52,26.24h26.24a6.52,6.52,0,0,0,6.52-6.52h0V274.68a6.51,6.51,0,0,0-6.51-6.53H251.53a6.53,6.53,0,0,0-6.53,6.52h0v26.24a6.52,6.52,0,0,0,6.52,6.52Z" />
|
|
35
|
+
</symbol>
|
|
36
|
+
|
|
37
|
+
<!-- phone -->
|
|
38
|
+
<symbol id="icon-phone" viewBox="0 0 400 400">
|
|
39
|
+
<path d="M130.29,90.61l35.82,35.82c3.65,3.65,4.58,4.84,4.58,8.45s-1.34,5.1-4.58,8.34c0,0-14,14-14.37,14.48A21.29,21.29,0,0,0,146.37,168c-.6,5.57.15,10.43,3.46,13.84l68.38,68.38c3.55,3.28,9.86,4.1,13.84,3.46a20.78,20.78,0,0,0,10-5.23c.51-.44,14.64-14.51,14.64-14.51,3.24-3.24,4.89-4.58,8.44-4.58s4.8.93,8.45,4.58l35.82,35.82c3.14,3.14,4.62,6.18,4.58,8.24-.11,5.11-.33,4.79-4.27,8.24L283.64,309c-3.51,3.07-10.51,5-18.52,5-26.31,0-73.94-21.35-115.9-63.3S86,161.19,86,134.88c0-8,1.8-15,4.88-18.52L113.7,90.3c2.67-3,5.4-4.31,8.15-4.31s5.76,2,8.44,4.62M121.74,73a23.87,23.87,0,0,0-17.8,8.65l-22.8,26.06C74.69,115.08,73,125.16,73,134.88c0,32.84,23.26,81.25,67.06,125.06S232.28,327,265.12,327c9.72,0,19.7-1.69,27.07-8.14l26.05-22.8c4.83-4.21,8.59-10.09,8.76-17.8.16-7.39-4-13.32-8.45-17.81l-35.82-35.82c-4.39-4.39-10.1-8.35-17.61-8.35-8,0-13.72,4.47-17.6,8.35,0,0-13.68,13.63-14,13.89-2.64,2.53-4.77,2.83-7.19,1.37L160,173.54c-2.31-2.3-.46-4.7,1-6.59.34-.45,14.3-14.47,14.3-14.47,3.88-3.88,8.45-9.61,8.45-17.6,0-7.51-4.06-13.32-8.45-17.71L139.45,81.35C135,76.86,129.13,72.84,121.74,73" />
|
|
40
|
+
</symbol>
|
|
41
|
+
|
|
42
|
+
<!-- clock -->
|
|
43
|
+
<symbol id="icon-clock" viewBox="0 0 400 400">
|
|
44
|
+
<path d="M200,304.27A104.27,104.27,0,1,1,304.27,200,104.39,104.39,0,0,1,200,304.27M200,82.7A117.3,117.3,0,1,0,317.3,200,117.43,117.43,0,0,0,200,82.7m42.76,134.46-36.24-20.92V128.32a6.52,6.52,0,0,0-13,0V200a6.52,6.52,0,0,0,3.26,5.64l39.51,22.81a6.38,6.38,0,0,0,3.25.88,6.52,6.52,0,0,0,3.26-12.17" />
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="icon-time" viewBox="0 0 400 400">
|
|
47
|
+
<use xlink:href="#icon-clock"></use>
|
|
48
|
+
</symbol>
|
|
49
|
+
|
|
50
|
+
<!-- clock2 -->
|
|
51
|
+
<symbol id="icon-clock2" viewBox="0 0 400 400">
|
|
52
|
+
<path d="M201.97,219.81c-1.84,0-3.63-.82-4.8-2.36l-39.26-51.35c-2-2.62-1.47-6.34,1.18-8.32,2.65-1.98,6.43-1.46,8.43,1.16l36.07,47.17,34.8-19.59c2.89-1.62,6.56-.62,8.2,2.22,1.65,2.85,.64,6.49-2.25,8.11l-39.4,22.17c-.94,.53-1.96,.78-2.97,.78"/>
|
|
53
|
+
<path d="M200,96.06c-58.04,0-105.27,46.63-105.27,103.94s47.23,103.95,105.27,103.95,105.27-46.63,105.27-103.95-47.23-103.94-105.27-103.94m0,219.77c-64.68,0-117.3-51.96-117.3-115.83s52.62-115.83,117.3-115.83,117.3,51.96,117.3,115.83-52.62,115.83-117.3,115.83"/>
|
|
54
|
+
<path d="M200,130.7c-3.32,0-6.02-2.66-6.02-5.94v-15.84c0-3.28,2.7-5.94,6.02-5.94s6.02,2.66,6.02,5.94v15.84c0,3.28-2.7,5.94-6.02,5.94"/>
|
|
55
|
+
<path d="M292.24,205.94h-14.71c-3.32,0-6.02-2.66-6.02-5.94s2.7-5.94,6.02-5.94h14.71c3.32,0,6.02,2.65,6.02,5.94s-2.7,5.94-6.02,5.94"/>
|
|
56
|
+
<path d="M200,297.02c-3.32,0-6.02-2.66-6.02-5.94v-15.84c0-3.28,2.7-5.94,6.02-5.94s6.02,2.66,6.02,5.94v15.84c0,3.28-2.7,5.94-6.02,5.94"/>
|
|
57
|
+
<path d="M122.47,205.94h-14.71c-3.32,0-6.01-2.66-6.01-5.94s2.69-5.94,6.01-5.94h14.71c3.32,0,6.02,2.65,6.02,5.94s-2.7,5.94-6.02,5.94"/>
|
|
58
|
+
</symbol>
|
|
59
|
+
|
|
60
|
+
<!-- envelope/email -->
|
|
61
|
+
<symbol id="icon-envelope" viewBox="0 0 400 400">
|
|
62
|
+
<path d="M377.44,73.59l0,0,0,0,0,0,0,0a23.49,23.49,0,0,0-16.61-6.92H39.26a23.4,23.4,0,0,0-14.34,4.94,5.16,5.16,0,0,0-.61.43,23.3,23.3,0,0,0-8.56,18.14V309.91a23.41,23.41,0,0,0,8.65,18.22,23.67,23.67,0,0,0,14.86,5.29H360.74a23.49,23.49,0,0,0,23.51-23.51V90.09A23.31,23.31,0,0,0,377.44,73.59Zm-6,14.87a11,11,0,0,1,.12,1.63V309.91a10.51,10.51,0,0,1-.13,1.69L259.87,200.06Zm-10.68-9.18a10.14,10.14,0,0,1,1.74.15L211.66,230.31a14.83,14.83,0,0,1-20.89-.05l-151-151ZM28.46,309.91V90.09a11,11,0,0,1,.59-3.58L142.6,200.06,29.09,313.52A10.75,10.75,0,0,1,28.46,309.91Zm11.4,10.81L151.59,209.05l30.19,30.19c.67.67,1.37,1.3,2.09,1.89l0,0c.35.28.7.56,1.06.82l.36.26.76.53.84.52.31.19a27.61,27.61,0,0,0,33.4-4.16l30.26-30.26L362.43,320.58h0c-.25,0-.49.06-.74.08l-.17,0c-.25,0-.5,0-.76,0Z"/>
|
|
63
|
+
</symbol>
|
|
64
|
+
<symbol id="icon-email" viewBox="0 0 400 400">
|
|
65
|
+
<use xlink:href="#icon-envelope"></use>
|
|
66
|
+
</symbol>
|
|
67
|
+
|
|
68
|
+
<!-- paper plane/send -->
|
|
69
|
+
<symbol id="icon-paper-plane" viewBox="0 0 400 400">
|
|
70
|
+
<path d="M390.44,58.74c.07-.23.11-.45.16-.68s.08-.28.1-.42a6,6,0,0,0,.05-.85c0-.09,0-.18,0-.27a6.73,6.73,0,0,0-.13-1.11c0-.11-.07-.22-.09-.33a7.75,7.75,0,0,0-.24-.78l0-.08a5.5,5.5,0,0,0-.36-.73,1.09,1.09,0,0,1-.08-.15,5.52,5.52,0,0,0-.56-.78.76.76,0,0,1-.08-.11,6.9,6.9,0,0,0-.72-.71l0,0-.06,0a5.79,5.79,0,0,0-.82-.58.41.41,0,0,1-.11-.07,8,8,0,0,0-.89-.42l-.11,0a5.26,5.26,0,0,0-1-.27h-.05a6.13,6.13,0,0,0-2.05,0h-.11c-.23,0-.45.08-.68.13L14.11,145.92a6.52,6.52,0,0,0-1.28,12.14l105.59,52.79V316.09a7.32,7.32,0,0,0,.1,1,.59.59,0,0,0,0,.13,6.85,6.85,0,0,0,.28,1l0,.07a6.31,6.31,0,0,0,.45,1l0,0a6.52,6.52,0,0,0,.59.82,1.34,1.34,0,0,1,.11.14l.12.14c.19.2.39.38.59.56l.12.09a7.52,7.52,0,0,0,.82.57l0,0a6.63,6.63,0,0,0,.94.43l.15.06a7.13,7.13,0,0,0,1,.26H124a5.74,5.74,0,0,0,.93.08h0a6.72,6.72,0,0,0,1.1-.1l.35-.08a5.94,5.94,0,0,0,.72-.21,2.78,2.78,0,0,0,.4-.16,6.14,6.14,0,0,0,.63-.31l.37-.22a7.51,7.51,0,0,0,.65-.5l.19-.14,47.17-43.43,52.38,69.84a6.54,6.54,0,0,0,5.22,2.61,4.53,4.53,0,0,0,.52,0,6.52,6.52,0,0,0,5.26-3.47L390,59.72c.08-.16.13-.33.21-.5S390.38,58.9,390.44,58.74ZM148.27,228.94h0c-.17.13-.33.27-.49.41l-.22.23-.22.23a3.92,3.92,0,0,0-.25.32l-.15.18c-.1.14-.19.29-.28.44a.33.33,0,0,0-.06.1,6.6,6.6,0,0,0-.54,1.18v0l-14.6,43.77V210.58l168.06-97.29ZM339.62,75,124.71,199.42,34.22,154.18ZM139.11,294.09,154.48,248l14.18,18.9Zm94,37-50.5-67.33h0l-21.31-28.41L364.8,79.78Z" />
|
|
71
|
+
</symbol>
|
|
72
|
+
<symbol id="icon-send" viewBox="0 0 400 400">
|
|
73
|
+
<use xlink:href="#icon-paper-plane"></use>
|
|
74
|
+
</symbol>
|
|
75
|
+
|
|
76
|
+
<!-- Rocket/launch -->
|
|
77
|
+
<symbol id="icon-rocket" viewBox="0 0 400 400">
|
|
78
|
+
<path d="M227.66,108.21a28.33,28.33,0,1,0-28.33,28.33A28.36,28.36,0,0,0,227.66,108.21ZM199.33,123.5a15.29,15.29,0,1,1,15.29-15.29A15.3,15.3,0,0,1,199.33,123.5Zm162.5,258.81c-1.16-11.09-5.64-19.64-13.32-25.41-8.5-6.39-19-7.74-26.3-7.74h-.86c-.91-11.65-5.13-21.46-12.57-29.17-9.75-10.1-22.95-14.31-32.38-16.07l.2-.22a70.69,70.69,0,0,0-16.79-106.29,235,235,0,0,0-5.6-103.27,154.77,154.77,0,0,0-29-55.77L204.39,12.79a6.72,6.72,0,0,0-10.12,0L173.46,38.38a155.08,155.08,0,0,0-29,55.77,235.28,235.28,0,0,0-5.6,103.26,70.7,70.7,0,0,0-16.79,106.3l.39.45c-9.33,1.88-21.87,6.15-31.23,15.84-7.44,7.71-11.66,17.52-12.57,29.17h-.86c-7.3,0-17.79,1.35-26.3,7.74-7.68,5.77-12.16,14.32-13.32,25.41A6.53,6.53,0,0,0,44,389.47a5.07,5.07,0,0,0,.68,0,6.51,6.51,0,0,0,6.48-5.84c.78-7.42,3.44-12.76,8.14-16.32,5.63-4.25,13.14-5.15,18.45-5.15a39.56,39.56,0,0,1,6.16.43,7.21,7.21,0,0,0,1.14.1A6.52,6.52,0,0,0,91.54,356c-.39-11.21,2.64-20.25,9-26.88,9.86-10.25,25.53-12.65,31.93-13.21l4.62,5.39a6.51,6.51,0,0,0,4.95,2.28,6.69,6.69,0,0,0,1.41-.15,6.52,6.52,0,0,0,4.87-4.61l15.72-56.13h18.86c.56,8.87,1.33,17.74,2.27,25.75,3.17,26.93,6.47,35.14,14.14,35.14s11-8.21,14.15-35.14c.94-8,1.71-16.88,2.26-25.75h18.85l15.73,56.13a6.52,6.52,0,0,0,4.87,4.61,6.69,6.69,0,0,0,1.41.15,6.51,6.51,0,0,0,4.95-2.28l4.71-5.5c5.29.32,22.45,2.21,33.14,13.28,6.4,6.63,9.45,15.69,9.06,26.92a6.54,6.54,0,0,0,6.52,6.75,7,7,0,0,0,1.12-.1,41.8,41.8,0,0,1,6.17-.42c5.31,0,12.82.89,18.45,5.14,4.7,3.56,7.36,8.9,8.14,16.32a6.5,6.5,0,0,0,6.48,5.84,5.07,5.07,0,0,0,.68,0A6.53,6.53,0,0,0,361.83,382.31ZM256.61,213.1c.15-.62.29-1.25.43-1.87a57.69,57.69,0,0,1,9.65,84l-7.11,8.3L246.28,256Zm-53.54,43.17c-.77,15-2.2,29.3-3.74,39.64A460.58,460.58,0,0,1,195,234.2c0-13.48.88-22.25,2.6-26a4.57,4.57,0,0,1,.41-.8,9.54,9.54,0,0,1,1.32,0,7.17,7.17,0,0,1,1.37.06c0,.06.21.44.37.78,1.72,3.8,2.59,12.57,2.59,26,0,7-.2,14.12-.54,21.13a5.55,5.55,0,0,0-.06.82S203.07,256.23,203.07,256.27Zm10.08-53.09c-2.59-6.16-6.85-8.91-13.82-8.91s-11.23,2.75-13.81,8.91c-2.49,5.93-3.56,15.2-3.56,31,0,4.84.11,10.06.31,15.43h-18l-11.67-49.52A222,222,0,0,1,157,97.71a141.68,141.68,0,0,1,19-40.89,56.07,56.07,0,0,0,23.16,5,56,56,0,0,0,23.41-5.13,142.06,142.06,0,0,1,19.09,41,222.06,222.06,0,0,1,4.43,102.17l-11.73,49.75h-18c.2-5.37.31-10.59.31-15.43C216.7,218.38,215.64,209.11,213.15,203.18Zm-14-154.39A43.1,43.1,0,0,1,184.06,46l15.27-18.79,15.2,18.68A42.81,42.81,0,0,1,199.16,48.79ZM132,295.23a57.68,57.68,0,0,1,9.65-84c.15.63.29,1.25.44,1.88L152.39,256l-13.31,47.51Zm-4.73,39.09a6.53,6.53,0,0,1-4,8.3,9.79,9.79,0,0,0-6.76,8.85,6.52,6.52,0,1,1-13,0c0-.64.17-15.85,15.53-21.17a6.59,6.59,0,0,1,2.14-.36A6.52,6.52,0,0,1,127.24,334.32Zm152.87,20.34a28.82,28.82,0,0,1,.46,26.42,6.52,6.52,0,0,1-11.69-5.78,15.71,15.71,0,0,0-27.24-15.54,6.52,6.52,0,0,1-10.94-7.08,28.75,28.75,0,0,1,49.41,2Z" />
|
|
79
|
+
</symbol>
|
|
80
|
+
<symbol id="icon-launch" viewBox="0 0 400 400">
|
|
81
|
+
<use xlink:href="#icon-rocket"></use>
|
|
82
|
+
</symbol>
|
|
83
|
+
|
|
84
|
+
<!-- Tag/offer -->
|
|
85
|
+
<symbol id="icon-tag" viewBox="0 0 400 400">
|
|
86
|
+
<path d="M320.54,226,226,320.55a22.11,22.11,0,0,1-31.22,0L83.58,209.36A21.93,21.93,0,0,1,77.12,194l-.48-53.66a22.22,22.22,0,0,1,6.47-15.81L87.64,120a6.48,6.48,0,1,1,9.16,9.16l-4.54,4.54a9.12,9.12,0,0,0-2.66,6.52l.47,53.66a9.06,9.06,0,0,0,2.67,6.37L203.92,311.39a9.14,9.14,0,0,0,12.9,0l94.56-94.56a9.14,9.14,0,0,0,0-12.91L200.2,92.74a9.06,9.06,0,0,0-6.37-2.67l-53.65-.48a9.17,9.17,0,0,0-6.53,2.68l-4.53,4.53A6.48,6.48,0,1,1,120,87.64l4.54-4.53a22.22,22.22,0,0,1,15.8-6.47l53.65.48a22,22,0,0,1,15.42,6.46L320.54,194.76a22.1,22.1,0,0,1,0,31.22m-185-90.49a13.07,13.07,0,1,1,0,18.48,13.09,13.09,0,0,1,0-18.48m27.63,27.64a26,26,0,1,0-36.79,0,26,26,0,0,0,36.79,0m-27.63-27.64a6.45,6.45,0,0,0,0-9.15L84.06,74.9a6.48,6.48,0,0,0-9.16,9.16l51.43,51.43a6.48,6.48,0,0,0,9.16,0" />
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="icon-offer" viewBox="0 0 400 400">
|
|
89
|
+
<use xlink:href="#icon-tag"></use>
|
|
90
|
+
</symbol>
|
|
91
|
+
|
|
92
|
+
<!-- sold -->
|
|
93
|
+
<symbol id="icon-sold" viewBox="0 0 400 400">
|
|
94
|
+
<path d="M82.91,341.23a6.52,6.52,0,1,1,0-13H301.67a33.05,33.05,0,0,0,33-33v-81.7a6.53,6.53,0,0,1,13.05,0v81.7a46.12,46.12,0,0,1-46.07,46.06Zm-2-21.42a26.67,26.67,0,0,1-26.64-26.64v-81.7A26.67,26.67,0,0,1,80.9,184.83H299.68a26.67,26.67,0,0,1,26.64,26.64v81.7a26.67,26.67,0,0,1-26.64,26.64Zm0-121.94a13.61,13.61,0,0,0-13.6,13.6v81.7a13.61,13.61,0,0,0,13.6,13.6H299.68a13.61,13.61,0,0,0,13.59-13.6v-81.7a13.61,13.61,0,0,0-13.59-13.6Zm122.91,84a6.53,6.53,0,0,1-6.52-6.52v-44a6.52,6.52,0,1,1,13,0v37.52h18.09a6.52,6.52,0,1,1,0,13Zm-95.28,0a24.58,24.58,0,0,1-7.82-1.25,21,21,0,0,1-6.63-3.57,17.46,17.46,0,0,1-4.77-5.86A6.52,6.52,0,1,1,101,265.42a4.58,4.58,0,0,0,1.25,1.48,8,8,0,0,0,2.58,1.37,11.75,11.75,0,0,0,3.7.58,12.49,12.49,0,0,0,3.84-.6,10.15,10.15,0,0,0,3-1.49A6.26,6.26,0,0,0,117,265a3,3,0,0,0,.5-1.49,2.5,2.5,0,0,0-.27-1.25,4.48,4.48,0,0,0-1.26-1.51,8.45,8.45,0,0,0-2.6-1.37,11.87,11.87,0,0,0-3.68-.56,23.08,23.08,0,0,1-7.28-1.17,19.73,19.73,0,0,1-6.22-3.36,16.5,16.5,0,0,1-4.48-5.5,14.65,14.65,0,0,1-1.52-7.3,15.11,15.11,0,0,1,2.18-7.08,18,18,0,0,1,4.76-5.22,21.62,21.62,0,0,1,6.31-3.22,23.82,23.82,0,0,1,7.31-1.13A22.77,22.77,0,0,1,118,226a20.12,20.12,0,0,1,6.21,3.35,6.52,6.52,0,1,1-8.19,10.15,7,7,0,0,0-2.14-1.13,10.11,10.11,0,0,0-3.16-.48,10.94,10.94,0,0,0-3.3.5,8.29,8.29,0,0,0-2.52,1.27,5,5,0,0,0-1.35,1.43,2.39,2.39,0,0,0-.36,1.06,1.53,1.53,0,0,0,.19.86,3.41,3.41,0,0,0,1,1.15,7.19,7.19,0,0,0,2.15,1.14,10.11,10.11,0,0,0,3.16.48,24.75,24.75,0,0,1,7.81,1.24,21.44,21.44,0,0,1,6.65,3.59,17.45,17.45,0,0,1,4.75,5.84,15.39,15.39,0,0,1,1.62,7.72,16.05,16.05,0,0,1-2.31,7.52,19.27,19.27,0,0,1-5.09,5.56,23.35,23.35,0,0,1-6.76,3.45A25.64,25.64,0,0,1,108.53,281.89Zm140.31,0a6.53,6.53,0,0,1-6.51-6.52v-44a6.53,6.53,0,0,1,6.51-6.52h14.57a28.54,28.54,0,0,1,0,57.08Zm14.57-13a15.5,15.5,0,0,0,0-31h-8.05v31Zm-101,13a28.54,28.54,0,1,1,28.53-28.54A28.58,28.58,0,0,1,162.38,281.89Zm0-44a15.5,15.5,0,1,0,15.5,15.5A15.53,15.53,0,0,0,162.38,237.85Zm105.3-55.22a6.56,6.56,0,0,1-5.65-3.25l-44.92-77.81a6.52,6.52,0,0,1,2.39-8.9,6.39,6.39,0,0,1,3.25-.88,6.55,6.55,0,0,1,5.65,3.26l44.92,77.8a6.55,6.55,0,0,1-2.38,8.91A6.66,6.66,0,0,1,267.68,182.63Zm-154.78,0a6.66,6.66,0,0,1-3.24-.86,6.55,6.55,0,0,1-2.4-8.92L152.19,95a6.52,6.52,0,0,1,11.3,6.52l-44.93,77.82A6.56,6.56,0,0,1,112.9,182.63Zm77.39-71.26a26.3,26.3,0,1,1,26.3-26.3A26.33,26.33,0,0,1,190.29,111.37Zm0-39.56a13.26,13.26,0,1,0,13.26,13.26A13.27,13.27,0,0,0,190.29,71.81Z" />
|
|
95
|
+
</symbol>
|
|
96
|
+
|
|
97
|
+
<!-- search -->
|
|
98
|
+
<symbol id="icon-search" viewBox="0 0 400 400">
|
|
99
|
+
<path d="M307.92,328.66a20.65,20.65,0,0,1-14.68-6.07l-65.52-65.53a101.18,101.18,0,1,1,29.35-29.35l65.52,65.53a20.75,20.75,0,0,1-14.67,35.42Zm-5.46-15.29a7.72,7.72,0,1,0,10.91-10.92l-63-63-10.92,10.91Zm-130-229a88.07,88.07,0,1,0,88.08,88.06A88.17,88.17,0,0,0,172.44,84.37ZM111.85,179a6.52,6.52,0,0,1-6.51-6.51,67.19,67.19,0,0,1,67.11-67.13,6.52,6.52,0,0,1,0,13,54.15,54.15,0,0,0-54.09,54.1A6.52,6.52,0,0,1,111.85,179Z" />
|
|
100
|
+
</symbol>
|
|
101
|
+
|
|
102
|
+
<!-- tick-list -->
|
|
103
|
+
<symbol id="icon-tick-list" viewBox="0 0 400 400">
|
|
104
|
+
<path d="M269.7,122.73a6.3,6.3,0,1,1,0,12.59H195.81a6.3,6.3,0,0,1,0-12.59H269.7M160.55,253.93a11.62,11.62,0,0,1,11.6,11.6v43.24a11.61,11.61,0,0,1-11.6,11.59H113.73a11.6,11.6,0,0,1-11.59-11.59V265.53a11.61,11.61,0,0,1,11.59-11.6h46.82m-.89,12.5h-45v41.45h45.05ZM79.87,76.18A26.2,26.2,0,0,1,106,50H294a26.22,26.22,0,0,1,26.18,26.18V323.83A26.21,26.21,0,0,1,294,350H106a26.19,26.19,0,0,1-26.17-26.17V76.18M294,337.52a13.7,13.7,0,0,0,13.69-13.69V76.18A13.7,13.7,0,0,0,294,62.48H106a13.71,13.71,0,0,0-13.69,13.7V323.83A13.7,13.7,0,0,0,106,337.52H294M269.7,193.71H195.81a6.3,6.3,0,0,0,0,12.59H269.7a6.3,6.3,0,1,0,0-12.59M160.55,167a11.61,11.61,0,0,1,11.6,11.59v43.24a11.61,11.61,0,0,1-11.6,11.59H113.73a11.6,11.6,0,0,1-11.59-11.59V178.6A11.6,11.6,0,0,1,113.73,167h46.82m-.89,12.48h-45V221h45.05Zm.89-99.4a11.61,11.61,0,0,1,11.6,11.59v43.24a11.61,11.61,0,0,1-11.6,11.59H113.73a11.6,11.6,0,0,1-11.59-11.59V91.68a11.6,11.6,0,0,1,11.59-11.59h46.82m-.89,12.48h-45V134h45.05Zm110,172.12H195.81a6.3,6.3,0,0,0,0,12.59H269.7a6.3,6.3,0,1,0,0-12.59M131,125.86a5.66,5.66,0,0,0,4,1.71,1.46,1.46,0,0,0,.29,0,5.65,5.65,0,0,0,4.13-2.11l14.11-17.65a5.66,5.66,0,1,0-8.84-7.07l-10.12,12.65L129.39,108a5.66,5.66,0,0,0-8.1,7.9Zm0,86.93a5.69,5.69,0,0,0,4,1.7h.29a5.62,5.62,0,0,0,4.13-2.12l14.11-17.65a5.66,5.66,0,1,0-8.84-7.06l-10.12,12.64L129.39,195a5.66,5.66,0,1,0-8.1,7.9Zm0,86.92a5.65,5.65,0,0,0,4,1.7h.29a5.59,5.59,0,0,0,4.13-2.12l14.11-17.64a5.66,5.66,0,1,0-8.84-7.07l-10.12,12.65-5.22-5.34a5.66,5.66,0,0,0-8.1,7.91Z" />
|
|
105
|
+
</symbol>
|
|
106
|
+
|
|
107
|
+
<!-- chat -->
|
|
108
|
+
<symbol id="icon-chat" viewBox="0 0 400 400">
|
|
109
|
+
<path d="M158.12,92.3C88.83,92.3,32.47,140.62,32.47,200c0,21.36,7.3,42,21.11,59.74A6,6,0,0,1,54.65,265L41.86,313.49l41.59-23.4a6,6,0,0,1,5.86,0,140.45,140.45,0,0,0,68.81,17.61c69.28,0,125.65-48.32,125.65-107.7S227.4,92.3,158.12,92.3M32.47,331.63a6,6,0,0,1-5.79-7.51l15.65-59.4C28,245.41,20.5,223.09,20.5,200c0-66,61.74-119.67,137.62-119.67S295.73,134,295.73,200,234,319.66,158.12,319.66a153.16,153.16,0,0,1-71.71-17.5l-51,28.7a6.06,6.06,0,0,1-2.94.77M367.8,307.7a6,6,0,0,1-2.92-.77l-48.58-27.2A142.93,142.93,0,0,1,279.72,293a6,6,0,0,1-2.53-11.7,130.23,130.23,0,0,0,36.23-13.6,6,6,0,0,1,5.85,0l39.14,21.91-12.05-45.46a6,6,0,0,1,1.09-5.21c13.13-16.8,20.08-36.37,20.08-56.57,0-56.25-53.69-102-119.66-102A141.42,141.42,0,0,0,226.55,82a6,6,0,1,1-1.81-11.83,153.57,153.57,0,0,1,23.13-1.75c72.57,0,131.63,51.13,131.63,114,0,22-7.19,43.16-20.82,61.54l14.91,56.3a6,6,0,0,1-2.13,6.26,6,6,0,0,1-3.66,1.25M241.88,200a18,18,0,1,1-17.95-18,17.93,17.93,0,0,1,17.95,18m-65.81,0a18,18,0,1,1-18-18,17.93,17.93,0,0,1,18,18m-65.82,0a18,18,0,1,1-18-18,17.93,17.93,0,0,1,18,18" />
|
|
110
|
+
</symbol>
|
|
111
|
+
|
|
112
|
+
<!-- documents -->
|
|
113
|
+
<symbol id="icon-documents" viewBox="0 0 400 400">
|
|
114
|
+
<path d="M137.42,187.31h36a6.51,6.51,0,0,0,0-13h-36a6.51,6.51,0,0,0,0,13Z"/><path d="M130.92,207.41a6.5,6.5,0,0,0,6.5,6.5h83.7a6.51,6.51,0,0,0,0-13h-83.7A6.5,6.5,0,0,0,130.92,207.41Z"/><path d="M38.34,112.35l26.5-7.22a11.32,11.32,0,0,0,7.94-13.87l-6.54-24L191.38,33.18a4.81,4.81,0,0,1,5.88,3.36l2.06,7.55a6.5,6.5,0,1,0,12.54-3.42l-2-7.54A17.83,17.83,0,0,0,188,20.63L58.56,55.87a17.72,17.72,0,0,0-10.78,8.34L27,100.49A17.78,17.78,0,0,0,25.31,114L79.14,311.65a6.52,6.52,0,0,0,6.28,4.8,6.29,6.29,0,0,0,1.71-.23,6.51,6.51,0,0,0,4.57-8Zm17.09-35.3,4.35,16-16,4.35Z"/><path d="M281.34,110H147.22a17.67,17.67,0,0,0-12.58,5.22l-29.55,29.55a17.71,17.71,0,0,0-5.22,12.59V362.19A17.83,17.83,0,0,0,117.67,380H281.34a17.83,17.83,0,0,0,17.81-17.81V127.8A17.83,17.83,0,0,0,281.34,110Zm-142.7,19.62v16.55H122.08ZM286.13,362.19a4.8,4.8,0,0,1-4.79,4.8H117.67a4.8,4.8,0,0,1-4.79-4.8v-203h27.46a11.32,11.32,0,0,0,11.31-11.31V123H281.34a4.8,4.8,0,0,1,4.79,4.79Z"/><path d="M261.59,200.9H244.84a6.51,6.51,0,1,0,0,13h16.75a6.51,6.51,0,0,0,0-13Z"/><path d="M261.59,174.29h-63a6.51,6.51,0,0,0,0,13h63a6.51,6.51,0,0,0,0-13Z"/><path d="M372.21,81.76A17.72,17.72,0,0,0,360.8,74.3L229,49.6a17.64,17.64,0,0,0-2.7-.27l-.7,0a17.78,17.78,0,0,0-9.94,3.11L181.16,76a17.66,17.66,0,0,0-7.45,11.42l-1.83,9.75a6.51,6.51,0,0,0,12.79,2.39l1.49-7.95,27,5.06a11.66,11.66,0,0,0,2.11.19,11.29,11.29,0,0,0,11.09-9.23l4.58-24.43L358.4,87.1a4.8,4.8,0,0,1,3.07,2,4.76,4.76,0,0,1,.75,3.59L319.05,323.07a4.79,4.79,0,0,1-5.59,3.84,6.5,6.5,0,1,0-2.4,12.78,17.79,17.79,0,0,0,20.78-14.22L375,95.09A17.63,17.63,0,0,0,372.21,81.76ZM213.88,83.57l-16.28-3L216.93,67.3Z"/><path d="M218.41,280.7h-81a6.51,6.51,0,1,0,0,13h81a6.51,6.51,0,0,0,0-13Z"/><path d="M261.59,227.5H137.42a6.51,6.51,0,1,0,0,13H261.59a6.51,6.51,0,0,0,0-13Z"/><path d="M137.41,267.11h21.17a6.51,6.51,0,0,0,0-13H137.41a6.51,6.51,0,0,0,0,13Z"/><path d="M261.59,254.1H182.3a6.51,6.51,0,0,0,0,13h79.29a6.51,6.51,0,0,0,0-13Z"/>
|
|
115
|
+
</symbol>
|
|
116
|
+
|
|
117
|
+
<!-- in progress -->
|
|
118
|
+
<symbol id="icon-in-progress" viewBox="0 0 400 400">
|
|
119
|
+
<path d="M200,317.44A117.37,117.37,0,0,1,145.39,96.21a115.78,115.78,0,0,1,54.54-13.65,118.26,118.26,0,0,1,68.54,22.22,116.44,116.44,0,0,1,43.3,59.89l2.65,8.39,10.25-31.71a6.48,6.48,0,0,1,6.18-4.5,5.58,5.58,0,0,1,.7,0,6.16,6.16,0,0,1,1.28.27,6.5,6.5,0,0,1,3.81,3.24,6.37,6.37,0,0,1,.4,4.95l-15.35,47.52,0,0c-.07.14-.12.26-.17.38l-.09.26,0,.09-.14.25a5.08,5.08,0,0,1-.35.59c-.15.22-.24.36-.34.49s-.3.34-.45.5-.29.29-.42.4a6.25,6.25,0,0,1-.54.4,5.33,5.33,0,0,1-.48.31,4.89,4.89,0,0,1-.57.27l-.5-.79.37.85a4.07,4.07,0,0,1-.44.18,6,6,0,0,1-.64.16,4.28,4.28,0,0,1-.57.11c-.23,0-.45,0-.68,0H315c-.21,0-.42,0-.64-.08s-.44-.08-.64-.14l-.29-.07-.09,0-.28-.12-.37-.13-.06,0-45.34-20.89A6.5,6.5,0,0,1,270,163.51a5.48,5.48,0,0,1,.7,0,6.21,6.21,0,0,1,2,.56L302,177.56l-1.7-5.9A104.83,104.83,0,0,0,211.38,96.4,106.76,106.76,0,0,0,200,95.78a104.3,104.3,0,0,0-11.26,208,107.91,107.91,0,0,0,11.63.64,102,102,0,0,0,44.83-10.24,6.41,6.41,0,0,1,2.85-.66,6.54,6.54,0,0,1,2.83,12.44A118.5,118.5,0,0,1,200,317.44Zm27-84.73a7.59,7.59,0,0,1-5.17-2L195,205.72a3.08,3.08,0,0,0-.24-.25c-.11-.11-.22-.24-.33-.37l-.44-.53-.19-.22-.05-.07-.3-.55-.15-.27a3.81,3.81,0,0,1-.23-.41l0-.09,0-.1c0-.12-.07-.25-.12-.37l-.11-.31a5.52,5.52,0,0,1-.16-.54l0-.1v-.1c0-.09,0-.21,0-.34a9.42,9.42,0,0,1-.11-1V136.92a7.6,7.6,0,1,1,15.19,0v59.79l24.51,22.83a7.63,7.63,0,0,1,.38,10.75A7.53,7.53,0,0,1,227,232.71Z" />
|
|
120
|
+
</symbol>
|
|
121
|
+
|
|
122
|
+
<!-- settings -->
|
|
123
|
+
<symbol id="icon-settings" viewBox="0 0 400 400">
|
|
124
|
+
<path xmlns="http://www.w3.org/2000/svg" d="M309.53,174.96l-14.36-34.72,7.34-21.13-10.81-10.81-10.81-10.81-21.13,7.34-34.72-14.36-9.8-20.16h-30.53l-9.76,20.16-34.72,14.36-21.13-7.34-10.81,10.81-10.81,10.81,7.34,21.13-14.36,34.72-20.16,9.76v30.57l20.16,9.76,14.36,34.72-7.34,21.13,21.62,21.62,21.13-7.34,34.72,14.36,9.76,20.16h30.53l9.8-20.16,34.72-14.36,21.13,7.34,21.62-21.62-7.34-21.13,14.36-34.72,20.16-9.76v-30.57l-20.16-9.76Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
125
|
+
<path xmlns="http://www.w3.org/2000/svg" d="M270.57,200c0,24.04-12,45.24-30.31,57.96-11.42,7.98-25.3,12.65-40.26,12.65-15.75,0-30.31-5.15-42.04-13.91-17.35-12.82-28.57-33.45-28.57-56.7,0-39,31.6-70.61,70.61-70.61s70.57,31.6,70.57,70.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
126
|
+
</symbol>
|
|
127
|
+
|
|
128
|
+
<!-- clipboard -->
|
|
129
|
+
<symbol id="icon-clipboard" viewBox="0 0 400 400">
|
|
130
|
+
<path d="M269.68,188.25h-48.88c-2.34,0-4.82,2.48-4.82,4.82s2.48,4.82,4.82,4.82h50.02c2.34,0,4.82-2.48,4.82-4.82s-2.55-4.82-5.96-4.82Z"/>
|
|
131
|
+
<path d="M235.57,217.81h-14.78c-2.34,0-4.82,2.48-4.82,4.82s1.49,4.82,4.82,4.82h14.78c2.34,0,4.82-2.48,4.82-4.82s-2.48-4.82-4.82-4.82Z"/>
|
|
132
|
+
<path d="M269.68,266.69h-48.88c-2.34,0-4.82,2.48-4.82,4.82s2.48,4.82,4.82,4.82h50.02c2.34,0,4.82-2.48,4.82-4.82s-2.55-4.82-5.96-4.82Z"/>
|
|
133
|
+
<path d="M190.88,186.25c0-2.52-2.65-5.32-6.46-5.32h-42.06c-2.59,0-5.32,2.73-5.32,5.32v43.2c0,2.59,2.73,5.32,5.32,5.32h43.2c2.59,0,5.32-2.73,5.32-5.32v-43.2Zm-11.78,37.88h-31.42v-31.42h31.42v31.42Z"/>
|
|
134
|
+
<path d="M190.88,257.25c0-2.52-2.65-5.32-6.46-5.32h-42.06c-2.59,0-5.32,2.73-5.32,5.32v43.2c0,2.59,2.73,5.32,5.32,5.32h43.2c2.59,0,5.32-2.73,5.32-5.32v-43.2Zm-11.78,37.88h-31.42v-31.42h31.42v31.42Z"/>
|
|
135
|
+
<path d="M234.44,295.11h-13.64c-2.34,0-4.82,2.48-4.82,4.82s2.48,4.82,4.82,4.82h14.78c2.24,0,4.61-2.25,4.81-4.52-1.23-3.44-3.18-5.12-5.94-5.12Z"/>
|
|
136
|
+
<path d="M201.07,59.93c-18.38,0-33.33,14.47-33.33,32.26v7.44h-27.82c-2.64,0-5.44,2.79-5.44,5.44v7.44h-8.51c-14.48,0-25.82,11.34-25.82,25.82v175.93c0,14.48,11.34,25.82,25.82,25.82h148.04c14.48,0,25.82-11.34,25.82-25.82V139.39c0-14.48-11.34-25.82-25.82-25.82h-7.44v-8.51c0-2.64-2.79-5.44-5.44-5.44h-27.82v-7.44c0-17.79-14.47-32.26-32.25-32.26Zm64.44,85.89v-21.38h8.34c8.1,0,14.95,6.84,14.95,14.95v174.86c0,8.1-6.84,14.95-14.95,14.95H125.98c-8.1,0-14.95-6.84-14.95-14.95V139.39c0-8.1,6.84-14.95,14.95-14.95h7.44v21.38c0,2.64,2.79,5.44,5.44,5.44h121.22c2.64,0,5.44-2.79,5.44-5.44Zm-10.87-34.26v28.82h-109.27v-28.82h27.82c2.64,0,5.44-2.79,5.44-5.44v-13.95c0-11.79,9.59-21.38,21.38-21.38s21.38,9.59,21.38,21.38v13.95c0,2.64,2.79,5.44,5.44,5.44h27.82Z"/>
|
|
137
|
+
</symbol>
|
|
138
|
+
|
|
139
|
+
<!-- agree -->
|
|
140
|
+
<symbol id="icon-agree" viewBox="0 0 400 400">
|
|
141
|
+
<path d="M309.51,130.03l-19.65-25.96c-4.42-5.16-9.7-7.81-15.61-7.81-3.47,0-6.59,.98-10.43,3.29l-15.33,10.46c-4.78,3.19-13.07,3.17-17.13-.03l-10.45-6.97c-4.5-3-9.92-4.65-15.27-4.65-4.42,0-9.1,1.23-12.53,3.29l-.1,.06-3.39,1.69-11.82-4.43c-8.09-2.69-20.97-1.16-28.08,3.36l-4.11,2.74c-4.92,4.04-13.93,4.44-18.99,2.27l-.14-.07-11.2-6.3c-8.63-4.65-20.32-1.71-26.04,6.55l-19.66,25.28c-6.07,8.78-4.94,21.14,2.63,28.08l20.08,17.85-6.03,6.03c-7.05,7.7-7.07,20.21,0,27.29l.84,.86c1.59,2.12,4.16,3.36,6.64,4.56,.42,.2,.83,.4,1.23,.6l1.16,.58-.41,1.23c-.62,1.87-.62,3.79-.62,5.83,0,5.23,1.98,10.46,5.16,13.65l.79,.8c3.14,3.77,7.59,5.76,12.85,5.76h2.67l.21,1.25c.65,3.91,2.59,7.8,5.18,10.39l.79,.8c3.14,3.77,7.59,5.76,12.85,5.76,1.86,0,3.79-.64,5.83-1.32l1.54-.51,.39,1.57c.73,2.91,2.16,5.36,4.51,7.71l.79,.8c3.14,3.77,7.59,5.76,12.85,5.76,4.96,0,9.89-2.21,12.85-5.76l.09-.1,3.86-3.86,4.65,4.66c2.96,3.55,7.89,5.76,12.85,5.76,4.39,0,8.91-1.89,12.14-5.06,1.35-2.03,2.62-3.95,3.24-5.82l.68-2.04,1.68,1.34c3.85,3.08,7.66,4.57,11.67,4.57,4.23,0,8.12-1.74,11.54-5.16,2.35-2.35,3.77-5.43,4.48-9.69l.21-1.25h4.07c4.33,0,8.94-1.85,12.99-5.21,3.14-3.16,5.15-7.69,5.83-13.08l.16-1.31h1.32c4.23,0,8.12-1.74,11.54-5.16,3.33-3.33,5.16-7.93,5.16-12.94,0-5.47-2.08-10.56-5.86-14.34l-4.1-4.1,1.52-1.01c2.08-1.38,4.04-2.69,6.02-4.66l28.67-35.67c6.78-8.14,7.09-20.52,.7-28.19ZM99.92,208.39c-2.39,0-4.86-.8-6.69-2.63-3.93-3.93-4.24-9.79-.7-13.33l13.96-15.35c1.66-1.67,4.09-2.59,6.71-2.59,2.4,0,4.18,.76,5.96,2.54l.7,.7c3.32,3.32,3.37,9.12,.11,13.2l-14.28,15.67c-1.52,1.14-3.62,1.79-5.78,1.79Zm19.94,23.98c-1.61,1.61-3.92,2.54-6.31,2.54s-4.7-.93-6.31-2.54l-.7-.7c-1.61-1.61-2.54-4.04-2.54-6.66s.93-5.05,2.54-6.66l5.6-5.6,13.96-15.35,.75-.75c1.75-1.75,4.26-2.54,5.96-2.54,2.4,0,4.18,.76,5.96,2.54l.7,.7c3.32,3.32,3.37,9.12,.11,13.2l-19.72,21.83Zm21.01,17.51c-1.61,1.61-3.92,2.54-6.31,2.54s-4.7-.93-6.31-2.54l-.7-.7c-2.65-2.65-3.34-6.82-1.68-10.13l.1-.19,19.5-20.94h.65s.21-.09,.35-.15c.53-.22,1.34-.55,2.46-.55,2.4,0,4.18,.76,5.96,2.54l.7,.7c3.32,3.32,3.37,9.12,.11,13.2l-14.82,16.23Zm33.72,4.78l-.07,.08-8.4,9.1c-1.71,1.71-4.04,2.56-6.37,2.56s-4.62-.84-6.3-2.52l-.7-.7c-2.61-2.61-3.31-6.87-1.68-10.13l.09-.18,12.04-13.45c1.2-1.2,2.94-1.2,4.62-1.2,2.4,0,4.18,.76,5.96,2.54l.7,.7c3.33,3.32,3.37,9.12,.11,13.2Zm94.42-32.09c-1.64,1.64-3.81,2.41-6.11,2.18-2.1-.21-4.17-1.23-5.81-2.88l-29.79-31.82-6.98,6.98,29.82,31.85c1.72,1.72,2.51,4.22,2.51,5.93,0,2.46-.79,4.09-2.35,6.43l-.19,.23c-1.61,1.61-3.92,2.54-6.31,2.54s-4.7-.93-6.31-2.54l-26.28-27.62-6.98,6.98,22.81,24.15c1.58,1.58,2.51,4.01,2.51,6.63,0,1.62-.76,4.18-1.84,5.26-3.2,3.2-8.33,2.9-11.92-.7l-18.5-19.82-6.44,7.51,8.19,8.82c1.72,1.72,2.66,4.27,2.48,6.8-.15,2.12-1.09,3.99-2.59,5.16-1.66,1.64-3.41,2.47-5.19,2.47-2.62,0-5.05-.93-6.66-2.54l-.09-.1-4.17-5.01,.53-.91c4.74-8.13,3.71-17.81-2.57-24.09-3.51-3.51-8.16-5.96-12.46-6.58l-1.29-.18v-1.3c0-4.43-1.93-9.01-5.16-12.24l-.7-.7c-2.69-2.69-5.98-4.58-9.04-5.19l-1.35-.27,.15-1.37c.51-4.56,.02-11.09-5.17-16.28l-.79-.8c-3.14-3.77-7.59-5.76-12.85-5.76h-1.5v-1.5c0-4.43-1.93-9.01-5.16-12.24l-.81-.82c-2.45-3.06-6.94-5.04-11.43-5.04-4.97,0-9.89,2.21-12.85,5.76l-.09,.1-1.72,1.72-20.67-19.19c-3.58-3.58-3.94-9.38-.85-13.24l19.58-25.88c3.33-4.16,10.4-5.69,14.57-3.18l11.83,6.26c7.79,3.9,20.53,3.31,27.84-1.3l3.63-2.88c5.13-2.93,14.71-4.55,20.24-2.18l2.54,1.09-4.4,2.94c-8.71,5.36-12.44,17.16-8.54,26.9l.11,.27v.59c3.17,5.42,10.06,10.8,17.41,10.8,2.56,0,4.49-.64,6.53-1.32l6.86-2.75c4.65-2.31,8.29-2.93,9.72-2.93h.64l33.35,34.77,29.41,30.81c1.59,1.59,2.52,4.02,2.52,6.64,0,.81,0,2.72-1.84,4.56Zm32.25-70.07l-29.45,34.35c-1.7,1.7-3.83,2.55-5.96,2.55s-4.26-.85-5.96-2.55l-15.41-16.11-32.93-34.33c-1.02-1.02-2.72-1.64-4.52-1.64-3.2,0-7.91,1.69-11.35,2.93-1.44,.52-2.7,.97-3.59,1.2l-6.91,2.76c-2.03,.81-4.53,.71-6.84-.28-2.31-.99-4.1-2.73-4.92-4.76l-.11-.27v-.75c-1.52-4.91,.27-10.35,4.23-12.73l19.63-11.22c4.6-2.3,13.58-2.45,18.38,.75l10.5,7c3.93,2.62,8.6,3.95,13.87,3.95s9.94-1.33,13.87-3.95l15.39-10.5c2.09-1.26,4.69-1.71,7.22-1.29,2.65,.44,4.86,1.82,6.07,3.79l19.56,25.85c3.39,4.24,3.03,11.36-.79,15.23Z" />
|
|
142
|
+
</symbol>
|
|
143
|
+
|
|
144
|
+
<!-- sofa -->
|
|
145
|
+
<symbol id="icon-sofa" viewBox="0 0 400 400">
|
|
146
|
+
<path d="M348.73,167.28c-3.49,0-6.32-2.83-6.32-6.32v-24.35c0-18.45-15.02-33.46-33.46-33.46H91.05c-18.45,0-33.46,15.01-33.46,33.46v24.35c0,3.49-2.83,6.32-6.32,6.32s-6.32-2.83-6.32-6.32v-24.35c0-25.42,20.68-46.1,46.1-46.1h217.9c25.42,0,46.1,20.68,46.1,46.1v24.35c0,3.49-2.83,6.32-6.32,6.32Z"/>
|
|
147
|
+
<path d="M365.43,287.78H34.57c-3.49,0-6.32-2.83-6.32-6.32v-54.54c-10.35-7.41-16.42-19.08-16.42-31.87,0-21.75,17.69-39.43,39.43-39.43s39.43,17.69,39.43,39.43v28.71h218.59v-28.71c0-21.75,17.69-39.43,39.44-39.43s39.43,17.69,39.43,39.43c0,12.81-6.1,24.49-16.46,31.9l.04,54.51c0,3.49-2.83,6.32-6.32,6.32Zm-324.54-12.63H359.11v-51.51c0-2.24,1.17-4.44,3.11-5.57,8.33-4.9,13.31-13.5,13.31-23.01,0-14.78-12.02-26.8-26.8-26.8s-26.8,12.02-26.8,26.8v35.02c0,3.49-2.83,6.32-6.32,6.32H84.39c-3.49,0-6.32-2.83-6.32-6.32v-35.02c0-14.78-12.02-26.8-26.8-26.8s-26.8,12.02-26.8,26.8c0,9.51,4.98,18.11,13.31,23.01,2.13,1.25,3.33,3.62,3.08,6.08l.02,51.01Z"/>
|
|
148
|
+
<path d="M70.29,329.65h-21.31c-3.49,0-6.32-2.83-6.32-6.32v-41.87c0-3.49,2.83-6.32,6.32-6.32s6.32,2.83,6.32,6.32v35.55h11.67l27.06-39.14c1.97-2.88,5.91-3.59,8.79-1.6,2.87,1.98,3.59,5.92,1.6,8.79l-28.93,41.87c-1.17,1.71-3.12,2.73-5.19,2.73Z"/>
|
|
149
|
+
<path d="M351.01,329.65h-21.32c-2.07,0-4.02-1.02-5.19-2.73l-28.92-41.87c-1.99-2.87-1.27-6.8,1.6-8.79,2.86-1.96,6.81-1.27,8.79,1.61l27.05,39.14h11.68v-35.55c0-3.49,2.83-6.32,6.32-6.32s6.32,2.83,6.32,6.32v41.87c0,3.49-2.83,6.32-6.32,6.32Z"/>
|
|
150
|
+
</symbol>
|
|
151
|
+
|
|
152
|
+
<!-- bed -->
|
|
153
|
+
<symbol id="icon-bed" viewBox="0 0 400 400">
|
|
154
|
+
<path d="M344.31,182.35v-60.18c0-16.33-13.28-29.61-29.61-29.61H90.08c-16.33,0-29.61,13.28-29.61,29.61v60.18c-18.73,4.28-32.75,21.03-32.75,41.03v49.31c0,3.77,3.05,6.82,6.82,6.82h10.92v36.44c0,7,5.69,12.69,12.69,12.69h15.56c7,0,12.69-5.69,12.69-12.69v-36.44h231.99v36.44c0,7,5.69,12.69,12.69,12.69h15.56c7,0,12.69-5.69,12.69-12.69v-36.44h10.92c3.77,0,6.82-3.05,6.82-6.82v-49.31c0-20-14.03-36.76-32.75-41.03ZM90.08,106.21h224.62c8.8,0,15.97,7.16,15.97,15.97v59.09h-10.92v-27.48c0-8.92-7.26-16.19-16.18-16.19h-76.8c-8.92,0-16.19,7.26-16.19,16.19v27.48h-16.38v-27.48c0-8.92-7.26-16.19-16.18-16.19H101.21c-8.92,0-16.19,7.26-16.19,16.19v27.48h-10.92v-59.09c0-8.8,7.16-15.97,15.97-15.97Zm216.03,75.06h-81.88v-27.48c0-1.4,1.14-2.54,2.54-2.54h76.8c1.4,0,2.54,1.14,2.54,2.54v27.48Zm-125.55,0H98.67v-27.48c0-1.4,1.14-2.54,2.54-2.54h76.8c1.4,0,2.54,1.14,2.54,2.54v27.48Zm-110.72,13.65H334.94c15.7,0,28.48,12.77,28.48,28.48v10.19H41.36v-10.19c0-15.7,12.78-28.48,28.48-28.48Zm2.91,120.09h-13.65v-35.48h13.65v35.48Zm272.93,0h-13.65v-35.48h13.65v35.48Zm13.65-49.13H41.36v-18.65H363.42v18.65h-4.09Z"/>
|
|
155
|
+
</symbol>
|
|
156
|
+
|
|
157
|
+
<!-- bath -->
|
|
158
|
+
<symbol id="icon-bath" viewBox="0 0 400 400">
|
|
159
|
+
<path d="M370.11,198.79H29.89c-6.21,0-11.25-5.05-11.25-11.25,0-25.99,21.14-47.14,47.14-47.14H334.23c25.99,0,47.14,21.14,47.14,47.14,0,6.21-5.05,11.25-11.25,11.25ZM65.77,152.28c-19.44,0-35.26,15.82-35.26,35.26l338.97-.63c-.34-19.15-16.03-34.63-35.26-34.63H65.77Z"/>
|
|
160
|
+
<path d="M295.01,291.82H104.98c-32.22,0-58.43-26.21-58.43-58.43v-40.54c0-3.28,3.58,1.16,6.86,1.16s5.01-4.45,5.01-1.16v40.54c0,25.67,20.89,46.56,46.56,46.56h190.04c25.68,0,46.57-20.89,46.57-46.56v-40.54c0-3.28,2.66-5.94,5.94-5.94s5.94,2.66,5.94,5.94v40.54c0,32.22-26.21,58.43-58.44,58.43Z"/>
|
|
161
|
+
<path d="M68.43,318.4c-1.14,0-2.27-.32-3.28-.99-2.74-1.81-3.48-5.5-1.67-8.23l19.52-29.46c1.82-2.74,5.52-3.44,8.23-1.67,2.74,1.81,3.48,5.5,1.67,8.23l-19.52,29.46c-1.15,1.72-3.04,2.66-4.95,2.66Z"/>
|
|
162
|
+
<path d="M331.57,318.4c-1.91,0-3.8-.93-4.95-2.66l-19.53-29.46c-1.81-2.74-1.07-6.41,1.67-8.23,2.7-1.79,6.41-1.09,8.23,1.67l19.53,29.46c1.81,2.74,1.07,6.41-1.67,8.23-1.01,.66-2.15,.99-3.28,.99Z"/>
|
|
163
|
+
</symbol>
|
|
164
|
+
|
|
165
|
+
<!-- pin -->
|
|
166
|
+
<symbol id="icon-pin" viewBox="0 0 400 400">
|
|
167
|
+
<path d="M205.56,79.43c-40.93,0-74.11,32.98-74.11,73.66,0,13.33,3.58,25.83,9.82,36.62l57.93,120.99c1.28,2.67,3.82,4.01,6.37,4.01s5.09-1.34,6.37-4.01l57.93-120.99c6.23-10.79,9.81-23.28,9.81-36.62,0-40.68-33.18-73.66-74.11-73.66Zm0,102.15c-15.83,0-28.66-12.75-28.66-28.48s12.83-28.48,28.66-28.48,28.66,12.75,28.66,28.48-12.83,28.48-28.66,28.48Zm-55.81,4.07c-.11-.22-.22-.43-.34-.64-5.6-9.69-8.55-20.72-8.55-31.91,0-33.86,26.51-61.66,60-64.06v26.49c-18.77,2.32-33.36,18.27-33.36,37.57s14.59,35.25,33.36,37.57v101.71l-51.1-106.73Zm111.95-.64c-.12,.21-.23,.43-.34,.64l-51.1,106.73v-101.71c18.77-2.32,33.36-18.27,33.36-37.57s-14.59-35.25-33.36-37.57v-26.49c33.48,2.4,59.99,30.21,59.99,64.06,0,11.19-2.96,22.23-8.55,31.91Z"/>
|
|
168
|
+
</symbol>
|
|
169
|
+
|
|
170
|
+
<!-- house -->
|
|
171
|
+
<symbol id="icon-house" viewBox="0 0 400 400">
|
|
172
|
+
<path xmlns="http://www.w3.org/2000/svg" d="M325.87,161.95l-102.76-82.2c-3.43-2.74-7.92-4.25-12.65-4.25s-9.22,1.51-12.64,4.25l-102.08,81.65c-3.7,2.96-5.83,7.16-5.83,11.53s2.12,8.57,5.82,11.52c7.09,5.68,18.2,5.68,25.29,0l3.9-3.12v107.8c0,10.69,9.31,19.4,20.76,19.4h130.23c11.45,0,20.76-8.7,20.76-19.4v-107.25l3.9,3.12c3.43,2.74,7.92,4.25,12.64,4.25s9.22-1.51,12.64-4.25c3.7-2.96,5.83-7.16,5.83-11.53s-2.12-8.57-5.83-11.52Zm-39.25,127.18c0,5.15-4.8,9.34-10.7,9.34H145.69c-5.9,0-10.7-4.19-10.7-9.34v-115.84h0l70.68-56.53c2.83-2.26,6.78-2.26,9.61,0l71.35,57.07v115.3Zm32.96-111.98c-3.24,2.6-9.46,2.6-12.71,0l-85.31-68.24c-3.27-2.61-7.18-3.92-11.09-3.92s-7.83,1.31-11.09,3.92l-74.44,59.54h0l-10.19,8.15c-3.38,2.71-9.32,2.71-12.72,0-1.32-1.05-2.05-2.36-2.05-3.67s.73-2.62,2.05-3.67l102.08-81.65c3.25-2.6,9.46-2.6,12.72,0l102.76,82.2c1.32,1.05,2.05,2.36,2.05,3.67s-.73,2.62-2.05,3.67Z"/>
|
|
173
|
+
</symbol>
|
|
174
|
+
|
|
175
|
+
<!-- pound -->
|
|
176
|
+
<symbol id="icon-pound" viewBox="0 0 400 400">
|
|
177
|
+
<path d="M338.46,203.9c0,70.54-57.18,127.73-127.72,127.73s-127.73-57.19-127.73-127.73,57.18-127.72,127.73-127.72,127.72,57.18,127.72,127.72m15.36,0c0-79.02-64.06-143.08-143.08-143.08S67.65,124.88,67.65,203.9s64.06,143.08,143.08,143.08,143.08-64.06,143.08-143.08"/>
|
|
178
|
+
<path d="M257,248.25v15.65h-92.52v-15.65h15.13v-31.65h-12.17v-14.09h12.17v-25.39c0-25.39,18.61-37.22,36.52-37.22s36.52,11.83,36.52,37.22v5.04h-16.17v-5.04c0-15.13-10.44-21.57-20.35-21.57-10.78,0-20.52,6.44-20.52,21.57v25.39h37.74v14.09h-37.74v31.65h61.39Z"/>
|
|
179
|
+
</symbol>
|
|
180
|
+
|
|
181
|
+
<!-- stopwatch -->
|
|
182
|
+
<symbol id="icon-stopwatch" viewBox="0 0 400 400">
|
|
183
|
+
<path d="M200,304.27c-57.49,0-104.27-46.77-104.27-104.27s46.77-104.27,104.27-104.27,104.27,46.77,104.27,104.27-46.77,104.27-104.27,104.27m0-221.57c-64.68,0-117.3,52.62-117.3,117.3s52.62,117.3,117.3,117.3,117.3-52.62,117.3-117.3-52.62-117.3-117.3-117.3m42.76,134.47l-36.25-20.93v-67.92c0-3.6-2.92-6.52-6.52-6.52s-6.52,2.92-6.52,6.52v71.68c0,2.33,1.24,4.48,3.26,5.64l39.5,22.81c1.03,.59,2.14,.87,3.25,.87,2.25,0,4.44-1.17,5.65-3.26,1.8-3.12,.73-7.1-2.39-8.9"/>
|
|
184
|
+
<rect x="185.12" y="64.97" width="29.77" height="19.52"/>
|
|
185
|
+
</symbol>
|
|
186
|
+
|
|
187
|
+
<!-- savings -->
|
|
188
|
+
<symbol id="icon-savings" viewBox="0 0 400 400">
|
|
189
|
+
|
|
190
|
+
<path d="M379.49,166.22c-1.72-3.22-5.73-4.44-8.95-2.71-11.15,5.96-19.25,12.91-24.24,20.77-7.52,1.28-13.89,4.7-18.39,7.81-4.99-13.99-13.22-27.66-24.13-39.52-11.02-11.98-24.25-21.68-39.33-28.85-16.65-7.91-35.2-12.52-55.14-13.68-29.65-1.74-55.63,1.42-77.27,9.38-14.83-5.51-30.5-8.38-44.4-8.11-19.48,.38-25.92,6.15-28.02,9.56-2.71,4.39-1.73,9.67,2.5,13.45,6.58,5.91,13.87,12.7,19.24,20.21-7.05,8.21-13.32,17.55-19.5,29-6.46,11.98-17.75,21.1-30.96,25.03-3.57,1.06-10.99,3.27-11.11,9.87-.15,7.98,.01,11.71,.34,19.14,.09,2.12,.2,4.56,.32,7.52,.05,1.26,.09,2.49,.13,3.67,.31,9.36,.54,16.12,4.5,20.2,1.87,1.93,5.54,4.52,25.45,10.99,9.05,2.94,17.65,7.46,25.56,13.44,4.6,3.47,9.61,6.77,14.9,9.79,6.86,3.92,12.18,10.27,14.95,17.86l4.69,12.82c2.41,6.59,8.7,11.04,15.69,11.16l23.76,1.75c.16,.01,.32,.02,.48,.02,9.37,0,17-7.63,17-17v-3.26c1.81,.15,3.63,.28,5.42,.38,.29,.02,.58,.03,.86,.04l1.01,.06c.37,.03,.74,.05,1.12,.07,17.78,1.04,35.13-.02,51.69-3.17v5.88c0,9.37,7.63,17,17,17,.17,0,.34,0,.5-.02l22.85-1.75c7.58-.12,14.12-5.21,16.12-12.51,7.71-19.91,18.28-39.13,31.43-57.11,10.71-14.66,16.67-31.09,17.71-48.83,.4-6.75-.15-13.71-1.54-20.72,1.7-1.49,4.85-3.97,8.89-5.93-.1,.83-.18,1.66-.23,2.51-.72,12.33,6.85,22.11,17.61,22.74,.34,.02,.68,.03,1.02,.03,5.23,0,9.94-2.39,13.35-6.81,2.47-3.21,4.14-7.42,4.35-11,.2-3.35-.13-8.33-2.81-13-1.86-3.24-5.27-7.01-11.43-9.07,3.65-3.61,8.42-6.99,14.29-10.13,3.22-1.72,4.44-5.73,2.71-8.95Zm-59.41,59.57c-.89,15.17-6,29.23-15.19,41.8-13.91,19.03-25.09,39.39-33.23,60.51-.1,.26-.19,.54-.25,.81-.41,1.7-1.92,2.88-3.67,2.88-.17,0-.34,0-.5,.02l-22.76,1.74c-2-.1-3.59-1.75-3.59-3.77v-14.04c0-2.02-.92-3.93-2.51-5.18-1.58-1.25-3.65-1.72-5.62-1.25-17.73,4.17-36.58,5.71-56.01,4.57-.33-.02-.65-.04-.98-.06l-.62-.04h-.09l-.62-.03c-.23-.01-.47-.02-.69-.03-1.86-.11-3.76-.25-5.65-.4-2.1-.18-4.25-.39-6.4-.64-1.87-.21-3.75,.38-5.15,1.64-1.41,1.25-2.21,3.05-2.21,4.93v10.55c0,2.02-1.6,3.68-3.6,3.77l-23.67-1.74c-.16-.01-.32-.02-.48-.02-1.58,0-3.01-1-3.55-2.48l-4.69-12.82c-3.85-10.52-11.24-19.32-20.81-24.79-4.81-2.75-9.34-5.73-13.49-8.86-9.09-6.87-18.99-12.07-29.44-15.46-14.26-4.63-18.62-6.81-19.86-7.56-.63-1.92-.82-7.41-.95-11.49-.04-1.21-.08-2.46-.13-3.75-.12-2.97-.22-5.43-.32-7.57-.27-6.29-.42-9.67-.37-15.22,.45-.16,1.02-.34,1.71-.55,16.56-4.93,30.71-16.38,38.83-31.43,6.63-12.28,13.3-21.86,21.01-30.15,2-2.15,2.34-5.36,.84-7.88-5.76-9.69-14.14-17.98-21.96-25.09,2.81-1.02,7.92-2.17,16.04-2.17h.02c12.57,0,26.83,2.89,40.16,8.13,1.55,.61,3.27,.61,4.83,0,20.32-7.94,45.25-11.11,74.1-9.41,18.23,1.07,35.13,5.25,50.24,12.43,13.54,6.43,25.41,15.13,35.27,25.85,8.87,9.64,15.94,20.86,20.45,32.45,4.24,10.89,6.17,21.89,5.58,31.82Zm43.45-19.19c-.03,.46-.46,2.2-1.62,3.7-1.2,1.55-2.25,1.71-3.13,1.66-1-.06-2.48-.35-3.69-2.2-1.1-1.67-1.64-4.06-1.49-6.56,.12-2.08,.51-4.1,1.17-6.08,3.86,.41,6.44,1.7,7.68,3.85,.83,1.44,1.21,3.44,1.08,5.64Z"/>
|
|
191
|
+
<circle cx="89.73" cy="205.23" r="8.79" transform="translate(-116.47 117.75) rotate(-43.39)"/>
|
|
192
|
+
<path d="M237.42,138.73c-9.06-2.42-18.73-3.95-28.76-4.54-3.38-.2-6.74-.33-10-.4-14.89-.32-28.64,.68-40.87,2.97-3.33,.62-5.52,3.83-4.89,7.15,.62,3.33,3.82,5.52,7.15,4.89,11.4-2.14,24.3-3.07,38.35-2.77,3.11,.07,6.32,.2,9.55,.39,9.2,.54,18.05,1.93,26.31,4.14,.53,.14,1.06,.21,1.59,.21,2.71,0,5.18-1.81,5.91-4.54,.87-3.27-1.07-6.63-4.34-7.5Z"/>
|
|
193
|
+
<path d="M197.38,97.31c-18.19,0-32.99-14.8-32.99-32.99s14.8-32.99,32.99-32.99,32.99,14.8,32.99,32.99-14.8,32.99-32.99,32.99Zm0-53.77c-11.46,0-20.78,9.32-20.78,20.78s9.32,20.78,20.78,20.78,20.78-9.32,20.78-20.78-9.32-20.78-20.78-20.78Z"/>
|
|
194
|
+
</symbol>
|
|
195
|
+
<symbol id="icon-piggy-bank" viewBox="0 0 400 400">
|
|
196
|
+
<use xlink:href="#icon-savings"></use>
|
|
197
|
+
</symbol>
|
|
198
|
+
|
|
199
|
+
<!-- timer -->
|
|
200
|
+
<symbol id="icon-timer" viewBox="0 0 400 400">
|
|
201
|
+
<path d="M302.95,86.84V50.83c0-3.31-2.78-6-6.21-6H98.01c-3.43,0-6.21,2.69-6.21,6v36.01c0,3.31,2.78,6,6.21,6h5.06c-9.34,61.94,35.4,79.18,59.87,88.59,6.25,2.41,14.81,5.7,15.87,7.13-1.06,2.03-9.61,5.32-15.87,7.72-24.47,9.42-69.21,26.66-59.87,88.61h-5.06c-3.43,0-6.21,2.69-6.21,6v36.01c0,3.31,2.78,6,6.21,6h198.73c3.43,0,6.21-2.69,6.21-6v-36.01c0-3.31-2.78-6-6.21-6h-5.06c9.35-61.96-35.4-79.2-59.87-88.61-6.25-2.4-14.81-5.69-15.87-7.13,1.06-2.02,9.62-5.32,15.87-7.72,24.46-9.41,69.2-26.65,59.87-88.59h5.06c3.43,0,6.21-2.69,6.21-6ZM104.22,56.83h186.31v24.01H104.22v-24.01Zm186.31,264.07H104.22v-24.01h186.31v24.01Zm-63.31-150.62c-13.2,5.08-23.64,9.09-23.64,18.58s10.43,13.5,23.63,18.58c25.85,9.94,60.96,23.46,51.91,77.45H115.62c-9.05-53.99,26.06-67.52,51.91-77.45,13.2-5.08,23.63-9.1,23.63-18.58s-10.43-13.5-23.63-18.58c-25.84-9.94-60.94-23.46-51.91-77.44h163.5c9.04,53.98-26.07,67.5-51.91,77.44Z"/>
|
|
202
|
+
<ellipse cx="197.36" cy="206.87" rx="6.22" ry="6.01"/>
|
|
203
|
+
<path d="M197.36,230.87c-3.43,0-6.22,2.69-6.22,6.01s2.78,6.01,6.22,6.01,6.22-2.69,6.22-6.01-2.78-6.01-6.22-6.01Z"/>
|
|
204
|
+
<ellipse cx="197.36" cy="266.88" rx="6.22" ry="6.01"/>
|
|
205
|
+
</symbol>
|
|
206
|
+
|
|
207
|
+
<!-- telescope -->
|
|
208
|
+
<symbol id="icon-telescope" viewBox="0 0 400 400">
|
|
209
|
+
<path d="M297.16,101.67l-28.99-45.84c-1.64-2.59-4.19-4.38-7.17-5.02-2.96-.64-6.01-.09-8.55,1.59l-24.65,16.14c-4.44,2.91-6.24,8.48-4.45,13.46l-81.18,53.16c-3.17,2.08-4.11,6.39-2.08,9.61l2.46,3.9-31.7,20.77c-1.49-1.83-3.59-3.1-5.97-3.62-3.44-.73-7.25,.04-10.48,2.15l-4.54,2.97c-6.12,4.01-8.27,11.34-4.89,16.7l18.18,28.79c1.49,2.35,3.88,3.99,6.73,4.61,3.47,.75,7.27-.05,10.49-2.15l4.53-2.97c5.72-3.74,7.98-10.52,5.38-15.76l31.7-20.77,2.36,3.74c1.01,1.6,2.58,2.69,4.42,3.1,1.8,.38,3.73,.04,5.29-.98l18.45-12.08v17.74h-21.3c-3.64,0-6.59,2.87-6.59,6.39v18.9c0,3.53,2.96,6.39,6.59,6.39h3.83l-46.68,85.22c-.76,1.38-.93,2.97-.49,4.49,.44,1.51,1.45,2.76,2.82,3.52,.87,.48,1.85,.73,2.83,.73,2.16,0,4.14-1.17,5.18-3.06l49.78-90.88h4.03v108.93c0,3.25,2.65,5.9,5.9,5.9s5.9-2.65,5.9-5.9v-108.93h4.03l49.77,90.88c1.04,1.89,3.02,3.06,5.18,3.06,.98,0,1.96-.25,2.83-.73,1.38-.76,2.39-2.01,2.83-3.52,.44-1.51,.27-3.1-.49-4.49l-46.68-85.22h3.82c3.64,0,6.59-2.87,6.59-6.39v-18.9c0-3.53-2.96-6.39-6.59-6.39h-21.3v-25.46l50.79-33.26c1.52,1.49,3.39,2.5,5.46,2.96,2.89,.64,6.02,.07,8.56-1.59l24.65-16.14c5.19-3.4,6.71-10.45,3.38-15.72ZM119.5,204.94c-.13,.26-.44,.71-1.05,1.11l-4.53,2.97c-.49,.32-.91,.44-1.19,.48l-17.48-27.55c.13-.26,.44-.73,1.07-1.14l4.54-2.97c.44-.29,.85-.43,1.16-.52l17.49,27.62Zm167.52-97.22l-23.95,15.6-28.52-45.1,24.08-15.4,28.39,44.9Zm-98.47,25.5c-1.32,.86-2.22,2.19-2.54,3.73-.32,1.54-.02,3.12,.84,4.43,1.09,1.67,2.94,2.67,4.94,2.67,1.15,0,2.26-.33,3.22-.96l47.1-30.84,6.41,10.14-76.81,50.3-19.13-30.24,76.82-50.3,6.41,10.14-47.25,30.94Zm-32.87,36.2l-31.6,20.7-6.82-10.79,31.6-20.7,6.82,10.79Zm20.74,41.37v-8.1h43.99v8.1h-43.99Z"/>
|
|
210
|
+
</symbol>
|
|
211
|
+
|
|
212
|
+
<!-- telescope -->
|
|
213
|
+
<symbol id="icon-lightbuld" viewBox="0 0 400 400">
|
|
214
|
+
<path d="M224,295.22h-48.61c-4.68,0-8.5-3.81-8.5-8.5v-1.38c0-15.52-6.51-30.54-17.86-41.2-3.61-3.39-6.9-7.16-9.76-11.2-2.89-4.08-5.37-8.46-7.37-13.02-4.17-9.51-6.26-19.64-6.21-30.12,.05-9.98,2.05-19.65,5.94-28.74,3.75-8.78,9.11-16.65,15.91-23.4,6.8-6.75,14.72-12.04,23.53-15.73,9.07-3.8,18.7-5.72,28.62-5.72h.16c9.97,.02,19.64,1.99,28.75,5.86,8.79,3.74,16.69,9.07,23.47,15.86,6.78,6.79,12.1,14.7,15.82,23.5,3.85,9.12,5.8,18.79,5.8,28.77s-2.11,20.42-6.27,29.84c-2,4.52-4.46,8.87-7.33,12.91-2.84,4.01-6.1,7.75-9.68,11.12-11.39,10.73-17.93,25.77-17.93,41.26v1.38c0,4.68-3.81,8.5-8.5,8.5Zm-47.72-9.38h46.84v-.5c0-4.51,.47-9.04,1.4-13.46,.92-4.36,2.28-8.65,4.07-12.75,1.78-4.09,3.98-8.01,6.55-11.67,2.59-3.68,5.57-7.12,8.85-10.22,13.11-12.34,20.32-29.05,20.32-47.05,0-35.56-28.92-64.54-64.48-64.62h-.14c-35.45,0-64.43,28.8-64.62,64.26-.1,17.9,7.33,35.2,20.38,47.46,3.28,3.09,6.26,6.52,8.85,10.2,2.56,3.65,4.76,7.57,6.53,11.66,1.77,4.09,3.14,8.38,4.05,12.74,.92,4.41,1.39,8.93,1.39,13.43v.5Z"/>
|
|
215
|
+
<rect x="169.89" y="300.2" width="59.61" height="7.75" rx="3.88" ry="3.88"/>
|
|
216
|
+
<path d="M225.63,308.86h-51.86c-2.64,0-4.79-2.15-4.79-4.79s2.15-4.79,4.79-4.79h51.86c2.64,0,4.79,2.15,4.79,4.79s-2.15,4.79-4.79,4.79Zm-51.86-7.75c-1.64,0-2.97,1.33-2.97,2.97s1.33,2.97,2.97,2.97h51.86c1.64,0,2.97-1.33,2.97-2.97s-1.33-2.97-2.97-2.97h-51.86Z"/>
|
|
217
|
+
<rect x="173.83" y="315.73" width="51.74" height="5.99" rx="2.99" ry="2.99"/>
|
|
218
|
+
<path d="M222.58,323.5h-45.75c-2.63,0-4.78-2.14-4.78-4.78s2.14-4.78,4.78-4.78h45.75c2.63,0,4.78,2.14,4.78,4.78s-2.14,4.78-4.78,4.78Zm-45.75-5.99c-.66,0-1.21,.56-1.21,1.21s.56,1.21,1.21,1.21h45.75c.66,0,1.21-.56,1.21-1.21s-.56-1.21-1.21-1.21h-45.75Z"/>
|
|
219
|
+
<path d="M208.59,335.35h-17.77c-3.06,0-5.97-1.24-7.91-3.37l-2.17-2.39c-.22-.24-.03-.61,.32-.61h37.29c.35,0,.54,.37,.32,.61l-2.17,2.39c-1.94,2.13-4.84,3.37-7.91,3.37Z"/>
|
|
220
|
+
<path d="M208.59,336.4h-17.77c-3.37,0-6.54-1.36-8.69-3.72l-2.17-2.39c-.38-.42-.48-1-.25-1.51,.23-.52,.76-.86,1.35-.86h37.29c.59,0,1.12,.34,1.35,.86,.23,.51,.13,1.09-.25,1.51l-2.17,2.39c-2.15,2.36-5.31,3.72-8.69,3.72Zm-26.02-6.37l1.12,1.24c1.75,1.92,4.35,3.03,7.13,3.03h17.77c2.78,0,5.38-1.1,7.13-3.03l1.12-1.24h-34.27Z"/>
|
|
221
|
+
<path d="M199.7,110.92c-2.59,0-4.69-2.1-4.69-4.69v-30.53c0-2.59,2.1-4.69,4.69-4.69s4.69,2.1,4.69,4.69v30.53c0,2.59-2.1,4.69-4.69,4.69Z"/>
|
|
222
|
+
<path d="M145.78,125.59c-1.2,0-2.4-.46-3.32-1.37l-21.59-21.59c-1.83-1.83-1.83-4.8,0-6.63,1.83-1.83,4.8-1.83,6.63,0l21.59,21.59c1.83,1.83,1.83,4.8,0,6.63-.92,.92-2.12,1.37-3.32,1.37Z"/>
|
|
223
|
+
<path d="M111.48,187.98h-30.53c-2.59,0-4.69-2.1-4.69-4.69s2.1-4.69,4.69-4.69h30.53c2.59,0,4.69,2.1,4.69,4.69s-2.1,4.69-4.69,4.69Z"/>
|
|
224
|
+
<path d="M108.8,277.04c-1.2,0-2.4-.46-3.32-1.37-1.83-1.83-1.83-4.8,0-6.63l21.59-21.59c1.83-1.83,4.8-1.83,6.63,0,1.83,1.83,1.83,4.8,0,6.63l-21.59,21.59c-.92,.92-2.12,1.37-3.32,1.37Z"/>
|
|
225
|
+
<path d="M289.01,277.04c-1.2,0-2.4-.46-3.32-1.37l-21.59-21.59c-1.83-1.83-1.83-4.8,0-6.63,1.83-1.83,4.8-1.83,6.63,0l21.59,21.59c1.83,1.83,1.83,4.8,0,6.63-.92,.92-2.12,1.37-3.32,1.37Z"/>
|
|
226
|
+
<path d="M317.94,192.83h-30.53c-2.59,0-4.69-2.1-4.69-4.69s2.1-4.69,4.69-4.69h30.53c2.59,0,4.69,2.1,4.69,4.69s-2.1,4.69-4.69,4.69Z"/>
|
|
227
|
+
<path d="M249.47,125.59c-1.2,0-2.4-.46-3.32-1.37-1.83-1.83-1.83-4.8,0-6.63l21.59-21.59c1.83-1.83,4.8-1.83,6.63,0,1.83,1.83,1.83,4.8,0,6.63l-21.59,21.59c-.92,.92-2.12,1.37-3.32,1.37Z"/>
|
|
228
|
+
<path d="M155.56,187.98c-.15,0-.31,0-.47-.02-2.58-.26-4.46-2.55-4.2-5.13,.04-.43,1.11-10.55,7.55-21.02,3.83-6.22,8.76-11.3,14.66-15.09,7.31-4.71,16.08-7.41,26.05-8.03,2.58-.16,4.81,1.8,4.97,4.39,.16,2.58-1.8,4.81-4.39,4.97-15.05,.94-26.26,7.22-33.31,18.68-5.32,8.65-6.2,16.95-6.2,17.03-.24,2.42-2.28,4.23-4.66,4.23Z"/>
|
|
229
|
+
</symbol>
|
|
230
|
+
<symbol id="icon-idea" viewBox="0 0 400 400">
|
|
231
|
+
<use xlink:href="#icon-lightbuld"></use>
|
|
232
|
+
</symbol>
|
|
233
|
+
|
|
234
|
+
<!-- move-in -->
|
|
235
|
+
<symbol id="icon-move-in" viewBox="0 0 400 400">
|
|
236
|
+
<path d="M235.53,259.82c2.04-2.5,1.65-6.16-.89-8.18l-30.95-24.64s-.03-.02-.04-.03c-.25-.2-.5-.36-.77-.52-.02,0-.03-.02-.04-.03-.26-.14-.54-.26-.83-.36-.04-.02-.08-.03-.13-.04-.27-.09-.55-.16-.84-.21l-.15-.03c-.29-.04-.58-.08-.87-.08h-.02c-.3,0-.59,.03-.87,.08-.06,0-.11,.02-.16,.03-.29,.05-.57,.12-.84,.21-.04,0-.08,.03-.13,.04-.29,.1-.56,.22-.82,.36-.02,0-.03,.02-.04,.03-.27,.15-.53,.32-.78,.52,0,0-.03,.02-.04,.03l-30.95,24.64c-2.53,2.01-2.93,5.67-.88,8.17,1.16,1.43,2.87,2.16,4.58,2.16,1.3,0,2.6-.42,3.69-1.29l21.37-17.01v90.51c0,3.22,2.63,5.81,5.89,5.81s5.89-2.6,5.89-5.81v-90.51l21.36,17.01c2.54,2.02,6.24,1.63,8.28-.87"/>
|
|
237
|
+
<path d="M320.09,153.02l-14.89-11.73c-.45-.5-.98-.92-1.59-1.25L204.32,61.82c-1.09-1.14-2.63-1.82-4.28-1.82h-.09c-1.65,0-3.19,.68-4.28,1.82l-99.82,78.63c-.29,.2-.56,.41-.81,.64l-15.14,11.93c-2.54,2-2.95,5.66-.92,8.17,2.03,2.51,5.73,2.92,8.27,.92l5.96-4.69v122.73c0,11.66,9.6,21.14,21.4,21.14h46.56c3.25,0,5.89-2.6,5.89-5.82s-2.64-5.81-5.89-5.81h-46.56c-5.31,0-9.63-4.27-9.63-9.51V148.14l95.02-74.86,94.93,74.78v132.08c0,5.24-4.32,9.51-9.63,9.51h-46.55c-3.26,0-5.89,2.6-5.89,5.81s2.63,5.82,5.89,5.82h46.55c11.8,0,21.4-9.48,21.4-21.14v-122.8l6.05,4.77c1.09,.86,2.38,1.27,3.67,1.27,1.73,0,3.44-.75,4.61-2.19,2.03-2.51,1.61-6.17-.93-8.17"/>
|
|
238
|
+
</symbol>
|
|
239
|
+
|
|
240
|
+
<!-- judge -->
|
|
241
|
+
<symbol id="icon-judge" viewBox="0 0 400 400">
|
|
242
|
+
<line x1="97.72" y1="178.09" x2="187.43" y2="88.39" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
243
|
+
<line x1="229.64" y1="130.6" x2="139.94" y2="220.3" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
244
|
+
<path d="M147.03,244.87l-3.63,3.63c-4.83,4.83-12.65,4.83-17.48,0l-56.39-56.39c-4.83-4.83-4.83-12.65,0-17.48l3.63-3.63c4.83-4.83,12.65-4.83,17.48,0l56.39,56.39c4.83,4.83,4.83,12.65,0,17.48Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
245
|
+
<path d="M257.84,134.06l-3.63,3.63c-4.83,4.83-12.65,4.83-17.48,0l-56.39-56.39c-4.83-4.83-4.83-12.65,0-17.48l3.63-3.63c4.83-4.83,12.65-4.83,17.48,0l56.39,56.39c4.83,4.83,4.83,12.65,0,17.48Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
246
|
+
<line x1="192.7" y1="167.54" x2="229.64" y2="204.47" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
247
|
+
<line x1="213.81" y1="220.3" x2="176.87" y2="183.37" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
248
|
+
<rect x="247.92" y="193.81" width="37.31" height="126.86" transform="translate(-103.82 263.84) rotate(-45)" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
249
|
+
<polyline points="324.62 288.9 345.72 310 319.34 336.39 298.23 315.28" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
250
|
+
<rect x="54.28" y="321.04" width="126.86" height="22.39" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
251
|
+
<path d="M69.2,321.04v-8.86c0-11.59,9.4-20.99,20.99-20.99h55.03c11.59,0,20.99,9.4,20.99,20.99v8.86" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
252
|
+
</symbol>
|
|
253
|
+
|
|
254
|
+
<!-- notes -->
|
|
255
|
+
<symbol id="icon-notes" viewBox="0 0 400 400">
|
|
256
|
+
<path d="M287.91,195.37v138.8c0,5.11-4.14,9.25-9.25,9.25H84.33c-5.11,0-9.25-4.14-9.25-9.25V65.82c0-5.11,4.14-9.25,9.25-9.25h194.32c5.11,0,9.25,4.14,9.25,9.25v92.53" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
257
|
+
<polygon points="324.92 158.36 306.42 139.85 186.12 260.15 167.61 297.16 204.63 278.65 324.92 158.36" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
258
|
+
<line x1="102.84" y1="93.58" x2="167.61" y2="93.58" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
259
|
+
<line x1="102.84" y1="232.39" x2="167.61" y2="232.39" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
260
|
+
<line x1="102.84" y1="121.35" x2="204.63" y2="121.35" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
261
|
+
<line x1="102.84" y1="149.11" x2="204.63" y2="149.11" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
262
|
+
<line x1="102.84" y1="176.87" x2="204.63" y2="176.87" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
263
|
+
<line x1="102.84" y1="204.63" x2="204.63" y2="204.63" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
264
|
+
</symbol>
|
|
265
|
+
|
|
266
|
+
<!-- loud-speaker -->
|
|
267
|
+
<symbol id="icon-loud-speaker" viewBox="0 0 400 400">
|
|
268
|
+
<path d="M248,73.07c-25.37,34.48-55.9,63.31-92.16,85.86l12.62,39.56,12.62,39.56c42.62-2.61,84.21,3.21,124.86,16.63,5.03,1.66,9.42-3.35,7.69-8.75l-27.15-85.09-27.15-85.09c-1.72-5.4-8.2-6.94-11.34-2.68Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
269
|
+
<path d="M295.93,190.31c9.33-10.08,13.33-23.4,9.38-35.79-3.96-12.42-14.97-20.97-28.46-23.77" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
270
|
+
<path d="M109.93,260.7c10.89,26.17,28.26,46.76,45.65,64.39,6.26,6.35,15.94,5.58,20.55-1.65l4.15-6.5c2.38-3.72,1.75-8.94-1.48-12.21-15.11-15.26-30.42-31.97-40.46-53.67" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
271
|
+
<path d="M88.25,174.21h82.8v82.46H88.25c-16.9,0-30.61-13.72-30.61-30.61v-21.23c0-16.9,13.72-30.61,30.61-30.61Z" transform="translate(-60.07 44.94) rotate(-17.69)" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
272
|
+
<line x1="365.68" y1="135.23" x2="337.83" y2="144.12" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
273
|
+
<line x1="325.15" y1="82.82" x2="309.25" y2="107.64" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
274
|
+
<line x1="363.18" y1="202.05" x2="335.85" y2="191.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
275
|
+
<path d="M70.77,256.35l-10.37,3.31c-8.02,2.56-16.6-1.87-19.15-9.89l-6.2-19.42c-2.56-8.02,1.87-16.6,9.89-19.15l10.37-3.31" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
276
|
+
</symbol>
|
|
277
|
+
|
|
278
|
+
<!-- like -->
|
|
279
|
+
<symbol id="icon-like" viewBox="0 0 400 400">
|
|
280
|
+
<path d="M327.51,200h-81.76c-10.95,0-19.83,8.88-19.83,19.83v59.38c0,10.95,8.88,19.83,19.83,19.83h12.6c1.33,0,2.41,1.08,2.41,2.41v25.88c0,2.15,2.6,3.23,4.12,1.71l29.29-29.29c.45-.45,1.07-.71,1.71-.71h31.62c10.95,0,19.83-8.88,19.83-19.83v-59.38c0-10.95-8.88-19.83-19.83-19.83Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
281
|
+
<path d="M285.85,279.72c-1.25-.76-30.72-18.86-30.72-38.03,0-9.25,7.52-16.77,16.77-16.77,6.22,0,11.84,3.46,14.73,8.75,2.89-5.29,8.51-8.75,14.73-8.75,9.25,0,16.77,7.52,16.77,16.77,0,19.17-29.47,37.27-30.72,38.03l-.78,.47-.78-.47Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
282
|
+
<path d="M240.02,316.25c-6.82,3.37-14.03,6.18-21.59,8.37-68.82,19.89-140.74-19.77-160.64-88.6-19.89-68.82,19.77-140.74,88.6-160.64,68.82-19.89,140.74,19.77,160.64,88.6,1.67,5.79,2.93,11.61,3.78,17.41" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
283
|
+
<path d="M197.71,90.43c23.78,17.88,44.87,49.69,56.21,88.9" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
284
|
+
<path d="M168.53,310.61c-24.35-17.67-46.06-49.95-57.62-89.94-11.33-39.21-10.46-77.37,.11-105.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
285
|
+
<line x1="151.12" y1="91.73" x2="213.71" y2="308.27" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
286
|
+
<line x1="74.14" y1="231.3" x2="290.69" y2="168.7" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
287
|
+
<line x1="80.1" y1="152.1" x2="243.39" y2="104.9" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
288
|
+
<line x1="121.44" y1="295.1" x2="203.08" y2="271.5" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
289
|
+
</symbol>
|
|
290
|
+
|
|
291
|
+
<!-- read -->
|
|
292
|
+
<symbol id="icon-read" viewBox="0 0 400 400">
|
|
293
|
+
<path d="M324.54,122.16h20.76v186.8h-119.35c-2.87,0-5.19,2.32-5.19,5.19,0,5.73-4.65,10.38-10.38,10.38h-20.76c-5.73,0-10.38-4.65-10.38-10.38,0-2.87-2.32-5.19-5.19-5.19H54.71V122.16h20.76" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
294
|
+
<path d="M200,122.16c26.32-29.7,64.1-46.7,103.78-46.7V251.89c-39.68,0-77.47,17-103.78,46.7-26.32-29.7-64.1-46.7-103.78-46.7V75.46c39.68,0,77.47,17,103.78,46.7Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
295
|
+
<path d="M96.22,102.14c-6.9-.52-13.8-.73-20.76-.73v176.43c42.86,0,85.25,8.82,124.54,25.95,39.28-17.12,81.68-25.95,124.54-25.95V101.41c-6.95,0-13.85,.21-20.76,.73" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
296
|
+
<line x1="200" y1="122.16" x2="200" y2="298.59" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
297
|
+
<path d="M272.65,114.28c-18.63,3.53-36.27,10.84-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
298
|
+
<path d="M127.35,114.28c18.63,3.53,36.27,10.84,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
299
|
+
<path d="M272.65,140.07c-18.63,3.53-36.27,10.84-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
300
|
+
<path d="M127.35,140.07c18.63,3.53,36.27,10.84,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
301
|
+
<path d="M272.65,165.86c-18.63,3.53-36.27,10.84-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
302
|
+
<path d="M127.35,165.86c18.63,3.53,36.27,10.84,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
303
|
+
<path d="M272.65,191.65c-18.63,3.53-36.27,10.84-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
304
|
+
<path d="M127.35,191.65c18.63,3.53,36.27,10.84,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
305
|
+
<path d="M272.65,217.43c-18.63,3.53-36.27,10.85-51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
306
|
+
<path d="M127.35,217.43c18.63,3.53,36.27,10.85,51.89,21.48" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
307
|
+
</symbol>
|
|
308
|
+
|
|
309
|
+
<!-- calculator -->
|
|
310
|
+
<symbol id="icon-calculator" viewBox="0 0 400 400">
|
|
311
|
+
<rect x="89.52" y="70.31" width="220.96" height="259.38" rx="19.21" ry="19.21" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
312
|
+
<rect x="113.54" y="94.33" width="172.92" height="38.43" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
313
|
+
<path d="M238.43,166.38c0,5.31-4.3,9.61-9.61,9.61h-9.61c-5.31,0-9.61-4.3-9.61-9.61s4.3-9.61,9.61-9.61h9.61c5.31,0,9.61,4.3,9.61,9.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
314
|
+
<path d="M286.46,166.38c0,5.31-4.3,9.61-9.61,9.61h-9.61c-5.31,0-9.61-4.3-9.61-9.61s4.3-9.61,9.61-9.61h9.61c5.31,0,9.61,4.3,9.61,9.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
315
|
+
<rect x="257.64" y="195.2" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
316
|
+
<rect x="209.61" y="195.2" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
317
|
+
<rect x="161.57" y="195.2" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
318
|
+
<rect x="113.54" y="195.2" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
319
|
+
<rect x="209.61" y="238.43" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
320
|
+
<rect x="161.57" y="238.43" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
321
|
+
<rect x="113.54" y="238.43" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
322
|
+
<rect x="257.64" y="238.43" width="28.82" height="67.25" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
323
|
+
<rect x="209.61" y="281.66" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
324
|
+
<rect x="161.57" y="281.66" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
325
|
+
<rect x="113.54" y="281.66" width="28.82" height="24.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
326
|
+
<path d="M142.36,166.38c0,5.31-4.3,9.61-9.61,9.61h-9.61c-5.31,0-9.61-4.3-9.61-9.61s4.3-9.61,9.61-9.61h9.61c5.31,0,9.61,4.3,9.61,9.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/><path d="M190.39,166.38c0,5.31-4.3,9.61-9.61,9.61h-9.61c-5.31,0-9.61-4.3-9.61-9.61s4.3-9.61,9.61-9.61h9.61c5.31,0,9.61,4.3,9.61,9.61Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
327
|
+
</symbol>
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
<!-- alarm -->
|
|
331
|
+
<symbol id="icon-alarm" viewBox="0 0 400 400">
|
|
332
|
+
<path d="M85.86,284.59c-4.65,0-8.43-3.76-8.43-8.41,0-1.92,.65-3.78,1.85-5.28l8.5-10.61c16.91-21.2,26.13-47.5,26.17-74.62v-19.07c.01-40.03,29.08-74.12,68.6-80.46l4.44-.71v-14.69c0-7.18,5.81-13,12.99-13,7.18,0,13,5.81,13,12.99h0v14.76l4.44,.71c39.52,6.31,68.61,40.38,68.65,80.4v19.07c.05,27.11,9.26,53.4,26.13,74.61l8.51,10.62c2.91,3.63,2.33,8.93-1.3,11.84-1.49,1.2-3.35,1.85-5.26,1.85H85.86ZM195.43,102.01c-35.66,.04-64.57,28.94-64.61,64.6v19.07c0,26.23-7.57,51.91-21.81,73.94l-5.24,8.12h192.43l-5.23-8.11c-14.24-22.04-21.82-47.72-21.82-73.95v-19.07c-.04-35.66-28.95-64.56-64.61-64.6h-9.12Z"/><path d="M199.99,342.26c-10.54,.04-20.65-4.13-28.09-11.6-5.7-5.86-9.53-13.29-10.99-21.33-.83-4.6,2.23-8.99,6.82-9.82,4.6-.83,8.99,2.23,9.82,6.82,.83,4.67,3.02,8.99,6.3,12.41,4.28,4.29,10.11,6.69,16.17,6.66,11.16,.05,20.68-8.05,22.43-19.07,.83-4.6,5.22-7.65,9.82-6.82,4.6,.83,7.65,5.22,6.82,9.82h0c-1.46,8.04-5.29,15.47-10.99,21.33-7.51,7.37-17.6,11.53-28.13,11.6Z"/>
|
|
333
|
+
</symbol>
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
<!-- account settings -->
|
|
337
|
+
<symbol id="icon-account-settings" viewBox="0 0 400 400">
|
|
338
|
+
<circle cx="134.65" cy="243.3" r="25.64" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
339
|
+
<path d="M208.9,264.75c0-41.01-33.24-74.25-74.25-74.25-.19,0-.38,0-.58,0-40.74,.31-73.68,33.43-73.68,74.25s33.24,74.25,74.25,74.25,74.25-33.24,74.25-74.25Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
340
|
+
<path d="M147.98,282.77h-27.42c-19.91,0-36.3,14.89-38.75,34.13,13.46,13.64,32.16,22.1,52.84,22.1s38.77-8.19,52.18-21.44c-2.14-19.57-18.71-34.8-38.85-34.8Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
341
|
+
<path d="M198.91,302.46c7.57,.47,15.24,.15,22.91-1.03l14.72,27.51,39.93-16.14-8.53-30.02c9.51-6.73,17.71-14.86,24.41-23.98l29.86,9.04,16.83-39.65-27.25-15.2c1.91-11.16,2.05-22.7,.29-34.22l27.52-14.72-16.14-39.93-30.02,8.53c-6.73-9.51-14.86-17.71-23.98-24.41l9.04-29.86-39.65-16.83-15.2,27.25c-11.16-1.91-22.7-2.05-34.22-.29l-14.72-27.51-39.93,16.14,8.53,30.02c-9.51,6.73-17.71,14.86-24.41,23.98l-29.86-9.04-16.83,39.65,27.25,15.2c-1.27,7.45-1.76,15.07-1.42,22.73m36.23-9.96c1.96-26.31,18.45-50.52,44.56-61.07,36.63-14.8,78.33,2.89,93.13,39.52,14.8,36.63-2.89,78.33-39.52,93.13-7.72,3.12-15.66,4.8-23.53,5.16" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
342
|
+
</symbol>
|
|
343
|
+
|
|
344
|
+
<!-- directions -->
|
|
345
|
+
<symbol id="icon-directions" viewBox="0 0 400 400">
|
|
346
|
+
<path d="M247.21,128.68c-42.65,0-77.23,34.58-77.23,77.23,0,9.14,1.72,17.86,4.51,26.04,9.78,28.65,72.72,82.81,72.72,82.81,0,0,65.4-62.17,72.72-82.81,2.89-8.15,4.51-16.9,4.51-26.04,0-42.65-34.58-77.23-77.23-77.23Zm0,123.91c-25.78,0-46.68-20.9-46.68-46.68s20.9-46.68,46.68-46.68,46.68,20.9,46.68,46.68-20.9,46.68-46.68,46.68Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
347
|
+
<circle cx="247.21" cy="205.91" r="46.68" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
348
|
+
<path d="M111.62,85.24c-19.92,0-36.06,16.14-36.06,36.06,0,4.27,.8,8.34,2.11,12.16,4.57,13.38,33.95,38.67,33.95,38.67,0,0,30.54-29.03,33.95-38.67,1.35-3.8,2.11-7.89,2.11-12.16,0-19.92-16.14-36.06-36.06-36.06Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
349
|
+
<path d="M111.62,105.54c-8.7,0-15.76,7.06-15.76,15.76s7.06,15.76,15.76,15.76,15.76-7.06,15.76-15.76-7.06-15.76-15.76-15.76Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
350
|
+
<path d="M111.99,172.52h4.42c19.64,0,35.56,15.92,35.56,35.56h0c0,19.64-15.92,35.56-35.56,35.56h-.49" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
351
|
+
<path d="M247.21,314.76H115.92c-19.64,0-35.56-15.92-35.56-35.56h0c0-19.64,15.92-35.56,35.56-35.56" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
352
|
+
</symbol>
|
|
353
|
+
|
|
354
|
+
<!-- downwards-graph -->
|
|
355
|
+
<symbol id="icon-downwards-graph" viewBox="0 0 400 400">
|
|
356
|
+
<path d="M340.41,329.33h-34.41v-75.2c0-4.38-3.57-7.95-7.95-7.95s-7.95,3.57-7.95,7.95v75.2h-48.42v-121.48c0-4.38-3.57-7.95-7.95-7.95s-7.95,3.57-7.95,7.95v121.48h-51.56V160c0-4.38-3.57-7.95-7.95-7.95s-7.95,3.57-7.95,7.95v169.32h-50.48V108.23c0-4.38-3.57-7.95-7.95-7.95s-7.95,3.57-7.95,7.95v221.09H59.59c-4.38,0-7.95,3.57-7.95,7.95s3.57,7.95,7.95,7.95H340.41c4.38,0,7.95-3.57,7.95-7.95s-3.57-7.95-7.95-7.95Z"/>
|
|
357
|
+
<path d="M302.31,179.48l-14.93,7.74c-3.89,2.02-5.42,6.82-3.4,10.71,1.37,2.65,4.08,4.29,7.06,4.29,1.27,0,2.53-.31,3.65-.89l31.21-16.18c.13-.06,.25-.14,.38-.21,.19-.11,.38-.22,.56-.35,.12-.09,.25-.17,.37-.26,.25-.19,.49-.4,.72-.62,.07-.07,.13-.14,.19-.2,.2-.21,.39-.43,.57-.67,.05-.07,.1-.13,.15-.2,.21-.29,.39-.6,.56-.92,.04-.07,.07-.14,.1-.21,.17-.34,.32-.7,.43-1.07,.08-.26,.15-.52,.2-.78,0-.03,0-.06,.02-.1,.05-.23,.08-.46,.11-.69,0-.01,0-.03,0-.04,.15-1.52-.13-3.06-.85-4.45l-16.24-31.33c-1.37-2.65-4.08-4.29-7.06-4.29-1.26,0-2.52,.31-3.65,.89-3.89,2.01-5.42,6.82-3.4,10.71l6.98,13.45c-14.31-5.37-35.25-13.84-57.14-24.78-35.65-17.82-81.34-46.09-96.58-79.61-1.29-2.84-4.12-4.67-7.22-4.67-1.14,0-2.26,.24-3.31,.72-1.93,.88-3.41,2.46-4.15,4.45-.74,1.99-.67,4.15,.21,6.08,26.07,57.36,123.86,98.5,164.46,113.46Z"/>
|
|
358
|
+
</symbol>
|
|
359
|
+
|
|
360
|
+
<!-- paint -->
|
|
361
|
+
<symbol id="icon-paint" viewBox="0 0 400 400">
|
|
362
|
+
<path d="M241.97,140.68c-4.78-9.51-6.01-20.76-2.68-30.95,3.48-10.64,11.97-19.34,22.35-23.43,8.61-3.39,17.92-3.33,27.03-3.58,9.08-.24,18.3-1.08,26.22-5.94,2.18-1.34,4.2-2.92,6.05-4.68,1.04-.99,2.03-2.04,2.96-3.13,.18-.22,1.28-1.75,1.44-1.7,.15,.05,.31,.77,.36,.89,.24,.68,.45,1.37,.66,2.07,1.71,5.79,2.74,11.81,3.31,17.81,.87,9.17,.55,18.49-1.3,27.52-2.21,10.78-6.7,21.03-13.43,29.76-1.86,2.41-3.88,4.7-6.03,6.85-8.74,8.74-21.55,12.69-33.74,11.47-4.73-.47-9.25-1.73-13.43-3.68" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
363
|
+
<path d="M261.84,159.81s-1.73-4.5-7.96-10.73c-5.54-5.54-11.42-8.65-11.42-8.65l-18.34,10.04s6.58,3.81,15.23,12.46,12.46,15.23,12.46,15.23l10.04-18.34Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
364
|
+
<path d="M251.8,178.15c-35.43,65.8-167.13,167.13-180.98,153.29-11.84-11.84,87.49-145.55,153.29-180.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
365
|
+
<path d="M258.6,112.42c2.97-4.9,7.64-8.66,13.15-10.56,4.98-1.72,10.38-1.8,15.79-1.66" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
366
|
+
<path d="M182.32,206.63c10.7-10.57,21.49-20.24,31.91-28.31" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
367
|
+
</symbol>
|
|
368
|
+
|
|
369
|
+
<!-- send-email -->
|
|
370
|
+
<symbol id="icon-send-email" viewBox="0 0 400 400">
|
|
371
|
+
<path d="M199.5,125.12H95.91c-7.54,0-13.65,6.11-13.65,13.65v154.63h233.4v-99.8" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
372
|
+
<path d="M60.8,293.41c0,11.86,9.61,21.46,21.46,21.46h233.4c11.85,0,21.46-9.61,21.46-21.46" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
373
|
+
<line x1="111.98" y1="205.25" x2="176.99" y2="162.06" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
374
|
+
<line x1="138.13" y1="221.44" x2="191.92" y2="185.7" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
375
|
+
<line x1="164.28" y1="237.62" x2="207.39" y2="208.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
376
|
+
<line x1="190.42" y1="253.8" x2="223.39" y2="231.9" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
377
|
+
<rect x="201.73" y="112.62" width="124.69" height="83.84" rx="2.27" ry="2.27" transform="translate(-41.4 171.94) rotate(-33.6)" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
378
|
+
<line x1="278.6" y1="144.95" x2="339.2" y2="154.96" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
379
|
+
<line x1="235.34" y1="223.96" x2="251.42" y2="163" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
380
|
+
<path d="M292.81,85.13l-18.73,78.82c-.29,1.21-1.53,2.06-2.77,1.89l-82.36-11.71" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
381
|
+
</symbol>
|
|
382
|
+
|
|
383
|
+
<!-- send-browser -->
|
|
384
|
+
<symbol id="icon-browser" viewBox="0 0 400 400">
|
|
385
|
+
<line x1="181.54" y1="320" x2="181.54" y2="292.87" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
386
|
+
<line x1="218.46" y1="292.87" x2="218.46" y2="320" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
387
|
+
<line x1="248.45" y1="320" x2="151.55" y2="320" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
388
|
+
<rect x="60.8" y="80" width="278.4" height="196.27" rx="18.81" ry="18.81" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
389
|
+
<line x1="339.2" y1="249.14" x2="60.8" y2="249.14" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
390
|
+
<path d="M262.09,164.57c0,34.28-27.79,62.08-62.07,62.08s-62.07-27.79-62.07-62.08,27.79-62.08,62.07-62.08,62.07,27.79,62.07,62.08Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
391
|
+
<path d="M223.14,164.57c0,34.28-10.35,62.08-23.12,62.08s-23.12-27.79-23.12-62.08,10.36-62.08,23.12-62.08,23.12,27.79,23.12,62.08Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
392
|
+
<line x1="141.67" y1="185.26" x2="258.36" y2="185.26" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
393
|
+
<line x1="141.67" y1="143.88" x2="258.36" y2="143.88" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
394
|
+
</symbol>
|
|
395
|
+
|
|
396
|
+
<!-- phone-notification -->
|
|
397
|
+
<symbol id="icon-phone-notification" viewBox="0 0 400 400">
|
|
398
|
+
<line x1="181.54" y1="320" x2="181.54" y2="292.87" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
399
|
+
<line x1="218.46" y1="292.87" x2="218.46" y2="320" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
400
|
+
<line x1="248.45" y1="320" x2="151.55" y2="320" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
401
|
+
<rect x="60.8" y="80" width="278.4" height="196.27" rx="18.81" ry="18.81" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
402
|
+
<line x1="339.2" y1="249.14" x2="60.8" y2="249.14" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
403
|
+
<path d="M262.09,164.57c0,34.28-27.79,62.08-62.07,62.08s-62.07-27.79-62.07-62.08,27.79-62.08,62.07-62.08,62.07,27.79,62.07,62.08Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
404
|
+
<path d="M223.14,164.57c0,34.28-10.35,62.08-23.12,62.08s-23.12-27.79-23.12-62.08,10.36-62.08,23.12-62.08,23.12,27.79,23.12,62.08Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
405
|
+
<line x1="141.67" y1="185.26" x2="258.36" y2="185.26" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
406
|
+
<line x1="141.67" y1="143.88" x2="258.36" y2="143.88" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
407
|
+
</symbol>
|
|
408
|
+
|
|
409
|
+
<!-- danger -->
|
|
410
|
+
<symbol id="icon-danger" viewBox="0 0 400 400">
|
|
411
|
+
<path d="M211.04,278.69c0,6.1-4.94,11.04-11.04,11.04s-11.04-4.94-11.04-11.04,4.94-11.04,11.04-11.04,11.04,4.94,11.04,11.04Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
412
|
+
<path id="d" d="M200,249.44h0c-5.44,0-9.94-4.25-10.24-9.69l-4.85-87.53c-.48-8.66,6.42-15.95,15.09-15.95h0c8.68,0,15.57,7.29,15.09,15.95l-4.85,87.53c-.3,5.44-4.8,9.69-10.24,9.69Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
413
|
+
<path d="M185.41,88.43l-119.11,206.3c-6.49,11.23,1.62,25.27,14.59,25.27h238.21c12.97,0,21.08-14.04,14.59-25.27L214.59,88.43c-6.49-11.23-22.7-11.23-29.18,0Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
414
|
+
</symbol>
|
|
415
|
+
|
|
416
|
+
<!-- warning -->
|
|
417
|
+
<symbol id="icon-warning" viewBox="0 0 400 400">
|
|
418
|
+
<path id="c" d="M211.04,265.69c0,6.1-4.94,11.04-11.04,11.04s-11.04-4.94-11.04-11.04,4.94-11.04,11.04-11.04,11.04,4.94,11.04,11.04Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
419
|
+
<path id="d" d="M200,236.44h0c-5.44,0-9.94-4.25-10.24-9.69l-4.85-87.53c-.48-8.66,6.42-15.95,15.09-15.95h0c8.68,0,15.57,7.29,15.09,15.95l-4.85,87.53c-.3,5.44-4.8,9.69-10.24,9.69Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
420
|
+
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12px;"/>
|
|
421
|
+
</symbol>
|
|
422
|
+
|
|
423
|
+
<!-- basket -->
|
|
424
|
+
<symbol id="icon-basket" viewBox="0 0 400 400">
|
|
425
|
+
<rect x="71.9" y="161.95" width="256.2" height="58.17" rx="12" ry="12" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
426
|
+
<path d="M84.97,220.12l18.35,106.94c1.14,6.65,6.91,11.51,13.66,11.51h166.04c6.75,0,12.52-4.86,13.66-11.51l18.35-106.94" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/><path d="M284.31,161.95l-63.13-94.37c-2.57-3.84-6.89-6.15-11.52-6.15h-30.13c-4.95,0-9.52,2.64-12,6.92l-54.09,93.59" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
427
|
+
<line x1="148.37" y1="261.68" x2="148.37" y2="297.01" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
428
|
+
<line x1="200" y1="261.68" x2="200" y2="297.01" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
429
|
+
<line x1="251.63" y1="261.68" x2="251.63" y2="297.01" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
430
|
+
</symbol>
|
|
431
|
+
<!-- alarm2 -->
|
|
432
|
+
<symbol id="icon-alarm2" viewBox="0 0 400 400">
|
|
433
|
+
|
|
434
|
+
<path d="M249.68,115.12c6.35-8.38,16.41-13.8,27.74-13.8,19.21,0,34.78,15.57,34.78,34.78,0,11.01-5.11,20.82-13.1,27.19" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
435
|
+
<path d="M114.99,284.12l-21.98,48.78c-1.63,3.62,2.43,7.15,5.78,5.03l45.24-28.5" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
436
|
+
<circle cx="199.74" cy="216.17" r="108.62" transform="translate(-94.35 204.55) rotate(-45)" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
437
|
+
<line x1="199.74" y1="298.24" x2="199.74" y2="324.79" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
438
|
+
<line x1="199.74" y1="108.57" x2="199.74" y2="134.09" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
439
|
+
<line x1="127.48" y1="257.79" x2="127.48" y2="257.79" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
440
|
+
<line x1="272.07" y1="174.32" x2="272.07" y2="174.32" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
441
|
+
<line x1="117.67" y1="216.17" x2="91.12" y2="216.17" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
442
|
+
<line x1="308.36" y1="216.17" x2="281.81" y2="216.17" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
443
|
+
<line x1="157.4" y1="142.98" x2="157.4" y2="142.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
444
|
+
<line x1="241.46" y1="288.57" x2="241.46" y2="288.57" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
445
|
+
<line x1="157.62" y1="288.91" x2="157.62" y2="288.91" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
446
|
+
<line x1="241.46" y1="143.7" x2="241.46" y2="143.7" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
447
|
+
<line x1="125.96" y1="173.6" x2="125.96" y2="173.6" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
448
|
+
<line x1="272.07" y1="257.96" x2="272.07" y2="257.96" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
449
|
+
<polyline points="199.74 164.75 199.74 216.17 226.75 243.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
450
|
+
<path d="M286.27,284.12l21.98,48.78c1.63,3.62-2.43,7.15-5.78,5.03l-45.23-28.5" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
451
|
+
<path d="M279.07,82.32c28.87,0,52.27,23.4,52.27,52.27" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
452
|
+
<path d="M279.07,61.43c40.4,0,73.16,32.75,73.16,73.16" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
453
|
+
<path d="M150.32,115.12c-6.35-8.38-16.41-13.8-27.74-13.8-19.21,0-34.78,15.57-34.78,34.78,0,11.01,5.11,20.82,13.1,27.19" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
454
|
+
<path d="M120.93,82.32c-28.87,0-52.27,23.4-52.27,52.27" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
455
|
+
<path d="M120.93,61.43c-40.4,0-73.16,32.75-73.16,73.16" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
456
|
+
</symbol>
|
|
457
|
+
|
|
458
|
+
<!-- download -->
|
|
459
|
+
<symbol id="icon-download" viewBox="0 0 400 400">
|
|
460
|
+
<polyline points="235.39 270.77 200 306.16 164.61 270.77" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
461
|
+
<line x1="200" y1="235.39" x2="200" y2="164.61" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
462
|
+
<line x1="200" y1="306.16" x2="200" y2="235.39" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
463
|
+
<path d="M247.18,235.39h35.39c26.06,0,47.18-21.12,47.18-47.18s-21.12-47.18-47.18-47.18c-5.38,0-10.46,1.09-15.28,2.75-8.94-28.84-35.51-49.93-67.29-49.93-39.09,0-70.77,31.69-70.77,70.77,0,3.43,.54,6.72,1.01,10.02-6.37-6.18-15.03-10.02-24.6-10.02-19.54,0-35.39,15.84-35.39,35.39s15.84,35.39,35.39,35.39h47.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
464
|
+
</symbol>
|
|
465
|
+
|
|
466
|
+
<!-- loading -->
|
|
467
|
+
<symbol id="icon-loading" viewBox="0 0 400 400">
|
|
468
|
+
<path d="M267.7,200c0,37.39-30.31,67.7-67.7,67.7-17.09,0-32.7-6.33-44.61-16.77" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
469
|
+
<polygon points="175.91 242.38 138.01 227.25 143.85 267.64 175.91 242.38"/>
|
|
470
|
+
<path d="M132.3,200c0-37.39,30.31-67.7,67.7-67.7,17.09,0,32.7,6.33,44.61,16.77" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
471
|
+
<polygon points="224.09 157.61 261.99 172.75 256.15 132.36 224.09 157.61"/>
|
|
472
|
+
<circle cx="200" cy="200" r="129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
473
|
+
</symbol>
|
|
474
|
+
|
|
475
|
+
<!-- refresh -->
|
|
476
|
+
<symbol id="icon-refresh" viewBox="0 0 400 400">
|
|
477
|
+
<path d="M267.7,200c0,37.39-30.31,67.7-67.7,67.7s-67.7-30.31-67.7-67.7,30.31-67.7,67.7-67.7c16.74,0,32.07,6.08,43.89,16.15" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
478
|
+
<polygon points="223.49 157.29 261.6 171.88 255.19 131.58 223.49 157.29"/>
|
|
479
|
+
<circle cx="200" cy="200" r="129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
480
|
+
</symbol>
|
|
481
|
+
|
|
482
|
+
<!-- battery -->
|
|
483
|
+
<symbol id="icon-battery" viewBox="0 0 400 400">
|
|
484
|
+
<rect x="133.28" y="102.49" width="133.44" height="236.08" rx="1" ry="1" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
485
|
+
<path d="M165.07,61.43h69.85c.55,0,1,.45,1,1v40.06h-71.85V62.43c0-.55,.45-1,1-1Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
486
|
+
<rect x="164.07" y="174.34" width="71.85" height="123.17" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
487
|
+
<line x1="164.07" y1="215.4" x2="235.93" y2="215.4" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
488
|
+
<line x1="164.07" y1="256.45" x2="235.93" y2="256.45" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
489
|
+
<line x1="184.6" y1="318.04" x2="215.4" y2="318.04" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
490
|
+
<line x1="184.6" y1="138.41" x2="215.4" y2="138.41" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
491
|
+
<line x1="200" y1="153.81" x2="200" y2="123.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
492
|
+
</symbol>
|
|
493
|
+
|
|
494
|
+
<!-- key -->
|
|
495
|
+
<symbol id="icon-key" viewBox="0 0 400 400">
|
|
496
|
+
<circle cx="251.69" cy="148.62" r="23.96" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
497
|
+
<path d="M66.86,281.38l98.29-98.29c-11.08-30.78-4.16-66.58,20.76-91.09,34.05-33.49,89.31-32.88,122.66,1.3,33.02,33.86,32.77,88.08-.77,121.62-24.49,24.49-60,31.23-90.57,20.23l-7.58,7.58c-2.82,2.82-6.2,5.02-9.92,6.45l-23.9,9.19-13.28,32.3-30.05,11.03-12,31.02-47.04-5.87-6.6-45.47Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
498
|
+
<line x1="183.46" y1="206.42" x2="92.04" y2="297.85" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
499
|
+
</symbol>
|
|
500
|
+
|
|
501
|
+
<!-- next -->
|
|
502
|
+
<symbol id="icon-next" viewBox="0 0 400 400">
|
|
503
|
+
<path d="M147.14,149.68c0-2.64,1.36-5.08,3.57-6.38,2.21-1.31,4.92-1.29,7.11,.06l81.97,50.32c2.15,1.32,3.47,3.73,3.47,6.33s-1.32,5-3.47,6.33l-81.97,50.32c-2.19,1.34-4.9,1.37-7.11,.06-2.21-1.3-3.57-3.75-3.57-6.38v-100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
504
|
+
<line x1="252.86" y1="142.33" x2="252.86" y2="257.67" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
505
|
+
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
506
|
+
</symbol>
|
|
507
|
+
|
|
508
|
+
<!-- prev -->
|
|
509
|
+
<symbol id="icon-prev" viewBox="0 0 400 400">
|
|
510
|
+
<path d="M252.86,250.32c0,2.64-1.36,5.08-3.57,6.38-2.21,1.31-4.92,1.29-7.11-.06l-81.97-50.32c-2.15-1.32-3.47-3.73-3.47-6.33s1.32-5,3.47-6.33l81.97-50.32c2.19-1.34,4.9-1.37,7.11-.06,2.21,1.3,3.57,3.75,3.57,6.38v100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
511
|
+
<line x1="147.14" y1="257.67" x2="147.14" y2="142.33" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
512
|
+
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
513
|
+
</symbol>
|
|
514
|
+
|
|
515
|
+
<!-- pause -->
|
|
516
|
+
<symbol id="icon-pause" viewBox="0 0 400 400">
|
|
517
|
+
<rect x="219.22" y="147.14" width="28.83" height="105.72" rx="12" ry="12" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
518
|
+
<rect x="151.94" y="147.14" width="28.83" height="105.72" rx="12" ry="12" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
519
|
+
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
520
|
+
</symbol>
|
|
521
|
+
|
|
522
|
+
<!-- forwards -->
|
|
523
|
+
<symbol id="icon-forwards" viewBox="0 0 400 400">
|
|
524
|
+
<path d="M195.19,149.68c0-2.64,1.36-5.08,3.57-6.38,2.21-1.31,4.92-1.29,7.11,.06l81.97,50.32c2.15,1.32,3.47,3.73,3.47,6.33s-1.32,5-3.47,6.33l-81.97,50.32c-2.19,1.34-4.9,1.37-7.11,.06-2.21-1.3-3.57-3.75-3.57-6.38v-100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
525
|
+
<path d="M195.19,221.91l-56.61,34.75c-2.16,1.34-4.9,1.34-7.11,.04-2.21-1.3-3.56-3.75-3.56-6.39v-100.63c0-2.64,1.35-5.1,3.56-6.39,2.22-1.3,4.95-1.3,7.11,.05l56.61,34.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
526
|
+
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
527
|
+
</symbol>
|
|
528
|
+
|
|
529
|
+
<!-- backwards -->
|
|
530
|
+
<symbol id="icon-backwards" viewBox="0 0 400 400">
|
|
531
|
+
<path d="M204.81,149.68c0-2.64-1.36-5.08-3.57-6.38-2.21-1.31-4.92-1.29-7.11,.06l-81.97,50.32c-2.15,1.32-3.47,3.73-3.47,6.33s1.32,5,3.47,6.33l81.97,50.32c2.19,1.34,4.9,1.37,7.11,.06,2.21-1.3,3.57-3.75,3.57-6.38v-100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
532
|
+
<path d="M204.81,178.09l56.61-34.75c2.17-1.35,4.9-1.35,7.11-.05,2.21,1.3,3.56,3.75,3.56,6.39v100.63c0,2.64-1.34,5.1-3.56,6.39-2.21,1.3-4.95,1.3-7.11-.04l-56.61-34.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
533
|
+
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
534
|
+
</symbol>
|
|
535
|
+
|
|
536
|
+
<!-- play -->
|
|
537
|
+
<symbol id="icon-play" viewBox="0 0 400 400">
|
|
538
|
+
<path d="M166.36,149.68c0-2.64,1.36-5.08,3.57-6.38,2.21-1.3,4.92-1.29,7.11,.06l81.97,50.32c2.15,1.32,3.47,3.73,3.47,6.33s-1.32,5-3.47,6.33l-81.97,50.32c-2.19,1.34-4.9,1.37-7.11,.06-2.21-1.3-3.57-3.75-3.57-6.38v-100.64Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
539
|
+
<path d="M329.75,200c0-71.66-58.09-129.75-129.75-129.75S70.25,128.34,70.25,200s58.09,129.75,129.75,129.75,129.75-58.09,129.75-129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
540
|
+
</symbol>
|
|
541
|
+
|
|
542
|
+
<!-- delete -->
|
|
543
|
+
<symbol id="icon-delete" viewBox="0 0 400 400">
|
|
544
|
+
<path d="M99.22,111.82v201.55c0,13.92,11.27,25.19,25.19,25.19h151.17c13.92,0,25.19-11.27,25.19-25.19V111.82" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
545
|
+
<line x1="86.63" y1="111.82" x2="313.37" y2="111.82" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
546
|
+
<line x1="149.61" y1="162.21" x2="149.61" y2="288.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
547
|
+
<line x1="200" y1="162.21" x2="200" y2="288.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
548
|
+
<line x1="250.39" y1="162.21" x2="250.39" y2="288.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
549
|
+
<path d="M250.39,111.82v-25.19c0-13.92-11.27-25.19-25.19-25.19h-50.39c-13.93,0-25.19,11.27-25.19,25.19v25.19" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
550
|
+
</symbol>
|
|
551
|
+
|
|
552
|
+
<!-- download2 -->
|
|
553
|
+
<symbol id="icon-download2" viewBox="0 0 400 400">
|
|
554
|
+
<line x1="200" y1="176.41" x2="200" y2="93.84" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
555
|
+
<line x1="200" y1="258.98" x2="200" y2="176.41" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
556
|
+
<polyline points="294.37 188.2 329.75 188.2 329.75 306.16 70.25 306.16 70.25 188.2 105.63 188.2" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
557
|
+
<line x1="200" y1="258.98" x2="152.82" y2="211.8" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
558
|
+
<line x1="247.18" y1="211.8" x2="200" y2="258.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
559
|
+
</symbol>
|
|
560
|
+
|
|
561
|
+
<!-- upload -->
|
|
562
|
+
<symbol id="icon-upload" viewBox="0 0 400 400">
|
|
563
|
+
<line x1="200" y1="93.84" x2="247.18" y2="141.02" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
564
|
+
<line x1="200" y1="188.2" x2="200" y2="258.98" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
565
|
+
<polyline points="294.37 188.2 329.75 188.2 329.75 306.16 70.25 306.16 70.25 188.2 105.63 188.2" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
566
|
+
<line x1="152.82" y1="141.02" x2="200" y2="93.84" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
567
|
+
<line x1="200" y1="188.2" x2="200" y2="93.84" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
568
|
+
</symbol>
|
|
569
|
+
|
|
570
|
+
<!-- pin2 -->
|
|
571
|
+
<symbol id="icon-pin2" viewBox="0 0 400 400">
|
|
572
|
+
<path d="M250.39,187.4c27.85,0,50.39,22.54,50.39,50.39H99.22c0-27.85,22.54-50.39,50.39-50.39h100.78Z" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
573
|
+
<polyline points="149.61 187.4 149.61 61.43 250.39 61.43 250.39 187.4" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
574
|
+
<line x1="200" y1="237.79" x2="200" y2="338.57" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
575
|
+
</symbol>
|
|
576
|
+
|
|
577
|
+
<!-- left -->
|
|
578
|
+
<symbol id="icon-left" viewBox="0 0 400 400">
|
|
579
|
+
<circle cx="200" cy="200" r="129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
580
|
+
<polyline points="211.8 152.82 164.61 200 211.8 247.18" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
581
|
+
</symbol>
|
|
582
|
+
|
|
583
|
+
<!-- right -->
|
|
584
|
+
<symbol id="icon-right" viewBox="0 0 400 400">
|
|
585
|
+
<circle cx="200" cy="200" r="129.75" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
586
|
+
<polyline points="188.2 247.18 235.39 200 188.2 152.82" style="fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:12.04px;"/>
|
|
587
|
+
</symbol>
|
|
588
|
+
|
|
589
|
+
<!-- right -->
|
|
590
|
+
<symbol id="icon-account" viewBox="0 0 28 28">
|
|
591
|
+
<path d="M14,28a13.861,13.861,0,0,1-9.268-3.533l-.023.047-.721-.738L3.62,23.4l.012-.023a14,14,0,1,1,20.735,0l.012.023-.367.377-.722.738-.024-.045A13.855,13.855,0,0,1,14,28Zm0-9.58a10.5,10.5,0,0,0-1.368.092c-.085.012-.17.03-.252.047-.061.013-.124.026-.187.037l-.077.013c-.266.047-.54.095-.8.165-.108.029-.215.065-.318.1-.063.022-.125.043-.188.063l-.08.026c-.223.071-.454.144-.671.234-.125.05-.245.11-.362.168l-.146.072-.045.021c-.208.1-.423.2-.623.312-.131.074-.257.158-.379.239l-.106.07-.068.044c-.176.114-.359.232-.528.359-.137.1-.267.218-.393.327l-.054.047c-.174.15-.355.306-.519.47-.132.134-.258.277-.38.416l-.018.021c-.16.184-.3.35-.437.527-.12.161-.23.33-.337.494-.076.117-.146.238-.214.356a12.495,12.495,0,0,0,17.109,0l-.022-.037c-.061-.1-.125-.212-.192-.315-.1-.156-.214-.333-.338-.5-.141-.188-.293-.363-.436-.526-.113-.13-.253-.292-.4-.438-.161-.162-.337-.314-.517-.468l-.08-.069c-.118-.1-.24-.209-.368-.307-.183-.137-.379-.264-.568-.387l-.026-.017-.106-.07c-.125-.083-.251-.166-.381-.24-.207-.118-.429-.222-.643-.322l-.024-.011-.152-.074c-.116-.057-.235-.116-.356-.165-.214-.087-.438-.159-.656-.229l-.1-.031c-.066-.021-.132-.043-.2-.066-.1-.035-.2-.07-.309-.1-.264-.07-.538-.118-.8-.165l-.078-.014c-.063-.011-.126-.024-.187-.037-.082-.017-.167-.035-.252-.047A10.483,10.483,0,0,0,14,18.421Zm0-1.473a11.871,11.871,0,0,1,1.54.1c.1.013.192.033.284.052.069.014.139.028.209.04.34.058.672.118,1,.2.14.036.278.082.412.127l.151.05c.309.1.587.188.859.3.148.059.293.127.433.194l.13.061c.306.142.553.266.775.389.188.107.368.22.535.328.26.166.489.322.7.478.156.117.316.244.49.389.209.176.412.361.622.567.156.154.3.293.43.443.209.23.4.472.542.657l.051.066c.1.134.21.272.308.416.021.031.045.061.068.09a1.267,1.267,0,0,1,.085.117,12.525,12.525,0,1,0-19.24,0c.026-.04.056-.078.084-.114s.05-.064.073-.1c.1-.141.2-.278.3-.409l.046-.059c.2-.264.378-.478.555-.672.137-.152.281-.3.417-.43.215-.21.422-.4.635-.578.18-.15.332-.271.479-.381.208-.155.433-.31.709-.486.174-.111.346-.219.526-.319.274-.153.55-.285.783-.393l.112-.053c.144-.069.293-.14.445-.2.282-.113.578-.208.864-.3l.159-.052c.132-.044.265-.088.4-.124.331-.087.675-.148,1-.2.068-.012.137-.026.2-.039.094-.019.191-.039.288-.052A11.827,11.827,0,0,1,14,16.948Z" transform="translate(0 -0.001)" />
|
|
592
|
+
<path d="M5.2,10.4a5.2,5.2,0,1,1,5.2-5.2A5.206,5.206,0,0,1,5.2,10.4Zm0-8.915A3.714,3.714,0,1,0,8.915,5.2,3.719,3.719,0,0,0,5.2,1.486Z" transform="translate(8.8 4.8)" />
|
|
593
|
+
</symbol>
|
|
594
|
+
|
|
595
|
+
<symbol id="icon-auction" viewBox="0 0 49 51">
|
|
596
|
+
<path d="M38.762,51H27.787a1.479,1.479,0,0,1-1.477-1.477V35.449l-12.452.071.071,14A1.478,1.478,0,0,1,12.452,51H1.476A1.478,1.478,0,0,1,0,49.523V22.553a4.964,4.964,0,0,1,1.452-3.517L18.9,6.135a1.84,1.84,0,0,1,1.2-.438,1.955,1.955,0,0,1,1.248.454L24.4,8.4l2.631-3.111a2.872,2.872,0,0,1,.389-.374l.312-.252L27.548,4.3A2.862,2.862,0,0,1,27.9,1.127L28,1a2.817,2.817,0,0,1,1.934-1C30.011,0,30.088,0,30.162,0A2.825,2.825,0,0,1,32,.682l7.342,6.293a2.876,2.876,0,0,1,.327,4.032l-.107.124a2.828,2.828,0,0,1-3.054.854l-.383-.129-.2.353a3.035,3.035,0,0,1-.309.446l-1.429,1.69L48,26.183a2.879,2.879,0,0,1,.322,4.037l-.1.121a2.838,2.838,0,0,1-2.179.976,2.8,2.8,0,0,1-1.823-.654l-3.981-3.412V49.523A1.478,1.478,0,0,1,38.762,51Zm-24.9-17.028H26.381a1.479,1.479,0,0,1,1.477,1.477V49.523l10.9-.071L38.7,25.933l-8.293-7.112-1.433,1.7a2.866,2.866,0,0,1-.572.5l-.368.253.213.39a2.9,2.9,0,0,1-.316,3.233l-.1.121a2.83,2.83,0,0,1-2.177.977,2.79,2.79,0,0,1-1.823-.655l-7.34-6.29a2.882,2.882,0,0,1-.326-4.036l.105-.122a2.834,2.834,0,0,1,3.109-.828l.422.151.191-.409a2.857,2.857,0,0,1,.394-.647L23.4,9.583l-3.03-2.237a.382.382,0,0,0-.5,0L2.459,20.2a3.431,3.431,0,0,0-.911,2.348v26.97l10.9-.071-.071-14A1.478,1.478,0,0,1,13.857,33.972ZM33.089,15.647l-1.582,1.872,13.81,11.839a1.162,1.162,0,0,0,.743.273c.03,0,.06,0,.09,0a1.151,1.151,0,0,0,.781-.4l.1-.122a1.155,1.155,0,0,0-.13-1.618L33.088,15.647Zm-14.649-.036a1.16,1.16,0,0,0-.881.385l-.1.122a1.159,1.159,0,0,0,.13,1.618l7.34,6.291a1.126,1.126,0,0,0,.736.27c.032,0,.065,0,.1,0a1.139,1.139,0,0,0,.782-.4l.1-.122a1.154,1.154,0,0,0-.13-1.615l-7.34-6.291A1.121,1.121,0,0,0,18.439,15.611ZM29.183,5.987l-.241.054a1.11,1.11,0,0,0-.617.361l-6.647,7.863a1.166,1.166,0,0,0,.132,1.616l4.257,3.65a1.13,1.13,0,0,0,.738.273c.032,0,.064,0,.1,0a1.143,1.143,0,0,0,.781-.4l6.649-7.861a1.152,1.152,0,0,0,.263-.657l.015-.246Zm.988-4.257a1.156,1.156,0,0,0-.879.387l-.1.122a1.152,1.152,0,0,0,.13,1.616l7.34,6.292a1.132,1.132,0,0,0,.736.27c.032,0,.065,0,.1,0a1.138,1.138,0,0,0,.78-.4l.1-.122a1.155,1.155,0,0,0-.13-1.616l-7.34-6.292A1.131,1.131,0,0,0,30.172,1.729Z"/>
|
|
597
|
+
</symbol>
|
|
598
|
+
|
|
589
599
|
</svg>
|