aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRui Paulo <rpaulo@FreeBSD.org>2015-08-20 16:05:10 +0000
committerRui Paulo <rpaulo@FreeBSD.org>2015-08-20 16:05:10 +0000
commit5ffc0b7309fd9c49f34a3131c7be21788e69589f (patch)
treeb8602bcb0cdb5e399c42b3a6a9eac6ab4dd72259
parentfa76f06ffd635048ed98cbef310d5938e0e669da (diff)
downloadports-5ffc0b7309fd9c49f34a3131c7be21788e69589f.tar.gz
ports-5ffc0b7309fd9c49f34a3131c7be21788e69589f.zip
Notes
-rw-r--r--lang/racket-minimal/Makefile2
-rw-r--r--lang/racket-minimal/distinfo4
-rw-r--r--lang/racket-minimal/files/patch-racket_include_scheme.h8
-rw-r--r--lang/racket-minimal/files/patch-racket_src_mzrt.c11
-rw-r--r--lang/racket-minimal/files/patch-racket_src_port.c11
-rw-r--r--lang/racket-minimal/pkg-plist134
-rw-r--r--lang/racket/Makefile2
-rw-r--r--lang/racket/distinfo4
-rw-r--r--lang/racket/files/patch-.._share_pkgs_plot-doc_plot_scribblings_ticks.scrbl25
-rw-r--r--lang/racket/files/patch-racket_include_scheme.h8
-rw-r--r--lang/racket/files/patch-racket_src_mzrt.c11
-rw-r--r--lang/racket/files/patch-racket_src_port.c11
-rw-r--r--lang/racket/pkg-plist7899
13 files changed, 4260 insertions, 3870 deletions
diff --git a/lang/racket-minimal/Makefile b/lang/racket-minimal/Makefile
index d72e250a1f5e..e63323ea8312 100644
--- a/lang/racket-minimal/Makefile
+++ b/lang/racket-minimal/Makefile
@@ -3,7 +3,7 @@
PORTNAME= racket
PKGNAMESUFFIX= -minimal
-PORTVERSION= 6.1.1
+PORTVERSION= 6.2
CATEGORIES= lang scheme
MASTER_SITES= http://mirror.racket-lang.org/installers/${PORTVERSION}/ \
http://www.cs.utah.edu/plt/installers/${PORTVERSION}/ \
diff --git a/lang/racket-minimal/distinfo b/lang/racket-minimal/distinfo
index 18b6f2ef5d95..0de4a721aa27 100644
--- a/lang/racket-minimal/distinfo
+++ b/lang/racket-minimal/distinfo
@@ -1,2 +1,2 @@
-SHA256 (racket-minimal/6.1.1/racket-minimal-6.1.1-src.tgz) = 324266344e677bb7c75a46f7eb5fc0ad12d4434786216e8846122ba6843c6921
-SIZE (racket-minimal/6.1.1/racket-minimal-6.1.1-src.tgz) = 5852684
+SHA256 (racket-minimal/6.2/racket-minimal-6.2-src.tgz) = 5e2947c84791233493429519a28a874a89e751c5c2aac8671763af34769cbffc
+SIZE (racket-minimal/6.2/racket-minimal-6.2-src.tgz) = 6034994
diff --git a/lang/racket-minimal/files/patch-racket_include_scheme.h b/lang/racket-minimal/files/patch-racket_include_scheme.h
index 73bbee4b7351..4d6a77afdaff 100644
--- a/lang/racket-minimal/files/patch-racket_include_scheme.h
+++ b/lang/racket-minimal/files/patch-racket_include_scheme.h
@@ -1,12 +1,12 @@
---- racket/include/scheme.h.orig
-+++ racket/include/scheme.h
+--- racket/include/scheme.h.orig 2015-07-28 14:12:13.879975000 -0700
++++ racket/include/scheme.h 2015-07-28 14:15:08.492462000 -0700
@@ -63,10 +63,12 @@
# define MZ_USE_SINGLE_FLOATS
#endif
+#if (__FreeBSD_version >= 1000100)
- /* gcc defines __SSE_MATH__ when SSE floating point is enabled: */
- #ifdef __SSE_MATH__
+ /* gcc defines __SSE2_MATH__ when SSE2 floating point is enabled: */
+ #ifdef __SSE2_MATH__
# define C_COMPILER_USES_SSE 1
#endif
+#endif
diff --git a/lang/racket-minimal/files/patch-racket_src_mzrt.c b/lang/racket-minimal/files/patch-racket_src_mzrt.c
deleted file mode 100644
index 5063b52594f9..000000000000
--- a/lang/racket-minimal/files/patch-racket_src_mzrt.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- racket/src/mzrt.c.orig
-+++ racket/src/mzrt.c
-@@ -267,7 +267,7 @@
- stacksize = UNIX_STACK_MAXIMUM;
- # endif
- }
--#elif defined(OS_X) || defined(linux)
-+#elif defined(OS_X) || defined(linux) || defined(__FreeBSD__)
- stacksize = 8*1024*1024;
- #else
- stacksize = 0;
diff --git a/lang/racket-minimal/files/patch-racket_src_port.c b/lang/racket-minimal/files/patch-racket_src_port.c
deleted file mode 100644
index de4d1c28eeea..000000000000
--- a/lang/racket-minimal/files/patch-racket_src_port.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- racket/src/port.c.orig
-+++ racket/src/port.c
-@@ -10996,7 +10996,7 @@
- itimerdata->jit_stack_boundary_ptr = &scheme_jit_stack_boundary;
- pthread_mutex_init(&itimerdata->mutex, NULL);
- pthread_cond_init(&itimerdata->cond, NULL);
-- tmp = mz_proc_thread_create_w_stacksize(green_thread_timer, itimerdata, 4096);
-+ tmp = mz_proc_thread_create_w_stacksize(green_thread_timer, itimerdata, 16384);
- itimerdata->thread = tmp;
- itimerdata->itimer = 1;
- }
diff --git a/lang/racket-minimal/pkg-plist b/lang/racket-minimal/pkg-plist
index 80d7452e6a3d..d60c4f0470c9 100644
--- a/lang/racket-minimal/pkg-plist
+++ b/lang/racket-minimal/pkg-plist
@@ -1,6 +1,5 @@
bin/racket
bin/raco
-%%ETCDIR%%/config.rktd
include/racket/escheme.h
include/racket/ext.exp
include/racket/mzconfig.h
@@ -18,7 +17,7 @@ include/racket/schvers.h
include/racket/sconfig.h
include/racket/stypes.h
include/racket/uconfig.h
-lib/libracket3m-6.1.1.so
+lib/libracket3m-6.2.so
lib/libracket3m.so
lib/racket/buildinfo
lib/racket/gracket
@@ -67,6 +66,8 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/compiler/private/compiled/collects-path_rkt.zo
%%DATADIR%%/collects/compiler/private/compiled/configdir_rkt.dep
%%DATADIR%%/collects/compiler/private/compiled/configdir_rkt.zo
+%%DATADIR%%/collects/compiler/private/compiled/dep_rkt.dep
+%%DATADIR%%/collects/compiler/private/compiled/dep_rkt.zo
%%DATADIR%%/collects/compiler/private/compiled/elf_rkt.dep
%%DATADIR%%/collects/compiler/private/compiled/elf_rkt.zo
%%DATADIR%%/collects/compiler/private/compiled/embed_rkt.dep
@@ -84,6 +85,7 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/compiler/private/compiled/xform_rkt.dep
%%DATADIR%%/collects/compiler/private/compiled/xform_rkt.zo
%%DATADIR%%/collects/compiler/private/configdir.rkt
+%%DATADIR%%/collects/compiler/private/dep.rkt
%%DATADIR%%/collects/compiler/private/elf.rkt
%%DATADIR%%/collects/compiler/private/embed.rkt
%%DATADIR%%/collects/compiler/private/macfw.rkt
@@ -261,6 +263,8 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/net/base64.rkt
%%DATADIR%%/collects/net/compiled/base64_rkt.dep
%%DATADIR%%/collects/net/compiled/base64_rkt.zo
+%%DATADIR%%/collects/net/compiled/git-checkout_rkt.dep
+%%DATADIR%%/collects/net/compiled/git-checkout_rkt.zo
%%DATADIR%%/collects/net/compiled/head_rkt.dep
%%DATADIR%%/collects/net/compiled/head_rkt.zo
%%DATADIR%%/collects/net/compiled/http-client_rkt.dep
@@ -275,6 +279,7 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/net/compiled/url_rkt.zo
%%DATADIR%%/collects/net/compiled/win32-ssl_rkt.dep
%%DATADIR%%/collects/net/compiled/win32-ssl_rkt.zo
+%%DATADIR%%/collects/net/git-checkout.rkt
%%DATADIR%%/collects/net/head.rkt
%%DATADIR%%/collects/net/http-client.rkt
%%DATADIR%%/collects/net/uri-codec.rkt
@@ -319,6 +324,8 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/pkg/compiled/commands_rkt.zo
%%DATADIR%%/collects/pkg/compiled/db_rkt.dep
%%DATADIR%%/collects/pkg/compiled/db_rkt.zo
+%%DATADIR%%/collects/pkg/compiled/dirs-catalog_rkt.dep
+%%DATADIR%%/collects/pkg/compiled/dirs-catalog_rkt.zo
%%DATADIR%%/collects/pkg/compiled/info_rkt.dep
%%DATADIR%%/collects/pkg/compiled/info_rkt.zo
%%DATADIR%%/collects/pkg/compiled/lib_rkt.dep
@@ -333,17 +340,123 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/pkg/compiled/raco_rkt.zo
%%DATADIR%%/collects/pkg/compiled/strip_rkt.dep
%%DATADIR%%/collects/pkg/compiled/strip_rkt.zo
-%%DATADIR%%/collects/pkg/compiled/util_rkt.dep
-%%DATADIR%%/collects/pkg/compiled/util_rkt.zo
%%DATADIR%%/collects/pkg/db.rkt
+%%DATADIR%%/collects/pkg/dirs-catalog.rkt
%%DATADIR%%/collects/pkg/info.rkt
%%DATADIR%%/collects/pkg/lib.rkt
%%DATADIR%%/collects/pkg/main.rkt
%%DATADIR%%/collects/pkg/name.rkt
%%DATADIR%%/collects/pkg/path.rkt
+%%DATADIR%%/collects/pkg/private/addl-installs.rkt
+%%DATADIR%%/collects/pkg/private/archive.rkt
+%%DATADIR%%/collects/pkg/private/catalog-archive.rkt
+%%DATADIR%%/collects/pkg/private/catalog-copy.rkt
+%%DATADIR%%/collects/pkg/private/catalog-show.rkt
+%%DATADIR%%/collects/pkg/private/catalog-update.rkt
+%%DATADIR%%/collects/pkg/private/catalog.rkt
+%%DATADIR%%/collects/pkg/private/clone-path.rkt
+%%DATADIR%%/collects/pkg/private/collects.rkt
+%%DATADIR%%/collects/pkg/private/compiled/addl-installs_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/addl-installs_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/archive_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/archive_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog-archive_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog-archive_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog-copy_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog-copy_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog-show_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog-show_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog-update_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog-update_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/clone-path_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/clone-path_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/collects_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/collects_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/config_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/config_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/content_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/content_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/create_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/create_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/dep_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/dep_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/desc_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/desc_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/dirs_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/dirs_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/download_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/download_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/get-info_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/get-info_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/git_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/git_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/info-to-desc_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/info-to-desc_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/install_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/install_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/lock_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/lock_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/metadata_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/metadata_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/migrate_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/migrate_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/mod-paths_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/mod-paths_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/new_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/new_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/orig-pkg_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/orig-pkg_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/params_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/params_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/path_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/path_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/pkg-db_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/pkg-db_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/print_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/print_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/remove_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/remove_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/repo-path_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/repo-path_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/show_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/show_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/stage_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/stage_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/suggestions_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/suggestions_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/trash_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/trash_rkt.zo
+%%DATADIR%%/collects/pkg/private/config.rkt
+%%DATADIR%%/collects/pkg/private/content.rkt
+%%DATADIR%%/collects/pkg/private/create.rkt
+%%DATADIR%%/collects/pkg/private/dep.rkt
+%%DATADIR%%/collects/pkg/private/desc.rkt
+%%DATADIR%%/collects/pkg/private/dirs.rkt
+%%DATADIR%%/collects/pkg/private/download.rkt
+%%DATADIR%%/collects/pkg/private/get-info.rkt
+%%DATADIR%%/collects/pkg/private/git.rkt
+%%DATADIR%%/collects/pkg/private/info-to-desc.rkt
+%%DATADIR%%/collects/pkg/private/install.rkt
+%%DATADIR%%/collects/pkg/private/lock.rkt
+%%DATADIR%%/collects/pkg/private/metadata.rkt
+%%DATADIR%%/collects/pkg/private/migrate.rkt
+%%DATADIR%%/collects/pkg/private/mod-paths.rkt
+%%DATADIR%%/collects/pkg/private/new.rkt
+%%DATADIR%%/collects/pkg/private/orig-pkg.rkt
+%%DATADIR%%/collects/pkg/private/params.rkt
+%%DATADIR%%/collects/pkg/private/path.rkt
+%%DATADIR%%/collects/pkg/private/pkg-db.rkt
+%%DATADIR%%/collects/pkg/private/print.rkt
+%%DATADIR%%/collects/pkg/private/remove.rkt
+%%DATADIR%%/collects/pkg/private/repo-path.rkt
+%%DATADIR%%/collects/pkg/private/show.rkt
+%%DATADIR%%/collects/pkg/private/stage.rkt
+%%DATADIR%%/collects/pkg/private/suggestions.rkt
+%%DATADIR%%/collects/pkg/private/trash.rkt
%%DATADIR%%/collects/pkg/raco.rkt
%%DATADIR%%/collects/pkg/strip.rkt
-%%DATADIR%%/collects/pkg/util.rkt
%%DATADIR%%/collects/planet/cachepath.rkt
%%DATADIR%%/collects/planet/compiled/cachepath_rkt.dep
%%DATADIR%%/collects/planet/compiled/cachepath_rkt.zo
@@ -1199,6 +1312,10 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/setup/private/compiled/command-name_rkt.zo
%%DATADIR%%/collects/setup/private/compiled/dylib_rkt.dep
%%DATADIR%%/collects/setup/private/compiled/dylib_rkt.zo
+%%DATADIR%%/collects/setup/private/compiled/elf_rkt.dep
+%%DATADIR%%/collects/setup/private/compiled/elf_rkt.zo
+%%DATADIR%%/collects/setup/private/compiled/format-error_rkt.dep
+%%DATADIR%%/collects/setup/private/compiled/format-error_rkt.zo
%%DATADIR%%/collects/setup/private/compiled/lib-roots_rkt.dep
%%DATADIR%%/collects/setup/private/compiled/lib-roots_rkt.zo
%%DATADIR%%/collects/setup/private/compiled/omitted-paths_rkt.dep
@@ -1206,6 +1323,8 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/setup/private/compiled/pkg-deps_rkt.dep
%%DATADIR%%/collects/setup/private/compiled/pkg-deps_rkt.zo
%%DATADIR%%/collects/setup/private/dylib.rkt
+%%DATADIR%%/collects/setup/private/elf.rkt
+%%DATADIR%%/collects/setup/private/format-error.rkt
%%DATADIR%%/collects/setup/private/lib-roots.rkt
%%DATADIR%%/collects/setup/private/omitted-paths.rkt
%%DATADIR%%/collects/setup/private/pkg-deps.rkt
@@ -1338,6 +1457,9 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/syntax/parse/experimental/specialize.rkt
%%DATADIR%%/collects/syntax/parse/experimental/splicing.rkt
%%DATADIR%%/collects/syntax/parse/experimental/template.rkt
+%%DATADIR%%/collects/syntax/parse/lib/compiled/function-header_rkt.dep
+%%DATADIR%%/collects/syntax/parse/lib/compiled/function-header_rkt.zo
+%%DATADIR%%/collects/syntax/parse/lib/function-header.rkt
%%DATADIR%%/collects/syntax/parse/pre.rkt
%%DATADIR%%/collects/syntax/parse/private/3d-stx.rkt
%%DATADIR%%/collects/syntax/parse/private/compiled/3d-stx_rkt.dep
@@ -1522,7 +1644,9 @@ man/man1/raco.1.gz
%%DATADIR%%/collects/xml/xexpr.rkt
%%DATADIR%%/collects/xml/xml.rkt
%%DATADIR%%/links.rktd
+%%DATADIR%%/pkgs/.LOCKpkgs.rktd
%%DATADIR%%/pkgs/pkgs.rktd
%%DATADIR%%/pkgs/racket-lib/LICENSE.txt
%%DATADIR%%/pkgs/racket-lib/info.rkt
+%%ETCDIR%%/config.rktd
%%PORTDOCS%%@dir %%DOCSDIR%%
diff --git a/lang/racket/Makefile b/lang/racket/Makefile
index 83982e64e833..2507fdae0fcf 100644
--- a/lang/racket/Makefile
+++ b/lang/racket/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= racket
-PORTVERSION= 6.1.1
+PORTVERSION= 6.2
CATEGORIES= lang scheme
MASTER_SITES= http://mirror.racket-lang.org/installers/${PORTVERSION}/ \
http://www.cs.utah.edu/plt/installers/${PORTVERSION}/ \
diff --git a/lang/racket/distinfo b/lang/racket/distinfo
index b8658e165de5..c1683260180b 100644
--- a/lang/racket/distinfo
+++ b/lang/racket/distinfo
@@ -1,2 +1,2 @@
-SHA256 (racket/6.1.1/racket-6.1.1-src.tgz) = 090269522d20e7a5ce85d2251a126745746ebf5e87554c05efe03f3b7173da75
-SIZE (racket/6.1.1/racket-6.1.1-src.tgz) = 19746629
+SHA256 (racket/6.2/racket-6.2-src.tgz) = 1331113742b3b3c26b5b95242c714379f1e5f325fad824bb28eeb7b4be03e615
+SIZE (racket/6.2/racket-6.2-src.tgz) = 20109661
diff --git a/lang/racket/files/patch-.._share_pkgs_plot-doc_plot_scribblings_ticks.scrbl b/lang/racket/files/patch-.._share_pkgs_plot-doc_plot_scribblings_ticks.scrbl
deleted file mode 100644
index ccf236ef5af1..000000000000
--- a/lang/racket/files/patch-.._share_pkgs_plot-doc_plot_scribblings_ticks.scrbl
+++ /dev/null
@@ -1,25 +0,0 @@
---- ../share/pkgs/plot-doc/plot/scribblings/ticks.scrbl.orig
-+++ ../share/pkgs/plot-doc/plot/scribblings/ticks.scrbl
-@@ -183,22 +183,6 @@
- @doc-apply[plot-y-far-ticks]
- @doc-apply[plot-z-ticks]
- @doc-apply[plot-z-far-ticks]{
--@examples[#:eval plot-eval
-- (parameterize ([plot-x-label "Near x axis"]
-- [plot-y-label "Near y axis"]
-- [plot-z-label "Near z axis"]
-- [plot-x-ticks (date-ticks)]
-- [plot-y-ticks (time-ticks)]
-- [plot-z-ticks (fraction-ticks)]
-- [plot-x-far-label "Far x axis"]
-- [plot-y-far-label "Far y axis"]
-- [plot-z-far-label "Far z axis"]
-- [plot-x-far-ticks (linear-ticks)]
-- [plot-y-far-ticks (currency-ticks)]
-- [plot-z-far-ticks (log-ticks #:base 2)])
-- (plot3d (lines3d '(#(1 1 1) #(40000000 4 4)) #:style 'transparent)
-- #:angle 45 #:altitude 50
-- #:title "Axis Names and Tick Locations"))]
- At any @racket[#:angle], the far @italic{x} and @italic{y} ticks are behind the plot, and the far @italic{z} ticks are on the right.
- Far ticks are drawn, but not labeled, if they are identical to their corresponding near ticks.
- They are always identical by default.
diff --git a/lang/racket/files/patch-racket_include_scheme.h b/lang/racket/files/patch-racket_include_scheme.h
index 73bbee4b7351..4d6a77afdaff 100644
--- a/lang/racket/files/patch-racket_include_scheme.h
+++ b/lang/racket/files/patch-racket_include_scheme.h
@@ -1,12 +1,12 @@
---- racket/include/scheme.h.orig
-+++ racket/include/scheme.h
+--- racket/include/scheme.h.orig 2015-07-28 14:12:13.879975000 -0700
++++ racket/include/scheme.h 2015-07-28 14:15:08.492462000 -0700
@@ -63,10 +63,12 @@
# define MZ_USE_SINGLE_FLOATS
#endif
+#if (__FreeBSD_version >= 1000100)
- /* gcc defines __SSE_MATH__ when SSE floating point is enabled: */
- #ifdef __SSE_MATH__
+ /* gcc defines __SSE2_MATH__ when SSE2 floating point is enabled: */
+ #ifdef __SSE2_MATH__
# define C_COMPILER_USES_SSE 1
#endif
+#endif
diff --git a/lang/racket/files/patch-racket_src_mzrt.c b/lang/racket/files/patch-racket_src_mzrt.c
deleted file mode 100644
index 5063b52594f9..000000000000
--- a/lang/racket/files/patch-racket_src_mzrt.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- racket/src/mzrt.c.orig
-+++ racket/src/mzrt.c
-@@ -267,7 +267,7 @@
- stacksize = UNIX_STACK_MAXIMUM;
- # endif
- }
--#elif defined(OS_X) || defined(linux)
-+#elif defined(OS_X) || defined(linux) || defined(__FreeBSD__)
- stacksize = 8*1024*1024;
- #else
- stacksize = 0;
diff --git a/lang/racket/files/patch-racket_src_port.c b/lang/racket/files/patch-racket_src_port.c
deleted file mode 100644
index de4d1c28eeea..000000000000
--- a/lang/racket/files/patch-racket_src_port.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- racket/src/port.c.orig
-+++ racket/src/port.c
-@@ -10996,7 +10996,7 @@
- itimerdata->jit_stack_boundary_ptr = &scheme_jit_stack_boundary;
- pthread_mutex_init(&itimerdata->mutex, NULL);
- pthread_cond_init(&itimerdata->cond, NULL);
-- tmp = mz_proc_thread_create_w_stacksize(green_thread_timer, itimerdata, 4096);
-+ tmp = mz_proc_thread_create_w_stacksize(green_thread_timer, itimerdata, 16384);
- itimerdata->thread = tmp;
- itimerdata->itimer = 1;
- }
diff --git a/lang/racket/pkg-plist b/lang/racket/pkg-plist
index 86808814d5e5..4ae636a60149 100644
--- a/lang/racket/pkg-plist
+++ b/lang/racket/pkg-plist
@@ -20,7 +20,6 @@ bin/setup-plt
bin/slatex
bin/slideshow
bin/swindle
-%%ETCDIR%%/config.rktd
include/racket/escheme.h
include/racket/ext.exp
include/racket/mzconfig.h
@@ -38,7 +37,7 @@ include/racket/schvers.h
include/racket/sconfig.h
include/racket/stypes.h
include/racket/uconfig.h
-lib/libracket3m-6.1.1.so
+lib/libracket3m-6.2.so
lib/libracket3m.so
lib/racket/buildinfo
lib/racket/gracket
@@ -58,3510 +57,6 @@ man/man1/raco.1.gz
man/man1/setup-plt.1.gz
share/applications/drracket.desktop
share/applications/slideshow.desktop
-%%PORTDOCS%%%%DOCSDIR%%/acks/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/acks/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/acks/index.html
-%%PORTDOCS%%%%DOCSDIR%%/acks/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/acks/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/acks/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/algol60/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/algol60/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/algol60/index.html
-%%PORTDOCS%%%%DOCSDIR%%/algol60/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/algol60/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/algol60/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/browser/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/browser/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/browser/index.html
-%%PORTDOCS%%%%DOCSDIR%%/browser/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/browser/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/browser/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/bug-report/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/bug-report/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/bug-report/index.html
-%%PORTDOCS%%%%DOCSDIR%%/bug-report/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/bug-report/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/bug-report/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/cards/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/cards/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/cards/index.html
-%%PORTDOCS%%%%DOCSDIR%%/cards/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/cards/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/cards/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/compatibility-package.html
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/defmacro.html
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/index.html
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/mlists.html
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/compatibility/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/continue/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/continue/flow1.png
-%%PORTDOCS%%%%DOCSDIR%%/continue/flow2.png
-%%PORTDOCS%%%%DOCSDIR%%/continue/flow3.png
-%%PORTDOCS%%%%DOCSDIR%%/continue/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/continue/index.html
-%%PORTDOCS%%%%DOCSDIR%%/continue/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/continue/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/continue/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/contract-profile/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/contract-profile/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/contract-profile/index.html
-%%PORTDOCS%%%%DOCSDIR%%/contract-profile/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/contract-profile/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/contract-profile/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/data/Binary_Heaps.html
-%%PORTDOCS%%%%DOCSDIR%%/data/Imperative_Queues.html
-%%PORTDOCS%%%%DOCSDIR%%/data/Orders_and_Ordered_Dictionaries.html
-%%PORTDOCS%%%%DOCSDIR%%/data/Splay_Trees.html
-%%PORTDOCS%%%%DOCSDIR%%/data/bit-vector.html
-%%PORTDOCS%%%%DOCSDIR%%/data/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/data/gvector.html
-%%PORTDOCS%%%%DOCSDIR%%/data/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/data/index.html
-%%PORTDOCS%%%%DOCSDIR%%/data/integer-set.html
-%%PORTDOCS%%%%DOCSDIR%%/data/interval-map.html
-%%PORTDOCS%%%%DOCSDIR%%/data/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/data/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/data/skip-list.html
-%%PORTDOCS%%%%DOCSDIR%%/data/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/data/union-find.html
-%%PORTDOCS%%%%DOCSDIR%%/datalog/Acknowledgments.html
-%%PORTDOCS%%%%DOCSDIR%%/datalog/Parenthetical_Datalog_Module_Language.html
-%%PORTDOCS%%%%DOCSDIR%%/datalog/Tutorial.html
-%%PORTDOCS%%%%DOCSDIR%%/datalog/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/datalog/datalog.html
-%%PORTDOCS%%%%DOCSDIR%%/datalog/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/datalog/index.html
-%%PORTDOCS%%%%DOCSDIR%%/datalog/interop.html
-%%PORTDOCS%%%%DOCSDIR%%/datalog/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/datalog/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/datalog/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/db/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/db/connect.html
-%%PORTDOCS%%%%DOCSDIR%%/db/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/db/index.html
-%%PORTDOCS%%%%DOCSDIR%%/db/notes.html
-%%PORTDOCS%%%%DOCSDIR%%/db/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/db/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/db/query-api.html
-%%PORTDOCS%%%%DOCSDIR%%/db/sql-types.html
-%%PORTDOCS%%%%DOCSDIR%%/db/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/db/using-db.html
-%%PORTDOCS%%%%DOCSDIR%%/db/util.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA-advanced.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA-assignments.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA-beginner.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA-vanilla.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA__Sprachen_als_Libraries.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Definitionen.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Eigenschaften.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Konstruktionsanleitungen_1_bis_10.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Parametrische_Record-Typ-Definitionen.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Record-Typ-Definitionen.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Signaturen.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Testf_lle.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/_t_and__f.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-definitions.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-lambda.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-prim-op.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-quote.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-signatures.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/and.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/application.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/assignments-prim-op.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/assignments-signatures.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/begin.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/beginner-prim-ops.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/cond.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/define-record-procedures-2.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/define-record-procedures-parametric-2.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/id.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/if.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/image.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/index.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/lambda.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/let__letrec_und_let_.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/line3d.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/or.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/p1.jpg
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/p2.jpg
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/p3.jpg
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/p4.jpg
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/set_.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/signatures-vanilla.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/sound.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/turtle.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/vanilla-prim-op.html
-%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/world.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Block_Styles.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Element_Styles.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Enumerations.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Navigation_Bars.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Paragraph_Spacing.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/all-non-sec.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/deepest.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/h3.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/no-toc.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-m1/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Block_Styles.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Element_Styles.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Enumerations.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Navigation_Bars.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Paragraph_Spacing.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/all-non-sec.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/deepest.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/h3.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/no-toc.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-m2/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/Bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/Code_Styles.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/Definition_Blocks.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/Miscellaneous.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/bitmap-dc_.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/Bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/Code_Styles.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/Definition_Blocks.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/Miscellaneous.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/bitmap-dc_.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-s1/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/demo-s1/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-s1/index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-s1/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-s1/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-s1/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-s2/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/demo-s2/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-s2/index.html
-%%PORTDOCS%%%%DOCSDIR%%/demo-s2/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-s2/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/demo-s2/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/distributed-places/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/distributed-places/finger.png
-%%PORTDOCS%%%%DOCSDIR%%/distributed-places/icons.css
-%%PORTDOCS%%%%DOCSDIR%%/distributed-places/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/distributed-places/index.html
-%%PORTDOCS%%%%DOCSDIR%%/distributed-places/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/distributed-places/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/distributed-places/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/doc-site.css
-%%PORTDOCS%%%%DOCSDIR%%/doc-site.js
-%%PORTDOCS%%%%DOCSDIR%%/docindex.sqlite
-%%PORTDOCS%%%%DOCSDIR%%/draw/Drawing_Contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/Drawing_Functions.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/Signature_and_Unit.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/bitmap-dc_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/bitmap_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/draw/brush-list_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/brush_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/color-database___.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/color_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/dc-path_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/dc___.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/font-list_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/font-name-directory___.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/font_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/gl-config_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/gl-context___.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/draw/index.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/libs.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/linear-gradient_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/draw/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/draw/overview.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/pdf-dc_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/pen-list_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/pen_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_15.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_16.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_17.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_18.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_19.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_20.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_21.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_22.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_23.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_24.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_25.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_26.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/draw/point_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/post-script-dc_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/ps-setup_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/radial-gradient_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/record-dc_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/region_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/draw/svg-dc_.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/unsafe.html
-%%PORTDOCS%%%%DOCSDIR%%/draw/water.png
-%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/Accessing_Check_Syntax_Programmatically.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/Module_Browser.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/index.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/drracket/Graphical_Syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/Interface_Reference.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/Keyboard_Shortcuts.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/Menus.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/Searching.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/Tabbed_Editing.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/drracket/buttons.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/choose-language.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/color-scheme.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/create-exe.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/debugger.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/debugger1.png
-%%PORTDOCS%%%%DOCSDIR%%/drracket/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/drracket-files.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/editor.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/example.png
-%%PORTDOCS%%%%DOCSDIR%%/drracket/experimental-langs.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/extending-drracket.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/follow-log.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/htdp-langs.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/drracket/index.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/interactions-window.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/interface-essentials.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/io.png
-%%PORTDOCS%%%%DOCSDIR%%/drracket/languages.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/legacy.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/module-browser.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/module.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/drracket/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/drracket/output-syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/prefs-explanation.html
-%%PORTDOCS%%%%DOCSDIR%%/drracket/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ds-store/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/ds-store/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ds-store/index.html
-%%PORTDOCS%%%%DOCSDIR%%/ds-store/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ds-store/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ds-store/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/dynext/Compilation.html
-%%PORTDOCS%%%%DOCSDIR%%/dynext/Filenames.html
-%%PORTDOCS%%%%DOCSDIR%%/dynext/Linking.html
-%%PORTDOCS%%%%DOCSDIR%%/dynext/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/dynext/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/dynext/index.html
-%%PORTDOCS%%%%DOCSDIR%%/dynext/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/dynext/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/dynext/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/Helpers.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/aligned-pasteboard_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/alignment-parent___.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/alignment___.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/button-snip_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/containers.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/control-snips.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/controls.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/dllist___.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/embedded-button_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/embedded-message_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/embedded-text-button_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/embedded-toggle-button_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/hline_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/horizontal-alignment_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/index.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/snip-related-functions.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/snip-wrapper_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/stretchable-snip___.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/text-button-snip_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/toggle-button-snip_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/vertical-alignment_.html
-%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/vline_.html
-%%PORTDOCS%%%%DOCSDIR%%/eopl/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/eopl/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/eopl/index.html
-%%PORTDOCS%%%%DOCSDIR%%/eopl/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/eopl/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/eopl/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/Errortrace_Key.html
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/errortrace-library.html
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/index.html
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/installing-errortrace.html
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/quick-instructions.html
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/stacktrace.html
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/errortrace/using-errortrace.html
-%%PORTDOCS%%%%DOCSDIR%%/file/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/file/cache.html
-%%PORTDOCS%%%%DOCSDIR%%/file/convertible.html
-%%PORTDOCS%%%%DOCSDIR%%/file/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/file/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/file/gif.html
-%%PORTDOCS%%%%DOCSDIR%%/file/gunzip.html
-%%PORTDOCS%%%%DOCSDIR%%/file/gzip.html
-%%PORTDOCS%%%%DOCSDIR%%/file/ico.html
-%%PORTDOCS%%%%DOCSDIR%%/file/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/file/index.html
-%%PORTDOCS%%%%DOCSDIR%%/file/md5.html
-%%PORTDOCS%%%%DOCSDIR%%/file/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/file/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/file/resource.html
-%%PORTDOCS%%%%DOCSDIR%%/file/sha1b.html
-%%PORTDOCS%%%%DOCSDIR%%/file/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/file/tar.html
-%%PORTDOCS%%%%DOCSDIR%%/file/untar.html
-%%PORTDOCS%%%%DOCSDIR%%/file/untgz.html
-%%PORTDOCS%%%%DOCSDIR%%/file/unzip.html
-%%PORTDOCS%%%%DOCSDIR%%/file/zip.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Allocation_and_Finalization.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Atomic_Execution.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/C_Array_Types.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/C_Struct_Types.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/C_Union_Types.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Custodian_Shutdown_Registration.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Defining_Bindings.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Derived_Utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Enumerations_and_Masks.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Loading_Foreign_Libraries.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Miscellaneous_Support.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Numeric_Types.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Objective-C_FFI.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Other_Atomic_Types.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Pointer_Types.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/Speculatively_Atomic_Execution.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/String_Types.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/active-x.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/foreign/com-auto.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/com-intf.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/com.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/ctype.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/file-security-guard-checks.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_c-only.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_cvector.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_pointer-funcs.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_procedures.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_tagged-pointers.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/homogeneous-vectors.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/foreign/index.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/intro.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/ns.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/foreign/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/foreign/serialize-struct.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/foreign/types.html
-%%PORTDOCS%%%%DOCSDIR%%/foreign/winapi.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Application.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Autosave.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Backwards_Compatibility.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Canvas.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Color.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Color_Model.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Color_Prefs.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Comment_Box.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Decorated_Editor_Snip.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Editor.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Exit.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Finder.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Frame.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Framework_Libraries_Overview.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/GUI_Utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Group.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Handler.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Icon.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Keymap.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Menu.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Mode.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Number_Snip.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Panel.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Pasteboard.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Path_Utils.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Preferences.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Preferences__Textual.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Racket.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Signatures.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Splash.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Test.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Text.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Unit.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/Version.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/framework/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/editor-snip.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/framework/index.html
-%%PORTDOCS%%%%DOCSDIR%%/framework/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/framework/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/framework/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/frtime/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/frtime/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/frtime/index.html
-%%PORTDOCS%%%%DOCSDIR%%/frtime/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/frtime/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/frtime/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/future-visualizer-timeline.html
-%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/future-visualizer-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/futures-trace.html
-%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/index.html
-%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/games/3x3-empty-board.png
-%%PORTDOCS%%%%DOCSDIR%%/games/7x7-empty-board.png
-%%PORTDOCS%%%%DOCSDIR%%/games/Board_to_Graph.html
-%%PORTDOCS%%%%DOCSDIR%%/games/Breadth-first_Search.html
-%%PORTDOCS%%%%DOCSDIR%%/games/Drawing_the_Cat.html
-%%PORTDOCS%%%%DOCSDIR%%/games/Drawing_the_World.html
-%%PORTDOCS%%%%DOCSDIR%%/games/Handling_Input.html
-%%PORTDOCS%%%%DOCSDIR%%/games/Overview.html
-%%PORTDOCS%%%%DOCSDIR%%/games/Run__program__run.html
-%%PORTDOCS%%%%DOCSDIR%%/games/Showing_Scribbled_Help.html
-%%PORTDOCS%%%%DOCSDIR%%/games/Showing_Text_Help.html
-%%PORTDOCS%%%%DOCSDIR%%/games/Tests.html
-%%PORTDOCS%%%%DOCSDIR%%/games/The_Cat_s_Path.html
-%%PORTDOCS%%%%DOCSDIR%%/games/The_World.html
-%%PORTDOCS%%%%DOCSDIR%%/games/aces.html
-%%PORTDOCS%%%%DOCSDIR%%/games/aces.png
-%%PORTDOCS%%%%DOCSDIR%%/games/blackjack.html
-%%PORTDOCS%%%%DOCSDIR%%/games/blackjack.png
-%%PORTDOCS%%%%DOCSDIR%%/games/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/games/bundled.html
-%%PORTDOCS%%%%DOCSDIR%%/games/cat-distance-example.png
-%%PORTDOCS%%%%DOCSDIR%%/games/chat-noir.html
-%%PORTDOCS%%%%DOCSDIR%%/games/chat-noir.png
-%%PORTDOCS%%%%DOCSDIR%%/games/checkers.html
-%%PORTDOCS%%%%DOCSDIR%%/games/checkers.png
-%%PORTDOCS%%%%DOCSDIR%%/games/crazy8s.html
-%%PORTDOCS%%%%DOCSDIR%%/games/crazy8s.png
-%%PORTDOCS%%%%DOCSDIR%%/games/gcalc.html
-%%PORTDOCS%%%%DOCSDIR%%/games/gcalc.png
-%%PORTDOCS%%%%DOCSDIR%%/games/ginrummy.html
-%%PORTDOCS%%%%DOCSDIR%%/games/ginrummy.png
-%%PORTDOCS%%%%DOCSDIR%%/games/gobblet.html
-%%PORTDOCS%%%%DOCSDIR%%/games/gobblet.png
-%%PORTDOCS%%%%DOCSDIR%%/games/gofish.html
-%%PORTDOCS%%%%DOCSDIR%%/games/gofish.png
-%%PORTDOCS%%%%DOCSDIR%%/games/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/games/index.html
-%%PORTDOCS%%%%DOCSDIR%%/games/jewel.html
-%%PORTDOCS%%%%DOCSDIR%%/games/jewel.png
-%%PORTDOCS%%%%DOCSDIR%%/games/lights-out.html
-%%PORTDOCS%%%%DOCSDIR%%/games/lights-out.png
-%%PORTDOCS%%%%DOCSDIR%%/games/memory.html
-%%PORTDOCS%%%%DOCSDIR%%/games/memory.png
-%%PORTDOCS%%%%DOCSDIR%%/games/mines.html
-%%PORTDOCS%%%%DOCSDIR%%/games/mines.png
-%%PORTDOCS%%%%DOCSDIR%%/games/new-games.html
-%%PORTDOCS%%%%DOCSDIR%%/games/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/games/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/games/paint-by-numbers.html
-%%PORTDOCS%%%%DOCSDIR%%/games/paint-by-numbers.png
-%%PORTDOCS%%%%DOCSDIR%%/games/parcheesi.html
-%%PORTDOCS%%%%DOCSDIR%%/games/parcheesi.png
-%%PORTDOCS%%%%DOCSDIR%%/games/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/games/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/games/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/games/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/games/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/games/pousse.html
-%%PORTDOCS%%%%DOCSDIR%%/games/pousse.png
-%%PORTDOCS%%%%DOCSDIR%%/games/same.html
-%%PORTDOCS%%%%DOCSDIR%%/games/same.png
-%%PORTDOCS%%%%DOCSDIR%%/games/slidey.html
-%%PORTDOCS%%%%DOCSDIR%%/games/slidey.png
-%%PORTDOCS%%%%DOCSDIR%%/games/spider.html
-%%PORTDOCS%%%%DOCSDIR%%/games/spider.png
-%%PORTDOCS%%%%DOCSDIR%%/games/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/games/tally-maze.html
-%%PORTDOCS%%%%DOCSDIR%%/games/tally-maze.png
-%%PORTDOCS%%%%DOCSDIR%%/getting-started/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/getting-started/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/getting-started/index.html
-%%PORTDOCS%%%%DOCSDIR%%/getting-started/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/getting-started/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/getting-started/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/index.html
-%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/graphics/A_More_Complicated_Example.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/An_Example.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/Basic_Commands.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/Color_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/Draw__Clear__and_Flip_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/Flushing.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/Graphics_Library_as_a_Unit.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/Keyboard_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/Miscellaneous_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/Mouse_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/Protecting_Graphics_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/World_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/graphics/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/graphics/index.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/graphics/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/graphics/posn.html
-%%PORTDOCS%%%%DOCSDIR%%/graphics/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/gui/Dynamic_Loading.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/Editor_Classes.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/Editor_Functions.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/Snip_and_Style_Classes.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/Startup_Actions.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/WXME_Decoding.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/Widget_Gallery.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/Windowing_Classes.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/Windowing_Functions.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/add-color___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/area-container-window___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/area-container___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/area___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/gui/button.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/button_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/canvas_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/canvas___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/check-box.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/check-box_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/checkable-menu-item_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/choice.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/choice_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/clipboard-client_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/clipboard___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/column-control-event_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/combo-field.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/combo-field_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/control-event_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/control___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/cursor_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/dialog_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-admin_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-canvas.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-canvas_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-data-class-list___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-data-class_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-data_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-overview.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-snip-editor-admin___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-snip_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-in-base_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-in-bytes-base_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-in_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-out-base_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-out-bytes-base_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-out_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor-wordbreak-map_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/editor___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/event_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/frame_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/gauge.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/gauge_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/group-box-panel.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/group-box-panel_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/grow-box-spacer-pane_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/horizontal-pane_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/horizontal-panel_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/image-snip_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/gui/index.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/key-event_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/keymap_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/labelled-menu-item___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/libs.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/list-box.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/list-box_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/list-control___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/menu-bar.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/menu-bar_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/menu-item-container___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/menu-item_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/menu-item___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/menu_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/message.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/message_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/mouse-event_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/mredprefs.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/mult-color___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/gui/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/gui/pane_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/panel.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/panel_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/pasteboard_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/popup-menu_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/printer-dc_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/radio-box.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/radio-box_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/readable-snip___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/scroll-event_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/selectable-menu-item___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/separator-menu-item_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/slider.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/slider_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/snip-admin_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/snip-class-list___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/snip-class_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/snip_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/gui/string-snip_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/style-delta_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/style-list_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/style___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/subarea___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/subwindow___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/tab-panel.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/tab-panel_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/tab-snip_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/text-field.png
-%%PORTDOCS%%%%DOCSDIR%%/gui/text-field_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/text_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/timer_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/top-level-window___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/vertical-pane_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/vertical-panel_.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/window___.html
-%%PORTDOCS%%%%DOCSDIR%%/gui/windowing-overview.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/An_Extended_Example.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Backtracking.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Contracts_for_Units.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Emacs.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Invoking_Units.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Linking_Units.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Lists__Iteration__and_Recursion.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Looking_Ahead_and_Behind.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Module_Syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/More_Libraries.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Pairs__Lists__and_Racket_Syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Signatures_and_Units.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Simple_Values.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Vim.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/Whole-module_Signatures_and_Units.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/application.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/begin.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/binding.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/guide/booleans.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/boxes.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/bytestrings.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/case.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/characters.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/classes.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/cmdline-tools.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/concurrency.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/conditionals.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/contract-boundaries.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/contract-func.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-examples.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-exists.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-first.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-general-functions.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-gotchas.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-struct.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/control.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/conts.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/datatypes.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/default-ports.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/define-struct.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/define.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/dialects.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/encodings.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/eval.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/exe.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/exns.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/figure.css
-%%PORTDOCS%%%%DOCSDIR%%/guide/figure.js
-%%PORTDOCS%%%%DOCSDIR%%/guide/finger.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/firstclassunits.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/for.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/hash-lang_reader.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/hash-lang_syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/hash-languages.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/hash-reader.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/hash-tables.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/i_o.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/icons.css
-%%PORTDOCS%%%%DOCSDIR%%/guide/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/guide/index.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/intro.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/io-patterns.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/keywords.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/lambda.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/language-collection.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/language-get-info.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/languages.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/let.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/load.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/macro-transformers.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/macros.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/magnify.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/match.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/mk-namespace.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/module-basics.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/module-languages.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/module-paths.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/module-provide.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/module-require.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/module-runtime-config.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/module-set.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/modules.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/more-hash-lang.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/numbers.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/other-editors.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/guide/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/guide/pairs.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/parallelism.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/parameterize.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/pattern-macros.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/performance.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/phases.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/ports.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/proc-macros.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/prompt.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/qq.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/quote.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/racket.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/read-write.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/reflection.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-alternation.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-assert.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-chars.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-clusters.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-intro.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-match.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-quant.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/regexp.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/running.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/scheme-forms.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/scripts.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/serialization.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/set_.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/guide/standards.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/strings.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/stx-certs.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/stx-obj.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/stx-phases.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/symbols.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/syntax-case.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/syntax-notation.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/syntax-overview.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/syntax_module-reader.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/teaching-langs.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/to-scheme.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/unit_versus_module.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/units.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/vectors.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/void_undefined.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/with-syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/help/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/help/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/help/index.html
-%%PORTDOCS%%%%DOCSDIR%%/help/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/help/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/help/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/advanced.html
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/beginner-abbr.html
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/beginner.html
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/index.html
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/intermediate-lam.html
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/intermediate.html
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_15.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/index.html
-%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/htdp/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp/index.html
-%%PORTDOCS%%%%DOCSDIR%%/htdp/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/htdp/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/html/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/html/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/html/index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/html/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/html/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/images/Blur.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Component_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Compositing.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Conversion_and_Construction.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Effects.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Embedding_Bitmaps_in_Compiled_Files.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Gradients_and_Normals.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Icons.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Logos.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Overview.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Pointwise_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Resizing.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Spatial_Transformations.html
-%%PORTDOCS%%%%DOCSDIR%%/images/Struct_Type_and_Accessors.html
-%%PORTDOCS%%%%DOCSDIR%%/images/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/images/flomap_title.html
-%%PORTDOCS%%%%DOCSDIR%%/images/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/images/index.html
-%%PORTDOCS%%%%DOCSDIR%%/images/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/images/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/images/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_100.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_101.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_102.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_103.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_104.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_105.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_106.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_107.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_108.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_109.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_110.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_111.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_112.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_113.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_114.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_115.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_116.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_117.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_118.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_119.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_120.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_121.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_122.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_123.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_124.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_125.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_126.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_127.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_128.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_129.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_130.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_131.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_132.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_133.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_134.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_135.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_136.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_137.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_138.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_139.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_140.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_141.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_142.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_143.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_144.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_145.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_146.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_147.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_148.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_149.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_15.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_150.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_151.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_152.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_153.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_154.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_155.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_156.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_157.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_158.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_159.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_16.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_160.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_161.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_162.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_163.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_164.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_165.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_166.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_167.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_168.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_169.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_17.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_170.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_171.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_172.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_173.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_174.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_175.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_176.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_177.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_178.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_179.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_18.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_180.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_181.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_182.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_183.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_184.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_185.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_186.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_187.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_188.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_189.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_19.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_190.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_191.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_192.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_193.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_194.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_195.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_196.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_197.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_198.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_199.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_20.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_200.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_201.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_202.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_203.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_204.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_21.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_22.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_23.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_24.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_25.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_26.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_27.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_28.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_29.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_30.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_31.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_32.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_33.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_34.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_35.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_36.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_37.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_38.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_39.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_40.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_41.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_42.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_43.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_44.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_45.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_46.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_47.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_48.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_49.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_50.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_51.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_52.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_53.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_54.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_55.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_56.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_57.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_58.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_59.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_60.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_61.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_62.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_63.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_64.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_65.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_66.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_67.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_68.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_69.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_70.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_71.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_72.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_73.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_74.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_75.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_76.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_77.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_78.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_79.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_80.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_81.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_82.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_83.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_84.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_85.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_86.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_87.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_88.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_89.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_90.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_91.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_92.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_93.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_94.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_95.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_96.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_97.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_98.png
-%%PORTDOCS%%%%DOCSDIR%%/images/pict_99.png
-%%PORTDOCS%%%%DOCSDIR%%/images/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/Bignums__Rationals__and_Complex_Numbers.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/Custodians.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/Evaluation.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/Miscellaneous_Utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/Ports_and_the_Filesystem.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/Procedures.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/Structures.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/Subprocesses.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/Writing_Racket_Extensions.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/inside/config.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/contmarks.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/embedding.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/exceptions.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/im_encodings.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/im_env.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/im_memoryalloc.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/im_values_types.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/inside/index.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/inside/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/inside/overview.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/security.html
-%%PORTDOCS%%%%DOCSDIR%%/inside/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/inside/threads.html
-%%PORTDOCS%%%%DOCSDIR%%/json/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/json/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/json/index.html
-%%PORTDOCS%%%%DOCSDIR%%/json/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/json/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/json/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/lazy/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/lazy/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/lazy/index.html
-%%PORTDOCS%%%%DOCSDIR%%/lazy/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/lazy/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/lazy/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/license/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/license/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/license/index.html
-%%PORTDOCS%%%%DOCSDIR%%/license/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/license/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/license/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/index.html
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect.js
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_0.js
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_1.js
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_2.js
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_3.js
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_4.js
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-user-redirect.js
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/local-redirect/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/index.html
-%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/make/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/make/collection.html
-%%PORTDOCS%%%%DOCSDIR%%/make/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/make/index.html
-%%PORTDOCS%%%%DOCSDIR%%/make/make.html
-%%PORTDOCS%%%%DOCSDIR%%/make/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/make/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/make/overview.html
-%%PORTDOCS%%%%DOCSDIR%%/make/setup-extension.html
-%%PORTDOCS%%%%DOCSDIR%%/make/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/manual-fonts.css
-%%PORTDOCS%%%%DOCSDIR%%/manual-racket.css
-%%PORTDOCS%%%%DOCSDIR%%/manual-racket.js
-%%PORTDOCS%%%%DOCSDIR%%/manual-style.css
-%%PORTDOCS%%%%DOCSDIR%%/math/Distribution_Types_and_Operations.html
-%%PORTDOCS%%%%DOCSDIR%%/math/Finite_Distribution_Families.html
-%%PORTDOCS%%%%DOCSDIR%%/math/Integer_Distribution_Families.html
-%%PORTDOCS%%%%DOCSDIR%%/math/Real_Distribution_Families.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_broadcasting.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_construct.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_convert.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_defs.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_fold.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_indexing.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_nonstrict.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_other.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_pointwise.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_quick.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_sequences.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_slicing.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_strict.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_subtypes.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_transform.html
-%%PORTDOCS%%%%DOCSDIR%%/math/array_types.html
-%%PORTDOCS%%%%DOCSDIR%%/math/base.html
-%%PORTDOCS%%%%DOCSDIR%%/math/bigfloat.html
-%%PORTDOCS%%%%DOCSDIR%%/math/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/math/dist.html
-%%PORTDOCS%%%%DOCSDIR%%/math/dist_dist-objects.html
-%%PORTDOCS%%%%DOCSDIR%%/math/dist_flonum.html
-%%PORTDOCS%%%%DOCSDIR%%/math/flonum.html
-%%PORTDOCS%%%%DOCSDIR%%/math/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/math/index.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrices.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_arith.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_basic.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_construction.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_conversion.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_inner.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_intro.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_op-norm.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_ortho-alg.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_poly.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_row-alg.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_solve.html
-%%PORTDOCS%%%%DOCSDIR%%/math/matrix_types.html
-%%PORTDOCS%%%%DOCSDIR%%/math/number-theory.html
-%%PORTDOCS%%%%DOCSDIR%%/math/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/math/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/math/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_15.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_16.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_17.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_18.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_19.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_20.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_21.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_22.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_23.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_24.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_25.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_26.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_27.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_28.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_29.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_30.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_31.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_32.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_33.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_34.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_35.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_36.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_37.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_38.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_39.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_40.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_41.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_42.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_43.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_44.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_45.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_46.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_47.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_48.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_49.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_50.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_51.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_52.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_53.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/math/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/math/special.html
-%%PORTDOCS%%%%DOCSDIR%%/math/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/math/stats.html
-%%PORTDOCS%%%%DOCSDIR%%/math/utils.html
-%%PORTDOCS%%%%DOCSDIR%%/more/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/more/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/more/index.html
-%%PORTDOCS%%%%DOCSDIR%%/more/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/more/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/more/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/more/step0.txt
-%%PORTDOCS%%%%DOCSDIR%%/more/step1.txt
-%%PORTDOCS%%%%DOCSDIR%%/more/step2.txt
-%%PORTDOCS%%%%DOCSDIR%%/more/step3.txt
-%%PORTDOCS%%%%DOCSDIR%%/more/step4.txt
-%%PORTDOCS%%%%DOCSDIR%%/more/step5.txt
-%%PORTDOCS%%%%DOCSDIR%%/more/step6.txt
-%%PORTDOCS%%%%DOCSDIR%%/more/step7.txt
-%%PORTDOCS%%%%DOCSDIR%%/more/step8.txt
-%%PORTDOCS%%%%DOCSDIR%%/more/step9.txt
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Acknowledgments.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Aligned_Pasteboard.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Bitmap_Label.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Cache-image_Snip.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Close_Icon.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/GIF_and_Animated_GIF_Writing.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Graph_Functions.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Graphs.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Hierarchical_List_Control.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Image_Core.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Include_Bitmap.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Interactive_Value_Port.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Matrix_Snip.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Name_Message.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Path_Dialog.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Plot.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Snips_in_a_hierarchical-list__Instance.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Switchable_Button.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/TeX_Table.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/Terminal_Window.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/aligned-editor-canvas_.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/aligned-editor-snip_.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/aligned-pasteboard-parent___.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/aligned-pasteboard___.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/graph-pasteboard-mixin.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/graph-pasteboard___.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/graph-snip-mixin.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/graph-snip___.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/hierarchical-list-compound-item___.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/hierarchical-list-item___.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/hierarchical-list_.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/horizontal-pasteboard_.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/stretchable-snip___.html
-%%PORTDOCS%%%%DOCSDIR%%/mrlib/vertical-pasteboard_.html
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/com-events.html
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/com-types.html
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/methprop.html
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mysterx/version.html
-%%PORTDOCS%%%%DOCSDIR%%/mzcom/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/mzcom/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzcom/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mzcom/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzcom/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzcom/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_a-signature.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_a-unit.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_async-channel.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_awk.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_class.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_cm-accomplice.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_cm.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_cmdline.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_cml.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_compat.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_compile.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_contract.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_control.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_date.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_deflate.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_defmacro.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_etc.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_file.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_for.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_foreign.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_include.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_inflate.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_integer-set.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_kw.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_list.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_match.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_math.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_md5.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_os.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_pconvert-prop.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_pconvert.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_plt-match.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_port.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_pregexp.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_pretty.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_process.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_restart.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_runtime-path.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_sandbox.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_sendevent.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_serialize.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_shared.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_string.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_struct.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_stxparam.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_surrogate.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_tar.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_thread.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_trace.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_traceld.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_trait.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_transcr.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_unit-exptime.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_unit.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_unit200.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_unitsig200.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_zip.html
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzlib/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/Extra_Libraries.html
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/Old_Functions.html
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/Old_Syntactic_Forms.html
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/Omitted_Forms_and_Functions.html
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/index.html
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/mzscheme/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/net/base64.html
-%%PORTDOCS%%%%DOCSDIR%%/net/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/net/cgi.html
-%%PORTDOCS%%%%DOCSDIR%%/net/cookie.html
-%%PORTDOCS%%%%DOCSDIR%%/net/dns.html
-%%PORTDOCS%%%%DOCSDIR%%/net/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/net/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/net/ftp.html
-%%PORTDOCS%%%%DOCSDIR%%/net/head.html
-%%PORTDOCS%%%%DOCSDIR%%/net/http-client.html
-%%PORTDOCS%%%%DOCSDIR%%/net/imap.html
-%%PORTDOCS%%%%DOCSDIR%%/net/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/net/index.html
-%%PORTDOCS%%%%DOCSDIR%%/net/mime.html
-%%PORTDOCS%%%%DOCSDIR%%/net/nntp.html
-%%PORTDOCS%%%%DOCSDIR%%/net/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/net/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/net/pop3.html
-%%PORTDOCS%%%%DOCSDIR%%/net/qp.html
-%%PORTDOCS%%%%DOCSDIR%%/net/sendmail.html
-%%PORTDOCS%%%%DOCSDIR%%/net/sendurl.html
-%%PORTDOCS%%%%DOCSDIR%%/net/smtp.html
-%%PORTDOCS%%%%DOCSDIR%%/net/ssl-tcp-unit.html
-%%PORTDOCS%%%%DOCSDIR%%/net/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/net/tcp-redirect.html
-%%PORTDOCS%%%%DOCSDIR%%/net/tcp.html
-%%PORTDOCS%%%%DOCSDIR%%/net/uri-codec.html
-%%PORTDOCS%%%%DOCSDIR%%/net/url.html
-%%PORTDOCS%%%%DOCSDIR%%/net/websocket.html
-%%PORTDOCS%%%%DOCSDIR%%/openssl/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/openssl/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/openssl/index.html
-%%PORTDOCS%%%%DOCSDIR%%/openssl/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/openssl/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/openssl/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/Context-Free_Parsers.html
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/Converting_yacc_or_bison_Grammars.html
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/LALR_1__Parsers.html
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/Lexers.html
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/index.html
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/parser-tools/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pict-snip/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/pict-snip/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pict-snip/index.html
-%%PORTDOCS%%%%DOCSDIR%%/pict-snip/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pict-snip/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pict-snip/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pict/Animation_Helpers.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Basic_Pict_Constructors.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Bounding_Box_Adjusters.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Conversion_to_Picts.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Miscellaneous.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/More_Pict_Constructors.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Pict_Combiners.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Pict_Datatype.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Pict_Drawing_Adjusters.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Pict_Finders.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Rendering.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/Tree_Layout.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/pict/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pict/index.html
-%%PORTDOCS%%%%DOCSDIR%%/pict/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pict/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_100.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_101.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_102.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_103.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_104.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_105.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_106.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_107.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_108.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_109.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_110.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_111.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_112.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_113.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_114.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_115.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_116.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_117.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_118.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_119.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_120.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_121.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_122.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_123.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_124.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_125.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_126.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_15.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_16.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_17.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_18.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_19.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_20.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_21.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_22.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_23.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_24.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_25.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_26.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_27.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_28.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_29.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_30.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_31.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_32.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_33.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_34.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_35.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_36.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_37.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_38.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_39.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_40.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_41.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_42.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_43.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_44.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_45.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_46.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_47.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_48.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_49.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_50.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_51.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_52.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_53.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_54.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_55.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_56.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_57.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_58.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_59.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_60.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_61.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_62.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_63.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_64.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_65.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_66.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_67.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_68.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_69.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_70.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_71.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_72.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_73.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_74.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_75.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_76.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_77.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_78.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_79.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_80.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_81.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_82.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_83.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_84.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_85.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_86.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_87.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_88.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_89.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_90.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_91.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_92.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_93.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_94.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_95.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_96.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_97.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_98.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/pict_99.png
-%%PORTDOCS%%%%DOCSDIR%%/pict/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/index.html
-%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pkg/FAQ.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/Functions_for_raco_pkg.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/Future_Plans.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/PLaneT_Compatibility.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/Package_Concepts.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/apis.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/pkg/catalog-protocol.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/cmdline.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/db.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/getting-started.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/implementation.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pkg/index.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/lib.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/metadata.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/name.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pkg/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pkg/path.html
-%%PORTDOCS%%%%DOCSDIR%%/pkg/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/pkg/strip.html
-%%PORTDOCS%%%%DOCSDIR%%/plai/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/plai/collector.html
-%%PORTDOCS%%%%DOCSDIR%%/plai/gc2-collector.html
-%%PORTDOCS%%%%DOCSDIR%%/plai/gc2-mutator.html
-%%PORTDOCS%%%%DOCSDIR%%/plai/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plai/index.html
-%%PORTDOCS%%%%DOCSDIR%%/plai/mutator.html
-%%PORTDOCS%%%%DOCSDIR%%/plai/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plai/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plai/plai-scheme.html
-%%PORTDOCS%%%%DOCSDIR%%/plai/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plai/web.html
-%%PORTDOCS%%%%DOCSDIR%%/planet/Developing_Packages_for_PLaneT.html
-%%PORTDOCS%%%%DOCSDIR%%/planet/Using_PLaneT.html
-%%PORTDOCS%%%%DOCSDIR%%/planet/Utility_Libraries.html
-%%PORTDOCS%%%%DOCSDIR%%/planet/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/planet/cmdline.html
-%%PORTDOCS%%%%DOCSDIR%%/planet/hash-lang-planet.html
-%%PORTDOCS%%%%DOCSDIR%%/planet/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/planet/index.html
-%%PORTDOCS%%%%DOCSDIR%%/planet/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/planet/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/planet/search-order.html
-%%PORTDOCS%%%%DOCSDIR%%/planet/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plot/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/plot/compat.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plot/index.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/intro.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/nonrenderer.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plot/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plot/params.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_15.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_16.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_17.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_18.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_19.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_20.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_21.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_22.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_23.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_24.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_25.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_26.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_27.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_28.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_29.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_30.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_31.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_32.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_33.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_34.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_35.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_36.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_37.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_38.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_39.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_40.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_41.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_42.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_43.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_44.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_45.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_46.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_47.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_48.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_49.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_50.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_51.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_52.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_53.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_54.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_55.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_56.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_57.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_58.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_59.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_60.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_61.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_62.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_63.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_64.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_65.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_66.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_67.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_68.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_69.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_70.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_71.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_72.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_73.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_74.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_75.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_76.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_77.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_78.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_79.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_80.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_81.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_82.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_83.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_84.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_85.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_86.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_87.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_88.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/plot/plotting.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/porting.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/renderer2d.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/renderer3d.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plot/ticks_and_transforms.html
-%%PORTDOCS%%%%DOCSDIR%%/plot/utils.html
-%%PORTDOCS%%%%DOCSDIR%%/plt-installer/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/plt-installer/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plt-installer/index.html
-%%PORTDOCS%%%%DOCSDIR%%/plt-installer/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plt-installer/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/plt-installer/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/preprocessor/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/preprocessor/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/preprocessor/index.html
-%%PORTDOCS%%%%DOCSDIR%%/preprocessor/mzpp.html
-%%PORTDOCS%%%%DOCSDIR%%/preprocessor/mztext.html
-%%PORTDOCS%%%%DOCSDIR%%/preprocessor/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/preprocessor/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/preprocessor/overview.html
-%%PORTDOCS%%%%DOCSDIR%%/preprocessor/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/profile/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/profile/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/profile/index.html
-%%PORTDOCS%%%%DOCSDIR%%/profile/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/profile/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/profile/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/quick/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/quick/img0.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/img1.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/img2.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/quick/index.html
-%%PORTDOCS%%%%DOCSDIR%%/quick/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/quick/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_15.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_16.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_17.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_18.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_19.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_20.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_21.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_22.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_23.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_24.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_25.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_26.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_27.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/quick/quick.scrbl
-%%PORTDOCS%%%%DOCSDIR%%/quick/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/index.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/plt-r5rs.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-mod.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/index.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-C.css
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-1.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-10.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-11.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-12.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-13.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-14.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-15.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-16.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-17.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-18.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-19.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-2.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-20.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-21.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-22.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-23.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-24.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-25.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-26.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-27.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-28.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-29.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-3.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-30.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-31.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-32.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-33.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-34.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-35.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-36.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-37.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-38.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-39.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-4.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-40.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-41.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-42.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-43.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-44.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-45.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-46.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-47.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-48.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-49.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-5.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-50.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-51.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-52.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-53.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-54.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-55.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-56.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-57.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-58.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-59.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-6.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-60.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-61.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-62.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-63.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-64.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-65.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-7.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-8.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-9.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-1.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-2.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-3.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-4.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-5.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-6.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-7.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-8.gif
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-1.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-10.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-11.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-12.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-13.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-14.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-15.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-2.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-3.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-4.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-5.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-6.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-7.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-8.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-9.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs_init-mod.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/running.html
-%%PORTDOCS%%%%DOCSDIR%%/r5rs/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/Installing_Libraries.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/Language_Interoperability.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/R6RS_Libraries.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/Running_Top-Level_Programs.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/Using_R6RS_with_DrRacket.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/conformance.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/index.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/libpaths.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/index.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-G-1.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-G-2.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-G-3.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-G-4.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-1.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-10.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-11.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-12.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-13.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-14.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-15.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-16.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-17.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-18.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-19.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-2.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-20.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-21.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-3.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-4.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-5.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-6.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-7.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-8.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-9.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-S.css
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-mod.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/index.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-1.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-10.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-11.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-12.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-13.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-14.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-15.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-16.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-17.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-18.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-19.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-2.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-20.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-21.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-22.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-23.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-24.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-25.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-26.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-27.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-28.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-3.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-4.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-5.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-6.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-7.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-8.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-9.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-1.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-10.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-11.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-12.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-13.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-14.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-15.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-2.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-3.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-4.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-5.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-6.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-7.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-8.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-9.gif
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-1.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-10.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-11.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-12.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-13.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-14.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-15.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-16.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-17.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-18.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-19.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-2.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-20.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-21.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-3.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-4.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-5.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-6.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-7.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-8.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-9.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-S.css
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs.html
-%%PORTDOCS%%%%DOCSDIR%%/r6rs/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/racket.css
-%%PORTDOCS%%%%DOCSDIR%%/racklog/Racklog_Module_Language.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/and-or.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/backtracking.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/racklog/cut.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/glossary.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/racklog/index.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/lv-manip.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/racklog/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/racklog/predicates.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/racket-w-logic.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/set-of.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/simple.html
-%%PORTDOCS%%%%DOCSDIR%%/racklog/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/racklog/unification.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/Acknowlegements.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/Release_Notes.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/Testing_Utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/api.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/index.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/internals.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/philosophy.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/quick-start.html
-%%PORTDOCS%%%%DOCSDIR%%/rackunit/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/raco/API_for_Raw_Compilation.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/_plt-archives.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/raco/c-mods.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/cc.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/collection-names.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/command.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/config-file.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/ctool.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/decompile.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/demod.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/dirs.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/docs.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/exe-dist.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/exe.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/expand.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/getinfo.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/raco/index.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/info_rkt.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/link.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/make.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/matching-platform.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/raco/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/raco/pkg.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/planet.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/plt.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/raco-setup-A.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/relative-paths.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/running.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/scribble.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/setup-info.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/setup-plt-plt.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/setup.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/raco/test.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/unpack.html
-%%PORTDOCS%%%%DOCSDIR%%/raco/xref.html
-%%PORTDOCS%%%%DOCSDIR%%/readline/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/readline/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/readline/index.html
-%%PORTDOCS%%%%DOCSDIR%%/readline/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/readline/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/readline/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/redex/The_Redex_Reference.html
-%%PORTDOCS%%%%DOCSDIR%%/redex/autobib.css
-%%PORTDOCS%%%%DOCSDIR%%/redex/benchmark.html
-%%PORTDOCS%%%%DOCSDIR%%/redex/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/redex/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/redex/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/redex/figure.css
-%%PORTDOCS%%%%DOCSDIR%%/redex/figure.js
-%%PORTDOCS%%%%DOCSDIR%%/redex/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/redex/index.html
-%%PORTDOCS%%%%DOCSDIR%%/redex/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/redex/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/redex/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/redex/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/redex/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/redex/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/redex/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/redex/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/redex/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/redex/tutorial.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Building_New_Contract_Combinators.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Byte_and_String_Input.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Byte_and_String_Output.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Command-Line_Parsing.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Delayed_Evaluation.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Exiting.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Expanding_Top-Level_Forms.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Filesystem.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Generating_A_Unit_from_Context.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Generators.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Interactive_Help.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Kernel_Forms_and_Functions.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Lazy_Data-structure_Contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Legacy_Contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Locations____variable-reference.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Macros.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Manipulating_Paths.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Module_Names_and_Loading.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/More_Path_Utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Namespaces.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Object_and_Class_Contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Printer_Extension.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Random_generation.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Reader_Extension.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Reading.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Sandboxed_Evaluation.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Single-Signature_Modules.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Structural_Matching.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Structure_Type_Property_Contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Surrogates.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Syntax_Quoting__quote-syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Transformer_Helpers.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Unit_Utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/Writing.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/__expression.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/__top-interaction.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/__top.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/all-sync.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/application.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/async-channel.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/attaching-contracts-to-values.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/begin.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/block.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/reference/booleans.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/boxes.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/breakhandler.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/bytestrings.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/case.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/channel.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/chaperones.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/characters.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/collects.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/compoundunits.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/concurrency.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/cont.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/contmarks.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/contract-utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/control.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/createclass.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/createinterface.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/creatingmorestructs.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/creatingunits.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/custodians.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/customport.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/data-structure-contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/data.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/debugging.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/define-sig-form.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/define-struct.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/define.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/dicts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/encodings.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/engine.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/envvars.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/ephemerons.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/eval-model.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/eval.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/exns.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/extflonums.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/extras.css
-%%PORTDOCS%%%%DOCSDIR%%/reference/fasl.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/file-ports.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/finger.png
-%%PORTDOCS%%%%DOCSDIR%%/reference/fixnums.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/flonums.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/for.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/function-contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/futures.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/garbagecollection.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/generic-numbers.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/hashtables.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/icons.css
-%%PORTDOCS%%%%DOCSDIR%%/reference/if.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/include.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/index.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/input-and-output.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/inspectors.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/interactive.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/invokingunits.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/ivaraccess.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/keywords.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/lambda.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/lazy-require.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/let.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/linecol.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/linkinference.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/load-lang.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/local.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/logging.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/magnify.png
-%%PORTDOCS%%%%DOCSDIR%%/reference/match.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/memory.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/mixins.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/model.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/modprotect.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/module.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/mpairs.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/mzlib_class.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/mzlib_unit.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/networking.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/notation.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/number-types.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/numbers.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/objcreation.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/objectequality.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/objectprinting.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/objectserialize.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/objectutils.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/os.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out10.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out11.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out12.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out13.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out14.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out15.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out16.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out2.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out3.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out4.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out5.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out6.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out7.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out8.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/out9.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/pairs.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/parameters.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/parametric-contracts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/pathutils.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/performance-hint.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/phantom-bytes.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/pipeports.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/places.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/plumbers.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/port-buffers.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/port-lib.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/port-ops.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/ports.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/portstructs.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/pretty-print.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/printing.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/procedures.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/quasiquote.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/quote.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/racket_contract_base.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/reader-procs.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/reader.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/readtables.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/regexp.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/require.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/running-sa.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/running.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/runtime.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/security.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/securityguards.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/semaphore.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/sequences.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/sequences_streams.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/serialization.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/set_.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/sets.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/shared.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/single-unit.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/special-comments.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/splicing.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/reference/stratified-body.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/streams.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/stringport.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/strings.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/struct-copy.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/struct-generics.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/structinfo.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/structprops.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/structures.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/structutils.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/stx-patterns.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/stxcerts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/stxcmp.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/stxops.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/stxparam.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/stxprops.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/stxtrans.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/subprocess.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/symbols.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/sync.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/syntax-model.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/syntax-util.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/tcp.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/thread-local-storage.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/threadcells.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/threadgroups.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/threads.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/time.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/trait.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/udp.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/undefined.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/unitcontracts.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/unixpaths.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/unsafe.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/values.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/vectors.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/void.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/wcm.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/weakbox.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/when_unless.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/willexecutor.html
-%%PORTDOCS%%%%DOCSDIR%%/reference/windowspaths.html
-%%PORTDOCS%%%%DOCSDIR%%/release/Draw_and_GUI_5_1.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_10.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_11.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_2.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_3.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_4.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_5.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_6.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_7.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_8.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_9.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/MrEd_100.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/MrEd_100_Framework.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/MzScheme_200.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/MzScheme_300.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/MzScheme_4.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/Racket_5.txt
-%%PORTDOCS%%%%DOCSDIR%%/release/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/release/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/release/index.html
-%%PORTDOCS%%%%DOCSDIR%%/release/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/release/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/release/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/root-info.css
-%%PORTDOCS%%%%DOCSDIR%%/root-info.js
-%%PORTDOCS%%%%DOCSDIR%%/scheme/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/scheme/compat-exe.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scheme/index.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/mred.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/nest.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scheme/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_async-channel.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_base.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_bool.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_class.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_cmdline.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_contract.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_control.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_date.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_dict.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_file.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_fixnum.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_flonum.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_foreign.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_function.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_future.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_generator.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_gui.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_gui_base.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_gui_dynamic.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_help.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_include.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_init.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_language-info.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_list.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_load.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_local.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_match.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_math.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_mpair.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_package.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_path.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_port.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_pretty.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_promise.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_provide-syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_provide-transform.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_provide.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_require-syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_require-transform.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_require.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_runtime-config.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_runtime-path.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_sandbox.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_serialize.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_set.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_shared.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_signature.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_splicing.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_string.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_struct-info.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_stxparam-exptime.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_stxparam.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_surrogate.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_system.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_tcp.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_trait.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_udp.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_unit-exptime.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_unit.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_unsafe_ops.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_vector.html
-%%PORTDOCS%%%%DOCSDIR%%/scheme/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scribble-common.js
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/html-html.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/html-resources.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/html-xml.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/html.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/index.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/shaded.css
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/text.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble-style.css
-%%PORTDOCS%%%%DOCSDIR%%/scribble.css
-%%PORTDOCS%%%%DOCSDIR%%/scribble/Bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/Book_Format.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/Compatibility_Libraries.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/JFP_Paper_Format.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/LNCS_Paper_Format.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/Miscellaneous.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/Racket_Manual_Format.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/Report_Format.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/SIGPLAN_Paper_Format.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/Version_History.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/base.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/blueboxes.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/scribble/bnf.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/builtin-css.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/builtin-latex.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/config-style.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/config.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/core.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/decode.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/demo-manual.scrbl
-%%PORTDOCS%%%%DOCSDIR%%/scribble/demo.scrbl
-%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-classes.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-forms.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-modules.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-signatures.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-strings.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/doclang.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/docreader.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/eval.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/extra-style.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/generic-prose.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/getting-started.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/how-to-doc.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scribble/inbox.css
-%%PORTDOCS%%%%DOCSDIR%%/scribble/index-entries.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/index.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/internals.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/latex-prefix.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/layers.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/lp.css
-%%PORTDOCS%%%%DOCSDIR%%/scribble/lp.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/manual-css.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/manual-images.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/manual-indexing.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/manual-render-style.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/manual.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scribble/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scribble/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/scribble/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/scribble/plt-manuals.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/reader-internals.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/reader.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/reference-style.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/renderer.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/running.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/scheme.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/scribble_manual_code.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/section-links.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/srcdoc.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scribble/tag.html
-%%PORTDOCS%%%%DOCSDIR%%/scribble/xref.html
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/autobib.html
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/bibtex.html
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/figure.html
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/footnotes.html
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/gui-eval.html
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/index.html
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/render-cond.html
-%%PORTDOCS%%%%DOCSDIR%%/scriblib/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/search/aces.png
-%%PORTDOCS%%%%DOCSDIR%%/search/blackjack.png
-%%PORTDOCS%%%%DOCSDIR%%/search/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/search/chat-noir.png
-%%PORTDOCS%%%%DOCSDIR%%/search/checkers.png
-%%PORTDOCS%%%%DOCSDIR%%/search/crazy8s.png
-%%PORTDOCS%%%%DOCSDIR%%/search/gcalc.png
-%%PORTDOCS%%%%DOCSDIR%%/search/ginrummy.png
-%%PORTDOCS%%%%DOCSDIR%%/search/gobblet.png
-%%PORTDOCS%%%%DOCSDIR%%/search/gofish.png
-%%PORTDOCS%%%%DOCSDIR%%/search/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/search/index.html
-%%PORTDOCS%%%%DOCSDIR%%/search/jewel.png
-%%PORTDOCS%%%%DOCSDIR%%/search/lights-out.png
-%%PORTDOCS%%%%DOCSDIR%%/search/memory.png
-%%PORTDOCS%%%%DOCSDIR%%/search/mines.png
-%%PORTDOCS%%%%DOCSDIR%%/search/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/search/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/search/paint-by-numbers.png
-%%PORTDOCS%%%%DOCSDIR%%/search/parcheesi.png
-%%PORTDOCS%%%%DOCSDIR%%/search/plt-index.js
-%%PORTDOCS%%%%DOCSDIR%%/search/pousse.png
-%%PORTDOCS%%%%DOCSDIR%%/search/same.png
-%%PORTDOCS%%%%DOCSDIR%%/search/search-context.html
-%%PORTDOCS%%%%DOCSDIR%%/search/search.js
-%%PORTDOCS%%%%DOCSDIR%%/search/slidey.png
-%%PORTDOCS%%%%DOCSDIR%%/search/spider.png
-%%PORTDOCS%%%%DOCSDIR%%/search/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/search/tally-maze.png
-%%PORTDOCS%%%%DOCSDIR%%/sgl/bitmaps.html
-%%PORTDOCS%%%%DOCSDIR%%/sgl/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/sgl/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/sgl/gl-vectors.html
-%%PORTDOCS%%%%DOCSDIR%%/sgl/gl.html
-%%PORTDOCS%%%%DOCSDIR%%/sgl/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/sgl/index.html
-%%PORTDOCS%%%%DOCSDIR%%/sgl/init.html
-%%PORTDOCS%%%%DOCSDIR%%/sgl/main.html
-%%PORTDOCS%%%%DOCSDIR%%/sgl/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/sgl/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/sgl/overview.html
-%%PORTDOCS%%%%DOCSDIR%%/sgl/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/index.html
-%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Configuration.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Constants_and_Layout_Variables.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Creating_Slide_Presentations.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Making_Slides.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Pict-Staging_Helper.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Primary_Slide_Functions.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Slide_Registration.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Slides_to_Picts.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Typesetting_Racket_Code_in_Slideshow.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/Viewer_Control.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/doc-bibliography.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/index.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/legacy.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/play.html
-%%PORTDOCS%%%%DOCSDIR%%/slideshow/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/srfi/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/srfi/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/srfi/index.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/srfi/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-1.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-11.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-13.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-14.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-16.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-17.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-19.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-2.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-23.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-25.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-26.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-27.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-28.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-29.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-30.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-31.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-34.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-35.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-38.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-39.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-4.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-40.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-41.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-42.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-43.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-45.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-48.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-5.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-54.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-57.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-59.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-6.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-60.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-61.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-62.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-63.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-64.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-66.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-67.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-69.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-7.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-71.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-74.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-78.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-8.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-86.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-87.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-9.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-98.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/index.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-1.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-11.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-13.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-14.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-16.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-17.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-19.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-2.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-23.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-25.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-26.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-27.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-28.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-29.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-30.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-31.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-34.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-35.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-38.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-39.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-4.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-40.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-41/srfi-41.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-41/streams1.jpg
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-41/streams2.jpg
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-42.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-43.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-45.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-48.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-5.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-54.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-57.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-59.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-6.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-60.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-61.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-62.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-63.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-64.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-66.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-1.png
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-2.png
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-3.png
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-4.png
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-5.png
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-6.png
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-7.png
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-8.png
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-S.css
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-69.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-7.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-71.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-74.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-78.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-8.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-86.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-87.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-9.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-98.html
-%%PORTDOCS%%%%DOCSDIR%%/srfi/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/stepper/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/stepper/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/stepper/index.html
-%%PORTDOCS%%%%DOCSDIR%%/stepper/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/stepper/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/stepper/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/string-constants/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/string-constants/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/string-constants/index.html
-%%PORTDOCS%%%%DOCSDIR%%/string-constants/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/string-constants/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/string-constants/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/style/Acknowledgment.html
-%%PORTDOCS%%%%DOCSDIR%%/style/Choosing_the_Right_Construct.html
-%%PORTDOCS%%%%DOCSDIR%%/style/Language_and_Performance.html
-%%PORTDOCS%%%%DOCSDIR%%/style/Textual_Matters.html
-%%PORTDOCS%%%%DOCSDIR%%/style/Todo_List__Call_for_Contributions.html
-%%PORTDOCS%%%%DOCSDIR%%/style/Units_of_Code.html
-%%PORTDOCS%%%%DOCSDIR%%/style/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/style/branch-and-commit.html
-%%PORTDOCS%%%%DOCSDIR%%/style/correct-maintain-speed.html
-%%PORTDOCS%%%%DOCSDIR%%/style/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/style/index.html
-%%PORTDOCS%%%%DOCSDIR%%/style/mut-rec-contracts.png
-%%PORTDOCS%%%%DOCSDIR%%/style/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/style/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/style/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/style/testing.html
-%%PORTDOCS%%%%DOCSDIR%%/swindle/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/swindle/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/swindle/index.html
-%%PORTDOCS%%%%DOCSDIR%%/swindle/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/swindle/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/swindle/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/syntax-color/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/syntax-color/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/syntax-color/index.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax-color/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/syntax-color/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/syntax-color/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Datum_Pattern_Matching.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Debugging_and_Inspection_Tools.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Defining_Simple_Macros.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Experimental.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Library_Syntax_Classes_and_Literal_Sets.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Literal_Sets_and_Conventions.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/More_Keyword_Arguments.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Optional_Keyword_Arguments.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Parsing_Syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Parsing_for_Bodies.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Phases_and_Reusable_Syntax_Classes.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Preserving_Source_Locations.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Source_Locations.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/Unsafe_for_Clause_Transforms.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/syntax/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/docprovide.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/exprc.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/syntax/index.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/module-helpers.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/syntax/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/syntax/reader-helpers.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse-examples.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse-intro.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse-patterns.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse-specifying.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/syntax-helpers.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/toplevel.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/transformer-helpers.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/trusted-xforms.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/uniform-meanings.html
-%%PORTDOCS%%%%DOCSDIR%%/syntax/varied-meanings.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdp2htdp.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpPlanet_Cute_Images.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpbatch-io.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdphtdp-port.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpimage-guide.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpimage.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpuniverse.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/arrow-gui.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/arrow.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/balls.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/convert.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/dir.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/docs.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/door-real.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/door-sim.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/draw.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/elevator.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/gamepad.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/graphing.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/guess-gui.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/guess.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/gui.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/hangman-play.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/hangman.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/htdp.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/image.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/index.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/io.css
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/lkup-gui.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/master-play.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/master.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/matrix.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/nuworld.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_10.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_100.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_101.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_102.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_103.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_104.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_105.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_106.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_107.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_108.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_109.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_11.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_110.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_111.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_112.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_113.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_114.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_115.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_116.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_117.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_118.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_119.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_12.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_120.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_121.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_122.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_123.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_124.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_125.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_126.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_127.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_128.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_129.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_13.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_130.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_131.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_132.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_133.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_134.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_135.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_136.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_137.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_138.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_139.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_14.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_140.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_141.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_142.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_143.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_144.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_145.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_146.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_147.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_148.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_149.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_15.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_15.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_150.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_151.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_152.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_153.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_154.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_155.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_156.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_157.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_158.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_159.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_16.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_16.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_160.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_161.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_162.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_163.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_164.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_165.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_166.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_167.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_168.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_169.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_17.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_17.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_170.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_171.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_172.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_173.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_174.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_175.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_176.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_177.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_178.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_179.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_18.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_18.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_180.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_181.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_182.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_183.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_184.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_185.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_186.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_187.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_188.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_189.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_19.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_19.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_2.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_20.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_20.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_21.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_21.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_22.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_22.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_23.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_23.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_24.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_24.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_25.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_25.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_26.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_26.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_27.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_27.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_28.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_28.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_29.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_29.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_3.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_30.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_30.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_31.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_31.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_32.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_32.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_33.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_33.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_34.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_34.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_35.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_35.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_36.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_36.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_37.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_37.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_38.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_38.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_39.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_39.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_4.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_40.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_40.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_41.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_41.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_42.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_42.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_43.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_43.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_44.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_44.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_45.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_45.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_46.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_46.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_47.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_47.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_48.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_48.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_49.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_49.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_5.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_50.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_50.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_51.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_51.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_52.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_52.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_53.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_53.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_54.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_54.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_55.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_55.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_56.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_56.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_57.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_57.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_58.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_58.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_59.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_59.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_6.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_60.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_60.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_61.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_62.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_63.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_64.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_65.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_66.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_67.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_68.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_69.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_7.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_70.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_71.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_72.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_73.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_74.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_75.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_76.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_77.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_78.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_79.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_8.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_80.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_81.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_82.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_83.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_84.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_85.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_86.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_87.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_88.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_89.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_9.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_90.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_91.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_92.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_93.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_94.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_95.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_96.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_97.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_98.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_99.svg
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/server.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/show-queen.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/triangle-xxx.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/universe.png
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/world.html
-%%PORTDOCS%%%%DOCSDIR%%/teachpack/world.png
-%%PORTDOCS%%%%DOCSDIR%%/test-engine/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/test-engine/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/test-engine/index.html
-%%PORTDOCS%%%%DOCSDIR%%/test-engine/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/test-engine/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/test-engine/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/tool/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/tool/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/tool/index.html
-%%PORTDOCS%%%%DOCSDIR%%/tool/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/tool/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/tool/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/tools/Backwards_Compatibility.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/Check_Syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/Cooperating_with_Background_Check_Syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/Creating_New_Kinds_of_DrRacket_Frames.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/Editor_Modes.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/Expanding_and_Breaking.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/Extending_the_Existing_DrRacket_Classes.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/Language-Specific_Capabilities.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/Signatures.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/Teaching_Languages.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/adding-languages.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/tools/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_debug.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_eval.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_frame.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_get_extend.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_help-desk.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_language-configuration.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_language.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_modes.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_module-language-tools.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_module-language.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_rep.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_unit.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/implementing-tools.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/tools/index.html
-%%PORTDOCS%%%%DOCSDIR%%/tools/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/tools/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/tools/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/trace/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/trace/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/trace/index.html
-%%PORTDOCS%%%%DOCSDIR%%/trace/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/trace/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/trace/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/beginning.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/caveats.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/index.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/more.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/occurrence-typing.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/optimization.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/quick.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/typed-untyped-interaction.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-guide/types.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Compatibility_Languages.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Experimental_Features.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Exploring_Types.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Legacy_Forms.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Libraries_Provided_With_Typed_Racket.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Optimization_in_Typed_Racket.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Typed_Classes.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Typed_Racket_Syntax_Without_Type_Checking.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Typed_Regions.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/footnote.css
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/index.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/special-forms.html
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/ts-reference/type-ref.html
-%%PORTDOCS%%%%DOCSDIR%%/turtles/Traditional_Turtles.html
-%%PORTDOCS%%%%DOCSDIR%%/turtles/Value_Turtles.html
-%%PORTDOCS%%%%DOCSDIR%%/turtles/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/turtles/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/turtles/index.html
-%%PORTDOCS%%%%DOCSDIR%%/turtles/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/turtles/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/turtles/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-find/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/unstable-find/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-find/index.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-find/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-find/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-find/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/index.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/Scribble_Utilities.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/Slideshow_Presentations.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/gui-notify.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/gui-prefs.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/index.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_15.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_16.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_17.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_18.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_19.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_20.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_21.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_22.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_23.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_24.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_25.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_26.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_27.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_28.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_29.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_30.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_31.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_32.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_33.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_34.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_35.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_36.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_37.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_38.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_39.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_40.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_41.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_42.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_43.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_44.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_45.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_46.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_47.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_48.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_49.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_50.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_51.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_52.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_53.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_54.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/ppict.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/snip.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/index.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_10.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_11.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_12.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_13.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_14.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_2.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_3.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_4.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_5.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_6.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_7.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_8.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_9.png
-%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable/2d.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/Automata__Compiling_State_Machines.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/Debugging.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/Definitions.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/Functions.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/Hash_Tables.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/Logging.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/Mark_Parameters.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/Parameter_Groups.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/Pretty-Printing.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/unstable/bytes.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/class-iop.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/contract.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/custom-write.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/error.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/future.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/guidelines.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable/index.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/lazy-require.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/list.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/macro-testing.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/match.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/open-place.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/options.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable/recontract.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/sandbox.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/sequence.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/unstable/string.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/struct.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/syntax.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/temp-c.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/unix-socket.html
-%%PORTDOCS%%%%DOCSDIR%%/unstable/wrapc.html
-%%PORTDOCS%%%%DOCSDIR%%/version/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/version/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/version/index.html
-%%PORTDOCS%%%%DOCSDIR%%/version/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/version/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/version/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/Troubleshooting_and_Tips.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/Web_Servers.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/cache-table.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/closure.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/connection-manager.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-files.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-filter.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-host.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-lift.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-log.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-passwords.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-pathprocedure.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-sequencer.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-server-unit.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-servlets.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-stat.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-timeout.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatchers.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/filesystem-map.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/gzip.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/index.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/limit.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/mime-types.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/misc-util.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/mod-map.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/private.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/timer.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/url-param.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/web-server.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/web-server/dispatch.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/faq.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/formlets.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/http.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/web-server/index.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/web-server/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/web-server/page.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/run.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/servlet.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/web-server/stateless.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/templates.html
-%%PORTDOCS%%%%DOCSDIR%%/web-server/test.html
-%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/index.html
-%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/xml/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/xml/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/xml/index.html
-%%PORTDOCS%%%%DOCSDIR%%/xml/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/xml/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/xml/stamp.sxref
-%%PORTDOCS%%%%DOCSDIR%%/xrepl/blueboxes.rktd
-%%PORTDOCS%%%%DOCSDIR%%/xrepl/in.sxref
-%%PORTDOCS%%%%DOCSDIR%%/xrepl/index.html
-%%PORTDOCS%%%%DOCSDIR%%/xrepl/out0.sxref
-%%PORTDOCS%%%%DOCSDIR%%/xrepl/out1.sxref
-%%PORTDOCS%%%%DOCSDIR%%/xrepl/stamp.sxref
%%DATADIR%%/COPYING-libscheme.txt
%%DATADIR%%/COPYING.txt
%%DATADIR%%/COPYING_LESSER.txt
@@ -3600,6 +95,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/collects/compiler/private/compiled/collects-path_rkt.zo
%%DATADIR%%/collects/compiler/private/compiled/configdir_rkt.dep
%%DATADIR%%/collects/compiler/private/compiled/configdir_rkt.zo
+%%DATADIR%%/collects/compiler/private/compiled/dep_rkt.dep
+%%DATADIR%%/collects/compiler/private/compiled/dep_rkt.zo
%%DATADIR%%/collects/compiler/private/compiled/elf_rkt.dep
%%DATADIR%%/collects/compiler/private/compiled/elf_rkt.zo
%%DATADIR%%/collects/compiler/private/compiled/embed_rkt.dep
@@ -3617,6 +114,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/collects/compiler/private/compiled/xform_rkt.dep
%%DATADIR%%/collects/compiler/private/compiled/xform_rkt.zo
%%DATADIR%%/collects/compiler/private/configdir.rkt
+%%DATADIR%%/collects/compiler/private/dep.rkt
%%DATADIR%%/collects/compiler/private/elf.rkt
%%DATADIR%%/collects/compiler/private/embed.rkt
%%DATADIR%%/collects/compiler/private/macfw.rkt
@@ -3794,6 +292,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/collects/net/base64.rkt
%%DATADIR%%/collects/net/compiled/base64_rkt.dep
%%DATADIR%%/collects/net/compiled/base64_rkt.zo
+%%DATADIR%%/collects/net/compiled/git-checkout_rkt.dep
+%%DATADIR%%/collects/net/compiled/git-checkout_rkt.zo
%%DATADIR%%/collects/net/compiled/head_rkt.dep
%%DATADIR%%/collects/net/compiled/head_rkt.zo
%%DATADIR%%/collects/net/compiled/http-client_rkt.dep
@@ -3808,6 +308,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/collects/net/compiled/url_rkt.zo
%%DATADIR%%/collects/net/compiled/win32-ssl_rkt.dep
%%DATADIR%%/collects/net/compiled/win32-ssl_rkt.zo
+%%DATADIR%%/collects/net/git-checkout.rkt
%%DATADIR%%/collects/net/head.rkt
%%DATADIR%%/collects/net/http-client.rkt
%%DATADIR%%/collects/net/uri-codec.rkt
@@ -3852,6 +353,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/collects/pkg/compiled/commands_rkt.zo
%%DATADIR%%/collects/pkg/compiled/db_rkt.dep
%%DATADIR%%/collects/pkg/compiled/db_rkt.zo
+%%DATADIR%%/collects/pkg/compiled/dirs-catalog_rkt.dep
+%%DATADIR%%/collects/pkg/compiled/dirs-catalog_rkt.zo
%%DATADIR%%/collects/pkg/compiled/info_rkt.dep
%%DATADIR%%/collects/pkg/compiled/info_rkt.zo
%%DATADIR%%/collects/pkg/compiled/lib_rkt.dep
@@ -3866,17 +369,123 @@ share/applications/slideshow.desktop
%%DATADIR%%/collects/pkg/compiled/raco_rkt.zo
%%DATADIR%%/collects/pkg/compiled/strip_rkt.dep
%%DATADIR%%/collects/pkg/compiled/strip_rkt.zo
-%%DATADIR%%/collects/pkg/compiled/util_rkt.dep
-%%DATADIR%%/collects/pkg/compiled/util_rkt.zo
%%DATADIR%%/collects/pkg/db.rkt
+%%DATADIR%%/collects/pkg/dirs-catalog.rkt
%%DATADIR%%/collects/pkg/info.rkt
%%DATADIR%%/collects/pkg/lib.rkt
%%DATADIR%%/collects/pkg/main.rkt
%%DATADIR%%/collects/pkg/name.rkt
%%DATADIR%%/collects/pkg/path.rkt
+%%DATADIR%%/collects/pkg/private/addl-installs.rkt
+%%DATADIR%%/collects/pkg/private/archive.rkt
+%%DATADIR%%/collects/pkg/private/catalog-archive.rkt
+%%DATADIR%%/collects/pkg/private/catalog-copy.rkt
+%%DATADIR%%/collects/pkg/private/catalog-show.rkt
+%%DATADIR%%/collects/pkg/private/catalog-update.rkt
+%%DATADIR%%/collects/pkg/private/catalog.rkt
+%%DATADIR%%/collects/pkg/private/clone-path.rkt
+%%DATADIR%%/collects/pkg/private/collects.rkt
+%%DATADIR%%/collects/pkg/private/compiled/addl-installs_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/addl-installs_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/archive_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/archive_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog-archive_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog-archive_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog-copy_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog-copy_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog-show_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog-show_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog-update_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog-update_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/catalog_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/catalog_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/clone-path_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/clone-path_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/collects_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/collects_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/config_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/config_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/content_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/content_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/create_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/create_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/dep_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/dep_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/desc_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/desc_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/dirs_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/dirs_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/download_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/download_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/get-info_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/get-info_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/git_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/git_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/info-to-desc_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/info-to-desc_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/install_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/install_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/lock_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/lock_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/metadata_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/metadata_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/migrate_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/migrate_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/mod-paths_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/mod-paths_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/new_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/new_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/orig-pkg_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/orig-pkg_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/params_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/params_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/path_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/path_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/pkg-db_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/pkg-db_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/print_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/print_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/remove_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/remove_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/repo-path_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/repo-path_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/show_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/show_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/stage_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/stage_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/suggestions_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/suggestions_rkt.zo
+%%DATADIR%%/collects/pkg/private/compiled/trash_rkt.dep
+%%DATADIR%%/collects/pkg/private/compiled/trash_rkt.zo
+%%DATADIR%%/collects/pkg/private/config.rkt
+%%DATADIR%%/collects/pkg/private/content.rkt
+%%DATADIR%%/collects/pkg/private/create.rkt
+%%DATADIR%%/collects/pkg/private/dep.rkt
+%%DATADIR%%/collects/pkg/private/desc.rkt
+%%DATADIR%%/collects/pkg/private/dirs.rkt
+%%DATADIR%%/collects/pkg/private/download.rkt
+%%DATADIR%%/collects/pkg/private/get-info.rkt
+%%DATADIR%%/collects/pkg/private/git.rkt
+%%DATADIR%%/collects/pkg/private/info-to-desc.rkt
+%%DATADIR%%/collects/pkg/private/install.rkt
+%%DATADIR%%/collects/pkg/private/lock.rkt
+%%DATADIR%%/collects/pkg/private/metadata.rkt
+%%DATADIR%%/collects/pkg/private/migrate.rkt
+%%DATADIR%%/collects/pkg/private/mod-paths.rkt
+%%DATADIR%%/collects/pkg/private/new.rkt
+%%DATADIR%%/collects/pkg/private/orig-pkg.rkt
+%%DATADIR%%/collects/pkg/private/params.rkt
+%%DATADIR%%/collects/pkg/private/path.rkt
+%%DATADIR%%/collects/pkg/private/pkg-db.rkt
+%%DATADIR%%/collects/pkg/private/print.rkt
+%%DATADIR%%/collects/pkg/private/remove.rkt
+%%DATADIR%%/collects/pkg/private/repo-path.rkt
+%%DATADIR%%/collects/pkg/private/show.rkt
+%%DATADIR%%/collects/pkg/private/stage.rkt
+%%DATADIR%%/collects/pkg/private/suggestions.rkt
+%%DATADIR%%/collects/pkg/private/trash.rkt
%%DATADIR%%/collects/pkg/raco.rkt
%%DATADIR%%/collects/pkg/strip.rkt
-%%DATADIR%%/collects/pkg/util.rkt
%%DATADIR%%/collects/planet/cachepath.rkt
%%DATADIR%%/collects/planet/compiled/cachepath_rkt.dep
%%DATADIR%%/collects/planet/compiled/cachepath_rkt.zo
@@ -4732,6 +1341,10 @@ share/applications/slideshow.desktop
%%DATADIR%%/collects/setup/private/compiled/command-name_rkt.zo
%%DATADIR%%/collects/setup/private/compiled/dylib_rkt.dep
%%DATADIR%%/collects/setup/private/compiled/dylib_rkt.zo
+%%DATADIR%%/collects/setup/private/compiled/elf_rkt.dep
+%%DATADIR%%/collects/setup/private/compiled/elf_rkt.zo
+%%DATADIR%%/collects/setup/private/compiled/format-error_rkt.dep
+%%DATADIR%%/collects/setup/private/compiled/format-error_rkt.zo
%%DATADIR%%/collects/setup/private/compiled/lib-roots_rkt.dep
%%DATADIR%%/collects/setup/private/compiled/lib-roots_rkt.zo
%%DATADIR%%/collects/setup/private/compiled/omitted-paths_rkt.dep
@@ -4739,6 +1352,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/collects/setup/private/compiled/pkg-deps_rkt.dep
%%DATADIR%%/collects/setup/private/compiled/pkg-deps_rkt.zo
%%DATADIR%%/collects/setup/private/dylib.rkt
+%%DATADIR%%/collects/setup/private/elf.rkt
+%%DATADIR%%/collects/setup/private/format-error.rkt
%%DATADIR%%/collects/setup/private/lib-roots.rkt
%%DATADIR%%/collects/setup/private/omitted-paths.rkt
%%DATADIR%%/collects/setup/private/pkg-deps.rkt
@@ -4871,6 +1486,9 @@ share/applications/slideshow.desktop
%%DATADIR%%/collects/syntax/parse/experimental/specialize.rkt
%%DATADIR%%/collects/syntax/parse/experimental/splicing.rkt
%%DATADIR%%/collects/syntax/parse/experimental/template.rkt
+%%DATADIR%%/collects/syntax/parse/lib/compiled/function-header_rkt.dep
+%%DATADIR%%/collects/syntax/parse/lib/compiled/function-header_rkt.zo
+%%DATADIR%%/collects/syntax/parse/lib/function-header.rkt
%%DATADIR%%/collects/syntax/parse/pre.rkt
%%DATADIR%%/collects/syntax/parse/private/3d-stx.rkt
%%DATADIR%%/collects/syntax/parse/private/compiled/3d-stx_rkt.dep
@@ -5105,14 +1723,23 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/algol60/prims.rkt
%%DATADIR%%/pkgs/algol60/runtime.rkt
%%DATADIR%%/pkgs/algol60/simplify.rkt
+%%DATADIR%%/pkgs/algol60/tests/compiled/syncheck-test_rkt.dep
+%%DATADIR%%/pkgs/algol60/tests/compiled/syncheck-test_rkt.zo
%%DATADIR%%/pkgs/algol60/tests/compiled/test_rkt.dep
%%DATADIR%%/pkgs/algol60/tests/compiled/test_rkt.zo
+%%DATADIR%%/pkgs/algol60/tests/syncheck-test.rkt
%%DATADIR%%/pkgs/algol60/tests/test.rkt
%%DATADIR%%/pkgs/algol60/tool.rkt
%%DATADIR%%/pkgs/at-exp-lib/LICENSE.txt
+%%DATADIR%%/pkgs/at-exp-lib/at-exp/lang/compiled/language-info_rkt.dep
+%%DATADIR%%/pkgs/at-exp-lib/at-exp/lang/compiled/language-info_rkt.zo
%%DATADIR%%/pkgs/at-exp-lib/at-exp/lang/compiled/reader_rkt.dep
%%DATADIR%%/pkgs/at-exp-lib/at-exp/lang/compiled/reader_rkt.zo
+%%DATADIR%%/pkgs/at-exp-lib/at-exp/lang/compiled/runtime-config_rkt.dep
+%%DATADIR%%/pkgs/at-exp-lib/at-exp/lang/compiled/runtime-config_rkt.zo
+%%DATADIR%%/pkgs/at-exp-lib/at-exp/lang/language-info.rkt
%%DATADIR%%/pkgs/at-exp-lib/at-exp/lang/reader.rkt
+%%DATADIR%%/pkgs/at-exp-lib/at-exp/lang/runtime-config.rkt
%%DATADIR%%/pkgs/at-exp-lib/info.rkt
%%DATADIR%%/pkgs/at-exp-lib/scribble/base/compiled/reader_rkt.dep
%%DATADIR%%/pkgs/at-exp-lib/scribble/base/compiled/reader_rkt.zo
@@ -5131,51 +1758,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/cext-lib/compiler/compiled/xform_rkt.dep
%%DATADIR%%/pkgs/cext-lib/compiler/compiled/xform_rkt.zo
%%DATADIR%%/pkgs/cext-lib/compiler/xform.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/compile-sig.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/compile-unit.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/compile.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/compile-sig_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/compile-sig_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/compile-unit_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/compile-unit_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/compile_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/compile_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/dynext-sig_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/dynext-sig_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/dynext-unit_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/dynext-unit_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/dynext_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/dynext_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/file-sig_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/file-sig_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/file-unit_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/file-unit_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/link-sig_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/link-sig_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/link-unit_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/link-unit_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/link_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/link_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/main_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/compiled/main_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/dynext-sig.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/dynext-unit.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/dynext.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/file-sig.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/file-unit.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/link-sig.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/link-unit.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/link.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/main.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/private/cmdargs.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/private/compiled/cmdargs_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/private/compiled/cmdargs_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/private/compiled/dirs_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/private/compiled/dirs_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/private/compiled/stdio_rkt.dep
-%%DATADIR%%/pkgs/cext-lib/dynext/private/compiled/stdio_rkt.zo
-%%DATADIR%%/pkgs/cext-lib/dynext/private/dirs.rkt
-%%DATADIR%%/pkgs/cext-lib/dynext/private/stdio.rkt
%%DATADIR%%/pkgs/cext-lib/info.rkt
%%DATADIR%%/pkgs/compatibility-doc/LICENSE.txt
%%DATADIR%%/pkgs/compatibility-doc/info.rkt
@@ -5685,12 +2267,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/compiler-lib/compiler/compiled/option-unit_rkt.zo
%%DATADIR%%/pkgs/compiler-lib/compiler/compiled/sig_rkt.dep
%%DATADIR%%/pkgs/compiler-lib/compiler/compiled/sig_rkt.zo
-%%DATADIR%%/pkgs/compiler-lib/compiler/compiled/zo-marshal_rkt.dep
-%%DATADIR%%/pkgs/compiler-lib/compiler/compiled/zo-marshal_rkt.zo
-%%DATADIR%%/pkgs/compiler-lib/compiler/compiled/zo-parse_rkt.dep
-%%DATADIR%%/pkgs/compiler-lib/compiler/compiled/zo-parse_rkt.zo
-%%DATADIR%%/pkgs/compiler-lib/compiler/compiled/zo-structs_rkt.dep
-%%DATADIR%%/pkgs/compiler-lib/compiler/compiled/zo-structs_rkt.zo
%%DATADIR%%/pkgs/compiler-lib/compiler/compiler-unit.rkt
%%DATADIR%%/pkgs/compiler-lib/compiler/decompile.rkt
%%DATADIR%%/pkgs/compiler-lib/compiler/demodularizer/alpha.rkt
@@ -5733,9 +2309,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/compiler-lib/compiler/embed-unit.rkt
%%DATADIR%%/pkgs/compiler-lib/compiler/option-unit.rkt
%%DATADIR%%/pkgs/compiler-lib/compiler/sig.rkt
-%%DATADIR%%/pkgs/compiler-lib/compiler/zo-marshal.rkt
-%%DATADIR%%/pkgs/compiler-lib/compiler/zo-parse.rkt
-%%DATADIR%%/pkgs/compiler-lib/compiler/zo-structs.rkt
%%DATADIR%%/pkgs/compiler-lib/info.rkt
%%DATADIR%%/pkgs/compiler-lib/launcher/compiled/launcher-sig_rkt.dep
%%DATADIR%%/pkgs/compiler-lib/launcher/compiled/launcher-sig_rkt.zo
@@ -5788,6 +2361,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/bit-vector_scrbl.zo
%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/data_scrbl.dep
%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/data_scrbl.zo
+%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/enumerate_scrbl.dep
+%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/enumerate_scrbl.zo
%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/gvector_scrbl.dep
%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/gvector_scrbl.zo
%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/heap_scrbl.dep
@@ -5807,6 +2382,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/union-find_scrbl.dep
%%DATADIR%%/pkgs/data-doc/data/scribblings/compiled/union-find_scrbl.zo
%%DATADIR%%/pkgs/data-doc/data/scribblings/data.scrbl
+%%DATADIR%%/pkgs/data-doc/data/scribblings/enumerate.scrbl
%%DATADIR%%/pkgs/data-doc/data/scribblings/gvector.scrbl
%%DATADIR%%/pkgs/data-doc/data/scribblings/heap.scrbl
%%DATADIR%%/pkgs/data-doc/data/scribblings/integer-set.scrbl
@@ -5817,6 +2393,29 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/data-doc/data/scribblings/splay-tree.scrbl
%%DATADIR%%/pkgs/data-doc/data/scribblings/union-find.scrbl
%%DATADIR%%/pkgs/data-doc/info.rkt
+%%DATADIR%%/pkgs/data-enumerate-lib/LICENSE.txt
+%%DATADIR%%/pkgs/data-enumerate-lib/data/compiled/enumerate_rkt.dep
+%%DATADIR%%/pkgs/data-enumerate-lib/data/compiled/enumerate_rkt.zo
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate.rkt
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/compat.rkt
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/compiled/compat_rkt.dep
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/compiled/compat_rkt.zo
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/compiled/lib_rkt.dep
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/compiled/lib_rkt.zo
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/compiled/unsafe_rkt.dep
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/compiled/unsafe_rkt.zo
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/lib.rkt
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/lib/compiled/unsafe_rkt.dep
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/lib/compiled/unsafe_rkt.zo
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/lib/unsafe.rkt
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/private/compiled/core_rkt.dep
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/private/compiled/core_rkt.zo
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/private/compiled/more_rkt.dep
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/private/compiled/more_rkt.zo
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/private/core.rkt
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/private/more.rkt
+%%DATADIR%%/pkgs/data-enumerate-lib/data/enumerate/unsafe.rkt
+%%DATADIR%%/pkgs/data-enumerate-lib/info.rkt
%%DATADIR%%/pkgs/data-lib/LICENSE.txt
%%DATADIR%%/pkgs/data-lib/data/compiled/gvector_rkt.dep
%%DATADIR%%/pkgs/data-lib/data/compiled/gvector_rkt.zo
@@ -6680,10 +3279,16 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/check-syntax.rkt
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/check-syntax_rkt.dep
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/check-syntax_rkt.zo
+%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/find-module-path-completions_rkt.dep
+%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/find-module-path-completions_rkt.zo
+%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/get-module-path_rkt.dep
+%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/get-module-path_rkt.zo
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/info_rkt.dep
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/info_rkt.zo
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/module-browser_rkt.dep
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/compiled/module-browser_rkt.zo
+%%DATADIR%%/pkgs/drracket-tool-lib/drracket/find-module-path-completions.rkt
+%%DATADIR%%/pkgs/drracket-tool-lib/drracket/get-module-path.rkt
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/info.rkt
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/module-browser.rkt
%%DATADIR%%/pkgs/drracket-tool-lib/drracket/private/compiled/raco-module-browser_rkt.dep
@@ -6820,7 +3425,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/drracket/private/app.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/auto-language.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/bindings-browser.rkt
-%%DATADIR%%/pkgs/drracket/drracket/private/bitmap-message.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/colored-errors.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/ada_rkt.dep
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/ada_rkt.zo
@@ -6830,8 +3434,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/auto-language_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/bindings-browser_rkt.dep
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/bindings-browser_rkt.zo
-%%DATADIR%%/pkgs/drracket/drracket/private/compiled/bitmap-message_rkt.dep
-%%DATADIR%%/pkgs/drracket/drracket/private/compiled/bitmap-message_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/colored-errors_rkt.dep
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/colored-errors_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/debug_rkt.dep
@@ -6854,8 +3456,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/eval_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/expanding-place_rkt.dep
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/expanding-place_rkt.zo
-%%DATADIR%%/pkgs/drracket/drracket/private/compiled/find-completions_rkt.dep
-%%DATADIR%%/pkgs/drracket/drracket/private/compiled/find-completions_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/font_rkt.dep
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/font_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/frame-icon_rkt.dep
@@ -6866,8 +3466,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/get-defs_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/get-extend_rkt.dep
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/get-extend_rkt.zo
-%%DATADIR%%/pkgs/drracket/drracket/private/compiled/get-module-path_rkt.dep
-%%DATADIR%%/pkgs/drracket/drracket/private/compiled/get-module-path_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/help-desk_rkt.dep
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/help-desk_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/honu-logo_rkt.dep
@@ -6900,6 +3498,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/local-member-names_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/main_rkt.dep
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/main_rkt.zo
+%%DATADIR%%/pkgs/drracket/drracket/private/compiled/mkheart_rkt.dep
+%%DATADIR%%/pkgs/drracket/drracket/private/compiled/mkheart_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/modes_rkt.dep
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/modes_rkt.zo
%%DATADIR%%/pkgs/drracket/drracket/private/compiled/module-browser_rkt.dep
@@ -6960,13 +3560,11 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/drracket/private/eval-helpers-and-pref-init.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/eval.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/expanding-place.rkt
-%%DATADIR%%/pkgs/drracket/drracket/private/find-completions.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/font.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/frame-icon.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/frame.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/get-defs.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/get-extend.rkt
-%%DATADIR%%/pkgs/drracket/drracket/private/get-module-path.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/help-desk.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/honu-logo.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/init.rkt
@@ -6983,6 +3581,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/drracket/private/link.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/local-member-names.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/main.rkt
+%%DATADIR%%/pkgs/drracket/drracket/private/mkheart.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/modes.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/module-browser.rkt
%%DATADIR%%/pkgs/drracket/drracket/private/module-language-tools.rkt
@@ -7134,6 +3733,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/files_scrbl.zo
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/incremental-keybindings_rkt.dep
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/incremental-keybindings_rkt.zo
+%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/indentation-table_rkt.dep
+%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/indentation-table_rkt.zo
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/info_rkt.dep
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/info_rkt.zo
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/interface-essentials_scrbl.dep
@@ -7144,6 +3745,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/keybindings_scrbl.zo
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/languages_scrbl.dep
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/languages_scrbl.zo
+%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/make-indentation-table_rkt.dep
+%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/make-indentation-table_rkt.zo
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/menus_scrbl.dep
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/menus_scrbl.zo
%%DATADIR%%/pkgs/drracket/scribblings/drracket/compiled/prefs_scrbl.dep
@@ -7157,12 +3760,14 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/drracket/scribblings/drracket/extending.scrbl
%%DATADIR%%/pkgs/drracket/scribblings/drracket/files.scrbl
%%DATADIR%%/pkgs/drracket/scribblings/drracket/incremental-keybindings.rkt
+%%DATADIR%%/pkgs/drracket/scribblings/drracket/indentation-table.rkt
%%DATADIR%%/pkgs/drracket/scribblings/drracket/info.rkt
%%DATADIR%%/pkgs/drracket/scribblings/drracket/interface-essentials.scrbl
%%DATADIR%%/pkgs/drracket/scribblings/drracket/interface-ref.scrbl
%%DATADIR%%/pkgs/drracket/scribblings/drracket/io.png
%%DATADIR%%/pkgs/drracket/scribblings/drracket/keybindings.scrbl
%%DATADIR%%/pkgs/drracket/scribblings/drracket/languages.scrbl
+%%DATADIR%%/pkgs/drracket/scribblings/drracket/make-indentation-table.rkt
%%DATADIR%%/pkgs/drracket/scribblings/drracket/menus.scrbl
%%DATADIR%%/pkgs/drracket/scribblings/drracket/prefs.scrbl
%%DATADIR%%/pkgs/drracket/scribblings/drracket/printing.scrbl
@@ -7265,6 +3870,52 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/ds-store/compiled/info_rkt.dep
%%DATADIR%%/pkgs/ds-store/compiled/info_rkt.zo
%%DATADIR%%/pkgs/ds-store/info.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/compile-sig.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/compile-unit.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/compile.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/compile-sig_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/compile-sig_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/compile-unit_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/compile-unit_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/compile_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/compile_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/dynext-sig_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/dynext-sig_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/dynext-unit_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/dynext-unit_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/dynext_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/dynext_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/file-sig_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/file-sig_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/file-unit_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/file-unit_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/link-sig_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/link-sig_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/link-unit_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/link-unit_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/link_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/link_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/main_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/compiled/main_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/dynext-sig.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/dynext-unit.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/dynext.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/file-sig.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/file-unit.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/link-sig.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/link-unit.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/link.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/main.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/private/cmdargs.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/private/compiled/cmdargs_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/private/compiled/cmdargs_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/private/compiled/dirs_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/private/compiled/dirs_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/private/compiled/stdio_rkt.dep
+%%DATADIR%%/pkgs/dynext-lib/dynext/private/compiled/stdio_rkt.zo
+%%DATADIR%%/pkgs/dynext-lib/dynext/private/dirs.rkt
+%%DATADIR%%/pkgs/dynext-lib/dynext/private/stdio.rkt
+%%DATADIR%%/pkgs/dynext-lib/info.rkt
%%DATADIR%%/pkgs/eli-tester/LICENSE.txt
%%DATADIR%%/pkgs/eli-tester/info.rkt
%%DATADIR%%/pkgs/eli-tester/tests/compiled/eli-tester_rkt.dep
@@ -7823,6 +4474,9 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/eopl/tests/private/compiled/utils_rkt.dep
%%DATADIR%%/pkgs/eopl/tests/private/compiled/utils_rkt.zo
%%DATADIR%%/pkgs/eopl/tests/private/utils.rkt
+%%DATADIR%%/pkgs/eopl/tests/sllgen/compiled/sllgenTests_rkt.dep
+%%DATADIR%%/pkgs/eopl/tests/sllgen/compiled/sllgenTests_rkt.zo
+%%DATADIR%%/pkgs/eopl/tests/sllgen/sllgenTests.rkt
%%DATADIR%%/pkgs/errortrace-doc/LICENSE.txt
%%DATADIR%%/pkgs/errortrace-doc/errortrace/scribblings/compiled/errortrace_scrbl.dep
%%DATADIR%%/pkgs/errortrace-doc/errortrace/scribblings/compiled/errortrace_scrbl.zo
@@ -8916,9 +5570,12 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/games/slidey/11.jpg
%%DATADIR%%/pkgs/games/slidey/compiled/info_rkt.dep
%%DATADIR%%/pkgs/games/slidey/compiled/info_rkt.zo
+%%DATADIR%%/pkgs/games/slidey/compiled/slidey-main_rkt.dep
+%%DATADIR%%/pkgs/games/slidey/compiled/slidey-main_rkt.zo
%%DATADIR%%/pkgs/games/slidey/compiled/slidey_rkt.dep
%%DATADIR%%/pkgs/games/slidey/compiled/slidey_rkt.zo
%%DATADIR%%/pkgs/games/slidey/info.rkt
+%%DATADIR%%/pkgs/games/slidey/slidey-main.rkt
%%DATADIR%%/pkgs/games/slidey/slidey.png
%%DATADIR%%/pkgs/games/slidey/slidey.rkt
%%DATADIR%%/pkgs/games/spider/compiled/info_rkt.dep
@@ -8930,14 +5587,11 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/games/spider/spider.rkt
%%DATADIR%%/pkgs/games/tally-maze/compiled/game_rkt.dep
%%DATADIR%%/pkgs/games/tally-maze/compiled/game_rkt.zo
-%%DATADIR%%/pkgs/games/tally-maze/compiled/godel_rkt.dep
-%%DATADIR%%/pkgs/games/tally-maze/compiled/godel_rkt.zo
%%DATADIR%%/pkgs/games/tally-maze/compiled/info_rkt.dep
%%DATADIR%%/pkgs/games/tally-maze/compiled/info_rkt.zo
%%DATADIR%%/pkgs/games/tally-maze/compiled/maze_rkt.dep
%%DATADIR%%/pkgs/games/tally-maze/compiled/maze_rkt.zo
%%DATADIR%%/pkgs/games/tally-maze/game.rkt
-%%DATADIR%%/pkgs/games/tally-maze/godel.rkt
%%DATADIR%%/pkgs/games/tally-maze/images/pumpkin/pumpkin-48x48.png
%%DATADIR%%/pkgs/games/tally-maze/images/pumpkin/pumpkin-64x64.png
%%DATADIR%%/pkgs/games/tally-maze/images/very-emotional/01.png
@@ -9432,6 +6086,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/compiled/snip-class_scrbl.zo
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/compiled/snip-classes_scrbl.dep
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/compiled/snip-classes_scrbl.zo
+%%DATADIR%%/pkgs/gui-doc/scribblings/gui/compiled/snip-example_scrbl.dep
+%%DATADIR%%/pkgs/gui-doc/scribblings/gui/compiled/snip-example_scrbl.zo
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/compiled/startup_scrbl.dep
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/compiled/startup_scrbl.zo
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/compiled/string-snip-class_scrbl.dep
@@ -9565,6 +6221,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/snip-class-list-intf.scrbl
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/snip-class.scrbl
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/snip-classes.scrbl
+%%DATADIR%%/pkgs/gui-doc/scribblings/gui/snip-example.scrbl
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/startup.scrbl
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/string-snip-class.scrbl
%%DATADIR%%/pkgs/gui-doc/scribblings/gui/style-delta-class.scrbl
@@ -9776,6 +6433,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/finder_rkt.zo
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/focus-table_rkt.dep
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/focus-table_rkt.zo
+%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/follow-log_rkt.dep
+%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/follow-log_rkt.zo
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/frame_rkt.dep
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/frame_rkt.zo
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/gen-standard-menus_rkt.dep
@@ -9786,6 +6445,10 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/handler_rkt.zo
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/icon_rkt.dep
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/icon_rkt.zo
+%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/interfaces_rkt.dep
+%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/interfaces_rkt.zo
+%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/keymap-global_rkt.dep
+%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/keymap-global_rkt.zo
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/keymap_rkt.dep
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/keymap_rkt.zo
%%DATADIR%%/pkgs/gui-lib/framework/private/compiled/logging-timer_rkt.dep
@@ -9831,11 +6494,14 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/gui-lib/framework/private/exit.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/finder.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/focus-table.rkt
+%%DATADIR%%/pkgs/gui-lib/framework/private/follow-log.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/frame.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/gen-standard-menus.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/group.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/handler.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/icon.rkt
+%%DATADIR%%/pkgs/gui-lib/framework/private/interfaces.rkt
+%%DATADIR%%/pkgs/gui-lib/framework/private/keymap-global.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/keymap.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/logging-timer.rkt
%%DATADIR%%/pkgs/gui-lib/framework/private/main.rkt
@@ -10070,6 +6736,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/compiled/init_rkt.zo
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/compiled/item_rkt.dep
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/compiled/item_rkt.zo
+%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/compiled/key-translate_rkt.dep
+%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/compiled/key-translate_rkt.zo
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/compiled/keycode_rkt.dep
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/compiled/keycode_rkt.zo
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/compiled/list-box_rkt.dep
@@ -10122,6 +6790,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/image.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/init.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/item.rkt
+%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/key-translate.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/keycode.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/list-box.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/cocoa/menu-bar.rkt
@@ -10166,6 +6835,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/compiled/freeze_rkt.zo
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/compiled/handlers_rkt.dep
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/compiled/handlers_rkt.zo
+%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/compiled/keep-forever_rkt.dep
+%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/compiled/keep-forever_rkt.zo
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/compiled/local_rkt.dep
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/compiled/local_rkt.zo
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/compiled/once_rkt.dep
@@ -10188,6 +6859,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/event.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/freeze.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/handlers.rkt
+%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/keep-forever.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/local.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/once.rkt
%%DATADIR%%/pkgs/gui-lib/mred/private/wx/common/procs.rkt
@@ -10829,9 +7501,12 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/PlanetCuteShadow2b.png
%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/PlanetCuteShadow3.png
%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/PlanetCuteShadowMockup.jpg
+%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/abstraction.scrbl
%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/batch-io.scrbl
%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/compiled/2htdp_scrbl.dep
%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/compiled/2htdp_scrbl.zo
+%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/compiled/abstraction_scrbl.dep
+%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/compiled/abstraction_scrbl.zo
%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/compiled/batch-io_scrbl.dep
%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/compiled/batch-io_scrbl.zo
%%DATADIR%%/pkgs/htdp-doc/teachpack/2htdp/scribblings/compiled/image-guide_scrbl.dep
@@ -10961,7 +7636,10 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/htdp-doc/test-engine/info.rkt
%%DATADIR%%/pkgs/htdp-doc/test-engine/test-engine.scrbl
%%DATADIR%%/pkgs/htdp-lib/2htdp/TESTME.txt
+%%DATADIR%%/pkgs/htdp-lib/2htdp/abstraction.rkt
%%DATADIR%%/pkgs/htdp-lib/2htdp/batch-io.rkt
+%%DATADIR%%/pkgs/htdp-lib/2htdp/compiled/abstraction_rkt.dep
+%%DATADIR%%/pkgs/htdp-lib/2htdp/compiled/abstraction_rkt.zo
%%DATADIR%%/pkgs/htdp-lib/2htdp/compiled/batch-io_rkt.dep
%%DATADIR%%/pkgs/htdp-lib/2htdp/compiled/batch-io_rkt.zo
%%DATADIR%%/pkgs/htdp-lib/2htdp/compiled/image_rkt.dep
@@ -11663,7 +8341,10 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/htdp-lib/stepper/stepper+xml-tool.rkt
%%DATADIR%%/pkgs/htdp-lib/stepper/stepper-tool.rkt
%%DATADIR%%/pkgs/htdp-lib/stepper/xml-tool.rkt
+%%DATADIR%%/pkgs/htdp-lib/teachpack/2htdp/abstraction.rkt
%%DATADIR%%/pkgs/htdp-lib/teachpack/2htdp/batch-io.rkt
+%%DATADIR%%/pkgs/htdp-lib/teachpack/2htdp/compiled/abstraction_rkt.dep
+%%DATADIR%%/pkgs/htdp-lib/teachpack/2htdp/compiled/abstraction_rkt.zo
%%DATADIR%%/pkgs/htdp-lib/teachpack/2htdp/compiled/batch-io_rkt.dep
%%DATADIR%%/pkgs/htdp-lib/teachpack/2htdp/compiled/batch-io_rkt.zo
%%DATADIR%%/pkgs/htdp-lib/teachpack/2htdp/compiled/image_rkt.dep
@@ -13184,6 +9865,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/dns_scrbl.zo
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/ftp_scrbl.dep
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/ftp_scrbl.zo
+%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/git-checkout_scrbl.dep
+%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/git-checkout_scrbl.zo
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/head_scrbl.dep
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/head_scrbl.zo
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/http-client_scrbl.dep
@@ -13214,17 +9897,18 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/tcp-redirect_scrbl.zo
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/tcp_scrbl.dep
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/tcp_scrbl.zo
+%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/unihead_scrbl.dep
+%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/unihead_scrbl.zo
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/uri-codec_scrbl.dep
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/uri-codec_scrbl.zo
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/url_scrbl.dep
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/url_scrbl.zo
-%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/websocket_scrbl.dep
-%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/websocket_scrbl.zo
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/win32-ssl_scrbl.dep
%%DATADIR%%/pkgs/net-doc/net/scribblings/compiled/win32-ssl_scrbl.zo
%%DATADIR%%/pkgs/net-doc/net/scribblings/cookie.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/dns.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/ftp.scrbl
+%%DATADIR%%/pkgs/net-doc/net/scribblings/git-checkout.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/head.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/http-client.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/imap.scrbl
@@ -13240,9 +9924,9 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/net-doc/net/scribblings/ssl-tcp-unit.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/tcp-redirect.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/tcp.scrbl
+%%DATADIR%%/pkgs/net-doc/net/scribblings/unihead.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/uri-codec.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/url.scrbl
-%%DATADIR%%/pkgs/net-doc/net/scribblings/websocket.scrbl
%%DATADIR%%/pkgs/net-doc/net/scribblings/win32-ssl.scrbl
%%DATADIR%%/pkgs/net-lib/LICENSE.txt
%%DATADIR%%/pkgs/net-lib/info.rkt
@@ -13308,6 +9992,57 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/net-lib/net/unihead.rkt
%%DATADIR%%/pkgs/net/LICENSE.txt
%%DATADIR%%/pkgs/net/info.rkt
+%%DATADIR%%/pkgs/optimization-coach/LICENSE.txt
+%%DATADIR%%/pkgs/optimization-coach/README.md
+%%DATADIR%%/pkgs/optimization-coach/info.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/causality-merging.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/causality-merging_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/causality-merging_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/display_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/display_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/hidden-costs_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/hidden-costs_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/info_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/info_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/inlining_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/inlining_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/instrumentation_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/instrumentation_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/locality-merging_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/locality-merging_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/main_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/main_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/profiling_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/profiling_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/report_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/report_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/sandbox_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/sandbox_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/structs_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/structs_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/tool_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/tool_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/typed-racket_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/typed-racket_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/utils_rkt.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/compiled/utils_rkt.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/display.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/hidden-costs.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/info.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/inlining.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/instrumentation.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/locality-merging.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/main.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/profiling.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/report.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/sandbox.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/scribblings/compiled/optimization-coach_scrbl.dep
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/scribblings/compiled/optimization-coach_scrbl.zo
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/scribblings/optimization-coach.scrbl
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/structs.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/tool.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/typed-racket.rkt
+%%DATADIR%%/pkgs/optimization-coach/optimization-coach/utils.rkt
%%DATADIR%%/pkgs/parser-tools-doc/LICENSE.txt
%%DATADIR%%/pkgs/parser-tools-doc/info.rkt
%%DATADIR%%/pkgs/parser-tools-doc/parser-tools/compiled/info_rkt.dep
@@ -13681,6 +10416,9 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plai/scribblings/plai.scrbl
%%DATADIR%%/pkgs/plai/scribblings/rkt-exports.rkt
%%DATADIR%%/pkgs/plai/test-harness.rkt
+%%DATADIR%%/pkgs/plai/tests/check-syntax.rkt
+%%DATADIR%%/pkgs/plai/tests/compiled/check-syntax_rkt.dep
+%%DATADIR%%/pkgs/plai/tests/compiled/check-syntax_rkt.zo
%%DATADIR%%/pkgs/plai/tests/compiled/datatype-coverage_rkt.dep
%%DATADIR%%/pkgs/plai/tests/compiled/datatype-coverage_rkt.zo
%%DATADIR%%/pkgs/plai/tests/compiled/datatype-exports_rkt.dep
@@ -14038,9 +10776,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-doc/plot/compiled/info_rkt.dep
%%DATADIR%%/pkgs/plot-doc/plot/compiled/info_rkt.zo
%%DATADIR%%/pkgs/plot-doc/plot/info.rkt
-%%DATADIR%%/pkgs/plot-doc/plot/private/compiled/doc_rkt.dep
-%%DATADIR%%/pkgs/plot-doc/plot/private/compiled/doc_rkt.zo
-%%DATADIR%%/pkgs/plot-doc/plot/private/doc.rkt
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/common.rkt
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/compat.scrbl
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/compiled/common_rkt.dep
@@ -14067,10 +10802,11 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/compiled/renderer3d_scrbl.zo
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/compiled/ticks_scrbl.dep
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/compiled/ticks_scrbl.zo
+%%DATADIR%%/pkgs/plot-doc/plot/scribblings/compiled/typed-compat_scrbl.dep
+%%DATADIR%%/pkgs/plot-doc/plot/scribblings/compiled/typed-compat_scrbl.zo
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/compiled/utils_scrbl.dep
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/compiled/utils_scrbl.zo
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/contracts.scrbl
-%%DATADIR%%/pkgs/plot-doc/plot/scribblings/custom.scrbl
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/intro.scrbl
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/nonrenderer.scrbl
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/params.scrbl
@@ -14080,7 +10816,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/renderer2d.scrbl
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/renderer3d.scrbl
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/ticks.scrbl
-%%DATADIR%%/pkgs/plot-doc/plot/scribblings/ticks.scrbl.orig
+%%DATADIR%%/pkgs/plot-doc/plot/scribblings/typed-compat.scrbl
%%DATADIR%%/pkgs/plot-doc/plot/scribblings/utils.scrbl
%%DATADIR%%/pkgs/plot-gui-lib/LICENSE.txt
%%DATADIR%%/pkgs/plot-gui-lib/info.rkt
@@ -14094,6 +10830,12 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-gui-lib/plot/main.rkt
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/gui_rkt.dep
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/gui_rkt.zo
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/lazy-snip-typed_rkt.dep
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/lazy-snip-typed_rkt.zo
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/lazy-snip-types_rkt.dep
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/lazy-snip-types_rkt.zo
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/lazy-snip-untyped_rkt.dep
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/lazy-snip-untyped_rkt.zo
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/plot2d_rkt.dep
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/plot2d_rkt.zo
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/plot3d_rkt.dep
@@ -14104,22 +10846,19 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/snip3d_rkt.zo
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/snip_rkt.dep
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/snip_rkt.zo
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/worker-thread_rkt.dep
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/compiled/worker-thread_rkt.zo
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/gui.rkt
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/lazy-snip-typed.rkt
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/lazy-snip-types.rkt
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/lazy-snip-untyped.rkt
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/plot2d.rkt
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/plot3d.rkt
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/snip.rkt
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/snip2d.rkt
%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/snip3d.rkt
+%%DATADIR%%/pkgs/plot-gui-lib/plot/private/gui/worker-thread.rkt
%%DATADIR%%/pkgs/plot-gui-lib/plot/typed.rkt
-%%DATADIR%%/pkgs/plot-gui-lib/plot/typed/compiled/main_rkt.dep
-%%DATADIR%%/pkgs/plot-gui-lib/plot/typed/compiled/main_rkt.zo
-%%DATADIR%%/pkgs/plot-gui-lib/plot/typed/main.rkt
-%%DATADIR%%/pkgs/plot-gui-lib/plot/typed/private/gui/compiled/plot2d_rkt.dep
-%%DATADIR%%/pkgs/plot-gui-lib/plot/typed/private/gui/compiled/plot2d_rkt.zo
-%%DATADIR%%/pkgs/plot-gui-lib/plot/typed/private/gui/compiled/plot3d_rkt.dep
-%%DATADIR%%/pkgs/plot-gui-lib/plot/typed/private/gui/compiled/plot3d_rkt.zo
-%%DATADIR%%/pkgs/plot-gui-lib/plot/typed/private/gui/plot2d.rkt
-%%DATADIR%%/pkgs/plot-gui-lib/plot/typed/private/gui/plot3d.rkt
%%DATADIR%%/pkgs/plot-lib/LICENSE.txt
%%DATADIR%%/pkgs/plot-lib/info.rkt
%%DATADIR%%/pkgs/plot-lib/plot/bitmap.rkt
@@ -14147,6 +10886,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/date-time_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/deprecation-warning_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/deprecation-warning_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/draw-attribs_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/draw-attribs_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/draw_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/draw_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/file-type_rkt.dep
@@ -14155,6 +10896,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/format_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/kde_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/kde_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/leftover-contracts_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/leftover-contracts_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/legend_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/legend_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/marching-cubes_rkt.dep
@@ -14167,6 +10910,10 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/math_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/nonrenderer_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/nonrenderer_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/parameter-group_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/parameter-group_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/parameter-groups_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/parameter-groups_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/parameters_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/parameters_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/plot-device_rkt.dep
@@ -14179,68 +10926,47 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/samplers_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/ticks_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/ticks_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/type-doc_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/type-doc_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/typed-srfi19_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/typed-srfi19_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/types_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/types_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/untyped-utils_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/untyped-utils_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/utils_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/utils_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/worker-thread_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/common/compiled/worker-thread_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/common/contract.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/currency.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/date-time.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/deprecation-warning.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/draw-attribs.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/draw.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/file-type.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/format.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/kde.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/leftover-contracts.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/legend.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/marching-cubes.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/marching-squares.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/marching-utils.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/math.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/nonrenderer.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/parameter-group.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/parameter-groups.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/parameters.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/plot-device.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/plot-element.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/sample.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/samplers.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/ticks.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/type-doc.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/typed-srfi19.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/types.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/common/untyped-utils.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/common/utils.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/common/worker-thread.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/axis-transform.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/axis-transform_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/axis-transform_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/date-time_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/date-time_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/draw_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/draw_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/format_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/format_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/kde_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/kde_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/legend_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/legend_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/math_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/math_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/parameters_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/parameters_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/plot-element_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/plot-element_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/sample_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/sample_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/samplers_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/samplers_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/ticks_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/compiled/ticks_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/date-time.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/draw.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/format.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/kde.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/legend.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/math.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/parameters.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/plot-element.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/sample.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/samplers.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/private/contracted/ticks.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/compiled/utils-and-no-gui_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/compiled/utils-and-no-gui_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/deprecated/compiled/deprecated_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/deprecated/compiled/deprecated_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/deprecated/compiled/math_rkt.dep
@@ -14250,24 +10976,48 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/private/deprecated/deprecated.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/deprecated/math.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/deprecated/renderers.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/evil-types_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/evil-types_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/evil_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/evil_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot-bitmap_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot-bitmap_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot-pict_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot-pict_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot2d-evil-box_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot2d-evil-box_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot2d-untyped_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot2d-untyped_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot2d-utils_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot2d-utils_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot2d_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot2d_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot3d-evil-box_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot3d-evil-box_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot3d-untyped_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot3d-untyped_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot3d-utils_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot3d-utils_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot3d_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/plot3d_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/untyped-utils_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/untyped-utils_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/utils_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/compiled/utils_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/evil-types.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/evil.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot-bitmap.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot-pict.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot2d-evil-box.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot2d-untyped.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot2d-utils.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot2d.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot3d-evil-box.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot3d-untyped.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot3d-utils.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/plot3d.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/untyped-utils.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/no-gui/utils.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/clip.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/compiled/clip_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/compiled/clip_rkt.zo
@@ -14285,6 +11035,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/compiled/point_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/compiled/rectangle_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/compiled/rectangle_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/compiled/renderer_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/compiled/renderer_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/compiled/vector_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/compiled/vector_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/contour.rkt
@@ -14294,6 +11046,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/plot-area.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/point.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/rectangle.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/renderer.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot2d/vector.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/bsp-trees.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/bsp.rkt
@@ -14318,6 +11071,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/compiled/point_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/compiled/rectangle_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/compiled/rectangle_rkt.zo
+%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/compiled/renderer_rkt.dep
+%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/compiled/renderer_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/compiled/split_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/compiled/split_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/compiled/surface_rkt.dep
@@ -14331,9 +11086,11 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/plot-area.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/point.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/rectangle.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/renderer.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/split.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/surface.rkt
%%DATADIR%%/pkgs/plot-lib/plot/private/plot3d/vector.rkt
+%%DATADIR%%/pkgs/plot-lib/plot/private/utils-and-no-gui.rkt
%%DATADIR%%/pkgs/plot-lib/plot/typed/bitmap.rkt
%%DATADIR%%/pkgs/plot-lib/plot/typed/compiled/bitmap_rkt.dep
%%DATADIR%%/pkgs/plot-lib/plot/typed/compiled/bitmap_rkt.zo
@@ -14345,93 +11102,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/plot-lib/plot/typed/compiled/utils_rkt.zo
%%DATADIR%%/pkgs/plot-lib/plot/typed/no-gui.rkt
%%DATADIR%%/pkgs/plot-lib/plot/typed/pict.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/common/compiled/nonrenderers_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/common/compiled/nonrenderers_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/common/compiled/types_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/common/compiled/types_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/common/nonrenderers.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/common/types.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/compiled/syntax_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/compiled/syntax_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/axis-transform.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/axis-transform_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/axis-transform_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/date-time_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/date-time_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/draw_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/draw_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/format_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/format_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/kde_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/kde_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/math_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/math_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/parameters_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/parameters_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/sample_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/sample_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/ticks_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/compiled/ticks_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/date-time.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/draw.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/format.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/kde.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/math.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/parameters.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/sample.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/contracted/ticks.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/compiled/plot-bitmap_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/compiled/plot-bitmap_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/compiled/plot-pict_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/compiled/plot-pict_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/compiled/plot2d_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/compiled/plot2d_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/compiled/plot3d_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/compiled/plot3d_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/plot-bitmap.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/plot-pict.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/plot2d.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/no-gui/plot3d.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/contour_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/contour_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/decoration_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/decoration_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/interval_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/interval_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/line_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/line_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/point_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/point_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/rectangle_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/compiled/rectangle_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/contour.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/decoration.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/interval.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/line.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/point.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot2d/rectangle.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/contour_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/contour_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/decoration_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/decoration_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/isosurface_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/isosurface_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/line_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/line_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/point_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/point_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/rectangle_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/rectangle_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/surface_rkt.dep
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/compiled/surface_rkt.zo
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/contour.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/decoration.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/isosurface.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/line.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/point.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/rectangle.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/plot3d/surface.rkt
-%%DATADIR%%/pkgs/plot-lib/plot/typed/private/syntax.rkt
%%DATADIR%%/pkgs/plot-lib/plot/typed/utils.rkt
%%DATADIR%%/pkgs/plot-lib/plot/utils.rkt
%%DATADIR%%/pkgs/plot/info.rkt
@@ -15075,8 +11745,12 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/common_rkt.zo
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/db_scrbl.dep
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/db_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/dirs-catalog_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/dirs-catalog_scrbl.zo
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/getting-started_scrbl.dep
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/getting-started_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/git-workflow_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/git-workflow_scrbl.zo
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/implementation_scrbl.dep
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/implementation_scrbl.zo
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/lib_scrbl.dep
@@ -15090,7 +11764,9 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/strip_scrbl.dep
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/compiled/strip_scrbl.zo
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/db.scrbl
+%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/dirs-catalog.scrbl
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/getting-started.scrbl
+%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/git-workflow.scrbl
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/implementation.scrbl
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/lib.scrbl
%%DATADIR%%/pkgs/racket-doc/pkg/scribblings/name.scrbl
@@ -15235,24 +11911,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/concurrency_scrbl.zo
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/cond_scrbl.dep
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/cond_scrbl.zo
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-examples_scrbl.dep
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-examples_scrbl.zo
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-exists_scrbl.dep
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-exists_scrbl.zo
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-first-extended-example_scrbl.dep
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-first-extended-example_scrbl.zo
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-general-function_scrbl.dep
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-general-function_scrbl.zo
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-gotchas_scrbl.dep
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-gotchas_scrbl.zo
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-intro_scrbl.dep
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-intro_scrbl.zo
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-simple-function_scrbl.dep
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-simple-function_scrbl.zo
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-structure_scrbl.dep
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-structure_scrbl.zo
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-utils_rkt.dep
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts-utils_rkt.zo
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts_scrbl.dep
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/contracts_scrbl.zo
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/control_scrbl.dep
@@ -15401,32 +12059,85 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/compiled/welcome_scrbl.zo
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/concurrency.scrbl
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/cond.scrbl
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples.scrbl
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/1-test.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/1.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/1b.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/2-test.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/2.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/3-test.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/3.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/5-test.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/5.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/ho-version1.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/ho-version2.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/ho-version2a.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/ho-version3.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/ho-version3a.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/ho-version3b.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-examples/ho-version4.rkt
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-exists.scrbl
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-first-extended-example.scrbl
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-general-function.scrbl
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-gotchas.scrbl
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-intro.scrbl
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-simple-function.scrbl
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-structure.scrbl
-%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts-utils.rkt
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/examples_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/examples_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/exists_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/exists_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/first-extended-example_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/first-extended-example_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/general-function_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/general-function_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/gotchas_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/gotchas_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/intro_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/intro_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/new-combinators_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/new-combinators_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/simple-function_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/simple-function_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/structure_scrbl.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/structure_scrbl.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/utils_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/compiled/utils_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/1-test.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/1.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/1b.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/2-test.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/2.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/3-test.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/3.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/5-test.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/5.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/1-test_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/1-test_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/1_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/1_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/1b_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/1b_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/2-test_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/2-test_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/2_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/2_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/3-test_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/3-test_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/3_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/3_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/5-test_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/5-test_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/5_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/5_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version1_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version1_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version2_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version2_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version2a_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version2a_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version3_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version3_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version3a_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version3a_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version3b_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version3b_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version4_rkt.dep
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/compiled/ho-version4_rkt.zo
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/ho-version1.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/ho-version2.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/ho-version2a.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/ho-version3.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/ho-version3a.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/ho-version3b.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/examples/ho-version4.rkt
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/exists.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/first-extended-example.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/general-function.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/gotchas.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/intro.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/new-combinators.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/simple-function.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/structure.scrbl
+%%DATADIR%%/pkgs/racket-doc/scribblings/guide/contracts/utils.rkt
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/control.scrbl
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/data.scrbl
%%DATADIR%%/pkgs/racket-doc/scribblings/guide/death-list-5.rkt
@@ -16438,10 +13149,13 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/racket-index/scribblings/main/user/release.scrbl
%%DATADIR%%/pkgs/racket-index/scribblings/main/user/search.scrbl
%%DATADIR%%/pkgs/racket-index/scribblings/main/user/start.scrbl
+%%DATADIR%%/pkgs/racket-index/setup/compiled/materialize-user-docs_rkt.dep
+%%DATADIR%%/pkgs/racket-index/setup/compiled/materialize-user-docs_rkt.zo
%%DATADIR%%/pkgs/racket-index/setup/compiled/scribble_rkt.dep
%%DATADIR%%/pkgs/racket-index/setup/compiled/scribble_rkt.zo
%%DATADIR%%/pkgs/racket-index/setup/compiled/xref_rkt.dep
%%DATADIR%%/pkgs/racket-index/setup/compiled/xref_rkt.zo
+%%DATADIR%%/pkgs/racket-index/setup/materialize-user-docs.rkt
%%DATADIR%%/pkgs/racket-index/setup/private/compiled/doc-path_rkt.dep
%%DATADIR%%/pkgs/racket-index/setup/private/compiled/doc-path_rkt.zo
%%DATADIR%%/pkgs/racket-index/setup/private/doc-path.rkt
@@ -17186,6 +13900,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/redex-examples/redex/examples/compiled/contracts_rkt.zo
%%DATADIR%%/pkgs/redex-examples/redex/examples/compiled/info_rkt.dep
%%DATADIR%%/pkgs/redex-examples/redex/examples/compiled/info_rkt.zo
+%%DATADIR%%/pkgs/redex-examples/redex/examples/compiled/lazy_rkt.dep
+%%DATADIR%%/pkgs/redex-examples/redex/examples/compiled/lazy_rkt.zo
%%DATADIR%%/pkgs/redex-examples/redex/examples/compiled/let-poly_rkt.dep
%%DATADIR%%/pkgs/redex-examples/redex/examples/compiled/let-poly_rkt.zo
%%DATADIR%%/pkgs/redex-examples/redex/examples/compiled/letrec_rkt.dep
@@ -17288,6 +14004,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/redex-examples/redex/examples/delim-cont/reduce.rkt
%%DATADIR%%/pkgs/redex-examples/redex/examples/delim-cont/test.rkt
%%DATADIR%%/pkgs/redex-examples/redex/examples/info.rkt
+%%DATADIR%%/pkgs/redex-examples/redex/examples/lazy.rkt
%%DATADIR%%/pkgs/redex-examples/redex/examples/let-poly.rkt
%%DATADIR%%/pkgs/redex-examples/redex/examples/letrec.rkt
%%DATADIR%%/pkgs/redex-examples/redex/examples/list-machine/README.txt
@@ -17407,10 +14124,10 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/redex-lib/redex/compiled/tut-subst_rkt.dep
%%DATADIR%%/pkgs/redex-lib/redex/compiled/tut-subst_rkt.zo
%%DATADIR%%/pkgs/redex-lib/redex/info.rkt
-%%DATADIR%%/pkgs/redex-lib/redex/private/2set.rkt
+%%DATADIR%%/pkgs/redex-lib/redex/private/ambiguous.rkt
%%DATADIR%%/pkgs/redex-lib/redex/private/build-nt-property.rkt
-%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/2set_rkt.dep
-%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/2set_rkt.zo
+%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/ambiguous_rkt.dep
+%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/ambiguous_rkt.zo
%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/build-nt-property_rkt.dep
%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/build-nt-property_rkt.zo
%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/cycle-check_rkt.dep
@@ -17419,8 +14136,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/defined-checks_rkt.zo
%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/enum_rkt.dep
%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/enum_rkt.zo
-%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/enumerator_rkt.dep
-%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/enumerator_rkt.zo
%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/env_rkt.dep
%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/env_rkt.zo
%%DATADIR%%/pkgs/redex-lib/redex/private/compiled/error_rkt.dep
@@ -17484,7 +14199,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/redex-lib/redex/private/cycle-check.rkt
%%DATADIR%%/pkgs/redex-lib/redex/private/defined-checks.rkt
%%DATADIR%%/pkgs/redex-lib/redex/private/enum.rkt
-%%DATADIR%%/pkgs/redex-lib/redex/private/enumerator.rkt
%%DATADIR%%/pkgs/redex-lib/redex/private/env.rkt
%%DATADIR%%/pkgs/redex-lib/redex/private/error.rkt
%%DATADIR%%/pkgs/redex-lib/redex/private/extract-conditions.rkt
@@ -18079,6 +14793,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/scribble-lib/scribble/compiled/latex-render_rkt.zo
%%DATADIR%%/pkgs/scribble-lib/scribble/compiled/lp-include_rkt.dep
%%DATADIR%%/pkgs/scribble-lib/scribble/compiled/lp-include_rkt.zo
+%%DATADIR%%/pkgs/scribble-lib/scribble/compiled/lp2_rkt.dep
+%%DATADIR%%/pkgs/scribble-lib/scribble/compiled/lp2_rkt.zo
%%DATADIR%%/pkgs/scribble-lib/scribble/compiled/lp_rkt.dep
%%DATADIR%%/pkgs/scribble-lib/scribble/compiled/lp_rkt.zo
%%DATADIR%%/pkgs/scribble-lib/scribble/compiled/manual-struct_rkt.dep
@@ -18158,12 +14874,19 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/scribble-lib/scribble/lncs/style.tex
%%DATADIR%%/pkgs/scribble-lib/scribble/lp-include.rkt
%%DATADIR%%/pkgs/scribble-lib/scribble/lp.rkt
+%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/common.rkt
+%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/compiled/common_rkt.dep
+%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/compiled/common_rkt.zo
+%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/compiled/lang2_rkt.dep
+%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/compiled/lang2_rkt.zo
%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/compiled/lang_rkt.dep
%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/compiled/lang_rkt.zo
%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/compiled/reader_rkt.dep
%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/compiled/reader_rkt.zo
%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/lang.rkt
+%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/lang2.rkt
%%DATADIR%%/pkgs/scribble-lib/scribble/lp/lang/reader.rkt
+%%DATADIR%%/pkgs/scribble-lib/scribble/lp2.rkt
%%DATADIR%%/pkgs/scribble-lib/scribble/manual-fonts.css
%%DATADIR%%/pkgs/scribble-lib/scribble/manual-prefix.tex
%%DATADIR%%/pkgs/scribble-lib/scribble/manual-racket.css
@@ -19044,6 +15767,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/srfi-lib/srfi/42/compiled/generators_scm.zo
%%DATADIR%%/pkgs/srfi-lib/srfi/42/compiled/loops_scm.dep
%%DATADIR%%/pkgs/srfi-lib/srfi/42/compiled/loops_scm.zo
+%%DATADIR%%/pkgs/srfi-lib/srfi/42/compiled/mzscheme2_rkt.dep
+%%DATADIR%%/pkgs/srfi-lib/srfi/42/compiled/mzscheme2_rkt.zo
%%DATADIR%%/pkgs/srfi-lib/srfi/42/compiled/simplifier_scm.dep
%%DATADIR%%/pkgs/srfi-lib/srfi/42/compiled/simplifier_scm.zo
%%DATADIR%%/pkgs/srfi-lib/srfi/42/comprehension-struct.scm
@@ -19057,6 +15782,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/srfi-lib/srfi/42/generator-struct.scm
%%DATADIR%%/pkgs/srfi-lib/srfi/42/generators.scm
%%DATADIR%%/pkgs/srfi-lib/srfi/42/loops.scm
+%%DATADIR%%/pkgs/srfi-lib/srfi/42/mzscheme2.rkt
%%DATADIR%%/pkgs/srfi-lib/srfi/42/simplifier.scm
%%DATADIR%%/pkgs/srfi-lib/srfi/42ref.rkt
%%DATADIR%%/pkgs/srfi-lib/srfi/42ref/compiled/comprehensions_rkt.dep
@@ -19590,6 +16316,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/trace/compiled/main_rkt.zo
%%DATADIR%%/pkgs/trace/compiled/stacktrace_rkt.dep
%%DATADIR%%/pkgs/trace/compiled/stacktrace_rkt.zo
+%%DATADIR%%/pkgs/trace/compiled/tests_rkt.dep
+%%DATADIR%%/pkgs/trace/compiled/tests_rkt.zo
%%DATADIR%%/pkgs/trace/info.rkt
%%DATADIR%%/pkgs/trace/main.rkt
%%DATADIR%%/pkgs/trace/scribblings/compiled/info_rkt.dep
@@ -19600,6 +16328,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/trace/scribblings/trace.scrbl
%%DATADIR%%/pkgs/trace/stacktrace.rkt
%%DATADIR%%/pkgs/trace/test-cases-proposed.txt
+%%DATADIR%%/pkgs/trace/tests.rkt
%%DATADIR%%/pkgs/typed-racket-compatibility/LICENSE.txt
%%DATADIR%%/pkgs/typed-racket-compatibility/info.rkt
%%DATADIR%%/pkgs/typed-racket-compatibility/typed-scheme/compiled/main_rkt.dep
@@ -19725,6 +16454,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/LICENSE.txt
%%DATADIR%%/pkgs/typed-racket-lib/info.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/HISTORY.txt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/ann-inst.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/annotate-classes.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/base-contracted.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/base-env-indexing-abs.rkt
@@ -19736,8 +16466,11 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/base-types-extra.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/base-types.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/case-lambda.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/class-clauses.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/class-prims.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/colon.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/ann-inst_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/ann-inst_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/annotate-classes_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/annotate-classes_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/base-contracted_rkt.dep
@@ -19760,6 +16493,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/base-types_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/case-lambda_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/case-lambda_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/class-clauses_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/class-clauses_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/class-prims_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/class-prims_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/colon_rkt.dep
@@ -19772,6 +16507,10 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/extra-procs_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/for-clauses_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/for-clauses_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/prims-contract_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/prims-contract_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/prims-struct_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/prims-struct_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/prims_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/prims_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/compiled/top-interaction_rkt.dep
@@ -19782,6 +16521,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/extra-env-lang.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/extra-procs.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/for-clauses.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/prims-contract.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/prims-struct.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/prims.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/top-interaction.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/base-env/type-env-lang.rkt
@@ -19993,6 +16734,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/compiled/function_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/compiled/lengths_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/compiled/lengths_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/compiled/name_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/compiled/name_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/compiled/none_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/compiled/none_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/compiled/object_rkt.dep
@@ -20009,6 +16752,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/derived.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/function.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/lengths.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/name.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/none.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/object.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/static-contracts/combinators/parametric.rkt
@@ -20055,6 +16799,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/compiled/def-binding_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/compiled/def-export_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/compiled/def-export_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/compiled/error-message_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/compiled/error-message_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/compiled/find-annotation_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/compiled/find-annotation_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/compiled/internal-forms_rkt.dep
@@ -20101,6 +16847,7 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/compiled/typechecker_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/def-binding.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/def-export.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/error-message.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/find-annotation.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/internal-forms.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/typecheck/provide-handling.rkt
@@ -20187,6 +16934,10 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/numeric-predicates_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/numeric-tower_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/numeric-tower_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/path-type_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/path-type_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/prefab_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/prefab_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/printer_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/printer_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/compiled/remove-intersect_rkt.dep
@@ -20218,6 +16969,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/match-expanders.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/numeric-predicates.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/numeric-tower.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/path-type.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/prefab.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/printer.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/remove-intersect.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/types/resolve.rkt
@@ -20242,16 +16995,24 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/disarm_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/early-return_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/early-return_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/evt-contract_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/evt-contract_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/lift_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/lift_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/literal-syntax-class_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/literal-syntax-class_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/mutated-vars_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/mutated-vars_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/opaque-object_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/opaque-object_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/print-struct_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/print-struct_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/redirect-contract_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/redirect-contract_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/require-contract_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/require-contract_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/struct-extraction_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/struct-extraction_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/struct-type-c_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/struct-type-c_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/stxclass-util_rkt.dep
@@ -20262,6 +17023,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/tc-utils_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/timing_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/timing_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/typed-method-property_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/typed-method-property_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/unit-utils_rkt.dep
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/unit-utils_rkt.zo
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/compiled/utils_rkt.dep
@@ -20269,16 +17032,21 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/disappeared-use.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/disarm.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/early-return.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/evt-contract.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/lift.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/literal-syntax-class.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/mutated-vars.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/opaque-object.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/print-struct.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/redirect-contract.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/require-contract.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/struct-extraction.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/struct-type-c.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/stxclass-util.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/tarjan.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/tc-utils.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/timing.rkt
+%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/typed-method-property.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/unit-utils.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed-racket/utils/utils.rkt
%%DATADIR%%/pkgs/typed-racket-lib/typed/compiled/racket_rkt.dep
@@ -20345,6 +17113,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-more/info.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/compiled/framework_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/compiled/framework_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-more/typed/compiled/json_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/compiled/json_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/compiled/openssl_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/compiled/openssl_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/compiled/pict_rkt.dep
@@ -20363,9 +17133,16 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-more/typed/framework/compiled/prefs-contract_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/framework/framework.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/framework/prefs-contract.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/json.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/mred/compiled/mred_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/mred/compiled/mred_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/mred/mred.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/mrlib/bitmap-label.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/mrlib/compiled/bitmap-label_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/mrlib/compiled/bitmap-label_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-more/typed/mrlib/compiled/gif_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/mrlib/compiled/gif_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-more/typed/mrlib/gif.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/base64.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/cgi.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/base64_rkt.dep
@@ -20380,6 +17157,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/ftp_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/gifwrite_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/gifwrite_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/git-checkout_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/git-checkout_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/head_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/head_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/http-client_rkt.dep
@@ -20402,12 +17181,17 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/smtp_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/uri-codec_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/uri-codec_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/url-connect_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/url-connect_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/url-structs_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/url-structs_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/url_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/net/compiled/url_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/net/cookie.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/dns.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/ftp.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/gifwrite.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/net/git-checkout.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/head.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/http-client.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/imap.rkt
@@ -20419,6 +17203,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-more/typed/net/sendurl.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/smtp.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/uri-codec.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/net/url-connect.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/net/url-structs.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/net/url.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/openssl.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/openssl/compiled/md5_rkt.dep
@@ -20441,15 +17227,23 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/compiled/draw_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/compiled/gui_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/compiled/gui_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-more/typed/racket/compiled/sandbox_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/racket/compiled/sandbox_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/compiled/snip_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/compiled/snip_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/draw.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/gui.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/racket/gui/base.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/racket/gui/compiled/base_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/racket/gui/compiled/base_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/private/compiled/gui-types_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/private/compiled/gui-types_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/private/gui-types.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/racket/sandbox.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/racket/snip.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/compiled/docs-complete_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/compiled/docs-complete_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/compiled/gui_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/compiled/gui_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/compiled/info_rkt.dep
@@ -20460,14 +17254,18 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/compiled/text-ui_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/compiled/type-env-ext_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/compiled/type-env-ext_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/docs-complete.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/gui.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/info.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/main.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/text-ui.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/rackunit/type-env-ext.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/srfi/14.rkt
+%%DATADIR%%/pkgs/typed-racket-more/typed/srfi/19.rkt
%%DATADIR%%/pkgs/typed-racket-more/typed/srfi/compiled/14_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/srfi/compiled/14_rkt.zo
+%%DATADIR%%/pkgs/typed-racket-more/typed/srfi/compiled/19_rkt.dep
+%%DATADIR%%/pkgs/typed-racket-more/typed/srfi/compiled/19_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/syntax/compiled/stx_rkt.dep
%%DATADIR%%/pkgs/typed-racket-more/typed/syntax/compiled/stx_rkt.zo
%%DATADIR%%/pkgs/typed-racket-more/typed/syntax/stx.rkt
@@ -21042,21 +17840,6 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/web-server-doc/web-server/scribblings/web.scrbl
%%DATADIR%%/pkgs/web-server-lib/LICENSE.txt
%%DATADIR%%/pkgs/web-server-lib/info.rkt
-%%DATADIR%%/pkgs/web-server-lib/net/compiled/websocket_rkt.dep
-%%DATADIR%%/pkgs/web-server-lib/net/compiled/websocket_rkt.zo
-%%DATADIR%%/pkgs/web-server-lib/net/websocket.rkt
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/client.rkt
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/compiled/client_rkt.dep
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/compiled/client_rkt.zo
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/compiled/conn_rkt.dep
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/compiled/conn_rkt.zo
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/compiled/handshake_rkt.dep
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/compiled/handshake_rkt.zo
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/compiled/server_rkt.dep
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/compiled/server_rkt.zo
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/conn.rkt
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/handshake.rkt
-%%DATADIR%%/pkgs/web-server-lib/net/websocket/server.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/base/lang/compiled/reader_rkt.dep
%%DATADIR%%/pkgs/web-server-lib/web-server/base/lang/compiled/reader_rkt.zo
%%DATADIR%%/pkgs/web-server-lib/web-server/base/lang/reader.rkt
@@ -21524,6 +18307,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/dispatch-server-sig_rkt.zo
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/dispatch-server-unit_rkt.dep
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/dispatch-server-unit_rkt.zo
+%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/dispatch-server-with-connect-unit_rkt.dep
+%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/dispatch-server-with-connect-unit_rkt.zo
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/gzip_rkt.dep
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/gzip_rkt.zo
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/launch_rkt.dep
@@ -21532,6 +18317,8 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/mime-types_rkt.zo
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/mod-map_rkt.dep
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/mod-map_rkt.zo
+%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/raw-dispatch-server-connect-unit_rkt.dep
+%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/raw-dispatch-server-connect-unit_rkt.zo
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/servlet_rkt.dep
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/servlet_rkt.zo
%%DATADIR%%/pkgs/web-server-lib/web-server/private/compiled/timer_rkt.dep
@@ -21549,10 +18336,12 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/web-server-lib/web-server/private/define-closure.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/private/dispatch-server-sig.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/private/dispatch-server-unit.rkt
+%%DATADIR%%/pkgs/web-server-lib/web-server/private/dispatch-server-with-connect-unit.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/private/gzip.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/private/launch.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/private/mime-types.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/private/mod-map.rkt
+%%DATADIR%%/pkgs/web-server-lib/web-server/private/raw-dispatch-server-connect-unit.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/private/servlet.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/private/timer.rkt
%%DATADIR%%/pkgs/web-server-lib/web-server/private/url-param.rkt
@@ -21684,7 +18473,3553 @@ share/applications/slideshow.desktop
%%DATADIR%%/pkgs/xrepl-lib/xrepl/xrepl.rkt
%%DATADIR%%/pkgs/xrepl/LICENSE.txt
%%DATADIR%%/pkgs/xrepl/info.rkt
+%%DATADIR%%/pkgs/zo-lib/compiler/compiled/zo-marshal_rkt.dep
+%%DATADIR%%/pkgs/zo-lib/compiler/compiled/zo-marshal_rkt.zo
+%%DATADIR%%/pkgs/zo-lib/compiler/compiled/zo-parse_rkt.dep
+%%DATADIR%%/pkgs/zo-lib/compiler/compiled/zo-parse_rkt.zo
+%%DATADIR%%/pkgs/zo-lib/compiler/compiled/zo-structs_rkt.dep
+%%DATADIR%%/pkgs/zo-lib/compiler/compiled/zo-structs_rkt.zo
+%%DATADIR%%/pkgs/zo-lib/compiler/zo-marshal.rkt
+%%DATADIR%%/pkgs/zo-lib/compiler/zo-parse.rkt
+%%DATADIR%%/pkgs/zo-lib/compiler/zo-structs.rkt
+%%DATADIR%%/pkgs/zo-lib/info.rkt
%%DATADIR%%/shares.rktd
%%DATADIR%%/slatex.py
%%DATADIR%%/slatex.sty
%%DATADIR%%/slideshow-exe-icon.ico
+%%ETCDIR%%/config.rktd
+%%PORTDOCS%%%%DOCSDIR%%/acks/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/acks/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/acks/index.html
+%%PORTDOCS%%%%DOCSDIR%%/acks/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/acks/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/acks/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/algol60/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/algol60/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/algol60/index.html
+%%PORTDOCS%%%%DOCSDIR%%/algol60/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/algol60/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/algol60/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/browser/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/browser/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/browser/index.html
+%%PORTDOCS%%%%DOCSDIR%%/browser/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/browser/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/browser/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/bug-report/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/bug-report/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/bug-report/index.html
+%%PORTDOCS%%%%DOCSDIR%%/bug-report/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/bug-report/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/bug-report/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/cards/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/cards/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/cards/index.html
+%%PORTDOCS%%%%DOCSDIR%%/cards/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/cards/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/cards/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/compatibility-package.html
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/defmacro.html
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/index.html
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/mlists.html
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/compatibility/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/continue/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/continue/flow1.png
+%%PORTDOCS%%%%DOCSDIR%%/continue/flow2.png
+%%PORTDOCS%%%%DOCSDIR%%/continue/flow3.png
+%%PORTDOCS%%%%DOCSDIR%%/continue/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/continue/index.html
+%%PORTDOCS%%%%DOCSDIR%%/continue/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/continue/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/continue/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/contract-profile/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/contract-profile/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/contract-profile/index.html
+%%PORTDOCS%%%%DOCSDIR%%/contract-profile/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/contract-profile/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/contract-profile/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/data/Binary_Heaps.html
+%%PORTDOCS%%%%DOCSDIR%%/data/Enumerations.html
+%%PORTDOCS%%%%DOCSDIR%%/data/Imperative_Queues.html
+%%PORTDOCS%%%%DOCSDIR%%/data/Orders_and_Ordered_Dictionaries.html
+%%PORTDOCS%%%%DOCSDIR%%/data/Splay_Trees.html
+%%PORTDOCS%%%%DOCSDIR%%/data/bit-vector.html
+%%PORTDOCS%%%%DOCSDIR%%/data/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/data/gvector.html
+%%PORTDOCS%%%%DOCSDIR%%/data/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/data/index.html
+%%PORTDOCS%%%%DOCSDIR%%/data/integer-set.html
+%%PORTDOCS%%%%DOCSDIR%%/data/interval-map.html
+%%PORTDOCS%%%%DOCSDIR%%/data/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/data/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/data/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/data/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/data/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/data/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/data/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/data/skip-list.html
+%%PORTDOCS%%%%DOCSDIR%%/data/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/data/union-find.html
+%%PORTDOCS%%%%DOCSDIR%%/datalog/Acknowledgments.html
+%%PORTDOCS%%%%DOCSDIR%%/datalog/Parenthetical_Datalog_Module_Language.html
+%%PORTDOCS%%%%DOCSDIR%%/datalog/Tutorial.html
+%%PORTDOCS%%%%DOCSDIR%%/datalog/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/datalog/datalog.html
+%%PORTDOCS%%%%DOCSDIR%%/datalog/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/datalog/index.html
+%%PORTDOCS%%%%DOCSDIR%%/datalog/interop.html
+%%PORTDOCS%%%%DOCSDIR%%/datalog/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/datalog/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/datalog/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/db/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/db/connect.html
+%%PORTDOCS%%%%DOCSDIR%%/db/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/db/index.html
+%%PORTDOCS%%%%DOCSDIR%%/db/notes.html
+%%PORTDOCS%%%%DOCSDIR%%/db/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/db/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/db/query-api.html
+%%PORTDOCS%%%%DOCSDIR%%/db/sql-types.html
+%%PORTDOCS%%%%DOCSDIR%%/db/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/db/using-db.html
+%%PORTDOCS%%%%DOCSDIR%%/db/util.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA-advanced.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA-assignments.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA-beginner.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA-vanilla.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/DMdA__Sprachen_als_Libraries.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Definitionen.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Eigenschaften.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Konstruktionsanleitungen_1_bis_10.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Parametrische_Record-Typ-Definitionen.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Record-Typ-Definitionen.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Signaturen.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/Testf_lle.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/_t_and__f.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-definitions.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-lambda.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-prim-op.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-quote.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/advanced-signatures.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/and.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/application.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/assignments-prim-op.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/assignments-signatures.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/begin.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/beginner-prim-ops.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/cond.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/define-record-procedures-2.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/define-record-procedures-parametric-2.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/id.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/if.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/image.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/index.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/lambda.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/let__letrec_und_let_.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/line3d.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/or.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/p1.jpg
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/p2.jpg
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/p3.jpg
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/p4.jpg
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/set_.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/signatures-vanilla.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/sound.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/turtle.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/vanilla-prim-op.html
+%%PORTDOCS%%%%DOCSDIR%%/deinprogramm/world.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Block_Styles.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Element_Styles.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Enumerations.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Navigation_Bars.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/Paragraph_Spacing.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/all-non-sec.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/deepest.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/h3.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/no-toc.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-m1/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Block_Styles.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Element_Styles.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Enumerations.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Navigation_Bars.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/Paragraph_Spacing.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/all-non-sec.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/deepest.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/h3.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/no-toc.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-m2/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/Bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/Code_Styles.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/Definition_Blocks.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/Miscellaneous.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/bitmap-dc_.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m1/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/Bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/Code_Styles.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/Definition_Blocks.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/Miscellaneous.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/bitmap-dc_.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-m2/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s1/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-manual-s2/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-s1/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/demo-s1/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-s1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-s1/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-s1/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-s1/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-s2/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/demo-s2/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-s2/index.html
+%%PORTDOCS%%%%DOCSDIR%%/demo-s2/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-s2/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/demo-s2/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/distributed-places/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/distributed-places/finger.png
+%%PORTDOCS%%%%DOCSDIR%%/distributed-places/icons.css
+%%PORTDOCS%%%%DOCSDIR%%/distributed-places/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/distributed-places/index.html
+%%PORTDOCS%%%%DOCSDIR%%/distributed-places/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/distributed-places/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/distributed-places/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/doc-site.css
+%%PORTDOCS%%%%DOCSDIR%%/doc-site.js
+%%PORTDOCS%%%%DOCSDIR%%/docindex.sqlite
+%%PORTDOCS%%%%DOCSDIR%%/draw/Drawing_Contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/Drawing_Functions.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/Signature_and_Unit.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/bitmap-dc_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/bitmap_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/draw/brush-list_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/brush_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/color-database___.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/color_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/dc-path_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/dc___.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/font-list_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/font-name-directory___.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/font_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/gl-config_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/gl-context___.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/draw/index.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/libs.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/linear-gradient_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/draw/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/draw/overview.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/pdf-dc_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/pen-list_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/pen_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_15.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_16.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_17.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_18.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_19.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_20.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_21.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_22.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_23.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_24.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_25.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_26.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/draw/point_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/post-script-dc_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/ps-setup_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/radial-gradient_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/record-dc_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/region_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/draw/svg-dc_.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/unsafe.html
+%%PORTDOCS%%%%DOCSDIR%%/draw/water.png
+%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/Accessing_Check_Syntax_Programmatically.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/Module_Browser.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/Module_Path_Selection.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/index.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/drracket-tools/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/drracket/Graphical_Syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/Interface_Reference.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/Keyboard_Shortcuts.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/Menus.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/Searching.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/Tabbed_Editing.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/drracket/buttons.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/choose-language.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/color-scheme.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/create-exe.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/debugger.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/debugger1.png
+%%PORTDOCS%%%%DOCSDIR%%/drracket/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/drracket-files.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/editor.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/example.png
+%%PORTDOCS%%%%DOCSDIR%%/drracket/experimental-langs.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/extending-drracket.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/follow-log.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/htdp-langs.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/drracket/index.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/interactions-window.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/interface-essentials.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/io.png
+%%PORTDOCS%%%%DOCSDIR%%/drracket/languages.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/legacy.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/module-browser.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/module.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/drracket/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/drracket/output-syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/prefs-explanation.html
+%%PORTDOCS%%%%DOCSDIR%%/drracket/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ds-store/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/ds-store/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ds-store/index.html
+%%PORTDOCS%%%%DOCSDIR%%/ds-store/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ds-store/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ds-store/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/dynext/Compilation.html
+%%PORTDOCS%%%%DOCSDIR%%/dynext/Filenames.html
+%%PORTDOCS%%%%DOCSDIR%%/dynext/Linking.html
+%%PORTDOCS%%%%DOCSDIR%%/dynext/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/dynext/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/dynext/index.html
+%%PORTDOCS%%%%DOCSDIR%%/dynext/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/dynext/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/dynext/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/Helpers.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/aligned-pasteboard_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/alignment-parent___.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/alignment___.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/button-snip_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/containers.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/control-snips.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/controls.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/dllist___.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/embedded-button_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/embedded-message_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/embedded-text-button_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/embedded-toggle-button_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/hline_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/horizontal-alignment_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/index.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/snip-related-functions.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/snip-wrapper_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/stretchable-snip___.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/text-button-snip_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/toggle-button-snip_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/vertical-alignment_.html
+%%PORTDOCS%%%%DOCSDIR%%/embedded-gui/vline_.html
+%%PORTDOCS%%%%DOCSDIR%%/eopl/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/eopl/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/eopl/index.html
+%%PORTDOCS%%%%DOCSDIR%%/eopl/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/eopl/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/eopl/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/Errortrace_Key.html
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/errortrace-library.html
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/index.html
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/installing-errortrace.html
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/quick-instructions.html
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/stacktrace.html
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/errortrace/using-errortrace.html
+%%PORTDOCS%%%%DOCSDIR%%/file/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/file/cache.html
+%%PORTDOCS%%%%DOCSDIR%%/file/convertible.html
+%%PORTDOCS%%%%DOCSDIR%%/file/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/file/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/file/gif.html
+%%PORTDOCS%%%%DOCSDIR%%/file/gunzip.html
+%%PORTDOCS%%%%DOCSDIR%%/file/gzip.html
+%%PORTDOCS%%%%DOCSDIR%%/file/ico.html
+%%PORTDOCS%%%%DOCSDIR%%/file/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/file/index.html
+%%PORTDOCS%%%%DOCSDIR%%/file/md5.html
+%%PORTDOCS%%%%DOCSDIR%%/file/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/file/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/file/resource.html
+%%PORTDOCS%%%%DOCSDIR%%/file/sha1b.html
+%%PORTDOCS%%%%DOCSDIR%%/file/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/file/tar.html
+%%PORTDOCS%%%%DOCSDIR%%/file/untar.html
+%%PORTDOCS%%%%DOCSDIR%%/file/untgz.html
+%%PORTDOCS%%%%DOCSDIR%%/file/unzip.html
+%%PORTDOCS%%%%DOCSDIR%%/file/zip.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Allocation_and_Finalization.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Atomic_Execution.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/C_Array_Types.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/C_Struct_Types.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/C_Union_Types.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Custodian_Shutdown_Registration.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Defining_Bindings.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Derived_Utilities.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Enumerations_and_Masks.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Loading_Foreign_Libraries.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Miscellaneous_Support.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Numeric_Types.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Objective-C_FFI.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Other_Atomic_Types.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Pointer_Types.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/Speculatively_Atomic_Execution.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/String_Types.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/active-x.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/foreign/com-auto.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/com-intf.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/com.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/ctype.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/file-security-guard-checks.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_c-only.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_cvector.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_pointer-funcs.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_procedures.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/foreign_tagged-pointers.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/homogeneous-vectors.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/foreign/index.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/intro.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/ns.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/foreign/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/foreign/serialize-struct.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/foreign/types.html
+%%PORTDOCS%%%%DOCSDIR%%/foreign/winapi.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Application.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Autosave.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Backwards_Compatibility.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Canvas.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Color.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Color_Model.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Color_Prefs.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Comment_Box.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Decorated_Editor_Snip.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Editor.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Exit.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Finder.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Frame.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Framework_Libraries_Overview.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/GUI_Utilities.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Group.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Handler.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Icon.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Keymap.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Menu.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Mode.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Number_Snip.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Panel.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Pasteboard.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Path_Utils.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Preferences.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Preferences__Textual.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Racket.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Signatures.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Splash.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Test.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Text.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Unit.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/Version.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/framework/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/editor-snip.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/framework/index.html
+%%PORTDOCS%%%%DOCSDIR%%/framework/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/framework/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/framework/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/frtime/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/frtime/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/frtime/index.html
+%%PORTDOCS%%%%DOCSDIR%%/frtime/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/frtime/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/frtime/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/future-visualizer-timeline.html
+%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/future-visualizer-tree.html
+%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/futures-trace.html
+%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/index.html
+%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/future-visualizer/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/games/3x3-empty-board.png
+%%PORTDOCS%%%%DOCSDIR%%/games/7x7-empty-board.png
+%%PORTDOCS%%%%DOCSDIR%%/games/Board_to_Graph.html
+%%PORTDOCS%%%%DOCSDIR%%/games/Breadth-first_Search.html
+%%PORTDOCS%%%%DOCSDIR%%/games/Drawing_the_Cat.html
+%%PORTDOCS%%%%DOCSDIR%%/games/Drawing_the_World.html
+%%PORTDOCS%%%%DOCSDIR%%/games/Handling_Input.html
+%%PORTDOCS%%%%DOCSDIR%%/games/Overview.html
+%%PORTDOCS%%%%DOCSDIR%%/games/Run__program__run.html
+%%PORTDOCS%%%%DOCSDIR%%/games/Showing_Scribbled_Help.html
+%%PORTDOCS%%%%DOCSDIR%%/games/Showing_Text_Help.html
+%%PORTDOCS%%%%DOCSDIR%%/games/Tests.html
+%%PORTDOCS%%%%DOCSDIR%%/games/The_Cat_s_Path.html
+%%PORTDOCS%%%%DOCSDIR%%/games/The_World.html
+%%PORTDOCS%%%%DOCSDIR%%/games/aces.html
+%%PORTDOCS%%%%DOCSDIR%%/games/aces.png
+%%PORTDOCS%%%%DOCSDIR%%/games/blackjack.html
+%%PORTDOCS%%%%DOCSDIR%%/games/blackjack.png
+%%PORTDOCS%%%%DOCSDIR%%/games/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/games/bundled.html
+%%PORTDOCS%%%%DOCSDIR%%/games/cat-distance-example.png
+%%PORTDOCS%%%%DOCSDIR%%/games/chat-noir.html
+%%PORTDOCS%%%%DOCSDIR%%/games/chat-noir.png
+%%PORTDOCS%%%%DOCSDIR%%/games/checkers.html
+%%PORTDOCS%%%%DOCSDIR%%/games/checkers.png
+%%PORTDOCS%%%%DOCSDIR%%/games/crazy8s.html
+%%PORTDOCS%%%%DOCSDIR%%/games/crazy8s.png
+%%PORTDOCS%%%%DOCSDIR%%/games/gcalc.html
+%%PORTDOCS%%%%DOCSDIR%%/games/gcalc.png
+%%PORTDOCS%%%%DOCSDIR%%/games/ginrummy.html
+%%PORTDOCS%%%%DOCSDIR%%/games/ginrummy.png
+%%PORTDOCS%%%%DOCSDIR%%/games/gobblet.html
+%%PORTDOCS%%%%DOCSDIR%%/games/gobblet.png
+%%PORTDOCS%%%%DOCSDIR%%/games/gofish.html
+%%PORTDOCS%%%%DOCSDIR%%/games/gofish.png
+%%PORTDOCS%%%%DOCSDIR%%/games/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/games/index.html
+%%PORTDOCS%%%%DOCSDIR%%/games/jewel.html
+%%PORTDOCS%%%%DOCSDIR%%/games/jewel.png
+%%PORTDOCS%%%%DOCSDIR%%/games/lights-out.html
+%%PORTDOCS%%%%DOCSDIR%%/games/lights-out.png
+%%PORTDOCS%%%%DOCSDIR%%/games/memory.html
+%%PORTDOCS%%%%DOCSDIR%%/games/memory.png
+%%PORTDOCS%%%%DOCSDIR%%/games/mines.html
+%%PORTDOCS%%%%DOCSDIR%%/games/mines.png
+%%PORTDOCS%%%%DOCSDIR%%/games/new-games.html
+%%PORTDOCS%%%%DOCSDIR%%/games/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/games/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/games/paint-by-numbers.html
+%%PORTDOCS%%%%DOCSDIR%%/games/paint-by-numbers.png
+%%PORTDOCS%%%%DOCSDIR%%/games/parcheesi.html
+%%PORTDOCS%%%%DOCSDIR%%/games/parcheesi.png
+%%PORTDOCS%%%%DOCSDIR%%/games/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/games/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/games/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/games/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/games/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/games/pousse.html
+%%PORTDOCS%%%%DOCSDIR%%/games/pousse.png
+%%PORTDOCS%%%%DOCSDIR%%/games/same.html
+%%PORTDOCS%%%%DOCSDIR%%/games/same.png
+%%PORTDOCS%%%%DOCSDIR%%/games/slidey.html
+%%PORTDOCS%%%%DOCSDIR%%/games/slidey.png
+%%PORTDOCS%%%%DOCSDIR%%/games/spider.html
+%%PORTDOCS%%%%DOCSDIR%%/games/spider.png
+%%PORTDOCS%%%%DOCSDIR%%/games/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/games/tally-maze.html
+%%PORTDOCS%%%%DOCSDIR%%/games/tally-maze.png
+%%PORTDOCS%%%%DOCSDIR%%/getting-started/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/getting-started/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/getting-started/index.html
+%%PORTDOCS%%%%DOCSDIR%%/getting-started/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/getting-started/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/getting-started/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/index.html
+%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/gl-board-game/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/graphics/A_More_Complicated_Example.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/An_Example.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/Basic_Commands.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/Color_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/Draw__Clear__and_Flip_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/Flushing.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/Graphics_Library_as_a_Unit.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/Keyboard_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/Miscellaneous_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/Mouse_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/Protecting_Graphics_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/World_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/graphics/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/graphics/index.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/graphics/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/graphics/posn.html
+%%PORTDOCS%%%%DOCSDIR%%/graphics/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/gui/Dynamic_Loading.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/Editor_Classes.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/Editor_Functions.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/Snip_and_Style_Classes.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/Startup_Actions.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/WXME_Decoding.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/Widget_Gallery.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/Windowing_Classes.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/Windowing_Functions.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/add-color___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/area-container-window___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/area-container___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/area___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/gui/button.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/button_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/canvas_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/canvas___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/check-box.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/check-box_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/checkable-menu-item_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/choice.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/choice_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/clipboard-client_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/clipboard___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/column-control-event_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/combo-field.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/combo-field_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/control-event_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/control___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/cursor_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/dialog_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-admin_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-canvas.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-canvas_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-data-class-list___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-data-class_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-data_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-overview.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-snip-editor-admin___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-snip_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-in-base_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-in-bytes-base_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-in_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-out-base_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-out-bytes-base_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-stream-out_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor-wordbreak-map_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/editor___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/event_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/frame_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/gauge.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/gauge_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/group-box-panel.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/group-box-panel_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/grow-box-spacer-pane_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/horizontal-pane_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/horizontal-panel_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/image-snip_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/gui/index.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/key-event_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/keymap_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/labelled-menu-item___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/libs.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/list-box.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/list-box_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/list-control___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/menu-bar.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/menu-bar_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/menu-item-container___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/menu-item_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/menu-item___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/menu_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/message.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/message_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/mouse-event_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/mredprefs.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/mult-color___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/gui/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/gui/pane_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/panel.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/panel_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/pasteboard_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/popup-menu_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/printer-dc_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/radio-box.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/radio-box_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/readable-snip___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/scroll-event_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/selectable-menu-item___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/separator-menu-item_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/slider.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/slider_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/snip-admin_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/snip-class-list___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/snip-class_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/snip_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/gui/string-snip_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/style-delta_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/style-list_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/style___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/subarea___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/subwindow___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/tab-panel.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/tab-panel_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/tab-snip_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/text-field.png
+%%PORTDOCS%%%%DOCSDIR%%/gui/text-field_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/text_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/timer_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/top-level-window___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/vertical-pane_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/vertical-panel_.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/window___.html
+%%PORTDOCS%%%%DOCSDIR%%/gui/windowing-overview.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/An_Extended_Example.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Backtracking.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Building_New_Contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Contracts_for_Units.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Emacs.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Invoking_Units.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Linking_Units.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Lists__Iteration__and_Recursion.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Looking_Ahead_and_Behind.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Module_Syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/More_Libraries.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Pairs__Lists__and_Racket_Syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Signatures_and_Units.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Simple_Values.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Sublime_Text.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Vim.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/Whole-module_Signatures_and_Units.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/application.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/begin.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/binding.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/guide/booleans.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/boxes.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/bytestrings.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/case.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/characters.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/classes.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/cmdline-tools.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/concurrency.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/conditionals.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/contract-boundaries.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/contract-func.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-examples.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-exists.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-first.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-general-functions.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-gotchas.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/contracts-struct.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/control.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/conts.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/datatypes.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/default-ports.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/define-struct.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/define.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/dialects.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/encodings.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/eval.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/exe.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/exns.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/figure.css
+%%PORTDOCS%%%%DOCSDIR%%/guide/figure.js
+%%PORTDOCS%%%%DOCSDIR%%/guide/finger.png
+%%PORTDOCS%%%%DOCSDIR%%/guide/firstclassunits.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/for.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/hash-lang_reader.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/hash-lang_syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/hash-languages.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/hash-reader.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/hash-tables.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/i_o.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/icons.css
+%%PORTDOCS%%%%DOCSDIR%%/guide/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/guide/index.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/intro.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/io-patterns.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/keywords.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/lambda.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/language-collection.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/language-get-info.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/languages.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/let.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/load.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/macro-transformers.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/macros.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/magnify.png
+%%PORTDOCS%%%%DOCSDIR%%/guide/match.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/mk-namespace.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/module-basics.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/module-languages.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/module-paths.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/module-provide.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/module-require.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/module-runtime-config.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/module-set.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/modules.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/more-hash-lang.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/numbers.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/other-editors.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/guide/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/guide/pairs.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/parallelism.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/parameterize.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/pattern-macros.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/performance.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/phases.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/guide/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/guide/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/guide/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/guide/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/guide/ports.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/proc-macros.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/prompt.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/qq.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/quote.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/racket.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/read-write.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/reflection.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-alternation.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-assert.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-chars.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-clusters.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-intro.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-match.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/regexp-quant.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/regexp.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/running.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/scheme-forms.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/scripts.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/serialization.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/set_.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/guide/standards.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/strings.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/stx-certs.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/stx-obj.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/stx-phases.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/symbols.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/syntax-case.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/syntax-notation.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/syntax-overview.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/syntax_module-reader.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/teaching-langs.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/to-scheme.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/unit_versus_module.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/units.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/vectors.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/void_undefined.html
+%%PORTDOCS%%%%DOCSDIR%%/guide/with-syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/help/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/help/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/help/index.html
+%%PORTDOCS%%%%DOCSDIR%%/help/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/help/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/help/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/advanced.html
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/beginner-abbr.html
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/beginner.html
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/index.html
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/intermediate-lam.html
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/intermediate.html
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_15.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/htdp-langs/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/index.html
+%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp-ptr/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/htdp/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp/index.html
+%%PORTDOCS%%%%DOCSDIR%%/htdp/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/htdp/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/html/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/html/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/html/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/html/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/html/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/images/Blur.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Component_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Compositing.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Conversion_and_Construction.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Effects.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Embedding_Bitmaps_in_Compiled_Files.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Gradients_and_Normals.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Icons.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Logos.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Overview.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Pointwise_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Resizing.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Spatial_Transformations.html
+%%PORTDOCS%%%%DOCSDIR%%/images/Struct_Type_and_Accessors.html
+%%PORTDOCS%%%%DOCSDIR%%/images/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/images/flomap_title.html
+%%PORTDOCS%%%%DOCSDIR%%/images/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/images/index.html
+%%PORTDOCS%%%%DOCSDIR%%/images/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/images/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/images/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_100.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_101.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_102.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_103.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_104.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_105.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_106.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_107.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_108.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_109.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_110.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_111.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_112.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_113.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_114.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_115.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_116.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_117.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_118.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_119.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_120.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_121.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_122.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_123.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_124.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_125.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_126.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_127.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_128.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_129.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_130.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_131.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_132.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_133.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_134.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_135.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_136.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_137.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_138.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_139.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_140.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_141.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_142.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_143.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_144.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_145.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_146.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_147.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_148.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_149.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_15.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_150.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_151.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_152.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_153.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_154.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_155.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_156.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_157.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_158.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_159.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_16.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_160.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_161.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_162.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_163.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_164.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_165.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_166.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_167.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_168.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_169.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_17.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_170.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_171.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_172.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_173.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_174.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_175.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_176.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_177.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_178.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_179.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_18.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_180.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_181.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_182.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_183.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_184.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_185.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_186.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_187.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_188.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_189.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_19.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_190.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_191.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_192.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_193.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_194.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_195.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_196.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_197.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_198.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_199.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_20.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_200.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_201.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_202.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_203.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_21.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_22.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_23.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_24.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_25.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_26.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_27.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_28.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_29.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_30.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_31.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_32.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_33.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_34.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_35.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_36.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_37.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_38.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_39.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_40.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_41.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_42.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_43.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_44.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_45.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_46.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_47.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_48.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_49.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_50.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_51.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_52.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_53.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_54.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_55.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_56.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_57.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_58.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_59.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_60.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_61.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_62.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_63.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_64.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_65.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_66.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_67.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_68.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_69.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_70.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_71.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_72.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_73.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_74.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_75.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_76.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_77.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_78.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_79.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_80.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_81.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_82.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_83.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_84.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_85.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_86.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_87.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_88.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_89.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_90.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_91.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_92.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_93.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_94.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_95.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_96.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_97.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_98.png
+%%PORTDOCS%%%%DOCSDIR%%/images/pict_99.png
+%%PORTDOCS%%%%DOCSDIR%%/images/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/index.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/Bignums__Rationals__and_Complex_Numbers.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/Custodians.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/Evaluation.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/Miscellaneous_Utilities.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/Ports_and_the_Filesystem.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/Procedures.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/Structures.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/Subprocesses.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/Writing_Racket_Extensions.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/inside/config.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/contmarks.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/embedding.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/exceptions.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/im_encodings.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/im_env.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/im_memoryalloc.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/im_values_types.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/inside/index.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/inside/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/inside/overview.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/security.html
+%%PORTDOCS%%%%DOCSDIR%%/inside/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/inside/threads.html
+%%PORTDOCS%%%%DOCSDIR%%/json/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/json/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/json/index.html
+%%PORTDOCS%%%%DOCSDIR%%/json/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/json/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/json/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/lazy/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/lazy/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/lazy/index.html
+%%PORTDOCS%%%%DOCSDIR%%/lazy/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/lazy/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/lazy/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/license/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/license/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/license/index.html
+%%PORTDOCS%%%%DOCSDIR%%/license/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/license/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/license/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/index.html
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect.js
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_0.js
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_1.js
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_2.js
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_3.js
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-redirect_4.js
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/local-user-redirect.js
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/local-redirect/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/index.html
+%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/macro-debugger/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/make/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/make/collection.html
+%%PORTDOCS%%%%DOCSDIR%%/make/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/make/index.html
+%%PORTDOCS%%%%DOCSDIR%%/make/make.html
+%%PORTDOCS%%%%DOCSDIR%%/make/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/make/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/make/overview.html
+%%PORTDOCS%%%%DOCSDIR%%/make/setup-extension.html
+%%PORTDOCS%%%%DOCSDIR%%/make/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/manual-fonts.css
+%%PORTDOCS%%%%DOCSDIR%%/manual-racket.css
+%%PORTDOCS%%%%DOCSDIR%%/manual-racket.js
+%%PORTDOCS%%%%DOCSDIR%%/manual-style.css
+%%PORTDOCS%%%%DOCSDIR%%/math/Distribution_Types_and_Operations.html
+%%PORTDOCS%%%%DOCSDIR%%/math/Finite_Distribution_Families.html
+%%PORTDOCS%%%%DOCSDIR%%/math/Integer_Distribution_Families.html
+%%PORTDOCS%%%%DOCSDIR%%/math/Real_Distribution_Families.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_broadcasting.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_construct.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_convert.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_defs.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_fold.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_indexing.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_nonstrict.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_other.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_pointwise.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_quick.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_sequences.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_slicing.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_strict.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_subtypes.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_transform.html
+%%PORTDOCS%%%%DOCSDIR%%/math/array_types.html
+%%PORTDOCS%%%%DOCSDIR%%/math/base.html
+%%PORTDOCS%%%%DOCSDIR%%/math/bigfloat.html
+%%PORTDOCS%%%%DOCSDIR%%/math/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/math/dist.html
+%%PORTDOCS%%%%DOCSDIR%%/math/dist_dist-objects.html
+%%PORTDOCS%%%%DOCSDIR%%/math/dist_flonum.html
+%%PORTDOCS%%%%DOCSDIR%%/math/flonum.html
+%%PORTDOCS%%%%DOCSDIR%%/math/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/math/index.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrices.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_arith.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_basic.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_construction.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_conversion.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_inner.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_intro.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_op-norm.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_ortho-alg.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_poly.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_row-alg.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_solve.html
+%%PORTDOCS%%%%DOCSDIR%%/math/matrix_types.html
+%%PORTDOCS%%%%DOCSDIR%%/math/number-theory.html
+%%PORTDOCS%%%%DOCSDIR%%/math/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/math/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/math/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_15.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_16.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_17.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_18.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_19.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_20.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_21.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_22.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_23.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_24.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_25.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_26.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_27.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_28.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_29.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_30.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_31.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_32.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_33.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_34.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_35.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_36.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_37.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_38.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_39.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_40.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_41.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_42.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_43.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_44.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_45.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_46.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_47.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_48.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_49.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_50.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_51.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_52.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_53.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/math/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/math/special.html
+%%PORTDOCS%%%%DOCSDIR%%/math/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/math/stats.html
+%%PORTDOCS%%%%DOCSDIR%%/math/utils.html
+%%PORTDOCS%%%%DOCSDIR%%/more/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/more/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/more/index.html
+%%PORTDOCS%%%%DOCSDIR%%/more/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/more/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/more/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/more/step0.txt
+%%PORTDOCS%%%%DOCSDIR%%/more/step1.txt
+%%PORTDOCS%%%%DOCSDIR%%/more/step2.txt
+%%PORTDOCS%%%%DOCSDIR%%/more/step3.txt
+%%PORTDOCS%%%%DOCSDIR%%/more/step4.txt
+%%PORTDOCS%%%%DOCSDIR%%/more/step5.txt
+%%PORTDOCS%%%%DOCSDIR%%/more/step6.txt
+%%PORTDOCS%%%%DOCSDIR%%/more/step7.txt
+%%PORTDOCS%%%%DOCSDIR%%/more/step8.txt
+%%PORTDOCS%%%%DOCSDIR%%/more/step9.txt
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Acknowledgments.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Aligned_Pasteboard.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Bitmap_Label.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Cache-image_Snip.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Close_Icon.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/GIF_and_Animated_GIF_Writing.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Graph_Functions.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Graphs.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Hierarchical_List_Control.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Image_Core.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Include_Bitmap.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Interactive_Value_Port.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Matrix_Snip.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Name_Message.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Path_Dialog.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Plot.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Snips_in_a_hierarchical-list__Instance.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Switchable_Button.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/TeX_Table.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/Terminal_Window.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/aligned-editor-canvas_.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/aligned-editor-snip_.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/aligned-pasteboard-parent___.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/aligned-pasteboard___.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/graph-pasteboard-mixin.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/graph-pasteboard___.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/graph-snip-mixin.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/graph-snip___.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/hierarchical-list-compound-item___.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/hierarchical-list-item___.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/hierarchical-list_.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/horizontal-pasteboard_.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/stretchable-snip___.html
+%%PORTDOCS%%%%DOCSDIR%%/mrlib/vertical-pasteboard_.html
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/com-events.html
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/com-types.html
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/methprop.html
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mysterx/version.html
+%%PORTDOCS%%%%DOCSDIR%%/mzcom/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/mzcom/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzcom/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mzcom/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzcom/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzcom/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_a-signature.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_a-unit.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_async-channel.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_awk.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_class.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_cm-accomplice.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_cm.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_cmdline.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_cml.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_compat.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_compile.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_contract.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_control.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_date.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_deflate.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_defmacro.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_etc.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_file.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_for.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_foreign.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_include.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_inflate.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_integer-set.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_kw.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_list.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_match.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_math.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_md5.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_os.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_pconvert-prop.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_pconvert.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_plt-match.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_port.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_pregexp.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_pretty.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_process.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_restart.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_runtime-path.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_sandbox.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_sendevent.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_serialize.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_shared.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_string.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_struct.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_stxparam.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_surrogate.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_tar.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_thread.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_trace.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_traceld.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_trait.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_transcr.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_unit-exptime.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_unit.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_unit200.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_unitsig200.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/mzlib_zip.html
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzlib/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/Extra_Libraries.html
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/Old_Functions.html
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/Old_Syntactic_Forms.html
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/Omitted_Forms_and_Functions.html
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/index.html
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/mzscheme/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/net/base64.html
+%%PORTDOCS%%%%DOCSDIR%%/net/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/net/cgi.html
+%%PORTDOCS%%%%DOCSDIR%%/net/cookie.html
+%%PORTDOCS%%%%DOCSDIR%%/net/dns.html
+%%PORTDOCS%%%%DOCSDIR%%/net/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/net/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/net/ftp.html
+%%PORTDOCS%%%%DOCSDIR%%/net/git-checkout.html
+%%PORTDOCS%%%%DOCSDIR%%/net/head.html
+%%PORTDOCS%%%%DOCSDIR%%/net/http-client.html
+%%PORTDOCS%%%%DOCSDIR%%/net/imap.html
+%%PORTDOCS%%%%DOCSDIR%%/net/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/net/index.html
+%%PORTDOCS%%%%DOCSDIR%%/net/mime.html
+%%PORTDOCS%%%%DOCSDIR%%/net/nntp.html
+%%PORTDOCS%%%%DOCSDIR%%/net/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/net/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/net/pop3.html
+%%PORTDOCS%%%%DOCSDIR%%/net/qp.html
+%%PORTDOCS%%%%DOCSDIR%%/net/sendmail.html
+%%PORTDOCS%%%%DOCSDIR%%/net/sendurl.html
+%%PORTDOCS%%%%DOCSDIR%%/net/smtp.html
+%%PORTDOCS%%%%DOCSDIR%%/net/ssl-tcp-unit.html
+%%PORTDOCS%%%%DOCSDIR%%/net/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/net/tcp-redirect.html
+%%PORTDOCS%%%%DOCSDIR%%/net/tcp.html
+%%PORTDOCS%%%%DOCSDIR%%/net/unihead.html
+%%PORTDOCS%%%%DOCSDIR%%/net/uri-codec.html
+%%PORTDOCS%%%%DOCSDIR%%/net/url.html
+%%PORTDOCS%%%%DOCSDIR%%/openssl/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/openssl/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/openssl/index.html
+%%PORTDOCS%%%%DOCSDIR%%/openssl/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/openssl/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/openssl/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/optimization-coach/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/optimization-coach/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/optimization-coach/index.html
+%%PORTDOCS%%%%DOCSDIR%%/optimization-coach/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/optimization-coach/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/optimization-coach/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/Context-Free_Parsers.html
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/Converting_yacc_or_bison_Grammars.html
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/LALR_1__Parsers.html
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/Lexers.html
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/index.html
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/parser-tools/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pict-snip/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/pict-snip/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pict-snip/index.html
+%%PORTDOCS%%%%DOCSDIR%%/pict-snip/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pict-snip/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pict-snip/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pict/Animation_Helpers.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Basic_Pict_Constructors.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Bounding_Box_Adjusters.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Conversion_to_Picts.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Miscellaneous.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/More_Pict_Constructors.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Pict_Combiners.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Pict_Datatype.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Pict_Drawing_Adjusters.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Pict_Finders.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Rendering.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/Tree_Layout.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/pict/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pict/index.html
+%%PORTDOCS%%%%DOCSDIR%%/pict/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pict/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_100.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_101.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_102.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_103.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_104.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_105.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_106.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_107.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_108.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_109.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_110.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_111.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_112.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_113.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_114.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_115.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_116.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_117.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_118.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_119.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_120.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_121.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_122.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_123.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_124.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_125.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_126.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_15.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_16.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_17.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_18.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_19.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_20.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_21.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_22.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_23.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_24.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_25.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_26.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_27.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_28.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_29.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_30.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_31.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_32.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_33.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_34.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_35.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_36.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_37.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_38.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_39.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_40.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_41.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_42.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_43.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_44.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_45.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_46.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_47.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_48.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_49.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_50.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_51.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_52.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_53.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_54.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_55.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_56.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_57.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_58.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_59.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_60.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_61.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_62.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_63.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_64.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_65.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_66.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_67.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_68.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_69.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_70.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_71.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_72.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_73.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_74.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_75.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_76.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_77.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_78.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_79.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_80.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_81.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_82.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_83.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_84.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_85.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_86.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_87.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_88.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_89.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_90.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_91.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_92.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_93.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_94.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_95.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_96.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_97.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_98.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/pict_99.png
+%%PORTDOCS%%%%DOCSDIR%%/pict/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/index.html
+%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/picturing-programs/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pkg/FAQ.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/Functions_for_raco_pkg.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/Future_Plans.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/PLaneT_Compatibility.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/Package_Concepts.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/apis.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/pkg/catalog-protocol.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/cmdline.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/db.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/dirs-catalog.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/getting-started.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/git-workflow.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/implementation.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pkg/index.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/lib.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/metadata.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/name.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pkg/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pkg/path.html
+%%PORTDOCS%%%%DOCSDIR%%/pkg/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/pkg/strip.html
+%%PORTDOCS%%%%DOCSDIR%%/plai/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/plai/collector.html
+%%PORTDOCS%%%%DOCSDIR%%/plai/gc2-collector.html
+%%PORTDOCS%%%%DOCSDIR%%/plai/gc2-mutator.html
+%%PORTDOCS%%%%DOCSDIR%%/plai/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plai/index.html
+%%PORTDOCS%%%%DOCSDIR%%/plai/mutator.html
+%%PORTDOCS%%%%DOCSDIR%%/plai/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plai/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plai/plai-scheme.html
+%%PORTDOCS%%%%DOCSDIR%%/plai/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plai/web.html
+%%PORTDOCS%%%%DOCSDIR%%/planet/Developing_Packages_for_PLaneT.html
+%%PORTDOCS%%%%DOCSDIR%%/planet/Using_PLaneT.html
+%%PORTDOCS%%%%DOCSDIR%%/planet/Utility_Libraries.html
+%%PORTDOCS%%%%DOCSDIR%%/planet/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/planet/cmdline.html
+%%PORTDOCS%%%%DOCSDIR%%/planet/hash-lang-planet.html
+%%PORTDOCS%%%%DOCSDIR%%/planet/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/planet/index.html
+%%PORTDOCS%%%%DOCSDIR%%/planet/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/planet/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/planet/search-order.html
+%%PORTDOCS%%%%DOCSDIR%%/planet/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plot/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/plot/compat.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plot/index.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/intro.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/nonrenderer.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plot/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plot/params.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_15.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_16.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_17.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_18.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_19.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_20.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_21.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_22.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_23.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_24.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_25.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_26.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_27.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_28.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_29.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_30.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_31.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_32.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_33.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_34.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_35.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_36.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_37.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_38.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_39.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_40.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_41.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_42.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_43.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_44.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_45.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_46.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_47.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_48.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_49.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_50.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_51.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_52.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_53.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_54.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_55.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_56.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_57.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_58.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_59.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_60.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_61.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_62.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_63.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_64.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_65.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_66.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_67.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_68.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_69.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_70.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_71.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_72.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_73.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_74.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_75.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_76.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_77.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_78.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_79.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_80.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_81.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_82.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_83.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_84.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_85.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_86.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_87.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_88.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_89.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/plot/plotting.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/porting.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/renderer2d.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/renderer3d.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plot/ticks_and_transforms.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/typed-compat.html
+%%PORTDOCS%%%%DOCSDIR%%/plot/utils.html
+%%PORTDOCS%%%%DOCSDIR%%/plt-installer/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/plt-installer/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plt-installer/index.html
+%%PORTDOCS%%%%DOCSDIR%%/plt-installer/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plt-installer/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/plt-installer/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/preprocessor/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/preprocessor/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/preprocessor/index.html
+%%PORTDOCS%%%%DOCSDIR%%/preprocessor/mzpp.html
+%%PORTDOCS%%%%DOCSDIR%%/preprocessor/mztext.html
+%%PORTDOCS%%%%DOCSDIR%%/preprocessor/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/preprocessor/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/preprocessor/overview.html
+%%PORTDOCS%%%%DOCSDIR%%/preprocessor/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/profile/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/profile/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/profile/index.html
+%%PORTDOCS%%%%DOCSDIR%%/profile/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/profile/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/profile/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/quick/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/quick/img0.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/img1.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/img2.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/quick/index.html
+%%PORTDOCS%%%%DOCSDIR%%/quick/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/quick/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_15.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_16.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_17.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_18.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_19.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_20.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_21.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_22.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_23.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_24.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_25.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_26.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_27.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/quick/quick.scrbl
+%%PORTDOCS%%%%DOCSDIR%%/quick/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/index.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/plt-r5rs.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-mod.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/index.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-C.css
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-1.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-10.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-11.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-12.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-13.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-14.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-15.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-16.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-17.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-18.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-19.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-2.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-20.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-21.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-22.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-23.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-24.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-25.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-26.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-27.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-28.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-29.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-3.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-30.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-31.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-32.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-33.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-34.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-35.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-36.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-37.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-38.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-39.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-4.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-40.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-41.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-42.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-43.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-44.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-45.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-46.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-47.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-48.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-49.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-5.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-50.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-51.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-52.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-53.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-54.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-55.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-56.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-57.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-58.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-59.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-6.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-60.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-61.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-62.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-63.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-64.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-65.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-7.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-8.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-9.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-1.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-2.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-3.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-4.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-5.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-6.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-7.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-G-D-8.gif
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-1.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-10.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-11.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-12.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-13.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-14.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-15.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-2.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-3.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-4.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-5.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-6.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-7.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-8.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs-Z-H-9.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs-std/r5rs.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/r5rs_init-mod.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/running.html
+%%PORTDOCS%%%%DOCSDIR%%/r5rs/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/Installing_Libraries.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/Language_Interoperability.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/R6RS_Libraries.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/Running_Top-Level_Programs.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/Using_R6RS_with_DrRacket.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/conformance.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/index.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/libpaths.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/index.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-G-1.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-G-2.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-G-3.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-G-4.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-1.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-10.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-11.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-12.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-13.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-14.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-15.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-16.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-17.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-18.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-19.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-2.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-20.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-21.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-3.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-4.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-5.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-6.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-7.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-8.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-H-9.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib-Z-S.css
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-lib-std/r6rs-lib.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-mod.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/index.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-1.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-10.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-11.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-12.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-13.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-14.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-15.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-16.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-17.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-18.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-19.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-2.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-20.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-21.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-22.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-23.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-24.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-25.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-26.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-27.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-28.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-3.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-4.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-5.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-6.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-7.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-8.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-9.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-1.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-10.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-11.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-12.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-13.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-14.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-15.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-2.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-3.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-4.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-5.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-6.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-7.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-8.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-G-D-9.gif
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-1.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-10.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-11.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-12.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-13.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-14.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-15.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-16.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-17.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-18.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-19.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-2.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-20.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-21.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-3.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-4.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-5.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-6.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-7.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-8.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-H-9.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs-Z-S.css
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/r6rs-std/r6rs.html
+%%PORTDOCS%%%%DOCSDIR%%/r6rs/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/racket.css
+%%PORTDOCS%%%%DOCSDIR%%/racklog/Racklog_Module_Language.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/and-or.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/backtracking.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/racklog/cut.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/glossary.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/racklog/index.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/lv-manip.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/racklog/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/racklog/predicates.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/racket-w-logic.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/set-of.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/simple.html
+%%PORTDOCS%%%%DOCSDIR%%/racklog/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/racklog/unification.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/Acknowlegements.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/Release_Notes.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/Testing_Utilities.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/api.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/index.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/internals.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/philosophy.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/quick-start.html
+%%PORTDOCS%%%%DOCSDIR%%/rackunit/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/raco/API_for_Raw_Compilation.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/_plt-archives.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/raco/c-mods.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/cc.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/collection-names.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/command.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/config-file.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/ctool.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/decompile.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/demod.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/dirs.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/docs.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/exe-dist.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/exe.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/expand.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/getinfo.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/raco/index.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/info_rkt.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/link.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/make.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/matching-platform.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/materialize-user-docs.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/raco/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/raco/pkg.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/planet.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/plt.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/raco-setup-A.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/relative-paths.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/running.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/scribble.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/setup-check-deps.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/setup-info.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/setup-plt-plt.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/setup.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/raco/test.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/unpack.html
+%%PORTDOCS%%%%DOCSDIR%%/raco/xref.html
+%%PORTDOCS%%%%DOCSDIR%%/readline/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/readline/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/readline/index.html
+%%PORTDOCS%%%%DOCSDIR%%/readline/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/readline/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/readline/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/redex/The_Redex_Reference.html
+%%PORTDOCS%%%%DOCSDIR%%/redex/autobib.css
+%%PORTDOCS%%%%DOCSDIR%%/redex/benchmark.html
+%%PORTDOCS%%%%DOCSDIR%%/redex/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/redex/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/redex/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/redex/figure.css
+%%PORTDOCS%%%%DOCSDIR%%/redex/figure.js
+%%PORTDOCS%%%%DOCSDIR%%/redex/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/redex/index.html
+%%PORTDOCS%%%%DOCSDIR%%/redex/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/redex/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/redex/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/redex/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/redex/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/redex/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/redex/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/redex/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/redex/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/redex/tutorial.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Building_New_Contract_Combinators.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Byte_and_String_Input.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Byte_and_String_Output.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Command-Line_Parsing.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Delayed_Evaluation.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Exiting.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Expanding_Top-Level_Forms.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Filesystem.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Generating_A_Unit_from_Context.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Generators.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Interactive_Help.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Kernel_Forms_and_Functions.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Lazy_Data-structure_Contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Legacy_Contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Locations____variable-reference.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Macros.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Manipulating_Paths.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Module_Names_and_Loading.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/More_Path_Utilities.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Namespaces.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Object_and_Class_Contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Printer_Extension.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Random_generation.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Reader_Extension.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Reading.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Sandboxed_Evaluation.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Single-Signature_Modules.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Structural_Matching.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Structure_Type_Property_Contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Surrogates.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Syntax_Quoting__quote-syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Transformer_Helpers.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Unit_Utilities.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/Writing.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/__expression.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/__top-interaction.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/__top.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/all-sync.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/application.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/async-channel.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/attaching-contracts-to-values.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/begin.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/block.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/reference/booleans.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/boxes.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/breakhandler.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/bytestrings.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/case.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/channel.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/chaperones.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/characters.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/collects.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/compoundunits.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/concurrency.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/cont.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/contmarks.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/contract-utilities.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/control.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/createclass.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/createinterface.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/creatingmorestructs.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/creatingunits.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/custodians.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/customport.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/data-structure-contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/data.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/debugging.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/define-sig-form.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/define-struct.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/define.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/dicts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/encodings.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/engine.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/envvars.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/ephemerons.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/eval-model.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/eval.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/exns.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/extflonums.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/extras.css
+%%PORTDOCS%%%%DOCSDIR%%/reference/fasl.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/file-ports.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/finger.png
+%%PORTDOCS%%%%DOCSDIR%%/reference/fixnums.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/flonums.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/for.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/function-contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/futures.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/garbagecollection.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/generic-numbers.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/hashtables.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/icons.css
+%%PORTDOCS%%%%DOCSDIR%%/reference/if.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/include.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/index.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/input-and-output.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/inspectors.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/interactive.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/invokingunits.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/ivaraccess.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/keywords.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/lambda.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/lazy-require.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/let.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/linecol.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/linkinference.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/load-lang.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/local.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/logging.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/magnify.png
+%%PORTDOCS%%%%DOCSDIR%%/reference/match.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/memory.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/mixins.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/model.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/modprotect.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/module.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/mpairs.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/mzlib_class.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/mzlib_unit.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/networking.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/notation.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/number-types.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/numbers.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/objcreation.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/objectequality.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/objectprinting.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/objectserialize.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/objectutils.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/os.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out10.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out11.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out12.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out13.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out14.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out15.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out16.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out2.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out3.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out4.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out5.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out6.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out7.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out8.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/out9.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/pairs.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/parameters.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/parametric-contracts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pathutils.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/performance-hint.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/phantom-bytes.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pipeports.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/places.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/plumbers.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/port-buffers.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/port-lib.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/port-ops.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/ports.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/portstructs.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pretty-print.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/printing.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/procedures.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/quasiquote.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/quote.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/racket_contract_base.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/reader-procs.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/reader.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/readtables.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/regexp.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/require.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/running-sa.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/running.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/runtime.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/security.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/securityguards.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/semaphore.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/sequences.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/sequences_streams.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/serialization.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/set_.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/sets.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/shared.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/single-unit.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/special-comments.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/splicing.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/reference/stratified-body.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/streams.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/stringport.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/strings.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/struct-copy.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/struct-generics.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/structinfo.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/structprops.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/structures.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/structutils.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/stx-patterns.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/stxcerts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/stxcmp.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/stxops.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/stxparam.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/stxprops.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/stxtrans.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/subprocess.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/symbols.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/sync.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/syntax-model.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/syntax-util.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/tcp.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/thread-local-storage.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/threadcells.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/threadgroups.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/threads.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/time.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/trait.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/udp.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/undefined.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/unitcontracts.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/unixpaths.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/unsafe.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/values.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/vectors.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/void.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/wcm.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/weakbox.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/when_unless.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/willexecutor.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/windowspaths.html
+%%PORTDOCS%%%%DOCSDIR%%/release/Draw_and_GUI_5_1.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_10.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_11.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_2.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_3.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_4.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_5.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_6.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_7.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_8.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/HISTORY_9.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/MrEd_100.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/MrEd_100_Framework.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/MzScheme_200.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/MzScheme_300.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/MzScheme_4.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/Racket_5.txt
+%%PORTDOCS%%%%DOCSDIR%%/release/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/release/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/release/index.html
+%%PORTDOCS%%%%DOCSDIR%%/release/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/release/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/release/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/root-info.css
+%%PORTDOCS%%%%DOCSDIR%%/root-info.js
+%%PORTDOCS%%%%DOCSDIR%%/scheme/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/scheme/compat-exe.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scheme/index.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/mred.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/nest.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scheme/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_async-channel.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_base.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_bool.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_class.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_cmdline.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_contract.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_control.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_date.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_dict.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_file.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_fixnum.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_flonum.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_foreign.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_function.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_future.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_generator.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_gui.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_gui_base.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_gui_dynamic.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_help.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_include.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_init.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_language-info.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_list.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_load.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_local.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_match.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_math.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_mpair.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_package.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_path.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_port.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_pretty.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_promise.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_provide-syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_provide-transform.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_provide.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_require-syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_require-transform.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_require.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_runtime-config.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_runtime-path.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_sandbox.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_serialize.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_set.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_shared.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_signature.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_splicing.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_string.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_struct-info.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_stxparam-exptime.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_stxparam.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_surrogate.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_system.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_tcp.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_trait.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_udp.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_unit-exptime.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_unit.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_unsafe_ops.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/scheme_vector.html
+%%PORTDOCS%%%%DOCSDIR%%/scheme/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scribble-common.js
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/html-html.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/html-resources.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/html-xml.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/html.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/index.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/shaded.css
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scribble-pp/text.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble-style.css
+%%PORTDOCS%%%%DOCSDIR%%/scribble.css
+%%PORTDOCS%%%%DOCSDIR%%/scribble/Bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/Book_Format.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/Compatibility_Libraries.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/JFP_Paper_Format.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/LNCS_Paper_Format.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/Miscellaneous.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/Racket_Manual_Format.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/Report_Format.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/SIGPLAN_Paper_Format.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/Version_History.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/base.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/blueboxes.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/scribble/bnf.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/builtin-css.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/builtin-latex.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/config-style.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/config.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/core.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/decode.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/demo-manual.scrbl
+%%PORTDOCS%%%%DOCSDIR%%/scribble/demo.scrbl
+%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-classes.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-forms.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-modules.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-signatures.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/doc-strings.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/doclang.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/docreader.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/eval.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/extra-style.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/generic-prose.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/getting-started.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/how-to-doc.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scribble/inbox.css
+%%PORTDOCS%%%%DOCSDIR%%/scribble/index-entries.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/index.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/internals.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/latex-prefix.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/layers.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/lp.css
+%%PORTDOCS%%%%DOCSDIR%%/scribble/lp.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/manual-css.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/manual-indexing.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/manual-render-style.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/manual.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scribble/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scribble/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/scribble/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/scribble/plt-manuals.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/reader-internals.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/reader.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/reference-style.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/renderer.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/running.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/scheme.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/scribble_manual_code.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/section-links.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/srcdoc.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scribble/tag.html
+%%PORTDOCS%%%%DOCSDIR%%/scribble/xref.html
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/autobib.html
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/bibtex.html
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/figure.html
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/footnotes.html
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/gui-eval.html
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/index.html
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/render-cond.html
+%%PORTDOCS%%%%DOCSDIR%%/scriblib/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/search/aces.png
+%%PORTDOCS%%%%DOCSDIR%%/search/blackjack.png
+%%PORTDOCS%%%%DOCSDIR%%/search/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/search/chat-noir.png
+%%PORTDOCS%%%%DOCSDIR%%/search/checkers.png
+%%PORTDOCS%%%%DOCSDIR%%/search/crazy8s.png
+%%PORTDOCS%%%%DOCSDIR%%/search/gcalc.png
+%%PORTDOCS%%%%DOCSDIR%%/search/ginrummy.png
+%%PORTDOCS%%%%DOCSDIR%%/search/gobblet.png
+%%PORTDOCS%%%%DOCSDIR%%/search/gofish.png
+%%PORTDOCS%%%%DOCSDIR%%/search/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/search/index.html
+%%PORTDOCS%%%%DOCSDIR%%/search/jewel.png
+%%PORTDOCS%%%%DOCSDIR%%/search/lights-out.png
+%%PORTDOCS%%%%DOCSDIR%%/search/memory.png
+%%PORTDOCS%%%%DOCSDIR%%/search/mines.png
+%%PORTDOCS%%%%DOCSDIR%%/search/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/search/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/search/paint-by-numbers.png
+%%PORTDOCS%%%%DOCSDIR%%/search/parcheesi.png
+%%PORTDOCS%%%%DOCSDIR%%/search/plt-index.js
+%%PORTDOCS%%%%DOCSDIR%%/search/pousse.png
+%%PORTDOCS%%%%DOCSDIR%%/search/same.png
+%%PORTDOCS%%%%DOCSDIR%%/search/search-context.html
+%%PORTDOCS%%%%DOCSDIR%%/search/search.js
+%%PORTDOCS%%%%DOCSDIR%%/search/slidey.png
+%%PORTDOCS%%%%DOCSDIR%%/search/spider.png
+%%PORTDOCS%%%%DOCSDIR%%/search/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/search/tally-maze.png
+%%PORTDOCS%%%%DOCSDIR%%/sgl/bitmaps.html
+%%PORTDOCS%%%%DOCSDIR%%/sgl/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/sgl/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/sgl/gl-vectors.html
+%%PORTDOCS%%%%DOCSDIR%%/sgl/gl.html
+%%PORTDOCS%%%%DOCSDIR%%/sgl/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/sgl/index.html
+%%PORTDOCS%%%%DOCSDIR%%/sgl/init.html
+%%PORTDOCS%%%%DOCSDIR%%/sgl/main.html
+%%PORTDOCS%%%%DOCSDIR%%/sgl/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/sgl/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/sgl/overview.html
+%%PORTDOCS%%%%DOCSDIR%%/sgl/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/index.html
+%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/slatex-wrap/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Configuration.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Constants_and_Layout_Variables.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Creating_Slide_Presentations.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Making_Slides.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Pict-Staging_Helper.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Primary_Slide_Functions.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Slide_Registration.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Slides_to_Picts.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Typesetting_Racket_Code_in_Slideshow.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/Viewer_Control.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/doc-bibliography.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/index.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/legacy.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/play.html
+%%PORTDOCS%%%%DOCSDIR%%/slideshow/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/srfi/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/srfi/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/srfi/index.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/srfi/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-1.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-11.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-13.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-14.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-16.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-17.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-19.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-2.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-23.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-25.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-26.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-27.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-28.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-29.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-30.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-31.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-34.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-35.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-38.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-39.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-4.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-40.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-41.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-42.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-43.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-45.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-48.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-5.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-54.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-57.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-59.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-6.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-60.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-61.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-62.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-63.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-64.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-66.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-67.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-69.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-7.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-71.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-74.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-78.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-8.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-86.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-87.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-9.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-98.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/index.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-1.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-11.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-13.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-14.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-16.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-17.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-19.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-2.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-23.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-25.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-26.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-27.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-28.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-29.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-30.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-31.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-34.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-35.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-38.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-39.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-4.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-40.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-41/srfi-41.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-41/streams1.jpg
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-41/streams2.jpg
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-42.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-43.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-45.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-48.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-5.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-54.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-57.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-59.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-6.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-60.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-61.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-62.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-63.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-64.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-66.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-1.png
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-2.png
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-3.png
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-4.png
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-5.png
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-6.png
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-7.png
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-G-D-8.png
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67-Z-S.css
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-67/srfi-67.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-69.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-7.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-71.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-74.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-78.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-8.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-86.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-87.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-9.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/srfi-std/srfi-98.html
+%%PORTDOCS%%%%DOCSDIR%%/srfi/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/stepper/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/stepper/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/stepper/index.html
+%%PORTDOCS%%%%DOCSDIR%%/stepper/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/stepper/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/stepper/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/string-constants/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/string-constants/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/string-constants/index.html
+%%PORTDOCS%%%%DOCSDIR%%/string-constants/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/string-constants/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/string-constants/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/style/Acknowledgment.html
+%%PORTDOCS%%%%DOCSDIR%%/style/Choosing_the_Right_Construct.html
+%%PORTDOCS%%%%DOCSDIR%%/style/Language_and_Performance.html
+%%PORTDOCS%%%%DOCSDIR%%/style/Textual_Matters.html
+%%PORTDOCS%%%%DOCSDIR%%/style/Todo_List__Call_for_Contributions.html
+%%PORTDOCS%%%%DOCSDIR%%/style/Units_of_Code.html
+%%PORTDOCS%%%%DOCSDIR%%/style/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/style/branch-and-commit.html
+%%PORTDOCS%%%%DOCSDIR%%/style/correct-maintain-speed.html
+%%PORTDOCS%%%%DOCSDIR%%/style/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/style/index.html
+%%PORTDOCS%%%%DOCSDIR%%/style/mut-rec-contracts.png
+%%PORTDOCS%%%%DOCSDIR%%/style/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/style/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/style/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/style/testing.html
+%%PORTDOCS%%%%DOCSDIR%%/swindle/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/swindle/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/swindle/index.html
+%%PORTDOCS%%%%DOCSDIR%%/swindle/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/swindle/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/swindle/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/syntax-color/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/syntax-color/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/syntax-color/index.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax-color/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/syntax-color/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/syntax-color/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Datum_Pattern_Matching.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Debugging_and_Inspection_Tools.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Defining_Simple_Macros.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Experimental.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Library_Syntax_Classes_and_Literal_Sets.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Literal_Sets_and_Conventions.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/More_Keyword_Arguments.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Optional_Keyword_Arguments.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Parsing_Syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Parsing_for_Bodies.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Phases_and_Reusable_Syntax_Classes.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Preserving_Source_Locations.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Source_Locations.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/Unsafe_for_Clause_Transforms.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/syntax/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/docprovide.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/exprc.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/syntax/index.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/module-helpers.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/syntax/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/syntax/reader-helpers.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse-examples.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse-intro.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse-patterns.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse-specifying.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/stxparse.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/syntax-helpers.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/toplevel.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/transformer-helpers.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/trusted-xforms.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/uniform-meanings.html
+%%PORTDOCS%%%%DOCSDIR%%/syntax/varied-meanings.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdp2htdp.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpPlanet_Cute_Images.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpabstraction.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpbatch-io.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdphtdp-port.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpimage-guide.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpimage.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/2htdpuniverse.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/arrow-gui.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/arrow.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/balls.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/convert.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/dir.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/docs.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/door-real.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/door-sim.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/draw.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/elevator.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/gamepad.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/graphing.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/guess-gui.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/guess.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/gui.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/hangman-play.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/hangman.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/htdp.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/image.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/index.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/io.css
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/lkup-gui.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/master-play.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/master.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/matrix.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/nuworld.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_10.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_100.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_101.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_102.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_103.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_104.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_105.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_106.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_107.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_108.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_109.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_11.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_110.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_111.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_112.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_113.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_114.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_115.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_116.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_117.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_118.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_119.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_12.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_120.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_121.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_122.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_123.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_124.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_125.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_126.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_127.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_128.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_129.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_13.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_130.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_131.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_132.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_133.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_134.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_135.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_136.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_137.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_138.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_139.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_14.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_140.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_141.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_142.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_143.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_144.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_145.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_146.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_147.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_148.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_149.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_15.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_15.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_150.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_151.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_152.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_153.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_154.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_155.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_156.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_157.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_158.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_159.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_16.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_16.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_160.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_161.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_162.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_163.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_164.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_165.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_166.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_167.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_168.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_169.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_17.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_17.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_170.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_171.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_172.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_173.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_174.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_175.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_176.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_177.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_178.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_179.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_18.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_18.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_180.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_181.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_182.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_183.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_184.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_185.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_186.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_187.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_188.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_189.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_19.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_19.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_190.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_191.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_192.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_193.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_194.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_195.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_196.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_197.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_198.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_199.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_2.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_20.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_20.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_21.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_21.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_22.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_22.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_23.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_23.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_24.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_24.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_25.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_25.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_26.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_26.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_27.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_27.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_28.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_28.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_29.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_29.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_3.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_30.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_30.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_31.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_31.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_32.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_32.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_33.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_33.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_34.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_34.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_35.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_35.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_36.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_36.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_37.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_37.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_38.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_38.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_39.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_39.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_4.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_40.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_40.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_41.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_41.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_42.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_42.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_43.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_43.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_44.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_44.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_45.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_45.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_46.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_46.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_47.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_47.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_48.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_48.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_49.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_49.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_5.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_50.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_50.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_51.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_51.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_52.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_52.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_53.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_53.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_54.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_54.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_55.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_55.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_56.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_56.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_57.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_57.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_58.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_58.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_59.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_59.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_6.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_60.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_60.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_61.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_62.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_63.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_64.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_65.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_66.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_67.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_68.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_69.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_7.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_70.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_71.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_72.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_73.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_74.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_75.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_76.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_77.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_78.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_79.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_8.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_80.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_81.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_82.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_83.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_84.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_85.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_86.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_87.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_88.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_89.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_9.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_90.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_91.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_92.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_93.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_94.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_95.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_96.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_97.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_98.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/pict_99.svg
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/server.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/show-queen.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/triangle-xxx.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/universe.png
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/world.html
+%%PORTDOCS%%%%DOCSDIR%%/teachpack/world.png
+%%PORTDOCS%%%%DOCSDIR%%/test-engine/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/test-engine/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/test-engine/index.html
+%%PORTDOCS%%%%DOCSDIR%%/test-engine/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/test-engine/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/test-engine/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/tool/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/tool/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/tool/index.html
+%%PORTDOCS%%%%DOCSDIR%%/tool/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/tool/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/tool/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/tools/Backwards_Compatibility.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/Check_Syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/Cooperating_with_Background_Check_Syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/Creating_New_Kinds_of_DrRacket_Frames.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/Editor_Modes.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/Expanding_and_Breaking.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/Extending_the_Existing_DrRacket_Classes.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/Language-Specific_Capabilities.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/Signatures.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/Teaching_Languages.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/adding-languages.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/tools/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_debug.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_eval.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_frame.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_get_extend.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_help-desk.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_language-configuration.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_language.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_modes.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_module-language-tools.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_module-language.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_rep.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/drracket_unit.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/implementing-tools.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/tools/index.html
+%%PORTDOCS%%%%DOCSDIR%%/tools/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/tools/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/tools/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/trace/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/trace/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/trace/index.html
+%%PORTDOCS%%%%DOCSDIR%%/trace/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/trace/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/trace/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/beginning.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/caveats.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/index.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/more.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/occurrence-typing.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/optimization.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/quick.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/typed-untyped-interaction.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-guide/types.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Compatibility_Languages.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Experimental_Features.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Exploring_Types.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Legacy_Forms.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Libraries_Provided_With_Typed_Racket.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Optimization_in_Typed_Racket.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Typed_Classes.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Typed_Racket_Syntax_Without_Type_Checking.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Typed_Regions.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/Utilities.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/footnote.css
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/index.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/special-forms.html
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/ts-reference/type-ref.html
+%%PORTDOCS%%%%DOCSDIR%%/turtles/Traditional_Turtles.html
+%%PORTDOCS%%%%DOCSDIR%%/turtles/Value_Turtles.html
+%%PORTDOCS%%%%DOCSDIR%%/turtles/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/turtles/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/turtles/index.html
+%%PORTDOCS%%%%DOCSDIR%%/turtles/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/turtles/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/turtles/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-find/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/unstable-find/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-find/index.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-find/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-find/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-find/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/index.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-flonum/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/Scribble_Utilities.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/Slideshow_Presentations.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/gui-notify.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/gui-prefs.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/index.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_15.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_16.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_17.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_18.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_19.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_20.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_21.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_22.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_23.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_24.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_25.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_26.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_27.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_28.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_29.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_30.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_31.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_32.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_33.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_34.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_35.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_36.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_37.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_38.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_39.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_40.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_41.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_42.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_43.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_44.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_45.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_46.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_47.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_48.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_49.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_50.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_51.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_52.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_53.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_54.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/ppict.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/snip.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-gui/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/index.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_10.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_11.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_12.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_13.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_14.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_2.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_3.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_4.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_5.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_6.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_7.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_8.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/pict_9.png
+%%PORTDOCS%%%%DOCSDIR%%/unstable-redex/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable/2d.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/Automata__Compiling_State_Machines.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/Debugging.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/Definitions.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/Functions.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/Hash_Tables.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/Logging.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/Mark_Parameters.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/Parameter_Groups.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/Pretty-Printing.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/unstable/bytes.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/class-iop.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/contract.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/custom-write.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/error.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/future.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/guidelines.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable/index.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/lazy-require.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/list.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/macro-testing.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/match.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/open-place.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/options.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable/recontract.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/sandbox.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/sequence.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/unstable/string.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/struct.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/syntax.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/temp-c.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/unix-socket.html
+%%PORTDOCS%%%%DOCSDIR%%/unstable/wrapc.html
+%%PORTDOCS%%%%DOCSDIR%%/version/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/version/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/version/index.html
+%%PORTDOCS%%%%DOCSDIR%%/version/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/version/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/version/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/Troubleshooting_and_Tips.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/Web_Servers.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/cache-table.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/closure.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/connection-manager.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-files.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-filter.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-host.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-lift.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-log.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-passwords.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-pathprocedure.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-sequencer.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-server-unit.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-servlets.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-stat.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch-timeout.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatch.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/dispatchers.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/filesystem-map.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/gzip.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/index.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/limit.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/mime-types.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/misc-util.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/mod-map.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/private.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/timer.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/url-param.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server-internal/web-server.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/web-server/dispatch.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/faq.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/formlets.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/http.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/web-server/index.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/web-server/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/web-server/page.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/run.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/servlet.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/web-server/stateless.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/templates.html
+%%PORTDOCS%%%%DOCSDIR%%/web-server/test.html
+%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/index.html
+%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/win32-ssl/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/xml/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/xml/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/xml/index.html
+%%PORTDOCS%%%%DOCSDIR%%/xml/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/xml/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/xml/stamp.sxref
+%%PORTDOCS%%%%DOCSDIR%%/xrepl/blueboxes.rktd
+%%PORTDOCS%%%%DOCSDIR%%/xrepl/in.sxref
+%%PORTDOCS%%%%DOCSDIR%%/xrepl/index.html
+%%PORTDOCS%%%%DOCSDIR%%/xrepl/out0.sxref
+%%PORTDOCS%%%%DOCSDIR%%/xrepl/out1.sxref
+%%PORTDOCS%%%%DOCSDIR%%/xrepl/stamp.sxref