-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
613 lines (546 loc) · 32.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My List</title>
<link rel="stylesheet" href="assets/styles.css">
<!-- favicon generated with https://realfavicongenerator.net/ -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#353535">
<meta name="theme-color" content="#353535">
</head>
<body>
<header class="theme-font flex justify-between align-center">
<div class="flex align-center">
<img
class="inline-block"
style="max-height: 4rem;"
src="assets/icons/check.svg"
alt="check mark logo"
/>
<div class="theme-title larger">mylist</div>
</div>
<div class="new-list link-color mr-4 larger">
<span class="text-label theme-title">New list</span>
<span class="icon">+</span>
</div>
</header>
<nav class="theme-font topnav container">
<ul>
</ul>
</nav>
<nav class="bottomnav flex justify-around align-center">
<div class="bottomnav-control">
<a href="#about" class="flex-col align-center">
<svg><use xlink:href="#icons-info"></svg>
<span class="inline-block small">
About
</span>
</a>
</div>
<div class="bottomnav-control text-center">
<a href="#" class="flex-col align-center">
<svg><use xlink:href="#icons-list"></svg>
<span class="inline-block small">
Lists
</span>
</a>
</div>
<div class="bottomnav-control pointer flex-col align-center">
<a href="#settings" class="flex-col align-center">
<svg><use xlink:href="#icons-settings"></svg>
<span class="inline-block small">
Config
</span>
</a>
</div>
</nav>
<section id="lists" class="theme-font container">
</section>
<aside id="log_messages" class="container">
</aside>
<ul id="debug_messages" class="hidden"></ul>
<section id="settings" class="container pt-4">
<details>
<summary class="h3 my-4">Configuration (click for details)</summary>
<todo-settings></todo-settings>
</details>
<details>
<summary class="h3 my-4">Import/Export (click for details)</summary>
<div class="flex flex-wrap justify-around">
<aside class="card mb-4">
<h4>todo.txt</h4>
<p>
Export in well-known
<a href="https://github.com/todotxt/todo.txt">todo.txt format</a>.
<br>
<b>Unmaintained</b>: contact me if you want this.
</p>
<footer class="actions text-right">
<button disabled type="button" id="export_todotxt">Download</button>
</footer>
</aside>
<aside class="card mb-4">
<h4>JSON</h4>
<p>Export in JSON format</p>
<footer class="actions flex justify-between">
<label class="max-w-10r link-color">
<input type="file" id="import_json">
Import
</label>
<button type="button" id="export_json">Download</button>
</footer>
</aside>
</div>
</details>
</section>
<aside id=debug_controls class="hidden container">
<button type=button id=print_state_btn>
print state
</button>
<button type=button id=reset_log>
reset log
</button>
</aside>
<section id="about" class="container pt-4">
<h2 class="my-4">About mylist</h2>
<nav>
<h3 hidden>Table of Contents</h3>
<ul class="toc ml-4">
<li><a href="#faq">FAQ</a></li>
</ul>
</nav>
<article>
<h3 id="faq">FAQ</h3>
<dl>
<dt>Where is my data stored?</dt>
<dd>By default it is stored only in the web browser's local storage.</dd>
<dt>Can I share my lists?</dt>
<dd>
Yes, you can export the JSON model & share it with someone else to
import. You can also setup a back-end and share the settings with someone
else to fetch your lists.
</dd>
<dt>I need to scroll too long to see my lists, can you do something about it?</dt>
<dd>If you're done with the task, delete it.</dd>
</dl>
</article>
</section>
<footer class="small text-center container">
<p class="mb-0">
Written with curiosity by
<a href="https://juankman94.github.io">juankman94</a>
(<a href="https://github.com/JuanKman94/mylist">source code</a>).
</p>
<p>
<code id="app-version">v1.0</code>
</p>
<ul class="italic text-left">
<li>
<a href="https://github.com/ipython/xkcd-font">xkcd font</a>,
<a href="https://creativecommons.org/licenses/by-sa/3.0/deed.en">CC by</a>,
ipython/xkcd-font team
</li>
<li>
<a href="https://commons.wikimedia.org/wiki/File:Afkrydsningsboks_(_check_box_)_1.svg">checkbox</a>,
<a href="http://creativecommons.org/licenses/sa/1.0/">CC SA 1.0</a>,
modified,
via Wikimedia Commons
</li>
<li>
<a href="https://commons.wikimedia.org/w/index.php?curid=67857097">list icon</a>,
<a href="http://creativecommons.org/licenses/sa/3.0/">CC SA 3.0</a>,
via Wikimedia Commons
</li>
<li>
<a href="https://commons.wikimedia.org/w/index.php?curid=5281797">info circle icon</a>,
<a href="http://creativecommons.org/licenses/sa/4.0/">CC SA 4.0</a>,
modified,
via Wikimedia Commons
</li>
<li>
<a href="https://commons.wikimedia.org/w/index.php?curid=36335069">loop icon</a>,
<a href="http://creativecommons.org/licenses/sa/4.0/">CC SA 4.0</a>,
via Wikimedia Commons
</li>
<li>
<a href="https://commons.wikimedia.org/wiki/File:Gear_shape_black_11.svg" rel="nofollow">
Settings icon
</a>
by
<a href="https://commons.wikimedia.org/wiki/User:Heatherawalls" rel="nofollow">
Heatherawalls
</a>
</li>
<li>
<a href="https://www.onlygfx.com/adhesive-sticky-tape-png-transparent/">sticky tape image</a>
by <a href="https://www.onlygfx.com/author/zolee/">zolee</a>,
via <a href="https://web.archive.org/web/20221004090055/http://www.onlygfx.com:80/terms-of-use/">OnlyGFX</a>
</li>
</ul>
</footer>
<template id="category-list-template">
<h3 class="task-list--title">
<color-picker color="color-4"></color-picker>
<slot name="category-name">
<span class="category--name ml-2"></span>
</slot>
<span class="icon delete">x</span>
</h3>
<div class="progress-container">
<div class="flex-grow-1">
<progress class="w-full" max="100" value="0"></progress>
</div>
<div class="progress-label pl-2">0%</div>
</div>
<div class="tasks-container">
<task-control></task-control>
</div>
</template>
<template id="taskitem-template">
<svg class="icon grabber task-grabber"><use xlink:href="#icons-grip-lines"></svg>
<label>
<input type=checkbox />
<span class="task-item--name"></span>
</label>
<span class="icon delete">x</span>
</template>
<template id="newtask-template">
<form action="#" class="new-task--form">
<label for="task">
<span class="icon">+</span>
<span class="sr-only">Task</span>
<input
name="task"
class="text-field"
type="text"
placeholder="Task description"
/>
</label>
<input class="sr-only" type="submit" value="submit" />
</form>
</template>
<template id="todo-settings-template">
<form action="#" class="new-task--form">
<div class="field">
<label for="current_theme">Theme</label>
<select class="config-field available-themes" name="current_theme">
<option value="">Default</option>
<option value="nothing">Nothing</option>
</select>
<div class="hint">
Choose how the application looks.
</div>
</div>
<fieldset class="mt-4">
<legend>Tasks</legend>
<div class="field">
<label for="tasks_progress">Show progress bar?</label>
<input
class="settings-tasks-progress"
id="tasks_progress"
name="tasks_progress"
type="checkbox"
>
<div class="hint">
Show progress bar & percentage completion.
</div>
</div>
</fieldset>
<fieldset class="mt-4">
<legend>Navigation Bar</legend>
<div class="field">
<label for="nav_compact">Compact?</label>
<input
class="settings-nav-compact"
id="nav_compact"
name="nav_compact"
type="checkbox"
>
<div class="hint">
For all-screen phones.
</div>
</div>
</fieldset>
<fieldset class="mt-4">
<legend>Backend</legend>
<div class="field backend-url">
<label for="backend_enabled">Enabled?</label>
<input
type="checkbox"
class="config-field"
name="backend_enabled"
/>
<div class="hint">
Requests will be sent <b>only</b> if this is enabled.
</div>
</div>
<div class="field backend-url">
<label for="backend_url" hidden>URL</label>
<input
type="url"
class="config-field"
name="backend_url"
placeholder="https://example.com/personal/mylist"
/>
<div class="hint">
URL where a POST request is sent whenever a task changes.
The payload is the whole page state, i.e., all the lists with their tasks.
</div>
</div>
<div class="field username">
<label for="backend_username" hidden>Username</label>
<input
type="text"
class="config-field"
name="backend_username"
placeholder="Username"
/>
<div class="hint">
An email, a pseudonym or whatever — you control the back-end so
validate as you please!
</div>
</div>
<div class="field passphrase">
<label for="backend_passphrase" hidden>Passphrase</label>
<textarea
rows="3"
class="config-field"
name="backend_passphrase"
placeholder="Passphrase: One flew over the coocoo's nest"
></textarea>
<div class="hint">
A poem you like or the lyrics for your favorite song!
</div>
</div>
</fieldset>
<fieldset class="mt-4">
<legend>Cache</legend>
<div class="flex align-center">
<button
class="h-fit mr-4 py-2 px-1 block"
id="clear_cache_btn"
name="clear_cache_btn"
type="button"
style="flex-basis: 60%;"
>
Clear cache
</button>
<div class="hint">
This will clear the <b>current</b> cache <i>stored by the Service Worker</i>.
</div>
</div>
</fieldset>
</form>
</template>
<template id="colorpicker-template">
<div role="button" type="button" class="color-picker--current color-picker--option">
<span class="sr-only">current color</span>
</div>
<div class="color-picker--options">
</div>
</template>
<template id="logmessage-template">
<details>
<summary class="bold title"></summary>
<p class="pre-line message"></p>
</details>
</template>
<script src="assets/lib.js"></script>
<script src="assets/backend_client.js"></script>
<script src="assets/state_manager.js"></script>
<script src="assets/components_base.js"></script>
<script src="assets/components.js"></script>
<script src="assets/main.js"></script>
<script src="assets/sortable.min.js"></script>
<script>
const registerServiceWorker = async () => {
if ('serviceWorker' in navigator) {
const currentUrl = new URL(window.location);
if (currentUrl.hostname == 'localhost')
return;
try {
const registration = await navigator
.serviceWorker
.register('sw.js', { scope: currentUrl.pathname });
if (registration.installing) {
console.log('Service worker is installing.');
} else if (registration.waiting) {
console.log('Service worker successfully installed.');
} else if (registration.active) {
console.log('Service worker is active!');
}
} catch (err) {
console.error('Service worker cannot be installed.', err);
}
}
};
registerServiceWorker();
</script>
<!--
SVG icons generated with https://github.com/jgarber623/svgeez and embedded for styling.
Individual files located at: assets/icons/
-->
<svg style="display: none;" id="icons" xmlns="http://www.w3.org/2000/svg"><symbol id="icons-check" viewBox="0 0 129.59999 129.59999" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkpad="http://taptrix.com/inkpad/svg_extensions" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<style
id="style203-09aad7d3-7d03-4b3b-a235-9c39d2dd1090"></style>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1440"
inkscape:window-height="847"
id="namedview25-f74c316e-8625-4532-beb9-3f9971e78c01"
showgrid="true"
inkscape:zoom="2.1132971"
inkscape:cx="79.733229"
inkscape:cy="39.511719"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:pagecheckerboard="0"
inkscape:snap-page="true">
<inkscape:grid
type="xygrid"
id="grid3002-6ba4005c-40a1-4f4a-ab18-8441d0871eae"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata4-7b4411dc-5ecc-43c2-81b0-ed222907ef18">
<inkpad:thumbnail
xlink:href="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAHgAAABVCAYAAACCViA6AAAAHGlET1QAAAACAAAA AAAAACsAAAAoAAAAKwAAACoAAAO/WwJH8AAAA4tJREFUeAHsms9PE0EUx/ljPHhW jHhAoyZ4MSHx4MmDJ0QTY+IJI4mGGNSIIKSpP6KYGAjKz2AoWkRqgjWaIKDRtb8b +gNasRRKW0uh/bo7ZOsubbfGcJjdvE0mM29mO3nv++nO7uy+KtBhaAWqDB0dBQcC bPA/AQEmwAZXwODh/fcVHJpNY6AxhJh/w+AS6Ts8TcDxQBbDF8OIChlVlJ53SXTW uNFe7UZ4/rdqjAy+FNAEPPcijrv7XHBPrRe8FsYS6DjgZoA9tmShnxp8KqAJGHlg LbxZ8Hzu+TZwU60HwZl0oZ8a/CqgDVjh96cnMXY1m495i5ZsxWnU5EyBfwI83bXM 4D6o8+KXlx6qOGOo6Y4m4HwOmGyNMriPT/qxGsxqTkaD/ClQFvBWNo+xpiUG9+kp P9ajf+/FCx9T+Da6xl805FGRAiUBS3CHLoQY3N4zAaTjW6ofmg57YDriUfWRwacC JQFLT87t+10McjYlrtM7Dt90EhGB9r87ZOHSLAlY8lRakqV7MB36VqAsYH2HRd7L ChBgWQmD1gTYoGDlsAiwrIRBawJsULByWARYVsKgNQE2KFg5rF0DnF7ZwqvmRViv LclzU82BArsCODyfxqMTHvHtlwOWK4schEUuyAoUAU7H43hvNmO+v1+z2Nra4LBa WbZH1yEnpPJlIC7PSzUnChQB9tntmO0bhqXJC789jEQkUrKshkIYvTyCjmoHzEfF 3Kw5yvDghKnKjSLAUYcDn3sn2XI70VL+fuqwLqF1zwc8rPMg5qMkAJWqHBklAUtL 7/3jbjw77S/p6k9nBvdqBNzaa0f0B31VKikSJ51lAQ82BtB50Incpph5pzgyiRy6 633it2IBr68PKUaoyaMCZQFP3Y6yZXpFkdguwR48H2D9dnMQMz09PMZEPikUKAv4 61CcgXRaE9unixeytMeVtkLjVxeRWlkhwAoheW2WBbzsyjCYb26ID1oi3Lc3I8we OBdATkzpIcC8IlX7VRawdFp3vRemWpe4HQoxuH1nF7CR3E7zIMBqIXm1NAF/f7nG wErL8silIJT5WQSYV6Rqv4oARwQB483N7C2VtF2ytthgu2MT7YlCn9QvWCzob2hQ z0YWdwoUAc7n83DbbGLWpADppYdWScVi3AVEDqkVKAKsHiZL7woQYL0TrOA/Aa4g kN6HCbDeCVbwnwBXEEjvwwRY7wQr+P8HAAD//+I5CggAAAKMSURBVO2ZT08TURTF +Sj6EfwTE2OC0cSFC92QuGDnQlbql2ABC0Uxta0VI40LAgk2JgY3mqCBaiTRWBKN ZaBWrWBKKVQZShnnyHtK42La28hiuOU0uWknc9J33vnN7Xsv7QBfbZ1AR1vPjpMD Abf5Q0DABCwn4P+SNVSEk8CuO/jFYBGDxx2U87VwZsBRmyawK8DPbxRx/XAW987n UF1jGzdNOqSb/w04HVuuw60sbYVkn8NKCQQCHuvpwdvR0YY1fuUJeg+8Qu/BCVQW CVcKOcz7gYAzqRSW3m9g7NIXjF/+iunoMtwVz/qcTa3Zzr19ysHTvmSY3jl2Cwk0 BOxM/sTA0TkL06yz8TMLeJkoYeBIFpFOB4uzP7avEy0MQUmYCTQEbEz5no/1kof0 nVId9K0TDgrvXGxVqwQcJrkWx24KeOc7PkxU6t083PUJNdcn4J1w9vi7CDjzcNX+ LJvOTV0t2E42xyN28B4n+9deU8Cv769YoGbN/ZbZgLfpI3p6HomzCwSsg2/wnw1m F52O/1l3zeaqmN2EW/bwZqSMm8fmkLyQJ2DNgKeij+ubqqFzOZgyO2lTkc55fJ7h JksJ3+AOnkk+wnBXDtcOfbQVOelg5GIeU9HvWC2s2+6tue72ObhPyzz3rc/ANfhB d7c9Ak3HhpCO3bWfzZn330rH43jW379vg9My8UDAWszTp5wAAcsZqVYQsGp8snkC ljNSrSBg1fhk8wQsZ6RaQcCq8cnmCVjOSLWCgFXjk80TsJyRagUBq8YnmydgOSPV CgJWjU82T8ByRqoVBKwan2yegOWMVCsIWDU+2TwByxmpVhCwanyyeQKWM1KtIGDV +GTzBCxnpFpBwKrxyeZ/A1Wnyh0qnl45AAAAAElFTkSuQmCC" />
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<metadata
id="metadata6-e2bb5377-947c-4d84-a87b-e513c7a44e83">
<inkpad:setting
key="ShowGrid"
value="1" />
<inkpad:setting
key="Units"
value="Centimeters" />
<inkpad:setting
key="SnapToPoints"
value="0" />
<inkpad:setting
key="RulersVisible"
value="0" />
<inkpad:setting
key="SnapToEdges"
value="0" />
<inkpad:setting
key="GridSpacing"
value="36" />
<inkpad:setting
key="SnapToGrid"
value="0" />
</metadata>
<defs
id="defs8-e6af80db-dcea-484a-b89b-e8f54919570a" />
<rect
ry="2"
rx="2"
y="28.799995"
x="28.799995"
height="72"
width="72"
id="rect3788-57d4363b-346b-423e-ac88-800e6f5bd5f5"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.19999981;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:export-filename="/Users/jc/Downloads/rect3788.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
style="fill:none;stroke:#7200d1;stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.80257497"
inkscape:connector-curvature="0"
id="path17-56184779-a386-4c0f-8336-1c365c761ce7"
d="m 43.563691,42.253996 c 5.177303,0.061 11.135903,0.206 15.818203,2.728 6.1901,3.333 11.0558,10.791 15.8181,15.818 29.341196,30.970996 -32.169703,32.552996 -36.000003,29.999996 -3.9784,-2.652 5.769503,-9.478996 15.818203,-19.090996 15.3703,-14.702 14.1396,-13.319 30.0001,-30 26.905896,-28.298 3.8577,-4.948999 28.363896,-29.455001"
inkscape:export-filename="/Users/jc/Downloads/rect3788.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
style="fill:#ffff00;stroke-width:0.806452"
d="m 38.709677,81.048387 v -42.33871 h 34.448258 34.448255 l -4.40397,4.637097 c -2.42218,2.550403 -6.559628,6.892063 -9.194321,9.648133 l -4.790349,5.011036 -3.904477,-3.652181 c -5.936617,-5.55301 -12.356592,-8.201017 -22.468905,-9.26761 -7.264141,-0.766183 -8.90609,-0.713607 -11.494898,0.368065 -6.387536,2.668883 -6.700939,11.315208 -0.522811,14.423562 1.705586,0.858119 4.635682,1.410527 7.485783,1.41129 7.223773,0.0019 11.462904,1.405833 15.626061,5.174983 l 3.700203,3.350009 -11.601512,10.832854 C 39.885142,105.06608 38.095735,107.40159 40.187965,114.38484 c 1.836726,6.13044 6.37405,8.11111 18.683003,8.15565 9.826439,0.0356 22.374192,-1.67092 29.769083,-4.04857 10.700117,-3.44036 16.987159,-7.7696 20.866579,-14.36866 1.85524,-3.15584 2.18612,-4.637358 2.18163,-9.768421 -0.006,-7.196255 -2.09778,-12.396235 -7.8033,-19.401083 l -3.64248,-4.471983 11.53955,-12.055403 11.53956,-12.055402 0.0328,38.508064 0.0328,38.508068 H 81.048387 38.709677 Z"
id="path279-3658cbdf-cb9c-46b0-95fe-6d9ef4ab5450"
transform="scale(0.79999994)"
inkscape:export-filename="/Users/jc/Downloads/rect3788.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
style="fill:#ffff00;stroke-width:0.806452"
d="m 69.076836,100.61545 c 3.479515,-3.204431 9.272889,-8.663804 12.874166,-12.131936 l 6.547776,-6.305696 2.24913,2.661091 c 1.237021,1.4636 2.944497,4.225985 3.79439,6.138632 1.450411,3.264085 1.463229,3.602739 0.208825,5.517203 -2.624433,4.005386 -14.070257,7.873916 -28.093642,9.495236 l -3.907034,0.45172 z"
id="path318-ab564d58-9f8e-42c8-b898-a18548554b20"
transform="scale(0.79999994)"
inkscape:export-filename="/Users/jc/Downloads/rect3788.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
style="fill:#800080;stroke-width:0.806452"
d="m 48.068002,120.93675 c -3.317621,-0.99279 -6.835297,-4.64467 -7.406414,-7.68899 -0.594476,-3.16883 1.680993,-8.54452 5.09558,-12.03808 1.300566,-1.330648 9.138055,-8.770164 17.416642,-16.532261 8.278587,-7.762096 15.05198,-14.528938 15.051986,-15.037425 1.3e-5,-1.179464 -4.912482,-5.510019 -8.149077,-7.183727 -1.419942,-0.734282 -5.927084,-1.550419 -10.532192,-1.907132 -7.181493,-0.556281 -8.278576,-0.8521 -10.168249,-2.741772 -2.92935,-2.92935 -2.893736,-7.078888 0.08623,-10.047099 2.103037,-2.094741 2.541043,-2.188883 9.52162,-2.046521 11.888951,0.242463 19.815204,3.37122 27.969409,11.040459 l 2.679344,2.519992 2.051349,-2.419355 c 1.128242,-1.330645 5.506755,-5.957662 9.73003,-10.282258 l 7.67868,-7.862904 h 7.14708 7.14708 v 3.029315 c 0,2.806662 -0.89612,3.964713 -12.19208,15.755928 l -12.192073,12.726614 3.756533,4.781461 c 10.61619,13.512719 11.0551,25.042945 1.30058,34.167145 -6.237473,5.83443 -14.473876,9.11997 -28.610399,11.41283 -7.897436,1.28091 -23.605251,1.48386 -27.38166,0.35378 z m 28.948127,-15.71372 c 7.07369,-1.31394 13.802202,-3.83041 16.896743,-6.319401 3.402815,-2.736937 3.152519,-6.570119 -0.804136,-12.315005 -3.466151,-5.032697 -3.981454,-5.462209 -5.489781,-4.575819 -0.606924,0.356667 -6.869878,6.198217 -13.917678,12.981222 l -12.81418,12.332733 5.241935,-0.52757 c 2.883065,-0.29016 7.782258,-0.99944 10.887097,-1.57616 z"
id="path640-5859182f-c3db-47e0-9cb7-42e76b09d423"
transform="scale(0.79999994)"
inkscape:export-filename="/Users/jc/Downloads/rect3788.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
style="fill:#800080;stroke-width:0.806452"
d="m 128.22151,37.903226 c -0.0492,-2.918401 -1.49091,-3.625732 -8.21862,-4.032258 l -6.6731,-0.403226 12.48833,-12.702661 c 11.81,-12.0126933 12.65597,-12.7026044 15.57456,-12.7016131 4.07138,0.00138 7.80087,3.5095411 7.80087,7.3379221 0,2.282933 -1.3555,3.98664 -10.47582,13.166873 -5.76171,5.799552 -10.48501,10.000285 -10.49622,9.334963 z"
id="path679-be01db85-c3fa-4c8a-a869-9298b87427de"
transform="scale(0.79999994)"
inkscape:export-filename="/Users/jc/Downloads/rect3788.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
style="fill:#550000;stroke-width:0.806452"
d="m 124.19355,40.850796 v -2.94757 h -7.38306 c -7.33197,0 -7.37295,-0.01116 -5.92339,-1.612903 1.23206,-1.361416 2.48384,-1.612904 8.02821,-1.612904 4.03361,0 6.94203,0.373473 7.5363,0.967742 1.49209,1.492087 1.14708,5.071599 -0.64516,6.693549 -1.58495,1.434361 -1.6129,1.408575 -1.6129,-1.487914 z"
id="path718-0fc2204a-031c-4345-9e9d-a374f19255ab"
transform="scale(0.79999994)"
inkscape:export-filename="/Users/jc/Downloads/rect3788.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<path
style="fill:#ffff00;stroke-width:0.473194"
d="M 39.038525,80.916215 V 38.801928 h 33.833388 c 18.608363,0 33.833387,0.127616 33.833387,0.283591 0,0.439987 -17.126096,18.170984 -17.551071,18.170984 -0.206999,0 -1.612893,-1.142871 -3.124204,-2.539712 -7.215354,-6.668848 -14.527763,-9.406009 -26.895842,-10.067578 -5.090409,-0.272287 -5.922797,-0.203081 -7.859031,0.653407 -6.851314,3.030662 -6.734269,12.250498 0.190745,15.025336 1.1604,0.464969 4.306825,0.965367 7.469046,1.187855 3.005196,0.21144 6.305726,0.615636 7.334511,0.898213 2.53387,0.695982 5.781187,2.68207 8.628343,5.277172 l 2.362984,2.153793 -10.392765,9.676063 C 52.578682,92.824971 42.431656,103.27112 40.75208,106.40685 c -1.205427,2.2505 -1.333359,2.88344 -1.12002,5.5412 0.287287,3.57898 1.942457,6.73989 4.288502,8.18983 3.287916,2.03204 7.305768,2.53793 18.067883,2.27495 15.469925,-0.37802 25.180071,-2.36797 35.085318,-7.19021 6.261267,-3.04822 10.321157,-6.69212 12.916537,-11.59308 1.37289,-2.5925 1.6604,-3.677364 1.82988,-6.904625 0.42683,-8.12801 -1.77686,-14.381654 -7.69624,-21.840437 -1.70334,-2.1463 -3.09697,-4.129064 -3.09697,-4.406142 0,-0.277078 4.9388,-5.654418 10.97512,-11.949644 6.03631,-6.295226 11.04034,-11.534589 11.12006,-11.64303 0.0797,-0.10844 0.14495,16.979787 0.14495,37.973838 v 38.171 H 81.152812 39.038525 Z"
id="path1533-b9551516-02c2-480a-ae65-c645e3c1d0f9"
transform="scale(0.79999994)"
inkscape:export-filename="/Users/jc/Downloads/rect3788.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
</symbol><symbol id="icons-grip-lines" viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--><path d="M32 288c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 288zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 160z"/></symbol><symbol id="icons-info" viewBox="0 0 160 160">
<path d="m80 15c-35.88 0-65 29.12-65 65s29.12 65 65 65 65-29.12 65-65-29.12-65-65-65zm0 10c30.36 0 55 24.64 55 55s-24.64 55-55 55-55-24.64-55-55 24.64-55 55-55z"/>
<path d="m57.373 18.231a9.3834 9.1153 0 1 1 -18.767 0 9.3834 9.1153 0 1 1 18.767 0z" transform="matrix(1.1989 0 0 1.2342 21.214 28.75)"/>
<path d="m90.665 110.96c-0.069 2.73 1.211 3.5 4.327 3.82l5.008 0.1v5.12h-39.073v-5.12l5.503-0.1c3.291-0.1 4.082-1.38 4.327-3.82v-30.813c0.035-4.879-6.296-4.113-10.757-3.968v-5.074l30.665-1.105"/>
</symbol><symbol id="icons-list" viewBox="0 0 115 115" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"><metadata id="metadata82-8edbdc8a-b1b3-4444-b246-c1bc879d0c54"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><dc:title/></cc:Work></rdf:RDF></metadata><defs id="defs80-3610b4fb-2666-414b-985c-56f49a31a95e"/><sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="640" inkscape:window-height="480" id="namedview78-f8937a64-36c9-4f4e-8dda-8c2e3e088eb1" showgrid="false" fit-margin-top="10" fit-margin-left="10" fit-margin-right="10" fit-margin-bottom="10" inkscape:zoom="1.888" inkscape:cx="47.495427" inkscape:cy="52.444087" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="0" inkscape:current-layer="svg76"/><g id="g40-3d651365-8d55-4c1b-a852-4fd247b39ea4" transform="translate(8.1,7.5)"><path d="M 79.9,97.5 H 20.1 C 13.4,97.5 7.9,92 7.9,85.3 V 14.7 C 7.9,8 13.4,2.5 20.1,2.5 H 79.8 C 86.5,2.5 92,8 92,14.7 V 85.3 C 92.1,92 86.6,97.5 79.9,97.5 Z M 20.1,5.2 c -5.2,0 -9.5,4.3 -9.5,9.5 v 70.6 c 0,5.2 4.3,9.5 9.5,9.5 h 59.7 c 5.2,0 9.5,-4.3 9.5,-9.5 V 14.7 C 89.3,9.5 85,5.2 79.8,5.2 Z" id="path38-3aff0660-f015-4c57-bd37-0d727104ac33" inkscape:connector-curvature="0"/></g><g id="g46-6d11c04f-9473-47c3-a4ef-815617c6cf41" transform="translate(8.1,7.5)"><path d="M 79.2,28.3 H 35.9 c -0.6,0 -1,-0.5 -1,-1 v -0.4 c 0,-0.6 0.5,-1 1,-1 h 43.2 c 0.6,0 1,0.5 1,1 v 0.4 c 0.1,0.5 -0.4,1 -0.9,1 z" id="path42-b6e84a63-c8eb-436c-ab9d-5376afb4a345" inkscape:connector-curvature="0"/><path d="M 79,28.7 H 36.1 c -0.9,0 -1.7,-0.7 -1.7,-1.7 0,-0.9 0.7,-1.7 1.7,-1.7 H 79 c 0.9,0 1.7,0.7 1.7,1.7 -0.1,1 -0.8,1.7 -1.7,1.7 z M 36.1,26.3 c -0.4,0 -0.8,0.3 -0.8,0.8 0,0.4 0.3,0.8 0.8,0.8 H 79 c 0.4,0 0.8,-0.3 0.8,-0.8 0,-0.4 -0.3,-0.8 -0.8,-0.8 z" id="path44-bb43ec73-d04d-4cd1-9d68-73122757157b" inkscape:connector-curvature="0"/></g><g id="g52-86471d76-0b96-4e36-9f8b-6310ffcdd66c" transform="translate(8.1,7.5)"><path d="M 79.2,51.2 H 35.9 c -0.6,0 -1,-0.5 -1,-1 v -0.4 c 0,-0.6 0.5,-1 1,-1 h 43.2 c 0.6,0 1,0.5 1,1 v 0.4 c 0.1,0.6 -0.4,1 -0.9,1 z" id="path48-f7d18e4b-088a-4c68-b29f-05fde14b720f" inkscape:connector-curvature="0"/><path d="M 79,51.7 H 36.1 c -0.9,0 -1.7,-0.7 -1.7,-1.7 0,-1 0.7,-1.7 1.7,-1.7 H 79 c 0.9,0 1.7,0.7 1.7,1.7 0,1 -0.8,1.7 -1.7,1.7 z M 36.1,49.2 c -0.4,0 -0.8,0.3 -0.8,0.8 0,0.5 0.3,0.8 0.8,0.8 H 79 c 0.4,0 0.8,-0.3 0.8,-0.8 0,-0.5 -0.3,-0.8 -0.8,-0.8 z" id="path50-f2f9df2b-7433-4302-b3c7-a5020910c472" inkscape:connector-curvature="0"/></g><g id="g58-7b00e84c-3268-42dd-9941-2ea6cfd8b3e5" transform="translate(8.1,7.5)"><path d="M 79.2,74.1 H 35.9 c -0.6,0 -1,-0.5 -1,-1 v -0.4 c 0,-0.6 0.5,-1 1,-1 h 43.2 c 0.6,0 1,0.5 1,1 v 0.4 c 0.1,0.6 -0.4,1 -0.9,1 z" id="path54-7b7c9a32-df40-4fd4-b7e3-d60b28cbf9af" inkscape:connector-curvature="0"/><path d="M 79,74.6 H 36.1 c -0.9,0 -1.7,-0.7 -1.7,-1.7 0,-0.9 0.7,-1.7 1.7,-1.7 H 79 c 0.9,0 1.7,0.7 1.7,1.7 -0.1,0.9 -0.8,1.7 -1.7,1.7 z M 36.1,72.2 c -0.4,0 -0.8,0.3 -0.8,0.8 0,0.5 0.3,0.8 0.8,0.8 H 79 c 0.4,0 0.8,-0.3 0.8,-0.8 0,-0.5 -0.3,-0.8 -0.8,-0.8 z" id="path56-08fac761-22f5-4a06-9c17-27e163ea6703" inkscape:connector-curvature="0"/></g><g id="g62-0127d06a-2e63-49b0-9c1b-7a7a5c3eac18" transform="translate(8.1,7.5)"><path d="M 25.3,33.6 H 25 c -3.6,0 -6.5,-2.9 -6.5,-6.5 0,-3.6 2.9,-6.5 6.5,-6.5 h 0.3 c 3.6,0 6.5,2.9 6.5,6.5 0,3.6 -3,6.5 -6.5,6.5 z M 25,23.3 c -2.1,0 -3.8,1.7 -3.8,3.8 0,2.1 1.7,3.8 3.8,3.8 h 0.3 c 2.1,0 3.8,-1.7 3.8,-3.8 0,-2.1 -1.7,-3.8 -3.8,-3.8 z" id="path60-7821ef8e-a314-419d-bb65-e7bb6ee77ecf" inkscape:connector-curvature="0"/></g><g id="g66-037d7aad-adc1-45aa-811f-ca2033de6503" transform="translate(8.1,7.5)"><path d="M 25.3,56.5 H 25 c -3.6,0 -6.5,-2.9 -6.5,-6.5 0,-3.6 2.9,-6.5 6.5,-6.5 h 0.3 c 3.6,0 6.5,2.9 6.5,6.5 0,3.6 -3,6.5 -6.5,6.5 z M 25,46.2 c -2.1,0 -3.8,1.7 -3.8,3.8 0,2.1 1.7,3.8 3.8,3.8 h 0.3 c 2.1,0 3.8,-1.7 3.8,-3.8 0,-2.1 -1.7,-3.8 -3.8,-3.8 z" id="path64-ce8a7fa8-cac8-414b-bab9-84892fe12a80" inkscape:connector-curvature="0"/></g><g id="g70-5843bfc8-3cf1-497a-8f47-761472c24149" transform="translate(8.1,7.5)"><path d="M 25.3,79.4 H 25 c -3.6,0 -6.5,-2.9 -6.5,-6.5 0,-3.6 2.9,-6.5 6.5,-6.5 h 0.3 c 3.6,0 6.5,2.9 6.5,6.5 0,3.6 -3,6.5 -6.5,6.5 z M 25,69.2 c -2.1,0 -3.8,1.7 -3.8,3.8 0,2.1 1.7,3.8 3.8,3.8 h 0.3 c 2.1,0 3.8,-1.7 3.8,-3.8 0,-2.1 -1.7,-3.8 -3.8,-3.8 z" id="path68-f1fe28e9-e5c4-4f29-a4d5-add79f9afea8" inkscape:connector-curvature="0"/></g></symbol><symbol id="icons-loop" viewBox="0 0 48 48">
<path d="M24 8V2l-8 8 8 8v-6c6.63 0 12 5.37 12 12 0 2.03-.51 3.93-1.39 5.61l2.92 2.92C39.08 30.05 40 27.14 40 24c0-8.84-7.16-16-16-16zm0 28c-6.63 0-12-5.37-12-12 0-2.03.51-3.93 1.39-5.61l-2.92-2.92C8.92 17.95 8 20.86 8 24c0 8.84 7.16 16 16 16v6l8-8-8-8v6z"/>
<path d="M0 0h48v48H0z" fill="none"/>
</symbol><symbol id="icons-settings" viewBox="0 0 61.609 61.609" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="g27_6_-7d885973-0cb9-491c-b0d6-bbe328caa3f5" transform="translate(491.78471,169.30575)">
<g id="path29_8_-f47a8da1-70ef-4211-bf5b-c20875981586">
<path d="M-430.175-138.5c0-1.435-0.1-2.842-0.288-4.221l-5.292-1.769c-0.645-2.729-1.718-5.295-3.15-7.615 l2.486-4.989c-1.706-2.251-3.717-4.26-5.968-5.968l-4.989,2.488c-2.321-1.432-4.885-2.508-7.615-3.152l-1.767-5.289 c-1.384-0.189-2.791-0.291-4.221-0.291c-1.435,0-2.84,0.102-4.221,0.291l-1.769,5.289c-2.731,0.645-5.297,1.721-7.618,3.152 l-4.986-2.488c-2.251,1.708-4.263,3.717-5.968,5.968l2.485,4.989c-1.432,2.32-2.505,4.887-3.152,7.615l-5.286,1.769 c-0.192,1.379-0.291,2.786-0.291,4.221c0,1.433,0.099,2.84,0.291,4.219l5.286,1.771c0.647,2.729,1.721,5.295,3.152,7.616 l-2.485,4.986c1.705,2.251,3.717,4.263,5.968,5.97l4.986-2.488c2.321,1.435,4.887,2.508,7.618,3.152l1.766,5.289 c1.384,0.189,2.789,0.289,4.222,0.289c1.432,0,2.839-0.1,4.221-0.289l1.769-5.289c2.73-0.645,5.294-1.718,7.615-3.152l4.986,2.488 c2.254-1.707,4.265-3.719,5.971-5.97l-2.488-4.986c1.435-2.321,2.508-4.888,3.152-7.616l5.289-1.771 C-430.275-135.66-430.175-137.067-430.175-138.5z M-439.928-138.5c0,11.628-9.425,21.054-21.053,21.054 s-21.054-9.426-21.054-21.054s9.426-21.056,21.054-21.056S-439.928-150.128-439.928-138.5z"/>
</g>
</g>
</symbol></svg>
</body>
</html>