diff --git a/Arduino/Sensors/Sensors.ino b/Arduino/Sensors/Sensors.ino
index 6eaa9b1..c7b45ec 100644
--- a/Arduino/Sensors/Sensors.ino
+++ b/Arduino/Sensors/Sensors.ino
@@ -20,7 +20,7 @@ ESP8266WiFiMulti WiFiMulti;
BME280I2C bme;
const byte codes[] = {0x01 ,0x03 ,0x00 ,0x00 ,0x00 ,0x02 ,0xC4 ,0x0B};
-const char server[] PROGMEM = "http://2.233.91.82/weather/api/station?data=%d|%d|%f|%f|%f";
+const char server[] PROGMEM = "http://2.233.91.82/weather/api/station?data=capaccio|%d|%d|%f|%f|%f";
byte values[2][20];
SoftwareSerial sensor(SERIAL_RO, SERIAL_DI);
diff --git a/Web/weather/.vscode/extensions.json b/Web/weather/.vscode/extensions.json
deleted file mode 100644
index 77b3745..0000000
--- a/Web/weather/.vscode/extensions.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
- "recommendations": ["angular.ng-template"]
-}
diff --git a/Web/weather/.vscode/launch.json b/Web/weather/.vscode/launch.json
deleted file mode 100644
index 740e35a..0000000
--- a/Web/weather/.vscode/launch.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "ng serve",
- "type": "pwa-chrome",
- "request": "launch",
- "preLaunchTask": "npm: start",
- "url": "http://localhost:4200/"
- },
- {
- "name": "ng test",
- "type": "chrome",
- "request": "launch",
- "preLaunchTask": "npm: test",
- "url": "http://localhost:9876/debug.html"
- }
- ]
-}
diff --git a/Web/weather/.vscode/tasks.json b/Web/weather/.vscode/tasks.json
deleted file mode 100644
index a298b5b..0000000
--- a/Web/weather/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
- "version": "2.0.0",
- "tasks": [
- {
- "type": "npm",
- "script": "start",
- "isBackground": true,
- "problemMatcher": {
- "owner": "typescript",
- "pattern": "$tsc",
- "background": {
- "activeOnStart": true,
- "beginsPattern": {
- "regexp": "(.*?)"
- },
- "endsPattern": {
- "regexp": "bundle generation complete"
- }
- }
- }
- },
- {
- "type": "npm",
- "script": "test",
- "isBackground": true,
- "problemMatcher": {
- "owner": "typescript",
- "pattern": "$tsc",
- "background": {
- "activeOnStart": true,
- "beginsPattern": {
- "regexp": "(.*?)"
- },
- "endsPattern": {
- "regexp": "bundle generation complete"
- }
- }
- }
- }
- ]
-}
diff --git a/Web/weather/src/api/get_data.php b/Web/weather/src/api/get_data.php
index 5cc681d..1dd267c 100644
--- a/Web/weather/src/api/get_data.php
+++ b/Web/weather/src/api/get_data.php
@@ -5,8 +5,9 @@
$conn = @mysqli_connect($CONF['DB']['HOST'], $CONF['DB']['USER'], $CONF['DB']['PASS'], 'weather')or die("CONNECTION ERROR");
$day = $_GET['day'];
+$spot = $_GET['spot'];
-$q = mysqli_query($conn, "SELECT * FROM `data` WHERE `date` LIKE '$day%'");
+$q = mysqli_query($conn, "SELECT * FROM `data` WHERE `date` LIKE '$day%' AND `spot` = '$spot'");
if($q) {
diff --git a/Web/weather/src/api/station.php b/Web/weather/src/api/station.php
index 3e5bd7f..4422569 100644
--- a/Web/weather/src/api/station.php
+++ b/Web/weather/src/api/station.php
@@ -6,7 +6,7 @@ $conn = @mysqli_connect($CONF['DB']['HOST'], $CONF['DB']['USER'], $CONF['DB']['P
$data = explode('|',$_GET['data']);
-$query = "INSERT INTO `data` VALUES(NULL, NOW(), ".$data[0].", ".$data[1].", ".$data[2].", ".$data[3].", ".$data[4].")";
+$query = "INSERT INTO `data` VALUES(NULL, '".$data[0]."', NOW(), ".$data[1].", ".$data[2].", ".$data[3].", ".$data[4].", ".$data[4].")";
if(mysqli_query($conn, $query)) {
http_response_code(200);
diff --git a/Web/weather/src/app/app-layout/app-layout.component.html b/Web/weather/src/app/app-layout/app-layout.component.html
deleted file mode 100644
index f08ea58..0000000
--- a/Web/weather/src/app/app-layout/app-layout.component.html
+++ /dev/null
@@ -1 +0,0 @@
-
app-layout works!
diff --git a/Web/weather/src/app/app-layout/app-layout.component.scss b/Web/weather/src/app/app-layout/app-layout.component.scss
deleted file mode 100644
index e69de29..0000000
diff --git a/Web/weather/src/app/app-layout/app-layout.component.spec.ts b/Web/weather/src/app/app-layout/app-layout.component.spec.ts
deleted file mode 100644
index a40dd41..0000000
--- a/Web/weather/src/app/app-layout/app-layout.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { AppLayoutComponent } from './app-layout.component';
-
-describe('AppLayoutComponent', () => {
- let component: AppLayoutComponent;
- let fixture: ComponentFixture;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [ AppLayoutComponent ]
- })
- .compileComponents();
-
- fixture = TestBed.createComponent(AppLayoutComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/Web/weather/src/app/app-layout/app-layout.component.ts b/Web/weather/src/app/app-layout/app-layout.component.ts
deleted file mode 100644
index ec8cf2b..0000000
--- a/Web/weather/src/app/app-layout/app-layout.component.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-
-@Component({
- selector: 'app-app-layout',
- templateUrl: './app-layout.component.html',
- styleUrls: ['./app-layout.component.scss']
-})
-export class AppLayoutComponent implements OnInit {
-
- constructor() { }
-
- ngOnInit(): void {
- }
-
-}
diff --git a/Web/weather/src/app/app.component.html b/Web/weather/src/app/app.component.html
index e28941d..be6214b 100644
--- a/Web/weather/src/app/app.component.html
+++ b/Web/weather/src/app/app.component.html
@@ -8,11 +8,11 @@
-
+
diff --git a/Web/weather/src/app/app.component.scss b/Web/weather/src/app/app.component.scss
index 79c2c92..d34d2de 100644
--- a/Web/weather/src/app/app.component.scss
+++ b/Web/weather/src/app/app.component.scss
@@ -22,13 +22,14 @@
.title {
display: block;
- padding: 0 50px;
+ padding: 0 50px 0 20px;
font-family: $font-serif;
font-size: $font-30;
font-weight: bold;
color: $white-alpha;
- margin: auto auto 15px auto;
+ margin: auto auto 15px 0;
text-shadow: 0 0 2px $black;
+ text-align: left;
}
.menu {
diff --git a/Web/weather/src/app/app.component.ts b/Web/weather/src/app/app.component.ts
index b3ff73a..1e66604 100644
--- a/Web/weather/src/app/app.component.ts
+++ b/Web/weather/src/app/app.component.ts
@@ -23,11 +23,18 @@ import { trigger, state, style, animate, transition } from '@angular/animations'
export class AppComponent {
- public title: string = 'Dslak weather station'
+ public title: string = 'Dslak WS'
public day: string = new Date().toISOString().substring(0,10)
+ public spot: string = 'capaccio'
public menuOpen: boolean = false
toggleMenu(): void {
this.menuOpen = !this.menuOpen
}
+
+ setSpot(spot: string): void {
+ this.spot = spot
+ this.menuOpen = false
+ }
+
}
diff --git a/Web/weather/src/app/app.module.ts b/Web/weather/src/app/app.module.ts
index 4ecd546..c4894d7 100644
--- a/Web/weather/src/app/app.module.ts
+++ b/Web/weather/src/app/app.module.ts
@@ -7,14 +7,12 @@ import { NgxEchartsModule } from 'ngx-echarts';
import { environment } from '../environments/environment'
import { AppComponent } from './app.component';
-import { AppLayoutComponent } from './app-layout/app-layout.component';
import { GraphComponent } from './graph/graph.component';
import { DashboardComponent } from './dashboard/dashboard.component';
@NgModule({
declarations: [
AppComponent,
- AppLayoutComponent,
GraphComponent,
DashboardComponent
],
diff --git a/Web/weather/src/app/dashboard/dashboard.component.html b/Web/weather/src/app/dashboard/dashboard.component.html
index 7c1e2d0..fdae43f 100644
--- a/Web/weather/src/app/dashboard/dashboard.component.html
+++ b/Web/weather/src/app/dashboard/dashboard.component.html
@@ -1,3 +1,20 @@
-
+
+
+
+
+
+
+ Date/Time: {{data[data.length-1].date}}
+ Speed: {{data[data.length-1].speed}} Km/h
+ Direction: {{dirLabels[data[data.length-1].direction]}} {{dirArrows[data[data.length-1].direction]}}
+ Temperature: {{data[data.length-1].temperature}} °C
+ Pressure: {{data[data.length-1].pressure}} hpa
+ Humidity: {{data[data.length-1].humidity}}%
+
+
+
+
No data for selected date
+
+
diff --git a/Web/weather/src/app/dashboard/dashboard.component.scss b/Web/weather/src/app/dashboard/dashboard.component.scss
index e69de29..a235971 100644
--- a/Web/weather/src/app/dashboard/dashboard.component.scss
+++ b/Web/weather/src/app/dashboard/dashboard.component.scss
@@ -0,0 +1,44 @@
+@import "../../assets/scss/variables";
+
+.dashboard-container {
+ display: flex;
+ flex-wrap: wrap;
+
+ .date-container {
+ display: block;
+ width: 100%;
+ text-align: center;
+ }
+
+ .info-container {
+ display: flex;
+ flex-wrap: wrap;
+ width: 100%;
+
+ .item {
+ display: inline-block;
+ padding: 5px 10px;
+ border: 1px solid $gray;
+ border-radius: 3px;
+ margin: 3px;
+ font-size: $font-14;
+ font-weight: bold;
+ .value {
+ font-weight: normal;
+ font-size: $font-18;
+ }
+ }
+ }
+
+
+ .graph-container {
+ display: block;
+ width: 100%;
+ padding: 0;
+ }
+
+ .no-data {
+ padding: 20px;
+ margin: auto;
+ }
+}
diff --git a/Web/weather/src/app/dashboard/dashboard.component.ts b/Web/weather/src/app/dashboard/dashboard.component.ts
index 9e27068..32149bc 100644
--- a/Web/weather/src/app/dashboard/dashboard.component.ts
+++ b/Web/weather/src/app/dashboard/dashboard.component.ts
@@ -1,4 +1,4 @@
-import { Component, OnInit, Input, ViewEncapsulation } from '@angular/core'
+import { Component, OnInit, Input, SimpleChanges, ViewEncapsulation } from '@angular/core'
import { StationService } from '../station.service'
import { environment } from '../../environments/environment'
@@ -11,9 +11,16 @@ import { environment } from '../../environments/environment'
export class DashboardComponent implements OnInit {
- @Input() day: string = ''
+ public today: string = new Date().toISOString().substring(0,10)
+
+ @Input() day: string = this.today
+ @Input() spot: string = this.today
+
public data: any = []
+ public dirLabels: any = ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW']
+ public dirArrows: any = ['\u2B07', '\u2B0B', '\u2B05', '\u2B09', '\u2B06', '\u2B08', '\u27A1', '\u2B0A']
+
constructor(
private stationService: StationService
) { }
@@ -22,9 +29,15 @@ export class DashboardComponent implements OnInit {
if(this.day) this.getData()
}
+ ngOnChanges(changes: SimpleChanges): void {
+ if(changes['spot'] && changes['spot'].currentValue) {
+ this.spot = changes['spot'].currentValue
+ this.getData()
+ }
+ }
+
getData(): void {
- this.stationService.getData(this.day).toPromise().then( (data) => {
- console.log(data)
+ this.stationService.getData(this.day, this.spot).toPromise().then( (data) => {
this.data = data.items
},(error) => {
console.error(error)
diff --git a/Web/weather/src/app/graph/graph.component.html b/Web/weather/src/app/graph/graph.component.html
index ca0fe38..1dfa64e 100644
--- a/Web/weather/src/app/graph/graph.component.html
+++ b/Web/weather/src/app/graph/graph.component.html
@@ -1,6 +1,6 @@
diff --git a/Web/weather/src/app/graph/graph.component.scss b/Web/weather/src/app/graph/graph.component.scss
index b2954af..a2aa617 100644
--- a/Web/weather/src/app/graph/graph.component.scss
+++ b/Web/weather/src/app/graph/graph.component.scss
@@ -4,23 +4,15 @@
position: relative;
display: block;
background: $white;
- border-radius: 3px;
padding: 0px;
width: 100%;
- height: calc(100vh - $header-height-mobile);
- @media (min-width: map-get($grid-breakpoints, 'md')) {
- height: calc(100vh - $header-height-mobile);
- }
+ height: 500px;
.canvas-container {
position: relative;
display: block;
- border-radius: 3px;
padding: 0px;
- height: calc(100vh - $header-height-mobile);
- @media (min-width: map-get($grid-breakpoints, 'md')) {
- height: calc(100vh - $header-height-mobile);
- }
+ height: 500px;
.canvas-loader {
position: absolute;
@@ -30,13 +22,13 @@
background: $white;
margin-top: 0;
width: 100%;
- height: 630px;
+ height: 100%;
z-index: 1;
>.spinner {
position: absolute;
- top: calc(50% - 30px);
- left: calc(50% - 30px);
+ top: calc(50% - 50px);
+ left: calc(50% - 50px);
border-radius: 50%;
width: 100px;
height: 100px;
@@ -56,13 +48,8 @@
.canvas {
position: relative;
display: block;
- border-radius: 3px;
padding: 0px;
- height: calc(100vh - $header-height-mobile);
- @media (min-width: map-get($grid-breakpoints, 'md')) {
- height: calc(100vh - $header-height-mobile);
- }
-
+ height: 500px;
}
}
}
diff --git a/Web/weather/src/app/graph/graph.component.ts b/Web/weather/src/app/graph/graph.component.ts
index 9a188f5..f23b4f1 100644
--- a/Web/weather/src/app/graph/graph.component.ts
+++ b/Web/weather/src/app/graph/graph.component.ts
@@ -50,29 +50,26 @@ export class GraphComponent implements OnInit {
color: ['#FFBF00', '#00DDFF', '#FFBF00', '#37A2FF', '#FF0087'],
tooltip: {
trigger: 'item',
- //axisPointer: { type: 'cross', axis:'y', label: false},
formatter: (params: any) => {
const data = this.data[params.dataIndex]
return `
${data.date.substring(11)}
-
Vento: ${data.speed} Km/h ${this.dirArrows[data.direction]} ${this.directions[data.direction]}
-
Temperatura: ${data.temperature} °C
-
Pressione: ${data.pressure} hpa
-
Umidità: ${data.humidity} %`/* : null*/
+
Wind: ${data.speed} Km/h ${this.dirArrows[data.direction]} ${this.directions[data.direction]}
+
Temperature: ${data.temperature} °C
+
Pressure: ${data.pressure} hpa
+
Humidity: ${data.humidity} %`
}
},
- grid: {left: 0, right: 0, containLabel: true },
- legend: { data: ['Speed', 'Dir', 'Temp', 'Press', 'Umid'] },
+ grid: {left: 0, right: '20px', containLabel: true },
xAxis: { type: 'category', boundaryGap: true, axisTick: true, data: xAxis },
yAxis: [{ type: 'value', show: false }],
series: [
{ name: 'temp', type: 'line', data: yAxis2, yAxisIndex: 0, smooth: true, stack: 'Total',
areaStyle: {}, lineStyle: { width: 0 },
- label: { show: false, position: 'top', formatter: (d: any) => {
+ label: { show: true, position: 'top', formatter: (d: any) => {
const temp = this.data[d.dataIndex].temperature
return `${temp} °C`
}}
-
},
{ name: 'speed', type: 'line', data: yAxis, yAxisIndex: 0, smooth: true, stack: 'Total',
areaStyle: {},
diff --git a/Web/weather/src/app/station.service.ts b/Web/weather/src/app/station.service.ts
index e51f0ba..cbb1038 100644
--- a/Web/weather/src/app/station.service.ts
+++ b/Web/weather/src/app/station.service.ts
@@ -30,8 +30,8 @@ export class StationService {
}
- getData(day: string): Observable
{
- const apiUrl = `${this.restApi}/get_data?day=${day}`;
+ getData(day: string, spot: string): Observable {
+ const apiUrl = `${this.restApi}/get_data?day=${day}&spot=${spot}`;
return this.http.get(apiUrl, {headers: this.commonHeaders()}).pipe(
catchError(this.handleError)
)
diff --git a/Web/weather/src/assets/fonts/icomoon.eot b/Web/weather/src/assets/fonts/icomoon.eot
index bcb5289..4e656d2 100644
Binary files a/Web/weather/src/assets/fonts/icomoon.eot and b/Web/weather/src/assets/fonts/icomoon.eot differ
diff --git a/Web/weather/src/assets/fonts/icomoon.svg b/Web/weather/src/assets/fonts/icomoon.svg
index 7600669..3118ec4 100644
--- a/Web/weather/src/assets/fonts/icomoon.svg
+++ b/Web/weather/src/assets/fonts/icomoon.svg
@@ -38,4 +38,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Web/weather/src/assets/fonts/icomoon.ttf b/Web/weather/src/assets/fonts/icomoon.ttf
index 1f59282..a175ff6 100644
Binary files a/Web/weather/src/assets/fonts/icomoon.ttf and b/Web/weather/src/assets/fonts/icomoon.ttf differ
diff --git a/Web/weather/src/assets/fonts/icomoon.woff b/Web/weather/src/assets/fonts/icomoon.woff
index 78e6579..6b0d6ea 100644
Binary files a/Web/weather/src/assets/fonts/icomoon.woff and b/Web/weather/src/assets/fonts/icomoon.woff differ
diff --git a/Web/weather/src/assets/fonts/selection.json b/Web/weather/src/assets/fonts/selection.json
index 04a2ba1..7c36d9e 100644
--- a/Web/weather/src/assets/fonts/selection.json
+++ b/Web/weather/src/assets/fonts/selection.json
@@ -1 +1 @@
-{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M859.996 468.195c27.454 22.75 27.454 64.858 0 87.608l-536.619 444.669c-37.080 30.726-93.184 4.352-93.184-43.804v-889.334c0-48.159 56.104-74.532 93.184-43.805z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-right"],"grid":0},"attrs":[{}],"properties":{"order":867,"id":0,"name":"angle-right","prevSize":32,"code":59648},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M164.004 468.195c-27.454 22.75-27.454 64.858 0 87.608l536.619 444.669c37.080 30.726 93.184 4.352 93.184-43.804v-889.334c0-48.159-56.104-74.532-93.184-43.805z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-left"],"grid":0},"attrs":[{}],"properties":{"order":868,"id":1,"name":"angle-left","prevSize":32,"code":59649},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M473.899 752.904c21.045 21.035 55.156 21.035 76.2 0l405.763-405.57c33.964-33.948 9.922-92.013-38.104-92.013h-811.518c-48.021 0-72.064 58.065-38.1 92.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-down"],"grid":0},"attrs":[{}],"properties":{"order":869,"id":2,"name":"angle-down","prevSize":32,"code":59650},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M473.899 271.096c21.045-21.035 55.156-21.035 76.2 0l405.763 405.57c33.964 33.948 9.922 92.013-38.104 92.013h-811.518c-48.021 0-72.064-58.065-38.1-92.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-up"],"grid":0},"attrs":[{}],"properties":{"order":870,"id":3,"name":"angle-up","prevSize":32,"code":59651},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M128 73.143c-57.149 0-103.619 43.739-103.619 97.524v682.667c0 53.784 46.47 97.524 103.619 97.524h768c57.149 0 103.619-43.739 103.619-97.524v-682.667c0-53.785-46.47-97.524-103.619-97.524zM128 170.667h768c3.852 0.049 5.949 1.356 6.095 0.381l0.571 680c-0.341 0.488-2.522 2.285-6.667 2.285h-768c-2.779 0-4.695-0.857-5.524-0.857-0.341 0-0.523 0.088-0.571 0.38l-0.571-679.999c0.341-0.488 2.522-2.19 6.667-2.19zM219.429 268.19v292.571h292.571v-292.571zM609.524 268.19v97.524h195.048v-97.524zM609.524 463.238v97.524h195.048v-97.524zM219.429 658.286v97.524h585.143v-97.524h-243.81z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["article"],"grid":0},"attrs":[{}],"properties":{"order":871,"id":4,"name":"article","prevSize":32,"code":59652},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M333.913 22.565c-24.375 0-44.176 19.587-44.521 43.881l-0 0.033v44.522h-44.522c-122.416 0-222.609 100.193-222.609 222.609v445.217c0 122.415 100.192 222.609 222.609 222.609h534.261c122.415 0 222.609-100.194 222.609-222.609v-445.217c0-122.416-100.194-222.609-222.609-222.609h-44.522v-44.522c-0.346-24.326-20.146-43.913-44.522-43.913l-0-0c-24.375 0-44.176 19.587-44.521 43.881l-0 0.033v44.522h-267.13v-44.522c-0.346-24.326-20.146-43.913-44.522-43.913l-0-0zM244.87 200.043h44.522v44.522c0.355 24.319 20.152 43.897 44.522 43.897s44.167-19.578 44.521-43.863l0-0.033v-44.522h267.13v44.522c0.346 24.326 20.146 43.913 44.522 43.913l0 0c24.375-0 44.176-19.587 44.521-43.881l0-0.033v-44.522h44.522c74.291 0 133.565 59.272 133.565 133.565v44.522h-801.391v-44.522c0-74.293 59.272-133.565 133.565-133.565zM111.304 467.174h801.391v311.652c0 74.291-59.275 133.565-133.565 133.565h-534.261c-74.293 0-133.565-59.274-133.565-133.565z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["calendar"],"grid":0},"attrs":[{}],"properties":{"order":872,"id":5,"name":"calendar","prevSize":32,"code":59653},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M513.6 9.6c-278.823 0-505.76 226.818-505.76 505.6 0 278.783 226.937 505.68 505.76 505.68s505.76-226.897 505.76-505.68c0-278.782-226.936-505.6-505.76-505.6zM513.6 91.52c234.56 0 423.84 189.179 423.84 423.68 0 234.502-189.28 423.76-423.84 423.76s-423.84-189.258-423.84-423.76c0-234.501 189.281-423.68 423.84-423.68zM513.6 195.44c-22.622 0-40.96 18.338-40.96 40.96v0 286.8c0.006 35.499 14.097 69.549 39.2 94.64l112.24 112.16c7.412 7.41 17.651 11.994 28.96 11.994s21.548-4.583 28.96-11.994l-0 0c7.41-7.412 11.994-17.651 11.994-28.96s-4.583-21.548-11.994-28.96l-112.24-112.16c-9.744-9.739-15.177-22.948-15.2-36.72v-286.8c0-22.622-18.338-40.96-40.96-40.96v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["clock"],"grid":0},"attrs":[{}],"properties":{"order":873,"id":6,"name":"clock","prevSize":32,"code":59654},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M512 11.238c-0.013-0-0.028-0-0.043-0-69.143 0-125.195 56.052-125.195 125.195 0 0.015 0 0.031 0 0.046l-0-0.002c0.030 69.121 56.070 125.143 125.195 125.143 0.015 0 0.030-0 0.046-0l-0.002 0c0.013 0 0.028 0 0.043 0 69.125 0 125.165-56.022 125.195-125.14l0-0.003c0-0.013 0-0.028 0-0.043 0-69.143-56.052-125.195-125.195-125.195-0.015 0-0.031 0-0.046 0l0.003-0zM512 386.857c-0.013-0-0.028-0-0.043-0-69.143 0-125.195 56.052-125.195 125.195 0 0.015 0 0.031 0 0.046l-0-0.003c0.030 69.121 56.070 125.143 125.195 125.143 0.015 0 0.030-0 0.046-0l-0.002 0c0.013 0 0.028 0 0.043 0 69.125 0 125.165-56.022 125.195-125.14l0-0.003c0-0.013 0-0.028 0-0.043 0-69.143-56.052-125.195-125.195-125.195-0.015 0-0.031 0-0.046 0l0.003-0zM512 762.381c-0.013-0-0.028-0-0.043-0-69.143 0-125.195 56.052-125.195 125.195 0 0.015 0 0.031 0 0.046l-0-0.003c0.030 69.121 56.070 125.143 125.195 125.143 0.015 0 0.030-0 0.046-0l-0.002 0c0.013 0 0.028 0 0.043 0 69.125 0 125.165-56.022 125.195-125.14l0-0.003c0-0.013 0-0.028 0-0.043 0-69.143-56.052-125.195-125.195-125.195-0.015 0-0.031 0-0.046 0l0.003-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["dots"],"grid":0},"attrs":[{}],"properties":{"order":874,"id":7,"name":"dots","prevSize":32,"code":59655},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M900.222 12c-32.821 0-64.267 13.017-87.481 36.222l-469.556 469.556v174.963h175.037l469.556-469.481c23.207-23.213 36.222-54.659 36.222-87.481s-13.015-64.343-36.222-87.556c-23.211-23.206-54.731-36.222-87.556-36.222zM157.556 135.778c-32.829 0-64.342 13.009-87.556 36.222s-36.222 54.726-36.222 87.556v618.889c0 32.829 13.009 64.345 36.222 87.556 23.214 23.214 54.726 36.222 87.556 36.222h618.889c32.829 0 64.341-13.008 87.556-36.222 23.214-23.211 36.222-54.727 36.222-87.556v-247.556c0-16.414-6.543-32.172-18.148-43.778-11.609-11.605-27.289-18.074-43.704-18.074s-32.169 6.469-43.778 18.074c-11.605 11.605-18.148 27.363-18.148 43.778v247.556h-618.889v-618.889h247.556c16.414 0 32.172-6.541 43.778-18.148 11.609-11.607 18.074-27.289 18.074-43.704s-6.465-32.171-18.074-43.778c-11.605-11.607-27.363-18.148-43.778-18.148h-247.556z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["edit"],"grid":0},"attrs":[{}],"properties":{"order":875,"id":8,"name":"edit","prevSize":32,"code":59656},"setIdx":0,"setId":0,"iconIdx":8},{"icon":{"paths":["M294.306 341.559h91.988c0-5.84-0.041-10.531 0-15.222 0.387-39.56-1.095-79.269 1.65-118.679 0.72-27.3 7.26-54.101 19.158-78.495s28.86-45.781 49.677-62.642c32.235-24.686 71.36-37.912 111.5-37.692 50.861-1.276 101.776-0.188 152.666-0.086 1.722 0 3.44 0.332 5.728 0.566v165.41c-16.966 0-33.686 0-50.41 0-17.923 0-35.862-0.264-53.76 0.106-4.97-0.57-10.005-0.068-14.779 1.476s-9.183 4.095-12.951 7.492c-3.768 3.396-6.812 7.562-8.936 12.236s-3.284 9.753-3.406 14.914c-1.908 36.395-0.506 72.969-0.506 110.534h147.785l-16.979 170.95h-131.198v483.331h-194.965v-482.982h-92.245z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["facebook"],"grid":0},"attrs":[{}],"properties":{"order":876,"id":9,"name":"facebook","prevSize":32,"code":59657},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M256.264 110.437c-5.82-0.144-11.648 0.069-17.472 0.642-23.295 2.289-45.665 10.282-65.132 23.283s-35.413 30.604-46.453 51.245c-5.954 11.132-6.243 23.978-9.057 36.189-12.223 2.803-25.082 3.070-36.226 9.019-20.656 11.025-38.303 26.992-51.321 46.453s-21.017 41.833-23.321 65.132c-2.304 23.3 1.16 46.819 10.113 68.453s23.113 40.728 41.208 55.585c18.098 14.859 39.604 25.016 62.566 29.585s46.686 3.404 69.094-3.396c9.505-2.883 16.531-10.342 25.17-15.094l99.547 99.509h-165.962c-0.003-0-0.007-0-0.011-0-8.748 0-16.816 2.906-23.293 7.806l0.097-0.070c-80.664 60.512-119.17 161.843-119.17 290.189 0.002 21.34 17.301 38.639 38.641 38.642l933.434 0c21.333-0.013 38.622-17.31 38.622-38.645 0-1.408-0.075-2.798-0.222-4.166l0.015 0.17c-8.592-82.036-5.396-190.086-117.17-284.755-6.688-5.699-15.429-9.167-24.98-9.17l-165.925-0 99.509-99.472c8.634 4.748 15.672 12.175 25.17 15.057 22.409 6.8 46.133 7.965 69.094 3.396 22.963-4.569 44.468-14.725 62.566-29.585 18.097-14.857 32.254-33.949 41.208-55.585 8.955-21.635 12.418-45.152 10.113-68.453-2.304-23.299-10.303-45.67-23.321-65.132s-30.628-35.428-51.283-46.453c-11.159-5.956-24.025-6.254-36.264-9.057-2.814-12.198-3.11-25.031-9.057-36.151-11.040-20.643-26.99-38.246-46.453-51.245-19.467-13-41.837-20.994-65.132-23.283s-46.79 1.188-68.415 10.151c-21.625 8.963-40.739 23.111-55.585 41.208-14.844 18.097-24.984 39.609-29.547 62.566-4.561 22.957-3.403 46.695 3.396 69.094 2.881 9.492 10.348 16.502 15.094 25.132l-138.151 138.113-138.151-138.113c4.745-8.625 12.213-15.643 15.094-25.132v-0.039c6.79-22.387 7.954-46.111 3.396-69.056-4.563-22.957-14.703-44.469-29.547-62.566-14.846-18.096-33.922-32.245-55.547-41.208-16.218-6.722-33.521-10.36-50.981-10.792zM254.377 187.682c7.969 0.198 15.832 1.871 23.245 4.943 9.887 4.097 18.607 10.555 25.396 18.83 6.787 8.274 11.423 18.105 13.509 28.604 2.086 10.498 1.561 21.345-1.547 31.585-3.106 10.237-8.695 19.526-16.264 27.094-7.001 6.995-11.332 16.661-11.332 27.34s4.331 20.345 11.332 27.339l158.642 158.566-49.057 49.057-158.679-158.642c-6.993-6.99-16.652-11.313-27.32-11.313-10.688 0-20.362 4.339-27.358 11.351l-0.001 0.001c-7.571 7.57-16.852 13.119-27.094 16.226-0.005 0.005-0.017 0.018-0.030 0.030l-0.008 0.008c-10.241 3.106-21.084 3.636-31.585 1.546s-20.294-6.755-28.566-13.547c-8.275-6.794-14.737-15.506-18.83-25.396-4.094-9.894-5.695-20.629-4.642-31.283 1.053-10.651 4.728-20.876 10.679-29.774s13.991-16.205 23.434-21.245c9.444-5.040 19.975-7.668 30.679-7.66 0.010 0 0.022 0 0.034 0 21.342 0 38.643-17.3 38.645-38.641l0-0c0.003-10.702 2.651-21.205 7.698-30.641s12.345-17.491 21.245-23.434c8.898-5.942 19.123-9.595 29.774-10.642 2.663-0.262 5.344-0.368 8-0.302zM769.66 187.682c2.66-0.066 5.338 0.040 8 0.302 10.651 1.047 20.874 4.698 29.774 10.642s16.161 13.999 21.208 23.434c5.048 9.439 7.696 19.943 7.698 30.641 0.002 21.342 17.303 38.642 38.645 38.642 0.012 0 0.024-0 0.036-0l-0.002 0c10.706-0.008 21.238 2.621 30.679 7.66 9.443 5.040 17.521 12.349 23.472 21.245s9.588 19.122 10.642 29.774c1.054 10.653-0.509 21.39-4.604 31.283-4.092 9.888-10.592 18.602-18.868 25.396-8.271 6.791-18.065 11.458-28.566 13.547-10.499 2.089-21.342 1.523-31.585-1.585-10.242-3.107-19.561-8.654-27.132-16.226-6.995-7.002-16.662-11.333-27.34-11.333-10.659 0-20.31 4.315-27.302 11.295l0.001-0.001-174.717 174.642h-98.113l223.698-223.623c7.001-6.995 11.332-16.661 11.332-27.34s-4.331-20.345-11.332-27.339l-0-0c-7.569-7.565-13.155-16.851-16.264-27.093-3.108-10.24-3.633-21.087-1.547-31.585 2.087-10.499 6.722-20.33 13.509-28.604 6.789-8.276 15.51-14.733 25.396-18.83 7.413-3.073 15.304-4.745 23.283-4.943zM164.415 654.324h693.887c65.039 59.733 71.887 116.521 76.868 182h-848.415c6.253-85.205 32.457-143.973 77.66-182z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["food"],"grid":0},"attrs":[{}],"properties":{"order":877,"id":10,"name":"food","prevSize":32,"code":59658},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M987.6 172.715c-42.488-90.069-164.876-163.762-307.243-120.856-68.029 20.298-127.382 63.827-168.365 123.477-40.98-59.649-100.332-103.179-168.363-123.477-142.682-42.251-264.754 30.787-307.242 120.856-59.609 126.097-34.878 267.914 73.561 421.522 84.975 120.202 206.413 242.042 382.706 383.531 5.569 4.49 12.434 6.928 19.499 6.928s13.926-2.438 19.499-6.928c175.974-141.162 297.728-262.018 382.704-383.531 108.123-153.608 132.852-295.426 73.244-421.522z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["heart"],"grid":0},"attrs":[{}],"properties":{"order":878,"id":11,"name":"heart","prevSize":32,"code":59659},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M336.458 14.644c-18.158-0.010-35.883 5.588-50.712 16.068s-26.014 25.321-32.068 42.441h-92.746c-23.278 0-45.608 9.235-62.068 25.695s-25.729 38.79-25.729 62.068v702.169c0 23.278 9.269 45.575 25.729 62.034 16.46 16.46 38.79 25.729 62.068 25.729h224.508c-8.805-18.503-14.752-38.225-17.661-58.508h-206.847c-7.759 0-15.225-3.090-20.712-8.576s-8.542-12.92-8.542-20.678v-702.169c0-7.759 3.056-15.191 8.542-20.678s12.952-8.576 20.712-8.576h92.746c6.054 17.12 17.239 31.927 32.068 42.407s32.554 16.11 50.712 16.102h175.559c18.158 0.009 35.849-5.622 50.678-16.102s26.048-25.287 32.102-42.407h92.746c7.76 0 15.19 3.090 20.678 8.576 5.486 5.487 8.576 12.918 8.576 20.678v321.831h58.508v-321.831c0-23.278-9.235-45.608-25.695-62.068s-38.79-25.695-62.068-25.695h-92.746c-6.054-17.12-17.273-31.961-32.102-42.441s-32.52-16.077-50.678-16.068zM336.458 73.153h175.559c7.758 0 15.192 3.056 20.678 8.542 5.488 5.487 8.576 12.953 8.576 20.712s-3.088 15.191-8.576 20.678c-5.486 5.487-12.92 8.576-20.678 8.576h-175.559c-7.76 0-15.19-3.090-20.678-8.576-5.486-5.487-8.576-12.918-8.576-20.678s3.090-15.225 8.576-20.712c5.488-5.487 12.918-8.542 20.678-8.542zM541.271 541.254c-31.038 0-60.799 12.323-82.746 34.271-21.947 21.947-34.305 51.708-34.305 82.746v234.068c0 31.038 12.359 60.799 34.305 82.746s51.708 34.271 82.746 34.271h292.542c31.038 0 60.833-12.325 82.78-34.271s34.271-51.708 34.271-82.746v-234.068c0-31.038-12.325-60.799-34.271-82.746-21.947-21.948-51.742-34.271-82.78-34.271zM570.525 658.271h234.034c7.758 0 15.226 3.090 20.712 8.576 5.488 5.488 8.542 12.918 8.542 20.678s-3.054 15.224-8.542 20.712c-5.486 5.486-12.954 8.542-20.712 8.542h-234.034c-7.758 0-15.226-3.056-20.712-8.542-5.486-5.488-8.542-12.952-8.542-20.712s3.056-15.19 8.542-20.678c5.486-5.486 12.954-8.576 20.712-8.576zM570.525 833.831h234.034c7.758 0 15.226 3.056 20.712 8.542 5.488 5.486 8.542 12.952 8.542 20.712 0 7.758-3.054 15.192-8.542 20.678-5.486 5.486-12.954 8.576-20.712 8.576h-234.034c-7.758 0-15.226-3.090-20.712-8.576s-8.542-12.92-8.542-20.678c0-7.76 3.056-15.226 8.542-20.712s12.954-8.542 20.712-8.542z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["list"],"grid":0},"attrs":[{}],"properties":{"order":879,"id":12,"name":"list","prevSize":32,"code":59660},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M134.857 134.857c-33.341 0-65.317 13.245-88.893 36.821s-36.821 55.551-36.821 88.893v502.857c0 33.342 13.245 65.317 36.821 88.893s55.551 36.821 88.893 36.821h754.286c33.34 0 65.317-13.246 88.893-36.821s36.821-55.551 36.821-88.893v-502.857c0-33.341-13.246-65.317-36.821-88.893s-55.553-36.821-88.893-36.821zM134.857 197.714h754.286c16.669 0 32.642 6.605 44.429 18.393 11.789 11.788 18.429 27.794 18.429 44.464v502.857c0 16.671-6.64 32.675-18.429 44.464-11.787 11.789-27.759 18.393-44.429 18.393h-754.286c-16.671 0-32.676-6.604-44.464-18.393s-18.393-27.793-18.393-44.464v-502.857c0-16.671 6.605-32.676 18.393-44.464s27.794-18.393 44.464-18.393zM166.286 323.429c-8.335 0-16.32 3.321-22.214 9.214-5.894 5.895-9.214 13.878-9.214 22.214v62.857c0 8.335 3.32 16.321 9.214 22.214s13.879 9.214 22.214 9.214h125.714c8.336 0 16.321-3.321 22.214-9.214 5.895-5.893 9.214-13.88 9.214-22.214v-62.857c0-8.336-3.319-16.319-9.214-22.214-5.893-5.893-13.878-9.214-22.214-9.214zM166.286 512c-8.335 0-16.32 3.321-22.214 9.214-5.894 5.895-9.214 13.878-9.214 22.214 0 8.335 3.32 16.321 9.214 22.214s13.879 9.214 22.214 9.214h314.286c8.336 0 16.319-3.321 22.214-9.214 5.893-5.893 9.214-13.88 9.214-22.214 0-8.336-3.321-16.319-9.214-22.214-5.895-5.893-13.878-9.214-22.214-9.214zM166.286 637.714c-8.335 0-16.32 3.321-22.214 9.214-5.894 5.895-9.214 13.878-9.214 22.214 0 8.335 3.32 16.321 9.214 22.214s13.879 9.214 22.214 9.214h62.857c8.336 0 16.321-3.321 22.214-9.214 5.895-5.893 9.214-13.88 9.214-22.214 0-8.336-3.319-16.319-9.214-22.214-5.893-5.893-13.878-9.214-22.214-9.214zM354.857 637.714c-8.335 0-16.321 3.321-22.214 9.214-5.895 5.895-9.214 13.878-9.214 22.214 0 8.335 3.319 16.321 9.214 22.214 5.893 5.893 13.88 9.214 22.214 9.214h62.857c8.336 0 16.321-3.321 22.214-9.214 5.895-5.893 9.214-13.88 9.214-22.214 0-8.336-3.319-16.319-9.214-22.214-5.893-5.893-13.878-9.214-22.214-9.214zM543.429 637.714c-8.335 0-16.321 3.321-22.214 9.214-5.895 5.895-9.214 13.878-9.214 22.214 0 8.335 3.319 16.321 9.214 22.214 5.893 5.893 13.88 9.214 22.214 9.214h62.857c8.336 0 16.319-3.321 22.214-9.214 5.893-5.893 9.214-13.88 9.214-22.214 0-8.336-3.321-16.319-9.214-22.214-5.895-5.893-13.878-9.214-22.214-9.214zM732 637.714c-8.335 0-16.321 3.321-22.214 9.214-5.895 5.895-9.214 13.878-9.214 22.214 0 8.335 3.319 16.321 9.214 22.214 5.893 5.893 13.88 9.214 22.214 9.214h62.857c8.336 0 16.319-3.321 22.214-9.214 5.893-5.893 9.214-13.88 9.214-22.214 0-8.336-3.321-16.319-9.214-22.214-5.895-5.893-13.878-9.214-22.214-9.214z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["medal"],"grid":0},"attrs":[{}],"properties":{"order":892,"id":13,"name":"medal","prevSize":32,"code":59661},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M194.613 853.803h634.775c80.568 0 146.487-65.922 146.487-146.49v-537.116c0-80.568-65.918-146.487-146.487-146.487h-634.775c-80.568 0-146.487 65.919-146.487 146.487v830.093zM585.255 438.759c0 40.451-32.795 73.243-73.243 73.243-40.451 0-73.247-32.792-73.247-73.243s32.795-73.243 73.247-73.243c40.448 0 73.243 32.792 73.243 73.243zM756.147 512.002c-40.451 0-73.243-32.792-73.243-73.243s32.792-73.243 73.243-73.243c40.451 0 73.243 32.792 73.243 73.243s-32.792 73.243-73.243 73.243zM341.104 438.759c0 40.451-32.792 73.243-73.243 73.243s-73.243-32.792-73.243-73.243c0-40.451 32.792-73.243 73.243-73.243s73.243 32.792 73.243 73.243z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["message"],"grid":0},"attrs":[{}],"properties":{"order":891,"id":14,"name":"message","prevSize":32,"code":59662},"setIdx":0,"setId":0,"iconIdx":14},{"icon":{"paths":["M974.612 512v0.001c0 40.017-32.44 72.457-72.457 72.457l-780.311 0c-40.017 0-72.457-32.44-72.457-72.457v-0.001c-0-40.017 32.44-72.457 72.457-72.457l780.311-0c40.017 0 72.457 32.44 72.457 72.457z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["minus"],"grid":0},"attrs":[{}],"properties":{"order":890,"id":15,"name":"minus","prevSize":32,"code":59663},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M512 49.333c-40.141 0-72.444 32.415-72.444 72.556v317.667h-317.667c-40.141 0-72.556 32.304-72.556 72.444s32.415 72.444 72.556 72.444h317.667v317.667c0 40.141 32.304 72.556 72.444 72.556s72.444-32.415 72.444-72.556v-317.667h317.667c40.141 0 72.556-32.304 72.556-72.444s-32.415-72.444-72.556-72.444h-317.667v-317.667c0-40.141-32.304-72.556-72.444-72.556z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["plus"],"grid":0},"attrs":[{}],"properties":{"order":889,"id":16,"name":"plus","prevSize":32,"code":59664},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M123.769 37.615c-22.275 0-44.543 8.466-61.538 25.462-33.991 33.991-33.991 89.086 0 123.077l327.231 327.231-327.077 327.077c-33.991 33.993-33.991 89.165 0 123.154 33.991 33.993 89.086 33.993 123.077 0l327.077-327.077 326.923 326.923c33.993 33.993 89.165 33.993 123.154 0 33.993-33.989 33.993-89.084 0-123.077l-327-327 327.077-327.077c33.989-33.991 33.989-89.086 0-123.077-33.993-33.991-89.088-33.991-123.077 0l-327.077 327.077-327.231-327.231c-16.995-16.996-39.263-25.462-61.538-25.462z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["close"],"grid":0},"attrs":[{}],"properties":{"order":888,"id":17,"name":"close","prevSize":32,"code":59672},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M521.348 12.973c-15.966-0.3-32.034 0.171-48.091 1.455-128.454 10.267-247.568 70.907-331.455 168.727-77.608 89.036-119.61 203.63-117.818 321.727 0.357 76.083 18.647 151.027 53.364 218.727 4.247 9.449 5.281 20.009 2.909 30.091-15.686 62.552-32.823 124.783-49.091 187.182-3.106 9.588-4.409 19.659-3.909 29.727 0.805 6.8 3.070 13.296 6.727 19.091 3.657 5.79 8.568 10.714 14.364 14.364 5.795 3.654 12.379 5.931 19.182 6.727 6.803 0.801 13.699 0.121 20.182-2.091 71.127-18.697 141.992-38.363 213.182-56.818 9.080-2.183 18.59-1.648 27.364 1.545 58.521 23.515 121.115 35.272 184.182 34.727 10.664 0.019 21.246 0.023 31.909 0 1.597-0.005 3.227-0.126 4.818-0.275 65.136-4.603 128.617-22.407 186.636-52.364 58.019-29.961 109.351-71.468 150.818-121.909 82.618-98.895 122.733-226.433 111.636-354.818s-72.458-247.11-170.818-330.364c-86.065-72.847-194.326-113.353-306.091-115.455zM518.257 95.7c91.264 1.343 179.55 33.507 250.455 91.545 42.934 34.53 78.255 77.551 103.636 126.455 25.377 48.903 40.299 102.56 43.818 157.545 7.494 103.48-25.026 205.961-90.818 286.182-65.797 80.221-159.874 132.102-262.818 145-76.097 9.421-153.292-2.674-222.909-34.818-11.085-4.566-23.327-5.464-35-2.727-52.757 13.019-105.058 27.86-157.545 42-6.006 1.62-12.171 2.787-22.182 5.091 12.094-45.675 21.182-87.944 34.727-128.727 6.086-16.924 8.429-34.989 6.818-52.909-1.61-17.916-7.175-35.249-16.182-50.818-39.387-77.987-52.141-166.689-36.455-252.636s58.968-164.413 123.364-223.455c71.73-66.394 165.030-104.663 262.727-107.636 6.106-0.186 12.279-0.181 18.364-0.091zM511.802 253.609c-37.792 0.242-74.963 10.493-107.545 29.818-16.937 10.77-31.438 24.889-42.636 41.545s-18.781 35.433-22.364 55.182c-2.459 12.47 0.956 17.84 13.364 19.091 17.475 1.733 34.91 3.821 52.273 6.455 12.514 1.89 18.84-1.776 23.182-14.727 5.795-22.588 20.28-41.998 40.273-54 19.991-12.003 43.887-15.687 66.545-10.182 13.452 1.114 26.25 6.309 36.727 14.818 10.473 8.509 18.151 19.973 22 32.909 3.724 12.68 3.284 26.229-1.273 38.636-4.552 12.408-13.050 23.013-24.091 30.273-15.802 12.67-31.134 25.86-46.545 39-15.197 10.994-27.847 25.131-37.091 41.455-9.239 16.323-14.847 34.403-16.455 53.091-2.046 54.146-5.708 42.375 39.727 43.818h1.545c7.461-0.363 14.907-0.344 22.364 0.093 14.187 1.508 20.987-3.995 20.364-18.545 0.261-14.438 4.067-28.563 11.091-41.182 7.024-12.614 17.047-23.267 29.182-31.091 19.144-16.086 38.056-32.693 55.636-50.455 13.577-12.381 24.188-27.719 30.909-44.818s9.422-35.508 7.909-53.818c-1.508-18.311-7.202-36.051-16.636-51.818-9.43-15.766-22.398-29.102-37.818-39.091-33.499-22.597-72.703-35.281-113.091-36.455-2.525-0.074-5.026-0.016-7.545 0zM505.347 652.973c-37.804 0.163-37.818 2.856-37.818 46 0.019 11.683 0.34 23.422 0 35.091-0.284 9.155 2.999 13.916 12.727 13.818 22.319-0.209 44.691-0.191 67 0 9.356 0.079 13.403-3.827 13.273-13.364-0.344-22.854-0.344-45.706 0-68.545 0.163-9.868-4.565-13.172-13.636-13-11.152 0.228-22.293 0-33.455 0-2.868-0-5.571-0.011-8.091 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["question"],"grid":0},"attrs":[{}],"properties":{"order":887,"id":18,"name":"question","prevSize":32,"code":59665},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M260.393 8.77c-26.693 0-52.305 10.633-71.18 29.508s-29.475 44.455-29.475 71.148v704.525c0 26.693 10.601 52.305 29.475 71.18 18.875 18.873 44.487 29.475 71.18 29.475h276.754v-50.328h-276.754c-13.346 0-26.169-5.317-35.607-14.754s-14.721-22.228-14.721-35.574v-704.525c0-13.346 5.284-26.137 14.721-35.574s22.26-14.754 35.607-14.754h503.213c13.346 0 26.169 5.317 35.607 14.754s14.721 22.227 14.721 35.574v704.525c0 13.346-5.284 26.136-14.721 35.574s-22.261 14.754-35.607 14.754h-75.475v-75.508h-50.328v145.049l-25.148-12.59-25.18 12.59v-145.049h-50.295v226.459l75.475-37.738 75.475 37.738v-100.623h75.475c26.693 0 52.305-10.602 71.18-29.475 18.873-18.875 29.475-44.488 29.475-71.18v-704.525c0-26.693-10.602-52.273-29.475-71.148-18.875-18.875-44.487-29.508-71.18-29.508z","M361.031 184.915c0 6.673 2.651 13.074 7.369 17.792s11.12 7.369 17.792 7.369h251.615c6.673 0 13.074-2.651 17.791-7.369 4.719-4.719 7.371-11.12 7.371-17.792s-2.652-13.073-7.371-17.792c-4.717-4.719-11.118-7.37-17.791-7.37h-251.615c-6.673 0-13.074 2.651-17.792 7.37s-7.369 11.119-7.369 17.792zM260.385 335.885c0 6.673 2.651 13.074 7.37 17.792 4.719 4.717 11.119 7.369 17.792 7.369h452.907c6.673 0 13.074-2.652 17.792-7.369 4.719-4.719 7.369-11.12 7.369-17.792s-2.651-13.074-7.369-17.792c-4.719-4.719-11.12-7.369-17.792-7.369h-452.907c-6.673 0-13.073 2.651-17.792 7.369s-7.37 11.12-7.37 17.792zM260.385 436.531c0 6.673 2.651 13.074 7.37 17.792s11.119 7.369 17.792 7.369h452.907c6.673 0 13.074-2.651 17.792-7.369s7.369-11.12 7.369-17.792c0-6.673-2.651-13.074-7.369-17.792s-11.12-7.369-17.792-7.369h-452.907c-6.673 0-13.073 2.651-17.792 7.369s-7.37 11.12-7.37 17.792zM260.385 537.177c0 6.673 2.651 13.074 7.37 17.792s11.119 7.369 17.792 7.369h452.907c6.673 0 13.074-2.651 17.792-7.369s7.369-11.12 7.369-17.792c0-6.673-2.651-13.074-7.369-17.792-4.719-4.717-11.12-7.369-17.792-7.369h-452.907c-6.673 0-13.073 2.652-17.792 7.369-4.719 4.719-7.37 11.12-7.37 17.792zM612.646 788.792c-13.347 0-26.146-5.301-35.583-14.739s-14.741-22.238-14.741-35.585c0-13.346 5.303-26.146 14.741-35.583s22.236-14.739 35.583-14.739c13.347 0 26.146 5.301 35.583 14.739s14.741 22.238 14.741 35.583c0 13.347-5.303 26.147-14.741 35.585s-22.236 14.739-35.583 14.739zM612.646 839.116c26.693 0 52.293-10.604 71.168-29.479 18.873-18.875 29.478-44.473 29.478-71.168 0-26.693-10.604-52.291-29.478-71.166-18.875-18.875-44.475-29.479-71.168-29.479s-52.293 10.604-71.168 29.479c-18.873 18.875-29.478 44.473-29.478 71.166 0 26.695 10.604 52.293 29.478 71.168 18.875 18.875 44.475 29.479 71.168 29.479z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["rules"],"grid":0},"attrs":[{},{}],"properties":{"order":886,"id":19,"name":"rules","prevSize":32,"code":59666},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M1006.463 507.488c0 275.096-223.040 498.136-498.136 498.136-275.094 0-498.133-223.040-498.133-498.136 0-275.093 223.040-498.133 498.133-498.133 275.096 0 498.136 223.040 498.136 498.133zM526.177 377.103c-48.442 20.133-145.289 61.853-290.495 125.113-23.578 9.384-35.949 18.558-37.069 27.522-1.909 15.195 17.103 21.17 42.923 29.267 3.529 1.12 7.181 2.24 10.917 3.485 25.446 8.261 59.651 17.933 77.418 18.306 16.148 0.334 34.164-6.309 54.046-19.925 135.66-91.615 205.689-137.9 210.088-138.894 3.115-0.707 7.432-1.619 10.336 0.994 2.907 2.573 2.616 7.472 2.325 8.8-1.909 8.014-76.38 77.295-114.985 113.162-12.037 11.165-20.549 19.093-22.29 20.919-3.904 4.027-7.888 7.888-11.707 11.584-23.661 22.746-41.346 39.85 0.994 67.746 20.341 13.408 36.613 24.49 52.845 35.533 17.725 12.080 35.411 24.117 58.322 39.143 5.814 3.822 11.376 7.763 16.813 11.624 20.632 14.736 39.186 27.939 62.101 25.861 13.282-1.245 27.067-13.738 34.040-51.058 16.48-88.252 48.941-279.37 56.455-358.159 0.456-6.54 0.178-13.114-0.832-19.592-0.601-5.233-3.151-10.049-7.138-13.491-5.936-4.857-15.152-5.895-19.304-5.811-18.719 0.332-47.448 10.336-185.803 67.871z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["telegram"],"grid":0},"attrs":[{}],"properties":{"order":885,"id":20,"name":"telegram","prevSize":32,"code":59667},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M512 11.412c-96.117-0-188.35 38.193-256.314 106.157s-106.157 160.199-106.157 256.314c-0.032 58.434 14.089 116.007 41.137 167.804 24.197 46.337 59.288 85.543 100.51 117.451l22.314 105.216-0.392-2.314c4.744 31.261 20.529 59.852 44.51 80.471 23.975 20.615 54.572 31.955 86.196 31.961h136.392c31.624-0.006 62.221-11.346 86.196-31.961 23.979-20.618 39.768-49.204 44.51-80.471l-0.392 2.275 22.314-105.647c41.208-31.811 76.27-70.922 100.471-117.176 27.064-51.732 41.21-109.262 41.176-167.647-0.010-96.1-38.202-188.32-106.157-256.275-67.964-67.964-160.199-106.157-256.314-106.157zM512 91.725c74.845-0 146.605 29.703 199.529 82.627s82.627 124.684 82.627 199.529c0.026 45.405-10.953 90.161-32 130.392-21.049 40.231-51.546 74.72-88.863 100.588-1.164 1.484-2.28 3.15-3.268 4.898l-0.104 0.2h-316.157c-1.001-1.745-1.999-3.231-3.089-4.642l0.069 0.093c-37.344-25.97-67.848-60.583-88.902-100.902s-32.030-85.141-32-130.627c0-74.845 29.743-146.605 82.667-199.529s124.643-82.628 199.49-82.627zM379.882 690.275h264.196l-12.157 57.451c-0.114 0.504-0.251 1.276-0.366 2.056l-0.026 0.218c-1.864 12.288-8.067 23.505-17.49 31.608-9.427 8.106-21.415 12.547-33.843 12.549h-136.392c-12.428-0.002-24.416-4.443-33.843-12.549-9.422-8.101-15.625-19.315-17.49-31.608-0.14-1.009-0.277-1.795-0.437-2.573l0.045 0.259-12.196-57.412zM414.392 930.706c-21.634 0-39.059 17.425-39.059 39.059s17.425 39.059 39.059 39.059h188.745c21.634 0 39.020-17.425 39.020-39.059s-17.385-39.059-39.020-39.059h-188.745z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["tricks"],"grid":0},"attrs":[{}],"properties":{"order":884,"id":21,"name":"tricks","prevSize":32,"code":59668},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M18.705 834.14c79.041 9.093 158.934-5.891 229.814-43.1 23.142-12.008 45.024-26.436 65.305-43.056-11.089-1.399-21.306-2.127-31.291-4.103-10.162-1.959-20.173-4.666-29.96-8.1-9.772-3.492-19.268-7.759-28.4-12.762-9.119-5.028-17.852-10.762-26.122-17.162-16.577-12.803-31.173-28.126-43.29-45.449-5.951-8.721-11.364-17.821-16.206-27.245-5.176-9.551-9.185-19.729-11.937-30.297 14.74 2.403 29.652 3.495 44.573 3.26 14.743-0.556 29.372-2.901 43.582-6.991-30.846-7.11-59.67-21.507-84.209-42.056s-44.122-46.688-57.208-76.363c-12.801-27.416-18.569-57.76-16.753-88.133 26.847 15.194 56.807 23.597 87.417 24.515-27.455-19.846-49.76-46.35-64.952-77.178s-22.809-65.034-22.175-99.61c0.541-35.261 10.072-69.754 27.635-100.011 1.333 1.482 2.695 2.843 3.892 4.347 68.705 85.178 159.143 148.83 261.087 183.759 35.072 12.050 71.226 20.445 107.919 25.059 12.052 1.485 24.153 2.548 36.239 3.73 2.055 0.201 4.147 0.028 6.786 0.028-0.352-2.444-0.505-4.258-0.884-6.024-2.782-13.605-4.123-27.482-3.997-41.385 0.072-35.879 9.11-71.134 26.238-102.362s41.769-57.378 71.547-75.925c29.775-18.547 63.683-28.867 98.454-29.963 34.768-1.096 69.222 7.068 100.041 23.705 18.316 9.672 34.966 22.38 49.289 37.618 1.222 1.53 2.857 2.65 4.7 3.219 1.84 0.568 3.806 0.559 5.642-0.026 40.356-8.999 79.165-24.235 115.111-45.19 1.799-1.048 3.639-2.021 5.728-3.181-6.287 23.523-17.237 45.446-32.154 64.384-14.473 18.922-31.98 35.144-51.767 47.961l0.208 1.072c1.321 0.088 2.645 0.080 3.966-0.024 34.024-4.911 67.314-14.199 99.099-27.646 1.973-0.841 3.949-1.675 5.932-2.475 0.437-0.082 0.877-0.108 1.318-0.076 0.061 2.048-1.355 3.329-2.29 4.718-25.334 37.644-56.46 70.767-92.143 98.066-1.475 0.89-2.662 2.205-3.42 3.783s-1.051 3.352-0.843 5.101c0.468 5.562 0.71 11.162 0.696 16.744 0.003 46.278-5.144 92.404-15.34 137.471-11.974 52.688-30.522 103.55-55.177 151.316-19.732 38.335-43.401 74.377-70.595 107.503-34.676 42.411-75.196 79.353-120.262 109.64-47.442 31.829-99.43 55.784-154.071 70.991-28.846 8.083-58.255 13.858-87.962 17.275-19.227 2.464-38.591 3.611-57.963 3.437-8.863-0.188-17.734-0.143-26.597 0-25.781 0.061-51.52-2.133-76.941-6.56-44.991-7.212-88.969-20.026-130.97-38.158-28.795-12.428-56.577-27.211-83.083-44.213-1.213-0.778-2.322-1.724-3.465-2.591l0.205-1.287z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["twitter"],"grid":0},"attrs":[{}],"properties":{"order":883,"id":22,"name":"twitter","prevSize":32,"code":59669},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M1000.434 233.612l-209.608-209.609c-9.845-9.844-23.197-15.375-37.119-15.375s-27.274 5.531-37.119 15.375c-9.845 9.844-15.374 23.196-15.374 37.118s5.53 27.274 15.374 37.118l67.686 67.686-100.438 100.438-137.557-137.556c-4.875-4.874-10.662-8.741-17.029-11.379-6.37-2.638-13.195-3.996-20.089-3.996s-13.719 1.358-20.087 3.996c-6.37 2.638-12.157 6.505-17.032 11.379-9.842 9.844-15.374 23.196-15.374 37.118s5.532 27.274 15.374 37.118l15.284 15.284-354.152 354.59c-8.18 8.028-14.673 17.61-19.097 28.186-4.424 10.573-6.691 21.923-6.667 33.387v208.298l-89.521 89.521c-4.885 4.868-8.762 10.652-11.406 17.022s-4.006 13.198-4.006 20.097c0 6.897 1.361 13.724 4.006 20.094s6.521 12.155 11.406 17.022c9.889 9.761 23.224 15.234 37.118 15.234s27.23-5.472 37.118-15.234l89.521-89.519h208.299c11.462 0.024 22.814-2.243 33.387-6.668s20.156-10.919 28.186-19.096l354.59-354.154 15.284 15.284c9.888 9.761 23.223 15.234 37.119 15.234 13.893 0 27.229-5.472 37.116-15.234 4.887-4.868 8.764-10.652 11.407-17.022 2.646-6.37 4.008-13.2 4.008-20.097s-1.362-13.724-4.008-20.094c-2.643-6.37-6.52-12.155-11.407-17.022l-137.554-137.557 100.438-100.438 67.686 67.686c9.888 9.759 23.223 15.231 37.116 15.231 13.895 0 27.231-5.472 37.119-15.231 4.887-4.87 8.761-10.654 11.407-17.025 2.646-6.368 4.006-13.198 4.006-20.094s-1.36-13.726-4.006-20.097c-2.646-6.37-6.52-12.155-11.407-17.022zM382.524 812.223h-170.309v-170.308l61.136-61.138 76.421 76.421c9.888 9.761 23.223 15.234 37.116 15.234 13.895 0 27.231-5.472 37.119-15.234 4.887-4.868 8.761-10.654 11.407-17.022 2.646-6.37 4.006-13.2 4.006-20.097s-1.36-13.726-4.006-20.094c-2.646-6.37-6.52-12.155-11.407-17.025l-76.419-76.419 48.035-48.035 76.419 76.419c9.89 9.761 23.226 15.234 37.119 15.234 13.895 0 27.231-5.472 37.119-15.234 4.884-4.868 8.761-10.652 11.407-17.022 2.643-6.37 4.006-13.198 4.006-20.097 0-6.897-1.362-13.724-4.006-20.094-2.646-6.37-6.523-12.155-11.407-17.022l-76.419-76.421 91.703-91.705 170.308 170.308-349.348 349.351z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["vaccine"],"grid":0},"attrs":[{}],"properties":{"order":882,"id":23,"name":"vaccine","prevSize":32,"code":59670},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M740.151 611.308c-12.425-6.212-73.335-36.147-84.675-40.315-11.339-4.127-19.596-6.171-27.89 6.253-8.257 12.339-31.976 40.274-39.188 48.527-7.257 8.298-14.469 9.298-26.849 3.127-12.384-6.253-52.323-19.302-99.642-61.491-36.813-32.853-61.699-73.417-68.912-85.842-7.212-12.384-0.792-19.094 5.42-25.265 5.584-5.543 12.38-14.466 18.592-21.678 6.212-7.253 8.253-12.425 12.384-20.719 4.168-8.257 2.082-15.469-1.044-21.681-3.086-6.209-27.849-67.203-38.188-92.009-10.045-24.139-20.262-20.845-27.849-21.262-7.253-0.333-15.508-0.417-23.763-0.417s-21.679 3.085-33.019 15.509c-11.381 12.382-43.358 42.357-43.358 103.351 0 60.952 44.359 119.859 50.571 128.157 6.212 8.253 87.341 133.41 211.621 187.064 29.6 12.756 52.654 20.388 70.622 26.057 29.686 9.462 56.699 8.127 78.046 4.919 23.764-3.543 73.291-29.976 83.63-58.907 10.298-28.935 10.298-53.74 7.212-58.911-3.086-5.168-11.339-8.253-23.764-14.466zM514.103 919.941h-0.167c-73.813 0.014-146.275-19.828-209.784-57.45l-15.009-8.922-156.005 40.943 41.649-152.088-9.797-15.592c-41.268-65.69-63.107-141.715-62.994-219.293 0.084-227.212 184.939-412.067 412.276-412.067 110.063 0 213.538 42.941 291.335 120.819 38.369 38.213 68.782 83.655 89.477 133.696 20.695 50.043 31.263 103.694 31.089 157.846-0.082 227.212-184.938 412.109-412.068 412.109zM864.803 157.132c-45.933-46.238-100.588-82.9-160.795-107.861s-124.768-37.726-189.945-37.555c-273.239 0-495.699 222.418-495.782 495.782-0.042 87.385 22.763 172.681 66.163 247.849l-70.332 256.939 262.816-68.956c72.704 39.612 154.174 60.368 236.968 60.368h0.208c273.241 0 495.701-222.42 495.783-495.824 0.201-65.15-12.517-129.693-37.42-189.898-24.904-60.204-61.495-114.872-107.663-160.843z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["whatsapp"],"grid":0},"attrs":[{}],"properties":{"order":881,"id":24,"name":"whatsapp","prevSize":32,"code":59671},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M959.36 218.208c-3.072-50.24-44.384-90.112-95.36-90.112h-96v-32.064c0-53.024-43.008-96-96-96h-320c-53.024 0-96 42.976-96 96v32.032h-96c-51.040 0-92.32 39.872-95.392 90.112h-0.608v69.856c0 35.328 28.672 64 64 64v0 544c0 70.688 57.312 128 128 128h512c70.688 0 128-57.312 128-128v-544c35.328 0 64-28.672 64-64v-69.824h-0.64zM320 96.064c0-17.696 14.304-32 32-32h320c17.696 0 32 14.304 32 32v32h-384v-32zM832 896.064c0 35.264-28.736 64-64 64h-512c-35.296 0-64-28.736-64-64v-544h640v544zM896 256.032v32h-768v-63.968c0-17.696 14.304-32 32-32h704c17.696 0 32 14.304 32 32v31.968zM288 896.192h64c17.696 0 32-14.304 32-32v-416c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v416c0 17.696 14.304 32 32 32zM288 448.16h64v416h-64v-416zM480 896.192h64c17.696 0 32-14.304 32-32v-416c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v416c0 17.696 14.304 32 32 32zM480 448.16h64v416h-64v-416zM672 896.192h64c17.696 0 32-14.304 32-32v-416c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v416c0 17.696 14.304 32 32 32zM672 448.16h64v416h-64v-416z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["trash"],"grid":0},"attrs":[{}],"properties":{"order":880,"id":25,"name":"trash","prevSize":32,"code":59673},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M960 1024h-896c-35.328 0-64-28.672-64-64v-896c0-35.328 28.672-64 64-64h768l192 192v768c0 35.328-28.672 64-64 64zM256 864c0 17.696 14.336 32 32 32h448c17.696 0 32-14.304 32-32v-256c0-17.696-14.304-32-32-32h-448c-17.664 0-32 14.304-32 32v256zM704 160c0-17.696-14.304-32-32-32s-32 14.304-32 32v96c0 17.696 14.304 32 32 32s32-14.304 32-32v-96zM896 224l-96-96h-32v224c0 17.696-14.304 32-32 32h-448c-17.664 0-32-14.304-32-32v-224h-96c-17.664 0-32 14.304-32 32v704c0 17.696 14.336 32 32 32h32v-352c0-17.696 14.336-32 32-32h576c17.696 0 32 14.304 32 32v352h32c17.696 0 32-14.304 32-32v-640z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["save"],"grid":0},"attrs":[{}],"properties":{"order":893,"id":26,"name":"save","prevSize":32,"code":59674},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M1014.592 228.256l-90.848-90.848c-12.576-12.576-32.832-12.576-45.408 0l-464.48 490.368-266.24-266.368c-12.704-12.704-33.312-12.704-46.016 0l-92.032 92.096c-12.704 12.672-12.704 33.28 0 46.016l378.656 387.456c7.328 7.36 17.28 9.888 26.848 8.64 9.888 1.472 20.192-1.024 27.776-8.64l571.744-613.28c12.544-12.544 12.544-32.896 0-45.44z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["checkmark"],"grid":0},"attrs":[{}],"properties":{"order":894,"id":27,"name":"checkmark","prevSize":32,"code":59675},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M28.479 777.203v207.74c0 18.172 14.697 32.866 32.869 32.866h815.96c18.172 0 32.87-14.694 32.87-32.866v-207.74c0-18.172-14.797-32.87-32.87-32.87h-80.333c-18.074 0-32.87 14.797-32.87 32.87v94.336h-589.553v-94.336c0-18.172-14.697-32.87-32.869-32.87h-80.335c-18.172 0-32.869 14.797-32.869 32.87z","M343.366 156.375h251.928c19.362 0 35.055-15.69 35.055-35.054v-68.518c0-19.364-15.693-35.053-35.055-35.053h-251.928c-19.364 0-35.054 15.69-35.054 35.053v68.518c0 19.364 15.69 35.054 35.054 35.054z","M306.225 361.315h-128.695c-21.251 0-39.621 10.228-46.97 25.918-5.76 12.512-3.674 26.513 5.66 37.536l291.849 341.994c9.331 10.923 24.329 17.178 41.207 17.178 16.883 0 31.974-6.255 41.31-17.178l291.849-342.094c9.331-10.923 11.418-24.925 5.658-37.536-7.249-15.789-25.719-25.918-46.869-25.918h-133.163v-121.346c0-18.172-14.699-32.869-32.87-32.869h-256.097c-18.073 0-32.869 14.796-32.869 32.869v121.446z"],"width":939,"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["download"],"grid":0},"attrs":[{},{},{}],"properties":{"order":895,"id":28,"name":"download","prevSize":32,"code":59676},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M587 752h-150c-24.936 0-45-20.064-45-45v-314.997h-164.436c-33.376 0-50.064-40.312-26.436-63.936l285.184-285.372c14.064-14.064 37.124-14.064 51.188 0l285.372 285.372c23.624 23.624 6.936 63.936-26.436 63.936h-164.436v314.997c0 24.936-20.064 45-45 45zM991.996 737v210c0 24.936-20.064 45-45 45h-869.994c-24.936 0-45-20.064-45-45v-210c0-24.936 20.064-45 45-45h255v15c0 57.936 47.064 105 105 105h150c57.936 0 105-47.064 105-105v-15h255c24.936 0 45 20.064 45 45zM759.5 901.996c0-20.624-16.876-37.5-37.5-37.5s-37.5 16.876-37.5 37.5 16.876 37.5 37.5 37.5 37.5-16.876 37.5-37.5zM879.496 901.996c0-20.624-16.876-37.5-37.5-37.5s-37.5 16.876-37.5 37.5 16.876 37.5 37.5 37.5 37.5-16.876 37.5-37.5z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["upload"],"grid":0},"attrs":[{}],"properties":{"order":896,"id":29,"name":"upload","prevSize":32,"code":59677},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M128 337.963l359.552 251.691c14.507 10.027 33.92 10.496 48.939 0l359.509-251.691v430.037c0 11.605-4.693 22.229-12.587 30.080s-18.475 12.587-30.080 12.587h-682.667c-11.605 0-22.229-4.693-30.080-12.587s-12.587-18.475-12.587-30.080zM42.667 255.275c0 0.427 0 0.853 0 1.28v511.445c0 35.328 14.507 67.371 37.547 90.453s55.125 37.547 90.453 37.547h682.667c35.328 0 67.371-14.507 90.453-37.547s37.547-55.125 37.547-90.453v-511.488c0-0.427 0-0.853 0-1.28-0.213-35.029-14.635-66.773-37.547-89.685-23.083-23.040-55.125-37.547-90.453-37.547h-682.667c-35.328 0-67.371 14.507-90.453 37.547-22.912 22.912-37.333 54.656-37.547 89.728zM891.477 236.971l-379.477 265.6-379.477-265.6c2.048-4.096 4.779-7.808 8.021-11.051 7.893-7.893 18.517-12.587 30.123-12.587h682.667c11.605 0 22.229 4.693 30.080 12.587 3.243 3.243 5.973 6.997 8.021 11.051z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["email"]},"attrs":[{}],"properties":{"order":914,"id":30,"name":"email","prevSize":32,"code":59678},"setIdx":0,"setId":0,"iconIdx":30}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":false,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"autoHost":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16,"quickUsageToken":{"UntitledProject":"ZjQ5ODNjZDkzZGRhNGRlZDg3YmQ2Njc5YTQyNWU2Y2QjMSMxNTY0MDUxMDkxIyMj"},"showGrid":false}}
\ No newline at end of file
+{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M470 214v256h84v-86h-42v-42h42v-86h-42v-42h42q0-18-12-31t-30-13-30 13-12 31zM640 554q86 62 86 172 0 88-63 150t-151 62-151-62-63-150q0-110 86-172v-340q0-52 38-90t90-38 90 38 38 90v340z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["device_thermostat"],"grid":24},"attrs":[],"properties":{"ligatures":"device_thermostat","id":246,"order":1313,"prevSize":24,"code":59679,"name":"device_thermostat"},"setIdx":0,"setId":2,"iconIdx":246},{"icon":{"paths":["M896 128l-322 768h-42l-112-292-292-112v-42z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["near_me"],"grid":24},"attrs":[],"properties":{"ligatures":"near_me","id":567,"order":1314,"prevSize":24,"code":59680,"name":"near_me"},"setIdx":0,"setId":2,"iconIdx":567},{"icon":{"paths":["M256 598h86q0 70 50 120t120 50 120-50 50-120h86q0 106-75 181t-181 75-181-75-75-181zM470 214h84v238h150l-192 192-192-192h150v-238z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["play_for_work"],"grid":24},"attrs":[],"properties":{"ligatures":"play_for_work","id":858,"order":1317,"prevSize":24,"code":59681,"name":"play_for_work"},"setIdx":0,"setId":2,"iconIdx":858},{"icon":{"paths":["M256 598h512q0-110-76-186l-180-188-180 186q-76 76-76 188zM754 342q100 100 100 240 0 142-100 242-42 42-113 71t-129 29-129-29-113-71q-100-100-100-242 0-58 29-128t71-112l242-242z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["opacity"],"grid":24},"attrs":[],"properties":{"ligatures":"opacity","id":878,"order":1316,"prevSize":24,"code":59682,"name":"opacity"},"setIdx":0,"setId":2,"iconIdx":878},{"icon":{"paths":["M692 692l34-56-192-116v-222h-64v256zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["watch_later"],"grid":24},"attrs":[],"properties":{"ligatures":"watch_later","id":886,"order":1315,"prevSize":24,"code":59683,"name":"watch_later"},"setIdx":0,"setId":2,"iconIdx":886},{"icon":{"paths":["M862 384c-53 0-96 43-96 96 0 11.292 2.334 21.916 5.876 32h-613.876c-17.666 0-32 14.334-32 32s14.334 32 32 32h704c53 0 96-43 96-96s-43-96-96-96zM158 448h384c53 0 96-43 96-96s-43-96-96-96-96 43-96 96c0 11.292 2.334 21.916 5.876 32h-293.876c-17.666 0-32 14.334-32 32s14.334 32 32 32zM670 640c-1.876 0-3.668 0.416-5.582 0.582-1.25-0.082-2.292-0.582-3.542-0.582h-493.708c-22.75 0-41.168 14.334-41.168 32s18.418 32 41.168 32h412.708c-3.542 10.084-5.876 20.752-5.876 32 0 53 43 96 96 96s96-43 96-96-43-96-96-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wind","weather"],"grid":16},"attrs":[],"properties":{"id":6,"order":1311,"prevSize":32,"code":59684,"name":"wind"},"setIdx":1,"setId":1,"iconIdx":5},{"icon":{"paths":["M512 0c-282.792 0-512 229.208-512 512 0 282.75 229.208 512 512 512 282.75 0 512-229.25 512-512 0-282.792-229.25-512-512-512zM512 896c-211.75 0-384-172.25-384-384s172.25-384 384-384 384 172.25 384 384-172.25 384-384 384zM320 704l256-128 128-256-256 128-128 256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["compass","location","map"],"grid":16},"attrs":[],"properties":{"id":44,"order":1312,"prevSize":32,"code":59685,"name":"compass"},"setIdx":1,"setId":1,"iconIdx":43},{"icon":{"paths":["M859.996 468.195c27.454 22.75 27.454 64.858 0 87.608l-536.619 444.669c-37.080 30.726-93.184 4.352-93.184-43.804v-889.334c0-48.159 56.104-74.532 93.184-43.805z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-right"],"grid":0},"attrs":[{}],"properties":{"order":867,"id":0,"name":"angle-right","prevSize":32,"code":59648},"setIdx":2,"setId":0,"iconIdx":0},{"icon":{"paths":["M164.004 468.195c-27.454 22.75-27.454 64.858 0 87.608l536.619 444.669c37.080 30.726 93.184 4.352 93.184-43.804v-889.334c0-48.159-56.104-74.532-93.184-43.805z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-left"],"grid":0},"attrs":[{}],"properties":{"order":868,"id":1,"name":"angle-left","prevSize":32,"code":59649},"setIdx":2,"setId":0,"iconIdx":1},{"icon":{"paths":["M473.899 752.904c21.045 21.035 55.156 21.035 76.2 0l405.763-405.57c33.964-33.948 9.922-92.013-38.104-92.013h-811.518c-48.021 0-72.064 58.065-38.1 92.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-down"],"grid":0},"attrs":[{}],"properties":{"order":869,"id":2,"name":"angle-down","prevSize":32,"code":59650},"setIdx":2,"setId":0,"iconIdx":2},{"icon":{"paths":["M473.899 271.096c21.045-21.035 55.156-21.035 76.2 0l405.763 405.57c33.964 33.948 9.922 92.013-38.104 92.013h-811.518c-48.021 0-72.064-58.065-38.1-92.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-up"],"grid":0},"attrs":[{}],"properties":{"order":870,"id":3,"name":"angle-up","prevSize":32,"code":59651},"setIdx":2,"setId":0,"iconIdx":3},{"icon":{"paths":["M128 73.143c-57.149 0-103.619 43.739-103.619 97.524v682.667c0 53.784 46.47 97.524 103.619 97.524h768c57.149 0 103.619-43.739 103.619-97.524v-682.667c0-53.785-46.47-97.524-103.619-97.524zM128 170.667h768c3.852 0.049 5.949 1.356 6.095 0.381l0.571 680c-0.341 0.488-2.522 2.285-6.667 2.285h-768c-2.779 0-4.695-0.857-5.524-0.857-0.341 0-0.523 0.088-0.571 0.38l-0.571-679.999c0.341-0.488 2.522-2.19 6.667-2.19zM219.429 268.19v292.571h292.571v-292.571zM609.524 268.19v97.524h195.048v-97.524zM609.524 463.238v97.524h195.048v-97.524zM219.429 658.286v97.524h585.143v-97.524h-243.81z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["article"],"grid":0},"attrs":[{}],"properties":{"order":871,"id":4,"name":"article","prevSize":32,"code":59652},"setIdx":2,"setId":0,"iconIdx":4},{"icon":{"paths":["M333.913 22.565c-24.375 0-44.176 19.587-44.521 43.881l-0 0.033v44.522h-44.522c-122.416 0-222.609 100.193-222.609 222.609v445.217c0 122.415 100.192 222.609 222.609 222.609h534.261c122.415 0 222.609-100.194 222.609-222.609v-445.217c0-122.416-100.194-222.609-222.609-222.609h-44.522v-44.522c-0.346-24.326-20.146-43.913-44.522-43.913l-0-0c-24.375 0-44.176 19.587-44.521 43.881l-0 0.033v44.522h-267.13v-44.522c-0.346-24.326-20.146-43.913-44.522-43.913l-0-0zM244.87 200.043h44.522v44.522c0.355 24.319 20.152 43.897 44.522 43.897s44.167-19.578 44.521-43.863l0-0.033v-44.522h267.13v44.522c0.346 24.326 20.146 43.913 44.522 43.913l0 0c24.375-0 44.176-19.587 44.521-43.881l0-0.033v-44.522h44.522c74.291 0 133.565 59.272 133.565 133.565v44.522h-801.391v-44.522c0-74.293 59.272-133.565 133.565-133.565zM111.304 467.174h801.391v311.652c0 74.291-59.275 133.565-133.565 133.565h-534.261c-74.293 0-133.565-59.274-133.565-133.565z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["calendar"],"grid":0},"attrs":[{}],"properties":{"order":872,"id":5,"name":"calendar","prevSize":32,"code":59653},"setIdx":2,"setId":0,"iconIdx":5},{"icon":{"paths":["M513.6 9.6c-278.823 0-505.76 226.818-505.76 505.6 0 278.783 226.937 505.68 505.76 505.68s505.76-226.897 505.76-505.68c0-278.782-226.936-505.6-505.76-505.6zM513.6 91.52c234.56 0 423.84 189.179 423.84 423.68 0 234.502-189.28 423.76-423.84 423.76s-423.84-189.258-423.84-423.76c0-234.501 189.281-423.68 423.84-423.68zM513.6 195.44c-22.622 0-40.96 18.338-40.96 40.96v0 286.8c0.006 35.499 14.097 69.549 39.2 94.64l112.24 112.16c7.412 7.41 17.651 11.994 28.96 11.994s21.548-4.583 28.96-11.994l-0 0c7.41-7.412 11.994-17.651 11.994-28.96s-4.583-21.548-11.994-28.96l-112.24-112.16c-9.744-9.739-15.177-22.948-15.2-36.72v-286.8c0-22.622-18.338-40.96-40.96-40.96v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["clock"],"grid":0},"attrs":[{}],"properties":{"order":873,"id":6,"name":"clock","prevSize":32,"code":59654},"setIdx":2,"setId":0,"iconIdx":6},{"icon":{"paths":["M512 11.238c-0.013-0-0.028-0-0.043-0-69.143 0-125.195 56.052-125.195 125.195 0 0.015 0 0.031 0 0.046l-0-0.002c0.030 69.121 56.070 125.143 125.195 125.143 0.015 0 0.030-0 0.046-0l-0.002 0c0.013 0 0.028 0 0.043 0 69.125 0 125.165-56.022 125.195-125.14l0-0.003c0-0.013 0-0.028 0-0.043 0-69.143-56.052-125.195-125.195-125.195-0.015 0-0.031 0-0.046 0l0.003-0zM512 386.857c-0.013-0-0.028-0-0.043-0-69.143 0-125.195 56.052-125.195 125.195 0 0.015 0 0.031 0 0.046l-0-0.003c0.030 69.121 56.070 125.143 125.195 125.143 0.015 0 0.030-0 0.046-0l-0.002 0c0.013 0 0.028 0 0.043 0 69.125 0 125.165-56.022 125.195-125.14l0-0.003c0-0.013 0-0.028 0-0.043 0-69.143-56.052-125.195-125.195-125.195-0.015 0-0.031 0-0.046 0l0.003-0zM512 762.381c-0.013-0-0.028-0-0.043-0-69.143 0-125.195 56.052-125.195 125.195 0 0.015 0 0.031 0 0.046l-0-0.003c0.030 69.121 56.070 125.143 125.195 125.143 0.015 0 0.030-0 0.046-0l-0.002 0c0.013 0 0.028 0 0.043 0 69.125 0 125.165-56.022 125.195-125.14l0-0.003c0-0.013 0-0.028 0-0.043 0-69.143-56.052-125.195-125.195-125.195-0.015 0-0.031 0-0.046 0l0.003-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["dots"],"grid":0},"attrs":[{}],"properties":{"order":874,"id":7,"name":"dots","prevSize":32,"code":59655},"setIdx":2,"setId":0,"iconIdx":7},{"icon":{"paths":["M900.222 12c-32.821 0-64.267 13.017-87.481 36.222l-469.556 469.556v174.963h175.037l469.556-469.481c23.207-23.213 36.222-54.659 36.222-87.481s-13.015-64.343-36.222-87.556c-23.211-23.206-54.731-36.222-87.556-36.222zM157.556 135.778c-32.829 0-64.342 13.009-87.556 36.222s-36.222 54.726-36.222 87.556v618.889c0 32.829 13.009 64.345 36.222 87.556 23.214 23.214 54.726 36.222 87.556 36.222h618.889c32.829 0 64.341-13.008 87.556-36.222 23.214-23.211 36.222-54.727 36.222-87.556v-247.556c0-16.414-6.543-32.172-18.148-43.778-11.609-11.605-27.289-18.074-43.704-18.074s-32.169 6.469-43.778 18.074c-11.605 11.605-18.148 27.363-18.148 43.778v247.556h-618.889v-618.889h247.556c16.414 0 32.172-6.541 43.778-18.148 11.609-11.607 18.074-27.289 18.074-43.704s-6.465-32.171-18.074-43.778c-11.605-11.607-27.363-18.148-43.778-18.148h-247.556z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["edit"],"grid":0},"attrs":[{}],"properties":{"order":875,"id":8,"name":"edit","prevSize":32,"code":59656},"setIdx":2,"setId":0,"iconIdx":8},{"icon":{"paths":["M294.306 341.559h91.988c0-5.84-0.041-10.531 0-15.222 0.387-39.56-1.095-79.269 1.65-118.679 0.72-27.3 7.26-54.101 19.158-78.495s28.86-45.781 49.677-62.642c32.235-24.686 71.36-37.912 111.5-37.692 50.861-1.276 101.776-0.188 152.666-0.086 1.722 0 3.44 0.332 5.728 0.566v165.41c-16.966 0-33.686 0-50.41 0-17.923 0-35.862-0.264-53.76 0.106-4.97-0.57-10.005-0.068-14.779 1.476s-9.183 4.095-12.951 7.492c-3.768 3.396-6.812 7.562-8.936 12.236s-3.284 9.753-3.406 14.914c-1.908 36.395-0.506 72.969-0.506 110.534h147.785l-16.979 170.95h-131.198v483.331h-194.965v-482.982h-92.245z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["facebook"],"grid":0},"attrs":[{}],"properties":{"order":876,"id":9,"name":"facebook","prevSize":32,"code":59657},"setIdx":2,"setId":0,"iconIdx":9},{"icon":{"paths":["M256.264 110.437c-5.82-0.144-11.648 0.069-17.472 0.642-23.295 2.289-45.665 10.282-65.132 23.283s-35.413 30.604-46.453 51.245c-5.954 11.132-6.243 23.978-9.057 36.189-12.223 2.803-25.082 3.070-36.226 9.019-20.656 11.025-38.303 26.992-51.321 46.453s-21.017 41.833-23.321 65.132c-2.304 23.3 1.16 46.819 10.113 68.453s23.113 40.728 41.208 55.585c18.098 14.859 39.604 25.016 62.566 29.585s46.686 3.404 69.094-3.396c9.505-2.883 16.531-10.342 25.17-15.094l99.547 99.509h-165.962c-0.003-0-0.007-0-0.011-0-8.748 0-16.816 2.906-23.293 7.806l0.097-0.070c-80.664 60.512-119.17 161.843-119.17 290.189 0.002 21.34 17.301 38.639 38.641 38.642l933.434 0c21.333-0.013 38.622-17.31 38.622-38.645 0-1.408-0.075-2.798-0.222-4.166l0.015 0.17c-8.592-82.036-5.396-190.086-117.17-284.755-6.688-5.699-15.429-9.167-24.98-9.17l-165.925-0 99.509-99.472c8.634 4.748 15.672 12.175 25.17 15.057 22.409 6.8 46.133 7.965 69.094 3.396 22.963-4.569 44.468-14.725 62.566-29.585 18.097-14.857 32.254-33.949 41.208-55.585 8.955-21.635 12.418-45.152 10.113-68.453-2.304-23.299-10.303-45.67-23.321-65.132s-30.628-35.428-51.283-46.453c-11.159-5.956-24.025-6.254-36.264-9.057-2.814-12.198-3.11-25.031-9.057-36.151-11.040-20.643-26.99-38.246-46.453-51.245-19.467-13-41.837-20.994-65.132-23.283s-46.79 1.188-68.415 10.151c-21.625 8.963-40.739 23.111-55.585 41.208-14.844 18.097-24.984 39.609-29.547 62.566-4.561 22.957-3.403 46.695 3.396 69.094 2.881 9.492 10.348 16.502 15.094 25.132l-138.151 138.113-138.151-138.113c4.745-8.625 12.213-15.643 15.094-25.132v-0.039c6.79-22.387 7.954-46.111 3.396-69.056-4.563-22.957-14.703-44.469-29.547-62.566-14.846-18.096-33.922-32.245-55.547-41.208-16.218-6.722-33.521-10.36-50.981-10.792zM254.377 187.682c7.969 0.198 15.832 1.871 23.245 4.943 9.887 4.097 18.607 10.555 25.396 18.83 6.787 8.274 11.423 18.105 13.509 28.604 2.086 10.498 1.561 21.345-1.547 31.585-3.106 10.237-8.695 19.526-16.264 27.094-7.001 6.995-11.332 16.661-11.332 27.34s4.331 20.345 11.332 27.339l158.642 158.566-49.057 49.057-158.679-158.642c-6.993-6.99-16.652-11.313-27.32-11.313-10.688 0-20.362 4.339-27.358 11.351l-0.001 0.001c-7.571 7.57-16.852 13.119-27.094 16.226-0.005 0.005-0.017 0.018-0.030 0.030l-0.008 0.008c-10.241 3.106-21.084 3.636-31.585 1.546s-20.294-6.755-28.566-13.547c-8.275-6.794-14.737-15.506-18.83-25.396-4.094-9.894-5.695-20.629-4.642-31.283 1.053-10.651 4.728-20.876 10.679-29.774s13.991-16.205 23.434-21.245c9.444-5.040 19.975-7.668 30.679-7.66 0.010 0 0.022 0 0.034 0 21.342 0 38.643-17.3 38.645-38.641l0-0c0.003-10.702 2.651-21.205 7.698-30.641s12.345-17.491 21.245-23.434c8.898-5.942 19.123-9.595 29.774-10.642 2.663-0.262 5.344-0.368 8-0.302zM769.66 187.682c2.66-0.066 5.338 0.040 8 0.302 10.651 1.047 20.874 4.698 29.774 10.642s16.161 13.999 21.208 23.434c5.048 9.439 7.696 19.943 7.698 30.641 0.002 21.342 17.303 38.642 38.645 38.642 0.012 0 0.024-0 0.036-0l-0.002 0c10.706-0.008 21.238 2.621 30.679 7.66 9.443 5.040 17.521 12.349 23.472 21.245s9.588 19.122 10.642 29.774c1.054 10.653-0.509 21.39-4.604 31.283-4.092 9.888-10.592 18.602-18.868 25.396-8.271 6.791-18.065 11.458-28.566 13.547-10.499 2.089-21.342 1.523-31.585-1.585-10.242-3.107-19.561-8.654-27.132-16.226-6.995-7.002-16.662-11.333-27.34-11.333-10.659 0-20.31 4.315-27.302 11.295l0.001-0.001-174.717 174.642h-98.113l223.698-223.623c7.001-6.995 11.332-16.661 11.332-27.34s-4.331-20.345-11.332-27.339l-0-0c-7.569-7.565-13.155-16.851-16.264-27.093-3.108-10.24-3.633-21.087-1.547-31.585 2.087-10.499 6.722-20.33 13.509-28.604 6.789-8.276 15.51-14.733 25.396-18.83 7.413-3.073 15.304-4.745 23.283-4.943zM164.415 654.324h693.887c65.039 59.733 71.887 116.521 76.868 182h-848.415c6.253-85.205 32.457-143.973 77.66-182z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["food"],"grid":0},"attrs":[{}],"properties":{"order":877,"id":10,"name":"food","prevSize":32,"code":59658},"setIdx":2,"setId":0,"iconIdx":10},{"icon":{"paths":["M987.6 172.715c-42.488-90.069-164.876-163.762-307.243-120.856-68.029 20.298-127.382 63.827-168.365 123.477-40.98-59.649-100.332-103.179-168.363-123.477-142.682-42.251-264.754 30.787-307.242 120.856-59.609 126.097-34.878 267.914 73.561 421.522 84.975 120.202 206.413 242.042 382.706 383.531 5.569 4.49 12.434 6.928 19.499 6.928s13.926-2.438 19.499-6.928c175.974-141.162 297.728-262.018 382.704-383.531 108.123-153.608 132.852-295.426 73.244-421.522z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["heart"],"grid":0},"attrs":[{}],"properties":{"order":878,"id":11,"name":"heart","prevSize":32,"code":59659},"setIdx":2,"setId":0,"iconIdx":11},{"icon":{"paths":["M336.458 14.644c-18.158-0.010-35.883 5.588-50.712 16.068s-26.014 25.321-32.068 42.441h-92.746c-23.278 0-45.608 9.235-62.068 25.695s-25.729 38.79-25.729 62.068v702.169c0 23.278 9.269 45.575 25.729 62.034 16.46 16.46 38.79 25.729 62.068 25.729h224.508c-8.805-18.503-14.752-38.225-17.661-58.508h-206.847c-7.759 0-15.225-3.090-20.712-8.576s-8.542-12.92-8.542-20.678v-702.169c0-7.759 3.056-15.191 8.542-20.678s12.952-8.576 20.712-8.576h92.746c6.054 17.12 17.239 31.927 32.068 42.407s32.554 16.11 50.712 16.102h175.559c18.158 0.009 35.849-5.622 50.678-16.102s26.048-25.287 32.102-42.407h92.746c7.76 0 15.19 3.090 20.678 8.576 5.486 5.487 8.576 12.918 8.576 20.678v321.831h58.508v-321.831c0-23.278-9.235-45.608-25.695-62.068s-38.79-25.695-62.068-25.695h-92.746c-6.054-17.12-17.273-31.961-32.102-42.441s-32.52-16.077-50.678-16.068zM336.458 73.153h175.559c7.758 0 15.192 3.056 20.678 8.542 5.488 5.487 8.576 12.953 8.576 20.712s-3.088 15.191-8.576 20.678c-5.486 5.487-12.92 8.576-20.678 8.576h-175.559c-7.76 0-15.19-3.090-20.678-8.576-5.486-5.487-8.576-12.918-8.576-20.678s3.090-15.225 8.576-20.712c5.488-5.487 12.918-8.542 20.678-8.542zM541.271 541.254c-31.038 0-60.799 12.323-82.746 34.271-21.947 21.947-34.305 51.708-34.305 82.746v234.068c0 31.038 12.359 60.799 34.305 82.746s51.708 34.271 82.746 34.271h292.542c31.038 0 60.833-12.325 82.78-34.271s34.271-51.708 34.271-82.746v-234.068c0-31.038-12.325-60.799-34.271-82.746-21.947-21.948-51.742-34.271-82.78-34.271zM570.525 658.271h234.034c7.758 0 15.226 3.090 20.712 8.576 5.488 5.488 8.542 12.918 8.542 20.678s-3.054 15.224-8.542 20.712c-5.486 5.486-12.954 8.542-20.712 8.542h-234.034c-7.758 0-15.226-3.056-20.712-8.542-5.486-5.488-8.542-12.952-8.542-20.712s3.056-15.19 8.542-20.678c5.486-5.486 12.954-8.576 20.712-8.576zM570.525 833.831h234.034c7.758 0 15.226 3.056 20.712 8.542 5.488 5.486 8.542 12.952 8.542 20.712 0 7.758-3.054 15.192-8.542 20.678-5.486 5.486-12.954 8.576-20.712 8.576h-234.034c-7.758 0-15.226-3.090-20.712-8.576s-8.542-12.92-8.542-20.678c0-7.76 3.056-15.226 8.542-20.712s12.954-8.542 20.712-8.542z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["list"],"grid":0},"attrs":[{}],"properties":{"order":879,"id":12,"name":"list","prevSize":32,"code":59660},"setIdx":2,"setId":0,"iconIdx":12},{"icon":{"paths":["M134.857 134.857c-33.341 0-65.317 13.245-88.893 36.821s-36.821 55.551-36.821 88.893v502.857c0 33.342 13.245 65.317 36.821 88.893s55.551 36.821 88.893 36.821h754.286c33.34 0 65.317-13.246 88.893-36.821s36.821-55.551 36.821-88.893v-502.857c0-33.341-13.246-65.317-36.821-88.893s-55.553-36.821-88.893-36.821zM134.857 197.714h754.286c16.669 0 32.642 6.605 44.429 18.393 11.789 11.788 18.429 27.794 18.429 44.464v502.857c0 16.671-6.64 32.675-18.429 44.464-11.787 11.789-27.759 18.393-44.429 18.393h-754.286c-16.671 0-32.676-6.604-44.464-18.393s-18.393-27.793-18.393-44.464v-502.857c0-16.671 6.605-32.676 18.393-44.464s27.794-18.393 44.464-18.393zM166.286 323.429c-8.335 0-16.32 3.321-22.214 9.214-5.894 5.895-9.214 13.878-9.214 22.214v62.857c0 8.335 3.32 16.321 9.214 22.214s13.879 9.214 22.214 9.214h125.714c8.336 0 16.321-3.321 22.214-9.214 5.895-5.893 9.214-13.88 9.214-22.214v-62.857c0-8.336-3.319-16.319-9.214-22.214-5.893-5.893-13.878-9.214-22.214-9.214zM166.286 512c-8.335 0-16.32 3.321-22.214 9.214-5.894 5.895-9.214 13.878-9.214 22.214 0 8.335 3.32 16.321 9.214 22.214s13.879 9.214 22.214 9.214h314.286c8.336 0 16.319-3.321 22.214-9.214 5.893-5.893 9.214-13.88 9.214-22.214 0-8.336-3.321-16.319-9.214-22.214-5.895-5.893-13.878-9.214-22.214-9.214zM166.286 637.714c-8.335 0-16.32 3.321-22.214 9.214-5.894 5.895-9.214 13.878-9.214 22.214 0 8.335 3.32 16.321 9.214 22.214s13.879 9.214 22.214 9.214h62.857c8.336 0 16.321-3.321 22.214-9.214 5.895-5.893 9.214-13.88 9.214-22.214 0-8.336-3.319-16.319-9.214-22.214-5.893-5.893-13.878-9.214-22.214-9.214zM354.857 637.714c-8.335 0-16.321 3.321-22.214 9.214-5.895 5.895-9.214 13.878-9.214 22.214 0 8.335 3.319 16.321 9.214 22.214 5.893 5.893 13.88 9.214 22.214 9.214h62.857c8.336 0 16.321-3.321 22.214-9.214 5.895-5.893 9.214-13.88 9.214-22.214 0-8.336-3.319-16.319-9.214-22.214-5.893-5.893-13.878-9.214-22.214-9.214zM543.429 637.714c-8.335 0-16.321 3.321-22.214 9.214-5.895 5.895-9.214 13.878-9.214 22.214 0 8.335 3.319 16.321 9.214 22.214 5.893 5.893 13.88 9.214 22.214 9.214h62.857c8.336 0 16.319-3.321 22.214-9.214 5.893-5.893 9.214-13.88 9.214-22.214 0-8.336-3.321-16.319-9.214-22.214-5.895-5.893-13.878-9.214-22.214-9.214zM732 637.714c-8.335 0-16.321 3.321-22.214 9.214-5.895 5.895-9.214 13.878-9.214 22.214 0 8.335 3.319 16.321 9.214 22.214 5.893 5.893 13.88 9.214 22.214 9.214h62.857c8.336 0 16.319-3.321 22.214-9.214 5.893-5.893 9.214-13.88 9.214-22.214 0-8.336-3.321-16.319-9.214-22.214-5.895-5.893-13.878-9.214-22.214-9.214z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["medal"],"grid":0},"attrs":[{}],"properties":{"order":892,"id":13,"name":"medal","prevSize":32,"code":59661},"setIdx":2,"setId":0,"iconIdx":13},{"icon":{"paths":["M194.613 853.803h634.775c80.568 0 146.487-65.922 146.487-146.49v-537.116c0-80.568-65.918-146.487-146.487-146.487h-634.775c-80.568 0-146.487 65.919-146.487 146.487v830.093zM585.255 438.759c0 40.451-32.795 73.243-73.243 73.243-40.451 0-73.247-32.792-73.247-73.243s32.795-73.243 73.247-73.243c40.448 0 73.243 32.792 73.243 73.243zM756.147 512.002c-40.451 0-73.243-32.792-73.243-73.243s32.792-73.243 73.243-73.243c40.451 0 73.243 32.792 73.243 73.243s-32.792 73.243-73.243 73.243zM341.104 438.759c0 40.451-32.792 73.243-73.243 73.243s-73.243-32.792-73.243-73.243c0-40.451 32.792-73.243 73.243-73.243s73.243 32.792 73.243 73.243z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["message"],"grid":0},"attrs":[{}],"properties":{"order":891,"id":14,"name":"message","prevSize":32,"code":59662},"setIdx":2,"setId":0,"iconIdx":14},{"icon":{"paths":["M974.612 512v0.001c0 40.017-32.44 72.457-72.457 72.457l-780.311 0c-40.017 0-72.457-32.44-72.457-72.457v-0.001c-0-40.017 32.44-72.457 72.457-72.457l780.311-0c40.017 0 72.457 32.44 72.457 72.457z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["minus"],"grid":0},"attrs":[{}],"properties":{"order":890,"id":15,"name":"minus","prevSize":32,"code":59663},"setIdx":2,"setId":0,"iconIdx":15},{"icon":{"paths":["M512 49.333c-40.141 0-72.444 32.415-72.444 72.556v317.667h-317.667c-40.141 0-72.556 32.304-72.556 72.444s32.415 72.444 72.556 72.444h317.667v317.667c0 40.141 32.304 72.556 72.444 72.556s72.444-32.415 72.444-72.556v-317.667h317.667c40.141 0 72.556-32.304 72.556-72.444s-32.415-72.444-72.556-72.444h-317.667v-317.667c0-40.141-32.304-72.556-72.444-72.556z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["plus"],"grid":0},"attrs":[{}],"properties":{"order":889,"id":16,"name":"plus","prevSize":32,"code":59664},"setIdx":2,"setId":0,"iconIdx":16},{"icon":{"paths":["M123.769 37.615c-22.275 0-44.543 8.466-61.538 25.462-33.991 33.991-33.991 89.086 0 123.077l327.231 327.231-327.077 327.077c-33.991 33.993-33.991 89.165 0 123.154 33.991 33.993 89.086 33.993 123.077 0l327.077-327.077 326.923 326.923c33.993 33.993 89.165 33.993 123.154 0 33.993-33.989 33.993-89.084 0-123.077l-327-327 327.077-327.077c33.989-33.991 33.989-89.086 0-123.077-33.993-33.991-89.088-33.991-123.077 0l-327.077 327.077-327.231-327.231c-16.995-16.996-39.263-25.462-61.538-25.462z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["close"],"grid":0},"attrs":[{}],"properties":{"order":888,"id":17,"name":"close","prevSize":32,"code":59672},"setIdx":2,"setId":0,"iconIdx":17},{"icon":{"paths":["M521.348 12.973c-15.966-0.3-32.034 0.171-48.091 1.455-128.454 10.267-247.568 70.907-331.455 168.727-77.608 89.036-119.61 203.63-117.818 321.727 0.357 76.083 18.647 151.027 53.364 218.727 4.247 9.449 5.281 20.009 2.909 30.091-15.686 62.552-32.823 124.783-49.091 187.182-3.106 9.588-4.409 19.659-3.909 29.727 0.805 6.8 3.070 13.296 6.727 19.091 3.657 5.79 8.568 10.714 14.364 14.364 5.795 3.654 12.379 5.931 19.182 6.727 6.803 0.801 13.699 0.121 20.182-2.091 71.127-18.697 141.992-38.363 213.182-56.818 9.080-2.183 18.59-1.648 27.364 1.545 58.521 23.515 121.115 35.272 184.182 34.727 10.664 0.019 21.246 0.023 31.909 0 1.597-0.005 3.227-0.126 4.818-0.275 65.136-4.603 128.617-22.407 186.636-52.364 58.019-29.961 109.351-71.468 150.818-121.909 82.618-98.895 122.733-226.433 111.636-354.818s-72.458-247.11-170.818-330.364c-86.065-72.847-194.326-113.353-306.091-115.455zM518.257 95.7c91.264 1.343 179.55 33.507 250.455 91.545 42.934 34.53 78.255 77.551 103.636 126.455 25.377 48.903 40.299 102.56 43.818 157.545 7.494 103.48-25.026 205.961-90.818 286.182-65.797 80.221-159.874 132.102-262.818 145-76.097 9.421-153.292-2.674-222.909-34.818-11.085-4.566-23.327-5.464-35-2.727-52.757 13.019-105.058 27.86-157.545 42-6.006 1.62-12.171 2.787-22.182 5.091 12.094-45.675 21.182-87.944 34.727-128.727 6.086-16.924 8.429-34.989 6.818-52.909-1.61-17.916-7.175-35.249-16.182-50.818-39.387-77.987-52.141-166.689-36.455-252.636s58.968-164.413 123.364-223.455c71.73-66.394 165.030-104.663 262.727-107.636 6.106-0.186 12.279-0.181 18.364-0.091zM511.802 253.609c-37.792 0.242-74.963 10.493-107.545 29.818-16.937 10.77-31.438 24.889-42.636 41.545s-18.781 35.433-22.364 55.182c-2.459 12.47 0.956 17.84 13.364 19.091 17.475 1.733 34.91 3.821 52.273 6.455 12.514 1.89 18.84-1.776 23.182-14.727 5.795-22.588 20.28-41.998 40.273-54 19.991-12.003 43.887-15.687 66.545-10.182 13.452 1.114 26.25 6.309 36.727 14.818 10.473 8.509 18.151 19.973 22 32.909 3.724 12.68 3.284 26.229-1.273 38.636-4.552 12.408-13.050 23.013-24.091 30.273-15.802 12.67-31.134 25.86-46.545 39-15.197 10.994-27.847 25.131-37.091 41.455-9.239 16.323-14.847 34.403-16.455 53.091-2.046 54.146-5.708 42.375 39.727 43.818h1.545c7.461-0.363 14.907-0.344 22.364 0.093 14.187 1.508 20.987-3.995 20.364-18.545 0.261-14.438 4.067-28.563 11.091-41.182 7.024-12.614 17.047-23.267 29.182-31.091 19.144-16.086 38.056-32.693 55.636-50.455 13.577-12.381 24.188-27.719 30.909-44.818s9.422-35.508 7.909-53.818c-1.508-18.311-7.202-36.051-16.636-51.818-9.43-15.766-22.398-29.102-37.818-39.091-33.499-22.597-72.703-35.281-113.091-36.455-2.525-0.074-5.026-0.016-7.545 0zM505.347 652.973c-37.804 0.163-37.818 2.856-37.818 46 0.019 11.683 0.34 23.422 0 35.091-0.284 9.155 2.999 13.916 12.727 13.818 22.319-0.209 44.691-0.191 67 0 9.356 0.079 13.403-3.827 13.273-13.364-0.344-22.854-0.344-45.706 0-68.545 0.163-9.868-4.565-13.172-13.636-13-11.152 0.228-22.293 0-33.455 0-2.868-0-5.571-0.011-8.091 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["question"],"grid":0},"attrs":[{}],"properties":{"order":887,"id":18,"name":"question","prevSize":32,"code":59665},"setIdx":2,"setId":0,"iconIdx":18},{"icon":{"paths":["M260.393 8.77c-26.693 0-52.305 10.633-71.18 29.508s-29.475 44.455-29.475 71.148v704.525c0 26.693 10.601 52.305 29.475 71.18 18.875 18.873 44.487 29.475 71.18 29.475h276.754v-50.328h-276.754c-13.346 0-26.169-5.317-35.607-14.754s-14.721-22.228-14.721-35.574v-704.525c0-13.346 5.284-26.137 14.721-35.574s22.26-14.754 35.607-14.754h503.213c13.346 0 26.169 5.317 35.607 14.754s14.721 22.227 14.721 35.574v704.525c0 13.346-5.284 26.136-14.721 35.574s-22.261 14.754-35.607 14.754h-75.475v-75.508h-50.328v145.049l-25.148-12.59-25.18 12.59v-145.049h-50.295v226.459l75.475-37.738 75.475 37.738v-100.623h75.475c26.693 0 52.305-10.602 71.18-29.475 18.873-18.875 29.475-44.488 29.475-71.18v-704.525c0-26.693-10.602-52.273-29.475-71.148-18.875-18.875-44.487-29.508-71.18-29.508z","M361.031 184.915c0 6.673 2.651 13.074 7.369 17.792s11.12 7.369 17.792 7.369h251.615c6.673 0 13.074-2.651 17.791-7.369 4.719-4.719 7.371-11.12 7.371-17.792s-2.652-13.073-7.371-17.792c-4.717-4.719-11.118-7.37-17.791-7.37h-251.615c-6.673 0-13.074 2.651-17.792 7.37s-7.369 11.119-7.369 17.792zM260.385 335.885c0 6.673 2.651 13.074 7.37 17.792 4.719 4.717 11.119 7.369 17.792 7.369h452.907c6.673 0 13.074-2.652 17.792-7.369 4.719-4.719 7.369-11.12 7.369-17.792s-2.651-13.074-7.369-17.792c-4.719-4.719-11.12-7.369-17.792-7.369h-452.907c-6.673 0-13.073 2.651-17.792 7.369s-7.37 11.12-7.37 17.792zM260.385 436.531c0 6.673 2.651 13.074 7.37 17.792s11.119 7.369 17.792 7.369h452.907c6.673 0 13.074-2.651 17.792-7.369s7.369-11.12 7.369-17.792c0-6.673-2.651-13.074-7.369-17.792s-11.12-7.369-17.792-7.369h-452.907c-6.673 0-13.073 2.651-17.792 7.369s-7.37 11.12-7.37 17.792zM260.385 537.177c0 6.673 2.651 13.074 7.37 17.792s11.119 7.369 17.792 7.369h452.907c6.673 0 13.074-2.651 17.792-7.369s7.369-11.12 7.369-17.792c0-6.673-2.651-13.074-7.369-17.792-4.719-4.717-11.12-7.369-17.792-7.369h-452.907c-6.673 0-13.073 2.652-17.792 7.369-4.719 4.719-7.37 11.12-7.37 17.792zM612.646 788.792c-13.347 0-26.146-5.301-35.583-14.739s-14.741-22.238-14.741-35.585c0-13.346 5.303-26.146 14.741-35.583s22.236-14.739 35.583-14.739c13.347 0 26.146 5.301 35.583 14.739s14.741 22.238 14.741 35.583c0 13.347-5.303 26.147-14.741 35.585s-22.236 14.739-35.583 14.739zM612.646 839.116c26.693 0 52.293-10.604 71.168-29.479 18.873-18.875 29.478-44.473 29.478-71.168 0-26.693-10.604-52.291-29.478-71.166-18.875-18.875-44.475-29.479-71.168-29.479s-52.293 10.604-71.168 29.479c-18.873 18.875-29.478 44.473-29.478 71.166 0 26.695 10.604 52.293 29.478 71.168 18.875 18.875 44.475 29.479 71.168 29.479z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["rules"],"grid":0},"attrs":[{},{}],"properties":{"order":886,"id":19,"name":"rules","prevSize":32,"code":59666},"setIdx":2,"setId":0,"iconIdx":19},{"icon":{"paths":["M1006.463 507.488c0 275.096-223.040 498.136-498.136 498.136-275.094 0-498.133-223.040-498.133-498.136 0-275.093 223.040-498.133 498.133-498.133 275.096 0 498.136 223.040 498.136 498.133zM526.177 377.103c-48.442 20.133-145.289 61.853-290.495 125.113-23.578 9.384-35.949 18.558-37.069 27.522-1.909 15.195 17.103 21.17 42.923 29.267 3.529 1.12 7.181 2.24 10.917 3.485 25.446 8.261 59.651 17.933 77.418 18.306 16.148 0.334 34.164-6.309 54.046-19.925 135.66-91.615 205.689-137.9 210.088-138.894 3.115-0.707 7.432-1.619 10.336 0.994 2.907 2.573 2.616 7.472 2.325 8.8-1.909 8.014-76.38 77.295-114.985 113.162-12.037 11.165-20.549 19.093-22.29 20.919-3.904 4.027-7.888 7.888-11.707 11.584-23.661 22.746-41.346 39.85 0.994 67.746 20.341 13.408 36.613 24.49 52.845 35.533 17.725 12.080 35.411 24.117 58.322 39.143 5.814 3.822 11.376 7.763 16.813 11.624 20.632 14.736 39.186 27.939 62.101 25.861 13.282-1.245 27.067-13.738 34.040-51.058 16.48-88.252 48.941-279.37 56.455-358.159 0.456-6.54 0.178-13.114-0.832-19.592-0.601-5.233-3.151-10.049-7.138-13.491-5.936-4.857-15.152-5.895-19.304-5.811-18.719 0.332-47.448 10.336-185.803 67.871z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["telegram"],"grid":0},"attrs":[{}],"properties":{"order":885,"id":20,"name":"telegram","prevSize":32,"code":59667},"setIdx":2,"setId":0,"iconIdx":20},{"icon":{"paths":["M512 11.412c-96.117-0-188.35 38.193-256.314 106.157s-106.157 160.199-106.157 256.314c-0.032 58.434 14.089 116.007 41.137 167.804 24.197 46.337 59.288 85.543 100.51 117.451l22.314 105.216-0.392-2.314c4.744 31.261 20.529 59.852 44.51 80.471 23.975 20.615 54.572 31.955 86.196 31.961h136.392c31.624-0.006 62.221-11.346 86.196-31.961 23.979-20.618 39.768-49.204 44.51-80.471l-0.392 2.275 22.314-105.647c41.208-31.811 76.27-70.922 100.471-117.176 27.064-51.732 41.21-109.262 41.176-167.647-0.010-96.1-38.202-188.32-106.157-256.275-67.964-67.964-160.199-106.157-256.314-106.157zM512 91.725c74.845-0 146.605 29.703 199.529 82.627s82.627 124.684 82.627 199.529c0.026 45.405-10.953 90.161-32 130.392-21.049 40.231-51.546 74.72-88.863 100.588-1.164 1.484-2.28 3.15-3.268 4.898l-0.104 0.2h-316.157c-1.001-1.745-1.999-3.231-3.089-4.642l0.069 0.093c-37.344-25.97-67.848-60.583-88.902-100.902s-32.030-85.141-32-130.627c0-74.845 29.743-146.605 82.667-199.529s124.643-82.628 199.49-82.627zM379.882 690.275h264.196l-12.157 57.451c-0.114 0.504-0.251 1.276-0.366 2.056l-0.026 0.218c-1.864 12.288-8.067 23.505-17.49 31.608-9.427 8.106-21.415 12.547-33.843 12.549h-136.392c-12.428-0.002-24.416-4.443-33.843-12.549-9.422-8.101-15.625-19.315-17.49-31.608-0.14-1.009-0.277-1.795-0.437-2.573l0.045 0.259-12.196-57.412zM414.392 930.706c-21.634 0-39.059 17.425-39.059 39.059s17.425 39.059 39.059 39.059h188.745c21.634 0 39.020-17.425 39.020-39.059s-17.385-39.059-39.020-39.059h-188.745z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["tricks"],"grid":0},"attrs":[{}],"properties":{"order":884,"id":21,"name":"tricks","prevSize":32,"code":59668},"setIdx":2,"setId":0,"iconIdx":21},{"icon":{"paths":["M18.705 834.14c79.041 9.093 158.934-5.891 229.814-43.1 23.142-12.008 45.024-26.436 65.305-43.056-11.089-1.399-21.306-2.127-31.291-4.103-10.162-1.959-20.173-4.666-29.96-8.1-9.772-3.492-19.268-7.759-28.4-12.762-9.119-5.028-17.852-10.762-26.122-17.162-16.577-12.803-31.173-28.126-43.29-45.449-5.951-8.721-11.364-17.821-16.206-27.245-5.176-9.551-9.185-19.729-11.937-30.297 14.74 2.403 29.652 3.495 44.573 3.26 14.743-0.556 29.372-2.901 43.582-6.991-30.846-7.11-59.67-21.507-84.209-42.056s-44.122-46.688-57.208-76.363c-12.801-27.416-18.569-57.76-16.753-88.133 26.847 15.194 56.807 23.597 87.417 24.515-27.455-19.846-49.76-46.35-64.952-77.178s-22.809-65.034-22.175-99.61c0.541-35.261 10.072-69.754 27.635-100.011 1.333 1.482 2.695 2.843 3.892 4.347 68.705 85.178 159.143 148.83 261.087 183.759 35.072 12.050 71.226 20.445 107.919 25.059 12.052 1.485 24.153 2.548 36.239 3.73 2.055 0.201 4.147 0.028 6.786 0.028-0.352-2.444-0.505-4.258-0.884-6.024-2.782-13.605-4.123-27.482-3.997-41.385 0.072-35.879 9.11-71.134 26.238-102.362s41.769-57.378 71.547-75.925c29.775-18.547 63.683-28.867 98.454-29.963 34.768-1.096 69.222 7.068 100.041 23.705 18.316 9.672 34.966 22.38 49.289 37.618 1.222 1.53 2.857 2.65 4.7 3.219 1.84 0.568 3.806 0.559 5.642-0.026 40.356-8.999 79.165-24.235 115.111-45.19 1.799-1.048 3.639-2.021 5.728-3.181-6.287 23.523-17.237 45.446-32.154 64.384-14.473 18.922-31.98 35.144-51.767 47.961l0.208 1.072c1.321 0.088 2.645 0.080 3.966-0.024 34.024-4.911 67.314-14.199 99.099-27.646 1.973-0.841 3.949-1.675 5.932-2.475 0.437-0.082 0.877-0.108 1.318-0.076 0.061 2.048-1.355 3.329-2.29 4.718-25.334 37.644-56.46 70.767-92.143 98.066-1.475 0.89-2.662 2.205-3.42 3.783s-1.051 3.352-0.843 5.101c0.468 5.562 0.71 11.162 0.696 16.744 0.003 46.278-5.144 92.404-15.34 137.471-11.974 52.688-30.522 103.55-55.177 151.316-19.732 38.335-43.401 74.377-70.595 107.503-34.676 42.411-75.196 79.353-120.262 109.64-47.442 31.829-99.43 55.784-154.071 70.991-28.846 8.083-58.255 13.858-87.962 17.275-19.227 2.464-38.591 3.611-57.963 3.437-8.863-0.188-17.734-0.143-26.597 0-25.781 0.061-51.52-2.133-76.941-6.56-44.991-7.212-88.969-20.026-130.97-38.158-28.795-12.428-56.577-27.211-83.083-44.213-1.213-0.778-2.322-1.724-3.465-2.591l0.205-1.287z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["twitter"],"grid":0},"attrs":[{}],"properties":{"order":883,"id":22,"name":"twitter","prevSize":32,"code":59669},"setIdx":2,"setId":0,"iconIdx":22},{"icon":{"paths":["M1000.434 233.612l-209.608-209.609c-9.845-9.844-23.197-15.375-37.119-15.375s-27.274 5.531-37.119 15.375c-9.845 9.844-15.374 23.196-15.374 37.118s5.53 27.274 15.374 37.118l67.686 67.686-100.438 100.438-137.557-137.556c-4.875-4.874-10.662-8.741-17.029-11.379-6.37-2.638-13.195-3.996-20.089-3.996s-13.719 1.358-20.087 3.996c-6.37 2.638-12.157 6.505-17.032 11.379-9.842 9.844-15.374 23.196-15.374 37.118s5.532 27.274 15.374 37.118l15.284 15.284-354.152 354.59c-8.18 8.028-14.673 17.61-19.097 28.186-4.424 10.573-6.691 21.923-6.667 33.387v208.298l-89.521 89.521c-4.885 4.868-8.762 10.652-11.406 17.022s-4.006 13.198-4.006 20.097c0 6.897 1.361 13.724 4.006 20.094s6.521 12.155 11.406 17.022c9.889 9.761 23.224 15.234 37.118 15.234s27.23-5.472 37.118-15.234l89.521-89.519h208.299c11.462 0.024 22.814-2.243 33.387-6.668s20.156-10.919 28.186-19.096l354.59-354.154 15.284 15.284c9.888 9.761 23.223 15.234 37.119 15.234 13.893 0 27.229-5.472 37.116-15.234 4.887-4.868 8.764-10.652 11.407-17.022 2.646-6.37 4.008-13.2 4.008-20.097s-1.362-13.724-4.008-20.094c-2.643-6.37-6.52-12.155-11.407-17.022l-137.554-137.557 100.438-100.438 67.686 67.686c9.888 9.759 23.223 15.231 37.116 15.231 13.895 0 27.231-5.472 37.119-15.231 4.887-4.87 8.761-10.654 11.407-17.025 2.646-6.368 4.006-13.198 4.006-20.094s-1.36-13.726-4.006-20.097c-2.646-6.37-6.52-12.155-11.407-17.022zM382.524 812.223h-170.309v-170.308l61.136-61.138 76.421 76.421c9.888 9.761 23.223 15.234 37.116 15.234 13.895 0 27.231-5.472 37.119-15.234 4.887-4.868 8.761-10.654 11.407-17.022 2.646-6.37 4.006-13.2 4.006-20.097s-1.36-13.726-4.006-20.094c-2.646-6.37-6.52-12.155-11.407-17.025l-76.419-76.419 48.035-48.035 76.419 76.419c9.89 9.761 23.226 15.234 37.119 15.234 13.895 0 27.231-5.472 37.119-15.234 4.884-4.868 8.761-10.652 11.407-17.022 2.643-6.37 4.006-13.198 4.006-20.097 0-6.897-1.362-13.724-4.006-20.094-2.646-6.37-6.523-12.155-11.407-17.022l-76.419-76.421 91.703-91.705 170.308 170.308-349.348 349.351z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["vaccine"],"grid":0},"attrs":[{}],"properties":{"order":882,"id":23,"name":"vaccine","prevSize":32,"code":59670},"setIdx":2,"setId":0,"iconIdx":23},{"icon":{"paths":["M740.151 611.308c-12.425-6.212-73.335-36.147-84.675-40.315-11.339-4.127-19.596-6.171-27.89 6.253-8.257 12.339-31.976 40.274-39.188 48.527-7.257 8.298-14.469 9.298-26.849 3.127-12.384-6.253-52.323-19.302-99.642-61.491-36.813-32.853-61.699-73.417-68.912-85.842-7.212-12.384-0.792-19.094 5.42-25.265 5.584-5.543 12.38-14.466 18.592-21.678 6.212-7.253 8.253-12.425 12.384-20.719 4.168-8.257 2.082-15.469-1.044-21.681-3.086-6.209-27.849-67.203-38.188-92.009-10.045-24.139-20.262-20.845-27.849-21.262-7.253-0.333-15.508-0.417-23.763-0.417s-21.679 3.085-33.019 15.509c-11.381 12.382-43.358 42.357-43.358 103.351 0 60.952 44.359 119.859 50.571 128.157 6.212 8.253 87.341 133.41 211.621 187.064 29.6 12.756 52.654 20.388 70.622 26.057 29.686 9.462 56.699 8.127 78.046 4.919 23.764-3.543 73.291-29.976 83.63-58.907 10.298-28.935 10.298-53.74 7.212-58.911-3.086-5.168-11.339-8.253-23.764-14.466zM514.103 919.941h-0.167c-73.813 0.014-146.275-19.828-209.784-57.45l-15.009-8.922-156.005 40.943 41.649-152.088-9.797-15.592c-41.268-65.69-63.107-141.715-62.994-219.293 0.084-227.212 184.939-412.067 412.276-412.067 110.063 0 213.538 42.941 291.335 120.819 38.369 38.213 68.782 83.655 89.477 133.696 20.695 50.043 31.263 103.694 31.089 157.846-0.082 227.212-184.938 412.109-412.068 412.109zM864.803 157.132c-45.933-46.238-100.588-82.9-160.795-107.861s-124.768-37.726-189.945-37.555c-273.239 0-495.699 222.418-495.782 495.782-0.042 87.385 22.763 172.681 66.163 247.849l-70.332 256.939 262.816-68.956c72.704 39.612 154.174 60.368 236.968 60.368h0.208c273.241 0 495.701-222.42 495.783-495.824 0.201-65.15-12.517-129.693-37.42-189.898-24.904-60.204-61.495-114.872-107.663-160.843z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["whatsapp"],"grid":0},"attrs":[{}],"properties":{"order":881,"id":24,"name":"whatsapp","prevSize":32,"code":59671},"setIdx":2,"setId":0,"iconIdx":24},{"icon":{"paths":["M959.36 218.208c-3.072-50.24-44.384-90.112-95.36-90.112h-96v-32.064c0-53.024-43.008-96-96-96h-320c-53.024 0-96 42.976-96 96v32.032h-96c-51.040 0-92.32 39.872-95.392 90.112h-0.608v69.856c0 35.328 28.672 64 64 64v0 544c0 70.688 57.312 128 128 128h512c70.688 0 128-57.312 128-128v-544c35.328 0 64-28.672 64-64v-69.824h-0.64zM320 96.064c0-17.696 14.304-32 32-32h320c17.696 0 32 14.304 32 32v32h-384v-32zM832 896.064c0 35.264-28.736 64-64 64h-512c-35.296 0-64-28.736-64-64v-544h640v544zM896 256.032v32h-768v-63.968c0-17.696 14.304-32 32-32h704c17.696 0 32 14.304 32 32v31.968zM288 896.192h64c17.696 0 32-14.304 32-32v-416c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v416c0 17.696 14.304 32 32 32zM288 448.16h64v416h-64v-416zM480 896.192h64c17.696 0 32-14.304 32-32v-416c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v416c0 17.696 14.304 32 32 32zM480 448.16h64v416h-64v-416zM672 896.192h64c17.696 0 32-14.304 32-32v-416c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v416c0 17.696 14.304 32 32 32zM672 448.16h64v416h-64v-416z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["trash"],"grid":0},"attrs":[{}],"properties":{"order":880,"id":25,"name":"trash","prevSize":32,"code":59673},"setIdx":2,"setId":0,"iconIdx":25},{"icon":{"paths":["M960 1024h-896c-35.328 0-64-28.672-64-64v-896c0-35.328 28.672-64 64-64h768l192 192v768c0 35.328-28.672 64-64 64zM256 864c0 17.696 14.336 32 32 32h448c17.696 0 32-14.304 32-32v-256c0-17.696-14.304-32-32-32h-448c-17.664 0-32 14.304-32 32v256zM704 160c0-17.696-14.304-32-32-32s-32 14.304-32 32v96c0 17.696 14.304 32 32 32s32-14.304 32-32v-96zM896 224l-96-96h-32v224c0 17.696-14.304 32-32 32h-448c-17.664 0-32-14.304-32-32v-224h-96c-17.664 0-32 14.304-32 32v704c0 17.696 14.336 32 32 32h32v-352c0-17.696 14.336-32 32-32h576c17.696 0 32 14.304 32 32v352h32c17.696 0 32-14.304 32-32v-640z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["save"],"grid":0},"attrs":[{}],"properties":{"order":893,"id":26,"name":"save","prevSize":32,"code":59674},"setIdx":2,"setId":0,"iconIdx":26},{"icon":{"paths":["M1014.592 228.256l-90.848-90.848c-12.576-12.576-32.832-12.576-45.408 0l-464.48 490.368-266.24-266.368c-12.704-12.704-33.312-12.704-46.016 0l-92.032 92.096c-12.704 12.672-12.704 33.28 0 46.016l378.656 387.456c7.328 7.36 17.28 9.888 26.848 8.64 9.888 1.472 20.192-1.024 27.776-8.64l571.744-613.28c12.544-12.544 12.544-32.896 0-45.44z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["checkmark"],"grid":0},"attrs":[{}],"properties":{"order":894,"id":27,"name":"checkmark","prevSize":32,"code":59675},"setIdx":2,"setId":0,"iconIdx":27},{"icon":{"paths":["M28.479 777.203v207.74c0 18.172 14.697 32.866 32.869 32.866h815.96c18.172 0 32.87-14.694 32.87-32.866v-207.74c0-18.172-14.797-32.87-32.87-32.87h-80.333c-18.074 0-32.87 14.797-32.87 32.87v94.336h-589.553v-94.336c0-18.172-14.697-32.87-32.869-32.87h-80.335c-18.172 0-32.869 14.797-32.869 32.87z","M343.366 156.375h251.928c19.362 0 35.055-15.69 35.055-35.054v-68.518c0-19.364-15.693-35.053-35.055-35.053h-251.928c-19.364 0-35.054 15.69-35.054 35.053v68.518c0 19.364 15.69 35.054 35.054 35.054z","M306.225 361.315h-128.695c-21.251 0-39.621 10.228-46.97 25.918-5.76 12.512-3.674 26.513 5.66 37.536l291.849 341.994c9.331 10.923 24.329 17.178 41.207 17.178 16.883 0 31.974-6.255 41.31-17.178l291.849-342.094c9.331-10.923 11.418-24.925 5.658-37.536-7.249-15.789-25.719-25.918-46.869-25.918h-133.163v-121.346c0-18.172-14.699-32.869-32.87-32.869h-256.097c-18.073 0-32.869 14.796-32.869 32.869v121.446z"],"width":939,"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["download"],"grid":0},"attrs":[{},{},{}],"properties":{"order":895,"id":28,"name":"download","prevSize":32,"code":59676},"setIdx":2,"setId":0,"iconIdx":28},{"icon":{"paths":["M587 752h-150c-24.936 0-45-20.064-45-45v-314.997h-164.436c-33.376 0-50.064-40.312-26.436-63.936l285.184-285.372c14.064-14.064 37.124-14.064 51.188 0l285.372 285.372c23.624 23.624 6.936 63.936-26.436 63.936h-164.436v314.997c0 24.936-20.064 45-45 45zM991.996 737v210c0 24.936-20.064 45-45 45h-869.994c-24.936 0-45-20.064-45-45v-210c0-24.936 20.064-45 45-45h255v15c0 57.936 47.064 105 105 105h150c57.936 0 105-47.064 105-105v-15h255c24.936 0 45 20.064 45 45zM759.5 901.996c0-20.624-16.876-37.5-37.5-37.5s-37.5 16.876-37.5 37.5 16.876 37.5 37.5 37.5 37.5-16.876 37.5-37.5zM879.496 901.996c0-20.624-16.876-37.5-37.5-37.5s-37.5 16.876-37.5 37.5 16.876 37.5 37.5 37.5 37.5-16.876 37.5-37.5z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["upload"],"grid":0},"attrs":[{}],"properties":{"order":896,"id":29,"name":"upload","prevSize":32,"code":59677},"setIdx":2,"setId":0,"iconIdx":29},{"icon":{"paths":["M128 337.963l359.552 251.691c14.507 10.027 33.92 10.496 48.939 0l359.509-251.691v430.037c0 11.605-4.693 22.229-12.587 30.080s-18.475 12.587-30.080 12.587h-682.667c-11.605 0-22.229-4.693-30.080-12.587s-12.587-18.475-12.587-30.080zM42.667 255.275c0 0.427 0 0.853 0 1.28v511.445c0 35.328 14.507 67.371 37.547 90.453s55.125 37.547 90.453 37.547h682.667c35.328 0 67.371-14.507 90.453-37.547s37.547-55.125 37.547-90.453v-511.488c0-0.427 0-0.853 0-1.28-0.213-35.029-14.635-66.773-37.547-89.685-23.083-23.040-55.125-37.547-90.453-37.547h-682.667c-35.328 0-67.371 14.507-90.453 37.547-22.912 22.912-37.333 54.656-37.547 89.728zM891.477 236.971l-379.477 265.6-379.477-265.6c2.048-4.096 4.779-7.808 8.021-11.051 7.893-7.893 18.517-12.587 30.123-12.587h682.667c11.605 0 22.229 4.693 30.080 12.587 3.243 3.243 5.973 6.997 8.021 11.051z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["email"],"grid":0},"attrs":[{}],"properties":{"order":914,"id":30,"name":"email","prevSize":32,"code":59678},"setIdx":2,"setId":0,"iconIdx":30}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":false,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"autoHost":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16,"quickUsageToken":{"UntitledProject":"ZjQ5ODNjZDkzZGRhNGRlZDg3YmQ2Njc5YTQyNWU2Y2QjMSMxNTY0MDUxMDkxIyMj"},"showGrid":false}}
\ No newline at end of file
diff --git a/Web/weather/src/assets/scss/forms.scss b/Web/weather/src/assets/scss/forms.scss
index 1b03f55..2c3393e 100644
--- a/Web/weather/src/assets/scss/forms.scss
+++ b/Web/weather/src/assets/scss/forms.scss
@@ -61,6 +61,22 @@ input[type="date"]::-webkit-calendar-picker-indicator {
cursor: pointer;
}
+
+.input-date {
+ width: 100%;
+ border: 1px solid $gray;
+ padding: 10px 50px;
+ text-align: center;
+ color: $black;
+ border-radius: 2px;
+ background: $white;
+ background: url(/assets/images/icons/calendar.svg);
+ background-position: right 10px top 15px;
+ background-repeat: no-repeat;
+ background-size: 14px;
+ cursor: pointer;
+}
+
.input-textarea {
border: 1px solid $gray;
padding: 10px;
diff --git a/Web/weather/src/assets/scss/global.scss b/Web/weather/src/assets/scss/global.scss
index f137a31..f80ce44 100644
--- a/Web/weather/src/assets/scss/global.scss
+++ b/Web/weather/src/assets/scss/global.scss
@@ -117,15 +117,20 @@ section {
.tooltip {
display: block;
- padding: 10px 30px;
+ padding: 10px 20px;
.title {
display: block;
- font-weight: bold;
+ font-size: $font-20;
+ color: $black;
+ padding: 5px;
+ border-bottom: 2px solid $light-gray;
}
+
.item {
display: block;
- padding: 5px 0;
+ padding: 5px;
+ font-size: $font-16;
border-bottom: 1px dotted $light-gray;
}
}
diff --git a/Web/weather/src/assets/scss/icons.scss b/Web/weather/src/assets/scss/icons.scss
index cb567f5..15534c1 100644
--- a/Web/weather/src/assets/scss/icons.scss
+++ b/Web/weather/src/assets/scss/icons.scss
@@ -25,6 +25,27 @@
}
+.icon-device_thermostat:before {
+ content: "\e91f";
+}
+.icon-near_me:before {
+ content: "\e920";
+}
+.icon-play_for_work:before {
+ content: "\e921";
+}
+.icon-opacity:before {
+ content: "\e922";
+}
+.icon-watch_later:before {
+ content: "\e923";
+}
+.icon-wind:before {
+ content: "\e924";
+}
+.icon-compass:before {
+ content: "\e925";
+}
.icon-angle-right:before {
content: "\e900";
}