generated from calcit-lang/respo-calcit-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
4032 lines (4031 loc) · 302 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
{} (:package |app)
:configs $ {} (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.1)
:modules $ [] |respo.calcit/compact.cirru |lilac/compact.cirru |memof/compact.cirru |respo-ui.calcit/compact.cirru |respo-markdown.calcit/compact.cirru |reel.calcit/compact.cirru
:entries $ {}
:files $ {}
|app.comp.container $ %{} :FileEntry
:defs $ {}
|calcit-fn? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1619784579286) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619784579286) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1619784579286) (:by |rJG4IHzWf) (:text |calcit-fn?)
|r $ %{} :Expr (:at 1619784586210) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619784586210) (:by |rJG4IHzWf) (:text |x)
|v $ %{} :Expr (:at 1619784586210) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619784586210) (:by |rJG4IHzWf) (:text |and)
|j $ %{} :Expr (:at 1619784586210) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619784586210) (:by |rJG4IHzWf) (:text |map?)
|j $ %{} :Leaf (:at 1619784586210) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Expr (:at 1619784586210) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619784586210) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1635965575979) (:by |rJG4IHzWf) (:text |:fn)
|r $ %{} :Expr (:at 1619784586210) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619784586210) (:by |rJG4IHzWf) (:text |get)
|j $ %{} :Leaf (:at 1619784586210) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Leaf (:at 1635963844721) (:by |rJG4IHzWf) (:text |:kind)
|calcit-import? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1707502356145) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707502356145) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1707502356145) (:by |rJG4IHzWf) (:text |calcit-import?)
|l $ %{} :Expr (:at 1707502357932) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707502357932) (:by |rJG4IHzWf) (:text |x)
|o $ %{} :Expr (:at 1707502357932) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707502357932) (:by |rJG4IHzWf) (:text |and)
|b $ %{} :Expr (:at 1707502357932) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707502357932) (:by |rJG4IHzWf) (:text |map?)
|b $ %{} :Leaf (:at 1707502357932) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Expr (:at 1707502357932) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707502357932) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Expr (:at 1707502357932) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707502357932) (:by |rJG4IHzWf) (:text |get)
|b $ %{} :Leaf (:at 1707502357932) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Leaf (:at 1707502357932) (:by |rJG4IHzWf) (:text |:kind)
|h $ %{} :Leaf (:at 1707502367647) (:by |rJG4IHzWf) (:text |:import)
|calcit-literal? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1707549144593) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707549146577) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1707549144593) (:by |rJG4IHzWf) (:text |calcit-literal?)
|h $ %{} :Expr (:at 1707549148484) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707549148484) (:by |rJG4IHzWf) (:text |x)
|l $ %{} :Expr (:at 1707549360303) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707549360843) (:by |rJG4IHzWf) (:text |let)
|T $ %{} :Expr (:at 1707549361278) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1707549353227) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707549359877) (:by |rJG4IHzWf) (:text |ret)
|T $ %{} :Expr (:at 1707549312887) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707549313969) (:by |rJG4IHzWf) (:text |or)
|L $ %{} :Expr (:at 1707549314430) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707549317811) (:by |rJG4IHzWf) (:text |number?)
|b $ %{} :Leaf (:at 1707549318160) (:by |rJG4IHzWf) (:text |x)
|P $ %{} :Expr (:at 1707549314430) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707549322723) (:by |rJG4IHzWf) (:text |string?)
|b $ %{} :Leaf (:at 1707549318160) (:by |rJG4IHzWf) (:text |x)
|R $ %{} :Expr (:at 1707549314430) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707549325908) (:by |rJG4IHzWf) (:text |bool?)
|b $ %{} :Leaf (:at 1707549318160) (:by |rJG4IHzWf) (:text |x)
|T $ %{} :Expr (:at 1707549148484) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707549148484) (:by |rJG4IHzWf) (:text |and)
|b $ %{} :Expr (:at 1707549148484) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707549148484) (:by |rJG4IHzWf) (:text |map?)
|b $ %{} :Leaf (:at 1707549148484) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Expr (:at 1707549148484) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707549159091) (:by |rJG4IHzWf) (:text |includes?)
|b $ %{} :Expr (:at 1707549159829) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707549161691) (:by |rJG4IHzWf) (:text |#{})
|T $ %{} :Leaf (:at 1707549148484) (:by |rJG4IHzWf) (:text |:symbol)
|b $ %{} :Leaf (:at 1707549164757) (:by |rJG4IHzWf) (:text |:number)
|h $ %{} :Leaf (:at 1707549168256) (:by |rJG4IHzWf) (:text |:tag)
|l $ %{} :Leaf (:at 1707549169943) (:by |rJG4IHzWf) (:text |:proc)
|o $ %{} :Leaf (:at 1707549171525) (:by |rJG4IHzWf) (:text |:syntax)
|q $ %{} :Leaf (:at 1707549176287) (:by |rJG4IHzWf) (:text |:local)
|s $ %{} :Leaf (:at 1707549179582) (:by |rJG4IHzWf) (:text |:registered)
|h $ %{} :Expr (:at 1707549148484) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707549148484) (:by |rJG4IHzWf) (:text |get)
|b $ %{} :Leaf (:at 1707549148484) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Leaf (:at 1707549148484) (:by |rJG4IHzWf) (:text |:kind)
|b $ %{} :Expr (:at 1707549362155) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707549465047) (:by |rJG4IHzWf) (:text |;)
|T $ %{} :Leaf (:at 1707549362949) (:by |rJG4IHzWf) (:text |println)
|b $ %{} :Leaf (:at 1707549369203) (:by |rJG4IHzWf) (:text "|\"DETECTHING:")
|h $ %{} :Leaf (:at 1707549369772) (:by |rJG4IHzWf) (:text |x)
|l $ %{} :Leaf (:at 1707549370725) (:by |rJG4IHzWf) (:text |ret)
|h $ %{} :Leaf (:at 1707549371724) (:by |rJG4IHzWf) (:text |ret)
|calcit-local? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1707507353512) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507353512) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1707507353512) (:by |rJG4IHzWf) (:text |calcit-local?)
|h $ %{} :Expr (:at 1707507354708) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507354708) (:by |rJG4IHzWf) (:text |x)
|l $ %{} :Expr (:at 1707507354708) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507354708) (:by |rJG4IHzWf) (:text |and)
|b $ %{} :Expr (:at 1707507354708) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507354708) (:by |rJG4IHzWf) (:text |map?)
|b $ %{} :Leaf (:at 1707507354708) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Expr (:at 1707507354708) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507354708) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Leaf (:at 1707507363338) (:by |rJG4IHzWf) (:text |:local)
|h $ %{} :Expr (:at 1707507354708) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507354708) (:by |rJG4IHzWf) (:text |get)
|b $ %{} :Leaf (:at 1707507354708) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Leaf (:at 1707507354708) (:by |rJG4IHzWf) (:text |:kind)
|calcit-macro? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1693645169729) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645170553) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1693645169729) (:by |rJG4IHzWf) (:text |calcit-macro?)
|h $ %{} :Expr (:at 1693645169729) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645171662) (:by |rJG4IHzWf) (:text |x)
|l $ %{} :Expr (:at 1693645172531) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645172531) (:by |rJG4IHzWf) (:text |and)
|b $ %{} :Expr (:at 1693645172531) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645172531) (:by |rJG4IHzWf) (:text |map?)
|b $ %{} :Leaf (:at 1693645172531) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Expr (:at 1693645172531) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645172531) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Leaf (:at 1693645176476) (:by |rJG4IHzWf) (:text |:macro)
|h $ %{} :Expr (:at 1693645172531) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645172531) (:by |rJG4IHzWf) (:text |get)
|b $ %{} :Leaf (:at 1693645172531) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Leaf (:at 1693645172531) (:by |rJG4IHzWf) (:text |:kind)
|calcit-method? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1693645313281) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645313281) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1693645313281) (:by |rJG4IHzWf) (:text |calcit-method?)
|h $ %{} :Expr (:at 1693645313281) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645317876) (:by |rJG4IHzWf) (:text |x)
|l $ %{} :Expr (:at 1693645315461) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645315461) (:by |rJG4IHzWf) (:text |and)
|b $ %{} :Expr (:at 1693645315461) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645315461) (:by |rJG4IHzWf) (:text |map?)
|b $ %{} :Leaf (:at 1693645315461) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Expr (:at 1693645315461) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645315461) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Expr (:at 1693645315461) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645315461) (:by |rJG4IHzWf) (:text |get)
|b $ %{} :Leaf (:at 1693645315461) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Leaf (:at 1693645315461) (:by |rJG4IHzWf) (:text |:kind)
|h $ %{} :Leaf (:at 1693645319858) (:by |rJG4IHzWf) (:text |:method)
|calcit-proc? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1612593717120) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612593717120) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1612593717120) (:by |rJG4IHzWf) (:text |calcit-proc?)
|r $ %{} :Expr (:at 1612593717120) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612593733091) (:by |rJG4IHzWf) (:text |x)
|v $ %{} :Expr (:at 1612593721762) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612593721762) (:by |rJG4IHzWf) (:text |and)
|j $ %{} :Expr (:at 1612593721762) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612593721762) (:by |rJG4IHzWf) (:text |map?)
|j $ %{} :Leaf (:at 1612593721762) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Expr (:at 1612593721762) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612593721762) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1635965569966) (:by |rJG4IHzWf) (:text |:proc)
|r $ %{} :Expr (:at 1612593721762) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612593721762) (:by |rJG4IHzWf) (:text |get)
|j $ %{} :Leaf (:at 1612593721762) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Leaf (:at 1635963907993) (:by |rJG4IHzWf) (:text |:kind)
|calcit-raw-code? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1707592418205) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707592418205) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1707592418205) (:by |rJG4IHzWf) (:text |calcit-raw-code?)
|h $ %{} :Expr (:at 1707592418205) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707592420168) (:by |rJG4IHzWf) (:text |x)
|l $ %{} :Expr (:at 1707592420810) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707592420810) (:by |rJG4IHzWf) (:text |and)
|b $ %{} :Expr (:at 1707592420810) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707592420810) (:by |rJG4IHzWf) (:text |map?)
|b $ %{} :Leaf (:at 1707592420810) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Expr (:at 1707592420810) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707592420810) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Expr (:at 1707592420810) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707592420810) (:by |rJG4IHzWf) (:text |get)
|b $ %{} :Leaf (:at 1707592420810) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Leaf (:at 1707592420810) (:by |rJG4IHzWf) (:text |:kind)
|h $ %{} :Leaf (:at 1707592423653) (:by |rJG4IHzWf) (:text |:raw-code)
|calcit-registered? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1707507628982) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507628982) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1707507628982) (:by |rJG4IHzWf) (:text |calcit-registered?)
|h $ %{} :Expr (:at 1707507628982) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507632339) (:by |rJG4IHzWf) (:text |x)
|l $ %{} :Expr (:at 1707507630627) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507630627) (:by |rJG4IHzWf) (:text |and)
|b $ %{} :Expr (:at 1707507630627) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507630627) (:by |rJG4IHzWf) (:text |map?)
|b $ %{} :Leaf (:at 1707507630627) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Expr (:at 1707507630627) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507630627) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Leaf (:at 1707507688745) (:by |rJG4IHzWf) (:text |:registered)
|h $ %{} :Expr (:at 1707507630627) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507630627) (:by |rJG4IHzWf) (:text |get)
|b $ %{} :Leaf (:at 1707507630627) (:by |rJG4IHzWf) (:text |x)
|h $ %{} :Leaf (:at 1707507683511) (:by |rJG4IHzWf) (:text |:kind)
|calcit-symbol? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1612339921111) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339921111) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1612339921111) (:by |rJG4IHzWf) (:text |calcit-symbol?)
|r $ %{} :Expr (:at 1612339921111) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339922272) (:by |rJG4IHzWf) (:text |x)
|v $ %{} :Expr (:at 1612339922686) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339923886) (:by |rJG4IHzWf) (:text |and)
|j $ %{} :Expr (:at 1612339924084) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339924978) (:by |rJG4IHzWf) (:text |map?)
|j $ %{} :Leaf (:at 1612339925361) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Expr (:at 1612339925989) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339926701) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1635963933947) (:by |rJG4IHzWf) (:text |:symbol)
|r $ %{} :Expr (:at 1612339930856) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339931493) (:by |rJG4IHzWf) (:text |get)
|j $ %{} :Leaf (:at 1612339931851) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Leaf (:at 1635963912414) (:by |rJG4IHzWf) (:text |:kind)
|calcit-syntax? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1612339209572) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339209572) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1619784556059) (:by |rJG4IHzWf) (:text |calcit-syntax?)
|r $ %{} :Expr (:at 1612339209572) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339212108) (:by |rJG4IHzWf) (:text |x)
|v $ %{} :Expr (:at 1612339212637) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339213781) (:by |rJG4IHzWf) (:text |and)
|j $ %{} :Expr (:at 1612339214052) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339214908) (:by |rJG4IHzWf) (:text |map?)
|j $ %{} :Leaf (:at 1619784726344) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Expr (:at 1612339216226) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339217591) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Expr (:at 1612339227872) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339228514) (:by |rJG4IHzWf) (:text |get)
|j $ %{} :Leaf (:at 1612339229480) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Leaf (:at 1635963901166) (:by |rJG4IHzWf) (:text |:kind)
|r $ %{} :Leaf (:at 1635965585605) (:by |rJG4IHzWf) (:text |:syntax)
|calcit-tag? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1612340491756) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340491756) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1693646441093) (:by |rJG4IHzWf) (:text |calcit-tag?)
|r $ %{} :Expr (:at 1612340491756) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340493116) (:by |rJG4IHzWf) (:text |x)
|v $ %{} :Expr (:at 1612340494800) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340495570) (:by |rJG4IHzWf) (:text |and)
|j $ %{} :Expr (:at 1612340495815) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340497570) (:by |rJG4IHzWf) (:text |map?)
|j $ %{} :Leaf (:at 1612340497876) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Expr (:at 1612340498236) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340499074) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1693646450350) (:by |rJG4IHzWf) (:text "|\"tag")
|r $ %{} :Expr (:at 1612340502190) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340502725) (:by |rJG4IHzWf) (:text |get)
|j $ %{} :Leaf (:at 1612340503157) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Leaf (:at 1635963896793) (:by |rJG4IHzWf) (:text |:kind)
|comp-bookmarks $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1707628567621) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628569038) (:by |rJG4IHzWf) (:text |defcomp)
|b $ %{} :Leaf (:at 1707628567621) (:by |rJG4IHzWf) (:text |comp-bookmarks)
|h $ %{} :Expr (:at 1707628567621) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628567621) (:by |rJG4IHzWf) (:text |bookmarks)
|b $ %{} :Leaf (:at 1707628567621) (:by |rJG4IHzWf) (:text |pointer)
|l $ %{} :Expr (:at 1707628570109) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628571800) (:by |rJG4IHzWf) (:text |list->)
|b $ %{} :Expr (:at 1707628572453) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628572755) (:by |rJG4IHzWf) (:text |{})
|h $ %{} :Expr (:at 1707628573221) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628573773) (:by |rJG4IHzWf) (:text |->)
|b $ %{} :Leaf (:at 1707628577229) (:by |rJG4IHzWf) (:text |bookmarks)
|h $ %{} :Expr (:at 1707628577881) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628589327) (:by |rJG4IHzWf) (:text |map-indexed)
|b $ %{} :Expr (:at 1707628578522) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628578781) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1707628579001) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707628592856) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Leaf (:at 1707628579764) (:by |rJG4IHzWf) (:text |b)
|h $ %{} :Expr (:at 1707628593304) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628593594) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Leaf (:at 1707628594233) (:by |rJG4IHzWf) (:text |idx)
|h $ %{} :Expr (:at 1707628609879) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707628612126) (:by |rJG4IHzWf) (:text |tag-match)
|L $ %{} :Leaf (:at 1707628667190) (:by |rJG4IHzWf) (:text |b)
|T $ %{} :Expr (:at 1707628615011) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Expr (:at 1707628615655) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628617069) (:by |rJG4IHzWf) (:text |:bookmark)
|b $ %{} :Leaf (:at 1707628618372) (:by |rJG4IHzWf) (:text |ns)
|h $ %{} :Leaf (:at 1707628633318) (:by |rJG4IHzWf) (:text |definition)
|T $ %{} :Expr (:at 1707628594577) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628596197) (:by |rJG4IHzWf) (:text |div)
|b $ %{} :Expr (:at 1707628596403) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628596723) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1707628676481) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628678440) (:by |rJG4IHzWf) (:text |:on-click)
|b $ %{} :Expr (:at 1707628678706) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628678962) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1707628679169) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628679334) (:by |rJG4IHzWf) (:text |e)
|b $ %{} :Leaf (:at 1707628680072) (:by |rJG4IHzWf) (:text |d!)
|h $ %{} :Expr (:at 1707628680558) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628681065) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Expr (:at 1707628684547) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628686564) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1707628689569) (:by |rJG4IHzWf) (:text |:point-to)
|h $ %{} :Leaf (:at 1707628690546) (:by |rJG4IHzWf) (:text |idx)
|h $ %{} :Expr (:at 1707628730844) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628732651) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1707628788044) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707628790024) (:by |rJG4IHzWf) (:text |str-spaced)
|L $ %{} :Leaf (:at 1707628794089) (:by |rJG4IHzWf) (:text |style-bookmark)
|T $ %{} :Expr (:at 1707628732916) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628733186) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Expr (:at 1707628737658) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628733898) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Leaf (:at 1707628738231) (:by |rJG4IHzWf) (:text |pointer)
|h $ %{} :Leaf (:at 1707628739838) (:by |rJG4IHzWf) (:text |idx)
|h $ %{} :Leaf (:at 1707628749732) (:by |rJG4IHzWf) (:text |style-bookmark-selected)
|h $ %{} :Expr (:at 1707628656727) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628657117) (:by |rJG4IHzWf) (:text |<>)
|b $ %{} :Expr (:at 1707628659593) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707628660743) (:by |rJG4IHzWf) (:text |str)
|T $ %{} :Leaf (:at 1707628658205) (:by |rJG4IHzWf) (:text |ns)
|b $ %{} :Leaf (:at 1707628661638) (:by |rJG4IHzWf) (:text "|\"/")
|h $ %{} :Leaf (:at 1707628663495) (:by |rJG4IHzWf) (:text |definition)
|l $ %{} :Expr (:at 1707629103740) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707629147914) (:by |rJG4IHzWf) (:text |comp-close)
|b $ %{} :Expr (:at 1707629148803) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707629149168) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1707629149484) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707629151802) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1707629155469) (:by |rJG4IHzWf) (:text |style-close)
|h $ %{} :Expr (:at 1707629203946) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707629205358) (:by |rJG4IHzWf) (:text |:on-click)
|b $ %{} :Expr (:at 1707629205666) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707629205978) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1707629206251) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707629206408) (:by |rJG4IHzWf) (:text |e)
|b $ %{} :Leaf (:at 1707629207392) (:by |rJG4IHzWf) (:text |d!)
|h $ %{} :Expr (:at 1707629207881) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707629212312) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Expr (:at 1707629213239) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707629213732) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1707629222731) (:by |rJG4IHzWf) (:text |:remove-bookmark)
|h $ %{} :Leaf (:at 1707629224473) (:by |rJG4IHzWf) (:text |idx)
|b $ %{} :Expr (:at 1707628634958) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628635364) (:by |rJG4IHzWf) (:text |_)
|b $ %{} :Expr (:at 1707628637971) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628639162) (:by |rJG4IHzWf) (:text |eprintln)
|b $ %{} :Leaf (:at 1707628645841) (:by |rJG4IHzWf) (:text "|\"unknown bookmark")
|h $ %{} :Leaf (:at 1707628668803) (:by |rJG4IHzWf) (:text |b)
|comp-code $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1612339082358) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339085726) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1612339082358) (:by |rJG4IHzWf) (:text |comp-code)
|r $ %{} :Expr (:at 1612339082358) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339089536) (:by |rJG4IHzWf) (:text |expr)
|j $ %{} :Leaf (:at 1612340600473) (:by |rJG4IHzWf) (:text |last?)
|v $ %{} :Expr (:at 1612339900354) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1612339901819) (:by |rJG4IHzWf) (:text |cond)
|H $ %{} :Expr (:at 1635964100450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1635964100450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693643842673) (:by |rJG4IHzWf) (:text |tag?)
|j $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text |expr)
|j $ %{} :Expr (:at 1635964100450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Expr (:at 1635964100450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text |str)
|j $ %{} :Leaf (:at 1635964252133) (:by |rJG4IHzWf) (:text |expr)
|n $ %{} :Leaf (:at 1693646434274) (:by |rJG4IHzWf) (:text |css-code-tag)
|J $ %{} :Expr (:at 1635964100450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1635964100450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693646444229) (:by |rJG4IHzWf) (:text |calcit-tag?)
|j $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text |expr)
|j $ %{} :Expr (:at 1635964100450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Expr (:at 1635964100450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text |str)
|j $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text "|\":")
|r $ %{} :Expr (:at 1635964100450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text |get)
|j $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text |expr)
|r $ %{} :Leaf (:at 1635964100450) (:by |rJG4IHzWf) (:text |:val)
|n $ %{} :Leaf (:at 1693646433168) (:by |rJG4IHzWf) (:text |css-code-tag)
|L $ %{} :Expr (:at 1612339902115) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1612339902962) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339905179) (:by |rJG4IHzWf) (:text |list?)
|j $ %{} :Leaf (:at 1612339906843) (:by |rJG4IHzWf) (:text |expr)
|j $ %{} :Expr (:at 1612339955772) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339956194) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1612339956901) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339957216) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1612343424752) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612343426949) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Expr (:at 1666717516203) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1666717518374) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1693644720001) (:by |rJG4IHzWf) (:text |css-expr-area)
|b $ %{} :Leaf (:at 1666717525639) (:by |rJG4IHzWf) (:text |css-code-expr)
|j $ %{} :Expr (:at 1707592820429) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340022363) (:by |rJG4IHzWf) (:text |:style)
|b $ %{} :Expr (:at 1666717512961) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1666717514699) (:by |rJG4IHzWf) (:text |merge)
|T $ %{} :Expr (:at 1612340213556) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340213967) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1612340214626) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340224068) (:by |rJG4IHzWf) (:text |and)
|j $ %{} :Expr (:at 1612340224269) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340227273) (:by |rJG4IHzWf) (:text |<=)
|b $ %{} :Expr (:at 1612340227936) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340229526) (:by |rJG4IHzWf) (:text |count)
|j $ %{} :Leaf (:at 1612340230261) (:by |rJG4IHzWf) (:text |expr)
|j $ %{} :Leaf (:at 1707549095439) (:by |rJG4IHzWf) (:text |3)
|r $ %{} :Expr (:at 1707592680728) (:by |rJG4IHzWf)
:data $ {}
|h $ %{} :Leaf (:at 1707592680728) (:by |rJG4IHzWf) (:text |every?)
|l $ %{} :Leaf (:at 1707592680728) (:by |rJG4IHzWf) (:text |expr)
|o $ %{} :Leaf (:at 1707592680728) (:by |rJG4IHzWf) (:text |calcit-literal?)
|r $ %{} :Expr (:at 1612340239413) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340239803) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1612340240294) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340242381) (:by |rJG4IHzWf) (:text |:display)
|j $ %{} :Leaf (:at 1707548847895) (:by |rJG4IHzWf) (:text |:inline-flex)
|b $ %{} :Expr (:at 1666717536072) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666717536072) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Leaf (:at 1666717536072) (:by |rJG4IHzWf) (:text |last?)
|h $ %{} :Expr (:at 1666717536072) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666717536072) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1666717536072) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666717536072) (:by |rJG4IHzWf) (:text |:display)
|b $ %{} :Leaf (:at 1707548841011) (:by |rJG4IHzWf) (:text |:inline-block)
|r $ %{} :Leaf (:at 1612339959197) (:by |rJG4IHzWf) (:text |&)
|v $ %{} :Expr (:at 1612340652530) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1612340653143) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1612340653731) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1612340654339) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340654968) (:by |rJG4IHzWf) (:text |size)
|j $ %{} :Expr (:at 1612340655756) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340657351) (:by |rJG4IHzWf) (:text |count)
|j $ %{} :Leaf (:at 1612340658719) (:by |rJG4IHzWf) (:text |expr)
|T $ %{} :Expr (:at 1612339960389) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340636008) (:by |rJG4IHzWf) (:text |map-indexed)
|b $ %{} :Leaf (:at 1619784463835) (:by |rJG4IHzWf) (:text |expr)
|j $ %{} :Expr (:at 1612340626319) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1612340627252) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1612340628827) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1612340638338) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Leaf (:at 1612340630006) (:by |rJG4IHzWf) (:text |x)
|T $ %{} :Expr (:at 1612340631909) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339986287) (:by |rJG4IHzWf) (:text |comp-code)
|j $ %{} :Leaf (:at 1612340632453) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Expr (:at 1612340643908) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340644173) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Expr (:at 1612340645577) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612340645346) (:by |rJG4IHzWf) (:text |inc)
|j $ %{} :Leaf (:at 1612340648759) (:by |rJG4IHzWf) (:text |idx)
|r $ %{} :Leaf (:at 1612340650806) (:by |rJG4IHzWf) (:text |size)
|N $ %{} :Expr (:at 1707502332779) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1707502334551) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707502340917) (:by |rJG4IHzWf) (:text |calcit-import?)
|b $ %{} :Leaf (:at 1707502341790) (:by |rJG4IHzWf) (:text |expr)
|b $ %{} :Expr (:at 1707502343211) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707502346164) (:by |rJG4IHzWf) (:text |comp-import)
|b $ %{} :Leaf (:at 1707502347313) (:by |rJG4IHzWf) (:text |expr)
|O $ %{} :Expr (:at 1707507298181) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1707507300998) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507330800) (:by |rJG4IHzWf) (:text |calcit-local?)
|b $ %{} :Leaf (:at 1707507331897) (:by |rJG4IHzWf) (:text |expr)
|b $ %{} :Expr (:at 1707507332655) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507336856) (:by |rJG4IHzWf) (:text |comp-local)
|b $ %{} :Leaf (:at 1707507338458) (:by |rJG4IHzWf) (:text |expr)
|OT $ %{} :Expr (:at 1707507298181) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1707507300998) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507622304) (:by |rJG4IHzWf) (:text |calcit-registered?)
|b $ %{} :Leaf (:at 1707507331897) (:by |rJG4IHzWf) (:text |expr)
|b $ %{} :Expr (:at 1707507332655) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707507645683) (:by |rJG4IHzWf) (:text |comp-registered)
|b $ %{} :Leaf (:at 1707507338458) (:by |rJG4IHzWf) (:text |expr)
|P $ %{} :Expr (:at 1612339908640) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1612339909097) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339915687) (:by |rJG4IHzWf) (:text |calcit-symbol?)
|j $ %{} :Leaf (:at 1612339916896) (:by |rJG4IHzWf) (:text |expr)
|j $ %{} :Expr (:at 1612342155389) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612342157803) (:by |rJG4IHzWf) (:text |comp-symbol)
|j $ %{} :Leaf (:at 1612342159094) (:by |rJG4IHzWf) (:text |expr)
|Q $ %{} :Expr (:at 1612593702666) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1612593703715) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612593706712) (:by |rJG4IHzWf) (:text |calcit-proc?)
|j $ %{} :Leaf (:at 1612593708020) (:by |rJG4IHzWf) (:text |expr)
|b $ %{} :Expr (:at 1707548363703) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707548365493) (:by |rJG4IHzWf) (:text |comp-proc)
|b $ %{} :Leaf (:at 1707548367180) (:by |rJG4IHzWf) (:text |expr)
|QT $ %{} :Expr (:at 1612593702666) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1612593703715) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619784527481) (:by |rJG4IHzWf) (:text |calcit-fn?)
|j $ %{} :Leaf (:at 1612593708020) (:by |rJG4IHzWf) (:text |expr)
|j $ %{} :Expr (:at 1612593835416) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612593835416) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Expr (:at 1619784704805) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619784704805) (:by |rJG4IHzWf) (:text |get)
|j $ %{} :Leaf (:at 1619784704805) (:by |rJG4IHzWf) (:text |expr)
|r $ %{} :Leaf (:at 1635963554395) (:by |rJG4IHzWf) (:text |:name)
|n $ %{} :Leaf (:at 1666717563131) (:by |rJG4IHzWf) (:text |css-code-fn)
|Qj $ %{} :Expr (:at 1612593702666) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1612593703715) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619784544651) (:by |rJG4IHzWf) (:text |calcit-syntax?)
|j $ %{} :Leaf (:at 1612593708020) (:by |rJG4IHzWf) (:text |expr)
|b $ %{} :Expr (:at 1707548617556) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707548619942) (:by |rJG4IHzWf) (:text |comp-syntax)
|b $ %{} :Leaf (:at 1707548621297) (:by |rJG4IHzWf) (:text |expr)
|R $ %{} :Expr (:at 1612593702666) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1612593703715) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693645303509) (:by |rJG4IHzWf) (:text |calcit-method?)
|j $ %{} :Leaf (:at 1612593708020) (:by |rJG4IHzWf) (:text |expr)
|b $ %{} :Expr (:at 1707548714695) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707548716129) (:by |rJG4IHzWf) (:text |comp-method)
|b $ %{} :Leaf (:at 1707548716983) (:by |rJG4IHzWf) (:text |expr)
|S $ %{} :Expr (:at 1707592398536) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1707592399653) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707592404511) (:by |rJG4IHzWf) (:text |calcit-raw-code?)
|b $ %{} :Leaf (:at 1707592406703) (:by |rJG4IHzWf) (:text |expr)
|b $ %{} :Expr (:at 1707592407506) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707592411828) (:by |rJG4IHzWf) (:text |comp-raw-code)
|b $ %{} :Leaf (:at 1707592412658) (:by |rJG4IHzWf) (:text |expr)
|T $ %{} :Expr (:at 1612339939185) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1612339940423) (:by |rJG4IHzWf) (:text |true)
|T $ %{} :Expr (:at 1635965834132) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1635965834809) (:by |rJG4IHzWf) (:text |pre)
|L $ %{} :Expr (:at 1635965835309) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1635965835710) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1635965844448) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666717594920) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1666717599402) (:by |rJG4IHzWf) (:text |css-code-default)
|T $ %{} :Expr (:at 1612339944437) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612339944437) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Expr (:at 1612340752301) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1693643854819) (:by |rJG4IHzWf) (:text |to-lispy-string)
|T $ %{} :Leaf (:at 1612339944437) (:by |rJG4IHzWf) (:text |expr)
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1507461830530) (:by |root) (:text |reel)
|v $ %{} :Expr (:at 1507461832154) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1507461833421) (:by |root) (:text |let)
|L $ %{} :Expr (:at 1507461834351) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1507461834650) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461835738) (:by |root) (:text |store)
|j $ %{} :Expr (:at 1507461836110) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461837276) (:by |root) (:text |:store)
|j $ %{} :Leaf (:at 1507461838285) (:by |root) (:text |reel)
|j $ %{} :Expr (:at 1509727104820) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727105928) (:by |root) (:text |states)
|j $ %{} :Expr (:at 1509727106316) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727107223) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1509727108033) (:by |root) (:text |store)
|n $ %{} :Expr (:at 1584780921790) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780923771) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Expr (:at 1584780991636) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1610793422595) (:by |rJG4IHzWf) (:text |either)
|T $ %{} :Expr (:at 1584780923944) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780925829) (:by |rJG4IHzWf) (:text |:cursor)
|j $ %{} :Leaf (:at 1584780926681) (:by |rJG4IHzWf) (:text |states)
|j $ %{} :Expr (:at 1584780993270) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780994497) (:by |rJG4IHzWf) (:text |[])
|T $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1666717233951) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1666717236906) (:by |rJG4IHzWf) (:text |str-spaced)
|j $ %{} :Leaf (:at 1666717258562) (:by |rJG4IHzWf) (:text |css/global)
|n $ %{} :Leaf (:at 1666717259494) (:by |rJG4IHzWf) (:text |css/fullscreen)
|t $ %{} :Leaf (:at 1707626768491) (:by |rJG4IHzWf) (:text |css/column)
|v $ %{} :Expr (:at 1612334444489) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707501797032) (:by |rJG4IHzWf) (:text |memof1-call)
|T $ %{} :Leaf (:at 1612334422846) (:by |rJG4IHzWf) (:text |comp-header)
|w $ %{} :Expr (:at 1711478850427) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1711478853191) (:by |rJG4IHzWf) (:text |if-let)
|L $ %{} :Expr (:at 1711478855246) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1711478855246) (:by |rJG4IHzWf) (:text |pointer)
|b $ %{} :Expr (:at 1711478855246) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1711478855246) (:by |rJG4IHzWf) (:text |:pointer)
|b $ %{} :Leaf (:at 1711478855246) (:by |rJG4IHzWf) (:text |store)
|T $ %{} :Expr (:at 1707627592679) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707627594397) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1707627594665) (:by |rJG4IHzWf)
:data $ {}
|b $ %{} :Expr (:at 1707627643629) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628295985) (:by |rJG4IHzWf) (:text |bookmarks)
|b $ %{} :Expr (:at 1707628296321) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628297873) (:by |rJG4IHzWf) (:text |:bookmarks)
|b $ %{} :Leaf (:at 1707628298597) (:by |rJG4IHzWf) (:text |store)
|h $ %{} :Expr (:at 1707628330822) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628332822) (:by |rJG4IHzWf) (:text |bookmark)
|b $ %{} :Expr (:at 1707628334487) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628334933) (:by |rJG4IHzWf) (:text |get)
|b $ %{} :Leaf (:at 1707628336603) (:by |rJG4IHzWf) (:text |bookmarks)
|h $ %{} :Leaf (:at 1707628338087) (:by |rJG4IHzWf) (:text |pointer)
|T $ %{} :Expr (:at 1707628342413) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707628388521) (:by |rJG4IHzWf) (:text |tag-match)
|L $ %{} :Leaf (:at 1707628394143) (:by |rJG4IHzWf) (:text |bookmark)
|T $ %{} :Expr (:at 1707628394773) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Expr (:at 1707628396906) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628399499) (:by |rJG4IHzWf) (:text |:bookmark)
|b $ %{} :Leaf (:at 1707628401553) (:by |rJG4IHzWf) (:text |ns)
|h $ %{} :Leaf (:at 1707628430043) (:by |rJG4IHzWf) (:text |definition)
|T $ %{} :Expr (:at 1707628464273) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707628465262) (:by |rJG4IHzWf) (:text |do)
|L $ %{} :Expr (:at 1707628465825) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628467877) (:by |rJG4IHzWf) (:text |println)
|b $ %{} :Leaf (:at 1707628472042) (:by |rJG4IHzWf) (:text |ns)
|h $ %{} :Leaf (:at 1707628473568) (:by |rJG4IHzWf) (:text |definition)
|T $ %{} :Expr (:at 1707626783101) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707626783915) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1707626784232) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626785689) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1707626786012) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626789399) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1707626804900) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707626808503) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1707626790676) (:by |rJG4IHzWf) (:text |css/row)
|b $ %{} :Leaf (:at 1707626812480) (:by |rJG4IHzWf) (:text |css/expand)
|T $ %{} :Expr (:at 1707627395288) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707627398500) (:by |rJG4IHzWf) (:text |comp-file-entry)
|b $ %{} :Expr (:at 1707627403075) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707627404010) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1707627402010) (:by |rJG4IHzWf) (:text |states)
|b $ %{} :Leaf (:at 1707627406590) (:by |rJG4IHzWf) (:text |:file-entry)
|h $ %{} :Expr (:at 1707627443420) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707627445659) (:by |rJG4IHzWf) (:text |get-in)
|b $ %{} :Leaf (:at 1707627446551) (:by |rJG4IHzWf) (:text |store)
|h $ %{} :Expr (:at 1707627447831) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707627448012) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Leaf (:at 1707627459114) (:by |rJG4IHzWf) (:text |:ir)
|h $ %{} :Leaf (:at 1707627453640) (:by |rJG4IHzWf) (:text |:files)
|X $ %{} :Expr (:at 1707628556536) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628559860) (:by |rJG4IHzWf) (:text |comp-bookmarks)
|b $ %{} :Leaf (:at 1707628564367) (:by |rJG4IHzWf) (:text |bookmarks)
|h $ %{} :Leaf (:at 1707628566135) (:by |rJG4IHzWf) (:text |pointer)
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |div)
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |css/expand)
|h $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |:style)
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |:padding-bottom)
|b $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |120)
|h $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |let)
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |declaration)
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |get-in)
|a $ %{} :Leaf (:at 1707628539607) (:by |rJG4IHzWf) (:text |store)
|h $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |[])
|X $ %{} :Leaf (:at 1707628543054) (:by |rJG4IHzWf) (:text |:ir)
|Z $ %{} :Leaf (:at 1707628544010) (:by |rJG4IHzWf) (:text |:files)
|a $ %{} :Leaf (:at 1707628544860) (:by |rJG4IHzWf) (:text |ns)
|b $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |:defs)
|h $ %{} :Leaf (:at 1707628547536) (:by |rJG4IHzWf) (:text |definition)
|h $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |calcit-fn?)
|b $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |declaration)
|h $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |comp-fn)
|b $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |declaration)
|l $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |calcit-macro?)
|b $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |declaration)
|h $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |comp-macro)
|b $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |declaration)
|l $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |div)
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |css-pad8)
|h $ %{} :Expr (:at 1707626832148) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |comp-code)
|b $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |declaration)
|h $ %{} :Leaf (:at 1707626832148) (:by |rJG4IHzWf) (:text |false)
|b $ %{} :Expr (:at 1707628404783) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628405698) (:by |rJG4IHzWf) (:text |_)
|b $ %{} :Expr (:at 1707628406910) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707628410154) (:by |rJG4IHzWf) (:text |eprintln)
|b $ %{} :Leaf (:at 1707628417540) (:by |rJG4IHzWf) (:text "|\"unknown bookmark data")
|h $ %{} :Leaf (:at 1707628420616) (:by |rJG4IHzWf) (:text |bookmark)
|wT $ %{} :Expr (:at 1615448120603) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1615448123650) (:by |rJG4IHzWf) (:text |comp-preview)
|j $ %{} :Expr (:at 1615448123895) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1615448124968) (:by |rJG4IHzWf) (:text |:preview)
|j $ %{} :Leaf (:at 1615448126588) (:by |rJG4IHzWf) (:text |store)
|x $ %{} :Expr (:at 1521954055333) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1521954057510) (:by |root) (:text |when)
|L $ %{} :Leaf (:at 1521954059290) (:by |root) (:text |dev?)
|T $ %{} :Expr (:at 1507461809635) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461815046) (:by |root) (:text |comp-reel)
|b $ %{} :Expr (:at 1584780610581) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1584780611347) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1509727101297) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1584780613268) (:by |rJG4IHzWf) (:text |:reel)
|j $ %{} :Leaf (:at 1507461840459) (:by |root) (:text |reel)
|r $ %{} :Expr (:at 1507461840980) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461841342) (:by |root) (:text |{})
|y $ %{} :Expr (:at 1707627218583) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707627219105) (:by |rJG4IHzWf) (:text |when)
|b $ %{} :Leaf (:at 1707627220404) (:by |rJG4IHzWf) (:text |dev?)
|h $ %{} :Expr (:at 1707627221211) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707627223396) (:by |rJG4IHzWf) (:text |comp-inspect)
|b $ %{} :Leaf (:at 1707627226156) (:by |rJG4IHzWf) (:text "|\"Store")
|h $ %{} :Leaf (:at 1707627227327) (:by |rJG4IHzWf) (:text |store)
|l $ %{} :Expr (:at 1707627244859) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707627245356) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1707627245644) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1707627246664) (:by |rJG4IHzWf) (:text |:bottom)
|b $ %{} :Leaf (:at 1707627267215) (:by |rJG4IHzWf) (:text |0)
|comp-file $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1612336817394) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612336819195) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1612336817394) (:by |rJG4IHzWf) (:text |comp-file)
|n $ %{} :Expr (:at 1612336819974) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1707627113896) (:by |rJG4IHzWf) (:text |ns)