-
Notifications
You must be signed in to change notification settings - Fork 1
/
clpmfile.lock
1145 lines (1037 loc) · 54.7 KB
/
clpmfile.lock
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This is autogenerated by CLPM. Do not edit by hand.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(:api-version "0.4")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; BEGIN SOURCES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
:sources
(:implicit-file :type :file-system :system-files
("40ants-project-templates.asd"))
(:implicit-vcs :type :vcs :projects
(("mystic" :github :path "svetlyak40wt/mystic")))
("quicklisp" :url "https://beta.quicklisp.org/dist/quicklisp.txt" :type
:quicklisp)
("ultralisp" :url "https://clpi.ultralisp.org/" :type :clpi)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; BEGIN REQUIREMENTS
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
:requirements
(:system :name "ironclad")
(:system :name "40ants-ci")
(:system :name "40ants-doc-theme-40ants")
(:project :name "mystic" :branch "lispy-interface-for-opts" :source
:implicit-vcs)
(:asd-file :name "40ants-project-templates.asd")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; BEGIN RELEASES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
:releases
("3bmd" :version "2022-07-08" :source "quicklisp" :systems
("3bmd" "3bmd-ext-code-blocks"))
("40ants-asdf-system" :version "2023-02-15" :source "quicklisp" :systems
("40ants-asdf-system"))
("40ants-project-templates.asd" :version :newest :source :implicit-file
:systems
("40ants-project-templates" "40ants-project-templates/core"
"40ants-project-templates/library" "40ants-project-templates/mixin/ci"
"40ants-project-templates/mixin/docs"
"40ants-project-templates/mixin/gitignore"
"40ants-project-templates/mixin/qlfile"
"40ants-project-templates/mixin/rove-tests"))
("40ants/40ants-doc-theme-40ants" :version "20221115220000" :source "ultralisp"
:systems ("40ants-doc-theme-40ants" "40ants-doc-theme-40ants/theme"))
("40ants/commondoc-markdown" :version "20220822160000" :source "ultralisp"
:systems
("commondoc-markdown/addons" "commondoc-markdown/core"
"commondoc-markdown/emitter" "commondoc-markdown/format"
"commondoc-markdown/raw-html"))
("40ants/doc" :version "20221205211000" :source "ultralisp" :systems
("40ants-doc-full/builder" "40ants-doc-full/builder/printer"
"40ants-doc-full/builder/vars" "40ants-doc-full/commondoc/arglist"
"40ants-doc-full/commondoc/builder" "40ants-doc-full/commondoc/bullet"
"40ants-doc-full/commondoc/changelog" "40ants-doc-full/commondoc/format"
"40ants-doc-full/commondoc/html" "40ants-doc-full/commondoc/image"
"40ants-doc-full/commondoc/mapper" "40ants-doc-full/commondoc/markdown"
"40ants-doc-full/commondoc/page" "40ants-doc-full/commondoc/piece"
"40ants-doc-full/commondoc/reference" "40ants-doc-full/commondoc/section"
"40ants-doc-full/commondoc/toc" "40ants-doc-full/commondoc/transcribe"
"40ants-doc-full/commondoc/utils" "40ants-doc-full/commondoc/xref"
"40ants-doc-full/dislocated-symbols" "40ants-doc-full/external-index"
"40ants-doc-full/github" "40ants-doc-full/highlight" "40ants-doc-full/link"
"40ants-doc-full/page" "40ants-doc-full/render/args"
"40ants-doc-full/rewrite" "40ants-doc-full/search" "40ants-doc-full/source"
"40ants-doc-full/swank" "40ants-doc-full/themes/api"
"40ants-doc-full/themes/default" "40ants-doc-full/transcribe"
"40ants-doc-full/utils" "40ants-doc-full/world" "40ants-doc/changelog"
"40ants-doc/core" "40ants-doc/docstring" "40ants-doc/ignored-words"
"40ants-doc/locatives" "40ants-doc/locatives/base"
"40ants-doc/object-package" "40ants-doc/reference" "40ants-doc/reference-api"
"40ants-doc/source-api"))
("alexandria" :version "2022-07-08" :source "quicklisp" :systems ("alexandria"))
("anaphora" :version "2022-02-20" :source "quicklisp" :systems ("anaphora"))
("archive" :version "2016-03-18" :source "quicklisp" :systems ("archive"))
("array-utils" :version "2022-11-07" :source "quicklisp" :systems
("array-utils"))
("asdf-flv" :version "2016-04-21" :source "quicklisp" :systems
("net.didierverna.asdf-flv"))
("babel" :version "2023-02-15" :source "quicklisp" :systems ("babel"))
("bordeaux-threads" :version "2022-07-08" :source "quicklisp" :systems
("bordeaux-threads"))
("cffi" :version "2023-02-15" :source "quicklisp" :systems
("cffi" "cffi-grovel" "cffi-toolchain"))
("chipz" :version "2022-02-20" :source "quicklisp" :systems ("chipz"))
("chunga" :version "2022-11-07" :source "quicklisp" :systems ("chunga"))
("ci" :version "2023-02-15" :source "quicklisp" :systems ("40ants-ci"))
("cl+ssl" :version "2023-02-15" :source "quicklisp" :systems ("cl+ssl"))
("cl-annot" :version "2015-06-08" :source "quicklisp" :systems ("cl-annot"))
("cl-base64" :version "2020-10-16" :source "quicklisp" :systems ("cl-base64"))
("cl-change-case" :version "2021-04-11" :source "quicklisp" :systems
("cl-change-case"))
("cl-cookie" :version "2022-07-08" :source "quicklisp" :systems ("cl-cookie"))
("cl-fad" :version "2022-02-20" :source "quicklisp" :systems ("cl-fad"))
("cl-mustache" :version "2020-03-25" :source "quicklisp" :systems
("cl-mustache"))
("cl-ppcre" :version "2022-02-20" :source "quicklisp" :systems
("cl-ppcre" "cl-ppcre-unicode"))
("cl-str" :version "2023-02-15" :source "quicklisp" :systems ("str"))
("cl-syntax" :version "2015-04-07" :source "quicklisp" :systems
("cl-syntax" "cl-syntax-annot"))
("cl-unicode" :version "2021-02-28" :source "quicklisp" :systems ("cl-unicode"))
("cl-utilities" :version "2010-10-07" :source "quicklisp" :systems
("cl-utilities"))
("closer-mop" :version "2023-02-15" :source "quicklisp" :systems ("closer-mop"))
("colorize" :version "2023-02-15" :source "quicklisp" :systems ("colorize"))
("common-doc" :version "2023-02-15" :source "quicklisp" :systems ("common-doc"))
("common-html" :version "2021-08-07" :source "quicklisp" :systems
("common-html"))
("commondoc-markdown" :version "2022-11-07" :source "quicklisp" :systems
("commondoc-markdown"))
("deflate" :version "2020-02-18" :source "quicklisp" :systems ("deflate"))
("dexador" :version "2023-02-15" :source "quicklisp" :systems ("dexador"))
("doc" :version "2023-02-15" :source "quicklisp" :systems ("40ants-doc"))
("docs-builder" :version "2023-02-15" :source "quicklisp" :systems
("docs-config"))
("documentation-utils" :version "2019-07-11" :source "quicklisp" :systems
("documentation-utils"))
("esrap" :version "2022-04-01" :source "quicklisp" :systems ("esrap"))
("fast-http" :version "2019-10-07" :source "quicklisp" :systems ("fast-http"))
("fast-io" :version "2022-11-07" :source "quicklisp" :systems ("fast-io"))
("fiveam" :version "2022-04-01" :source "quicklisp" :systems ("fiveam"))
("flexi-streams" :version "2022-02-20" :source "quicklisp" :systems
("flexi-streams"))
("global-vars" :version "2014-11-06" :source "quicklisp" :systems
("global-vars"))
("html-encode" :version "2010-10-07" :source "quicklisp" :systems
("html-encode"))
("introspect-environment" :version "2022-02-20" :source "quicklisp" :systems
("introspect-environment"))
("ironclad" :version "2022-11-07" :source "quicklisp" :systems ("ironclad"))
("iterate" :version "2021-05-31" :source "quicklisp" :systems ("iterate"))
("jonathan" :version "2020-09-25" :source "quicklisp" :systems ("jonathan"))
("lass" :version "2023-02-15" :source "quicklisp" :systems ("lass"))
("lisp-namespace" :version "2022-11-07" :source "quicklisp" :systems
("lisp-namespace"))
("local-time" :version "2023-02-15" :source "quicklisp" :systems ("local-time"))
("log4cl" :version "2021-12-09" :source "quicklisp" :systems ("log4cl"))
("mystic" :version (:commit "2f17cf9c190e02b65a63226a95e3e82b1a28961d") :source
:implicit-vcs :systems
("mystic" "mystic-file-mixin" "mystic-fiveam-mixin" "mystic-gitignore-mixin"
"mystic-library-template" "mystic-readme-mixin" "mystic-test"
"mystic-travis-mixin"))
("named-readtables" :version "2022-04-01" :source "quicklisp" :systems
("named-readtables"))
("parenscript" :version "2018-12-10" :source "quicklisp" :systems
("parenscript"))
("parse-declarations" :version "2010-10-07" :source "quicklisp" :systems
("parse-declarations-1.0"))
("parse-number" :version "2018-02-28" :source "quicklisp" :systems
("parse-number"))
("path-parse" :version "2016-04-21" :source "quicklisp" :systems ("path-parse"))
("plump" :version "2023-02-15" :source "quicklisp" :systems ("plump"))
("proc-parse" :version "2019-08-13" :source "quicklisp" :systems ("proc-parse"))
("pythonic-string-reader" :version "2018-07-11" :source "quicklisp" :systems
("pythonic-string-reader"))
("quri" :version "2022-11-07" :source "quicklisp" :systems ("quri"))
("salza2" :version "2021-10-21" :source "quicklisp" :systems ("salza2"))
("serapeum" :version "2023-02-15" :source "quicklisp" :systems ("serapeum"))
("slime" :version "2023-02-15" :source "quicklisp" :systems ("swank"))
("sly" :version "2023-02-15" :source "quicklisp" :systems ("slynk"))
("smart-buffer" :version "2021-10-21" :source "quicklisp" :systems
("smart-buffer"))
("spinneret" :version "2023-02-15" :source "quicklisp" :systems ("spinneret"))
("split-sequence" :version "2021-05-31" :source "quicklisp" :systems
("split-sequence"))
("static-vectors" :version "2021-06-30" :source "quicklisp" :systems
("static-vectors"))
("stem" :version "2015-06-08" :source "quicklisp" :systems ("stem"))
("string-case" :version "2018-07-11" :source "quicklisp" :systems
("string-case"))
("tmpdir" :version "2020-02-18" :source "quicklisp" :systems ("tmpdir"))
("trivia" :version "2022-07-08" :source "quicklisp" :systems
("trivia" "trivia.balland2006" "trivia.level0" "trivia.level1" "trivia.level2"
"trivia.trivial"))
("trivial-backtrace" :version "2023-02-15" :source "quicklisp" :systems
("trivial-backtrace"))
("trivial-cltl2" :version "2021-12-30" :source "quicklisp" :systems
("trivial-cltl2"))
("trivial-extract" :version "2016-04-21" :source "quicklisp" :systems
("trivial-extract"))
("trivial-features" :version "2021-12-09" :source "quicklisp" :systems
("trivial-features"))
("trivial-file-size" :version "2022-11-07" :source "quicklisp" :systems
("trivial-file-size"))
("trivial-garbage" :version "2021-12-30" :source "quicklisp" :systems
("trivial-garbage"))
("trivial-gray-streams" :version "2021-01-24" :source "quicklisp" :systems
("trivial-gray-streams"))
("trivial-indent" :version "2021-05-31" :source "quicklisp" :systems
("trivial-indent"))
("trivial-macroexpand-all" :version "2017-10-23" :source "quicklisp" :systems
("trivial-macroexpand-all"))
("trivial-mimes" :version "2023-02-15" :source "quicklisp" :systems
("trivial-mimes"))
("trivial-types" :version "2012-04-07" :source "quicklisp" :systems
("trivial-types"))
("trivial-with-current-source-form" :version "2021-10-21" :source "quicklisp"
:systems ("trivial-with-current-source-form"))
("type-i" :version "2023-02-15" :source "quicklisp" :systems ("type-i"))
("ubiquitous" :version "2019-07-11" :source "quicklisp" :systems ("ubiquitous"))
("usocket" :version "2022-11-07" :source "quicklisp" :systems ("usocket"))
("which" :version "2016-04-21" :source "quicklisp" :systems ("which"))
("xml-emitter" :version "2022-11-07" :source "quicklisp" :systems
("xml-emitter"))
("xsubseq" :version "2017-08-30" :source "quicklisp" :systems ("xsubseq"))
("yason" :version "2023-02-15" :source "quicklisp" :systems ("yason"))
("zip" :version "2015-06-08" :source "quicklisp" :systems ("zip"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; BEGIN REVERSE-DEPENDENCIES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
:reverse-dependencies
("3bmd" ((:system :name "commondoc-markdown/core") (:system :name "3bmd"))
((:system :name "commondoc-markdown/core")
(:system :name "3bmd-ext-code-blocks"))
((:system :name "commondoc-markdown/addons") (:system :name "3bmd"))
((:system :name "commondoc-markdown") (:system :name "3bmd"))
((:system :name "commondoc-markdown") (:system :name "3bmd-ext-code-blocks"))
((:system :name "3bmd-ext-code-blocks") (:system :name "3bmd")))
("40ants-asdf-system"
((:system :name "40ants-project-templates/mixin/rove-tests")
(:system :name "40ants-asdf-system"))
((:system :name "40ants-project-templates/mixin/qlfile")
(:system :name "40ants-asdf-system"))
((:system :name "40ants-project-templates/mixin/gitignore")
(:system :name "40ants-asdf-system"))
((:system :name "40ants-project-templates/mixin/docs")
(:system :name "40ants-asdf-system"))
((:system :name "40ants-project-templates/mixin/ci")
(:system :name "40ants-asdf-system"))
((:system :name "40ants-project-templates/library")
(:system :name "40ants-asdf-system"))
((:system :name "40ants-project-templates/core")
(:system :name "40ants-asdf-system"))
((:system :name "40ants-project-templates")
(:system :name "40ants-asdf-system"))
((:system :name "40ants-project-templates")
(:system :name "40ants-asdf-system"))
((:system :name "40ants-ci") (:system :name "40ants-asdf-system")))
("40ants-project-templates.asd"
((:system :name "40ants-project-templates/mixin/qlfile")
(:system :name "40ants-project-templates/mixin/gitignore"))
((:system :name "40ants-project-templates/mixin/docs")
(:system :name "40ants-project-templates/mixin/gitignore"))
((:system :name "40ants-project-templates/library")
(:system :name "40ants-project-templates/mixin/qlfile"))
((:system :name "40ants-project-templates/library")
(:system :name "40ants-project-templates/mixin/gitignore"))
((:system :name "40ants-project-templates/library")
(:system :name "40ants-project-templates/mixin/docs"))
((:system :name "40ants-project-templates/library")
(:system :name "40ants-project-templates/mixin/rove-tests"))
((:system :name "40ants-project-templates/library")
(:system :name "40ants-project-templates/mixin/ci"))
((:system :name "40ants-project-templates/core")
(:system :name "40ants-project-templates/library"))
((:system :name "40ants-project-templates")
(:system :name "40ants-project-templates/core"))
(t (:asd-file :name "40ants-project-templates.asd")))
("40ants/40ants-doc-theme-40ants"
((:system :name "40ants-doc-theme-40ants")
(:system :name "40ants-doc-theme-40ants/theme"))
(t (:system :name "40ants-doc-theme-40ants")))
("40ants/commondoc-markdown"
((:system :name "commondoc-markdown/raw-html")
(:system :name "commondoc-markdown/format"))
((:system :name "commondoc-markdown/emitter")
(:system :name "commondoc-markdown/core"))
((:system :name "commondoc-markdown/core")
(:system :name "commondoc-markdown/addons"))
((:system :name "commondoc-markdown/core")
(:system :name "commondoc-markdown/format"))
((:system :name "commondoc-markdown/core")
(:system :name "commondoc-markdown/raw-html"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "commondoc-markdown/emitter")))
("40ants/doc"
((:system :name "40ants-doc/reference")
(:system :name "40ants-doc/object-package"))
((:system :name "40ants-doc/reference")
(:system :name "40ants-doc/locatives"))
((:system :name "40ants-doc/reference")
(:system :name "40ants-doc/locatives/base"))
((:system :name "40ants-doc/reference")
(:system :name "40ants-doc/source-api"))
((:system :name "40ants-doc/reference")
(:system :name "40ants-doc/reference-api"))
((:system :name "40ants-doc/locatives/base")
(:system :name "40ants-doc/source-api"))
((:system :name "40ants-doc/core") (:system :name "40ants-doc/docstring"))
((:system :name "40ants-doc/core")
(:system :name "40ants-doc/locatives/base"))
((:system :name "40ants-doc/core")
(:system :name "40ants-doc/object-package"))
((:system :name "40ants-doc/core") (:system :name "40ants-doc/reference"))
((:system :name "40ants-doc/changelog") (:system :name "40ants-doc/core"))
((:system :name "40ants-doc-theme-40ants/theme")
(:system :name "40ants-doc-full/builder"))
((:system :name "40ants-doc-theme-40ants/theme")
(:system :name "40ants-doc-full/commondoc/html"))
((:system :name "40ants-doc-theme-40ants/theme")
(:system :name "40ants-doc-full/themes/api"))
((:system :name "40ants-doc-theme-40ants/theme")
(:system :name "40ants-doc-full/github"))
((:system :name "40ants-doc-theme-40ants/theme")
(:system :name "40ants-doc-full/themes/default"))
((:system :name "40ants-doc-full/utils")
(:system :name "40ants-doc-full/builder/vars"))
((:system :name "40ants-doc-full/utils")
(:system :name "40ants-doc/docstring"))
((:system :name "40ants-doc-full/transcribe")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/transcribe")
(:system :name "40ants-doc/core"))
((:system :name "40ants-doc-full/transcribe")
(:system :name "40ants-doc/docstring"))
((:system :name "40ants-doc-full/transcribe")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/themes/default")
(:system :name "40ants-doc-full/commondoc/changelog"))
((:system :name "40ants-doc-full/themes/default")
(:system :name "40ants-doc-full/commondoc/html"))
((:system :name "40ants-doc-full/themes/default")
(:system :name "40ants-doc-full/rewrite"))
((:system :name "40ants-doc-full/themes/default")
(:system :name "40ants-doc-full/themes/api"))
((:system :name "40ants-doc-full/themes/default")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/themes/api")
(:system :name "40ants-doc-full/highlight"))
((:system :name "40ants-doc-full/swank")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/swank")
(:system :name "40ants-doc/docstring"))
((:system :name "40ants-doc-full/swank")
(:system :name "40ants-doc/source-api"))
((:system :name "40ants-doc-full/source")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/source")
(:system :name "40ants-doc/source-api"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc-full/commondoc/bullet"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc-full/commondoc/format"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc-full/commondoc/page"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc-full/commondoc/piece"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc-full/commondoc/section"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc-full/page"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc/locatives"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc/locatives/base"))
((:system :name "40ants-doc-full/search")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/render/args")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/page")
(:system :name "40ants-doc-full/commondoc/builder"))
((:system :name "40ants-doc-full/page")
(:system :name "40ants-doc-full/commondoc/format"))
((:system :name "40ants-doc-full/page")
(:system :name "40ants-doc/object-package"))
((:system :name "40ants-doc-full/github")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/github")
(:system :name "40ants-doc/reference-api"))
((:system :name "40ants-doc-full/github")
(:system :name "40ants-doc/source-api"))
((:system :name "40ants-doc-full/github")
(:system :name "40ants-doc-full/source"))
((:system :name "40ants-doc-full/external-index")
(:system :name "40ants-doc-full/commondoc/page"))
((:system :name "40ants-doc-full/external-index")
(:system :name "40ants-doc-full/rewrite"))
((:system :name "40ants-doc-full/external-index")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/external-index")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/commondoc/xref")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/commondoc/xref")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/commondoc/xref")
(:system :name "40ants-doc/object-package"))
((:system :name "40ants-doc-full/commondoc/xref")
(:system :name "40ants-doc-full/commondoc/html"))
((:system :name "40ants-doc-full/commondoc/xref")
(:system :name "40ants-doc-full/commondoc/utils"))
((:system :name "40ants-doc-full/commondoc/xref")
(:system :name "40ants-doc-full/link"))
((:system :name "40ants-doc-full/commondoc/utils")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/commondoc/utils")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/commondoc/utils")
(:system :name "40ants-doc/docstring"))
((:system :name "40ants-doc-full/commondoc/utils")
(:system :name "40ants-doc-full/swank"))
((:system :name "40ants-doc-full/commondoc/transcribe")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/commondoc/transcribe")
(:system :name "40ants-doc-full/transcribe"))
((:system :name "40ants-doc-full/commondoc/toc")
(:system :name "40ants-doc-full/commondoc/changelog"))
((:system :name "40ants-doc-full/commondoc/toc")
(:system :name "40ants-doc-full/commondoc/format"))
((:system :name "40ants-doc-full/commondoc/toc")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/commondoc/toc")
(:system :name "40ants-doc-full/commondoc/page"))
((:system :name "40ants-doc-full/commondoc/toc")
(:system :name "40ants-doc-full/page"))
((:system :name "40ants-doc-full/commondoc/toc")
(:system :name "40ants-doc-full/rewrite"))
((:system :name "40ants-doc-full/commondoc/toc")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc-full/commondoc/builder"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc-full/commondoc/html"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc-full/commondoc/piece"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc-full/commondoc/xref"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc/ignored-words"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc/object-package"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc/reference-api"))
((:system :name "40ants-doc-full/commondoc/reference")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/commondoc/reference")
(:system :name "40ants-doc-full/commondoc/page"))
((:system :name "40ants-doc-full/commondoc/reference")
(:system :name "40ants-doc-full/commondoc/piece"))
((:system :name "40ants-doc-full/commondoc/reference")
(:system :name "40ants-doc-full/commondoc/section"))
((:system :name "40ants-doc-full/commondoc/reference")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/commondoc/reference")
(:system :name "40ants-doc-full/external-index"))
((:system :name "40ants-doc-full/commondoc/piece")
(:system :name "40ants-doc/object-package"))
((:system :name "40ants-doc-full/commondoc/piece")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/commondoc/format"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/commondoc/html"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/commondoc/piece"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/commondoc/xref"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/dislocated-symbols"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc/ignored-words"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc/locatives"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc/locatives/base"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc/object-package"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/commondoc/section"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/page"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/rewrite"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc-full/themes/api"))
((:system :name "40ants-doc-full/commondoc/markdown")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/commondoc/markdown")
(:system :name "40ants-doc-full/commondoc/xref"))
((:system :name "40ants-doc-full/commondoc/markdown")
(:system :name "40ants-doc-full/swank"))
((:system :name "40ants-doc-full/commondoc/mapper")
(:system :name "40ants-doc-full/commondoc/bullet"))
((:system :name "40ants-doc-full/commondoc/mapper")
(:system :name "40ants-doc/object-package"))
((:system :name "40ants-doc-full/commondoc/image")
(:system :name "40ants-doc-full/builder/vars"))
((:system :name "40ants-doc-full/commondoc/image")
(:system :name "40ants-doc-full/commondoc/html"))
((:system :name "40ants-doc-full/commondoc/image")
(:system :name "40ants-doc-full/commondoc/mapper"))
((:system :name "40ants-doc-full/commondoc/image")
(:system :name "40ants-doc-full/commondoc/page"))
((:system :name "40ants-doc-full/commondoc/image")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "40ants-doc-full/builder/vars"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "40ants-doc-full/commondoc/html"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "40ants-doc-full/commondoc/format"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "40ants-doc-full/commondoc/page"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "40ants-doc-full/commondoc/section"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "40ants-doc/changelog"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "40ants-doc-full/builder/printer"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "40ants-doc-full/commondoc/arglist"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "40ants-doc-full/commondoc/piece"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "40ants-doc/reference-api"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "40ants-doc-full/dislocated-symbols"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "40ants-doc-full/render/args"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "40ants-doc/ignored-words"))
((:system :name "40ants-doc-full/commondoc/builder")
(:system :name "40ants-doc-full/commondoc/markdown"))
((:system :name "40ants-doc-full/commondoc/builder")
(:system :name "40ants-doc/docstring"))
((:system :name "40ants-doc-full/commondoc/builder")
(:system :name "40ants-doc/object-package"))
((:system :name "40ants-doc-full/commondoc/builder")
(:system :name "40ants-doc/reference"))
((:system :name "40ants-doc-full/commondoc/arglist")
(:system :name "40ants-doc-full/utils"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/builder/printer"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/builder/vars"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/builder"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/xref"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/link"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/changelog"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/format"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/page"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/section"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/page"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/rewrite"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/themes/api"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc/changelog"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/image"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/reference"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/external-index"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/toc"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/commondoc/transcribe"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/github"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/search"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/themes/default"))
((:system :name "40ants-doc-full/builder")
(:system :name "40ants-doc-full/world")))
("alexandria" ((:system :name "yason") (:system :name "alexandria"))
((:system :name "type-i") (:system :name "alexandria"))
((:system :name "trivial-with-current-source-form")
(:system :name "alexandria"))
((:system :name "trivial-extract") (:system :name "alexandria"))
((:system :name "trivia.level0") (:system :name "alexandria"))
((:system :name "trivia.balland2006") (:system :name "alexandria"))
((:system :name "static-vectors") (:system :name "alexandria"))
((:system :name "spinneret") (:system :name "alexandria"))
((:system :name "serapeum") (:system :name "alexandria"))
((:system :name "quri") (:system :name "alexandria"))
((:system :name "proc-parse") (:system :name "alexandria"))
((:system :name "mystic") (:system :name "alexandria"))
((:system :name "lisp-namespace") (:system :name "alexandria"))
((:system :name "fiveam") (:system :name "alexandria"))
((:system :name "fast-io") (:system :name "alexandria"))
((:system :name "fast-http") (:system :name "alexandria"))
((:system :name "esrap") (:system :name "alexandria"))
((:system :name "dexador") (:system :name "alexandria"))
((:system :name "commondoc-markdown/emitter") (:system :name "alexandria"))
((:system :name "commondoc-markdown") (:system :name "alexandria"))
((:system :name "common-html") (:system :name "alexandria"))
((:system :name "common-doc") (:system :name "alexandria"))
((:system :name "colorize") (:system :name "alexandria"))
((:system :name "cl-fad") (:system :name "alexandria"))
((:system :name "cl-cookie") (:system :name "alexandria"))
((:system :name "cl-annot") (:system :name "alexandria"))
((:system :name "cl+ssl") (:system :name "alexandria"))
((:system :name "cffi-grovel") (:system :name "alexandria"))
((:system :name "cffi") (:system :name "alexandria"))
((:system :name "bordeaux-threads") (:system :name "alexandria"))
((:system :name "babel") (:system :name "alexandria"))
((:system :name "40ants-project-templates/mixin/docs")
(:system :name "alexandria"))
((:system :name "40ants-doc-theme-40ants/theme") (:system :name "alexandria"))
((:system :name "40ants-doc-full/utils") (:system :name "alexandria"))
((:system :name "40ants-doc-full/transcribe") (:system :name "alexandria"))
((:system :name "40ants-doc-full/themes/api") (:system :name "alexandria"))
((:system :name "40ants-doc-full/swank") (:system :name "alexandria"))
((:system :name "40ants-doc-full/highlight") (:system :name "alexandria"))
((:system :name "40ants-doc-full/github") (:system :name "alexandria"))
((:system :name "40ants-doc-full/external-index")
(:system :name "alexandria"))
((:system :name "40ants-doc-full/commondoc/reference")
(:system :name "alexandria"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "alexandria"))
((:system :name "40ants-ci") (:system :name "alexandria"))
((:system :name "3bmd-ext-code-blocks") (:system :name "alexandria"))
((:system :name "3bmd") (:system :name "alexandria")))
("anaphora" ((:system :name "parenscript") (:system :name "anaphora"))
((:system :name "mystic") (:system :name "anaphora"))
((:system :name "common-html") (:system :name "anaphora"))
((:system :name "common-doc") (:system :name "anaphora")))
("archive" ((:system :name "trivial-extract") (:system :name "archive")))
("array-utils" ((:system :name "plump") (:system :name "array-utils")))
("asdf-flv"
((:system :name "fiveam") (:system :name "net.didierverna.asdf-flv")))
("babel" ((:system :name "zip") (:system :name "babel"))
((:system :name "quri") (:system :name "babel"))
((:system :name "proc-parse") (:system :name "babel"))
((:system :name "jonathan") (:system :name "babel"))
((:system :name "fast-http") (:system :name "babel"))
((:system :name "dexador") (:system :name "babel"))
((:system :name "commondoc-markdown/emitter") (:system :name "babel"))
((:system :name "commondoc-markdown") (:system :name "babel"))
((:system :name "cffi") (:system :name "babel")))
("bordeaux-threads"
((:system :name "serapeum") (:system :name "bordeaux-threads"))
((:system :name "log4cl") (:system :name "bordeaux-threads"))
((:system :name "ironclad") (:system :name "bordeaux-threads"))
((:system :name "dexador") (:system :name "bordeaux-threads"))
((:system :name "cl-fad") (:system :name "bordeaux-threads"))
((:system :name "cl+ssl") (:system :name "bordeaux-threads")))
("cffi" ((:system :name "static-vectors") (:system :name "cffi"))
((:system :name "static-vectors") (:system :name "cffi-grovel"))
((:system :name "cl+ssl") (:system :name "cffi"))
((:system :name "cffi-toolchain") (:system :name "cffi"))
((:system :name "cffi-grovel") (:system :name "cffi"))
((:system :name "cffi-grovel") (:system :name "cffi-toolchain")))
("chipz" ((:system :name "dexador") (:system :name "chipz")))
("chunga" ((:system :name "dexador") (:system :name "chunga")))
("ci" (t (:system :name "40ants-ci")))
("cl+ssl" ((:system :name "dexador") (:system :name "cl+ssl")))
("cl-annot" ((:system :name "jonathan") (:system :name "cl-annot"))
((:system :name "cl-syntax-annot") (:system :name "cl-annot")))
("cl-base64" ((:system :name "lass") (:system :name "cl-base64"))
((:system :name "dexador") (:system :name "cl-base64")))
("cl-change-case" ((:system :name "str") (:system :name "cl-change-case")))
("cl-cookie" ((:system :name "dexador") (:system :name "cl-cookie"))
((:system :name "40ants-doc-full/highlight") (:system :name "cl-cookie")))
("cl-fad" ((:system :name "zip") (:system :name "cl-fad"))
((:system :name "which") (:system :name "cl-fad"))
((:system :name "trivial-extract") (:system :name "cl-fad"))
((:system :name "tmpdir") (:system :name "cl-fad"))
((:system :name "archive") (:system :name "cl-fad"))
((:system :name "40ants-doc-full/github") (:system :name "cl-fad")))
("cl-mustache" ((:system :name "mystic") (:system :name "cl-mustache")))
("cl-ppcre" ((:system :name "str") (:system :name "cl-ppcre"))
((:system :name "str") (:system :name "cl-ppcre-unicode"))
((:system :name "spinneret") (:system :name "cl-ppcre"))
((:system :name "parenscript") (:system :name "cl-ppcre"))
((:system :name "jonathan") (:system :name "cl-ppcre"))
((:system :name "dexador") (:system :name "cl-ppcre"))
((:system :name "cl-unicode") (:system :name "cl-ppcre"))
((:system :name "cl-ppcre-unicode") (:system :name "cl-ppcre"))
((:system :name "cl-cookie") (:system :name "cl-ppcre"))
((:system :name "cl-change-case") (:system :name "cl-ppcre"))
((:system :name "cl-change-case") (:system :name "cl-ppcre-unicode"))
((:system :name "40ants-project-templates/library")
(:system :name "cl-ppcre"))
((:system :name "40ants-doc-full/utils") (:system :name "cl-ppcre"))
((:system :name "40ants-doc-full/rewrite") (:system :name "cl-ppcre"))
((:system :name "40ants-doc-full/github") (:system :name "cl-ppcre"))
((:system :name "40ants-doc-full/commondoc/xref") (:system :name "cl-ppcre"))
((:system :name "40ants-doc-full/commondoc/image") (:system :name "cl-ppcre")))
("cl-str" ((:system :name "commondoc-markdown/emitter") (:system :name "str"))
((:system :name "commondoc-markdown") (:system :name "str"))
((:system :name "40ants-project-templates/mixin/docs") (:system :name "str"))
((:system :name "40ants-doc-full/utils") (:system :name "str"))
((:system :name "40ants-doc-full/search") (:system :name "str"))
((:system :name "40ants-doc-full/rewrite") (:system :name "str"))
((:system :name "40ants-doc-full/page") (:system :name "str"))
((:system :name "40ants-doc-full/github") (:system :name "str"))
((:system :name "40ants-doc-full/external-index") (:system :name "str"))
((:system :name "40ants-doc-full/commondoc/utils") (:system :name "str"))
((:system :name "40ants-doc-full/commondoc/section") (:system :name "str"))
((:system :name "40ants-doc-full/commondoc/page") (:system :name "str"))
((:system :name "40ants-doc-full/commondoc/markdown") (:system :name "str"))
((:system :name "40ants-doc-full/commondoc/image") (:system :name "str"))
((:system :name "40ants-doc-full/commondoc/changelog") (:system :name "str"))
((:system :name "40ants-ci") (:system :name "str")))
("cl-syntax" ((:system :name "jonathan") (:system :name "cl-syntax"))
((:system :name "jonathan") (:system :name "cl-syntax-annot"))
((:system :name "cl-syntax-annot") (:system :name "cl-syntax")))
("cl-unicode" ((:system :name "cl-ppcre-unicode") (:system :name "cl-unicode")))
("cl-utilities" ((:system :name "xml-emitter") (:system :name "cl-utilities"))
((:system :name "quri") (:system :name "cl-utilities"))
((:system :name "fast-http") (:system :name "cl-utilities")))
("closer-mop" ((:system :name "trivia.level2") (:system :name "closer-mop"))
((:system :name "common-doc") (:system :name "closer-mop")))
("colorize" ((:system :name "3bmd-ext-code-blocks") (:system :name "colorize")))
("common-doc"
((:system :name "commondoc-markdown/raw-html") (:system :name "common-doc"))
((:system :name "commondoc-markdown/core") (:system :name "common-doc"))
((:system :name "commondoc-markdown") (:system :name "common-doc"))
((:system :name "common-html") (:system :name "common-doc"))
((:system :name "40ants-doc-full/search") (:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/xref")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/utils")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/transcribe")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/toc") (:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/markdown")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/mapper")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/image")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/commondoc/arglist")
(:system :name "common-doc"))
((:system :name "40ants-doc-full/builder") (:system :name "common-doc")))
("common-html"
((:system :name "commondoc-markdown/raw-html") (:system :name "common-html"))
((:system :name "commondoc-markdown/emitter") (:system :name "common-html"))
((:system :name "commondoc-markdown") (:system :name "common-html"))
((:system :name "40ants-doc-full/themes/default")
(:system :name "common-html"))
((:system :name "40ants-doc-full/search") (:system :name "common-html"))
((:system :name "40ants-doc-full/commondoc/xref")
(:system :name "common-html"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "common-html"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "common-html"))
((:system :name "40ants-doc-full/commondoc/image")
(:system :name "common-html"))
((:system :name "40ants-doc-full/commondoc/html")
(:system :name "common-html"))
((:system :name "40ants-doc-full/commondoc/format")
(:system :name "common-html"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "common-html"))
((:system :name "40ants-doc-full/commondoc/bullet")
(:system :name "common-html"))
((:system :name "40ants-doc-full/commondoc/arglist")
(:system :name "common-html"))
((:system :name "40ants-doc-full/builder") (:system :name "common-html")))
("commondoc-markdown"
((:system :name "40ants-doc-full/commondoc/xref")
(:system :name "commondoc-markdown"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "commondoc-markdown"))
((:system :name "40ants-doc-full/commondoc/markdown")
(:system :name "commondoc-markdown"))
((:system :name "40ants-doc-full/commondoc/format")
(:system :name "commondoc-markdown"))
((:system :name "40ants-doc-full/commondoc/arglist")
(:system :name "commondoc-markdown"))
((:system :name "40ants-doc-full/builder")
(:system :name "commondoc-markdown")))
("deflate" ((:system :name "trivial-extract") (:system :name "deflate")))
("dexador"
((:system :name "40ants-doc-full/highlight") (:system :name "dexador"))
((:system :name "40ants-doc-full/external-index") (:system :name "dexador")))
("doc" ((:system :name "40ants-doc-full/world") (:system :name "40ants-doc"))
((:system :name "40ants-doc-full/page") (:system :name "40ants-doc"))
((:system :name "40ants-doc-full/github") (:system :name "40ants-doc"))
((:system :name "40ants-doc-full/commondoc/section")
(:system :name "40ants-doc"))
((:system :name "40ants-doc-full/commondoc/reference")
(:system :name "40ants-doc"))
((:system :name "40ants-doc-full/commondoc/page")
(:system :name "40ants-doc"))
((:system :name "40ants-doc-full/builder") (:system :name "40ants-doc"))
((:system :name "40ants-ci") (:system :name "40ants-doc")))
("docs-builder" ((:system :name "40ants-ci") (:system :name "docs-config")))
("documentation-utils"
((:system :name "plump") (:system :name "documentation-utils")))
("esrap" ((:system :name "commondoc-markdown/addons") (:system :name "esrap"))
((:system :name "commondoc-markdown") (:system :name "esrap"))
((:system :name "3bmd") (:system :name "esrap")))
("fast-http" ((:system :name "dexador") (:system :name "fast-http")))
("fast-io" ((:system :name "jonathan") (:system :name "fast-io"))
((:system :name "dexador") (:system :name "fast-io")))
("fiveam" ((:system :name "mystic-test") (:system :name "fiveam")))
("flexi-streams"
((:system :name "smart-buffer") (:system :name "flexi-streams"))
((:system :name "cl+ssl") (:system :name "flexi-streams")))
("global-vars" ((:system :name "spinneret") (:system :name "global-vars"))
((:system :name "serapeum") (:system :name "global-vars")))
("html-encode" ((:system :name "colorize") (:system :name "html-encode")))
("introspect-environment"
((:system :name "type-i") (:system :name "introspect-environment"))
((:system :name "serapeum") (:system :name "introspect-environment")))
("ironclad"
((:system :name "commondoc-markdown/emitter") (:system :name "ironclad"))
((:system :name "commondoc-markdown") (:system :name "ironclad"))
(t (:system :name "ironclad")))
("iterate" ((:system :name "trivia.balland2006") (:system :name "iterate")))
("jonathan"
((:system :name "40ants-doc-full/search") (:system :name "jonathan"))
((:system :name "40ants-doc-full/external-index") (:system :name "jonathan")))
("lass"
((:system :name "40ants-doc-theme-40ants/theme") (:system :name "lass"))
((:system :name "40ants-doc-full/themes/default") (:system :name "lass")))
("lisp-namespace" ((:system :name "type-i") (:system :name "lisp-namespace"))
((:system :name "trivia.level2") (:system :name "lisp-namespace")))
("local-time" ((:system :name "mystic") (:system :name "local-time"))
((:system :name "common-doc") (:system :name "local-time"))
((:system :name "cl-cookie") (:system :name "local-time"))
((:system :name "40ants-doc-full/commondoc/changelog")
(:system :name "local-time")))
("log4cl"
((:system :name "40ants-doc-full/highlight") (:system :name "log4cl"))
((:system :name "40ants-doc-full/commondoc/image") (:system :name "log4cl")))
("mystic"
((:system :name "mystic-travis-mixin") (:system :name "mystic-file-mixin"))
((:system :name "mystic-travis-mixin") (:system :name "mystic"))
((:system :name "mystic-test") (:system :name "mystic-library-template"))
((:system :name "mystic-test") (:system :name "mystic"))
((:system :name "mystic-readme-mixin") (:system :name "mystic-file-mixin"))
((:system :name "mystic-readme-mixin") (:system :name "mystic"))
((:system :name "mystic-library-template")
(:system :name "mystic-gitignore-mixin"))
((:system :name "mystic-library-template")
(:system :name "mystic-fiveam-mixin"))
((:system :name "mystic-library-template")
(:system :name "mystic-readme-mixin"))
((:system :name "mystic-library-template")
(:system :name "mystic-travis-mixin"))
((:system :name "mystic-library-template") (:system :name "mystic"))
((:system :name "mystic-gitignore-mixin") (:system :name "mystic-file-mixin"))
((:system :name "mystic-gitignore-mixin") (:system :name "mystic"))
((:system :name "mystic-fiveam-mixin") (:system :name "mystic-file-mixin"))
((:system :name "mystic-fiveam-mixin") (:system :name "mystic"))
((:system :name "mystic-file-mixin") (:system :name "mystic"))
((:system :name "40ants-project-templates/mixin/rove-tests")
(:system :name "mystic-file-mixin"))
((:system :name "40ants-project-templates/mixin/qlfile")
(:system :name "mystic-file-mixin"))
((:system :name "40ants-project-templates/mixin/gitignore")
(:system :name "mystic-file-mixin"))
((:system :name "40ants-project-templates/mixin/docs")
(:system :name "mystic-file-mixin"))
((:system :name "40ants-project-templates/mixin/docs")
(:system :name "mystic"))
((:system :name "40ants-project-templates/mixin/ci")
(:system :name "mystic-file-mixin"))
((:system :name "40ants-project-templates/library")
(:system :name "mystic-file-mixin"))
((:system :name "40ants-project-templates/library") (:system :name "mystic"))
(t
(:project :name "mystic" :commit "2f17cf9c190e02b65a63226a95e3e82b1a28961d"
:source :implicit-vcs)))
("named-readtables"
((:system :name "pythonic-string-reader") (:system :name "named-readtables"))
((:system :name "parenscript") (:system :name "named-readtables"))
((:system :name "cl-syntax") (:system :name "named-readtables"))
((:system :name "40ants-doc/source-api") (:system :name "named-readtables"))
((:system :name "40ants-doc/locatives/base")
(:system :name "named-readtables"))
((:system :name "40ants-doc/changelog") (:system :name "named-readtables"))
((:system :name "40ants-doc-full/transcribe")
(:system :name "named-readtables"))
((:system :name "40ants-doc-full/swank") (:system :name "named-readtables"))
((:system :name "40ants-doc-full/source") (:system :name "named-readtables"))
((:system :name "40ants-doc-full/link") (:system :name "named-readtables"))
((:system :name "40ants-doc-full/builder/printer")
(:system :name "named-readtables"))
((:system :name "40ants-doc-full/builder") (:system :name "named-readtables"))
((:system :name "40ants-doc") (:system :name "named-readtables")))
("parenscript" ((:system :name "spinneret") (:system :name "parenscript")))
("parse-declarations"
((:system :name "serapeum") (:system :name "parse-declarations-1.0")))
("parse-number" ((:system :name "serapeum") (:system :name "parse-number")))
("path-parse" ((:system :name "which") (:system :name "path-parse")))
("plump" ((:system :name "common-html") (:system :name "plump")))
("proc-parse" ((:system :name "jonathan") (:system :name "proc-parse"))
((:system :name "fast-http") (:system :name "proc-parse"))
((:system :name "cl-cookie") (:system :name "proc-parse")))
("pythonic-string-reader"