revise and simplify the publication process - tgtimes - The Gopher Times
 (HTM) git clone git://bitreich.org/tgtimes git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/tgtimes
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
       ---
 (DIR) commit db1f127cfd4135855546e17d8fb620999a5786b5
 (DIR) parent 5e93fde82608670ffff48b0b086a5143dd283a10
 (HTM) Author: glenda <glenda@9front.local>
       Date:   Sat, 23 Oct 2021 17:03:46 +0000
       
       revise and simplify the publication process
       
       Diffstat:
         M Makefile                            |      20 +++++++++++++++-----
         A README.md                           |      36 +++++++++++++++++++++++++++++++
         R news/bitreich/2021-10-01T18-51-36-… |       0 
         R news/bitreich/2021-10-03T16-14-18-… |       0 
         R news/bitreich/2021-10-10T14-25-18-… |       0 
         R news/bitreich/2021-10-15T15-56-54-… |       0 
         A bitreich/mkfile                     |      23 +++++++++++++++++++++++
         D mkbitreich                          |      23 -----------------------
         M mkfile                              |      36 ++++++++++++++-----------------
         D news/tgtimes.mw                     |      16 ----------------
         D news/tgtimes.pdf                    |       0 
         D news/tgtimes.ps                     |    4479 -------------------------------
         A opus                                |       1 +
         R news/part/a-newspaper-for-gopher.m… |       0 
         R news/part/bitreich-10k-meme-ban-pa… |       0 
         R news/part/bitreich-10k-meme-ban-pa… |       0 
         R news/part/bitreich-analgram-authen… |       0 
         R news/part/bitreich-ban-party-on-20… |       0 
         R news/part/bitreich-ban-party-resul… |       0 
         R news/part/local-other-newspapers.m… |       0 
         R news/part/nixers-thread-nixers-boo… |       0 
         R news/part/nixers-thread-web-tag.mw… |       0 
         R news/part/world-of-animals.mw -> o… |       0 
         R footer.mw -> opus1/footer.mw        |       0 
         A opus1/tgtimes1.mw                   |      17 +++++++++++++++++
         A opus1/tgtimes1.pdf                  |       0 
         R news/tgtimes.txt -> opus1/tgtimes1… |       0 
         R tmac/tmac.w -> tmac.w               |       0 
       
       28 files changed, 108 insertions(+), 4543 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       @@ -1,14 +1,24 @@
       -PS= << /PageSize [323 670] >> setpagedevice
       +include opus
       +
       +date=$$(date +%Y-%m-%d)
       +ps='<< /PageSize [323 670] >> setpagedevice'
       +tgtimes=opus$v/tgtimes$v
        
        .SUFFIXES: .mw .txt .ps .pdf
        
        .mw.pdf:
       -        9 troff tmac/tmac.w $< | tr2post -P '${PS}' | ps2pdf - >$@
       +        9 troff tmac.w $< | tr2post -P ${ps} | ps2pdf - >$@
        
        .mw.txt:
       -        9 nroff tmac/tmac.w $< | 9 col -xb | awk '/./{X=0} /^$$/{X++} X<5' >$@
       +        9 nroff tmac.w $< | 9 col -xb | awk '/./{X=0} /^$$/{X++} X<5' >$@
        
       -all: news/tgtimes.pdf news/tgtimes.txt
       +all: ${tgtimes}.pdf ${tgtimes}.txt
        
        clean:
       -        rm -f news/tgtimes.{pdf,txt}
       +        rm -f ${tgtimes}.pdf ${tgtimes}.txt
       +
       +publish: ${tgtimes}.pdf ${tgtimes}.txt
       +        mkdir -p archive/${date}
       +        cp ${tgtimes}.txt archive/${date}/tgtimes-${date}-opus$v.txt
       +        cp ${tgtimes}.pdf archive/${date}/tgtimes-${date}-opus$v.pdf
       +        cp ${tgtimes}.mw archive/${date}/tgtimes-${date}-opus$v.mw
 (DIR) diff --git a/README.md b/README.md
       @@ -0,0 +1,36 @@
       +The Gopher Times
       +================
       +Welcome to editor office of The Gopher Times.
       +
       +The newspaper uses Plan 9 version of troff(1).  Install plan9port and
       +run `make` on Linux/BSD/...  or run `mk` on Plan 9.
       +
       +```
       +opus                        - "v=1", or "v=2", ..., to maintain by hand
       +opus$v/article-*.mw        - troff source of the articles included
       +opus$v/tgtimes$v.mw        - the troff source that includes the articles
       +opus$v/tgtimes$v.pdf        - working draft, pdf version (troff)
       +opus$v/tgtimes$v.txt        - working draft, plain text version (nroff)
       +archive/YYYY-MM-DD/        - generated from opus$v with `mk publish`
       +archive/YYYY-MM-DD-errata1/ - archive/YYYY-MM-DD, copied by hand
       +```
       +
       +Generating a document
       +---------------------
       +`make` on Linux/BSD/... or `mk` will generate `opus$v/tgtimes$v.{pdf,txt}`.
       +For generating another document, run `make thedocument.pdf` for instance.
       +The main `tgtimes$v.mw` file has usually the header of the document, then
       +a list of `.so opus$v/article-[...].mw` to source each article.
       +
       +Publishing an edition
       +---------------------
       +1. Run `make clean publish` or `mk publish` to create `YYYY-MM-DD/` from `opus$v`.
       +2. Update the version with `echo v=123 >opus`
       +3. Commit the changes and push.
       +
       +Publishing an errata
       +--------------------
       +1. Run `cp -r YYYY-MM-DD YYYY-MM-DD-errata1` to prepare the new release.
       +2. Edit the files in the `opus$v` directory that match the publication.
       +3. Run `make YYYY-MM-DD-errata1/tgtimes$v.{pdf,txt}` to rebuild it.
       +4. Commit the changes and push.
 (DIR) diff --git a/news/bitreich/2021-10-01T18-51-36-539143.md b/bitreich/2021-10-01T18-51-36-539143.md
 (DIR) diff --git a/news/bitreich/2021-10-03T16-14-18-028866.md b/bitreich/2021-10-03T16-14-18-028866.md
 (DIR) diff --git a/news/bitreich/2021-10-10T14-25-18-412716.md b/bitreich/2021-10-10T14-25-18-412716.md
 (DIR) diff --git a/news/bitreich/2021-10-15T15-56-54-998729.md b/bitreich/2021-10-15T15-56-54-998729.md
 (DIR) diff --git a/bitreich/mkfile b/bitreich/mkfile
       @@ -0,0 +1,23 @@
       +gph=/n/bitreich/bitreich/gopher
       +srv=/srv/ssh.bitreich
       +
       +bitreich.md:V: $gph
       +        mkdir -p news/bitreich
       +        md=`{sed -rn 's,.*\|([^|]*phlog/[^|]*).*,'$gph'\1,p' $gph/news.gph | tail -n15}
       +        cp $md news/bitreich
       +
       +bitreich.mw:V:
       +        mkdir -p news/part
       +        for(md in `{ls news/bitreich/*.md}){
       +                mw=`{sed '1,2d; s/[^0-9A-Za-z]+/-/g; s/-*$//; 3q' $md}
       +                mw=news/article-bitreich-^`{echo $mw | tr A-Z a-z}^.mw
       +                author=`{sed -n 2p $md}
       +                sed '1,2d; 3s/^/# /' $md | notmarkdown-ms |
       +                sed '1s/.NH [0-9]+/.SH '$author'/' >$mw
       +        }
       +
       +$gph: $srv
       +        mount -c /srv/ssh.bitreich /n/bitreich
       +
       +$srv:
       +        sshfs -r / -s ssh.bitreich $user@bitreich.org
 (DIR) diff --git a/mkbitreich b/mkbitreich
       @@ -1,23 +0,0 @@
       -gph=/n/bitreich/bitreich/gopher
       -srv=/srv/ssh.bitreich
       -
       -bitreich.md:V: $gph
       -        mkdir -p news/bitreich
       -        md=`{sed -rn 's,.*\|([^|]*phlog/[^|]*).*,'$gph'\1,p' $gph/news.gph | tail -n15}
       -        cp $md news/bitreich
       -
       -bitreich.mw:V:
       -        mkdir -p news/part
       -        for(md in `{ls news/bitreich/*.md}){
       -                mw=`{sed '1,2d; s/[^0-9A-Za-z]+/-/g; s/-*$//; 3q' $md}
       -                mw=news/part/bitreich-^`{echo $mw | tr A-Z a-z}^.mw
       -                author=`{sed -n 2p $md}
       -                sed '1,2d; 3s/^/# /' $md | notmarkdown-ms |
       -                sed '1s/.NH [0-9]+/.SH '$author'/' >$mw
       -        }
       -
       -$gph: $srv
       -        mount -c /srv/ssh.bitreich /n/bitreich
       -
       -$srv:
       -        sshfs -r / -s ssh.bitreich $user@bitreich.org
 (DIR) diff --git a/mkfile b/mkfile
       @@ -1,29 +1,25 @@
       +<opus
       +
        date=`{date -f YYYY-MM-DD}
        ps='<< /PageSize [323 670] >> setpagedevice'
       -tmac=/sys/lib/tmac/tmac
       +tgtimes=opus$v/tgtimes$v
        
       -%.txt:V: %.mw
       -        nroff -mw $prereq | col -xb | awk '/./{X=0} /^$/{X++} X<5' >$target
       +%.txt:V: tmac.w %.mw
       +        nroff $prereq | col -xb | awk '/./{X=0} /^$/{X++} X<5' >$target
        
       -%.pdf:V: %.mw
       -        troff -mw $prereq | aux/tr2post -P $ps | ps2pdf >$target        
       +%.pdf:V: tmac.w %.mw
       +        troff $prereq | aux/tr2post -P $ps | ps2pdf >$target
        
       -all:V: news/tgtimes.pdf news/tgtimes.txt
       +all:V: $tgtimes.pdf $tgtimes.txt
        
       -view:V: $base.mw $tmac.w
       -        troff -mw $base.mw | proof
       +view:V: tmac.w $tgtimes.mw
       +        troff $prereq | proof
        
        clean:V:
       -        rm -f news/tgtimes.^(pdf txt)
       -
       -publish:V: $gph news/tgtimes.pdf news/tgtimes.txt
       -        cp news/tgtimes.pdf $gph/tgtimes/tgtimes-$date.pdf
       -        cp news/tgtimes.txt $gph/tgtimes/tgtimes-$date.txt
       -
       -archive:V:
       -        mv news $date
       -
       -$tmac.w:
       -        bind -a tmac /sys/lib/tmac
       +        rm -f $tgtimes.pdf $tgtimes.txt
        
       -<mkbitreich
       +publish:V: $tgtimes.pdf $tgtimes.txt
       +        mkdir -p archive/$date
       +        cp $tgtimes.txt archive/$date/tgtimes-$date-opus$v.txt
       +        cp $tgtimes.pdf archive/$date/tgtimes-$date-opus$v.pdf
       +        cp $tgtimes.mw archive/$date/tgtimes-$date-opus$v.mw
 (DIR) diff --git a/news/tgtimes.mw b/news/tgtimes.mw
       @@ -1,16 +0,0 @@
       -.TL
       -The Gopher Times
       -.AB
       -Opus 1 - Gopher news and more - Nov. 2021
       -.AE
       -.
       -.so news/part/a-newspaper-for-gopher.mw
       -.so news/part/nixers-thread-nixers-book-club.mw
       -.so news/part/nixers-thread-web-tag.mw
       -.so news/part/bitreich-analgram-authentication.mw
       -.so news/part/bitreich-ban-party-on-2021-10-03.mw
       -.so news/part/bitreich-ban-party-results.mw
       -.so news/part/local-other-newspapers.mw
       -.so news/part/bitreich-10k-meme-ban-party-on-2021-10-31.mw
       -.so news/part/world-of-animals.mw
       -.so footer.mw
 (DIR) diff --git a/news/tgtimes.pdf b/news/tgtimes.pdf
       Binary files differ.
 (DIR) diff --git a/news/tgtimes.ps b/news/tgtimes.ps
       @@ -1,4479 +0,0 @@
       -%!PS-Adobe-2.0
       -%%Version: 0.1
       -%%Creator: troff, Plan 9 edition
       -%%DocumentFonts: (atend)
       -%%Pages: (atend)
       -%%EndComments
       -%
       -% Version 3.3.2 prologue for troff files.
       -%
       -
       -/#copies 1 store
       -/aspectratio 1 def
       -/formsperpage 1 def
       -/landscape false def
       -/linewidth .3 def
       -/magnification 1 def
       -/margin 0 def
       -/orientation 0 def
       -/resolution 720 def
       -/rotation 1 def
       -/xoffset 0 def
       -/yoffset 0 def
       -
       -/roundpage true def
       -/useclippath true def
       -/pagebbox [0 0 612 792] def
       -
       -/R  /Times-Roman def
       -/I  /Times-Italic def
       -/B  /Times-Bold def
       -/BI /Times-BoldItalic def
       -/H  /Helvetica def
       -/HI /Helvetica-Oblique def
       -/HB /Helvetica-Bold def
       -/HX /Helvetica-BoldOblique def
       -/CW /Courier def
       -/CO /Courier def
       -/CI /Courier-Oblique def
       -/CB /Courier-Bold def
       -/CX /Courier-BoldOblique def
       -/PA /Palatino-Roman def
       -/PI /Palatino-Italic def
       -/PB /Palatino-Bold def
       -/PX /Palatino-BoldItalic def
       -/Hr /Helvetica-Narrow def
       -/Hi /Helvetica-Narrow-Oblique def
       -/Hb /Helvetica-Narrow-Bold def
       -/Hx /Helvetica-Narrow-BoldOblique def
       -/KR /Bookman-Light def
       -/KI /Bookman-LightItalic def
       -/KB /Bookman-Demi def
       -/KX /Bookman-DemiItalic def
       -/AR /AvantGarde-Book def
       -/AI /AvantGarde-BookOblique def
       -/AB /AvantGarde-Demi def
       -/AX /AvantGarde-DemiOblique def
       -/NR /NewCenturySchlbk-Roman def
       -/NI /NewCenturySchlbk-Italic def
       -/NB /NewCenturySchlbk-Bold def
       -/NX /NewCenturySchlbk-BoldItalic def
       -/ZD /ZapfDingbats def
       -/ZI /ZapfChancery-MediumItalic def
       -/S  /S def
       -/S1 /S1 def
       -/GR /Symbol def
       -
       -/inch {72 mul} bind def
       -/min {2 copy gt {exch} if pop} bind def
       -
       -/setup {
       -        counttomark 2 idiv {def} repeat pop
       -
       -        landscape {/orientation 90 orientation add def} if
       -        /scaling 72 resolution div def
       -        linewidth setlinewidth
       -        1 setlinecap
       -
       -        pagedimensions
       -        xcenter ycenter translate
       -        orientation rotation mul rotate
       -        width 2 div neg height 2 div translate
       -        xoffset inch yoffset inch neg translate
       -        margin 2 div dup neg translate
       -        magnification dup aspectratio mul scale
       -        scaling scaling scale
       -
       -        addmetrics
       -        0 0 moveto
       -} def
       -
       -/pagedimensions {
       -        useclippath userdict /gotpagebbox known not and {
       -                /pagebbox [clippath pathbbox newpath] def
       -                roundpage currentdict /roundpagebbox known and {roundpagebbox} if
       -        } if
       -        pagebbox aload pop
       -        4 -1 roll exch 4 1 roll 4 copy
       -        landscape {4 2 roll} if
       -        sub /width exch def
       -        sub /height exch def
       -        add 2 div /xcenter exch def
       -        add 2 div /ycenter exch def
       -        userdict /gotpagebbox true put
       -} def
       -
       -/addmetrics {
       -        /Symbol /S null Sdefs cf
       -        /Times-Roman /S1 StandardEncoding dup length array copy S1defs cf
       -} def
       -
       -/pagesetup {
       -        /page exch def
       -        currentdict /pagedict known currentdict page known and {
       -                page load pagedict exch get cvx exec
       -        } if
       -} def
       -
       -/decodingdefs [
       -        {counttomark 2 idiv {y moveto show} repeat}
       -        {neg /y exch def counttomark 2 idiv {y moveto show} repeat}
       -        {neg moveto {2 index stringwidth pop sub exch div 0 32 4 -1 roll widthshow} repeat}
       -        {neg moveto {spacewidth sub 0.0 32 4 -1 roll widthshow} repeat}
       -        {counttomark 2 idiv {y moveto show} repeat}
       -        {neg setfunnytext}
       -] def
       -
       -/setdecoding {/t decodingdefs 3 -1 roll get bind def} bind def
       -
       -/w {neg moveto show} bind def
       -/m {neg dup /y exch def moveto} bind def
       -/done {/lastpage where {pop lastpage} if} def
       -
       -/f {
       -        dup /font exch def findfont exch
       -        dup /ptsize exch def scaling div dup /size exch def scalefont setfont
       -        linewidth ptsize mul scaling 10 mul div setlinewidth
       -        /spacewidth ( ) stringwidth pop def
       -} bind def
       -
       -/changefont {
       -        /fontheight exch def
       -        /fontslant exch def
       -        currentfont [
       -                1 0
       -                fontheight ptsize div fontslant sin mul fontslant cos div
       -                fontheight ptsize div
       -                0 0
       -        ] makefont setfont
       -} bind def
       -
       -/sf {f} bind def
       -
       -/cf {
       -        dup length 2 idiv
       -        /entries exch def
       -        /chtab exch def
       -        /newencoding exch def
       -        /newfont exch def
       -
       -        findfont dup length 1 add dict
       -        /newdict exch def
       -        {1 index /FID ne {newdict 3 1 roll put}{pop pop} ifelse} forall
       -
       -        newencoding type /arraytype eq {newdict /Encoding newencoding put} if
       -
       -        newdict /Metrics entries dict put
       -        newdict /Metrics get
       -        begin
       -                chtab aload pop
       -                1 1 entries {pop def} for
       -                newfont newdict definefont pop
       -        end
       -} bind def
       -
       -%
       -% A few arrays used to adjust reference points and character widths in some
       -% of the printer resident fonts. If square roots are too high try changing
       -% the lines describing /radical and /radicalex to,
       -%
       -%        /radical        [0 -75 550 0]
       -%        /radicalex        [-50 -75 500 0]
       -%
       -% Move braceleftbt a bit - default PostScript character is off a bit.
       -%
       -
       -/Sdefs [
       -        /bracketlefttp                [201 500]
       -        /bracketleftbt                [201 500]
       -        /bracketrighttp                [-81 380]
       -        /bracketrightbt                [-83 380]
       -        /braceleftbt                [203 490]
       -        /bracketrightex                [220 -125 500 0]
       -        /radical                [0 0 550 0]
       -        /radicalex                [-50 0 500 1]
       -        /parenleftex                [-20 -170 0 0]
       -        /integral                [100 -50 500 0]
       -        /infinity                [10 -75 730 0]
       -] def
       -
       -/S1defs [
       -        /underscore                [0 80 500 0]
       -        /endash                        [7 90 650 0]
       -] def
       -%
       -% Tries to round clipping path dimensions, as stored in array pagebbox, so they
       -% match one of the known sizes in the papersizes array. Lower left coordinates
       -% are always set to 0.
       -%
       -
       -/roundpagebbox {
       -    7 dict begin
       -        /papersizes [8.5 inch 11 inch 14 inch 17 inch] def
       -
       -        /mappapersize {
       -                /val exch def
       -                /slop .5 inch def
       -                /diff slop def
       -                /j 0 def
       -                0 1 papersizes length 1 sub {
       -                        /i exch def
       -                        papersizes i get val sub abs
       -                        dup diff le {/diff exch def /j i def} {pop} ifelse
       -                } for
       -                diff slop lt {papersizes j get} {val} ifelse
       -        } def
       -
       -        pagebbox 0 0 put
       -        pagebbox 1 0 put
       -        pagebbox dup 2 get mappapersize 2 exch put
       -        pagebbox dup 3 get mappapersize 3 exch put
       -    end
       -} bind def
       -
       -%%EndProlog
       -%%BeginSetup
       -mark
       -%
       -% Encoding vector and redefinition of findfont for the ISO Latin1 standard.
       -% The 18 characters missing from ROM based fonts on older printers are noted
       -% below.
       -%
       -
       -/ISOLatin1Encoding [
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /space
       -        /exclam
       -        /quotedbl
       -        /numbersign
       -        /dollar
       -        /percent
       -        /ampersand
       -        /quoteright
       -        /parenleft
       -        /parenright
       -        /asterisk
       -        /plus
       -        /comma
       -        /minus
       -        /period
       -        /slash
       -        /zero
       -        /one
       -        /two
       -        /three
       -        /four
       -        /five
       -        /six
       -        /seven
       -        /eight
       -        /nine
       -        /colon
       -        /semicolon
       -        /less
       -        /equal
       -        /greater
       -        /question
       -        /at
       -        /A
       -        /B
       -        /C
       -        /D
       -        /E
       -        /F
       -        /G
       -        /H
       -        /I
       -        /J
       -        /K
       -        /L
       -        /M
       -        /N
       -        /O
       -        /P
       -        /Q
       -        /R
       -        /S
       -        /T
       -        /U
       -        /V
       -        /W
       -        /X
       -        /Y
       -        /Z
       -        /bracketleft
       -        /backslash
       -        /bracketright
       -        /asciicircum
       -        /underscore
       -        /quoteleft
       -        /a
       -        /b
       -        /c
       -        /d
       -        /e
       -        /f
       -        /g
       -        /h
       -        /i
       -        /j
       -        /k
       -        /l
       -        /m
       -        /n
       -        /o
       -        /p
       -        /q
       -        /r
       -        /s
       -        /t
       -        /u
       -        /v
       -        /w
       -        /x
       -        /y
       -        /z
       -        /braceleft
       -        /bar
       -        /braceright
       -        /asciitilde
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /.notdef
       -        /dotlessi
       -        /grave
       -        /acute
       -        /circumflex
       -        /tilde
       -        /macron
       -        /breve
       -        /dotaccent
       -        /dieresis
       -        /.notdef
       -        /ring
       -        /cedilla
       -        /.notdef
       -        /hungarumlaut
       -        /ogonek
       -        /caron
       -        /space
       -        /exclamdown
       -        /cent
       -        /sterling
       -        /currency
       -        /yen
       -        /brokenbar                % missing
       -        /section
       -        /dieresis
       -        /copyright
       -        /ordfeminine
       -        /guillemotleft
       -        /logicalnot
       -        /hyphen
       -        /registered
       -        /macron
       -        /degree                        % missing
       -        /plusminus                % missing
       -        /twosuperior                % missing
       -        /threesuperior                % missing
       -        /acute
       -        /mu                        % missing
       -        /paragraph
       -        /periodcentered
       -        /cedilla
       -        /onesuperior                % missing
       -        /ordmasculine
       -        /guillemotright
       -        /onequarter                % missing
       -        /onehalf                % missing
       -        /threequarters                % missing
       -        /questiondown
       -        /Agrave
       -        /Aacute
       -        /Acircumflex
       -        /Atilde
       -        /Adieresis
       -        /Aring
       -        /AE
       -        /Ccedilla
       -        /Egrave
       -        /Eacute
       -        /Ecircumflex
       -        /Edieresis
       -        /Igrave
       -        /Iacute
       -        /Icircumflex
       -        /Idieresis
       -        /Eth                        % missing
       -        /Ntilde
       -        /Ograve
       -        /Oacute
       -        /Ocircumflex
       -        /Otilde
       -        /Odieresis
       -        /multiply                % missing
       -        /Oslash
       -        /Ugrave
       -        /Uacute
       -        /Ucircumflex
       -        /Udieresis
       -        /Yacute                        % missing
       -        /Thorn                        % missing
       -        /germandbls
       -        /agrave
       -        /aacute
       -        /acircumflex
       -        /atilde
       -        /adieresis
       -        /aring
       -        /ae
       -        /ccedilla
       -        /egrave
       -        /eacute
       -        /ecircumflex
       -        /edieresis
       -        /igrave
       -        /iacute
       -        /icircumflex
       -        /idieresis
       -        /eth                        % missing
       -        /ntilde
       -        /ograve
       -        /oacute
       -        /ocircumflex
       -        /otilde
       -        /odieresis
       -        /divide                        % missing
       -        /oslash
       -        /ugrave
       -        /uacute
       -        /ucircumflex
       -        /udieresis
       -        /yacute                        % missing
       -        /thorn                        % missing
       -        /ydieresis
       -] def
       -
       -/NewFontDirectory FontDirectory maxlength dict def
       -
       -%
       -% Apparently no guarantee findfont is defined in systemdict so the obvious
       -%
       -%        systemdict /findfont get exec
       -%
       -% can generate an error. So far the only exception is a VT600 (version 48.0).
       -%
       -
       -userdict /@RealFindfont known not {
       -        userdict begin
       -                /@RealFindfont systemdict begin /findfont load end def
       -        end
       -} if
       -
       -/findfont {
       -        dup NewFontDirectory exch known not {
       -                dup
       -                %dup systemdict /findfont get exec        % not always in systemdict
       -                dup userdict /@RealFindfont get exec
       -                dup /Encoding get StandardEncoding eq {
       -                        dup length dict begin
       -                                {1 index /FID ne {def}{pop pop} ifelse} forall
       -                                /Encoding ISOLatin1Encoding def
       -                                currentdict
       -                        end
       -                        /DummyFontName exch definefont
       -                } if
       -                NewFontDirectory 3 1 roll put
       -        } if
       -        NewFontDirectory exch get
       -} bind def
       -
       -<< /PageSize [323 670] >> setpagedevice
       -setup
       -%%EndSetup
       -%%Page: 1 1
       -/saveobj save def
       -mark
       -1 pagesetup
       -30 /Times-Bold f
       -(The Gopher Times) 411 560 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 784 w
       -12 /Times-Italic f
       -(Opus) 541 924 w
       -(1 \255) 824 924 w
       -(Gopher) 984 924 w
       -(news) 1380 924 w
       -(and more) 1650 924 w
       -(\255) 2136 924 w
       -(Nov. 2021) 2206 924 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 1064 w
       -12 /Times-Roman f
       -(josuah) 2770 1474 w
       -16 /Times-Bold f
       -(A Newspaper for Gopher) 136 1474 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 1614 w
       -12 /Times-Roman f
       -(Starting) 216 1838 w
       -(from) 654 1838 w
       -(today,) 944 1838 w
       -12 /Times-Italic f
       -(The) 1297 1838 w
       -(Gopher) 1533 1838 w
       -(Times) 1955 1838 w
       -12 /Times-Roman f
       -(is) 2297 1838 w
       -(going) 2433 1838 w
       -(to) 2762 1838 w
       -(be) 2911 1838 w
       -(published.) 216 1978 w
       -(How) 782 1978 w
       -(can) 1052 1978 w
       -(a) 1256 1978 w
       -(paper\255oriented) 1347 1978 w
       -(journal) 2085 1978 w
       -(make) 2465 1978 w
       -(sense) 2764 1978 w
       -(in this) 216 2118 w
       -(hypermedia) 545 2118 w
       -([1]) 1142 2118 w
       -(era?) 1312 2118 w
       -(Rather) 216 2342 w
       -(than) 578 2342 w
       -(a) 827 2342 w
       -(continuous) 922 2342 w
       -(feed) 1492 2342 w
       -(of) 1740 2342 w
       -(upmost) 1883 2342 w
       -(shocking) 2281 2342 w
       -(head\255) 2758 2342 w
       -(lines,) 216 2482 w
       -12 /Times-Italic f
       -(The) 532 2482 w
       -(Gopher) 770 2482 w
       -(Times) 1194 2482 w
       -12 /Times-Roman f
       -(publishes) 1539 2482 w
       -(news) 2052 2482 w
       -(you) 2356 2482 w
       -(can) 2594 2482 w
       -(read) 2818 2482 w
       -(without) 216 2622 w
       -(a) 614 2622 w
       -(cookiewall) 697 2622 w
       -(or) 1254 2622 w
       -(paywall.) 1384 2622 w
       -(Paper) 216 2846 w
       -(newspapers) 519 2846 w
       -(go through a) 1108 2846 w
       -(long) 1746 2846 w
       -(chain:) 1991 2846 w
       -(reporters,) 2316 2846 w
       -(pho\255) 2804 2846 w
       -(tographers,) 216 2986 w
       -(redactors,) 807 2986 w
       -(editors,) 1331 2986 w
       -(columnists,) 1743 2986 w
       -(layout) 2350 2986 w
       -(artists,) 2705 2986 w
       -(typesetters,) 216 3126 w
       -(printers,) 801 3126 w
       -(carriers) 1239 3126 w
       -(and) 1639 3126 w
       -(other) 1853 3126 w
       -(supportive) 2141 3126 w
       -(techni\255) 2690 3126 w
       -(cians...) 216 3266 w
       -(and are) 613 3266 w
       -(sold for) 992 3266 w
       -(a) 1393 3266 w
       -(quarter.) 1476 3266 w
       -(The) 216 3490 w
       -(web) 455 3490 w
       -(considerably) 707 3490 w
       -(shackled) 1374 3490 w
       -(the) 1847 3490 w
       -(landscape:) 2048 3490 w
       -(the) 2609 3490 w
       -(high) 2810 3490 w
       -(speed) 216 3630 w
       -(of) 542 3630 w
       -(computers) 695 3630 w
       -(made) 1249 3630 w
       -(real\255time) 1562 3630 w
       -(text) 2050 3630 w
       -(news) 2283 3630 w
       -(a) 2581 3630 w
       -(reality,) 2686 3630 w
       -(where) 216 3770 w
       -(time) 545 3770 w
       -(from) 797 3770 w
       -(Trump's) 1069 3770 w
       -(tweet) 1521 3770 w
       -(announcements) 1819 3770 w
       -(to) 2604 3770 w
       -(publi\255) 2736 3770 w
       -(cation is) 216 3910 w
       -(below a) 651 3910 w
       -(few hours.) 1057 3910 w
       -(This) 216 4134 w
       -(journal) 486 4134 w
       -(diverts) 883 4134 w
       -(the) 1267 4134 w
       -(present) 1470 4134 w
       -(norm) 1873 4134 w
       -(by) 2184 4134 w
       -(90\260) 2361 4134 w
       -(by) 2586 4134 w
       -(using) 2763 4134 w
       -12 /Courier f
       -(troff\(1\)) 216 4274 w
       -12 /Times-Roman f
       -(as) 828 4274 w
       -(its) 963 4274 w
       -(foundation:) 1113 4274 w
       -(a) 1703 4274 w
       -12 /Times-Italic f
       -(typesetter) 1791 4274 w
       -12 /Times-Roman f
       -(producing) 2294 4274 w
       -(stat\255) 2816 4274 w
       -(ic) 216 4414 w
       -(documents) 333 4414 w
       -(ready to be) 884 4414 w
       -(printed.) 1447 4414 w
       -(A) 216 4638 w
       -(new) 341 4638 w
       -(markdown) 579 4638 w
       -(to) 1131 4638 w
       -(troff) 1264 4638 w
       -(converter) 1518 4638 w
       -([2]) 2011 4638 w
       -(as) 2191 4638 w
       -(well) 2331 4638 w
       -(as) 2578 4638 w
       -(an) 2718 4638 w
       -(en\255) 2871 4638 w
       -(tire) 216 4778 w
       -(custom) 413 4778 w
       -(macro) 797 4778 w
       -(set) 1133 4778 w
       -12 /Courier f
       -(mw) 1303 4778 w
       -12 /Times-Roman f
       -([3]) 1483 4778 w
       -(are) 1659 4778 w
       -(built) 1841 4778 w
       -(to) 2100 4778 w
       -(fit) 2231 4778 w
       -(screens) 2376 4778 w
       -(of) 2766 4778 w
       -(all) 2903 4778 w
       -(shapes, and build\255up the) 216 4918 w
       -(sensibility of) 1414 4918 w
       -(an actual) 2071 4918 w
       -(journal.) 2531 4918 w
       -10 /S1 f
       -(____________________) 266 5764 w
       -10 /Times-Roman f
       -([1] term used by Roy Fielding \(Apache httpd\)) 316 5884 w
       -([2] git://git.z0.is/notmarkdown) 316 6004 w
       -([3] git://bitreich.org/tgtimes) 316 6124 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 1 1
       -%%Page: 2 2
       -/saveobj save def
       -mark
       -2 pagesetup
       -12 /Times-Roman f
       -(nixers) 2790 386 w
       -16 /Times-Bold f
       -(This month) 136 386 w
       -(in) 966 386 w
       -(Nixers Book) 1141 386 w
       -(Club) 2020 386 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 526 w
       -12 /Times-Roman f
       -(There) 216 750 w
       -(are) 536 750 w
       -(a) 722 750 w
       -(lot) 815 750 w
       -(of) 983 750 w
       -(books) 1123 750 w
       -(in) 1450 750 w
       -(a) 1584 750 w
       -(library,) 1677 750 w
       -(and) 2068 750 w
       -(it) 2281 750 w
       -(is) 2389 750 w
       -(the) 2510 750 w
       -(role) 2697 750 w
       -(of) 2924 750 w
       -(teachers) 216 890 w
       -(to) 646 890 w
       -(build) 777 890 w
       -(up) 1063 890 w
       -(a) 1221 890 w
       -(sequence) 1312 890 w
       -(of) 1789 890 w
       -(books) 1927 890 w
       -(to) 2252 890 w
       -(learn) 2384 890 w
       -(a) 2662 890 w
       -(topic.) 2753 890 w
       -(This) 216 1030 w
       -(Nixers.net) 471 1030 w
       -(forum) 1009 1030 w
       -(thread) 1343 1030 w
       -(follows) 1683 1030 w
       -(the) 2084 1030 w
       -(path) 2271 1030 w
       -(of) 2518 1030 w
       -(Operat\255) 2658 1030 w
       -(ing System) 216 1170 w
       -(and UNIX working and design.) 785 1170 w
       -12 /Times-Bold f
       -(The) 216 1394 w
       -(UNIX) 496 1394 w
       -(Programming) 881 1394 w
       -(Environment:) 1681 1394 w
       -12 /Times-Roman f
       -(from) 2482 1394 w
       -(shell) 2796 1394 w
       -(scripting) 336 1534 w
       -(to) 790 1534 w
       -(C) 915 1534 w
       -(programming) 1026 1534 w
       -(with) 1712 1534 w
       -(UNIX) 1957 1534 w
       -(system) 2286 1534 w
       -(calls) 2652 1534 w
       -(by) 2904 1534 w
       -(Kernighan himself.) 336 1674 w
       -9 /Courier f
       -(https://nixers.net/showthread.php?tid=2390) 261 1848 w
       -12 /Times-Bold f
       -(The) 216 2072 w
       -(UNIX\255HATERS) 504 2072 w
       -(Handbook:) 1430 2072 w
       -12 /Times-Roman f
       -(A) 2100 2072 w
       -(semi\255humorous) 2275 2072 w
       -(edited) 336 2212 w
       -(compilation) 667 2212 w
       -(of) 1280 2212 w
       -(messages) 1417 2212 w
       -(to) 1908 2212 w
       -(the) 2038 2212 w
       -(UNIX\255HATERS) 2221 2212 w
       -(mailing list.) 336 2352 w
       -9 /Courier f
       -(https://nixers.net/showthread.php?tid=2417) 261 2526 w
       -12 /Times-Bold f
       -(The) 216 2750 w
       -(Art) 467 2750 w
       -(of) 697 2750 w
       -(Unix) 848 2750 w
       -(Programming:) 1146 2750 w
       -12 /Times-Roman f
       -(by) 1957 2750 w
       -(Eric) 2128 2750 w
       -(S.) 2379 2750 w
       -(Raymond,) 2527 2750 w
       -(history and culture) 336 2890 w
       -(of) 1268 2890 w
       -(Unix programming) 1398 2890 w
       -9 /Courier f
       -(https://nixers.net/showthread.php?tid=2466) 261 3064 w
       -12 /Times-Bold f
       -(Computer) 216 3288 w
       -(Science) 792 3288 w
       -(from) 1222 3288 w
       -(the) 1525 3288 w
       -(Bottom) 1735 3288 w
       -(Up:) 2165 3288 w
       -12 /Times-Roman f
       -(a) 2408 3288 w
       -(shop) 2512 3288 w
       -(class) 2790 3288 w
       -(for) 336 3428 w
       -(computer) 511 3428 w
       -(science:) 1000 3428 w
       -(where) 1422 3428 w
       -(do) 1749 3428 w
       -(you) 1904 3428 w
       -(go) 2119 3428 w
       -(to) 2274 3428 w
       -(learn) 2402 3428 w
       -(what) 2676 3428 w
       -(is) 2943 3428 w
       -(under) 336 3568 w
       -(the) 639 3568 w
       -(hood?) 816 3568 w
       -9 /Courier f
       -(https://nixers.net/showthread.php?tid=2508) 261 3742 w
       -12 /Times-Roman f
       -(nixers) 2790 4152 w
       -16 /Times-Bold f
       -(The good) 136 4152 w
       -(old) 813 4152 w
       -(web) 1068 4152 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 4292 w
       -12 /Times-Roman f
       -(That) 216 4516 w
       -(thread) 470 4516 w
       -(in) 804 4516 w
       -(the) 932 4516 w
       -(Nixers.net) 1113 4516 w
       -(forum) 1644 4516 w
       -(proposes) 1971 4516 w
       -(to) 2431 4516 w
       -(recognize) 2558 4516 w
       -(a) 216 4656 w
       -(website) 299 4656 w
       -(given a) 696 4656 w
       -(small) 1076 4656 w
       -(screenshot.) 1368 4656 w
       -(Hackers) 216 4880 w
       -(sometimes) 638 4880 w
       -(build webpages) 1184 4880 w
       -(for) 1964 4880 w
       -(a) 2134 4880 w
       -(software) 2217 4880 w
       -(project,) 2660 4880 w
       -(a) 216 5020 w
       -(community,) 342 5020 w
       -(even) 994 5020 w
       -(an) 1293 5020 w
       -(error) 1479 5020 w
       -(page,) 1785 5020 w
       -(which) 2114 5020 w
       -(never) 2480 5020 w
       -(ever) 2818 5020 w
       -(changed.) 216 5160 w
       -(Website) 716 5160 w
       -(appearance) 1151 5160 w
       -(sometimes) 1730 5160 w
       -(enter) 2287 5160 w
       -(deep) 2568 5160 w
       -(into) 2836 5160 w
       -(our) 216 5300 w
       -(memories.) 406 5300 w
       -(We) 216 5524 w
       -(remember) 442 5524 w
       -(places) 989 5524 w
       -(we) 1349 5524 w
       -(lived) 1549 5524 w
       -(in,) 1851 5524 w
       -(faces) 2036 5524 w
       -(of) 2343 5524 w
       -(people) 2504 5524 w
       -(we) 2885 5524 w
       -(met...) 216 5664 w
       -(but) 553 5664 w
       -(also) 743 5664 w
       -(how) 972 5664 w
       -(web) 1213 5664 w
       -(pages) 1447 5664 w
       -(look?) 1755 5664 w
       -(Are) 2087 5664 w
       -(web) 2301 5664 w
       -(pages) 2535 5664 w
       -(like) 2843 5664 w
       -(places) 216 5804 w
       -(we) 546 5804 w
       -(frequently visit?) 715 5804 w
       -(You might) 1561 5804 w
       -(be) 2109 5804 w
       -(surprised:) 2252 5804 w
       -9 /Courier f
       -(https://nixers.net/Thread\255Web\255Tag) 261 5978 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 2 2
       -%%Page: 3 3
       -/saveobj save def
       -mark
       -3 pagesetup
       -12 /Times-Roman f
       -(20h) 2904 386 w
       -16 /Times-Bold f
       -(Analgram) 136 386 w
       -(Authentication) 869 386 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 526 w
       -12 /Times-Roman f
       -(As) 216 750 w
       -(you) 396 750 w
       -(know,) 653 750 w
       -(bitreich) 996 750 w
       -(is) 1411 750 w
       -(always) 1569 750 w
       -(ahead) 1949 750 w
       -(of) 2274 750 w
       -(time) 2450 750 w
       -(and) 2711 750 w
       -(in) 2930 750 w
       -(introducing) 216 890 w
       -(new) 813 890 w
       -(technology.) 1054 890 w
       -(We) 1660 890 w
       -(now) 1868 890 w
       -(offer) 2117 890 w
       -(members) 2393 890 w
       -(the) 2877 890 w
       -(authentication to all) 216 1030 w
       -(services) 1203 1030 w
       -(via) 1620 1030 w
       -9 /Courier f
       -(gopher://bitreich.org/I/memecache/bitreich\2552fa.jpg) 261 1204 w
       -12 /Times-Roman f
       -(Via) 216 1428 w
       -(your) 441 1428 w
       -(analprint) 713 1428 w
       -(scan) 1193 1428 w
       -(you) 1458 1428 w
       -(are) 1691 1428 w
       -(distinguished) 1920 1428 w
       -(from) 2616 1428 w
       -(all) 2903 1428 w
       -(other) 216 1568 w
       -(humans.) 510 1568 w
       -(No) 961 1568 w
       -(other) 1153 1568 w
       -(human) 1446 1568 w
       -(has) 1819 1568 w
       -(such) 2025 1568 w
       -(an) 2291 1568 w
       -(analprint) 2450 1568 w
       -(as) 2924 1568 w
       -(you have. You are) 216 1708 w
       -(special.) 1124 1708 w
       -(In) 216 1932 w
       -(case) 358 1932 w
       -(you) 606 1932 w
       -(want) 828 1932 w
       -(to) 1103 1932 w
       -(authenticate,) 1239 1932 w
       -(come) 1892 1932 w
       -(on) 2194 1932 w
       -(#bitreich\255anal) 2356 1932 w
       -(on) 216 2072 w
       -(IRC) 386 2072 w
       -(and) 636 2072 w
       -(send) 859 2072 w
       -(the) 1129 2072 w
       -(picture) 1326 2072 w
       -(of) 1710 2072 w
       -(your) 1859 2072 w
       -(analprint.) 2128 2072 w
       -(We) 2635 2072 w
       -(call) 2850 2072 w
       -(this) 216 2212 w
       -(the) 433 2212 w
       -(analgram) 623 2212 w
       -(authentication.) 1113 2212 w
       -(It) 1868 2212 w
       -(is) 2015 2212 w
       -(secure,) 2139 2212 w
       -(cannot) 2548 2212 w
       -(be) 2911 2212 w
       -(easily) 216 2352 w
       -(copied) 554 2352 w
       -(and) 961 2352 w
       -(the) 1191 2352 w
       -(biometric) 1425 2352 w
       -(feature) 1944 2352 w
       -(is) 2364 2352 w
       -(hidden) 2501 2352 w
       -(for) 2884 2352 w
       -(most) 216 2492 w
       -(of) 490 2492 w
       -(your) 630 2492 w
       -(life.) 890 2492 w
       -(No) 1121 2492 w
       -(simple) 1307 2492 w
       -(photo) 1669 2492 w
       -(can) 1983 2492 w
       -(steal) 2189 2492 w
       -(this) 2450 2492 w
       -(creden\255) 2665 2492 w
       -(tial.) 216 2632 w
       -(Current) 216 2856 w
       -(work) 621 2856 w
       -(is) 905 2856 w
       -(done) 1024 2856 w
       -(to) 1295 2856 w
       -(make) 1427 2856 w
       -(this) 1725 2856 w
       -(a) 1938 2856 w
       -(standard) 2029 2856 w
       -(for) 2474 2856 w
       -(all) 2652 2856 w
       -(U.S.) 2811 2856 w
       -(and) 216 2996 w
       -(EU) 433 2996 w
       -(funded) 636 2996 w
       -(projects) 1013 2996 w
       -(and) 1438 2996 w
       -(contracts.) 1655 2996 w
       -(Hopefully) 2163 2996 w
       -(the) 2694 2996 w
       -(fu\255) 2884 2996 w
       -(ture) 216 3136 w
       -(is) 433 3136 w
       -(anal\255gram!) 544 3136 w
       -(Sincerely yours, Chief) 216 3360 w
       -(Backwater) 1324 3360 w
       -(Officer) 1866 3360 w
       -(\(CRO\)) 2242 3360 w
       -(20h) 2904 3770 w
       -16 /Times-Bold f
       -(BAN Party on) 136 3770 w
       -(2021\25510\25503) 1144 3770 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 3910 w
       -12 /Times-Roman f
       -(This) 216 4134 w
       -(Sunday,) 513 4134 w
       -(on) 955 4134 w
       -(2021\25510\25503,) 1157 4134 w
       -(at) 1799 4134 w
       -(13:00) 1968 4134 w
       -(UTC,) 2294 4134 w
       -(we) 2645 4134 w
       -(will) 2836 4134 w
       -(have) 216 4274 w
       -(another) 487 4274 w
       -(BAN) 922 4274 w
       -(party,) 1219 4274 w
       -(to) 1542 4274 w
       -(play) 1682 4274 w
       -(the) 1965 4274 w
       -(new) 2158 4274 w
       -(Supertuxkart) 2403 4274 w
       -(release.) 216 4414 w
       -(There) 613 4414 w
       -(are) 926 4414 w
       -(new) 1136 4414 w
       -(tracks,) 1369 4414 w
       -(new) 1719 4414 w
       -(drivers) 1951 4414 w
       -(and) 2318 4414 w
       -(more) 2524 4414 w
       -(fun.) 2834 4414 w
       -(For) 216 4554 w
       -(this) 415 4554 w
       -(BAN) 623 4554 w
       -(party) 908 4554 w
       -(we) 1218 4554 w
       -(set) 1390 4554 w
       -(a) 1557 4554 w
       -(new) 1643 4554 w
       -(time) 1875 4554 w
       -(at) 2153 4554 w
       -(1pm,) 2273 4554 w
       -(so) 2550 4554 w
       -(friends) 2690 4554 w
       -(from) 216 4694 w
       -(America) 480 4694 w
       -(and Australia) 923 4694 w
       -(can join in at) 1597 4694 w
       -(a) 2252 4694 w
       -(natural) 2335 4694 w
       -(time.) 2699 4694 w
       -(Sincerely yours, Main Gaming Officer) 216 4918 w
       -(\(MGO\)) 2104 4918 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 3 3
       -%%Page: 4 4
       -/saveobj save def
       -mark
       -4 pagesetup
       -12 /Times-Roman f
       -(20h) 2904 386 w
       -16 /Times-Bold f
       -(BAN Party Results) 136 386 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 526 w
       -12 /Times-Roman f
       -(Today) 216 750 w
       -(we) 557 750 w
       -(had) 731 750 w
       -(a) 969 750 w
       -(two) 1057 750 w
       -(part) 1271 750 w
       -(BAN) 1492 750 w
       -(party.) 1808 750 w
       -(The) 2119 750 w
       -(first) 2339 750 w
       -(onw) 2568 750 w
       -(was) 2838 750 w
       -(teeworlds,) 216 890 w
       -(since) 761 890 w
       -(this) 1056 890 w
       -(was) 1279 890 w
       -(easily) 1543 890 w
       -(running) 1873 890 w
       -(and) 2296 890 w
       -(through) 2548 890 w
       -(a) 2971 890 w
       -(community) 216 1030 w
       -(effort) 820 1030 w
       -(openra) 1142 1030 w
       -(in) 1553 1030 w
       -(the) 1701 1030 w
       -(newest) 1902 1030 w
       -(appimage) 2319 1030 w
       -(got) 2870 1030 w
       -(setup) 216 1170 w
       -(in) 599 1170 w
       -(some) 822 1170 w
       -(virtualbox) 1205 1170 w
       -(debianesque) 1799 1170 w
       -(setup) 2521 1170 w
       -(on) 2904 1170 w
       -(FreeBSD.) 216 1310 w
       -(It) 739 1310 w
       -(really) 860 1310 w
       -(ran.) 1181 1310 w
       -(And) 1411 1310 w
       -(so) 1664 1310 w
       -(in) 1848 1310 w
       -(a) 1989 1310 w
       -(combined) 2089 1310 w
       -(effort) 2610 1310 w
       -(of) 2924 1310 w
       -(Dutch) 216 1450 w
       -(Australian) 563 1450 w
       -(and) 1118 1450 w
       -(German) 1345 1450 w
       -(armies,) 1786 1450 w
       -(we) 2222 1450 w
       -(defeated) 2416 1450 w
       -(the) 2877 1450 w
       -(enemies) 216 1590 w
       -(using) 658 1590 w
       -(all) 967 1590 w
       -(kind) 1166 1590 w
       -(of) 1428 1590 w
       -(weaponry,) 1576 1590 w
       -(from) 2126 1590 w
       -(naval) 2408 1590 w
       -(to) 2716 1590 w
       -(air\255) 2857 1590 w
       -(craft) 216 1730 w
       -(units. Long live) 466 1730 w
       -(Bitreich!) 1255 1730 w
       -(Yes, it) 216 1954 w
       -(was) 560 1954 w
       -(very much fun.) 776 1954 w
       -(Next) 216 2178 w
       -(time) 505 2178 w
       -(with) 776 2178 w
       -(more) 1046 2178 w
       -(players) 1349 2178 w
       -(we) 1752 2178 w
       -(can) 1947 2178 w
       -(play) 2170 2178 w
       -(even) 2434 2178 w
       -(bigger) 2717 2178 w
       -(maps. Everyone) 216 2318 w
       -(is) 1019 2318 w
       -(invited!) 1130 2318 w
       -(Sincerely yours, Chief) 216 2542 w
       -(Gaming Officer) 1324 2542 w
       -(\(CGO\)) 2117 2542 w
       -(josuah) 2770 2952 w
       -16 /Times-Bold f
       -(Other newspaper projects) 136 2952 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 3092 w
       -12 /Times-Bold f
       -(OpenBSD) 216 3316 w
       -(Webzine:) 776 3316 w
       -12 /Times-Roman f
       -(As) 1309 3316 w
       -(a) 1487 3316 w
       -(complement) 1585 3316 w
       -(to) 2225 3316 w
       -(undeadly.org,) 2364 3316 w
       -(the) 336 3456 w
       -(OpenBSD) 516 3456 w
       -(Webzine) 1041 3456 w
       -(provides) 1501 3456 w
       -(a) 1949 3456 w
       -(condensed) 2036 3456 w
       -(summary) 2576 3456 w
       -(of) 336 3596 w
       -(what) 466 3596 w
       -(is) 729 3596 w
       -(new on OpenBSD.) 840 3596 w
       -9 /Courier f
       -(https://webzine.puffy.cafe/) 261 3770 w
       -12 /Times-Bold f
       -(The) 216 3994 w
       -(Webpage:) 458 3994 w
       -12 /Times-Roman f
       -(Aggregation) 1020 3994 w
       -(of) 1662 3994 w
       -(multiple) 1804 3994 w
       -(RSS) 2249 3994 w
       -(feeds,) 2505 3994 w
       -(ren\255) 2831 3994 w
       -(dered) 336 4134 w
       -(server\255side) 638 4134 w
       -(into) 1201 4134 w
       -(a) 1425 4134 w
       -(paper) 1514 4134 w
       -(newspaper) 1816 4134 w
       -(looking) 2364 4134 w
       -(page.) 2768 4134 w
       -(Similarly) 336 4274 w
       -(to) 819 4274 w
       -(The) 946 4274 w
       -(Gopher) 1165 4274 w
       -(Times,) 1557 4274 w
       -(the) 1921 4274 w
       -(layout) 2101 4274 w
       -(of) 2436 4274 w
       -(the) 2570 4274 w
       -(docu\255) 2751 4274 w
       -(ment) 336 4414 w
       -(published is) 607 4414 w
       -(static.) 1216 4414 w
       -9 /Courier f
       -(https://webzine.puffy.cafe/) 261 4588 w
       -12 /Times-Bold f
       -(Low\255Tech) 216 4812 w
       -(Magazine:) 791 4812 w
       -12 /Times-Roman f
       -(This) 1387 4812 w
       -(magazine) 1657 4812 w
       -(published) 2174 4812 w
       -(a) 2699 4812 w
       -(sim\255) 2809 4812 w
       -(plistic) 336 4952 w
       -(version) 680 4952 w
       -(for) 1082 4952 w
       -(its) 1270 4952 w
       -(solar\255powered) 1432 4952 w
       -(server,) 2165 4952 w
       -(with) 2535 4952 w
       -(dith\255) 2796 4952 w
       -(ered) 336 5092 w
       -(images) 598 5092 w
       -(and) 995 5092 w
       -(other) 1224 5092 w
       -(techniques) 1527 5092 w
       -(to) 2097 5092 w
       -(save) 2247 5092 w
       -(bandwidth) 2517 5092 w
       -(and reducing the) 336 5232 w
       -(workload server\255side.) 1166 5232 w
       -9 /Courier f
       -(https://solar.lowtechmagazine.com) 261 5406 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 4 4
       -%%Page: 5 5
       -/saveobj save def
       -mark
       -5 pagesetup
       -12 /Times-Roman f
       -(20h) 2904 386 w
       -16 /Times-Bold f
       -(10k) 136 386 w
       -(Meme BAN party on) 426 386 w
       -(2021\25510\25531) 1889 386 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 526 w
       -12 /Times-Roman f
       -(The) 216 750 w
       -(Bitreich) 439 750 w
       -(Meme) 864 750 w
       -(database) 1208 750 w
       -(is) 1658 750 w
       -(approaching) 1806 750 w
       -(10k) 2436 750 w
       -(memes.) 2653 750 w
       -(To) 216 890 w
       -(celebrate) 433 890 w
       -(this,) 951 890 w
       -(we) 1241 890 w
       -(will) 1465 890 w
       -(hold) 1768 890 w
       -(a) 2067 890 w
       -(BAN) 2205 890 w
       -(party) 2572 890 w
       -(on) 2904 890 w
       -(2021\25510\25531) 216 1030 w
       -(on) 831 1030 w
       -(11:00) 1036 1030 w
       -(GMT) 1365 1030 w
       -(\(12:00) 1686 1030 w
       -(CET\).) 2084 1030 w
       -(The) 2434 1030 w
       -(time) 2674 1030 w
       -(is) 2943 1030 w
       -(adapted) 216 1170 w
       -(so) 664 1170 w
       -(bitreich) 816 1170 w
       -(people) 1229 1170 w
       -(from) 1595 1170 w
       -(America) 1875 1170 w
       -(and) 2334 1170 w
       -(Australia) 2583 1170 w
       -(can join in at) 216 1310 w
       -(the) 871 1310 w
       -(same) 1048 1310 w
       -(time.) 1325 1310 w
       -(Games) 216 1534 w
       -(we) 579 1534 w
       -(will) 748 1534 w
       -(play:) 966 1534 w
       -12 /LucidaSansUnicode20 f
       -(") 216 1758 w
       -12 /Times-Roman f
       -(OpenRA) 336 1758 w
       -(Dune2k,) 798 1758 w
       -(CNC) 1244 1758 w
       -(and) 1527 1758 w
       -(RA) 1737 1758 w
       -(Be) 1940 1758 w
       -(sure) 2110 1758 w
       -(to) 2347 1758 w
       -(have) 2478 1758 w
       -(a) 2741 1758 w
       -(cur\255) 2831 1758 w
       -(rent) 336 1898 w
       -(version due) 553 1898 w
       -(to multiplayer) 1140 1898 w
       -(protocol) 1850 1898 w
       -(changes.) 2281 1898 w
       -12 /LucidaSansUnicode20 f
       -(") 216 2122 w
       -12 /Times-Roman f
       -(Teeworlds) 336 2122 w
       -12 /LucidaSansUnicode20 f
       -(") 216 2346 w
       -12 /Times-Roman f
       -(SuperTuxKart) 336 2346 w
       -(on) 1087 2346 w
       -(extreme) 1273 2346 w
       -(level) 1726 2346 w
       -(Be) 2026 2346 w
       -(sure) 2225 2346 w
       -(to) 2491 2346 w
       -(run) 2651 2346 w
       -(the) 2877 2346 w
       -(newest) 336 2486 w
       -(version) 708 2486 w
       -(because) 1101 2486 w
       -(of) 1519 2486 w
       -(new) 1658 2486 w
       -(race) 1896 2486 w
       -(tracks) 2134 2486 w
       -(and) 2460 2486 w
       -(charac\255) 2672 2486 w
       -(ters.) 336 2626 w
       -12 /LucidaSansUnicode20 f
       -(") 216 2850 w
       -12 /Times-Roman f
       -(Armagetronad) 336 2850 w
       -12 /LucidaSansUnicode20 f
       -(") 216 3074 w
       -12 /Times-Roman f
       -(Wireguard) 336 3074 w
       -12 /LucidaSansUnicode20 f
       -(") 216 3298 w
       -12 /Times-Roman f
       -(Whatever) 336 3298 w
       -(game) 832 3298 w
       -(you like) 1122 3298 w
       -(to play.) 1543 3298 w
       -(Everyone) 216 3522 w
       -(is) 712 3522 w
       -(welcome.) 830 3522 w
       -(We) 1330 3522 w
       -(will) 1533 3522 w
       -(be) 1758 3522 w
       -(using) 1908 3522 w
       -(a) 2207 3522 w
       -(mumble) 2298 3522 w
       -(server) 2731 3522 w
       -(for) 216 3662 w
       -(instant) 402 3662 w
       -(audio) 770 3662 w
       -(talk,) 1083 3662 w
       -(where) 1340 3662 w
       -(the) 1678 3662 w
       -(details) 1901 3662 w
       -(are) 2262 3662 w
       -(revealed) 2453 3662 w
       -(on) 2904 3662 w
       -(#bitreich\255en) 216 3802 w
       -(on) 841 3802 w
       -(BAN) 1035 3802 w
       -(party) 1331 3802 w
       -(day.) 1622 3802 w
       -(Please) 1869 3802 w
       -(join) 2220 3802 w
       -(there) 2453 3802 w
       -(to) 2738 3802 w
       -(get) 2877 3802 w
       -(further) 216 3942 w
       -(details.) 573 3942 w
       -(Sincerely yours, Chief) 216 4166 w
       -(BAN Officer) 1324 4166 w
       -(\(CBO\)) 1982 4166 w
       -(0x1bi) 2810 4576 w
       -16 /Times-Bold f
       -(World) 136 4576 w
       -(of) 621 4576 w
       -(Animals) 794 4576 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 4716 w
       -12 /Times-Roman f
       -(Back) 216 4940 w
       -(in) 511 4940 w
       -(the) 654 4940 w
       -(nineties) 850 4940 w
       -(when) 1273 4940 w
       -(Windowds) 1580 4940 w
       -(3.1) 2148 4940 w
       -(was) 2346 4940 w
       -(still) 2580 4940 w
       -(very) 2811 4940 w
       -(much a) 216 5080 w
       -(thing,) 597 5080 w
       -(my) 906 5080 w
       -(old) 1091 5080 w
       -(man,) 1276 5080 w
       -(while) 1544 5080 w
       -(doing) 1842 5080 w
       -(his) 2147 5080 w
       -(post) 2319 5080 w
       -(graduated) 2551 5080 w
       -(studies,) 216 5220 w
       -(found) 628 5220 w
       -(this) 955 5220 w
       -(story) 1177 5220 w
       -(on) 1465 5220 w
       -(some) 1632 5220 w
       -(Russian) 1933 5220 w
       -(usenet) 2361 5220 w
       -(group,) 2714 5220 w
       -(saved it, printed it) 216 5360 w
       -(out, posted it) 1116 5360 w
       -(in his) 1772 5360 w
       -(office.) 2067 5360 w
       -(Years) 216 5584 w
       -(later) 527 5584 w
       -(he) 773 5584 w
       -(made) 918 5584 w
       -(the) 1210 5584 w
       -(mistake) 1389 5584 w
       -(of) 1796 5584 w
       -(giving) 1928 5584 w
       -(me) 2268 5584 w
       -(the) 2447 5584 w
       -(internet.) 2626 5584 w
       -(And I) 216 5724 w
       -(found the) 522 5724 w
       -(same) 1009 5724 w
       -(story, now on the) 1286 5724 w
       -(world wide) 2150 5724 w
       -(web.) 2723 5724 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 5 5
       -%%Page: 6 6
       -/saveobj save def
       -mark
       -6 pagesetup
       -12 /Times-Roman f
       -(I've) 216 356 w
       -(taken) 448 356 w
       -(the) 747 356 w
       -(time) 933 356 w
       -(to) 1187 356 w
       -(translate) 1320 356 w
       -(the) 1767 356 w
       -(story) 1954 356 w
       -(from) 2235 356 w
       -(Russian) 2509 356 w
       -(to) 2930 356 w
       -(English) 216 496 w
       -(such) 620 496 w
       -(that) 876 496 w
       -(everyone) 1093 496 w
       -(can) 1568 496 w
       -(enjoy) 1770 496 w
       -(the) 2073 496 w
       -(gifts) 2256 496 w
       -(of) 2507 496 w
       -(Russian) 2643 496 w
       -(usenet) 216 636 w
       -(koans.) 553 636 w
       -(Enjoy responsibly.) 216 860 w
       -(>>) 216 1084 w
       -12 /LucidaSansUnicode04 f
       -(\03454254L) 426 1084 w
       -(1K;) 1024 1084 w
       -(157>1) 1329 1084 w
       -12 /Times-Roman f
       -(p) 1671 1084 w
       -12 /LucidaSansUnicode04 f
       -(07=K<) 1731 1084 w
       -12 /Times-Roman f
       -(,) 2105 1084 w
       -12 /LucidaSansUnicode04 f
       -(:>A>;0?K<) 2212 1084 w
       -(8) 2948 1084 w
       -(3) 276 1224 w
       -12 /Times-Roman f
       -(p) 335 1224 w
       -12 /LucidaSansUnicode04 f
       -(O7=K<) 395 1224 w
       -(682>B=K<) 839 1224 w
       -12 /Times-Roman f
       -(.) 1449 1224 w
       -12 /LucidaSansUnicode04 f
       -(\0364=0:>) 1584 1224 w
       -(4>1) 2113 1224 w
       -12 /Times-Roman f
       -(p) 2338 1224 w
       -12 /LucidaSansUnicode04 f
       -(55) 2398 1224 w
       -(53>) 2607 1224 w
       -(=5) 2881 1224 w
       -(1K;>) 276 1364 w
       -(=8:>3>) 618 1364 w
       -(2>) 1080 1364 w
       -(2A5<) 1257 1364 w
       -(;5A) 1577 1364 w
       -12 /Times-Roman f
       -(y.) 1776 1364 w
       -(H) 1906 1364 w
       -12 /LucidaSansUnicode04 f
       -(>) 1992 1364 w
       -(725) 2105 1364 w
       -12 /Times-Roman f
       -(p) 2294 1364 w
       -12 /LucidaSansUnicode04 f
       -(8) 2354 1364 w
       -(70<5G0;8) 2470 1364 w
       -(B>;L:>) 276 1504 w
       -(53>) 724 1504 w
       -(2=5H=>ABL) 969 1504 w
       -12 /Times-Roman f
       -(,) 1607 1504 w
       -12 /LucidaSansUnicode04 f
       -(=0) 1683 1504 w
       -(GB>) 1871 1504 w
       -(\03454254L) 2111 1504 w
       -(6) 2679 1504 w
       -12 /Times-Roman f
       -(y) 2767 1504 w
       -12 /LucidaSansUnicode04 f
       -(B:>) 2827 1504 w
       -(>1860;AO) 276 1644 w
       -12 /Times-Roman f
       -(,) 844 1644 w
       -12 /LucidaSansUnicode04 f
       -(;>28;) 994 1644 w
       -(8E) 1469 1644 w
       -(8) 1738 1644 w
       -(65AB>:>) 1934 1644 w
       -(871820;) 2541 1644 w
       -(=>30<8) 276 1784 w
       -12 /Times-Roman f
       -(.) 714 1784 w
       -12 /LucidaSansUnicode04 f
       -(\037>MB><) 802 1784 w
       -12 /Times-Roman f
       -(y) 1245 1784 w
       -12 /LucidaSansUnicode04 f
       -(725) 1363 1784 w
       -12 /Times-Roman f
       -(p) 1552 1784 w
       -12 /LucidaSansUnicode04 f
       -(8) 1612 1784 w
       -(53>) 1746 1784 w
       -(=5) 2003 1784 w
       -(;N18;8) 2204 1784 w
       -12 /Times-Roman f
       -(.) 2667 1784 w
       -12 /LucidaSansUnicode04 f
       -(%>BO) 2755 1784 w
       -(>=) 276 1924 w
       -(1K;) 476 1924 w
       -(>G5=L) 756 1924 w
       -(4>1) 1147 1924 w
       -12 /Times-Roman f
       -(p) 1372 1924 w
       -12 /LucidaSansUnicode04 f
       -(K<) 1432 1924 w
       -12 /Times-Roman f
       -(.) 1606 1924 w
       -12 /LucidaSansUnicode04 f
       -(\030) 1688 1924 w
       -(25A5;K<) 1829 1924 w
       -12 /Times-Roman f
       -(.) 2333 1924 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 2415 1924 w
       -(;N18;) 2637 1924 w
       -(704>) 276 2064 w
       -12 /Times-Roman f
       -(p) 553 2064 w
       -12 /LucidaSansUnicode04 f
       -(=K5) 613 2064 w
       -(H) 878 2064 w
       -12 /Times-Roman f
       -(y) 979 2064 w
       -12 /LucidaSansUnicode04 f
       -(B:8) 1039 2064 w
       -12 /Times-Roman f
       -(.) 1239 2064 w
       -12 /LucidaSansUnicode04 f
       -(\0270) 1305 2064 w
       -(MB8) 1471 2064 w
       -(H) 1702 2064 w
       -12 /Times-Roman f
       -(y) 1803 2064 w
       -12 /LucidaSansUnicode04 f
       -(B:8) 1863 2064 w
       -(725) 2098 2064 w
       -12 /Times-Roman f
       -(p) 2287 2064 w
       -12 /LucidaSansUnicode04 f
       -(8) 2347 2064 w
       -(53>) 2458 2064 w
       -(A:>) 2692 2064 w
       -12 /Times-Roman f
       -(p) 2891 2064 w
       -12 /LucidaSansUnicode04 f
       -(>) 2951 2064 w
       -(6) 276 2204 w
       -12 /Times-Roman f
       -(y) 364 2204 w
       -12 /LucidaSansUnicode04 f
       -(B:>) 424 2204 w
       -(2>7=5=02845;8) 656 2204 w
       -(8) 1606 2204 w
       -(18;8) 1718 2204 w
       -12 /Times-Roman f
       -(.) 2013 2204 w
       -12 /LucidaSansUnicode04 f
       -(\0240) 2079 2204 w
       -12 /Times-Roman f
       -(,) 2236 2204 w
       -12 /LucidaSansUnicode04 f
       -(B) 2302 2204 w
       -12 /Times-Roman f
       -(py) 2361 2204 w
       -12 /LucidaSansUnicode04 f
       -(4=>) 2481 2204 w
       -(1KBL) 2746 2204 w
       -(=0) 276 2344 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(A25B5) 448 2344 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(4>1) 796 2344 w
       -12 /Times-Roman f
       -(p) 1021 2344 w
       -12 /LucidaSansUnicode04 f
       -(K<) 1081 2344 w
       -(8) 1285 2344 w
       -(25A5;K<) 1391 2344 w
       -12 /Times-Roman f
       -(.) 1895 2344 w
       -(The) 216 2568 w
       -(bear) 433 2568 w
       -(was) 670 2568 w
       -(a) 887 2568 w
       -(filthy,) 971 2568 w
       -(clumsy,) 1294 2568 w
       -(and) 1703 2568 w
       -(dirty) 1907 2568 w
       -(animal.) 2166 2568 w
       -(However,) 2556 2568 w
       -(no) 216 2708 w
       -(one) 379 2708 w
       -(was) 595 2708 w
       -(as) 824 2708 w
       -(loving) 967 2708 w
       -(as) 1318 2708 w
       -(he) 1461 2708 w
       -(was) 1616 2708 w
       -(in) 1844 2708 w
       -(the) 1980 2708 w
       -(whole) 2169 2708 w
       -(forest.) 2504 2708 w
       -(But) 2850 2708 w
       -(the) 216 2848 w
       -(animals) 407 2848 w
       -(only) 826 2848 w
       -(saw) 1085 2848 w
       -(his) 1316 2848 w
       -(exterior,) 1502 2848 w
       -(to) 1951 2848 w
       -(which) 2090 2848 w
       -(the) 2428 2848 w
       -(bear) 2620 2848 w
       -(be\255) 2871 2848 w
       -(came) 216 2988 w
       -(upset,) 511 2988 w
       -(caught) 836 2988 w
       -(them,) 1197 2988 w
       -(and) 1509 2988 w
       -(brutaly) 1723 2988 w
       -(beat) 2105 2988 w
       -(them) 2346 2988 w
       -(with) 2628 2988 w
       -(his) 2883 2988 w
       -(legs.) 216 3128 w
       -(Even) 494 3128 w
       -(though) 794 3128 w
       -(he) 1182 3128 w
       -(was) 1349 3128 w
       -(very) 1589 3128 w
       -(loving.) 1856 3128 w
       -(And) 2248 3128 w
       -(happy.) 2508 3128 w
       -(He) 2885 3128 w
       -(loved) 216 3268 w
       -(practical) 525 3268 w
       -(jokes.) 981 3268 w
       -(For) 1307 3268 w
       -(these) 1516 3268 w
       -(jokes) 1804 3268 w
       -(the) 2099 3268 w
       -(animals) 2287 3268 w
       -(started) 2703 3268 w
       -(to) 216 3408 w
       -(hate) 349 3408 w
       -(the) 588 3408 w
       -(bear) 774 3408 w
       -(and) 1020 3408 w
       -(beat) 1233 3408 w
       -(him.) 1473 3408 w
       -(Yes,) 1731 3408 w
       -(it;s) 1987 3408 w
       -(hard) 2176 3408 w
       -(to) 2429 3408 w
       -(be) 2563 3408 w
       -(loving) 2716 3408 w
       -(and happy.) 216 3548 w
       -(>>) 216 3772 w
       -12 /LucidaSansUnicode04 f
       -(\022>;:) 410 3772 w
       -(1K;) 749 3772 w
       -(B>65) 1038 3772 w
       -(157>1) 1385 3772 w
       -12 /Times-Roman f
       -(p) 1727 3772 w
       -12 /LucidaSansUnicode04 f
       -(07=K<) 1787 3772 w
       -(8) 2221 3772 w
       -(3) 2357 3772 w
       -12 /Times-Roman f
       -(p) 2416 3772 w
       -12 /LucidaSansUnicode04 f
       -(O7=K<) 2476 3772 w
       -12 /Times-Roman f
       -(.) 2845 3772 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2935 3772 w
       -(5I5) 276 3912 w
       -(>=) 557 3912 w
       -(1K;) 746 3912 w
       -(>G5=L) 1015 3912 w
       -(7;K<) 1394 3912 w
       -(8) 1737 3912 w
       -(65AB>:8<) 1853 3912 w
       -12 /Times-Roman f
       -(.) 2430 3912 w
       -(H) 2500 3912 w
       -12 /LucidaSansUnicode04 f
       -(>) 2586 3912 w
       -(725) 2699 3912 w
       -12 /Times-Roman f
       -(p) 2888 3912 w
       -12 /LucidaSansUnicode04 f
       -(8) 2948 3912 w
       -(=5) 276 4052 w
       -(8A?KBK20;8) 470 4052 w
       -(:) 1243 4052 w
       -(=5<) 1360 4052 w
       -12 /Times-Roman f
       -(y) 1591 4052 w
       -12 /LucidaSansUnicode04 f
       -(=5=028AB8) 1703 4052 w
       -(8) 2376 4052 w
       -(=5) 2504 4052 w
       -(18;8) 2699 4052 w
       -12 /Times-Roman f
       -(.) 2994 4052 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 276 4192 w
       -12 /Times-Roman f
       -(y,) 658 4192 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 792 4192 w
       -(\022>;:) 1030 4192 w
       -12 /Times-Roman f
       -(y) 1352 4192 w
       -12 /LucidaSansUnicode04 f
       -(<5) 1412 4192 w
       -12 /Times-Roman f
       -(p) 1567 4192 w
       -12 /LucidaSansUnicode04 f
       -(5I5) 1670 4192 w
       -(2) 1954 4192 w
       -12 /Times-Roman f
       -(p) 2061 4192 w
       -12 /LucidaSansUnicode04 f
       -(0==5<) 2121 4192 w
       -(45BAB25) 2537 4192 w
       -12 /Times-Roman f
       -(.) 2994 4192 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 276 4332 w
       -12 /Times-Roman f
       -(y,) 658 4332 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 802 4332 w
       -(\03454254L) 1050 4332 w
       -12 /Times-Roman f
       -(p) 1626 4332 w
       -12 /LucidaSansUnicode04 f
       -(>48;AO) 1686 4332 w
       -12 /Times-Roman f
       -(p) 2163 4332 w
       -12 /LucidaSansUnicode04 f
       -(0=LH5) 2223 4332 w
       -(\022>;:0) 2649 4332 w
       -12 /Times-Roman f
       -(.) 2994 4332 w
       -12 /LucidaSansUnicode04 f
       -(\0240) 276 4472 w
       -12 /Times-Roman f
       -(, ) 433 4472 w
       -12 /LucidaSansUnicode04 f
       -(E>) 493 4472 w
       -12 /Times-Roman f
       -(p) 639 4472 w
       -12 /LucidaSansUnicode04 f
       -(>H>) 699 4472 w
       -12 /Times-Roman f
       -(, ) 946 4472 w
       -12 /LucidaSansUnicode04 f
       -(:>340) 1006 4472 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(\024>1) 1379 4472 w
       -12 /Times-Roman f
       -(p) 1615 4472 w
       -12 /LucidaSansUnicode04 f
       -(>) 1675 4472 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(?>156405B) 1778 4472 w
       -(\027;>) 2456 4472 w
       -12 /Times-Roman f
       -(.) 2665 4472 w
       -(The) 216 4696 w
       -(wolf) 439 4696 w
       -(was) 696 4696 w
       -(also) 920 4696 w
       -(filthy) 1152 4696 w
       -(and) 1452 4696 w
       -(dirty.) 1663 4696 w
       -(He) 1959 4696 w
       -(was) 2136 4696 w
       -(also) 2360 4696 w
       -(very) 2592 4696 w
       -(evil) 2843 4696 w
       -(and) 216 4836 w
       -(cruel.) 429 4836 w
       -(But) 739 4836 w
       -(the) 952 4836 w
       -(animals) 1138 4836 w
       -(din't) 1552 4836 w
       -(hate) 1819 4836 w
       -(him) 2058 4836 w
       -(and) 2285 4836 w
       -(didn't) 2497 4836 w
       -(beat) 2824 4836 w
       -(him.) 216 4976 w
       -(Because) 484 4976 w
       -(the) 934 4976 w
       -(wolf) 1132 4976 w
       -(died) 1403 4976 w
       -(early) 1661 4976 w
       -(in) 1952 4976 w
       -(his) 2097 4976 w
       -(childhood.) 2289 4976 w
       -(Be\255) 2851 4976 w
       -(cause) 216 5116 w
       -(the) 529 5116 w
       -(bear) 723 5116 w
       -(was) 976 5116 w
       -(born) 1209 5116 w
       -(before) 1476 5116 w
       -(the) 1829 5116 w
       -(wolf.) 2023 5116 w
       -(Yes,) 2320 5116 w
       -(it's) 2583 5116 w
       -(good) 2784 5116 w
       -(when good triumphs) 216 5256 w
       -(over) 1234 5256 w
       -(evil.) 1477 5256 w
       -(>>) 216 5480 w
       -12 /LucidaSansUnicode04 f
       -(\0270OF) 386 5480 w
       -(B>65) 694 5480 w
       -(1K;) 1017 5480 w
       -(7;K<) 1283 5480 w
       -(8) 1623 5480 w
       -(65AB>:8<) 1736 5480 w
       -12 /Times-Roman f
       -(.) 2313 5480 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2380 5480 w
       -(3) 2506 5480 w
       -12 /Times-Roman f
       -(p) 2565 5480 w
       -12 /LucidaSansUnicode04 f
       -(O7=K<) 2625 5480 w
       -12 /Times-Roman f
       -(.) 2994 5480 w
       -12 /LucidaSansUnicode04 f
       -(\030) 276 5620 w
       -(5I5) 460 5620 w
       -(>=) 796 5620 w
       -(1K;) 1040 5620 w
       -(B) 1364 5620 w
       -12 /Times-Roman f
       -(py) 1423 5620 w
       -12 /LucidaSansUnicode04 f
       -(A;82K<) 1543 5620 w
       -12 /Times-Roman f
       -(.) 1989 5620 w
       -12 /LucidaSansUnicode04 f
       -(\02304>AB59) 2114 5620 w
       -(\0270OF) 2752 5620 w
       -(=8:><) 276 5760 w
       -12 /Times-Roman f
       -(y) 654 5760 w
       -12 /LucidaSansUnicode04 f
       -(=8:>340) 746 5760 w
       -(=5) 1273 5760 w
       -(45;0;) 1448 5760 w
       -12 /Times-Roman f
       -(.) 1803 5760 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 1865 5760 w
       -12 /Times-Roman f
       -(y,) 2247 5760 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 2369 5760 w
       -(1>O;AO) 2595 5760 w
       -12 /Times-Roman f
       -(.) 2994 5760 w
       -(H) 276 5900 w
       -12 /LucidaSansUnicode04 f
       -(>) 362 5900 w
       -(53>) 466 5900 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(2A5) 695 5900 w
       -12 /Times-Roman f
       -(p) 917 5900 w
       -12 /LucidaSansUnicode04 f
       -(02=>) 977 5900 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(A8;L=>) 1286 5900 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(18;8) 1734 5900 w
       -12 /Times-Roman f
       -(. ) 2029 5900 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 2089 5900 w
       -12 /Times-Roman f
       -(y, ) 2471 5900 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 2591 5900 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(\027;>) 2815 5900 w
       -(2A5340) 276 6040 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(4>;6=>) 703 6040 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(1KBL) 1194 6040 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(=0:070=>) 1502 6040 w
       -12 /Times-Roman f
       -(.) 2048 6040 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 6 6
       -%%Page: 7 7
       -/saveobj save def
       -mark
       -7 pagesetup
       -12 /Times-Roman f
       -(The) 216 356 w
       -(rabbit) 434 356 w
       -(was) 747 356 w
       -(also) 965 356 w
       -(evil) 1191 356 w
       -(and) 1404 356 w
       -(cruel.) 1609 356 w
       -(And) 1911 356 w
       -(dirty.) 2149 356 w
       -(He) 2439 356 w
       -(was) 2611 356 w
       -(also) 2830 356 w
       -(a) 216 496 w
       -(coward.) 310 496 w
       -(The) 733 496 w
       -(rabbit) 960 496 w
       -(never) 1282 496 w
       -(commited) 1589 496 w
       -(any) 2111 496 w
       -(evil) 2324 496 w
       -(as) 2545 496 w
       -(he) 2685 496 w
       -(was) 2838 496 w
       -(scared.) 216 636 w
       -(But) 584 636 w
       -(he) 790 636 w
       -(was) 935 636 w
       -(still) 1153 636 w
       -(beaten.) 1368 636 w
       -(Because) 1744 636 w
       -(evil) 2176 636 w
       -(must) 2390 636 w
       -(be) 2658 636 w
       -(pun\255) 2804 636 w
       -(ished.) 216 776 w
       -(>>) 216 1000 w
       -12 /LucidaSansUnicode04 f
       -(\030) 396 1000 w
       -(\024OB5;) 531 1000 w
       -(B>65) 927 1000 w
       -(1K;) 1261 1000 w
       -(7;K<) 1537 1000 w
       -(8) 1887 1000 w
       -(65AB>:8<) 2010 1000 w
       -12 /Times-Roman f
       -(.) 2587 1000 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 2664 1000 w
       -(=5) 2881 1000 w
       -(18;) 276 1140 w
       -(725) 553 1140 w
       -12 /Times-Roman f
       -(p) 742 1140 w
       -12 /LucidaSansUnicode04 f
       -(59) 802 1140 w
       -12 /Times-Roman f
       -(,) 945 1140 w
       -12 /LucidaSansUnicode04 f
       -(?>B><) 1033 1140 w
       -12 /Times-Roman f
       -(y,) 1402 1140 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 1550 1140 w
       -12 /Times-Roman f
       -(y) 1801 1140 w
       -12 /LucidaSansUnicode04 f
       -(=53>) 1918 1140 w
       -(=5) 2250 1140 w
       -(1K;>) 2450 1140 w
       -12 /Times-Roman f
       -(py) 2809 1140 w
       -12 /LucidaSansUnicode04 f
       -(:) 2929 1140 w
       -12 /Times-Roman f
       -(.) 2994 1140 w
       -12 /LucidaSansUnicode04 f
       -(\037>MB><) 276 1280 w
       -12 /Times-Roman f
       -(y,) 719 1280 w
       -12 /LucidaSansUnicode04 f
       -(>=) 948 1280 w
       -(2K<5I0;) 1236 1280 w
       -(A2>N) 1924 1280 w
       -(7;>ABL) 2359 1280 w
       -(=0) 2882 1280 w
       -(45) 276 1420 w
       -12 /Times-Roman f
       -(p) 423 1420 w
       -12 /LucidaSansUnicode04 f
       -(52LOE) 483 1420 w
       -12 /Times-Roman f
       -(.) 809 1420 w
       -12 /LucidaSansUnicode04 f
       -(\0253>) 889 1420 w
       -(=5) 1135 1420 w
       -(18;8) 1327 1420 w
       -12 /Times-Roman f
       -(.) 1622 1420 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 1701 1420 w
       -12 /Times-Roman f
       -(y,) 2083 1420 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 2222 1420 w
       -(=5) 2465 1420 w
       -(<>3;8) 2657 1420 w
       -(4>BO=) 276 1560 w
       -12 /Times-Roman f
       -(y) 625 1560 w
       -12 /LucidaSansUnicode04 f
       -(BLAO) 685 1560 w
       -12 /Times-Roman f
       -(.) 927 1560 w
       -12 /LucidaSansUnicode04 f
       -(\0364=064K) 1175 1560 w
       -(53>) 1964 1560 w
       -(?) 2382 1560 w
       -12 /Times-Roman f
       -(p) 2458 1560 w
       -12 /LucidaSansUnicode04 f
       -(84028;>) 2518 1560 w
       -(=0A<5) 276 1700 w
       -12 /Times-Roman f
       -(p) 634 1700 w
       -12 /LucidaSansUnicode04 f
       -(BL) 694 1700 w
       -12 /Times-Roman f
       -(y) 859 1700 w
       -12 /LucidaSansUnicode04 f
       -(?02H55) 919 1700 w
       -(45) 1404 1700 w
       -12 /Times-Roman f
       -(p) 1551 1700 w
       -12 /LucidaSansUnicode04 f
       -(52>) 1611 1700 w
       -12 /Times-Roman f
       -(.) 1815 1700 w
       -12 /LucidaSansUnicode04 f
       -(\037>3>20) 1919 1700 w
       -12 /Times-Roman f
       -(p) 2343 1700 w
       -12 /LucidaSansUnicode04 f
       -(820;8) 2403 1700 w
       -12 /Times-Roman f
       -(,) 2756 1700 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 2830 1700 w
       -(>=>) 276 1840 w
       -(>B><AB8;>) 592 1840 w
       -12 /Times-Roman f
       -(.) 1225 1840 w
       -12 /LucidaSansUnicode04 f
       -(\037>A;5) 1349 1840 w
       -(MB>3>) 1804 1840 w
       -(725) 2224 1840 w
       -12 /Times-Roman f
       -(p) 2413 1840 w
       -12 /LucidaSansUnicode04 f
       -(8) 2473 1840 w
       -(F5;K9) 2644 1840 w
       -(<5AOF) 276 1980 w
       -(1>O;8AL) 733 1980 w
       -(<>G8BLAO) 1308 1980 w
       -(=0) 1948 1980 w
       -(45) 2189 1980 w
       -12 /Times-Roman f
       -(p) 2336 1980 w
       -12 /LucidaSansUnicode04 f
       -(52LO) 2396 1980 w
       -12 /Times-Roman f
       -(.) 2649 1980 w
       -12 /LucidaSansUnicode04 f
       -(\036=8) 2778 1980 w
       -(<>G8;8AL) 276 2120 w
       -(=0) 883 2120 w
       -(\02709F0) 1064 2120 w
       -12 /Times-Roman f
       -(.) 1417 2120 w
       -12 /LucidaSansUnicode04 f
       -(\0270OF) 1516 2120 w
       -(?) 1827 2120 w
       -12 /Times-Roman f
       -(p) 1903 2120 w
       -12 /LucidaSansUnicode04 f
       -(>AB) 1963 2120 w
       -12 /Times-Roman f
       -(y) 2156 2120 w
       -12 /LucidaSansUnicode04 f
       -(48;AO) 2216 2120 w
       -(8) 2604 2120 w
       -12 /Times-Roman f
       -(y) 2719 2120 w
       -12 /LucidaSansUnicode04 f
       -(<5) 2779 2120 w
       -12 /Times-Roman f
       -(p.) 2934 2120 w
       -12 /LucidaSansUnicode04 f
       -(\022A5<) 276 2260 w
       -(1K;>) 640 2260 w
       -(OA=>) 1020 2260 w
       -12 /Times-Roman f
       -(,) 1291 2260 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 1398 2260 w
       -(2>) 1669 2260 w
       -(2A5<) 1883 2260 w
       -(1K;) 2240 2260 w
       -(28=>20B) 2546 2260 w
       -(\024OB5;) 276 2400 w
       -12 /Times-Roman f
       -(.) 625 2400 w
       -(H) 755 2400 w
       -12 /LucidaSansUnicode04 f
       -(>) 841 2400 w
       -(53>) 1014 2400 w
       -(=5) 1313 2400 w
       -(B) 1556 2400 w
       -12 /Times-Roman f
       -(p) 1615 2400 w
       -12 /LucidaSansUnicode04 f
       -(>=) 1675 2400 w
       -12 /Times-Roman f
       -(y) 1824 2400 w
       -12 /LucidaSansUnicode04 f
       -(;8) 1884 2400 w
       -12 /Times-Roman f
       -(.) 2031 2400 w
       -12 /LucidaSansUnicode04 f
       -(\037>A:>;L:) 2162 2400 w
       -12 /Times-Roman f
       -(y) 2720 2400 w
       -12 /LucidaSansUnicode04 f
       -(=5) 2881 2400 w
       -(A<>3;8) 276 2540 w
       -(2K:>2K) 764 2540 w
       -12 /Times-Roman f
       -(p) 1202 2540 w
       -12 /LucidaSansUnicode04 f
       -(OBL) 1262 2540 w
       -(87) 1503 2540 w
       -12 /Times-Roman f
       -(\255) 1637 2540 w
       -12 /LucidaSansUnicode04 f
       -(?>4) 1677 2540 w
       -12 /Times-Roman f
       -(y) 1965 2540 w
       -12 /LucidaSansUnicode04 f
       -(?02H53>) 2025 2540 w
       -(45) 2590 2540 w
       -12 /Times-Roman f
       -(p) 2737 2540 w
       -12 /LucidaSansUnicode04 f
       -(520) 2797 2540 w
       -12 /Times-Roman f
       -(.) 2994 2540 w
       -12 /LucidaSansUnicode04 f
       -(\0240) 276 2680 w
       -12 /Times-Roman f
       -(, ) 433 2680 w
       -12 /LucidaSansUnicode04 f
       -(\027;>) 493 2680 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(8=>340) 732 2680 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(>AB05BAO) 1192 2680 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(157=0:070==K<) 1729 2680 w
       -12 /Times-Roman f
       -(.) 2649 2680 w
       -(The) 216 2904 w
       -(woodpecker) 447 2904 w
       -(was) 1077 2904 w
       -(also) 1308 2904 w
       -(evil) 1547 2904 w
       -(and) 1773 2904 w
       -(cruel.) 1991 2904 w
       -(He) 2306 2904 w
       -(didn't) 2490 2904 w
       -(beat) 2824 2904 w
       -(animals,) 216 3044 w
       -(as) 656 3044 w
       -(he) 791 3044 w
       -(didn't) 939 3044 w
       -(have) 1262 3044 w
       -(any) 1522 3044 w
       -(arms.) 1729 3044 w
       -(So) 2027 3044 w
       -(he) 2188 3044 w
       -(took) 2335 3044 w
       -(his) 2583 3044 w
       -(anger) 2758 3044 w
       -(out) 216 3184 w
       -(on) 418 3184 w
       -(trees.) 586 3184 w
       -(He) 891 3184 w
       -(was) 1079 3184 w
       -(not) 1314 3184 w
       -(beaten,) 1517 3184 w
       -(as) 1909 3184 w
       -(no) 2058 3184 w
       -(one) 2227 3184 w
       -(could) 2449 3184 w
       -(reach) 2765 3184 w
       -(him.) 216 3324 w
       -(One) 482 3324 w
       -(day) 729 3324 w
       -(a) 950 3324 w
       -(tree) 1051 3324 w
       -(crushed) 1279 3324 w
       -(him) 1700 3324 w
       -(to) 1936 3324 w
       -(death.) 2078 3324 w
       -(The) 2416 3324 w
       -(animals) 2649 3324 w
       -(said) 216 3464 w
       -(it) 450 3464 w
       -(took) 558 3464 w
       -(revenge.) 812 3464 w
       -(After) 1261 3464 w
       -(that,) 1555 3464 w
       -(then) 1807 3464 w
       -(animals) 2055 3464 w
       -(were) 2471 3464 w
       -(afraid) 2744 3464 w
       -(of) 216 3604 w
       -(pissing) 347 3604 w
       -(on) 720 3604 w
       -(trees) 871 3604 w
       -(for) 1129 3604 w
       -(a) 1300 3604 w
       -(month.) 1384 3604 w
       -(Instead they pissed on the) 1782 3604 w
       -(rabbit. The) 216 3744 w
       -(rabbit) 773 3744 w
       -(got) 1084 3744 w
       -(a) 1269 3744 w
       -(cold) 1353 3744 w
       -(and) 1591 3744 w
       -(died.) 1795 3744 w
       -(Everyone) 2063 3744 w
       -(knew) 2553 3744 w
       -(that) 2843 3744 w
       -(the) 216 3884 w
       -(woodpecker) 402 3884 w
       -(was) 1026 3884 w
       -(at) 1250 3884 w
       -(fault.) 1375 3884 w
       -(But) 1664 3884 w
       -(he) 1876 3884 w
       -(wasn't) 2027 3884 w
       -(beaten,) 2385 3884 w
       -(as) 2766 3884 w
       -(no) 2904 3884 w
       -(one) 216 4024 w
       -(could) 439 4024 w
       -(get) 756 4024 w
       -(him) 953 4024 w
       -(out) 1191 4024 w
       -(from) 1395 4024 w
       -(the) 1679 4024 w
       -(fallen) 1877 4024 w
       -(tree.) 2202 4024 w
       -(Yes,) 2463 4024 w
       -(some\255) 2730 4024 w
       -(times) 216 4164 w
       -(evil) 508 4164 w
       -(remains) 719 4164 w
       -(unpunished.) 1130 4164 w
       -(>>) 216 4388 w
       -12 /LucidaSansUnicode04 f
       -(\032) 403 4388 w
       -12 /Times-Roman f
       -(p) 474 4388 w
       -12 /LucidaSansUnicode04 f
       -(>B) 534 4388 w
       -(1K;) 719 4388 w
       -(<0;5=L:8<) 1001 4388 w
       -(8) 1712 4388 w
       -(A;5?K<) 1841 4388 w
       -12 /Times-Roman f
       -(.) 2290 4388 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 2374 4388 w
       -(=5) 2598 4388 w
       -(1K;) 2795 4388 w
       -(7;K<) 276 4528 w
       -12 /Times-Roman f
       -(.) 579 4528 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 644 4528 w
       -(?) 849 4528 w
       -12 /Times-Roman f
       -(p) 925 4528 w
       -12 /LucidaSansUnicode04 f
       -(>AB>) 985 4528 w
       -(E>) 1286 4528 w
       -12 /Times-Roman f
       -(p) 1432 4528 w
       -12 /LucidaSansUnicode04 f
       -(>H>) 1492 4528 w
       -(45;0;) 1774 4528 w
       -(A2>5) 2164 4528 w
       -(45;>) 2464 4528 w
       -12 /Times-Roman f
       -(.) 2755 4528 w
       -12 /LucidaSansUnicode04 f
       -(-B>) 2820 4528 w
       -(>=) 276 4668 w
       -(?>4J5;) 458 4668 w
       -(45) 925 4668 w
       -12 /Times-Roman f
       -(p) 1072 4668 w
       -12 /LucidaSansUnicode04 f
       -(52>) 1132 4668 w
       -12 /Times-Roman f
       -(,) 1336 4668 w
       -12 /LucidaSansUnicode04 f
       -(:>B>) 1399 4668 w
       -12 /Times-Roman f
       -(p) 1669 4668 w
       -12 /LucidaSansUnicode04 f
       -(>5) 1729 4668 w
       -12 /Times-Roman f
       -(y) 1902 4668 w
       -12 /LucidaSansUnicode04 f
       -(?0;>) 1962 4668 w
       -(=0) 2281 4668 w
       -(4OB;0) 2457 4668 w
       -12 /Times-Roman f
       -(.) 2794 4668 w
       -12 /LucidaSansUnicode04 f
       -(\0361) 2858 4668 w
       -(MB><) 276 4808 w
       -(=8:B>) 588 4808 w
       -(=5) 968 4808 w
       -12 /Times-Roman f
       -(y) 1142 4808 w
       -12 /LucidaSansUnicode04 f
       -(7=0;) 1202 4808 w
       -12 /Times-Roman f
       -(,) 1473 4808 w
       -12 /LucidaSansUnicode04 f
       -(8) 1534 4808 w
       -(?>MB><) 1641 4808 w
       -12 /Times-Roman f
       -(y) 2071 4808 w
       -12 /LucidaSansUnicode04 f
       -(53>) 2162 4808 w
       -(=5) 2392 4808 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(8718;8) 2565 4808 w
       -12 /Times-Roman f
       -(.) 2994 4808 w
       -12 /LucidaSansUnicode04 f
       -(\0253>) 276 4948 w
       -(2>>1I5) 517 4948 w
       -(18;8) 1017 4948 w
       -12 /Times-Roman f
       -(p) 1357 4948 w
       -12 /LucidaSansUnicode04 f
       -(54:>) 1417 4948 w
       -12 /Times-Roman f
       -(.) 1702 4948 w
       -12 /LucidaSansUnicode04 f
       -('0I5) 1777 4948 w
       -(?) 2138 4948 w
       -12 /Times-Roman f
       -(y) 2214 4948 w
       -12 /LucidaSansUnicode04 f
       -(30;8) 2274 4948 w
       -12 /Times-Roman f
       -(.) 2546 4948 w
       -(H) 2621 4948 w
       -12 /LucidaSansUnicode04 f
       -(>) 2707 4948 w
       -(53>) 2825 4948 w
       -(1K;>) 276 5088 w
       -(>G5=L) 642 5088 w
       -(B) 1044 5088 w
       -12 /Times-Roman f
       -(py) 1103 5088 w
       -12 /LucidaSansUnicode04 f
       -(4=>) 1223 5088 w
       -(8A?) 1515 5088 w
       -12 /Times-Roman f
       -(y) 1728 5088 w
       -12 /LucidaSansUnicode04 f
       -(30BL) 1788 5088 w
       -12 /Times-Roman f
       -(,) 2033 5088 w
       -12 /LucidaSansUnicode04 f
       -(?>B><) 2126 5088 w
       -12 /Times-Roman f
       -(y) 2495 5088 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 2618 5088 w
       -(>=) 2875 5088 w
       -(1K;) 276 5228 w
       -(A;5?>9) 542 5228 w
       -(8) 1003 5228 w
       -(=5) 1116 5228 w
       -(2845;) 1296 5228 w
       -12 /Times-Roman f
       -(,) 1654 5228 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 1721 5228 w
       -(53>) 1953 5228 w
       -(?) 2190 5228 w
       -12 /Times-Roman f
       -(y) 2266 5228 w
       -12 /LucidaSansUnicode04 f
       -(30NB) 2326 5228 w
       -12 /Times-Roman f
       -(.) 2607 5228 w
       -12 /LucidaSansUnicode04 f
       -(\032>340) 2675 5228 w
       -(=5) 276 5368 w
       -12 /Times-Roman f
       -(y) 512 5368 w
       -12 /LucidaSansUnicode04 f
       -(4020;>AL) 572 5368 w
       -(8A?) 1207 5368 w
       -12 /Times-Roman f
       -(y) 1420 5368 w
       -12 /LucidaSansUnicode04 f
       -(30BL) 1480 5368 w
       -(\032) 1817 5368 w
       -12 /Times-Roman f
       -(p) 1888 5368 w
       -12 /LucidaSansUnicode04 f
       -(>B0) 1948 5368 w
       -12 /Times-Roman f
       -(,) 2146 5368 w
       -12 /LucidaSansUnicode04 f
       -(725) 2268 5368 w
       -12 /Times-Roman f
       -(p) 2457 5368 w
       -12 /LucidaSansUnicode04 f
       -(8) 2517 5368 w
       -(>G5=L) 2685 5368 w
       -(>3>) 276 5508 w
       -12 /Times-Roman f
       -(p) 481 5508 w
       -12 /LucidaSansUnicode04 f
       -(G0;8AL) 541 5508 w
       -12 /Times-Roman f
       -(.) 938 5508 w
       -12 /LucidaSansUnicode04 f
       -(\030) 1016 5508 w
       -(18;8) 1153 5508 w
       -(\03454254O) 1496 5508 w
       -12 /Times-Roman f
       -(.) 2018 5508 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 2096 5508 w
       -12 /Times-Roman f
       -(y,) 2478 5508 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 2617 5508 w
       -(8<) 2860 5508 w
       -(1K;>) 276 5648 w
       -(>G5=L) 628 5648 w
       -(>184=>) 1017 5648 w
       -12 /Times-Roman f
       -(.) 1467 5648 w
       -12 /LucidaSansUnicode04 f
       -(\0364=064K) 1547 5648 w
       -(\03454254L) 2166 5648 w
       -(B>65) 2737 5648 w
       -(70E>B5;) 276 5788 w
       -(8A?) 779 5788 w
       -12 /Times-Roman f
       -(y) 992 5788 w
       -12 /LucidaSansUnicode04 f
       -(30BL) 1052 5788 w
       -(\032) 1333 5788 w
       -12 /Times-Roman f
       -(p) 1404 5788 w
       -12 /LucidaSansUnicode04 f
       -(>B0) 1464 5788 w
       -12 /Times-Roman f
       -(.) 1662 5788 w
       -(H) 1728 5788 w
       -12 /LucidaSansUnicode04 f
       -(>) 1814 5788 w
       -(\032) 1923 5788 w
       -12 /Times-Roman f
       -(p) 1994 5788 w
       -12 /LucidaSansUnicode04 f
       -(>B) 2054 5788 w
       -(=5) 2223 5788 w
       -(8A?) 2403 5788 w
       -12 /Times-Roman f
       -(y) 2616 5788 w
       -12 /LucidaSansUnicode04 f
       -(30;AO) 2676 5788 w
       -12 /Times-Roman f
       -(.) 2994 5788 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 276 5928 w
       -12 /Times-Roman f
       -(y,) 658 5928 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 839 5928 w
       -(\03454254L) 1124 5928 w
       -(53>) 1737 5928 w
       -12 /Times-Roman f
       -(y) 2027 5928 w
       -12 /LucidaSansUnicode04 f
       -(18;) 2087 5928 w
       -12 /Times-Roman f
       -(.) 2306 5928 w
       -(H) 2427 5928 w
       -12 /LucidaSansUnicode04 f
       -(5G0O==>) 2513 5928 w
       -12 /Times-Roman f
       -(.) 2994 5928 w
       -12 /LucidaSansUnicode04 f
       -(\037) 276 6068 w
       -12 /Times-Roman f
       -(p) 365 6068 w
       -12 /LucidaSansUnicode04 f
       -(>AB>) 425 6068 w
       -(\03454254L) 778 6068 w
       -(1K;) 1387 6068 w
       -(>G5=L) 1703 6068 w
       -(=5) 2129 6068 w
       -12 /Times-Roman f
       -(y) 2272 6068 w
       -12 /LucidaSansUnicode04 f
       -(:;N68<) 2332 6068 w
       -12 /Times-Roman f
       -(.) 2817 6068 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2935 6068 w
       -(725) 276 6208 w
       -12 /Times-Roman f
       -(p) 465 6208 w
       -12 /LucidaSansUnicode04 f
       -(8) 525 6208 w
       -(53>) 735 6208 w
       -(>G5=L) 1067 6208 w
       -(A8;L=>) 1539 6208 w
       -(8718;8) 2090 6208 w
       -12 /Times-Roman f
       -(.) 2519 6208 w
       -12 /LucidaSansUnicode04 f
       -(\024065) 2682 6208 w
       -12 /Times-Roman f
       -(,) 2994 6208 w
       -12 /LucidaSansUnicode04 f
       -(=5A<>B) 276 6348 w
       -12 /Times-Roman f
       -(p) 700 6348 w
       -12 /LucidaSansUnicode04 f
       -(O) 760 6348 w
       -(=0) 916 6348 w
       -(B>) 1153 6348 w
       -12 /Times-Roman f
       -(,) 1285 6348 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 1410 6348 w
       -(\03454254L) 1699 6348 w
       -(A:070;) 2317 6348 w
       -12 /Times-Roman f
       -(,) 2704 6348 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 2830 6348 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 7 7
       -%%Page: 8 8
       -/saveobj save def
       -mark
       -8 pagesetup
       -12 /LucidaSansUnicode04 f
       -(?>H) 276 356 w
       -12 /Times-Roman f
       -(y) 526 356 w
       -12 /LucidaSansUnicode04 f
       -(B8;) 586 356 w
       -12 /Times-Roman f
       -(.) 792 356 w
       -12 /LucidaSansUnicode04 f
       -(\037;>E>) 877 356 w
       -12 /Times-Roman f
       -(,) 1256 356 w
       -12 /LucidaSansUnicode04 f
       -(:>340) 1340 356 w
       -(B2>8) 1737 356 w
       -(H) 2063 356 w
       -12 /Times-Roman f
       -(y) 2164 356 w
       -12 /LucidaSansUnicode04 f
       -(B:8) 2224 356 w
       -(=8:B>) 2478 356 w
       -(=5) 2881 356 w
       -(?>=8<05B) 276 496 w
       -12 /Times-Roman f
       -(.) 857 496 w
       -(The) 216 720 w
       -(mole) 445 720 w
       -(was) 729 720 w
       -(small) 958 720 w
       -(and) 1263 720 w
       -(blind.) 1479 720 w
       -(He) 1800 720 w
       -(was) 1983 720 w
       -(not) 2213 720 w
       -(evil.) 2411 720 w
       -(He) 2666 720 w
       -(just) 2849 720 w
       -(did) 216 860 w
       -(his) 409 860 w
       -(job) 589 860 w
       -(really) 782 860 w
       -(well.) 1094 860 w
       -(It) 1399 860 w
       -(was) 1511 860 w
       -(he) 1735 860 w
       -(who) 1886 860 w
       -(dug) 2130 860 w
       -(under) 2348 860 w
       -(the) 2659 860 w
       -(tree) 2844 860 w
       -(which) 216 1000 w
       -(fell) 563 1000 w
       -(on) 778 1000 w
       -(the) 952 1000 w
       -(woodpecker.) 1153 1000 w
       -(No) 1822 1000 w
       -(one) 2022 1000 w
       -(knew) 2249 1000 w
       -(about) 2562 1000 w
       -(his) 2883 1000 w
       -(digging) 216 1140 w
       -(and) 643 1140 w
       -(he) 874 1140 w
       -(was) 1045 1140 w
       -(not) 1289 1140 w
       -(beaten.) 1501 1140 w
       -(He) 1902 1140 w
       -(was) 2099 1140 w
       -(rarely) 2343 1140 w
       -(beaten.) 2681 1140 w
       -(More) 216 1280 w
       -(often) 514 1280 w
       -(scared.) 799 1280 w
       -(But) 1173 1280 w
       -(it) 1385 1280 w
       -(was) 1491 1280 w
       -(really) 1715 1280 w
       -(hard) 2027 1280 w
       -(to) 2279 1280 w
       -(scare) 2412 1280 w
       -(him) 2697 1280 w
       -(as) 2924 1280 w
       -(he) 216 1420 w
       -(was) 383 1420 w
       -(blind,) 623 1420 w
       -(and) 955 1420 w
       -(didn't) 1182 1420 w
       -(see) 1523 1420 w
       -(that) 1729 1420 w
       -(he) 1963 1420 w
       -(was) 2129 1420 w
       -(being) 2368 1420 w
       -(scared.) 2688 1420 w
       -(When) 216 1560 w
       -(the) 538 1560 w
       -(animals) 721 1560 w
       -(were) 1132 1560 w
       -(unable) 1400 1560 w
       -(to) 1756 1560 w
       -(scare) 1886 1560 w
       -(the) 2168 1560 w
       -(mole) 2351 1560 w
       -(they) 2628 1560 w
       -(be\255) 2871 1560 w
       -(came) 216 1700 w
       -(very) 505 1700 w
       -(upset.) 754 1700 w
       -(And) 1074 1700 w
       -(beat) 1316 1700 w
       -(the) 1552 1700 w
       -(bear.) 1735 1700 w
       -(One) 2006 1700 w
       -(day) 2240 1700 w
       -(the) 2448 1700 w
       -(bear) 2630 1700 w
       -(de\255) 2871 1700 w
       -(cided) 216 1840 w
       -(to) 510 1840 w
       -(sacre) 638 1840 w
       -(the) 918 1840 w
       -(mole.) 1099 1840 w
       -(But) 1404 1840 w
       -(he) 1612 1840 w
       -(didn't) 1759 1840 w
       -(scare) 2082 1840 w
       -(the) 2363 1840 w
       -(mole.) 2545 1840 w
       -(Be\255) 2851 1840 w
       -(cause) 216 1980 w
       -(he) 523 1980 w
       -(killed) 677 1980 w
       -(him.) 993 1980 w
       -(Accidentally.) 1252 1980 w
       -(As) 1937 1980 w
       -(he) 2111 1980 w
       -(was) 2264 1980 w
       -(very) 2490 1980 w
       -(clum\255) 2743 1980 w
       -(sy. And the) 216 2120 w
       -(animals) 796 2120 w
       -(brutally) 1201 2120 w
       -(beat) 1607 2120 w
       -(him) 1838 2120 w
       -(for) 2057 2120 w
       -(killing) 2228 2120 w
       -(the) 2575 2120 w
       -(mole,) 2753 2120 w
       -(even) 216 2260 w
       -(though) 480 2260 w
       -(the) 852 2260 w
       -(bear) 1037 2260 w
       -(said) 1281 2260 w
       -(it) 1513 2260 w
       -(was) 1619 2260 w
       -(a) 1842 2260 w
       -(prank.) 1932 2260 w
       -(It's) 2272 2260 w
       -(unfortunate) 2470 2260 w
       -(when no one) 216 2400 w
       -(understands) 858 2400 w
       -(your) 1462 2400 w
       -(pranks.) 1712 2400 w
       -(>>) 216 2624 w
       -12 /LucidaSansUnicode04 f
       -(\0338A0) 468 2624 w
       -(1K;0) 874 2624 w
       -(>G5=L) 1288 2624 w
       -(E8B) 1746 2624 w
       -12 /Times-Roman f
       -(p) 1954 2624 w
       -12 /LucidaSansUnicode04 f
       -(>9) 2014 2624 w
       -12 /Times-Roman f
       -(.) 2163 2624 w
       -12 /LucidaSansUnicode04 f
       -(\036=0) 2312 2624 w
       -(<>3;0) 2667 2624 w
       -(70?) 276 2764 w
       -12 /Times-Roman f
       -(p) 476 2764 w
       -12 /LucidaSansUnicode04 f
       -(>AB>) 536 2764 w
       -(>1E8B) 837 2764 w
       -12 /Times-Roman f
       -(p) 1190 2764 w
       -12 /LucidaSansUnicode04 f
       -(8BL) 1250 2764 w
       -(:>3>) 1481 2764 w
       -12 /Times-Roman f
       -(y) 1786 2764 w
       -12 /LucidaSansUnicode04 f
       -(3>4=>) 1846 2764 w
       -12 /Times-Roman f
       -(.) 2207 2764 w
       -12 /LucidaSansUnicode04 f
       -(\032>340) 2271 2764 w
       -(59) 2654 2764 w
       -(MB>) 2831 2764 w
       -12 /Times-Roman f
       -(y) 276 2904 w
       -12 /LucidaSansUnicode04 f
       -(4020;>AL) 336 2904 w
       -12 /Times-Roman f
       -(,) 878 2904 w
       -12 /LucidaSansUnicode04 f
       -(B>) 971 2904 w
       -(55) 1166 2904 w
       -(=5) 1363 2904 w
       -(18;8) 1569 2904 w
       -12 /Times-Roman f
       -(.) 1864 2904 w
       -(H) 1957 2904 w
       -12 /LucidaSansUnicode04 f
       -(>) 2043 2904 w
       -(8=>340) 2180 2904 w
       -(59) 2674 2904 w
       -(=5) 2881 2904 w
       -(257;>) 276 3044 w
       -12 /Times-Roman f
       -(.) 609 3044 w
       -12 /LucidaSansUnicode04 f
       -(\030) 679 3044 w
       -(55) 808 3044 w
       -(18;8) 982 3044 w
       -12 /Times-Roman f
       -(.) 1277 3044 w
       -12 /LucidaSansUnicode04 f
       -(\0218;8) 1347 3044 w
       -(2A5<) 1679 3044 w
       -(;5A><) 1998 3044 w
       -12 /Times-Roman f
       -(.) 2358 3044 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2427 3044 w
       -(>=0) 2555 3044 w
       -12 /Times-Roman f
       -(y) 2809 3044 w
       -12 /LucidaSansUnicode04 f
       -(65) 2869 3044 w
       -(=5) 276 3184 w
       -(<>3;0) 460 3184 w
       -(:>3>) 858 3184 w
       -12 /Times-Roman f
       -(\255) 1128 3184 w
       -12 /LucidaSansUnicode04 f
       -(=81) 1168 3184 w
       -12 /Times-Roman f
       -(y) 1392 3184 w
       -12 /LucidaSansUnicode04 f
       -(4L) 1452 3184 w
       -(>1E8B) 1635 3184 w
       -12 /Times-Roman f
       -(p) 1988 3184 w
       -12 /LucidaSansUnicode04 f
       -(8BL) 2048 3184 w
       -12 /Times-Roman f
       -(.) 2244 3184 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 2316 3184 w
       -12 /Times-Roman f
       -(y,) 2698 3184 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 2830 3184 w
       -(>G5=L) 276 3324 w
       -(B) 648 3324 w
       -12 /Times-Roman f
       -(py) 707 3324 w
       -12 /LucidaSansUnicode04 f
       -(4=>) 827 3324 w
       -(3>) 1089 3324 w
       -12 /Times-Roman f
       -(\255) 1221 3324 w
       -12 /LucidaSansUnicode04 f
       -(=81) 1261 3324 w
       -12 /Times-Roman f
       -(y) 1485 3324 w
       -12 /LucidaSansUnicode04 f
       -(4L) 1545 3324 w
       -(>1E8B) 1719 3324 w
       -12 /Times-Roman f
       -(p) 2072 3324 w
       -12 /LucidaSansUnicode04 f
       -(8BL) 2132 3324 w
       -12 /Times-Roman f
       -(,) 2328 3324 w
       -12 /LucidaSansUnicode04 f
       -(:>340) 2390 3324 w
       -(B51O) 2765 3324 w
       -(1LNB) 276 3464 w
       -12 /Times-Roman f
       -(.) 565 3464 w
       -12 /LucidaSansUnicode04 f
       -(\0364=064K) 680 3464 w
       -(55) 1336 3464 w
       -(8718;8) 1556 3464 w
       -(4>) 2071 3464 w
       -(A<5) 2310 3464 w
       -12 /Times-Roman f
       -(p) 2526 3464 w
       -12 /LucidaSansUnicode04 f
       -(B8) 2586 3464 w
       -12 /Times-Roman f
       -(.) 2721 3464 w
       -12 /LucidaSansUnicode04 f
       -(\0240) 2837 3464 w
       -12 /Times-Roman f
       -(,) 2994 3464 w
       -12 /LucidaSansUnicode04 f
       -(68;40) 276 3604 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(2A5340) 687 3604 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(=0) 1114 3604 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(?) 1286 3604 w
       -12 /Times-Roman f
       -(p) 1362 3604 w
       -12 /LucidaSansUnicode04 f
       -(024) 1422 3604 w
       -12 /Times-Roman f
       -(y ) 1632 3604 w
       -12 /LucidaSansUnicode04 f
       -(2K945B) 1722 3604 w
       -12 /Times-Roman f
       -(.) 2154 3604 w
       -(The) 216 3828 w
       -(fox) 433 3828 w
       -(was) 624 3828 w
       -(very) 841 3828 w
       -(cunning.) 1085 3828 w
       -(She) 1533 3828 w
       -(could) 1745 3828 w
       -(easily) 2044 3828 w
       -(outsmart) 2357 3828 w
       -(any\255) 2811 3828 w
       -(one.) 216 3968 w
       -(When) 484 3968 w
       -(she) 834 3968 w
       -(could) 1058 3968 w
       -(outsmart) 1389 3968 w
       -(someone,) 1875 3968 w
       -(she) 2396 3968 w
       -(was) 2620 3968 w
       -(not) 2870 3968 w
       -(beaten.) 216 4108 w
       -(But) 615 4108 w
       -(when) 845 4108 w
       -(she) 1160 4108 w
       -(coudln't,) 1377 4108 w
       -(she) 1865 4108 w
       -(was) 2082 4108 w
       -(beaten.) 2325 4108 w
       -(Hard.) 2755 4108 w
       -(And) 216 4248 w
       -(at) 475 4248 w
       -(that) 615 4248 w
       -(point) 849 4248 w
       -(she) 1150 4248 w
       -(couldn't) 1362 4248 w
       -(outsmart) 1815 4248 w
       -(anyone,) 2289 4248 w
       -(as) 2717 4248 w
       -(it's) 2869 4248 w
       -(hard) 216 4388 w
       -(to) 462 4388 w
       -(outsmart) 590 4388 w
       -(someone) 1046 4388 w
       -(when) 1507 4388 w
       -(you're) 1800 4388 w
       -(being) 2147 4388 w
       -(beaten.) 2448 4388 w
       -(One) 2825 4388 w
       -(day) 216 4528 w
       -(she) 426 4528 w
       -(was) 623 4528 w
       -(beaten) 846 4528 w
       -(to) 1196 4528 w
       -(death.) 1327 4528 w
       -(Yes,) 1654 4528 w
       -(truth) 1907 4528 w
       -(will) 2171 4528 w
       -(always) 2395 4528 w
       -(come) 2764 4528 w
       -(to light.) 216 4668 w
       -(>>) 216 4892 w
       -12 /LucidaSansUnicode04 f
       -(\032010=) 406 4892 w
       -(1K;) 813 4892 w
       -(1>;LH>9) 1098 4892 w
       -12 /Times-Roman f
       -(,) 1625 4892 w
       -12 /LucidaSansUnicode04 f
       -(A8;L=K9) 1712 4892 w
       -(8) 2276 4892 w
       -(AB) 2409 4892 w
       -12 /Times-Roman f
       -(p) 2529 4892 w
       -12 /LucidaSansUnicode04 f
       -(0H=K9) 2589 4892 w
       -12 /Times-Roman f
       -(.) 2994 4892 w
       -12 /LucidaSansUnicode04 f
       -(\0253>) 276 5032 w
       -(2A5) 537 5032 w
       -(>G5=L) 792 5032 w
       -(1>O;8AL) 1194 5032 w
       -12 /Times-Roman f
       -(.) 1669 5032 w
       -12 /LucidaSansUnicode04 f
       -(\030) 1762 5032 w
       -(?>MB><) 1914 5032 w
       -12 /Times-Roman f
       -(y) 2344 5032 w
       -12 /LucidaSansUnicode04 f
       -(53>) 2467 5032 w
       -(18;8) 2729 5032 w
       -(B>;L:>) 276 5172 w
       -(2A5<) 715 5172 w
       -(;5A><) 1033 5172 w
       -12 /Times-Roman f
       -(.) 1393 5172 w
       -12 /LucidaSansUnicode04 f
       -(\030;8) 1461 5172 w
       -(?) 1735 5172 w
       -12 /Times-Roman f
       -(p) 1811 5172 w
       -12 /LucidaSansUnicode04 f
       -(>AB>) 1871 5172 w
       -(:840;8) 2175 5172 w
       -(2) 2647 5172 w
       -(=53>) 2749 5172 w
       -(:0<=O<8) 276 5312 w
       -12 /Times-Roman f
       -(.) 796 5312 w
       -12 /LucidaSansUnicode04 f
       -(\032010=) 915 5312 w
       -(MB>3>) 1355 5312 w
       -(>G5=L) 1769 5312 w
       -(=5) 2197 5312 w
       -(;N18;) 2429 5312 w
       -12 /Times-Roman f
       -(.) 2816 5312 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2935 5312 w
       -(>4=064K) 276 5452 w
       -(=>GLN) 869 5452 w
       -(>=) 1282 5452 w
       -(A?) 1475 5452 w
       -12 /Times-Roman f
       -(p) 1612 5452 w
       -12 /LucidaSansUnicode04 f
       -(OB0;) 1672 5452 w
       -(2A5) 1973 5452 w
       -(:0<=8) 2210 5452 w
       -(2) 2626 5452 w
       -(;5A) 2735 5452 w
       -12 /Times-Roman f
       -(y.) 2934 5452 w
       -12 /LucidaSansUnicode04 f
       -(\0270) 276 5592 w
       -(MB>) 438 5592 w
       -(53>) 662 5592 w
       -(>G5=L) 892 5592 w
       -(A8;L=>) 1262 5592 w
       -(8718;8) 1711 5592 w
       -12 /Times-Roman f
       -(. ) 2140 5592 w
       -12 /LucidaSansUnicode04 f
       -(\021>;LH5) 2200 5592 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(\032010=) 2673 5592 w
       -(=8:>340) 276 5732 w
       -(=5) 817 5732 w
       -(?) 1006 5732 w
       -12 /Times-Roman f
       -(p) 1082 5732 w
       -12 /LucidaSansUnicode04 f
       -(OB0;) 1142 5732 w
       -(:0<=8) 1445 5732 w
       -12 /Times-Roman f
       -(.) 1816 5732 w
       -12 /LucidaSansUnicode04 f
       -(\022>8AB8=) 1892 5732 w
       -12 /Times-Roman f
       -(y) 2383 5732 w
       -12 /LucidaSansUnicode04 f
       -(3>2>) 2489 5732 w
       -12 /Times-Roman f
       -(p) 2758 5732 w
       -12 /LucidaSansUnicode04 f
       -(OB) 2818 5732 w
       -12 /Times-Roman f
       -(\255) 2984 5732 w
       -12 /LucidaSansUnicode04 f
       -(2) 276 5872 w
       -12 /Times-Roman f
       -(p) 340 5872 w
       -12 /LucidaSansUnicode04 f
       -(5<O) 400 5872 w
       -(A>18) 668 5872 w
       -12 /Times-Roman f
       -(p) 950 5872 w
       -12 /LucidaSansUnicode04 f
       -(0BL) 1010 5872 w
       -(:0<=8) 1248 5872 w
       -(8) 1671 5872 w
       -(2) 1799 5872 w
       -12 /Times-Roman f
       -(p) 1863 5872 w
       -12 /LucidaSansUnicode04 f
       -(5<O) 1923 5872 w
       -(8E) 2191 5872 w
       -(=5) 2392 5872 w
       -(B) 2587 5872 w
       -12 /Times-Roman f
       -(p) 2646 5872 w
       -12 /LucidaSansUnicode04 f
       -(>30BL) 2706 5872 w
       -(=8:>340) 276 6012 w
       -12 /Times-Roman f
       -(.) 771 6012 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 8 8
       -%%Page: 9 9
       -/saveobj save def
       -mark
       -9 pagesetup
       -12 /Times-Roman f
       -(The) 216 356 w
       -(boar) 435 356 w
       -(was) 681 356 w
       -(big,) 900 356 w
       -(strong,) 1117 356 w
       -(and) 1481 356 w
       -(scary.) 1688 356 w
       -(Everyone) 2005 356 w
       -(was) 2498 356 w
       -(scared) 2718 356 w
       -(of) 216 496 w
       -(him.) 351 496 w
       -(That) 604 496 w
       -(is) 859 496 w
       -(why) 975 496 w
       -(he) 1216 496 w
       -(was) 1364 496 w
       -(always) 1585 496 w
       -(beaten) 1953 496 w
       -(with) 2301 496 w
       -(the) 2550 496 w
       -(whole) 2731 496 w
       -(forest.) 216 636 w
       -(Or) 568 636 w
       -(simply) 742 636 w
       -(stoned) 1119 636 w
       -(him.) 1482 636 w
       -(The) 1749 636 w
       -(boar) 1984 636 w
       -(didn't) 2246 636 w
       -(like) 2583 636 w
       -(that.) 2813 636 w
       -(One) 216 776 w
       -(day) 456 776 w
       -(he) 670 776 w
       -(hid) 824 776 w
       -(all) 1019 776 w
       -(of) 1181 776 w
       -(the) 1322 776 w
       -(stones) 1510 776 w
       -(in) 1852 776 w
       -(the) 1986 776 w
       -(forest.) 2173 776 w
       -(For) 2517 776 w
       -(the) 2724 776 w
       -(he) 2911 776 w
       -(was) 216 916 w
       -(beaten) 462 916 w
       -(really) 836 916 w
       -(hard.) 1171 916 w
       -(After) 1475 916 w
       -(that,) 1789 916 w
       -(the) 2061 916 w
       -(boar) 2269 916 w
       -(never) 2543 916 w
       -(hid) 2870 916 w
       -(stones.) 216 1056 w
       -(And) 596 1056 w
       -(so) 851 1056 w
       -(they) 1007 1056 w
       -(say,) 1263 1056 w
       -(there) 1502 1056 w
       -(is) 1790 1056 w
       -(time) 1919 1056 w
       -(to) 2182 1056 w
       -(collect) 2324 1056 w
       -(stones,) 2693 1056 w
       -(and time) 216 1196 w
       -(to not) 664 1196 w
       -(touch them.) 972 1196 w
       -(>>) 216 1420 w
       -12 /LucidaSansUnicode04 f
       -(\032>75;) 398 1420 w
       -(=5) 786 1420 w
       -(1K;) 977 1420 w
       -(=8) 1254 1420 w
       -(7;K<) 1455 1420 w
       -12 /Times-Roman f
       -(,) 1758 1420 w
       -12 /LucidaSansUnicode04 f
       -(=8) 1837 1420 w
       -(4>1) 2038 1420 w
       -12 /Times-Roman f
       -(p) 2263 1420 w
       -12 /LucidaSansUnicode04 f
       -(K<) 2323 1420 w
       -12 /Times-Roman f
       -(.) 2497 1420 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 2576 1420 w
       -(1K;) 2795 1420 w
       -(?) 276 1560 w
       -12 /Times-Roman f
       -(p) 352 1560 w
       -12 /LucidaSansUnicode04 f
       -(>AB>) 412 1560 w
       -(\032>75;) 727 1560 w
       -12 /Times-Roman f
       -(.) 1067 1560 w
       -12 /LucidaSansUnicode04 f
       -(=) 1176 1560 w
       -(G0AB>) 1301 1560 w
       -(:>7;8;) 1671 1560 w
       -12 /Times-Roman f
       -(.) 2085 1560 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2164 1560 w
       -(53>) 2302 1560 w
       -(1>O;8AL) 2549 1560 w
       -(18BL) 276 1700 w
       -12 /Times-Roman f
       -(.) 544 1700 w
       -12 /LucidaSansUnicode04 f
       -(\030) 617 1700 w
       -(>=) 750 1700 w
       -(A2>8<) 943 1700 w
       -(:>7;>2AB2><) 1349 1700 w
       -(2A5E) 2142 1700 w
       -(4>AB0;) 2451 1700 w
       -12 /Times-Roman f
       -(.) 2861 1700 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2935 1700 w
       -(B>340) 276 1840 w
       -(53>) 701 1840 w
       -(8718;8) 987 1840 w
       -(4>) 1503 1840 w
       -(A<5) 1743 1840 w
       -12 /Times-Roman f
       -(p) 1959 1840 w
       -12 /LucidaSansUnicode04 f
       -(B8) 2019 1840 w
       -12 /Times-Roman f
       -(.) 2154 1840 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 2271 1840 w
       -12 /Times-Roman f
       -(y,) 2653 1840 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 2830 1840 w
       -(8=0G5) 276 1980 w
       -(>=) 672 1980 w
       -(1K) 870 1980 w
       -12 /Times-Roman f
       -(y) 1078 1980 w
       -12 /LucidaSansUnicode04 f
       -(<5) 1138 1980 w
       -12 /Times-Roman f
       -(p) 1293 1980 w
       -12 /LucidaSansUnicode04 f
       -(>B) 1403 1980 w
       -(AB0) 1585 1980 w
       -12 /Times-Roman f
       -(p) 1771 1980 w
       -12 /LucidaSansUnicode04 f
       -(>AB8) 1831 1980 w
       -12 /Times-Roman f
       -(.) 2100 1980 w
       -12 /LucidaSansUnicode04 f
       -(\032>340) 2180 1980 w
       -12 /Times-Roman f
       -(\255) 2529 1980 w
       -12 /LucidaSansUnicode04 f
       -(=81) 2569 1980 w
       -12 /Times-Roman f
       -(y) 2793 1980 w
       -12 /LucidaSansUnicode04 f
       -(4L) 2853 1980 w
       -12 /Times-Roman f
       -(.) 2994 1980 w
       -12 /LucidaSansUnicode04 f
       -(\032>340) 276 2120 w
       -(\032>75;) 699 2120 w
       -12 /Times-Roman f
       -(y) 1113 2120 w
       -12 /LucidaSansUnicode04 f
       -(<5) 1173 2120 w
       -12 /Times-Roman f
       -(p,) 1328 2120 w
       -12 /LucidaSansUnicode04 f
       -(\03454254L) 1492 2120 w
       -(A8;L=>) 2088 2120 w
       -(?;0:0;) 2579 2120 w
       -12 /Times-Roman f
       -(.) 2994 2120 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 276 2260 w
       -12 /Times-Roman f
       -(y,) 658 2260 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 826 2260 w
       -(>=) 1099 2260 w
       -(2) 1327 2260 w
       -(B09=5) 1470 2260 w
       -(;N18;) 1893 2260 w
       -(\032>7;0) 2359 2260 w
       -12 /Times-Roman f
       -(.) 2698 2260 w
       -12 /LucidaSansUnicode04 f
       -(\0240) 2837 2260 w
       -12 /Times-Roman f
       -(,) 2994 2260 w
       -12 /LucidaSansUnicode04 f
       -(;N1>2L) 276 2400 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(7;0) 744 2400 w
       -12 /Times-Roman f
       -(, ) 939 2400 w
       -12 /LucidaSansUnicode04 f
       -(?>;N18HL) 999 2400 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(8) 1656 2400 w
       -(\032>7;0) 1762 2400 w
       -12 /Times-Roman f
       -(.) 2101 2400 w
       -(The) 216 2624 w
       -(goat) 434 2624 w
       -(was) 673 2624 w
       -(neither) 891 2624 w
       -(good) 1257 2624 w
       -(nor) 1529 2624 w
       -(evil.) 1721 2624 w
       -(He) 1965 2624 w
       -(was) 2137 2624 w
       -(a) 2356 2624 w
       -(goat.) 2442 2624 w
       -(He) 2712 2624 w
       -(of\255) 2884 2624 w
       -(ten) 216 2764 w
       -(goated.) 405 2764 w
       -(And) 797 2764 w
       -(the) 1045 2764 w
       -(animals) 1234 2764 w
       -(were) 1650 2764 w
       -(scared) 1923 2764 w
       -(of) 2270 2764 w
       -(beating) 2411 2764 w
       -(him.) 2806 2764 w
       -(With) 216 2904 w
       -(his) 510 2904 w
       -(goatness) 704 2904 w
       -(he) 1171 2904 w
       -(got) 1337 2904 w
       -(on) 1544 2904 w
       -(everyones) 1717 2904 w
       -(nerves.) 2256 2904 w
       -(And) 2652 2904 w
       -(he) 2911 2904 w
       -(was) 216 3044 w
       -(beaten) 457 3044 w
       -(to) 825 3044 w
       -(death,) 974 3044 w
       -(because) 1319 3044 w
       -(otherwise) 1753 3044 w
       -(he) 2275 3044 w
       -(would) 2443 3044 w
       -(have) 2798 3044 w
       -(died) 216 3184 w
       -(of) 470 3184 w
       -(old) 617 3184 w
       -(age.) 818 3184 w
       -(Someday.) 1062 3184 w
       -(After) 1587 3184 w
       -(the) 1888 3184 w
       -(goat) 2083 3184 w
       -(died,) 2338 3184 w
       -(the) 2623 3184 w
       -(bear) 2818 3184 w
       -(cried,) 216 3324 w
       -(because) 533 3324 w
       -(he) 959 3324 w
       -(secretly) 1119 3324 w
       -(loved) 1540 3324 w
       -(the) 1853 3324 w
       -(goat.) 2046 3324 w
       -(Yes,) 2329 3324 w
       -(love) 2591 3324 w
       -(is) 2844 3324 w
       -(a) 2971 3324 w
       -(cruel) 216 3464 w
       -(mistress.) 486 3464 w
       -(>>) 216 3688 w
       -12 /LucidaSansUnicode04 f
       -(\02568:) 468 3688 w
       -(1K;) 880 3688 w
       -(<0;5=L:89) 1227 3688 w
       -(8) 1991 3688 w
       -(:>;NG89) 2185 3688 w
       -12 /Times-Roman f
       -(.) 2705 3688 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 2854 3688 w
       -(:>;>;AO) 276 3828 w
       -12 /Times-Roman f
       -(.) 751 3828 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 813 3828 w
       -(=5) 1015 3828 w
       -(1K;) 1190 3828 w
       -(7;K<) 1451 3828 w
       -12 /Times-Roman f
       -(,) 1754 3828 w
       -12 /LucidaSansUnicode04 f
       -(>=) 1816 3828 w
       -(:>;>;AO) 1997 3828 w
       -(?>) 2503 3828 w
       -(A2>59) 2683 3828 w
       -(?) 276 3968 w
       -12 /Times-Roman f
       -(p) 352 3968 w
       -12 /LucidaSansUnicode04 f
       -(8) 412 3968 w
       -12 /Times-Roman f
       -(p) 488 3968 w
       -12 /LucidaSansUnicode04 f
       -(>45) 548 3968 w
       -12 /Times-Roman f
       -(.) 768 3968 w
       -12 /LucidaSansUnicode04 f
       -(\0307) 832 3968 w
       -12 /Times-Roman f
       -(\255) 979 3968 w
       -12 /LucidaSansUnicode04 f
       -(70) 1019 3968 w
       -(MB>3>) 1177 3968 w
       -(53>) 1536 3968 w
       -(18;8) 1769 3968 w
       -(B>;L:>) 2098 3968 w
       -(2) 2535 3968 w
       -(682>B) 2634 3968 w
       -12 /Times-Roman f
       -(.) 2994 3968 w
       -12 /LucidaSansUnicode04 f
       -(\02568:) 276 4108 w
       -(MB>3>) 605 4108 w
       -(=5) 965 4108 w
       -(;N18;) 1143 4108 w
       -(8) 1565 4108 w
       -(AB0;) 1676 4108 w
       -(1) 1968 4108 w
       -12 /Times-Roman f
       -(p) 2040 4108 w
       -12 /LucidaSansUnicode04 f
       -(8BLAO) 2100 4108 w
       -(=03>;>) 2453 4108 w
       -12 /Times-Roman f
       -(.) 2871 4108 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2935 4108 w
       -(B>340) 276 4248 w
       -(53>) 697 4248 w
       -(AB0;8) 981 4248 w
       -(18BL) 1399 4248 w
       -(:0:) 1752 4248 w
       -(2A5E) 2033 4248 w
       -12 /Times-Roman f
       -(.) 2298 4248 w
       -12 /LucidaSansUnicode04 f
       -(\0240) 2413 4248 w
       -12 /Times-Roman f
       -(,) 2570 4248 w
       -12 /LucidaSansUnicode04 f
       -(>G5=L) 2685 4248 w
       -(B) 276 4388 w
       -12 /Times-Roman f
       -(py) 335 4388 w
       -12 /LucidaSansUnicode04 f
       -(4=>) 455 4388 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(1KBL) 714 4388 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(=5) 1022 4388 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(B0:8<) 1195 4388 w
       -(:0:) 1579 4388 w
       -(2A5) 1805 4388 w
       -12 /Times-Roman f
       -(.) 1997 4388 w
       -(The) 216 4612 w
       -(hedgehog) 444 4612 w
       -(was) 952 4612 w
       -(small) 1180 4612 w
       -(and) 1484 4612 w
       -(prickly.) 1699 4612 w
       -(He) 2112 4612 w
       -(wasn't) 2294 4612 w
       -(evil,) 2657 4612 w
       -(he) 2911 4612 w
       -(was) 216 4752 w
       -(prickly) 436 4752 w
       -(by) 811 4752 w
       -(his) 965 4752 w
       -(own) 1140 4752 w
       -(nature.) 1380 4752 w
       -(For) 1744 4752 w
       -(that) 1945 4752 w
       -(he) 2160 4752 w
       -(was) 2306 4752 w
       -(beaten) 2525 4752 w
       -(ex\255) 2871 4752 w
       -(clusively) 216 4892 w
       -(in) 707 4892 w
       -(the) 857 4892 w
       -(stomach.) 1061 4892 w
       -(And) 1549 4892 w
       -(so) 1812 4892 w
       -(the) 1976 4892 w
       -(hedgehog) 2180 4892 w
       -(started) 2703 4892 w
       -(shaving) 216 5032 w
       -(bald.) 627 5032 w
       -(And) 901 5032 w
       -(he) 1143 5032 w
       -(was) 1292 5032 w
       -(beaten) 1514 5032 w
       -(like) 1863 5032 w
       -(everyone) 2080 5032 w
       -(else.) 2555 5032 w
       -(Yes,) 2808 5032 w
       -(it's) 216 5172 w
       -(hard to be) 401 5172 w
       -(not) 911 5172 w
       -(like) 1095 5172 w
       -(everyone) 1306 5172 w
       -(else.) 1775 5172 w
       -(>>) 216 5396 w
       -12 /LucidaSansUnicode04 f
       -(!:) 388 5396 w
       -12 /Times-Roman f
       -(y) 536 5396 w
       -12 /LucidaSansUnicode04 f
       -(=A) 596 5396 w
       -(1K;) 772 5396 w
       -(?>GB8) 1040 5396 w
       -(B0:8<) 1425 5396 w
       -12 /Times-Roman f
       -(,) 1779 5396 w
       -12 /LucidaSansUnicode04 f
       -(:0:) 1848 5396 w
       -(\0270OF) 2083 5396 w
       -12 /Times-Roman f
       -(.) 2355 5396 w
       -(H) 2424 5396 w
       -12 /LucidaSansUnicode04 f
       -(>) 2510 5396 w
       -(B>;L:>) 2622 5396 w
       -(>G5=L) 276 5536 w
       -(=NG8<) 699 5536 w
       -12 /Times-Roman f
       -(.) 1098 5536 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 1212 5536 w
       -(?;>E>) 1465 5536 w
       -(?0E=) 1914 5536 w
       -12 /Times-Roman f
       -(y) 2205 5536 w
       -12 /LucidaSansUnicode04 f
       -(;) 2265 5536 w
       -12 /Times-Roman f
       -(.) 2336 5536 w
       -12 /LucidaSansUnicode04 f
       -(\0253>) 2449 5536 w
       -(18;8) 2729 5536 w
       -(B>;L:>) 276 5676 w
       -(2) 709 5676 w
       -(?>;8MB8;5=>2><) 804 5676 w
       -(?0:5B5) 1839 5676 w
       -12 /Times-Roman f
       -(.) 2239 5676 w
       -12 /LucidaSansUnicode04 f
       -(">340) 2300 5676 w
       -(70?0E) 2685 5676 w
       -(1K;) 276 5816 w
       -(=5) 538 5816 w
       -(B0:>9) 714 5816 w
       -(A8;L=K9) 1086 5816 w
       -12 /Times-Roman f
       -(.) 1593 5816 w
       -12 /LucidaSansUnicode04 f
       -(\0364=064K) 1656 5816 w
       -12 /Times-Roman f
       -(y) 2259 5816 w
       -12 /LucidaSansUnicode04 f
       -(!:) 2352 5816 w
       -12 /Times-Roman f
       -(y) 2500 5816 w
       -12 /LucidaSansUnicode04 f
       -(=A0) 2560 5816 w
       -(1K;) 2795 5816 w
       -(45=L) 276 5956 w
       -12 /Times-Roman f
       -(p) 636 5956 w
       -12 /LucidaSansUnicode04 f
       -(>645=8O) 696 5956 w
       -12 /Times-Roman f
       -(.) 1217 5956 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 1323 5956 w
       -(?) 1569 5956 w
       -12 /Times-Roman f
       -(p) 1645 5956 w
       -12 /LucidaSansUnicode04 f
       -(83;0A8;) 1705 5956 w
       -(2A5E) 2261 5956 w
       -(725) 2602 5956 w
       -12 /Times-Roman f
       -(p) 2791 5956 w
       -12 /LucidaSansUnicode04 f
       -(59) 2851 5956 w
       -12 /Times-Roman f
       -(,) 2994 5956 w
       -12 /LucidaSansUnicode04 f
       -(?>B><) 276 6096 w
       -12 /Times-Roman f
       -(y,) 645 6096 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 779 6096 w
       -(1K;) 1017 6096 w
       -(604=K<) 1290 6096 w
       -(8) 1817 6096 w
       -(;N18;) 1936 6096 w
       -(?>40) 2366 6096 w
       -12 /Times-Roman f
       -(p) 2661 6096 w
       -12 /LucidaSansUnicode04 f
       -(:8) 2721 6096 w
       -12 /Times-Roman f
       -(.) 2862 6096 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2935 6096 w
       -(725) 276 6236 w
       -12 /Times-Roman f
       -(p) 465 6236 w
       -12 /LucidaSansUnicode04 f
       -(8) 525 6236 w
       -(?>40) 663 6236 w
       -12 /Times-Roman f
       -(p) 958 6236 w
       -12 /LucidaSansUnicode04 f
       -(8;8) 1018 6236 w
       -(5<) 1303 6236 w
       -12 /Times-Roman f
       -(y) 1458 6236 w
       -12 /LucidaSansUnicode04 f
       -(=>2K9) 1581 6236 w
       -(?>;8MB8;5=>2K9) 2019 6236 w
       -(?0:5B) 276 6376 w
       -12 /Times-Roman f
       -(.) 609 6376 w
       -12 /LucidaSansUnicode04 f
       -(\030) 671 6376 w
       -(A8;L=>) 792 6376 w
       -(8718;8) 1241 6376 w
       -(4>) 1701 6376 w
       -(?>B5) 1885 6376 w
       -12 /Times-Roman f
       -(p) 2160 6376 w
       -12 /LucidaSansUnicode04 f
       -(8) 2220 6376 w
       -(A>7=0=8O) 2327 6376 w
       -12 /Times-Roman f
       -(.) 2874 6376 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2935 6376 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 9 9
       -%%Page: 10 10
       -/saveobj save def
       -mark
       -10 pagesetup
       -12 /LucidaSansUnicode04 f
       -(!:) 276 356 w
       -12 /Times-Roman f
       -(y) 424 356 w
       -12 /LucidaSansUnicode04 f
       -(=A) 484 356 w
       -(704>E=) 745 356 w
       -12 /Times-Roman f
       -(y) 1171 356 w
       -12 /LucidaSansUnicode04 f
       -(;AO) 1231 356 w
       -(2) 1548 356 w
       -(?0:5B5) 1737 356 w
       -12 /Times-Roman f
       -(.) 2137 356 w
       -12 /LucidaSansUnicode04 f
       -("0:) 2292 356 w
       -(53>) 2624 356 w
       -(8) 2948 356 w
       -(?>E>) 276 496 w
       -12 /Times-Roman f
       -(p) 571 496 w
       -12 /LucidaSansUnicode04 f
       -(>=8;8) 631 496 w
       -12 /Times-Roman f
       -(.) 1003 496 w
       -12 /LucidaSansUnicode04 f
       -(\022) 1077 496 w
       -(?0:5B5) 1191 496 w
       -12 /Times-Roman f
       -(.) 1591 496 w
       -12 /LucidaSansUnicode04 f
       -(\022) 1664 496 w
       -(>G5=L) 1777 496 w
       -(\0240;L=5<) 2159 496 w
       -(\0335A) 2722 496 w
       -12 /Times-Roman f
       -(y.) 2934 496 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 276 636 w
       -12 /Times-Roman f
       -(y,) 658 636 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 878 636 w
       -(<5) 1202 636 w
       -12 /Times-Roman f
       -(p) 1357 636 w
       -12 /LucidaSansUnicode04 f
       -(B2K9) 1417 636 w
       -(!:) 1832 636 w
       -12 /Times-Roman f
       -(y) 1980 636 w
       -12 /LucidaSansUnicode04 f
       -(=A) 2040 636 w
       -(2>=O;) 2307 636 w
       -(5I5) 2783 636 w
       -(A8;L=55) 276 776 w
       -12 /Times-Roman f
       -(.) 755 776 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 935 776 w
       -(?) 1467 776 w
       -12 /Times-Roman f
       -(p) 1543 776 w
       -12 /LucidaSansUnicode04 f
       -(8H;8) 1603 776 w
       -(68B5;8) 2077 776 w
       -(\036G5=L) 2664 776 w
       -(\0240;L=53>) 276 916 w
       -(\0335A0) 886 916 w
       -(8) 1210 916 w
       -(2) 1332 916 w
       -(A5E) 1442 916 w
       -(A8;L=>) 1689 916 w
       -(8718;8) 2153 916 w
       -12 /Times-Roman f
       -(.) 2582 916 w
       -12 /LucidaSansUnicode04 f
       -(\030<) 2658 916 w
       -(=5) 2881 916 w
       -(?>=) 276 1056 w
       -12 /Times-Roman f
       -(p) 501 1056 w
       -12 /LucidaSansUnicode04 f
       -(028;AO) 561 1056 w
       -(70?0E) 1059 1056 w
       -(<5) 1497 1056 w
       -12 /Times-Roman f
       -(p) 1652 1056 w
       -12 /LucidaSansUnicode04 f
       -(B2>3>) 1712 1056 w
       -(!:) 2139 1056 w
       -12 /Times-Roman f
       -(y) 2287 1056 w
       -12 /LucidaSansUnicode04 f
       -(=A0) 2347 1056 w
       -12 /Times-Roman f
       -(.) 2550 1056 w
       -12 /LucidaSansUnicode04 f
       -(\0240) 2678 1056 w
       -12 /Times-Roman f
       -(,) 2835 1056 w
       -12 /LucidaSansUnicode04 f
       -(A) 2963 1056 w
       -(A>A54O<8) 276 1196 w
       -(=04>) 873 1196 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(68BL) 1198 1196 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(2) 1512 1196 w
       -(<8) 1606 1196 w
       -12 /Times-Roman f
       -(p) 1770 1196 w
       -12 /LucidaSansUnicode04 f
       -(5) 1830 1196 w
       -12 /Times-Roman f
       -(.) 1897 1196 w
       -(The) 216 1420 w
       -(skunk) 450 1420 w
       -(was) 785 1420 w
       -(very) 1019 1420 w
       -(much) 1281 1420 w
       -(like) 1597 1420 w
       -(rabbit.) 1827 1420 w
       -(But) 2187 1420 w
       -(very) 2410 1420 w
       -(smelly.) 2672 1420 w
       -(He) 216 1560 w
       -(was) 392 1560 w
       -(beaten) 615 1560 w
       -(only) 965 1560 w
       -(inside) 1216 1560 w
       -(a) 1540 1560 w
       -(plastic) 1629 1560 w
       -(bag,) 1980 1560 w
       -(because) 2219 1560 w
       -(then) 2634 1560 w
       -(the) 2877 1560 w
       -(smell) 216 1700 w
       -(wasn't) 527 1700 w
       -(as) 896 1700 w
       -(bad.) 1045 1700 w
       -(One) 1297 1700 w
       -(day) 1545 1700 w
       -(the) 1767 1700 w
       -(skunk) 1963 1700 w
       -(had) 2299 1700 w
       -(a) 2521 1700 w
       -(birthday) 2623 1700 w
       -(party,) 216 1840 w
       -(and) 534 1840 w
       -(he) 748 1840 w
       -(invited) 901 1840 w
       -(all) 1276 1840 w
       -(of) 1437 1840 w
       -(the) 1577 1840 w
       -(animals) 1764 1840 w
       -(as) 2179 1840 w
       -(he) 2319 1840 w
       -(was) 2472 1840 w
       -(greedy) 2698 1840 w
       -(and) 216 1980 w
       -(he) 424 1980 w
       -(loved) 572 1980 w
       -(presents.) 874 1980 w
       -(The) 1333 1980 w
       -(animals) 1554 1980 w
       -(got) 1964 1980 w
       -(him) 2154 1980 w
       -(a) 2378 1980 w
       -(new) 2467 1980 w
       -(plastig) 2702 1980 w
       -(bag.) 216 2120 w
       -(And) 469 2120 w
       -(then) 725 2120 w
       -(proceeded) 982 2120 w
       -(to) 1524 2120 w
       -(beat) 1668 2120 w
       -(him) 1917 2120 w
       -(until) 2154 2120 w
       -(loss) 2425 2120 w
       -(of) 2662 2120 w
       -(con\255) 2811 2120 w
       -(sciousness.) 216 2260 w
       -(The) 818 2260 w
       -(skunk) 1068 2260 w
       -(then) 1419 2260 w
       -(suffocated) 1691 2260 w
       -(inside) 2256 2260 w
       -(the) 2609 2260 w
       -(bag.) 2821 2260 w
       -(That) 216 2400 w
       -(is) 473 2400 w
       -(how) 591 2400 w
       -(he) 834 2400 w
       -(was) 984 2400 w
       -(buried.) 1207 2400 w
       -(In) 1581 2400 w
       -(the) 1718 2400 w
       -(plastic) 1902 2400 w
       -(bag.) 2253 2400 w
       -(In) 2492 2400 w
       -(the) 2628 2400 w
       -(very) 2811 2400 w
       -(far) 216 2540 w
       -(away) 382 2540 w
       -(forest,) 667 2540 w
       -(as) 1004 2540 w
       -(a) 1137 2540 w
       -(dead) 1223 2540 w
       -(skunk) 1482 2540 w
       -(smelt) 1802 2540 w
       -(worse) 2097 2540 w
       -(than) 2416 2540 w
       -(a) 2656 2540 w
       -(living) 2742 2540 w
       -(skunk.) 216 2680 w
       -(Then) 586 2680 w
       -(the) 885 2680 w
       -(animals) 1084 2680 w
       -(from) 1511 2680 w
       -(the) 1797 2680 w
       -(very) 1996 2680 w
       -(far) 2261 2680 w
       -(away) 2446 2680 w
       -(forest) 2750 2680 w
       -(came) 216 2820 w
       -(and) 510 2820 w
       -(beat) 724 2820 w
       -(everyone) 966 2820 w
       -(hard.) 1447 2820 w
       -(They) 1732 2820 w
       -(didn't) 2020 2820 w
       -(like) 2350 2820 w
       -(the) 2573 2820 w
       -(smell) 2762 2820 w
       -(of) 216 2960 w
       -(the) 346 2960 w
       -(dead skunk. Yes, you must) 523 2960 w
       -(love) 1847 2960 w
       -(your) 2084 2960 w
       -(neighbour.) 2334 2960 w
       -(>>) 216 3184 w
       -12 /LucidaSansUnicode04 f
       -(%><O:) 395 3184 w
       -(1K;) 803 3184 w
       -(B>65) 1078 3184 w
       -(>G5=L) 1411 3184 w
       -(604=K<) 1796 3184 w
       -12 /Times-Roman f
       -(.) 2280 3184 w
       -12 /LucidaSansUnicode04 f
       -(\030) 2356 3184 w
       -(1>30BK<) 2491 3184 w
       -12 /Times-Roman f
       -(.) 2994 3184 w
       -12 /LucidaSansUnicode04 f
       -(\025A;8) 276 3324 w
       -(1K) 586 3324 w
       -(>=) 781 3324 w
       -(45;8;AO) 967 3324 w
       -(A2>8<) 1491 3324 w
       -(1>30BAB2><) 1890 3324 w
       -12 /Times-Roman f
       -(,) 2564 3324 w
       -12 /LucidaSansUnicode04 f
       -(53>) 2631 3324 w
       -(1K) 2866 3324 w
       -(18;8) 276 3464 w
       -(=5) 606 3464 w
       -(B0:) 784 3464 w
       -(A8;L=>) 1009 3464 w
       -12 /Times-Roman f
       -(.) 1427 3464 w
       -(H) 1492 3464 w
       -12 /LucidaSansUnicode04 f
       -(>) 1578 3464 w
       -(>=) 1686 3464 w
       -(1K;) 1870 3464 w
       -(>G5=L) 2135 3464 w
       -(604=K<) 2510 3464 w
       -12 /Times-Roman f
       -(.) 2994 3464 w
       -12 /LucidaSansUnicode04 f
       -(\0270) 276 3604 w
       -(MB>) 488 3604 w
       -(53>) 762 3604 w
       -(18;8) 1042 3604 w
       -(A8;L=>) 1418 3604 w
       -12 /Times-Roman f
       -(.) 1836 3604 w
       -12 /LucidaSansUnicode04 f
       -(\030) 1947 3604 w
       -(5<) 2117 3604 w
       -12 /Times-Roman f
       -(y) 2272 3604 w
       -12 /LucidaSansUnicode04 f
       -(2A5) 2413 3604 w
       -12 /Times-Roman f
       -(p) 2685 3604 w
       -12 /LucidaSansUnicode04 f
       -(02=>) 2745 3604 w
       -(?) 276 3744 w
       -12 /Times-Roman f
       -(p) 352 3744 w
       -12 /LucidaSansUnicode04 f
       -(8E>48;>AL) 412 3744 w
       -(45;8BLAO) 1121 3744 w
       -12 /Times-Roman f
       -(.) 1657 3744 w
       -12 /LucidaSansUnicode04 f
       -(\030) 1752 3744 w
       -(>=) 1907 3744 w
       -(3>) 2122 3744 w
       -12 /Times-Roman f
       -(p) 2254 3744 w
       -12 /LucidaSansUnicode04 f
       -(L:>) 2314 3744 w
       -(?;0:0;) 2579 3744 w
       -12 /Times-Roman f
       -(.) 2994 3744 w
       -12 /LucidaSansUnicode04 f
       -(\0240) 276 3884 w
       -12 /Times-Roman f
       -(, ) 433 3884 w
       -12 /LucidaSansUnicode04 f
       -(1>30BK5) 493 3884 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(B>65) 1005 3884 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(?;0G) 1322 3884 w
       -12 /Times-Roman f
       -(y) 1597 3884 w
       -12 /LucidaSansUnicode04 f
       -(B) 1657 3884 w
       -12 /Times-Roman f
       -(.) 1716 3884 w
       -(The) 216 4108 w
       -(hasmter) 438 4108 w
       -(was) 855 4108 w
       -(also) 1077 4108 w
       -(very) 1307 4108 w
       -(greedy.) 1556 4108 w
       -(And) 1948 4108 w
       -(rich.) 2190 4108 w
       -(If) 2444 4108 w
       -(he) 2561 4108 w
       -(shared) 2711 4108 w
       -(his) 216 4248 w
       -(riches) 420 4248 w
       -(he) 770 4248 w
       -(woudn't) 946 4248 w
       -(be) 1409 4248 w
       -(beaten) 1585 4248 w
       -(as) 1960 4248 w
       -(hard.) 2122 4248 w
       -(But) 2427 4248 w
       -(he) 2663 4248 w
       -(was) 2838 4248 w
       -(greedy.) 216 4388 w
       -(And) 605 4388 w
       -(he) 844 4388 w
       -(was) 990 4388 w
       -(beaten) 1209 4388 w
       -(hard.) 1555 4388 w
       -(And) 1832 4388 w
       -(he) 2072 4388 w
       -(still) 2219 4388 w
       -(had) 2436 4388 w
       -(to) 2643 4388 w
       -(share) 2771 4388 w
       -(his) 216 4528 w
       -(riches. For) 387 4528 w
       -(that) 931 4528 w
       -(he) 1142 4528 w
       -(cried. Yes, even rich people) 1285 4528 w
       -(cry.) 2654 4528 w
       -(>>) 216 4752 w
       -12 /LucidaSansUnicode04 f
       -(\03352) 431 4752 w
       -(1K;) 727 4752 w
       -(F0) 1037 4752 w
       -12 /Times-Roman f
       -(p) 1183 4752 w
       -12 /LucidaSansUnicode04 f
       -(L) 1243 4752 w
       -(725) 1385 4752 w
       -12 /Times-Roman f
       -(p) 1574 4752 w
       -12 /LucidaSansUnicode04 f
       -(59) 1634 4752 w
       -12 /Times-Roman f
       -(.) 1777 4752 w
       -12 /LucidaSansUnicode04 f
       -(\036=) 1888 4752 w
       -(?) 2139 4752 w
       -12 /Times-Roman f
       -(p) 2215 4752 w
       -12 /LucidaSansUnicode04 f
       -(028;) 2275 4752 w
       -(;5A><) 2634 4752 w
       -12 /Times-Roman f
       -(.) 2994 4752 w
       -12 /LucidaSansUnicode04 f
       -(&0) 276 4892 w
       -12 /Times-Roman f
       -(p) 434 4892 w
       -12 /LucidaSansUnicode04 f
       -(59) 494 4892 w
       -(18BL) 679 4892 w
       -(=5) 989 4892 w
       -(?>;>65=>) 1174 4892 w
       -12 /Times-Roman f
       -(.) 1771 4892 w
       -12 /LucidaSansUnicode04 f
       -(-B>) 1843 4892 w
       -(70:>=) 2089 4892 w
       -12 /Times-Roman f
       -(.) 2427 4892 w
       -(H) 2499 4892 w
       -12 /LucidaSansUnicode04 f
       -(>) 2585 4892 w
       -(725) 2699 4892 w
       -12 /Times-Roman f
       -(p) 2888 4892 w
       -12 /LucidaSansUnicode04 f
       -(8) 2948 4892 w
       -(402=>) 276 5032 w
       -(7018;8) 672 5032 w
       -(=0) 1129 5032 w
       -(70:>=) 1309 5032 w
       -12 /Times-Roman f
       -(.) 1647 5032 w
       -12 /LucidaSansUnicode04 f
       -(\02725) 1715 5032 w
       -12 /Times-Roman f
       -(p) 1911 5032 w
       -12 /LucidaSansUnicode04 f
       -(8) 1971 5032 w
       -(18;8) 2085 5032 w
       -(8) 2418 5032 w
       -(;L20) 2532 5032 w
       -12 /Times-Roman f
       -(.) 2794 5032 w
       -(H) 2862 5032 w
       -12 /LucidaSansUnicode04 f
       -(8) 2948 5032 w
       -(70) 276 5172 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(GB>) 430 5172 w
       -12 /Times-Roman f
       -(. ) 624 5172 w
       -12 /LucidaSansUnicode04 f
       -(\037>B><) 684 5172 w
       -12 /Times-Roman f
       -(y, ) 1066 5172 w
       -12 /LucidaSansUnicode04 f
       -(GB>) 1186 5172 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(B0:) 1410 5172 w
       -12 /Times-Roman f
       -(y) 1630 5172 w
       -12 /LucidaSansUnicode04 f
       -(6) 1690 5172 w
       -(745AL) 1808 5172 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(?>25;>AL) 2165 5172 w
       -12 /Times-Roman f
       -(.) 2711 5172 w
       -(The) 216 5396 w
       -(lion) 448 5396 w
       -(was) 682 5396 w
       -(king.) 914 5396 w
       -(He) 1205 5396 w
       -(ruled) 1391 5396 w
       -(the) 1685 5396 w
       -(forest.) 1879 5396 w
       -(You're) 2230 5396 w
       -(not) 2616 5396 w
       -(sup\255) 2817 5396 w
       -(posed) 216 5536 w
       -(to) 528 5536 w
       -(beat) 654 5536 w
       -(kings.) 886 5536 w
       -(Such) 1209 5536 w
       -(is) 1481 5536 w
       -(the) 1594 5536 w
       -(law.) 1773 5536 w
       -(But) 2008 5536 w
       -(the) 2214 5536 w
       -(animals) 2392 5536 w
       -(gave) 2798 5536 w
       -(a) 216 5676 w
       -(fuck) 318 5676 w
       -(about) 580 5676 w
       -(the) 896 5676 w
       -(law.) 1092 5676 w
       -(They) 1344 5676 w
       -(beat) 1639 5676 w
       -(the) 1888 5676 w
       -(lion.) 2084 5676 w
       -(Why?) 2381 5676 w
       -(That's) 2717 5676 w
       -(just) 216 5816 w
       -(how things) 421 5816 w
       -(go in forest.) 982 5816 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 10 10
       -%%Page: 11 11
       -/saveobj save def
       -mark
       -11 pagesetup
       -12 /Times-Roman f
       -(>> ) 216 356 w
       -12 /LucidaSansUnicode04 f
       -(\034>) 380 356 w
       -12 /Times-Roman f
       -(p) 556 356 w
       -12 /LucidaSansUnicode04 f
       -(0;L) 616 356 w
       -12 /Times-Roman f
       -(:) 814 356 w
       -12 /LucidaSansUnicode04 f
       -(\020) 878 356 w
       -(7>) 991 356 w
       -12 /Times-Roman f
       -(p) 1122 356 w
       -12 /LucidaSansUnicode04 f
       -(8) 1182 356 w
       -(745AL) 1288 356 w
       -12 /Times-Roman f
       -12 /LucidaSansUnicode04 f
       -(B8E85) 1645 356 w
       -12 /Times-Roman f
       -(...) 1996 356 w
       -(Moral:) 216 580 w
       -(Sunrises) 574 580 w
       -(here) 1012 580 w
       -(are) 1248 580 w
       -(quiet...) 1424 580 w
       -(you) 2904 990 w
       -16 /Times-Bold f
       -(Publishing in) 136 990 w
       -(The Gopher Times) 1086 990 w
       -12 /LucidaSansUnicode25 f
       -(\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000) 0 1130 w
       -12 /Times-Roman f
       -(Want) 216 1354 w
       -(your) 529 1354 w
       -(article) 802 1354 w
       -(published?) 1156 1354 w
       -(Want) 1760 1354 w
       -(to) 2073 1354 w
       -(announce) 2219 1354 w
       -(some\255) 2730 1354 w
       -(thing) 216 1494 w
       -(to) 499 1494 w
       -(the) 629 1494 w
       -(Gopher) 812 1494 w
       -(world?) 1207 1494 w
       -(Directly) 1606 1494 w
       -(related) 2036 1494 w
       -(to) 2399 1494 w
       -(Gopher) 2529 1494 w
       -(or) 2924 1494 w
       -(not,) 216 1634 w
       -(reach) 431 1634 w
       -(us) 721 1634 w
       -(on) 859 1634 w
       -(IRC) 1010 1634 w
       -(with an article) 1241 1634 w
       -(in any format, we) 1959 1634 w
       -(will) 2836 1634 w
       -(handle) 216 1774 w
       -(the) 566 1774 w
       -(rest.) 743 1774 w
       -9 /Courier f
       -(ircs://irc.bitreich.org/#bitreich\255en) 261 1948 w
       -cleartomark
       -showpage
       -saveobj restore
       -%%EndPage: 11 11
       -%%Trailer
       -done
       -%%DocumentFonts: Times-Roman LucidaSansUnicode04 LucidaSansUnicode20 LucidaSansUnicode25 Times-Italic Times-Bold Courier S1
       -%%Pages: 11
 (DIR) diff --git a/opus b/opus
       @@ -0,0 +1 @@
       +v=1
 (DIR) diff --git a/news/part/a-newspaper-for-gopher.mw b/opus1/article-a-newspaper-for-gopher.mw
 (DIR) diff --git a/news/part/bitreich-10k-meme-ban-party-cest-correction.mw b/opus1/article-bitreich-10k-meme-ban-party-cest-correction.mw
 (DIR) diff --git a/news/part/bitreich-10k-meme-ban-party-on-2021-10-31.mw b/opus1/article-bitreich-10k-meme-ban-party-on-2021-10-31.mw
 (DIR) diff --git a/news/part/bitreich-analgram-authentication.mw b/opus1/article-bitreich-analgram-authentication.mw
 (DIR) diff --git a/news/part/bitreich-ban-party-on-2021-10-03.mw b/opus1/article-bitreich-ban-party-on-2021-10-03.mw
 (DIR) diff --git a/news/part/bitreich-ban-party-results.mw b/opus1/article-bitreich-ban-party-results.mw
 (DIR) diff --git a/news/part/local-other-newspapers.mw b/opus1/article-local-other-newspapers.mw
 (DIR) diff --git a/news/part/nixers-thread-nixers-book-club.mw b/opus1/article-nixers-thread-nixers-book-club.mw
 (DIR) diff --git a/news/part/nixers-thread-web-tag.mw b/opus1/article-nixers-thread-web-tag.mw
 (DIR) diff --git a/news/part/world-of-animals.mw b/opus1/article-world-of-animals.mw
 (DIR) diff --git a/footer.mw b/opus1/footer.mw
 (DIR) diff --git a/opus1/tgtimes1.mw b/opus1/tgtimes1.mw
       @@ -0,0 +1,17 @@
       +.ds v 1
       +.TL
       +The Gopher Times
       +.AB
       +Opus 1 - Gopher news and more - Nov. 2021
       +.AE
       +.
       +.so opus1/article-a-newspaper-for-gopher.mw
       +.so opus1/article-nixers-thread-nixers-book-club.mw
       +.so opus1/article-nixers-thread-web-tag.mw
       +.so opus1/article-bitreich-analgram-authentication.mw
       +.so opus1/article-bitreich-ban-party-on-2021-10-03.mw
       +.so opus1/article-bitreich-ban-party-results.mw
       +.so opus1/article-local-other-newspapers.mw
       +.so opus1/article-bitreich-10k-meme-ban-party-on-2021-10-31.mw
       +.so opus1/article-world-of-animals.mw
       +.so opus1/footer.mw
 (DIR) diff --git a/opus1/tgtimes1.pdf b/opus1/tgtimes1.pdf
       Binary files differ.
 (DIR) diff --git a/news/tgtimes.txt b/opus1/tgtimes1.txt
 (DIR) diff --git a/tmac/tmac.w b/tmac.w