generated from mvc-works/calcit-nodejs-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
10298 lines (10297 loc) · 810 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 $ {}
|yeKFqj7rX $ {} (:name |chen) (:id |yeKFqj7rX) (:nickname |chen) (:avatar nil) (:password |d41d8cd98f00b204e9800998ecf8427e) (:theme :star-trail)
:ir $ {} (:package |lilac)
:files $ {}
|lilac.main $ {}
:ns $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1534483212338) (:id |WD4drWEfD9)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483212338) (:text |ns) (:id |jeg5aDS4Wa)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483212338) (:text |lilac.main) (:id |Hvc4wCBXc4)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579583357321)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583358033) (:text |:require) (:id |O8RukZjGO)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579583358296)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583358469) (:text |[]) (:id |xKdEJgD2)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583365295) (:text |lilac.core) (:id |H-qOFvMEM)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583370785) (:text |:refer) (:id |z6HjEOJYQ)
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579583370944)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583371171) (:text |[]) (:id |AGacT0zlG)
|n $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579594349004) (:text |or+) (:id |ClF1Ik0Fe)
|yr $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579783149379) (:text |vector+) (:id |ocGJ0YB5)
|yT $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579783123916) (:text |not+) (:id |kzm9VnSl)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583379196) (:text |number+) (:id |lOYXFNswb)
|x $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579595534450) (:text |string+) (:id |gnZ_-G9Mr)
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583534217) (:text |validate-lilac) (:id |4n7M0OtP7)
|yj $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579783137842) (:text |nil+) (:id |mx0SIbd8)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583393153) (:text |deflilac) (:id |ADGfCZ7X)
|y $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581079190728) (:text |record+) (:id |RjyFsH9yX)
|yv $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1583255840706) (:text |dev-check) (:id |z40h7CYgJ)
:id |gESuZcIHm
:id |gps5jWP8z
|x $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579593351087)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579593351361) (:text |[]) (:id |IvSJ0mBpleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579593356064) (:text |cljs.reader) (:id |hLUWn6MGy)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579593356811) (:text |:refer) (:id |p7M0g_szu)
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579593356988)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579593357133) (:text |[]) (:id |oGbnuo6AS)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579593359209) (:text |read-string) (:id |RnyhESc6l)
:id |JWZIbfo2X
:id |IvSJ0mBp
|y $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579784977708)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579784978991) (:text |[]) (:id |3HDvcg1Ieleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579784985300) (:text |lilac.router) (:id |6WRUQmYe)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579784986050) (:text |:refer) (:id |B3isX2ODh)
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579784986249)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579784986473) (:text |[]) (:id |1FNRYnjE)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579784988274) (:text |router-data) (:id |nwMv18mf5)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579784999872) (:text |lilac-router+) (:id |v9pC8jG7)
:id |sLtG7n03F
:id |3HDvcg1Ie
:id |JLs1aH55k
:defs $ {}
|main! $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1534483214794) (:id |SWvtON639q)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483214794) (:text |defn) (:id |0OZDgsAOvf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483214794) (:text |main!) (:id |mI-t3ViWvV)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1534483214794) (:id |lP6uJuLIHa) (:data $ {})
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1534483219154) (:id |7MO0wI6pRH)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483220269) (:text |println) (:id |7MO0wI6pRHleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483646733) (:text "|\"Started.") (:id |QtyUDYYqzh)
|x $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579583506702)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583507307) (:text |run-demo!) (:id |cTYioMwBEleaf)
:id |cTYioMwBE
|reload! $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1534483216569) (:id |-BOhJzActg)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483216569) (:text |defn) (:id |78G4OkYMQ2)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483216569) (:text |reload!) (:id |uDkGHYSsJo)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1534483216569) (:id |Lpt5qqH2Vl) (:data $ {})
|w $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1534483614325) (:id |ZaXHdfRAS)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483615196) (:text |.clear) (:id |ZaXHdfRASleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483618012) (:text |js/console) (:id |KTDkK3SQO)
|wT $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1534483228056) (:id |nvVffdJ4rl)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483228922) (:text |println) (:id |_PKSES8fGyleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1534483648553) (:text "|\"Reloaded.") (:id |EGqaOPxjzt)
|xD $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579583498452)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583502524) (:text |run-demo!) (:id |kvBYNRJHnleaf)
:id |kvBYNRJHn
|run-demo! $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579583507865)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583509916) (:text |defn) (:id |HjWknLdmI)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583507865) (:text |run-demo!) (:id |CdhipqVuY)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579583507865) (:data $ {}) (:id |MrUutQ3rk)
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579593287063)
:data $ {}
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579593287765) (:text |let) (:id |OShw_Aq7u)
|L $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579785606400)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579595795697)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579595796339) (:text |result) (:id |q1eKs-ybleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579595797073)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579595797073) (:text |validate-lilac) (:id |GBO8P_huC)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579785015432) (:text |router-data) (:id |Kuuj_kTih)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579750941951)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579785023432) (:text |lilac-router+) (:id |nV3GiZ4U5)
:id |0DBBDxN_K
:id |F6xHxx2fT
:id |q1eKs-yb
:id |XDlaFFP25
|p $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579785615965)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579595801463)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579595802265) (:text |println) (:id |YnEAcKy9Fleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579784407303)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579784414964) (:text |:formatted-message) (:id |Owzyok34m)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579784416072) (:text |result) (:id |aQQONbs5G)
:id |G0n29DAb
:id |YnEAcKy9F
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579785616451) (:text |if) (:id |DjABSM8N)
|L $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579785617141)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579785618257) (:text |:ok?) (:id |sDahEfQjg)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579785619958) (:text |result) (:id |Nx2T4UXC)
:id |uXD99MmI
|P $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579785621335)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579785622972) (:text |println) (:id |5ie_4RVfjleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579786780695) (:text "|\"Passed validation!") (:id |CndW2GGL)
:id |5ie_4RVfj
:id |mO59F_JM_
|u $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1583255831695)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1583255833491) (:text |dev-check) (:id |cZkquCqIleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1583255901817) (:text "|\"1") (:id |ag4H79DH)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1583255846829)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1583255847112) (:text |number+) (:id |lIUWFvo-)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1583568397080)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1583568397483) (:text |{}) (:id |tCxtQtJ-F)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1583568398069)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1583568398576) (:text |:x) (:id |BBA9qJ6Uq)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1583568398965) (:text |1) (:id |yuCZD8NK9)
:id |bQverbrU
:id |dhr54HOp
:id |ygnI1m_hS
:id |cZkquCqI
:id |q-Cke8Bl
:id |cWIo6JqLl
:proc $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1534483212338) (:id |mpzXR47-KZ) (:data $ {})
|lilac.core $ {}
:ns $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1578587929480)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1578587929480) (:text |ns) (:id |DY_Mj3ozx)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1578587929480) (:text |lilac.core) (:id |KRP1UbAif)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579583335732)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583338411) (:text |:require-macros) (:id |MEQmfuyny)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579583338725)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583338965) (:text |[]) (:id |-gpsdcPjy)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579583343581) (:text |lilac.core) (:id |KNbNZQgd)
:id |VQj20ccNS
:id |Ly-ylulBT
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599588307)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599587786)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599587786) (:text |[]) (:id |IbORTBbQW)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599587786) (:text |lilac.util) (:id |E9ojcE8GQ)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599587786) (:text |:refer) (:id |6rf9VVYve)
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599587786)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599587786) (:text |[]) (:id |4E3TF77Ue)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599587786) (:text |re?) (:id |fGZlolrrO)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1583568083369) (:text |preview-data) (:id |d2eq4LeVP)
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1583568087868) (:text |check-keys) (:id |kwiyoPHNv)
|x $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633356503) (:text |seq-equal) (:id |bH1OB-Zlhi)
|y $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633360153) (:text |seq-difference) (:id |IoraFXUfOb)
:id |e2ZUVXaRm
:id |p5zUtB6Vq
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599589411) (:text |:require) (:id |CvoRNfyU6)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579854001804)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579854003043) (:text |[]) (:id |EGZu-olINleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579854005029) (:text |clojure.string) (:id |M5ExCuhY)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579854005402) (:text |:as) (:id |iTsjzn8N)
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579854006368) (:text |string) (:id |Op9CHnTV5)
:id |EGZu-olIN
:id |sGPJt2dt
:id |GPBQymVxL
:defs $ {}
|enum+ $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955397157)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955554676) (:text |defn$) (:id |eJMxC_-Ea)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955397157) (:text |enum+) (:id |1qOQYBhOY)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955413618)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955413618)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955413618) (:text |x) (:id |q7LWBi71M)
:id |yHIkY3hs3
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955413618)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955421814) (:text |enum+) (:id |pQo8tWfMe)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955413618) (:text |x) (:id |cGrpHi3fS)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955413618) (:text |nil) (:id |a6N_UYwU0)
:id |1QW7LFW5h
:id |jOS5TNRQo
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955413618)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955413618)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955776904) (:text |items) (:id |Sb5r8ZA_g)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955413618) (:text |options) (:id |MGBVbOEJ0)
:id |otu2oEv8l
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955413618)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955413618) (:text |{}) (:id |OD50mkvGGS)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955413618)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955413618) (:text |:lilac-type) (:id |d_i3hzDUwX)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955427320) (:text |:enum) (:id |hb56M1hv52)
:id |rKIP5_7V5y
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955413618)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955431719) (:text |:items) (:id |2MQdIP1plS)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955444055)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955447537)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955447738)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955526595) (:text |items) (:id |mTIHPDpw1l)
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955450090) (:text |set?) (:id |RT-asnDc)
:id |d9PS-OcuF
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955528003) (:text |items) (:id |bKmKs3RU)
:id |KD-bC0W-
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955446293) (:text |cond) (:id |12_0pYIl)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955452492)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955453453)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955456372) (:text |vector?) (:id |YD-N1jjci)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955529143) (:text |items) (:id |QnLInccWf)
:id |H1PDXuOZ
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955458008)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955458863) (:text |set) (:id |md01OXND8leaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955530507) (:text |items) (:id |FD5-CX976)
:id |md01OXND8
:id |-3jvSN0I
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955452492)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955453453)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955465688) (:text |list?) (:id |YD-N1jjci)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955533122) (:text |items) (:id |QnLInccWf)
:id |H1PDXuOZ
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955458008)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955458863) (:text |set) (:id |md01OXND8leaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955531888) (:text |items) (:id |FD5-CX976)
:id |md01OXND8
:id |rLNirNt6
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955466905)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955467652) (:text |:else) (:id |x17N45dnZleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955534527)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581955469450)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955477770) (:text |js/console.warn) (:id |5mpXAlpH)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955485029) (:text "|\"Unknown items") (:id |lclNxsrU)
:id |68HsHiPWe
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955536189) (:text |do) (:id |7zDFj9Whv)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581955538562) (:text |items) (:id |5aZDX2H-I)
:id |P3hYGAFi
:id |x17N45dnZ
:id |l1wIo1pAJ
:id |Qv5zFEy5J4
:id |Zbu_p_lr_U
:id |jaM9f4c_s
:id |nFYKrOna1
|symbol+ $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579590115354)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579753616462) (:text |defn$) (:id |m-Es6ID92)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579590115354) (:text |symbol+) (:id |0StDMjnck)
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579753606016)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579590127767)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579590129796) (:text |{}) (:id |ybOm56GAzleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579590130070)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579590137453) (:text |:lilac-type) (:id |HB2Ku89JI)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579590144006) (:text |:symbol) (:id |IRhclS0tN)
:id |SSyluK2l
:id |ybOm56GAz
|D $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579753606624)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579753606624) (:text |options) (:id |ZrI0kzSo9)
:id |ZBcwu5Zw4
:id |Fcr9gmgCI
|p $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579753607394)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579753609688) (:data $ {}) (:id |3KFjn_rJo)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579753610430)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579753612793) (:text |symbol+) (:id |UhOluJmDleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579753613996) (:text |nil) (:id |-GjwGM9oQ)
:id |UhOluJmD
:id |frBU9pvh
:id |AtJlVVomW
|validate-set $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579592603872)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579592603872) (:text |defn) (:id |8XGbq6OUq)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579592603872) (:text |validate-set) (:id |pxiqt7dyD)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579592603872)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599646234) (:text |data) (:id |2aDo6_ByC)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599647055) (:text |rule) (:id |wxi2Z9UK5)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599651301) (:text |coord) (:id |uGKx6gnr)
:id |xT-Ix4HRP
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |let) (:id |hqkQ2Lew3)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |item-rule) (:id |kdtwinNok)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |:item) (:id |L1E577p5A)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |rule) (:id |hrkL5Ssql)
:id |EmwHCmzRN
:id |Jgsj8P2gm
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600714107) (:text |coord) (:id |UhC5LgdiL)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |conj) (:id |qowAlquWC)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |coord) (:id |5ky4hcpEp)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579786520683) (:text |'set) (:id |MpXLsbfCy)
:id |QFk_-3EhH
:id |SV385EFnW
:id |g989__8G2
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |if) (:id |Sky-636_Q5)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599658393) (:text |set?) (:id |QMU19fKJFg)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |data) (:id |QMUeqrgnom)
:id |fkMkXufLkA
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |loop) (:id |j1CgRpmpuG)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |xs) (:id |RWQ_3wBWAj)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |data) (:id |sSTf1LSKUH)
:id |hCjaF1EomI
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600710993)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600710774) (:text |idx) (:id |1b7mpc9np)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600711379) (:text |0) (:id |hJxr9tQ1)
:id |7H6UO7I6q
:id |KiBX6ao8gJ
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |if) (:id |vIfJq5sQb0)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |empty?) (:id |pdDqlZSvI1)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |xs) (:id |c4JyeZToBo)
:id |a5wj1N-jaz
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |let) (:id |Cs6ZO3S8WH)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |x0) (:id |BFlWlNSRke)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |first) (:id |nxHWIIIA7U)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579602545470) (:text |xs) (:id |8YceLor6IS)
:id |Xz0lk683gE
:id |-4mow57scj
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |result) (:id |01fuqpcjPC)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |validate-lilac) (:id |gdKKFfoyi8)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |x0) (:id |S50Q8NWVxt)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |item-rule) (:id |pCzOP_roZH)
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600725604) (:text |child-coord) (:id |RQjEOmLrW7)
:id |VvIcdwXKwj
:id |lPnUrHNYHC
|b $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600716516)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600719144) (:text |child-coord) (:id |Up1MS2tutleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600719377)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600719930) (:text |conj) (:id |XG0E-fiYT)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600721857) (:text |coord) (:id |VYh9reur)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600723586) (:text |idx) (:id |Al0yZpeV)
:id |c16ReZY7E
:id |Up1MS2tut
:id |RanGRudGOE
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |if) (:id |gaTDCvWchx)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |:ok?) (:id |BrhcmgpD_H)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |result) (:id |RL_7H32WTL)
:id |ajdJUoBUmL
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |recur) (:id |kQcl371MyI)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |rest) (:id |hc-2naoNN1)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579602541470) (:text |xs) (:id |nKk7liHvxz)
:id |SBXWNEiLP4
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600733365)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600734536) (:text |inc) (:id |QGwjcNAim)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600735742) (:text |idx) (:id |PFDJS-Ttd)
:id |S2eJ5RPJ
:id |4_SSdya816
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579854149931) (:text |result) (:id |xf_4F4GK_)
:id |YM_pF5LxKq
:id |2szM6av28D
|p $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584552455920) (:text |ok-result) (:id |bVooLAspIC)
:id |H5kaf8vl-K
:id |kQtSJVbj2M
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |{}) (:id |Lt-ty0R8jD)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |:ok?) (:id |_p2HncuKMw)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |false) (:id |TMpdgH_iA4)
:id |OQSxYjQ4TY
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |:data) (:id |XYeui48kIf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |data) (:id |pILO1b8ruB)
:id |LlO_nkxg_2
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |:rule) (:id |SLqZF0b4dT)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |rule) (:id |emeZ4_ptyn)
:id |_zTgU5i8uK
|x $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |:coord) (:id |nBoUq2HUUG)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600727868) (:text |coord) (:id |utSVGtfbV_)
:id |6f3nsTLuk_
|y $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579599652493)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599652493) (:text |:message) (:id |KvvHWCdqQP)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579853092900)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579781005280)
:data $ {}
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579781006452) (:text |get-in) (:id |BI8N1kJQE)
|L $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579781007109) (:text |rule) (:id |3DTpZHfH7)
|P $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579781007412)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579781007613) (:text |[]) (:id |iuEu7eSX8)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579781010000) (:text |:options) (:id |1Ji5Me-MS)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579781011415) (:text |:message) (:id |jx0IO33-)
:id |NbPB6TVLK
:id |SYgzKCiiN
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579853093706) (:text |or) (:id |bc6j3LsI)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579853094143)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579853094918) (:text |str) (:id |3ahH2pMgleaf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579853101631) (:text "|\"expects a set, got ") (:id |e-IKhdTNa)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579853102923)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579853106255) (:text |preview-data) (:id |i3ABQOkV)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579853106844) (:text |data) (:id |wXkUJULdy)
:id |V4l0WqApl
:id |3ahH2pMg
:id |qE-2qV03w
:id |JhU-Spka7I
:id |pUy6JKIEPR
:id |CbRDbddhTn
:id |B0r0g6AJj
:id |NJAz9EP74
|validate-record $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579592605675)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579592605675) (:text |defn) (:id |QojbuwE_Z)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579592605675) (:text |validate-record) (:id |hkPi8bC22)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579592605675)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579599998860) (:text |data) (:id |POQQfHFu9)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600005888) (:text |rule) (:id |LqRePParY)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600016634) (:text |coord) (:id |OoLwhP-rr)
:id |zWUCmDy_j
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600076678)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600077125) (:text |let) (:id |4iPQfvsAleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600077459)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600077633)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600079046) (:text |coord) (:id |ZCWePdlxg)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600079726)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600080254) (:text |conj) (:id |IcUmvRfj)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600081109) (:text |coord) (:id |Nm53QjuE-)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581079570766) (:text |'record) (:id |lPdah5DrY)
:id |80wxWT2vd
:id |AP_mHsKmm
|w $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581083883542)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581084979240) (:text |check-keys?) (:id |uVbRaI7uSleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581083887276)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581084977215) (:text |:check-keys?) (:id |aYJn5TFI)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581083891359) (:text |rule) (:id |OZiZUHi14)
:id |2Xq9GjLSJ
:id |uVbRaI7uS
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600083474)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600085865) (:text |pairs) (:id |gMudn8kjqleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1579600086466)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600087815) (:text |:pairs) (:id |SbJX9tO4)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1579600089226) (:text |rule) (:id |M5FmydNxZ)
:id |lufPEQ-v5
:id |gMudn8kjq
|x $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581084012301)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581084014840) (:text |default-message) (:id |d0a0Xqxuzleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581084015817)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581084015817) (:text |get-in) (:id |dS6y31Oz1)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581084015817) (:text |rule) (:id |gUquv2S5k)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581084015817)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581084015817) (:text |[]) (:id |wy3T5IP_E)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581084015817) (:text |:options) (:id |ymSdRoRSB)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581084015817) (:text |:message) (:id |l-uIBcGB1)
:id |Yp_9u7tws
:id |8kBXnm7sd
:id |d0a0Xqxuz
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082222569)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082227494) (:text |exact-keys?) (:id |aUkLAAOUleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082227800)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082232459) (:text |:exact-keys?) (:id |U665IqTFd)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082235057) (:text |rule) (:id |8NkwHmlX)
:id |ZGaFxF9hC
:id |aUkLAAOU
|xj $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085842739)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085842739) (:text |existed-keys) (:id |gj_NEnjmd)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086828506)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085842739)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085842739) (:text |keys) (:id |MMzRIt8Hc)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085842739) (:text |data) (:id |hzhFBlIO0U)
:id |EQoRVqk3I
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086829130) (:text |if) (:id |PkpYV1-2h)
|L $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086829961)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086831082) (:text |map?) (:id |1GCwbYPEm)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086831711) (:text |data) (:id |r4tNZgBGZ)
:id |3UQgsMOT6
:id |8rR1fdjC
:id |tXxsTNMJ5
|y $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082527003)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082531733) (:text |check-values) (:id |lhMVU8nOBleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086036020)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |loop) (:id |Ua6ypCQHX)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |xs) (:id |-g-fgXdP1)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |pairs) (:id |1tlv2YwXN)
:id |r929Gb2iZ
:id |YX8DXnXaY
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |if) (:id |LPJ-uHiCh)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |empty?) (:id |yf3GH4-ns)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |xs) (:id |GrizxccHI)
:id |yVqnlbrrx
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |let) (:id |DR4wy76_Ty)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |[]) (:id |kZ7ZBS_pKf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |k0) (:id |dMzuSztkyD)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |r0) (:id |qtqkw22LPJ)
:id |c3wAHrErfa
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |first) (:id |QerI48xB-_)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |xs) (:id |vy5wPltO6S)
:id |0gSqUBL_je
:id |nM39vT_Wge
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |child-coord) (:id |sKjuKoIrQS)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |conj) (:id |cw_HB4zTMB)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |coord) (:id |g1mlMFTESO)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |k0) (:id |PYVPWyBojY)
:id |rGMxreBVjc
:id |IWucvKRYtY
|n $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956075516)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956075991) (:text |v) (:id |k58xne1Rleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956077158)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956077158) (:text |get) (:id |HrRxk-ntZ)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956077158) (:text |data) (:id |eVC2QUaK4)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956077158) (:text |k0) (:id |MAQmWjjjo)
:id |KxnmHePfR
:id |k58xne1R
:id |M-oesEobYu
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956049898)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956090583)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |if) (:id |N-bpuXYdVi)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |:ok?) (:id |PqIKz890YQ)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |result) (:id |hO2-UoqNFc)
:id |UIkJ3sbmwd
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |recur) (:id |SSbI9-dUXI)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581082534747)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |rest) (:id |YlIsjwn09T)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |xs) (:id |fojjux33FJ)
:id |Avtg7ROhtG
:id |7l54fFgxKk
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581082534747) (:text |result) (:id |xkqgACproJ)
:id |ju96PurvEQ
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956093128) (:text |let) (:id |O7MafHI8_)
|L $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956093702)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956095459)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956095459) (:text |result) (:id |864m-huss)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956095459)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956095459) (:text |validate-lilac) (:id |w_TZKUMnv)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956095459) (:text |v) (:id |nU8qQswDi)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956095459) (:text |r0) (:id |7pueHpqoo)
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956095459) (:text |child-coord) (:id |s2jmkMKdo)
:id |SgN7swUU8
:id |tbMbF6UJV
:id |e8QsxzE0O
:id |Bz1ojNAB
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956050831) (:text |if) (:id |DZtLu093)
|L $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956063887)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956053174) (:text |all-optional?) (:id |lUcT6rz6J)
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956067987) (:text |and) (:id |q2ulpiXZ)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956070420)
:data $ {}
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956073725) (:text |nil?) (:id |ADZXjhmaF)
|b $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956082094) (:text |v) (:id |hgHkHHreG)
:id |b4jXdaUN
:id |qyJs5P3z
|P $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956087557)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956087557) (:text |recur) (:id |HVq2ZLf6X)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956087557)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956087557) (:text |rest) (:id |mw44hZZoL)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956087557) (:text |xs) (:id |edXxVzLIN)
:id |R7BkJfiFf
:id |eLag0cz47
:id |XHrTvx1F
:id |8sb0E6Ro-K
|p $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584552431684) (:text |ok-result) (:id |xAzhHHvbqM)
:id |cTzeHLfLj
:id |UAdv10Qth
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086036617) (:text |fn) (:id |zT09vWZ7)
|L $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086036893) (:data $ {}) (:id |8XIpli0tX)
:id |CJFVSndXK
:id |lhMVU8nOB
|wT $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956015120)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956017198) (:text |all-optional?) (:id |fvA097GEleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581956018586)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956021036) (:text |:all-optional?) (:id |TdYcFo2T)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581956022735) (:text |rule) (:id |zmEghUMC)
:id |tl-_EvFZG
:id |fvA097GE
|xT $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085842739)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085842739) (:text |wanted-keys) (:id |p1Efeh1ZM)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085842739)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085842739) (:text |keys) (:id |r0E8Flb7C)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085842739) (:text |pairs) (:id |48bBKIKJH)
:id |uz1rQnysi
:id |ZpAr-T7HV
:id |j-Fb2vuaZ
|n $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086338268)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085916818)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085918157) (:text |cond) (:id |bAVv6n55leaf)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085935911)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085937622) (:text |:else) (:id |jBARBvu_leaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085940928)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085940928) (:text |check-values) (:id |0w4nmg1tQ)
:id |9pJ83J0UC
:id |jBARBvu_
|n $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085944813)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085953350) (:text |exact-keys?) (:id |f4ckM6iLleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085964360)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085964995) (:text |if) (:id |uIFFTNhS)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085967777)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633381465) (:text |seq-equal) (:id |iuh0TqJ_)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086060809) (:text |existed-keys) (:id |KFiEuDfa)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085975824) (:text |wanted-keys) (:id |W5BVNcxt)
:id |veU7M7DWD
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |{}) (:id |zlmZeRZb5)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |:ok?) (:id |yaW5eLo01)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |false) (:id |oKCsv1toa)
:id |E49ijrLTx
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |:data) (:id |99qjOYzhd)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |data) (:id |bg-9pW7AW)
:id |xREdr1smD
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |:rule) (:id |jOSr6vVkh)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |rule) (:id |HLgXRk5kH)
:id |s-gpMvnyC
|x $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |:coord) (:id |lb8yZPF2j)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |coord) (:id |p2qEAYI_Q)
:id |-hqmP5T-U
|y $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |:message) (:id |jB54MWex0A)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |or) (:id |W4ygtp354l)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |default-message) (:id |R7FmN1LJD-)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |let) (:id |QSGLYZZeBL)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |extra-keys) (:id |CpIwsRebpm)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633384338) (:text |seq-difference) (:id |24xDSoMpYR)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |existed-keys) (:id |_QWR8rZjbo)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |wanted-keys) (:id |yXWGEhUSjT)
:id |TmNzVQc2Qc
:id |7OSTelzL2u
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |missing-keys) (:id |ylMM1cA26v)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633387423) (:text |seq-difference) (:id |dB8cYat9ow)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |wanted-keys) (:id |SnpzMZrqC_)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |existed-keys) (:id |t73voAUBAY)
:id |Pf2-7zLshn
:id |W2uYbe1OA1
:id |eVGggPtTV2
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |if) (:id |qSI2cW8OnG)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |not) (:id |YGyhcLWXXE)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |empty?) (:id |bRHh7KuKUP)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |extra-keys) (:id |BKVtMuQ2II)
:id |EBXKBQmCKV
:id |H5pinwYmm2
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |str) (:id |BVQeGP69Gc)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text "|\"unexpected record keys ") (:id |BgROVT7NHG)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |extra-keys) (:id |_XXQbEsvVG)
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text "|\" for ") (:id |TXiseQdJuK)
|x $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |wanted-keys) (:id |fp5aedg5YM)
:id |44oF9fRfc4
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085990740)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |str) (:id |hRx5t-TJ_n)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text "|\"missing record keys ") (:id |PSklF6rHy9)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |missing-keys) (:id |WDD-GInXCj)
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text "|\" of ") (:id |qkXCM6_0dC)
|x $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085990740) (:text |wanted-keys) (:id |hGKsGYb9RS)
:id |oYDiIyvfDl
:id |DVCBncdHd1
:id |vnloMFaOmt
:id |aI-Ck_zq3U
:id |D5b7qWLNoc
:id |pcOWhaXsU
|t $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086106973)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086106973) (:text |check-values) (:id |Rxe1kJUn5)
:id |Oj_YoL491
:id |_wYh3tKe
:id |f4ckM6iL
|p $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581085993025)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581085998208) (:text |check-keys?) (:id |4oEl2agSbleaf)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1584633430403)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |if) (:id |2h0V00TxS)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |empty?) (:id |091SEMi7K)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633445056) (:text |extra-keys) (:id |claVx3p-_V)
:id |5aesENIaa
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |check-values) (:id |OGfswo0b_)
:id |Fc8Fpj3x3
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |{}) (:id |dJ0-Md9s4)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |:ok?) (:id |NadHntzfX)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |false) (:id |62oRzUG_v4)
:id |O86JmuKGI
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |:data) (:id |aLw2JcsLgc)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |data) (:id |a2fcSGcnKz)
:id |4BvILWdfjT
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |:rule) (:id |TZ54m0YQdu)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |rule) (:id |cxO8gYrtzw)
:id |7S4_2oiOAq
|x $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |:coord) (:id |vF08WSArtf)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |coord) (:id |SGaKv4eLcq)
:id |WWZEGU3JqW
|y $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |:message) (:id |IYfdVXViE_)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |or) (:id |39E8H37Lky)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |default-message) (:id |J_n6vPcDC_)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086018617)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |str) (:id |Q_SjkruouB)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text "|\"unexpected record keys ") (:id |-zb5vtfn6Q)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |extra-keys) (:id |QZUWEFHYB2)
|v $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text "|\" for ") (:id |VUULUWFzHD)
|x $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086018617) (:text |wanted-keys) (:id |nyYsNQlemh)
:id |y43i5rhGoJ
:id |78Bp1rXyMp
:id |Cl97nKHvo0
:id |RaRY05J38
:id |tDPJXrxuq
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633432777) (:text |let) (:id |mbBaUXTbrj)
|L $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1584633433042)
:data $ {}
|T $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1584633437131)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633437131) (:text |extra-keys) (:id |1PR3YfSbDV)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1584633437131)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633441871) (:text |seq-difference) (:id |XjgHcne3ui)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633437131) (:text |existed-keys) (:id |d1asuB6uNo)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1584633437131) (:text |wanted-keys) (:id |hsHryvrIin)
:id |5TzuCDBZgP
:id |0mZljwTHpJ
:id |Xa3007iAsU
:id |MQbMTRJOK
:id |4oEl2agSb
:id |bAVv6n55
|D $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086339654) (:text |if) (:id |ayuoCTRGJ)
|L $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086342529)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086342529) (:text |not) (:id |zxtOD2CzU)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086342529)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086342529) (:text |map?) (:id |qoq5UviB3)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086342529) (:text |data) (:id |CZUe1Da0B)
:id |wz-qmzY5k
:id |LWgmBAVOV
|P $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |{}) (:id |feo4iq15i)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |:ok?) (:id |rqI7epd7C)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |false) (:id |sLaqZ_QzH)
:id |u1eVXZokv
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |:data) (:id |h6PKEUw8R)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |data) (:id |ps_cwHfLX)
:id |M_lio7dzj
|v $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |:rule) (:id |HXXiX9S-y)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |rule) (:id |9PndXJ7CY)
:id |ucPk4uKbb
|x $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |:coord) (:id |sMlHftKLh)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |coord) (:id |jfKs8cz_r)
:id |dcAKAn-oS
|y $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |:message) (:id |n2Y_-2F8B6)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |or) (:id |LZ44A8M25d)
|j $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |get-in) (:id |7wfsFNCh_s)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |rule) (:id |5LJQvUlLlI)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |[]) (:id |1LbGCd5or7)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |:options) (:id |mzRKzrxIsr)
|r $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |:message) (:id |F-An7-xkl2)
:id |m6-QZ5vDFk
:id |Kxmiv6B0oj
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |str) (:id |gkbu7fZqmk)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text "|\"expects a record, got ") (:id |SSbpQi2YX6)
|r $ {} (:type :expr) (:by |yeKFqj7rX) (:at 1581086348082)
:data $ {}
|T $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |preview-data) (:id |OzJ-LFu06q)
|j $ {} (:type :leaf) (:by |yeKFqj7rX) (:at 1581086348082) (:text |data) (:id |uEPlQzE4DW)
:id |Tf8_A4w_qp
:id |YQ138Nf7YA