generated from Phlox-GL/phlox-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
2027 lines (2026 loc) · 168 KB
/
calcit.cirru
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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{}
:configs $ {} (:compact-output? true) (:extension |.cljs) (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.4.10)
:modules $ [] |memof/ |lilac/ |respo.calcit/ |respo-ui.calcit/ |phlox/ |pointed-prompt/ |bisection-key/ |touch-control/
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.comp.container $ {}
:defs $ {}
|comp-container $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1615450365814) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:text |comp-container) (:type :leaf)
|r $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573662792335) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|t $ {} (:at 1574442738592) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642267207040) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1574442742932) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1574442744071) (:by |rJG4IHzWf) (:text "|\"Store") (:type :leaf)
|r $ {} (:at 1574442745655) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|v $ {} (:at 1574442779990) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1574442779990) (:by |rJG4IHzWf) (:text |:tab) (:type :leaf)
|j $ {} (:at 1574442779990) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|v $ {} (:at 1583036824444) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1583036827332) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1583036827630) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036827827) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036828777) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1583036829493) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036830034) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1583036831664) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036832446) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|j $ {} (:at 1583036832651) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036833411) (:by |rJG4IHzWf) (:text |:states) (:type :leaf)
|j $ {} (:at 1583036834181) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|r $ {} (:at 1642186539172) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186544990) (:by |rJG4IHzWf) (:text |slides) (:type :leaf)
|j $ {} (:at 1642186545401) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186546663) (:by |rJG4IHzWf) (:text |:slides) (:type :leaf)
|j $ {} (:at 1642186547745) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|v $ {} (:at 1642186548938) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911026422) (:by |rJG4IHzWf) (:text |slide-key) (:type :leaf)
|j $ {} (:at 1642186551722) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911020295) (:by |rJG4IHzWf) (:text |:slide-key) (:type :leaf)
|j $ {} (:at 1642186555023) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|T $ {} (:at 1574353986671) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1574353987962) (:by |rJG4IHzWf) (:text |container) (:type :leaf)
|L $ {} (:at 1574353988241) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1574353988566) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|Q $ {} (:at 1642345525478) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642345527163) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1642345528613) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345528787) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345529339) (:by |rJG4IHzWf) (:text |slide) (:type :leaf)
|j $ {} (:at 1642345534802) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345534802) (:by |rJG4IHzWf) (:text |get) (:type :leaf)
|j $ {} (:at 1642345534802) (:by |rJG4IHzWf) (:text |slides) (:type :leaf)
|r $ {} (:at 1642911028571) (:by |rJG4IHzWf) (:text |slide-key) (:type :leaf)
|T $ {} (:at 1642345517906) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642345518425) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1642345518697) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345520502) (:by |rJG4IHzWf) (:text |nil?) (:type :leaf)
|j $ {} (:at 1642345538720) (:by |rJG4IHzWf) (:text |slide) (:type :leaf)
|P $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text "|\"No Slide") (:type :leaf)
|r $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|r $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |:font-weight) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|v $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|v $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |50) (:type :leaf)
|x $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |ui/font-fancy) (:type :leaf)
|v $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |:align) (:type :leaf)
|j $ {} (:at 1642345523159) (:by |rJG4IHzWf) (:text |:center) (:type :leaf)
|T $ {} (:at 1642186570530) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186572125) (:by |rJG4IHzWf) (:text |comp-slide) (:type :leaf)
|b $ {} (:at 1642186666744) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186667299) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|j $ {} (:at 1642186669598) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|r $ {} (:at 1642911030663) (:by |rJG4IHzWf) (:text |slide-key) (:type :leaf)
|h $ {} (:at 1642911031906) (:by |rJG4IHzWf) (:text |slide-key) (:type :leaf)
|n $ {} (:at 1642345536977) (:by |rJG4IHzWf) (:text |slide) (:type :leaf)
|S $ {} (:at 1642266767717) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266773428) (:by |rJG4IHzWf) (:text |comp-slide-tabs) (:type :leaf)
|j $ {} (:at 1642266774276) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266781212) (:by |rJG4IHzWf) (:text |keys) (:type :leaf)
|j $ {} (:at 1642266782138) (:by |rJG4IHzWf) (:text |slides) (:type :leaf)
|r $ {} (:at 1642911033359) (:by |rJG4IHzWf) (:text |slide-key) (:type :leaf)
|V $ {} (:at 1642186024899) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186036743) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|j $ {} (:at 1642186037637) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186038001) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642186041338) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186042713) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1642186111626) (:by |rJG4IHzWf) (:text "|\"Add") (:type :leaf)
|r $ {} (:at 1642186047522) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186048735) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642186050701) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186050919) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1642871176695) (:by |rJG4IHzWf) (:text |160) (:type :leaf)
|r $ {} (:at 1642186054611) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186058803) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1642871069416) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|r $ {} (:at 1642186066280) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186066560) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642186067463) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642186072630) (:by |rJG4IHzWf) (:text |js/window.innerHeight) (:type :leaf)
|v $ {} (:at 1642186080357) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186085246) (:by |rJG4IHzWf) (:text |:on-pointertap) (:type :leaf)
|j $ {} (:at 1642186086283) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186086624) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642186087464) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186087073) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1642186088542) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1642186091622) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266571284) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1642266577967) (:by |rJG4IHzWf) (:text |:add-slide-after) (:type :leaf)
|r $ {} (:at 1642911034990) (:by |rJG4IHzWf) (:text |slide-key) (:type :leaf)
|a $ {} (:at 1642186024899) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186036743) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|j $ {} (:at 1642186037637) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186038001) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642186041338) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186042713) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1642186122406) (:by |rJG4IHzWf) (:text "|\"Command") (:type :leaf)
|r $ {} (:at 1642186047522) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186048735) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642186050701) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186050919) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1642871179452) (:by |rJG4IHzWf) (:text |220) (:type :leaf)
|r $ {} (:at 1642186054611) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186058803) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1642871074092) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|r $ {} (:at 1642186066280) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186066560) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642186067463) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642186072630) (:by |rJG4IHzWf) (:text |js/window.innerHeight) (:type :leaf)
|v $ {} (:at 1642186080357) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186085246) (:by |rJG4IHzWf) (:text |:on-pointertap) (:type :leaf)
|j $ {} (:at 1642186086283) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186086624) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642186087464) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186087073) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1642186088542) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|v $ {} (:at 1642186203012) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186203299) (:by |rJG4IHzWf) (:text |request-text!) (:type :leaf)
|j $ {} (:at 1642186210097) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|r $ {} (:at 1642186210875) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186213518) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642186214117) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186218858) (:by |rJG4IHzWf) (:text |:placeholder) (:type :leaf)
|j $ {} (:at 1642186220627) (:by |rJG4IHzWf) (:text "|\"Command") (:type :leaf)
|r $ {} (:at 1642186485177) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186486699) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1642186488538) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186489031) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642186489231) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186491434) (:by |rJG4IHzWf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1642186494748) (:by |rJG4IHzWf) (:text |ui/font-code) (:type :leaf)
|v $ {} (:at 1642186233108) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186235045) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642186235562) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186452849) (:by |rJG4IHzWf) (:text |code) (:type :leaf)
|r $ {} (:at 1642186244492) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642871398469) (:by |rJG4IHzWf) (:text |run-command) (:type :leaf)
|n $ {} (:at 1642186455555) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642186469862) (:by |rJG4IHzWf) (:text |parse-cirru) (:type :leaf)
|b $ {} (:at 1642186471584) (:by |rJG4IHzWf) (:text |code) (:type :leaf)
|q $ {} (:at 1642872036239) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642872038274) (:by |rJG4IHzWf) (:text |:main-hint) (:type :leaf)
|j $ {} (:at 1642872039971) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|r $ {} (:at 1642872040422) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642872045131) (:by |rJG4IHzWf) (:text |:secondary-hint) (:type :leaf)
|j $ {} (:at 1642872046466) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|s $ {} (:at 1642911038680) (:by |rJG4IHzWf) (:text |slide-key) (:type :leaf)
|t $ {} (:at 1642871399999) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|v $ {} (:at 1642267210248) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642871375260) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1642267210248) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1642267210248) (:by |rJG4IHzWf) (:text "|\"Store") (:type :leaf)
|r $ {} (:at 1642267210248) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|v $ {} (:at 1642267210248) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267210248) (:by |rJG4IHzWf) (:text |:tab) (:type :leaf)
|j $ {} (:at 1642267210248) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|c $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|j $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1642911550428) (:by |rJG4IHzWf) (:text "|\"DEBUG") (:type :leaf)
|r $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1642911558297) (:by |rJG4IHzWf) (:text |320) (:type :leaf)
|r $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|r $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |js/window.innerHeight) (:type :leaf)
|v $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |:on-pointertap) (:type :leaf)
|j $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1642911520293) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1642911528757) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911533411) (:by |rJG4IHzWf) (:text |js/console.warn) (:type :leaf)
|j $ {} (:at 1642911538977) (:by |rJG4IHzWf) (:text "|\"[DEBUG]") (:type :leaf)
|r $ {} (:at 1642911546641) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|f $ {} (:at 1642185760440) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185760730) (:by |rJG4IHzWf) (:text |comp-drag-point) (:type :leaf)
|j $ {} (:at 1642185761474) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185765554) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|j $ {} (:at 1642185766537) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|r $ {} (:at 1642185769747) (:by |rJG4IHzWf) (:text |:main-hint) (:type :leaf)
|r $ {} (:at 1642185770737) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185774663) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642185775036) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185788842) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642185790102) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185794014) (:by |rJG4IHzWf) (:text |:main-hint) (:type :leaf)
|j $ {} (:at 1642185797274) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|r $ {} (:at 1642185798766) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185886213) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1642185807680) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185809380) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1642185874865) (:by |rJG4IHzWf) (:text |120) (:type :leaf)
|r $ {} (:at 1642185878197) (:by |rJG4IHzWf) (:text |90) (:type :leaf)
|v $ {} (:at 1642185881734) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|t $ {} (:at 1642185889771) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185890943) (:by |rJG4IHzWf) (:text |:radius) (:type :leaf)
|j $ {} (:at 1642185904221) (:by |rJG4IHzWf) (:text |8) (:type :leaf)
|v $ {} (:at 1642185815782) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185818588) (:by |rJG4IHzWf) (:text |:hide-text?) (:type :leaf)
|j $ {} (:at 1642185820196) (:by |rJG4IHzWf) (:text |true) (:type :leaf)
|x $ {} (:at 1642185822915) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185826105) (:by |rJG4IHzWf) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1642185826992) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185827632) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642185828293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185830168) (:by |rJG4IHzWf) (:text |pos) (:type :leaf)
|j $ {} (:at 1642185832602) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1642185833467) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185834074) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1642185975514) (:by |rJG4IHzWf) (:text |:move-main-hint) (:type :leaf)
|r $ {} (:at 1642185840279) (:by |rJG4IHzWf) (:text |pos) (:type :leaf)
|p $ {} (:at 1642185760440) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185760730) (:by |rJG4IHzWf) (:text |comp-drag-point) (:type :leaf)
|j $ {} (:at 1642185761474) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185765554) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|j $ {} (:at 1642185766537) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|r $ {} (:at 1642185845848) (:by |rJG4IHzWf) (:text |:secondary-hint) (:type :leaf)
|r $ {} (:at 1642185770737) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185774663) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642185775036) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185788842) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642185790102) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185850837) (:by |rJG4IHzWf) (:text |:secondary-hint) (:type :leaf)
|j $ {} (:at 1642185797274) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|r $ {} (:at 1642185798766) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185934208) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1642185807680) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185809380) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1642185929664) (:by |rJG4IHzWf) (:text |250) (:type :leaf)
|r $ {} (:at 1642185915279) (:by |rJG4IHzWf) (:text |90) (:type :leaf)
|v $ {} (:at 1642185940875) (:by |rJG4IHzWf) (:text |70) (:type :leaf)
|t $ {} (:at 1642185906014) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185907033) (:by |rJG4IHzWf) (:text |:radius) (:type :leaf)
|j $ {} (:at 1642185907808) (:by |rJG4IHzWf) (:text |6) (:type :leaf)
|v $ {} (:at 1642185815782) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185818588) (:by |rJG4IHzWf) (:text |:hide-text?) (:type :leaf)
|j $ {} (:at 1642185820196) (:by |rJG4IHzWf) (:text |true) (:type :leaf)
|x $ {} (:at 1642185822915) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185826105) (:by |rJG4IHzWf) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1642185826992) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185827632) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642185828293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185830168) (:by |rJG4IHzWf) (:text |pos) (:type :leaf)
|j $ {} (:at 1642185832602) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1642185833467) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642185834074) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1642185966727) (:by |rJG4IHzWf) (:text |:move-secondary-hint) (:type :leaf)
|r $ {} (:at 1642185840279) (:by |rJG4IHzWf) (:text |pos) (:type :leaf)
|comp-slide $ {} (:at 1642186674757) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642186674757) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1642186674757) (:by |rJG4IHzWf) (:text |comp-slide) (:type :leaf)
|r $ {} (:at 1642186674757) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|L $ {} (:at 1642186678217) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|V $ {} (:at 1642346170339) (:by |rJG4IHzWf) (:text |pointed-key) (:type :leaf)
|f $ {} (:at 1642186679813) (:by |rJG4IHzWf) (:text |slide) (:type :leaf)
|v $ {} (:at 1642345639477) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642345640043) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1642345640317) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642345667677) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345671306) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1642345671497) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345672333) (:by |rJG4IHzWf) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1642345673126) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|T $ {} (:at 1642345640692) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345641457) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|j $ {} (:at 1642345641691) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345643818) (:by |rJG4IHzWf) (:text |either) (:type :leaf)
|j $ {} (:at 1642345645027) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345648268) (:by |rJG4IHzWf) (:text |:data) (:type :leaf)
|j $ {} (:at 1642345649049) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|r $ {} (:at 1642345650089) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345650410) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642345650795) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345656316) (:by |rJG4IHzWf) (:text |:pointer) (:type :leaf)
|j $ {} (:at 1642345657614) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1642432057733) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432059863) (:by |rJG4IHzWf) (:text |:spin-pos) (:type :leaf)
|j $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |200) (:type :leaf)
|r $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |js/window.innerWidth) (:type :leaf)
|r $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |js/window.innerHeight) (:type :leaf)
|r $ {} (:at 1642432070966) (:by |rJG4IHzWf) (:text |200) (:type :leaf)
|j $ {} (:at 1642345660284) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345661235) (:by |rJG4IHzWf) (:text |pointer) (:type :leaf)
|j $ {} (:at 1642345661804) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345664427) (:by |rJG4IHzWf) (:text |:pointer) (:type :leaf)
|j $ {} (:at 1642345665134) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|T $ {} (:at 1642345582253) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642345583394) (:by |rJG4IHzWf) (:text |container) (:type :leaf)
|L $ {} (:at 1642345583666) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345583968) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|X $ {} (:at 1642911825429) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911827719) (:by |rJG4IHzWf) (:text |create-list) (:type :leaf)
|b $ {} (:at 1642911856931) (:by |rJG4IHzWf) (:text |:container) (:type :leaf)
|j $ {} (:at 1642911830429) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911830809) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|r $ {} (:at 1642911857885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911861130) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1642911869163) (:by |rJG4IHzWf) (:text |slide) (:type :leaf)
|r $ {} (:at 1642911872262) (:by |rJG4IHzWf) (:text |:logs) (:type :leaf)
|v $ {} (:at 1642911872796) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911914193) (:by |rJG4IHzWf) (:text |map-indexed) (:type :leaf)
|j $ {} (:at 1642911874191) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911874337) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642911878404) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642911916065) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|T $ {} (:at 1642911875244) (:by |rJG4IHzWf) (:text |log) (:type :leaf)
|r $ {} (:at 1642911890078) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642911891267) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|T $ {} (:at 1642911891740) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911880200) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911885648) (:by |rJG4IHzWf) (:text |shape-op) (:type :leaf)
|j $ {} (:at 1642911893314) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911895108) (:by |rJG4IHzWf) (:text |:op) (:type :leaf)
|j $ {} (:at 1642911898312) (:by |rJG4IHzWf) (:text |log) (:type :leaf)
|j $ {} (:at 1642911980127) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642911981456) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|L $ {} (:at 1642911982876) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|T $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|j $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1642911943320) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642911944033) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|T $ {} (:at 1642911928446) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911937624) (:by |rJG4IHzWf) (:text |:type) (:type :leaf)
|j $ {} (:at 1642911941890) (:by |rJG4IHzWf) (:text |shape-op) (:type :leaf)
|r $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1642912026393) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642912027589) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|T $ {} (:at 1642912041657) (:by |rJG4IHzWf) (:text |20) (:type :leaf)
|j $ {} (:at 1642912029865) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912029865) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642912029865) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642912032916) (:by |rJG4IHzWf) (:text |js/window.innerWidth) (:type :leaf)
|r $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912105330) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1642912114645) (:by |rJG4IHzWf) (:text |120) (:type :leaf)
|r $ {} (:at 1642912075458) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912075940) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642912076479) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1642912080635) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|v $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:text |:on-pointertap) (:type :leaf)
|j $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1642911923259) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1642911953635) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642911954508) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1642911966050) (:by |rJG4IHzWf) (:text "|\"shape-op") (:type :leaf)
|r $ {} (:at 1642911963010) (:by |rJG4IHzWf) (:text |shape-op) (:type :leaf)
|d $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |create-list) (:type :leaf)
|j $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |:container) (:type :leaf)
|r $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|v $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |slide) (:type :leaf)
|r $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |:logs) (:type :leaf)
|v $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |map-indexed) (:type :leaf)
|j $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|j $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |log) (:type :leaf)
|r $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1642912139605) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1642912353531) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912355812) (:by |rJG4IHzWf) (:text |render-shape) (:type :leaf)
|j $ {} (:at 1642912361160) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912361160) (:by |rJG4IHzWf) (:text |:op) (:type :leaf)
|j $ {} (:at 1642912361160) (:by |rJG4IHzWf) (:text |log) (:type :leaf)
|j $ {} (:at 1642345586385) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345621799) (:by |rJG4IHzWf) (:text |comp-spin-slider) (:type :leaf)
|j $ {} (:at 1642345623387) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345624136) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|j $ {} (:at 1642345625025) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|r $ {} (:at 1642345627474) (:by |rJG4IHzWf) (:text |:spin) (:type :leaf)
|r $ {} (:at 1642345628809) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345629457) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642345629896) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345632400) (:by |rJG4IHzWf) (:text |:value) (:type :leaf)
|j $ {} (:at 1642345681141) (:by |rJG4IHzWf) (:text |pointer) (:type :leaf)
|n $ {} (:at 1642346303637) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642346305237) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642432072368) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432075781) (:by |rJG4IHzWf) (:text |:spin-pos) (:type :leaf)
|j $ {} (:at 1642432118187) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|p $ {} (:at 1642346303637) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642348633062) (:by |rJG4IHzWf) (:text |:spin-pivot) (:type :leaf)
|j $ {} (:at 1642432238352) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642432242654) (:by |rJG4IHzWf) (:text |complex/add) (:type :leaf)
|L $ {} (:at 1642432257724) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432257724) (:by |rJG4IHzWf) (:text |:spin-pos) (:type :leaf)
|j $ {} (:at 1642432257724) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|f $ {} (:at 1642432259429) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432259661) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1642432261003) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432261262) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642432262324) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642432265864) (:by |rJG4IHzWf) (:text |js/window.innerWidth) (:type :leaf)
|r $ {} (:at 1642432261003) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432261262) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642432262324) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642432269782) (:by |rJG4IHzWf) (:text |js/window.innerHeight) (:type :leaf)
|r $ {} (:at 1642345683009) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345684024) (:by |rJG4IHzWf) (:text |:unit) (:type :leaf)
|j $ {} (:at 1642345801363) (:by |rJG4IHzWf) (:text |4) (:type :leaf)
|v $ {} (:at 1642345685437) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345686507) (:by |rJG4IHzWf) (:text |:min) (:type :leaf)
|j $ {} (:at 1642345687423) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|x $ {} (:at 1642345688061) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345690672) (:by |rJG4IHzWf) (:text |:max) (:type :leaf)
|j $ {} (:at 1642345691561) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|y $ {} (:at 1642345692799) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345702275) (:by |rJG4IHzWf) (:text |:fraction) (:type :leaf)
|j $ {} (:at 1642345703017) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|yT $ {} (:at 1642345703785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345706301) (:by |rJG4IHzWf) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1642345706567) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345707286) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642345707619) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345709241) (:by |rJG4IHzWf) (:text |value) (:type :leaf)
|j $ {} (:at 1642345710532) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1642345711032) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345711727) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1642345713465) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|r $ {} (:at 1642345713654) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642345714511) (:by |rJG4IHzWf) (:text |assoc) (:type :leaf)
|j $ {} (:at 1642345716681) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1642345773454) (:by |rJG4IHzWf) (:text |:pointer) (:type :leaf)
|v $ {} (:at 1642345721362) (:by |rJG4IHzWf) (:text |value) (:type :leaf)
|yj $ {} (:at 1642432053373) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432054599) (:by |rJG4IHzWf) (:text |:on-move) (:type :leaf)
|j $ {} (:at 1642432271596) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432271839) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642432272647) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432273025) (:by |rJG4IHzWf) (:text |pos) (:type :leaf)
|j $ {} (:at 1642432273732) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1642432274099) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642432342159) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1642432274859) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1642432279336) (:by |rJG4IHzWf) (:text "|\"move to:") (:type :leaf)
|r $ {} (:at 1642432278205) (:by |rJG4IHzWf) (:text |pos) (:type :leaf)
|v $ {} (:at 1642432316745) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432317228) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1642432322587) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|r $ {} (:at 1642432322893) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642432323753) (:by |rJG4IHzWf) (:text |assoc) (:type :leaf)
|j $ {} (:at 1642432325822) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1642432329905) (:by |rJG4IHzWf) (:text |:spin-pos) (:type :leaf)
|v $ {} (:at 1642432333371) (:by |rJG4IHzWf) (:text |pos) (:type :leaf)
|comp-slide-tabs $ {} (:at 1642266790700) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266790700) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1642266790700) (:by |rJG4IHzWf) (:text |comp-slide-tabs) (:type :leaf)
|r $ {} (:at 1642266790700) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|L $ {} (:at 1642266795277) (:by |rJG4IHzWf) (:text |slide-keys) (:type :leaf)
|j $ {} (:at 1642266790700) (:by |rJG4IHzWf) (:text |pointer) (:type :leaf)
|t $ {} (:at 1642266803744) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642267501220) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1642266804686) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1642266807031) (:by |rJG4IHzWf) (:text "|\"key") (:type :leaf)
|r $ {} (:at 1642266836465) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642266839595) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|T $ {} (:at 1642266809490) (:by |rJG4IHzWf) (:text |slide-keys) (:type :leaf)
|j $ {} (:at 1642266842850) (:by |rJG4IHzWf) (:text |.to-list) (:type :leaf)
|r $ {} (:at 1642266857203) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266850635) (:by |rJG4IHzWf) (:text |.sort) (:type :leaf)
|j $ {} (:at 1642266857798) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266858077) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642266859596) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266860090) (:by |rJG4IHzWf) (:text |a) (:type :leaf)
|j $ {} (:at 1642266860547) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|r $ {} (:at 1642266861547) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266864566) (:by |rJG4IHzWf) (:text |&compare) (:type :leaf)
|j $ {} (:at 1642266865556) (:by |rJG4IHzWf) (:text |a) (:type :leaf)
|r $ {} (:at 1642266865768) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|v $ {} (:at 1642266796292) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642266927981) (:by |rJG4IHzWf) (:text |create-list) (:type :leaf)
|T $ {} (:at 1642266929801) (:by |rJG4IHzWf) (:text |:container) (:type :leaf)
|j $ {} (:at 1642266801779) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266802706) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|r $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |slide-keys) (:type :leaf)
|r $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |.to-list) (:type :leaf)
|v $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |.sort) (:type :leaf)
|j $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |a) (:type :leaf)
|j $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|r $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |&compare) (:type :leaf)
|j $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |a) (:type :leaf)
|r $ {} (:at 1642266947439) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|x $ {} (:at 1642266952666) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267015665) (:by |rJG4IHzWf) (:text |.map-indexed) (:type :leaf)
|j $ {} (:at 1642266957346) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266958337) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642266959329) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642267025083) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|T $ {} (:at 1642266970208) (:by |rJG4IHzWf) (:text |key) (:type :leaf)
|r $ {} (:at 1642267085844) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642267086764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|L $ {} (:at 1642267090020) (:by |rJG4IHzWf) (:text |key) (:type :leaf)
|T $ {} (:at 1642266972557) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266979053) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|j $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1642267121582) (:by |rJG4IHzWf) (:text |key) (:type :leaf)
|r $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1642267027961) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642267028592) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1642267523885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642267525712) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|L $ {} (:at 1642871150894) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|T $ {} (:at 1642267038313) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267038972) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642267040980) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1642871104845) (:by |rJG4IHzWf) (:text |44) (:type :leaf)
|r $ {} (:at 1642267527699) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267530737) (:by |rJG4IHzWf) (:text |&*) (:type :leaf)
|j $ {} (:at 1642267532061) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642267538275) (:by |rJG4IHzWf) (:text |js/window.innerWidth) (:type :leaf)
|r $ {} (:at 1642267100345) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267099290) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1642871161418) (:by |rJG4IHzWf) (:text |20) (:type :leaf)
|r $ {} (:at 1642267103377) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267106250) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1642267107099) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|r $ {} (:at 1642267112384) (:by |rJG4IHzWf) (:text |js/window.innerHeight) (:type :leaf)
|t $ {} (:at 1642267286629) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267287659) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1642267289143) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267289474) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|j $ {} (:at 1642267290040) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267290216) (:by |rJG4IHzWf) (:text |=) (:type :leaf)
|j $ {} (:at 1642267291448) (:by |rJG4IHzWf) (:text |key) (:type :leaf)
|r $ {} (:at 1642267294374) (:by |rJG4IHzWf) (:text |pointer) (:type :leaf)
|r $ {} (:at 1642267296016) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267299829) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1642267302022) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|r $ {} (:at 1642267303662) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|v $ {} (:at 1642267319161) (:by |rJG4IHzWf) (:text |30) (:type :leaf)
|v $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:text |:align-right?) (:type :leaf)
|j $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:text |false) (:type :leaf)
|x $ {} (:at 1642266999247) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267006483) (:by |rJG4IHzWf) (:text |:on-pointertap) (:type :leaf)
|j $ {} (:at 1642267006846) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267007128) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1642267007416) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267007653) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1642267008254) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1642267044707) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1642267267109) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1642267046511) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1642267051369) (:by |rJG4IHzWf) (:text "|\"key") (:type :leaf)
|r $ {} (:at 1642267052756) (:by |rJG4IHzWf) (:text |key) (:type :leaf)
|v $ {} (:at 1642267262621) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642267263426) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1642267264225) (:by |rJG4IHzWf) (:text |:switch-slide) (:type :leaf)
|r $ {} (:at 1642267265305) (:by |rJG4IHzWf) (:text |key) (:type :leaf)
|render-shape $ {} (:at 1642912365412) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912365412) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1642912365412) (:by |rJG4IHzWf) (:text |render-shape) (:type :leaf)
|r $ {} (:at 1642912365412) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370034) (:by |rJG4IHzWf) (:text |shape-op) (:type :leaf)
|v $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |case-default) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:type) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |shape-op) (:type :leaf)
|r $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text "|\"Unknown: ") (:type :leaf)
|r $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |shape-op) (:type :leaf)
|r $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |14) (:type :leaf)
|r $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:font-weight) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |500) (:type :leaf)
|v $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|v $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |50) (:type :leaf)
|x $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |ui/font-fancy) (:type :leaf)
|v $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:align) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:center) (:type :leaf)
|v $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:rect) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |rect) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |shape-op) (:type :leaf)
|r $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:size) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:sizes) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |shape-op) (:type :leaf)
|v $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:line-style) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |4) (:type :leaf)
|r $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|v $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |50) (:type :leaf)
|v $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:alpha) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|x $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |200) (:type :leaf)
|r $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|v $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|y $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:text |:on) (:type :leaf)
|j $ {} (:at 1642912370926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}