simo 2.8.11__py3-none-any.whl → 2.8.13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of simo might be problematic. Click here for more details.
- simo/automation/__pycache__/forms.cpython-312.pyc +0 -0
- simo/automation/__pycache__/serializers.cpython-312.pyc +0 -0
- simo/automation/forms.py +3 -2
- simo/automation/serializers.py +10 -9
- simo/core/__pycache__/controllers.cpython-312.pyc +0 -0
- simo/core/__pycache__/events.cpython-312.pyc +0 -0
- simo/core/__pycache__/forms.cpython-312.pyc +0 -0
- simo/core/__pycache__/signal_receivers.cpython-312.pyc +0 -0
- simo/core/events.py +5 -1
- simo/core/forms.py +1 -0
- simo/core/static/admin/css/simo.css +4 -4
- simo/core/static/admin/js/codemirror-init.js +1 -1
- simo/core/static/img/setup_bg1.jpg +0 -0
- simo/core/static/logo/favicon.png +0 -0
- simo/core/static/logo/logo_on_dark_white.png +0 -0
- simo/core/templates/admin/base.html +6 -6
- simo/fleet/__pycache__/controllers.cpython-312.pyc +0 -0
- simo/fleet/__pycache__/models.cpython-312.pyc +0 -0
- simo/fleet/__pycache__/socket_consumers.cpython-312.pyc +0 -0
- simo/fleet/controllers.py +3 -2
- simo/generic/__pycache__/controllers.cpython-312.pyc +0 -0
- simo/generic/__pycache__/forms.cpython-312.pyc +0 -0
- simo/generic/controllers.py +7 -1
- simo/generic/forms.py +2 -0
- {simo-2.8.11.dist-info → simo-2.8.13.dist-info}/METADATA +1 -1
- {simo-2.8.11.dist-info → simo-2.8.13.dist-info}/RECORD +30 -30
- simo/core/static/img/setup_bg.jpg +0 -0
- simo/core/static/logo/favicon_color_bg_w.svg +0 -43
- simo/core/static/logo/logo_color_bg_b.svg +0 -79
- {simo-2.8.11.dist-info → simo-2.8.13.dist-info}/LICENSE.md +0 -0
- {simo-2.8.11.dist-info → simo-2.8.13.dist-info}/WHEEL +0 -0
- {simo-2.8.11.dist-info → simo-2.8.13.dist-info}/entry_points.txt +0 -0
- {simo-2.8.11.dist-info → simo-2.8.13.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
simo/automation/forms.py
CHANGED
|
@@ -89,10 +89,11 @@ class ScriptConfigForm(BaseComponentForm):
|
|
|
89
89
|
if self.instance.pk:
|
|
90
90
|
org = Component.objects.get(pk=self.instance.pk)
|
|
91
91
|
call_assistant = org.config.get('assistant_request') \
|
|
92
|
-
|
|
92
|
+
and org.config.get('assistant_request') \
|
|
93
|
+
!= self.cleaned_data['assistant_request']
|
|
93
94
|
else:
|
|
94
95
|
call_assistant = True
|
|
95
|
-
|
|
96
|
+
|
|
96
97
|
if call_assistant:
|
|
97
98
|
resp = self.instance.ai_assistant(
|
|
98
99
|
self.cleaned_data['assistant_request'],
|
simo/automation/serializers.py
CHANGED
|
@@ -22,7 +22,7 @@ class CategorySerializer(serializers.ModelSerializer):
|
|
|
22
22
|
class ComponentSerializer(serializers.ModelSerializer):
|
|
23
23
|
'''Component serializer for AI scripts helper'''
|
|
24
24
|
|
|
25
|
-
MAX_LENGTH =
|
|
25
|
+
MAX_LENGTH = 1000
|
|
26
26
|
|
|
27
27
|
value = serializers.SerializerMethodField()
|
|
28
28
|
meta = serializers.SerializerMethodField()
|
|
@@ -37,20 +37,21 @@ class ComponentSerializer(serializers.ModelSerializer):
|
|
|
37
37
|
|
|
38
38
|
def get_value(self, obj):
|
|
39
39
|
if obj.base_type in ('ip-camera', ):
|
|
40
|
-
return '
|
|
40
|
+
return ''
|
|
41
|
+
|
|
41
42
|
if len(str(obj.value)) > self.MAX_LENGTH:
|
|
42
|
-
return
|
|
43
|
+
return str(obj.value)[:self.MAX_LENGTH] + "...TRUNCATED!"
|
|
43
44
|
return obj.value
|
|
44
45
|
|
|
45
46
|
def get_meta(self, obj):
|
|
46
|
-
if len(str(obj.
|
|
47
|
-
return
|
|
48
|
-
return obj.
|
|
47
|
+
if len(str(obj.meta)) > self.MAX_LENGTH:
|
|
48
|
+
return str(obj.meta)[:self.MAX_LENGTH] + "...TRUNCATED!"
|
|
49
|
+
return obj.meta
|
|
49
50
|
|
|
50
51
|
def get_config(self, obj):
|
|
51
|
-
if len(str(obj.
|
|
52
|
-
return
|
|
53
|
-
return obj.
|
|
52
|
+
if len(str(obj.config)) > self.MAX_LENGTH:
|
|
53
|
+
return str(obj.config)[:self.MAX_LENGTH] + "...TRUNCATED!"
|
|
54
|
+
return obj.config
|
|
54
55
|
|
|
55
56
|
|
|
56
57
|
class UserSerializer(serializers.ModelSerializer):
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
simo/core/events.py
CHANGED
|
@@ -106,6 +106,8 @@ class OnChangeMixin:
|
|
|
106
106
|
mqtt_client.subscribe(event.get_topic())
|
|
107
107
|
|
|
108
108
|
def on_mqtt_message(self, client, userdata, msg):
|
|
109
|
+
from simo.users.models import InstanceUser
|
|
110
|
+
|
|
109
111
|
payload = json.loads(msg.payload)
|
|
110
112
|
if not self._on_change_function:
|
|
111
113
|
return
|
|
@@ -138,7 +140,9 @@ class OnChangeMixin:
|
|
|
138
140
|
if no_args > 0:
|
|
139
141
|
args = [self]
|
|
140
142
|
if no_args > 1:
|
|
141
|
-
|
|
143
|
+
actor = payload.get('actor')
|
|
144
|
+
if isinstance(actor, InstanceUser):
|
|
145
|
+
args.append(actor)
|
|
142
146
|
try:
|
|
143
147
|
self._on_change_function(*args)
|
|
144
148
|
except Exception:
|
simo/core/forms.py
CHANGED
|
@@ -284,6 +284,7 @@ class ComponentAdminForm(forms.ModelForm):
|
|
|
284
284
|
patched to send all keys, even for checkboxes, via
|
|
285
285
|
input[type="hidden"] fields or some JS magic.
|
|
286
286
|
"""
|
|
287
|
+
# TODO: When creating new component, via admin interface and disabling show_in_app, show_in_app field get's removed, cince there is no "input[type="hidden"] fields or some JS magic" logic implemented.
|
|
287
288
|
if data is None:
|
|
288
289
|
# not a form submission, don't modify self.fields
|
|
289
290
|
return
|
|
@@ -95,13 +95,13 @@ a.section:link, a.section:visited{
|
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.module h2, .module caption, .inline-group h2 {
|
|
98
|
-
background: linear-gradient(0.3turn, #
|
|
98
|
+
background: linear-gradient(0.3turn, #182f3a, #08222a);
|
|
99
99
|
border-radius: 3px 3px 0px 0px;
|
|
100
100
|
/*box-shadow: 0 8px 6px -6px #bbbbbb;*/
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
.module h2, .module caption, .inline-group h2 {
|
|
104
|
-
background: linear-gradient(0.3turn, #
|
|
104
|
+
background: linear-gradient(0.3turn, #182f3a, #08222a);
|
|
105
105
|
border-radius: 3px 3px 0px 0px;
|
|
106
106
|
/*box-shadow: 0 8px 6px -6px #bbbbbb;*/
|
|
107
107
|
}
|
|
@@ -119,8 +119,8 @@ a.section:link, a.section:visited{
|
|
|
119
119
|
background-repeat: no-repeat;
|
|
120
120
|
position: relative;
|
|
121
121
|
height: 37px;
|
|
122
|
-
width:
|
|
123
|
-
margin: 7px;
|
|
122
|
+
width: 130px;
|
|
123
|
+
margin: 7px 19px 7px 7px;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
div.admin_shortcuts > ul.shortcuts {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}
|
|
3
3
|
<html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
|
|
4
4
|
<head>
|
|
5
|
-
<title>
|
|
5
|
+
<title>{{ current_instance.name }} Admin | SIMO.io</title>
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
<style>
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
|
|
46
46
|
{% block extrastyle %}{% endblock %}
|
|
47
47
|
|
|
48
|
-
<link rel="shortcut icon" type="image/png" href="{% static 'logo/
|
|
48
|
+
<link rel="shortcut icon" type="image/png" href="{% static 'logo/favicon.png' %}"/>
|
|
49
49
|
<link rel="stylesheet" href="{% static 'third_party/fontawesome-pro/css/all.min.css' %}" rel="stylesheet">
|
|
50
50
|
|
|
51
51
|
<style>
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
background: url({% static 'img/bg_dots.png' %}) repeat scroll 0 0 #ffffff;
|
|
54
54
|
}
|
|
55
55
|
#header{
|
|
56
|
-
background: linear-gradient(0.4turn, #
|
|
57
|
-
background-image: url({% static 'img/
|
|
56
|
+
background: linear-gradient(0.4turn, #092632, #000000);
|
|
57
|
+
background-image: url({% static 'img/setup_bg1.jpg' %});
|
|
58
58
|
background-position-y: -723px;
|
|
59
59
|
}
|
|
60
60
|
</style>
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
<style>
|
|
86
86
|
#instance-select{
|
|
87
87
|
background: none;
|
|
88
|
-
color: #
|
|
88
|
+
color: #fdff90;
|
|
89
89
|
font-family: 'Russo One';
|
|
90
90
|
font-size: 1rem;
|
|
91
91
|
border: none;
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
<div id="header" style="display:flex">
|
|
103
103
|
<div style="display:flex">
|
|
104
104
|
<a href="/admin/" >
|
|
105
|
-
<div id="branding" style="background-image: url({% static 'logo/
|
|
105
|
+
<div id="branding" style="background-image: url({% static 'logo/logo_on_dark_white.png' %})"></div>
|
|
106
106
|
</a>
|
|
107
107
|
<div style="
|
|
108
108
|
color: white;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
simo/fleet/controllers.py
CHANGED
|
@@ -157,10 +157,11 @@ class DHTSensor(FleeDeviceMixin, BasicSensorMixin, BaseMultiSensor):
|
|
|
157
157
|
return new_val
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
class BME680Sensor(
|
|
160
|
+
class BME680Sensor(DHTSensor):
|
|
161
161
|
gateway_class = FleetGatewayHandler
|
|
162
162
|
config_form = BME680SensorConfigForm
|
|
163
|
-
name = "
|
|
163
|
+
name = "BME68X Climate Sensor (I2C)"
|
|
164
|
+
|
|
164
165
|
|
|
165
166
|
|
|
166
167
|
class MCP9808TempSensor(FleeDeviceMixin, BaseNumericSensor):
|
|
Binary file
|
|
Binary file
|
simo/generic/controllers.py
CHANGED
|
@@ -1071,7 +1071,13 @@ class StateSelect(ControllerBase):
|
|
|
1071
1071
|
config_form = StateSelectForm
|
|
1072
1072
|
|
|
1073
1073
|
default_config = {'states': []}
|
|
1074
|
-
|
|
1074
|
+
|
|
1075
|
+
@property
|
|
1076
|
+
def default_value(self):
|
|
1077
|
+
try:
|
|
1078
|
+
return self.component.config['states'][0]['slug']
|
|
1079
|
+
except:
|
|
1080
|
+
return ''
|
|
1075
1081
|
|
|
1076
1082
|
def _validate_val(self, value, occasion=None):
|
|
1077
1083
|
available_options = [s.get('slug') for s in self.component.config.get('states', [])]
|
simo/generic/forms.py
CHANGED
|
@@ -89,6 +89,7 @@ class ThermostatConfigForm(BaseComponentForm):
|
|
|
89
89
|
], 'base_type'),
|
|
90
90
|
)
|
|
91
91
|
)
|
|
92
|
+
# TODO: support for multiple heaters
|
|
92
93
|
heater = Select2ModelChoiceField(
|
|
93
94
|
queryset=Component.objects.filter(base_type=Switch.base_type),
|
|
94
95
|
required=False,
|
|
@@ -99,6 +100,7 @@ class ThermostatConfigForm(BaseComponentForm):
|
|
|
99
100
|
], 'base_type'),
|
|
100
101
|
)
|
|
101
102
|
)
|
|
103
|
+
# TODO: support for multiple coolers
|
|
102
104
|
cooler = Select2ModelChoiceField(
|
|
103
105
|
queryset=Component.objects.filter(base_type=Switch.base_type),
|
|
104
106
|
required=False,
|
|
@@ -20,11 +20,11 @@ simo/__pycache__/wsgi.cpython-38.pyc,sha256=TpRxO7VM_ql31hbKphVdanydC5RI1nHB4l0Q
|
|
|
20
20
|
simo/automation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
simo/automation/app_widgets.py,sha256=gaqImMZjuMHm7nIb9a4D-Y3qipz_WhSPAHXcwGx4Uzs,199
|
|
22
22
|
simo/automation/controllers.py,sha256=66aGjlfgigcePXiLmDkbVrxbm-Z26klMKIiOvaMH71k,11545
|
|
23
|
-
simo/automation/forms.py,sha256=
|
|
23
|
+
simo/automation/forms.py,sha256=jcmiq7A-S5WwoIY3YD7GmWomHXXJAipTawWcgOavuRM,10239
|
|
24
24
|
simo/automation/gateways.py,sha256=8qgBDhkM_xYGmeEbnH5WXs5m3ihMp8Yzx7yj6XG8DNM,16382
|
|
25
25
|
simo/automation/helpers.py,sha256=iP-fxxB8HsFQy3k2CjFubu86aMqvWgmh-p24DiyOrek,4330
|
|
26
26
|
simo/automation/models.py,sha256=zt-jkzyq5ddqGT864OkJzCsvov2vZ0nO4ez3hAeZkXg,934
|
|
27
|
-
simo/automation/serializers.py,sha256=
|
|
27
|
+
simo/automation/serializers.py,sha256=Pg-hMaASQPB5_BTAMkfqM6z4jdHWH8xMYWOvDxIvmx8,2126
|
|
28
28
|
simo/automation/state.py,sha256=aZZvNBae7unnux_zGHCIWCV2z47hVJc-DIL72Hqfkeo,600
|
|
29
29
|
simo/automation/__pycache__/__init__.cpython-312.pyc,sha256=rIs1rkBbUhjXjbUffmq2-tb7XbAY0JkA83xXPoByTwU,170
|
|
30
30
|
simo/automation/__pycache__/__init__.cpython-38.pyc,sha256=YmP0xAD-mxpQHgdTZeC64sXChA8TriMZD1jckNYi3xg,164
|
|
@@ -32,7 +32,7 @@ simo/automation/__pycache__/app_widgets.cpython-312.pyc,sha256=6u8LsTpf32yn0L49e
|
|
|
32
32
|
simo/automation/__pycache__/app_widgets.cpython-38.pyc,sha256=7DfUA9V_1MiwrOe_ta-ts8dYY8xXb9UMg2_9A3XoRcs,523
|
|
33
33
|
simo/automation/__pycache__/controllers.cpython-312.pyc,sha256=QV63g3UlpMAA-yCaZxoe1B2hVeDGobfOtBA0K1h66Os,15052
|
|
34
34
|
simo/automation/__pycache__/controllers.cpython-38.pyc,sha256=CL-0Tq9B4-E36fYfWT1XEBTq1dkq1W8003f6MrBnQU0,8391
|
|
35
|
-
simo/automation/__pycache__/forms.cpython-312.pyc,sha256=
|
|
35
|
+
simo/automation/__pycache__/forms.cpython-312.pyc,sha256=kmw04yujs7dVHNHvzr9Q8gXc0e6BAZHg_URPXjLbrfU,12419
|
|
36
36
|
simo/automation/__pycache__/forms.cpython-38.pyc,sha256=cpA5hA2Iz3JsPC0Dq01ki1I7S9c5DKRcXveHApI1dJo,7772
|
|
37
37
|
simo/automation/__pycache__/gateways.cpython-312.pyc,sha256=mQWn7s8qqF-CIw9Zn80RbbaFJjTiCdaN_grMsfwa-nY,22405
|
|
38
38
|
simo/automation/__pycache__/gateways.cpython-38.pyc,sha256=nHujqChMCqqxHbZezP3MisavjKDhczqzFGurO10h-lc,11113
|
|
@@ -40,7 +40,7 @@ simo/automation/__pycache__/helpers.cpython-312.pyc,sha256=aDFtzBE72szi4gzVxK_Ni
|
|
|
40
40
|
simo/automation/__pycache__/helpers.cpython-38.pyc,sha256=fNjSyn4Mfq7-JQx-bdsnj-rSxgu20dVJ9-5ZEMT6yiM,3627
|
|
41
41
|
simo/automation/__pycache__/models.cpython-312.pyc,sha256=yGnRFAG5Py3-OsPxEjACM0WNWt6Eo9wsHeUGL3uUF8M,1789
|
|
42
42
|
simo/automation/__pycache__/models.cpython-38.pyc,sha256=VeQNAygVr0AXPlF5LEYk90Tq8zuCVPfsA2r1NBjrkxU,1230
|
|
43
|
-
simo/automation/__pycache__/serializers.cpython-312.pyc,sha256=
|
|
43
|
+
simo/automation/__pycache__/serializers.cpython-312.pyc,sha256=TlR_LpDurpMPQCEEyLtoNBAydU7a6FhBgLUoiiUjITI,4681
|
|
44
44
|
simo/automation/__pycache__/serializers.cpython-38.pyc,sha256=9Te21FW5-Tki1a-tq3gt0rme0afBA8o-7V249b4muFk,3405
|
|
45
45
|
simo/automation/__pycache__/state.cpython-312.pyc,sha256=ectoU2ps2cfQj1AKngxU4pFLx6q9qxw6u3WeT9fNDT0,1266
|
|
46
46
|
simo/automation/__pycache__/state.cpython-38.pyc,sha256=TO2IM6h2hbGVlOUcoMwHkDUF4V-54d_KVhcebMgNtCk,784
|
|
@@ -100,10 +100,10 @@ simo/core/base_types.py,sha256=WypW8hTfzveuTQtruGjLYAGQZIuczxTlW-SdRk3iQug,666
|
|
|
100
100
|
simo/core/context.py,sha256=LKw1I4iIRnlnzoTCuSLLqDX7crHdBnMo3hjqYvVmzFc,1557
|
|
101
101
|
simo/core/controllers.py,sha256=P4D0Tw1_t0CGM3JzRRMdyW9941xxrMsJVwikJz62ffE,37928
|
|
102
102
|
simo/core/dynamic_settings.py,sha256=bUs58XEZOCIEhg1TigR3LmYggli13KMryBZ9pC7ugAQ,1872
|
|
103
|
-
simo/core/events.py,sha256=
|
|
103
|
+
simo/core/events.py,sha256=hnv17g37kqwpfrkMUStfk_Rk_-G28MU1HEjolwWNNFg,4978
|
|
104
104
|
simo/core/filters.py,sha256=6wbn8C2WvKTTjtfMwwLBp2Fib1V0-DMpS4iqJd6jJQo,2540
|
|
105
105
|
simo/core/form_fields.py,sha256=b4wZ4n7OO0m0_BPPS9ILVrwBvhhjUB079YrroveFUWA,5222
|
|
106
|
-
simo/core/forms.py,sha256=
|
|
106
|
+
simo/core/forms.py,sha256=BZvmxEQ6CtRuVXWy6XF-rn_x2TSJtLRPbV0kcLOkVFY,22220
|
|
107
107
|
simo/core/gateways.py,sha256=Y2BME6zSyeUq_e-hzEUF6gErCUCP6nFxedkLZKiLVOo,4141
|
|
108
108
|
simo/core/loggers.py,sha256=EBdq23gTQScVfQVH-xeP90-wII2DQFDjoROAW6ggUP4,1645
|
|
109
109
|
simo/core/managers.py,sha256=Ampwe5K7gfE6IJULNCV35V8ysmMOdS_wz7mRzfaLZUw,3014
|
|
@@ -142,17 +142,17 @@ simo/core/__pycache__/base_types.cpython-312.pyc,sha256=Lnq2NL9B5hfwJARJYC447Rdv
|
|
|
142
142
|
simo/core/__pycache__/base_types.cpython-38.pyc,sha256=CX-qlF7CefRi_mCE954wYa9rUFR88mOl6g7fybDRu7g,803
|
|
143
143
|
simo/core/__pycache__/context.cpython-312.pyc,sha256=8rsN2Er-Sx3rrVmO0Gk4cem3euGh0kTELXj667GGZ5E,2193
|
|
144
144
|
simo/core/__pycache__/context.cpython-38.pyc,sha256=NlTHt2GvXxA21AhBkeyOLfRFUuXw7wmwqyNhhcDl2cw,1373
|
|
145
|
-
simo/core/__pycache__/controllers.cpython-312.pyc,sha256=
|
|
145
|
+
simo/core/__pycache__/controllers.cpython-312.pyc,sha256=T14yGqHLl-fAFMjvb0ITEmZo-3WT5Gj7TWmX2ZkfAcU,53852
|
|
146
146
|
simo/core/__pycache__/controllers.cpython-38.pyc,sha256=LtrQQ8egOIOuQbAckeM-z8OfbzS4W8VQ3vBnryAm3iU,32086
|
|
147
147
|
simo/core/__pycache__/dynamic_settings.cpython-312.pyc,sha256=WUZ6XF4kZb6zPf541PkKmiQaBIw-r5C6F3EUUZiTEnE,3331
|
|
148
148
|
simo/core/__pycache__/dynamic_settings.cpython-38.pyc,sha256=wGpnscX1DxFpRl54MQURhjz2aD3NJohSzw9JCFnzh2Y,2384
|
|
149
|
-
simo/core/__pycache__/events.cpython-312.pyc,sha256=
|
|
149
|
+
simo/core/__pycache__/events.cpython-312.pyc,sha256=4udG7VnvGiPAoWbDpzDkRBNVqD1FsNiL2V4xYLrC4fA,9126
|
|
150
150
|
simo/core/__pycache__/events.cpython-38.pyc,sha256=1y8YaZsiDkBOeIWzH7SQz4holmMG_RLlMWi8kuSZcoE,5280
|
|
151
151
|
simo/core/__pycache__/filters.cpython-312.pyc,sha256=-vgZ2km1A2q4Un1i30fgHT-6rROgso7HJyd7ct2coJI,3640
|
|
152
152
|
simo/core/__pycache__/filters.cpython-38.pyc,sha256=WBBDwcDQwOmgbrRhyUxenSN80rU4Eq9jQ6RcrRGCP_o,2440
|
|
153
153
|
simo/core/__pycache__/form_fields.cpython-312.pyc,sha256=sWeR1PaM7w41FmvBeYZcJyjjziDh10ysyjd2hXKS4mo,8933
|
|
154
154
|
simo/core/__pycache__/form_fields.cpython-38.pyc,sha256=NJf1tKaZjgY-inTLDgbN2y6NTH798RWJnzvKkZaFz_k,6204
|
|
155
|
-
simo/core/__pycache__/forms.cpython-312.pyc,sha256=
|
|
155
|
+
simo/core/__pycache__/forms.cpython-312.pyc,sha256=yMRfZ90ihX8MfjFu9Dvg3C22IbmkXiHmfN3FLTiQyi0,30945
|
|
156
156
|
simo/core/__pycache__/forms.cpython-38.pyc,sha256=frvM1b9KRqsjh4YbUlV1CW8yupUyXJTb2R4sVgwy2K0,17827
|
|
157
157
|
simo/core/__pycache__/gateways.cpython-312.pyc,sha256=VLLQZGJFmSszJRecatQOtMYrsVaYPEM-ZK8f2ARl-po,7574
|
|
158
158
|
simo/core/__pycache__/gateways.cpython-38.pyc,sha256=-_ugqnUOA1Cl6VfMqpV96n7ekVOEwYg_jNvoaZEcx9I,4815
|
|
@@ -170,7 +170,7 @@ simo/core/__pycache__/routing.cpython-312.pyc,sha256=bDvF5HTZ8POSOHKwREyhSPO7oh9
|
|
|
170
170
|
simo/core/__pycache__/routing.cpython-38.pyc,sha256=3T3FPJ8Cn99xZCGvMyg2xjl7al-Shm9CelbSpkJtNP8,599
|
|
171
171
|
simo/core/__pycache__/serializers.cpython-312.pyc,sha256=LW6xmjKG5Ex5y8kslVd2xGy9eRqjNP2E29GxdJaAq48,32997
|
|
172
172
|
simo/core/__pycache__/serializers.cpython-38.pyc,sha256=H3K_retN44wOj-ew0cvoxUSXqrUOhHCMV_oJabNF0Xg,20431
|
|
173
|
-
simo/core/__pycache__/signal_receivers.cpython-312.pyc,sha256=
|
|
173
|
+
simo/core/__pycache__/signal_receivers.cpython-312.pyc,sha256=MW6xZvs4mbZglSmB6cEhm9T99x6ohYoh-ZIl5MBPElo,9032
|
|
174
174
|
simo/core/__pycache__/signal_receivers.cpython-38.pyc,sha256=R_h1GHkoZXR-nrwiRJWQ9xE69JB1R_mP_fNYIBX4lrE,5165
|
|
175
175
|
simo/core/__pycache__/socket_consumers.cpython-312.pyc,sha256=Yph9SQTj6c3xr2HXKnSm7r2M7dp1ks2lp8Q6v8TJ7cM,15322
|
|
176
176
|
simo/core/__pycache__/socket_consumers.cpython-38.pyc,sha256=Mr1-x-vGjBNffbz0S6AKpJCuzHJgRm8kXefv3qVVY_E,8397
|
|
@@ -417,9 +417,9 @@ simo/core/migrations/__pycache__/__init__.cpython-38.pyc,sha256=VZmDQ57BTcebuM0K
|
|
|
417
417
|
simo/core/static/ansi_styles.css,sha256=4ieJGrjZPKyPSago9FdB_gflHoGE1vxCHi8qVn5tY-Y,37352
|
|
418
418
|
simo/core/static/admin/Img/plus.svg,sha256=2NpSFPWqGIjpAQGFI7LDQHPKagEhYkJiJX95ufCoZaI,741
|
|
419
419
|
simo/core/static/admin/Img/simo_Logo.svg,sha256=incyY8KA0x84qZFnApx0WB_cUA9-HtoJfspQKAq2sqU,7232
|
|
420
|
-
simo/core/static/admin/css/simo.css,sha256=
|
|
420
|
+
simo/core/static/admin/css/simo.css,sha256=uoTrDkPuStv_CbM0tF8zeSVk0AwoI4y3sK-BbvL7eN0,7873
|
|
421
421
|
simo/core/static/admin/js/admin_scripts.js,sha256=OuIrjNnIbudw83j9mqbO4TMQq8LrvBlqNsUlHbZSRVA,5279
|
|
422
|
-
simo/core/static/admin/js/codemirror-init.js,sha256=
|
|
422
|
+
simo/core/static/admin/js/codemirror-init.js,sha256=H4Wn6DbyYngo8YoE7c-sEdMRfIvLDOQHZIa5MV90EG4,1362
|
|
423
423
|
simo/core/static/admin/js/formsets.js,sha256=KPgFCKHVuRCnPLsHbpWtmSwA0LhjAeW_Pbji0zWyyhk,744
|
|
424
424
|
simo/core/static/admin/js/icon-autocomplete.js,sha256=5E_4L7BmS10UGMmEjCOB8Oxt5195NBiARmWRnXEx_AY,1416
|
|
425
425
|
simo/core/static/admin/js/log_output_widget.js,sha256=M1FUrEVkC0rViv2bwqTvFis_LJyRBFmmNIguCQHUKsQ,2001
|
|
@@ -433,12 +433,12 @@ simo/core/static/defaults/category_headers/watering.jpg,sha256=TSS_TfjKXH01O450C
|
|
|
433
433
|
simo/core/static/fonts/RussoOne-Regular.ttf,sha256=-J_7HF9360F4YPyQMuWuDNJXQl4Q48Twn7ygXm6DK6g,37292
|
|
434
434
|
simo/core/static/img/bg_dots.png,sha256=iPog1ZyslM5QA3bf8yKqLb4XPoiWzGyA7n-7XI1TSDQ,955
|
|
435
435
|
simo/core/static/img/no_avatar.png,sha256=A-wwIyAcyo1JDi816IMo7URVApM9f9sqwvjArrA69hY,58355
|
|
436
|
-
simo/core/static/img/
|
|
436
|
+
simo/core/static/img/setup_bg1.jpg,sha256=cNzm-JxNv977JXPhg6CdrhtYR2PqQwihbypH5gn3mtk,228199
|
|
437
437
|
simo/core/static/img/icons/clock-regular.svg,sha256=HYCFuWofhfdABi58_SGSHVOukX6LeMmNRp9VR-VtgLM,543
|
|
438
438
|
simo/core/static/img/icons/go_premium.png,sha256=gvkQCiU67cL32RmSC42cpuX8QRn6Eh6pfNx7H4KWkbc,4869
|
|
439
439
|
simo/core/static/img/icons/home-solid.svg,sha256=DhGJU1NT0w9xfA0vN2-543m56DgHEs1jV3TklqX_uIc,702
|
|
440
|
-
simo/core/static/logo/
|
|
441
|
-
simo/core/static/logo/
|
|
440
|
+
simo/core/static/logo/favicon.png,sha256=sSqEfBpKcp8C_A0LQyPHE9s1J3wuTMCi5DHAMSPa1hM,14772
|
|
441
|
+
simo/core/static/logo/logo_on_dark_white.png,sha256=5KJr_iifpB3Gx5_jNUS8HK-bM0pFL9TcwvwfcJZe6bc,23267
|
|
442
442
|
simo/core/static/scripts/OLMapWidget.js,sha256=MxTkvtZiu0Ea55FniH-0WyqoySKdrBNkZdmj8DFoeWY,8930
|
|
443
443
|
simo/core/static/scripts/hub_location.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
444
444
|
simo/core/static/third_party/codemirror/.editorconfig,sha256=Ge_tMOkxLcpqN84f0lGkskjjDRoHsBzme5Fza_ZXjY4,87
|
|
@@ -10305,7 +10305,7 @@ simo/core/static/third_party/precision-inputs/precision-inputs.base.js,sha256=wX
|
|
|
10305
10305
|
simo/core/static/third_party/precision-inputs/precision-inputs.fl-controls.css,sha256=-omqoTtSpmJI6x5v_R4Ebx0-jHEEsu_UwoRIwuT3IAo,2528
|
|
10306
10306
|
simo/core/static/third_party/precision-inputs/precision-inputs.fl-controls.js,sha256=5pN6LFtAT3s7Dc3kyS-qmfXvxfQwWiA2TPAZzSkSbAU,43471
|
|
10307
10307
|
simo/core/templates/admin/action_intermediate_form.html,sha256=rOWF3UDv-SQZUfOzp9NUULja1I-FAp5hMzt-Oyqi_wA,2043
|
|
10308
|
-
simo/core/templates/admin/base.html,sha256=
|
|
10308
|
+
simo/core/templates/admin/base.html,sha256=ixVH3ng29npof3z4HH5kCYzSw8ln6Tq-52NNfdmp7OI,6228
|
|
10309
10309
|
simo/core/templates/admin/clearable_easy_thumbnails_widget.html,sha256=Gh0z_KIEt3QC53HKJ_3QiPt9nIFCvwAx1gCny-dPHOM,704
|
|
10310
10310
|
simo/core/templates/admin/component_change_list.html,sha256=N3seVjTkIRXIXKGsleB7oWUnPlMRXDIqOPqfEyq4PNE,3320
|
|
10311
10311
|
simo/core/templates/admin/component_history.html,sha256=7vkWSDu5xugkrb79IffJ-CZts9h2EMZr9Gi4tqHBc0I,579
|
|
@@ -10410,7 +10410,7 @@ simo/fleet/apps.py,sha256=je8mRXMcRq4lABQZlyF2G2hOCkBUicR9I2jvrLDA8eI,238
|
|
|
10410
10410
|
simo/fleet/auto_urls.py,sha256=vrfrooPyY4pDuQjya-eLxCgZldfhwbEeEiXa7diO_CY,847
|
|
10411
10411
|
simo/fleet/base_types.py,sha256=wL9RVkHr0gA7HI1wZq0pruGEIgvQqpfnCL4cC3ywsvw,102
|
|
10412
10412
|
simo/fleet/ble.py,sha256=eHA_9ABjbmH1vUVCv9hiPXQL2GZZSEVwfO0xyI1S0nI,1081
|
|
10413
|
-
simo/fleet/controllers.py,sha256=
|
|
10413
|
+
simo/fleet/controllers.py,sha256=mVK9s9f2g10WE598upv5pt6Ry9ieSUUZzMk7m7M5Tfk,28880
|
|
10414
10414
|
simo/fleet/forms.py,sha256=VcqATlX-omZruUgUC2fJpeLNUGSR-szmf36_M3aa5dg,66850
|
|
10415
10415
|
simo/fleet/gateways.py,sha256=C7dyapWDlJ5erYPNLkSoH50I8kj0lIXicSno0_CrdXc,5783
|
|
10416
10416
|
simo/fleet/managers.py,sha256=ZNeHFSkF5kzsl9E1DCBevOW6kXJlD6kw0LU4B-JMOG8,828
|
|
@@ -10433,7 +10433,7 @@ simo/fleet/__pycache__/auto_urls.cpython-38.pyc,sha256=jHsvfwAumiBusr91QK1-qC-nm
|
|
|
10433
10433
|
simo/fleet/__pycache__/base_types.cpython-312.pyc,sha256=cq-Pnje7FoMP608U_L_gsCfY_JMY23z87Uao-AxjNBw,304
|
|
10434
10434
|
simo/fleet/__pycache__/base_types.cpython-38.pyc,sha256=deyPwjpT6xZiFxBGFnj5b7R-lbdOTh2krgpJhrcGVhc,274
|
|
10435
10435
|
simo/fleet/__pycache__/ble.cpython-38.pyc,sha256=Nrof9w7cm4OlpFWHeVnmvvanh2_oF9oQ3TknJiV93-0,1267
|
|
10436
|
-
simo/fleet/__pycache__/controllers.cpython-312.pyc,sha256=
|
|
10436
|
+
simo/fleet/__pycache__/controllers.cpython-312.pyc,sha256=oW0lI3sOHCkn2CJP6XNANbjM-ul3KkYUHUKz3Goarh4,40890
|
|
10437
10437
|
simo/fleet/__pycache__/controllers.cpython-38.pyc,sha256=vH7mK1K4JBcLU9eKtqTJwbgB0SFMJ-s7WvO0qOsWjrg,24739
|
|
10438
10438
|
simo/fleet/__pycache__/forms.cpython-312.pyc,sha256=KbsLDmgAzaMuQcP0WDnJ95RAA_6_IXF3lCd8FmdGvJk,81392
|
|
10439
10439
|
simo/fleet/__pycache__/forms.cpython-38.pyc,sha256=hrNfyGm2NfoNG1II-OqeHzR2TkkAWp3igvHGs6X0iIM,45252
|
|
@@ -10441,13 +10441,13 @@ simo/fleet/__pycache__/gateways.cpython-312.pyc,sha256=ZZGBAH2w9YmFvSrajZY8fUXd_
|
|
|
10441
10441
|
simo/fleet/__pycache__/gateways.cpython-38.pyc,sha256=MIpXuGWitGNdsxJ99fWvMXJ6sVE96ac7iR4K4aM4Sds,5148
|
|
10442
10442
|
simo/fleet/__pycache__/managers.cpython-312.pyc,sha256=sgcaERbhjilkFDCPqc8YZwSiEfRkXpufe0qDPqgLOiU,1733
|
|
10443
10443
|
simo/fleet/__pycache__/managers.cpython-38.pyc,sha256=Vmm23zoQnS3-uS5_WJt2n3wtjhLiEhLWaYxXJCU6Gts,1339
|
|
10444
|
-
simo/fleet/__pycache__/models.cpython-312.pyc,sha256=
|
|
10444
|
+
simo/fleet/__pycache__/models.cpython-312.pyc,sha256=D6GVp2u1P3uibMHM0GNnB6J-u8VPfAsSRrRLwsBlgHE,25409
|
|
10445
10445
|
simo/fleet/__pycache__/models.cpython-38.pyc,sha256=AXk1Q_nnHDXirHYgM3EW5pLsrR2CaPWk4EuvGCuDUpI,14131
|
|
10446
10446
|
simo/fleet/__pycache__/routing.cpython-312.pyc,sha256=vafYpGAtYc2NYxBQObMX6eIZfVZflOYgzjYv0SL1jAQ,385
|
|
10447
10447
|
simo/fleet/__pycache__/routing.cpython-38.pyc,sha256=aPrCmxFKVyB8R8ZbJDwdPdFfvT7CvobovvZeq_mqRgY,314
|
|
10448
10448
|
simo/fleet/__pycache__/serializers.cpython-312.pyc,sha256=reKKBMohl7vi7iJ6wjRbOBoFn7J9ny8EE9wv5spBHYM,4912
|
|
10449
10449
|
simo/fleet/__pycache__/serializers.cpython-38.pyc,sha256=l_FzORWCM1hcSZV0AaGRO-p0CMTcEfqnLGgbn2IVvI0,3648
|
|
10450
|
-
simo/fleet/__pycache__/socket_consumers.cpython-312.pyc,sha256=
|
|
10450
|
+
simo/fleet/__pycache__/socket_consumers.cpython-312.pyc,sha256=NEvG83s9FZkwaxwyFWFdRWq8_PufKtXuhB3kGgyeCgg,27752
|
|
10451
10451
|
simo/fleet/__pycache__/socket_consumers.cpython-38.pyc,sha256=lEC1SkY_KgRY0QoBUMPjnbFwSa7qmCf-4eNQ45hAy68,14141
|
|
10452
10452
|
simo/fleet/__pycache__/tasks.cpython-312.pyc,sha256=1XDir2GWxl7c17n0ZuCxOFKsLjaCqXgqVT4TcDvzhm8,1817
|
|
10453
10453
|
simo/fleet/__pycache__/tasks.cpython-38.pyc,sha256=RoNxL2WUiW67s9O9DjaYVVjCBSZu2nje0Qn9FJkWVS0,1116
|
|
@@ -10596,8 +10596,8 @@ simo/fleet/templates/fleet/controllers_info/ENS160AirQualitySensor.md,sha256=3LS
|
|
|
10596
10596
|
simo/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10597
10597
|
simo/generic/app_widgets.py,sha256=y8W3jR76Hh26O9pPQyg2SophMbYIOtAWD33MPKbB8Mg,856
|
|
10598
10598
|
simo/generic/base_types.py,sha256=u3SlfpNYaCwkVBwomWgso4ODzL71ay9MhiAW-bxgnDU,341
|
|
10599
|
-
simo/generic/controllers.py,sha256=
|
|
10600
|
-
simo/generic/forms.py,sha256=
|
|
10599
|
+
simo/generic/controllers.py,sha256=n2qb_ipPHgSX5aW5kuhmQJOh244BVgBp37CUS_AOqxQ,46402
|
|
10600
|
+
simo/generic/forms.py,sha256=GJ17Ah00NlfqkD1Smt_Hu5U2fAg_S7QMVDObSfsBZqk,26347
|
|
10601
10601
|
simo/generic/gateways.py,sha256=kjqGMjlLXlGNreKLQtHoSnw4xan1IB8-KF8AqiZ82T0,16057
|
|
10602
10602
|
simo/generic/models.py,sha256=59fkYowOX0imviIhA6uwupvuharrpBykmBm674rJNoI,7279
|
|
10603
10603
|
simo/generic/routing.py,sha256=elQVZmgnPiieEuti4sJ7zITk1hlRxpgbotcutJJgC60,228
|
|
@@ -10609,9 +10609,9 @@ simo/generic/__pycache__/app_widgets.cpython-312.pyc,sha256=ywoKk91YSEZxpyt9haG5
|
|
|
10609
10609
|
simo/generic/__pycache__/app_widgets.cpython-38.pyc,sha256=D9b13pbMlirgHmjDnQhfLIDGSVINoSouHb4SWOeCRrs,1642
|
|
10610
10610
|
simo/generic/__pycache__/base_types.cpython-312.pyc,sha256=h8Mwu49i-zmwTbL33JaLJfRDGOgkQh2_VqrfzEc4UQ4,616
|
|
10611
10611
|
simo/generic/__pycache__/base_types.cpython-38.pyc,sha256=aV5NdIuvXR-ItKpI__MwcyPZHD6Z882TFdgYkPCkr1I,493
|
|
10612
|
-
simo/generic/__pycache__/controllers.cpython-312.pyc,sha256=
|
|
10612
|
+
simo/generic/__pycache__/controllers.cpython-312.pyc,sha256=Y3jut3t_Dq-s_-ZkHqgvQBQMtpytefQIHtyPoBLVDBo,53021
|
|
10613
10613
|
simo/generic/__pycache__/controllers.cpython-38.pyc,sha256=jJjwKVaDYyazrRGNjUFoY74nr_jX_DEnsC9KjyxZCgc,30427
|
|
10614
|
-
simo/generic/__pycache__/forms.cpython-312.pyc,sha256=
|
|
10614
|
+
simo/generic/__pycache__/forms.cpython-312.pyc,sha256=tFyHfKkUz_V5aL7_BHTTCreE5Vbk_iW4bDCSd9wT_cQ,34869
|
|
10615
10615
|
simo/generic/__pycache__/forms.cpython-38.pyc,sha256=k8lz3taXdWAg5P9jcnw66mWH51pCc4SOsg32kVEtBCg,19416
|
|
10616
10616
|
simo/generic/__pycache__/gateways.cpython-312.pyc,sha256=ixeotxPeqHkINziDnnkymlKR2wYMb5UR2sxiioMQxhY,19309
|
|
10617
10617
|
simo/generic/__pycache__/gateways.cpython-38.pyc,sha256=GIeMT51oZU2OCFD4eUDFdSRRYE0Qf14AcOr_gdUqG94,12705
|
|
@@ -10933,9 +10933,9 @@ simo/users/templates/invitations/expired_msg.html,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
10933
10933
|
simo/users/templates/invitations/expired_suggestion.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10934
10934
|
simo/users/templates/invitations/taken_msg.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10935
10935
|
simo/users/templates/invitations/taken_suggestion.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10936
|
-
simo-2.8.
|
|
10937
|
-
simo-2.8.
|
|
10938
|
-
simo-2.8.
|
|
10939
|
-
simo-2.8.
|
|
10940
|
-
simo-2.8.
|
|
10941
|
-
simo-2.8.
|
|
10936
|
+
simo-2.8.13.dist-info/LICENSE.md,sha256=M7wm1EmMGDtwPRdg7kW4d00h1uAXjKOT3HFScYQMeiE,34916
|
|
10937
|
+
simo-2.8.13.dist-info/METADATA,sha256=As563zVMgLqQ9Ixf4QReHUSn3_uB8XWgno_z8LUnVOI,2006
|
|
10938
|
+
simo-2.8.13.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
10939
|
+
simo-2.8.13.dist-info/entry_points.txt,sha256=S9PwnUYmTSW7681GKDCxUbL0leRJIaRk6fDQIKgbZBA,135
|
|
10940
|
+
simo-2.8.13.dist-info/top_level.txt,sha256=GmS1hrAbpVqn9OWZh6UX82eIOdRLgYA82RG9fe8v4Rs,5
|
|
10941
|
+
simo-2.8.13.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
|
|
5
|
-
<style type="text/css">
|
|
6
|
-
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
|
|
7
|
-
</style>
|
|
8
|
-
<g>
|
|
9
|
-
<g>
|
|
10
|
-
<radialGradient id="SVGID_1_" cx="32" cy="32" r="31.7587" gradientUnits="userSpaceOnUse">
|
|
11
|
-
<stop offset="0.1564" style="stop-color:#00BAD9"/>
|
|
12
|
-
<stop offset="0.8575" style="stop-color:#007BC2"/>
|
|
13
|
-
</radialGradient>
|
|
14
|
-
<path class="st0" d="M30.4,38.7v7.64c0,1.1-0.86,2.01-2.01,2.23v5.31l0,0c0,0.31-0.24,0.56-0.53,0.56c-0.29,0-0.53-0.25-0.53-0.56
|
|
15
|
-
v-5.31c-1.15-0.22-2.01-1.13-2.01-2.23V38.7c0-1.26,1.13-2.28,2.54-2.28C29.26,36.42,30.4,37.44,30.4,38.7L30.4,38.7z M3.64,13.01
|
|
16
|
-
L3.64,13.01v5.13c1.1,0.25,1.92,1.14,1.92,2.21v11.83c0,1.07-0.82,1.97-1.92,2.21v4.51l0,0c0,0.31-0.24,0.56-0.53,0.56
|
|
17
|
-
c-0.29,0-0.53-0.25-0.53-0.56v-4.47c-1.19-0.19-2.1-1.12-2.1-2.25V20.36c0-1.13,0.91-2.06,2.1-2.25v-5.1
|
|
18
|
-
c0-0.31,0.24-0.56,0.53-0.56C3.4,12.46,3.64,12.7,3.64,13.01L3.64,13.01z M60.98,14.64c-0.29,0-0.53,0.25-0.53,0.56v5.02
|
|
19
|
-
c-1.15,0.22-2.01,1.13-2.01,2.23v15.45c0,1.1,0.86,2.01,2.01,2.23v4.83c0,0.31,0.24,0.56,0.53,0.56c0.29,0,0.53-0.25,0.53-0.56
|
|
20
|
-
l0,0v-4.83c1.15-0.22,2.01-1.13,2.01-2.23V22.44c0-1.1-0.86-2.01-2.01-2.23v-5.02l0,0C61.51,14.89,61.27,14.64,60.98,14.64
|
|
21
|
-
L60.98,14.64z M52.7,7.42c-0.29,0-0.53,0.25-0.53,0.55v5.4c-1.15,0.22-2.01,1.13-2.01,2.23v6.53c0,1.26,1.14,2.28,2.54,2.28
|
|
22
|
-
c1.4,0,2.54-1.02,2.54-2.28v-6.53c0-1.1-0.86-2.01-2.01-2.23v-5.4l0,0C53.23,7.67,52.99,7.42,52.7,7.42L52.7,7.42z M44.42,2.1
|
|
23
|
-
c-0.29,0-0.53,0.25-0.53,0.56v5.65c-1.15,0.22-2.01,1.13-2.01,2.23v16.1c0,1.26,1.13,2.28,2.53,2.28c1.4,0,2.54-1.02,2.54-2.28
|
|
24
|
-
v-16.1c0-1.1-0.86-2.01-2.01-2.23V2.66h0C44.95,2.35,44.71,2.1,44.42,2.1L44.42,2.1z M36.14,0c-0.29,0-0.53,0.25-0.53,0.56V5.9
|
|
25
|
-
c-1.15,0.22-2.01,1.13-2.01,2.23v28.41c0,1.26,1.14,2.28,2.54,2.28s2.54-1.02,2.54-2.28V8.13c0-1.1-0.86-2.01-2.01-2.23V0.56l0,0
|
|
26
|
-
C36.67,0.25,36.43,0,36.14,0L36.14,0z M27.86,0.37c-0.29,0-0.53,0.25-0.53,0.56v5.78c-1.15,0.22-2.01,1.13-2.01,2.23v21.96
|
|
27
|
-
c0,1.26,1.13,2.28,2.54,2.28c1.4,0,2.54-1.02,2.54-2.28V8.94c0-1.1-0.86-2.01-2.01-2.23V0.92l0,0
|
|
28
|
-
C28.39,0.62,28.15,0.37,27.86,0.37L27.86,0.37z M19.58,2.63c-0.29,0-0.53,0.25-0.53,0.56v5.66c-1.15,0.22-2.01,1.13-2.01,2.23
|
|
29
|
-
v17.57c0,1.26,1.14,2.28,2.54,2.28c1.4,0,2.54-1.02,2.54-2.28V11.08c0-1.1-0.86-2.01-2.01-2.23V3.19l0,0
|
|
30
|
-
C20.11,2.88,19.87,2.63,19.58,2.63L19.58,2.63z M11.3,6.44c-0.29,0-0.53,0.25-0.53,0.55v5.44c-1.15,0.22-2.01,1.13-2.01,2.23v9.38
|
|
31
|
-
c0,1.26,1.14,2.28,2.54,2.28c1.4,0,2.54-1.02,2.54-2.28v-9.38c0-1.1-0.86-2.01-2.01-2.23V7l0,0C11.83,6.69,11.59,6.44,11.3,6.44
|
|
32
|
-
L11.3,6.44z M52.17,52.89c0,0.31,0.24,0.55,0.53,0.55c0.29,0,0.53-0.25,0.53-0.55l0,0v-5.26c1.15-0.22,2.01-1.13,2.01-2.23V29.94
|
|
33
|
-
c0-1.26-1.14-2.28-2.54-2.28c-1.4,0-2.54,1.02-2.54,2.28V45.4c0,1.1,0.86,2.01,2.01,2.23V52.89L52.17,52.89z M43.89,63.44
|
|
34
|
-
c0,0.31,0.24,0.56,0.53,0.56c0.29,0,0.53-0.25,0.53-0.56h0v-5.83c1.15-0.22,2.01-1.13,2.01-2.23V34.88c0-1.26-1.14-2.28-2.54-2.28
|
|
35
|
-
c-1.4,0-2.53,1.02-2.53,2.28v20.51c0,1.1,0.86,2.01,2.01,2.23V63.44L43.89,63.44z M35.61,59.59c0,0.31,0.24,0.56,0.53,0.56
|
|
36
|
-
c0.29,0,0.53-0.25,0.53-0.56l0,0v-5.62c1.15-0.22,2.01-1.13,2.01-2.23v-7.39c0-1.26-1.13-2.28-2.54-2.28s-2.54,1.02-2.54,2.28
|
|
37
|
-
v7.39c0,1.1,0.86,2.01,2.01,2.23V59.59L35.61,59.59z M19.05,51.27c0,0.31,0.24,0.56,0.53,0.56c0.29,0,0.53-0.25,0.53-0.56h0V46.1
|
|
38
|
-
c1.15-0.22,2.01-1.13,2.01-2.23v-7.41c0-1.26-1.13-2.28-2.54-2.28c-1.4,0-2.54,1.02-2.54,2.28v7.41c0,1.1,0.86,2.01,2.01,2.23
|
|
39
|
-
V51.27L19.05,51.27z M10.77,46.7c0,0.31,0.24,0.55,0.53,0.55c0.29,0,0.53-0.25,0.53-0.55l0,0v-5.28c1.15-0.22,2.01-1.13,2.01-2.23
|
|
40
|
-
v-7.33c0-1.26-1.14-2.28-2.54-2.28c-1.4,0-2.54,1.02-2.54,2.28v7.33c0,1.1,0.86,2.01,2.01,2.23V46.7L10.77,46.7z"/>
|
|
41
|
-
</g>
|
|
42
|
-
</g>
|
|
43
|
-
</svg>
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 800 248.9" style="enable-background:new 0 0 800 248.9;" xml:space="preserve">
|
|
5
|
-
<style type="text/css">
|
|
6
|
-
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
|
|
7
|
-
.st1{fill:#FFFFFF;}
|
|
8
|
-
</style>
|
|
9
|
-
<g>
|
|
10
|
-
<g>
|
|
11
|
-
<radialGradient id="SVGID_1_" cx="122.588" cy="124.4726" r="123.5339" gradientUnits="userSpaceOnUse">
|
|
12
|
-
<stop offset="0.1564" style="stop-color:#2EE2FF"/>
|
|
13
|
-
<stop offset="0.8575" style="stop-color:#0C94E1"/>
|
|
14
|
-
</radialGradient>
|
|
15
|
-
<path class="st0" d="M116.3,150.5v29.7c0,4.3-3.4,7.8-7.8,8.7v20.7l0,0c0,1.2-0.9,2.2-2,2.2c-1.1,0-2-1-2-2.2v-20.7
|
|
16
|
-
c-4.5-0.8-7.8-4.4-7.8-8.7v-29.7c0-4.9,4.4-8.9,9.9-8.9C111.9,141.7,116.3,145.6,116.3,150.5L116.3,150.5z M12.3,50.6L12.3,50.6
|
|
17
|
-
v20c4.3,1,7.5,4.5,7.5,8.6v46c0,4.2-3.2,7.6-7.5,8.6v17.5l0,0c0,1.2-0.9,2.2-2,2.2c-1.1,0-2-1-2-2.2v-17.4
|
|
18
|
-
c-4.6-0.7-8.2-4.4-8.2-8.7v-46c0-4.4,3.5-8,8.2-8.7V50.6c0-1.2,0.9-2.2,2-2.2C11.3,48.4,12.3,49.4,12.3,50.6L12.3,50.6z
|
|
19
|
-
M235.3,56.9c-1.1,0-2,1-2,2.2v19.5c-4.5,0.8-7.8,4.4-7.8,8.7v60.1c0,4.3,3.4,7.8,7.8,8.7v18.8c0,1.2,0.9,2.2,2,2.2
|
|
20
|
-
c1.1,0,2-1,2-2.2l0,0v-18.8c4.5-0.8,7.8-4.4,7.8-8.7V87.3c0-4.3-3.4-7.8-7.8-8.7V59.1l0,0C237.4,57.9,236.4,56.9,235.3,56.9
|
|
21
|
-
L235.3,56.9z M203.1,28.9c-1.1,0-2,1-2,2.2v21c-4.5,0.8-7.8,4.4-7.8,8.7v25.4c0,4.9,4.4,8.9,9.9,8.9c5.4,0,9.9-4,9.9-8.9V60.7
|
|
22
|
-
c0-4.3-3.4-7.8-7.8-8.7V31l0,0C205.1,29.8,204.2,28.9,203.1,28.9L203.1,28.9z M170.9,8.2c-1.1,0-2,1-2,2.2v22
|
|
23
|
-
c-4.5,0.8-7.8,4.4-7.8,8.7v62.6c0,4.9,4.4,8.9,9.9,8.9c5.4,0,9.9-4,9.9-8.9V41c0-4.3-3.4-7.8-7.8-8.7v-22h0
|
|
24
|
-
C172.9,9.2,172,8.2,170.9,8.2L170.9,8.2z M138.7,0c-1.1,0-2,1-2,2.2v20.8c-4.5,0.8-7.8,4.4-7.8,8.7v110.5c0,4.9,4.4,8.9,9.9,8.9
|
|
25
|
-
c5.4,0,9.9-4,9.9-8.9V31.6c0-4.3-3.4-7.8-7.8-8.7V2.2l0,0C140.7,1,139.8,0,138.7,0L138.7,0z M106.5,1.4c-1.1,0-2,1-2,2.2v22.5
|
|
26
|
-
c-4.5,0.8-7.8,4.4-7.8,8.7v85.4c0,4.9,4.4,8.9,9.9,8.9c5.4,0,9.9-4,9.9-8.9V34.8c0-4.3-3.4-7.8-7.8-8.7V3.6l0,0
|
|
27
|
-
C108.5,2.4,107.6,1.4,106.5,1.4L106.5,1.4z M74.3,10.2c-1.1,0-2,1-2,2.2v22c-4.5,0.8-7.8,4.4-7.8,8.7v68.4c0,4.9,4.4,8.9,9.9,8.9
|
|
28
|
-
c5.4,0,9.9-4,9.9-8.9V43.1c0-4.3-3.4-7.8-7.8-8.7v-22l0,0C76.3,11.2,75.4,10.2,74.3,10.2L74.3,10.2z M42.1,25.1c-1.1,0-2,1-2,2.2
|
|
29
|
-
v21.1c-4.5,0.8-7.8,4.4-7.8,8.7v36.5c0,4.9,4.4,8.9,9.9,8.9c5.4,0,9.9-4,9.9-8.9V57.1c0-4.3-3.4-7.8-7.8-8.7V27.2l0,0
|
|
30
|
-
C44.1,26,43.2,25.1,42.1,25.1L42.1,25.1z M201.1,205.7c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2l0,0v-20.5c4.5-0.8,7.8-4.4,7.8-8.7
|
|
31
|
-
v-60.1c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v60.1c0,4.3,3.4,7.8,7.8,8.7V205.7L201.1,205.7z M168.9,246.8
|
|
32
|
-
c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2h0v-22.7c4.5-0.8,7.8-4.4,7.8-8.7v-79.8c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v79.8
|
|
33
|
-
c0,4.3,3.4,7.8,7.8,8.7V246.8L168.9,246.8z M136.6,231.8c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2l0,0v-21.9c4.5-0.8,7.8-4.4,7.8-8.7
|
|
34
|
-
v-28.7c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v28.7c0,4.3,3.4,7.8,7.8,8.7V231.8L136.6,231.8z M72.2,199.4
|
|
35
|
-
c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2h0v-20.1c4.5-0.8,7.8-4.4,7.8-8.7v-28.8c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v28.8
|
|
36
|
-
c0,4.3,3.4,7.8,7.8,8.7V199.4L72.2,199.4z M40,181.7c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2l0,0v-20.5c4.5-0.8,7.8-4.4,7.8-8.7
|
|
37
|
-
v-28.5c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v28.5c0,4.3,3.4,7.8,7.8,8.7V181.7L40,181.7z"/>
|
|
38
|
-
</g>
|
|
39
|
-
<g>
|
|
40
|
-
<path class="st1" d="M368.4,109.9h-40.3c-3.7,0-5.6-2-5.6-6v-3.7c0-1.9,0.4-3.3,1.3-4.4c0.9-1.1,2.3-1.6,4.4-1.6H382
|
|
41
|
-
c1.6,0,2.4-0.8,2.4-2.4V81.7c0-1.6-0.8-2.4-2.4-2.4h-56.9c-6.5,0-11.3,1.6-14.4,4.8c-3.1,3.2-4.6,7.4-4.6,12.7v7.8
|
|
42
|
-
c0,5.9,1.6,10.5,4.7,13.7c3.2,3.2,7.8,4.8,14.1,4.8h40.3c3.7,0,5.6,2,5.6,6v4.4c0,1.9-0.4,3.3-1.3,4.4c-0.9,1.1-2.3,1.6-4.4,1.6
|
|
43
|
-
h-56.4c-1.6,0-2.5,0.8-2.5,2.4v10.2c0,1.6,0.8,2.4,2.5,2.4h59.5c6.5,0,11.3-1.6,14.4-4.8c3.1-3.2,4.6-7.4,4.6-12.7v-8.6
|
|
44
|
-
c0-5.9-1.6-10.5-4.7-13.7C379.3,111.5,374.6,109.9,368.4,109.9z"/>
|
|
45
|
-
<path class="st1" d="M413.5,79.3h-11.6c-1.6,0-2.5,0.8-2.5,2.4v70.5c0,1.6,0.8,2.4,2.5,2.4h11.6c1.6,0,2.4-0.8,2.4-2.4V81.7
|
|
46
|
-
C415.9,80.1,415.1,79.3,413.5,79.3z"/>
|
|
47
|
-
<path class="st1" d="M534.8,79.3h-11.5c-1.6,0-2.9,0.1-4,0.3c-1.1,0.2-2.1,0.6-3,1.2c-0.9,0.6-1.6,1.4-2.3,2.5
|
|
48
|
-
c-0.7,1-1.4,2.4-2.1,4.1l-22.3,51.6c-0.3,0.6-0.8,1-1.5,1h-1.3c-0.7,0-1.2-0.3-1.5-1l-22.3-51.6c-0.7-1.7-1.4-3.1-2.1-4.1
|
|
49
|
-
c-0.7-1-1.5-1.9-2.3-2.5c-0.9-0.6-1.9-1-3-1.2c-1.1-0.2-2.5-0.3-4.1-0.3h-11.7c-3.8,0-6.3,0.8-7.6,2.5c-1.3,1.7-1.9,4.6-1.9,8.6
|
|
50
|
-
v61.7c0,1.6,0.8,2.4,2.5,2.4h11c1.6,0,2.4-0.8,2.4-2.4V96.1c0-0.7,0.3-1.1,0.9-1.1h1c0.7,0,1.2,0.3,1.4,0.9l21.7,48.1
|
|
51
|
-
c0.9,1.9,1.7,3.6,2.6,4.9c0.9,1.3,1.9,2.4,2.9,3.3c1,0.9,2.2,1.5,3.5,1.8c1.3,0.4,2.9,0.5,4.7,0.5h5.2c1.8,0,3.3-0.2,4.7-0.5
|
|
52
|
-
c1.3-0.4,2.5-1,3.5-1.8c1-0.9,2-2,2.9-3.3c0.9-1.3,1.8-3,2.6-4.9l21.7-48.1c0.2-0.6,0.7-0.9,1.4-0.9h1c0.6,0,0.9,0.4,0.9,1.1v56.1
|
|
53
|
-
c0,1.6,0.8,2.4,2.4,2.4h11c1.6,0,2.5-0.8,2.5-2.4V90.5c0-4.1-0.6-7-1.9-8.6C541,80.2,538.5,79.3,534.8,79.3z"/>
|
|
54
|
-
<path class="st1" d="M644.1,85.8c-2.4-2.3-5.5-3.9-9.3-4.9c-3.8-1-8.5-1.6-13.9-1.6h-33.2c-5.4,0-10.1,0.5-13.9,1.6
|
|
55
|
-
c-3.8,1-6.9,2.7-9.3,4.9c-2.4,2.3-4.2,5.2-5.3,8.8c-1.1,3.6-1.7,7.9-1.7,13.1v18.5c0,5.2,0.6,9.5,1.7,13.2
|
|
56
|
-
c1.1,3.6,2.9,6.6,5.3,8.8c2.4,2.3,5.5,3.9,9.3,4.9c3.8,1,8.4,1.5,13.9,1.5h33.2c5.4,0,10.1-0.5,13.9-1.5c3.8-1,6.9-2.6,9.3-4.9
|
|
57
|
-
c2.4-2.3,4.1-5.2,5.2-8.8c1.1-3.6,1.6-8,1.6-13.2v-18.5c0-5.2-0.5-9.5-1.6-13.1C648.2,91,646.5,88.1,644.1,85.8z M634.5,125
|
|
58
|
-
c0,2.8-0.2,5.1-0.7,7c-0.5,1.9-1.2,3.4-2.3,4.5c-1.1,1.1-2.5,1.9-4.4,2.4c-1.8,0.5-4.1,0.7-6.9,0.7h-31.9c-2.8,0-5.1-0.2-6.9-0.7
|
|
59
|
-
c-1.8-0.5-3.3-1.3-4.4-2.4c-1.1-1.1-1.8-2.6-2.3-4.5c-0.5-1.9-0.7-4.2-0.7-7v-16.1c0-2.8,0.2-5.1,0.7-7c0.5-1.9,1.2-3.4,2.3-4.5
|
|
60
|
-
c1.1-1.1,2.5-1.9,4.4-2.4c1.8-0.5,4.1-0.7,6.9-0.7h31.9c2.8,0,5.1,0.2,6.9,0.7c1.8,0.5,3.3,1.3,4.4,2.4c1.1,1.1,1.8,2.6,2.3,4.5
|
|
61
|
-
c0.5,1.9,0.7,4.2,0.7,7V125z"/>
|
|
62
|
-
<path class="st1" d="M674.6,139.5h-10.5c-1.6,0-2.5,0.8-2.5,2.4v10.3c0,1.6,0.8,2.4,2.5,2.4h10.5c1.6,0,2.4-0.8,2.4-2.4v-10.3
|
|
63
|
-
C677,140.3,676.2,139.5,674.6,139.5z"/>
|
|
64
|
-
<path class="st1" d="M703.4,73.7h-10.5c-1.6,0-2.5,0.8-2.5,2.4v10.2c0,1.6,0.8,2.5,2.5,2.5h10.5c1.6,0,2.4-0.8,2.4-2.5V76.1
|
|
65
|
-
C705.8,74.5,705,73.7,703.4,73.7z"/>
|
|
66
|
-
<path class="st1" d="M703.4,95.6h-10.5c-1.6,0-2.4,0.8-2.4,2.5v54.1c0,1.6,0.8,2.4,2.4,2.4h10.5c1.6,0,2.4-0.8,2.4-2.4V98
|
|
67
|
-
C705.8,96.4,705,95.6,703.4,95.6z"/>
|
|
68
|
-
<path class="st1" d="M798.7,107.4c-0.9-2.8-2.3-5-4.2-6.8c-2-1.8-4.6-3-7.9-3.9c-1.4-0.3-2.9-0.6-4.6-0.8V75.8
|
|
69
|
-
c0-1.1-0.9-1.9-1.9-1.9c-1.1,0-1.9,0.9-1.9,1.9v19.8c-1.2-0.1-2.4-0.1-3.6-0.1H744c-0.8,0-1.6,0-2.4,0V75.8c0-1.1-0.9-1.9-1.9-1.9
|
|
70
|
-
h0c-1.1,0-1.9,0.9-1.9,1.9v20c-2.2,0.2-4.2,0.5-5.9,1c-3.3,0.8-5.9,2.1-7.8,3.9c-2,1.8-3.4,4-4.2,6.8c-0.9,2.8-1.3,6.1-1.3,9.9
|
|
71
|
-
v15.5c0,3.9,0.4,7.2,1.3,9.9c0.9,2.8,2.3,5,4.2,6.8c2,1.8,4.6,3,7.8,3.8c3.3,0.8,7.3,1.2,12.2,1.2h30.4c4.8,0,8.8-0.4,12.1-1.2
|
|
72
|
-
c3.3-0.8,5.9-2.1,7.9-3.8c2-1.8,3.4-4,4.2-6.8c0.9-2.8,1.3-6.1,1.3-9.9v-15.5C800,113.5,799.6,110.2,798.7,107.4z M784.7,130.1
|
|
73
|
-
c0,2.3-0.2,4.2-0.5,5.7c-0.4,1.5-1,2.7-1.9,3.6c-0.9,0.9-2.1,1.5-3.6,1.9c-1.5,0.4-3.4,0.6-5.8,0.6h-27.4c-2.3,0-4.2-0.2-5.7-0.6
|
|
74
|
-
c-1.5-0.4-2.7-1-3.6-1.9c-0.9-0.9-1.5-2.1-1.9-3.6c-0.4-1.5-0.5-3.4-0.5-5.7v-10.2c0-2.2,0.2-4.1,0.5-5.6c0.4-1.5,1-2.7,1.9-3.7
|
|
75
|
-
c0.9-0.9,2.1-1.6,3.6-1.9c1.5-0.4,3.4-0.5,5.7-0.5h27.4c2.4,0,4.3,0.2,5.8,0.5c1.5,0.4,2.7,1,3.6,1.9c0.9,0.9,1.5,2.1,1.9,3.7
|
|
76
|
-
c0.4,1.5,0.5,3.4,0.5,5.6V130.1z"/>
|
|
77
|
-
</g>
|
|
78
|
-
</g>
|
|
79
|
-
</svg>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|