generated from Cumulo/cumulo-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
4138 lines (4137 loc) · 356 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{}
:configs $ {} (:init-fn |app.client/main!) (:output |src) (:port 6001) (:reload-fn |app.client/reload!) (:storage-key |calcit.cirru)
:modules $ [] |respo.calcit/ |lilac/ |recollect/ |memof/ |respo-ui.calcit/ |ws-edn.calcit/ |cumulo-util.calcit/ |respo-message.calcit/ |cumulo-reel.calcit/
:entries $ {}
:server $ {} (:init-fn |app.server/main!) (:reload-fn |app.server/reload!)
:modules $ [] |lilac/ |recollect/ |memof/ |cumulo-util.calcit/ |cumulo-reel.calcit/ |calcit-wss/ |calcit.std/
:ir $ {} (:package |app)
:files $ {}
|app.client $ {}
:defs $ {}
|*states $ {} (:at 1500541010211) (:by nil) (:id |HyttQ9UlgCSW) (:type :expr)
:data $ {}
|T $ {} (:at 1629485852327) (:by |B1y7Rc-Zz) (:id |BJqtmc8gx0BZ) (:text |defatom) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BJjtXqUxg0SZ) (:text |*states) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |HkRKmc8leABb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HyJ975UexAHW) (:text |{}) (:type :leaf)
|j $ {} (:at 1584880530097) (:by |B1y7Rc-Zz) (:id |1Yuq22AQ1) (:type :expr)
:data $ {}
|T $ {} (:at 1584880530868) (:by |B1y7Rc-Zz) (:id |1GDjFomnM-) (:text |:states) (:type :leaf)
|j $ {} (:at 1584880531270) (:by |B1y7Rc-Zz) (:id |zRWFjSytJ) (:type :expr)
:data $ {}
|T $ {} (:at 1584880532120) (:by |B1y7Rc-Zz) (:id |Bn7orHMVAa) (:text |{}) (:type :leaf)
|j $ {} (:at 1584880533921) (:by |B1y7Rc-Zz) (:id |RkFtRwVgVp) (:type :expr)
:data $ {}
|T $ {} (:at 1584880536346) (:by |B1y7Rc-Zz) (:id |ZZ5bgHrI0) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1584880536607) (:by |B1y7Rc-Zz) (:id |VrKjvp-zAs) (:type :expr)
:data $ {}
|T $ {} (:at 1584880536837) (:by |B1y7Rc-Zz) (:id |vLzhsv8-1P) (:text |[]) (:type :leaf)
|r $ {} (:at 1586796003586) (:by |B1y7Rc-Zz) (:id |YwN7S0gWO2) (:type :expr)
:data $ {}
|T $ {} (:at 1586796006972) (:by |B1y7Rc-Zz) (:id |YwN7S0gWO2leaf) (:text |:records) (:type :leaf)
|j $ {} (:at 1586796007211) (:by |B1y7Rc-Zz) (:id |vXbNiHjM_F) (:type :expr)
:data $ {}
|T $ {} (:at 1586796008244) (:by |B1y7Rc-Zz) (:id |QGB7c4_J3) (:text |{}) (:type :leaf)
|*store $ {} (:at 1500541010211) (:by nil) (:id |H1dE79UxlCHZ) (:type :expr)
:data $ {}
|T $ {} (:at 1629485859586) (:by |B1y7Rc-Zz) (:id |HyFVQqIgxAH-) (:text |defatom) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BJ9NQcLgx0rW) (:text |*store) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |ry6EXcUleRBb) (:text |nil) (:type :leaf)
|connect! $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |defn) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |connect!) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355358892) (:by |B1y7Rc-Zz) (:text |on-open) (:type :leaf)
|l $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |let) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |url-obj) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |url-parse) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |js/location.href) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |true) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |host) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |either) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |->) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |url-obj) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |.-query) (:type :leaf)
|l $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |.-host) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |js/location.hostname) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |port) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |either) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |->) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |url-obj) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |.-query) (:type :leaf)
|l $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |.-port) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |:port) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |config/site) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |ws-connect!) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |str) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text "|\"ws://") (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |host) (:type :leaf)
|l $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text "|\":") (:type :leaf)
|o $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |port) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |{}) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |:on-open) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |event) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |simulate-login!) (:type :leaf)
|l $ {} (:at 1645355354018) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355356095) (:by |B1y7Rc-Zz) (:text |on-open) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |:on-close) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |event) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |reset!) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |*store) (:type :leaf)
|h $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |nil) (:type :leaf)
|l $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |js/console.error) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text "|\"Lost connection!") (:type :leaf)
|l $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |:on-data) (:type :leaf)
|b $ {} (:at 1645355313020) (:by |B1y7Rc-Zz) (:text |on-server-data) (:type :leaf)
|dispatch! $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |defn) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |dispatch!) (:type :leaf)
|h $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |op-data) (:type :leaf)
|l $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |when) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |and) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |config/dev?) (:type :leaf)
|h $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |not=) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|h $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |:states) (:type :leaf)
|h $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |println) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text "|\"Dispatch") (:type :leaf)
|h $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|l $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |op-data) (:type :leaf)
|o $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |case-default) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|h $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |ws-send!) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |{}) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |:kind) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |:op) (:type :leaf)
|h $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |:op) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|l $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |:data) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |op-data) (:type :leaf)
|l $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |:states) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |reset!) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |*states) (:type :leaf)
|h $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |update-states) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |@*states) (:type :leaf)
|h $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |op-data) (:type :leaf)
|o $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |:effect/connect) (:type :leaf)
|b $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355272124) (:by |B1y7Rc-Zz) (:text |connect!) (:type :leaf)
|b $ {} (:at 1645355374497) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355374743) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|b $ {} (:at 1645355375124) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|h $ {} (:at 1645355376551) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355380840) (:by |B1y7Rc-Zz) (:text |js/console.log) (:type :leaf)
|b $ {} (:at 1645355389969) (:by |B1y7Rc-Zz) (:text "|\"TODO: refresh page") (:type :leaf)
|main! $ {} (:at 1500541010211) (:by nil) (:id |BJCEXcIglASW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |B1krmcIglAHb) (:text |defn) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |r1gSXcLlgAHZ) (:text |main!) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |r1ZBm58llAS-) (:type :expr)
:data $ {}
|t $ {} (:at 1544874518376) (:by |B1y7Rc-Zz) (:id |ICEtj5Fxmg) (:type :expr)
:data $ {}
|T $ {} (:at 1544874519276) (:by |B1y7Rc-Zz) (:id |ICEtj5Fxmgleaf) (:text |println) (:type :leaf)
|j $ {} (:at 1544874524299) (:by |B1y7Rc-Zz) (:id |ckXl0VHmU) (:text "|\"Running mode:") (:type :leaf)
|r $ {} (:at 1544874525129) (:by |B1y7Rc-Zz) (:id |6gcIZj22Hd) (:type :expr)
:data $ {}
|T $ {} (:at 1544874525354) (:by |B1y7Rc-Zz) (:id |hoH8abMFL) (:text |if) (:type :leaf)
|j $ {} (:at 1544874529605) (:by |B1y7Rc-Zz) (:id |VT1AFOCPy3) (:text |config/dev?) (:type :leaf)
|r $ {} (:at 1544874539526) (:by |B1y7Rc-Zz) (:id |tJW-De5LCf) (:text "|\"dev") (:type :leaf)
|v $ {} (:at 1544874537560) (:by |B1y7Rc-Zz) (:id |1o5SA2gNC) (:text "|\"release") (:type :leaf)
|x $ {} (:at 1500541010211) (:by nil) (:id |HJdBX9IglRHW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |B1tBm9LgeCBZ) (:text |render-app!) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |S15B7qUllRHW) (:text |render!) (:type :leaf)
|xD $ {} (:at 1512319371768) (:by |B1y7Rc-Zz) (:id |ryN9FobbM) (:type :expr)
:data $ {}
|T $ {} (:at 1512319373162) (:by |B1y7Rc-Zz) (:id |HkeQ9KjZ-f) (:text |connect!) (:type :leaf)
|j $ {} (:at 1586795735659) (:by |B1y7Rc-Zz) (:id |N457JJpR07) (:type :expr)
:data $ {}
|D $ {} (:at 1586795736278) (:by |B1y7Rc-Zz) (:id |FTGs3Qsn4x) (:text |fn) (:type :leaf)
|L $ {} (:at 1586795736507) (:by |B1y7Rc-Zz) (:id |kzws2qtagk) (:type :expr)
:data $ {}
|T $ {} (:at 1586795733116) (:by |B1y7Rc-Zz) (:id |6435BqHrUZ) (:type :expr)
:data $ {}
|T $ {} (:at 1586795733116) (:by |B1y7Rc-Zz) (:id |MYg2WRkTJx) (:text |start-test-loop!) (:type :leaf)
|yT $ {} (:at 1500541010211) (:by nil) (:id |S1GOX5UxlCBb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |BJQ_79Uel0HW) (:text |add-watch) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |HyE_79IgeCHZ) (:text |*store) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |BkBOQ58eeArZ) (:text |:changes) (:type :leaf)
|v $ {} (:at 1629485897582) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|D $ {} (:at 1629485898233) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|L $ {} (:at 1629485898525) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485899381) (:by |B1y7Rc-Zz) (:text |s) (:type :leaf)
|j $ {} (:at 1629485899879) (:by |B1y7Rc-Zz) (:text |p) (:type :leaf)
|T $ {} (:at 1500541010211) (:by nil) (:id |rJ8uXcLlxABW) (:type :expr)
:data $ {}
|r $ {} (:at 1500541010211) (:by |root) (:id |By5um58gg0BW) (:text |render-app!) (:type :leaf)
|v $ {} (:at 1500541010211) (:by |root) (:id |Syi_79UgxAHb) (:text |render!) (:type :leaf)
|yj $ {} (:at 1500541010211) (:by nil) (:id |S12_Q98lxRS-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |BkadXcIxe0HW) (:text |add-watch) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |S1CuX5UglRr-) (:text |*states) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |Bk1YXqIxe0HZ) (:text |:changes) (:type :leaf)
|v $ {} (:at 1629485901315) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|D $ {} (:at 1629485901825) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|L $ {} (:at 1629485902408) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485902826) (:by |B1y7Rc-Zz) (:text |s) (:type :leaf)
|j $ {} (:at 1629485903386) (:by |B1y7Rc-Zz) (:text |p) (:type :leaf)
|T $ {} (:at 1500541010211) (:by nil) (:id |rkeK75Ule0SZ) (:type :expr)
:data $ {}
|r $ {} (:at 1500541010211) (:by |root) (:id |BkVtQ9LggCBW) (:text |render-app!) (:type :leaf)
|v $ {} (:at 1500541010211) (:by |root) (:id |B1BF7c8lxRH-) (:text |render!) (:type :leaf)
|yp $ {} (:at 1545239347653) (:by |B1y7Rc-Zz) (:id |xsXQphbiL) (:type :expr)
:data $ {}
|T $ {} (:at 1545239515366) (:by |B1y7Rc-Zz) (:id |xsXQphbiLleaf) (:text |on-page-touch) (:type :leaf)
|j $ {} (:at 1629485919249) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|D $ {} (:at 1629485919745) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|L $ {} (:at 1629485919991) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1545239354450) (:by |B1y7Rc-Zz) (:id |L4nfTN5HbZ) (:type :expr)
:data $ {}
|j $ {} (:at 1545239386447) (:by |B1y7Rc-Zz) (:id |VLEK7Deo8y) (:text |if) (:type :leaf)
|r $ {} (:at 1545239374628) (:by |B1y7Rc-Zz) (:id |UXyM65FXAg) (:type :expr)
:data $ {}
|T $ {} (:at 1545239374628) (:by |B1y7Rc-Zz) (:id |-Is1GQONi9) (:text |nil?) (:type :leaf)
|j $ {} (:at 1545239374628) (:by |B1y7Rc-Zz) (:id |9pOm8A9oLv) (:text |@*store) (:type :leaf)
|v $ {} (:at 1545239374628) (:by |B1y7Rc-Zz) (:id |bL7TIWGWuL) (:type :expr)
:data $ {}
|T $ {} (:at 1562176366189) (:by |B1y7Rc-Zz) (:id |ff1BEzXXGX) (:text |connect!) (:type :leaf)
|j $ {} (:at 1586795741111) (:by |B1y7Rc-Zz) (:id |TXw0qm3UC) (:text |nil) (:type :leaf)
|yr $ {} (:at 1500541010211) (:by nil) (:id |rJ8FQc8xx0S-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |ryvF75UgxCHW) (:text |println) (:type :leaf)
|j $ {} (:at 1562176360971) (:by |B1y7Rc-Zz) (:id |BJuKm5IglCSb) (:text "|\"App started!") (:type :leaf)
|mount-target $ {} (:at 1500541010211) (:by nil) (:id |BkpTXqIleASW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HJAa7qIllRrW) (:text |def) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BykCX9IlxCrZ) (:text |mount-target) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |rJl0mcUxeRS-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rJbRmqLgeCHW) (:text |.querySelector) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |Byz0Q58leRrb) (:text |js/document) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |BkmCm9LggCrW) (:text "|\".app") (:type :leaf)
|on-server-data $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |defn) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |on-server-data) (:type :leaf)
|r $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |data) (:type :leaf)
|v $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |case-default) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |:kind) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |data) (:type :leaf)
|r $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |println) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text "|\"unknown server data kind:") (:type :leaf)
|r $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |data) (:type :leaf)
|v $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |:patch) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |let) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |changes) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |:data) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |data) (:type :leaf)
|r $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |when) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |config/dev?) (:type :leaf)
|r $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |js/console.log) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text "|\"Changes") (:type :leaf)
|r $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |to-js-data) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |changes) (:type :leaf)
|v $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |reset!) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |*store) (:type :leaf)
|r $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |patch-twig) (:type :leaf)
|j $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |@*store) (:type :leaf)
|r $ {} (:at 1629485500155) (:by |B1y7Rc-Zz) (:text |changes) (:type :leaf)
|x $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |:ping) (:type :leaf)
|j $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |let) (:type :leaf)
|j $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |ping-id) (:type :leaf)
|j $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |:data) (:type :leaf)
|j $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |data) (:type :leaf)
|r $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |swap!) (:type :leaf)
|j $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |*states) (:type :leaf)
|r $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |assoc-in) (:type :leaf)
|v $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |[]) (:type :leaf)
|j $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |:records) (:type :leaf)
|r $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |ping-id) (:type :leaf)
|v $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |:finish-time) (:type :leaf)
|x $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485802769) (:by |B1y7Rc-Zz) (:text |js/Date.now) (:type :leaf)
|reload! $ {} (:at 1500541010211) (:by nil) (:id |BybpmqIeeCr-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |Skz6mqLllAB-) (:text |defn) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BkXp7qLxx0Sb) (:text |reload!) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |HyN67qUllASZ) (:type :expr)
:data $ {}
|v $ {} (:at 1500541010211) (:by nil) (:id |BkHTX9LglArb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |SJLTm5LllRH-) (:text |clear-cache!) (:type :leaf)
|x $ {} (:at 1500541010211) (:by nil) (:id |BkPaX98gxAHW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |Byua7qIle0Sb) (:text |render-app!) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |HyF67c8egRrZ) (:text |render!) (:type :leaf)
|y $ {} (:at 1500541010211) (:by nil) (:id |Hyc6Q9Uel0Bb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |SkipXq8geAB-) (:text |println) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |Hyh679IegASZ) (:text "|\"Code updated.") (:type :leaf)
|render-app! $ {} (:at 1500541010211) (:by nil) (:id |B1Eh7cIxeCrZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |SJS3QqLglABb) (:text |defn) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |SyI3Q58elRrW) (:text |render-app!) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |Byv2X98ggArZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |ryOnXqIex0Bb) (:text |renderer) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |SJK375UlxCHb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rkq3QqIglCHZ) (:text |renderer) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |Bysn79Igl0H-) (:text |mount-target) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |By2n7qLeeAS-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |Sy6nmc8el0rW) (:text |comp-container) (:type :leaf)
|j $ {} (:at 1584880509935) (:by |B1y7Rc-Zz) (:id |dg4hzeLvDw) (:type :expr)
:data $ {}
|D $ {} (:at 1584880511636) (:by |B1y7Rc-Zz) (:id |75AuqOvLz) (:text |:states) (:type :leaf)
|T $ {} (:at 1500541010211) (:by |root) (:id |BJR2Q5UlxCBW) (:text |@*states) (:type :leaf)
|n $ {} (:at 1586796227035) (:by |B1y7Rc-Zz) (:id |iHOGK2S_UI) (:type :expr)
:data $ {}
|T $ {} (:at 1586796231889) (:by |B1y7Rc-Zz) (:id |xTwIPYEC0) (:text |:records) (:type :leaf)
|j $ {} (:at 1586796230798) (:by |B1y7Rc-Zz) (:id |VrCr6NG6Q) (:text |@*states) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |Sy1p7c8ex0rZ) (:text |@*store) (:type :leaf)
|v $ {} (:at 1512318370491) (:by |B1y7Rc-Zz) (:id |r1gcsBi-ZG) (:text |dispatch!) (:type :leaf)
|simulate-login! $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |defn) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |simulate-login!) (:type :leaf)
|r $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|v $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |let) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |raw) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |.!getItem) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |js/localStorage) (:type :leaf)
|r $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |:storage-key) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |config/site) (:type :leaf)
|r $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |if) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |some?) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |raw) (:type :leaf)
|r $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |do) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |println) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text "|\"Found storage.") (:type :leaf)
|r $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |dispatch!) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |:user/log-in) (:type :leaf)
|r $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |parse-cirru-edn) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |raw) (:type :leaf)
|v $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |do) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text |println) (:type :leaf)
|j $ {} (:at 1629485832774) (:by |B1y7Rc-Zz) (:text "|\"Found no storage.") (:type :leaf)
|start-test-loop! $ {} (:at 1586795522235) (:by |B1y7Rc-Zz) (:id |sFH9jCDtID) (:type :expr)
:data $ {}
|T $ {} (:at 1586795524033) (:by |B1y7Rc-Zz) (:id |KmPXrJX4wl) (:text |defn) (:type :leaf)
|j $ {} (:at 1586795522235) (:by |B1y7Rc-Zz) (:id |8ViXPVV9BN) (:text |start-test-loop!) (:type :leaf)
|r $ {} (:at 1586795522235) (:by |B1y7Rc-Zz) (:id |VD2_xWOinp) (:type :expr)
:data $ {}
|v $ {} (:at 1586795837946) (:by |B1y7Rc-Zz) (:id |Gfc9CFgxwi) (:type :expr)
:data $ {}
|D $ {} (:at 1586795860706) (:by |B1y7Rc-Zz) (:id |Z5bfwSDg7) (:text |repeat!) (:type :leaf)
|L $ {} (:at 1586795887025) (:by |B1y7Rc-Zz) (:id |YXL-mYbCNg) (:text |2) (:type :leaf)
|T $ {} (:at 1586795861833) (:by |B1y7Rc-Zz) (:id |oV_An-O_UQ) (:type :expr)
:data $ {}
|D $ {} (:at 1586795862395) (:by |B1y7Rc-Zz) (:id |9x0mlGblX) (:text |fn) (:type :leaf)
|L $ {} (:at 1586795862665) (:by |B1y7Rc-Zz) (:id |mBRsCeZzEJ) (:type :expr)
:data $ {}
|T $ {} (:at 1586797133973) (:by |B1y7Rc-Zz) (:id |OMbTyyKCG) (:type :expr)
:data $ {}
|D $ {} (:at 1586797134615) (:by |B1y7Rc-Zz) (:id |wEu1JQzXI) (:text |if) (:type :leaf)
|L $ {} (:at 1586797136342) (:by |B1y7Rc-Zz) (:id |onpQhhpMz) (:type :expr)
:data $ {}
|D $ {} (:at 1586797137672) (:by |B1y7Rc-Zz) (:id |HzNJmg0hvy) (:text |=) (:type :leaf)
|T $ {} (:at 1586797139336) (:by |B1y7Rc-Zz) (:id |R5NWV9GY9j) (:text |js/document.visibilityState) (:type :leaf)
|j $ {} (:at 1586797143903) (:by |B1y7Rc-Zz) (:id |5nSkL-Pwle) (:text "|\"visible") (:type :leaf)
|T $ {} (:at 1586795964600) (:by |B1y7Rc-Zz) (:id |5CW1u8Z4_K) (:type :expr)
:data $ {}
|D $ {} (:at 1586795965317) (:by |B1y7Rc-Zz) (:id |vXeUhDfuZO) (:text |let) (:type :leaf)
|L $ {} (:at 1586795965558) (:by |B1y7Rc-Zz) (:id |wwoyZsw3wP) (:type :expr)
:data $ {}
|T $ {} (:at 1586795967401) (:by |B1y7Rc-Zz) (:id |XHMcDIO1d) (:type :expr)
:data $ {}
|T $ {} (:at 1586795984048) (:by |B1y7Rc-Zz) (:id |7oGIa5NM5P) (:text |ping-id) (:type :leaf)
|j $ {} (:at 1586795990098) (:by |B1y7Rc-Zz) (:id |RgRFf3y2IP) (:type :expr)
:data $ {}
|j $ {} (:at 1645355414386) (:by |B1y7Rc-Zz) (:id |JuVqEv0-Ia) (:text |nanoid) (:type :leaf)
|T $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |k_gfhLHaWA) (:type :expr)
:data $ {}
|T $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |EhPQQGMUUL) (:text |ws-send!) (:type :leaf)
|j $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |q7RBQ534W7) (:type :expr)
:data $ {}
|T $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |gAiBfSkFVQ) (:text |{}) (:type :leaf)
|j $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |qIBaHlhnI7) (:type :expr)
:data $ {}
|T $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |4kgJfxcSfJ) (:text |:kind) (:type :leaf)
|j $ {} (:at 1586795582606) (:by |B1y7Rc-Zz) (:id |7eXm4WLegA) (:text |:ping) (:type :leaf)
|r $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |KeWMkRNEr0) (:type :expr)
:data $ {}
|T $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |Kts3VLmmXP) (:text |:op) (:type :leaf)
|j $ {} (:at 1586795543936) (:by |B1y7Rc-Zz) (:id |l8t4upsbwr) (:text |:effect/ping) (:type :leaf)
|v $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |nppdAHjuM5) (:type :expr)
:data $ {}
|T $ {} (:at 1586795535529) (:by |B1y7Rc-Zz) (:id |Z-u2J1R2em) (:text |:data) (:type :leaf)
|j $ {} (:at 1586795988342) (:by |B1y7Rc-Zz) (:id |28my63Jarg) (:text |ping-id) (:type :leaf)
|j $ {} (:at 1586795995092) (:by |B1y7Rc-Zz) (:id |vTD1sVz5M) (:type :expr)
:data $ {}
|T $ {} (:at 1586796013737) (:by |B1y7Rc-Zz) (:id |vTD1sVz5Mleaf) (:text |swap!) (:type :leaf)
|j $ {} (:at 1586795999233) (:by |B1y7Rc-Zz) (:id |lbnR0v_k1A) (:text |*states) (:type :leaf)
|r $ {} (:at 1586796016484) (:by |B1y7Rc-Zz) (:id |XV_83KgyvS) (:text |assoc-in) (:type :leaf)
|v $ {} (:at 1586796017736) (:by |B1y7Rc-Zz) (:id |h6H7KFLqD) (:type :expr)
:data $ {}
|T $ {} (:at 1586796017865) (:by |B1y7Rc-Zz) (:id |NcU9coZosO) (:text |[]) (:type :leaf)
|j $ {} (:at 1586796020001) (:by |B1y7Rc-Zz) (:id |jrNVehpFm) (:text |:records) (:type :leaf)
|r $ {} (:at 1586796031600) (:by |B1y7Rc-Zz) (:id |VR5CKrScy5) (:text |ping-id) (:type :leaf)
|x $ {} (:at 1586796314202) (:by |B1y7Rc-Zz) (:id |tpIKwgHsFz) (:type :expr)
:data $ {}
|T $ {} (:at 1586796314202) (:by |B1y7Rc-Zz) (:id |ehr67M80dR) (:text |{}) (:type :leaf)
|j $ {} (:at 1586796314202) (:by |B1y7Rc-Zz) (:id |WKJ6YXVxt7) (:type :expr)
:data $ {}
|T $ {} (:at 1586796314202) (:by |B1y7Rc-Zz) (:id |HKFDgHibkP) (:text |:start-time) (:type :leaf)
|j $ {} (:at 1586796314202) (:by |B1y7Rc-Zz) (:id |M2qn_ekWUH) (:type :expr)
:data $ {}
|j $ {} (:at 1629486335012) (:by |B1y7Rc-Zz) (:id |ybk72AJy3u) (:text |js/Date.now) (:type :leaf)
|r $ {} (:at 1586796314202) (:by |B1y7Rc-Zz) (:id |NSL004ajov) (:type :expr)
:data $ {}
|T $ {} (:at 1586796314202) (:by |B1y7Rc-Zz) (:id |mzQKN8Rv_L) (:text |:finish-time) (:type :leaf)
|j $ {} (:at 1586796314202) (:by |B1y7Rc-Zz) (:id |y8v_QqVvWs) (:text |nil) (:type :leaf)
:ns $ {} (:at 1500541010211) (:by nil) (:id |S1uAGcLllRr-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |H1KCzq8geASW) (:text |ns) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BycAGqLleAH-) (:text |app.client) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |BysRMcUleArZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |B130M9IxgASW) (:text |:require) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |rypCzcUgeAHW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |S10CGq8exABb) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |HyJ1m9Ueg0S-) (:text |respo.core) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |SylJXqLgxRrW) (:text |:refer) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |Hkb17q8lg0H-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |BkzkmqIge0rW) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BkmJX5LelABb) (:text |render!) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |SkEkQ9IgxArW) (:text |clear-cache!) (:type :leaf)
|v $ {} (:at 1500541010211) (:by |root) (:id |SJBkX9Ugl0S-) (:text |realize-ssr!) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |ryIJ7cIglCrZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |SkPyQqLlgCBb) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |H1Ok75IxgRSW) (:text |respo.cursor) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |SyFyQqIxlCrW) (:text |:refer) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |SJ9J798ggAHZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HJoJXqLgeRHW) (:text |[]) (:type :leaf)
|j $ {} (:at 1584874339542) (:by |B1y7Rc-Zz) (:id |S1ny7cUlx0Bb) (:text |update-states) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |r1pJXcIgx0SW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HJ0J7cLeeCS-) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BJJe75Igx0Sb) (:text |app.comp.container) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |rklgX5UxxCHW) (:text |:refer) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |SyWx7qIex0BW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HkMx75Ixl0rW) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |rJmxQqIelAS-) (:text |comp-container) (:type :leaf)
|x $ {} (:at 1500541010211) (:by nil) (:id |SyVxmc8geRSb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |H1Blm5LelRr-) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BJUlmc8eeRSZ) (:text |cljs.reader) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |rJDxQ5LexAHb) (:text |:refer) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |B1OxX98exRBW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |SyKeX98egArb) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |r1cg7qUlgABb) (:text |read-string) (:type :leaf)
|yT $ {} (:at 1500541010211) (:by nil) (:id |HJXbm58xeRrW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |B14bQq8eg0rW) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |HyrZm9IegRSZ) (:text |app.schema) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |BJ8b75LgeCS-) (:text |:as) (:type :leaf)
|v $ {} (:at 1500541010211) (:by |root) (:id |Byw-mqIgl0HZ) (:text |schema) (:type :leaf)
|yj $ {} (:at 1527788760671) (:by |root) (:id |rJWJr3TyQ) (:type :expr)
:data $ {}
|T $ {} (:at 1527788761874) (:by |root) (:id |rJWJr3TyQleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1527788764341) (:by |root) (:id |SJZzyHh6J7) (:text |app.config) (:type :leaf)
|r $ {} (:at 1527788766627) (:by |root) (:id |HJI4JHhakX) (:text |:as) (:type :leaf)
|v $ {} (:at 1527788767318) (:by |root) (:id |BJ-DJH3a17) (:text |config) (:type :leaf)
|yr $ {} (:at 1544638775980) (:by |B1y7Rc-Zz) (:id |lMCAY6KwD) (:type :expr)
:data $ {}
|T $ {} (:at 1544638776805) (:by |B1y7Rc-Zz) (:id |lMCAY6KwDleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1544638780714) (:by |B1y7Rc-Zz) (:id |zEN00LwW1E) (:text |ws-edn.client) (:type :leaf)
|r $ {} (:at 1544638782705) (:by |B1y7Rc-Zz) (:id |m3-1FVuogh) (:text |:refer) (:type :leaf)
|v $ {} (:at 1544638782913) (:by |B1y7Rc-Zz) (:id |wG2B6CmLNG) (:type :expr)
:data $ {}
|T $ {} (:at 1544638783120) (:by |B1y7Rc-Zz) (:id |I2hXPBL2YJ) (:text |[]) (:type :leaf)
|j $ {} (:at 1544638785998) (:by |B1y7Rc-Zz) (:id |JiK-h2n4iN) (:text |ws-connect!) (:type :leaf)
|r $ {} (:at 1544638787583) (:by |B1y7Rc-Zz) (:id |h15_zxZNZf) (:text |ws-send!) (:type :leaf)
|yv $ {} (:at 1544639047460) (:by |B1y7Rc-Zz) (:id |rkLsBPMduC) (:type :expr)
:data $ {}
|T $ {} (:at 1544639047763) (:by |B1y7Rc-Zz) (:id |N6w_dOM0yc) (:text |[]) (:type :leaf)
|j $ {} (:at 1544639048479) (:by |B1y7Rc-Zz) (:id |KvS5_SXv0S) (:text |recollect.patch) (:type :leaf)
|r $ {} (:at 1544639049759) (:by |B1y7Rc-Zz) (:id |8FxYaO5JP) (:text |:refer) (:type :leaf)
|v $ {} (:at 1544639049952) (:by |B1y7Rc-Zz) (:id |07xWSkTUjV) (:type :expr)
:data $ {}
|T $ {} (:at 1544639050115) (:by |B1y7Rc-Zz) (:id |D49-t_AC7B) (:text |[]) (:type :leaf)
|j $ {} (:at 1544639057259) (:by |B1y7Rc-Zz) (:id |y2z8vLZvwg) (:text |patch-twig) (:type :leaf)
|yx $ {} (:at 1545239397101) (:by |B1y7Rc-Zz) (:id |9yRRVSPy_o) (:type :expr)
:data $ {}
|T $ {} (:at 1545239397493) (:by |B1y7Rc-Zz) (:id |9yRRVSPy_oleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1545239402091) (:by |B1y7Rc-Zz) (:id |pVpV5eueG) (:text |cumulo-util.core) (:type :leaf)
|r $ {} (:at 1545239402776) (:by |B1y7Rc-Zz) (:id |KGMk6pkEm_) (:text |:refer) (:type :leaf)
|v $ {} (:at 1545239402983) (:by |B1y7Rc-Zz) (:id |39TJMdIhRL) (:type :expr)
:data $ {}
|T $ {} (:at 1545239403156) (:by |B1y7Rc-Zz) (:id |CzqRUswnLt) (:text |[]) (:type :leaf)
|j $ {} (:at 1545239519506) (:by |B1y7Rc-Zz) (:id |9b8ZYaPnbu) (:text |on-page-touch) (:type :leaf)
|r $ {} (:at 1586795868929) (:by |B1y7Rc-Zz) (:id |35iQrZ5NYS) (:text |repeat!) (:type :leaf)
|yy $ {} (:at 1553788385335) (:by |B1y7Rc-Zz) (:id |Ol6pRFB9Pq) (:type :expr)
:data $ {}
|T $ {} (:at 1553788385624) (:by |B1y7Rc-Zz) (:id |Ol6pRFB9Pqleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1553788387912) (:by |B1y7Rc-Zz) (:id |PjY-5vhezr) (:text "|\"url-parse") (:type :leaf)
|r $ {} (:at 1629485884457) (:by |B1y7Rc-Zz) (:id |xuQXGFRA-i) (:text |:default) (:type :leaf)
|v $ {} (:at 1553788391454) (:by |B1y7Rc-Zz) (:id |BlhK80C3x7) (:text |url-parse) (:type :leaf)
|yyj $ {} (:at 1586795826794) (:by |B1y7Rc-Zz) (:id |-mlsNcRfsj) (:type :expr)
:data $ {}
|T $ {} (:at 1586795827331) (:by |B1y7Rc-Zz) (:id |-mlsNcRfsjleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1645355417978) (:by |B1y7Rc-Zz) (:id |Xr3J_8tcCS) (:text "|\"nanoid") (:type :leaf)
|r $ {} (:at 1645355424407) (:by |B1y7Rc-Zz) (:id |pZE4N4BM47) (:text |:refer) (:type :leaf)
|v $ {} (:at 1645355425343) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1645355420683) (:by |B1y7Rc-Zz) (:id |-SyLNyy4U7) (:text |nanoid) (:type :leaf)
:proc $ {} (:at 1500541010211) (:by nil) (:id |S1dWm9UggRBZ) (:type :expr)
:data $ {}
|app.comp.container $ {}
:defs $ {}
|comp-container $ {} (:at 1500541010211) (:by nil) (:id |rJcN9Iee0Bb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |ryo4cIlgAHZ) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |H1hV5IlxCH-) (:text |comp-container) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |r1aE9IglCB-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |B1CV9UxeCBb) (:text |states) (:type :leaf)
|b $ {} (:at 1586796235454) (:by |B1y7Rc-Zz) (:id |XCoYGky6K2) (:text |records) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |SkyrqIglCr-) (:text |store) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |HyxSq8llRHb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |ByZB58exAB-) (:text |let) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |rkzr9UggCHW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by nil) (:id |HJmS5IllASW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rJVBcUxx0Bb) (:text |state) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |ByrH5IggAHW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |S1LScUglRSW) (:text |:data) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |SJvHc8eeAB-) (:text |states) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |ryuSqIllABW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rkYrq8lgCHb) (:text |session) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |BycSqLllCSW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |Hksr5IxlCSZ) (:text |:session) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |SJhS5UxeRBb) (:text |store) (:type :leaf)
|r $ {} (:at 1525106928554) (:by |root) (:id |HyYgtpEaG) (:type :expr)
:data $ {}
|T $ {} (:at 1525106929232) (:by |root) (:id |HyYgtpEaGleaf) (:text |router) (:type :leaf)
|j $ {} (:at 1525106929915) (:by |root) (:id |Skg5etaNTM) (:type :expr)
:data $ {}
|T $ {} (:at 1525106930860) (:by |root) (:id |HyLFeYpEaG) (:text |:router) (:type :leaf)
|j $ {} (:at 1525106931558) (:by |root) (:id |HkNigK646z) (:text |store) (:type :leaf)
|v $ {} (:at 1525106933346) (:by |root) (:id |Sye6lY64aM) (:type :expr)
:data $ {}
|T $ {} (:at 1525106935393) (:by |root) (:id |Sye6lY64aMleaf) (:text |router-data) (:type :leaf)
|j $ {} (:at 1525106935675) (:by |root) (:id |H1eWtaNTz) (:type :expr)
:data $ {}
|T $ {} (:at 1525106936827) (:by |root) (:id |r1u1WKTNTz) (:text |:data) (:type :leaf)
|j $ {} (:at 1525106937665) (:by |root) (:id |SkMW-tpE6M) (:text |router) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |ByaHq8gxCSW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |S10HqUelASb) (:text |if) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |rJJIc8gg0BZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |ryeLc8egCS-) (:text |nil?) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |r1-LcUggCrZ) (:text |store) (:type :leaf)
|r $ {} (:at 1521951403873) (:by |root) (:id |rJE2zoVqz) (:type :expr)
:data $ {}
|T $ {} (:at 1521951417580) (:by |root) (:id |HyYZehIDnvM) (:text |comp-offline) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |BJGP9LlxRB-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |r1mvc8lgRH-) (:text |div) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |r1VPqLxxRrb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HJHD5UxeCHZ) (:text |{}) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |B1Uwq8gxArb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HkwD58ggCr-) (:text |:style) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |rkdw5Lgg0rW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |SktwcIxlCS-) (:text |merge) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |Hk9PqUlg0Bb) (:text |ui/global) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |HkjD9Lel0B-) (:text |ui/fullscreen) (:type :leaf)
|v $ {} (:at 1500541010211) (:by |root) (:id |SJ3vcUegASZ) (:text |ui/column) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |r1pw9LelCr-) (:type :expr)
:data $ {}
|T $ {} (:at 1523120265747) (:by |root) (:id |SyAvc8lgCB-) (:text |comp-navigation) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |rkyu9UglRHZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rkedq8xxAB-) (:text |:logged-in?) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |rJ-_cLge0SW) (:text |store) (:type :leaf)
|r $ {} (:at 1523120353961) (:by |root) (:id |BkW5yKdLjM) (:type :expr)
:data $ {}
|T $ {} (:at 1523120357277) (:by |root) (:id |SJx9JF_Ljz) (:text |:count) (:type :leaf)
|j $ {} (:at 1523120358953) (:by |root) (:id |rkf6kYOIiM) (:text |store) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |rkXYc8ll0SW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HJVYcUxlRrZ) (:text |if) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |S1rK5UggABZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rkUtqUxg0HZ) (:text |:logged-in?) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |r1Dtq8lxArb) (:text |store) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |BJl4-FpETz) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rkbqq8xgAHb) (:text |case) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |rkz5q8eeRH-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HJX958ggAS-) (:text |:name) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |HkE558leAH-) (:text |router) (:type :leaf)
|n $ {} (:at 1525106918943) (:by |root) (:id |H11lKp4Tz) (:type :expr)
:data $ {}
|T $ {} (:at 1525106921967) (:by |root) (:id |H11lKp4Tzleaf) (:text |:home) (:type :leaf)
|j $ {} (:at 1586796334254) (:by |B1y7Rc-Zz) (:id |VKdpY2qdV1) (:type :expr)
:data $ {}
|T $ {} (:at 1586796335960) (:by |B1y7Rc-Zz) (:id |zKWYxYJr7) (:text |comp-home) (:type :leaf)
|j $ {} (:at 1586796337910) (:by |B1y7Rc-Zz) (:id |NvuphD2Oi) (:text |records) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |rJH998xlAH-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |H1LqqUexArZ) (:text |:profile) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |B1v5cLxgASb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |BJd95UxlRHZ) (:text |comp-profile) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |ByF99IxlCBZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |BJq558xxRBZ) (:text |:user) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |HJo558lxAH-) (:text |store) (:type :leaf)
|r $ {} (:at 1524070838527) (:by |root) (:id |rykaYxH2G) (:type :expr)
:data $ {}
|T $ {} (:at 1524070840507) (:by |root) (:id |BJxAhYgHnG) (:text |:data) (:type :leaf)
|j $ {} (:at 1524070841286) (:by |root) (:id |rJbaYlH2z) (:text |router) (:type :leaf)
|x $ {} (:at 1525106913773) (:by |root) (:id |rJ9kFTNTz) (:type :expr)
:data $ {}
|T $ {} (:at 1525106915016) (:by |root) (:id |rJ9kFTNTzleaf) (:text |<>) (:type :leaf)
|j $ {} (:at 1525106916644) (:by |root) (:id |rJWjyYpNaG) (:text |router) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |BkciqUxgRrZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |BysicIxgAHW) (:text |comp-login) (:type :leaf)
|j $ {} (:at 1584877243021) (:by |B1y7Rc-Zz) (:id |0L-Tvuz0-k) (:type :expr)
:data $ {}
|D $ {} (:at 1584877243645) (:by |B1y7Rc-Zz) (:id |-nw8MJTDY) (:text |>>) (:type :leaf)
|T $ {} (:at 1500541010211) (:by |root) (:id |rkhocIleRrb) (:text |states) (:type :leaf)
|j $ {} (:at 1584877245341) (:by |B1y7Rc-Zz) (:id |g-pcBbXVob) (:text |:login) (:type :leaf)
|w $ {} (:at 1524279203814) (:by |root) (:id |S1hsPmOnM) (:type :expr)
:data $ {}
|T $ {} (:at 1524279211924) (:by |root) (:id |S1hsPmOnMleaf) (:text |comp-status-color) (:type :leaf)
|j $ {} (:at 1524279213788) (:by |root) (:id |Bk83D7Ohf) (:type :expr)
:data $ {}
|T $ {} (:at 1524279214588) (:by |root) (:id |H1BhwXu3M) (:text |:color) (:type :leaf)
|j $ {} (:at 1524279215366) (:by |root) (:id |SyevnPQ_nf) (:text |store) (:type :leaf)
|x $ {} (:at 1521911488967) (:by |root) (:id |B1gKaUWV5M) (:type :expr)
:data $ {}
|D $ {} (:at 1521911509225) (:by |root) (:id |Sk-tpU-Vcf) (:text |when) (:type :leaf)
|L $ {} (:at 1521911495407) (:by |root) (:id |H1xk08W4cG) (:text |dev?) (:type :leaf)
|T $ {} (:at 1500541010211) (:by nil) (:id |S16oqUeeASb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rkAi58lx0S-) (:text |comp-inspect) (:type :leaf)
|j $ {} (:at 1562176377826) (:by |B1y7Rc-Zz) (:id |HJkhq8gxRrb) (:text "|\"Store") (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |Skln58ge0rb) (:text |store) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |r1fqzo4cM) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |SyeT5UllASZ) (:text |{}) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |SJZ6qUleRS-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |ryfp9IxgABW) (:text |:bottom) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |Skma9UglRr-) (:text |0) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |r1V65Ixl0HW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HkBp9LllArb) (:text |:left) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |ryIpcIggCrb) (:text |0) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |SJv6q8xeAH-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HJ_acUlgCrZ) (:text |:max-width) (:type :leaf)
|j $ {} (:at 1562176491493) (:by |B1y7Rc-Zz) (:id |BkYpc8ee0B-) (:text "|\"100%") (:type :leaf)
|y $ {} (:at 1500541010211) (:by nil) (:id |H1G3c8ll0S-) (:type :expr)
:data $ {}
|T $ {} (:at 1529230769433) (:by |root) (:id |HkQnqIex0Sb) (:text |comp-messages) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |Bk429LxgCS-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |S1B2cLgxCHZ) (:text |get-in) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |ryInqUelCHb) (:text |store) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |SJw25Uge0BW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rJd398el0rZ) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |B1Yn98xlRrZ) (:text |:session) (:type :leaf)
|r $ {} (:at 1529230765972) (:by |root) (:id |SJqh5UlgRB-) (:text |:messages) (:type :leaf)
|n $ {} (:at 1529230771518) (:by |root) (:id |H122BnXW7) (:type :expr)
:data $ {}
|T $ {} (:at 1529230771976) (:by |root) (:id |H122BnXW7leaf) (:text |{}) (:type :leaf)
|p $ {} (:at 1529230772453) (:by |root) (:id |H1m2hB2Q-Q) (:type :expr)
:data $ {}
|T $ {} (:at 1529230773090) (:by |root) (:id |H1m2hB2Q-Qleaf) (:text |fn) (:type :leaf)
|j $ {} (:at 1529230773925) (:by |root) (:id |H1gA2B3mWQ) (:type :expr)
:data $ {}
|T $ {} (:at 1529230775135) (:by |root) (:id |Sk0hr3X-Q) (:text |info) (:type :leaf)
|j $ {} (:at 1529230778336) (:by |root) (:id |Bybgar2m-m) (:text |d!) (:type :leaf)
|r $ {} (:at 1529230780551) (:by |root) (:id |HyraS3Q-m) (:type :expr)
:data $ {}
|T $ {} (:at 1529230781631) (:by |root) (:id |HyraS3Q-mleaf) (:text |d!) (:type :leaf)
|j $ {} (:at 1529231458145) (:by |root) (:id |SygIaH3Xb7) (:text |:session/remove-message) (:type :leaf)
|r $ {} (:at 1529230813335) (:by |root) (:id |r1eSJU2XZm) (:text |info) (:type :leaf)
|yT $ {} (:at 1521911502552) (:by |root) (:id |rkvCI-NcM) (:type :expr)
:data $ {}
|D $ {} (:at 1521911507241) (:by |root) (:id |rkgPCLW49z) (:text |when) (:type :leaf)
|L $ {} (:at 1521911504664) (:by |root) (:id |S1-_CLWN5M) (:text |dev?) (:type :leaf)
|T $ {} (:at 1507828710405) (:by |root) (:id |BJgRkVX62W) (:type :expr)
:data $ {}
|T $ {} (:at 1507828712159) (:by |root) (:id |BJgRkVX62Wleaf) (:text |comp-reel) (:type :leaf)
|j $ {} (:at 1507829101137) (:by |root) (:id |HylruBmT3-) (:type :expr)
:data $ {}
|T $ {} (:at 1507830262253) (:by |root) (:id |HyBgV7T2Z) (:text |:reel-length) (:type :leaf)
|j $ {} (:at 1507829104010) (:by |root) (:id |S1MvOr7a2Z) (:text |store) (:type :leaf)
|r $ {} (:at 1507828721052) (:by |root) (:id |ByteVmTnZ) (:type :expr)
:data $ {}
|T $ {} (:at 1507828722268) (:by |root) (:id |ByxdeN7anb) (:text |{}) (:type :leaf)
|comp-home $ {} (:at 1586796341778) (:by |B1y7Rc-Zz) (:id |88D4jCbr41) (:type :expr)
:data $ {}
|T $ {} (:at 1586796344115) (:by |B1y7Rc-Zz) (:id |aVNK7yeVxs) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1586796341778) (:by |B1y7Rc-Zz) (:id |8zGMSS_cZg) (:text |comp-home) (:type :leaf)
|r $ {} (:at 1586796341778) (:by |B1y7Rc-Zz) (:id |AS-5nmg6rM) (:type :expr)
:data $ {}
|T $ {} (:at 1586796341778) (:by |B1y7Rc-Zz) (:id |NoWseR8vbY) (:text |records) (:type :leaf)
|v $ {} (:at 1586796345539) (:by |B1y7Rc-Zz) (:id |BoElKfLXcZ) (:type :expr)
:data $ {}
|T $ {} (:at 1586796346119) (:by |B1y7Rc-Zz) (:id |BoElKfLXcZleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1586796346338) (:by |B1y7Rc-Zz) (:id |AnTtDd1GEV) (:type :expr)
:data $ {}
|T $ {} (:at 1586796346658) (:by |B1y7Rc-Zz) (:id |OGCrbSVWqZ) (:text |{}) (:type :leaf)
|j $ {} (:at 1586796570074) (:by |B1y7Rc-Zz) (:id |eukKfJ8qz) (:type :expr)
:data $ {}
|T $ {} (:at 1586796570888) (:by |B1y7Rc-Zz) (:id |64hXJ8xXbt) (:text |:style) (:type :leaf)
|j $ {} (:at 1586796620126) (:by |B1y7Rc-Zz) (:id |ozRTpaX-g) (:type :expr)
:data $ {}
|D $ {} (:at 1586796621820) (:by |B1y7Rc-Zz) (:id |bDQJTt8ZJ) (:text |merge) (:type :leaf)
|P $ {} (:at 1586796647359) (:by |B1y7Rc-Zz) (:id |_zYRIdffX) (:text |ui/expand) (:type :leaf)
|T $ {} (:at 1586796574319) (:by |B1y7Rc-Zz) (:id |SAtPtsKT-) (:text |ui/row) (:type :leaf)
|r $ {} (:at 1586796464196) (:by |B1y7Rc-Zz) (:id |x56atvSuA) (:type :expr)
:data $ {}
|D $ {} (:at 1586796467280) (:by |B1y7Rc-Zz) (:id |oPMo2eP26U) (:text |list->) (:type :leaf)
|L $ {} (:at 1586796468461) (:by |B1y7Rc-Zz) (:id |q0dpn7VseR) (:type :expr)
:data $ {}
|T $ {} (:at 1586796468835) (:by |B1y7Rc-Zz) (:id |j9OA44b-R) (:text |{}) (:type :leaf)
|j $ {} (:at 1586796634514) (:by |B1y7Rc-Zz) (:id |XPeg0JajiX) (:type :expr)
:data $ {}
|T $ {} (:at 1586796635411) (:by |B1y7Rc-Zz) (:id |gEgW5QTAmF) (:text |:style) (:type :leaf)
|j $ {} (:at 1586796657183) (:by |B1y7Rc-Zz) (:id |ulj4St8ocI) (:type :expr)
:data $ {}
|D $ {} (:at 1586796658686) (:by |B1y7Rc-Zz) (:id |GtH63zewPD) (:text |merge) (:type :leaf)
|T $ {} (:at 1586798256427) (:by |B1y7Rc-Zz) (:id |LeNNRQsMm) (:text |ui/expand) (:type :leaf)
|j $ {} (:at 1586796659235) (:by |B1y7Rc-Zz) (:id |7ef892eJ-) (:type :expr)
:data $ {}
|T $ {} (:at 1586796659607) (:by |B1y7Rc-Zz) (:id |3xlvqxtH0C) (:text |{}) (:type :leaf)
|j $ {} (:at 1586796659842) (:by |B1y7Rc-Zz) (:id |HVIWfhF-AQ) (:type :expr)
:data $ {}
|T $ {} (:at 1586796661493) (:by |B1y7Rc-Zz) (:id |G6OCf2xV-3) (:text |:padding) (:type :leaf)
|j $ {} (:at 1586796663392) (:by |B1y7Rc-Zz) (:id |xQXahB6NjH) (:text |16) (:type :leaf)
|r $ {} (:at 1586796841351) (:by |B1y7Rc-Zz) (:id |RDj2iuFji) (:type :expr)
:data $ {}
|T $ {} (:at 1586798267383) (:by |B1y7Rc-Zz) (:id |RDj2iuFjileaf) (:text |:max-width) (:type :leaf)
|j $ {} (:at 1586798272013) (:by |B1y7Rc-Zz) (:id |mV49HAlyS) (:text |320) (:type :leaf)
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |kCFzpbiiTh) (:type :expr)
:data $ {}
|T $ {} (:at 1629485375107) (:by |B1y7Rc-Zz) (:id |VfMjTFTIEQ) (:text |->) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |gU-mhSLJvF) (:text |records) (:type :leaf)
|l $ {} (:at 1629486769400) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629486770702) (:by |B1y7Rc-Zz) (:text |.to-list) (:type :leaf)
|n $ {} (:at 1586796504088) (:by |B1y7Rc-Zz) (:id |_8uN07QM7) (:type :expr)
:data $ {}
|T $ {} (:at 1629485928454) (:by |B1y7Rc-Zz) (:id |_8uN07QM7leaf) (:text |.sort-by) (:type :leaf)
|j $ {} (:at 1586796505599) (:by |B1y7Rc-Zz) (:id |FxFzgjuMGH) (:type :expr)
:data $ {}
|T $ {} (:at 1586796506688) (:by |B1y7Rc-Zz) (:id |xshE6VtszQ) (:text |fn) (:type :leaf)
|j $ {} (:at 1586796507037) (:by |B1y7Rc-Zz) (:id |wClU3KPaql) (:type :expr)
:data $ {}
|T $ {} (:at 1629485386661) (:by |B1y7Rc-Zz) (:text |pair) (:type :leaf)
|r $ {} (:at 1586796518447) (:by |B1y7Rc-Zz) (:id |ngKZy4CmwC) (:type :expr)
:data $ {}
|D $ {} (:at 1629485378684) (:by |B1y7Rc-Zz) (:id |sQchHd7z6J) (:text |negate) (:type :leaf)
|T $ {} (:at 1586796511337) (:by |B1y7Rc-Zz) (:id |u6cNFCmW6) (:type :expr)
:data $ {}
|T $ {} (:at 1586796516948) (:by |B1y7Rc-Zz) (:id |u6cNFCmW6leaf) (:text |:start-time) (:type :leaf)
|j $ {} (:at 1629485379834) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629485381656) (:by |B1y7Rc-Zz) (:id |eRbBUW3Fj) (:text |last) (:type :leaf)
|j $ {} (:at 1629485382277) (:by |B1y7Rc-Zz) (:text |pair) (:type :leaf)
|r $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |SbfhwctrPx) (:type :expr)
:data $ {}
|T $ {} (:at 1629485391433) (:by |B1y7Rc-Zz) (:id |YRd2VE8_HZ) (:text |.map-pair) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |PdhaaXh_z3) (:type :expr)
:data $ {}
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |CqcykyE2qW) (:text |fn) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |ovJ1PCmS_n) (:type :expr)
:data $ {}
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |w8pQoZTwEQ) (:text |k) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |klbSPzUgeR) (:text |info) (:type :leaf)
|v $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |0NDW-x1iiWq) (:type :expr)
:data $ {}
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |IvzQjC35mbL) (:text |[]) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |RSr_SAP3Ftb) (:text |k) (:type :leaf)
|r $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |GPKBdrxPss8) (:type :expr)
:data $ {}
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |MjYcDVLUiIq) (:text |div) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |iTqf1k4JcK2) (:type :expr)
:data $ {}
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |8CUTgJqrERg) (:text |{}) (:type :leaf)
|r $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |TmG4A3K5tQd) (:type :expr)
:data $ {}
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |i49Fy_siMlu) (:text |<>) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |141zgIPT_MA) (:type :expr)
:data $ {}
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |So550LQt7GK) (:text |:start-time) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |x-TYb3FYXQf) (:text |info) (:type :leaf)
|r $ {} (:at 1586796721608) (:by |B1y7Rc-Zz) (:id |uzhrZ2dydl) (:type :expr)
:data $ {}
|T $ {} (:at 1586796721987) (:by |B1y7Rc-Zz) (:id |rIgOF9Sm86) (:text |{}) (:type :leaf)
|j $ {} (:at 1586796722190) (:by |B1y7Rc-Zz) (:id |VaR938Xj24) (:type :expr)
:data $ {}
|T $ {} (:at 1586796723785) (:by |B1y7Rc-Zz) (:id |-vMyeharh) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1586796725964) (:by |B1y7Rc-Zz) (:id |dUQvUuTE8n) (:text |ui/font-code) (:type :leaf)
|t $ {} (:at 1586796492126) (:by |B1y7Rc-Zz) (:id |-ru05Pc6C) (:type :expr)
:data $ {}
|T $ {} (:at 1586796493075) (:by |B1y7Rc-Zz) (:id |-ru05Pc6Cleaf) (:text |=<) (:type :leaf)
|j $ {} (:at 1586796494265) (:by |B1y7Rc-Zz) (:id |YBDVRrOZbS) (:text |16) (:type :leaf)
|r $ {} (:at 1586796494833) (:by |B1y7Rc-Zz) (:id |g5Pku3O5lr) (:text |nil) (:type :leaf)
|v $ {} (:at 1586797480437) (:by |B1y7Rc-Zz) (:id |uJi30Ae3HX) (:type :expr)
:data $ {}
|D $ {} (:at 1586797485307) (:by |B1y7Rc-Zz) (:id |SCWCOYUIdo) (:text |if) (:type :leaf)
|L $ {} (:at 1586797486635) (:by |B1y7Rc-Zz) (:id |v3C03Y329) (:type :expr)
:data $ {}
|D $ {} (:at 1586797488161) (:by |B1y7Rc-Zz) (:id |1Tctau3Kwf) (:text |nil?) (:type :leaf)
|T $ {} (:at 1586797485814) (:by |B1y7Rc-Zz) (:id |pfczroajo0) (:type :expr)
:data $ {}
|T $ {} (:at 1586797485814) (:by |B1y7Rc-Zz) (:id |mJ_0C0iYbz) (:text |:finish-time) (:type :leaf)
|j $ {} (:at 1586797485814) (:by |B1y7Rc-Zz) (:id |uy5x8fuOuH) (:text |info) (:type :leaf)
|P $ {} (:at 1586797585260) (:by |B1y7Rc-Zz) (:id |ErqK-ZYNt) (:type :expr)
:data $ {}
|D $ {} (:at 1586797585907) (:by |B1y7Rc-Zz) (:id |dmDueAbwLF) (:text |<>) (:type :leaf)
|T $ {} (:at 1586797490821) (:by |B1y7Rc-Zz) (:id |QW9qTFcyea) (:text "|\"...") (:type :leaf)
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |aqd3aN65PYM) (:type :expr)
:data $ {}
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |DLMwhaejvwc) (:text |<>) (:type :leaf)
|j $ {} (:at 1586796735084) (:by |B1y7Rc-Zz) (:id |lO-nS_z36) (:type :expr)
:data $ {}
|D $ {} (:at 1586796736494) (:by |B1y7Rc-Zz) (:id |6P-NG5bIr6) (:text |str) (:type :leaf)
|T $ {} (:at 1586796479036) (:by |B1y7Rc-Zz) (:id |1XP65jpU7f) (:type :expr)
:data $ {}
|D $ {} (:at 1586796479737) (:by |B1y7Rc-Zz) (:id |L8rWmn4QL) (:text |-) (:type :leaf)
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |iYLF-iGDyp8) (:type :expr)
:data $ {}
|T $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |UKlk6_dObEM) (:text |:finish-time) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |UD1dxkZqK7Y) (:text |info) (:type :leaf)
|j $ {} (:at 1586796437549) (:by |B1y7Rc-Zz) (:id |U_hYNqwOmF) (:type :expr)