Update plasma
|
@ -0,0 +1,10 @@
|
|||
import QtQuick 2.12
|
||||
import org.kde.plasma.configuration 2.0
|
||||
|
||||
ConfigModel {
|
||||
ConfigCategory {
|
||||
name: i18n("General")
|
||||
icon: "preferences-desktop"
|
||||
source: "GeneralConfig.qml"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,41 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
|
||||
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
|
||||
<kcfgfile name=""/>
|
||||
|
||||
<group name="General">
|
||||
<entry name="useCoordinatesIp" type="bool">
|
||||
<default>true</default>
|
||||
</entry>
|
||||
<entry name="latitudeC" type="string">
|
||||
<default>0</default>
|
||||
</entry>
|
||||
<entry name="longitudeC" type="string">
|
||||
<default>0</default>
|
||||
</entry>
|
||||
<entry name="temperatureUnit" type="int">
|
||||
<default>0</default>
|
||||
</entry>
|
||||
<entry name="sunColor" type="color">
|
||||
<default>#ebcb8b</default>
|
||||
</entry>
|
||||
<entry name="moonColor" type="color">
|
||||
<default>#c3e0f0</default>
|
||||
</entry>
|
||||
<entry name="cloudColor" type="color">
|
||||
<default>#dfdfdd</default>
|
||||
</entry>
|
||||
<entry name="bigCloudColor" type="color">
|
||||
<default>#d0d0cd</default>
|
||||
</entry>
|
||||
<entry name="lightningColor" type="color">
|
||||
<default>#7aa9f3</default>
|
||||
</entry>
|
||||
<entry name="generalColor" type="color">
|
||||
<default>#fff</default>
|
||||
</entry>
|
||||
</group>
|
||||
|
||||
</kcfg>
|
|
@ -0,0 +1,95 @@
|
|||
import QtQuick
|
||||
import QtQuick.Controls
|
||||
import Qt.labs.platform
|
||||
import org.kde.kirigami as Kirigami
|
||||
import org.kde.kquickcontrols as KQControls
|
||||
|
||||
Item {
|
||||
id: configRoot
|
||||
|
||||
QtObject {
|
||||
id: unidWeatherValue
|
||||
property var value
|
||||
}
|
||||
|
||||
|
||||
|
||||
signal configurationChanged
|
||||
|
||||
property alias cfg_temperatureUnit: unidWeatherValue.value
|
||||
property alias cfg_latitudeC: latitude.text
|
||||
property alias cfg_longitudeC: longitude.text
|
||||
property alias cfg_useCoordinatesIp: autamateCoorde.checked
|
||||
property alias cfg_generalColor: colorhex.color
|
||||
|
||||
property alias cfg_sunColor: sunColorButton.color
|
||||
property alias cfg_moonColor: moonColorButton.color
|
||||
property alias cfg_cloudColor: cloudColorButton.color
|
||||
property alias cfg_bigCloudColor: bigCloudColorButton.color
|
||||
property alias cfg_lightningColor: lightningColorButton.color
|
||||
|
||||
Kirigami.FormLayout {
|
||||
width: parent.width
|
||||
|
||||
ComboBox {
|
||||
textRole: "text"
|
||||
valueRole: "value"
|
||||
id: positionComboBox
|
||||
Kirigami.FormData.label: i18n("Temperature Unit:")
|
||||
model: [
|
||||
{text: i18n("Celsius (°C)"), value: 0},
|
||||
{text: i18n("Fahrenheit (°F)"), value: 1},
|
||||
]
|
||||
onActivated: unidWeatherValue.value = currentValue
|
||||
Component.onCompleted: currentIndex = indexOfValue(unidWeatherValue.value)
|
||||
}
|
||||
|
||||
CheckBox {
|
||||
id: autamateCoorde
|
||||
Kirigami.FormData.label: i18n('Use IP location')
|
||||
}
|
||||
TextField {
|
||||
id: latitude
|
||||
visible: !autamateCoorde.checked
|
||||
Kirigami.FormData.label: i18n("Latitude:")
|
||||
width: 200
|
||||
}
|
||||
TextField {
|
||||
id: longitude
|
||||
visible: !autamateCoorde.checked
|
||||
Kirigami.FormData.label: i18n("Longitude:")
|
||||
width: 200
|
||||
}
|
||||
|
||||
KQControls.ColorButton {
|
||||
id: colorhex
|
||||
Kirigami.FormData.label: i18n('General Color:')
|
||||
showAlphaChannel: true
|
||||
}
|
||||
KQControls.ColorButton {
|
||||
id: sunColorButton
|
||||
Kirigami.FormData.label: i18n('Sun Color:')
|
||||
showAlphaChannel: true
|
||||
}
|
||||
KQControls.ColorButton {
|
||||
id: moonColorButton
|
||||
Kirigami.FormData.label: i18n('moon Color:')
|
||||
showAlphaChannel: true
|
||||
}
|
||||
KQControls.ColorButton {
|
||||
id: cloudColorButton
|
||||
Kirigami.FormData.label: i18n('Cloud/Rain Color:')
|
||||
showAlphaChannel: true
|
||||
}
|
||||
KQControls.ColorButton {
|
||||
id: bigCloudColorButton
|
||||
Kirigami.FormData.label: i18n('Deepin Cloud Color:')
|
||||
showAlphaChannel: true
|
||||
}
|
||||
KQControls.ColorButton {
|
||||
id: lightningColorButton
|
||||
Kirigami.FormData.label: i18n('Lightning Color:')
|
||||
showAlphaChannel: true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,71 @@
|
|||
import QtQuick
|
||||
import "lib" as Lib
|
||||
import org.kde.kirigami as Kirigami
|
||||
|
||||
Item {
|
||||
|
||||
property int widthTxt: 0
|
||||
Row {
|
||||
id: dayForecast
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
|
||||
Repeater {
|
||||
model: forecastModel
|
||||
delegate: Item {
|
||||
width: parent.width/3
|
||||
height: parent.height
|
||||
Column {
|
||||
width: text.implicitWidth
|
||||
height: parent.height
|
||||
spacing: Kirigami.Units.iconSizes.small/3
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
Kirigami.Heading {
|
||||
id: text
|
||||
height: parent.height/4
|
||||
width: parent.width
|
||||
text: model.date
|
||||
color: txtColor
|
||||
level: 5
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
font.capitalization: Font.Capitalize
|
||||
font.pointSize: height*.5
|
||||
}
|
||||
Lib.Icon {
|
||||
id: logo
|
||||
width: parent.height/4
|
||||
height: width
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
name: model.icon
|
||||
}
|
||||
Column {
|
||||
width: parent.width
|
||||
height: parent.height - text.height - logo.height
|
||||
spacing: 2
|
||||
Kirigami.Heading {
|
||||
width: parent.width
|
||||
text: model.maxTemp
|
||||
color: txtColor
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
font.pointSize: parent.height*.25
|
||||
}
|
||||
Kirigami.Heading {
|
||||
width: parent.width
|
||||
text: model.minTemp
|
||||
color: txtColor
|
||||
opacity: 0.7
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
font.pointSize: parent.height*.25
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,419 @@
|
|||
import QtQuick 2.15
|
||||
import QtQuick.Controls 2.15
|
||||
import org.kde.plasma.plasmoid
|
||||
import "../js/traductor.js" as Traduc
|
||||
import "../js/GetInfoApi.js" as GetInfoApi
|
||||
import "../js/geoCoordinates.js" as GeoCoordinates
|
||||
import "../js/GetCity.js" as GetCity
|
||||
import "../js/GetModelWeather.js" as GetModelWeather
|
||||
|
||||
Item {
|
||||
signal dataChanged // Definir el signal aquí
|
||||
signal simpleDataReady // Definir el signal aquí
|
||||
|
||||
function obtener(texto, indice) {
|
||||
var palabras = texto.split(/\s+/); // Divide el texto en palabras utilizando el espacio como separador
|
||||
return palabras[indice - 1]; // El índice - 1 porque los índices comienzan desde 0 en JavaScript
|
||||
}
|
||||
|
||||
function fahrenheit(temp) {
|
||||
if (temperatureUnit == 0) {
|
||||
return temp;
|
||||
} else {
|
||||
return Math.round((temp * 9 / 5) + 32);
|
||||
}
|
||||
}
|
||||
|
||||
property bool isUpdate: false
|
||||
property string lastUpdate: "0"
|
||||
property int hoursC: 0
|
||||
property string newValuesWeather: "0"
|
||||
property string newValuesForeWeather: "0"
|
||||
property bool active: true// Plasmoid.configuration.weatheCardActive
|
||||
property bool isInExecution: false
|
||||
property string useCoordinatesIp: Plasmoid.configuration.useCoordinatesIp//"true"
|
||||
property string latitudeC: Plasmoid.configuration.manualLatitude
|
||||
property string longitudeC: Plasmoid.configuration.manualLongitude
|
||||
property string temperatureUnit: Plasmoid.configuration.temperatureUnit
|
||||
|
||||
property string latitude: (useCoordinatesIp === "true") ? latitudeIP : (latitudeC === "0") ? latitudeIP : latitudeC
|
||||
property string longitud: (useCoordinatesIp === "true") ? longitudIP : (longitudeC === "0") ? longitudIP : longitudeC
|
||||
|
||||
property var observerCoordenates: latitude + longitud
|
||||
|
||||
property int currentTime: Number(Qt.formatDateTime(new Date(), "h"))
|
||||
|
||||
property string datosweather: "0"
|
||||
property string forecastWeather: "0"
|
||||
property string observer: datosweather + forecastWeather
|
||||
property int retrysCity: 0
|
||||
|
||||
property string oneIcon: asingicon(obtener(forecastWeather, 1))
|
||||
property string twoIcon: asingicon(obtener(forecastWeather, 2))
|
||||
property string threeIcon: asingicon(obtener(forecastWeather, 3))
|
||||
property string fourIcon: asingicon(obtener(forecastWeather, 4))
|
||||
property string fiveIcon: asingicon(obtener(forecastWeather, 5))
|
||||
property string sixIcon: asingicon(obtener(forecastWeather, 6))
|
||||
property string sevenIcon: asingicon(obtener(forecastWeather, 7))
|
||||
property int oneMax: fahrenheit(obtener(forecastWeather, 8))
|
||||
property int twoMax: fahrenheit(obtener(forecastWeather, 9))
|
||||
property int threeMax: fahrenheit(obtener(forecastWeather, 10))
|
||||
property int fourMax: fahrenheit(obtener(forecastWeather, 11))
|
||||
property int fiveMax: fahrenheit(obtener(forecastWeather, 12))
|
||||
property int sixMax: fahrenheit(obtener(forecastWeather, 13))
|
||||
property int sevenMax: fahrenheit(obtener(forecastWeather, 14))
|
||||
property int oneMin: fahrenheit(obtener(forecastWeather, 15))
|
||||
property int twoMin: fahrenheit(obtener(forecastWeather, 16))
|
||||
property int threeMin: fahrenheit(obtener(forecastWeather, 17))
|
||||
property int fourMin: fahrenheit(obtener(forecastWeather, 18))
|
||||
property int fiveMin: fahrenheit(obtener(forecastWeather, 19))
|
||||
property int sixMin: fahrenheit(obtener(forecastWeather, 20))
|
||||
property int sevenMin: fahrenheit(obtener(forecastWeather, 21))
|
||||
|
||||
property string day: (Qt.formatDateTime(new Date(), "yyyy-MM-dd"))
|
||||
property string therday: Qt.formatDateTime(new Date(new Date().getTime() + (numberOfDays * 24 * 60 * 60 * 1000)), "yyyy-MM-dd")
|
||||
|
||||
property string finDay: Qt.formatDateTime(new Date(new Date().getTime() + (1 * 24 * 60 * 60 * 1000)), "yyyy-MM-dd")
|
||||
|
||||
property int numberOfDays: 6
|
||||
property string currentTemperature: datosweather !== "0" ? fahrenheit(obtener(datosweather, 1)) : "?"
|
||||
property string codeleng: ((Qt.locale().name)[0] + (Qt.locale().name)[1])
|
||||
property string codeweather: obtener(datosweather, 4)
|
||||
property string codeweatherTomorrow: obtener(forecastWeather, 2)
|
||||
property string codeweatherDayAftertomorrow: obtener(forecastWeather, 3)
|
||||
property string codeweatherTwoDaysAfterTomorrow: obtener(forecastWeather, 4)
|
||||
property string minweatherCurrent: fahrenheit(obtener(datosweather, 2))
|
||||
property string maxweatherCurrent: fahrenheit(obtener(datosweather, 3))
|
||||
|
||||
property var tempHours: [fahrenheit(obtener(datosweather, 9)), fahrenheit(obtener(datosweather, 10)), fahrenheit(obtener(datosweather, 11)), fahrenheit(obtener(datosweather, 12)), fahrenheit(obtener(datosweather, 13))]
|
||||
|
||||
|
||||
property var iconHours: [asingicon(obtener(datosweather, 14)), asingicon(obtener(datosweather, 15)), asingicon(obtener(datosweather, 16)), asingicon(obtener(datosweather, 17)), asingicon(obtener(datosweather, 18)) ]
|
||||
|
||||
property string minweatherTomorrow: twoMin
|
||||
property string maxweatherTomorrow: twoMax
|
||||
property string minweatherDayAftertomorrow: threeMin
|
||||
property string maxweatherDayAftertomorrow: threeMax
|
||||
property string minweatherTwoDaysAfterTomorrow: fourMax
|
||||
property string maxweatherTwoDaysAfterTomorrow: fourMax
|
||||
property string iconWeatherCurrent: asingicon(codeweather)
|
||||
property string uvindex: uvIndexLevelAssignment(obtener(datosweather, 7))
|
||||
property string windSpeed: obtener(datosweather, 6)
|
||||
|
||||
property string weatherLongtext: i18n(textWeather(codeweather))
|
||||
property string weatherShottext: i18n(shortTextWeather(codeweather))
|
||||
|
||||
property string probabilidadDeLLuvia: obtener(datosweather, 5)
|
||||
property string textProbability: Traduc.rainProbabilityText(codeleng)
|
||||
|
||||
property string completeCoordinates: ""
|
||||
property string oldCompleteCoordinates: "1"
|
||||
property string latitudeIP: completeCoordinates.substring(0, (completeCoordinates.indexOf(' ')) - 1)
|
||||
property string longitudIP: completeCoordinates.substring(completeCoordinates.indexOf(' ') + 1)
|
||||
|
||||
property string uvtext: Traduc.uvRadiationText(codeleng)
|
||||
property string windSpeedText: Traduc.windSpeedText(codeleng)
|
||||
property int isDay: obtener(datosweather, 8)
|
||||
property string city: "unk"
|
||||
property string prefixIcon: isDay === 1 ? "" : "-night"
|
||||
|
||||
Component.onCompleted: {
|
||||
updateWeather(1);
|
||||
}
|
||||
|
||||
function uvIndexLevelAssignment(nivel) {
|
||||
if (nivel < 3) {
|
||||
return nivel + " " + Traduc.lavelUV(codeleng, 0);
|
||||
} else {
|
||||
if (nivel < 6) {
|
||||
return nivel + " " + Traduc.lavelUV(codeleng, 1);
|
||||
} else {
|
||||
if (nivel < 8) {
|
||||
return nivel + " " + Traduc.lavelUV(codeleng, 2);
|
||||
} else {
|
||||
if (nivel < 11) {
|
||||
return nivel + " " + Traduc.lavelUV(codeleng, 3);
|
||||
} else {
|
||||
return nivel + " " + Traduc.lavelUV(codeleng, 4);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function getCoordinatesWithIp() {
|
||||
GeoCoordinates.obtenerCoordenadas(function(result) {
|
||||
|
||||
completeCoordinates = result;
|
||||
retryCoordinate.start()
|
||||
});
|
||||
}
|
||||
|
||||
onObserverCoordenatesChanged: {
|
||||
console.log("Coordenadas cambiaron, actualizando clima");
|
||||
if (latitude && longitud && latitude !== "0" && longitud !== "0") {
|
||||
updateWeather(2);
|
||||
getCityFuncion();
|
||||
} else {
|
||||
console.warn("Coordenadas inválidas, reintentando...");
|
||||
retryCoordinate.start();
|
||||
}
|
||||
}
|
||||
|
||||
function getCityFuncion() {
|
||||
|
||||
if (!latitude || !longitud || latitude === "0" || longitud === "0") {
|
||||
console.error("Coordenadas inválidas para la solicitud de ciudad");
|
||||
return;
|
||||
}
|
||||
GetCity.getNameCity(latitude, longitud, codeleng, function(result) {
|
||||
|
||||
city = result;
|
||||
retrycity.start()
|
||||
});
|
||||
}
|
||||
|
||||
function getWeatherApi() {
|
||||
GetInfoApi.obtenerDatosClimaticos(latitude, longitud, day, finDay, currentTime, function(result) {
|
||||
|
||||
if (isUpdate) {
|
||||
newValuesWeather = result;
|
||||
} else {
|
||||
datosweather = result;
|
||||
}
|
||||
getForecastWeather()
|
||||
retry.start()
|
||||
});
|
||||
}
|
||||
|
||||
function getForecastWeather() {
|
||||
GetModelWeather.GetForecastWeather(latitude, longitud, day, therday, function(result) {
|
||||
if (isUpdate) {
|
||||
newValuesForeWeather = result
|
||||
} else {
|
||||
forecastWeather = result
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
function asingicon(x, b) {
|
||||
let wmocodes = {
|
||||
0: "clear",
|
||||
1: "few-clouds",
|
||||
2: "few-clouds",
|
||||
3: "clouds",
|
||||
51: "showers-scattered",
|
||||
53: "showers-scattered",
|
||||
55: "showers-scattered",
|
||||
56: "showers-scattered",
|
||||
57: "showers-scattered",
|
||||
61: "showers",
|
||||
63: "showers",
|
||||
65: "showers",
|
||||
66: "showers-scattered",
|
||||
67: "showers",
|
||||
71: "snow-scattered",
|
||||
73: "snow",
|
||||
75: "snow",
|
||||
77: "hail",
|
||||
80: "showers",
|
||||
81: "showers",
|
||||
82: "showers",
|
||||
85: "snow-scattered",
|
||||
86: "snow",
|
||||
95: "storm",
|
||||
96: "storm",
|
||||
99: "storm",
|
||||
};
|
||||
var iconName = "weather-" + (wmocodes[x] || "unknown");
|
||||
var iconNamePresicion = iconName + prefixIcon
|
||||
return b === "preciso" ? iconNamePresicion : iconName;
|
||||
}
|
||||
|
||||
function textWeather(x) {
|
||||
let text = {
|
||||
0: "Clear",
|
||||
1: "Mainly clear",
|
||||
2: "Partly cloudy",
|
||||
3: "Overcast",
|
||||
51: "Drizzle light intensity",
|
||||
53: "Drizzle moderate intensity",
|
||||
55: "Drizzle dense intensity",
|
||||
56: "Freezing Drizzle light intensity",
|
||||
57: "Freezing Drizzle dense intensity",
|
||||
61: "Rain slight intensity",
|
||||
63: "Rain moderate intensity",
|
||||
65: "Rain heavy intensity",
|
||||
66: "Freezing Rain light intensity",
|
||||
67: "Freezing Rain heavy intensity",
|
||||
71: "Snowfall slight intensity",
|
||||
73: "Snowfall moderate intensity",
|
||||
75: "Snowfall heavy intensity",
|
||||
77: "Snow grains",
|
||||
80: "Rain showers slight",
|
||||
81: "Rain showers moderate",
|
||||
82: "Rain showers violent",
|
||||
85: "Snow showers slight",
|
||||
86: "Snow showers heavy",
|
||||
95: "Thunderstorm",
|
||||
96: "Thunderstorm with slight hail"
|
||||
};
|
||||
return text[x]
|
||||
}
|
||||
|
||||
function shortTextWeather(x) {
|
||||
let text = {
|
||||
0: "Clear",
|
||||
1: "Clear",
|
||||
2: "Cloudy",
|
||||
3: "Cloudy",
|
||||
51: "Drizzle",
|
||||
53: "Drizzle",
|
||||
55: "Drizzle",
|
||||
56: "Drizzle",
|
||||
57: "Drizzle",
|
||||
61: "Rain",
|
||||
63: "Rain",
|
||||
65: "Rain",
|
||||
66: "Rain",
|
||||
67: "Rain",
|
||||
71: "Snow",
|
||||
73: "Snow",
|
||||
75: "Snow",
|
||||
77: "Hail",
|
||||
80: "Showers",
|
||||
81: "Showers",
|
||||
82: "Showers",
|
||||
85: "Showers",
|
||||
86: "Showers",
|
||||
95: "Storm",
|
||||
96: "Storm",
|
||||
99: "Storm"
|
||||
};
|
||||
return text[x]
|
||||
}
|
||||
|
||||
function updateWeather(x) {
|
||||
if (x === 1) {
|
||||
if (useCoordinatesIp === "true") {
|
||||
getCoordinatesWithIp();
|
||||
} else {
|
||||
if (latitudeC === "0" || longitudC === "0") {
|
||||
getCoordinatesWithIp();
|
||||
} else {
|
||||
getWeatherApi()
|
||||
}
|
||||
}
|
||||
}
|
||||
///
|
||||
if (x === 2) {
|
||||
getWeatherApi();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
onObserverChanged: {
|
||||
if (forecastWeather.length > 3) {
|
||||
lastUpdate = new Date()
|
||||
dataChanged();
|
||||
}
|
||||
}
|
||||
|
||||
onNewValuesForeWeatherChanged: {
|
||||
if (newValuesForeWeather.length > 3) {
|
||||
datosweather = newValuesWeather;
|
||||
forecastWeather = newValuesForeWeather;
|
||||
newValuesWeather = "0";
|
||||
newValuesForeWeather= "0";
|
||||
}
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: retryCoordinate
|
||||
interval: 5000
|
||||
running: false
|
||||
repeat: false
|
||||
onTriggered: {
|
||||
if (completeCoordinates === "") {
|
||||
getCoordinatesWithIp();
|
||||
} else {
|
||||
if (isUpdate) {
|
||||
veri.start()
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Timer {
|
||||
id: retrycity
|
||||
interval: 6000
|
||||
running: false
|
||||
repeat: false
|
||||
onTriggered: {
|
||||
if (city === "unk" && retrysCity < 5) {
|
||||
retrysCity = retrysCity + 1
|
||||
getCityFuncion();
|
||||
}
|
||||
}
|
||||
}
|
||||
Timer {
|
||||
id: retry
|
||||
interval: 5000
|
||||
running: false
|
||||
repeat: false
|
||||
onTriggered: {
|
||||
if (datosweather === "0") {
|
||||
getWeatherApi();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: weatherupdate
|
||||
interval: 900000
|
||||
running: true
|
||||
repeat: true
|
||||
onTriggered: {
|
||||
isUpdate = true
|
||||
oldCompleteCoordinates = completeCoordinates
|
||||
getCoordinatesWithIp()
|
||||
//updateWeather(1);
|
||||
//veri.start()
|
||||
}
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: observateHours
|
||||
interval: 1000
|
||||
running: true
|
||||
repeat: true
|
||||
onTriggered: {
|
||||
hoursC = Qt.formatDateTime(new Date(), "h")
|
||||
}
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: veri
|
||||
interval: 4000
|
||||
running: false
|
||||
repeat: false
|
||||
onTriggered: {
|
||||
//newValuesWeather = "0"
|
||||
if (oldCompleteCoordinates === completeCoordinates) {
|
||||
updateWeather(2)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
onUseCoordinatesIpChanged: {
|
||||
if (active) {
|
||||
updateWeather(1);
|
||||
isInExecution = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="24" cy="24" r="15" fill="#ebcb8b"/>
|
||||
<g fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
<g transform="matrix(.70711 .70711 -.70711 .70711 24 -9.9411)" fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 493 B |
|
@ -0,0 +1,3 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 315 B |
|
@ -0,0 +1,3 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 315 B |
|
@ -0,0 +1,3 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 315 B |
|
@ -0,0 +1,15 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="24" cy="24" r="15" fill="#ebcb8b"/>
|
||||
<g fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
<g transform="matrix(.70711 .70711 -.70711 .70711 24 -9.9411)" fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 493 B |
|
@ -0,0 +1,15 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="24" cy="24" r="15" fill="#ebcb8b"/>
|
||||
<g fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
<g transform="matrix(.70711 .70711 -.70711 .70711 24 -9.9411)" fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 493 B |
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="weather-clouds-bg.svg"
|
||||
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="13.395833"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1024"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="m24.926 22c-0.272 0-0.562 0.013-0.857 0.051-4.712 0.607-4.569 4.65-4.569 4.65-1.93 0.328-3.501 2.01-3.501 3.773 0 1.761 2.01 3.32 3.7 3.773 1 0.27 2.322 0 2.322 0 0.597 1.052 2.564 1.753 3.936 1.753 2.237 0 4.536-0.742 5.065-1.753 0 0 9.263 0.741 11.186 0 2.799-1.079 1.924-4.45 0.062-5.59s-4.296-0.343-4.296-0.343-0.011-2.321-2.644-3.43c-2.634-1.109-4.854 1.347-4.854 1.347s-1.476-4.205-5.549-4.23z"
|
||||
fill="#eceff4"
|
||||
id="path2" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="weather-clouds-night-bg.svg"
|
||||
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="13.395833"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1024"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="m24.926 22c-0.272 0-0.562 0.013-0.857 0.051-4.712 0.607-4.569 4.65-4.569 4.65-1.93 0.328-3.501 2.01-3.501 3.773 0 1.761 2.01 3.32 3.7 3.773 1 0.27 2.322 0 2.322 0 0.597 1.052 2.564 1.753 3.936 1.753 2.237 0 4.536-0.742 5.065-1.753 0 0 9.263 0.741 11.186 0 2.799-1.079 1.924-4.45 0.062-5.59s-4.296-0.343-4.296-0.343-0.011-2.321-2.644-3.43c-2.634-1.109-4.854 1.347-4.854 1.347s-1.476-4.205-5.549-4.23z"
|
||||
fill="#eceff4"
|
||||
id="path2" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="weather-clouds-night-pf.svg"
|
||||
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="13.395833"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1024"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="m14.202 12c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z"
|
||||
fill="#d8d8d8"
|
||||
id="path1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,41 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="weather-clouds-night.svg"
|
||||
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="6.0472361"
|
||||
inkscape:cx="23.895214"
|
||||
inkscape:cy="19.099635"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1024"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607"
|
||||
fill="#eceff4"
|
||||
id="path1" />
|
||||
<path
|
||||
d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z"
|
||||
fill="#d8d8d8"
|
||||
id="path2" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,41 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="weather-clouds-night.svg"
|
||||
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="6.0472361"
|
||||
inkscape:cx="23.895214"
|
||||
inkscape:cy="19.099635"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1024"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607"
|
||||
fill="#eceff4"
|
||||
id="path1" />
|
||||
<path
|
||||
d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z"
|
||||
fill="#d8d8d8"
|
||||
id="path2" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="weather-clouds-pf.svg"
|
||||
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="13.395833"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1024"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="m14.202 12c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z"
|
||||
fill="#d8d8d8"
|
||||
id="path1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,72 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
id="svg9"
|
||||
sodipodi:docname="weather-few-clouds-bg.svg"
|
||||
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs9" />
|
||||
<sodipodi:namedview
|
||||
id="namedview9"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="13.395833"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1024"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg9" />
|
||||
<circle
|
||||
cx="24"
|
||||
cy="24"
|
||||
r="15"
|
||||
fill="#ebcb8b"
|
||||
id="circle1" />
|
||||
<g
|
||||
fill="#ebcb8b"
|
||||
id="g4">
|
||||
<path
|
||||
d="m24 3 1.5 4h-3z"
|
||||
id="path1" />
|
||||
<path
|
||||
d="m24 45-1.5-4h3z"
|
||||
id="path2" />
|
||||
<path
|
||||
d="m45 24-4 1.5v-3z"
|
||||
id="path3" />
|
||||
<path
|
||||
d="m3 24 4-1.5v3z"
|
||||
id="path4" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(.70711 .70711 -.70711 .70711 24 -9.9411)"
|
||||
fill="#ebcb8b"
|
||||
id="g8">
|
||||
<path
|
||||
d="m24 3 1.5 4h-3z"
|
||||
id="path5" />
|
||||
<path
|
||||
d="m24 45-1.5-4h3z"
|
||||
id="path6" />
|
||||
<path
|
||||
d="m45 24-4 1.5v-3z"
|
||||
id="path7" />
|
||||
<path
|
||||
d="m3 24 4-1.5v3z"
|
||||
id="path8" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m23.413 7c-9.06 0-16.413 7.611-16.413 17s7.348 17 16.413 17c2.49 0 4.848-0.579 6.962-1.607-5.582-2.714-9.45-8.583-9.45-15.393 0-6.809 3.868-12.679 9.45-15.393-2.114-1.028-4.472-1.607-6.962-1.607" fill="#eceff4"/>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
id="svg9"
|
||||
sodipodi:docname="weather-few-clouds-pf.svg"
|
||||
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs9" />
|
||||
<sodipodi:namedview
|
||||
id="namedview9"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="13.395833"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1024"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg9" />
|
||||
<path
|
||||
d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z"
|
||||
fill="#eceff4"
|
||||
id="path9" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,16 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="24" cy="24" r="15" fill="#ebcb8b"/>
|
||||
<g fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
<g transform="matrix(.70711 .70711 -.70711 .70711 24 -9.9411)" fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#eceff4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 911 B |
|
@ -0,0 +1,16 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="24" cy="24" r="15" fill="#ebcb8b"/>
|
||||
<g fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
<g transform="matrix(.70711 .70711 -.70711 .70711 24 -9.9411)" fill="#ebcb8b">
|
||||
<path d="m24 3 1.5 4h-3z"/>
|
||||
<path d="m24 45-1.5-4h3z"/>
|
||||
<path d="m45 24-4 1.5v-3z"/>
|
||||
<path d="m3 24 4-1.5v3z"/>
|
||||
</g>
|
||||
<path d="m23.2 25c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#eceff4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 911 B |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="matrix(1.003 0 0 .97867 .88 .31279)" fill="#eceff4">
|
||||
<path d="m27.18 9.898c-6.03 0-10.919 1.01-10.919 2.265s4.889 2.265 10.919 2.265 10.919-1.01 10.919-2.265-4.889-2.265-10.919-2.265zm-8.474 6.442c-6.964 0-12.607 0.955-12.607 2.161s5.643 2.203 12.607 2.203 12.616-0.997 12.616-2.203-5.653-2.161-12.616-2.161z"/>
|
||||
<path d="m29.08 22.508c-6.03 0-10.919 1.01-10.919 2.265s4.889 2.265 10.919 2.265 10.919-1.01 10.919-2.265-4.889-2.265-10.919-2.265zm-8.474 6.442c-6.964 0-12.607 0.955-12.607 2.161s5.643 2.203 12.607 2.203 12.616-0.997 12.616-2.203-5.653-2.161-12.616-2.161zm7.346 6.213c-4.649 0-8.417 0.738-8.417 1.662 0 0.925 3.768 1.683 8.417 1.683s8.417-0.758 8.417-1.683-3.768-1.662-8.417-1.662z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 815 B |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="matrix(1.003 0 0 .97867 .88 .31279)" fill="#eceff4">
|
||||
<path d="m27.18 9.898c-6.03 0-10.919 1.01-10.919 2.265s4.889 2.265 10.919 2.265 10.919-1.01 10.919-2.265-4.889-2.265-10.919-2.265zm-8.474 6.442c-6.964 0-12.607 0.955-12.607 2.161s5.643 2.203 12.607 2.203 12.616-0.997 12.616-2.203-5.653-2.161-12.616-2.161z"/>
|
||||
<path d="m29.08 22.508c-6.03 0-10.919 1.01-10.919 2.265s4.889 2.265 10.919 2.265 10.919-1.01 10.919-2.265-4.889-2.265-10.919-2.265zm-8.474 6.442c-6.964 0-12.607 0.955-12.607 2.161s5.643 2.203 12.607 2.203 12.616-0.997 12.616-2.203-5.653-2.161-12.616-2.161zm7.346 6.213c-4.649 0-8.417 0.738-8.417 1.662 0 0.925 3.768 1.683 8.417 1.683s8.417-0.758 8.417-1.683-3.768-1.662-8.417-1.662z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 815 B |
|
@ -0,0 +1,17 @@
|
|||
<svg enable-background="new" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m5.905 2.386c-0.112-1e-3 -0.226 5e-3 -0.348 0.022-1.942 0.26-1.882 1.996-1.882 1.996-0.795 0.141-1.446 0.864-1.446 1.62s0.831 1.425 1.528 1.62c0.414 0.116 0.955 0 0.955 0 0.246 0.452 1.058 0.752 1.623 0.752 0.922 0 1.865-0.318 2.083-0.752 0 0 3.821 0.318 4.613 0 1.154-0.463 0.795-1.912 0.027-2.401s-1.773-0.145-1.773-0.145-6e-3 -0.996-1.091-1.472-2 0.575-2 0.575-0.609-1.804-2.288-1.815z" fill="#2e3440"/>
|
||||
<circle cx="7.823" cy="12.932" r=".364" fill="#2e3440"/>
|
||||
<circle cx="4.094" cy="10.393" r=".364" fill="#2e3440"/>
|
||||
<circle cx="7.077" cy="10.02" r=".364" fill="#2e3440"/>
|
||||
<circle cx="9.641" cy="10.516" r=".364" fill="#2e3440"/>
|
||||
<circle cx="5.697" cy="11.527" r=".364" fill="#2e3440"/>
|
||||
<circle cx="5.647" cy="9.06" r=".364" fill="#2e3440"/>
|
||||
<circle cx="8.556" cy="8.889" r=".364" fill="#2e3440"/>
|
||||
<circle cx="10.775" cy="8.963" r=".364" fill="#2e3440"/>
|
||||
<circle cx="4.045" cy="8.544" r=".364" fill="#2e3440"/>
|
||||
<circle cx="3.379" cy="12.07" r=".364" fill="#2e3440"/>
|
||||
<circle cx="12.03" cy="10.22" r=".364" fill="#2e3440"/>
|
||||
<circle cx="11.02" cy="12.143" r=".364" fill="#2e3440"/>
|
||||
<circle cx="8.162" cy="11.305" r=".364" fill="#2e3440"/>
|
||||
<circle cx="12.55" cy="8.593" r=".364" fill="#2e3440"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,17 @@
|
|||
<svg enable-background="new" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m5.905 2.386c-0.112-1e-3 -0.226 5e-3 -0.348 0.022-1.942 0.26-1.882 1.996-1.882 1.996-0.795 0.141-1.446 0.864-1.446 1.62s0.831 1.425 1.528 1.62c0.414 0.116 0.955 0 0.955 0 0.246 0.452 1.058 0.752 1.623 0.752 0.922 0 1.865-0.318 2.083-0.752 0 0 3.821 0.318 4.613 0 1.154-0.463 0.795-1.912 0.027-2.401s-1.773-0.145-1.773-0.145-6e-3 -0.996-1.091-1.472-2 0.575-2 0.575-0.609-1.804-2.288-1.815z" fill="#2e3440"/>
|
||||
<circle cx="7.823" cy="12.932" r=".364" fill="#2e3440"/>
|
||||
<circle cx="4.094" cy="10.393" r=".364" fill="#2e3440"/>
|
||||
<circle cx="7.077" cy="10.02" r=".364" fill="#2e3440"/>
|
||||
<circle cx="9.641" cy="10.516" r=".364" fill="#2e3440"/>
|
||||
<circle cx="5.697" cy="11.527" r=".364" fill="#2e3440"/>
|
||||
<circle cx="5.647" cy="9.06" r=".364" fill="#2e3440"/>
|
||||
<circle cx="8.556" cy="8.889" r=".364" fill="#2e3440"/>
|
||||
<circle cx="10.775" cy="8.963" r=".364" fill="#2e3440"/>
|
||||
<circle cx="4.045" cy="8.544" r=".364" fill="#2e3440"/>
|
||||
<circle cx="3.379" cy="12.07" r=".364" fill="#2e3440"/>
|
||||
<circle cx="12.03" cy="10.22" r=".364" fill="#2e3440"/>
|
||||
<circle cx="11.02" cy="12.143" r=".364" fill="#2e3440"/>
|
||||
<circle cx="8.162" cy="11.305" r=".364" fill="#2e3440"/>
|
||||
<circle cx="12.55" cy="8.593" r=".364" fill="#2e3440"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,10 @@
|
|||
<svg enable-background="new" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m5.905 2.546c-0.112-1e-3 -0.226 5e-3 -0.348 0.022-1.942 0.26-1.882 1.996-1.882 1.996-0.795 0.141-1.446 0.864-1.446 1.62s0.831 1.425 1.528 1.62c0.414 0.116 0.955 0 0.955 0 0.246 0.452 1.058 0.752 1.623 0.752 0.922 0 1.865-0.318 2.083-0.752 0 0 3.821 0.318 4.613 0 1.154-0.463 0.795-1.912 0.027-2.401s-1.773-0.145-1.773-0.145-6e-3 -0.996-1.091-1.472-2 0.575-2 0.575-0.609-1.804-2.288-1.815z" fill="#2e3440"/>
|
||||
<circle cx="11.478" cy="9.04" r=".727" fill="#2e3440"/>
|
||||
<circle cx="8.187" cy="12.727" r=".727" fill="#2e3440"/>
|
||||
<circle cx="12.03" cy="12.08" r=".727" fill="#2e3440"/>
|
||||
<circle cx="7.274" cy="10.01" r=".727" fill="#2e3440"/>
|
||||
<circle cx="4.193" cy="9.122" r=".727" fill="#2e3440"/>
|
||||
<circle cx="5.08" cy="11.464" r=".727" fill="#2e3440"/>
|
||||
<circle cx="9.863" cy="10.773" r=".727" fill="#2e3440"/>
|
||||
</svg>
|
After Width: | Height: | Size: 910 B |
|
@ -0,0 +1,10 @@
|
|||
<svg enable-background="new" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m5.905 2.546c-0.112-1e-3 -0.226 5e-3 -0.348 0.022-1.942 0.26-1.882 1.996-1.882 1.996-0.795 0.141-1.446 0.864-1.446 1.62s0.831 1.425 1.528 1.62c0.414 0.116 0.955 0 0.955 0 0.246 0.452 1.058 0.752 1.623 0.752 0.922 0 1.865-0.318 2.083-0.752 0 0 3.821 0.318 4.613 0 1.154-0.463 0.795-1.912 0.027-2.401s-1.773-0.145-1.773-0.145-6e-3 -0.996-1.091-1.472-2 0.575-2 0.575-0.609-1.804-2.288-1.815z" fill="#2e3440"/>
|
||||
<circle cx="11.478" cy="9.04" r=".727" fill="#2e3440"/>
|
||||
<circle cx="8.187" cy="12.727" r=".727" fill="#2e3440"/>
|
||||
<circle cx="12.03" cy="12.08" r=".727" fill="#2e3440"/>
|
||||
<circle cx="7.274" cy="10.01" r=".727" fill="#2e3440"/>
|
||||
<circle cx="4.193" cy="9.122" r=".727" fill="#2e3440"/>
|
||||
<circle cx="5.08" cy="11.464" r=".727" fill="#2e3440"/>
|
||||
<circle cx="9.863" cy="10.773" r=".727" fill="#2e3440"/>
|
||||
</svg>
|
After Width: | Height: | Size: 910 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m14.202 12c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
<path d="m24.926 22c-0.272 0-0.562 0.013-0.857 0.051-4.712 0.607-4.569 4.65-4.569 4.65-1.93 0.328-3.501 2.01-3.501 3.773 0 1.761 2.01 3.32 3.7 3.773 1 0.27 2.322 0 2.322 0 0.597 1.052 2.564 1.753 3.936 1.753 2.237 0 4.536-0.742 5.065-1.753 0 0 9.263 0.741 11.186 0 2.799-1.079 1.924-4.45 0.062-5.59s-4.296-0.343-4.296-0.343-0.011-2.321-2.644-3.43c-2.634-1.109-4.854 1.347-4.854 1.347s-1.476-4.205-5.549-4.23z" fill="#eceff4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 940 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m14.202 12c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
<path d="m24.926 22c-0.272 0-0.562 0.013-0.857 0.051-4.712 0.607-4.569 4.65-4.569 4.65-1.93 0.328-3.501 2.01-3.501 3.773 0 1.761 2.01 3.32 3.7 3.773 1 0.27 2.322 0 2.322 0 0.597 1.052 2.564 1.753 3.936 1.753 2.237 0 4.536-0.742 5.065-1.753 0 0 9.263 0.741 11.186 0 2.799-1.079 1.924-4.45 0.062-5.59s-4.296-0.343-4.296-0.343-0.011-2.321-2.644-3.43c-2.634-1.109-4.854 1.347-4.854 1.347s-1.476-4.205-5.549-4.23z" fill="#eceff4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 940 B |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="matrix(1.003 0 0 .97867 .88 .31279)" fill="#eceff4">
|
||||
<path d="m27.18 9.898c-6.03 0-10.919 1.01-10.919 2.265s4.889 2.265 10.919 2.265 10.919-1.01 10.919-2.265-4.889-2.265-10.919-2.265zm-8.474 6.442c-6.964 0-12.607 0.955-12.607 2.161s5.643 2.203 12.607 2.203 12.616-0.997 12.616-2.203-5.653-2.161-12.616-2.161z"/>
|
||||
<path d="m29.08 22.508c-6.03 0-10.919 1.01-10.919 2.265s4.889 2.265 10.919 2.265 10.919-1.01 10.919-2.265-4.889-2.265-10.919-2.265zm-8.474 6.442c-6.964 0-12.607 0.955-12.607 2.161s5.643 2.203 12.607 2.203 12.616-0.997 12.616-2.203-5.653-2.161-12.616-2.161zm7.346 6.213c-4.649 0-8.417 0.738-8.417 1.662 0 0.925 3.768 1.683 8.417 1.683s8.417-0.758 8.417-1.683-3.768-1.662-8.417-1.662z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 815 B |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="matrix(1.003 0 0 .97867 .88 .31279)" fill="#eceff4">
|
||||
<path d="m27.18 9.898c-6.03 0-10.919 1.01-10.919 2.265s4.889 2.265 10.919 2.265 10.919-1.01 10.919-2.265-4.889-2.265-10.919-2.265zm-8.474 6.442c-6.964 0-12.607 0.955-12.607 2.161s5.643 2.203 12.607 2.203 12.616-0.997 12.616-2.203-5.653-2.161-12.616-2.161z"/>
|
||||
<path d="m29.08 22.508c-6.03 0-10.919 1.01-10.919 2.265s4.889 2.265 10.919 2.265 10.919-1.01 10.919-2.265-4.889-2.265-10.919-2.265zm-8.474 6.442c-6.964 0-12.607 0.955-12.607 2.161s5.643 2.203 12.607 2.203 12.616-0.997 12.616-2.203-5.653-2.161-12.616-2.161zm7.346 6.213c-4.649 0-8.417 0.738-8.417 1.662 0 0.925 3.768 1.683 8.417 1.683s8.417-0.758 8.417-1.683-3.768-1.662-8.417-1.662z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 815 B |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m5.889 3.454c-0.113-1e-3 -0.228 6e-3 -0.351 0.024-1.957 0.284-1.896 2.173-1.896 2.173-0.802 0.153-1.457 0.941-1.457 1.764s0.838 1.552 1.54 1.764c0.417 0.126 0.962 0 0.962 0 0.248 0.492 1.067 0.82 1.636 0.82 0.272 0 0.54-0.037 0.797-0.091 0.014-0.183 0.045-0.361 0.114-0.524 0.078-0.185 0.179-0.358 0.301-0.516 0.112-0.145 0.23-0.28 0.357-0.406l7e-3 -7e-3c0.114-0.109 0.22-0.217 0.315-0.324 0.086-0.097 0.154-0.191 0.206-0.286 0.037-0.067 0.054-0.135 0.054-0.224 0-0.115-0.021-0.157-0.089-0.22l-0.012-0.012c-0.045-0.045-0.138-0.094-0.351-0.094-0.18 0-0.348 0.023-0.509 0.068l-0.012 2e-3c-0.158 0.039-0.332 0.109-0.521 0.212l-0.371 0.202-0.558-1.528 0.267-0.152c0.255-0.145 0.541-0.256 0.852-0.335 0.319-0.086 0.646-0.129 0.977-0.129 0.395 0 0.741 0.056 1.038 0.185 0.272 0.112 0.508 0.262 0.689 0.459 0.172 0.187 0.3 0.404 0.371 0.641 0.063 0.211 0.098 0.421 0.098 0.629 0 0.25-0.05 0.491-0.153 0.707-0.086 0.191-0.196 0.369-0.33 0.531-0.124 0.15-0.257 0.294-0.401 0.43l-3e-3 3e-3 -4e-3 3e-3c-0.01 9e-3 -0.017 0.019-0.027 0.028 1.195 0.079 3.1 0.163 3.644-0.072 1.162-0.505 0.802-2.082 0.028-2.615-0.773-0.533-1.787-0.158-1.787-0.158s-6e-3 -1.084-1.099-1.602c-1.094-0.518-2.02 0.626-2.02 0.626s-0.613-1.966-2.305-1.977z" fill="#2e3440" opacity=".4"/>
|
||||
<g fill="#2e3440">
|
||||
<path d="m8.02 6.932q-0.317 0-0.608 0.082-0.29 0.073-0.608 0.245l-0.308-0.844q0.336-0.19 0.762-0.299 0.435-0.118 0.889-0.118 0.544 0 0.898 0.154 0.354 0.145 0.562 0.372 0.209 0.227 0.29 0.499 0.082 0.272 0.082 0.526 0 0.308-0.118 0.553-0.109 0.245-0.281 0.454t-0.372 0.399q-0.2 0.181-0.372 0.381-0.172 0.19-0.29 0.408-0.109 0.218-0.109 0.49 0 0.045 0 0.109 0 0.054 9e-3 0.109h-0.943q-0.018-0.091-0.027-0.19-9e-3 -0.109-9e-3 -0.2 0-0.299 0.1-0.535t0.254-0.435q0.154-0.2 0.327-0.372 0.181-0.172 0.336-0.345 0.154-0.172 0.254-0.354 0.1-0.181 0.1-0.399 0-0.299-0.209-0.49-0.2-0.2-0.608-0.2zm0.707 4.898q0 0.317-0.209 0.517t-0.517 0.2q-0.299 0-0.517-0.2-0.209-0.2-0.209-0.517t0.209-0.517q0.218-0.209 0.517-0.209 0.308 0 0.517 0.209 0.209 0.2 0.209 0.517z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m5.889 3.454c-0.113-1e-3 -0.228 6e-3 -0.351 0.024-1.957 0.284-1.896 2.173-1.896 2.173-0.802 0.153-1.457 0.941-1.457 1.764s0.838 1.552 1.54 1.764c0.417 0.126 0.962 0 0.962 0 0.248 0.492 1.067 0.82 1.636 0.82 0.272 0 0.54-0.037 0.797-0.091 0.014-0.183 0.045-0.361 0.114-0.524 0.078-0.185 0.179-0.358 0.301-0.516 0.112-0.145 0.23-0.28 0.357-0.406l7e-3 -7e-3c0.114-0.109 0.22-0.217 0.315-0.324 0.086-0.097 0.154-0.191 0.206-0.286 0.037-0.067 0.054-0.135 0.054-0.224 0-0.115-0.021-0.157-0.089-0.22l-0.012-0.012c-0.045-0.045-0.138-0.094-0.351-0.094-0.18 0-0.348 0.023-0.509 0.068l-0.012 2e-3c-0.158 0.039-0.332 0.109-0.521 0.212l-0.371 0.202-0.558-1.528 0.267-0.152c0.255-0.145 0.541-0.256 0.852-0.335 0.319-0.086 0.646-0.129 0.977-0.129 0.395 0 0.741 0.056 1.038 0.185 0.272 0.112 0.508 0.262 0.689 0.459 0.172 0.187 0.3 0.404 0.371 0.641 0.063 0.211 0.098 0.421 0.098 0.629 0 0.25-0.05 0.491-0.153 0.707-0.086 0.191-0.196 0.369-0.33 0.531-0.124 0.15-0.257 0.294-0.401 0.43l-3e-3 3e-3 -4e-3 3e-3c-0.01 9e-3 -0.017 0.019-0.027 0.028 1.195 0.079 3.1 0.163 3.644-0.072 1.162-0.505 0.802-2.082 0.028-2.615-0.773-0.533-1.787-0.158-1.787-0.158s-6e-3 -1.084-1.099-1.602c-1.094-0.518-2.02 0.626-2.02 0.626s-0.613-1.966-2.305-1.977z" fill="#2e3440" opacity=".4"/>
|
||||
<g fill="#2e3440">
|
||||
<path d="m8.02 6.932q-0.317 0-0.608 0.082-0.29 0.073-0.608 0.245l-0.308-0.844q0.336-0.19 0.762-0.299 0.435-0.118 0.889-0.118 0.544 0 0.898 0.154 0.354 0.145 0.562 0.372 0.209 0.227 0.29 0.499 0.082 0.272 0.082 0.526 0 0.308-0.118 0.553-0.109 0.245-0.281 0.454t-0.372 0.399q-0.2 0.181-0.372 0.381-0.172 0.19-0.29 0.408-0.109 0.218-0.109 0.49 0 0.045 0 0.109 0 0.054 9e-3 0.109h-0.943q-0.018-0.091-0.027-0.19-9e-3 -0.109-9e-3 -0.2 0-0.299 0.1-0.535t0.254-0.435q0.154-0.2 0.327-0.372 0.181-0.172 0.336-0.345 0.154-0.172 0.254-0.354 0.1-0.181 0.1-0.399 0-0.299-0.209-0.49-0.2-0.2-0.608-0.2zm0.707 4.898q0 0.317-0.209 0.517t-0.517 0.2q-0.299 0-0.517-0.2-0.209-0.2-0.209-0.517t0.209-0.517q0.218-0.209 0.517-0.209 0.308 0 0.517 0.209 0.209 0.2 0.209 0.517z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m14.202 12c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
<path d="m24.926 22c-0.272 0-0.562 0.013-0.857 0.051-4.712 0.607-4.569 4.65-4.569 4.65-1.93 0.328-3.501 2.01-3.501 3.773 0 1.761 2.01 3.32 3.7 3.773 1 0.27 2.322 0 2.322 0 0.597 1.052 2.564 1.753 3.936 1.753 2.237 0 4.536-0.742 5.065-1.753 0 0 9.263 0.741 11.186 0 2.799-1.079 1.924-4.45 0.062-5.59s-4.296-0.343-4.296-0.343-0.011-2.321-2.644-3.43c-2.634-1.109-4.854 1.347-4.854 1.347s-1.476-4.205-5.549-4.23z" fill="#eceff4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 940 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m14.202 12c-0.31 0-0.642 0.015-0.979 0.058-5.385 0.693-5.221 5.314-5.221 5.314-2.206 0.375-4 2.299-4 4.312 0 2.01 2.297 3.794 4.228 4.312 1.149 0.308 2.653 0 2.653 0 0.682 1.202 2.93 2 4.498 2 2.556 0 5.184-0.848 5.789-2 0 0 10.587 0.847 12.784 0 3.199-1.233 2.199-5.085 0.071-6.388s-4.909-0.392-4.909-0.392-0.012-2.653-3.02-3.92c-3.01-1.268-5.548 1.539-5.548 1.539s-1.686-4.806-6.342-4.835z" fill="#d8d8d8"/>
|
||||
<path d="m24.926 22c-0.272 0-0.562 0.013-0.857 0.051-4.712 0.607-4.569 4.65-4.569 4.65-1.93 0.328-3.501 2.01-3.501 3.773 0 1.761 2.01 3.32 3.7 3.773 1 0.27 2.322 0 2.322 0 0.597 1.052 2.564 1.753 3.936 1.753 2.237 0 4.536-0.742 5.065-1.753 0 0 9.263 0.741 11.186 0 2.799-1.079 1.924-4.45 0.062-5.59s-4.296-0.343-4.296-0.343-0.011-2.321-2.644-3.43c-2.634-1.109-4.854 1.347-4.854 1.347s-1.476-4.205-5.549-4.23z" fill="#eceff4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 940 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 12c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<path d="m22 20 0.5 12h3l0.5-12h-4zm0 14v4h4v-4h-4z" color="#eceff4" fill="#bf616a"/>
|
||||
</svg>
|
After Width: | Height: | Size: 595 B |
|
@ -0,0 +1,4 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 12c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<path d="m22 20 0.5 12h3l0.5-12h-4zm0 14v4h4v-4h-4z" color="#eceff4" fill="#bf616a"/>
|
||||
</svg>
|
After Width: | Height: | Size: 595 B |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2398 0 0 2.2398 .28046 1.5628)">
|
||||
<path d="m5.367 11.485c-0.797 0.392-2.719 1.835-2.311 2.377 0.408 0.541 1.924-1.543 2.311-2.377zm12.142 0.259c-0.797 0.392-2.724 1.83-2.316 2.372 0.408 0.541 1.928-1.538 2.316-2.372zm-3.066 0.124c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.761 0.398c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.258 0.363c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.963 1.8c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm8.837 0.244c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.165 0.666c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm4.759 0.482c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-7.839 0.214c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377" fill="#eceff4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2398 0 0 2.2398 .28046 1.5628)">
|
||||
<path d="m5.367 11.485c-0.797 0.392-2.719 1.835-2.311 2.377 0.408 0.541 1.924-1.543 2.311-2.377zm12.142 0.259c-0.797 0.392-2.724 1.83-2.316 2.372 0.408 0.541 1.928-1.538 2.316-2.372zm-3.066 0.124c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.761 0.398c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.258 0.363c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.963 1.8c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm8.837 0.244c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.165 0.666c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm4.759 0.482c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-7.839 0.214c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377" fill="#eceff4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2398 0 0 2.2398 .28046 1.5628)">
|
||||
<path d="m5.367 11.485c-0.797 0.392-2.719 1.835-2.311 2.377 0.408 0.541 1.924-1.543 2.311-2.377zm12.142 0.259c-0.797 0.392-2.724 1.83-2.316 2.372 0.408 0.541 1.928-1.538 2.316-2.372zm-3.066 0.124c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.761 0.398c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.258 0.363c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.963 1.8c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm8.837 0.244c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.165 0.666c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm4.759 0.482c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-7.839 0.214c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377" fill="#eceff4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2398 0 0 2.2398 .28046 1.5628)">
|
||||
<path d="m5.367 11.485c-0.797 0.392-2.719 1.835-2.311 2.377 0.408 0.541 1.924-1.543 2.311-2.377zm12.142 0.259c-0.797 0.392-2.724 1.83-2.316 2.372 0.408 0.541 1.928-1.538 2.316-2.372zm-3.066 0.124c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.761 0.398c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.258 0.363c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.963 1.8c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm8.837 0.244c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.165 0.666c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm4.759 0.482c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-7.839 0.214c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377" fill="#eceff4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,10 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2512 0 0 2.2569 -.1421 1.8753)" fill="#eceff4">
|
||||
<path d="m4.574 14.993c-1.224-0.343 0.029-2.66 0.781-3.417 0.362 1 0.443 3.76-0.781 3.417z"/>
|
||||
<path d="m7.435 17.419c-1.393-0.39 0.033-3.03 0.888-3.888 0.412 1.139 0.505 4.278-0.888 3.888"/>
|
||||
<path d="m11.194 15.467c-1.248-0.35 0.03-2.712 0.796-3.485 0.369 1.021 0.452 3.834-0.796 3.485z"/>
|
||||
<path d="m13.478 17.965c-1.465-0.41 0.035-3.183 0.934-4.09 0.433 1.198 0.531 4.5-0.934 4.09z"/>
|
||||
<path d="m16.292 15.269c-1.32-0.37 0.031-2.869 0.842-3.686 0.39 1.08 0.478 4.056-0.842 3.686z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,10 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2512 0 0 2.2569 -.1421 1.8753)" fill="#eceff4">
|
||||
<path d="m4.574 14.993c-1.224-0.343 0.029-2.66 0.781-3.417 0.362 1 0.443 3.76-0.781 3.417z"/>
|
||||
<path d="m7.435 17.419c-1.393-0.39 0.033-3.03 0.888-3.888 0.412 1.139 0.505 4.278-0.888 3.888"/>
|
||||
<path d="m11.194 15.467c-1.248-0.35 0.03-2.712 0.796-3.485 0.369 1.021 0.452 3.834-0.796 3.485z"/>
|
||||
<path d="m13.478 17.965c-1.465-0.41 0.035-3.183 0.934-4.09 0.433 1.198 0.531 4.5-0.934 4.09z"/>
|
||||
<path d="m16.292 15.269c-1.32-0.37 0.031-2.869 0.842-3.686 0.39 1.08 0.478 4.056-0.842 3.686z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,10 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2512 0 0 2.2569 -.1421 1.8753)" fill="#eceff4">
|
||||
<path d="m4.574 14.993c-1.224-0.343 0.029-2.66 0.781-3.417 0.362 1 0.443 3.76-0.781 3.417z"/>
|
||||
<path d="m7.435 17.419c-1.393-0.39 0.033-3.03 0.888-3.888 0.412 1.139 0.505 4.278-0.888 3.888"/>
|
||||
<path d="m11.194 15.467c-1.248-0.35 0.03-2.712 0.796-3.485 0.369 1.021 0.452 3.834-0.796 3.485z"/>
|
||||
<path d="m13.478 17.965c-1.465-0.41 0.035-3.183 0.934-4.09 0.433 1.198 0.531 4.5-0.934 4.09z"/>
|
||||
<path d="m16.292 15.269c-1.32-0.37 0.031-2.869 0.842-3.686 0.39 1.08 0.478 4.056-0.842 3.686z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,10 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2512 0 0 2.2569 -.1421 1.8753)" fill="#eceff4">
|
||||
<path d="m4.574 14.993c-1.224-0.343 0.029-2.66 0.781-3.417 0.362 1 0.443 3.76-0.781 3.417z"/>
|
||||
<path d="m7.435 17.419c-1.393-0.39 0.033-3.03 0.888-3.888 0.412 1.139 0.505 4.278-0.888 3.888"/>
|
||||
<path d="m11.194 15.467c-1.248-0.35 0.03-2.712 0.796-3.485 0.369 1.021 0.452 3.834-0.796 3.485z"/>
|
||||
<path d="m13.478 17.965c-1.465-0.41 0.035-3.183 0.934-4.09 0.433 1.198 0.531 4.5-0.934 4.09z"/>
|
||||
<path d="m16.292 15.269c-1.32-0.37 0.031-2.869 0.842-3.686 0.39 1.08 0.478 4.056-0.842 3.686z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,10 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2512 0 0 2.2569 -.1421 1.8753)" fill="#eceff4">
|
||||
<path d="m4.574 14.993c-1.224-0.343 0.029-2.66 0.781-3.417 0.362 1 0.443 3.76-0.781 3.417z"/>
|
||||
<path d="m7.435 17.419c-1.393-0.39 0.033-3.03 0.888-3.888 0.412 1.139 0.505 4.278-0.888 3.888"/>
|
||||
<path d="m11.194 15.467c-1.248-0.35 0.03-2.712 0.796-3.485 0.369 1.021 0.452 3.834-0.796 3.485z"/>
|
||||
<path d="m13.478 17.965c-1.465-0.41 0.035-3.183 0.934-4.09 0.433 1.198 0.531 4.5-0.934 4.09z"/>
|
||||
<path d="m16.292 15.269c-1.32-0.37 0.031-2.869 0.842-3.686 0.39 1.08 0.478 4.056-0.842 3.686z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,10 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2512 0 0 2.2569 -.1421 1.8753)" fill="#eceff4">
|
||||
<path d="m4.574 14.993c-1.224-0.343 0.029-2.66 0.781-3.417 0.362 1 0.443 3.76-0.781 3.417z"/>
|
||||
<path d="m7.435 17.419c-1.393-0.39 0.033-3.03 0.888-3.888 0.412 1.139 0.505 4.278-0.888 3.888"/>
|
||||
<path d="m11.194 15.467c-1.248-0.35 0.03-2.712 0.796-3.485 0.369 1.021 0.452 3.834-0.796 3.485z"/>
|
||||
<path d="m13.478 17.965c-1.465-0.41 0.035-3.183 0.934-4.09 0.433 1.198 0.531 4.5-0.934 4.09z"/>
|
||||
<path d="m16.292 15.269c-1.32-0.37 0.031-2.869 0.842-3.686 0.39 1.08 0.478 4.056-0.842 3.686z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2398 0 0 2.2398 .28046 1.5628)">
|
||||
<path d="m5.367 11.485c-0.797 0.392-2.719 1.835-2.311 2.377 0.408 0.541 1.924-1.543 2.311-2.377zm12.142 0.259c-0.797 0.392-2.724 1.83-2.316 2.372 0.408 0.541 1.928-1.538 2.316-2.372zm-3.066 0.124c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.761 0.398c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.258 0.363c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.963 1.8c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm8.837 0.244c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.165 0.666c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm4.759 0.482c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-7.839 0.214c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377" fill="#eceff4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg enable-background="new" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.477 10c-0.349 0-0.722 0.017-1.101 0.065-6.06 0.78-5.874 5.978-5.874 5.978-2.481 0.422-4.501 2.587-4.501 4.851s2.584 4.269 4.757 4.851c1.292 0.347 2.985 0 2.985 0 0.767 1.353 3.296 2.254 5.06 2.254 2.876 0 5.832-0.954 6.513-2.254 0 0 11.91 0.953 14.382 0 3.599-1.388 2.474-5.721 0.08-7.187s-5.523-0.441-5.523-0.441-0.014-2.984-3.4-4.41-6.241 1.731-6.241 1.731-1.897-5.407-7.135-5.439z" fill="#eceff4"/>
|
||||
<g transform="matrix(2.2398 0 0 2.2398 .28046 1.5628)">
|
||||
<path d="m5.367 11.485c-0.797 0.392-2.719 1.835-2.311 2.377 0.408 0.541 1.924-1.543 2.311-2.377zm12.142 0.259c-0.797 0.392-2.724 1.83-2.316 2.372 0.408 0.541 1.928-1.538 2.316-2.372zm-3.066 0.124c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.761 0.398c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.258 0.363c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-2.963 1.8c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm8.837 0.244c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-3.165 0.666c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm4.759 0.482c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377zm-7.839 0.214c-0.797 0.392-2.724 1.835-2.316 2.377 0.408 0.541 1.928-1.543 2.316-2.377" fill="#eceff4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 7 KiB |
After Width: | Height: | Size: 7 KiB |
After Width: | Height: | Size: 7 KiB |
After Width: | Height: | Size: 7 KiB |
After Width: | Height: | Size: 7.4 KiB |
After Width: | Height: | Size: 7.4 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 7 KiB |