-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
2289 lines (2288 loc) · 205 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 $ {}
|BJMyLOplX $ {} (:name |chen) (:id |BJMyLOplX) (:nickname |chen) (:avatar nil) (:password |d41d8cd98f00b204e9800998ecf8427e) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |respo-router)
:files $ {}
|respo-router.comp.container $ {}
:ns $ {} (:type :expr) (:id |BJrj0NOc-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HygBoRVdcW) (:text |ns) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BJbBiCVO9Z) (:text |respo-router.comp.container) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |BkMHoCNO5-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r17Hi04_5-) (:text |:require) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |HkESjRN_9Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BJBBsAEu5b) (:text |[]) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |B1UroCEO5Z) (:text |hsl.core) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |H1vHiRVd5Z) (:text |:refer) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |BJOroRNdq-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJKrsC4_cW) (:text |[]) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BkcBj0VO9Z) (:text |hsl) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |B1eLoqNA6b) (:by |root) (:at 1505411545431)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |ByrWJfHu5-) (:by |root) (:at 1505411546867)
|j $ {} (:type :leaf) (:text |respo.core) (:id |BkG7yMrdcZ) (:by |BJMyLOplX) (:at 1567013663311)
|r $ {} (:type :leaf) (:text |:refer) (:id |HkikzrO5-) (:by |root) (:at 1505411555446)
|v $ {} (:type :expr) (:id |Syn1MH_5b) (:by |root) (:at 1505411555649)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |r1Uj1MSu5-) (:by |root) (:at 1505411555809)
|j $ {} (:type :leaf) (:text |defcomp) (:id |HyMhyGBd9Z) (:by |root) (:at 1505411557053)
|r $ {} (:type :leaf) (:text |div) (:id |By0JMH_cb) (:by |root) (:at 1505411558572)
|v $ {} (:type :leaf) (:text |span) (:id |HkgklMHu5-) (:by |root) (:at 1505411559177)
|w $ {} (:type :leaf) (:text |cursor->) (:id |rkxCwwiYqb) (:by |root) (:at 1505503080205)
|wT $ {} (:type :leaf) (:text |pre) (:id |rk-fmJiia-) (:by |root) (:at 1508777754767)
|wj $ {} (:type :leaf) (:text |a) (:id |B1Js_QTaW) (:by |root) (:at 1508878486740)
|x $ {} (:type :leaf) (:text |<>) (:id |rJWxfrO9Z) (:by |root) (:at 1505411560966)
|v $ {} (:type :expr) (:id |rkVeBsCE_qb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |S1SeHsRVuqZ) (:text |[]) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |Hy8erjRVucZ) (:text |respo.comp.space) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |HkPeHo04u5b) (:text |:refer) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |SyOgBjRVd9b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |ryKxriRVO5-) (:text |[]) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SyqgrsRNuqZ) (:text |=<) (:by |root) (:at 1505411564162)
|yT $ {} (:type :expr) (:id |r1Y-Si04u9-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ5-riCEucW) (:text |[]) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BkiWHjRNuq-) (:text |respo-ui.core) (:by |BJMyLOplX) (:at 1528821217854)
|r $ {} (:type :leaf) (:id |S13ZSjCVu9Z) (:text |:as) (:by |root) (:at 1505410717327)
|v $ {} (:type :leaf) (:id |rkTZSi04u5Z) (:text |ui) (:by |root) (:at 1505410717327)
|yj $ {} (:type :expr) (:id |ry_kksjTZ) (:by |root) (:at 1508777695733)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |ry_kksjTZleaf) (:by |root) (:at 1508777696359)
|j $ {} (:type :leaf) (:text |fipp.edn) (:id |ryf_ykjs6-) (:by |root) (:at 1508777698868)
|r $ {} (:type :leaf) (:text |:refer) (:id |S1Ms11oi6Z) (:by |root) (:at 1508777700850)
|v $ {} (:type :expr) (:id |H1NpJkjipb) (:by |root) (:at 1508777701066)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |r1ygkos6b) (:by |root) (:at 1508777703505)
|j $ {} (:type :leaf) (:text |pprint) (:id |r1gg1iip-) (:by |root) (:at 1508777705857)
|yv $ {} (:type :expr) (:id |r1-V1pXTa-) (:by |root) (:at 1508879580428)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |r1-V1pXTa-leaf) (:by |root) (:at 1508879580972)
|j $ {} (:type :leaf) (:text |respo-router.format) (:id |BJbHJTXT6Z) (:by |root) (:at 1511886290783)
|r $ {} (:type :leaf) (:text |:refer) (:id |BJaJp7paZ) (:by |root) (:at 1508879589528)
|v $ {} (:type :expr) (:id |By-JeTmT6W) (:by |root) (:at 1508879591491)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |BJgAypmT6Z) (:by |root) (:at 1508879590406)
|j $ {} (:type :leaf) (:text |router->string) (:id |rkxe6Q66b) (:by |root) (:at 1508879593901)
|r $ {} (:type :leaf) (:text |strip-sharp) (:id |BJgETZoeG) (:by |root) (:at 1511886119967)
|yx $ {} (:type :expr) (:id |SJJ7am6p-) (:by |root) (:at 1508879638522)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SJJ7am6p-leaf) (:by |root) (:at 1508879639335)
|j $ {} (:type :leaf) (:text |respo-router.schema) (:id |BJx7pXTpZ) (:by |root) (:at 1508879643437)
|r $ {} (:type :leaf) (:text |:refer) (:id |HJEXpQ6aW) (:by |root) (:at 1508879646598)
|v $ {} (:type :expr) (:id |S1bvmT7ap-) (:by |root) (:at 1508879646792)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SygPQ6mTpZ) (:by |root) (:at 1508879646969)
|j $ {} (:type :leaf) (:text |dict) (:id |BJEv76Qa6Z) (:by |root) (:at 1508879648017)
:defs $ {}
|comp-container $ {} (:type :expr) (:id |SkKwHsRE_cZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BJcPBjRNu5-) (:text |defcomp) (:by |root) (:at 1505411502930)
|j $ {} (:type :leaf) (:id |r1oPBi0VO9Z) (:text |comp-container) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |SywKBiA4_qZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |By_tSjCVdc-) (:text |store) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |BJeUBzrOq-) (:by |root) (:at 1505411645754)
:data $ {}
|D $ {} (:type :leaf) (:text |let) (:id |rJWUHGSu9W) (:by |root) (:at 1505411646482)
|L $ {} (:type :expr) (:id |ByvHfr_cZ) (:by |root) (:at 1505411646653)
:data $ {}
|T $ {} (:type :expr) (:id |r1lPSzH_9-) (:by |root) (:at 1505411646913)
:data $ {}
|T $ {} (:type :leaf) (:text |states) (:id |HkHISMH_9Z) (:by |root) (:at 1505411647784)
|j $ {} (:type :expr) (:id |S1NuBGBd5b) (:by |root) (:at 1505411648463)
:data $ {}
|T $ {} (:type :leaf) (:text |:states) (:id |ryMdHGB_c-) (:by |root) (:at 1505411650181)
|j $ {} (:type :leaf) (:text |store) (:id |r1-qrMHd5b) (:by |root) (:at 1505411652182)
|T $ {} (:type :expr) (:id |rkRYSjCVu9Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJkcBiA4OcZ) (:text |div) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BkgcBiCEd9W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r1W5HjR4_5b) (:text |{}) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |rJGcSoA4u9b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJX9ro0V_cb) (:text |:style) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BkEqBsCEO9W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |B1SqSj0Vu5Z) (:text |merge) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |ryI9BsRNO5-) (:text |ui/global) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |BkbxVYQT6-) (:by |root) (:at 1508878632082)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |BJglVY7Ta-) (:by |root) (:at 1508878633062)
|j $ {} (:type :expr) (:id |r1gMNFmTp-) (:by |root) (:at 1508878634031)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:id |B1M4Fmppb) (:by |root) (:at 1508878635168)
|j $ {} (:type :leaf) (:text |16) (:id |SJB7NK7Tab) (:by |root) (:at 1508878641988)
|l $ {} (:type :expr) (:id |BklFo7daaZ) (:by |root) (:at 1508878234365)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |H1xGoDmpableaf) (:by |root) (:at 1508878235661)
|j $ {} (:type :expr) (:id |r1bNiw7TaW) (:by |root) (:at 1508878236108)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SkxNjDmTa-) (:by |root) (:at 1508878236954)
|j $ {} (:type :expr) (:id |HJzBoPm66Z) (:by |root) (:at 1508878237283)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |ry-Siw76TW) (:by |root) (:at 1508878238234)
|j $ {} (:type :leaf) (:text |ui/row) (:id |Hy48owQ6TW) (:by |root) (:at 1508878323013)
|n $ {} (:type :expr) (:id |BkeuvuQp6W) (:by |root) (:at 1508878432457)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |BkeuvuQp6Wleaf) (:by |root) (:at 1508878433617)
|j $ {} (:type :leaf) (:text ||Entries:) (:id |H1bqP_XTTb) (:by |root) (:at 1508878437752)
|r $ {} (:type :expr) (:id |BygYsw76aW) (:by |root) (:at 1508878241351)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:id |BygYsw76aWleaf) (:by |root) (:at 1508878247765)
|j $ {} (:type :leaf) (:text |16) (:id |Byle2wXpTZ) (:by |root) (:at 1508878256138)
|r $ {} (:type :leaf) (:text |nil) (:id |rJK2wQ6pW) (:by |root) (:at 1508878259172)
|v $ {} (:type :expr) (:id |rJgg6wX66-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BkY5BsCVdqW) (:text |div) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |r1c9Ss0Nuc-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SkoqBs0Ndqb) (:text |{}) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |S1Ni_7Tp-) (:by |root) (:at 1508878492178)
:data $ {}
|T $ {} (:type :leaf) (:text |render-link) (:id |HyExytuQT6-) (:by |root) (:at 1508878454794)
|j $ {} (:type :leaf) (:text ||home) (:id |By8sdmaTZ) (:by |root) (:at 1508878498837)
|r $ {} (:type :leaf) (:text |route-home) (:id |Bk3j_mppb) (:by |root) (:at 1508878502682)
|t $ {} (:type :expr) (:id |rJ7nuXTpZ) (:by |root) (:at 1508878506766)
:data $ {}
|T $ {} (:type :leaf) (:text |render-link) (:id |rJ7nuXTpZleaf) (:by |root) (:at 1508878511072)
|j $ {} (:type :leaf) (:text ||team) (:id |r1MDhuXaTb) (:by |root) (:at 1508878512090)
|r $ {} (:type :leaf) (:text |route-team) (:id |ByQu2OQppW) (:by |root) (:at 1508878514900)
|u $ {} (:type :expr) (:id |SJ2nOX6T-) (:by |root) (:at 1508878515619)
:data $ {}
|T $ {} (:type :leaf) (:text |render-link) (:id |SJ2nOX6T-leaf) (:by |root) (:at 1508878517750)
|j $ {} (:type :leaf) (:text ||room) (:id |rkb0h_7Ta-) (:by |root) (:at 1508878519642)
|r $ {} (:type :leaf) (:text |route-room) (:id |r1ll6_X6TZ) (:by |root) (:at 1508878522172)
|uT $ {} (:type :expr) (:id |BkeUaOQpT-) (:by |root) (:at 1508878526496)
:data $ {}
|T $ {} (:type :leaf) (:text |render-link) (:id |BkeUaOQpT-leaf) (:by |root) (:at 1508878528875)
|j $ {} (:type :leaf) (:text ||search) (:id |r1mtT_QT6Z) (:by |root) (:at 1508878530782)
|r $ {} (:type :leaf) (:text |route-search) (:id |HyWsp_Qapb) (:by |root) (:at 1508878535985)
|uj $ {} (:type :expr) (:id |BkZAd766-) (:by |root) (:at 1508878536846)
:data $ {}
|T $ {} (:type :leaf) (:text |render-link) (:id |BkZAd766-leaf) (:by |root) (:at 1508878542174)
|j $ {} (:type :leaf) (:text ||404) (:id |ByEURum6pZ) (:by |root) (:at 1508878544081)
|r $ {} (:type :leaf) (:text |route-404) (:id |SktROXpp-) (:by |root) (:at 1508878550506)
|m $ {} (:type :expr) (:id |H1CsQdTp-) (:by |root) (:at 1508897701707)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |H1CsQdTp-leaf) (:by |root) (:at 1508897702155)
|j $ {} (:type :expr) (:id |HyE0s7u66W) (:by |root) (:at 1508897702401)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |BJQCi7OapW) (:by |root) (:at 1508897703042)
|j $ {} (:type :expr) (:id |HJMJ27uapW) (:by |root) (:at 1508897703280)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |SkWJnXuapZ) (:by |root) (:at 1508897705748)
|j $ {} (:type :leaf) (:text |ui/row) (:id |S1Zz27_Ta-) (:by |root) (:at 1508897706600)
|r $ {} (:type :expr) (:id |S1N3QO6TZ) (:by |root) (:at 1508897707873)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |S1N3QO6TZleaf) (:by |root) (:at 1508897711520)
|j $ {} (:type :leaf) (:text ||Dict:) (:id |rkxuhmdpTZ) (:by |root) (:at 1508897714447)
|v $ {} (:type :expr) (:id |Syei3Xd6TZ) (:by |root) (:at 1508897715239)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:id |Syei3Xd6TZleaf) (:by |root) (:at 1508897716774)
|j $ {} (:type :leaf) (:text |16) (:id |Skxahmu6p-) (:by |root) (:at 1508897717670)
|r $ {} (:type :leaf) (:text |nil) (:id |H1eR3Qd66-) (:by |root) (:at 1508897718238)
|x $ {} (:type :expr) (:id |S1e6X_a6W) (:by |root) (:at 1508897719641)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |S1e6X_a6Wleaf) (:by |root) (:at 1508897812019)
|b $ {} (:type :leaf) (:text |pre) (:id |S1ezZE_Ta-) (:by |root) (:at 1508897786730)
|j $ {} (:type :expr) (:id |H14RXuaTZ) (:by |root) (:at 1508897739961)
:data $ {}
|D $ {} (:type :leaf) (:text |with-out-str) (:id |HJgECQupTZ) (:by |root) (:at 1508897744695)
|T $ {} (:type :expr) (:id |B1fYRQuaTZ) (:by |root) (:at 1508897745433)
:data $ {}
|D $ {} (:type :leaf) (:text |pprint) (:id |Hk90Xd6aW) (:by |root) (:at 1508897746508)
|T $ {} (:type :leaf) (:text |dict) (:id |SyQa7OaTb) (:by |root) (:at 1508897731641)
|r $ {} (:type :leaf) (:text |style-codeblock) (:id |HyeaG4_66W) (:by |root) (:at 1508897819583)
|n $ {} (:type :expr) (:id |BJ3Vvma6-) (:by |root) (:at 1508878131786)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |BJ3Vvma6-leaf) (:by |root) (:at 1508878133190)
|j $ {} (:type :expr) (:id |Bkmp4vXTaW) (:by |root) (:at 1508878133487)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |BJzp4DX6T-) (:by |root) (:at 1508878133883)
|j $ {} (:type :expr) (:id |ryBuvQ6TW) (:by |root) (:at 1508878189093)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |S1WNOPXT6W) (:by |root) (:at 1508878191229)
|j $ {} (:type :leaf) (:text |ui/row) (:id |H17wdDXTpZ) (:by |root) (:at 1508878192413)
|r $ {} (:type :expr) (:id |SyekHDXaab) (:by |root) (:at 1508878134764)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |SyekHDXaableaf) (:by |root) (:at 1508878140103)
|j $ {} (:type :leaf) (:text ||Path:) (:id |H1SHwQaaW) (:by |root) (:at 1508879100294)
|v $ {} (:type :expr) (:id |B1geLDXa6-) (:by |root) (:at 1508878152453)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:id |B1geLDXa6-leaf) (:by |root) (:at 1508878154783)
|j $ {} (:type :leaf) (:text |16) (:id |Hkx7LD76pb) (:by |root) (:at 1508878156202)
|r $ {} (:type :leaf) (:text |nil) (:id |HJIUvXaaW) (:by |root) (:at 1508878157965)
|x $ {} (:type :expr) (:id |Bylw8DmTTW) (:by |root) (:at 1508878158888)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |Bylw8DmTTWleaf) (:by |root) (:at 1508897835427)
|b $ {} (:type :leaf) (:text |pre) (:id |BkV4E_TTZ) (:by |root) (:at 1508897836514)
|j $ {} (:type :expr) (:id |Bkq7OXaab) (:by |root) (:at 1508878370153)
:data $ {}
|D $ {} (:type :leaf) (:text |router->string) (:id |S1iXumTTW) (:by |root) (:at 1508879479210)
|T $ {} (:type :expr) (:id |BJELpQTpb) (:by |root) (:at 1508879691851)
:data $ {}
|T $ {} (:type :leaf) (:text |:router) (:id |HkmDvQTTZ) (:by |root) (:at 1508879699645)
|j $ {} (:type :leaf) (:text |store) (:id |r1-nI6Xaab) (:by |root) (:at 1508879701563)
|j $ {} (:type :leaf) (:text |dict) (:id |BkoMTQ66b) (:by |root) (:at 1508879635754)
|r $ {} (:type :leaf) (:text |style-codeblock) (:id |H1grNEO6aW) (:by |root) (:at 1508897840619)
|p $ {} (:type :expr) (:id |SJmKwm66-) (:by |root) (:at 1508878202842)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |SJmKwm66-leaf) (:by |root) (:at 1508878204103)
|j $ {} (:type :expr) (:id |B1XVYwXppW) (:by |root) (:at 1508878204379)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |rkzVtPQpa-) (:by |root) (:at 1508878204733)
|j $ {} (:type :expr) (:id |H1fHKw7ppW) (:by |root) (:at 1508878204950)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |rJ-rFPm6TW) (:by |root) (:at 1508878206415)
|j $ {} (:type :leaf) (:text |ui/row) (:id |H1PKw7p6Z) (:by |root) (:at 1508878208240)
|r $ {} (:type :expr) (:id |rJctP76aW) (:by |root) (:at 1508878209529)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |rJctP76aWleaf) (:by |root) (:at 1508878210173)
|j $ {} (:type :leaf) (:text ||Data:) (:id |BkstD7ppZ) (:by |root) (:at 1508878215312)
|v $ {} (:type :expr) (:id |SJ7qv7aaZ) (:by |root) (:at 1508878218548)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:id |SJ7qv7aaZleaf) (:by |root) (:at 1508878251180)
|j $ {} (:type :leaf) (:text |16) (:id |SkgH5v7pa-) (:by |root) (:at 1508878221838)
|r $ {} (:type :leaf) (:text |nil) (:id |Hk-IqwQTa-) (:by |root) (:at 1508878222865)
|x $ {} (:type :expr) (:id |rygacPQTab) (:by |root) (:at 1508777660284)
:data $ {}
|D $ {} (:type :leaf) (:text |<>) (:id |S1xnEV_TTZ) (:by |root) (:at 1508897844583)
|T $ {} (:type :leaf) (:text |pre) (:id |BJlET05o6Wleaf) (:by |root) (:at 1508777662478)
|j $ {} (:type :expr) (:id |rye7H4dp6b) (:by |root) (:at 1508777676915)
:data $ {}
|T $ {} (:type :leaf) (:text |with-out-str) (:id |SJE4RR9s6W) (:by |root) (:at 1508777680502)
|j $ {} (:type :expr) (:id |SkeYC09saW) (:by |root) (:at 1508777681063)
:data $ {}
|T $ {} (:type :leaf) (:text |pprint) (:id |S1KAC9ja-) (:by |root) (:at 1508777681930)
|j $ {} (:type :expr) (:id |SkJ1yoi6b) (:by |root) (:at 1508777686634)
:data $ {}
|T $ {} (:type :leaf) (:text |:router) (:id |rkT0CcopW) (:by |root) (:at 1508777686413)
|j $ {} (:type :leaf) (:text |store) (:id |rJe1Jysop-) (:by |root) (:at 1508777687419)
|r $ {} (:type :leaf) (:text |style-codeblock) (:id |HkleSEu6pZ) (:by |root) (:at 1508897847976)
|u $ {} (:type :expr) (:id |HkxwwVOTTW) (:by |root) (:at 1508897887419)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |HkxwwVOTTWleaf) (:by |root) (:at 1508897889010)
|j $ {} (:type :expr) (:id |BJqvEOpT-) (:by |root) (:at 1508897889661)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |HJVYwV_pTW) (:by |root) (:at 1508897890009)
|j $ {} (:type :expr) (:id |HkmqDVdTaW) (:by |root) (:at 1508897890243)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |BkMqDVOT6-) (:by |root) (:at 1508897891296)
|j $ {} (:type :leaf) (:text |ui/row) (:id |BkVjvV_a6b) (:by |root) (:at 1508897892282)
|r $ {} (:type :expr) (:id |HJWavN_apZ) (:by |root) (:at 1508897893270)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |HJWavN_apZleaf) (:by |root) (:at 1508897894255)
|j $ {} (:type :leaf) (:text ||GitHub:) (:id |rk-CvEupT-) (:by |root) (:at 1508897902855)
|v $ {} (:type :expr) (:id |rk-YdV_Tpb) (:by |root) (:at 1508897905104)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:id |rk-YdV_Tpbleaf) (:by |root) (:at 1508897905852)
|j $ {} (:type :leaf) (:text |10) (:id |HJ-5d4upaZ) (:by |root) (:at 1508897906601)
|r $ {} (:type :leaf) (:text |nil) (:id |B1-s_VOp6b) (:by |root) (:at 1508897907102)
|x $ {} (:type :expr) (:id |Sy2_4daTZ) (:by |root) (:at 1508897908083)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |Sy2_4daTZleaf) (:by |root) (:at 1508897908251)
|j $ {} (:type :expr) (:id |rkgTuE_6a-) (:by |root) (:at 1508897909404)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SJT_VOa6W) (:by |root) (:at 1508897910890)
|j $ {} (:type :expr) (:id |Skm1F4OT6W) (:by |root) (:at 1508897911145)
:data $ {}
|T $ {} (:type :leaf) (:text |:href) (:id |HkM1FVu6Tb) (:by |root) (:at 1508897911910)
|j $ {} (:type :leaf) (:text ||https://github.com/Respo/respo-router) (:id |HymeFNdaTW) (:by |root) (:at 1508897921327)
|r $ {} (:type :expr) (:id |B1ecKE_6pW) (:by |root) (:at 1508897922125)
:data $ {}
|T $ {} (:type :leaf) (:text |:inner-text) (:id |B1ecKE_6pWleaf) (:by |root) (:at 1508897926119)
|j $ {} (:type :leaf) (:text ||Respo/router) (:id |HyQCtEua6-) (:by |root) (:at 1508897933967)
|v $ {} (:type :expr) (:id |SyeoNOaTZ) (:by |root) (:at 1508897943721)
:data $ {}
|T $ {} (:type :leaf) (:text |:target) (:id |SyeoNOaTZleaf) (:by |root) (:at 1508897945162)
|j $ {} (:type :leaf) (:text ||_blank) (:id |H1SbjNdTTW) (:by |root) (:at 1508897948093)
|render-link $ {} (:type :expr) (:id |S1lkYd7aTW) (:by |root) (:at 1508878454794)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |B1-yKdQTTb) (:by |root) (:at 1508878458683)
|j $ {} (:type :leaf) (:text |render-link) (:id |BkMkY_mpTZ) (:by |root) (:at 1508878454794)
|n $ {} (:type :expr) (:id |BJg4KOm6aZ) (:by |root) (:at 1508878460242)
:data $ {}
|T $ {} (:type :leaf) (:text |guide) (:id |ryEKd7aaZ) (:by |root) (:at 1508878461642)
|j $ {} (:type :leaf) (:text |on-click) (:id |BkZLYd7pTb) (:by |root) (:at 1508878464773)
|r $ {} (:type :expr) (:id |BymJYO76pW) (:by |root) (:at 1508878454794)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |BJEyt_7Tp-) (:by |root) (:at 1508878480085)
|j $ {} (:type :expr) (:id |rJryKumppW) (:by |root) (:at 1508878454794)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |BJ81tOmT6Z) (:by |root) (:at 1508878454794)
|j $ {} (:type :expr) (:id |ByPktOm6ab) (:by |root) (:at 1508878454794)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |BJO1YuQpab) (:by |root) (:at 1508878454794)
|j $ {} (:type :expr) (:id |BylNcu7p6W) (:by |root) (:at 1508878476305)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SkFyYOQaTW) (:by |root) (:at 1508878477284)
|j $ {} (:type :expr) (:id |rkZymtm6a-) (:by |root) (:at 1508878615503)
:data $ {}
|T $ {} (:type :leaf) (:text |:margin-right) (:id |SyJXY7aaZ) (:by |root) (:at 1508878618390)
|j $ {} (:type :leaf) (:text |8) (:id |r1rGQKQaTW) (:by |root) (:at 1508878620029)
|n $ {} (:type :expr) (:id |ry-iZFmapZ) (:by |root) (:at 1508878595431)
:data $ {}
|T $ {} (:type :leaf) (:text |:href) (:id |ry-iZFmapZleaf) (:by |root) (:at 1508878597839)
|j $ {} (:type :leaf) (:text ||javascript:;) (:id |BkbfKXTpW) (:by |root) (:at 1508878605346)
|r $ {} (:type :expr) (:id |rJc1KOmTaW) (:by |root) (:at 1508878454794)
:data $ {}
|T $ {} (:type :leaf) (:text |:on) (:id |rkiJY_766-) (:by |root) (:at 1508878484057)
|j $ {} (:type :expr) (:id |B1n1FOQ6ab) (:by |root) (:at 1508878454794)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SyTJY_7aaW) (:by |root) (:at 1508878454794)
|j $ {} (:type :expr) (:id |BJ0JYd7pp-) (:by |root) (:at 1508878454794)
:data $ {}
|T $ {} (:type :leaf) (:text |:click) (:id |Bk1xyYdQ6Tb) (:by |root) (:at 1508878454794)
|j $ {} (:type :leaf) (:text |on-click) (:id |B1geytu76ab) (:by |root) (:at 1508878469872)
|r $ {} (:type :expr) (:id |S1-g1FumTTZ) (:by |root) (:at 1508878454794)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |r1ze1YdXTab) (:by |root) (:at 1508878454794)
|j $ {} (:type :leaf) (:text |guide) (:id |S1QgJFuQ66Z) (:by |root) (:at 1508878472889)
|route-404 $ {} (:type :expr) (:id |SJ5dHoCVd5b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HyiuBjAVdqb) (:text |defn) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |Sy3_HoAEd9W) (:text |route-404) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |rkpuSjRNOcW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BJ0_BsAVO5b) (:text |e) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |Sk1tBi04dcb) (:text |dispatch!) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |SylFSjANdqb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1WtHi04d5b) (:text |dispatch!) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SyfKrjRNO9W) (:text |:router/nav) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |HJXYBiC4Oc-) (:text ||/missing) (:by |root) (:at 1505410717327)
|route-home $ {} (:type :expr) (:id |SJ1zSjA4O9Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BJeGBj0Nd5W) (:text |defn) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |H1-zHoREO9-) (:text |route-home) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |SJfGBjCE_5Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HkmGBjRVdcb) (:text |e) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |Sk4MSj0Vdq-) (:text |dispatch!) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |HJHGrj0Nd5Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SyLzSsCN_cZ) (:text |dispatch!) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BJvfroCE_qZ) (:text |:router/route) (:by |root) (:at 1508776890194)
|r $ {} (:type :expr) (:id |rJE6sci6-) (:by |root) (:at 1508776891532)
:data $ {}
|T $ {} (:type :leaf) (:id |S1_GrjCEOcb) (:text |{}) (:by |root) (:at 1508776894369)
|j $ {} (:type :expr) (:id |H1D6s5saW) (:by |root) (:at 1508776894639)
:data $ {}
|T $ {} (:type :leaf) (:text |:path) (:id |ByQU6o9jT-) (:by |root) (:at 1508776895745)
|j $ {} (:type :expr) (:id |SJtTj9opW) (:by |root) (:at 1508776896555)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SkM_Tj9jpZ) (:by |root) (:at 1508776896724)
|r $ {} (:type :expr) (:id |Sk4tpoqja-) (:by |root) (:at 1508776897418)
:data $ {}
|T $ {} (:type :leaf) (:text |:query) (:id |Sk4tpoqja-leaf) (:by |root) (:at 1508776898689)
|j $ {} (:type :expr) (:id |BkGoTi9oTW) (:by |root) (:at 1508776899003)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |HyZsTscjaZ) (:by |root) (:at 1508776899305)
|route-room $ {} (:type :expr) (:id |S1tMrjREOcb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |B1qfriRV_qZ) (:text |defn) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |S1jzBjRVd9W) (:text |route-room) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |HyhzroAVO9b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJazBoCEOc-) (:text |e) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SJRfHjAV_cb) (:text |dispatch!) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |H1JmriAV_cZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |ryg7rjAN_q-) (:text |dispatch!) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SkZ7Ho0E_q-) (:text |:router/route) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |HJeye25sT-) (:by |root) (:at 1508776935215)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |HJeye25sT-leaf) (:by |root) (:at 1508776936381)
|j $ {} (:type :expr) (:id |BJl-g3qiT-) (:by |root) (:at 1508776936701)
:data $ {}
|T $ {} (:type :leaf) (:text |:path) (:id |BJ-gnqsT-) (:by |root) (:at 1508776937356)
|j $ {} (:type :expr) (:id |S1lfl2qsT-) (:by |root) (:at 1508776938136)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |B1fg35oTb) (:by |root) (:at 1508776938485)
|j $ {} (:type :expr) (:id |H1Klh9jTb) (:by |root) (:at 1508776944799)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |BJluxnqjpb) (:by |root) (:at 1508776945240)
|j $ {} (:type :expr) (:id |S1qenqia-) (:by |root) (:at 1508776945573)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:id |S1fFenqi6W) (:by |root) (:at 1508776947671)
|j $ {} (:type :leaf) (:text "|\"team") (:id |B1Zhgn5ip-) (:by |BJMyLOplX) (:at 1528822478879)
|r $ {} (:type :expr) (:id |BkXag2ci6-) (:by |root) (:at 1508776949312)
:data $ {}
|T $ {} (:type :leaf) (:text |:data) (:id |BkXag2ci6-leaf) (:by |root) (:at 1508776950139)
|j $ {} (:type :expr) (:id |S11Wncsp-) (:by |root) (:at 1508776951270)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SJEAgh9s6b) (:by |root) (:at 1508776951701)
|j $ {} (:type :expr) (:id |rJfl-hci6Z) (:by |root) (:at 1508776952039)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"team-id") (:id |S1beZhcipb) (:by |BJMyLOplX) (:at 1528822474157)
|j $ {} (:type :leaf) (:text ||t12345) (:id |ByWQWnqs6W) (:by |root) (:at 1508776958944)
|r $ {} (:type :expr) (:id |S1WY-hqo6W) (:by |root) (:at 1508776961150)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |S1WY-hqo6Wleaf) (:by |root) (:at 1508776961827)
|j $ {} (:type :expr) (:id |HkMcZncopb) (:by |root) (:at 1508776962128)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:id |BJb5Zncja-) (:by |root) (:at 1508776964280)
|j $ {} (:type :leaf) (:text "|\"room") (:id |r1Bhb39spW) (:by |BJMyLOplX) (:at 1528822480554)
|r $ {} (:type :expr) (:id |HyeBGh9iab) (:by |root) (:at 1508776973015)
:data $ {}
|T $ {} (:type :leaf) (:text |:data) (:id |r1BG2copW) (:by |root) (:at 1508776973664)
|j $ {} (:type :expr) (:id |SyM8G2co6-) (:by |root) (:at 1508776973923)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |B1bLM39oTZ) (:by |root) (:at 1508776974371)
|j $ {} (:type :expr) (:id |HyxDM3copb) (:by |root) (:at 1508776974656)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"room-id") (:id |SywM3copb) (:by |BJMyLOplX) (:at 1528822476711)
|j $ {} (:type :leaf) (:text ||r1234) (:id |SJbdGn5saZ) (:by |root) (:at 1508777264752)
|r $ {} (:type :expr) (:id |SkZQe3cs6Z) (:by |root) (:at 1508776939385)
:data $ {}
|T $ {} (:type :leaf) (:text |:query) (:id |SkZQe3cs6Zleaf) (:by |root) (:at 1508776941214)
|j $ {} (:type :expr) (:id |H18l2cspb) (:by |root) (:at 1508776941580)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |rJ4Bg2qs6W) (:by |root) (:at 1508776941937)
|j $ {} (:type :expr) (:id |H1ZySpcj6Z) (:by |root) (:at 1508777270906)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"a") (:id |r1l1SpqiTW) (:by |BJMyLOplX) (:at 1528822484043)
|j $ {} (:type :leaf) (:text |1) (:id |HJxBTciT-) (:by |root) (:at 1508777272151)
|r $ {} (:type :expr) (:id |SkxMBT5sTW) (:by |root) (:at 1508777273969)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"b") (:id |SkxMBT5sTWleaf) (:by |BJMyLOplX) (:at 1528822485878)
|j $ {} (:type :leaf) (:text |2) (:id |SJgVHaqo6Z) (:by |root) (:at 1508777276663)
|route-search $ {} (:type :expr) (:id |HJlOSjAEuqW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |ry-dSjCEdqW) (:text |defn) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SJf_HjCVdc-) (:text |route-search) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |SkmdSs0Ndqb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HJV_SsCNOqW) (:text |e) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BJruSiR4OcW) (:text |dispatch!) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |rkIOHiRVucb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SkDdSoRN_5Z) (:text |dispatch!) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |rJudroRV_cb) (:text |:router/nav) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |SkFuHo0EuqW) (:text ||/search) (:by |root) (:at 1508777020754)
|route-team $ {} (:type :expr) (:id |HkpHSj0EO5-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1RBSjCEOqb) (:text |defn) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |ryyIBs0EdcW) (:text |route-team) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |r1xLHj0E_9b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJZ8rs0EO5Z) (:text |e) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |ByG8Bo0NuqZ) (:text |dispatch!) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |HJmIHiREucb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HyVUHiCNdqZ) (:text |dispatch!) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SJHUri0E_qb) (:text |:router/route) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |BJeeRoqsp-) (:by |root) (:at 1508776904246)
:data $ {}
|D $ {} (:type :leaf) (:text |{}) (:id |BJ-0j9sTb) (:by |root) (:at 1508776905260)
|L $ {} (:type :expr) (:id |SkG0sqspb) (:by |root) (:at 1508776905543)
:data $ {}
|T $ {} (:type :leaf) (:text |:path) (:id |HyGZ0iqipW) (:by |root) (:at 1508776906681)
|j $ {} (:type :expr) (:id |H1buAi5i6-) (:by |root) (:at 1508776912255)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |rkluCs5oTW) (:by |root) (:at 1508776912505)
|j $ {} (:type :expr) (:id |Bkc0j9jpb) (:by |root) (:at 1508776913525)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |BJtCsqjp-) (:by |root) (:at 1508776914218)
|j $ {} (:type :expr) (:id |BJoAj5jaZ) (:by |root) (:at 1508776914519)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:id |H1MqRs5ipW) (:by |root) (:at 1508776915814)
|j $ {} (:type :leaf) (:text "|\"team") (:id |SyQhRo9o6W) (:by |BJMyLOplX) (:at 1528822503945)
|r $ {} (:type :expr) (:id |HJzp0icsab) (:by |root) (:at 1508776917375)
:data $ {}
|T $ {} (:type :leaf) (:text |:data) (:id |HJzp0icsableaf) (:by |root) (:at 1508776918531)
|j $ {} (:type :expr) (:id |SJ-JynqoT-) (:by |root) (:at 1508776918778)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |BklyJ3coaW) (:by |root) (:at 1508776919291)
|j $ {} (:type :expr) (:id |SJgyn9opb) (:by |root) (:at 1508776920001)
:data $ {}
|T $ {} (:type :leaf) (:text ||team-id) (:id |SyE1yhqopZ) (:by |BJMyLOplX) (:at 1528821499110)
|j $ {} (:type :leaf) (:text ||t1234) (:id |rkbVJhci6-) (:by |root) (:at 1508776926694)
|P $ {} (:type :expr) (:id |ByxVCoqopb) (:by |root) (:at 1508776908263)
:data $ {}
|T $ {} (:type :leaf) (:text |:query) (:id |ByxVCoqopbleaf) (:by |root) (:at 1508776909576)
|j $ {} (:type :expr) (:id |SJ-LAo9oab) (:by |root) (:at 1508776910047)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |H1eLRi9iTW) (:by |root) (:at 1508776910342)
|style-codeblock $ {} (:type :expr) (:id |B1gMM4OT6b) (:by |root) (:at 1508897801588)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |H1bzzNO6a-) (:by |root) (:at 1508897801588)
|j $ {} (:type :leaf) (:text |style-codeblock) (:id |BkzffVOTTb) (:by |root) (:at 1508897801588)
|r $ {} (:type :expr) (:id |SJXMGE_paZ) (:by |root) (:at 1508897801588)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |rJ4MzEua6W) (:by |root) (:at 1508897801588)
|j $ {} (:type :expr) (:id |SkHMG4_6a-) (:by |root) (:at 1508897801588)
:data $ {}
|T $ {} (:type :leaf) (:text |:line-height) (:id |H18fzEOp6W) (:by |root) (:at 1508897801588)
|j $ {} (:type :leaf) (:text ||20px) (:id |B1vzzV_6pZ) (:by |root) (:at 1508897801588)
|r $ {} (:type :expr) (:id |ryuzzNuTpZ) (:by |root) (:at 1508897801588)
:data $ {}
|T $ {} (:type :leaf) (:text |:margin) (:id |rytzzEdTTZ) (:by |root) (:at 1508897801588)
|j $ {} (:type :leaf) (:text |8) (:id |rJ9zGNOaT-) (:by |root) (:at 1508897801588)
:proc $ {} (:type :expr) (:id |HJAZSs0E_9-) (:by nil) (:at 1505410717327) (:data $ {})
|respo-router.core $ {}
:ns $ {} (:type :expr) (:id |r1VuLsRN_5Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SkHd8j0Ed5Z) (:text |ns) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |B1IuLsANOqW) (:text |respo-router.core) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |rkv_8oANOcZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |Hy_uIi0V_9b) (:text |:require) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BkK_Ii0V_qW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ9_Lj04d9W) (:text |[]) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |ByiuLiCEdcW) (:text |respo-router.format) (:by |root) (:at 1511886303719)
|r $ {} (:type :leaf) (:id |Hk2_UsRN_5W) (:text |:refer) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |B1p_Ui0EOc-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJCO8oA4OcZ) (:text |[]) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BJyKIi04Oqb) (:text |router->string) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:text |strip-sharp) (:id |r1erJA-igf) (:by |root) (:at 1511886301289)
|r $ {} (:type :expr) (:id |BJxFIsREOcb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HkWtLiRVuqW) (:text |[]) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |ryfFIsCN_9Z) (:text |respo-router.listener) (:by |root) (:at 1511885971057)
|r $ {} (:type :leaf) (:id |r1XKUsR4uc-) (:text |:refer) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |HyNtUiCNu5-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BJrYUoR4u9W) (:text |[]) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |SyvFLoCVOqb) (:text |*ignored?) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |SJa5h-ief) (:by |root) (:at 1511885972609)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SJa5h-iefleaf) (:by |root) (:at 1511885973032)
|j $ {} (:type :leaf) (:text |respo-router.parser) (:id |H1zac2Wsef) (:by |root) (:at 1511885976382)
|n $ {} (:type :leaf) (:text |:refer) (:id |B1-xa3Wogz) (:by |root) (:at 1511886009055)
|r $ {} (:type :expr) (:id |SyXinZjeG) (:by |root) (:at 1511885978524)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |BJefj2Zsxz) (:by |root) (:at 1511885978753)
|j $ {} (:type :leaf) (:text |parse-address) (:id |r1GQo3Wjxz) (:by |root) (:at 1511885982769)
:defs $ {}
|*cached-router $ {} (:type :expr) (:id |BycKIi0NOcW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1sFLjANO5W) (:text |def) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |Sk3YLoR4OcW) (:text |*cached-router) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |BJaKUjRE_9Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |B1RtIjCNO9W) (:text |atom) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |H11q8s04u5b) (:text |nil) (:by |root) (:at 1505410717327)
|render-url! $ {} (:type :expr) (:id |Byl9IsAVu9W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rybqIo04d9Z) (:text |defn) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BJfqLsC4uqb) (:text |render-url!) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |BJ7qIjRN_c-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |B1V5UjRVOqW) (:text |router) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |ByS5IjANO9-) (:text |dict) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |rJLqLjAEd9-) (:text |router-mode) (:by |root) (:at 1505410717327)
|s $ {} (:type :expr) (:id |rJxOj9-ixz) (:by |root) (:at 1511885472428)
:data $ {}
|T $ {} (:type :leaf) (:text |assert) (:id |rJxOj9-ixzleaf) (:by |root) (:at 1511885475889)
|j $ {} (:type :expr) (:id |B1-3icWjgz) (:by |root) (:at 1511885476365)
:data $ {}
|T $ {} (:type :leaf) (:text |map?) (:id |rJg2i9Zixf) (:by |root) (:at 1511885478398)
|j $ {} (:type :leaf) (:text |dict) (:id |ByZRj5boez) (:by |root) (:at 1511885479235)
|r $ {} (:type :leaf) (:text "||first argument should be router data") (:id |HkZ3qZigz) (:by |root) (:at 1511885494834)
|t $ {} (:type :expr) (:id |B1lU5bslf) (:by |root) (:at 1511885384218)
:data $ {}
|T $ {} (:type :leaf) (:text |assert) (:id |B1lU5bslfleaf) (:by |root) (:at 1511885385688)
|j $ {} (:type :expr) (:id |rkSIcWjlM) (:by |root) (:at 1511885388817)
:data $ {}
|T $ {} (:type :leaf) (:text |map?) (:id |HJXL9-sxz) (:by |root) (:at 1511885389241)
|j $ {} (:type :leaf) (:text |dict) (:id |BJ8I5WoeM) (:by |root) (:at 1511885390146)
|r $ {} (:type :leaf) (:text "||second argument should be dictionary") (:id |rkWYI5Wiez) (:by |root) (:at 1511885407675)
|u $ {} (:type :expr) (:id |Hy5P5bjxf) (:by |root) (:at 1511885410219)
:data $ {}
|T $ {} (:type :leaf) (:text |assert) (:id |Hy5P5bjxfleaf) (:by |root) (:at 1511885411640)
|j $ {} (:type :expr) (:id |HyTPqZjgf) (:by |root) (:at 1511885412521)
:data $ {}
|T $ {} (:type :leaf) (:text |contains?) (:id |BJghDc-ieG) (:by |root) (:at 1511885424424)
|j $ {} (:type :expr) (:id |Skqd5-oef) (:by |root) (:at 1511885425592)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:id |B1K_9bsgG) (:by |root) (:at 1511885426362)
|j $ {} (:type :leaf) (:text |:history) (:id |H1ouqbilM) (:by |root) (:at 1511885428265)
|r $ {} (:type :leaf) (:text |:hash) (:id |ByB3_9Wsez) (:by |root) (:at 1511885429496)
|r $ {} (:type :leaf) (:text |router-mode) (:id |HygFc-jeG) (:by |root) (:at 1511885434536)
|r $ {} (:type :leaf) (:text "||last argument is router-mode") (:id |r1bmtcZolG) (:by |root) (:at 1511885448133)
|v $ {} (:type :expr) (:id |rkv9UiC4u5W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |Bkd5UiREucb) (:text |if) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |SyK58sRVO9W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ5qLiAVO9W) (:text |exists?) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |Byiq8oAVd9-) (:text |js/location) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |HJ2q8oCVO5W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1p5Ii0EOcb) (:text |if) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |SJAqIjANu9W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BykiUjCV_qZ) (:text |not) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |HJliUoANdcb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SyboLj0Euqb) (:text |identical?) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |HkMsLoC4_5b) (:text |router) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |Hk7oLjCVuq-) (:text |@*cached-router) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |BJNsLjCEd9-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1HjUjC4ucW) (:text |do) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |SJUsIi0Eucb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1PiIsANdqW) (:text |reset!) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BJdjIsANO9W) (:text |*cached-router) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |H1FoLs0V_q-) (:text |router) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |Sy5oLo0Eu5b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJii8jRE_9Z) (:text |case) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |By3i8oRN_9-) (:text |router-mode) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |H1aiUj0EO9W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BkCiLsRNu9Z) (:text |:hash) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |Hy1nIoRVOqZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HkxhIj0EO5-) (:text |let) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |H1WhIoCEu9-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :expr) (:id |SyM3LoRVdc-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rkXhUs0Ed9Z) (:text |current-hash) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |B1V3IsA4uqb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |S1S3UiAVu9-) (:text |.-hash) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SyIh8j0Ed5-) (:text |js/location) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |SJwhLs0Ndqb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BJOhUo0VO9b) (:text |old-router) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BJF2LsR4ucb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ53IiCV_cZ) (:text |parse-address) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |r1o2Ij0V_cb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rkh2UiA4u9-) (:text |strip-sharp) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |H1Tn8i0V_5-) (:text |current-hash) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |BkAn8oANdqb) (:text |dict) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |BJy6UsA4Oqb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |B1eaLoC4Oc-) (:text |if) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |Sk-6IsREucW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |S1GaUiCNu9W) (:text |not=) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |rymTIsA4_qb) (:text |old-router) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |ryNpLo0E_qZ) (:text |router) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |H1SpIiAN_qW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r1IpUiAEO9-) (:text |let) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |ryDp8s04_c-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :expr) (:id |Sy_6UjC4ucW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rkF6IiCNOcZ) (:text |new-hash) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |rk5aIjCEuqb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |ByjpLjCNucb) (:text |str) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |HJhpLjA4_9b) (:text ||#) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |rJppUoREu9-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r1A6IiA4d9b) (:text |router->string) (:by |root) (:at 1505410717327)
|b $ {} (:type :leaf) (:text ||) (:id |Hkg6tc5sTZ) (:by |root) (:at 1508776581552)
|j $ {} (:type :expr) (:id |ryx6f9qs6b) (:by |root) (:at 1508776469322)
:data $ {}
|D $ {} (:type :leaf) (:text |:path) (:id |rJ0fccopZ) (:by |root) (:at 1508776489073)
|T $ {} (:type :leaf) (:id |B11A8jR4uq-) (:text |router) (:by |root) (:at 1505410717327)
|n $ {} (:type :expr) (:id |r1QJQqqsT-) (:by |root) (:at 1508776471450)
:data $ {}
|T $ {} (:type :leaf) (:text |:query) (:id |r1QJQqqsT-leaf) (:by |root) (:at 1508776473075)
|j $ {} (:type :leaf) (:text |router) (:id |SJV-Q5cipZ) (:by |root) (:at 1508776474592)
|r $ {} (:type :leaf) (:id |BJxAIsAV_5Z) (:text |dict) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |Sk-AIiCEu5-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SyMAIjREOqW) (:text |;) (:by |root) (:at 1511883634199)
|j $ {} (:type :leaf) (:id |rJXA8jR4OcZ) (:text |println) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |HJN0UiCN_qZ) (:text "||force set path to:") (:by |root) (:at 1505410717327)
|v $ {} (:type :leaf) (:id |HJBCIj0V_5b) (:text |new-hash) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |rJUR8jRV_5W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |S1D08iRN_qW) (:text |reset!) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |Sy_CLoREO5b) (:text |*ignored?) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |ryYR8sRNOc-) (:text |true) (:by |root) (:at 1505410717327)
|x $ {} (:type :expr) (:id |HycCIiANuq-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |B1oA8jAEuq-) (:text |set!) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |Bkh08sAVd5Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ6AUiR4uc-) (:text |.-hash) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |rkRCIsREOc-) (:text |js/location) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |Sy1yxLsCNOcb) (:text |new-hash) (:by |root) (:at 1505410717327)
|y $ {} (:type :expr) (:id |SyeyxUs0Edcb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BybygIiAEOc-) (:text |js/setTimeout) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |B1G1gIsAEuqW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJXyxIoCEu9Z) (:text |fn) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |SkNkgUsAEu9Z) (:by nil) (:at 1505410717327) (:data $ {})
|r $ {} (:type :expr) (:id |rJHkxIsRNOqb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJIyxIsCVd5W) (:text |reset!) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SkDkxIs0Ndq-) (:text |*ignored?) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |HJO1eIo0NOcZ) (:text |false) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |rkKJlIs0NdqW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJqke8oRVdqb) (:text |;) (:by |root) (:at 1511883645900)
|j $ {} (:type :leaf) (:id |r1o1eIiCN_5Z) (:text |println) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |HJ2klLiANu9b) (:text "||ignore end") (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |r1p1eLoREdc-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r1C1e8oANdc-) (:text |:history) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |B1yelLs0E_cW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BkggxIo04OcZ) (:text |let) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BJZxx8o04_cZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :expr) (:id |ryfegIiAN_qZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJQegUiAV_9Z) (:text |old-address) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |S1EegLoREu9W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1rxg8iREd9-) (:text |str) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |rkUxeLsR4dcW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HyDxlUoA4d9-) (:text |.-pathname) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SyOgeLiREuc-) (:text |js/location) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |Bktge8j0V_9b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJcelLoAEd5b) (:text |.-search) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |rysxe8i0Nd9Z) (:text |js/location) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BJ3elUoREd5-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r1pllLiCVO5b) (:text |old-router) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |B1CeeLiCEO5Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BJ1We8iC4d5-) (:text |parse-address) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |HkgbxLiRNu9W) (:text |old-address) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |BkZ-g8oRVuqb) (:text |dict) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |SJfWxLi0NO9-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJmZgLsRNdcW) (:text |new-address) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |S1Nbx8i0Vuq-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SySZx8jREd9b) (:text |router->string) (:by |root) (:at 1505410717327)
|b $ {} (:type :leaf) (:text ||) (:id |rysF99sTb) (:by |root) (:at 1508776579583)
|j $ {} (:type :expr) (:id |ryPXcqoaW) (:by |root) (:at 1508776478772)
:data $ {}
|D $ {} (:type :leaf) (:text |:path) (:id |ryxPQc5o6Z) (:by |root) (:at 1508776480634)
|T $ {} (:type :leaf) (:id |SkUZgUsC4uqZ) (:text |router) (:by |root) (:at 1505410717327)
|n $ {} (:type :expr) (:id |B1MFmcqoaW) (:by |root) (:at 1508776481346)
:data $ {}
|T $ {} (:type :leaf) (:text |:query) (:id |B1MFmcqoaWleaf) (:by |root) (:at 1508776484608)
|j $ {} (:type :leaf) (:text |router) (:id |H1-TQq9sa-) (:by |root) (:at 1508776485960)
|r $ {} (:type :leaf) (:id |H1vbeIiAEd5-) (:text |dict) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |HkdWl8iC4O5b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJYZl8j0E_9b) (:text |if) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BkcblLs0NOcb) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |Sks-x8sCNOq-) (:text |not=) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |Skh-g8jRE_c-) (:text |old-router) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |rJaWgIs0Nucb) (:text |router) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |BJAWgIiA4_c-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1JMeUiCVO9b) (:text |.pushState) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |ryeMeLiCV_q-) (:text |js/history) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |HybflUjAN_qW) (:text |nil) (:by |root) (:at 1505410717327)
|v $ {} (:type :leaf) (:id |HyzzeLo0V_5-) (:text |nil) (:by |root) (:at 1505410717327)
|x $ {} (:type :leaf) (:id |H17Gg8iC4_cb) (:text |new-address) (:by |root) (:at 1505410717327)
|x $ {} (:type :leaf) (:id |BkVMeUo0Ndc-) (:text |nil) (:by |root) (:at 1505410717327)
:proc $ {} (:type :expr) (:id |ByKFLjCEd9-) (:by nil) (:at 1505410717327) (:data $ {})
|respo-router.format $ {}
:ns $ {} (:type :expr) (:id |rJ5Io0V_c-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |S1sUjREd9W) (:text |ns) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |ryhUjCN_9W) (:text |respo-router.format) (:by |root) (:at 1511886272656)
|r $ {} (:type :expr) (:id |Sk6IjCNOqW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |Sy0LjR4u9b) (:text |:require) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |S1yxIsAN_5-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |S1ggIiC4d9b) (:text |[]) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |rJWgLsR4_qZ) (:text |clojure.string) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |SJfxIoC4O9W) (:text |:as) (:by |root) (:at 1505410717327)
|v $ {} (:type :leaf) (:id |rJXl8jCEOc-) (:text |string) (:by |root) (:at 1505410717327)
:defs $ {}
|router->string $ {} (:type :expr) (:id |rydbLsRVOc-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rkFbIiC4dq-) (:text |defn$) (:by |BJMyLOplX) (:at 1528821914492)
|j $ {} (:type :leaf) (:id |S15W8sC4d9-) (:text |router->string) (:by |root) (:at 1505410717327)
|p $ {} (:type :expr) (:id |H1bG32ma6-) (:by |root) (:at 1508879530412)
:data $ {}
|T $ {} (:type :expr) (:id |Hkghj3Xaab) (:by |root) (:at 1508879524130)
:data $ {}
|T $ {} (:type :leaf) (:text |router) (:id |Hkghj3Xaableaf) (:by |root) (:at 1508879528735)
|j $ {} (:type :leaf) (:text |dict) (:id |S1fW2hQaTZ) (:by |root) (:at 1508879529724)
|j $ {} (:type :expr) (:id |HyQnhQTTb) (:by |root) (:at 1508879531227)
:data $ {}
|T $ {} (:type :leaf) (:text |router->string) (:id |HyQnhQTTbleaf) (:by |root) (:at 1508879537264)
|j $ {} (:type :leaf) (:text ||) (:id |Byqn3Q66-) (:by |root) (:at 1508879538760)
|r $ {} (:type :expr) (:id |ry23n76pb) (:by |root) (:at 1508879539890)
:data $ {}
|T $ {} (:type :leaf) (:text |:path) (:id |Syes2nXa6-) (:by |root) (:at 1508879541145)
|j $ {} (:type :leaf) (:text |router) (:id |HJRnhX6aZ) (:by |root) (:at 1508879543417)
|v $ {} (:type :expr) (:id |B1ex637pa-) (:by |root) (:at 1508879543864)
:data $ {}
|T $ {} (:type :leaf) (:text |:query) (:id |B1ex637pa-leaf) (:by |root) (:at 1508879545103)
|j $ {} (:type :leaf) (:text |router) (:id |rJMa376Tb) (:by |root) (:at 1508879547589)
|x $ {} (:type :leaf) (:text |dict) (:id |BkHT37ppb) (:by |root) (:at 1508879549925)
|v $ {} (:type :expr) (:id |ry8s2Qp6Z) (:by |root) (:at 1508879517753)
:data $ {}
|D $ {} (:type :expr) (:id |rysj2m66b) (:by nil) (:at 1505410717327)
:data $ {}
|D $ {} (:type :leaf) (:text |acc) (:id |ryJtqqoTZ) (:by |root) (:at 1508776567495)
|T $ {} (:type :leaf) (:id |Hyh-LsCEd5-) (:text |path) (:by |root) (:at 1508776493905)
|b $ {} (:type :leaf) (:text |query) (:id |rJXUV99sab) (:by |root) (:at 1508776495909)
|j $ {} (:type :leaf) (:id |SkaWIoANO9b) (:text |dict) (:by |root) (:at 1505410717327)
|T $ {} (:type :expr) (:id |BkgX9ccspW) (:by |root) (:at 1508776587274)
:data $ {}
|D $ {} (:type :leaf) (:text |if) (:id |r1V5q5oaW) (:by |root) (:at 1508776588418)
|L $ {} (:type :expr) (:id |HkLcqqo6b) (:by |root) (:at 1508776590379)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:id |SJzEcqqi6b) (:by |root) (:at 1508776593592)
|j $ {} (:type :leaf) (:text |path) (:id |rkx9q99i6W) (:by |root) (:at 1508776594375)
|P $ {} (:type :expr) (:id |B1ui5qs6b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HygILjCNd5Z) (:text |let) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |HkZ8Lj0VdcW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :expr) (:id |H1GIUoREd9Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1X88j0V_cb) (:text |query-str) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |HkVULsCV_5W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BkrLIo0EdcW) (:text |stringify-query) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:text |query) (:id |H1gwDi9s6b) (:by |root) (:at 1508776799741)
|j $ {} (:type :expr) (:id |SkFLUoCEd9W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |Skq88i0Nd9Z) (:text |query-part) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BysLIsRE_5-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ2IIsCNOcW) (:text |if) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |rJpLUjCE_5-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |ByALLoR4dc-) (:text |string/blank?) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |HJkDUi0NdqZ) (:text |query-str) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |BJxvLoRV_c-) (:text ||) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |ryZP8i04_cW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SyGwUo04dqW) (:text |str) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BkXvIsANu5W) (:text ||?) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |BJEDLsCE_c-) (:text |query-str) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |B1kuLjA4_9Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BkedLj0NuqZ) (:text |str) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |Syf_Ij04O9W) (:text |acc) (:by |root) (:at 1508776642180)
|v $ {} (:type :leaf) (:id |Hk7OLiAVO5Z) (:text |query-part) (:by |root) (:at 1505410717327)
|T $ {} (:type :expr) (:id |ryRb8oR4_5b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HJkGLiA4dqZ) (:text |let) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |S1lGIiC4Oq-) (:by nil) (:at 1505410717327)
:data $ {}
|D $ {} (:type :expr) (:id |H1JejcjaW) (:by |root) (:at 1508776534025)
:data $ {}
|T $ {} (:type :leaf) (:text |guidepost) (:id |BkQTUc5o6W) (:by |root) (:at 1508776538129)
|j $ {} (:type :expr) (:id |S1QD55j6-) (:by |root) (:at 1508776538742)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:id |HyNzD9cs6-) (:by |root) (:at 1508776540660)
|j $ {} (:type :leaf) (:text |path) (:id |rJIPc5saZ) (:by |root) (:at 1508776543694)
|T $ {} (:type :expr) (:id |HJWzLo0N_9b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SyMGIjC4Oc-) (:text |params) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |SyXMUs0EO5Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r1Nf8oC4OqZ) (:text |get) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |rkBM8o0V_cW) (:text |dict) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |By8GLiANOqZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJPzUsCV_cW) (:text |:name) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SyOGLjCEO5Z) (:text |guidepost) (:by |root) (:at 1508776657507)
|r $ {} (:type :expr) (:id |BJ0MLo0N_c-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rkym8sC4Ocb) (:text |segments) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:by |BJMyLOplX) (:at 1528822123960) (:id |BJxVOYdpxQ)
:data $ {}
|D $ {} (:type :leaf) (:by |BJMyLOplX) (:at 1528822125866) (:text |->>) (:id |HkZN_tuTgm)
|L $ {} (:type :leaf) (:by |BJMyLOplX) (:at 1528822126299) (:text |params) (:id |HyMUut_Tem)
|T $ {} (:type :expr) (:id |rJgXUsRN_cW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |By-7IiAV_5b) (:text |map) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |H1MQ8iCEu5b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |ByXXLi0Edqb) (:text |fn) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BkVX8iRVdcW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJrm8sRE_5-) (:text |key-path) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |B1ImUoAVOqW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r1DQLi0EO9b) (:text |get) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |HyLyi9jpZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |Bk2zIjANdqb) (:text |:data) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |BJazUj0Nu5W) (:text |guidepost) (:by |root) (:at 1508776661852)
|r $ {} (:type :leaf) (:id |rJF7LsAN_c-) (:text |key-path) (:by |root) (:at 1505410717327)
|x $ {} (:type :expr) (:id |Bkx4Li04d9b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r1b4Ii0Euc-) (:text |segment-path) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:by |BJMyLOplX) (:at 1528822252940) (:id |HygSg5dpl7)
:data $ {}
|D $ {} (:type :leaf) (:by |BJMyLOplX) (:at 1528822254304) (:text |->>) (:id |S1-Hgq_agm)
|L $ {} (:type :leaf) (:by |BJMyLOplX) (:at 1528822256156) (:text |segments) (:id |rJvl9uTxm)
|P $ {} (:type :expr) (:by |BJMyLOplX) (:at 1528822256869) (:id |HklFl9d6gQ)
:data $ {}
|T $ {} (:type :leaf) (:by |BJMyLOplX) (:at 1528822258096) (:text |cons) (:id |H1Ye5_axQ)
|j $ {} (:type :expr) (:by |BJMyLOplX) (:at 1528822258751) (:id |Hk_j5dpxQ)
:data $ {}
|T $ {} (:type :leaf) (:by |BJMyLOplX) (:at 1528822261181) (:text |:name) (:id |BJbql9dTgm)
|j $ {} (:type :leaf) (:by |BJMyLOplX) (:at 1528822265131) (:text |guidepost) (:id |rykZqu6gm)
|T $ {} (:type :expr) (:id |BJMNUiCNuc-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |HkXEUj0Vu5-) (:text |string/join) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |ry44IoC4uqZ) (:text ||/) (:by |root) (:at 1505410717327)
|p $ {} (:type :expr) (:id |B1gq7s9j6Z) (:by |root) (:at 1508776738312)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:id |B1gq7s9j6Zleaf) (:by |root) (:at 1508776740039)
|j $ {} (:type :expr) (:id |Byle4j9i6Z) (:by |root) (:at 1508776744505)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:id |BkgVo9j6Z) (:by |root) (:at 1508776746216)
|j $ {} (:type :leaf) (:text |acc) (:id |ryfGNscjTW) (:by |root) (:at 1508776749334)
|r $ {} (:type :leaf) (:text ||/) (:id |HJQSEi9s6b) (:by |root) (:at 1508776750425)
|v $ {} (:type :leaf) (:text |segment-path) (:id |ByqNi5iTZ) (:by |root) (:at 1508776757885)
|r $ {} (:type :expr) (:id |HJrBjqo6W) (:by |root) (:at 1508776764833)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:id |ryGSoqoa-) (:by |root) (:at 1508776766481)
|j $ {} (:type :leaf) (:text |path) (:id |HyGLri9iTW) (:by |root) (:at 1508776767120)
|v $ {} (:type :leaf) (:text |query) (:id |HyxuSicipb) (:by |root) (:at 1508776768881)
|x $ {} (:type :leaf) (:text |dict) (:id |SkGKHjqsT-) (:by |root) (:at 1508776770801)
|slashTrimLeft $ {} (:type :expr) (:id |B1IhbBsRVd9-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SJPn-SjAVucb) (:text |defn) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |rJd2ZSoCV_9-) (:text |slashTrimLeft) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |ryYh-roCVd9W) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |H1q2bBjCE_c-) (:text |address) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |SJohbBs0V_9b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |Syhh-BjREd5Z) (:text |if) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |ryanbBs04O9b) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BkC2WHi0Vu5b) (:text |string/blank?) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |B1kaZHj0NO5-) (:text |address) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |ryla-BjAEd5-) (:text ||) (:by |root) (:at 1505410717327)
|v $ {} (:type :expr) (:id |SyZpZSjA4ucZ) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |r1MTWriAEO9-) (:text |if) (:by |root) (:at 1505410717327)
|j $ {} (:type :expr) (:id |BJ7aWrs0Vd5-) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |SkE6WriAEO5-) (:text |=) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |Hkr6ZrsANdcW) (:text ||/) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |SJIa-BjAV_qW) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |rJPp-HsAE_9W) (:text |first) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |S1_T-rj0NuqW) (:text |address) (:by |root) (:at 1505410717327)
|r $ {} (:type :expr) (:id |HJtpZBjCVu5Z) (:by nil) (:at 1505410717327)
:data $ {}
|T $ {} (:type :leaf) (:id |BJ5abSo0NOcW) (:text |subs) (:by |root) (:at 1505410717327)
|j $ {} (:type :leaf) (:id |SJip-So0Edc-) (:text |address) (:by |root) (:at 1505410717327)
|r $ {} (:type :leaf) (:id |SJhT-ri0VO5b) (:text |1) (:by |root) (:at 1505410717327)
|v $ {} (:type :leaf) (:id |BkTabHiR4d9W) (:text |address) (:by |root) (:at 1505410717327)
|stringify-query $ {} (:type :expr) (:id |SySgLjAEu5Z) (:by nil) (:at 1505410717327)