generated from mvc-works/calcit-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
5446 lines (5445 loc) · 426 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/ |lilac/ |memof/ |respo-ui.calcit/ |respo-markdown.calcit/ |reel.calcit/ |alerts.calcit/ |respo-feather.calcit/
:entries $ {}
:files $ {}
|app.comp.container $ %{} :FileEntry
:defs $ {}
|azure-key $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1650430372150) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650430372150) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1650430372150) (:by |rJG4IHzWf) (:text |azure-key)
|h $ %{} :Expr (:at 1650430423598) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650430424907) (:by |rJG4IHzWf) (:text |or)
|T $ %{} :Expr (:at 1650430373474) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650430428752) (:by |rJG4IHzWf) (:text |get-env)
|b $ %{} :Leaf (:at 1650430373474) (:by |rJG4IHzWf) (:text "|\"azure-key")
|b $ %{} :Expr (:at 1650430373474) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650430378849) (:by |rJG4IHzWf) (:text |js/localStorage.getItem)
|b $ %{} :Leaf (:at 1650430373474) (:by |rJG4IHzWf) (:text "|\"azure-key")
|comp-comment-list $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1581229573261) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581229575162) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1581229573261) (:by |rJG4IHzWf) (:text |comp-comment-list)
|r $ %{} :Expr (:at 1581229573261) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581229573261) (:by |rJG4IHzWf) (:text |router)
|j $ %{} :Leaf (:at 1581229573261) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Leaf (:at 1641649680290) (:by |rJG4IHzWf) (:text |highlighted)
|v $ %{} :Expr (:at 1581229725238) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581229726645) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1581229726973) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1581229727122) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581229738574) (:by |rJG4IHzWf) (:text |coord)
|j $ %{} :Expr (:at 1581229730106) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581229730690) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1581229731771) (:by |rJG4IHzWf) (:text |router)
|j $ %{} :Expr (:at 1581230121177) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581230124331) (:by |rJG4IHzWf) (:text |topic)
|j $ %{} :Expr (:at 1581230124844) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581230126945) (:by |rJG4IHzWf) (:text |get-in)
|j $ %{} :Leaf (:at 1581230128174) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Expr (:at 1581230128406) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581230128593) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1581230145658) (:by |rJG4IHzWf) (:text |:topics)
|r $ %{} :Expr (:at 1581230147203) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581230147907) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1581230148801) (:by |rJG4IHzWf) (:text |coord)
|T $ %{} :Expr (:at 1581233279266) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581233283563) (:by |rJG4IHzWf) (:text |list->)
|L $ %{} :Expr (:at 1581233284107) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581233284483) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1666549591172) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666549595457) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1666549597440) (:by |rJG4IHzWf) (:text |css/row)
|j $ %{} :Expr (:at 1581233641011) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581233642539) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1581233677062) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581233677511) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1581233677737) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581233679360) (:by |rJG4IHzWf) (:text |:height)
|j $ %{} :Leaf (:at 1581233680995) (:by |rJG4IHzWf) (:text "|\"100%")
|T $ %{} :Expr (:at 1581233286696) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1628854637915) (:by |rJG4IHzWf) (:text |->)
|L $ %{} :Leaf (:at 1581233299733) (:by |rJG4IHzWf) (:text |coord)
|T $ %{} :Expr (:at 1581233357824) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581233424110) (:by |rJG4IHzWf) (:text |map-indexed)
|T $ %{} :Expr (:at 1581233301968) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581233302543) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1581233306423) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581233426566) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Leaf (:at 1581233312925) (:by |rJG4IHzWf) (:text |parent-id)
|T $ %{} :Expr (:at 1581233345726) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581233348018) (:by |rJG4IHzWf) (:text |[])
|L $ %{} :Leaf (:at 1581233349840) (:by |rJG4IHzWf) (:text |parent-id)
|T $ %{} :Expr (:at 1581234083204) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581234085714) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1581234086113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1581234086263) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581234088269) (:by |rJG4IHzWf) (:text |kids)
|j $ %{} :Expr (:at 1581234225562) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581234228883) (:by |rJG4IHzWf) (:text |:kids)
|T $ %{} :Expr (:at 1581234160275) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581234161137) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1581234163810) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1628852813104) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Leaf (:at 1628852813792) (:by |rJG4IHzWf) (:text |0)
|j $ %{} :Leaf (:at 1581234166226) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Expr (:at 1581234233563) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |get-in)
|j $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Expr (:at 1581234233563) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |:topics)
|r $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |parent-id)
|j $ %{} :Expr (:at 1581234238526) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581234238526) (:by |rJG4IHzWf) (:text |get-in)
|j $ %{} :Leaf (:at 1581234246670) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Expr (:at 1581234238526) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581234238526) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1581234238526) (:by |rJG4IHzWf) (:text |:replies)
|r $ %{} :Leaf (:at 1581234238526) (:by |rJG4IHzWf) (:text |parent-id)
|T $ %{} :Expr (:at 1581233457588) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581233459051) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1581233459323) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581233459720) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1666547251596) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666547253303) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1666547272120) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1666547275766) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1666547256059) (:by |rJG4IHzWf) (:text |css/column)
|b $ %{} :Leaf (:at 1666547281936) (:by |rJG4IHzWf) (:text |css-comment-list)
|P $ %{} :Expr (:at 1581234113169) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581234114328) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1581234114951) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1628852816305) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Leaf (:at 1628852816689) (:by |rJG4IHzWf) (:text |0)
|j $ %{} :Leaf (:at 1581234117925) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Expr (:at 1581233488135) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581237240514) (:by |rJG4IHzWf) (:text |comp-topic-parent)
|j $ %{} :Expr (:at 1581234193402) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581234193402) (:by |rJG4IHzWf) (:text |get-in)
|j $ %{} :Leaf (:at 1581234193402) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Expr (:at 1581234193402) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581234193402) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1581234193402) (:by |rJG4IHzWf) (:text |:topics)
|r $ %{} :Leaf (:at 1581234202780) (:by |rJG4IHzWf) (:text |parent-id)
|j $ %{} :Expr (:at 1581234120191) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581236758249) (:by |rJG4IHzWf) (:text |comp-reply-parent)
|j $ %{} :Expr (:at 1581234205450) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581234208081) (:by |rJG4IHzWf) (:text |get-in)
|j $ %{} :Leaf (:at 1581234252927) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Expr (:at 1581234210978) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581234211457) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1581234215698) (:by |rJG4IHzWf) (:text |:replies)
|r $ %{} :Leaf (:at 1581234218562) (:by |rJG4IHzWf) (:text |parent-id)
|r $ %{} :Expr (:at 1587920827570) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587920828836) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1587920832014) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587920835430) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1587920872082) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587920872082) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Leaf (:at 1587920872082) (:by |rJG4IHzWf) (:text |:router)
|r $ %{} :Expr (:at 1587920872082) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587920872082) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1587920872082) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587920872082) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Expr (:at 1587920978821) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1628852851727) (:by |rJG4IHzWf) (:text |.slice)
|j $ %{} :Leaf (:at 1587920978821) (:by |rJG4IHzWf) (:text |coord)
|r $ %{} :Leaf (:at 1587920978821) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Leaf (:at 1587920978821) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Expr (:at 1581231915551) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581231918271) (:by |rJG4IHzWf) (:text |list->)
|j $ %{} :Expr (:at 1581231919289) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581231919875) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1666549614811) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666549616998) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1666549618624) (:by |rJG4IHzWf) (:text |css/expand)
|j $ %{} :Expr (:at 1581236707858) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581236708666) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1581236727899) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581236728396) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1581236725797) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581236725797) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1588437760476) (:by |rJG4IHzWf) (:text "|\"40px 4px 160px 4px")
|r $ %{} :Expr (:at 1581231920979) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1628854647778) (:by |rJG4IHzWf) (:text |->)
|f $ %{} :Leaf (:at 1581234093865) (:by |rJG4IHzWf) (:text |kids)
|l $ %{} :Expr (:at 1641647446540) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1641647448312) (:by |rJG4IHzWf) (:text |.to-list)
|r $ %{} :Expr (:at 1581231932680) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581231934162) (:by |rJG4IHzWf) (:text |map)
|j $ %{} :Expr (:at 1581231934535) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581231934811) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1581231935075) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581231938354) (:by |rJG4IHzWf) (:text |reply-id)
|r $ %{} :Expr (:at 1581231939231) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581231939691) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1581231941479) (:by |rJG4IHzWf) (:text |reply-id)
|r $ %{} :Expr (:at 1581231983040) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581231984585) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1581231984864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1581231985005) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581231985917) (:by |rJG4IHzWf) (:text |reply)
|j $ %{} :Expr (:at 1581231986661) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581231987538) (:by |rJG4IHzWf) (:text |get-in)
|j $ %{} :Leaf (:at 1581231990976) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Expr (:at 1581231991297) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581231991571) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1581231993418) (:by |rJG4IHzWf) (:text |:replies)
|r $ %{} :Leaf (:at 1581231995684) (:by |rJG4IHzWf) (:text |reply-id)
|b $ %{} :Expr (:at 1695485785412) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1695485785690) (:by |rJG4IHzWf) (:text |k)
|b $ %{} :Expr (:at 1695485786713) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1695485787211) (:by |rJG4IHzWf) (:text |str)
|b $ %{} :Leaf (:at 1695485792127) (:by |rJG4IHzWf) (:text |parent-id)
|e $ %{} :Leaf (:at 1695485801689) (:by |rJG4IHzWf) (:text "|\"+")
|h $ %{} :Leaf (:at 1695485793504) (:by |rJG4IHzWf) (:text |reply-id)
|T $ %{} :Expr (:at 1581232676170) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650960623199) (:by |rJG4IHzWf) (:text |memof1-call-by)
|L $ %{} :Leaf (:at 1695485804704) (:by |rJG4IHzWf) (:text |k)
|T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |comp-reply)
|j $ %{} :Leaf (:at 1581232677622) (:by |rJG4IHzWf) (:text |reply)
|p $ %{} :Expr (:at 1581254310378) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581254310378) (:by |rJG4IHzWf) (:text |contains?)
|j $ %{} :Expr (:at 1581254310378) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1628853017700) (:by |rJG4IHzWf) (:text |.to-set)
|j $ %{} :Leaf (:at 1581254310378) (:by |rJG4IHzWf) (:text |coord)
|r $ %{} :Leaf (:at 1581254310378) (:by |rJG4IHzWf) (:text |reply-id)
|t $ %{} :Expr (:at 1650953045238) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650953045990) (:by |rJG4IHzWf) (:text |if)
|T $ %{} :Expr (:at 1650953045013) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650953045013) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Expr (:at 1650953045013) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650953045013) (:by |rJG4IHzWf) (:text |first)
|b $ %{} :Leaf (:at 1650953045013) (:by |rJG4IHzWf) (:text |highlighted)
|h $ %{} :Leaf (:at 1650953045013) (:by |rJG4IHzWf) (:text |reply-id)
|b $ %{} :Expr (:at 1650953049328) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650953049996) (:by |rJG4IHzWf) (:text |last)
|b $ %{} :Leaf (:at 1650953051734) (:by |rJG4IHzWf) (:text |highlighted)
|h $ %{} :Leaf (:at 1650953054186) (:by |rJG4IHzWf) (:text |nil)
|v $ %{} :Leaf (:at 1650960924891) (:by |rJG4IHzWf) (:text |idx)
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |defcomp)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |comp-container)
|r $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |reel)
|j $ %{} :Leaf (:at 1581174566449) (:by |rJG4IHzWf) (:text |resource)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|D $ %{} :Leaf (:at nil) (:by nil) (:text |let)
|L $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |store)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |:store)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |reel)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |states)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |:states)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |store)
|r $ %{} :Expr (:at 1581229562614) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581229563586) (:by |rJG4IHzWf) (:text |router)
|j $ %{} :Expr (:at 1581229564113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581229566230) (:by |rJG4IHzWf) (:text |:router)
|j $ %{} :Leaf (:at 1581229569483) (:by |rJG4IHzWf) (:text |store)
|T $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |div)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |{})
|b $ %{} :Expr (:at 1666546894460) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666546896857) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1666546897267) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666546898902) (:by |rJG4IHzWf) (:text |str-spaced)
|b $ %{} :Leaf (:at 1666546903094) (:by |rJG4IHzWf) (:text |css/fullscreen)
|h $ %{} :Leaf (:at 1666546906111) (:by |rJG4IHzWf) (:text |css/global)
|l $ %{} :Leaf (:at 1666546908193) (:by |rJG4IHzWf) (:text |css/row)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |:style)
|j $ %{} :Expr (:at 1581175546725) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581175547086) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1581175549287) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581175553038) (:by |rJG4IHzWf) (:text |:overflow-x)
|j $ %{} :Leaf (:at 1581175554952) (:by |rJG4IHzWf) (:text |:auto)
|m $ %{} :Expr (:at 1581176234559) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |comp-topic-list)
|b $ %{} :Expr (:at 1587833021336) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1587833022319) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1581235770020) (:by |rJG4IHzWf) (:text |states)
|j $ %{} :Leaf (:at 1587833023088) (:by |rJG4IHzWf) (:text |:topics)
|j $ %{} :Leaf (:at 1581176237106) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Expr (:at 1588437320505) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588437320505) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Expr (:at 1588437320505) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588437320505) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1588437320505) (:by |rJG4IHzWf) (:text |router)
|n $ %{} :Expr (:at 1581699999985) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700001832) (:by |rJG4IHzWf) (:text |let)
|j $ %{} :Expr (:at 1581700002229) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1581700003310) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700004289) (:by |rJG4IHzWf) (:text |topic)
|j $ %{} :Expr (:at 1581700005477) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |get-in)
|j $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Expr (:at 1581700005477) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |:topics)
|r $ %{} :Expr (:at 1581700005477) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Expr (:at 1581700061905) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700061905) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1581700061905) (:by |rJG4IHzWf) (:text |router)
|r $ %{} :Expr (:at 1581700789445) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |comp-frame)
|j $ %{} :Leaf (:at 1581700791612) (:by |rJG4IHzWf) (:text |topic)
|o $ %{} :Expr (:at 1581229545081) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581229558461) (:by |rJG4IHzWf) (:text |comp-comment-list)
|b $ %{} :Leaf (:at 1581229571994) (:by |rJG4IHzWf) (:text |router)
|j $ %{} :Leaf (:at 1581229559655) (:by |rJG4IHzWf) (:text |resource)
|r $ %{} :Expr (:at 1641649667880) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1641649669961) (:by |rJG4IHzWf) (:text |:highlighted)
|j $ %{} :Leaf (:at 1641649671650) (:by |rJG4IHzWf) (:text |store)
|p $ %{} :Expr (:at 1581235631497) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1591437686010) (:by |rJG4IHzWf) (:text |div)
|f $ %{} :Expr (:at 1591437686556) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1591437687215) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1591437689627) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1591437690408) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1591437690720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1591437691103) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1591437691424) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1591437692835) (:by |rJG4IHzWf) (:text |:width)
|j $ %{} :Leaf (:at 1591437752383) (:by |rJG4IHzWf) (:text "|\"80vw")
|pT $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |div)
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:style)
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:padding)
|b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"16px 16px")
|h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |div)
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{})
|h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |<>)
|b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"HN Reader on GitHub")
|l $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |div)
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{})
|h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |a)
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:style)
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:font-size)
|b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |12)
|h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:text-decoration)
|b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:none)
|l $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:line-height)
|b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"12px")
|o $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:font-family)
|b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |ui/font-fancy)
|h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:target)
|b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"_blank")
|l $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:inner-text)
|b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"https://github.com/Memkits/hn-reader")
|o $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:href)
|b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"https://github.com/Memkits/hn-reader")
|q $ %{} :Expr (:at 1581174631334) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581174632041) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Leaf (:at 1581174633352) (:by |rJG4IHzWf) (:text |dev?)
|r $ %{} :Expr (:at 1581174633659) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581174636170) (:by |rJG4IHzWf) (:text |comp-inspect)
|j $ %{} :Leaf (:at 1581235931878) (:by |rJG4IHzWf) (:text "|\"store")
|r $ %{} :Leaf (:at 1581235934190) (:by |rJG4IHzWf) (:text |store)
|v $ %{} :Expr (:at 1581176758058) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581176759087) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1581176759348) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581176760977) (:by |rJG4IHzWf) (:text |:bottom)
|j $ %{} :Leaf (:at 1581176761528) (:by |rJG4IHzWf) (:text |0)
|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 nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |comp-reel)
|b $ %{} :Expr (:at 1587833027429) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1587833028168) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at nil) (:by nil) (:text |states)
|j $ %{} :Leaf (:at 1587833029173) (:by |rJG4IHzWf) (:text |:reel)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |reel)
|r $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |{})
|comp-frame $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700784695) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |comp-frame)
|n $ %{} :Expr (:at 1581700787013) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700787661) (:by |rJG4IHzWf) (:text |topic)
|r $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |some?)
|j $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |topic)
|r $ %{} :Expr (:at 1587834115018) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1587834115643) (:by |rJG4IHzWf) (:text |[])
|L $ %{} :Expr (:at 1587834117560) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587834121581) (:by |rJG4IHzWf) (:text |effect-load)
|j $ %{} :Leaf (:at 1587834126072) (:by |rJG4IHzWf) (:text |topic)
|T $ %{} :Expr (:at 1581700854363) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581700856514) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1581700856850) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700857204) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1666549635661) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666549638885) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1701538686820) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1701538690517) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1666549665767) (:by |rJG4IHzWf) (:text |css/column)
|b $ %{} :Leaf (:at 1701538698316) (:by |rJG4IHzWf) (:text |style-iframe-container)
|P $ %{} :Expr (:at 1581700858165) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700859074) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1581700859494) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700859877) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1666549646760) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666549649110) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1701538662457) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1701538666951) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1666549656705) (:by |rJG4IHzWf) (:text |css/row-parted)
|b $ %{} :Leaf (:at 1701538674026) (:by |rJG4IHzWf) (:text |style-address)
|r $ %{} :Expr (:at 1581700875160) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581701005897) (:by |rJG4IHzWf) (:text |a)
|j $ %{} :Expr (:at 1581701006710) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581701008617) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1581701009108) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581701011838) (:by |rJG4IHzWf) (:text |:inner-text)
|T $ %{} :Expr (:at 1581700875901) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700876801) (:by |rJG4IHzWf) (:text |:url)
|j $ %{} :Leaf (:at 1581700879725) (:by |rJG4IHzWf) (:text |topic)
|j $ %{} :Expr (:at 1581701012408) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581701014611) (:by |rJG4IHzWf) (:text |:href)
|j $ %{} :Expr (:at 1581701015839) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581701017446) (:by |rJG4IHzWf) (:text |:url)
|j $ %{} :Leaf (:at 1581701018507) (:by |rJG4IHzWf) (:text |topic)
|r $ %{} :Expr (:at 1581701023426) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581701026993) (:by |rJG4IHzWf) (:text |:target)
|j $ %{} :Leaf (:at 1581701032349) (:by |rJG4IHzWf) (:text "|\"_blank")
|t $ %{} :Expr (:at 1581700875160) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650431548845) (:by |rJG4IHzWf) (:text |span)
|j $ %{} :Expr (:at 1581701006710) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581701008617) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1581701009108) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581701011838) (:by |rJG4IHzWf) (:text |:inner-text)
|P $ %{} :Leaf (:at 1701538820555) (:by |rJG4IHzWf) (:text "|\"Full")
|X $ %{} :Expr (:at 1650431557019) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666549675513) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1666549677421) (:by |rJG4IHzWf) (:text |css/link)
|Z $ %{} :Expr (:at 1701538764039) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701538766510) (:by |rJG4IHzWf) (:text |:style)
|b $ %{} :Expr (:at 1701538766783) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701538767144) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1701538767583) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701538769203) (:by |rJG4IHzWf) (:text |:height)
|b $ %{} :Leaf (:at 1701538774441) (:by |rJG4IHzWf) (:text "|\"16px")
|b $ %{} :Expr (:at 1650431477043) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650431480039) (:by |rJG4IHzWf) (:text |:on-click)
|b $ %{} :Expr (:at 1650431480773) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650431481065) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1650431481369) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650431481988) (:by |rJG4IHzWf) (:text |e)
|b $ %{} :Leaf (:at 1650431483933) (:by |rJG4IHzWf) (:text |d!)
|h $ %{} :Expr (:at 1650431484257) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650431579954) (:by |rJG4IHzWf) (:text |js/document.body.requestFullscreen)
|j $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |create-element)
|j $ %{} :Leaf (:at 1587834430343) (:by |rJG4IHzWf) (:text |:iframe)
|r $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1666549678953) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666549682838) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1666549686826) (:by |rJG4IHzWf) (:text |css/expand)
|j $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |{})
|r $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |:border)
|j $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |:none)
|p $ %{} :Expr (:at 1587834107543) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587834108541) (:by |rJG4IHzWf) (:text |:id)
|j $ %{} :Leaf (:at 1587834110860) (:by |rJG4IHzWf) (:text "|\"frame")
|x $ %{} :Expr (:at 1582358016014) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1582358023165) (:by |rJG4IHzWf) (:text |:innerHTML)
|j $ %{} :Leaf (:at 1582358031293) (:by |rJG4IHzWf) (:text "|\"Not loaded.")
|v $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |span)
|j $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |nil)
|comp-reply $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232665058) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |comp-reply)
|n $ %{} :Expr (:at 1581232666199) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232667995) (:by |rJG4IHzWf) (:text |reply)
|f $ %{} :Leaf (:at 1581240644795) (:by |rJG4IHzWf) (:text |selected?)
|l $ %{} :Leaf (:at 1650953122800) (:by |rJG4IHzWf) (:text |highlighted-idx)
|u $ %{} :Leaf (:at 1650960918507) (:by |rJG4IHzWf) (:text |idx)
|r $ %{} :Expr (:at 1695485685225) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1695485687040) (:by |rJG4IHzWf) (:text |[])
|L $ %{} :Expr (:at 1695485688245) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1695485717038) (:by |rJG4IHzWf) (:text |effect-height!)
|b $ %{} :Expr (:at 1695485697338) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1695485702209) (:by |rJG4IHzWf) (:text |some?)
|b $ %{} :Leaf (:at 1695485697338) (:by |rJG4IHzWf) (:text |reply)
|T $ %{} :Expr (:at 1581233562252) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581233562796) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1695487612928) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1695487613840) (:by |rJG4IHzWf) (:text |or)
|T $ %{} :Expr (:at 1581233563360) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1695487547785) (:by |rJG4IHzWf) (:text |nil?)
|j $ %{} :Leaf (:at 1581233567425) (:by |rJG4IHzWf) (:text |reply)
|P $ %{} :Expr (:at 1581233568998) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581233569368) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1581233569566) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581233569910) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1695320029464) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1695320032589) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1695320040111) (:by |rJG4IHzWf) (:text |style-reply-empty)
|r $ %{} :Expr (:at 1581233570335) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581233570708) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Expr (:at 1581235666432) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581235667123) (:by |rJG4IHzWf) (:text |str)
|T $ %{} :Leaf (:at 1581242047962) (:by |rJG4IHzWf) (:text "|\"Data from network")
|r $ %{} :Expr (:at 1581233580009) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581233580332) (:by |rJG4IHzWf) (:text |{})
|v $ %{} :Expr (:at 1581237704536) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581237706681) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1581237710135) (:by |rJG4IHzWf) (:text |ui/font-fancy)
|T $ %{} :Expr (:at 1581238319361) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581238323311) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1581238323660) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1581238323809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581238326426) (:by |rJG4IHzWf) (:text |has-kids)
|j $ %{} :Expr (:at 1581238326958) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1628853032584) (:by |rJG4IHzWf) (:text |>)
|j $ %{} :Expr (:at 1581238326958) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581238326958) (:by |rJG4IHzWf) (:text |count)
|j $ %{} :Expr (:at 1581238326958) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581238326958) (:by |rJG4IHzWf) (:text |:kids)
|j $ %{} :Leaf (:at 1581238326958) (:by |rJG4IHzWf) (:text |reply)
|r $ %{} :Leaf (:at 1628853034082) (:by |rJG4IHzWf) (:text |0)
|T $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1666547653297) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666547655161) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1666547681694) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1666547683797) (:by |rJG4IHzWf) (:text |str-spaced)
|P $ %{} :Leaf (:at 1666547688330) (:by |rJG4IHzWf) (:text "|\"reply")
|Y $ %{} :Leaf (:at 1666547780179) (:by |rJG4IHzWf) (:text |css-reply)
|e $ %{} :Expr (:at 1666549350807) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666549350807) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Leaf (:at 1666549350807) (:by |rJG4IHzWf) (:text |selected?)
|h $ %{} :Leaf (:at 1666549356782) (:by |rJG4IHzWf) (:text |css-topic-selected)
|r $ %{} :Expr (:at 1581239947315) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1581239947995) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1581239948221) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581239948537) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1581239949251) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666547548513) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Leaf (:at 1666547541136) (:by |rJG4IHzWf) (:text |css/row-parted)
|T $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1666547553820) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666547555417) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1666549413507) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1666549415744) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1666549385846) (:by |rJG4IHzWf) (:text |css/row-middle)
|b $ %{} :Leaf (:at 1666549430136) (:by |rJG4IHzWf) (:text |css-topic-labels)
|r $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |str)
|r $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |:by)
|j $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |reply)
|n $ %{} :Leaf (:at 1666547828310) (:by |rJG4IHzWf) (:text |css-replay-content)
|v $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |=<)
|j $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |8)
|r $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |nil)
|xT $ %{} :Expr (:at 1581239713769) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581239717624) (:by |rJG4IHzWf) (:text |comp-time)
|j $ %{} :Expr (:at 1581239721552) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1581239721552) (:by |rJG4IHzWf) (:text |:time)
|j $ %{} :Leaf (:at 1581239721552) (:by |rJG4IHzWf) (:text |reply)
|j $ %{} :Expr (:at 1641649061068) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1641649062219) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1641649062514) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1641649063416) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1641649066277) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666549491249) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Leaf (:at 1666549493499) (:by |rJG4IHzWf) (:text |css/row-middle)
|h $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text |a)
|j $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text |{})
|r $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text |:inner-text)
|j $ %{} :Leaf (:at 1641700133127) (:by |rJG4IHzWf) (:text "|\"$0")
|v $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text |:target)
|j $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text "|\"_blank")
|w $ %{} :Expr (:at 1650952249067) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text |:href)
|b $ %{} :Expr (:at 1650952249067) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text |str)
|b $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text "|\"https://news.ycombinator.com/item?id=")
|h $ %{} :Expr (:at 1650952249067) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text |:id)
|b $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text |reply)
|l $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text "|\"&noRedirect=true")
|x $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1666549458771) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1666549472471) (:by |rJG4IHzWf) (:text |css-external-link)
|v $ %{} :Expr (:at 1650952397121) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650952399972) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1650952400210) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1650952400348) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952401260) (:by |rJG4IHzWf) (:text |content)
|b $ %{} :Expr (:at 1650952402038) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952402038) (:by |rJG4IHzWf) (:text |:text)
|b $ %{} :Leaf (:at 1650952402038) (:by |rJG4IHzWf) (:text |reply)
|b $ %{} :Expr (:at 1650952404298) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952408275) (:by |rJG4IHzWf) (:text |paragraphs)
|b $ %{} :Expr (:at 1650952488843) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650952495104) (:by |rJG4IHzWf) (:text |to-calcit-data)
|T $ %{} :Expr (:at 1650952410402) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952430445) (:by |rJG4IHzWf) (:text |.!split)
|b $ %{} :Expr (:at 1650952607946) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650952610477) (:by |rJG4IHzWf) (:text |either)
|T $ %{} :Leaf (:at 1650952414224) (:by |rJG4IHzWf) (:text |content)
|b $ %{} :Leaf (:at 1650952611086) (:by |rJG4IHzWf) (:text "|\"")
|h $ %{} :Leaf (:at 1650952437689) (:by |rJG4IHzWf) (:text |pattern-lines)
|T $ %{} :Expr (:at 1650952632440) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650952633852) (:by |rJG4IHzWf) (:text |list->)
|L $ %{} :Expr (:at 1650952634653) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952634974) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1650952636302) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650952640070) (:by |rJG4IHzWf) (:text |map-indexed)
|L $ %{} :Leaf (:at 1650952643115) (:by |rJG4IHzWf) (:text |paragraphs)
|T $ %{} :Expr (:at 1650952645092) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650952645572) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1650952645886) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952646604) (:by |rJG4IHzWf) (:text |idx)
|b $ %{} :Leaf (:at 1650952656970) (:by |rJG4IHzWf) (:text |block)
|T $ %{} :Expr (:at 1650952649373) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650952658533) (:by |rJG4IHzWf) (:text |[])
|L $ %{} :Leaf (:at 1650952659147) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Expr (:at 1650952788429) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650952789176) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1650952789421) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952789709) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1650952792050) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952792900) (:by |rJG4IHzWf) (:text |:style)
|b $ %{} :Expr (:at 1650952794775) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952797700) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1650952798168) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952799900) (:by |rJG4IHzWf) (:text |:position)
|b $ %{} :Leaf (:at 1650952801814) (:by |rJG4IHzWf) (:text |:relative)
|h $ %{} :Expr (:at 1701537435801) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1701537435801) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1701537435801) (:by |rJG4IHzWf) (:text |style-reply-paragraph)
|P $ %{} :Expr (:at 1701536179656) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1701536182189) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1701536183742) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1701536195766) (:by |rJG4IHzWf) (:text |some?)
|T $ %{} :Leaf (:at 1701536184358) (:by |rJG4IHzWf) (:text |config/audio-target)
|T $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |div)
|b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1666547983555) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1666547985485) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text "|\"clickable-container")
|b $ %{} :Leaf (:at 1666548005318) (:by |rJG4IHzWf) (:text |css-p-content)
|h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |comp-icon)
|b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:volume-1)
|h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:font-size)
|b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |18)
|h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:cursor)
|b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:pointer)
|l $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:line-height)
|b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |1)
|o $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:color)
|b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |hsl)
|b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |200)
|h $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |80)
|l $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |70)
|l $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |e)
|b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |d!)
|h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |case-default)
|b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |audio-target)
|h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |read-text!)
|b $ %{} :Expr (:at 1650968698948) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1650968699497) (:by |rJG4IHzWf) (:text |do)
|T $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |html->readable)
|b $ %{} :Leaf (:at 1650952976654) (:by |rJG4IHzWf) (:text |block)
|b $ %{} :Expr (:at 1650968702635) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1650968702635) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Leaf (:at 1650968702635) (:by |rJG4IHzWf) (:text |:highlight)
|h $ %{} :Expr (:at 1650968702635) (:by |rJG4IHzWf)