-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
1322 lines (1321 loc) · 114 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.0.1)
:modules $ [] |quamolit/ |pointed-prompt/
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.comp.container $ {}
:defs $ {}
|comp-blossom $ {} (:at 1630437630870) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475870592) (:by |_yzgLY-K2) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1630437630870) (:by |_yzgLY-K2) (:text |comp-blossom) (:type :leaf)
|r $ {} (:at 1630437630870) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|5 $ {} (:at 1630475494337) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|9 $ {} (:at 1630475500582) (:by |_yzgLY-K2) (:text |blossom) (:type :leaf)
|V $ {} (:at 1630475770307) (:by |_yzgLY-K2) (:text |opacity) (:type :leaf)
|g $ {} (:at 1630475771498) (:by |_yzgLY-K2) (:text |stage) (:type :leaf)
|r $ {} (:at 1630439389305) (:by |_yzgLY-K2) (:text |call-next) (:type :leaf)
|x $ {} (:at 1631519622176) (:by |_yzgLY-K2) (:text |running?) (:type :leaf)
|t $ {} (:at 1631522183670) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1631523578134) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|T $ {} (:at 1631523023481) (:by |_yzgLY-K2) (:text |hud-log) (:type :leaf)
|b $ {} (:at 1631523043827) (:by |_yzgLY-K2) (:text "|\"blossom") (:type :leaf)
|j $ {} (:at 1631522560676) (:by |_yzgLY-K2) (:text |stage) (:type :leaf)
|r $ {} (:at 1631522562194) (:by |_yzgLY-K2) (:text |opacity) (:type :leaf)
|v $ {} (:at 1631523201795) (:by |_yzgLY-K2) (:text |blossom) (:type :leaf)
|v $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |let) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475504991) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475507187) (:by |_yzgLY-K2) (:text |k) (:type :leaf)
|j $ {} (:at 1630475507624) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475508281) (:by |_yzgLY-K2) (:text |:id) (:type :leaf)
|j $ {} (:at 1630475510228) (:by |_yzgLY-K2) (:text |blossom) (:type :leaf)
|L $ {} (:at 1630475511352) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475511939) (:by |_yzgLY-K2) (:text |data) (:type :leaf)
|j $ {} (:at 1630475512191) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475513523) (:by |_yzgLY-K2) (:text |:scores) (:type :leaf)
|j $ {} (:at 1630475516205) (:by |_yzgLY-K2) (:text |blossom) (:type :leaf)
|P $ {} (:at 1630475517553) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475520273) (:by |_yzgLY-K2) (:text |base-point) (:type :leaf)
|j $ {} (:at 1630475522215) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475525669) (:by |_yzgLY-K2) (:text |:position) (:type :leaf)
|T $ {} (:at 1630475522050) (:by |_yzgLY-K2) (:text |blossom) (:type :leaf)
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |n) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |6) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |unit-angle) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |/) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |360) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |n) (:type :leaf)
|r $ {} (:at 1630475829000) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475831098) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|L $ {} (:at 1630475831663) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475832059) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630475832355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475834764) (:by |_yzgLY-K2) (:text |elapsed) (:type :leaf)
|j $ {} (:at 1630475836476) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|T $ {} (:at 1630476386668) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630476388920) (:by |_yzgLY-K2) (:text |translate) (:type :leaf)
|L $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:text |first) (:type :leaf)
|j $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:text |base-point) (:type :leaf)
|r $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:text |last) (:type :leaf)
|j $ {} (:at 1630520641649) (:by |_yzgLY-K2) (:text |base-point) (:type :leaf)
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630476118048) (:by |_yzgLY-K2) (:text |scale) (:type :leaf)
|j $ {} (:at 1630520644356) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520644356) (:by |_yzgLY-K2) (:text |&{}) (:type :leaf)
|j $ {} (:at 1630520644356) (:by |_yzgLY-K2) (:text |:ratio) (:type :leaf)
|r $ {} (:at 1630520644356) (:by |_yzgLY-K2) (:text |opacity) (:type :leaf)
|n $ {} (:at 1630437921011) (:by |_yzgLY-K2) (:text |&) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439727984) (:by |_yzgLY-K2) (:text |->) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |data) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |map-indexed) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |i) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |score) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |let) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |r) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |80) (:type :leaf)
|r $ {} (:at 1630439499031) (:by |_yzgLY-K2) (:text |1) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |x) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |r) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |sin) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|b $ {} (:at 1630437962345) (:by |_yzgLY-K2) (:text |pi-ratio) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |unit-angle) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |i) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |y) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |r) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |cos) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|b $ {} (:at 1630437969282) (:by |_yzgLY-K2) (:text |pi-ratio) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |unit-angle) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |i) (:type :leaf)
|v $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |next-base) (:type :leaf)
|j $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1630476784425) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630476786034) (:by |_yzgLY-K2) (:text |+) (:type :leaf)
|L $ {} (:at 1630476787142) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630476788627) (:by |_yzgLY-K2) (:text |first) (:type :leaf)
|j $ {} (:at 1630476791214) (:by |_yzgLY-K2) (:text |base-point) (:type :leaf)
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |x) (:type :leaf)
|r $ {} (:at 1630476792655) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630476793914) (:by |_yzgLY-K2) (:text |+) (:type :leaf)
|L $ {} (:at 1630476794448) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630476799929) (:by |_yzgLY-K2) (:text |last) (:type :leaf)
|j $ {} (:at 1630476797693) (:by |_yzgLY-K2) (:text |base-point) (:type :leaf)
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |y) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |arc) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |:fill-style) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |.rem) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |4) (:type :leaf)
|r $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |score) (:type :leaf)
|r $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |360) (:type :leaf)
|r $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |90) (:type :leaf)
|v $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |50) (:type :leaf)
|r $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |x) (:type :leaf)
|v $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |y) (:type :leaf)
|x $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |:s-angle) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|y $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |:e-angle) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |360) (:type :leaf)
|yT $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |:r) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |28) (:type :leaf)
|yj $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |:event) (:type :leaf)
|j $ {} (:at 1631519610313) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1631519611857) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|L $ {} (:at 1631519617671) (:by |_yzgLY-K2) (:text |running?) (:type :leaf)
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |&{}) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |:click) (:type :leaf)
|r $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |e) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|r $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |println) (:type :leaf)
|r $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text "|\"hit:") (:type :leaf)
|v $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |base-point) (:type :leaf)
|x $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |next-base) (:type :leaf)
|v $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |:hit) (:type :leaf)
|r $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |score) (:type :leaf)
|x $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |call-next) (:type :leaf)
|j $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |next-base) (:type :leaf)
|r $ {} (:at 1630520655011) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|r $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437641179) (:by |_yzgLY-K2) (:text |text) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |x) (:type :leaf)
|r $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |y) (:type :leaf)
|v $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text "||Menlo, Courier") (:type :leaf)
|x $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |:text) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |str) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |score) (:type :leaf)
|y $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |:fill-style) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|v $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|yT $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |:size) (:type :leaf)
|j $ {} (:at 1630520658490) (:by |_yzgLY-K2) (:text |16) (:type :leaf)
|comp-container $ {} (:id |By9zdiRy4KuW) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:at 1622710226217) (:author |root) (:by |_yzgLY-K2) (:id |S1iG_sCkVYu-) (:text |defcomp) (:time 1503375314228) (:type :leaf)
|j $ {} (:author |root) (:id |Hy3fuoCJNtub) (:text |comp-container) (:time 1503375314228) (:type :leaf)
|r $ {} (:at 1622710215889) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|j $ {} (:at 1622710215889) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|x $ {} (:at 1622710493773) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1622710494574) (:by |_yzgLY-K2) (:text |let) (:type :leaf)
|L $ {} (:at 1622710494855) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710495019) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710497947) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|j $ {} (:at 1622710498385) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710499336) (:by |_yzgLY-K2) (:text |:states) (:type :leaf)
|j $ {} (:at 1622710500212) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|j $ {} (:at 1622710501286) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710502418) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|j $ {} (:at 1622710502960) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710505966) (:by |_yzgLY-K2) (:text |either) (:type :leaf)
|j $ {} (:at 1622710506231) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710512161) (:by |_yzgLY-K2) (:text |:data) (:type :leaf)
|j $ {} (:at 1622884007079) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|r $ {} (:at 1630439233749) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630440641202) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630474625814) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630474627741) (:by |_yzgLY-K2) (:text |:active) (:type :leaf)
|j $ {} (:at 1630475026152) (:by |_yzgLY-K2) (:text |nil) (:type :leaf)
|r $ {} (:at 1630474629348) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630474630752) (:by |_yzgLY-K2) (:text |:leaving) (:type :leaf)
|j $ {} (:at 1630474631335) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475332222) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|r $ {} (:at 1622710535955) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710536952) (:by |_yzgLY-K2) (:text |cursor) (:type :leaf)
|j $ {} (:at 1622710537281) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710537547) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|v $ {} (:at 1622710553591) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710554147) (:by |_yzgLY-K2) (:text |tab) (:type :leaf)
|j $ {} (:at 1622710554518) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710555236) (:by |_yzgLY-K2) (:text |:tab) (:type :leaf)
|j $ {} (:at 1622710555991) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|x $ {} (:at 1630439435460) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630439437881) (:by |_yzgLY-K2) (:text |call-next) (:type :leaf)
|T $ {} (:at 1630439395560) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439395878) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630439396273) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439403975) (:by |_yzgLY-K2) (:text |position) (:type :leaf)
|j $ {} (:at 1630439405589) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|p $ {} (:at 1630476683944) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630476825110) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|T $ {} (:at 1630476687163) (:by |_yzgLY-K2) (:text |println) (:type :leaf)
|j $ {} (:at 1630476699926) (:by |_yzgLY-K2) (:text "|\"next position:") (:type :leaf)
|r $ {} (:at 1630476698874) (:by |_yzgLY-K2) (:text |position) (:type :leaf)
|v $ {} (:at 1630440679156) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630440680084) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630440681452) (:by |_yzgLY-K2) (:text |cursor) (:type :leaf)
|r $ {} (:at 1630475352145) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475352885) (:by |_yzgLY-K2) (:text |->) (:type :leaf)
|L $ {} (:at 1630475354126) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|P $ {} (:at 1630475355188) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1631523659105) (:by |_yzgLY-K2) (:text |assoc) (:type :leaf)
|j $ {} (:at 1630475359578) (:by |_yzgLY-K2) (:text |:leaving) (:type :leaf)
|r $ {} (:at 1631523662388) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1631523662388) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1631523662388) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1631523662388) (:by |_yzgLY-K2) (:text |:active) (:type :leaf)
|j $ {} (:at 1631523662388) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|T $ {} (:at 1630440681682) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630440682596) (:by |_yzgLY-K2) (:text |assoc) (:type :leaf)
|n $ {} (:at 1630475040279) (:by |_yzgLY-K2) (:text |:active) (:type :leaf)
|v $ {} (:at 1630440691183) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630440696552) (:by |_yzgLY-K2) (:text |gen-blossom) (:type :leaf)
|j $ {} (:at 1630440699147) (:by |_yzgLY-K2) (:text |position) (:type :leaf)
|R $ {} (:at 1631523249484) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1631523724082) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|T $ {} (:at 1631523251358) (:by |_yzgLY-K2) (:text |hud-log) (:type :leaf)
|b $ {} (:at 1631523261148) (:by |_yzgLY-K2) (:text "|\"active") (:type :leaf)
|j $ {} (:at 1631523257787) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1631523259179) (:by |_yzgLY-K2) (:text |:active) (:type :leaf)
|T $ {} (:at 1631523252345) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|U $ {} (:at 1631523249484) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1631523723333) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|T $ {} (:at 1631523251358) (:by |_yzgLY-K2) (:text |hud-log) (:type :leaf)
|b $ {} (:at 1631523264789) (:by |_yzgLY-K2) (:text "|\"leaving") (:type :leaf)
|j $ {} (:at 1631523257787) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1631523267651) (:by |_yzgLY-K2) (:text |:leaving) (:type :leaf)
|T $ {} (:at 1631523252345) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|X $ {} (:at 1631522367058) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1631523722503) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|T $ {} (:at 1631522997168) (:by |_yzgLY-K2) (:text |hud-log) (:type :leaf)
|j $ {} (:at 1631522369300) (:by |_yzgLY-K2) (:text "|\"count") (:type :leaf)
|r $ {} (:at 1631522381250) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1631522382940) (:by |_yzgLY-K2) (:text |count) (:type :leaf)
|T $ {} (:at 1631522373386) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1631522374251) (:by |_yzgLY-K2) (:text |:leaving) (:type :leaf)
|j $ {} (:at 1631522375829) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|j $ {} (:at 1630474292799) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630474294496) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|L $ {} (:at 1630474294765) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630474295235) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630474295926) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630474305316) (:by |_yzgLY-K2) (:text |elapsed) (:type :leaf)
|T $ {} (:at 1630474300117) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|r $ {} (:at 1630474376053) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630474376820) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|L $ {} (:at 1630474377391) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475051658) (:by |_yzgLY-K2) (:text |nil?) (:type :leaf)
|j $ {} (:at 1630475053406) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475055873) (:by |_yzgLY-K2) (:text |:active) (:type :leaf)
|T $ {} (:at 1630474381465) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|T $ {} (:at 1630474324493) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630474325145) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630474330438) (:by |_yzgLY-K2) (:text |cursor) (:type :leaf)
|r $ {} (:at 1630474332519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630474332519) (:by |_yzgLY-K2) (:text |assoc) (:type :leaf)
|j $ {} (:at 1630474332519) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|p $ {} (:at 1630475061327) (:by |_yzgLY-K2) (:text |:active) (:type :leaf)
|v $ {} (:at 1630474332519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630474332519) (:by |_yzgLY-K2) (:text |gen-blossom) (:type :leaf)
|j $ {} (:at 1630474337425) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630474337708) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1630474338155) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630474338660) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |group) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|r $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |button) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |-240) (:type :leaf)
|r $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |200) (:type :leaf)
|v $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:w) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |40) (:type :leaf)
|x $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:h) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |40) (:type :leaf)
|y $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:surface-color) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |30) (:type :leaf)
|r $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |80) (:type :leaf)
|v $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |50) (:type :leaf)
|yT $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:text-color) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|v $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|yj $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:text) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |str) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:scores) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|yr $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |14) (:type :leaf)
|yv $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1630520611940) (:by |_yzgLY-K2) (:text "||Menlo, Courier") (:type :leaf)
|v $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |group) (:type :leaf)
|j $ {} (:at 1630439570500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|p $ {} (:at 1630475219655) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475220412) (:by |_yzgLY-K2) (:text |let) (:type :leaf)
|L $ {} (:at 1630475221140) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475221163) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475222051) (:by |_yzgLY-K2) (:text |active) (:type :leaf)
|j $ {} (:at 1630475231532) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475231532) (:by |_yzgLY-K2) (:text |:active) (:type :leaf)
|j $ {} (:at 1630475231532) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|T $ {} (:at 1630475152549) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475153178) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|j $ {} (:at 1630475155936) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475155639) (:by |_yzgLY-K2) (:text |some?) (:type :leaf)
|j $ {} (:at 1630475233723) (:by |_yzgLY-K2) (:text |active) (:type :leaf)
|r $ {} (:at 1630475725660) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475731626) (:by |_yzgLY-K2) (:text |comp-fade-fn) (:type :leaf)
|L $ {} (:at 1630475734347) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475734347) (:by |_yzgLY-K2) (:text |>>) (:type :leaf)
|j $ {} (:at 1630475734347) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|r $ {} (:at 1630475734347) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475734347) (:by |_yzgLY-K2) (:text |:id) (:type :leaf)
|j $ {} (:at 1630475734347) (:by |_yzgLY-K2) (:text |active) (:type :leaf)
|P $ {} (:at 1630475738203) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475738564) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|T $ {} (:at 1630475740644) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475741735) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|L $ {} (:at 1630475742909) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475748727) (:by |_yzgLY-K2) (:text |next-states) (:type :leaf)
|j $ {} (:at 1630475751852) (:by |_yzgLY-K2) (:text |opacity) (:type :leaf)
|r $ {} (:at 1630475753290) (:by |_yzgLY-K2) (:text |stage) (:type :leaf)
|T $ {} (:at 1630475162326) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475169476) (:by |_yzgLY-K2) (:text |comp-blossom) (:type :leaf)
|f $ {} (:at 1630475757885) (:by |_yzgLY-K2) (:text |next-states) (:type :leaf)
|r $ {} (:at 1630475291793) (:by |_yzgLY-K2) (:text |active) (:type :leaf)
|u $ {} (:at 1630475763252) (:by |_yzgLY-K2) (:text |opacity) (:type :leaf)
|v $ {} (:at 1630475766155) (:by |_yzgLY-K2) (:text |stage) (:type :leaf)
|x $ {} (:at 1630475262881) (:by |_yzgLY-K2) (:text |call-next) (:type :leaf)
|yT $ {} (:at 1631519625210) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1631519625210) (:by |_yzgLY-K2) (:text |:running?) (:type :leaf)
|j $ {} (:at 1631519625210) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|v $ {} (:at 1630439684472) (:by |_yzgLY-K2) (:text |&) (:type :leaf)
|x $ {} (:at 1630439655731) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630439657975) (:by |_yzgLY-K2) (:text |->) (:type :leaf)
|L $ {} (:at 1630439659099) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|P $ {} (:at 1630439665300) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475196118) (:by |_yzgLY-K2) (:text |:leaving) (:type :leaf)
|T $ {} (:at 1630439659739) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475197637) (:by |_yzgLY-K2) (:text |.map) (:type :leaf)
|T $ {} (:at 1630439668038) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630439670809) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|L $ {} (:at 1630439671192) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|j $ {} (:at 1630439677344) (:by |_yzgLY-K2) (:text |data) (:type :leaf)
|T $ {} (:at 1630475774356) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475776144) (:by |_yzgLY-K2) (:text |comp-fade-fn) (:type :leaf)
|L $ {} (:at 1630475778979) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475778979) (:by |_yzgLY-K2) (:text |>>) (:type :leaf)
|j $ {} (:at 1630475778979) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|r $ {} (:at 1630475778979) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475778979) (:by |_yzgLY-K2) (:text |:id) (:type :leaf)
|j $ {} (:at 1630475778979) (:by |_yzgLY-K2) (:text |data) (:type :leaf)
|P $ {} (:at 1630475781020) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475780637) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|T $ {} (:at 1630475788650) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630475789237) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|L $ {} (:at 1630475792370) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630476090879) (:by |_yzgLY-K2) (:text |&) (:type :leaf)
|j $ {} (:at 1630476092048) (:by |_yzgLY-K2) (:text |args) (:type :leaf)
|f $ {} (:at 1630476034346) (:by |_yzgLY-K2) (:text |nil) (:type :leaf)
|x $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |button) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |-300) (:type :leaf)
|r $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |200) (:type :leaf)
|v $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:w) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |60) (:type :leaf)
|x $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:text) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:running?) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|r $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |str) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:countdown) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|v $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text ||Restart) (:type :leaf)
|y $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text "||Menlo, Courier") (:type :leaf)
|yT $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |14) (:type :leaf)
|yj $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:text-color) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|v $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|yr $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |:surface-color) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |90) (:type :leaf)
|v $ {} (:at 1630439151355) (:by |_yzgLY-K2) (:text |70) (:type :leaf)
|yv $ {} (:at 1630520618747) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520619724) (:by |_yzgLY-K2) (:text |:event) (:type :leaf)
|j $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |&{}) (:type :leaf)
|j $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |:click) (:type :leaf)
|r $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |e) (:type :leaf)
|j $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|r $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |:restart) (:type :leaf)
|r $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |nil) (:type :leaf)
|v $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |cursor) (:type :leaf)
|r $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |assoc) (:type :leaf)
|j $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |:active) (:type :leaf)
|v $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |gen-blossom) (:type :leaf)
|j $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630520620303) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|duration $ {} (:at 1630438120485) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630438120485) (:by |_yzgLY-K2) (:text |def) (:type :leaf)
|j $ {} (:at 1630438120485) (:by |_yzgLY-K2) (:text |duration) (:type :leaf)
|r $ {} (:at 1630438123343) (:by |_yzgLY-K2) (:text |60) (:type :leaf)
|gen-blossom $ {} (:at 1630439234784) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439236382) (:by |_yzgLY-K2) (:text |defn) (:type :leaf)
|j $ {} (:at 1630440626476) (:by |_yzgLY-K2) (:text |gen-blossom) (:type :leaf)
|r $ {} (:at 1630439234784) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630440576903) (:by |_yzgLY-K2) (:text |position) (:type :leaf)
|v $ {} (:at 1630439304415) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630439306698) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|H $ {} (:at 1630475011253) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475011962) (:by |_yzgLY-K2) (:text |:id) (:type :leaf)
|j $ {} (:at 1630475014941) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475018055) (:by |_yzgLY-K2) (:text |js/Date.now) (:type :leaf)
|L $ {} (:at 1630439314849) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439317125) (:by |_yzgLY-K2) (:text |:position) (:type :leaf)
|j $ {} (:at 1630440636060) (:by |_yzgLY-K2) (:text |position) (:type :leaf)
|T $ {} (:at 1630439307389) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630439313951) (:by |_yzgLY-K2) (:text |:scores) (:type :leaf)
|T $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439302259) (:by |_yzgLY-K2) (:text |->) (:type :leaf)
|j $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439338515) (:by |_yzgLY-K2) (:text |range) (:type :leaf)
|j $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |6) (:type :leaf)
|r $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |map) (:type :leaf)
|j $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |x) (:type :leaf)
|r $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |-) (:type :leaf)
|j $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |js/Math.floor) (:type :leaf)
|j $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|j $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |200) (:type :leaf)
|r $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |js/Math.random) (:type :leaf)
|r $ {} (:at 1630439296500) (:by |_yzgLY-K2) (:text |140) (:type :leaf)
|pi-ratio $ {} (:at 1630437969576) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437969576) (:by |_yzgLY-K2) (:text |def) (:type :leaf)
|j $ {} (:at 1630437969576) (:by |_yzgLY-K2) (:text |pi-ratio) (:type :leaf)
|r $ {} (:at 1630437969576) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630437970817) (:by |_yzgLY-K2) (:text |/) (:type :leaf)
|j $ {} (:at 1630437975257) (:by |_yzgLY-K2) (:text |js/Math.PI) (:type :leaf)
|r $ {} (:at 1630437978315) (:by |_yzgLY-K2) (:text |180) (:type :leaf)
:ns $ {} (:id |BysVUsRyNt_b) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |BJhNUjRy4YOW) (:text |ns) (:time 1503375314228) (:type :leaf)
|j $ {} (:author |root) (:id |rkTEIjA14FO-) (:text |app.comp.container) (:time 1503375314228) (:type :leaf)
|r $ {} (:id |By04Ui0k4tOZ) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |rk1S8sA1VFd-) (:text |:require) (:time 1503375314228) (:type :leaf)
|j $ {} (:id |BJxrIjCy4Fub) (:time 1503375314228) (:type :expr)
:data $ {}
|j $ {} (:at 1615304671498) (:author |root) (:by |_yzgLY-K2) (:id |HyGBIsAyEYOZ) (:text |quamolit.util.string) (:time 1503375314228) (:type :leaf)
|r $ {} (:author |root) (:id |HJ7rLjC1EYu-) (:text |:refer) (:time 1503375314228) (:type :leaf)
|v $ {} (:id |SkEBUoCyVKOb) (:time 1503375314228) (:type :expr)
:data $ {}
|j $ {} (:author |root) (:id |BJUr8sAyEF_b) (:text |hsl) (:time 1503375314228) (:type :leaf)
|r $ {} (:id |SkDBIo014t_W) (:time 1503375314228) (:type :expr)
:data $ {}
|j $ {} (:author |root) (:id |SkFrLjA1Nt_W) (:text |quamolit.alias) (:time 1503375314228) (:type :leaf)
|r $ {} (:author |root) (:id |Bk9SLs0y4Y_b) (:text |:refer) (:time 1503375314228) (:type :leaf)
|v $ {} (:id |BkoHIiCyVFuW) (:time 1503375314228) (:type :expr)
:data $ {}
|j $ {} (:at 1622710230676) (:author |root) (:by |_yzgLY-K2) (:id |ByTr8j0k4FOW) (:text |defcomp) (:time 1503375314228) (:type :leaf)
|r $ {} (:author |root) (:id |r1RHUsA1NFuW) (:text |group) (:time 1503375314228) (:type :leaf)
|v $ {} (:at 1622747542983) (:by |_yzgLY-K2) (:text |>>) (:type :leaf)
|x $ {} (:at 1623652544584) (:by |_yzgLY-K2) (:text |line) (:type :leaf)
|y $ {} (:at 1630439463085) (:by |_yzgLY-K2) (:text |arc) (:type :leaf)
|yT $ {} (:at 1630439465266) (:by |_yzgLY-K2) (:text |text) (:type :leaf)
|v $ {} (:id |SkyLIi0kVF_W) (:time 1503375314228) (:type :expr)
:data $ {}
|j $ {} (:author |root) (:id |rJWLUiRyNt_-) (:text |quamolit.render.element) (:time 1503375314228) (:type :leaf)
|r $ {} (:author |root) (:id |rkMILsRkNFO-) (:text |:refer) (:time 1503375314228) (:type :leaf)
|v $ {} (:id |r1mILiAJEtdW) (:time 1503375314228) (:type :expr)
:data $ {}
|j $ {} (:author |root) (:id |ryBL8sRyNtuZ) (:text |translate) (:time 1503375314228) (:type :leaf)
|r $ {} (:author |root) (:id |Hk888sRk4KuW) (:text |button) (:time 1503375314228) (:type :leaf)
|v $ {} (:at 1630439485803) (:by |_yzgLY-K2) (:text |alpha) (:type :leaf)
|x $ {} (:at 1630476140228) (:by |_yzgLY-K2) (:text |scale) (:type :leaf)
|x $ {} (:at 1630475718623) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475718623) (:by |_yzgLY-K2) (:text |quamolit.comp.fade-in-out) (:type :leaf)
|j $ {} (:at 1630475718623) (:by |_yzgLY-K2) (:text |:refer) (:type :leaf)
|r $ {} (:at 1630475718623) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630475718623) (:by |_yzgLY-K2) (:text |comp-fade-fn) (:type :leaf)
|y $ {} (:at 1631522989714) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1631522989714) (:by |_yzgLY-K2) (:text |quamolit.hud-logs) (:type :leaf)
|j $ {} (:at 1631522989714) (:by |_yzgLY-K2) (:text |:refer) (:type :leaf)
|r $ {} (:at 1631522989714) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1631522989714) (:by |_yzgLY-K2) (:text |hud-log) (:type :leaf)
:proc $ {} (:id |HJF3Is0JVYdZ) (:time 1503375314228) (:type :expr)
:data $ {}
|app.main $ {}
:defs $ {}
|*raq-loop $ {} (:at 1623034581012) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1623034584790) (:by |_yzgLY-K2) (:text |defatom) (:type :leaf)
|j $ {} (:at 1623524269991) (:by |_yzgLY-K2) (:text |*raq-loop) (:type :leaf)
|r $ {} (:at 1623034586803) (:by |_yzgLY-K2) (:text |nil) (:type :leaf)
|*render-loop $ {} (:id |H1A7aiAJVY_W) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:at 1615302835480) (:author |root) (:by |_yzgLY-K2) (:id |S1y4asC14t_b) (:text |defatom) (:time 1503375314228) (:type :leaf)
|j $ {} (:at 1623524255374) (:by |_yzgLY-K2) (:text |*render-loop) (:type :leaf)
|r $ {} (:author |root) (:id |S1Q4aiAJEYOb) (:text |nil) (:time 1503375314228) (:type :leaf)
|*store $ {} (:id |SkEEpsAy4FdZ) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:at 1615302854981) (:author |root) (:by |_yzgLY-K2) (:id |SJHVTiCyNKOZ) (:text |defatom) (:time 1503375314228) (:type :leaf)
|j $ {} (:at 1623524816098) (:by |_yzgLY-K2) (:text |*store) (:type :leaf)
|r $ {} (:at 1630438663822) (:by |_yzgLY-K2) (:text |schema/store) (:type :leaf)
|dispatch! $ {} (:id |rJ3J6j0JEFu-) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |H1TkajCkNY_W) (:text |defn) (:time 1503375314228) (:type :leaf)
|j $ {} (:author |root) (:id |HkAkTi0yVKO-) (:text |dispatch!) (:time 1503375314228) (:type :leaf)
|r $ {} (:id |rkJgajA1NKd-) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |S1xgTiRyEK_-) (:text |op) (:time 1503375314228) (:type :leaf)
|j $ {} (:author |root) (:id |S1WlpjAk4tdb) (:text |op-data) (:time 1503375314228) (:type :leaf)
|v $ {} (:at 1622883652327) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1622883654059) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|L $ {} (:at 1622883654306) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622883656172) (:by |_yzgLY-K2) (:text |list?) (:type :leaf)
|j $ {} (:at 1622883658345) (:by |_yzgLY-K2) (:text |op) (:type :leaf)
|P $ {} (:at 1622883659647) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622883660445) (:by |_yzgLY-K2) (:text |recur) (:type :leaf)
|j $ {} (:at 1622883664183) (:by |_yzgLY-K2) (:text |:states) (:type :leaf)
|r $ {} (:at 1622883665037) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622883665321) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1622883666656) (:by |_yzgLY-K2) (:text |op) (:type :leaf)
|r $ {} (:at 1622883670107) (:by |_yzgLY-K2) (:text |op-data) (:type :leaf)
|T $ {} (:at 1622883674289) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1622883675456) (:by |_yzgLY-K2) (:text |do) (:type :leaf)
|L $ {} (:at 1622883675982) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1623503143182) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|T $ {} (:at 1622883675982) (:by |_yzgLY-K2) (:text |println) (:type :leaf)
|j $ {} (:at 1622883675982) (:by |_yzgLY-K2) (:text "|\"dispatch") (:type :leaf)
|r $ {} (:at 1622883675982) (:by |_yzgLY-K2) (:text |op) (:type :leaf)
|v $ {} (:at 1622883675982) (:by |_yzgLY-K2) (:text |op-data) (:type :leaf)
|P $ {} (:at 1623503143610) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1623505978372) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|T $ {} (:at 1623503146085) (:by |_yzgLY-K2) (:text |js/console.log) (:type :leaf)
|j $ {} (:at 1623524797623) (:by |_yzgLY-K2) (:text |@*store) (:type :leaf)
|T $ {} (:id |BkfgpsCJNF_Z) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |rJQxpi0yNFdZ) (:text |let) (:time 1503375314228) (:type :leaf)
|j $ {} (:id |r1Eg6oAJNFd-) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:id |B1BlpoRy4K_W) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |rJUeajCy4F_W) (:text |new-tick) (:time 1503375314228) (:type :leaf)
|j $ {} (:id |SJPeajCJEK_b) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |Syde6o0JEtd-) (:text |get-tick) (:time 1503375314228) (:type :leaf)
|b $ {} (:at 1630438743434) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630438965052) (:by |_yzgLY-K2) (:text |op-id) (:type :leaf)
|j $ {} (:at 1630438748202) (:by |_yzgLY-K2) (:text |new-tick) (:type :leaf)
|j $ {} (:id |HyFlpiR1NFd-) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |r15x6i0yEYdW) (:text |new-store) (:time 1503375314228) (:type :leaf)
|j $ {} (:id |HyslaoAkNtOZ) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:at 1630438727900) (:author |root) (:by |_yzgLY-K2) (:id |rynx6o0kNFd-) (:text |updater) (:time 1503375314228) (:type :leaf)
|j $ {} (:at 1623524801293) (:author |root) (:by |_yzgLY-K2) (:id |ry6xaoCyEYub) (:text |@*store) (:time 1503375314228) (:type :leaf)
|r $ {} (:author |root) (:id |HyAlpjRyEKOW) (:text |op) (:time 1503375314228) (:type :leaf)
|v $ {} (:author |root) (:id |rky-Ti0kNtOW) (:text |op-data) (:time 1503375314228) (:type :leaf)
|w $ {} (:at 1630438750549) (:by |_yzgLY-K2) (:text |op-id) (:type :leaf)
|x $ {} (:author |root) (:id |SyxbTjRyEt_b) (:text |new-tick) (:time 1503375314228) (:type :leaf)
|r $ {} (:id |SJWb6jCk4FOb) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |Hkfbpo0kEYOW) (:text |reset!) (:time 1503375314228) (:type :leaf)
|j $ {} (:at 1623524804305) (:author |root) (:by |_yzgLY-K2) (:id |HyXbao0y4FO-) (:text |*store) (:time 1503375314228) (:type :leaf)
|r $ {} (:author |root) (:id |rkV-TiRJNF_-) (:text |new-store) (:time 1503375314228) (:type :leaf)
|main! $ {} (:id |rJmMTsCJEFO-) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |HJNM6sAk4Y_W) (:text |defn) (:time 1503375314228) (:type :leaf)
|j $ {} (:at 1613975691872) (:by |_yzgLY-K2) (:text |main!) (:type :leaf)
|r $ {} (:id |H1UGpsCyEYu-) (:time 1503375314228) (:type :expr)
:data $ {}
|u $ {} (:at 1622649203372) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622649208245) (:by |_yzgLY-K2) (:text |load-console-formatter!) (:type :leaf)
|y $ {} (:id |S1jGai0JNYOZ) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |BJnzpoC1Et_Z) (:text |let) (:time 1503375314228) (:type :leaf)
|j $ {} (:id |Hk6f6oRJVKuZ) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:id |SkAGpo0kVYuZ) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |SkympjRJEK_b) (:text |target) (:time 1503375314228) (:type :leaf)
|j $ {} (:id |rygmpiCJEYO-) (:time 1503375314228) (:type :expr)
:data $ {}
|j $ {} (:at 1622653807276) (:author |root) (:by |_yzgLY-K2) (:id |r1z7TsRkNFd-) (:text |js/document.querySelector) (:time 1503375314228) (:type :leaf)
|r $ {} (:author |root) (:id |HJ7XaiR1NKd-) (:text ||#app) (:time 1503375314228) (:type :leaf)
|r $ {} (:id |HkVmpjRkVK_Z) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |SJHQpjAJNKdZ) (:text |configure-canvas) (:time 1503375314228) (:type :leaf)
|j $ {} (:author |root) (:id |SJ8m6sCJNtuW) (:text |target) (:time 1503375314228) (:type :leaf)
|v $ {} (:id |BkPmToRyVYOb) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |rJOXTj0kVF_b) (:text |setup-events) (:time 1503375314228) (:type :leaf)
|j $ {} (:author |root) (:id |BkKQ6jAyEF_Z) (:text |target) (:time 1503375314228) (:type :leaf)
|r $ {} (:author |root) (:id |Sk976jCkNFub) (:text |dispatch!) (:time 1503375314228) (:type :leaf)
|x $ {} (:at 1622886108483) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |HJTm6sCy4KOZ) (:text |render-loop!) (:time 1503375314228) (:type :leaf)
|y $ {} (:at 1630438627741) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630438633392) (:by |_yzgLY-K2) (:text |js/setInterval) (:type :leaf)
|b $ {} (:at 1630438646078) (:by |_yzgLY-K2) (:text |tick-call) (:type :leaf)
|j $ {} (:at 1630438636329) (:by |_yzgLY-K2) (:text |1000) (:type :leaf)
|reload! $ {} (:at 1630431234878) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630431236292) (:by |_yzgLY-K2) (:text |defn) (:type :leaf)
|L $ {} (:at 1630431237808) (:by |_yzgLY-K2) (:text |reload!) (:type :leaf)
|P $ {} (:at 1630431238204) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630431239506) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630431242028) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|L $ {} (:at 1630431242028) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630431242028) (:by |_yzgLY-K2) (:text |nil?) (:type :leaf)
|j $ {} (:at 1630431242028) (:by |_yzgLY-K2) (:text |build-errors) (:type :leaf)
|T $ {} (:id |H1BWpjCyVF_-) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:at 1630431248885) (:author |root) (:by |_yzgLY-K2) (:id |ryIb6iA1VFOW) (:text |do) (:time 1503375314228) (:type :leaf)
|v $ {} (:id |rkFZ6sAkNt_b) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:at 1622886116926) (:author |root) (:by |_yzgLY-K2) (:id |BJcbpi0JEKu-) (:text |js/clearTimeout) (:time 1503375314228) (:type :leaf)
|j $ {} (:at 1623524291095) (:author |root) (:by |_yzgLY-K2) (:id |SyjW6oCJEt_-) (:text |@*render-loop) (:time 1503375314228) (:type :leaf)
|w $ {} (:at 1623034595099) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1623034612938) (:by |_yzgLY-K2) (:text |js/cancelAnimationFrame) (:type :leaf)
|T $ {} (:at 1623524294211) (:by |_yzgLY-K2) (:text |@*raq-loop) (:type :leaf)
|x $ {} (:id |H1hb6sRkVFdb) (:time 1503375314228) (:type :expr)
:data $ {}
|j $ {} (:author |root) (:id |SyR-aiR1NY_b) (:text |render-loop!) (:time 1503375314228) (:type :leaf)
|y $ {} (:at 1630431263226) (:by |_yzgLY-K2) (:type :expr)