-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
1508 lines (1507 loc) · 129 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 $ {}
|27wHO9WSk $ {} (:name |chen) (:id |27wHO9WSk) (: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 |app)
:root $ {} (:ns |main) (:def |main!)
:files $ {}
|app.comp.container $ {}
:ns $ {} (:type :expr) (:id |rk_KQ_Q65Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BkttQO765b) (:text |ns) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Hyct7OXpcW) (:text |app.comp.container) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |rJPlK7Om65Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyOxY7Oma9b) (:text |:require) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SJKlK7dX69-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1qxtXuXpcW) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1jgYmuQTcW) (:text |hsl.core) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |BJ2xFmu76c-) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |ry6gYQdQp5b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HkRxKXuQ69b) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rkJbtm_7Tcb) (:text |hsl) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |BJxbFQOQTq-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B1ZZYXO7a9W) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rkf-YX_X69W) (:text |respo-ui.core) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |ryQZt7uQp5Z) (:text |:as) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |r14-t7_mpqW) (:text |ui) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |HyTiLNjyG) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |By0F7_Qac-) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |S1JlF7umT9Z) (:text |respo.core) (:by |27wHO9WSk) (:at 1567103307607)
|r $ {} (:type :leaf) (:id |B1xgtmdX65-) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |SybeF7dQ65Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B1GlYX_769-) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |ryQlKQ_Xp9b) (:text |defcomp) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |rJ4eK7O7pqW) (:text |div) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |HySxY7uQTqW) (:text |span) (:by |root) (:at 1505732641257)
|x $ {} (:type :leaf) (:id |BJIlKmdQa5W) (:text |<>) (:by |root) (:at 1505732641257)
|x $ {} (:type :expr) (:id |H1nZKX_maq-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkTWYQ_7pcW) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1AWF7_ma5W) (:text |respo.comp.space) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |SkkfYXOmaqW) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |B1gMtXdmp9b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S1WzKmd769b) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |S1ffFQumac-) (:text |=<) (:by |root) (:at 1505732641257)
|y $ {} (:type :expr) (:id |Sy7MYXuXTcb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ByEMFm_m69W) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |BkBGKmdQ65-) (:text |respo.comp.inspect) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |S18Mt7dXaq-) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |ByPGKXu765Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJdzKQOmpc-) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HkYMK7dQTcZ) (:text |comp-inspect) (:by |root) (:at 1505732641257)
|yT $ {} (:type :expr) (:id |BkcfKQu769b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B1oMt7_X69Z) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Bk3fFQ_7pqZ) (:text |app.comp.header) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |Bk6fF7O7acb) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |B1CfYQd7p5-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkymKQuQ65b) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Bkg7Ymu7aqZ) (:text |comp-header) (:by |root) (:at 1505732641257)
|yj $ {} (:type :expr) (:id |SJWQK7_769Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1fQtm_X6c-) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1mQKXOmp5-) (:text |app.comp.home) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |ByV7YXO765b) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |rkB7Y7d7T9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1IQt7O769Z) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HywQKXdX65Z) (:text |comp-home) (:by |root) (:at 1505732641257)
:defs $ {}
|comp-container $ {} (:type :expr) (:id |HkFmF7d7acW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Bk9mtQOmacb) (:text |defcomp) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Hko7FQ_7pqW) (:text |comp-container) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |Hk27KmuXT5b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ67YX_maq-) (:text |store) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |BkD4FQOXTqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S1ONKmumTc-) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SJtEtmOma5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Sy5EK7_7T5W) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |BJoNtXdX65Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJnNY7_Qp5b) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |rkpEKQd7p9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SkREY7O7a9Z) (:text |merge) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HykHFXdmpcb) (:text |ui/global) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |B1lHKX_Xa9-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Hy-HYmOma9b) (:text |comp-header) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |SkGrKQ_m6qb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Sy7SFQump9-) (:text |comp-home) (:by |root) (:at 1505732641257)
:proc $ {} (:type :expr) (:id |rJu7tmuQT9b) (:by nil) (:at 1505732641257) (:data $ {})
|app.comp.header $ {}
:ns $ {} (:type :expr) (:id |rk8HGYQOQpc-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ryvHzYmdQac-) (:text |ns) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SkurMFQOQpcZ) (:text |app.comp.header) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |HJBIGtmdm6qb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJU8fF7_m69Z) (:text |:require) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |BkDIGKX_7Tq-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SkdUzK7dmac-) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |ryKUGtmdXa9W) (:text |hsl.core) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |Sy9IfF7d7Tcb) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |H1jIzt7dX6q-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Bk2UGKX_ma5W) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B16LGY7d7Tcb) (:text |hsl) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |r1CLGtXdXTcb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyJwfY7dQp5W) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |ryxwGKXOma5b) (:text |respo-ui.core) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |SJWvftQOmT9-) (:text |:as) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |SyMDzKmdQ65b) (:text |ui) (:by |root) (:at 1505732641257)
|x $ {} (:type :expr) (:id |B1lvhU4jkz) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S1hSftXuma5b) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HypSzFQO7TcW) (:text |respo.core) (:by |27wHO9WSk) (:at 1567103315753)
|r $ {} (:type :leaf) (:id |rJRrfKQuQT5W) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |H1JLGYmdQ65-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SkgUMKmOQa5Z) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SJ-LMF7O7T5b) (:text |defcomp) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |ryzUGF7uQpqW) (:text |div) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |ryXUMKXdQT9-) (:text |span) (:by |root) (:at 1505732641257)
|x $ {} (:type :leaf) (:id |HyNIzFQ_mpq-) (:text |a) (:by |root) (:at 1505732641257)
|y $ {} (:type :expr) (:id |H1JdMFXdmTcb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ryxOfKXuQ6qW) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1WOGKXu7pcb) (:text |respo.comp.space) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |SkMuzKX_76qW) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |S1XOfYX_QTcb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyN_GtX_mT5W) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SkrufFQuQpc-) (:text |=<) (:by |root) (:at 1505732641257)
:defs $ {}
|comp-header $ {} (:type :expr) (:id |HyP_ztmdXaqZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1uOztXdQp5W) (:text |defcomp) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rJKuMY7OX69-) (:text |comp-header) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |B1qOzt7O76qb) (:by nil) (:at 1505732641257) (:data $ {})
|v $ {} (:type :expr) (:id |HJj_ztmd7a5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SkhdftXdm6q-) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |S1puzt7u7T5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S1ROMt7dQTqW) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |Hy1YGKXdQT9b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJgYfKmOmp5b) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HJZKfY7dmpcZ) (:text |style-header) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |HyMYGKXdQp9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ByXFfYmdXp5-) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |B14FfKXd7a9-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BkHYzKXd7pqW) (:text |{}) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ryLFfYQOXp5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJvFGKmO765-) (:text |render-link) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |ry_tzK7_m6q-) (:text ||Respo) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |BJYFzKmuQa5Z) (:text ||/) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |HkqFGYmuQa9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1jFztXOXT9W) (:text |render-link) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rkhFfKQO769b) (:text ||Guide) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |rkatfFX_mT9W) (:text ||https://github.com/Respo/respo/wiki) (:by |root) (:at 1505732641257)
|x $ {} (:type :expr) (:id |Sk0KMYmumacW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ1qMtX_mac-) (:text |render-link) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |ryx5MY7Oma5b) (:text "||API Docs") (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |rJb9MtQuQ6cZ) (:text ||https://github.com/Respo/respo/wiki/API) (:by |root) (:at 1505732641257)
|y $ {} (:type :expr) (:id |Syz5GYm_7aqW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SkQ5MFQ_Xa9-) (:text |render-link) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HyE5MtX_mTq-) (:text ||Community) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |SyS5zY7uQ69-) (:text ||https://github.com/Respo/respo/wiki/Community) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |BkIcfYXdQ69-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1w5fKmOXpcW) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SkO9fK7dQpq-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1YcMFQu7acZ) (:text |{}) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |H1q5ztQOX6q-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJiczFXdXpcW) (:text |a) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |r1n9ftmdQTc-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJpcGtQO7T5b) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |H10cMYXuXT9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJyszFQdXacW) (:text |:href) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1eoMY7umT5-) (:text ||https://github.com/Respo) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |Bk-sMYXOmTq-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJfjzYQOmTcb) (:text |:inner-text) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Bymiztmu769-) (:text ||GitHub) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |SyEsGKmuX6q-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ryHiMKXum6q-) (:text |:target) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SkIjztQumT9W) (:text ||_blanck) (:by |root) (:at 1505732641257)
|x $ {} (:type :expr) (:id |B1woGYQuma5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Bk_oGYQdQa5Z) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rJKsftXO7T9Z) (:text |style-github) (:by |root) (:at 1505732641257)
|render-link $ {} (:type :expr) (:id |B1s6Gt7dmT9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJhpzK7O7acW) (:text |defn) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Hk6azYXOQ65W) (:text |render-link) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |SyAafKm_mpc-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ryk0ftQOQp5-) (:text |text) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H1x0fYQ_Q69b) (:text |path) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |rJWAMYQ_7p5-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyMRzK7d769-) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SkQ0zKXuXTcZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ4RGYXumaqZ) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |S1r0MYQu7TcZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyICzK7d7a5Z) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |BJP0GYX_7a9Z) (:text |style-section) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |Bkfl7Ym_XpcZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ryXxmtQOQaq-) (:text |a) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |HyVeXKQ_Qa9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJrlmF7uQ65Z) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |B1UemYXuX6cb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJvlXYX_Xa9-) (:text |:inner-text) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H1ul7K7_X6qb) (:text |text) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |rkFxXKmOX6qb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Sk5gmYmO7a9Z) (:text |:href) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |ryjxmtXOXpcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ry3xmt7_m6q-) (:text |str) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |By6eXFm_7a5-) (:text |path) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |HyAg7K7_XTcb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S11bXtX_m6c-) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HkgWQFmO7p5W) (:text |style-link) (:by |root) (:at 1505732641257)
|style-github $ {} (:type :expr) (:id |HkkfmFQuQTcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1xGXKX_7TcZ) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1-fmtQO7Tc-) (:text |style-github) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |H1fG7Y7u76qW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1QMQF7_7acb) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |HkEfmFmdX69W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJBGXYm_Qa5-) (:text |:text-decoration) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SyLM7tX_XpcZ) (:text |:none) (:by |root) (:at 1505732641257)
|style-header $ {} (:type :expr) (:id |SycifY7u7pc-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyjoGt7um69b) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1hjfYm_Qp5b) (:text |style-header) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ry6jMFQdQ69W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ryAjzK7OQpcb) (:text |merge) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1y3MtQ_Xpcb) (:text |ui/row) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |S1xhfKmdmp5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1b3ztX_Q69W) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SkfhfYXdXpqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SkQhzKmOmTcZ) (:text |:justify-content) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SkV3MYQ_ma9W) (:text |:space-between) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ByrnzY7Om6cW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ82MtmuQa9b) (:text |:align-items) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Bkw2fKQ_7acZ) (:text |:center) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |BJOnfFmOQ6qb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyKhGtQdm69Z) (:text |:padding) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |ry53MFXuXpqW) (:text "||0 32px") (:by |root) (:at 1505732641257)
|x $ {} (:type :expr) (:id |HyonMFmumT5W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJnhfY7_mTqW) (:text |:border-bottom) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |By63GK7u7a9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkRhMY7u76qZ) (:text |str) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |S1JaMKXdXpcZ) (:text "||1px solid ") (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ryeTMYQ_Xp9b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkWpftXd76qb) (:text |hsl) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H1GpfYmu76qW) (:text |0) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |BJXpMFQdQpcW) (:text |0) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |r1VTfFQu7a9-) (:text |94) (:by |root) (:at 1505732641257)
|y $ {} (:type :expr) (:id |H1STzFX_Qa5W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S186ftQd7pc-) (:text |:line-height) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |S1wTfF7Omp5W) (:text ||40px) (:by |root) (:at 1505732641257)
|yT $ {} (:type :expr) (:id |SyOaGt7umaqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ryF6MtmdXTqZ) (:text |:font-family) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1q6GtQdQTqW) (:text "||Josefin Sans") (:by |root) (:at 1505732641257)
|style-link $ {} (:type :expr) (:id |B1-bXY7OXpqW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJGWmKXuQ6cW) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1X-mt7uQ6cW) (:text |style-link) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ry4WmF7uXTcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Hyr-mtQumTq-) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |S1IZXKm_Xp5b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyDWmYmOmacZ) (:text |:cursor) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1OW7tX_QpcZ) (:text |:pointer) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |SyFZ7Y7O7pcb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJcZ7FQOXT9-) (:text |:text-decoration) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SyjWXtmdm6cW) (:text |:none) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |rJ3-XYXdQ65-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BkpWXFQuXT9b) (:text |:font-size) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |BkAW7t7dXa5W) (:text |16) (:by |root) (:at 1505732641257)
|style-section $ {} (:type :expr) (:id |rkPMmtX_Q6c-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BkdG7FQuQ6cZ) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SkYfXY7uX6cb) (:text |style-section) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |Hy9MXFXOXpqZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyiGXKQ_X6q-) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |Syhf7YQOXpcb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SyaGXFQ_Qp9b) (:text |:display) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |By0MmYQ_m65Z) (:text |:inline-block) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |Bkk77KmOXpcZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SyxXXFX_mp9W) (:text |:margin-right) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rkZmmt7dXp9b) (:text |64) (:by |root) (:at 1505732641257)
:proc $ {} (:type :expr) (:id |H1LdMF7_m6qZ) (:by nil) (:at 1505732641257) (:data $ {})
|app.comp.home $ {}
:ns $ {} (:type :expr) (:id |SyKkgKQd7p9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Hy51eFXOmpqZ) (:text |ns) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rJiJxKX_Qa5Z) (:text |app.comp.home) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |BkTllF7d7p9W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJRggFmOXp9Z) (:text |:require) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |B1k-lt7_7a9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Skl-lKXdQTq-) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |BkZ-etQO7acb) (:text |hsl.core) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |SkzZxY7_mTqW) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |Hkm-ltQdQacZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rk4-xKXO7acW) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |S1BZxYm_769b) (:text |hsl) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |SkIbgYX_m65-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJw-xKXdmpqW) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SJu-xt7dQT5Z) (:text |respo-ui.core) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |rkYbeFmOQp5-) (:text |:as) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |Sk9-gF7dmaq-) (:text |ui) (:by |root) (:at 1505732641257)
|x $ {} (:type :expr) (:id |r1WXTLViJf) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkyxeYmuQTq-) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |BkleeKQuXpc-) (:text |respo.core) (:by |27wHO9WSk) (:at 1567103326762)
|r $ {} (:type :leaf) (:id |H1-lxtm_Qac-) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |HkMxxtmdQpqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJXxltmdmp5Z) (:text |[]) (:by |root) (:at 1505732641257)
|yr $ {} (:type :leaf) (:id |rysxeFmdmTqb) (:text |pre) (:by |root) (:at 1505732641257)
|yT $ {} (:type :leaf) (:id |SyFlxYXdQacb) (:text |a) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SyEgeY7_7pc-) (:text |defcomp) (:by |root) (:at 1505732641257)
|x $ {} (:type :leaf) (:id |ByvxlYQu76cZ) (:text |div) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |Bk8leFQOQp5-) (:text |span) (:by |root) (:at 1505732641257)
|yj $ {} (:type :leaf) (:id |HJqxgYXOQpcb) (:text |img) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |BJrlgFXuQ6q-) (:text |<>) (:by |root) (:at 1505732641257)
|y $ {} (:type :leaf) (:id |HJOlxYm_QT9b) (:text |button) (:by |root) (:at 1505732641257)
|yv $ {} (:type :leaf) (:id |S1nxlKmd7p5b) (:text |code) (:by |root) (:at 1505732641257)
|y $ {} (:type :expr) (:id |HJDfxF7_ma5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJufxYmu7aqZ) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rJtzlFX_Qac-) (:text |respo.comp.space) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |BJcMlFm_Qp9b) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |BkoMlKm_m69b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ3zxYQdmT9b) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SJpflKmdm65Z) (:text |=<) (:by |root) (:at 1505732641257)
|yj $ {} (:type :expr) (:by |root) (:at 1521306296712) (:id |SyZTqp9KM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521306297404) (:text |[]) (:id |SyZTqp9KMleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1521306302726) (:text |respo-md.comp.md) (:id |r1Mba569YM)
|r $ {} (:type :leaf) (:by |root) (:at 1521306303439) (:text |:refer) (:id |SkZDaca9Kf)
|v $ {} (:type :expr) (:by |root) (:at 1521306303649) (:id |r1d69acYM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521306303827) (:text |[]) (:id |S1uw656ctM)
|j $ {} (:type :leaf) (:by |root) (:at 1521306304272) (:text |comp-md-block) (:id |ByGOTq6qFz)
|yr $ {} (:type :expr) (:by |root) (:at 1521307723446) (:id |SklQ8eA9tz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307724124) (:text |[]) (:id |SklQ8eA9tzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1521307728147) (:text "|\"highlight.js") (:id |r1ZELxR9Yf)
|r $ {} (:type :leaf) (:by |root) (:at 1521307731018) (:text |:as) (:id |ryX_IeA9FM)
|v $ {} (:type :leaf) (:by |root) (:at 1521307732076) (:text |hljs) (:id |SkziUl05FG)
|yv $ {} (:type :expr) (:by |root) (:at 1540831722439) (:id |joUln7jWNw)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1540831722780) (:text |[]) (:id |joUln7jWNwleaf)
|X $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103335444) (:text |shadow.resource) (:id |WjuRyENzM)
|b $ {} (:type :leaf) (:by |root) (:at 1540831731245) (:text |:refer) (:id |srV_TmkuH)
|j $ {} (:type :expr) (:by |root) (:at 1540831728572) (:id |jK8SwqEI1)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1540831725761) (:text |[]) (:id |4SRBo_Xnlo)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103337098) (:text |inline) (:id |J3qLD1TYN3)
:defs $ {}
|comp-home $ {} (:type :expr) (:id |SkfJbFm_XT9W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkQJZFXd7ac-) (:text |defcomp) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SkEJbYQ_7T9-) (:text |comp-home) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |BkSy-tmOmpqW) (:by nil) (:at 1505732641257) (:data $ {})
|v $ {} (:type :expr) (:id |ByvkZKXuX6c-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B1uy-Fm_ma5Z) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |B1K1-FXOmaqW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HkckZtQdmp5-) (:text |{}) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |S1iy-KX_maqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJ31ZtQdXTcb) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |S1ak-YXOmp9b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJA1Wtm_ma9-) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |HJJebKmOQaq-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkll-K7dQ6cW) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |HyZeZtQ_maqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B1fgbKmOQTcZ) (:text |merge) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |ryQxbKmO76cb) (:text |ui/column) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |SkElZYmdQTcb) (:text |ui/center) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |HJSlWY7_Qacb) (:text |style-header) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ryIgbFmuXp5b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B1weZKQ_Qpq-) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |S1Ol-Y7_XpcZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkte-tX_7pcZ) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |rk9g-tmdQTcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Skog-YXuQp9W) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H13lWYQOXp9W) (:text |style-logo) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |rkalZYXdXaqW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B10x-FXuQa9W) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |H1JW-t7_QpqW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1lb-Kmu7pcZ) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |H1-bbFm_macW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1GZWFmdmT5Z) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |S1QWbKQumT9W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyVWWt7dX69Z) (:text |merge) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HJBZbY7Om69W) (:text |ui/center) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |HJIZZFQO7Tqb) (:text |ui/row) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |BJwbZYmdma9b) (:text |style-suggest) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |HkOWbtQd7aqW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BkY-Zt7O769-) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SJcZbFX_QTc-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Byo-ZY7Ompq-) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |rJhZZtmu7TcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJTWZKQdQ6c-) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SkAWbKQuQ69W) (:text |style-description) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |r11z-FmO7TcZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJxMZY7uXacb) (:text |<>) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HkZM-YmuQ6qZ) (:text |span) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |SJMzWYXuQ69b) (:text "||Respo: a Virtual DOM library in ClojureScript.") (:by |root) (:at 1521348393524)
|v $ {} (:type :leaf) (:id |B1Xf-KQuXT5b) (:text |nil) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |SyEzZFmd7acZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B1rfZFX_Qpq-) (:text |=<) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1LzZKXOmpqW) (:text |8) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |HkvzbtXuQa5W) (:text |nil) (:by |root) (:at 1505732641257)
|x $ {} (:type :expr) (:id |S1uzZt7O7aqW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S1KzZYQ_Xac-) (:text |a) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |rJcGWYQOmTcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Bysf-tmO76qZ) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SJ3GbYXdXT9b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyaMZY7umacZ) (:text |:href) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H10fZKm_7p5b) (:text ||https://github.com/Respo/respo-examples) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |r11Q-tXd765Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Byem-t7uQ6qb) (:text |:target) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HJ-mZFQu7p5b) (:text ||_blank) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ryG7ZFQO7pcb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJm7ZFX_7TqW) (:text |button) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |ryNmWtX_7pcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJBXWYXd7a5b) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |Sk8XbFmOmacZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BkPXbtX_Q69W) (:text |:inner-text) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rkdmbK7_X65b) (:text "||Read Examples") (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ByF7Wt7u7p9W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SyqXbtQ_mpcZ) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |S1jXbYmOma9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1nmWYmOX6cZ) (:text |merge) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SyTX-Fmdma5b) (:text |ui/button) (:by |root) (:at 1505732641257)
|y $ {} (:type :expr) (:id |S1AX-tXumpcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyyVZt7OmT5Z) (:text |=<) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HklE-KQdXTcW) (:text |8) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |HkWE-tmd7TqZ) (:text |nil) (:by |root) (:at 1505732641257)
|yT $ {} (:type :expr) (:id |S1f4-YQuQ6qZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ByXNWFXdXT9Z) (:text |a) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |By44-F7dQpqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ByHVWtXu7pcb) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |rkI4bY7dmac-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyPEWK7uma9-) (:text |:href) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |S1dNWY7uQTc-) (:text ||https://github.com/Respo/respo/wiki/Beginner-Guide) (:by |root) (:at 1505925639090)
|r $ {} (:type :expr) (:id |BytEWFX_Q6qb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ54Wt7_7pqW) (:text |:target) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |SkoEbK7umTc-) (:text ||_blank) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |S12EWYX_7a5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJp4-KmuQp5Z) (:text |button) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |S1RV-K7dmTqZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJyH-YmO7TcZ) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |HJgrWKXdQ6q-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJbSbtQuX6q-) (:text |:inner-text) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |ryzr-YQdQTq-) (:text "||Beginner Guide") (:by |root) (:at 1505925716234)
|r $ {} (:type :expr) (:id |SymrbKQu76c-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyESbKQd7acb) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SJrBWYQdmTqZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ByLr-YQuQTc-) (:text |merge) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HkPBWKm_7acb) (:text |ui/button) (:by |root) (:at 1505732641257)
|w $ {} (:type :expr) (:by |root) (:at 1521306261419) (:id |r1ga5qa9Ff)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521306261888) (:text |div) (:id |r1ga5qa9Ffleaf)
|j $ {} (:type :expr) (:by |root) (:at 1521306262158) (:id |rJ7Aqcp5Fz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521306262677) (:text |{}) (:id |SJMC95aqYf)
|j $ {} (:type :expr) (:by |root) (:at 1521307558552) (:id |ry1nkA9Kz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307560612) (:text |:style) (:id |HJgCiy0qKG)
|j $ {} (:type :expr) (:by |root) (:at 1521307560810) (:id |rkW-h1C5Fz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307561160) (:text |{}) (:id |B1e-nJR9Fz)
|j $ {} (:type :expr) (:by |root) (:at 1521307561401) (:id |SkSWh1R5Yz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307562138) (:text |:width) (:id |r1EWnyR9tG)
|j $ {} (:type :leaf) (:by |root) (:at 1521307564292) (:text |800) (:id |rkmhkCqKz)
|r $ {} (:type :expr) (:by |root) (:at 1521307564900) (:id |rkxShkCqYG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307566017) (:text |:margin) (:id |rkxShkCqYGleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1521307569198) (:text |:auto) (:id |SkS821A5tM)
|v $ {} (:type :expr) (:by |root) (:at 1521348397527) (:id |Hy8N1_sKz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521348400427) (:text |:font-size) (:id |Hy8N1_sKzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1521348673427) (:text |16) (:id |rkY4JuotM)
|r $ {} (:type :expr) (:by |root) (:at 1521306263421) (:id |rkfJoca9tG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521306267571) (:text |comp-md-block) (:id |rkfJoca9tGleaf)
|j $ {} (:type :expr) (:by |root) (:at 1540831750866) (:id |B5nW3h5T-)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103345902) (:text |inline) (:id |rkWNi9p5FM)
|j $ {} (:type :leaf) (:by |root) (:at 1540831755501) (:text "|\"content.md") (:id |k4EzV1OM6)
|r $ {} (:type :expr) (:by |root) (:at 1521306270293) (:id |B1eLjqa5KG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521306270646) (:text |{}) (:id |SJLs5a5Yf)
|j $ {} (:type :expr) (:by |root) (:at 1521307682804) (:id |HkljmlCqYz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307688704) (:text |:highlight) (:id |Hyo7e05Kf)
|j $ {} (:type :expr) (:by |root) (:at 1521307689591) (:id |HkGEgR9YG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307690272) (:text |fn) (:id |By-WVe05Fz)
|j $ {} (:type :expr) (:by |root) (:at 1521307690730) (:id |HygmVlRcYM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307694470) (:text |code) (:id |rJmNgAqYz)
|j $ {} (:type :leaf) (:by |root) (:at 1521307696162) (:text |lang) (:id |rkP4gRcFM)
|r $ {} (:type :expr) (:by |root) (:at 1521307696850) (:id |ByYExCcFG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307709436) (:text |.-value) (:id |ByYExCcFGleaf)
|j $ {} (:type :expr) (:by |root) (:at 1521307709674) (:id |SkxISeC5tM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307715872) (:text |.highlight) (:id |BJUSe0cFG)
|j $ {} (:type :leaf) (:by |root) (:at 1521307719833) (:text |hljs) (:id |HyE3BxCqtM)
|r $ {} (:type :leaf) (:by |root) (:at 1521307721047) (:text |lang) (:id |S1ZgUg09Kz)
|v $ {} (:type :leaf) (:by |root) (:at 1521307721563) (:text |code) (:id |rkmZLlC9YG)
|y $ {} (:type :expr) (:id |Skit-K7um69b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BynK-YXuXacW) (:text |div) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SkatWFmumacb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1RKZYQO7T9-) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |rykcZKQd765b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BkeqbKX_Xa9Z) (:text |:style) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Sy-cbKQuXpq-) (:text |style-footer) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ryGcZK7d7T5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJQqbtQOQTcZ) (:text |img) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |HkNc-tQdXp5b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJS9bYQOXp5-) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |ByI5ZKQ_Xpcb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SyP5ZK7umpcW) (:text |:src) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HydcZt7dmTcW) (:text ||https://img.shields.io/clojars/v/respo.svg) (:by |root) (:at 1505732641257)
|style-description $ {} (:type :expr) (:id |BJbClK7u7p9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJGRetmdQT5W) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rJXAgFm_76q-) (:text |style-description) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |Sy40gtQdXpcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SyHRxY7_maq-) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |Sy8AgKXOQ65W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S1wRgK7d76cW) (:text |:font-size) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Syu0lFmOmT5W) (:text |16) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |S1FAgF7dX6qb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Bkc0xFQd7T5Z) (:text |:font-weight) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |BksCgtQuQp5-) (:text |400) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |BJhCltQOQ6qZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rk6CetmO7T9W) (:text |:color) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103730696) (:id |koxNffMR1D)
:data $ {}
|T $ {} (:type :leaf) (:id |rJAAgFXO7acW) (:text |hsl) (:by |27wHO9WSk) (:at 1567103731217)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103732356) (:text |0) (:id |z6B0_5KEc)
|r $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103732699) (:text |0) (:id |YyPPyPPXs6)
|v $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103733233) (:text |30) (:id |YJnWZ2MRUl)
|x $ {} (:type :expr) (:id |SJJyWtQ_m6cb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S1xyZFXOQT9Z) (:text |:font-family) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1-y-KXOX69b) (:text ||Hind) (:by |root) (:at 1505732641257)
|style-footer $ {} (:type :expr) (:id |H1SDgtXOQ6c-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1LwgYX_Xp9b) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1wDetQOXpqb) (:text |style-footer) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |r1uwlFmOm6qW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HyYPeK7uXacZ) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |B1cwgK7umpq-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rksDgK7Omp5b) (:text |:min-height) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H1nveFmuQaqb) (:text |200) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |HJTPlYXumT5-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1CPlKQump9b) (:text |:padding) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |S11detmd76qW) (:text |32) (:by |root) (:at 1505732641257)
|style-header $ {} (:type :expr) (:id |SJhrgF7uXp9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BkTSetXOQ6c-) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HyRSgtm_7p5W) (:text |style-header) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |SJJLeKmdXp5Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ryeIeY7d76c-) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |SybIxYQdX69Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkM8gtXOmTc-) (:text |:padding-top) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rJQIxK7_765-) (:text |64) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ryNIgKmu7a9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJrIeKXuQa9-) (:text |:padding-bottom) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |S18UltX_7Tqb) (:text |0) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |rJPUxKXOXT9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HkOUlFQO7Tq-) (:text |:background-color) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |S1tIgYmdmT9Z) (:text |:white) (:by |root) (:at 1505732641257)
|style-logo $ {} (:type :expr) (:id |BJPFlFmdma9b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ_FlF7O769-) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1FYgKmdmTc-) (:text |style-logo) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |HJcFlFX_Xpc-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1oYlKQdQp5-) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |ryhteYXO7pcZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |ByTYeYQdQT9Z) (:text |:width) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |BJ0FeFmOXp5b) (:text |160) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ryycgKXdXTqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJgqltm_m6cZ) (:text |:height) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HybceKm_7TcW) (:text |160) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |S1G5gF7uQa5W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HymclKXd765b) (:text |:background-image) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |Sy45gFXdXa9Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJrclKm_X6c-) (:text |str) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1UclYXu7p9-) (:text "||url(http://cdn.tiye.me/logo/respo.png)") (:by |root) (:at 1538413301629)
|x $ {} (:type :expr) (:id |r1D5gtmdQTcW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rJdcxKmuXa9Z) (:text |:background-size) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |BJKcltXumpcW) (:text |:cover) (:by |root) (:at 1505732641257)
|y $ {} (:type :expr) (:id |B15qlKXOmp5W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rksclKXO7TcZ) (:text |:display) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H139gFQu76qZ) (:text |:inline-block) (:by |root) (:at 1505732641257)
|yT $ {} (:type :expr) (:id |HJa5eYm_X6qW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Hk09lFXdmT9W) (:text |:vertical-align) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HykilFmOXT5Z) (:text |:middle) (:by |root) (:at 1505732641257)
|style-suggest $ {} (:type :expr) (:id |rJ5IeYQ_mT5b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Bkj8xt7dXT5Z) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H128xK7Omp5Z) (:text |style-suggest) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |SJ6LxKmOQpqW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HkA8eFmdX69Z) (:text |{}) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |BJyDeKXuQp9b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1ePeKQ_7pqZ) (:text |:padding-top) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1-wetm_769-) (:text |48) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |ByzwgFXu7acb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Bk7wxK7OQ69W) (:text |:padding-bottom) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |ByEvgtXdQpq-) (:text |48) (:by |root) (:at 1505732641257)
:proc $ {} (:type :expr) (:id |ByAGlK7uXa5-) (:by nil) (:at 1505732641257) (:data $ {})
|app.config $ {}
:ns $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |SkxVxJ3Pm7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |ns) (:id |rJWElk3Dmm)
|j $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |app.config) (:id |BkMVgJ3P7X)
|r $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |HJXExJnvm7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |:require) (:id |rkVNeknwm7)
|j $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |HJrNgy2vmQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |[]) (:id |Hy8NlkhvXQ)
|j $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |app.util) (:id |BkwNgynvXX)
|r $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |:refer) (:id |HkdVey2vQ7)
|v $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |BJKVe13wXm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |[]) (:id |SkcNg1nDQQ)
|j $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |get-env!) (:id |Sys4ly3D7X)
:defs $ {}
|cdn? $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103411155) (:id |1aXMCKpRJT)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |def) (:id |_hVBgVyTiv)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |cdn?) (:id |QW8zbaUS5b)
|r $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103411155) (:id |dV83ypxzK6)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |cond) (:id |E-fPJZyRPb)
|j $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103411155) (:id |drzvgvMOY2)
:data $ {}
|T $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103411155) (:id |h22dv_iiJc)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |exists?) (:id |fhe_FbPlK_)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |js/window) (:id |Qza2qAxRwD)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |false) (:id |j_i7M7yJRm)
|r $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103411155) (:id |TAXA8sTnb0)
:data $ {}
|T $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103411155) (:id |mlFQhq_PMY)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |exists?) (:id |KOVN_PN9cI)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |js/process) (:id |-fQ9zRYgMs)
|j $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103411155) (:id |z_OPsN1cpR)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |=) (:id |NMePDbiLO1g)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text "|\"true") (:id |zxmxuZwg9tP)
|r $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |js/process.env.cdn) (:id |nCJHCFTvFcf)
|v $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103411155) (:id |N9unaN86iyz)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |:else) (:id |ZTdtafjrEHx)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103411155) (:text |false) (:id |gp6pkCMEjGs)
|dev? $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |dwg-X5QMha)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |def) (:id |Wt6Q3Kn3eJ)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |dev?) (:id |0cS8Esqmiu)
|r $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |74bwlF-FfH)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |let) (:id |MSjLcLMWo6)
|j $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |xkF_po0l96)
:data $ {}
|T $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |2P6N2UAeNj)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |debug?) (:id |Hxca_QWaej)
|j $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |ok-xrR9mZX)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |do) (:id |HXVVnI410U)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |^boolean) (:id |IoRRcukx87)
|r $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |js/goog.DEBUG) (:id |sJV5Id7En7)
|r $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |NJj6KUn9Wr)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |cond) (:id |_zkMDPqh9q)
|j $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |dLGz1CM0cC)
:data $ {}
|T $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |woy7qhG4MXS)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |exists?) (:id |Lr9xH5qan2u)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |js/window) (:id |dySuT0jEJmT)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |debug?) (:id |uqNWCWu2aul)
|r $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |jVl14fnNg-V)
:data $ {}
|T $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |rVsVlCSl3Ez)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |exists?) (:id |ilP3e4W8v5I)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |js/process) (:id |7lH8Oo_aLMh)
|j $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |QAUy0u8hQmg)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |not=) (:id |5QqYvEGpFzt)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text "|\"true") (:id |dAEmFhzgfgk)
|r $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |js/process.env.release) (:id |u7JnQkd8YNL)
|v $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103417361) (:id |KAMX9egQwOJ)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |:else) (:id |QQlHjvkclm3)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103417361) (:text |true) (:id |S7j6m2Bg6U0)
|site $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |Sk_ZNxJnD7X)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |def) (:id |S1FZNgynPQm)
|j $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |site) (:id |r1c-ElyhDmQ)
|r $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |BysWEeJhwQQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |{}) (:id |ByhZNxkhwXQ)
|r $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |SygM4xk2DQ7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |:dev-ui) (:id |HkZf4lk2wmm)
|j $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text "|\"http://localhost:8100/main.css") (:id |HJfzExk3DX7)
|v $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |ryXMNlJ2DmX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |:release-ui) (:id |rkEMEx1nDQ7)
|j $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text "|\"http://cdn.tiye.me/favored-fonts/main.css") (:id |rJrf4xyhDXQ)
|x $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |S1IfNeJ3wXX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |:cdn-url) (:id |ryvfNxJnPmm)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1584785913788) (:text "|\"http://cdn.tiye.me/respo-mvc.org/") (:id |SkuGVxJhD7X)
|yT $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |HkhMEe1hDmX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |:title) (:id |ryTfEl1nvQm)
|j $ {} (:type :leaf) (:by |root) (:at 1531589067782) (:text "|\"Respo: a virtual DOM library in ClojureScript") (:id |SkRGVxJ2PQm)
|yj $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |rkym4e12vQQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531588332159) (:text |:icon) (:id |SJem4xk2DXX)
|j $ {} (:type :leaf) (:by |root) (:at 1531589052722) (:text "|\"http://cdn.tiye.me/logo/respo.png") (:id |SJbQNeyhwQm)
|yr $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103440926) (:id |xHQgbzp-im)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103442571) (:text |:storage-key) (:id |KPTQfedmEk)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103440926) (:text "|\"respo-site") (:id |_bJHEv_40i)
:proc $ {} (:type :expr) (:by |root) (:at 1531588332159) (:id |SJ24xk2DmX) (:data $ {})
|app.main $ {}
:ns $ {} (:type :expr) (:id |BkrrK7_Q6c-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B1UHFm_7a9Z) (:text |ns) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H1DBF7_mp5W) (:text |app.main) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |BkuBtmu7a9-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SyFrtQuXa5b) (:text |:require) (:by |root) (:at 1505732641257)
|yr $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103703245) (:id |s-aHPxRo51)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103704007) (:text |[]) (:id |s-aHPxRo51leaf)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103705347) (:text |app.config) (:id |zFPCKDnerZ)
|r $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103705950) (:text |:as) (:id |OrqHqu8nuy)
|v $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103711370) (:text |config) (:id |il1s2NuG-I)
|yT $ {} (:type :expr) (:by |root) (:at 1521307842791) (:id |rkqkZR5Yf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307843127) (:text |[]) (:id |S1gipxR9Kfleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1521307844653) (:text "|\"highlight.js/lib/languages/bash") (:id |BJQoax09YG)
|r $ {} (:type :leaf) (:by |root) (:at 1521307846683) (:text |:as) (:id |BkR6xAqFf)
|v $ {} (:type :leaf) (:by |root) (:at 1521307850128) (:text |bash-lang) (:id |H1ZJCgC5FM)
|j $ {} (:type :expr) (:id |SycHY7d7T5W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HkirFQdQacZ) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Hk2HKm_Q65-) (:text |respo.core) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |SypSFXd769W) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |Sy0HYXdXT5b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ1IFQuQTcb) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HygLF7dmTq-) (:text |render!) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |HyWUYmdQpqW) (:text |clear-cache!) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |rkzLYm_mpqW) (:text |realize-ssr!) (:by |root) (:at 1505732641257)
|x $ {} (:type :expr) (:id |SJbvKm_7T9W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1MPtXdmpqZ) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HJXwFmump5W) (:text |app.schema) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |HJEvKmOm69Z) (:text |:as) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |ByBwK7OmTcb) (:text |schema) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |HJqLKQOmp5-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Hys8YmdX69W) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Sk3IKQdQ65-) (:text |cljs.reader) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |Hk6Ut7_mpqW) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |BkRLY7d7T9-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJ1PKQOXaq-) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |H1xwFXuXa9W) (:text |read-string) (:by |root) (:at 1505732641257)
|yj $ {} (:type :expr) (:by |root) (:at 1521307821725) (:id |SyeglWA9Fz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307822236) (:text |[]) (:id |S1U2g09tfleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1521307824232) (:text "|\"highlight.js/lib/languages/clojure") (:id |SkzL2xA5Fz)
|r $ {} (:type :leaf) (:by |root) (:at 1521307825174) (:text |:as) (:id |SyY2xA9Yf)
|v $ {} (:type :leaf) (:by |root) (:at 1521307834744) (:text |clojure-lang) (:id |BkmF2l0cYG)
|r $ {} (:type :expr) (:id |rJmIF7OX6cW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rkVItXOma5Z) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1SUKmuX6qb) (:text |app.comp.container) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |HyUIK7dXp5-) (:text |:refer) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |BJDIFQd765b) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BydLt7dmacb) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HJtItQ_7p9-) (:text |comp-container) (:by |root) (:at 1505732641257)
|y $ {} (:type :expr) (:id |rkLwFm_Q6cZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1vPY7_XacW) (:text |[]) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rJuDFm_macb) (:text ||highlight.js) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |ByFDtmdQpqZ) (:text |:as) (:by |root) (:at 1505732641257)
|v $ {} (:type :leaf) (:id |BycvKQOQ6qW) (:text |hljs) (:by |root) (:at 1505732641257)
:defs $ {}
|ssr? $ {} (:type :expr) (:id |B1z_Fmum69W) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1X_Fm_X6q-) (:text |def) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |rkNdKm_Q6cb) (:text |ssr?) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |HkSOYmOmac-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rk8uKQd7ac-) (:text |some?) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |r1vdKX_Qaqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |S1_dFQdm65-) (:text |.querySelector) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HJYdKmuX6qb) (:text |js/document) (:by |root) (:at 1505732641257)
|r $ {} (:type :leaf) (:id |HkcOY7uXaqW) (:text ||meta.respo-ssr) (:by |root) (:at 1505732641257)
|dispatch! $ {} (:type :expr) (:id |SJouFmO7acW) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |Hk2dYXuXTq-) (:text |defn) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |Bkput7OXT9Z) (:text |dispatch!) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |r10dYQO7acb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BJytYmOma9-) (:text |op) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HJeKt7uXa9b) (:text |op-data) (:by |root) (:at 1505732641257)
|t $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103672436) (:id |7diUsIT4AS)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103672436) (:text |when) (:id |czusFntDri)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103672436) (:text |config/dev?) (:id |xQGn7Cc8qN)
|r $ {} (:type :expr) (:by |27wHO9WSk) (:at 1567103672436) (:id |Og94ICXolm)
:data $ {}
|T $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103672436) (:text |println) (:id |wJv5ezbTvb)
|j $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103672436) (:text "|\"Dispatch:") (:id |uVujDeQO1s)
|r $ {} (:type :leaf) (:by |27wHO9WSk) (:at 1567103672436) (:text |op) (:id |IBrazkYzOe)
|*store $ {} (:type :expr) (:id |HJ92KXO7ac-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1ohFmdXp5-) (:text |defonce) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |r1hnKQdQTc-) (:text |*store) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |BkphY7dQTq-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |H1AhY7umT9Z) (:text |atom) (:by |root) (:at 1505732641257)
|j $ {} (:type :expr) (:id |S1ypt7dXTcZ) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |rke6tX_QT5Z) (:text |{}) (:by |root) (:at 1505732641257)
|main! $ {} (:type :expr) (:id |HkBKtXuXTqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |B1IYY7OQpqW) (:text |defn) (:by |root) (:at 1505732641257)
|w $ {} (:type :expr) (:by |root) (:at 1521307884727) (:id |SyBgbRqKz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521307893648) (:text |.registerLanguage) (:id |SyBgbRqKzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1521307895791) (:text |hljs) (:id |HJxRxbC9tM)
|r $ {} (:type :leaf) (:by |root) (:at 1521307906579) (:text "|\"clojure") (:id |S1fZbCcKG)
|v $ {} (:type :leaf) (:by |root) (:at 1521307909057) (:text |clojure-lang) (:id |Sy-sb-RcFG)
|yT $ {} (:type :expr) (:id |SyncFmdmpq-) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |r1a9FQ_Q65b) (:text |println) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HkR5tm_XaqW) (:text "||App started!") (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HyvtFXdQacb) (:text |main!) (:by |root) (:at 1505732641257)
|x $ {} (:type :expr) (:id |BJJqYX_765Z) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |BklqFXdXa9Z) (:text |render-app!) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |HkWctXumpqZ) (:text |render!) (:by |root) (:at 1505732641257)
|v $ {} (:type :expr) (:id |rkFFKQ_Qaqb) (:by nil) (:at 1505732641257)
:data $ {}
|T $ {} (:type :leaf) (:id |SJqtF7dX69Z) (:text |if) (:by |root) (:at 1505732641257)
|j $ {} (:type :leaf) (:id |B1otFmuXT5b) (:text |ssr?) (:by |root) (:at 1505732641257)
|r $ {} (:type :expr) (:id |Sy2tYQ_7T9-) (:by nil) (:at 1505732641257)
:data $ {}