@bravophone/webphone 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -3
- package/dist/bravophone.mjs +359 -287
- package/dist/bravophone.umd.js +43 -7
- package/host/_locales/pt_BR/messages.json +1430 -0
- package/host/allowed-origins.json +8 -0
- package/host/css/bravophoneContactDialer.css +385 -0
- package/host/css/dark-theme.css +116 -0
- package/host/favicon.ico +0 -0
- package/host/fonts/Audiowide-Regular.ttf +0 -0
- package/host/fonts/Seguiemj.ttf +0 -0
- package/host/images/answer-gray.png +0 -0
- package/host/images/answer.png +0 -0
- package/host/images/auto-answer-off.png +0 -0
- package/host/images/auto-answer-on.png +0 -0
- package/host/images/avatar.png +0 -0
- package/host/images/bravophone-logo.svg +39 -0
- package/host/images/bravotech_Bravotech_logo.png +0 -0
- package/host/images/circle-green.png +0 -0
- package/host/images/circle-orange.png +0 -0
- package/host/images/circle-red.png +0 -0
- package/host/images/dialer-button-down.png +0 -0
- package/host/images/dialer-button.png +0 -0
- package/host/images/gateways/activecampaign.png +0 -0
- package/host/images/gateways/agendor.png +0 -0
- package/host/images/gateways/appfacilita.png +0 -0
- package/host/images/gateways/call-in.png +0 -0
- package/host/images/gateways/click-to-call.png +0 -0
- package/host/images/gateways/clickup.png +0 -0
- package/host/images/gateways/exactsales.png +0 -0
- package/host/images/gateways/go-high-lvl.png +0 -0
- package/host/images/gateways/groner.png +0 -0
- package/host/images/gateways/hubspot.png +0 -0
- package/host/images/gateways/kommo.png +0 -0
- package/host/images/gateways/moskit.png +0 -0
- package/host/images/gateways/nectar.png +0 -0
- package/host/images/gateways/pipedrive.png +0 -0
- package/host/images/gateways/pipefy.png +0 -0
- package/host/images/gateways/piperun.png +0 -0
- package/host/images/gateways/ploomes.png +0 -0
- package/host/images/gateways/rdstation-crm.png +0 -0
- package/host/images/gateways/salesforce.png +0 -0
- package/host/images/gateways/sharpspring.png +0 -0
- package/host/images/gateways/sunhub.png +0 -0
- package/host/images/gateways/vendfly.png +0 -0
- package/host/images/gateways/zendesk.png +0 -0
- package/host/images/gateways/zoho.png +0 -0
- package/host/images/hangup.png +0 -0
- package/host/images/hold.png +0 -0
- package/host/images/icons/logo-128-christmas-celebration.png +0 -0
- package/host/images/icons/logo-128.png +0 -0
- package/host/images/icons/logo-16-christmas-celebration.png +0 -0
- package/host/images/icons/logo-16.png +0 -0
- package/host/images/icons/logo-24-christmas-celebration.png +0 -0
- package/host/images/icons/logo-24.png +0 -0
- package/host/images/icons/logo-32-christmas-celebration.png +0 -0
- package/host/images/icons/logo-32.png +0 -0
- package/host/images/icons/logo-48-christmas-celebration.png +0 -0
- package/host/images/icons/logo-48.png +0 -0
- package/host/images/loading.gif +0 -0
- package/host/images/logo-bravotech-white.png +0 -0
- package/host/images/logo-bravotech.png +0 -0
- package/host/images/logo-inline-christmas-celebration.png +0 -0
- package/host/images/logo-inline.png +0 -0
- package/host/images/mic-off.png +0 -0
- package/host/images/mic-on.png +0 -0
- package/host/images/play.png +0 -0
- package/host/images/transfer.png +0 -0
- package/host/index.html +34 -0
- package/host/js/bravophone-noise-suppressor.js +418 -0
- package/host/js/bravophone-route-selector.js +1099 -0
- package/host/js/libwebphone.js +20 -0
- package/host/js/noise/LICENSE-web-noise-suppressor.txt +21 -0
- package/host/js/noise/rnnoise-worklet.js +13 -0
- package/host/js/noise/rnnoise.wasm +0 -0
- package/host/js/noise/rnnoise_simd.wasm +0 -0
- package/host/mock-webphone.js +195 -0
- package/host/mock.html +54 -0
- package/host/popup.js +23 -0
- package/host/shim/chrome-shim.js +287 -0
- package/host/shim/guest-bridge.js +353 -0
- package/host/shim/messages.js +13 -0
- package/host/styles/theme-fixes.css +92 -0
- package/package.json +4 -2
- package/types/index.d.ts +21 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_comment": "Origens autorizadas a embutir o webphone. O servidor usa esta lista para emitir Content-Security-Policy: frame-ancestors e o Access-Control-Allow-Origin da API. Mesma disciplina da autorização por origem que a extensão já usa.",
|
|
3
|
+
"origins": [
|
|
4
|
+
"http://localhost:5173",
|
|
5
|
+
"http://localhost:8080",
|
|
6
|
+
"https://app.exemplo.com.br"
|
|
7
|
+
]
|
|
8
|
+
}
|
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
.bravophone-overlay {
|
|
2
|
+
display: none;
|
|
3
|
+
height: 100%;
|
|
4
|
+
width: 100%;
|
|
5
|
+
position: fixed;
|
|
6
|
+
z-index: 9999;
|
|
7
|
+
left: 0;
|
|
8
|
+
top: 0;
|
|
9
|
+
background-color: rgb(5, 10, 18);
|
|
10
|
+
background-color: rgba(5, 10, 18, 0.75);
|
|
11
|
+
-webkit-backdrop-filter: blur(8px);
|
|
12
|
+
backdrop-filter: blur(8px);
|
|
13
|
+
overflow-x: hidden;
|
|
14
|
+
overflow-y: auto;
|
|
15
|
+
transition: 0.3s;
|
|
16
|
+
padding: 16px;
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
19
|
+
-webkit-font-smoothing: antialiased;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.bravophone-overlay-content {
|
|
23
|
+
width: 100%;
|
|
24
|
+
min-height: calc(100% - 32px);
|
|
25
|
+
text-align: center;
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
line-height: 1.6;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.bravophone-overlay #bravophoneDialerOverlayLoading {
|
|
34
|
+
margin-bottom: 16px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.bravophone-overlay #bravophoneDialerOverlayMessage > p {
|
|
38
|
+
width: 100%;
|
|
39
|
+
padding: 8px;
|
|
40
|
+
text-decoration: none;
|
|
41
|
+
color: #f1f1f1;
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-direction: column;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
align-items: center;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.bravophone-overlay #bravophoneDialerOverlayMessage > p.title { font-size: 32px; }
|
|
49
|
+
.bravophone-overlay #bravophoneDialerOverlayMessage > p.step { font-size: 22px; }
|
|
50
|
+
.bravophone-overlay #bravophoneDialerOverlayMessage > p.text { font-size: 26px; }
|
|
51
|
+
|
|
52
|
+
.bravophone-overlay .bravophone-closebtn {
|
|
53
|
+
position: absolute;
|
|
54
|
+
top: 20px;
|
|
55
|
+
right: 45px;
|
|
56
|
+
font-size: 50px;
|
|
57
|
+
color: #818181;
|
|
58
|
+
text-decoration: none;
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.bravophone-overlay.bravophone-overlay--error-card .bravophone-closebtn {
|
|
63
|
+
display: none;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.bravophone-link {
|
|
67
|
+
color: #1a9fd4;
|
|
68
|
+
text-decoration: none;
|
|
69
|
+
font-weight: bold;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.bravophone-link:visited {
|
|
73
|
+
color: #1a9fd4;
|
|
74
|
+
text-decoration: none;
|
|
75
|
+
font-weight: bold;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.bravophone-message-text {
|
|
79
|
+
display: flex !important;
|
|
80
|
+
flex-direction: row !important;
|
|
81
|
+
align-items: center !important;
|
|
82
|
+
gap: 5px !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
@media screen and (max-height: 450px) {
|
|
86
|
+
.bravophone-overlay #bravophoneDialerOverlayMessage > p { font-size: 20px; }
|
|
87
|
+
.bravophone-overlay .bravophone-closebtn {
|
|
88
|
+
font-size: 40px;
|
|
89
|
+
top: 15px;
|
|
90
|
+
right: 35px;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.bravophone-overlay .bravophone-error-card,
|
|
95
|
+
.bravophone-overlay .bravophone-error-card * {
|
|
96
|
+
box-sizing: border-box;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.bravophone-overlay .bravophone-error-card {
|
|
100
|
+
background: #ffffff;
|
|
101
|
+
border: 1px solid rgba(0, 0, 0, 0.13);
|
|
102
|
+
border-radius: 16px;
|
|
103
|
+
overflow: hidden;
|
|
104
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 16px 40px rgba(0, 0, 0, 0.12);
|
|
105
|
+
width: 100%;
|
|
106
|
+
max-width: 440px;
|
|
107
|
+
max-height: 92vh;
|
|
108
|
+
overflow-y: auto;
|
|
109
|
+
text-align: left;
|
|
110
|
+
color: #18181b;
|
|
111
|
+
font-family: inherit;
|
|
112
|
+
line-height: 1.55;
|
|
113
|
+
font-size: 15px;
|
|
114
|
+
margin: 0 auto;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.bravophone-overlay .bravophone-error-header {
|
|
118
|
+
background: #FEF2F2;
|
|
119
|
+
border-bottom: 1px solid #FECACA;
|
|
120
|
+
padding: 14px 20px;
|
|
121
|
+
display: flex;
|
|
122
|
+
align-items: center;
|
|
123
|
+
gap: 12px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.bravophone-overlay .bravophone-error-icon {
|
|
127
|
+
width: 44px;
|
|
128
|
+
height: 44px;
|
|
129
|
+
flex-shrink: 0;
|
|
130
|
+
display: flex;
|
|
131
|
+
align-items: center;
|
|
132
|
+
justify-content: center;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.bravophone-overlay .bravophone-error-icon > svg {
|
|
136
|
+
width: 28px;
|
|
137
|
+
height: 28px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.bravophone-overlay .bravophone-error-title {
|
|
141
|
+
flex: 1;
|
|
142
|
+
font-size: 20px;
|
|
143
|
+
font-weight: 700;
|
|
144
|
+
color: #991B1B;
|
|
145
|
+
line-height: 1.25;
|
|
146
|
+
text-align: center;
|
|
147
|
+
margin: 0;
|
|
148
|
+
padding: 0;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.bravophone-overlay .bravophone-error-close {
|
|
152
|
+
width: 32px;
|
|
153
|
+
height: 32px;
|
|
154
|
+
border-radius: 8px;
|
|
155
|
+
flex-shrink: 0;
|
|
156
|
+
display: flex;
|
|
157
|
+
align-items: center;
|
|
158
|
+
justify-content: center;
|
|
159
|
+
color: #991B1B;
|
|
160
|
+
background: none;
|
|
161
|
+
border: none;
|
|
162
|
+
cursor: pointer;
|
|
163
|
+
padding: 0;
|
|
164
|
+
font: inherit;
|
|
165
|
+
transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.bravophone-overlay .bravophone-error-close:hover {
|
|
169
|
+
background: #FECACA;
|
|
170
|
+
color: #7F1D1D;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.bravophone-overlay .bravophone-error-close > svg {
|
|
174
|
+
width: 15px;
|
|
175
|
+
height: 15px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.bravophone-overlay .bravophone-error-body {
|
|
179
|
+
padding: 18px 20px 4px;
|
|
180
|
+
display: flex;
|
|
181
|
+
flex-direction: column;
|
|
182
|
+
gap: 14px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.bravophone-overlay .bravophone-error-cause {
|
|
186
|
+
font-size: 12px;
|
|
187
|
+
color: #6b7280;
|
|
188
|
+
text-align: center;
|
|
189
|
+
margin: 0 0 4px 0;
|
|
190
|
+
padding: 0;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.bravophone-overlay .bravophone-error-text {
|
|
194
|
+
font-size: 15px;
|
|
195
|
+
color: #374151;
|
|
196
|
+
line-height: 1.55;
|
|
197
|
+
margin: 0;
|
|
198
|
+
padding: 0;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.bravophone-overlay .bravophone-error-text strong {
|
|
202
|
+
color: #18181b;
|
|
203
|
+
font-weight: 600;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.bravophone-overlay .bravophone-error-steps {
|
|
207
|
+
display: flex;
|
|
208
|
+
flex-direction: column;
|
|
209
|
+
gap: 0;
|
|
210
|
+
margin: 6px 0;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.bravophone-overlay .bravophone-error-step {
|
|
214
|
+
display: flex;
|
|
215
|
+
align-items: flex-start;
|
|
216
|
+
gap: 10px;
|
|
217
|
+
position: relative;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.bravophone-overlay .bravophone-error-step:not(:last-child)::before {
|
|
221
|
+
content: '';
|
|
222
|
+
position: absolute;
|
|
223
|
+
left: 7px;
|
|
224
|
+
top: 24px;
|
|
225
|
+
bottom: 0;
|
|
226
|
+
width: 1px;
|
|
227
|
+
background: #E2E8F0;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.bravophone-overlay .bravophone-error-step-num {
|
|
231
|
+
width: 16px;
|
|
232
|
+
font-size: 14px;
|
|
233
|
+
font-weight: 500;
|
|
234
|
+
color: #CBD5E1;
|
|
235
|
+
line-height: 1.45;
|
|
236
|
+
flex-shrink: 0;
|
|
237
|
+
text-align: center;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.bravophone-overlay .bravophone-error-step-text {
|
|
241
|
+
font-size: 14px;
|
|
242
|
+
color: #18181b;
|
|
243
|
+
line-height: 1.5;
|
|
244
|
+
padding-bottom: 7px;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.bravophone-overlay .bravophone-error-step:last-child .bravophone-error-step-text {
|
|
248
|
+
padding-bottom: 0;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.bravophone-overlay .bravophone-error-step-text strong {
|
|
252
|
+
font-weight: 600;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.bravophone-overlay .bravophone-error-note {
|
|
256
|
+
background: #f4f6f8;
|
|
257
|
+
border: 1px solid #e2e8f0;
|
|
258
|
+
border-radius: 8px;
|
|
259
|
+
padding: 13px 14px;
|
|
260
|
+
font-size: 14px;
|
|
261
|
+
color: #374151;
|
|
262
|
+
line-height: 1.55;
|
|
263
|
+
display: flex;
|
|
264
|
+
align-items: flex-start;
|
|
265
|
+
gap: 9px;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.bravophone-overlay .bravophone-error-note > svg {
|
|
269
|
+
width: 16px;
|
|
270
|
+
height: 16px;
|
|
271
|
+
flex-shrink: 0;
|
|
272
|
+
margin-top: 2px;
|
|
273
|
+
color: #6b7280;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.bravophone-overlay .bravophone-error-note kbd {
|
|
277
|
+
display: inline-flex;
|
|
278
|
+
align-items: center;
|
|
279
|
+
justify-content: center;
|
|
280
|
+
background: #e6e9ed;
|
|
281
|
+
color: #18181b;
|
|
282
|
+
border: 1px solid rgba(0, 0, 0, 0.13);
|
|
283
|
+
border-bottom: 2px solid rgba(0, 0, 0, 0.18);
|
|
284
|
+
border-radius: 6px;
|
|
285
|
+
font-family: inherit;
|
|
286
|
+
font-size: 13px;
|
|
287
|
+
font-weight: 700;
|
|
288
|
+
padding: 1px 7px;
|
|
289
|
+
line-height: 1.4;
|
|
290
|
+
vertical-align: middle;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.bravophone-overlay .bravophone-error-footer {
|
|
294
|
+
padding: 0 20px 14px;
|
|
295
|
+
display: flex;
|
|
296
|
+
flex-direction: column;
|
|
297
|
+
gap: 8px;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.bravophone-overlay .bravophone-error-btn-primary {
|
|
301
|
+
display: flex;
|
|
302
|
+
align-items: center;
|
|
303
|
+
justify-content: center;
|
|
304
|
+
gap: 8px;
|
|
305
|
+
width: 100%;
|
|
306
|
+
padding: 8px 12px;
|
|
307
|
+
border-radius: 8px;
|
|
308
|
+
background: #1a9fd4;
|
|
309
|
+
color: #ffffff !important;
|
|
310
|
+
font-size: 15px;
|
|
311
|
+
font-weight: 600;
|
|
312
|
+
text-decoration: none !important;
|
|
313
|
+
border: 1px solid transparent;
|
|
314
|
+
transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.bravophone-overlay .bravophone-error-btn-primary:hover {
|
|
318
|
+
background: #1585b3;
|
|
319
|
+
box-shadow: 0 4px 16px rgba(26, 159, 212, 0.3);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.bravophone-overlay .bravophone-error-btn-primary > svg {
|
|
323
|
+
width: 16px;
|
|
324
|
+
height: 16px;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.bravophone-overlay .bravophone-error-divider {
|
|
328
|
+
height: 1px;
|
|
329
|
+
background: rgba(0, 0, 0, 0.08);
|
|
330
|
+
margin: 4px 0;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.bravophone-overlay .bravophone-error-support {
|
|
334
|
+
display: flex;
|
|
335
|
+
align-items: center;
|
|
336
|
+
justify-content: center;
|
|
337
|
+
gap: 8px;
|
|
338
|
+
flex-wrap: wrap;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.bravophone-overlay .bravophone-error-support p {
|
|
342
|
+
font-size: 14px;
|
|
343
|
+
margin: 0;
|
|
344
|
+
padding: 0;
|
|
345
|
+
display: inline;
|
|
346
|
+
width: auto;
|
|
347
|
+
color: #6b7280;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.bravophone-overlay .bravophone-error-support-link {
|
|
351
|
+
font-size: 14px;
|
|
352
|
+
font-weight: 600;
|
|
353
|
+
color: #16a34a !important;
|
|
354
|
+
display: inline-flex;
|
|
355
|
+
align-items: center;
|
|
356
|
+
gap: 5px;
|
|
357
|
+
white-space: nowrap;
|
|
358
|
+
text-decoration: none !important;
|
|
359
|
+
transition: opacity 180ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.bravophone-overlay .bravophone-error-support-link:hover {
|
|
363
|
+
opacity: 0.75;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.bravophone-overlay .bravophone-error-support-link > svg {
|
|
367
|
+
width: 15px;
|
|
368
|
+
height: 15px;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.bravophone-overlay .bravophone-error-brand {
|
|
372
|
+
display: flex;
|
|
373
|
+
align-items: center;
|
|
374
|
+
justify-content: center;
|
|
375
|
+
padding: 10px 0 6px;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.bravophone-overlay .bravophone-error-brand-logo {
|
|
379
|
+
display: block;
|
|
380
|
+
height: 36px;
|
|
381
|
+
width: auto;
|
|
382
|
+
max-width: 100%;
|
|
383
|
+
user-select: none;
|
|
384
|
+
-webkit-user-drag: none;
|
|
385
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
/* Tema escuro do webphone — sobrescreve as classes Tailwind já usadas nos
|
|
2
|
+
componentes (embutidos no popup.js) sem precisar editar o bundle minificado.
|
|
3
|
+
Prefixo #app em tudo pra vencer em especificidade as classes utilitárias do
|
|
4
|
+
Tailwind (que aqui aparentemente também saem com !important). */
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--bp-bg: #10131c;
|
|
8
|
+
--bp-panel: #171b28;
|
|
9
|
+
--bp-panel-alt: #1c2131;
|
|
10
|
+
--bp-border: #262c40;
|
|
11
|
+
--bp-border-soft: #1f2536;
|
|
12
|
+
--bp-text: #e7e9ee;
|
|
13
|
+
--bp-text-dim: #9aa2b8;
|
|
14
|
+
--bp-text-faint: #6b7488;
|
|
15
|
+
--bp-accent: #22c55e;
|
|
16
|
+
--bp-accent-dark: #16a34a;
|
|
17
|
+
--bp-danger: #f04747;
|
|
18
|
+
--bp-danger-soft: #3a1e22;
|
|
19
|
+
--bp-blue: #3b82f6;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
html, body, #app {
|
|
23
|
+
background: var(--bp-bg) !important;
|
|
24
|
+
color: var(--bp-text) !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* Base surfaces */
|
|
28
|
+
#app .bg-white { background-color: var(--bp-panel) !important; }
|
|
29
|
+
#app .bg-gray-50 { background-color: var(--bp-panel-alt) !important; }
|
|
30
|
+
#app .bg-gray-100 { background-color: var(--bp-panel-alt) !important; }
|
|
31
|
+
#app .bg-gray-200 { background-color: var(--bp-border) !important; }
|
|
32
|
+
#app .bg-gray-300 { background-color: var(--bp-border) !important; }
|
|
33
|
+
|
|
34
|
+
#app .hover\:bg-gray-50:hover { background-color: var(--bp-panel-alt) !important; }
|
|
35
|
+
#app .hover\:bg-gray-100:hover { background-color: var(--bp-border) !important; }
|
|
36
|
+
|
|
37
|
+
/* Borders */
|
|
38
|
+
#app .border-gray-50, #app .border-gray-100, #app .border-gray-200 { border-color: var(--bp-border-soft) !important; }
|
|
39
|
+
#app .divide-gray-100 > * + * { border-color: var(--bp-border-soft) !important; }
|
|
40
|
+
|
|
41
|
+
/* Text */
|
|
42
|
+
#app .text-gray-800, #app .text-gray-700 { color: var(--bp-text) !important; }
|
|
43
|
+
#app .text-gray-600, #app .text-gray-500 { color: var(--bp-text-dim) !important; }
|
|
44
|
+
#app .text-gray-400, #app .text-gray-300 { color: var(--bp-text-faint) !important; }
|
|
45
|
+
|
|
46
|
+
/* Dialpad keys */
|
|
47
|
+
#app .bg-gray-100.rounded-full, #app button.rounded-full.bg-gray-100 { background-color: var(--bp-panel-alt) !important; }
|
|
48
|
+
|
|
49
|
+
/* Gradient headers (e.g. bg-gradient-to-b from-blue-50 to-white) */
|
|
50
|
+
#app .bg-gradient-to-b, #app .bg-gradient-to-r, #app .bg-gradient-to-t, #app .bg-gradient-to-l,
|
|
51
|
+
#app .from-blue-50, #app .to-white, #app .from-white, #app .to-blue-50 {
|
|
52
|
+
background-image: none !important;
|
|
53
|
+
background-color: var(--bp-panel) !important;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* Inputs */
|
|
57
|
+
#app input, #app textarea, #app select {
|
|
58
|
+
background-color: var(--bp-panel-alt) !important;
|
|
59
|
+
color: var(--bp-text) !important;
|
|
60
|
+
border-color: var(--bp-border) !important;
|
|
61
|
+
}
|
|
62
|
+
#app input::placeholder { color: var(--bp-text-faint) !important; }
|
|
63
|
+
|
|
64
|
+
/* Green accents (call button, online state, success) */
|
|
65
|
+
#app .bg-blue-500 { background-color: var(--bp-accent) !important; }
|
|
66
|
+
#app .hover\:bg-blue-600:hover { background-color: var(--bp-accent-dark) !important; }
|
|
67
|
+
#app .text-blue-500, #app .text-blue-600 { color: var(--bp-accent) !important; }
|
|
68
|
+
#app .bg-blue-50 { background-color: rgba(34, 197, 94, 0.12) !important; }
|
|
69
|
+
#app .focus\:ring-blue-100:focus { --tw-ring-color: rgba(34,197,94,.25) !important; }
|
|
70
|
+
#app .focus\:border-blue-400:focus { border-color: var(--bp-accent) !important; }
|
|
71
|
+
|
|
72
|
+
/* Red / danger */
|
|
73
|
+
#app .bg-red-50 { background-color: var(--bp-danger-soft) !important; }
|
|
74
|
+
#app .text-red-500, #app .text-red-600 { color: var(--bp-danger) !important; }
|
|
75
|
+
#app .hover\:bg-red-50:hover { background-color: var(--bp-danger-soft) !important; }
|
|
76
|
+
|
|
77
|
+
/* Green success surfaces (used for online pill background etc.) */
|
|
78
|
+
#app .bg-green-50 { background-color: rgba(34, 197, 94, 0.12) !important; }
|
|
79
|
+
#app .text-green-500, #app .text-green-600 { color: var(--bp-accent) !important; }
|
|
80
|
+
|
|
81
|
+
/* Amber/warning */
|
|
82
|
+
#app .bg-amber-50 { background-color: #3a2f14 !important; }
|
|
83
|
+
#app .text-amber-700 { color: #f5b342 !important; }
|
|
84
|
+
|
|
85
|
+
/* Shadows read poorly on dark backgrounds */
|
|
86
|
+
#app .shadow-sm, #app .shadow, #app .shadow-lg, #app .shadow-xl {
|
|
87
|
+
box-shadow: 0 1px 2px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.35) !important;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* Blinking cursor after the dialed number */
|
|
91
|
+
#app .bp-cursor {
|
|
92
|
+
display: inline-block;
|
|
93
|
+
width: 2px;
|
|
94
|
+
height: 1.2em;
|
|
95
|
+
margin-left: 4px;
|
|
96
|
+
vertical-align: middle;
|
|
97
|
+
background: #3b82f6;
|
|
98
|
+
animation: bp-blink 1s step-start infinite;
|
|
99
|
+
}
|
|
100
|
+
@keyframes bp-blink {
|
|
101
|
+
50% { opacity: 0; }
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* Spin icon used to indicate a background refresh (e.g. transfer ramais polling) */
|
|
105
|
+
.bp-spin {
|
|
106
|
+
animation: bp-spin 1s linear infinite;
|
|
107
|
+
}
|
|
108
|
+
@keyframes bp-spin {
|
|
109
|
+
to { transform: rotate(360deg); }
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/* Scrollbars */
|
|
113
|
+
* { scrollbar-color: var(--bp-border) var(--bp-panel); }
|
|
114
|
+
::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
115
|
+
::-webkit-scrollbar-track { background: var(--bp-panel); }
|
|
116
|
+
::-webkit-scrollbar-thumb { background: var(--bp-border); border-radius: 8px; }
|
package/host/favicon.ico
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 188 40">
|
|
3
|
+
<style type="text/css">
|
|
4
|
+
.st0{fill:#FDFDFE;}
|
|
5
|
+
.st1{fill:#16A4DF;}
|
|
6
|
+
.st2{fill:#145B82;}
|
|
7
|
+
</style>
|
|
8
|
+
<g>
|
|
9
|
+
<g>
|
|
10
|
+
<path class="st0" d="M94,39.98c-31.07,0-62.13,0-93.2,0.02C0.15,40,0,39.85,0,39.2C0.02,26.37,0.02,13.54,0,0.71 C0,0.12,0.12,0,0.72,0c62.19,0.02,124.38,0.02,186.57,0c0.6,0,0.72,0.12,0.72,0.71c-0.02,12.86-0.02,25.72,0,38.58 c0,0.6-0.12,0.71-0.72,0.71C156.19,39.98,125.09,39.98,94,39.98z M112.88,21.4c0.07-4.18,0.08-8.35,0-12.53 c0.02-0.06,0.01-0.11-0.04-0.15c-0.52-0.27-1.08-0.05-1.62-0.12c-0.55-0.08-0.7,0.17-0.68,0.69c0.03,1.33-0.01,2.66,0.02,3.99 c0.01,0.48-0.13,0.65-0.64,0.65c-1.98-0.03-3.95-0.03-5.93,0c-0.52,0.01-0.72-0.12-0.7-0.67c0.04-0.98,0.01-1.97,0.01-2.95 c0-1.77,0-1.74-1.74-1.72c-0.6,0.01-0.73,0.22-0.72,0.77c0.03,1.79,0,3.59,0.01,5.38c0.01,1.26,0.4,1.63,1.69,1.63 c2.41,0,4.83,0.02,7.24-0.01c0.62-0.01,0.79,0.17,0.77,0.78c-0.04,1.3-0.02,2.6-0.01,3.9c0,0.27-0.1,0.66,0.35,0.65 c0.65-0.03,1.32,0.2,1.95-0.13C112.89,21.51,112.9,21.46,112.88,21.4z M34.33,9.87c-0.59-0.02-1.3,0.17-2,0.33 c-2.45,0.53-3.11,1.74-2.27,4.1c0.6,1.69,2.01,2.5,3.77,2.14c0.8-0.16,1.58-0.41,2.38-0.53c1.95-0.28,3.65,0.63,4.53,2.37 c0.3,0.59,0.54,1.22,0.7,1.87c0.6,2.49-0.57,4.5-3.05,5.22c-0.53,0.15-1.07,0.28-1.58,0.48c-1.89,0.76-2.78,2.44-2.31,4.4 c0.18,0.76,0.39,1.51,0.63,2.26c0.35,1.07,1.12,1.71,2.2,2.04c1.34,0.41,2.52-0.08,3.71-0.57c2.26-0.93,3.09-2.77,2.31-5.07 c-0.29-0.85-0.65-1.67-0.8-2.57c-0.31-1.85,0.65-3.57,2.42-4.23c0.6-0.23,1.22-0.37,1.82-0.59c1.42-0.53,2.04-1.77,1.58-3.2 c-0.18-0.58-0.46-1.12-0.73-1.67c-0.63-1.3-2.03-2.01-3.46-1.76c-0.66,0.11-1.3,0.31-1.96,0.43c-2.19,0.4-4-0.63-4.77-2.7 c-0.13-0.35-0.24-0.71-0.38-1.06C36.58,10.42,35.72,9.86,34.33,9.87z M31.95,3.64c-0.46,0.06-0.93,0.1-1.38,0.18 c-2.4,0.43-2.93,1.24-2.35,3.58c0.4,1.61-0.11,2.76-1.57,3.57c-0.64,0.36-1.34,0.56-2.05,0.7c-0.77,0.15-1.55,0.28-2.27,0.61 c-1.27,0.59-1.83,1.55-1.7,2.92c0.04,0.4,0.12,0.8,0.2,1.2c0.34,1.67,1.54,2.53,3.24,2.26c1.03-0.16,2.04-0.46,3.07-0.63 c2.22-0.37,4.25,0.94,4.86,3.1c0.12,0.42,0.21,0.84,0.36,1.25c0.56,1.57,1.9,2.48,3.5,2.29c1.07-0.12,2.11-0.45,3.06-0.97 c1.37-0.76,1.8-1.9,1.34-3.39c-0.19-0.61-0.42-1.2-0.67-1.79c-0.52-1.21-1.72-1.89-3.03-1.7c-0.72,0.1-1.42,0.31-2.13,0.46 c-2.93,0.64-4.87-0.54-5.61-3.41c-0.6-2.35,0.3-3.88,2.66-4.51c0.79-0.21,1.6-0.34,2.36-0.6C34.64,8.5,35.38,8,35.3,7.05 C35.14,5.31,34.39,3.49,31.95,3.64z M44.48,13.71c1.63-0.02,2.92,0.62,3.69,1.79c0.61,0.92,1.08,1.92,1.33,3 c0.39,1.71-0.27,3.04-1.9,3.73c-0.64,0.27-1.32,0.46-1.97,0.69c-0.59,0.21-1.03,0.58-1.45,1.06c-1.29,1.46,0.79,6.73,2.86,6.89 c0.97,0.07,1.85-0.07,2.72-0.41c2.46-0.94,3.1-2.51,1.97-4.86c-0.35-0.73-0.69-1.46-0.83-2.27c-0.34-2.02,0.55-3.46,2.51-4.03 c0.36-0.11,0.73-0.19,1.08-0.33c0.86-0.34,1.47-1.18,1.26-2.06c-0.56-2.4-2.07-4.75-5.25-3.86c-2.67,0.75-4.44-0.15-5.61-2.62 c-1.02-2.16-1.86-2.54-4.21-2.14c-2.15,0.37-3.43,1.13-2.17,3.89c0.76,1.67,1.91,2.34,3.76,1.97 C43.08,13.98,43.85,13.69,44.48,13.71z M148.08,14.44c0.33,0.09,0.36,0.27,0.44,0.41c1.22,2.11,2.42,4.22,3.65,6.32 c0.58,0.99,1.6,0.99,2.21,0.02c0.34-0.54,0.64-1.1,0.95-1.66c1-1.74,1.99-3.48,2.99-5.22c0.15,1.95,0.15,3.85,0.15,5.74 c0,1.67,0,1.65,1.71,1.66c0.56,0,0.75-0.13,0.74-0.72c-0.04-2.08-0.01-4.17-0.01-6.25c0-1.65-0.01-3.3,0-4.95 c0-0.66-0.24-1.13-0.9-1.3c-0.67-0.18-1.12,0.13-1.44,0.68c-0.1,0.17-0.2,0.35-0.3,0.53c-1.65,2.84-3.29,5.69-4.98,8.59 c-0.16-0.24-0.28-0.4-0.37-0.57c-1.6-2.76-3.19-5.51-4.78-8.27c-0.38-0.66-0.82-1.17-1.65-0.94c-0.82,0.23-0.85,0.92-0.85,1.61 c0,3.33,0,6.66,0,9.99c0,1.6,0,1.57,1.6,1.61c0.7,0.02,0.88-0.19,0.87-0.87C148.05,18.72,148.08,16.61,148.08,14.44z M78.27,15.57 c0-1.85-0.01-3.7,0-5.55c0.01-0.79-0.33-1.35-1.13-1.36c-2.24-0.03-4.49-0.21-6.71,0.1c-2.58,0.36-4.98,2.63-5.06,4.83 c-0.09,2.51-0.01,5.03-0.03,7.55c0,0.43,0.15,0.57,0.56,0.54c0.26-0.02,0.53-0.03,0.78,0c0.66,0.08,0.98-0.12,0.89-0.85 c-0.06-0.54,0.02-1.1-0.02-1.65c-0.05-0.57,0.15-0.75,0.73-0.74c2.01,0.03,4.01,0.01,6.02,0.01c1.55,0,1.55,0,1.55,1.54 c0,1.75,0,1.73,1.77,1.69c0.49-0.01,0.65-0.15,0.64-0.65C78.26,19.22,78.27,17.39,78.27,15.57z M136.08,21.89 c0.78,0,1.39,0.02,2,0c2.89-0.11,5.05-2.17,5.21-5.04c0.07-1.18,0.07-2.38-0.02-3.55c-0.19-2.58-2.1-4.53-4.69-4.8 c-1.59-0.17-3.2-0.17-4.79,0.01c-2.29,0.25-4.07,1.84-4.52,4.08c-0.33,1.68-0.34,3.41-0.01,5.09c0.45,2.27,1.93,3.61,4.2,4.11 C134.39,21.97,135.32,21.85,136.08,21.89z M81.03,16.3c0,1.3,0,2.61,0,3.91c0,1.48,0,1.43,1.46,1.49c0.77,0.03,0.9-0.25,0.89-0.94 c-0.04-2.84-0.02-5.67-0.01-8.51c0-0.96,0.29-1.25,1.25-1.26c1.63-0.01,3.26-0.02,4.89,0c1.51,0.02,2.22,0.86,2.22,2.59 c0,1.69-0.65,2.46-2.19,2.49c-1.19,0.03-2.39-0.01-3.58,0.01c-1.95,0.04-1.61-0.41-1.66,1.71c-0.01,0.46,0.09,0.68,0.62,0.67 c1.72-0.03,3.43,0.02,5.15-0.03c1.89-0.05,3.52-1.39,3.9-3.16c0.24-1.08,0.24-2.19,0.01-3.28c-0.37-1.78-1.73-3.13-3.5-3.29 c-2.2-0.2-4.42-0.19-6.62-0.01c-1.75,0.14-2.8,1.42-2.82,3.17C81.02,13.34,81.03,14.82,81.03,16.3z M122.75,21.69 c1.05,0,2.1,0,3.14,0c1.65,0,1.61,0,1.65-1.63c0.02-0.69-0.23-0.8-0.85-0.79c-2.47,0.03-4.95,0.02-7.42,0.01 c-1.03,0-1.3-0.26-1.31-1.27c-0.01-1.88-0.01-3.76,0-5.65c0.01-1.09,0.25-1.34,1.34-1.34c2.18-0.01,4.37,0,6.55,0 c1.72,0,1.7,0,1.69-1.75c0-0.56-0.19-0.67-0.71-0.67c-2.56,0.02-5.12,0.01-7.69,0.01c-2.22,0.01-3.55,1.27-3.6,3.48 c-0.04,2.08-0.04,4.17,0,6.26c0.04,2.05,1.39,3.33,3.44,3.35C120.25,21.7,121.5,21.69,122.75,21.69z M98.53,15.13 c0-1.68,0-3.36,0-5.03c0-1.49,0-1.45-1.54-1.49c-0.7-0.02-0.88,0.2-0.87,0.88c0.03,3.53,0.02,7.06,0.02,10.59 c0,1.64,0,1.61,1.68,1.61c0.58,0,0.74-0.17,0.73-0.74C98.5,19.01,98.53,17.07,98.53,15.13z M152.55,29.72 c1.59-0.01,2.87-1.3,2.88-2.89c0.01-1.62-1.31-2.9-2.96-2.89c-1.59,0.01-2.89,1.31-2.89,2.88 C149.57,28.41,150.93,29.74,152.55,29.72z M139.59,24.3c0-0.09,0-0.18,0-0.27c-0.87,0-1.74-0.02-2.61,0.01 c-0.29,0.01-0.2,0.31-0.2,0.49c-0.01,1.53-0.01,3.06,0,4.6c0,0.18-0.09,0.49,0.19,0.5c0.87,0.04,1.75,0.01,2.62,0.01 c-0.26-0.44-0.56-0.34-0.83-0.34c-1.69-0.02-1.67-0.01-1.6-1.74c0.02-0.41,0.12-0.54,0.54-0.54c0.64-0.01,1.3,0.13,1.95-0.12 c-0.23-0.41-0.55-0.25-0.81-0.26c-1.77-0.03-1.76-0.02-1.68-1.74c0.02-0.42,0.14-0.53,0.55-0.53 C138.32,24.37,138.97,24.46,139.59,24.3z M131.7,26.77c0,0.78,0.03,1.56-0.01,2.33c-0.02,0.48,0.18,0.58,0.61,0.56 c1.72-0.08,2.62-1.09,2.61-2.93c-0.02-1.67-1.01-2.67-2.66-2.72c-0.41-0.01-0.57,0.09-0.55,0.52 C131.72,25.27,131.7,26.02,131.7,26.77z M160.82,24.1c-1.28,0-2.43,0-3.59,0c0.65,0.39,1.34,0.25,2.01,0.27 c0.99,0.03,0.99,0.01,0.5,0.85c-0.83,1.44-1.66,2.88-2.51,4.35c1.28,0,2.44,0,3.6,0c0-0.08,0-0.16,0.01-0.24c-0.95,0-1.9,0-3.03,0 C158.87,27.47,159.83,25.81,160.82,24.1z M117.67,23.82c-0.75,2.08-1.42,3.92-2.09,5.76c0.64-0.35,0.77-0.94,0.92-1.5 c0.17-0.65,0.61-0.59,1.08-0.56c0.48,0.03,1.05-0.22,1.26,0.55c0.15,0.55,0.29,1.14,0.7,1.59c0.07-0.03,0.14-0.05,0.21-0.08 C119.09,27.73,118.43,25.89,117.67,23.82z M121.51,29.63c0.29-0.22,0.18-0.54,0.15-0.8c-0.09-0.76,0.08-1.13,0.99-1.13 c1.16,0,1.8-0.8,1.77-1.92c-0.03-1.19-0.84-1.77-2.38-1.78c-0.54,0-0.77,0.1-0.75,0.71c0.04,1.44,0.01,2.89,0.02,4.34 C121.3,29.24,121.18,29.52,121.51,29.63z M144.37,24c-0.08,0.03-0.17,0.07-0.25,0.1c0.68,1.84,1.35,3.69,2.11,5.74 c0.76-2.09,1.42-3.92,2.09-5.76c-0.11-0.04-0.21-0.08-0.32-0.12c-0.57,1.5-1.13,3-1.78,4.72c-0.36-0.96-0.62-1.71-0.91-2.44 C145.01,25.49,144.85,24.68,144.37,24z M126.03,26.86c0,0.78,0,1.56,0,2.34c0,0.17-0.02,0.4,0.2,0.42 c0.23,0.01,0.22-0.21,0.22-0.39c0-1.59,0-3.18,0-4.77c0-0.16,0.04-0.41-0.19-0.41c-0.3,0-0.22,0.29-0.22,0.47 C126.03,25.3,126.04,26.08,126.03,26.86z"/>
|
|
11
|
+
<path class="st1" d="M34.33,9.87c1.39-0.01,2.26,0.55,2.73,1.69c0.14,0.35,0.25,0.71,0.38,1.06c0.77,2.07,2.58,3.1,4.77,2.7 c0.66-0.12,1.3-0.32,1.96-0.43c1.44-0.25,2.83,0.46,3.46,1.76c0.27,0.55,0.54,1.09,0.73,1.67c0.46,1.43-0.16,2.67-1.58,3.2 c-0.6,0.22-1.23,0.37-1.82,0.59c-1.76,0.66-2.73,2.38-2.42,4.23c0.15,0.89,0.51,1.72,0.8,2.57c0.78,2.3-0.05,4.14-2.31,5.07 c-1.18,0.49-2.37,0.98-3.71,0.57c-1.08-0.33-1.85-0.97-2.2-2.04c-0.24-0.74-0.45-1.5-0.63-2.26c-0.47-1.96,0.42-3.65,2.31-4.4 c0.51-0.2,1.05-0.33,1.58-0.48c2.48-0.72,3.65-2.73,3.05-5.22c-0.16-0.65-0.39-1.27-0.7-1.87c-0.89-1.74-2.59-2.65-4.53-2.37 c-0.8,0.12-1.58,0.36-2.38,0.53c-1.76,0.36-3.17-0.45-3.77-2.14c-0.84-2.36-0.17-3.58,2.27-4.1C33.03,10.04,33.74,9.85,34.33,9.87 z"/>
|
|
12
|
+
<path class="st1" d="M31.95,3.64c2.44-0.16,3.2,1.67,3.35,3.41C35.38,8,34.64,8.5,33.84,8.77c-0.77,0.26-1.58,0.39-2.36,0.6 c-2.37,0.63-3.27,2.16-2.66,4.51c0.74,2.87,2.68,4.05,5.61,3.41c0.71-0.15,1.41-0.36,2.13-0.46c1.31-0.19,2.51,0.49,3.03,1.7 c0.25,0.58,0.48,1.18,0.67,1.79c0.46,1.49,0.03,2.63-1.34,3.39c-0.94,0.52-1.99,0.85-3.06,0.97c-1.6,0.18-2.93-0.73-3.5-2.29 c-0.15-0.41-0.24-0.83-0.36-1.25c-0.61-2.16-2.64-3.47-4.86-3.1c-1.03,0.17-2.04,0.47-3.07,0.63c-1.71,0.27-2.9-0.59-3.24-2.26 c-0.08-0.4-0.16-0.8-0.2-1.2c-0.13-1.38,0.44-2.34,1.7-2.92c0.72-0.33,1.5-0.46,2.27-0.61c0.72-0.14,1.41-0.34,2.05-0.7 c1.46-0.8,1.96-1.96,1.57-3.57c-0.58-2.34-0.05-3.15,2.35-3.58C31.02,3.74,31.49,3.7,31.95,3.64z"/>
|
|
13
|
+
<path class="st2" d="M44.48,13.71c-0.63-0.02-1.4,0.27-2.2,0.43c-1.84,0.37-3-0.3-3.76-1.97c-1.26-2.76,0.02-3.52,2.17-3.89 c2.35-0.4,3.19-0.03,4.21,2.14c1.17,2.47,2.94,3.37,5.61,2.62c3.18-0.89,4.69,1.46,5.25,3.86c0.21,0.88-0.4,1.72-1.26,2.06 c-0.35,0.14-0.72,0.22-1.08,0.33c-1.97,0.58-2.86,2.02-2.51,4.03c0.14,0.81,0.48,1.54,0.83,2.27c1.13,2.35,0.48,3.92-1.97,4.86 c-0.88,0.34-1.76,0.48-2.72,0.41c-2.07-0.16-4.15-5.43-2.86-6.89c0.42-0.47,0.86-0.85,1.45-1.06c0.66-0.23,1.33-0.42,1.97-0.69 c1.63-0.69,2.28-2.01,1.9-3.73c-0.25-1.09-0.72-2.08-1.33-3C47.4,14.33,46.11,13.69,44.48,13.71z"/>
|
|
14
|
+
<path class="st2" d="M148.08,14.44c0,2.18-0.03,4.29,0.02,6.4c0.01,0.68-0.17,0.89-0.87,0.87c-1.6-0.04-1.6-0.01-1.6-1.61 c0-3.33,0-6.66,0-9.99c0-0.69,0.03-1.38,0.85-1.61c0.83-0.23,1.28,0.28,1.65,0.94c1.58,2.76,3.18,5.52,4.78,8.27 c0.1,0.17,0.22,0.33,0.37,0.57c1.68-2.91,3.33-5.75,4.98-8.59c0.1-0.18,0.2-0.35,0.3-0.53c0.33-0.55,0.78-0.86,1.44-0.68 c0.66,0.18,0.91,0.65,0.9,1.3c-0.01,1.65,0,3.3,0,4.95c0,2.08-0.02,4.17,0.01,6.25c0.01,0.59-0.18,0.72-0.74,0.72 c-1.71-0.01-1.71,0.02-1.71-1.66c0-1.9,0-3.8-0.15-5.74c-1,1.74-1.99,3.48-2.99,5.22c-0.32,0.55-0.61,1.12-0.95,1.66 c-0.61,0.97-1.63,0.97-2.21-0.02c-1.23-2.09-2.43-4.21-3.65-6.32C148.44,14.71,148.4,14.52,148.08,14.44z"/>
|
|
15
|
+
<path class="st1" d="M78.27,15.57c0,1.82-0.02,3.65,0.01,5.47c0.01,0.5-0.15,0.63-0.64,0.65c-1.77,0.04-1.77,0.06-1.77-1.69 c0-1.54,0-1.54-1.55-1.54c-2.01,0-4.01,0.02-6.02-0.01c-0.58-0.01-0.78,0.17-0.73,0.74c0.04,0.55-0.04,1.1,0.02,1.65 c0.08,0.73-0.24,0.93-0.89,0.85c-0.26-0.03-0.52-0.02-0.78,0c-0.41,0.03-0.56-0.12-0.56-0.54c0.01-2.52-0.07-5.04,0.03-7.55 c0.08-2.2,2.48-4.47,5.06-4.83c2.22-0.31,4.47-0.13,6.71-0.1c0.81,0.01,1.14,0.57,1.13,1.36C78.26,11.87,78.27,13.72,78.27,15.57z M71.64,16.11c1.19,0,2.38-0.01,3.57,0c0.39,0,0.67-0.02,0.66-0.54c-0.03-1.36-0.02-2.72,0-4.08c0.01-0.44-0.19-0.53-0.58-0.52 C74.07,11,72.85,10.94,71.63,11c-2.61,0.13-4.07,1.73-4.07,4.33c0,0.59,0.14,0.82,0.77,0.79C69.43,16.08,70.54,16.11,71.64,16.11z "/>
|
|
16
|
+
<path class="st2" d="M136.08,21.89c-0.76-0.04-1.69,0.08-2.61-0.12c-2.27-0.5-3.75-1.84-4.2-4.11c-0.33-1.68-0.32-3.41,0.01-5.09 c0.45-2.25,2.23-3.83,4.52-4.08c1.59-0.18,3.2-0.18,4.79-0.01c2.59,0.27,4.5,2.23,4.69,4.8c0.09,1.18,0.09,2.37,0.02,3.55 c-0.17,2.88-2.32,4.93-5.21,5.04C137.47,21.91,136.86,21.89,136.08,21.89z M136.19,19.47c0.61,0,1.22,0.03,1.83-0.01 c1.61-0.1,2.63-1.04,2.85-2.63c0.15-1.09,0.14-2.19,0.01-3.28c-0.21-1.68-1.26-2.65-2.96-2.71c-1.13-0.04-2.27-0.04-3.4,0 c-1.81,0.07-2.94,1.26-2.97,3.06c-0.01,0.87-0.02,1.73,0,2.6c0.04,1.7,1.17,2.86,2.89,2.96C135.02,19.49,135.6,19.47,136.19,19.47 z"/>
|
|
17
|
+
<path class="st1" d="M81.03,16.3c0-1.48-0.01-2.95,0-4.43c0.02-1.75,1.07-3.03,2.82-3.17c2.2-0.17,4.42-0.19,6.62,0.01 c1.77,0.16,3.13,1.51,3.5,3.29c0.23,1.09,0.23,2.19-0.01,3.28c-0.39,1.77-2.02,3.11-3.9,3.16c-1.72,0.05-3.43,0-5.15,0.03 c-0.53,0.01-0.63-0.21-0.62-0.67c0.05-2.12-0.28-1.67,1.66-1.71c1.19-0.03,2.39,0.02,3.58-0.01c1.54-0.03,2.2-0.8,2.19-2.49 c0-1.73-0.71-2.57-2.22-2.59c-1.63-0.02-3.26-0.01-4.89,0c-0.96,0.01-1.24,0.3-1.25,1.26c-0.01,2.84-0.02,5.67,0.01,8.51 c0.01,0.69-0.13,0.97-0.89,0.94c-1.46-0.06-1.46-0.01-1.46-1.49C81.03,18.9,81.03,17.6,81.03,16.3z"/>
|
|
18
|
+
<path class="st2" d="M122.75,21.69c-1.25,0-2.5,0.01-3.76,0c-2.06-0.02-3.4-1.3-3.44-3.35c-0.04-2.08-0.04-4.17,0-6.26 c0.04-2.21,1.37-3.47,3.6-3.48c2.56-0.01,5.12,0.01,7.69-0.01c0.51,0,0.7,0.11,0.71,0.67c0.01,1.75,0.03,1.75-1.69,1.75 c-2.18,0-4.37-0.01-6.55,0c-1.08,0-1.33,0.26-1.34,1.34c-0.01,1.88-0.01,3.76,0,5.65c0.01,1.02,0.27,1.27,1.31,1.27 c2.47,0.01,4.95,0.02,7.42-0.01c0.62-0.01,0.87,0.1,0.85,0.79c-0.04,1.63,0,1.63-1.65,1.63C124.85,21.69,123.8,21.69,122.75,21.69 z"/>
|
|
19
|
+
<path class="st1" d="M112.88,8.87c0.08,4.18,0.07,8.35,0,12.53c-0.02,0.01-0.07,0.02-0.07,0.03c0,0.04,0.02,0.08,0.03,0.12 c-0.63,0.32-1.3,0.1-1.95,0.13c-0.45,0.02-0.35-0.38-0.35-0.65c-0.01-1.3-0.03-2.6,0.01-3.9c0.02-0.6-0.16-0.79-0.77-0.78 c-2.41,0.03-4.83,0.02-7.24,0.01c-1.3,0-1.69-0.37-1.69-1.63c-0.01-1.79,0.02-3.59-0.01-5.38c-0.01-0.54,0.12-0.76,0.72-0.77 c1.74-0.02,1.74-0.04,1.74,1.72c0,0.98,0.03,1.97-0.01,2.95c-0.02,0.55,0.18,0.68,0.7,0.67c1.98-0.03,3.95-0.03,5.93,0 c0.51,0.01,0.65-0.16,0.64-0.65c-0.03-1.33,0.01-2.66-0.02-3.99c-0.01-0.52,0.14-0.77,0.68-0.69c0.54,0.07,1.09-0.14,1.62,0.12 c-0.02,0.02-0.05,0.05-0.04,0.06C112.81,8.81,112.85,8.84,112.88,8.87z"/>
|
|
20
|
+
<path class="st1" d="M98.53,15.13c0,1.94-0.02,3.88,0.01,5.82c0.01,0.57-0.15,0.74-0.73,0.74c-1.68,0-1.68,0.03-1.68-1.61 c0-3.53,0.02-7.06-0.02-10.59c-0.01-0.68,0.17-0.9,0.87-0.88c1.54,0.04,1.54,0,1.54,1.49C98.53,11.77,98.53,13.45,98.53,15.13z"/>
|
|
21
|
+
<path class="st2" d="M152.55,29.72c-1.62,0.01-2.98-1.31-2.97-2.9c0.01-1.57,1.31-2.87,2.89-2.88c1.65-0.01,2.97,1.27,2.96,2.89 C155.42,28.42,154.14,29.71,152.55,29.72z M152.51,29.36c1.4,0,2.53-1.14,2.52-2.54c-0.01-1.41-1.13-2.52-2.55-2.5 c-1.36,0.02-2.47,1.13-2.49,2.49C149.96,28.18,151.13,29.36,152.51,29.36z"/>
|
|
22
|
+
<path class="st2" d="M139.59,24.3c-0.62,0.16-1.27,0.07-1.9,0.07c-0.41,0-0.53,0.11-0.55,0.53c-0.07,1.72-0.09,1.71,1.68,1.74 c0.26,0,0.58-0.15,0.81,0.26c-0.66,0.25-1.32,0.11-1.95,0.12c-0.42,0-0.53,0.13-0.54,0.54c-0.07,1.73-0.09,1.72,1.6,1.74 c0.27,0,0.57-0.1,0.83,0.34c-0.87,0-1.75,0.02-2.62-0.01c-0.28-0.01-0.19-0.32-0.19-0.5c-0.01-1.53-0.01-3.06,0-4.6 c0-0.18-0.08-0.48,0.2-0.49c0.87-0.03,1.74-0.01,2.61-0.01C139.59,24.11,139.59,24.21,139.59,24.3z"/>
|
|
23
|
+
<path class="st2" d="M131.7,26.77c0-0.75,0.02-1.5-0.01-2.25c-0.02-0.42,0.14-0.53,0.55-0.52c1.65,0.05,2.65,1.05,2.66,2.72 c0.02,1.84-0.89,2.85-2.61,2.93c-0.43,0.02-0.63-0.07-0.61-0.56C131.72,28.33,131.7,27.55,131.7,26.77z M134.7,26.81 c-0.01-1.21-0.85-2.17-2-2.36c-0.46-0.08-0.63,0.03-0.62,0.51c0.02,1.24,0.03,2.48,0,3.72c-0.02,0.56,0.23,0.61,0.68,0.54 C133.88,29.03,134.71,28.02,134.7,26.81z"/>
|
|
24
|
+
<path class="st2" d="M160.82,24.1c-0.99,1.71-1.95,3.37-3.01,5.22c1.13,0,2.08,0,3.03,0c0,0.08,0,0.16-0.01,0.24 c-1.16,0-2.32,0-3.6,0c0.85-1.47,1.68-2.91,2.51-4.35c0.49-0.84,0.48-0.82-0.5-0.85c-0.67-0.02-1.36,0.12-2.01-0.27 C158.38,24.1,159.54,24.1,160.82,24.1z"/>
|
|
25
|
+
<path class="st2" d="M117.67,23.82c0.75,2.08,1.42,3.92,2.08,5.76c-0.07,0.03-0.14,0.05-0.21,0.08c-0.41-0.44-0.56-1.03-0.7-1.59 c-0.21-0.78-0.78-0.52-1.26-0.55c-0.46-0.03-0.91-0.08-1.08,0.56c-0.15,0.55-0.28,1.15-0.92,1.5 C116.25,27.73,116.92,25.89,117.67,23.82z M117.66,24.97c-0.29,0.81-0.53,1.45-0.77,2.12c0.54,0.09,1.02,0.08,1.54,0.01 c-0.08-0.27-0.15-0.51-0.24-0.75C118.05,25.94,117.89,25.55,117.66,24.97z"/>
|
|
26
|
+
<path class="st2" d="M121.51,29.63c-0.33-0.11-0.21-0.38-0.21-0.59c-0.01-1.45,0.02-2.89-0.02-4.34c-0.02-0.6,0.21-0.71,0.75-0.71 c1.54,0.01,2.35,0.59,2.38,1.78c0.03,1.12-0.61,1.91-1.77,1.92c-0.91,0-1.07,0.37-0.99,1.13 C121.68,29.08,121.8,29.41,121.51,29.63z M121.67,25.83c0,1.61,0.04,1.66,1.14,1.49c0.79-0.12,1.33-0.81,1.26-1.6 c-0.08-0.85-0.78-1.37-1.8-1.33c-1.13,0.04-0.38,0.91-0.59,1.35C121.66,25.77,121.67,25.8,121.67,25.83z"/>
|
|
27
|
+
<path class="st2" d="M144.37,24c0.48,0.67,0.64,1.49,0.93,2.24c0.29,0.73,0.55,1.48,0.91,2.44c0.65-1.72,1.22-3.22,1.78-4.72 c0.11,0.04,0.21,0.08,0.32,0.12c-0.66,1.83-1.33,3.66-2.09,5.76c-0.76-2.06-1.43-3.9-2.11-5.74 C144.21,24.07,144.29,24.04,144.37,24z"/>
|
|
28
|
+
<path class="st2" d="M126.04,26.86c0-0.78-0.01-1.56,0-2.34c0-0.18-0.08-0.47,0.22-0.47c0.23,0,0.19,0.25,0.19,0.41 c0,1.59,0,3.18,0,4.77c0,0.17,0.01,0.4-0.22,0.39c-0.22-0.01-0.2-0.24-0.2-0.42C126.03,28.42,126.03,27.64,126.04,26.86z"/>
|
|
29
|
+
<path class="st2" d="M112.88,8.87c-0.03-0.03-0.06-0.06-0.09-0.09c0-0.01,0.03-0.04,0.04-0.06C112.88,8.76,112.9,8.81,112.88,8.87 z"/>
|
|
30
|
+
<path class="st2" d="M112.84,21.55c-0.01-0.04-0.03-0.08-0.03-0.12c0-0.01,0.04-0.02,0.07-0.03 C112.9,21.46,112.89,21.51,112.84,21.55z"/>
|
|
31
|
+
<path class="st0" d="M71.64,16.11c-1.1,0-2.21-0.03-3.31,0.01c-0.63,0.03-0.77-0.21-0.77-0.79c0-2.6,1.46-4.2,4.07-4.33 c1.22-0.06,2.44,0,3.66-0.02c0.39-0.01,0.59,0.08,0.58,0.52c-0.02,1.36-0.02,2.72,0,4.08c0.01,0.52-0.27,0.54-0.66,0.54 C74.03,16.11,72.84,16.11,71.64,16.11z"/>
|
|
32
|
+
<path class="st0" d="M136.19,19.47c-0.58,0-1.16,0.03-1.74,0c-1.73-0.1-2.85-1.25-2.89-2.96c-0.02-0.87-0.02-1.73,0-2.6 c0.03-1.81,1.16-3,2.97-3.06c1.13-0.04,2.27-0.04,3.4,0c1.7,0.06,2.75,1.03,2.96,2.71c0.13,1.09,0.14,2.19-0.01,3.28 c-0.21,1.59-1.24,2.53-2.85,2.63C137.41,19.5,136.8,19.47,136.19,19.47z"/>
|
|
33
|
+
<path class="st0" d="M152.51,29.36c-1.37,0-2.54-1.18-2.52-2.55c0.02-1.36,1.13-2.47,2.49-2.49c1.42-0.02,2.54,1.09,2.55,2.5 C155.03,28.22,153.91,29.36,152.51,29.36z"/>
|
|
34
|
+
<path class="st0" d="M134.7,26.81c0.01,1.21-0.82,2.22-1.95,2.41c-0.45,0.07-0.7,0.02-0.68-0.54c0.04-1.24,0.03-2.48,0-3.72 c-0.01-0.48,0.16-0.59,0.62-0.51C133.85,24.64,134.68,25.59,134.7,26.81z"/>
|
|
35
|
+
<path class="st0" d="M117.66,24.97c0.23,0.58,0.39,0.97,0.53,1.37c0.09,0.24,0.15,0.48,0.24,0.75c-0.52,0.08-0.99,0.08-1.54-0.01 C117.14,26.41,117.37,25.78,117.66,24.97z"/>
|
|
36
|
+
<path class="st0" d="M121.67,25.83c0-0.03-0.01-0.06,0-0.09c0.21-0.44-0.54-1.31,0.59-1.35c1.03-0.04,1.73,0.48,1.8,1.33 c0.07,0.79-0.47,1.48-1.26,1.6C121.7,27.49,121.67,27.44,121.67,25.83z"/>
|
|
37
|
+
</g>
|
|
38
|
+
</g>
|
|
39
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|