Commit 2eefe4fa authored by Gus Grubba's avatar Gus Grubba

Adding weather info

parent c3282048
......@@ -32,7 +32,6 @@
Q_DECLARE_LOGGING_CATEGORY(AirMapManagerLog)
/**
* @class LifetimeChecker
* Base class which helps to check if an object instance still exists.
......
......@@ -18,8 +18,10 @@ Item {
width: parent.width
height: colapsed ? colapsedRect.height : expandedRect.height
property bool colapsed: true
property bool showColapse: true
property bool colapsed: true
property bool showColapse: true
property var _activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
readonly property real _radius: ScreenTools.defaultFontPixelWidth * 0.5
readonly property color _colorOrange: "#d75e0d"
......@@ -63,6 +65,15 @@ Item {
color: _colorWhite
anchors.verticalCenter: parent.verticalCenter
}
Item {
width: ScreenTools.defaultFontPixelWidth
height: 1
}
AirspaceWeather {
iconHeight: ScreenTools.defaultFontPixelWidth * 2.5
visible: _activeVehicle && _activeVehicle.airspaceController.hasWeather
anchors.verticalCenter: parent.verticalCenter
}
}
QGCColoredImage {
width: height
......@@ -125,6 +136,14 @@ Item {
font.pointSize: ScreenTools.smallFontPointSize
}
}
Item {
width: ScreenTools.defaultFontPixelWidth
height: 1
}
AirspaceWeather {
visible: _activeVehicle && _activeVehicle.airspaceController.hasWeather && showColapse
anchors.verticalCenter: parent.verticalCenter
}
}
QGCColoredImage {
width: height
......@@ -142,6 +161,12 @@ Item {
onClicked: colapsed = true
}
}
AirspaceWeather {
visible: _activeVehicle && _activeVehicle.airspaceController.hasWeather && !showColapse
anchors.right: parent.right
anchors.rightMargin: ScreenTools.defaultFontPixelWidth
anchors.verticalCenter: parent.verticalCenter
}
}
//-- Contents (Brown Box)
Rectangle {
......
......@@ -7,14 +7,46 @@
*
****************************************************************************/
#include "AirMapManager.h"
#include "AirspaceController.h"
#include "AirspaceManagement.h"
#include "QGCApplication.h"
#include "QGCQGeoCoordinate.h"
#define WEATHER_UPDATE_DISTANCE 50000 //-- 50km threshold for weather updates
#define WEATHER_UPDATE_TIME 30 * 60 * 60 * 1000 //-- 30 minutes threshold for weather updates
AirspaceController::AirspaceController(QObject* parent)
: QObject(parent)
, _manager(qgcApp()->toolbox()->airspaceManager())
, _weatherTemp(0)
, _hasWeather(false)
{
connect(_manager, &AirspaceManager::weatherUpdate, this, &AirspaceController::_weatherUpdate);
}
void AirspaceController::setROI(QGeoCoordinate center, double radius)
{
_manager->setROI(center, radius);
//-- If first time or we've moved more than WEATHER_UPDATE_DISTANCE, ask for weather updates.
if(!_lastRoiCenter.isValid() || _lastRoiCenter.distanceTo(center) > WEATHER_UPDATE_DISTANCE) {
_lastRoiCenter = center;
_manager->requestWeatherUpdate(center);
_weatherTime.start();
} else {
//-- Check weather once every WEATHER_UPDATE_TIME
if(_weatherTime.elapsed() > WEATHER_UPDATE_TIME) {
_manager->requestWeatherUpdate(center);
_weatherTime.start();
}
}
}
void AirspaceController::_weatherUpdate(bool success, QGeoCoordinate, WeatherInformation weather)
{
qCDebug(AirMapManagerLog)<<"Weather Info:"<< success << weather.condition << weather.temperature;
_hasWeather = success;
_weatherIcon = QStringLiteral("qrc:/airmapweather/") + weather.condition + QStringLiteral(".svg");
_weatherTemp = weather.temperature;
emit weatherChanged();
}
......@@ -20,10 +20,13 @@ public:
AirspaceController(QObject* parent = NULL);
~AirspaceController() = default;
Q_PROPERTY(QmlObjectListModel* polygons READ polygons CONSTANT) ///< List of PolygonAirspaceRestriction objects
Q_PROPERTY(QmlObjectListModel* circles READ circles CONSTANT) ///< List of CircularAirspaceRestriction objects
Q_PROPERTY(QmlObjectListModel* polygons READ polygons CONSTANT) ///< List of PolygonAirspaceRestriction objects
Q_PROPERTY(QmlObjectListModel* circles READ circles CONSTANT) ///< List of CircularAirspaceRestriction objects
Q_PROPERTY(QString weatherIcon READ weatherIcon NOTIFY weatherChanged)
Q_PROPERTY(int weatherTemp READ weatherTemp NOTIFY weatherChanged)
Q_PROPERTY(bool hasWeather READ hasWeather NOTIFY weatherChanged)
Q_INVOKABLE void setROI(QGeoCoordinate center, double radius) { _manager->setROI(center, radius); }
Q_INVOKABLE void setROI(QGeoCoordinate center, double radius);
QmlObjectListModel* polygons() { return _manager->polygonRestrictions(); }
QmlObjectListModel* circles() { return _manager->circularRestrictions(); }
......@@ -31,6 +34,22 @@ public:
Q_PROPERTY(QString providerName READ providerName CONSTANT)
QString providerName() { return _manager->name(); }
QString weatherIcon () { return _weatherIcon; }
int weatherTemp () { return _weatherTemp; }
bool hasWeather () { return _hasWeather; }
signals:
void weatherChanged ();
private slots:
void _weatherUpdate (bool success, QGeoCoordinate coordinate, WeatherInformation weather);
private:
AirspaceManager* _manager;
AirspaceManager* _manager;
QGeoCoordinate _lastRoiCenter;
QTime _weatherTime;
QString _weatherIcon;
int _weatherTemp;
bool _hasWeather;
};
......@@ -125,15 +125,15 @@ class Vehicle;
struct WeatherInformation
{
QString condition; ///< The overall weather condition.
QString icon; ///< The icon or class of icon that should be used for display purposes.
uint32_t windHeading = 0; ///< The heading in [°].
uint32_t windSpeed = 0; ///< The speed in [°].
uint32_t windGusting = 0;
int32_t temperature = 0; ///< The temperature in [°C].
float humidity = 0.0;
uint32_t visibility = 0; ///< Visibility in [m].
uint32_t precipitation = 0; ///< The probability of precipitation in [%].
QString condition; ///< The overall weather condition.
QString icon; ///< The icon or class of icon that should be used for display purposes.
uint32_t windHeading = 0; ///< The heading in [°].
uint32_t windSpeed = 0; ///< The speed in [°].
uint32_t windGusting = 0;
int32_t temperature = 0; ///< The temperature in [°C].
float humidity = 0.0;
uint32_t visibility = 0; ///< Visibility in [m].
uint32_t precipitation = 0; ///< The probability of precipitation in [%].
};
Q_DECLARE_METATYPE(WeatherInformation);
......
import QtQuick 2.3
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.4
import QtQuick.Dialogs 1.2
import QtQml 2.2
import QGroundControl 1.0
import QGroundControl.ScreenTools 1.0
import QGroundControl.Controls 1.0
import QGroundControl.Palette 1.0
import QGroundControl.Airmap 1.0
Item {
height: _activeVehicle && _activeVehicle.airspaceController.hasWeather ? weatherRow.height : 0
width: _activeVehicle && _activeVehicle.airspaceController.hasWeather ? weatherRow.width : 0
property var iconHeight: ScreenTools.defaultFontPixelWidth * 4
property color _colorWhite: "#ffffff"
property var _activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
Row {
id: weatherRow
spacing: ScreenTools.defaultFontPixelHeight * 0.5
QGCColoredImage {
width: height
height: iconHeight
sourceSize.height: height
source: _activeVehicle ? _activeVehicle.airspaceController.weatherIcon : ""
color: _colorWhite
visible: _activeVehicle && _activeVehicle.airspaceController.hasWeather
anchors.verticalCenter: parent.verticalCenter
}
QGCLabel {
text: _activeVehicle ? _activeVehicle.airspaceController.weatherTemp + "<sup>º</sup>C" : ""
color: _colorWhite
visible: _activeVehicle && _activeVehicle.airspaceController.hasWeather
anchors.verticalCenter: parent.verticalCenter
}
}
}
......@@ -2,3 +2,4 @@ Module QGroundControl.Airmap
AirspaceControl 1.0 AirspaceControl.qml
AirspaceRegulation 1.0 AirspaceRegulation.qml
AirspaceWeather 1.0 AirspaceWeather.qml
......@@ -3,6 +3,7 @@
<file alias="QGroundControl/Airmap/qmldir">QGroundControl.Airmap.qmldir</file>
<file alias="QGroundControl/Airmap/AirspaceControl.qml">AirspaceControl.qml</file>
<file alias="QGroundControl/Airmap/AirspaceRegulation.qml">AirspaceRegulation.qml</file>
<file alias="QGroundControl/Airmap/AirspaceWeather.qml">AirspaceWeather.qml</file>
<file alias="AirmapSettings.qml">AirmapSettings.qml</file>
</qresource>
<qresource prefix="/json">
......@@ -14,4 +15,36 @@
<file alias="expand.svg">images/expand.svg</file>
<file alias="pencil.svg">images/pencil.svg</file>
</qresource>
<qresource prefix="/airmapweather">
<file alias="clear.svg">images/weather-icons/clear.svg</file>
<file alias="cloudy.svg">images/weather-icons/cloudy.svg</file>
<file alias="cloudy_wind.svg">images/weather-icons/cloudy_wind.svg</file>
<file alias="drizzle.svg">images/weather-icons/drizzle.svg</file>
<file alias="drizzle_day.svg">images/weather-icons/drizzle_day.svg</file>
<file alias="drizzle_night.svg">images/weather-icons/drizzle_night.svg</file>
<file alias="foggy.svg">images/weather-icons/foggy.svg</file>
<file alias="frigid.svg">images/weather-icons/frigid.svg</file>
<file alias="hail.svg">images/weather-icons/hail.svg</file>
<file alias="heavy_rain.svg">images/weather-icons/heavy_rain.svg</file>
<file alias="hurricane.svg">images/weather-icons/hurricane.svg</file>
<file alias="isolated_thunderstorms.svg">images/weather-icons/isolated_thunderstorms.svg</file>
<file alias="mostly_clear.svg">images/weather-icons/mostly_clear.svg</file>
<file alias="mostly_cloudy_day.svg">images/weather-icons/mostly_cloudy_day.svg</file>
<file alias="mostly_cloudy_night.svg">images/weather-icons/mostly_cloudy_night.svg</file>
<file alias="mostly_sunny.svg">images/weather-icons/mostly_sunny.svg</file>
<file alias="partly_cloudy_day.svg">images/weather-icons/partly_cloudy_day.svg</file>
<file alias="partyly_cloudy_night.svg">images/weather-icons/partyly_cloudy_night.svg</file>
<file alias="rain.svg">images/weather-icons/rain.svg</file>
<file alias="rain_snow.svg">images/weather-icons/rain_snow.svg</file>
<file alias="scattered_snow_showers_day.svg">images/weather-icons/scattered_snow_showers_day.svg</file>
<file alias="scattered_snow_showers_night.svg">images/weather-icons/scattered_snow_showers_night.svg</file>
<file alias="scattered_thunderstorms_day.svg">images/weather-icons/scattered_thunderstorms_day.svg</file>
<file alias="scattered_thunderstorms_night.svg">images/weather-icons/scattered_thunderstorms_night.svg</file>
<file alias="snow.svg">images/weather-icons/snow.svg</file>
<file alias="snow_storm.svg">images/weather-icons/snow_storm.svg</file>
<file alias="sunny.svg">images/weather-icons/sunny.svg</file>
<file alias="thunderstorm.svg">images/weather-icons/thunderstorm.svg</file>
<file alias="tornado.svg">images/weather-icons/tornado.svg</file>
<file alias="windy.svg">images/weather-icons/windy.svg</file>
</qresource>
</RCC>
import QtQuick 2.3
Item {
property var iconHeight: 0
}
......@@ -2,3 +2,4 @@ Module QGroundControl.Airmap
AirspaceControl 1.0 AirspaceControl.qml
AirspaceRegulation 1.0 AirspaceRegulation.qml
AirspaceWeather 1.0 AirspaceWeather.qml
......@@ -3,5 +3,6 @@
<file alias="QGroundControl/Airmap/qmldir">QGroundControl.Airmap.qmldir</file>
<file alias="QGroundControl/Airmap/AirspaceControl.qml">AirspaceControl.qml</file>
<file alias="QGroundControl/Airmap/AirspaceRegulation.qml">AirspaceRegulation.qml</file>
<file alias="QGroundControl/Airmap/AirspaceWeather.qml">AirspaceWeather.qml</file>
</qresource>
</RCC>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>clear</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="clear" fill="#000000">
<path d="M139.080049,135.171053 C136.594416,135.513158 134.135201,135.684211 131.770657,135.684211 C102.634361,135.684211 78.9316737,112.074561 78.9316737,83.0526316 C78.9316737,69.0635965 84.3850971,55.8969298 94.2835999,45.9692982 C95.7785028,44.4692982 96.1483757,42.1820175 95.2038789,40.2894737 C94.2571804,38.3969298 92.1920569,37.3179825 90.0939089,37.6074561 C59.2535558,41.8486842 36,68.4561404 36,99.5 C36,133.962719 64.1477666,162 98.7462924,162 C115.584315,162 131.391977,155.447368 143.26974,143.539474 C144.764643,142.039474 145.134516,139.752193 144.190019,137.859649 C143.234514,135.967105 141.187004,134.870614 139.080049,135.171053 L139.080049,135.171053 Z M98.7462924,152.131579 C69.6099965,152.131579 45.9073093,128.52193 45.9073093,99.5 C45.9073093,78.2039474 58.9012959,59.3837719 77.7538047,51.2105263 C72.0604043,60.754386 69.0243644,71.6754386 69.0243644,83.0526316 C69.0243644,115.236842 93.5768785,141.826754 125.01167,145.192982 C117.107839,149.723684 108.112002,152.131579 98.7462924,152.131579 Z M106.718374,66.3486842 L115.885937,70.9144737 L120.469719,80.0460526 C120.892431,80.8859649 121.751065,81.4078947 122.688957,81.4078947 C123.626849,81.4078947 124.485482,80.8859649 124.908194,80.0460526 L129.491976,70.9144737 L138.659539,66.3486842 C139.493955,65.9276316 140.026748,65.0723684 140.026748,64.1381579 C140.026748,63.2039474 139.493955,62.3486842 138.659539,61.9276316 L129.491976,57.3618421 L124.908194,48.2302632 C124.485482,47.3991228 123.626849,46.8684211 122.688957,46.8684211 C121.751065,46.8684211 120.892431,47.3991228 120.469719,48.2302632 L115.885937,57.3618421 L106.718374,61.9276316 C105.883958,62.3486842 105.351165,63.2039474 105.351165,64.1381579 C105.351165,65.0723684 105.883958,65.9276316 106.718374,66.3486842 Z M163.427812,96.4671053 L154.260249,91.9013158 L149.676467,82.7697368 C149.253755,81.9385965 148.395122,81.4078947 147.45723,81.4078947 C146.519338,81.4078947 145.660704,81.9385965 145.237993,82.7697368 L140.654211,91.9013158 L131.486647,96.4671053 C130.652232,96.8881579 130.119439,97.7434211 130.119439,98.6776316 C130.119439,99.6118421 130.652232,100.467105 131.486647,100.888158 L140.654211,105.453947 L145.237993,114.585526 C145.660704,115.425439 146.519338,115.947368 147.45723,115.947368 C148.395122,115.947368 149.253755,115.425439 149.676467,114.585526 L154.260249,105.453947 L163.427812,100.888158 C164.262228,100.467105 164.795021,99.6118421 164.795021,98.6776316 C164.795021,97.7434211 164.262228,96.8881579 163.427812,96.4671053 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>cloudy</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="cloudy" fill="#000000">
<path d="M34.3834206,79.3084956 C34.8737603,52.4241531 56.7166359,30.7848837 83.59375,30.7848837 C102.575,30.7848837 120.153125,42.0934884 128.125,59.2730233 C131.640625,58.0956977 135.3875,57.6310465 139.134375,57.6310465 C158.825,57.6310465 175,73.8812791 175,93.6477907 C175,103.031314 171.360627,111.620143 165.432975,118.056899 C165.559915,119.279214 165.625,120.518928 165.625,121.772791 C165.625,141.555 149.45,157.805233 129.759375,157.805233 C129.674794,157.805233 129.773562,156.162128 129.759377,154.461916 C129.744132,152.634728 129.62364,150.741279 129.759375,150.741279 C145.703125,150.741279 158.8375,137.790698 158.8375,121.785349 C158.8375,105.770581 145.946875,92.82 130.00625,92.82 C126.953125,92.82 123.9,93.2846512 121.09375,94.2296512 L118.053125,95.1746512 C116.40625,95.6393023 114.5375,94.9297674 113.83125,93.2846512 L112.428125,90.4653488 C105.628125,75.6247674 90.625,65.9738372 74.21875,65.9738372 C51.0125,65.9738372 32.03125,85.0433721 32.03125,108.357558 C32.03125,126.962442 44.2125,143.445 62.0375,148.851279 C63.368361,149.356288 129.759377,150.741282 129.759377,150.741282 C129.759377,150.741282 129.877031,157.675774 129.759377,157.805231 C98.3466797,157.805231 62.0374985,157.805231 59.925,155.682907 C39.29375,149.331628 25,130.01407 25,108.357558 C25,97.502013 28.4812461,87.4639091 34.3834206,79.3084956 Z M42.5313723,70.5182517 C46.9310306,51.8463071 63.7117675,37.8488372 83.59375,37.8488372 C100,37.8488372 115.003125,47.4997674 121.803125,62.3403488 L123.20625,65.1596512 C123.9125,66.8047674 125.78125,67.5143023 127.428125,67.0496512 L130.46875,66.1046512 C133.275,65.1596512 136.328125,64.695 139.38125,64.695 C155.321875,64.695 168.2125,77.6455814 168.2125,93.6603488 C168.2125,99.5077692 166.459396,104.947456 163.456673,109.496852 C158.417224,95.7021578 145.164186,85.7560465 129.759375,85.7560465 C126.0125,85.7560465 122.265625,86.2206977 118.75,87.3980233 C110.778125,70.2184884 93.2,58.9098837 74.21875,58.9098837 C62.148228,58.9098837 51.0930673,63.2743328 42.5313723,70.5182517 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>cloudy_wind</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="cloudy_wind" fill="#000000">
<path d="M124.662047,118.269983 C122.237589,118.269983 120.266993,119.973066 120.266993,122.068399 L114.52193,122.068399 C114.52193,117.237327 119.072131,113.312831 124.662047,113.312831 C131.24768,113.312831 136.610665,117.947778 136.610665,123.639398 C136.610665,130.417709 130.233437,135.929214 122.392735,135.929214 L80.4244307,135.929215 L80.4244307,130.964057 L122.383473,130.964057 C127.058717,130.964057 130.867918,127.681969 130.867918,123.631393 C130.867918,120.677515 128.082223,118.269983 124.662047,118.269983 Z M88.5360014,140.267974 L103.198531,140.267974 C111.039232,140.267974 117.41646,145.779479 117.41646,152.555789 C117.41646,158.255414 112.053476,162.882356 105.467842,162.882356 C99.8779262,162.882356 95.3277257,158.959862 95.3277257,154.126788 L101.072788,154.126788 C101.072788,156.22212 103.043384,157.9192 105.467842,157.9192 C108.888018,157.9192 111.673713,155.511669 111.673713,152.555789 C111.673713,148.523224 107.873775,145.23113 103.189268,145.23113 L80.5897525,145.231131 L80.5897525,140.267974 L88.5360014,140.267974 Z M136.743333,71.4731163 C132.746667,71.4731163 128.75,71.9687442 125,73.2245581 C116.496667,54.8997209 97.7466667,42.8372093 77.5,42.8372093 C48.5033333,42.8372093 25,66.4498605 25,95.5813953 C25,118.681674 40.2466667,139.28707 62.2533333,146.061767 C64.2566667,146.560744 66.25,145.56614 67.0066667,143.55014 C67.5,141.537488 66.51,139.534884 64.5066667,138.774698 C45.4933333,133.008 32.5,115.426605 32.5,95.5813953 C32.5,70.7129302 52.7466667,50.372093 77.5,50.372093 C95,50.372093 111.003333,60.6664186 118.256667,76.4963721 L119.753333,79.5036279 C120.506667,81.2584186 122.5,82.0152558 124.256667,81.5196279 L127.5,80.5116279 C130.493333,79.5036279 133.75,79.008 137.006667,79.008 C154.01,79.008 167.76,92.8219535 167.76,109.904372 C167.76,126.976744 153.75,140.790698 136.743333,140.790698 C134.74,140.790698 132.993333,142.54214 132.993333,144.55814 C132.993333,146.57414 134.74,148.325581 136.743333,148.325581 C157.746667,148.325581 175,130.992 175,109.890977 C175,88.8066977 157.746667,71.4731163 136.743333,71.4731163 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>drizzle</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="drizzle" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M136.743333,57.4731163 C132.746667,57.4731163 128.75,57.9687442 125,59.2245581 C116.496667,40.8997209 97.7466667,28.8372093 77.5,28.8372093 C48.5033333,28.8372093 25,52.4498605 25,81.5813953 C25,104.681674 40.2466667,125.28707 62.2533333,132.061767 C64.2566667,132.560744 66.25,131.56614 67.0066667,129.55014 C67.5,127.537488 66.51,125.534884 64.5066667,124.774698 C45.4933333,119.008 32.5,101.426605 32.5,81.5813953 C32.5,56.7129302 52.7466667,36.372093 77.5,36.372093 C95,36.372093 111.003333,46.6664186 118.256667,62.4963721 L119.753333,65.5036279 C120.506667,67.2584186 122.5,68.0152558 124.256667,67.5196279 L127.5,66.5116279 C130.493333,65.5036279 133.75,65.008 137.006667,65.008 C154.01,65.008 167.76,78.8219535 167.76,95.9043721 C167.76,112.976744 153.75,126.790698 136.743333,126.790698 C134.74,126.790698 132.993333,128.54214 132.993333,130.55814 C132.993333,132.57414 134.74,134.325581 136.743333,134.325581 C157.746667,134.325581 175,116.992 175,95.8909767 C175,74.8066977 157.746667,57.4731163 136.743333,57.4731163 Z M82,99.1627907 L82,133.069767 C82,133.821581 83.204,134.325581 85,134.325581 C86.796,134.325581 88,133.821581 88,133.069767 L88,99.1627907 C88,98.4109767 86.796,97.9069767 85,97.9069767 C83.204,97.9069767 82,98.4109767 82,99.1627907 Z M99,109.162791 L99,143.069767 C99,143.821581 100.204,144.325581 102,144.325581 C103.796,144.325581 105,143.821581 105,143.069767 L105,109.162791 C105,108.410977 103.796,107.906977 102,107.906977 C100.204,107.906977 99,108.410977 99,109.162791 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>drizzle_day</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="drizzle_day" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M138.468111,60.4555535 C134.338222,60.4555535 130.208333,60.9677023 126.333333,62.2653767 C117.546556,43.3297116 98.1715556,30.8651163 77.25,30.8651163 C47.2867778,30.8651163 23,55.2648558 23,85.3674419 C23,109.23773 38.7548889,130.529972 61.4951111,137.530493 C63.5652222,138.046102 65.625,137.018344 66.4068889,134.935144 C66.9166667,132.855405 65.8936667,130.786047 63.8235556,130.000521 C44.1764444,124.0416 30.75,105.874158 30.75,85.3674419 C30.75,59.6700279 51.6715556,38.6511628 77.25,38.6511628 C95.3333333,38.6511628 111.870111,49.2886326 119.365222,65.6462512 L120.911778,68.7537488 C121.690222,70.5670326 123.75,71.3490977 125.565222,70.8369488 L128.916667,69.7953488 C132.009778,68.7537488 135.375,68.2416 138.740222,68.2416 C156.310333,68.2416 170.518667,82.5160186 170.518667,100.167851 C170.518667,117.809302 156.041667,132.083721 138.468111,132.083721 C136.398,132.083721 134.593111,133.893544 134.593111,135.976744 C134.593111,138.059944 136.398,139.869767 138.468111,139.869767 C160.171556,139.869767 178,121.9584 178,100.154009 C178,78.3669209 160.171556,60.4555535 138.468111,60.4555535 Z M100.5,101.348059 C104.833795,101.348059 108.348059,97.8337945 108.348059,93.5 C108.348059,89.1662055 104.833795,85.6519409 100.5,85.6519409 C96.1662055,85.6519409 92.6519409,89.1662055 92.6519409,93.5 C92.6519409,97.8337945 96.1662055,101.348059 100.5,101.348059 Z M106.924991,93.5 C106.924991,97.0421678 104.042168,99.9249912 100.5,99.9249912 C96.9593824,99.9249912 94.0750088,97.0421678 94.0750088,93.5 C94.0750088,89.9578322 96.9578322,87.0750088 100.5,87.0750088 C104.042168,87.0750088 106.924991,89.9578322 106.924991,93.5 Z M99.7874326,105.548021 L99.7874326,110.229057 C99.7874326,110.620736 100.106254,110.939557 100.5,110.939557 C100.893746,110.939557 101.212567,110.620736 101.212567,110.22699 L101.212567,105.548021 C101.212567,105.156858 100.893746,104.83597 100.5,104.83597 C100.106254,104.83597 99.7874326,105.154791 99.7874326,105.548021 Z M100.5,82.1640295 C100.893746,82.1640295 101.212567,81.8452086 101.212567,81.4519789 L101.212567,76.7730103 C101.212567,76.3792638 100.893746,76.0604429 100.5,76.0604429 C100.106254,76.0604429 99.7874326,76.3792638 99.7874326,76.7730103 L99.7874326,81.4540458 C99.7874326,81.8452086 100.106254,82.1640295 100.5,82.1640295 Z M83.7730103,94.2125674 L88.4540458,94.2125674 C88.8472755,94.2125674 89.1660964,93.8937464 89.1660964,93.5 C89.1660964,93.1062536 88.8472755,92.7874326 88.4540458,92.7874326 L83.7730103,92.7874326 C83.3792638,92.7874326 83.0604429,93.1062536 83.0604429,93.5 C83.0604429,93.8937464 83.3792638,94.2125674 83.7730103,94.2125674 Z M117.22699,92.7874326 L112.548021,92.7874326 C112.154791,92.7874326 111.83597,93.1062536 111.83597,93.5 C111.83597,93.8937464 112.154791,94.2125674 112.548021,94.2125674 L117.229057,94.2125674 C117.620736,94.2125674 117.939557,93.8937464 117.939557,93.5 C117.939557,93.1062536 117.620736,92.7874326 117.22699,92.7874326 Z M91.4774191,101.515479 L88.167262,104.825636 C87.8887458,105.104152 87.8887458,105.554222 88.167262,105.832738 C88.4457781,106.111254 88.8958479,106.111254 89.1743641,105.832738 L92.4845212,102.522581 C92.7630374,102.244065 92.7630374,101.793995 92.4845212,101.515479 C92.206005,101.23903 91.7559353,101.23903 91.4774191,101.515479 Z M109.522581,85.4845212 L112.832738,82.1743641 C113.111254,81.8958479 113.111254,81.4457781 112.832738,81.167262 C112.554222,80.8887458 112.104152,80.8887458 111.825636,81.167262 L108.515479,84.4774191 C108.236963,84.7559353 108.236963,85.206005 108.515479,85.4845212 C108.793995,85.7630374 109.244065,85.7630374 109.522581,85.4845212 Z M91.4774191,85.4845212 C91.7559353,85.7630374 92.206005,85.7630374 92.4845212,85.4845212 C92.7630374,85.206005 92.7630374,84.7559353 92.4845212,84.4774191 L89.1743641,81.1693289 C88.8958479,80.8908127 88.4457781,80.8908127 88.167262,81.1693289 C87.8887458,81.447845 87.8887458,81.8979148 88.167262,82.176431 L91.4774191,85.4845212 Z M108.515479,101.515479 C108.236963,101.793995 108.236963,102.244065 108.515479,102.522581 L111.825636,105.832738 C112.104152,106.109187 112.554222,106.109187 112.832738,105.832738 C113.111254,105.554222 113.111254,105.104152 112.832738,104.825636 L109.522581,101.515479 C109.244065,101.236963 108.793995,101.236963 108.515479,101.515479 Z M89.4166667,127.737209 C87.8701111,127.737209 86.8333333,128.132384 86.8333333,128.721863 L86.8333333,155.307511 C86.8333333,155.89699 87.8701111,156.292164 89.4166667,156.292164 C90.9632222,156.292164 92,155.89699 92,155.307511 L92,128.721863 C92,128.132384 90.9632222,127.737209 89.4166667,127.737209 Z M109.416667,127.737209 C107.870111,127.737209 106.833333,128.132384 106.833333,128.721863 L106.833333,155.307511 C106.833333,155.89699 107.870111,156.292164 109.416667,156.292164 C110.963222,156.292164 112,155.89699 112,155.307511 L112,128.721863 C112,128.132384 110.963222,127.737209 109.416667,127.737209 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>drizzle_night</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="drizzle_night" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M138.468111,60.4555535 C134.338222,60.4555535 130.208333,60.9677023 126.333333,62.2653767 C117.546556,43.3297116 98.1715556,30.8651163 77.25,30.8651163 C47.2867778,30.8651163 23,55.2648558 23,85.3674419 C23,109.23773 38.7548889,130.529972 61.4951111,137.530493 C63.5652222,138.046102 65.625,137.018344 66.4068889,134.935144 C66.9166667,132.855405 65.8936667,130.786047 63.8235556,130.000521 C44.1764444,124.0416 30.75,105.874158 30.75,85.3674419 C30.75,59.6700279 51.6715556,38.6511628 77.25,38.6511628 C95.3333333,38.6511628 111.870111,49.2886326 119.365222,65.6462512 L120.911778,68.7537488 C121.690222,70.5670326 123.75,71.3490977 125.565222,70.8369488 L128.916667,69.7953488 C132.009778,68.7537488 135.375,68.2416 138.740222,68.2416 C156.310333,68.2416 170.518667,82.5160186 170.518667,100.167851 C170.518667,117.809302 156.041667,132.083721 138.468111,132.083721 C136.398,132.083721 134.593111,133.893544 134.593111,135.976744 C134.593111,138.059944 136.398,139.869767 138.468111,139.869767 C160.171556,139.869767 178,121.9584 178,100.154009 C178,78.3669209 160.171556,60.4555535 138.468111,60.4555535 Z M89.4166667,127.737209 C87.8701111,127.737209 86.8333333,128.132384 86.8333333,128.721863 L86.8333333,155.307511 C86.8333333,155.89699 87.8701111,156.292164 89.4166667,156.292164 C90.9632222,156.292164 92,155.89699 92,155.307511 L92,128.721863 C92,128.132384 90.9632222,127.737209 89.4166667,127.737209 Z M109.416667,127.737209 C107.870111,127.737209 106.833333,128.132384 106.833333,128.721863 L106.833333,155.307511 C106.833333,155.89699 107.870111,156.292164 109.416667,156.292164 C110.963222,156.292164 112,155.89699 112,155.307511 L112,128.721863 C112,128.132384 110.963222,127.737209 109.416667,127.737209 Z M118.573693,109.889257 C117.554621,110.913236 116.369826,111.791888 115.075058,112.534719 C112.484046,114.005638 109.43952,114.844897 106.314892,114.931254 C103.189237,115.027322 99.9814641,114.373162 97.052107,113.023939 C95.5845284,112.354219 94.1919712,111.503545 92.903731,110.514437 C92.2597345,110.020763 91.6489985,109.482951 91.0611777,108.92099 C90.7693196,108.639721 90.4899682,108.345334 90.2119639,108.047768 L89.8052692,107.596083 L89.3687308,107.085211 L89.0679664,106.706535 L88.6677185,106.181593 C88.4212884,105.84491 88.1914125,105.519652 87.9660912,105.180001 C87.5248302,104.499382 87.1149407,103.795219 86.7447868,103.07172 C86.0153727,101.621396 85.441136,100.09246 85.0570711,98.5254363 C84.2831602,95.3927992 84.2386757,92.11938 84.9232214,89.0639952 C85.5939514,86.0081604 86.9942886,83.1744644 88.9290155,80.9054549 C89.9033597,79.7759483 90.9917924,78.7774996 92.1909096,77.9709785 C93.3844295,77.1586668 94.6684887,76.5225779 96.0292462,76.1471721 C95.4057915,77.412126 94.861371,78.6097667 94.4256729,79.7939211 C93.994821,80.9827759 93.6525559,82.138253 93.4231908,83.2844402 C92.9455609,85.5657184 92.8451969,87.7616868 93.0313281,89.834876 C93.2272531,91.9096785 93.7090964,93.8575972 94.4462791,95.6482497 C94.817051,96.5420735 95.2417421,97.4026084 95.7369634,98.2161589 C95.9787058,98.6258517 96.2382227,99.0258712 96.5166961,99.4118658 C96.6515764,99.6057743 96.7961585,99.8048966 96.9337518,99.9840734 L97.1217018,100.22374 L97.4261587,100.598907 L97.6145587,100.824758 L97.8487451,101.095596 C98.0071904,101.274234 98.1734422,101.444599 98.3359191,101.617887 C98.6606986,101.967477 99.0077246,102.292415 99.3605413,102.611755 C100.066761,103.250354 100.830722,103.831807 101.639424,104.365714 C103.260107,105.427089 105.083757,106.273383 107.083269,106.856386 C109.086153,107.429347 111.262462,107.742947 113.595244,107.702104 C114.763668,107.689769 115.965999,107.569823 117.21256,107.368919 C118.455797,107.157121 119.729486,106.847168 121.090161,106.471176 C120.464031,107.734114 119.593753,108.872315 118.573693,109.889257 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>foggy</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="foggy" stroke="#000000" stroke-width="6">
<g id="Group" transform="translate(36.000000, 77.000000)">
<path d="M0,3 C21.8430494,3 48.0417799,-2.51367207 65.5291483,3 C83.0165166,8.51367207 126,3 126,3" id="Path-136"></path>
</g>
<path d="M33,90 C56.2299097,90 84.0920516,84.4863279 102.689729,90 C121.287407,95.5136721 167,90 167,90" id="Path-136"></path>
<path d="M33,100 C56.2299097,100 84.0920516,94.4863279 102.689729,100 C121.287407,105.513672 167,100 167,100" id="Path-136"></path>
<path d="M33,110 C56.2299097,110 84.0920516,104.486328 102.689729,110 C121.287407,115.513672 167,110 167,110" id="Path-136"></path>
<path d="M36,120 C57.8430494,120 84.0417799,114.486328 101.529148,120 C119.016517,125.513672 162,120 162,120" id="Path-136"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>frigid</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="frigid">
<circle id="Oval-20" stroke="#000000" stroke-width="8" cx="100" cy="100" r="72"></circle>
<polygon id="Page-1" fill="#000000" points="142.116201 111.22128 138.648062 105.213969 127.268231 111.786401 106.572939 99.8414499 127.268231 87.8964986 138.63774 94.4586095 142.105879 88.4616194 134.201929 83.8942045 146.25784 76.9295418 142.792281 70.9325518 130.715727 77.8972145 130.715727 68.7339995 123.789771 68.7339995 123.789771 81.8995086 103.066093 93.8651036 103.066093 69.9339136 114.476889 63.3511591 111.019072 57.354169 103.066093 61.9396472 103.066093 48 96.1401374 48 96.1401374 61.921584 88.2284457 57.354169 84.7706287 63.3614809 96.1401374 69.9235918 96.1401374 93.8134944 75.4474252 81.8685431 75.4474252 68.7339995 68.5111476 68.7339995 68.5111476 77.8662489 56.4655583 70.9119081 53 76.9088981 65.0636525 83.8735608 57.141639 88.4512976 60.6097778 94.4586095 71.9999301 87.8758549 92.7132859 99.8414499 71.9999301 111.807045 60.5891341 105.22429 57.1313171 111.231602 65.0636525 115.809339 53.0103218 122.774002 56.4758802 128.770992 68.5111476 121.816651 68.5111476 130.9489 75.4474252 130.9489 75.4474252 117.814357 96.1401374 105.869405 96.1401374 129.76963 84.7809506 136.321419 88.2387675 142.318409 96.1401374 137.761316 96.1401374 151.6829 103.066093 151.6829 103.066093 137.750994 110.998428 142.328731 114.466567 136.321419 103.066093 129.748986 103.066093 105.817796 123.789771 117.783391 123.789771 130.9489 130.715727 130.9489 130.715727 121.785685 142.792281 128.750348 146.247518 122.753358 134.201929 115.788695"></polygon>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>hail</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="hail" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M136.743333,56.4731163 C132.746667,56.4731163 128.75,56.9687442 125,58.2245581 C116.496667,39.8997209 97.7466667,27.8372093 77.5,27.8372093 C48.5033333,27.8372093 25,51.4498605 25,80.5813953 C25,103.681674 40.2466667,124.28707 62.2533333,131.061767 C64.2566667,131.560744 66.25,130.56614 67.0066667,128.55014 C67.5,126.537488 66.51,124.534884 64.5066667,123.774698 C45.4933333,118.008 32.5,100.426605 32.5,80.5813953 C32.5,55.7129302 52.7466667,35.372093 77.5,35.372093 C95,35.372093 111.003333,45.6664186 118.256667,61.4963721 L119.753333,64.5036279 C120.506667,66.2584186 122.5,67.0152558 124.256667,66.5196279 L127.5,65.5116279 C130.493333,64.5036279 133.75,64.008 137.006667,64.008 C154.01,64.008 167.76,77.8219535 167.76,94.9043721 C167.76,111.976744 153.75,125.790698 136.743333,125.790698 C134.74,125.790698 132.993333,127.54214 132.993333,129.55814 C132.993333,131.57414 134.74,133.325581 136.743333,133.325581 C157.746667,133.325581 175,115.992 175,94.8909767 C175,73.8066977 157.746667,56.4731163 136.743333,56.4731163 Z M91,135 C97.627417,135 103,129.627417 103,123 C103,116.372583 97.627417,111 91,111 C84.372583,111 79,116.372583 79,123 C79,129.627417 84.372583,135 91,135 Z M121,162 C127.627417,162 133,156.627417 133,150 C133,143.372583 127.627417,138 121,138 C114.372583,138 109,143.372583 109,150 C109,156.627417 114.372583,162 121,162 Z M79,171 C85.627417,171 91,165.627417 91,159 C91,152.372583 85.627417,147 79,147 C72.372583,147 67,152.372583 67,159 C67,165.627417 72.372583,171 79,171 Z M79,168 C83.9705627,168 88,163.970563 88,159 C88,154.029437 83.9705627,150 79,150 C74.0294373,150 70,154.029437 70,159 C70,163.970563 74.0294373,168 79,168 Z M91,132 C95.9705627,132 100,127.970563 100,123 C100,118.029437 95.9705627,114 91,114 C86.0294373,114 82,118.029437 82,123 C82,127.970563 86.0294373,132 91,132 Z M121,159 C125.970563,159 130,154.970563 130,150 C130,145.029437 125.970563,141 121,141 C116.029437,141 112,145.029437 112,150 C112,154.970563 116.029437,159 121,159 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>heavy_rain</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="heavy_rain" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M82.5,78.9069767 C81.0033333,78.9069767 80,79.6026992 80,80.6405045 L80,127.445753 C80,128.483558 81.0033333,129.179281 82.5,129.179281 C83.9966667,129.179281 85,128.483558 85,127.445753 L85,80.6405045 C85,79.6026992 83.9966667,78.9069767 82.5,78.9069767 Z M100,78.9069767 C98.5033333,78.9069767 97.5,79.6026992 97.5,80.6405045 L97.5,118.778114 C97.5,119.81592 98.5033333,120.511642 100,120.511642 C101.496667,120.511642 102.5,119.81592 102.5,118.778114 L102.5,80.6405045 C102.5,79.6026992 101.496667,78.9069767 100,78.9069767 Z M117.5,78.9069767 C116.003333,78.9069767 115,79.9149767 115,81.4186047 L115,124.116279 C115,125.619907 116.003333,126.627907 117.5,126.627907 C118.996667,126.627907 120,125.619907 120,124.116279 L120,81.4186047 C120,79.9149767 118.996667,78.9069767 117.5,78.9069767 Z M82.5,140.050576 C81.0033333,140.050576 80,140.335794 80,140.761252 L80,159.949481 C80,160.374939 81.0033333,160.660156 82.5,160.660156 C83.9966667,160.660156 85,160.374939 85,159.949481 L85,140.761252 C85,140.335794 83.9966667,140.050576 82.5,140.050576 Z M117.5,137.221036 C116.003333,137.221036 115,137.506254 115,137.931712 L115,150.013189 C115,150.438647 116.003333,150.723865 117.5,150.723865 C118.996667,150.723865 120,150.438647 120,150.013189 L120,137.931712 C120,137.506254 118.996667,137.221036 117.5,137.221036 Z M99.5,133.227629 C98.0033333,133.227629 97,133.662962 97,134.312344 L97,152.752495 C97,153.401877 98.0033333,153.837209 99.5,153.837209 C100.996667,153.837209 102,153.401877 102,152.752495 L102,134.312344 C102,133.662962 100.996667,133.227629 99.5,133.227629 Z M136.743333,38.4731163 C132.746667,38.4731163 128.75,38.9687442 125,40.2245581 C116.496667,21.8997209 97.7466667,9.8372093 77.5,9.8372093 C48.5033333,9.8372093 25,33.4498605 25,62.5813953 C25,85.6816744 40.2466667,106.28707 62.2533333,113.061767 C64.2566667,113.560744 66.25,112.56614 67.0066667,110.55014 C67.5,108.537488 66.51,106.534884 64.5066667,105.774698 C45.4933333,100.008 32.5,82.4266047 32.5,62.5813953 C32.5,37.7129302 52.7466667,17.372093 77.5,17.372093 C95,17.372093 111.003333,27.6664186 118.256667,43.4963721 L119.753333,46.5036279 C120.506667,48.2584186 122.5,49.0152558 124.256667,48.5196279 L127.5,47.5116279 C130.493333,46.5036279 133.75,46.008 137.006667,46.008 C154.01,46.008 167.76,59.8219535 167.76,76.9043721 C167.76,93.9767442 153.75,107.790698 136.743333,107.790698 C134.74,107.790698 132.993333,109.54214 132.993333,111.55814 C132.993333,113.57414 134.74,115.325581 136.743333,115.325581 C157.746667,115.325581 175,97.992 175,76.8909767 C175,55.8066977 157.746667,38.4731163 136.743333,38.4731163 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>hurricane</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="hurricane" stroke="#000000" stroke-width="10">
<path d="M123.834774,129.120996 C138.923096,114.032674 138.842336,89.4889106 123.654391,74.3009657 C108.466446,59.1130209 83.9226822,59.0322607 68.8343601,74.1205827 C53.746038,89.2089048 53.8267982,113.752669 69.0147431,128.940613 C84.2026879,144.128558 108.746452,144.209318 123.834774,129.120996 Z M109.575407,114.86163 C116.840155,107.596882 116.80127,95.7795145 109.488556,88.4668003 C102.175842,81.1540861 90.3584742,81.1152016 83.0937266,88.3799492 C75.8289789,95.6446969 75.8678635,107.462065 83.1805777,114.774779 C90.4932918,122.087493 102.31066,122.126378 109.575407,114.86163 Z" id="Combined-Shape"></path>
<path d="M60.497097,46.7210811 L134.273507,46.7210811" id="Path-265" transform="translate(97.416004, 46.721081) rotate(-45.000000) translate(-97.416004, -46.721081) "></path>
<path d="M63.9473147,153.165308 L137.723725,153.165308" id="Path-265" transform="translate(100.866222, 153.165308) rotate(-45.000000) translate(-100.866222, -153.165308) "></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>isolated_thunderstorms</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="isolated_thunderstorms" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M138.468111,60.4555535 C134.338222,60.4555535 130.208333,60.9677023 126.333333,62.2653767 C117.546556,43.3297116 98.1715556,30.8651163 77.25,30.8651163 C47.2867778,30.8651163 23,55.2648558 23,85.3674419 C23,109.23773 38.7548889,130.529972 61.4951111,137.530493 C63.5652222,138.046102 65.625,137.018344 66.4068889,134.935144 C66.9166667,132.855405 65.8936667,130.786047 63.8235556,130.000521 C44.1764444,124.0416 30.75,105.874158 30.75,85.3674419 C30.75,59.6700279 51.6715556,38.6511628 77.25,38.6511628 C95.3333333,38.6511628 111.870111,49.2886326 119.365222,65.6462512 L120.911778,68.7537488 C121.690222,70.5670326 123.75,71.3490977 125.565222,70.8369488 L128.916667,69.7953488 C132.009778,68.7537488 135.375,68.2416 138.740222,68.2416 C156.310333,68.2416 170.518667,82.5160186 170.518667,100.167851 C170.518667,117.809302 156.041667,132.083721 138.468111,132.083721 C136.398,132.083721 134.593111,133.893544 134.593111,135.976744 C134.593111,138.059944 136.398,139.869767 138.468111,139.869767 C160.171556,139.869767 178,121.9584 178,100.154009 C178,78.3669209 160.171556,60.4555535 138.468111,60.4555535 Z M109.416667,127.737209 C107.870111,127.737209 106.833333,128.132384 106.833333,128.721863 L106.833333,155.307511 C106.833333,155.89699 107.870111,156.292164 109.416667,156.292164 C110.963222,156.292164 112,155.89699 112,155.307511 L112,128.721863 C112,128.132384 110.963222,127.737209 109.416667,127.737209 Z M75.5,102.868809 C84.5390572,102.868809 91.8688089,95.5390572 91.8688089,86.5 C91.8688089,77.4609428 84.5390572,70.1311911 75.5,70.1311911 C66.4609428,70.1311911 59.1311911,77.4609428 59.1311911,86.5 C59.1311911,95.5390572 66.4609428,102.868809 75.5,102.868809 Z M75.5,73.0993041 C82.88795,73.0993041 88.9006959,79.11205 88.9006959,86.5 C88.9006959,93.88795 82.88795,99.9006959 75.5,99.9006959 C68.1152832,99.9006959 62.0993041,93.88795 62.0993041,86.5 C62.0993041,79.11205 68.11205,73.0993041 75.5,73.0993041 Z M74.013788,111.62873 L74.013788,121.392032 C74.013788,122.208964 74.6787574,122.873933 75.5,122.873933 C76.3212426,122.873933 76.986212,122.208964 76.986212,121.387721 L76.986212,111.62873 C76.986212,110.812876 76.3212426,110.143596 75.5,110.143596 C74.6787574,110.143596 74.013788,110.808565 74.013788,111.62873 Z M75.5,62.8564044 C76.3212426,62.8564044 76.986212,62.1914351 76.986212,61.3712702 L76.986212,51.6122786 C76.986212,50.791036 76.3212426,50.1260666 75.5,50.1260666 C74.6787574,50.1260666 74.013788,50.791036 74.013788,51.6122786 L74.013788,61.3755812 C74.013788,62.1914351 74.6787574,62.8564044 75.5,62.8564044 Z M40.6122786,87.986212 L50.3755812,87.986212 C51.195746,87.986212 51.8607154,87.3212426 51.8607154,86.5 C51.8607154,85.6787574 51.195746,85.013788 50.3755812,85.013788 L40.6122786,85.013788 C39.791036,85.013788 39.1260666,85.6787574 39.1260666,86.5 C39.1260666,87.3212426 39.791036,87.986212 40.6122786,87.986212 Z M110.387721,85.013788 L100.62873,85.013788 C99.8085649,85.013788 99.1435956,85.6787574 99.1435956,86.5 C99.1435956,87.3212426 99.8085649,87.986212 100.62873,87.986212 L110.392032,87.986212 C111.208964,87.986212 111.873933,87.3212426 111.873933,86.5 C111.873933,85.6787574 111.208964,85.013788 110.387721,85.013788 Z M56.6814741,103.217999 L49.7774321,110.122041 C49.1965269,110.702946 49.1965269,111.641663 49.7774321,112.222568 C50.3583373,112.803473 51.2970542,112.803473 51.8779594,112.222568 L58.7820014,105.318526 C59.3629065,104.737621 59.3629065,103.798904 58.7820014,103.217999 C58.2010962,102.641404 57.2623792,102.641404 56.6814741,103.217999 Z M94.3185259,69.7820014 L101.222568,62.8779594 C101.803473,62.2970542 101.803473,61.3583373 101.222568,60.7774321 C100.641663,60.1965269 99.7029458,60.1965269 99.1220406,60.7774321 L92.2179986,67.6814741 C91.6370935,68.2623792 91.6370935,69.2010962 92.2179986,69.7820014 C92.7989038,70.3629065 93.7376208,70.3629065 94.3185259,69.7820014 Z M56.6814741,69.7820014 C57.2623792,70.3629065 58.2010962,70.3629065 58.7820014,69.7820014 C59.3629065,69.2010962 59.3629065,68.2623792 58.7820014,67.6814741 L51.8779594,60.7817431 C51.2970542,60.2008379 50.3583373,60.2008379 49.7774321,60.7817431 C49.1965269,61.3626482 49.1965269,62.3013652 49.7774321,62.8822704 L56.6814741,69.7820014 Z M92.2179986,103.217999 C91.6370935,103.798904 91.6370935,104.737621 92.2179986,105.318526 L99.1220406,112.222568 C99.7029458,112.799162 100.641663,112.799162 101.222568,112.222568 C101.803473,111.641663 101.803473,110.702946 101.222568,110.122041 L94.3185259,103.217999 C93.7376208,102.637093 92.7989038,102.637093 92.2179986,103.217999 Z M97.9001502,143.443326 L90.8151512,144.078606 L94.3108931,124.165195 L76.2673424,151.85801 L83.3549694,151.224936 L79.8163981,170.685915 L97.9001502,143.443326 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>mostly_clear</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="mostly_clear" fill="#000000">
<path d="M139.080049,135.171053 C136.594416,135.513158 134.135201,135.684211 131.770657,135.684211 C102.634361,135.684211 78.9316737,112.074561 78.9316737,83.0526316 C78.9316737,69.0635965 84.3850971,55.8969298 94.2835999,45.9692982 C95.7785028,44.4692982 96.1483757,42.1820175 95.2038789,40.2894737 C94.2571804,38.3969298 92.1920569,37.3179825 90.0939089,37.6074561 C59.2535558,41.8486842 36,68.4561404 36,99.5 C36,133.962719 64.1477666,162 98.7462924,162 C115.584315,162 131.391977,155.447368 143.26974,143.539474 C144.764643,142.039474 145.134516,139.752193 144.190019,137.859649 C143.234514,135.967105 141.187004,134.870614 139.080049,135.171053 L139.080049,135.171053 Z M98.7462924,152.131579 C69.6099965,152.131579 45.9073093,128.52193 45.9073093,99.5 C45.9073093,78.2039474 58.9012959,59.3837719 77.7538047,51.2105263 C72.0604043,60.754386 69.0243644,71.6754386 69.0243644,83.0526316 C69.0243644,115.236842 93.5768785,141.826754 125.01167,145.192982 C117.107839,149.723684 108.112002,152.131579 98.7462924,152.131579 Z M136.333333,65.2990967 C132.478489,56.9073488 123.978489,51.3833949 114.8,51.3833949 C101.654844,51.3833949 91,62.1966651 91,75.5372745 C91,86.115907 97.9118222,95.5520226 107.888178,98.6544542 C108.796356,98.8829576 141.313956,100.614368 141.656979,99.6911532 C141.674879,99.6173828 141.892262,96.2405994 141.656979,96.2405994 C140.479492,96.2405994 109.574092,95.5720638 108.909689,95.3173849 C100.290311,92.6765607 94.4,84.6252676 94.4,75.5372745 C94.4,64.148912 103.578489,54.8339491 114.8,54.8339491 C122.733333,54.8339491 129.988178,59.548173 133.276356,66.797404 L133.954844,68.1745586 C134.296356,68.9781543 135.2,69.3247433 135.996356,69.0977735 L137.466667,68.6361661 C138.823644,68.1745586 140.3,67.9475888 141.776356,67.9475888 C149.484533,67.9475888 155.717867,74.2736049 155.717867,82.0963947 C155.717867,89.9145838 149.366667,96.2405999 141.656978,96.2405999 C141.604332,96.2405999 141.63852,99.6911541 141.656978,99.6911541 C151.178489,99.6911541 159,91.7533458 159,82.0902604 C159,72.4348429 151.178489,64.4970346 141.656978,64.4970346 C139.845156,64.4970346 138.033333,64.7240043 136.333333,65.2990967 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>mostly_cloudy_day</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="mostly_cloudy_day" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M34.3834206,79.3084956 C34.8737603,52.4241531 56.7166359,30.7848837 83.59375,30.7848837 C102.575,30.7848837 120.153125,42.0934884 128.125,59.2730233 C131.640625,58.0956977 135.3875,57.6310465 139.134375,57.6310465 C158.825,57.6310465 175,73.8812791 175,93.6477907 C175,103.031314 171.360627,111.620143 165.432975,118.056899 C165.559915,119.279214 165.625,120.518928 165.625,121.772791 C165.625,141.555 149.45,157.805233 129.759375,157.805233 C127.88125,157.805233 126.24375,156.163256 126.24375,154.273256 C126.24375,152.383256 127.88125,150.741279 129.759375,150.741279 C145.703125,150.741279 158.8375,137.790698 158.8375,121.785349 C158.8375,105.770581 145.946875,92.82 130.00625,92.82 C126.953125,92.82 123.9,93.2846512 121.09375,94.2296512 L118.053125,95.1746512 C116.40625,95.6393023 114.5375,94.9297674 113.83125,93.2846512 L112.428125,90.4653488 C105.628125,75.6247674 90.625,65.9738372 74.21875,65.9738372 C51.0125,65.9738372 32.03125,85.0433721 32.03125,108.357558 C32.03125,126.962442 44.2125,143.445 62.0375,148.851279 C63.915625,149.563953 64.84375,151.441395 64.38125,153.328256 C63.671875,155.218256 61.803125,156.150698 59.925,155.682907 C39.29375,149.331628 25,130.01407 25,108.357558 C25,97.502013 28.4812461,87.4639091 34.3834206,79.3084956 Z M42.5313723,70.5182517 C46.9310306,51.8463071 63.7117675,37.8488372 83.59375,37.8488372 C100,37.8488372 115.003125,47.4997674 121.803125,62.3403488 L123.20625,65.1596512 C123.9125,66.8047674 125.78125,67.5143023 127.428125,67.0496512 L130.46875,66.1046512 C133.275,65.1596512 136.328125,64.695 139.38125,64.695 C155.321875,64.695 168.2125,77.6455814 168.2125,93.6603488 C168.2125,99.5077692 166.459396,104.947456 163.456673,109.496852 C158.417224,95.7021578 145.164186,85.7560465 129.759375,85.7560465 C126.0125,85.7560465 122.265625,86.2206977 118.75,87.3980233 C110.778125,70.2184884 93.2,58.9098837 74.21875,58.9098837 C62.148228,58.9098837 51.0930673,63.2743328 42.5313723,70.5182517 Z M95.9609375,160.245164 C103.29665,160.245164 109.245164,154.29665 109.245164,146.960938 C109.245164,139.625225 103.29665,133.676711 95.9609375,133.676711 C88.6252247,133.676711 82.6767111,139.625225 82.6767111,146.960938 C82.6767111,154.29665 88.6252247,160.245164 95.9609375,160.245164 Z M106.83637,146.960938 C106.83637,152.956682 101.956682,157.83637 95.9609375,157.83637 C89.9678167,157.83637 85.0855049,152.956682 85.0855049,146.960938 C85.0855049,140.965193 89.9651927,136.085505 95.9609375,136.085505 C101.956682,136.085505 106.83637,140.965193 106.83637,146.960938 Z M94.7547913,167.354342 L94.7547913,175.277821 C94.7547913,175.940808 95.2944521,176.480469 95.9609375,176.480469 C96.6274229,176.480469 97.1670837,175.940808 97.1670837,175.274323 L97.1670837,167.354342 C97.1670837,166.69223 96.6274229,166.14907 95.9609375,166.14907 C95.2944521,166.14907 94.7547913,166.688731 94.7547913,167.354342 Z M95.9609375,127.772805 C96.6274229,127.772805 97.1670837,127.233144 97.1670837,126.567533 L97.1670837,118.647552 C97.1670837,117.981067 96.6274229,117.441406 95.9609375,117.441406 C95.2944521,117.441406 94.7547913,117.981067 94.7547913,118.647552 L94.7547913,126.571032 C94.7547913,127.233144 95.2944521,127.772805 95.9609375,127.772805 Z M67.6475524,148.167084 L75.5710319,148.167084 C76.2366427,148.167084 76.7763035,147.627423 76.7763035,146.960937 C76.7763035,146.294452 76.2366427,145.754791 75.5710319,145.754791 L67.6475524,145.754791 C66.981067,145.754791 66.4414062,146.294452 66.4414062,146.960937 C66.4414062,147.627423 66.981067,148.167084 67.6475524,148.167084 Z M124.274323,145.754791 L116.354342,145.754791 C115.688731,145.754791 115.14907,146.294452 115.14907,146.960937 C115.14907,147.627423 115.688731,148.167084 116.354342,148.167084 L124.277821,148.167084 C124.940808,148.167084 125.480469,147.627423 125.480469,146.960937 C125.480469,146.294452 124.940808,145.754791 124.274323,145.754791 Z M80.6886253,160.528551 L75.0855997,166.131577 C74.6141618,166.603015 74.6141618,167.364837 75.0855997,167.836275 C75.5570375,168.307713 76.3188601,168.307713 76.7902979,167.836275 L82.3933236,162.23325 C82.8647615,161.761812 82.8647615,160.999989 82.3933236,160.528551 C81.9218858,160.060612 81.1600632,160.060612 80.6886253,160.528551 Z M111.23325,133.393324 L116.836275,127.790298 C117.307713,127.31886 117.307713,126.557037 116.836275,126.0856 C116.364837,125.614162 115.603015,125.614162 115.131577,126.0856 L109.528551,131.688625 C109.057114,132.160063 109.057114,132.921886 109.528551,133.393324 C109.999989,133.864761 110.761812,133.864761 111.23325,133.393324 Z M80.6886253,133.393324 C81.1600632,133.864761 81.9218858,133.864761 82.3933236,133.393324 C82.8647615,132.921886 82.8647615,132.160063 82.3933236,131.688625 L76.7902979,126.089098 C76.3188601,125.61766 75.5570375,125.61766 75.0855997,126.089098 C74.6141618,126.560536 74.6141618,127.322359 75.0855997,127.793797 L80.6886253,133.393324 Z M109.528551,160.528551 C109.057114,160.999989 109.057114,161.761812 109.528551,162.23325 L115.131577,167.836275 C115.603015,168.304215 116.364837,168.304215 116.836275,167.836275 C117.307713,167.364837 117.307713,166.603015 116.836275,166.131577 L111.23325,160.528551 C110.761812,160.057114 109.999989,160.057114 109.528551,160.528551 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>mostly_cloudy_night</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="mostly_cloudy_night" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M34.3834206,79.3084956 C34.8737603,52.4241531 56.7166359,30.7848837 83.59375,30.7848837 C102.575,30.7848837 120.153125,42.0934884 128.125,59.2730233 C131.640625,58.0956977 135.3875,57.6310465 139.134375,57.6310465 C158.825,57.6310465 175,73.8812791 175,93.6477907 C175,103.031314 171.360627,111.620143 165.432975,118.056899 C165.559915,119.279214 165.625,120.518928 165.625,121.772791 C165.625,141.555 149.45,157.805233 129.759375,157.805233 C127.88125,157.805233 126.24375,156.163256 126.24375,154.273256 C126.24375,152.383256 127.88125,150.741279 129.759375,150.741279 C145.703125,150.741279 158.8375,137.790698 158.8375,121.785349 C158.8375,105.770581 145.946875,92.82 130.00625,92.82 C126.953125,92.82 123.9,93.2846512 121.09375,94.2296512 L118.053125,95.1746512 C116.40625,95.6393023 114.5375,94.9297674 113.83125,93.2846512 L112.428125,90.4653488 C105.628125,75.6247674 90.625,65.9738372 74.21875,65.9738372 C51.0125,65.9738372 32.03125,85.0433721 32.03125,108.357558 C32.03125,126.962442 44.2125,143.445 62.0375,148.851279 C63.915625,149.563953 64.84375,151.441395 64.38125,153.328256 C63.671875,155.218256 61.803125,156.150698 59.925,155.682907 C39.29375,149.331628 25,130.01407 25,108.357558 C25,97.502013 28.4812461,87.4639091 34.3834206,79.3084956 Z M42.5313723,70.5182517 C46.9310306,51.8463071 63.7117675,37.8488372 83.59375,37.8488372 C100,37.8488372 115.003125,47.4997674 121.803125,62.3403488 L123.20625,65.1596512 C123.9125,66.8047674 125.78125,67.5143023 127.428125,67.0496512 L130.46875,66.1046512 C133.275,65.1596512 136.328125,64.695 139.38125,64.695 C155.321875,64.695 168.2125,77.6455814 168.2125,93.6603488 C168.2125,99.5077692 166.459396,104.947456 163.456673,109.496852 C158.417224,95.7021578 145.164186,85.7560465 129.759375,85.7560465 C126.0125,85.7560465 122.265625,86.2206977 118.75,87.3980233 C110.778125,70.2184884 93.2,58.9098837 74.21875,58.9098837 C62.148228,58.9098837 51.0930673,63.2743328 42.5313723,70.5182517 Z M120.116687,166.940424 C118.775321,168.288249 117.21582,169.444786 115.511563,170.422547 C112.10111,172.358664 108.093714,173.46335 103.980881,173.577018 C99.8666967,173.703468 95.6444233,172.842422 91.7886187,171.066489 C89.8568992,170.184962 88.0239276,169.065251 86.3282646,167.763325 C85.4805957,167.11352 84.6767064,166.405617 83.9029797,165.665929 C83.5188176,165.295706 83.1511177,164.908215 82.7851909,164.516539 L82.2498737,163.922003 L81.6752743,163.249561 L81.2793892,162.751124 L80.7525576,162.060163 C80.4281909,161.616998 80.1256138,161.188873 79.8290316,160.741804 C79.248216,159.845929 78.7086936,158.919066 78.2214737,157.966751 C77.2613728,156.057744 76.5055263,154.045261 75.9999959,151.982646 C74.9813255,147.859271 74.9227721,143.55059 75.8238144,139.5289 C76.7066716,135.506618 78.5498837,131.776728 81.0964932,128.790115 C82.3789865,127.303387 83.8116503,125.989166 85.390004,124.927572 C86.9609902,123.858356 88.65115,123.021096 90.4422648,122.526963 C89.6216345,124.191975 88.9050338,125.768385 88.3315405,127.327044 C87.764426,128.89189 87.3139152,130.412801 87.0120103,131.921485 C86.3833237,134.924248 86.2512183,137.81472 86.496216,140.543582 C86.7541047,143.274568 87.3883374,145.838542 88.3586637,148.195511 C88.846697,149.372019 89.4057022,150.504709 90.0575438,151.575555 C90.3757404,152.114819 90.7173328,152.64135 91.0838772,153.14942 C91.2614151,153.404655 91.4517231,153.666752 91.6328322,153.902596 L91.8802238,154.21806 L92.2809691,154.711879 L92.5289532,155.009158 L92.837204,155.365652 C93.0457598,155.600786 93.2645908,155.825032 93.4784532,156.053125 C93.9059484,156.513277 94.362726,156.940981 94.8271255,157.361317 C95.7566965,158.20188 96.7622704,158.967225 97.8267344,159.669988 C99.9599801,161.067037 102.360384,162.180982 104.992267,162.948367 C107.62859,163.702535 110.493184,164.115315 113.563739,164.061555 C115.101692,164.045318 116.684277,163.887437 118.325079,163.622995 C119.961505,163.344214 121.638015,162.936234 123.429021,162.44133 C122.60487,164.103689 121.459356,165.60186 120.116687,166.940424 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>mostly_sunny</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="mostly_sunny" stroke="#000000" stroke-width="3" fill="#000000">
<path d="M101,139.871486 C113.629915,139.871486 123.871486,129.629915 123.871486,117 C123.871486,104.370085 113.629915,94.1285136 101,94.1285136 C88.3700845,94.1285136 78.1285136,104.370085 78.1285136,117 C78.1285136,129.629915 88.3700845,139.871486 101,139.871486 L101,139.871486 Z M101,98.2757399 C111.322889,98.2757399 119.72426,106.677111 119.72426,117 C119.72426,127.322889 111.322889,135.72426 101,135.72426 C90.6816286,135.72426 82.2757399,127.322889 82.2757399,117 C82.2757399,106.677111 90.6771109,98.2757399 101,98.2757399 Z M98.9233751,152.111376 L98.9233751,165.753251 C98.9233751,166.894717 99.8525104,167.823852 101,167.823852 C102.14749,167.823852 103.076625,166.894717 103.076625,165.747227 L103.076625,152.111376 C103.076625,150.971416 102.14749,150.036257 101,150.036257 C99.8525104,150.036257 98.9233751,150.965392 98.9233751,152.111376 Z M101,83.9637432 C102.14749,83.9637432 103.076625,83.0346079 103.076625,81.8886241 L103.076625,68.2527729 C103.076625,67.1052832 102.14749,66.1761479 101,66.1761479 C99.8525104,66.1761479 98.9233751,67.1052832 98.9233751,68.2527729 L98.9233751,81.8946477 C98.9233751,83.0346079 99.8525104,83.9637432 101,83.9637432 Z M52.2527729,119.076625 L65.8946477,119.076625 C67.0406315,119.076625 67.9697668,118.14749 67.9697668,117 C67.9697668,115.85251 67.0406315,114.923375 65.8946477,114.923375 L52.2527729,114.923375 C51.1052832,114.923375 50.1761479,115.85251 50.1761479,117 C50.1761479,118.14749 51.1052832,119.076625 52.2527729,119.076625 Z M149.747227,114.923375 L136.111376,114.923375 C134.965392,114.923375 134.036257,115.85251 134.036257,117 C134.036257,118.14749 134.965392,119.076625 136.111376,119.076625 L149.753251,119.076625 C150.894717,119.076625 151.823852,118.14749 151.823852,117 C151.823852,115.85251 150.894717,114.923375 149.747227,114.923375 Z M74.7056213,140.359395 L65.0588777,150.006139 C64.247202,150.817815 64.247202,152.129447 65.0588777,152.941122 C65.8705534,153.752798 67.1821853,153.752798 67.993861,152.941122 L77.6406046,143.294379 C78.4522804,142.482703 78.4522804,141.171071 77.6406046,140.359395 C76.8289289,139.553743 75.517297,139.553743 74.7056213,140.359395 Z M127.294379,93.6406046 L136.941122,83.993861 C137.752798,83.1821853 137.752798,81.8705534 136.941122,81.0588777 C136.129447,80.247202 134.817815,80.247202 134.006139,81.0588777 L124.359395,90.7056213 C123.54772,91.517297 123.54772,92.8289289 124.359395,93.6406046 C125.171071,94.4522804 126.482703,94.4522804 127.294379,93.6406046 Z M74.7056213,93.6406046 C75.517297,94.4522804 76.8289289,94.4522804 77.6406046,93.6406046 C78.4522804,92.8289289 78.4522804,91.517297 77.6406046,90.7056213 L67.993861,81.0649013 C67.1821853,80.2532255 65.8705534,80.2532255 65.0588777,81.0649013 C64.247202,81.876577 64.247202,83.1882089 65.0588777,83.9998846 L74.7056213,93.6406046 Z M124.359395,140.359395 C123.54772,141.171071 123.54772,142.482703 124.359395,143.294379 L134.006139,152.941122 C134.817815,153.746774 136.129447,153.746774 136.941122,152.941122 C137.752798,152.129447 137.752798,150.817815 136.941122,150.006139 L127.294379,140.359395 C126.482703,139.54772 125.171071,139.54772 124.359395,140.359395 Z M117.036303,43.9161801 C115.282447,43.9161801 113.52859,44.1324039 111.882979,44.6802682 C108.151463,36.6858312 99.9234043,31.4234112 91.0385638,31.4234112 C78.3139628,31.4234112 68,41.7247225 68,54.4337152 C68,64.5114978 74.6906915,73.5008566 84.3478723,76.4564023 C85.2269947,76.674087 86.1017287,76.2401784 86.4337766,75.3606735 C86.650266,74.4826295 86.2158245,73.6089685 85.3367021,73.2773279 C76.9930851,70.7615347 71.2912234,63.0914333 71.2912234,54.4337152 C71.2912234,43.5845395 80.1760638,34.7105975 91.0385638,34.7105975 C98.7180851,34.7105975 105.740824,39.2016245 108.923803,46.1076376 L109.580585,47.4195901 C109.91117,48.1851393 110.785904,48.5153189 111.556782,48.2990951 L112.980053,47.8593426 C114.293617,47.4195901 115.722739,47.2033663 117.151862,47.2033663 C124.613431,47.2033663 130.64734,53.2298745 130.64734,60.682291 C130.64734,68.1303247 124.499335,74.1568328 117.036303,74.1568328 C116.157181,74.1568328 115.390691,74.920921 115.390691,75.800426 C115.390691,76.6799309 116.157181,77.4440191 117.036303,77.4440191 C126.253191,77.4440191 133.824468,69.8820297 133.824468,60.6764472 C133.824468,51.4781695 126.253191,43.9161801 117.036303,43.9161801 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>partly_cloudy_day</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="partly_cloudy_day" stroke="#000000" stroke-width="4" fill="#000000">
<path d="M57.457023,103.370349 C57.846697,81.9045564 75.2052735,64.6266901 96.5645695,64.6266901 C111.649007,64.6266901 125.618377,73.6560411 131.953642,87.3730341 C134.747517,86.4329989 137.725166,86.0619984 140.702815,86.0619984 C156.350993,86.0619984 169.205298,99.0369903 169.205298,114.819554 C169.205298,122.311825 166.313081,129.169572 161.602364,134.308997 C161.703243,135.284954 161.754967,136.274803 161.754967,137.275949 C161.754967,153.071047 148.900662,166.046038 133.252483,166.046038 C133.185266,166.046038 133.263758,164.734102 133.252485,163.376569 C133.24037,161.917651 133.144614,160.405827 133.252483,160.405827 C145.923013,160.405827 156.360927,150.065441 156.360927,137.285976 C156.360927,124.498991 146.116722,114.158605 133.448675,114.158605 C131.022351,114.158605 128.596026,114.529605 126.365894,115.28414 L123.949503,116.038675 C122.640728,116.409676 121.155629,115.843148 120.594371,114.529605 L119.479305,112.278534 C114.075331,100.429078 102.152318,92.7232964 89.1142384,92.7232964 C70.6721854,92.7232964 55.5877483,107.949359 55.5877483,126.564562 C55.5877483,141.419624 65.2682119,154.580116 79.4337748,158.896758 C80.4914127,159.299982 133.252485,160.40583 133.252485,160.40583 C133.252485,160.40583 133.345985,165.942672 133.252485,166.046037 C108.288752,166.046037 79.4337736,166.046037 77.7549669,164.351468 C61.3592715,159.280292 50,143.856195 50,126.564562 C50,117.896956 52.7665532,109.882036 57.457023,103.370349 Z M63.9322164,96.3517823 C67.4286336,81.4431754 80.7643186,70.266901 96.5645695,70.266901 C109.602649,70.266901 121.525662,77.9726825 126.929636,89.822139 L128.044702,92.0732098 C128.60596,93.3867523 130.09106,93.9532802 131.399834,93.5822796 L133.816225,92.8277447 C136.046358,92.0732098 138.472682,91.7022093 140.899007,91.7022093 C153.567053,91.7022093 163.811258,102.042596 163.811258,114.829581 C163.811258,119.498451 162.418063,123.841767 160.031793,127.47423 C156.026933,116.459862 145.494717,108.518394 133.252483,108.518394 C130.274834,108.518394 127.297185,108.889394 124.503311,109.829429 C118.168046,96.1124365 104.198675,87.0830855 89.1142384,87.0830855 C79.5217706,87.0830855 70.7362124,90.5678781 63.9322164,96.3517823 Z M86.1071429,58.9783168 C87.5009876,58.9783168 88.6295994,57.849705 88.6295994,56.4576894 L88.6295994,39.8943509 C88.6295994,38.5005062 87.5009876,37.3718944 86.1071429,37.3718944 C84.7132981,37.3718944 83.5846863,38.5005062 83.5846863,39.8943509 L83.5846863,56.4650062 C83.5846863,57.849705 84.7132981,58.9783168 86.1071429,58.9783168 Z M26.8943509,101.629599 L43.4650062,101.629599 C44.8570217,101.629599 45.9856335,100.500988 45.9856335,99.1071429 C45.9856335,97.7132981 44.8570217,96.5846863 43.4650062,96.5846863 L26.8943509,96.5846863 C25.5005062,96.5846863 24.3718944,97.7132981 24.3718944,99.1071429 C24.3718944,100.500988 25.5005062,101.629599 26.8943509,101.629599 Z M54.1676118,70.7327081 C55.1535466,71.7186429 56.7467733,71.7186429 57.7327081,70.7327081 C58.7186429,69.7467733 58.7186429,68.1535466 57.7327081,67.1676118 L46.0149006,55.4571211 C45.0289658,54.4711863 43.4357391,54.4711863 42.4498043,55.4571211 C41.4638696,56.4430559 41.4638696,58.0362826 42.4498043,59.0222174 L54.1676118,70.7327081 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>partyly_cloudy_night</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="partyly_cloudy_night" stroke="#000000" stroke-width="3" fill="#000000">
<path d="M113.573693,147.889257 C112.554621,148.913236 111.369826,149.791888 110.075058,150.534719 C107.484046,152.005638 104.43952,152.844897 101.314892,152.931254 C98.1892373,153.027322 94.9814641,152.373162 92.052107,151.023939 C90.5845284,150.354219 89.1919712,149.503545 87.903731,148.514437 C87.2597345,148.020763 86.6489985,147.482951 86.0611777,146.92099 C85.7693196,146.639721 85.4899682,146.345334 85.2119639,146.047768 L84.8052692,145.596083 L84.3687308,145.085211 L84.0679664,144.706535 L83.6677185,144.181593 C83.4212884,143.84491 83.1914125,143.519652 82.9660912,143.180001 C82.5248302,142.499382 82.1149407,141.795219 81.7447868,141.07172 C81.0153727,139.621396 80.441136,138.09246 80.0570711,136.525436 C79.2831602,133.392799 79.2386757,130.11938 79.9232214,127.063995 C80.5939514,124.00816 81.9942886,121.174464 83.9290155,118.905455 C84.9033597,117.775948 85.9917924,116.7775 87.1909096,115.970979 C88.3844295,115.158667 89.6684887,114.522578 91.0292462,114.147172 C90.4057915,115.412126 89.861371,116.609767 89.4256729,117.793921 C88.994821,118.982776 88.6525559,120.138253 88.4231908,121.28444 C87.9455609,123.565718 87.8451969,125.761687 88.0313281,127.834876 C88.2272531,129.909679 88.7090964,131.857597 89.4462791,133.64825 C89.817051,134.542074 90.2417421,135.402608 90.7369634,136.216159 C90.9787058,136.625852 91.2382227,137.025871 91.5166961,137.411866 C91.6515764,137.605774 91.7961585,137.804897 91.9337518,137.984073 L92.1217018,138.22374 L92.4261587,138.598907 L92.6145587,138.824758 L92.8487451,139.095596 C93.0071904,139.274234 93.1734422,139.444599 93.3359191,139.617887 C93.6606986,139.967477 94.0077246,140.292415 94.3605413,140.611755 C95.066761,141.250354 95.8307222,141.831807 96.6394237,142.365714 C98.2601071,143.427089 100.083757,144.273383 102.083269,144.856386 C104.086153,145.429347 106.262462,145.742947 108.595244,145.702104 C109.763668,145.689769 110.965999,145.569823 112.21256,145.368919 C113.455797,145.157121 114.729486,144.847168 116.090161,144.471176 C115.464031,145.734114 114.593753,146.872315 113.573693,147.889257 Z M134.759375,71.7560465 C131.0125,71.7560465 127.265625,72.2206977 123.75,73.3980233 C115.778125,56.2184884 98.2,44.9098837 79.21875,44.9098837 C52.034375,44.9098837 30,67.0467442 30,94.3575581 C30,116.01407 44.29375,135.331628 64.925,141.682907 C66.803125,142.150698 68.671875,141.218256 69.38125,139.328256 C69.84375,137.441395 68.915625,135.563953 67.0375,134.851279 C49.2125,129.445 37.03125,112.962442 37.03125,94.3575581 C37.03125,71.0433721 56.0125,51.9738372 79.21875,51.9738372 C95.625,51.9738372 110.628125,61.6247674 117.428125,76.4653488 L118.83125,79.2846512 C119.5375,80.9297674 121.40625,81.6393023 123.053125,81.1746512 L126.09375,80.2296512 C128.9,79.2846512 131.953125,78.82 135.00625,78.82 C150.946875,78.82 163.8375,91.7705814 163.8375,107.785349 C163.8375,123.790698 150.703125,136.741279 134.759375,136.741279 C132.88125,136.741279 131.24375,138.383256 131.24375,140.273256 C131.24375,142.163256 132.88125,143.805233 134.759375,143.805233 C154.45,143.805233 170.625,127.555 170.625,107.772791 C170.625,88.0062791 154.45,71.7560465 134.759375,71.7560465 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>rain</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="rain" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M82.5,97.9069767 C81.0033333,97.9069767 80,98.9149767 80,100.418605 L80,168.232558 C80,169.736186 81.0033333,170.744186 82.5,170.744186 C83.9966667,170.744186 85,169.736186 85,168.232558 L85,100.418605 C85,98.9149767 83.9966667,97.9069767 82.5,97.9069767 Z M100,97.9069767 C98.5033333,97.9069767 97.5,98.9149767 97.5,100.418605 L97.5,155.674419 C97.5,157.178047 98.5033333,158.186047 100,158.186047 C101.496667,158.186047 102.5,157.178047 102.5,155.674419 L102.5,100.418605 C102.5,98.9149767 101.496667,97.9069767 100,97.9069767 Z M117.5,97.9069767 C116.003333,97.9069767 115,98.9149767 115,100.418605 L115,143.116279 C115,144.619907 116.003333,145.627907 117.5,145.627907 C118.996667,145.627907 120,144.619907 120,143.116279 L120,100.418605 C120,98.9149767 118.996667,97.9069767 117.5,97.9069767 Z M136.743333,57.4731163 C132.746667,57.4731163 128.75,57.9687442 125,59.2245581 C116.496667,40.8997209 97.7466667,28.8372093 77.5,28.8372093 C48.5033333,28.8372093 25,52.4498605 25,81.5813953 C25,104.681674 40.2466667,125.28707 62.2533333,132.061767 C64.2566667,132.560744 66.25,131.56614 67.0066667,129.55014 C67.5,127.537488 66.51,125.534884 64.5066667,124.774698 C45.4933333,119.008 32.5,101.426605 32.5,81.5813953 C32.5,56.7129302 52.7466667,36.372093 77.5,36.372093 C95,36.372093 111.003333,46.6664186 118.256667,62.4963721 L119.753333,65.5036279 C120.506667,67.2584186 122.5,68.0152558 124.256667,67.5196279 L127.5,66.5116279 C130.493333,65.5036279 133.75,65.008 137.006667,65.008 C154.01,65.008 167.76,78.8219535 167.76,95.9043721 C167.76,112.976744 153.75,126.790698 136.743333,126.790698 C134.74,126.790698 132.993333,128.54214 132.993333,130.55814 C132.993333,132.57414 134.74,134.325581 136.743333,134.325581 C157.746667,134.325581 175,116.992 175,95.8909767 C175,74.8066977 157.746667,57.4731163 136.743333,57.4731163 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>rain_snow</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="rain_snow" fill="#000000">
<path d="M136.743333,59.4731163 C132.746667,59.4731163 128.75,59.9687442 125,61.2245581 C116.496667,42.8997209 97.7466667,30.8372093 77.5,30.8372093 C48.5033333,30.8372093 25,54.4498605 25,83.5813953 C25,106.681674 40.2466667,127.28707 62.2533333,134.061767 C64.2566667,134.560744 66.25,133.56614 67.0066667,131.55014 C67.5,129.537488 66.51,127.534884 64.5066667,126.774698 C45.4933333,121.008 32.5,103.426605 32.5,83.5813953 C32.5,58.7129302 52.7466667,38.372093 77.5,38.372093 C95,38.372093 111.003333,48.6664186 118.256667,64.4963721 L119.753333,67.5036279 C120.506667,69.2584186 122.5,70.0152558 124.256667,69.5196279 L127.5,68.5116279 C130.493333,67.5036279 133.75,67.008 137.006667,67.008 C154.01,67.008 167.76,80.8219535 167.76,97.9043721 C167.76,114.976744 153.75,128.790698 136.743333,128.790698 C134.74,128.790698 132.993333,130.54214 132.993333,132.55814 C132.993333,134.57414 134.74,136.325581 136.743333,136.325581 C157.746667,136.325581 175,118.992 175,97.8909767 C175,76.8066977 157.746667,59.4731163 136.743333,59.4731163 Z M87.5,111 C86.0033333,111 85,111.382427 85,111.952891 L85,128.152031 C85,128.722495 86.0033333,129.104921 87.5,129.104921 C88.9966667,129.104921 90,128.722495 90,128.152031 L90,111.952891 C90,111.382427 88.9966667,111 87.5,111 Z M105.5,144 C104.003333,144 103,144.382427 103,144.952891 L103,161.152031 C103,161.722495 104.003333,162.104921 105.5,162.104921 C106.996667,162.104921 108,161.722495 108,161.152031 L108,144.952891 C108,144.382427 106.996667,144 105.5,144 Z" id="Combined-Shape" stroke="#000000" stroke-width="2"></path>
<polygon id="Page-1" points="122.934145 127.270061 122.041616 125.724073 119.113005 127.415495 113.78705 124.34145 119.113005 121.267405 122.03896 122.95617 122.931489 121.412839 120.897399 120.23741 124 118.445047 123.108135 116.901716 120.000221 118.694079 120.000221 116.335916 118.21782 116.335916 118.21782 119.724073 112.88456 122.803431 112.88456 116.644715 115.82114 114.950636 114.931267 113.407305 112.88456 114.587382 112.88456 111 111.102158 111 111.102158 114.582734 109.066076 113.407305 108.176204 114.953293 111.102158 116.642059 111.102158 122.790149 105.776868 119.716104 105.776868 116.335916 103.99181 116.335916 103.99181 118.68611 100.891865 116.896403 100 118.439734 103.104593 120.232097 101.065855 121.410183 101.958384 122.95617 104.889651 121.262092 110.220255 124.34145 104.889651 127.420808 101.953071 125.726729 101.063199 127.272717 103.104593 128.450802 100.002656 130.243165 100.894521 131.786497 103.99181 129.99679 103.99181 132.346984 105.776868 132.346984 105.776868 128.966796 111.102158 125.89275 111.102158 132.043498 108.17886 133.729607 109.068733 135.272939 111.102158 134.100166 111.102158 137.6829 112.88456 137.6829 112.88456 134.09751 114.925955 135.275595 115.818484 133.729607 112.88456 132.038185 112.88456 125.879469 118.21782 128.958827 118.21782 132.346984 120.000221 132.346984 120.000221 129.988821 123.108135 131.781184 123.997344 130.237853 120.897399 128.44549"></polygon>
<polygon id="Page-1" points="89.934145 160.270061 89.0416159 158.724073 86.113005 160.415495 80.7870504 157.34145 86.113005 154.267405 89.0389596 155.95617 89.9314887 154.412839 87.897399 153.23741 91 151.445047 90.108135 149.901716 87.0002214 151.694079 87.0002214 149.335916 85.2178196 149.335916 85.2178196 152.724073 79.88456 155.803431 79.88456 149.644715 82.82114 147.950636 81.9312673 146.407305 79.88456 147.587382 79.88456 144 78.1021583 144 78.1021583 147.582734 76.0660764 146.407305 75.1762037 147.953293 78.1021583 149.642059 78.1021583 155.790149 72.7768677 152.716104 72.7768677 149.335916 70.9918096 149.335916 70.9918096 151.68611 67.891865 149.896403 67 151.439734 70.1045932 153.232097 68.065855 154.410183 68.9583841 155.95617 71.8896514 154.262092 77.2202546 157.34145 71.8896514 160.420808 68.9530714 158.726729 68.0631987 160.272717 70.1045932 161.450802 67.0026563 163.243165 67.8945213 164.786497 70.9918096 162.99679 70.9918096 165.346984 72.7768677 165.346984 72.7768677 161.966796 78.1021583 158.89275 78.1021583 165.043498 75.17886 166.729607 76.0687327 168.272939 78.1021583 167.100166 78.1021583 170.6829 79.88456 170.6829 79.88456 167.09751 81.9259546 168.275595 82.8184837 166.729607 79.88456 165.038185 79.88456 158.879469 85.2178196 161.958827 85.2178196 165.346984 87.0002214 165.346984 87.0002214 162.988821 90.108135 164.781184 90.9973437 163.237853 87.897399 161.44549"></polygon>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>scattered_snow_showers_day</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="scattered_snow_showers_day" fill="#000000">
<path d="M138.468111,60.4555535 C134.338222,60.4555535 130.208333,60.9677023 126.333333,62.2653767 C117.546556,43.3297116 98.1715556,30.8651163 77.25,30.8651163 C47.2867778,30.8651163 23,55.2648558 23,85.3674419 C23,109.23773 38.7548889,130.529972 61.4951111,137.530493 C63.5652222,138.046102 65.625,137.018344 66.4068889,134.935144 C66.9166667,132.855405 65.8936667,130.786047 63.8235556,130.000521 C44.1764444,124.0416 30.75,105.874158 30.75,85.3674419 C30.75,59.6700279 51.6715556,38.6511628 77.25,38.6511628 C95.3333333,38.6511628 111.870111,49.2886326 119.365222,65.6462512 L120.911778,68.7537488 C121.690222,70.5670326 123.75,71.3490977 125.565222,70.8369488 L128.916667,69.7953488 C132.009778,68.7537488 135.375,68.2416 138.740222,68.2416 C156.310333,68.2416 170.518667,82.5160186 170.518667,100.167851 C170.518667,117.809302 156.041667,132.083721 138.468111,132.083721 C136.398,132.083721 134.593111,133.893544 134.593111,135.976744 C134.593111,138.059944 136.398,139.869767 138.468111,139.869767 C160.171556,139.869767 178,121.9584 178,100.154009 C178,78.3669209 160.171556,60.4555535 138.468111,60.4555535 L138.468111,60.4555535 Z" id="Fill-4" stroke="#152F64" stroke-width="2"></path>
<polygon id="Page-1" points="130.187495 159.202546 129.518098 158.043055 127.321639 159.311621 123.327174 157.006087 127.321639 154.700553 129.516105 155.967128 130.185502 154.809629 128.659935 153.928058 130.986886 152.583785 130.317987 151.426287 127.987052 152.770559 127.987052 151.001937 126.65025 151.001937 126.65025 153.543055 122.650306 155.852573 122.650306 151.233536 124.852741 149.962977 124.185336 148.805479 122.650306 149.690537 122.650306 147 121.313504 147 121.313504 149.68705 119.786443 148.805479 119.119038 149.96497 121.313504 151.231544 121.313504 155.842612 117.319537 153.537078 117.319537 151.001937 115.980743 151.001937 115.980743 152.764582 113.655784 151.422302 112.986886 152.579801 115.315331 153.924073 113.786277 154.807637 114.455674 155.967128 116.654124 154.696569 120.652077 157.006087 116.654124 159.315606 114.451689 158.045047 113.784285 159.204538 115.315331 160.088102 112.988878 161.432374 113.657777 162.589873 115.980743 161.247593 115.980743 163.010238 117.319537 163.010238 117.319537 160.475097 121.313504 158.169563 121.313504 162.782623 119.121031 164.047205 119.788435 165.204704 121.313504 164.325125 121.313504 167.012175 122.650306 167.012175 122.650306 164.323132 124.181352 165.206696 124.850749 164.047205 122.650306 162.778639 122.650306 158.159602 126.65025 160.46912 126.65025 163.010238 127.987052 163.010238 127.987052 161.241616 130.317987 162.585888 130.984894 161.42839 128.659935 160.084117"></polygon>
<polygon id="Page-1-Copy" points="108.60216 153.343839 107.431631 151.316317 103.590836 153.534572 96.6059885 149.503044 103.590836 145.471515 107.428148 147.686287 108.598676 145.662248 105.931021 144.120705 110 141.770068 108.830343 139.74603 104.754397 142.096667 104.754397 139.003999 102.416824 139.003999 102.416824 143.447477 95.4223965 147.485973 95.4223965 139.408981 99.2736429 137.187242 98.1065986 135.163204 95.4223965 136.710844 95.4223965 132.006087 93.084824 132.006087 93.084824 136.704747 90.4145569 135.163204 89.2475125 137.190726 93.084824 139.405497 93.084824 147.468554 86.1008473 143.437026 86.1008473 139.003999 83.7597912 139.003999 83.7597912 142.086215 79.6942963 139.739063 78.5246391 141.763101 82.5962305 144.113737 79.9224796 145.658765 81.0930077 147.686287 84.9372867 145.464548 91.9282308 149.503044 84.9372867 153.54154 81.0860402 151.319801 79.9189959 153.347323 82.5962305 154.89235 78.5281228 157.242986 79.69778 159.267025 83.7597912 156.919872 83.7597912 160.002088 86.1008473 160.002088 86.1008473 155.569062 93.084824 151.537533 93.084824 159.604074 89.2509962 161.815362 90.4180406 163.8394 93.084824 162.30134 93.084824 167 95.4223965 167 95.4223965 162.297856 98.0996311 163.842884 99.2701592 161.815362 95.4223965 159.597107 95.4223965 151.520114 102.416824 155.558611 102.416824 160.002088 104.754397 160.002088 104.754397 156.909421 108.830343 159.260057 109.996516 157.236019 105.931021 154.885383"></polygon>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>scattered_snow_showers_night</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="scattered_snow_showers_night" fill="#000000">
<path d="M138.468111,60.4555535 C134.338222,60.4555535 130.208333,60.9677023 126.333333,62.2653767 C117.546556,43.3297116 98.1715556,30.8651163 77.25,30.8651163 C47.2867778,30.8651163 23,55.2648558 23,85.3674419 C23,109.23773 38.7548889,130.529972 61.4951111,137.530493 C63.5652222,138.046102 65.625,137.018344 66.4068889,134.935144 C66.9166667,132.855405 65.8936667,130.786047 63.8235556,130.000521 C44.1764444,124.0416 30.75,105.874158 30.75,85.3674419 C30.75,59.6700279 51.6715556,38.6511628 77.25,38.6511628 C95.3333333,38.6511628 111.870111,49.2886326 119.365222,65.6462512 L120.911778,68.7537488 C121.690222,70.5670326 123.75,71.3490977 125.565222,70.8369488 L128.916667,69.7953488 C132.009778,68.7537488 135.375,68.2416 138.740222,68.2416 C156.310333,68.2416 170.518667,82.5160186 170.518667,100.167851 C170.518667,117.809302 156.041667,132.083721 138.468111,132.083721 C136.398,132.083721 134.593111,133.893544 134.593111,135.976744 C134.593111,138.059944 136.398,139.869767 138.468111,139.869767 C160.171556,139.869767 178,121.9584 178,100.154009 C178,78.3669209 160.171556,60.4555535 138.468111,60.4555535 Z M118.573693,109.889257 C117.554621,110.913236 116.369826,111.791888 115.075058,112.534719 C112.484046,114.005638 109.43952,114.844897 106.314892,114.931254 C103.189237,115.027322 99.9814641,114.373162 97.052107,113.023939 C95.5845284,112.354219 94.1919712,111.503545 92.903731,110.514437 C92.2597345,110.020763 91.6489985,109.482951 91.0611777,108.92099 C90.7693196,108.639721 90.4899682,108.345334 90.2119639,108.047768 L89.8052692,107.596083 L89.3687308,107.085211 L89.0679664,106.706535 L88.6677185,106.181593 C88.4212884,105.84491 88.1914125,105.519652 87.9660912,105.180001 C87.5248302,104.499382 87.1149407,103.795219 86.7447868,103.07172 C86.0153727,101.621396 85.441136,100.09246 85.0570711,98.5254363 C84.2831602,95.3927992 84.2386757,92.11938 84.9232214,89.0639952 C85.5939514,86.0081604 86.9942886,83.1744644 88.9290155,80.9054549 C89.9033597,79.7759483 90.9917924,78.7774996 92.1909096,77.9709785 C93.3844295,77.1586668 94.6684887,76.5225779 96.0292462,76.1471721 C95.4057915,77.412126 94.861371,78.6097667 94.4256729,79.7939211 C93.994821,80.9827759 93.6525559,82.138253 93.4231908,83.2844402 C92.9455609,85.5657184 92.8451969,87.7616868 93.0313281,89.834876 C93.2272531,91.9096785 93.7090964,93.8575972 94.4462791,95.6482497 C94.817051,96.5420735 95.2417421,97.4026084 95.7369634,98.2161589 C95.9787058,98.6258517 96.2382227,99.0258712 96.5166961,99.4118658 C96.6515764,99.6057743 96.7961585,99.8048966 96.9337518,99.9840734 L97.1217018,100.22374 L97.4261587,100.598907 L97.6145587,100.824758 L97.8487451,101.095596 C98.0071904,101.274234 98.1734422,101.444599 98.3359191,101.617887 C98.6606986,101.967477 99.0077246,102.292415 99.3605413,102.611755 C100.066761,103.250354 100.830722,103.831807 101.639424,104.365714 C103.260107,105.427089 105.083757,106.273383 107.083269,106.856386 C109.086153,107.429347 111.262462,107.742947 113.595244,107.702104 C114.763668,107.689769 115.965999,107.569823 117.21256,107.368919 C118.455797,107.157121 119.729486,106.847168 121.090161,106.471176 C120.464031,107.734114 119.593753,108.872315 118.573693,109.889257 Z" id="Combined-Shape" stroke="#000000" stroke-width="2"></path>
<polygon id="Page-1" points="130.187495 159.202546 129.518098 158.043055 127.321639 159.311621 123.327174 157.006087 127.321639 154.700553 129.516105 155.967128 130.185502 154.809629 128.659935 153.928058 130.986886 152.583785 130.317987 151.426287 127.987052 152.770559 127.987052 151.001937 126.65025 151.001937 126.65025 153.543055 122.650306 155.852573 122.650306 151.233536 124.852741 149.962977 124.185336 148.805479 122.650306 149.690537 122.650306 147 121.313504 147 121.313504 149.68705 119.786443 148.805479 119.119038 149.96497 121.313504 151.231544 121.313504 155.842612 117.319537 153.537078 117.319537 151.001937 115.980743 151.001937 115.980743 152.764582 113.655784 151.422302 112.986886 152.579801 115.315331 153.924073 113.786277 154.807637 114.455674 155.967128 116.654124 154.696569 120.652077 157.006087 116.654124 159.315606 114.451689 158.045047 113.784285 159.204538 115.315331 160.088102 112.988878 161.432374 113.657777 162.589873 115.980743 161.247593 115.980743 163.010238 117.319537 163.010238 117.319537 160.475097 121.313504 158.169563 121.313504 162.782623 119.121031 164.047205 119.788435 165.204704 121.313504 164.325125 121.313504 167.012175 122.650306 167.012175 122.650306 164.323132 124.181352 165.206696 124.850749 164.047205 122.650306 162.778639 122.650306 158.159602 126.65025 160.46912 126.65025 163.010238 127.987052 163.010238 127.987052 161.241616 130.317987 162.585888 130.984894 161.42839 128.659935 160.084117"></polygon>
<polygon id="Page-1-Copy" points="108.60216 153.343839 107.431631 151.316317 103.590836 153.534572 96.6059885 149.503044 103.590836 145.471515 107.428148 147.686287 108.598676 145.662248 105.931021 144.120705 110 141.770068 108.830343 139.74603 104.754397 142.096667 104.754397 139.003999 102.416824 139.003999 102.416824 143.447477 95.4223965 147.485973 95.4223965 139.408981 99.2736429 137.187242 98.1065986 135.163204 95.4223965 136.710844 95.4223965 132.006087 93.084824 132.006087 93.084824 136.704747 90.4145569 135.163204 89.2475125 137.190726 93.084824 139.405497 93.084824 147.468554 86.1008473 143.437026 86.1008473 139.003999 83.7597912 139.003999 83.7597912 142.086215 79.6942963 139.739063 78.5246391 141.763101 82.5962305 144.113737 79.9224796 145.658765 81.0930077 147.686287 84.9372867 145.464548 91.9282308 149.503044 84.9372867 153.54154 81.0860402 151.319801 79.9189959 153.347323 82.5962305 154.89235 78.5281228 157.242986 79.69778 159.267025 83.7597912 156.919872 83.7597912 160.002088 86.1008473 160.002088 86.1008473 155.569062 93.084824 151.537533 93.084824 159.604074 89.2509962 161.815362 90.4180406 163.8394 93.084824 162.30134 93.084824 167 95.4223965 167 95.4223965 162.297856 98.0996311 163.842884 99.2701592 161.815362 95.4223965 159.597107 95.4223965 151.520114 102.416824 155.558611 102.416824 160.002088 104.754397 160.002088 104.754397 156.909421 108.830343 159.260057 109.996516 157.236019 105.931021 154.885383"></polygon>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>scattered_thunderstorms_day</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="scattered_thunderstorms_day" stroke-width="2" fill="#000000">
<path d="M138.468111,60.4555535 C134.338222,60.4555535 130.208333,60.9677023 126.333333,62.2653767 C117.546556,43.3297116 98.1715556,30.8651163 77.25,30.8651163 C47.2867778,30.8651163 23,55.2648558 23,85.3674419 C23,109.23773 38.7548889,130.529972 61.4951111,137.530493 C63.5652222,138.046102 65.625,137.018344 66.4068889,134.935144 C66.9166667,132.855405 65.8936667,130.786047 63.8235556,130.000521 C44.1764444,124.0416 30.75,105.874158 30.75,85.3674419 C30.75,59.6700279 51.6715556,38.6511628 77.25,38.6511628 C95.3333333,38.6511628 111.870111,49.2886326 119.365222,65.6462512 L120.911778,68.7537488 C121.690222,70.5670326 123.75,71.3490977 125.565222,70.8369488 L128.916667,69.7953488 C132.009778,68.7537488 135.375,68.2416 138.740222,68.2416 C156.310333,68.2416 170.518667,82.5160186 170.518667,100.167851 C170.518667,117.809302 156.041667,132.083721 138.468111,132.083721 C136.398,132.083721 134.593111,133.893544 134.593111,135.976744 C134.593111,138.059944 136.398,139.869767 138.468111,139.869767 C160.171556,139.869767 178,121.9584 178,100.154009 C178,78.3669209 160.171556,60.4555535 138.468111,60.4555535 L138.468111,60.4555535 Z" id="Fill-4" stroke="#152F64"></path>
<path d="M138.468111,60.4555535 C134.338222,60.4555535 130.208333,60.9677023 126.333333,62.2653767 C117.546556,43.3297116 98.1715556,30.8651163 77.25,30.8651163 C47.2867778,30.8651163 23,55.2648558 23,85.3674419 C23,109.23773 38.7548889,130.529972 61.4951111,137.530493 C63.5652222,138.046102 65.625,137.018344 66.4068889,134.935144 C66.9166667,132.855405 65.8936667,130.786047 63.8235556,130.000521 C44.1764444,124.0416 30.75,105.874158 30.75,85.3674419 C30.75,59.6700279 51.6715556,38.6511628 77.25,38.6511628 C95.3333333,38.6511628 111.870111,49.2886326 119.365222,65.6462512 L120.911778,68.7537488 C121.690222,70.5670326 123.75,71.3490977 125.565222,70.8369488 L128.916667,69.7953488 C132.009778,68.7537488 135.375,68.2416 138.740222,68.2416 C156.310333,68.2416 170.518667,82.5160186 170.518667,100.167851 C170.518667,117.809302 156.041667,132.083721 138.468111,132.083721 C136.398,132.083721 134.593111,133.893544 134.593111,135.976744 C134.593111,138.059944 136.398,139.869767 138.468111,139.869767 C160.171556,139.869767 178,121.9584 178,100.154009 C178,78.3669209 160.171556,60.4555535 138.468111,60.4555535 Z M109.416667,127.737209 C107.870111,127.737209 106.833333,128.132384 106.833333,128.721863 L106.833333,155.307511 C106.833333,155.89699 107.870111,156.292164 109.416667,156.292164 C110.963222,156.292164 112,155.89699 112,155.307511 L112,128.721863 C112,128.132384 110.963222,127.737209 109.416667,127.737209 Z M121.416667,137.737209 C119.870111,137.737209 118.833333,138.132384 118.833333,138.721863 L118.833333,165.307511 C118.833333,165.89699 119.870111,166.292164 121.416667,166.292164 C122.963222,166.292164 124,165.89699 124,165.307511 L124,138.721863 C124,138.132384 122.963222,137.737209 121.416667,137.737209 Z M97.9001502,143.443326 L90.8151512,144.078606 L94.3108931,124.165195 L76.2673424,151.85801 L83.3549694,151.224936 L79.8163981,170.685915 L97.9001502,143.443326 Z" id="Combined-Shape" stroke="#000000"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>scattered_thunderstorms_night</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="scattered_thunderstorms_night" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M138.468111,60.4555535 C134.338222,60.4555535 130.208333,60.9677023 126.333333,62.2653767 C117.546556,43.3297116 98.1715556,30.8651163 77.25,30.8651163 C47.2867778,30.8651163 23,55.2648558 23,85.3674419 C23,109.23773 38.7548889,130.529972 61.4951111,137.530493 C63.5652222,138.046102 65.625,137.018344 66.4068889,134.935144 C66.9166667,132.855405 65.8936667,130.786047 63.8235556,130.000521 C44.1764444,124.0416 30.75,105.874158 30.75,85.3674419 C30.75,59.6700279 51.6715556,38.6511628 77.25,38.6511628 C95.3333333,38.6511628 111.870111,49.2886326 119.365222,65.6462512 L120.911778,68.7537488 C121.690222,70.5670326 123.75,71.3490977 125.565222,70.8369488 L128.916667,69.7953488 C132.009778,68.7537488 135.375,68.2416 138.740222,68.2416 C156.310333,68.2416 170.518667,82.5160186 170.518667,100.167851 C170.518667,117.809302 156.041667,132.083721 138.468111,132.083721 C136.398,132.083721 134.593111,133.893544 134.593111,135.976744 C134.593111,138.059944 136.398,139.869767 138.468111,139.869767 C160.171556,139.869767 178,121.9584 178,100.154009 C178,78.3669209 160.171556,60.4555535 138.468111,60.4555535 Z M109.416667,127.737209 C107.870111,127.737209 106.833333,128.132384 106.833333,128.721863 L106.833333,155.307511 C106.833333,155.89699 107.870111,156.292164 109.416667,156.292164 C110.963222,156.292164 112,155.89699 112,155.307511 L112,128.721863 C112,128.132384 110.963222,127.737209 109.416667,127.737209 Z M121.416667,137.737209 C119.870111,137.737209 118.833333,138.132384 118.833333,138.721863 L118.833333,165.307511 C118.833333,165.89699 119.870111,166.292164 121.416667,166.292164 C122.963222,166.292164 124,165.89699 124,165.307511 L124,138.721863 C124,138.132384 122.963222,137.737209 121.416667,137.737209 Z M97.9001502,143.443326 L90.8151512,144.078606 L94.3108931,124.165195 L76.2673424,151.85801 L83.3549694,151.224936 L79.8163981,170.685915 L97.9001502,143.443326 Z M118.573693,109.889257 C117.554621,110.913236 116.369826,111.791888 115.075058,112.534719 C112.484046,114.005638 109.43952,114.844897 106.314892,114.931254 C103.189237,115.027322 99.9814641,114.373162 97.052107,113.023939 C95.5845284,112.354219 94.1919712,111.503545 92.903731,110.514437 C92.2597345,110.020763 91.6489985,109.482951 91.0611777,108.92099 C90.7693196,108.639721 90.4899682,108.345334 90.2119639,108.047768 L89.8052692,107.596083 L89.3687308,107.085211 L89.0679664,106.706535 L88.6677185,106.181593 C88.4212884,105.84491 88.1914125,105.519652 87.9660912,105.180001 C87.5248302,104.499382 87.1149407,103.795219 86.7447868,103.07172 C86.0153727,101.621396 85.441136,100.09246 85.0570711,98.5254363 C84.2831602,95.3927992 84.2386757,92.11938 84.9232214,89.0639952 C85.5939514,86.0081604 86.9942886,83.1744644 88.9290155,80.9054549 C89.9033597,79.7759483 90.9917924,78.7774996 92.1909096,77.9709785 C93.3844295,77.1586668 94.6684887,76.5225779 96.0292462,76.1471721 C95.4057915,77.412126 94.861371,78.6097667 94.4256729,79.7939211 C93.994821,80.9827759 93.6525559,82.138253 93.4231908,83.2844402 C92.9455609,85.5657184 92.8451969,87.7616868 93.0313281,89.834876 C93.2272531,91.9096785 93.7090964,93.8575972 94.4462791,95.6482497 C94.817051,96.5420735 95.2417421,97.4026084 95.7369634,98.2161589 C95.9787058,98.6258517 96.2382227,99.0258712 96.5166961,99.4118658 C96.6515764,99.6057743 96.7961585,99.8048966 96.9337518,99.9840734 L97.1217018,100.22374 L97.4261587,100.598907 L97.6145587,100.824758 L97.8487451,101.095596 C98.0071904,101.274234 98.1734422,101.444599 98.3359191,101.617887 C98.6606986,101.967477 99.0077246,102.292415 99.3605413,102.611755 C100.066761,103.250354 100.830722,103.831807 101.639424,104.365714 C103.260107,105.427089 105.083757,106.273383 107.083269,106.856386 C109.086153,107.429347 111.262462,107.742947 113.595244,107.702104 C114.763668,107.689769 115.965999,107.569823 117.21256,107.368919 C118.455797,107.157121 119.729486,106.847168 121.090161,106.471176 C120.464031,107.734114 119.593753,108.872315 118.573693,109.889257 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>snow</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="snow" fill="#000000">
<path d="M136.743333,59.4731163 C132.746667,59.4731163 128.75,59.9687442 125,61.2245581 C116.496667,42.8997209 97.7466667,30.8372093 77.5,30.8372093 C48.5033333,30.8372093 25,54.4498605 25,83.5813953 C25,106.681674 40.2466667,127.28707 62.2533333,134.061767 C64.2566667,134.560744 66.25,133.56614 67.0066667,131.55014 C67.5,129.537488 66.51,127.534884 64.5066667,126.774698 C45.4933333,121.008 32.5,103.426605 32.5,83.5813953 C32.5,58.7129302 52.7466667,38.372093 77.5,38.372093 C95,38.372093 111.003333,48.6664186 118.256667,64.4963721 L119.753333,67.5036279 C120.506667,69.2584186 122.5,70.0152558 124.256667,69.5196279 L127.5,68.5116279 C130.493333,67.5036279 133.75,67.008 137.006667,67.008 C154.01,67.008 167.76,80.8219535 167.76,97.9043721 C167.76,114.976744 153.75,128.790698 136.743333,128.790698 C134.74,128.790698 132.993333,130.54214 132.993333,132.55814 C132.993333,134.57414 134.74,136.325581 136.743333,136.325581 C157.746667,136.325581 175,118.992 175,97.8909767 C175,76.8066977 157.746667,59.4731163 136.743333,59.4731163 L136.743333,59.4731163 Z" id="Fill-4" stroke="#000000" stroke-width="2"></path>
<polygon id="Page-1" points="98.934145 127.270061 98.0416159 125.724073 95.113005 127.415495 89.7870504 124.34145 95.113005 121.267405 98.0389596 122.95617 98.9314887 121.412839 96.897399 120.23741 100 118.445047 99.108135 116.901716 96.0002214 118.694079 96.0002214 116.335916 94.2178196 116.335916 94.2178196 119.724073 88.88456 122.803431 88.88456 116.644715 91.82114 114.950636 90.9312673 113.407305 88.88456 114.587382 88.88456 111 87.1021583 111 87.1021583 114.582734 85.0660764 113.407305 84.1762037 114.953293 87.1021583 116.642059 87.1021583 122.790149 81.7768677 119.716104 81.7768677 116.335916 79.9918096 116.335916 79.9918096 118.68611 76.891865 116.896403 76 118.439734 79.1045932 120.232097 77.065855 121.410183 77.9583841 122.95617 80.8896514 121.262092 86.2202546 124.34145 80.8896514 127.420808 77.9530714 125.726729 77.0631987 127.272717 79.1045932 128.450802 76.0026563 130.243165 76.8945213 131.786497 79.9918096 129.99679 79.9918096 132.346984 81.7768677 132.346984 81.7768677 128.966796 87.1021583 125.89275 87.1021583 132.043498 84.17886 133.729607 85.0687327 135.272939 87.1021583 134.100166 87.1021583 137.6829 88.88456 137.6829 88.88456 134.09751 90.9259546 135.275595 91.8184837 133.729607 88.88456 132.038185 88.88456 125.879469 94.2178196 128.958827 94.2178196 132.346984 96.0002214 132.346984 96.0002214 129.988821 99.108135 131.781184 99.9973437 130.237853 96.897399 128.44549"></polygon>
<polygon id="Page-1" points="122.934145 145.270061 122.041616 143.724073 119.113005 145.415495 113.78705 142.34145 119.113005 139.267405 122.03896 140.95617 122.931489 139.412839 120.897399 138.23741 124 136.445047 123.108135 134.901716 120.000221 136.694079 120.000221 134.335916 118.21782 134.335916 118.21782 137.724073 112.88456 140.803431 112.88456 134.644715 115.82114 132.950636 114.931267 131.407305 112.88456 132.587382 112.88456 129 111.102158 129 111.102158 132.582734 109.066076 131.407305 108.176204 132.953293 111.102158 134.642059 111.102158 140.790149 105.776868 137.716104 105.776868 134.335916 103.99181 134.335916 103.99181 136.68611 100.891865 134.896403 100 136.439734 103.104593 138.232097 101.065855 139.410183 101.958384 140.95617 104.889651 139.262092 110.220255 142.34145 104.889651 145.420808 101.953071 143.726729 101.063199 145.272717 103.104593 146.450802 100.002656 148.243165 100.894521 149.786497 103.99181 147.99679 103.99181 150.346984 105.776868 150.346984 105.776868 146.966796 111.102158 143.89275 111.102158 150.043498 108.17886 151.729607 109.068733 153.272939 111.102158 152.100166 111.102158 155.6829 112.88456 155.6829 112.88456 152.09751 114.925955 153.275595 115.818484 151.729607 112.88456 150.038185 112.88456 143.879469 118.21782 146.958827 118.21782 150.346984 120.000221 150.346984 120.000221 147.988821 123.108135 149.781184 123.997344 148.237853 120.897399 146.44549"></polygon>
<polygon id="Page-1" points="89.934145 160.270061 89.0416159 158.724073 86.113005 160.415495 80.7870504 157.34145 86.113005 154.267405 89.0389596 155.95617 89.9314887 154.412839 87.897399 153.23741 91 151.445047 90.108135 149.901716 87.0002214 151.694079 87.0002214 149.335916 85.2178196 149.335916 85.2178196 152.724073 79.88456 155.803431 79.88456 149.644715 82.82114 147.950636 81.9312673 146.407305 79.88456 147.587382 79.88456 144 78.1021583 144 78.1021583 147.582734 76.0660764 146.407305 75.1762037 147.953293 78.1021583 149.642059 78.1021583 155.790149 72.7768677 152.716104 72.7768677 149.335916 70.9918096 149.335916 70.9918096 151.68611 67.891865 149.896403 67 151.439734 70.1045932 153.232097 68.065855 154.410183 68.9583841 155.95617 71.8896514 154.262092 77.2202546 157.34145 71.8896514 160.420808 68.9530714 158.726729 68.0631987 160.272717 70.1045932 161.450802 67.0026563 163.243165 67.8945213 164.786497 70.9918096 162.99679 70.9918096 165.346984 72.7768677 165.346984 72.7768677 161.966796 78.1021583 158.89275 78.1021583 165.043498 75.17886 166.729607 76.0687327 168.272939 78.1021583 167.100166 78.1021583 170.6829 79.88456 170.6829 79.88456 167.09751 81.9259546 168.275595 82.8184837 166.729607 79.88456 165.038185 79.88456 158.879469 85.2178196 161.958827 85.2178196 165.346984 87.0002214 165.346984 87.0002214 162.988821 90.108135 164.781184 90.9973437 163.237853 87.897399 161.44549"></polygon>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>snow_storm</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="snow_storm" fill="#000000">
<path d="M111.712302,97.0503004 C110.367107,96.3942049 109.023439,96.8603569 108.364292,98.2118087 L84.1417376,147.875405 C83.4825905,149.226857 83.9425024,150.572674 85.2876975,151.228769 C86.6328926,151.884865 87.9765608,151.418713 88.6357079,150.067261 L112.858262,100.403664 C113.517409,99.0522126 113.057498,97.7063959 111.712302,97.0503004 Z M136.743333,59.4731163 C132.746667,59.4731163 128.75,59.9687442 125,61.2245581 C116.496667,42.8997209 97.7466667,30.8372093 77.5,30.8372093 C48.5033333,30.8372093 25,54.4498605 25,83.5813953 C25,106.681674 40.2466667,127.28707 62.2533333,134.061767 C64.2566667,134.560744 66.25,133.56614 67.0066667,131.55014 C67.5,129.537488 66.51,127.534884 64.5066667,126.774698 C45.4933333,121.008 32.5,103.426605 32.5,83.5813953 C32.5,58.7129302 52.7466667,38.372093 77.5,38.372093 C95,38.372093 111.003333,48.6664186 118.256667,64.4963721 L119.753333,67.5036279 C120.506667,69.2584186 122.5,70.0152558 124.256667,69.5196279 L127.5,68.5116279 C130.493333,67.5036279 133.75,67.008 137.006667,67.008 C154.01,67.008 167.76,80.8219535 167.76,97.9043721 C167.76,114.976744 153.75,128.790698 136.743333,128.790698 C134.74,128.790698 132.993333,130.54214 132.993333,132.55814 C132.993333,134.57414 134.74,136.325581 136.743333,136.325581 C157.746667,136.325581 175,118.992 175,97.8909767 C175,76.8066977 157.746667,59.4731163 136.743333,59.4731163 Z M130.959739,96.4148211 C129.614544,95.7587256 128.270876,96.2248777 127.611729,97.5763295 L108.894301,135.952745 C108.235154,137.304197 108.695065,138.650014 110.040261,139.306109 C111.385456,139.962205 112.729124,139.496053 113.388271,138.144601 L132.105699,99.7681852 C132.764846,98.4167334 132.304935,97.0709166 130.959739,96.4148211 Z M90.1790676,96.0732559 L74.3269622,128.574888 C73.975476,129.295542 74.6416372,130.218485 75.9868323,130.874581 C77.3320274,131.530676 78.4694462,131.487398 78.8209324,130.766744 L94.6730378,98.2651117 C95.024524,97.5444582 94.3583628,96.6215151 93.0131677,95.9654196 C91.6679726,95.3093241 90.5305538,95.3526024 90.1790676,96.0732559 Z" id="Combined-Shape" stroke="#000000"></path>
<polygon id="Page-1" points="79.2006087 147.202546 78.531212 146.043055 76.3347537 147.311621 72.3402878 145.006087 76.3347537 142.700553 78.5292197 143.967128 79.1986165 142.809629 77.6730493 141.928058 80 140.583785 79.3311013 139.426287 77.000166 140.770559 77.000166 139.001937 75.6633647 139.001937 75.6633647 141.543055 71.66342 143.852573 71.66342 139.233536 73.865855 137.962977 73.1984505 136.805479 71.66342 137.690537 71.66342 135 70.3266187 135 70.3266187 137.68705 68.7995573 136.805479 68.1321527 137.96497 70.3266187 139.231544 70.3266187 143.842612 66.3326508 141.537078 66.3326508 139.001937 64.9938572 139.001937 64.9938572 140.764582 62.6688987 139.422302 62 140.579801 64.3284449 141.924073 62.7993913 142.807637 63.468788 143.967128 65.6672385 142.696569 69.6651909 145.006087 65.6672385 147.315606 63.4648035 146.045047 62.797399 147.204538 64.3284449 148.088102 62.0019923 149.432374 62.670891 150.589873 64.9938572 149.247593 64.9938572 151.010238 66.3326508 151.010238 66.3326508 148.475097 70.3266187 146.169563 70.3266187 150.782623 68.134145 152.047205 68.8015495 153.204704 70.3266187 152.325125 70.3266187 155.012175 71.66342 155.012175 71.66342 152.323132 73.194466 153.206696 73.8638628 152.047205 71.66342 150.778639 71.66342 146.159602 75.6633647 148.46912 75.6633647 151.010238 77.000166 151.010238 77.000166 149.241616 79.3311013 150.585888 79.9980077 149.42839 77.6730493 148.084117"></polygon>
<polygon id="Page-1" points="93.2006087 167.202546 92.531212 166.043055 90.3347537 167.311621 86.3402878 165.006087 90.3347537 162.700553 92.5292197 163.967128 93.1986165 162.809629 91.6730493 161.928058 94 160.583785 93.3311013 159.426287 91.000166 160.770559 91.000166 159.001937 89.6633647 159.001937 89.6633647 161.543055 85.66342 163.852573 85.66342 159.233536 87.865855 157.962977 87.1984505 156.805479 85.66342 157.690537 85.66342 155 84.3266187 155 84.3266187 157.68705 82.7995573 156.805479 82.1321527 157.96497 84.3266187 159.231544 84.3266187 163.842612 80.3326508 161.537078 80.3326508 159.001937 78.9938572 159.001937 78.9938572 160.764582 76.6688987 159.422302 76 160.579801 78.3284449 161.924073 76.7993913 162.807637 77.468788 163.967128 79.6672385 162.696569 83.6651909 165.006087 79.6672385 167.315606 77.4648035 166.045047 76.797399 167.204538 78.3284449 168.088102 76.0019923 169.432374 76.670891 170.589873 78.9938572 169.247593 78.9938572 171.010238 80.3326508 171.010238 80.3326508 168.475097 84.3266187 166.169563 84.3266187 170.782623 82.134145 172.047205 82.8015495 173.204704 84.3266187 172.325125 84.3266187 175.012175 85.66342 175.012175 85.66342 172.323132 87.194466 173.206696 87.8638628 172.047205 85.66342 170.778639 85.66342 166.159602 89.6633647 168.46912 89.6633647 171.010238 91.000166 171.010238 91.000166 169.241616 93.3311013 170.585888 93.9980077 169.42839 91.6730493 168.084117"></polygon>
<polygon id="Page-1" points="115.200609 157.202546 114.531212 156.043055 112.334754 157.311621 108.340288 155.006087 112.334754 152.700553 114.52922 153.967128 115.198616 152.809629 113.673049 151.928058 116 150.583785 115.331101 149.426287 113.000166 150.770559 113.000166 149.001937 111.663365 149.001937 111.663365 151.543055 107.66342 153.852573 107.66342 149.233536 109.865855 147.962977 109.19845 146.805479 107.66342 147.690537 107.66342 145 106.326619 145 106.326619 147.68705 104.799557 146.805479 104.132153 147.96497 106.326619 149.231544 106.326619 153.842612 102.332651 151.537078 102.332651 149.001937 100.993857 149.001937 100.993857 150.764582 98.6688987 149.422302 98 150.579801 100.328445 151.924073 98.7993913 152.807637 99.468788 153.967128 101.667239 152.696569 105.665191 155.006087 101.667239 157.315606 99.4648035 156.045047 98.797399 157.204538 100.328445 158.088102 98.0019923 159.432374 98.670891 160.589873 100.993857 159.247593 100.993857 161.010238 102.332651 161.010238 102.332651 158.475097 106.326619 156.169563 106.326619 160.782623 104.134145 162.047205 104.80155 163.204704 106.326619 162.325125 106.326619 165.012175 107.66342 165.012175 107.66342 162.323132 109.194466 163.206696 109.863863 162.047205 107.66342 160.778639 107.66342 156.159602 111.663365 158.46912 111.663365 161.010238 113.000166 161.010238 113.000166 159.241616 115.331101 160.585888 115.998008 159.42839 113.673049 158.084117"></polygon>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>sunny</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="sunny" stroke="#000000" fill="#000000">
<path d="M100.5,135.25569 C119.692519,135.25569 135.25569,119.692519 135.25569,100.5 C135.25569,81.3074814 119.692519,65.7443099 100.5,65.7443099 C81.3074814,65.7443099 65.7443099,81.3074814 65.7443099,100.5 C65.7443099,119.692519 81.3074814,135.25569 100.5,135.25569 L100.5,135.25569 Z M100.5,72.0464676 C116.186743,72.0464676 128.953532,84.8132568 128.953532,100.5 C128.953532,116.186743 116.186743,128.953532 100.5,128.953532 C84.8201219,128.953532 72.0464676,116.186743 72.0464676,100.5 C72.0464676,84.8132568 84.8132568,72.0464676 100.5,72.0464676 Z M97.3443444,153.855522 L97.3443444,174.585822 C97.3443444,176.320403 98.7562657,177.732324 100.5,177.732324 C102.243734,177.732324 103.655656,176.320403 103.655656,174.576669 L103.655656,153.855522 C103.655656,152.12323 102.243734,150.702155 100.5,150.702155 C98.7562657,150.702155 97.3443444,152.114076 97.3443444,153.855522 Z M100.5,50.297845 C102.243734,50.297845 103.655656,48.8859237 103.655656,47.1444779 L103.655656,26.4233313 C103.655656,24.679597 102.243734,23.2676757 100.5,23.2676757 C98.7562657,23.2676757 97.3443444,24.679597 97.3443444,26.4233313 L97.3443444,47.1536313 C97.3443444,48.8859237 98.7562657,50.297845 100.5,50.297845 Z M26.4233313,103.655656 L47.1536313,103.655656 C48.8950772,103.655656 50.3069985,102.243734 50.3069985,100.5 C50.3069985,98.7562657 48.8950772,97.3443444 47.1536313,97.3443444 L26.4233313,97.3443444 C24.679597,97.3443444 23.2676757,98.7562657 23.2676757,100.5 C23.2676757,102.243734 24.679597,103.655656 26.4233313,103.655656 Z M174.576669,97.3443444 L153.855522,97.3443444 C152.114076,97.3443444 150.702155,98.7562657 150.702155,100.5 C150.702155,102.243734 152.114076,103.655656 153.855522,103.655656 L174.585822,103.655656 C176.320403,103.655656 177.732324,102.243734 177.732324,100.5 C177.732324,98.7562657 176.320403,97.3443444 174.576669,97.3443444 Z M60.5428559,135.99712 L45.8835886,150.656388 C44.6501598,151.889816 44.6501598,153.882983 45.8835886,155.116411 C47.1170175,156.34984 49.1101835,156.34984 50.3436124,155.116411 L65.0028796,140.457144 C66.2363084,139.223715 66.2363084,137.230549 65.0028796,135.99712 C63.7694508,134.772845 61.7762847,134.772845 60.5428559,135.99712 Z M140.457144,65.0028796 L155.116411,50.3436124 C156.34984,49.1101835 156.34984,47.1170175 155.116411,45.8835886 C153.882983,44.6501598 151.889816,44.6501598 150.656388,45.8835886 L135.99712,60.5428559 C134.763692,61.7762847 134.763692,63.7694508 135.99712,65.0028796 C137.230549,66.2363084 139.223715,66.2363084 140.457144,65.0028796 Z M60.5428559,65.0028796 C61.7762847,66.2363084 63.7694508,66.2363084 65.0028796,65.0028796 C66.2363084,63.7694508 66.2363084,61.7762847 65.0028796,60.5428559 L50.3436124,45.8927421 C49.1101835,44.6593133 47.1170175,44.6593133 45.8835886,45.8927421 C44.6501598,47.1261709 44.6501598,49.119337 45.8835886,50.3527658 L60.5428559,65.0028796 Z M135.99712,135.99712 C134.763692,137.230549 134.763692,139.223715 135.99712,140.457144 L150.656388,155.116411 C151.889816,156.340687 153.882983,156.340687 155.116411,155.116411 C156.34984,153.882983 156.34984,151.889816 155.116411,150.656388 L140.457144,135.99712 C139.223715,134.763692 137.230549,134.763692 135.99712,135.99712 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>thunderstorm</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="thunderstorm" stroke="#000000" stroke-width="2" fill="#000000">
<path d="M136.743333,52.4731163 C132.746667,52.4731163 128.75,52.9687442 125,54.2245581 C116.496667,35.8997209 97.7466667,23.8372093 77.5,23.8372093 C48.5033333,23.8372093 25,47.4498605 25,76.5813953 C25,99.6816744 40.2466667,120.28707 62.2533333,127.061767 C64.2566667,127.560744 66.25,126.56614 67.0066667,124.55014 C67.5,122.537488 66.51,120.534884 64.5066667,119.774698 C45.4933333,114.008 32.5,96.4266047 32.5,76.5813953 C32.5,51.7129302 52.7466667,31.372093 77.5,31.372093 C95,31.372093 111.003333,41.6664186 118.256667,57.4963721 L119.753333,60.5036279 C120.506667,62.2584186 122.5,63.0152558 124.256667,62.5196279 L127.5,61.5116279 C130.493333,60.5036279 133.75,60.008 137.006667,60.008 C154.01,60.008 167.76,73.8219535 167.76,90.9043721 C167.76,107.976744 153.75,121.790698 136.743333,121.790698 C134.74,121.790698 132.993333,123.54214 132.993333,125.55814 C132.993333,127.57414 134.74,129.325581 136.743333,129.325581 C157.746667,129.325581 175,111.992 175,90.8909767 C175,69.8066977 157.746667,52.4731163 136.743333,52.4731163 Z M117.423568,123.977604 L104.069969,125.174961 L110.658641,87.6427451 L76.6506837,139.837355 L90.0092363,138.644155 L83.3398403,175.323641 L117.423568,123.977604 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>tornado</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="tornado" fill="#000000">
<path d="M60.937561,46.2941463 C58.0997561,46.2941463 55.7946341,43.9921951 55.7946341,41.1543902 C55.7946341,38.3197561 58.0997561,36.0146341 60.937561,36.0146341 L139.200732,36.0146341 C142.038537,36.0146341 144.340488,38.3197561 144.340488,41.1543902 C144.340488,43.9921951 142.05122,46.2941463 139.200732,46.2941463 L60.937561,46.2941463 Z M125.503171,62.9785366 L64.3682927,62.9785366 C61.5304878,62.9785366 59.2253659,60.6765854 59.2253659,57.8387805 C59.2253659,55.0041463 61.5304878,52.6990244 64.3682927,52.6990244 L125.503171,52.6990244 C128.337805,52.6990244 130.642927,55.0041463 130.642927,57.8387805 C130.642927,60.6765854 128.337805,62.9785366 125.503171,62.9785366 Z M116.932683,79.6502439 L74.6478049,79.6502439 C71.81,79.6502439 69.5080488,77.345122 69.5080488,74.5104878 C69.5080488,71.6726829 71.81,69.3707317 74.6478049,69.3707317 L116.932683,69.3707317 C119.767317,69.3707317 122.072439,71.6726829 122.072439,74.5104878 C122.072439,77.345122 119.767317,79.6502439 116.932683,79.6502439 Z M113.501951,96.3219512 L88.3580488,96.3219512 C85.5202439,96.3219512 83.2182927,94.0168293 83.2182927,91.1821951 C83.2182927,88.3443902 85.5202439,86.042439 88.3580488,86.042439 L113.501951,86.042439 C116.336585,86.042439 118.641707,88.3443902 118.641707,91.1821951 C118.641707,94.0295122 116.336585,96.3219512 113.501951,96.3219512 Z M111.792927,113.006341 L93.4978049,113.006341 C90.66,113.006341 88.3580488,110.70122 88.3580488,107.863415 C88.3580488,105.02878 90.66,102.723659 93.4978049,102.723659 L111.792927,102.723659 C114.627561,102.723659 116.932683,105.02878 116.932683,107.863415 C116.932683,110.713902 114.627561,113.006341 111.792927,113.006341 Z M103.219268,129.674878 L88.3580488,129.674878 C85.5202439,129.674878 83.2182927,127.372927 83.2182927,124.535122 C83.2182927,121.700488 85.5202439,119.395366 88.3580488,119.395366 L103.219268,119.395366 C106.057073,119.395366 108.362195,121.700488 108.362195,124.535122 C108.362195,127.372927 106.057073,129.674878 103.219268,129.674878 Z M94.6487805,146.359268 L83.2056098,146.359268 C80.3678049,146.359268 78.0658537,144.057317 78.0658537,141.219512 C78.0658537,138.381707 80.3678049,136.079756 83.2056098,136.079756 L94.6487805,136.079756 C97.4865854,136.079756 99.7885366,138.381707 99.7885366,141.219512 C99.7885366,144.057317 97.4865854,146.359268 94.6487805,146.359268 Z M86.0782927,162.954878 L81.4965854,162.954878 C78.6587805,162.954878 76.3568293,160.652927 76.3568293,157.815122 C76.3568293,154.980488 78.6587805,152.675366 81.4965854,152.675366 L86.0782927,152.675366 C88.9160976,152.675366 91.2180488,154.980488 91.2180488,157.815122 C91.2307317,160.652927 88.9287805,162.954878 86.0782927,162.954878 Z"></path>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
<title>windy</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="windy" fill="#000000">
<path d="M58.3543756,49.0668323 C64.6016084,49.0668323 69.6793497,53.4309829 69.6793497,58.8002727 L84.4829644,58.8002727 C84.4829644,46.4206494 72.7582152,36.3641286 58.3543756,36.3641286 C41.3848149,36.3641286 27.5657212,48.2411822 27.5657212,62.825958 C27.5657212,80.1953797 43.9982705,94.318612 64.2018333,94.318612 L172.343846,94.3186131 L172.343846,81.5953963 L64.2257004,81.5953951 C52.1787444,81.5953951 42.3633691,73.1850462 42.3633691,62.8054449 C42.3633691,55.2361309 49.5414217,49.0668323 58.3543756,49.0668323 Z M151.442321,105.436683 L113.660585,105.436683 C93.4570218,105.436683 77.0244725,119.559915 77.0244725,136.924209 C77.0244725,151.529497 90.8435662,163.386038 107.813127,163.386038 C122.216966,163.386038 133.941716,153.334645 133.941716,140.949894 L119.138101,140.949894 C119.138101,146.319184 114.06036,150.66795 107.813127,150.66795 C99.000173,150.66795 91.8221204,144.498651 91.8221204,136.924209 C91.8221204,126.590762 101.613629,118.154771 113.684452,118.154771 L171.917853,118.154772 L171.917853,105.436683 L151.442321,105.436683 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment