-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
1877 lines (1876 loc) · 165 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
{}
:users $ {}
|5tTrKalIE $ {} (:name |chen) (:id |5tTrKalIE) (:nickname |chen) (:avatar nil) (:password |d41d8cd98f00b204e9800998ecf8427e) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |respo-message)
:root $ {} (:ns |main) (:def |main!)
:files $ {}
|respo-message.main $ {}
:ns $ {} (:type :expr) (:id |ryX2am5c21G) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HyV2p7q52kM) (:text |ns) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rJB2p79qhJG) (:text |respo-message.main) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |S1I2pX95hkM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJvhamqchkz) (:text |:require) (:by |root) (:at 1510939172486)
|yr $ {} (:type :expr) (:by |root) (:at 1528440195419) (:id |ByxiKSoDx7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528440196077) (:text |[]) (:id |ByxiKSoDx7leaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528440196771) (:text "|\"lorem-ipsum") (:id |SJZ3KSswgQ)
|r $ {} (:type :leaf) (:by |root) (:at 1528440197429) (:text |:as) (:id |ryZpKrjwgm)
|v $ {} (:type :leaf) (:by |root) (:at 1528440197852) (:text |lorem-ipsum) (:id |H1RtSjweQ)
|yT $ {} (:type :expr) (:id |H1A0T75c3JG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJyyea75cnJM) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BylJxpQ95hkz) (:text |cljs.reader) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |Sybyx6Q9qh1f) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |HkfkxTQ9qhJf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |H17yxp7q5hyz) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |H1EyxaXqchyM) (:text |read-string) (:by |root) (:at 1510939172486)
|yt $ {} (:type :expr) (:by |root) (:at 1528525238786) (:id |HygJ6ZgFg7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528525239204) (:text |[]) (:id |HygJ6ZgFg7leaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528525240711) (:text "|\"shortid") (:id |SJ7JTWeKgm)
|r $ {} (:type :leaf) (:by |root) (:at 1528525241267) (:text |:as) (:id |Bk-WpblKem)
|v $ {} (:type :leaf) (:by |root) (:at 1528525243235) (:text |shortid) (:id |r1BZpbeYlm)
|j $ {} (:type :expr) (:id |ryO3TQ9q2JM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SyKham5q2kf) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |Skq3TQ55nyz) (:text |respo.core) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |rysn6m552yf) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |rk2hpXcq2kf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Hk6nTQq5hkz) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BJ03TQ5521f) (:text |render!) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |r1y6aX59nJz) (:text |clear-cache!) (:by |root) (:at 1510939172486)
|v $ {} (:type :leaf) (:id |BJg6pX552kM) (:text |realize-ssr!) (:by |root) (:at 1510939172486)
|x $ {} (:type :expr) (:id |ryyRp7q53kG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SkeCaQ9cn1z) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SkbRam9cnkM) (:text |respo-message.comp.container) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |SyzRp7c93yG) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |HyXA6m5531G) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BkE0pXqcnkM) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rJS0T75931f) (:text |comp-container) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |HydT6Xqcnyz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BktpaQqcnyz) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |r19paQ5c31G) (:text |respo.util.format) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |ryj6pX5cnJM) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |r12a6XqchJM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ66p7cc3yz) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rkA667c9h1z) (:text |mute-element) (:by |root) (:at 1510939172486)
|yj $ {} (:type :expr) (:id |S1r1x6mc921M) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJ81lT795nyf) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BkDJlTXcch1z) (:text |respo-message.schema) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |Hk_1eaX5931z) (:text |:as) (:by |root) (:at 1510939172486)
|v $ {} (:type :leaf) (:id |B1tJlpQ9q21f) (:text |schema) (:by |root) (:at 1510939172486)
|yyT $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280594833) (:id |UafCHzzmE)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280595832) (:text |[]) (:id |UafCHzzmEleaf)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280600329) (:text |respo-message.config) (:id |vpTF3J6OHn)
|r $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280600749) (:text |:as) (:id |wBTaSljexV)
|v $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280601458) (:text |config) (:id |Ui5B8ErB3t)
|r $ {} (:type :expr) (:id |r1-pTm553Jz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SyMapQ993Jf) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BJmp675cnkG) (:text |respo.cursor) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |rJ466Qc5nyf) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |BJSpam5921f) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |H1UTTQq5nyz) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |Bkvp6mc9h1G) (:text |update-states) (:by |5tTrKalIE) (:at 1614314187931)
|yy $ {} (:type :expr) (:by |root) (:at 1528522520031) (:id |S1xgmwJFgQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528522520348) (:text |[]) (:id |S1xgmwJFgQleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528522524884) (:text |respo-message.action) (:id |ryXemvkFe7)
|r $ {} (:type :leaf) (:by |root) (:at 1528522525485) (:text |:as) (:id |HkXHXDkFgQ)
|v $ {} (:type :leaf) (:by |root) (:at 1528522526884) (:text |action) (:id |r1ImP1Fx7)
|yv $ {} (:type :expr) (:by |root) (:at 1528520794905) (:id |B1xXDlJKg7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520795243) (:text |[]) (:id |B1xXDlJKg7leaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528520928432) (:text |respo-message.updater) (:id |H1mQPgytem)
|r $ {} (:type :leaf) (:by |root) (:at 1528520801581) (:text |:refer) (:id |HJMYPeyKg7)
|v $ {} (:type :expr) (:by |root) (:at 1528520801763) (:id |Skb9Pg1KlX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520802007) (:text |[]) (:id |SJecwe1Kx7)
|j $ {} (:type :leaf) (:by |root) (:at 1528520804255) (:text |update-messages) (:id |S1NcDxkFeQ)
:defs $ {}
|ssr? $ {} (:type :expr) (:id |Sybeg6X9c2kG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rkGlgTmccn1M) (:text |def) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |ByQlxT7cc2kM) (:text |ssr?) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |SJ4elTm99hkz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |B1BgeTX5cnyM) (:text |some?) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |ryIll6mq9hyG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |H1Dgg67cqhkz) (:text |.querySelector) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |Syule6Qq921G) (:text |js/document) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |HJtegTm9qhkG) (:text ||meta.respo-app) (:by |root) (:at 1510939172486)
|id! $ {} (:type :expr) (:id |Sy9expm953yf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SyjleTmc53yz) (:text |defn) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rJ2llpQq53yM) (:text |id!) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |SJTlgaXq9hJM) (:by nil) (:at 1510939172486)
:data $ {}
|v $ {} (:type :expr) (:id |HkAlepQ5c21z) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |H1yZe675qn1z) (:text |swap!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |HkeZgamq9n1G) (:text |*id) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |SJZZxpQq9h1f) (:text |inc) (:by |root) (:at 1510939172486)
|x $ {} (:type :leaf) (:id |H1z-lp7cc2yG) (:text |@*id) (:by |root) (:at 1510939172486)
|dispatch! $ {} (:type :expr) (:id |ByQ-lp7993yM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HyEWl6m9931z) (:text |defn) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SySZep79chJf) (:text |dispatch!) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |B1IZl6m95hkM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BkPblp7qqhyM) (:text |op) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |H1O-epm9chJM) (:text |op-data) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280592734) (:id |kPak6ESe4h)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280592734) (:text |when) (:id |fmJpwnF3p7)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280592734) (:text |config/dev?) (:id |LbTtNPx7Wa)
|r $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280592734) (:id |tFETtsJsf1)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280592734) (:text |println) (:id |Kcqo3H4jQH)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280592734) (:text "|\"Dispatch:") (:id |3jYnkdFjdF)
|r $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280592734) (:text |op) (:id |OQxdqb3AgX)
|x $ {} (:type :expr) (:id |SkC-lTm9qn1z) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJ1fgT75q2yz) (:text |let) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |rylfe675q21G) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :expr) (:id |rkWfl679qhJf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HkGMxTmc52yf) (:text |op-id) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |S1QGlpQ5c21z) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HJNzlamqq3kM) (:text |.generate) (:by |root) (:at 1528525230929)
|j $ {} (:type :leaf) (:by |root) (:at 1528525233892) (:text |shortid) (:id |BkQDnWlYlm)
|X $ {} (:type :expr) (:by |root) (:at 1528391735056) (:id |BJg1B_kwx7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391740088) (:text |op-time) (:id |BJg1B_kwx7leaf)
|j $ {} (:type :expr) (:by |root) (:at 1528391740397) (:id |SyvNBOkPe7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391756359) (:text |.now) (:id |rJU4BdyPxX)
|j $ {} (:type :leaf) (:by |root) (:at 1528391758170) (:text |js/Date) (:id |Hyr8_1wxX)
|l $ {} (:type :expr) (:by |root) (:at 1528523934093) (:id |HJLj2kFxm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528523936881) (:text |store) (:id |HJLj2kFxmleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528523939420) (:text |@*store) (:id |H1mKo31Kgm)
|r $ {} (:type :expr) (:id |SkZmvYytlQ) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |H1brg6Qq5hyz) (:text |reset!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |ryzBxT75c21f) (:text |*store) (:by |root) (:at 1510939172486)
|n $ {} (:type :expr) (:by |root) (:at 1528523925774) (:id |rkA9nkKlX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528523948615) (:text |cond) (:id |r169n1FlX)
|j $ {} (:type :expr) (:by |root) (:at 1528523949097) (:id |Sy-rh3ktx7)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1528523949273) (:id |r1MH3h1YxQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528523949539) (:text |=) (:id |Bylr33JYx7)
|j $ {} (:type :leaf) (:by |root) (:at 1528523950866) (:text |op) (:id |Skw33JFgX)
|r $ {} (:type :leaf) (:by |root) (:at 1528523954713) (:text |:states) (:id |r1zD33yFe7)
|j $ {} (:type :expr) (:by |5tTrKalIE) (:at 1614314253050)
:data $ {}
|D $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1614314254531) (:text |update-states)
|L $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1614314256339) (:text |store)
|P $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1614314264170) (:text |op-data)
|r $ {} (:type :expr) (:by |root) (:at 1528524019451) (:id |SJieT1Fgm)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1528524004158) (:id |Skl2ypytgX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528524694266) (:text |action/message-action?) (:id |Skl2ypytgXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528524016877) (:text |op) (:id |Sytl61FgQ)
|j $ {} (:type :expr) (:by |root) (:at 1528524021920) (:id |S1Rxp1Fx7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528524652839) (:text |update) (:id |HJ3g61Fx7)
|j $ {} (:type :leaf) (:by |root) (:at 1528524653629) (:text |store) (:id |SkQBO1xKxX)
|r $ {} (:type :leaf) (:by |root) (:at 1528524656382) (:text |:messages) (:id |rJbLdkeKg7)
|v $ {} (:type :expr) (:by |root) (:at 1528520761321) (:id |B1e0dJeKl7)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528520785600) (:text "|#()") (:id |r1gdLgytxX)
|T $ {} (:type :leaf) (:by |root) (:at 1528520764688) (:text |update-messages) (:id |rkHWrgJtgmleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528520789467) (:text |%) (:id |SkLrxktem)
|r $ {} (:type :leaf) (:by |root) (:at 1528520769791) (:text |op) (:id |r1_HxyYem)
|v $ {} (:type :leaf) (:by |root) (:at 1528520771286) (:text |op-data) (:id |B1b5SgJFlX)
|x $ {} (:type :leaf) (:by |root) (:at 1528520774617) (:text |op-id) (:id |rJVjHe1KlQ)
|y $ {} (:type :leaf) (:by |root) (:at 1528520778457) (:text |op-time) (:id |SJWk8e1Kl7)
|v $ {} (:type :expr) (:by |root) (:at 1528524666119) (:id |r1lftkxKlX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528524666891) (:text |:else) (:id |r1lftkxKlXleaf)
|j $ {} (:type :expr) (:by |root) (:at 1528524667856) (:id |S14tkltxQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528524668349) (:text |do) (:id |By7QFkxYlm)
|j $ {} (:type :expr) (:by |root) (:at 1528524669307) (:id |rkSYylYe7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528524670742) (:text |println) (:id |ByMEKyeKe7)
|j $ {} (:type :leaf) (:by |root) (:at 1528524684483) (:text "|\"Unhandled operation:") (:id |ByGPKkltx7)
|r $ {} (:type :leaf) (:by |root) (:at 1528524684828) (:text |op) (:id |SJBq1gYxX)
|r $ {} (:type :leaf) (:by |root) (:at 1528524673954) (:text |store) (:id |S1ZYKygtxm)
|*store $ {} (:type :expr) (:id |BJEBg67cqnkz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BJHHx67qq3kG) (:text |defonce) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |ryIHx67992yz) (:text |*store) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |SkDSg6QqcnkG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJ_Hla7q9h1f) (:text |atom) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |HkFSg67qqh1M) (:text |schema/store) (:by |root) (:at 1510939172486)
|main! $ {} (:type :expr) (:id |rk5rla7953kf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |B1iSgTQqq3yz) (:text |defn) (:by |root) (:at 1510939172486)
|yr $ {} (:type :expr) (:id |HknDlTXcqnkG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJ6PlaQ9chkz) (:text |println) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BkCvgTQcqnJz) (:text "||app started!") (:by |root) (:at 1510939172486)
|yT $ {} (:type :expr) (:id |HktIxTm553Jz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |r19IgpQcc2yG) (:text |add-watch) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |ryi8gpX9chJG) (:text |*store) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |BJhUgT75q2yf) (:text |:changes) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |HkpUlaXcq2yG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ry0Lxa7952JG) (:text |fn) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |B1JvxT7cqhJz) (:by nil) (:at 1510939172486)
:data $ {}
|r $ {} (:type :expr) (:id |ryxDeT75qnkM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ryZvgT75qhkM) (:text |render-app!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SJMwg67qq31M) (:text |render!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rk3Sl6X992Jz) (:text |main!) (:by |root) (:at 1510939172486)
|x $ {} (:type :expr) (:id |r1l8eT75q3kM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Bk-IepXqq2kM) (:text |if) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |HkfUlT7q5n1z) (:text |ssr?) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |rymUlpm5chJf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rk4Il6Qcq2kz) (:text |render-app!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |S1B8lpmccn1M) (:text |realize-ssr!) (:by |root) (:at 1510939172486)
|yj $ {} (:type :expr) (:id |HkmDgpQcq3kG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ryVwxa7992kM) (:text |js/setTimeout) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |BySDxamcc3kM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SkLwgpm5c2yG) (:text |fn) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |HyvDl6m9521z) (:by nil) (:at 1510939172486)
:data $ {}
|r $ {} (:type :expr) (:id |HJOPlamqchkf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rytDxam593yG) (:text |dispatch!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |HJ5vxa75ch1f) (:text |action/create) (:by |root) (:at 1528522517824)
|r $ {} (:type :expr) (:by |root) (:at 1528440002271) (:id |HJf564jvxm)
:data $ {}
|T $ {} (:type :leaf) (:id |HyswxpQ95nJz) (:text |{}) (:by |root) (:at 1528440003315)
|j $ {} (:type :expr) (:by |root) (:at 1528440003647) (:id |SJ3pNivgQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528440004520) (:text |:text) (:id |ryQi6NjPeQ)
|j $ {} (:type :expr) (:by |root) (:at 1528440193138) (:id |r1gtYBjwlX)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572281360053) (:text |lorem-ipsum/loremIpsum) (:id |SJga6NoDxX)
|r $ {} (:type :expr) (:id |HJ6rlaXqchkM) (:by nil) (:at 1510939172486)
:data $ {}
|y $ {} (:type :expr) (:id |BJLIx6m95hkf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HyDLx6XqcnkM) (:text |render-app!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |HyOLlT759n1f) (:text |render!) (:by |root) (:at 1510939172486)
|u $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280627898) (:id |Htnj6pq0CK)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280627898) (:text |println) (:id |sSsggVkfbY)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280627898) (:text "|\"Running mode:") (:id |LIu8JaVFYr)
|r $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280627898) (:id |jnhPj8uGAR)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280627898) (:text |if) (:id |-R7WEP91K1)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280627898) (:text |config/dev?) (:id |Ysb237E0Hu)
|r $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280627898) (:text "|\"dev") (:id |hi52Z9Zysg)
|v $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280627898) (:text "|\"release") (:id |2gUQ1s6Cps)
|*states $ {} (:type :expr) (:id |ByyOlaQqchyG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJlux6X95h1z) (:text |defonce) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |B1-_lT795h1M) (:text |*states) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |H1Gul6X952Jf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |S1Q_gaX592kM) (:text |atom) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |HyVOgaQcqh1G) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ryBOxTmq931f) (:text |{}) (:by |root) (:at 1510939172486)
|render-app! $ {} (:type :expr) (:id |ryitep759nkG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Hk2KeTm5qhyG) (:text |defn) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rypFxaXqcnJG) (:text |render-app!) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |By0Flpm9c31z) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Hy1qxaX95nJf) (:text |renderer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |Hyl9l67c9n1M) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HyZ9x6Qcc2kf) (:text |renderer) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SyMcea795hkM) (:text |mount-target) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |rkQqlamcc21M) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJEce6Q9921f) (:text |comp-container) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |H1r5xp75cnJz) (:text |@*store) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:by |root) (:at 1528525264475) (:id |SkW_RWltlX)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528525276147) (:text "|#()") (:id |S1YC-eKxQ)
|T $ {} (:type :leaf) (:id |BkUqgaQcchyG) (:text |dispatch!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:by |root) (:at 1528525270258) (:text |%1) (:id |SJh0WeYl7)
|r $ {} (:type :leaf) (:by |root) (:at 1528525271831) (:text |%2) (:id |HyykMgtxQ)
|reload! $ {} (:type :expr) (:id |ryvcla7cqh1f) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJOcga7ccnkM) (:text |defn) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SyFce6Xqc2JM) (:text |reload!) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |BJ9cgTQ9cnJf) (:by nil) (:at 1510939172486)
:data $ {}
|v $ {} (:type :expr) (:id |rkoqxa75chyM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rkncxa7q9n1f) (:text |clear-cache!) (:by |root) (:at 1510939172486)
|x $ {} (:type :expr) (:id |Hkp9xpmqq3kG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ByA5xa7c53kG) (:text |render-app!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |Skkig6Q9c3yf) (:text |render!) (:by |root) (:at 1510939172486)
|y $ {} (:type :expr) (:id |SyxjxTQ59nkM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |B1Zse67q93yM) (:text |println) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |HyMjepXc9hyz) (:text "||Code update.") (:by |root) (:at 1510939172486)
|yT $ {} (:type :expr) (:id |H17sl6mcqhkz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HkEoeaQq93yz) (:text |dispatch!) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |ryHjxaQq9hkG) (:text |action/create) (:by |root) (:at 1528529257258)
|r $ {} (:type :expr) (:by |root) (:at 1528392523011) (:id |H1b78iyPlm)
:data $ {}
|T $ {} (:type :leaf) (:id |HJUilT7c5hkG) (:text |{}) (:by |root) (:at 1528392523392)
|j $ {} (:type :expr) (:by |root) (:at 1528392523684) (:id |S1xELjyDlQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528392525266) (:text |:text) (:id |r148skPlm)
|j $ {} (:type :expr) (:by |root) (:at 1528440245410) (:id |Bkfp3HoweX)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572281370514) (:text |lorem-ipsum/loremIpsum) (:id |r1GSUoywlm)
|mount-target $ {} (:type :expr) (:id |Hkwox67953Jf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJOsxpm99n1z) (:text |def) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |ryKieTmcq3JM) (:text |mount-target) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |By9oxTQ9qnJG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ryoiga7c9nyG) (:text |.querySelector) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |HJhjxpX9qhJG) (:text |js/document) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |rJ6ig6755nyz) (:text ||.app) (:by |root) (:at 1510939172486)
|*id $ {} (:type :expr) (:id |HyRsx6m5931M) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BJk3g6X9qnJG) (:text |defonce) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |S1xhgamc93Jf) (:text |*id) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |S1b2ep7cqhyM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ryGnxTX9qhJz) (:text |atom) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |HkXnlTmq9hJG) (:text |0) (:by |root) (:at 1510939172486)
:proc $ {} (:type :expr) (:id |r15kg6Qq931z) (:by nil) (:at 1510939172486)
:data $ {}
|respo-message.comp.messages $ {}
:ns $ {} (:type :expr) (:id |r1OFWa799hJG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ByYFWaQq921M) (:text |ns) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |B15t-TQq52kG) (:text |respo-message.comp.messages) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |r1wqWa7c53Jz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Syu5Wpm9qhkM) (:text |:require) (:by |root) (:at 1510939172486)
|b $ {} (:type :expr) (:id |rJ9s5kvlX) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |S1AY-6Xc9nkf) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SkJcWpQ9q31z) (:text |respo.core) (:by |root) (:at 1540961216673)
|r $ {} (:type :leaf) (:id |B1gqb6Qcc3kG) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |rJZqWp75cnJM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJG5Wpmq92kf) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SJQqbTXq52JG) (:text |defcomp) (:by |root) (:at 1510939172486)
|n $ {} (:type :leaf) (:text |list->) (:id |BJlR21i3yG) (:by |root) (:at 1510940599505)
|r $ {} (:type :leaf) (:id |H1E9-pmqq2JG) (:text |div) (:by |root) (:at 1510939172486)
|v $ {} (:type :leaf) (:id |ryBcWT7q52kf) (:text |span) (:by |root) (:at 1510939172486)
|x $ {} (:type :leaf) (:id |HyL9-Tm5q2yz) (:text |<>) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |Bkxs-pm9qhJf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ry-o-pmq92yf) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |ByGoWamq52kz) (:text |respo-message.comp.message) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |r1mobp7qc2kM) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |Hy4o-p79q3kM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BJSsb6X9c21z) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BkLo-a7992yG) (:text |comp-message) (:by |root) (:at 1510939172486)
:defs $ {}
|comp-messages $ {} (:type :expr) (:id |BJ_o-pQqqh1f) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Bktj-aX953Jz) (:text |defcomp) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BJ5ob6Q593yM) (:text |comp-messages) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |S1is-am55hyf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |H13j-am5q21M) (:text |messages) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:by |root) (:at 1528529167100) (:text |options) (:id |r1bVMWZFgm)
|r $ {} (:type :leaf) (:by |root) (:at 1529229283855) (:text |on-remove!) (:id |r1sylnXWQ)
|v $ {} (:type :expr) (:id |r1AsW6m59hJM) (:by nil) (:at 1510939172486)
:data $ {}
|D $ {} (:type :leaf) (:text |list->) (:id |S1l9hyi2JG) (:by |root) (:at 1510940595266)
|j $ {} (:type :expr) (:id |rkg2WpQ95nJG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BJZhbTmq5nkM) (:text |{}) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:by |root) (:at 1528440292142) (:id |S1W2JUivxX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528440293907) (:text |:style) (:id |HyxnkLovx7)
|j $ {} (:type :expr) (:by |root) (:at 1528440294146) (:id |B170J8oDeQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528440294471) (:text |{}) (:id |ByfAkLiwl7)
|j $ {} (:type :expr) (:by |root) (:at 1528440294714) (:id |Byxyx8iPlm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528440296502) (:text |:overflow) (:id |SJ1lIiDem)
|j $ {} (:type :leaf) (:by |root) (:at 1528440298031) (:text |:hidden) (:id |HJbx8jvl7)
|r $ {} (:type :expr) (:id |ByT2-TQ552Jz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HJR3WT759nyM) (:text |->>) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |B1JpbaQqqhJG) (:text |messages) (:by |root) (:at 1528392415293)
|n $ {} (:type :leaf) (:by |root) (:at 1528391863867) (:text |vals) (:id |HJbJ6_kveX)
|o $ {} (:type :expr) (:by |root) (:at 1528526572242) (:id |B1lVewxFlm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528526574914) (:text |sort-by) (:id |ByVlvetx7)
|j $ {} (:type :expr) (:by |root) (:at 1528526578695) (:id |HyigDlKg7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528526578979) (:text |fn) (:id |BJqgvgtg7)
|j $ {} (:type :expr) (:by |root) (:at 1528526579306) (:id |H1mjlvlYxX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528526580619) (:text |message) (:id |ByGoewlFgX)
|r $ {} (:type :expr) (:by |root) (:at 1528527857922) (:id |HJl5enxKlQ)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528527865860) (:text |unchecked-negate) (:id |rkW5g2xKgm)
|T $ {} (:type :expr) (:by |root) (:at 1528526582102) (:id |HJeAxwetem)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528526583545) (:text |:time) (:id |ByRevxFgm)
|j $ {} (:type :leaf) (:by |root) (:at 1528526585591) (:text |message) (:id |BkxebDgKg7)
|r $ {} (:type :expr) (:id |Hkg6-aQ55h1z) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJWabT7cchkG) (:text |map-indexed) (:by |root) (:at 1528527730960)
|j $ {} (:type :expr) (:id |ByGpbpQqchyf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Hym6W675531z) (:text |fn) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |BJ46bamc921G) (:by nil) (:at 1510939172486)
:data $ {}
|L $ {} (:type :leaf) (:by |root) (:at 1528527732937) (:text |idx) (:id |SJg2ujlKgQ)
|j $ {} (:type :leaf) (:id |BJIpbaX55hJf) (:text |message) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |Syw6WTQ993JG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HyOTZaQcc3kG) (:text |[]) (:by |root) (:at 1510939172486)
|f $ {} (:type :expr) (:by |root) (:at 1528527840799) (:id |ByxYynetlQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528527842769) (:text |:id) (:id |HkWUiogFlQ)
|j $ {} (:type :leaf) (:by |root) (:at 1528527843825) (:text |message) (:id |HJ-s1ngteX)
|r $ {} (:type :expr) (:id |Sy5TWaQ5chyz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ryopbpmc9nkf) (:text |comp-message) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rJ26W67qq3kG) (:text |idx) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |BkTp-pXq92JG) (:text |message) (:by |root) (:at 1510939172486)
|v $ {} (:type :leaf) (:by |root) (:at 1528529174932) (:text |options) (:id |rJy7--te7)
|x $ {} (:type :leaf) (:by |root) (:at 1529229285752) (:text |on-remove!) (:id |HJlTyxnQWm)
:proc $ {} (:type :expr) (:id |SJDjbp7cqhJz) (:by nil) (:at 1510939172486)
:data $ {}
|respo-message.comp.container $ {}
:ns $ {} (:type :expr) (:id |SJnmc9hJz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Hklh7cqnkf) (:text |ns) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |HkZnQ993JG) (:text |respo-message.comp.container) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |SkAhQ5c3yz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |H11ghXc92kG) (:text |:require) (:by |root) (:at 1510939172486)
|n $ {} (:type :expr) (:id |B1W75cyDgQ) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJBn79c31f) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |S1I2Xq921M) (:text |respo.core) (:by |root) (:at 1540961221067)
|r $ {} (:type :leaf) (:id |Syv2m59n1f) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |BJ_2X55nkG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BJY3Xcqnkf) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rycnX5921M) (:text |defcomp) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |rkihXqq2yz) (:text |div) (:by |root) (:at 1510939172486)
|v $ {} (:type :leaf) (:id |HkhhQ5qnJG) (:text |span) (:by |root) (:at 1510939172486)
|w $ {} (:type :leaf) (:by |root) (:at 1528360071567) (:text |button) (:id |H1gRt2wLem)
|x $ {} (:type :leaf) (:id |rk6nXcqnyM) (:text |<>) (:by |root) (:at 1510939172486)
|yr $ {} (:type :expr) (:by |root) (:at 1528522362204) (:id |rJgMt81Fxm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528522363328) (:text |[]) (:id |rJgMt81Fxmleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528522367754) (:text |respo-message.action) (:id |B1V7Y8kKgX)
|r $ {} (:type :leaf) (:by |root) (:at 1528522370259) (:text |:as) (:id |SyzdK8kKlQ)
|v $ {} (:type :leaf) (:by |root) (:at 1528522372360) (:text |action) (:id |HJMctI1FgQ)
|yT $ {} (:type :expr) (:by |root) (:at 1528391780833) (:id |H1lTvdkwlX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391781174) (:text |[]) (:id |H1lTvdkwlXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528391785167) (:text |respo-message.schema) (:id |ryQpDO1Dg7)
|r $ {} (:type :leaf) (:by |root) (:at 1528391785573) (:text |:as) (:id |S1Bbdu1vl7)
|v $ {} (:type :leaf) (:by |root) (:at 1528391786594) (:text |schema) (:id |BkefOd1vxX)
|j $ {} (:type :expr) (:id |SJexn755h1f) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ-lnXq52Jf) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BJzenmc931z) (:text |hsl.core) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |S1Qg3m952yG) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |ByVx3Qc9nJf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Bkre2Qq5hkf) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SJIgnQc53yM) (:text |hsl) (:by |root) (:at 1510939172486)
|x $ {} (:type :expr) (:id |HypQq52Jf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Syl6X55nkM) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rybpQq9n1M) (:text |respo.comp.space) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |SkzaQqqnkG) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |B1X6Q59hkz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJNTm99nkz) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BJB6m992yf) (:text |=<) (:by |root) (:at 1510939172486)
|yj $ {} (:type :expr) (:by |root) (:at 1528440220433) (:id |BJg4jHovgX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528440220758) (:text |[]) (:id |BJg4jHovgXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528440222223) (:text "|\"lorem-ipsum") (:id |SJZHsBsvxX)
|r $ {} (:type :leaf) (:by |root) (:at 1528440223110) (:text |:as) (:id |HkwoHiveX)
|v $ {} (:type :leaf) (:by |root) (:at 1528440236215) (:text |lorem-ipsum) (:id |H1mDjrswem)
|yx $ {} (:type :expr) (:by |root) (:at 1528525160605) (:id |S1b_ZgFgm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528525160919) (:text |[]) (:id |S1b_ZgFgmleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528525180385) (:text |respo-message.config) (:id |ByGbdWlKgm)
|r $ {} (:type :leaf) (:by |root) (:at 1528525197989) (:text |:as) (:id |By7XuZetx7)
|t $ {} (:type :leaf) (:by |root) (:at 1528525200155) (:text |config) (:id |SJfUcWgtx7)
|r $ {} (:type :expr) (:id |HyPgnm5qnJM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJue2m5ch1M) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |S1Fl2Xc92yM) (:text |respo-ui.core) (:by |root) (:at 1516546723109)
|r $ {} (:type :leaf) (:id |B15eh7cq2yz) (:text |:as) (:by |root) (:at 1510939172486)
|v $ {} (:type :leaf) (:id |Skjx2m95nyf) (:text |ui) (:by |root) (:at 1510939172486)
|y $ {} (:type :expr) (:id |SkLTm5c2Jf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJwaQc5nkz) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |S1dTQ5q2yG) (:text |respo-message.comp.messages) (:by |root) (:at 1528391846546)
|r $ {} (:type :leaf) (:id |HkYTmcq2yz) (:text |:refer) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |ryqTX55nkz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HkiaQ95h1z) (:text |[]) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |By2T75531f) (:text |comp-messages) (:by |root) (:at 1528391843482)
|yy $ {} (:type :expr) (:by |root) (:at 1528911421970) (:id |H1US8CClX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911422344) (:text |[]) (:id |H1US8CClXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528911424632) (:text "|\"shortid") (:id |HJvrLAAlm)
|r $ {} (:type :leaf) (:by |root) (:at 1528911425311) (:text |:as) (:id |r1ZtHI0RlX)
|v $ {} (:type :leaf) (:by |root) (:at 1528911429741) (:text |shortid) (:id |S1BFB8AAeQ)
|yv $ {} (:type :expr) (:by |root) (:at 1528525136401) (:id |B1euLZgYgm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528525136709) (:text |[]) (:id |B1euLZgYgmleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528525141798) (:text |respo.comp.inspect) (:id |By-tLZgKe7)
|r $ {} (:type :leaf) (:by |root) (:at 1528525143311) (:text |:refer) (:id |r1-0UWgtgQ)
|v $ {} (:type :expr) (:by |root) (:at 1528525143509) (:id |BySywZgKgQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528525143739) (:text |[]) (:id |Hy4JwWgFxX)
|j $ {} (:type :leaf) (:by |root) (:at 1528525146386) (:text |comp-inspect) (:id |rJ-xvZeFxQ)
:defs $ {}
|comp-container $ {} (:type :expr) (:id |rkOlTQc53Jz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |H1YxT7c921f) (:text |defcomp) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |H1claQ9cn1G) (:text |comp-container) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |Syje6Q55n1M) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HJhlT7qcnJG) (:text |store) (:by |root) (:at 1510939172486)
|v $ {} (:type :expr) (:id |ry6e679521f) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ByRl6X9q2kz) (:text |div) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |BkJbaQc92yM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SkxZaQcqnyz) (:text |{}) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |rkWWpQcq2yz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJfbTQq5hJf) (:text |:style) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |SJmbaQcq3kz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HyEZTm552yf) (:text |merge) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SJHbp79qhJM) (:text |ui/global) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |BJLWTm99nJf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BkP-6Xcq21f) (:text |{}) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |r1OZ6Xc931G) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJFWpQ5qh1f) (:text |:padding) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |rk5bp79c3Jz) (:text |16) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:by |root) (:at 1528360074639) (:id |r1lQqnw8gQ)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528360076063) (:text |div) (:id |BJZXchwLg7)
|L $ {} (:type :expr) (:by |root) (:at 1528360076299) (:id |rkXE93vLeQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360076602) (:text |{}) (:id |ByfVc2DIgQ)
|j $ {} (:type :expr) (:by |root) (:at 1528360077111) (:id |SyMH5nvIlm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360077799) (:text |:style) (:id |rJWH53wLg7)
|j $ {} (:type :leaf) (:by |root) (:at 1528360079091) (:text |ui/row) (:id |HyMLc2wLem)
|T $ {} (:type :expr) (:id |BkjbpXc52kz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HkhWpQ59nJG) (:text |button) (:by |root) (:at 1528360068620)
|j $ {} (:type :expr) (:id |Hka-aQq9n1M) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ0Wa79c3kG) (:text |{}) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |Sk1GTQ9qhJM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |BkeG6Q952kM) (:text |:style) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |BkZfpQ952yf) (:text |ui/button) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |SyidEgCXf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |ryvfT75q2JM) (:text |:on-click) (:by |root) (:at 1515222127924)
|j $ {} (:type :expr) (:by |root) (:at 1528391704977) (:id |rk-Xd1Dx7)
:data $ {}
|T $ {} (:type :leaf) (:id |BkOMp7c52yz) (:text |fn) (:by |root) (:at 1528391705937)
|j $ {} (:type :expr) (:by |root) (:at 1528391706194) (:id |BkNMmOkPl7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391706408) (:text |e) (:id |SkQfQO1De7)
|j $ {} (:type :leaf) (:by |root) (:at 1528391707090) (:text |d!) (:id |ryUGQ_1wg7)
|r $ {} (:type :leaf) (:by |root) (:at 1528391707767) (:text |m!) (:id |S1ZXmOyDlQ)
|r $ {} (:type :expr) (:by |root) (:at 1528911625319) (:id |HJlZMDCAlm)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528911626284) (:text |let) (:id |SJMGP0AgX)
|L $ {} (:type :expr) (:by |root) (:at 1528911626492) (:id |H14GGvC0em)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1528911626798) (:id |BJmGDACx7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911629316) (:text |new-token) (:id |ry7zfwCAgm)
|j $ {} (:type :expr) (:by |root) (:at 1528911434641) (:id |SkymPRAgX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911435942) (:text |.generate) (:id |S1XMLLRCgX)
|j $ {} (:type :leaf) (:by |root) (:at 1528911436805) (:text |shortid) (:id |rk74UIRAxQ)
|T $ {} (:type :expr) (:id |S1HmOJwgQ) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |S1rx6Q9cnkf) (:text |d!) (:by |root) (:at 1528391710641)
|j $ {} (:type :leaf) (:id |Hk8g6m9c2yM) (:text |action/create) (:by |root) (:at 1528522358233)
|r $ {} (:type :expr) (:by |root) (:at 1528391771320) (:id |S1lQP_kvlX)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528391772252) (:text |merge) (:id |ryNDd1DgQ)
|L $ {} (:type :leaf) (:by |root) (:at 1528391776454) (:text |schema/message) (:id |HJHVPOyDeQ)
|T $ {} (:type :expr) (:by |root) (:at 1528391713465) (:id |SylF7uJDxX)
:data $ {}
|T $ {} (:type :leaf) (:id |HJPl6755nyz) (:text |{}) (:by |root) (:at 1528391714424)
|b $ {} (:type :expr) (:by |root) (:at 1528911433032) (:id |H1eZULCAgX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911433875) (:text |:token) (:id |H1eZULCAgXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528911636983) (:text |new-token) (:id |HJesfwRCem)
|j $ {} (:type :expr) (:by |root) (:at 1528391714762) (:id |ryesmOJPxQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391716032) (:text |:text) (:id |HkiXukDeQ)
|j $ {} (:type :expr) (:by |root) (:at 1528440216633) (:id |HJWoHowe7)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572281380281) (:text |lorem-ipsum/loremIpsum) (:id |rJGhmukvx7)
|j $ {} (:type :expr) (:by |root) (:at 1528911601205) (:id |HJlzXPCRgQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911604088) (:text |js/setTimeout) (:id |ByltxPC0gXleaf)
|j $ {} (:type :expr) (:by |root) (:at 1528911604504) (:id |ByP3xwRCeX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911604811) (:text |fn) (:id |rJInxwRAx7)
|j $ {} (:type :expr) (:by |root) (:at 1528911607478) (:id |S1-ybwCAgm)
:data $ {}
|r $ {} (:type :expr) (:by |root) (:at 1528911614241) (:id |S1gUWDA0lm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911615403) (:text |d!) (:id |S1gUWDA0lmleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528911682992) (:text |action/remove-one) (:id |rydZw00xm)
|r $ {} (:type :expr) (:by |root) (:at 1528911619119) (:id |B17j-vA0xX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911619885) (:text |{}) (:id |ByGjZDACxQ)
|j $ {} (:type :expr) (:by |root) (:at 1528911622108) (:id |SJx0bPAAlX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911623072) (:text |:token) (:id |Bk-3WDCCeX)
|j $ {} (:type :leaf) (:by |root) (:at 1528911645496) (:text |new-token) (:id |B1fVmDAReQ)
|r $ {} (:type :leaf) (:by |root) (:at 1528911612852) (:text |2000) (:id |SkV-DR0eX)
|r $ {} (:type :expr) (:id |BkYf6mqc3JG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |B1qfpQ992kz) (:text |<>) (:by |root) (:at 1510939172486)
|r $ {} (:type :leaf) (:id |H1nMpm5q3yf) (:text ||Try) (:by |root) (:at 1528360120056)
|j $ {} (:type :expr) (:by |root) (:at 1528360080499) (:id |SkZuq3DIx7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360081658) (:text |=<) (:id |SkZuq3DIx7leaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528360082338) (:text |16) (:id |SJxq9nP8g7)
|r $ {} (:type :leaf) (:by |root) (:at 1528360082910) (:text |nil) (:id |BJX59nvLgm)
|r $ {} (:type :expr) (:by |root) (:at 1528360083634) (:id |Sy29hw8eX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360084427) (:text |button) (:id |Sy29hw8eXleaf)
|j $ {} (:type :expr) (:by |root) (:at 1528360084625) (:id |BJTqnvLgX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360085183) (:text |{}) (:id |rJU3c3v8em)
|j $ {} (:type :expr) (:by |root) (:at 1528360085440) (:id |SJX693w8lm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360086086) (:text |:style) (:id |HJG6qhP8xQ)
|j $ {} (:type :leaf) (:by |root) (:at 1528360089803) (:text |ui/button) (:id |B1ER53vUxQ)
|r $ {} (:type :expr) (:by |root) (:at 1528360091913) (:id |Sy4i2wLxX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360093988) (:text |:on-click) (:id |Sy4i2wLxXleaf)
|j $ {} (:type :expr) (:by |root) (:at 1528360094752) (:id |Hyxvj3PUgX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360095043) (:text |fn) (:id |BkPjhPUgm)
|j $ {} (:type :expr) (:by |root) (:at 1528360095837) (:id |Syus3PIeQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360095331) (:text |e) (:id |rJXDj3DLxm)
|j $ {} (:type :leaf) (:by |root) (:at 1528360097401) (:text |d!) (:id |Bke_s2v8g7)
|r $ {} (:type :leaf) (:by |root) (:at 1528360098482) (:text |m!) (:id |H1cshvUxX)
|r $ {} (:type :expr) (:by |root) (:at 1528360098965) (:id |SJgionwUxQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360099989) (:text |d!) (:id |SJgionwUxQleaf)
|f $ {} (:type :leaf) (:by |root) (:at 1528522355148) (:text |action/clear) (:id |SkGazkFlm)
|r $ {} (:type :leaf) (:by |root) (:at 1528360104404) (:text |nil) (:id |r1feh2DLeX)
|r $ {} (:type :expr) (:by |root) (:at 1528360106115) (:id |rkMhnvLlQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528360106494) (:text |<>) (:id |rkMhnvLlQleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528360109990) (:text "|\"Clear") (:id |SkQh3vIl7)
|v $ {} (:type :expr) (:id |S1AfpX9chJG) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |B11XaXq5nkf) (:text |comp-messages) (:by |root) (:at 1528391848689)
|j $ {} (:type :expr) (:id |rkxQ6QcqnJf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SybQ6X5qhkM) (:text |:messages) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SkfXT7q5nJM) (:text |store) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:by |root) (:at 1528529145455) (:id |By-ZWb-Kxm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528529145892) (:text |{}) (:id |HkgW-WZYxX)
|j $ {} (:type :expr) (:by |root) (:at 1528529146812) (:id |HyWm-bZKxQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528529159567) (:text |:bottom?) (:id |SkmWZ-YxQ)
|j $ {} (:type :leaf) (:by |root) (:at 1528529235966) (:text |true) (:id |S1exzbWKxQ)
|v $ {} (:type :expr) (:by |root) (:at 1529229242024) (:id |ByZf6k2XbQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529229247542) (:text |fn) (:id |ByZf6k2XbQleaf)
|j $ {} (:type :expr) (:by |root) (:at 1529229247809) (:id |Skbdak27ZX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529229248737) (:text |info) (:id |B1l_Ty3mbm)
|j $ {} (:type :leaf) (:by |root) (:at 1529229250671) (:text |d!) (:id |rk5aynXW7)
|r $ {} (:type :leaf) (:by |root) (:at 1529229251388) (:text |m!) (:id |B1esTJ27bQ)
|r $ {} (:type :expr) (:by |root) (:at 1529229252363) (:id |HJx3T137WQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529229278303) (:text |d!) (:id |HJx3T137WQleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1529229260160) (:text |action/remove-one) (:id |rkg-012Q-7)
|r $ {} (:type :leaf) (:by |root) (:at 1529229263447) (:text |info) (:id |BJUAJ27bX)
|x $ {} (:type :expr) (:by |root) (:at 1528525148231) (:id |rygEv-gtlQ)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528525150836) (:text |when) (:id |SkZ4wWeKxX)
|L $ {} (:type :leaf) (:by |root) (:at 1528525172904) (:text |config/dev?) (:id |rymDDZlFeX)
|T $ {} (:type :expr) (:by |root) (:at 1528525121704) (:id |Sy9BZgteX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528525123974) (:text |comp-inspect) (:id |Sy9BZgteXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528525126530) (:text "|\"messages") (:id |H1z2rZlYem)
|r $ {} (:type :expr) (:by |root) (:at 1528525126767) (:id |H1-18beKlX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528525127990) (:text |:messages) (:id |rJx1UblYg7)
|j $ {} (:type :leaf) (:by |root) (:at 1528525129551) (:text |store) (:id |S1EeIWltx7)
|v $ {} (:type :leaf) (:by |root) (:at 1528525131089) (:text |nil) (:id |HyZfL-xKeX)
:proc $ {} (:type :expr) (:id |Hy66Xqqnkz) (:by nil) (:at 1510939172486)
:data $ {}
|respo-message.updater $ {}
:ns $ {} (:type :expr) (:id |HJyAZTQqqh1M) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |HyeRWTXcqnkG) (:text |ns) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |SkZA-TQ592kf) (:text |respo-message.updater) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:by |root) (:at 1528520657102) (:id |B1WtRkJYeX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520657805) (:text |:require) (:id |BJgYR1kFeQ)
|j $ {} (:type :expr) (:by |root) (:at 1528520658056) (:id |ByS5R11FxX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520658263) (:text |[]) (:id |r14qR11KeQ)
|j $ {} (:type :leaf) (:by |root) (:at 1528520662229) (:text |respo-message.schema) (:id |rJO9AkJFgQ)
|r $ {} (:type :leaf) (:by |root) (:at 1528520663907) (:text |:as) (:id |SkyJlkFl7)
|v $ {} (:type :leaf) (:by |root) (:at 1528520664908) (:text |schema) (:id |ByXeJgJKx7)
|r $ {} (:type :expr) (:by |root) (:at 1528520658056) (:id |S1i5q27bX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520658263) (:text |[]) (:id |r14qR11KeQ)
|j $ {} (:type :leaf) (:by |root) (:at 1529232022539) (:text |respo-message.action) (:id |rJO9AkJFgQ)
|r $ {} (:type :leaf) (:by |root) (:at 1528520663907) (:text |:as) (:id |SkyJlkFl7)
|v $ {} (:type :leaf) (:by |root) (:at 1529232026000) (:text |action) (:id |ByXeJgJKx7)
:defs $ {}
|update-messages $ {} (:type :expr) (:by |root) (:at 1528520592927) (:id |SJlK911Kl7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520592927) (:text |defn) (:id |BybKqkJKxX)
|j $ {} (:type :leaf) (:by |root) (:at 1528520592927) (:text |update-messages) (:id |HkGtqykYeX)
|r $ {} (:type :expr) (:by |root) (:at 1528520592927) (:id |HJQt5yJYeX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520705287) (:text |messages) (:id |Hke5sJytxX)
|r $ {} (:type :leaf) (:by |root) (:at 1528520617160) (:text |op) (:id |BJl31JYxm)
|v $ {} (:type :leaf) (:by |root) (:at 1528520619128) (:text |op-data) (:id |BkWZhk1tg7)
|x $ {} (:type :leaf) (:by |root) (:at 1528520620084) (:text |op-id) (:id |SkHQnkJFeQ)
|y $ {} (:type :leaf) (:by |root) (:at 1528520621396) (:text |op-time) (:id |ByGV2k1KlX)
|v $ {} (:type :expr) (:by |root) (:at 1528520622995) (:id |Syg_9byFl7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520626421) (:text |cond) (:id |HJxPh1yKgQleaf)
|j $ {} (:type :expr) (:by |root) (:at 1528520951911) (:id |H1leb-ktgX)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1528520633640) (:id |SJMTykKeQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520643056) (:text |=) (:id |ByWTkJKem)
|j $ {} (:type :leaf) (:by |root) (:at 1528520650756) (:text |op) (:id |SyeZCy1Kl7)
|r $ {} (:type :leaf) (:by |root) (:at 1529232013449) (:text |action/clear) (:id |BkZyqq2QbX)
|j $ {} (:type :expr) (:by |root) (:at 1528520953135) (:id |r1bWZbkFl7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520940840) (:text |{}) (:id |H1WVlZyKxX)
|n $ {} (:type :expr) (:by |root) (:at 1528520941547) (:id |rk8gbJtg7)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1528520942532) (:id |SywlWJYx7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520943883) (:text |=) (:id |rk8gbJtg7leaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528520945898) (:text |op) (:id |HJfueZkYxm)
|r $ {} (:type :leaf) (:by |root) (:at 1529232033353) (:text |action/create) (:id |HJgvj93Xb7)
|j $ {} (:type :expr) (:by |root) (:at 1528520954593) (:id |Sye7bWytxQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520955510) (:text |assoc) (:id |HkGplbktgQ)
|j $ {} (:type :leaf) (:by |root) (:at 1528520958977) (:text |messages) (:id |BJV-byKxX)
|r $ {} (:type :leaf) (:by |root) (:at 1528520962819) (:text |op-id) (:id |Hydb-JYxQ)
|v $ {} (:type :expr) (:by |root) (:at 1528520974260) (:id |SylLGbJYe7)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528520975207) (:text |merge) (:id |Hywz-JFlm)
|L $ {} (:type :leaf) (:by |root) (:at 1528520979417) (:text |schema/message) (:id |SJdzZkYxQ)
|P $ {} (:type :leaf) (:by |root) (:at 1528520986621) (:text |op-data) (:id |rkfmbyFeX)
|T $ {} (:type :expr) (:by |root) (:at 1528520987507) (:id |SkG7X-1KeQ)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528520988168) (:text |{}) (:id |r1NQWyKxX)
|T $ {} (:type :expr) (:by |root) (:at 1528391665161) (:id |SkWzZkFem)
:data $ {}
|j $ {} (:type :leaf) (:by |root) (:at 1528391668989) (:text |:id) (:id |rJ3gdJDg7)
|r $ {} (:type :leaf) (:by |root) (:at 1528391669686) (:text |op-id) (:id |SJzTguJwem)
|j $ {} (:type :expr) (:by |root) (:at 1528520992883) (:id |ByeK7ZktxX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520993547) (:text |:time) (:id |ByeK7ZktxXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528520995423) (:text |op-time) (:id |SJxqXbkteX)
|p $ {} (:type :expr) (:by |root) (:at 1528521001637) (:id |SkGNbkKg7)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1528521003013) (:id |B1WXNW1tlm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528521001927) (:text |=) (:id |SkGNbkKg7leaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528521005811) (:text |op) (:id |H1MQE-Jtl7)
|r $ {} (:type :leaf) (:by |root) (:at 1529232040792) (:text |action/remove-one) (:id |SJpichQZQ)
|j $ {} (:type :expr) (:by |root) (:at 1528911484992) (:id |H1HFIACx7)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528911486734) (:text |if) (:id |Hy8YLACg7)
|L $ {} (:type :expr) (:by |root) (:at 1528911486964) (:id |SkGwKI0CxX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911487642) (:text |some?) (:id |S1WDtUARgm)
|j $ {} (:type :expr) (:by |root) (:at 1528911487882) (:id |rJWdK8C0gX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911488713) (:text |:token) (:id |SyxutL00gX)
|j $ {} (:type :leaf) (:by |root) (:at 1528911489624) (:text |op-data) (:id |Sy-ttIARlQ)
|P $ {} (:type :expr) (:by |root) (:at 1528911490784) (:id |SJsK8A0eX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911499863) (:text |->>) (:id |SJsK8A0eXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528911501964) (:text |messages) (:id |ByWEc8CAgm)
|n $ {} (:type :expr) (:by |root) (:at 1528911507933) (:id |Bkg29UACx7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911509987) (:text |filter) (:id |H12qUCCxm)
|j $ {} (:type :expr) (:by |root) (:at 1528911510233) (:id |SJH0cUC0gQ)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528911522116) (:text |fn) (:id |Sk9sL00gm)
|T $ {} (:type :expr) (:by |root) (:at 1528911522742) (:id |B1xjo8CAgQ)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1528911510421) (:id |HJIA9L0AeQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911511652) (:text |[]) (:id |SJN09I0Clm)
|j $ {} (:type :leaf) (:by |root) (:at 1528911512828) (:text |k) (:id |ryZei8RRgQ)
|r $ {} (:type :leaf) (:by |root) (:at 1528911517321) (:text |message) (:id |HybZsLCRe7)
|j $ {} (:type :expr) (:by |root) (:at 1528911528922) (:id |r1WnLRRl7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911560373) (:text |not=) (:id |r1WnLRRl7leaf)
|j $ {} (:type :expr) (:by |root) (:at 1528911562475) (:id |ryxGAUARxX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911563383) (:text |:token) (:id |SyGRI0Alm)
|j $ {} (:type :leaf) (:by |root) (:at 1528911565499) (:text |op-data) (:id |Bk40IC0xm)
|r $ {} (:type :expr) (:by |root) (:at 1528911566942) (:id |r1gDCUR0eQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911567763) (:text |:token) (:id |HkPCUARe7)
|j $ {} (:type :leaf) (:by |root) (:at 1528911568762) (:text |message) (:id |HJzORUARlQ)
|r $ {} (:type :expr) (:by |root) (:at 1528911503219) (:id |HkWDqLRAxQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911504710) (:text |into) (:id |BJNU5L0Alm)
|j $ {} (:type :expr) (:by |root) (:at 1528911505478) (:id |HkfYq8ACe7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911744572) (:text |{}) (:id |HkZY58C0xm)
|T $ {} (:type :expr) (:by |root) (:at 1528521023227) (:id |SJxDSZ1KeX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528521026232) (:text |dissoc) (:id |SJxDSZ1KeXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528521028520) (:text |messages) (:id |SJm9Sbktgm)
|r $ {} (:type :expr) (:by |root) (:at 1528521502181) (:id |B1lImm1teX)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1528521503211) (:text |:id) (:id |BJD7m1FgX)
|T $ {} (:type :leaf) (:by |root) (:at 1528521033483) (:text |op-data) (:id |S1gTHZkYeQ)
|r $ {} (:type :expr) (:by |root) (:at 1528520635271) (:id |Bkx76yJFeX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528520637714) (:text |:else) (:id |Bkx76yJFeXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528521109881) (:text |messages) (:id |B1zUpkkKl7)
:proc $ {} (:type :expr) (:id |SJfCZ67cc3JG) (:by nil) (:at 1510939172486)
:data $ {}
|respo-message.schema $ {}
:ns $ {} (:type :expr) (:id |HkqxzaXcchJz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rkilz6Xq9hyz) (:text |ns) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |Hkheza7c9nkG) (:text |respo-message.schema) (:by |root) (:at 1510939172486)
:defs $ {}
|message $ {} (:type :expr) (:by |root) (:at 1528391493047) (:id |S1eTHv1DgQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391495172) (:text |def) (:id |S1Z6BPyvlX)
|j $ {} (:type :leaf) (:by |root) (:at 1528391493047) (:text |message) (:id |BJGaBwkDem)
|r $ {} (:type :expr) (:by |root) (:at 1528391493047) (:id |Sk76Bwkvxm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391496919) (:text |{}) (:id |SyWlIPJwgX)
|j $ {} (:type :expr) (:by |root) (:at 1528391497845) (:id |HkGIPyvx7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391500176) (:text |:id) (:id |SkxZ8w1veQ)
|j $ {} (:type :leaf) (:by |root) (:at 1528391501274) (:text |nil) (:id |HyXVUwJwgQ)
|n $ {} (:type :expr) (:by |root) (:at 1528911373534) (:id |HkLfURCx7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528911375030) (:text |:token) (:id |HkLfURCx7leaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528911377027) (:text |nil) (:id |rkeDzURRgX)
|r $ {} (:type :expr) (:by |root) (:at 1528391501803) (:id |rkxULw1PgX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391503060) (:text |:text) (:id |rkxULw1PgXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528391504106) (:text "|\"") (:id |B1mw8v1weX)
|v $ {} (:type :expr) (:by |root) (:at 1528391504542) (:id |HJFLDJvg7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391506399) (:text |:time) (:id |HJFLDJvg7leaf)
|j $ {} (:type :leaf) (:by |root) (:at 1528391510504) (:text |0) (:id |HkVqIDJPeQ)
|x $ {} (:type :expr) (:by |root) (:at 1528391511114) (:id |S1ekDDyDxm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391513989) (:text |:style) (:id |S1ekDDyDxmleaf)
|j $ {} (:type :expr) (:by |root) (:at 1528391514242) (:id |S1rMvPJDgX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528391514562) (:text |{}) (:id |SyEMPvyPe7)
|store $ {} (:type :expr) (:id |SyAeMTQ5qh1M) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |rJk-zpmcc3JM) (:text |def) (:by |root) (:at 1510939172486)
|j $ {} (:type :leaf) (:id |S1eZzTm9cnJM) (:text |store) (:by |root) (:at 1510939172486)
|r $ {} (:type :expr) (:id |ryZZfaQ953Jz) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |r1MWG6X953yz) (:text |{}) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |BkQWz6mcc3kf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |H1NWza7q9h1f) (:text |:messages) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |rkrbf6X99nyf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SyI-faQq5hJM) (:text |{}) (:by |root) (:at 1528391593443)
|r $ {} (:type :expr) (:id |rJDWf6Qc92yf) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |Bk_-fpmcchkG) (:text |:states) (:by |root) (:at 1510939172486)
|j $ {} (:type :expr) (:id |rkF-MpXc53kM) (:by nil) (:at 1510939172486)
:data $ {}
|T $ {} (:type :leaf) (:id |SJcZf6Xcqn1f) (:text |{}) (:by |root) (:at 1510939172486)
:proc $ {} (:type :expr) (:id |BJaezpQ9931G) (:by nil) (:at 1510939172486)
:data $ {}
|respo-message.config $ {}
:ns $ {} (:type :expr) (:by |root) (:at 1528303955753) (:id |HkehUW5re7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528303955753) (:text |ns) (:id |S1b2I-cHg7)
|j $ {} (:type :leaf) (:by |root) (:at 1528303955753) (:text |respo-message.config) (:id |rJG2IW9Hl7)
:defs $ {}
|cdn? $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280494836) (:id |JD3ExNvWo0)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |def) (:id |FOlf6T1Vbv)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |cdn?) (:id |HXdKB5TkdH)
|r $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280494836) (:id |Xg6xzeHdUm)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |cond) (:id |SJi_t9hKdl)
|j $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280494836) (:id |fVbMhsZnFG)
:data $ {}
|T $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280494836) (:id |3RBLefK0QD)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |exists?) (:id |CAa3XNuZCZ)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |js/window) (:id |pWr5n9UC-J)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |false) (:id |9a9NC9sJKl)
|r $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280494836) (:id |xwioVYaeyK)
:data $ {}
|T $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280494836) (:id |ZJwycv4reb)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |exists?) (:id |8MKEzhu_Vh)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |js/process) (:id |ESJJ09PayL)
|j $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280494836) (:id |XsbrtrWOGiI)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |=) (:id |ElS_AvwhdXB)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text "|\"true") (:id |u8jHqp6Us_6)
|r $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |js/process.env.cdn) (:id |LAT9_u95xcp)
|v $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280494836) (:id |rqncH6CadTP)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |:else) (:id |dgtnzP2_DuE)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280494836) (:text |false) (:id |CuWFUKJxygk)
|dev? $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280501951) (:id |XJDLmVMgJP)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280501951) (:text |def) (:id |_SSMdQNtEJ)
|j $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280501951) (:text |dev?) (:id |1t2N4uXHcr)
|r $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280501951) (:id |cgLZrU6mns)
:data $ {}
|T $ {} (:type :leaf) (:by |5tTrKalIE) (:at 1572280501951) (:text |let) (:id |wXlQg9uzUk)
|j $ {} (:type :expr) (:by |5tTrKalIE) (:at 1572280501951) (:id |EWwhFE77_c)
:data $ {}