├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── CHANGELOG ├── Dockerfile ├── LICENSE ├── NOTICE ├── README.adoc ├── acme ├── acid │ ├── guide │ ├── mkfile │ ├── readme │ └── src │ │ ├── Acid.b │ │ ├── Acid0.b │ │ └── mkfile ├── edit │ ├── guide │ ├── mkfile │ ├── readme │ └── src │ │ ├── a.b │ │ ├── c.b │ │ ├── d.b │ │ ├── e.b │ │ ├── findfile.b │ │ ├── g.b │ │ ├── i.b │ │ ├── input.b │ │ ├── mkfile │ │ ├── p.b │ │ ├── pipe.b │ │ ├── x.b │ │ └── xxx.b ├── mail │ ├── guide │ ├── mkbox.b │ ├── mkfile │ ├── readme │ └── src │ │ ├── Mail.b │ │ ├── Mailp.b │ │ ├── Mailpop3.b │ │ ├── mashfile │ │ └── mkfile └── mkfile ├── appl ├── acme │ ├── acme.b │ ├── acme.m │ ├── buff.b │ ├── buff.m │ ├── col.b │ ├── col.m │ ├── common.m │ ├── dat.b │ ├── dat.m │ ├── disk.b │ ├── disk.m │ ├── ecmd.b │ ├── ecmd.m │ ├── edit.b │ ├── edit.m │ ├── elog.b │ ├── elog.m │ ├── exec.b │ ├── exec.m │ ├── file.b │ ├── file.m │ ├── frame.b │ ├── frame.m │ ├── fsys.b │ ├── fsys.m │ ├── graph.b │ ├── graph.m │ ├── gui.b │ ├── gui.m │ ├── look.b │ ├── look.m │ ├── mkfile │ ├── regx.b │ ├── regx.m │ ├── row.b │ ├── row.m │ ├── scrl.b │ ├── scrl.m │ ├── styxaux.b │ ├── styxaux.m │ ├── text.b │ ├── text.m │ ├── time.b │ ├── time.m │ ├── util.b │ ├── util.m │ ├── wind.b │ ├── wind.m │ ├── xfid.b │ └── xfid.m ├── alphabet │ ├── abc │ │ ├── abc.b │ │ ├── autoconvert.b │ │ ├── autodeclare.b │ │ ├── declare.b │ │ ├── declares.b │ │ ├── define.b │ │ ├── eval.b │ │ ├── import.b │ │ ├── mkfile │ │ ├── newtypeset.b │ │ ├── rewrite.b │ │ ├── type.b │ │ ├── typeset.b │ │ └── undeclare.b │ ├── alphabet.b │ ├── alphabet.proto │ ├── alphabet.shmod.b │ ├── auxi │ │ ├── endpoints.b │ │ ├── endpointsrv.b │ │ ├── fsfilter.b │ │ ├── mkfile │ │ └── rexecsrv.b │ ├── declare.sh │ ├── eval.b │ ├── extvalues.b │ ├── fs │ │ ├── and.b │ │ ├── bundle.b │ │ ├── bundle.m │ │ ├── chstat.b │ │ ├── compose.b │ │ ├── depth.b │ │ ├── entries.b │ │ ├── exec.b │ │ ├── filter.b │ │ ├── ls.b │ │ ├── match.b │ │ ├── merge.b │ │ ├── mergewrite.b │ │ ├── mkext.b │ │ ├── mkfile │ │ ├── mode.b │ │ ├── newer.b │ │ ├── not.b │ │ ├── or.b │ │ ├── path.b │ │ ├── pipe.b │ │ ├── print.b │ │ ├── proto.b │ │ ├── query.b │ │ ├── run.b │ │ ├── select.b │ │ ├── setroot.b │ │ ├── size.b │ │ ├── unbundle.b │ │ ├── unbundle.m │ │ ├── walk.b │ │ └── write.b │ ├── fsdecl.sh │ ├── getendpoint.sh │ ├── grid │ │ ├── farm.b │ │ ├── line2rec.b │ │ ├── local.b │ │ ├── mkfile │ │ ├── remote.b │ │ └── rexec.b │ ├── main │ │ ├── auth.b │ │ ├── cat.b │ │ ├── create.b │ │ ├── dial.b │ │ ├── echo.b │ │ ├── export.b │ │ ├── fd.b │ │ ├── filter.b │ │ ├── genfilter.b │ │ ├── mkfile │ │ ├── mount.b │ │ ├── par.b │ │ ├── parse.b │ │ ├── pretty.b │ │ ├── print.b │ │ ├── read.b │ │ ├── readall.b │ │ ├── rewrite.b │ │ ├── rw.b │ │ ├── seq.b │ │ ├── unparse.b │ │ ├── w2fd.b │ │ └── wait.b │ ├── mkendpoint.sh │ ├── mkfile │ ├── newtypesets │ ├── proxy.b │ ├── reports.b │ ├── rexecsrv.sh │ ├── setup │ └── typesets │ │ ├── abc.b │ │ ├── abctypes.b │ │ ├── fs.b │ │ ├── fstypes.b │ │ ├── grid.b │ │ ├── gridtypes.b │ │ └── mkfile ├── charon │ ├── build.b │ ├── build.m │ ├── charon.b │ ├── charon.m │ ├── chutils.b │ ├── chutils.m │ ├── common.m │ ├── cookiesrv.b │ ├── cookiesrv.m │ ├── ctype.b │ ├── ctype.m │ ├── date.b │ ├── date.m │ ├── event.b │ ├── event.m │ ├── file.b │ ├── ftp.b │ ├── gui.b │ ├── gui.m │ ├── http.b │ ├── img.b │ ├── img.m │ ├── jscript.b │ ├── layout.b │ ├── layout.m │ ├── lex.b │ ├── lex.m │ ├── mkfile │ ├── paginate.b │ ├── paginate.m │ ├── rgb.inc │ ├── script.m │ ├── transport.m │ ├── url.b │ ├── url.m │ ├── xxx.inc │ └── ycbcr.inc ├── cmd │ ├── 9660srv.b │ ├── 9export.b │ ├── 9srvfs.b │ ├── 9win.b │ ├── B.b │ ├── ar.b │ ├── archfs.b │ ├── asm │ │ ├── asm.b │ │ ├── asm.y │ │ └── mkfile │ ├── auplay.b │ ├── auth │ │ ├── aescbc.b │ │ ├── ai2key.b │ │ ├── changelogin.b │ │ ├── convpasswd.b │ │ ├── countersigner.b │ │ ├── createsignerkey.b │ │ ├── dsagen.b │ │ ├── factotum │ │ │ ├── authio.m │ │ │ ├── factotum.b │ │ │ ├── feedkey.b │ │ │ ├── mkfile │ │ │ ├── proto │ │ │ │ ├── authquery.b │ │ │ │ ├── infauth.b │ │ │ │ ├── keyreps.b │ │ │ │ ├── keyreps.m │ │ │ │ ├── mkfile │ │ │ │ ├── p9any.b │ │ │ │ ├── pass.b │ │ │ │ └── rsa.b │ │ │ └── rpc.b │ │ ├── getpk.b │ │ ├── keyfs.b │ │ ├── keysrv.b │ │ ├── logind.b │ │ ├── mkauthinfo.b │ │ ├── mkfile │ │ ├── passwd.b │ │ ├── rsagen.b │ │ ├── secstore.b │ │ ├── signer.b │ │ └── verify.b │ ├── auxi │ │ ├── cpuslave.b │ │ ├── digest.b │ │ ├── fpgaload.b │ │ ├── mangaload.b │ │ ├── mkfile │ │ ├── pcmcia.b │ │ ├── rdbgsrv.b │ │ └── rstyxd.b │ ├── avr │ │ ├── burn.b │ │ └── mkfile │ ├── basename.b │ ├── bind.b │ ├── bit2gif.b │ ├── bytes.b │ ├── cal.b │ ├── calc.b │ ├── cat.b │ ├── cd.b │ ├── cddb.b │ ├── chgrp.b │ ├── chmod.b │ ├── cleanname.b │ ├── cmp.b │ ├── comm.b │ ├── cook.b │ ├── cp.b │ ├── cprof.b │ ├── cpu.b │ ├── crypt.b │ ├── date.b │ ├── dbfs.b │ ├── dbm │ │ ├── delete.b │ │ ├── fetch.b │ │ ├── keys.b │ │ ├── list.b │ │ ├── mkfile │ │ └── store.b │ ├── dd.b │ ├── dial.b │ ├── diff.b │ ├── disdep.b │ ├── disdump.b │ ├── disk │ │ ├── format.b │ │ ├── ftl.b │ │ ├── kfs.b │ │ ├── kfscmd.b │ │ ├── mbr.b │ │ ├── mkext.b │ │ ├── mkfile │ │ ├── mkfs.b │ │ └── prep │ │ │ ├── calc.tab.b │ │ │ ├── calc.tab.m │ │ │ ├── calc.y │ │ │ ├── fdisk.b │ │ │ ├── mkfile │ │ │ ├── pedit.b │ │ │ ├── pedit.m │ │ │ └── prep.b │ ├── dossrv.b │ ├── du.b │ ├── echo.b │ ├── ed.b │ ├── emuinit.b │ ├── env.b │ ├── export.b │ ├── fc.b │ ├── fcp.b │ ├── fmt.b │ ├── fortune.b │ ├── freq.b │ ├── fs.b │ ├── fs │ │ ├── and.b │ │ ├── bundle.b │ │ ├── chstat.b │ │ ├── compose.b │ │ ├── depth.b │ │ ├── entries.b │ │ ├── eval.b │ │ ├── exec.b │ │ ├── filter.b │ │ ├── ls.b │ │ ├── match.b │ │ ├── merge.b │ │ ├── mergewrite.b │ │ ├── mkfile │ │ ├── mode.b │ │ ├── not.b │ │ ├── or.b │ │ ├── path.b │ │ ├── pipe.b │ │ ├── print.b │ │ ├── proto.b │ │ ├── query.b │ │ ├── readfile.b │ │ ├── run.b │ │ ├── select.b │ │ ├── setroot.b │ │ ├── size.b │ │ ├── template.b │ │ ├── unbundle.b │ │ ├── void.b │ │ ├── walk.b │ │ └── write.b │ ├── ftest.b │ ├── ftpfs.b │ ├── getauthinfo.b │ ├── getfile.b │ ├── gettar.b │ ├── gif2bit.b │ ├── grep.b │ ├── gunzip.b │ ├── gzip.b │ ├── idea.b │ ├── import.b │ ├── install │ │ ├── applylog.b │ │ ├── arch.b │ │ ├── arch.m │ │ ├── archfs.b │ │ ├── archfs.m │ │ ├── ckproto.b │ │ ├── create.b │ │ ├── eproto.b │ │ ├── info.b │ │ ├── inst.b │ │ ├── install.b │ │ ├── log.b │ │ ├── logs.b │ │ ├── logs.m │ │ ├── mergelog.b │ │ ├── mkfile │ │ ├── mkproto.b │ │ ├── proto.b │ │ ├── proto.m │ │ ├── proto2list.b │ │ ├── protocaller.m │ │ ├── updatelog.b │ │ ├── wdiff.b │ │ ├── wfind.b │ │ ├── wrap.b │ │ ├── wrap.m │ │ └── wrap2list.b │ ├── iostats.b │ ├── ip │ │ ├── bootpd.b │ │ ├── dhcp.b │ │ ├── mkfile │ │ ├── nppp │ │ │ ├── mkfile │ │ │ ├── modem.b │ │ │ ├── modem.m │ │ │ ├── pppchat.b │ │ │ ├── ppplink.b │ │ │ ├── ppptest.b │ │ │ ├── script.b │ │ │ └── script.m │ │ ├── ping.b │ │ ├── ppp │ │ │ ├── mkfile │ │ │ ├── modem.b │ │ │ ├── modem.m │ │ │ ├── pppclient.b │ │ │ ├── pppclient.m │ │ │ ├── pppdial.b │ │ │ ├── pppgui.b │ │ │ ├── pppgui.m │ │ │ ├── ppptest.b │ │ │ ├── script.b │ │ │ └── script.m │ │ ├── rip.b │ │ ├── sntp.b │ │ ├── tftpd.b │ │ └── virgild.b │ ├── irtest.b │ ├── itest.b │ ├── itreplay.b │ ├── kill.b │ ├── lego │ │ ├── clock.b │ │ ├── clockface.b │ │ ├── firmdl.b │ │ ├── link.b │ │ ├── mkfile │ │ ├── rcxsend.b │ │ ├── rcxsend.m │ │ ├── send.b │ │ ├── timers.b │ │ └── timers.m │ ├── limbo │ │ ├── arg.m │ │ ├── asm.b │ │ ├── com.b │ │ ├── decls.b │ │ ├── dis.b │ │ ├── disoptab.m │ │ ├── ecom.b │ │ ├── gen.b │ │ ├── isa.m │ │ ├── lex.b │ │ ├── limbo.b │ │ ├── limbo.m │ │ ├── limbo.y │ │ ├── mkfile │ │ ├── nodes.b │ │ ├── opname.m │ │ ├── optim.b │ │ ├── sbl.b │ │ ├── stubs.b │ │ ├── typecheck.b │ │ └── types.b │ ├── listen.b │ ├── lockfs.b │ ├── logfile.b │ ├── look.b │ ├── ls.b │ ├── lstar.b │ ├── m4.b │ ├── man2html.b │ ├── man2txt.b │ ├── manufacture.b │ ├── mash │ │ ├── builtins.b │ │ ├── depends.b │ │ ├── dump.b │ │ ├── exec.b │ │ ├── expr.b │ │ ├── eyacc.b │ │ ├── eyaccpar │ │ ├── history.b │ │ ├── lex.b │ │ ├── make.b │ │ ├── mash.b │ │ ├── mash.m │ │ ├── mash.y │ │ ├── mashfile │ │ ├── mashlib.b │ │ ├── mashparse.b │ │ ├── mashparse.m │ │ ├── misc.b │ │ ├── mkfile │ │ ├── serve.b │ │ ├── symb.b │ │ ├── tk.b │ │ └── xeq.b │ ├── mc.b │ ├── md5sum.b │ ├── mdb.b │ ├── memfs.b │ ├── metamorph.b │ ├── mk │ │ ├── ar.m │ │ ├── mk.b │ │ ├── mkbinds │ │ ├── mkconfig │ │ ├── mkfile │ │ └── mksubdirs │ ├── mkdir.b │ ├── mkfile │ ├── mntgen.b │ ├── mount.b │ ├── mouse.b │ ├── mpc │ │ ├── mkfile │ │ ├── qconfig.b │ │ └── qflash.b │ ├── mprof.b │ ├── mv.b │ ├── ndb │ │ ├── cs.b │ │ ├── csquery.b │ │ ├── dns.b │ │ ├── dnsquery.b │ │ ├── mkfile │ │ ├── mkhash.b │ │ ├── query.b │ │ ├── registry.b │ │ └── regquery.b │ ├── netkey.b │ ├── netstat.b │ ├── newer.b │ ├── ns.b │ ├── nsbuild.b │ ├── os.b │ ├── p.b │ ├── palm │ │ ├── connex.b │ │ ├── desklink.b │ │ ├── desklink.m │ │ ├── mkfile │ │ └── palmsrv.b │ ├── pause.b │ ├── plumb.b │ ├── plumber.b │ ├── prof.b │ ├── promptstring.b │ ├── ps.b │ ├── puttar.b │ ├── pwd.b │ ├── ramfile.b │ ├── randpass.b │ ├── raw2iaf.b │ ├── rawdbfs.b │ ├── rcmd.b │ ├── rdp.b │ ├── read.b │ ├── rioimport.b │ ├── rm.b │ ├── runas.b │ ├── sed.b │ ├── sendmail.b │ ├── sh │ │ ├── arg.b │ │ ├── csv.b │ │ ├── echo.b │ │ ├── expr.b │ │ ├── file2chan.b │ │ ├── mkfile │ │ ├── mload.b │ │ ├── mpexpr.b │ │ ├── regex.b │ │ ├── sexprs.b │ │ ├── sh.b │ │ ├── sh.y │ │ ├── std.b │ │ ├── string.b │ │ ├── test.b │ │ └── tk.b │ ├── sha1sum.b │ ├── sleep.b │ ├── sort.b │ ├── spki │ │ ├── mkfile │ │ └── verify.b │ ├── src.b │ ├── stack.b │ ├── stackv.b │ ├── stream.b │ ├── strings.b │ ├── styxchat.b │ ├── styxlisten.b │ ├── styxmon.b │ ├── sum.b │ ├── tail.b │ ├── tarfs.b │ ├── tclsh.b │ ├── tcs.b │ ├── tee.b │ ├── telnet.b │ ├── test.b │ ├── time.b │ ├── timestamp.b │ ├── tkcmd.b │ ├── tokenize.b │ ├── touch.b │ ├── touchcal.b │ ├── tr.b │ ├── trfs.b │ ├── tsort.b │ ├── unicode.b │ ├── uniq.b │ ├── units.b │ ├── units.y │ ├── unmount.b │ ├── usb │ │ ├── mkfile │ │ └── usbd.b │ ├── uudecode.b │ ├── uuencode.b │ ├── vacfs.b │ ├── vacget.b │ ├── vacput.b │ ├── wav2iaf.b │ ├── wc.b │ ├── webgrab.b │ ├── wish.b │ ├── wmexport.b │ ├── wmimport.b │ ├── xargs.b │ ├── xd.b │ ├── yacc.b │ └── zeros.b ├── collab │ ├── clients │ │ ├── chat.b │ │ ├── poll.b │ │ ├── poller.b │ │ └── whiteboard.b │ ├── collabsrv.b │ ├── connect.b │ ├── lib │ │ ├── messages.b │ │ └── messages.m │ ├── mkfile │ ├── proxy.b │ ├── proxy.m │ ├── runcollab │ ├── servers │ │ ├── chatsrv.b │ │ ├── memfssrv.b │ │ ├── mpx.b │ │ └── wbsrv.b │ ├── service.m │ ├── srvmgr.b │ └── srvmgr.m ├── demo │ ├── camera │ │ ├── camera.b │ │ ├── camload.bit │ │ ├── camproc.bit │ │ ├── mkfile │ │ ├── runcam.sh │ │ ├── runcamlocal.sh │ │ └── tkinterface.b │ ├── chat │ │ ├── chat.b │ │ ├── chatclient.sh │ │ ├── chatsrv.b │ │ └── mkfile │ ├── cpupool │ │ ├── mkfile │ │ ├── regpoll.b │ │ └── runrstyx.sh │ ├── lego │ │ ├── clockface.b │ │ ├── clockreg.sh │ │ ├── firmdl.b │ │ ├── legolink.b │ │ ├── mkfile │ │ ├── rcxsend.b │ │ ├── rcxsend.m │ │ ├── styx.srec │ │ ├── timers.b │ │ └── timers.m │ ├── mkfile │ ├── ns │ │ ├── mkfile │ │ ├── ns.b │ │ └── runns.sh │ ├── odbc │ │ ├── mkfile │ │ ├── odbcmnt.b │ │ └── runodbc.sh │ ├── spree │ │ ├── mkfile │ │ └── spreeclient.sh │ └── whiteboard │ │ ├── mkfile │ │ ├── runwb.sh │ │ ├── wbsrv.b │ │ └── whiteboard.b ├── ebook │ ├── checkxml.b │ ├── cssfont.b │ ├── cssfont.m │ ├── cssparser.b │ ├── cssparser.m │ ├── dtd │ │ ├── oebdoc101.dtd │ │ └── oebpkg101.dtd │ ├── ebook.b │ ├── mimeimage.b │ ├── mimeimage.m │ ├── mkfile │ ├── oebpackage.b │ ├── oebpackage.m │ ├── reader.b │ ├── reader.m │ ├── strcache.m │ ├── strmap.b │ ├── strmap.m │ ├── stylesheet.b │ ├── stylesheet.m │ ├── table.b │ ├── table.m │ ├── tst.txt │ ├── understandingoeb.opf │ ├── units.b │ └── units.m ├── examples │ └── minitel │ │ ├── README │ │ ├── event.b │ │ ├── event.m │ │ ├── keyb.b │ │ ├── mdisplay.b │ │ ├── mdisplay.m │ │ ├── miniterm.b │ │ ├── miniterm.m │ │ ├── mkfile │ │ ├── modem.b │ │ ├── screen.b │ │ ├── socket.b │ │ ├── swkeyb.b │ │ └── swkeyb.m ├── grid │ ├── README │ ├── blurdemo.b │ ├── cpupool.b │ ├── demo │ │ ├── block.b │ │ ├── blur.b │ │ └── mkfile │ ├── find.b │ ├── jpg2bit.b │ ├── lib │ │ ├── announce.b │ │ ├── browser.b │ │ ├── browser.m │ │ ├── fbrowse.b │ │ ├── mkfile │ │ ├── pathreader.m │ │ └── srvbrowse.b │ ├── mkfile │ ├── query.b │ ├── readjpg.b │ ├── register.b │ ├── reglisten.b │ ├── regstyxlisten.b │ ├── remotelogon.b │ └── usercreatesrv.b ├── lib │ ├── arg.b │ ├── asn1.b │ ├── attrdb.b │ ├── attrhash.b │ ├── auth.b │ ├── auth9.b │ ├── bloomfilter.b │ ├── bufio.b │ ├── cfg.b │ ├── cfgfile.b │ ├── chanfill.b │ ├── complete.b │ ├── convcs │ │ ├── 8bit_stob.b │ │ ├── big5_btos.b │ │ ├── big5_stob.b │ │ ├── convcs.b │ │ ├── cp932_btos.b │ │ ├── cp_btos.b │ │ ├── cp_stob.b │ │ ├── euc-jp_btos.b │ │ ├── gb2312_btos.b │ │ ├── genbig5.b │ │ ├── gencp.b │ │ ├── gencp932.b │ │ ├── gengb2312.b │ │ ├── genjisx0201kana.b │ │ ├── genjisx0208-1997.b │ │ ├── genjisx0212.b │ │ ├── ibm437.b │ │ ├── ibm850.b │ │ ├── ibm866.b │ │ ├── iso8859-1.b │ │ ├── iso8859-10.b │ │ ├── iso8859-15.b │ │ ├── iso8859-2.b │ │ ├── iso8859-3.b │ │ ├── iso8859-4.b │ │ ├── iso8859-5.b │ │ ├── iso8859-6.b │ │ ├── iso8859-7.b │ │ ├── iso8859-8.b │ │ ├── iso8859-9.b │ │ ├── koi8-r.b │ │ ├── mkdata │ │ ├── mkfile │ │ ├── utf16_btos.b │ │ ├── utf16_stob.b │ │ ├── utf8_btos.b │ │ ├── utf8_stob.b │ │ ├── windows-1250.b │ │ ├── windows-1251.b │ │ └── windows-1252.b │ ├── crc.b │ ├── crypt │ │ ├── mkfile │ │ ├── pkcs.b │ │ ├── ssl3.b │ │ ├── sslsession.b │ │ └── x509.b │ ├── csv.b │ ├── daytime.b │ ├── db.b │ ├── dbm.b │ ├── dbsrv.b │ ├── debug.b │ ├── deflate.b │ ├── devpointer.b │ ├── dhcpclient.b │ ├── dial.b │ ├── dialog.b │ ├── dict.b │ ├── dis.b │ ├── diskblocks.b │ ├── disks.b │ ├── dividers.b │ ├── ecmascript │ │ ├── builtin.b │ │ ├── date.b │ │ ├── ecmascript.b │ │ ├── exec.b │ │ ├── mkfile │ │ ├── obj.b │ │ ├── pprint.b │ │ ├── regexp.b │ │ └── uri.b │ ├── encoding │ │ ├── base16.b │ │ ├── base32.b │ │ ├── base32a.b │ │ ├── base64.b │ │ └── mkfile │ ├── env.b │ ├── ether.b │ ├── exception.b │ ├── factotum.b │ ├── filepat.b │ ├── format.b │ ├── fsfilter.b │ ├── fslib.b │ ├── fsproto.b │ ├── hash.b │ ├── html.b │ ├── ida │ │ ├── ida.b │ │ ├── idatab.b │ │ ├── idatab.dist │ │ ├── idatest.b │ │ ├── mkfile │ │ └── mktab.b │ ├── imageremap.b │ ├── inflate.b │ ├── ip.b │ ├── ipattr.b │ ├── ir.b │ ├── irmpath.b │ ├── irsage.b │ ├── irsim.b │ ├── itslib.b │ ├── json.b │ ├── keyset.b │ ├── libc.b │ ├── libc0.b │ ├── lists.b │ ├── lock.b │ ├── login.b │ ├── man.b │ ├── memfs.b │ ├── mkfile │ ├── mpeg.b │ ├── msgio.b │ ├── names.b │ ├── nametree.b │ ├── newns.b │ ├── ninep.b │ ├── oldauth.b │ ├── palm.b │ ├── palmdb.b │ ├── palmfile.b │ ├── parseman.b │ ├── plumbing.b │ ├── plumbing.m │ ├── plumbmsg.b │ ├── pop3.b │ ├── popup.b │ ├── powerman.b │ ├── print │ │ ├── hp_driver.b │ │ ├── mkfile │ │ ├── print.b │ │ ├── scaler.b │ │ └── scaler.m │ ├── profile.b │ ├── pslib.b │ ├── quicktime.b │ ├── rabin.b │ ├── rand.b │ ├── random.b │ ├── readdir.b │ ├── readgif.b │ ├── readjpg.b │ ├── readpicfile.b │ ├── readpng.b │ ├── readxbitmap.b │ ├── regex.b │ ├── registries.b │ ├── rfc822.b │ ├── riff.b │ ├── scoretable.b │ ├── scsiio.b │ ├── secstore.b │ ├── selectfile.b │ ├── sets.b │ ├── sets32.b │ ├── sexprs.b │ ├── slip.b │ ├── smtp.b │ ├── sort.b │ ├── spki │ │ ├── mkfile │ │ ├── spki.b │ │ └── verifier.b │ ├── ssl.b │ ├── string.b │ ├── strinttab.b │ ├── strokes │ │ ├── buildstrokes.b │ │ ├── mkfile │ │ ├── readstrokes.b │ │ ├── strokes.b │ │ └── writestrokes.b │ ├── styx.b │ ├── styxconv │ │ ├── mkfile │ │ ├── new2old.b │ │ ├── nsys.m │ │ ├── old2new.b │ │ ├── ostyx.b │ │ ├── ostyx.m │ │ ├── osys.m │ │ └── styxconv.b │ ├── styxflush.b │ ├── styxlib.b │ ├── styxpersist.b │ ├── styxservers.b │ ├── tables.b │ ├── tabs.b │ ├── tcl.m │ ├── tcl_calc.b │ ├── tcl_core.b │ ├── tcl_inthash.b │ ├── tcl_io.b │ ├── tcl_list.b │ ├── tcl_modhash.b │ ├── tcl_stack.b │ ├── tcl_strhash.b │ ├── tcl_string.b │ ├── tcl_symhash.b │ ├── tcl_tk.b │ ├── tcl_utils.b │ ├── tftp.b │ ├── timers.b │ ├── titlebar.b │ ├── tkclient.b │ ├── translate.b │ ├── ubfa.b │ ├── url.b │ ├── usb │ │ ├── mkfile │ │ ├── usb.b │ │ ├── usbmass.b │ │ ├── usbmct.b │ │ └── usbmouse.b │ ├── utils.m │ ├── vac.b │ ├── venti.b │ ├── virgil.b │ ├── volume.b │ ├── w3c │ │ ├── css.b │ │ ├── mkfile │ │ ├── uris.b │ │ └── xpointers.b │ ├── wait.b │ ├── watchvars.b │ ├── winplace.b │ ├── wmclient.b │ ├── wmlib.b │ ├── wmsrv.b │ ├── workdir.b │ ├── writegif.b │ └── xml.b ├── math │ ├── ack.b │ ├── crackerbarrel.b │ ├── doc.txt │ ├── factor.b │ ├── ffts.b │ ├── fibonacci.b │ ├── fit.b │ ├── genprimes.b │ ├── geodesy.b │ ├── gr.b │ ├── graph0.b │ ├── hist0.b │ ├── linalg.b │ ├── linbench.b │ ├── mersenne.b │ ├── mkfile │ ├── parts.b │ ├── perms.b │ ├── pi.b │ ├── polyfill.b │ ├── polyhedra.b │ ├── powers.b │ ├── primes.b │ └── sieve.b ├── mkfile ├── spree │ ├── archives.b │ ├── clients │ │ ├── bounce.b │ │ ├── cards.b │ │ ├── chat.b │ │ ├── gather.b │ │ ├── lobby.b │ │ └── othello.b │ ├── engines │ │ ├── afghan.b │ │ ├── bounce.b │ │ ├── canfield.b │ │ ├── chat.b │ │ ├── debug.b │ │ ├── freecell.b │ │ ├── gather.b │ │ ├── hearts.b │ │ ├── liars.b │ │ ├── liars.y │ │ ├── lobby.b │ │ ├── othello.b │ │ ├── racingdemon.b │ │ ├── snap.b │ │ ├── spider.b │ │ ├── spit.b │ │ └── whist.b │ ├── gather.m │ ├── join.b │ ├── join.m │ ├── joinsession.b │ ├── joinsession.m │ ├── lib │ │ ├── allow.b │ │ ├── allow.m │ │ ├── base64.b │ │ ├── base64.m │ │ ├── cardlib.b │ │ ├── cardlib.m │ │ ├── commandline.b │ │ ├── commandline.m │ │ ├── objstore.b │ │ ├── objstore.m │ │ ├── testsets.b │ │ ├── tricks.b │ │ └── tricks.m │ ├── mkfile │ ├── other │ │ ├── tst.b │ │ ├── tstboing.b │ │ ├── tstlines.sh │ │ └── tstwin.b │ ├── spree.b │ └── spree.m ├── svc │ ├── auth.sh │ ├── httpd │ │ ├── alarms.b │ │ ├── alarms.m │ │ ├── cache.b │ │ ├── cache.m │ │ ├── cgiparse.b │ │ ├── cgiparse.m │ │ ├── contents.b │ │ ├── contents.m │ │ ├── date.b │ │ ├── date.m │ │ ├── echo.b │ │ ├── httpd.b │ │ ├── httpd.debug │ │ ├── httpd.log │ │ ├── httpd.m │ │ ├── httpd.rewrite │ │ ├── httpd.suff │ │ ├── imagemap.b │ │ ├── mkfile │ │ ├── parser.b │ │ ├── parser.m │ │ ├── redirect.b │ │ ├── redirect.m │ │ └── stats.b │ ├── mkfile │ ├── net.sh │ ├── registry.sh │ ├── rstyx.sh │ ├── styx.sh │ └── webget │ │ ├── date.b │ │ ├── date.m │ │ ├── file.b │ │ ├── ftp.b │ │ ├── http.b │ │ ├── image2enc.b │ │ ├── image2enc.m │ │ ├── message.b │ │ ├── message.m │ │ ├── mkfile │ │ ├── transport.m │ │ ├── webget.b │ │ ├── webget.log │ │ ├── wgutils.b │ │ └── wgutils.m ├── tiny │ ├── broke.b │ ├── kill.b │ ├── mkfile │ ├── rm.b │ └── sh.b └── wm │ ├── about.b │ ├── avi.b │ ├── bounce.b │ ├── brutus.b │ ├── brutus │ ├── excerpt.b │ ├── image.b │ ├── mkfile │ ├── mod.b │ └── table.b │ ├── c4.b │ ├── calendar.b │ ├── clock.b │ ├── coffee.b │ ├── collide.b │ ├── colors.b │ ├── cprof.b │ ├── date.b │ ├── deb.b │ ├── debdata.b │ ├── debsrc.b │ ├── dir.b │ ├── drawmux │ ├── dmview.b │ ├── dmwm.b │ ├── drawmux.b │ ├── drawmux.m │ ├── drawoffs.m │ └── mkfile │ ├── edit.b │ ├── filename.b │ ├── ftree │ ├── cptree.b │ ├── cptree.m │ ├── ftree.b │ ├── items.b │ ├── items.m │ ├── mkfile │ └── wmsetup │ ├── getauthinfo.b │ ├── hebrew.m │ ├── keyboard.b │ ├── logon.b │ ├── logwindow.b │ ├── man.b │ ├── mand.b │ ├── mash.b │ ├── memory.b │ ├── mkfile │ ├── mpeg.b │ ├── mpeg │ ├── c0.tab │ ├── c0.vlc │ ├── c1.tab │ ├── c1.vlc │ ├── c2.tab │ ├── c2.vlc │ ├── c3.tab │ ├── c3.vlc │ ├── c4.tab │ ├── c4.vlc │ ├── c5.tab │ ├── c5.vlc │ ├── c6.tab │ ├── c6.vlc │ ├── c7.tab │ ├── c7.vlc │ ├── cbp.tab │ ├── cbp.vlc │ ├── cdc.tab │ ├── cdc.vlc │ ├── closest.m │ ├── decode.b │ ├── decode4.b │ ├── fixidct.b │ ├── fltidct.b │ ├── mai.tab │ ├── mai.vlc │ ├── makergbvmap.b │ ├── maketables │ ├── mbb.tab │ ├── mbb.vlc │ ├── mbi.tab │ ├── mbi.vlc │ ├── mbp.tab │ ├── mbp.vlc │ ├── mkfile │ ├── motion.tab │ ├── motion.vlc │ ├── mpeg.b │ ├── mpegio.b │ ├── mpegio.m │ ├── refidct.b │ ├── remap.b │ ├── remap1.b │ ├── remap2.b │ ├── remap24.b │ ├── remap4.b │ ├── remap8.b │ ├── rgbvmap.m │ ├── rl0f.tab │ ├── rl0f.vlc │ ├── rl0n.tab │ ├── rl0n.vlc │ ├── scidct.b │ ├── vlc.b │ ├── ydc.tab │ └── ydc.vlc │ ├── mprof.b │ ├── pen.b │ ├── polyhedra.b │ ├── prof.b │ ├── qt.b │ ├── readmail.b │ ├── remotelogon.b │ ├── reversi.b │ ├── rmtdir.b │ ├── rt.b │ ├── sam.b │ ├── samstub.b │ ├── samstub.m │ ├── samterm.m │ ├── samtk.b │ ├── samtk.m │ ├── sendmail.b │ ├── sh.b │ ├── smenu.b │ ├── smenu.m │ ├── snake.b │ ├── stopwatch.b │ ├── sweeper.b │ ├── task.b │ ├── telnet.b │ ├── tetris.b │ ├── toolbar.b │ ├── unibrowse.b │ ├── view.b │ ├── vt.b │ ├── wish.b │ ├── wm.b │ ├── wmdeb.m │ └── wmplay.b ├── arch ├── 386 │ └── mkfile-386 ├── README ├── dragonfly │ ├── 386 │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── fpuctl.h │ │ │ └── lib9.h │ │ ├── lib │ │ │ └── .dreg │ │ └── mkfile │ └── mkfile ├── emu │ ├── dragonfly │ │ ├── README │ │ ├── asm-386.S │ │ ├── audio.c │ │ ├── cmd.c │ │ ├── deveia.c │ │ ├── devfs.c │ │ ├── mkfile │ │ └── os.c │ ├── freebsd │ │ ├── asm-386.S │ │ ├── audio.c │ │ ├── cmd.c │ │ ├── deveia.c │ │ ├── devfs.c │ │ ├── mkfile │ │ ├── mkfile-FreeBSD │ │ └── os.c │ ├── irix │ │ ├── NOTE │ │ ├── asm-mips.s │ │ ├── cmd.c │ │ ├── devfs.c │ │ ├── mkfile │ │ ├── mkfile-Irix │ │ └── os.c │ ├── linux │ │ ├── arm-tas-v5.S │ │ ├── arm-tas-v7.S │ │ ├── asm-386.S │ │ ├── asm-arm.S │ │ ├── asm-mips.S │ │ ├── asm-power.S │ │ ├── asm-spim.S │ │ ├── audio-oss.c │ │ ├── cmd.c │ │ ├── deveia.c │ │ ├── devfs.c │ │ ├── emu │ │ ├── mk-wrt │ │ ├── mkfile │ │ ├── mkfile-386 │ │ ├── mkfile-arm │ │ ├── mkfile-mips │ │ ├── mkfile-power │ │ ├── os.c │ │ ├── segflush-386.c │ │ ├── segflush-arm.c │ │ ├── segflush-mips.S │ │ ├── segflush-power.c │ │ ├── segflush-spim.S │ │ ├── srv.h │ │ └── srvm.h │ ├── netbsd │ │ ├── asm-386.S │ │ ├── audio.c │ │ ├── cmd.c │ │ ├── deveia.c │ │ ├── devfs.c │ │ ├── emu.c │ │ ├── mkfile │ │ └── os.c │ ├── nt │ │ ├── audio.c │ │ ├── cmd.c │ │ ├── devarch.c │ │ ├── deveia.c │ │ ├── devfs.c │ │ ├── fp.c │ │ ├── ie │ │ ├── ie-os.c │ │ ├── ie-win.c │ │ ├── ieplugin.h │ │ ├── ipif.c │ │ ├── ipif6.c │ │ ├── mkfile │ │ ├── nt.rc │ │ ├── os.c │ │ ├── r16.c │ │ ├── r16.h │ │ ├── vlrt.c │ │ └── win.c │ ├── openbsd │ │ ├── asm-386.S │ │ ├── audio.c │ │ ├── cmd.c │ │ ├── deveia.c │ │ ├── devfs.c │ │ ├── mkfile │ │ ├── mkfile-OpenBSD │ │ ├── os.c │ │ └── rfork_thread.S │ ├── osx │ │ ├── NOTE │ │ ├── asm-386.s │ │ ├── asm-power.s │ │ ├── cmd.c │ │ ├── deveia.c │ │ ├── devfs.c │ │ ├── keycodes.h │ │ ├── mkfile │ │ ├── mkfile-g │ │ ├── mkfile-x11 │ │ ├── os.c │ │ └── win.c │ ├── plan9 │ │ ├── asm-386.s │ │ ├── asm-arm.s │ │ ├── asm-mips.s │ │ ├── asm-power.s │ │ ├── asm-sparc.s │ │ ├── cmd.c │ │ ├── devfs.c │ │ ├── devsrv9.c │ │ ├── mkfile │ │ ├── os.c │ │ └── win.c │ ├── port │ │ ├── acme-offset │ │ ├── alloc.c │ │ ├── audio-tbls.c │ │ ├── audio.h │ │ ├── cache.c │ │ ├── chan.c │ │ ├── dat.h │ │ ├── dev.c │ │ ├── devaudio.c │ │ ├── devcap.c │ │ ├── devcmd.c │ │ ├── devcons.c │ │ ├── devdraw.c │ │ ├── devdup.c │ │ ├── devdynld.c │ │ ├── devdynldx.c │ │ ├── deveia-bsd.c │ │ ├── deveia-posix.c │ │ ├── devenv.c │ │ ├── devfs-posix.c │ │ ├── devindir.c │ │ ├── devip.c │ │ ├── devlogfs.c │ │ ├── devmem.c │ │ ├── devmnt.c │ │ ├── devpipe.c │ │ ├── devpointer.c │ │ ├── devprof.c │ │ ├── devprog.c │ │ ├── devroot.c │ │ ├── devsign.c │ │ ├── devsnarf.c │ │ ├── devsrv.c │ │ ├── devssl.c │ │ ├── devtab.c │ │ ├── devtinyfs.c │ │ ├── devtk.c │ │ ├── dial.c │ │ ├── dis.c │ │ ├── discall.c │ │ ├── dynld.c │ │ ├── dynldc.c │ │ ├── env.c │ │ ├── error.c │ │ ├── error.h │ │ ├── errstr.c │ │ ├── exception.c │ │ ├── exportfs.c │ │ ├── exptab.c │ │ ├── file.c │ │ ├── fns.h │ │ ├── inferno.c │ │ ├── ip.h │ │ ├── ipaux.c │ │ ├── ipif-posix.c │ │ ├── ipif6-posix.c │ │ ├── keysym2ucs.h │ │ ├── kproc-pthreads.c │ │ ├── latin1.c │ │ ├── latin1.h │ │ ├── lock.c │ │ ├── main.c │ │ ├── master │ │ ├── master.local │ │ ├── mkdevc │ │ ├── mkdevlist │ │ ├── mkfile │ │ ├── mkroot │ │ ├── parse.c │ │ ├── pgrp.c │ │ ├── portmkfile │ │ ├── print.c │ │ ├── proc.c │ │ ├── qio.c │ │ ├── random.c │ │ ├── srv.c │ │ ├── styx.c │ │ ├── sysfile.c │ │ ├── uqid.c │ │ ├── win-x11-old.c │ │ ├── win-x11a.c │ │ └── x11-keysym2ucs.c │ ├── solaris │ │ ├── asm-386.s │ │ ├── asm-sparc.s │ │ ├── audio.c │ │ ├── cmd.c │ │ ├── deveia.c │ │ ├── devfs.c │ │ ├── mkfile │ │ └── os.c │ └── unixware │ │ ├── asm-386.s │ │ ├── cmd.c │ │ ├── deveia.c │ │ ├── devfs.c │ │ ├── mkfile │ │ ├── mkfile-Unixware │ │ └── os.c ├── freebsd │ ├── 386 │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── fpuctl.h │ │ │ └── lib9.h │ │ └── mkfile │ └── mkfile ├── inferno │ ├── 386 │ │ ├── include │ │ │ ├── lib9.h │ │ │ ├── u.h │ │ │ └── ureg.h │ │ └── mkfile │ ├── arm │ │ ├── include │ │ │ ├── lib9.h │ │ │ ├── u.h │ │ │ └── ureg.h │ │ └── mkfile │ ├── mips │ │ ├── include │ │ │ ├── lib9.h │ │ │ └── u.h │ │ └── mkfile │ ├── mkfile │ ├── power │ │ ├── include │ │ │ ├── lib9.h │ │ │ ├── u.h │ │ │ └── ureg.h │ │ └── mkfile │ ├── sparc │ │ ├── include │ │ │ ├── lib9.h │ │ │ ├── u.h │ │ │ └── ureg.h │ │ └── mkfile │ ├── spim │ │ ├── include │ │ │ ├── lib9.h │ │ │ └── u.h │ │ └── mkfile │ └── thumb │ │ ├── include │ │ ├── lib9.h │ │ ├── u.h │ │ └── ureg.h │ │ └── mkfile ├── irix │ ├── mips │ │ ├── include │ │ │ ├── emu.h │ │ │ └── lib9.h │ │ └── mkfile │ └── mkfile ├── linux │ ├── 386 │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── fpuctl.h │ │ │ └── lib9.h │ │ └── mkfile │ ├── arm │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── fpuctl.h │ │ │ └── lib9.h │ │ └── mkfile │ ├── mkfile │ ├── power │ │ ├── include │ │ │ ├── emu.h │ │ │ └── lib9.h │ │ └── mkfile │ └── spim │ │ ├── include │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h │ │ └── mkfile ├── mkfile ├── native │ ├── 386 │ │ └── pc │ │ │ ├── README │ │ │ ├── apbootstrap.h │ │ │ ├── apbootstrap.s │ │ │ ├── apic.c │ │ │ ├── apm.c │ │ │ ├── apmjump.s │ │ │ ├── archmp.c │ │ │ ├── audio.h │ │ │ ├── cga.c │ │ │ ├── cgamemscr.c │ │ │ ├── crystal.h │ │ │ ├── dat.h │ │ │ ├── devarch.c │ │ │ ├── devds1620.c │ │ │ ├── devether.c │ │ │ ├── devfloppy.c │ │ │ ├── devi82365.c │ │ │ ├── devlm78.c │ │ │ ├── devlpt.c │ │ │ ├── devmouse.c │ │ │ ├── devmpeg.c │ │ │ ├── devpccard.c │ │ │ ├── devpnp.c │ │ │ ├── devrtc.c │ │ │ ├── devtv.c │ │ │ ├── devusb.c │ │ │ ├── devvga.c │ │ │ ├── devzt5512.c │ │ │ ├── dma.c │ │ │ ├── ether2000.c │ │ │ ├── ether2114x.c │ │ │ ├── ether589.c │ │ │ ├── ether79c960.c │ │ │ ├── ether79c970.c │ │ │ ├── ether8003.c │ │ │ ├── ether8139.c │ │ │ ├── ether82543gc.c │ │ │ ├── ether82557.c │ │ │ ├── ether83815.c │ │ │ ├── ether8390.c │ │ │ ├── ether8390.h │ │ │ ├── etherdp83820.c │ │ │ ├── etherec2t.c │ │ │ ├── etherelnk3.c │ │ │ ├── etherga620.c │ │ │ ├── etherga620fw.h │ │ │ ├── etherif.h │ │ │ ├── etherigbe.c │ │ │ ├── etherrhine.c │ │ │ ├── ethersmc.c │ │ │ ├── ethervt6102.c │ │ │ ├── etherwavelan.c │ │ │ ├── flashif.h │ │ │ ├── flashzpc.c │ │ │ ├── floppy.h │ │ │ ├── fns.h │ │ │ ├── fpi.h │ │ │ ├── fpi387.c │ │ │ ├── fpsave.s │ │ │ ├── i8250.c │ │ │ ├── i8253.c │ │ │ ├── i8259.c │ │ │ ├── io.h │ │ │ ├── kbd.c │ │ │ ├── l.s │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ ├── memory.c │ │ │ ├── mkfile │ │ │ ├── mmu.c │ │ │ ├── mouse.c │ │ │ ├── mp.c │ │ │ ├── mp.h │ │ │ ├── pc │ │ │ ├── pc4e │ │ │ ├── pcdisk │ │ │ ├── pci.acid │ │ │ ├── pci.c │ │ │ ├── pcidb.acid │ │ │ ├── pcmciamodem.c │ │ │ ├── piix4smbus.c │ │ │ ├── pix │ │ │ ├── ps2mouse.c │ │ │ ├── ptclbsum386.s │ │ │ ├── screen.c │ │ │ ├── screen.h │ │ │ ├── sd53c8xx.c │ │ │ ├── sd53c8xx.i │ │ │ ├── sd53c8xx.n │ │ │ ├── sdata.c │ │ │ ├── sdmylex.c │ │ │ ├── sdscsi.c │ │ │ ├── trap.c │ │ │ ├── tv.h │ │ │ ├── uarti8250.c │ │ │ ├── uartisa.c │ │ │ ├── uartpci.c │ │ │ ├── usb.h │ │ │ ├── usbuhci.c │ │ │ ├── vga.c │ │ │ ├── vga.h │ │ │ ├── vga3dfx.c │ │ │ ├── vgaark2000pv.c │ │ │ ├── vgabt485.c │ │ │ ├── vgaclgd542x.c │ │ │ ├── vgaclgd546x.c │ │ │ ├── vgact65545.c │ │ │ ├── vgacyber938x.c │ │ │ ├── vgaet4000.c │ │ │ ├── vgahiqvideo.c │ │ │ ├── vgai81x.c │ │ │ ├── vgamach64xx.c │ │ │ ├── vgamga2164w.c │ │ │ ├── vgamga4xx.c │ │ │ ├── vganeomagic.c │ │ │ ├── vganvidia.c │ │ │ ├── vgargb524.c │ │ │ ├── vgas3.c │ │ │ ├── vgasavage.c │ │ │ ├── vgat2r4.c │ │ │ ├── vgatvp3020.c │ │ │ ├── vgatvp3026.c │ │ │ ├── vgavmware.c │ │ │ ├── vgax.c │ │ │ ├── wavelan.c │ │ │ ├── wavelan.h │ │ │ ├── x86break.c │ │ │ └── zoran.h │ ├── arm │ │ ├── cerf1110 │ │ │ ├── Mk │ │ │ ├── README │ │ │ ├── archcerf.c │ │ │ ├── cerf │ │ │ ├── dat.h │ │ │ ├── devata.c │ │ │ ├── devcerf.c │ │ │ ├── ether8900.c │ │ │ ├── fns.h │ │ │ ├── io.h │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ └── mkfile │ │ ├── cerf250 │ │ │ ├── README │ │ │ ├── archcerf.c │ │ │ ├── cerf │ │ │ ├── dat.h │ │ │ ├── devpcf8563.c │ │ │ ├── ether91c111.c │ │ │ ├── fns.h │ │ │ ├── io.h │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ └── uart.h │ │ ├── gum │ │ │ ├── Firstboot │ │ │ ├── README │ │ │ └── gum │ │ ├── ipaq1110 │ │ │ ├── Mk │ │ │ ├── README │ │ │ ├── archipaq.c │ │ │ ├── dat.h │ │ │ ├── defont.c │ │ │ ├── devaudio.c │ │ │ ├── devipaq.c │ │ │ ├── etherwavelan.c │ │ │ ├── fns.h │ │ │ ├── inflate │ │ │ ├── io.h │ │ │ ├── ipaq │ │ │ ├── lcd.c │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── screen.c │ │ │ ├── screen.h │ │ │ ├── tstdraw.b │ │ │ └── upd │ │ ├── ks32 │ │ │ ├── Mk │ │ │ ├── archevaluator7t.c │ │ │ ├── armv7.h │ │ │ ├── clock.c │ │ │ ├── dat.h │ │ │ ├── devuart.c │ │ │ ├── download.ps │ │ │ ├── evaluator7t │ │ │ ├── fns.h │ │ │ ├── fpi.h │ │ │ ├── fpiarm.c │ │ │ ├── io.h │ │ │ ├── l.s │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── not.c │ │ │ ├── squirt │ │ │ └── trap.c │ │ ├── manga │ │ │ ├── Mk │ │ │ ├── archmanga.c │ │ │ ├── clock.c │ │ │ ├── dat.h │ │ │ ├── devether.c │ │ │ ├── devusb.c │ │ │ ├── eswnotes │ │ │ ├── ether8139.c │ │ │ ├── etherif.h │ │ │ ├── etherks8695.c │ │ │ ├── flashif.h │ │ │ ├── fns.h │ │ │ ├── fpi.h │ │ │ ├── fpiarm.c │ │ │ ├── gpio.c │ │ │ ├── inb.c │ │ │ ├── io.h │ │ │ ├── ioring.c │ │ │ ├── l.s │ │ │ ├── main.c │ │ │ ├── manga │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── mmu.c │ │ │ ├── pci.c │ │ │ ├── pinflate │ │ │ ├── trap.c │ │ │ ├── uartks8695.c │ │ │ ├── usb.h │ │ │ └── usbuhci.c │ │ ├── mkfile │ │ ├── pxa │ │ │ ├── clock.c │ │ │ ├── devether.c │ │ │ ├── devrtc.c │ │ │ ├── devuart.c │ │ │ ├── dma.c │ │ │ ├── etherif.h │ │ │ ├── fpi.h │ │ │ ├── fpiarm.c │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── l.s │ │ │ ├── mmu.c │ │ │ ├── pxaio.h │ │ │ ├── sa1110break.c │ │ │ └── trap.c │ │ └── sa1110 │ │ │ ├── clock.c │ │ │ ├── devether.c │ │ │ ├── devgpio.c │ │ │ ├── devpcmcia.c │ │ │ ├── devpower.c │ │ │ ├── devrtc.c │ │ │ ├── devuart.c │ │ │ ├── dma.c │ │ │ ├── etherif.h │ │ │ ├── fpi.h │ │ │ ├── fpiarm.c │ │ │ ├── gscreen.c │ │ │ ├── gscreen.h │ │ │ ├── i2c.h │ │ │ ├── i2cgpio.c │ │ │ ├── l.s │ │ │ ├── l3gpio.c │ │ │ ├── mmu.c │ │ │ ├── sa1110break.c │ │ │ ├── sa1110io.h │ │ │ ├── softcursor.c │ │ │ ├── suspend.c │ │ │ └── trap.c │ ├── boot │ │ ├── README │ │ ├── arm1110 │ │ │ ├── Mk │ │ │ ├── dat.h │ │ │ ├── donprint.c │ │ │ ├── fns.h │ │ │ ├── il.s │ │ │ ├── imain.c │ │ │ ├── inflate.c │ │ │ ├── io.h │ │ │ ├── l.s │ │ │ ├── lib.h │ │ │ ├── map │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── print.c │ │ │ └── uart.c │ │ ├── libflate │ │ │ ├── LICENCE │ │ │ ├── adler.c │ │ │ ├── crc.c │ │ │ ├── deflate.c │ │ │ ├── deflateblock.c │ │ │ ├── deflatezlib.c │ │ │ ├── deflatezlibblock.c │ │ │ ├── flateerr.c │ │ │ ├── inflate.c │ │ │ ├── inflateblock.c │ │ │ ├── inflatezlib.c │ │ │ ├── inflatezlibblock.c │ │ │ ├── mkfile │ │ │ └── zlib.h │ │ ├── mpc │ │ │ ├── alarm.c │ │ │ ├── all.h │ │ │ ├── archfads.c │ │ │ ├── archfads.h │ │ │ ├── archpaq.c │ │ │ ├── archpaq.h │ │ │ ├── boot.h │ │ │ ├── bootp.c │ │ │ ├── clock.c │ │ │ ├── conf.c │ │ │ ├── console.c │ │ │ ├── cpm.c │ │ │ ├── crc32.c │ │ │ ├── dat.h │ │ │ ├── defont0.c │ │ │ ├── devether.c │ │ │ ├── devuart.c │ │ │ ├── dload.c │ │ │ ├── donprint.c │ │ │ ├── dosboot.c │ │ │ ├── dosfs.h │ │ │ ├── etherif.h │ │ │ ├── etherscc.c │ │ │ ├── fblt.c │ │ │ ├── flash.c │ │ │ ├── fns.h │ │ │ ├── gbitbltclip.c │ │ │ ├── gnot.h │ │ │ ├── i2c.c │ │ │ ├── initfads.c │ │ │ ├── initpaq.c │ │ │ ├── initrpcg.c │ │ │ ├── io.h │ │ │ ├── ip.h │ │ │ ├── l.s │ │ │ ├── lib.h │ │ │ ├── main.c │ │ │ ├── mem.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── ms2.c │ │ │ ├── plan9boot.c │ │ │ ├── qio.c │ │ │ ├── rmap.c │ │ │ ├── screen.c │ │ │ ├── sload.c │ │ │ ├── squeeze.h │ │ │ ├── trap.c │ │ │ ├── uartboot.c │ │ │ ├── ureg.h │ │ │ └── zqs.c │ │ ├── pc │ │ │ ├── 8250.c │ │ │ ├── LICENCE │ │ │ ├── ahci.h │ │ │ ├── alarm.c │ │ │ ├── aoe.h │ │ │ ├── apm.c │ │ │ ├── bcom.c │ │ │ ├── boot.c │ │ │ ├── bootld.c │ │ │ ├── bootp.c │ │ │ ├── cga.c │ │ │ ├── cis.c │ │ │ ├── clock.c │ │ │ ├── conf.c │ │ │ ├── console.c │ │ │ ├── dat.h │ │ │ ├── devbios.c │ │ │ ├── devbios.h │ │ │ ├── devfloppy.c │ │ │ ├── devfloppy.h │ │ │ ├── devi82365.c │ │ │ ├── devpccard.c │ │ │ ├── devsd.c │ │ │ ├── dma.c │ │ │ ├── dosboot.c │ │ │ ├── dosfs.h │ │ │ ├── eipfmt.c │ │ │ ├── error.h │ │ │ ├── ether.c │ │ │ ├── ether2000.c │ │ │ ├── ether2114x.c │ │ │ ├── ether589.c │ │ │ ├── ether79c970.c │ │ │ ├── ether8003.c │ │ │ ├── ether8139.c │ │ │ ├── ether8169.c │ │ │ ├── ether82557.c │ │ │ ├── ether82563.c │ │ │ ├── ether83815.c │ │ │ ├── ether8390.c │ │ │ ├── ether8390.h │ │ │ ├── etherdp83820.c │ │ │ ├── etherec2t.c │ │ │ ├── etherelnk3.c │ │ │ ├── etherelnk3x.c │ │ │ ├── etherga620.c │ │ │ ├── etherga620fw.h │ │ │ ├── etherif.h │ │ │ ├── etherigbe.c │ │ │ ├── ethermii.c │ │ │ ├── ethermii.h │ │ │ ├── etherrhine.c │ │ │ ├── fns.h │ │ │ ├── fs.c │ │ │ ├── fs.h │ │ │ ├── getcallerpc.c │ │ │ ├── ilock.c │ │ │ ├── inflate.c │ │ │ ├── io.h │ │ │ ├── ip.h │ │ │ ├── kbd.c │ │ │ ├── kfs.h │ │ │ ├── kfsboot.c │ │ │ ├── l.s │ │ │ ├── lib.h │ │ │ ├── load.c │ │ │ ├── mbr.s │ │ │ ├── mem.h │ │ │ ├── memory.c │ │ │ ├── mkfile │ │ │ ├── noether.c │ │ │ ├── part.c │ │ │ ├── pbs.s │ │ │ ├── pbsdisk │ │ │ ├── pbsdisk.s │ │ │ ├── pbsdisklba │ │ │ ├── pbsdisklba.s │ │ │ ├── pbslba.s │ │ │ ├── pci.c │ │ │ ├── print.c │ │ │ ├── queue.c │ │ │ ├── sd.h │ │ │ ├── sd53c8xx.c │ │ │ ├── sd53c8xx.i │ │ │ ├── sdaoe.c │ │ │ ├── sdata.c │ │ │ ├── sdbios.c │ │ │ ├── sdiahci.c │ │ │ ├── sdmylex.c │ │ │ ├── sdscsi.c │ │ │ ├── trap.c │ │ │ ├── ureg.h │ │ │ └── x16.h │ │ ├── puma │ │ │ ├── 8250.c │ │ │ ├── alarm.c │ │ │ ├── armv4.h │ │ │ ├── boot.h │ │ │ ├── bootp.c │ │ │ ├── cga.c │ │ │ ├── clock.c │ │ │ ├── conf.c │ │ │ ├── console.c │ │ │ ├── dat.h │ │ │ ├── div.s │ │ │ ├── donprint.c │ │ │ ├── dosboot.c │ │ │ ├── dosfs.h │ │ │ ├── ebsit.trap.c │ │ │ ├── ether.c │ │ │ ├── ether.h │ │ │ ├── ether8900.c │ │ │ ├── flash.c │ │ │ ├── fns.h │ │ │ ├── hard.c │ │ │ ├── io.h │ │ │ ├── ip.h │ │ │ ├── kbd.c │ │ │ ├── l.s │ │ │ ├── lib.h │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── outb.c │ │ │ ├── plan9boot.c │ │ │ ├── puma.c │ │ │ ├── puma.h │ │ │ ├── qio.c │ │ │ ├── rmap.c │ │ │ ├── squeeze.h │ │ │ ├── sum.c │ │ │ ├── trap.c │ │ │ ├── ureg.h │ │ │ └── zqs.c │ │ └── rpcg │ │ │ ├── alarm.c │ │ │ ├── all.h │ │ │ ├── archrpcg.c │ │ │ ├── archrpcg.h │ │ │ ├── boot.h │ │ │ ├── bootp.c │ │ │ ├── clock.c │ │ │ ├── conf.c │ │ │ ├── console.c │ │ │ ├── cpm.c │ │ │ ├── crc32.c │ │ │ ├── dat.h │ │ │ ├── defont0.c │ │ │ ├── devether.c │ │ │ ├── devuart.c │ │ │ ├── dload.c │ │ │ ├── donprint.c │ │ │ ├── dosboot.c │ │ │ ├── dosfs.h │ │ │ ├── etherif.h │ │ │ ├── etherscc.c │ │ │ ├── fblt.c │ │ │ ├── flash.c │ │ │ ├── fns.h │ │ │ ├── g.mx │ │ │ ├── gbitbltclip.c │ │ │ ├── gnot.h │ │ │ ├── i2c.c │ │ │ ├── initfads.c │ │ │ ├── initpaq.c │ │ │ ├── initrpcg.c │ │ │ ├── io.h │ │ │ ├── ip.h │ │ │ ├── l.s │ │ │ ├── lib.h │ │ │ ├── libg.h │ │ │ ├── main.c │ │ │ ├── mem.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── ms2.c │ │ │ ├── plan9boot.c │ │ │ ├── qbromrpcg │ │ │ ├── qio.c │ │ │ ├── rmap.c │ │ │ ├── screen.c │ │ │ ├── sload │ │ │ ├── sload.c │ │ │ ├── squeeze.h │ │ │ ├── trap.c │ │ │ ├── uartboot.c │ │ │ ├── ureg.h │ │ │ └── zqs.c │ ├── init │ │ ├── README │ │ ├── bootinit.b │ │ ├── cerf405.b │ │ ├── cerfinit.b │ │ ├── evalinit.b │ │ ├── geninit.b │ │ ├── i4e.b │ │ ├── init.b │ │ ├── ipaqinit.b │ │ ├── ipeinit.b │ │ ├── jsinit.b │ │ ├── mkfile │ │ ├── mpcinit.b │ │ ├── pcdemo.b │ │ ├── pcinit.b │ │ ├── reminit.b │ │ ├── rpcginit.b │ │ ├── shell.b │ │ ├── soeinit.b │ │ ├── srvinit.b │ │ └── wminit.b │ ├── ip │ │ ├── arp.c │ │ ├── bootp.c │ │ ├── compress.c │ │ ├── devip.c │ │ ├── dhcp.c │ │ ├── eipconvtest.c │ │ ├── esp.c │ │ ├── ethermedium.c │ │ ├── gre.c │ │ ├── icmp.c │ │ ├── icmp6.c │ │ ├── igmp.c │ │ ├── ihbootp.c │ │ ├── il.c │ │ ├── ip.c │ │ ├── ip.h │ │ ├── ipaux.c │ │ ├── ipifc.c │ │ ├── ipmux.c │ │ ├── iproute.c │ │ ├── iprouter.c │ │ ├── ipv6.c │ │ ├── ipv6.h │ │ ├── kernel.h │ │ ├── loopbackmedium.c │ │ ├── netdevmedium.c │ │ ├── netlog.c │ │ ├── nullmedium.c │ │ ├── pktmedium.c │ │ ├── plan9.c │ │ ├── ppp.c │ │ ├── ppp.h │ │ ├── pppmedium.c │ │ ├── ptclbsum.c │ │ ├── rudp.c │ │ ├── tcp.c │ │ └── udp.c │ ├── port │ │ ├── alarm.c │ │ ├── alloc.c │ │ ├── allocb.c │ │ ├── chan.c │ │ ├── cis.c │ │ ├── dev.c │ │ ├── devXXX.c │ │ ├── devaudio.c │ │ ├── devbench.c │ │ ├── devboot.c │ │ ├── devbridge.c │ │ ├── devcap.c │ │ ├── devcons.c │ │ ├── devdbg.c │ │ ├── devdraw.c │ │ ├── devds.c │ │ ├── devdup.c │ │ ├── devdynld.c │ │ ├── devenv.c │ │ ├── devflash.c │ │ ├── devftl.c │ │ ├── devi2c.c │ │ ├── devindir.c │ │ ├── devkprof.c │ │ ├── devlogfs.c │ │ ├── devloopback.c │ │ ├── devmnt.c │ │ ├── devns16552.c │ │ ├── devpci.c │ │ ├── devpipe.c │ │ ├── devpointer.c │ │ ├── devprof.c │ │ ├── devprog.c │ │ ├── devroot.c │ │ ├── devsd.c │ │ ├── devsign.c │ │ ├── devsrv.c │ │ ├── devssl.c │ │ ├── devtest.c │ │ ├── devtinyfs.c │ │ ├── devtk.c │ │ ├── devuart.c │ │ ├── dial.c │ │ ├── dis.c │ │ ├── discall.c │ │ ├── dynld.c │ │ ├── edf.c │ │ ├── edf.h │ │ ├── error.h │ │ ├── ethermii.c │ │ ├── ethermii.h │ │ ├── ethersink.c │ │ ├── exception.c │ │ ├── exportfs.c │ │ ├── flashamd29f0x0.c │ │ ├── flashcfi16.c │ │ ├── flashcfi8.c │ │ ├── flashif.h │ │ ├── flashintel │ │ ├── flashnand.c │ │ ├── fpi.c │ │ ├── fpimem.c │ │ ├── inferno.c │ │ ├── latin1.c │ │ ├── latin1.h │ │ ├── lib.h │ │ ├── log.c │ │ ├── master │ │ ├── master.local │ │ ├── mkdevc │ │ ├── mkdevlist │ │ ├── mkfile │ │ ├── mkroot │ │ ├── mul64fract.c │ │ ├── netaux.c │ │ ├── netif.c │ │ ├── netif.h │ │ ├── nocache.c │ │ ├── nodynld.c │ │ ├── noenv.c │ │ ├── noscreen.c │ │ ├── parse.c │ │ ├── pgrp.c │ │ ├── portbreak.c │ │ ├── portclock.c │ │ ├── portdat.h │ │ ├── portfns.h │ │ ├── portmkfile │ │ ├── print.c │ │ ├── proc.c │ │ ├── qio.c │ │ ├── qlock.c │ │ ├── random.c │ │ ├── rdb.c │ │ ├── sd.h │ │ ├── swcursor.c │ │ ├── sysfile.c │ │ ├── taslock.c │ │ ├── tod.c │ │ ├── uart.h │ │ └── xalloc.c │ ├── power │ │ ├── cerf405 │ │ │ ├── README │ │ │ ├── cerf │ │ │ ├── clock.c │ │ │ ├── compile.c │ │ │ ├── dat.h │ │ │ ├── devboot.c │ │ │ ├── devether.c │ │ │ ├── devrtc.c │ │ │ ├── devuart.c │ │ │ ├── etheremac.c │ │ │ ├── etherif.h │ │ │ ├── fns.h │ │ │ ├── fpi.h │ │ │ ├── fpipower.c │ │ │ ├── gpio.c │ │ │ ├── iic.c │ │ │ ├── inb.s │ │ │ ├── io.h │ │ │ ├── l.s │ │ │ ├── main.c │ │ │ ├── mal.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── mmu.c │ │ │ ├── nand.c │ │ │ ├── nofp.s │ │ │ ├── pci.c │ │ │ ├── physmem.h │ │ │ ├── powerbreak.c │ │ │ ├── rmap.c │ │ │ ├── tlb.s │ │ │ ├── trap.c │ │ │ ├── uart.c │ │ │ └── uart.h │ │ ├── fads │ │ │ ├── archfads.c │ │ │ ├── archfads.h │ │ │ ├── dat.h │ │ │ ├── fads │ │ │ ├── fns.h │ │ │ ├── io.h │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── mmu.c │ │ │ └── tlb.s │ │ ├── ipengine │ │ │ ├── README │ │ │ ├── archipe.c │ │ │ ├── archipe.h │ │ │ ├── dat.h │ │ │ ├── devfpga.c │ │ │ ├── flash28f320b3b.c │ │ │ ├── fns.h │ │ │ ├── io.h │ │ │ ├── ipe │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── mmu.c │ │ │ └── tlb.s │ │ ├── mkfile │ │ ├── mpc │ │ │ ├── 800io.h │ │ │ ├── clock.c │ │ │ ├── cpm.c │ │ │ ├── cpmtimer.c │ │ │ ├── devata.c │ │ │ ├── devbench.c │ │ │ ├── devboot.c │ │ │ ├── devether.c │ │ │ ├── devpcmcia.c │ │ │ ├── devrtc.c │ │ │ ├── devtouch.c │ │ │ ├── devuart.c │ │ │ ├── dsp.c │ │ │ ├── dsp.h │ │ │ ├── etherif.h │ │ │ ├── etherscc.c │ │ │ ├── faultpower.c │ │ │ ├── fp.s │ │ │ ├── fpi.h │ │ │ ├── fpipower.c │ │ │ ├── i2c.c │ │ │ ├── i2c_spi.srx │ │ │ ├── inb.s │ │ │ ├── kbd.c │ │ │ ├── l.s │ │ │ ├── nofp.s │ │ │ ├── pcmcia.h │ │ │ ├── pit.c │ │ │ ├── powerbreak.c │ │ │ ├── rmap.c │ │ │ ├── screen.c │ │ │ ├── screen.h │ │ │ ├── spi.c │ │ │ ├── trap.c │ │ │ └── usb.h │ │ └── rpcg │ │ │ ├── archrpcg.c │ │ │ ├── archrpcg.h │ │ │ ├── clock.c │ │ │ ├── dat.h │ │ │ ├── fns.h │ │ │ ├── io.h │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── mmu.c │ │ │ ├── rpcg │ │ │ └── tlb.s │ ├── sparc │ │ ├── js │ │ │ ├── README │ │ │ ├── audio.h │ │ │ ├── clock.c │ │ │ ├── cs4231.h │ │ │ ├── dat.h │ │ │ ├── devcs4231.c │ │ │ ├── devrtc.c │ │ │ ├── fns.h │ │ │ ├── fsv.c │ │ │ ├── io.h │ │ │ ├── iob.c │ │ │ ├── js │ │ │ ├── kbd.c │ │ │ ├── l.s │ │ │ ├── main.c │ │ │ ├── mem.h │ │ │ ├── mkfile │ │ │ ├── mmu.c │ │ │ ├── ns16552.h │ │ │ ├── rom.c │ │ │ ├── rom.h │ │ │ ├── screen.c │ │ │ ├── screen.h │ │ │ ├── softcursor.h │ │ │ ├── superio.c │ │ │ ├── trap.c │ │ │ └── ureg.h │ │ └── mkfile │ ├── spim │ │ └── mkfile │ └── thumb │ │ └── mkfile ├── netbsd │ ├── 386 │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── fpuctl.h │ │ │ └── lib9.h │ │ └── mkfile │ └── mkfile ├── nt │ ├── 386 │ │ ├── include │ │ │ ├── emu.h │ │ │ └── lib9.h │ │ └── mkfile │ └── mkfile ├── openbsd │ ├── 386 │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── fpuctl.h │ │ │ └── lib9.h │ │ └── mkfile │ └── mkfile ├── osx │ ├── 386 │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── fpuctl.h │ │ │ └── lib9.h │ │ └── mkfile │ ├── mkfile │ └── power │ │ ├── include │ │ ├── emu.h │ │ └── lib9.h │ │ └── mkfile ├── plan9 │ ├── 386 │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── lib9.h │ │ │ └── u.h │ │ └── mkfile │ ├── 68020 │ │ └── mkfile │ ├── amd64 │ │ ├── include │ │ │ ├── lib9.h │ │ │ └── lib9x.h │ │ └── mkfile │ ├── arm │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── lib9.h │ │ │ └── u.h │ │ ├── lib │ │ │ └── .dreg │ │ └── mkfile │ ├── mips │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── lib9.h │ │ │ └── u.h │ │ └── mkfile │ ├── mkfile │ ├── power │ │ ├── include │ │ │ ├── emu.h │ │ │ ├── lib9.h │ │ │ └── u.h │ │ └── mkfile │ └── sparc │ │ ├── include │ │ ├── emu.h │ │ ├── lib9.h │ │ ├── os.h │ │ └── u.h │ │ └── mkfile ├── solaris │ ├── 386 │ │ ├── include │ │ │ ├── emu.h │ │ │ └── lib9.h │ │ └── mkfile │ ├── mkfile │ └── sparc │ │ ├── include │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h │ │ └── mkfile └── unixware │ ├── 386 │ └── mkfile │ └── mkfile ├── config.toml ├── dis ├── broke ├── demo │ ├── camera │ │ ├── camload.bit │ │ ├── camproc.bit │ │ └── runcam │ ├── chat │ │ └── chatclient │ ├── cpupool │ │ └── runrstyx │ ├── lego │ │ ├── clockreg │ │ └── styx.srec │ ├── ns │ │ └── runns │ ├── odbc │ │ └── runodbc │ ├── spree │ │ └── spreeclient │ └── whiteboard │ │ └── runwb ├── grid │ └── spreesrv ├── install │ └── insbylog ├── lc ├── lookman ├── man ├── shutdown ├── sig └── svc │ ├── auth │ ├── net │ ├── registry │ ├── rstyx │ └── styx ├── docs ├── 9p │ ├── _index.adoc │ ├── attach.adoc │ ├── clunk.adoc │ ├── error.adoc │ ├── flush.adoc │ ├── open.adoc │ ├── read.adoc │ ├── remove.adoc │ ├── stat.adoc │ ├── version.adoc │ └── walk.adoc ├── _index.adoc ├── admin │ ├── _index.adoc │ ├── ai2key.adoc │ ├── applylog.adoc │ ├── bootpd.adoc │ ├── changelogin.adoc │ ├── collabsrv.adoc │ ├── create.adoc │ ├── createsignerkey.adoc │ ├── cs.adoc │ ├── dhcp.adoc │ ├── dns.adoc │ ├── fpgaload.adoc │ ├── ftl.adoc │ ├── getauthinfo.adoc │ ├── httpd.adoc │ ├── init.adoc │ ├── kfscmd.adoc │ ├── logind.adoc │ ├── mangaload.adoc │ ├── manufacture.adoc │ ├── mkfs.adoc │ ├── ping.adoc │ ├── plumber.adoc │ ├── prep.adoc │ ├── rdbgsrv.adoc │ ├── register.adoc │ ├── rip.adoc │ ├── rstyxd.adoc │ ├── shutdown.adoc │ ├── signer.adoc │ ├── sntp.adoc │ ├── styxchat.adoc │ ├── styxmon.adoc │ ├── svc.adoc │ ├── touchcal.adoc │ └── virgild.adoc ├── devices │ ├── _index.adoc │ ├── arch.adoc │ ├── audio.adoc │ ├── boot.adoc │ ├── cap.adoc │ ├── cmd.adoc │ ├── cons.adoc │ ├── dbg.adoc │ ├── draw.adoc │ ├── ds.adoc │ ├── dup.adoc │ ├── dynld.adoc │ ├── eia.adoc │ ├── env.adoc │ ├── ether.adoc │ ├── flash.adoc │ ├── floppy.adoc │ ├── fpga.adoc │ ├── fs.adoc │ ├── ftl.adoc │ ├── gpio.adoc │ ├── i2c.adoc │ ├── i82365.adoc │ ├── indir.adoc │ ├── ip.adoc │ ├── kprof.adoc │ ├── logfs.adoc │ ├── lpt.adoc │ ├── mnt.adoc │ ├── mpeg.adoc │ ├── pbus.adoc │ ├── pipe.adoc │ ├── plap.adoc │ ├── pnp.adoc │ ├── pointer.adoc │ ├── prof.adoc │ ├── prog.adoc │ ├── root.adoc │ ├── rtc.adoc │ ├── sd.adoc │ ├── sign.adoc │ ├── snarf.adoc │ ├── srv.adoc │ ├── srv9.adoc │ ├── ssl.adoc │ ├── switch.adoc │ ├── tinyfs.adoc │ ├── tls.adoc │ ├── touch.adoc │ ├── tv.adoc │ ├── usb.adoc │ ├── vga.adoc │ └── vid.adoc ├── formats │ ├── _index.adoc │ ├── attrdb.adoc │ ├── audio.adoc │ ├── auth.adoc │ ├── colour.adoc │ ├── dis.adoc │ ├── font.adoc │ ├── image.adoc │ ├── json.adoc │ ├── keyboard.adoc │ ├── keys.adoc │ ├── keytext.adoc │ ├── login.adoc │ ├── man.adoc │ ├── namespace.adoc │ ├── ndb.adoc │ ├── plumbing.adoc │ ├── proto.adoc │ ├── regexp.adoc │ ├── sbl.adoc │ ├── scancode.adoc │ ├── sexprs.adoc │ ├── translate.adoc │ ├── ubfa.adoc │ ├── users.adoc │ └── utf.adoc ├── imp │ ├── 2a.adoc │ ├── 2c.adoc │ ├── 2l.adoc │ ├── 5coff.adoc │ ├── 5cv.adoc │ ├── 9load.adoc │ ├── _index.adoc │ ├── acid.adoc │ ├── allocb.adoc │ ├── ar.adoc │ ├── atoi.adoc │ ├── c2l.adoc │ ├── conf.adoc │ ├── delay.adoc │ ├── dev.adoc │ ├── devattach.adoc │ ├── dmainit.adoc │ ├── dynld.adoc │ ├── error.adoc │ ├── eve.adoc │ ├── getfields.adoc │ ├── iar.adoc │ ├── inb.adoc │ ├── inm.adoc │ ├── intrenable.adoc │ ├── kbdputc.adoc │ ├── kproc.adoc │ ├── kprof.adoc │ ├── ksize.adoc │ ├── kstrip.adoc │ ├── lock.adoc │ ├── malloc.adoc │ ├── master.adoc │ ├── memory.adoc │ ├── mk.adoc │ ├── ms2.adoc │ ├── newchan.adoc │ ├── ntsrv.adoc │ ├── odbc.adoc │ ├── panic.adoc │ ├── parsecmd.adoc │ ├── plan9.ini.adoc │ ├── print.adoc │ ├── qio.adoc │ ├── qlock.adoc │ ├── readnum.adoc │ ├── ref.adoc │ ├── rune.adoc │ ├── seconds.adoc │ ├── sleep.adoc │ ├── splhi.adoc │ ├── srclist.adoc │ ├── strcat.adoc │ ├── styx.adoc │ ├── styxserver.adoc │ └── xalloc.adoc ├── intro │ ├── 9win.adoc │ ├── _index.adoc │ ├── acme.adoc │ ├── alphabet-abc.adoc │ ├── alphabet-fs.adoc │ ├── alphabet-grid.adoc │ ├── alphabet-main.adoc │ ├── ar.adoc │ ├── asm.adoc │ ├── auplay.adoc │ ├── avr.adoc │ ├── basename.adoc │ ├── bind.adoc │ ├── blur.adoc │ ├── brutus.adoc │ ├── cal.adoc │ ├── calc.adoc │ ├── calendar.adoc │ ├── cat.adoc │ ├── cd.adoc │ ├── charon.adoc │ ├── chgrp.adoc │ ├── chmod.adoc │ ├── cleanname.adoc │ ├── cmp.adoc │ ├── collab-clients.adoc │ ├── collab.adoc │ ├── comm.adoc │ ├── cook.adoc │ ├── cp.adoc │ ├── cprof.adoc │ ├── cpu.adoc │ ├── crypt.adoc │ ├── date.adoc │ ├── dd.adoc │ ├── deb.adoc │ ├── diff.adoc │ ├── disdep.adoc │ ├── dmview.adoc │ ├── du.adoc │ ├── ebook.adoc │ ├── echo.adoc │ ├── emu.adoc │ ├── env.adoc │ ├── fc.adoc │ ├── filename.adoc │ ├── fmt.adoc │ ├── fortune.adoc │ ├── freq.adoc │ ├── fs.adoc │ ├── ftest.adoc │ ├── ftree.adoc │ ├── gettar.adoc │ ├── grep.adoc │ ├── grid-monitor.adoc │ ├── grid-ns.adoc │ ├── grid-query.adoc │ ├── grid-register.adoc │ ├── grid-session.adoc │ ├── gzip.adoc │ ├── idea.adoc │ ├── itest.adoc │ ├── keyboard.adoc │ ├── kill.adoc │ ├── limbo.adoc │ ├── listen.adoc │ ├── logon.adoc │ ├── logwindow.adoc │ ├── look.adoc │ ├── ls.adoc │ ├── m4.adoc │ ├── man.adoc │ ├── mash-make.adoc │ ├── mash-tk.adoc │ ├── mash.adoc │ ├── math-misc.adoc │ ├── mc.adoc │ ├── mdb.adoc │ ├── miniterm.adoc │ ├── mk.adoc │ ├── mkdir.adoc │ ├── mprof.adoc │ ├── mux.adoc │ ├── mv.adoc │ ├── netkey.adoc │ ├── netstat.adoc │ ├── ns.adoc │ ├── nsbuild.adoc │ ├── os.adoc │ ├── p.adoc │ ├── passwd.adoc │ ├── plumb.adoc │ ├── prof.adoc │ ├── ps.adoc │ ├── pwd.adoc │ ├── rcmd.adoc │ ├── read.adoc │ ├── rm.adoc │ ├── runas.adoc │ ├── secstore.adoc │ ├── sendmail.adoc │ ├── sh-alphabet.adoc │ ├── sh-arg.adoc │ ├── sh-csv.adoc │ ├── sh-expr.adoc │ ├── sh-file2chan.adoc │ ├── sh-mload.adoc │ ├── sh-regex.adoc │ ├── sh-sexprs.adoc │ ├── sh-std.adoc │ ├── sh-string.adoc │ ├── sh-test.adoc │ ├── sh-tk.adoc │ ├── sh.adoc │ ├── sleep.adoc │ ├── sort.adoc │ ├── spree-join.adoc │ ├── stack.adoc │ ├── stream.adoc │ ├── strings.adoc │ ├── sum.adoc │ ├── tail.adoc │ ├── tcs.adoc │ ├── tee.adoc │ ├── telnet.adoc │ ├── time.adoc │ ├── timestamp.adoc │ ├── tiny.adoc │ ├── tkcmd.adoc │ ├── tktester.adoc │ ├── toolbar.adoc │ ├── touch.adoc │ ├── tr.adoc │ ├── tsort.adoc │ ├── unicode.adoc │ ├── uniq.adoc │ ├── units.adoc │ ├── uuencode.adoc │ ├── vacget.adoc │ ├── wc.adoc │ ├── webgrab.adoc │ ├── wish.adoc │ ├── wm-misc.adoc │ ├── wm-sh.adoc │ ├── wm.adoc │ ├── xd.adoc │ ├── yacc.adoc │ └── zeros.adoc ├── manual │ ├── 9p.adoc │ ├── _index.adoc │ ├── acid.adoc │ ├── acidref.adoc │ ├── acidtut.adoc │ ├── acme.adoc │ ├── asm.adoc │ ├── benchmarking.adoc │ ├── compiler.adoc │ ├── descent.adoc │ ├── dev.adoc │ ├── dis.adoc │ ├── install.adoc │ ├── lego.adoc │ ├── limbo.adoc │ ├── mk.adoc │ ├── port.adoc │ ├── profilers.adoc │ ├── realnums.adoc │ ├── sh.adoc │ └── tk.adoc ├── misc │ ├── _index.adoc │ ├── db.adoc │ ├── dbsrv.adoc │ └── keyboard.adoc ├── modules │ ├── 9p-ninep.adoc │ ├── _index.adoc │ ├── alphabet-intro.adoc │ ├── arg.adoc │ ├── asn1.adoc │ ├── attrdb.adoc │ ├── bloomfilter.adoc │ ├── bufio-chanfill.adoc │ ├── bufio.adoc │ ├── cfg.adoc │ ├── command.adoc │ ├── complete.adoc │ ├── convcs.adoc │ ├── crc.adoc │ ├── crypt-0intro.adoc │ ├── crypt-crypt.adoc │ ├── crypt-dsagen.adoc │ ├── crypt-gensk.adoc │ ├── crypt-rc4.adoc │ ├── crypt-sha1.adoc │ ├── csv.adoc │ ├── daytime.adoc │ ├── dbm.adoc │ ├── debug.adoc │ ├── devpointer.adoc │ ├── dhcpclient.adoc │ ├── dial.adoc │ ├── dialog.adoc │ ├── dict.adoc │ ├── dis.adoc │ ├── diskblocks.adoc │ ├── disks.adoc │ ├── dividers.adoc │ ├── draw-0intro.adoc │ ├── draw-context.adoc │ ├── draw-display.adoc │ ├── draw-example.adoc │ ├── draw-font.adoc │ ├── draw-image.adoc │ ├── draw-point.adoc │ ├── draw-pointer.adoc │ ├── draw-rect.adoc │ ├── draw-screen.adoc │ ├── drawmux.adoc │ ├── encoding.adoc │ ├── env.adoc │ ├── ether.adoc │ ├── exception.adoc │ ├── factotum.adoc │ ├── filepat.adoc │ ├── filter-deflate.adoc │ ├── filter-slip.adoc │ ├── filter.adoc │ ├── format.adoc │ ├── fsproto.adoc │ ├── geodesy.adoc │ ├── hash.adoc │ ├── ida.adoc │ ├── imagefile.adoc │ ├── ip.adoc │ ├── ipints-genprime.adoc │ ├── ipints.adoc │ ├── ir.adoc │ ├── itslib.adoc │ ├── json.adoc │ ├── keyring-0intro.adoc │ ├── keyring-auth.adoc │ ├── keyring-certtostr.adoc │ ├── keyring-crypt.adoc │ ├── keyring-gensk.adoc │ ├── keyring-getmsg.adoc │ ├── keyring-getstring.adoc │ ├── keyring-ipint.adoc │ ├── keyring-rc4.adoc │ ├── keyring-sha1.adoc │ ├── keyset.adoc │ ├── lists.adoc │ ├── lock.adoc │ ├── math-0intro.adoc │ ├── math-elem.adoc │ ├── math-export.adoc │ ├── math-fp.adoc │ ├── math-linalg.adoc │ ├── mpeg.adoc │ ├── msgio.adoc │ ├── names.adoc │ ├── newns.adoc │ ├── palmfile.adoc │ ├── plumbmsg.adoc │ ├── pop3.adoc │ ├── popup.adoc │ ├── prefab-0intro.adoc │ ├── prefab-compound.adoc │ ├── prefab-element.adoc │ ├── prefab-environ.adoc │ ├── prefab-style.adoc │ ├── print.adoc │ ├── prof.adoc │ ├── pslib.adoc │ ├── rabin.adoc │ ├── rand.adoc │ ├── readdir.adoc │ ├── regex.adoc │ ├── registries.adoc │ ├── rfc822.adoc │ ├── scsiio.adoc │ ├── secstore.adoc │ ├── security-0intro.adoc │ ├── security-auth.adoc │ ├── security-login.adoc │ ├── security-oldauth.adoc │ ├── security-random.adoc │ ├── security-ssl.adoc │ ├── selectfile.adoc │ ├── sets.adoc │ ├── sexprs.adoc │ ├── sh.adoc │ ├── smtp.adoc │ ├── spki-verifier.adoc │ ├── spki.adoc │ ├── spree-allow.adoc │ ├── spree-cardlib.adoc │ ├── spree-gather.adoc │ ├── spree-objstore.adoc │ ├── spree.adoc │ ├── srv.adoc │ ├── string.adoc │ ├── stringinttab.adoc │ ├── styx.adoc │ ├── styxconv.adoc │ ├── styxflush.adoc │ ├── styxpersist.adoc │ ├── styxservers-nametree.adoc │ ├── styxservers.adoc │ ├── sys-0intro.adoc │ ├── sys-bind.adoc │ ├── sys-byte2char.adoc │ ├── sys-chdir.adoc │ ├── sys-dial.adoc │ ├── sys-dirread.adoc │ ├── sys-dup.adoc │ ├── sys-export.adoc │ ├── sys-fauth.adoc │ ├── sys-fd2path.adoc │ ├── sys-file2chan.adoc │ ├── sys-fversion.adoc │ ├── sys-iounit.adoc │ ├── sys-millisec.adoc │ ├── sys-open.adoc │ ├── sys-pctl.adoc │ ├── sys-pipe.adoc │ ├── sys-print.adoc │ ├── sys-read.adoc │ ├── sys-remove.adoc │ ├── sys-seek.adoc │ ├── sys-self.adoc │ ├── sys-sleep.adoc │ ├── sys-stat.adoc │ ├── sys-tokenize.adoc │ ├── sys-utfbytes.adoc │ ├── sys-werrstr.adoc │ ├── tabs.adoc │ ├── tftp.adoc │ ├── timers.adoc │ ├── tk.adoc │ ├── tkclient.adoc │ ├── translate.adoc │ ├── ubfa.adoc │ ├── venti.adoc │ ├── virgil.adoc │ ├── volume.adoc │ ├── w3c-css.adoc │ ├── w3c-uris.adoc │ ├── w3c-xpointers.adoc │ ├── wait.adoc │ ├── wmclient.adoc │ ├── wmlib.adoc │ ├── wmsrv.adoc │ ├── workdir.adoc │ └── xml.adoc ├── servers │ ├── 9srvfs.adoc │ ├── _index.adoc │ ├── acme.adoc │ ├── archfs.adoc │ ├── dbfs.adoc │ ├── dossrv.adoc │ ├── export.adoc │ ├── factotum.adoc │ ├── ftpfs.adoc │ ├── grid-cpu.adoc │ ├── import.adoc │ ├── iostats.adoc │ ├── keyfs.adoc │ ├── keysrv.adoc │ ├── kfs.adoc │ ├── lockfs.adoc │ ├── logfile.adoc │ ├── memfs.adoc │ ├── mntgen.adoc │ ├── namespace.adoc │ ├── palmsrv.adoc │ ├── ramfile.adoc │ ├── registry.adoc │ ├── spree.adoc │ ├── tarfs.adoc │ ├── trfs.adoc │ └── vacfs.adoc └── tk │ ├── 1copyright.adoc │ ├── _index.adoc │ ├── bind.adoc │ ├── button.adoc │ ├── canvas.adoc │ ├── checkbutton.adoc │ ├── choicebutton.adoc │ ├── cursor.adoc │ ├── destroy.adoc │ ├── entry.adoc │ ├── focus.adoc │ ├── frame.adoc │ ├── grab.adoc │ ├── grid.adoc │ ├── image.adoc │ ├── label.adoc │ ├── listbox.adoc │ ├── lower.adoc │ ├── menu.adoc │ ├── menubutton.adoc │ ├── options.adoc │ ├── pack.adoc │ ├── panel.adoc │ ├── radiobutton.adoc │ ├── raise.adoc │ ├── scale.adoc │ ├── scrollbar.adoc │ ├── see.adoc │ ├── send.adoc │ ├── text.adoc │ ├── types.adoc │ ├── update.adoc │ └── variable.adoc ├── include ├── a.out.h ├── bio.h ├── cursor.h ├── draw.h ├── drawif.h ├── dynld.h ├── fcall.h ├── flate.h ├── freetype.h ├── freetype │ ├── cache │ │ ├── ftccache.h │ │ ├── ftccmap.h │ │ ├── ftcglyph.h │ │ ├── ftcimage.h │ │ ├── ftcmanag.h │ │ ├── ftcsbits.h │ │ └── ftlru.h │ ├── config │ │ ├── ftconfig.h │ │ ├── ftconfig.h.orig │ │ ├── ftheader.h │ │ ├── ftmodule.h │ │ ├── ftmodule.h.orig │ │ ├── ftoption.h │ │ ├── ftstdlib.h │ │ └── ftstdlib.h.orig │ ├── freetype.h │ ├── ft2build.h │ ├── ftbbox.h │ ├── ftbdf.h │ ├── ftcache.h │ ├── ftchapters.h │ ├── fterrdef.h │ ├── fterrors.h │ ├── ftglyph.h │ ├── ftgzip.h │ ├── ftimage.h │ ├── ftincrem.h │ ├── ftlist.h │ ├── ftmac.h │ ├── ftmm.h │ ├── ftmoderr.h │ ├── ftmodule.h │ ├── ftoutln.h │ ├── ftpfr.h │ ├── ftrender.h │ ├── ftsizes.h │ ├── ftsnames.h │ ├── ftstroker.h │ ├── ftsynth.h │ ├── ftsysio.h │ ├── ftsysmem.h │ ├── ftsystem.h │ ├── fttrigon.h │ ├── fttypes.h │ ├── ftxf86.h │ ├── internal │ │ ├── autohint.h │ │ ├── bdftypes.h │ │ ├── cfftypes.h │ │ ├── fnttypes.h │ │ ├── ftcalc.h │ │ ├── ftcore.h │ │ ├── ftdebug.h │ │ ├── ftdriver.h │ │ ├── ftexcept.h │ │ ├── ftgloadr.h │ │ ├── fthash.h │ │ ├── ftmemory.h │ │ ├── ftobject.h │ │ ├── ftobjs.h │ │ ├── ftstream.h │ │ ├── fttrace.h │ │ ├── internal.h │ │ ├── pcftypes.h │ │ ├── pfr.h │ │ ├── psaux.h │ │ ├── pshints.h │ │ ├── psnames.h │ │ ├── sfnt.h │ │ ├── t1types.h │ │ ├── t42types.h │ │ └── tttypes.h │ ├── t1tables.h │ ├── ttnameid.h │ ├── tttables.h │ └── tttags.h ├── interp.h ├── isa.h ├── kern.h ├── kernel.h ├── keyboard.h ├── lib9 │ ├── argv0.c │ ├── charstod.c │ ├── cistrcmp.c │ ├── cistrncmp.c │ ├── cistrstr.c │ ├── cleanname.c │ ├── convD2M.c │ ├── convM2D.c │ ├── convM2S.c │ ├── convS2M.c │ ├── create.c │ ├── dirstat-Nt.c │ ├── dirstat-posix.c │ ├── dirwstat.c │ ├── dofmt.c │ ├── dorfmt.c │ ├── errfmt.c │ ├── errstr-Nt.c │ ├── errstr-Plan9.c │ ├── errstr-posix.c │ ├── exits.c │ ├── fcallfmt.c │ ├── fltfmt.c │ ├── fmt.c │ ├── fmtdef.h │ ├── fmtfd.c │ ├── fmtlock.c │ ├── fmtprint.c │ ├── fmtquote.c │ ├── fmtrune.c │ ├── fmtstr.c │ ├── fmtvprint.c │ ├── fprint.c │ ├── getcallerpc-DragonFly-386.S │ ├── getcallerpc-FreeBSD-386.S │ ├── getcallerpc-Irix-mips.s │ ├── getcallerpc-MacOSX-386.s │ ├── getcallerpc-MacOSX-power.s │ ├── getcallerpc-NetBSD-386.S │ ├── getcallerpc-OpenBSD-386.S │ ├── getcallerpc-Solaris-386.s │ ├── getcallerpc-Solaris-sparc.s │ ├── getcallerpc-Unixware-386.s │ ├── getcallerpc-linux-386.S │ ├── getcallerpc-linux-arm.S │ ├── getcallerpc-linux-power.c │ ├── getcallerpc-linux-spim.S │ ├── getfields.c │ ├── getuser-Nt.c │ ├── getuser-posix.c │ ├── getwd-Nt.c │ ├── getwd-posix.c │ ├── isnan-posix.c │ ├── lock-Irix-mips.s │ ├── lock-MacOSX-power.s │ ├── lock-Nt-386.c │ ├── lock-Solaris-386.s │ ├── lock-Solaris-sparc.s │ ├── lock-Unixware-386.s │ ├── lock.c │ ├── mkfile │ ├── mkfile-Nt │ ├── mkfile-Plan9 │ ├── mkfile-Posix │ ├── nulldir.c │ ├── pow10.c │ ├── pread-Nt.c │ ├── print.c │ ├── qsort.c │ ├── readn.c │ ├── rerrstr.c │ ├── rune.c │ ├── runeseprint.c │ ├── runesmprint.c │ ├── runesnprint.c │ ├── runestrchr.c │ ├── runestrlen.c │ ├── runetype.c │ ├── runetypebody-6.2.0.h │ ├── runevseprint.c │ ├── sbrk-posix.c │ ├── seek.c │ ├── seprint.c │ ├── setbinmode-Nt.c │ ├── setfcr-MacOSX-386.c │ ├── setfcr-MacOSX-power.c │ ├── setfcr-NetBSD-386.S │ ├── setfcr-Solaris-sparc.c │ ├── setfcr-linux-386.S │ ├── setfcr-linux-arm.S │ ├── setfcr-linux-power.S │ ├── smprint.c │ ├── snprint.c │ ├── sprint.c │ ├── strdup.c │ ├── strecpy.c │ ├── strtoll.c │ ├── strtoull.c │ ├── sysfatal.c │ ├── tokenize.c │ ├── u16.c │ ├── u32.c │ ├── u64.c │ ├── utfecpy.c │ ├── utflen.c │ ├── utfnlen.c │ ├── utfrrune.c │ ├── utfrune.c │ ├── vfprint.c │ ├── vseprint.c │ ├── vsmprint.c │ └── vsnprint.c ├── libbio │ ├── bbuffered.c │ ├── bfildes.c │ ├── bflush.c │ ├── bgetc.c │ ├── bgetd.c │ ├── bgetrune.c │ ├── binit.c │ ├── boffset.c │ ├── bprint.c │ ├── bputc.c │ ├── bputrune.c │ ├── brdline.c │ ├── brdstr.c │ ├── bread.c │ ├── bseek.c │ ├── bvprint.c │ ├── bwrite.c │ └── mkfile ├── libdraw │ ├── alloc.c │ ├── allocimagemix.c │ ├── arith.c │ ├── bezier.c │ ├── border.c │ ├── buildfont.c │ ├── bytesperline.c │ ├── chan.c │ ├── cloadimage.c │ ├── computil.c │ ├── creadimage.c │ ├── defont.c │ ├── draw.c │ ├── drawrepl.c │ ├── ellipse.c │ ├── font.c │ ├── freesubfont.c │ ├── getdefont.c │ ├── getsubfont.c │ ├── init.c │ ├── line.c │ ├── loadimage.c │ ├── mkfile │ ├── mkfont.c │ ├── openfont.c │ ├── poly.c │ ├── readcolmap.c │ ├── readimage.c │ ├── readsubfont.c │ ├── rectclip.c │ ├── replclipr.c │ ├── rgb.c │ ├── string.c │ ├── stringbg.c │ ├── stringsubfont.c │ ├── stringwidth.c │ ├── subfont.c │ ├── subfontcache.c │ ├── subfontname.c │ ├── test.c │ ├── unloadimage.c │ ├── window.c │ ├── writecolmap.c │ ├── writeimage.c │ └── writesubfont.c ├── libdynld │ ├── dynld-386.c │ ├── dynld-arm.c │ ├── dynld-mips.c │ ├── dynld-power.c │ ├── dynld-sparc.c │ ├── dynld-spim.c │ ├── dynld.c │ ├── dynloadfd.c │ └── mkfile ├── libfreetype │ ├── adler32.c │ ├── ahangles.c │ ├── ahangles.h │ ├── aherrors.h │ ├── ahglobal.c │ ├── ahglobal.h │ ├── ahglyph.c │ ├── ahglyph.h │ ├── ahhint.c │ ├── ahhint.h │ ├── ahloader.h │ ├── ahmodule.c │ ├── ahmodule.h │ ├── ahoptim.c │ ├── ahoptim.h │ ├── ahtypes.h │ ├── autohint.c │ ├── bdf.c │ ├── bdf.h │ ├── bdfdrivr.c │ ├── bdfdrivr.h │ ├── bdferror.h │ ├── bdflib.c │ ├── cff.c │ ├── cffcmap.c │ ├── cffcmap.h │ ├── cffdrivr.c │ ├── cffdrivr.h │ ├── cfferrs.h │ ├── cffgload.c │ ├── cffgload.h │ ├── cffload.c │ ├── cffload.h │ ├── cffobjs.c │ ├── cffobjs.h │ ├── cffparse.c │ ├── cffparse.h │ ├── cfftoken.h │ ├── ciderrs.h │ ├── cidgload.c │ ├── cidgload.h │ ├── cidload.c │ ├── cidload.h │ ├── cidobjs.c │ ├── cidobjs.h │ ├── cidparse.c │ ├── cidparse.h │ ├── cidriver.c │ ├── cidriver.h │ ├── cidtoken.h │ ├── fnterrs.h │ ├── freetype.c │ ├── ft2system.c │ ├── ftapi.c │ ├── ftbase.c │ ├── ftbbox.c │ ├── ftbdf.c │ ├── ftcache.c │ ├── ftcalc.c │ ├── ftccache.c │ ├── ftccmap.c │ ├── ftcerror.h │ ├── ftcglyph.c │ ├── ftcimage.c │ ├── ftcmanag.c │ ├── ftcsbits.c │ ├── ftdbgmem.c │ ├── ftdebug.c │ ├── ftexcept.c │ ├── ftgloadr.c │ ├── ftglyph.c │ ├── ftgrays.c │ ├── ftgrays.h │ ├── ftgzip.c │ ├── fthash.c │ ├── ftinit.c │ ├── ftlist.c │ ├── ftlru.c │ ├── ftmac.c │ ├── ftmm.c │ ├── ftnames.c │ ├── ftobject.c │ ├── ftobjs.c │ ├── ftoutln.c │ ├── ftpfr.c │ ├── ftraster.c │ ├── ftraster.h │ ├── ftrend1.c │ ├── ftrend1.h │ ├── ftsmerrs.h │ ├── ftsmooth.c │ ├── ftsmooth.h │ ├── ftstream.c │ ├── ftstroker.c │ ├── ftsynth.c │ ├── ftsysio.c │ ├── ftsysmem.c │ ├── ftsystem.c │ ├── ftsystem_inf.c │ ├── fttrigon.c │ ├── fttype1.c │ ├── ftutil.c │ ├── ftxf86.c │ ├── infblock.c │ ├── infblock.h │ ├── infcodes.c │ ├── infcodes.h │ ├── inffixed.h │ ├── inflate.c │ ├── inftrees.c │ ├── inftrees.h │ ├── infutil.c │ ├── infutil.h │ ├── mkfile │ ├── otlayout.h │ ├── otlbase.c │ ├── otlbase.h │ ├── otlcommn.c │ ├── otlcommn.h │ ├── otlconf.h │ ├── otlgdef.c │ ├── otlgdef.h │ ├── otlgpos.c │ ├── otlgpos.h │ ├── otlgsub.c │ ├── otlgsub.h │ ├── otljstf.c │ ├── otljstf.h │ ├── otlparse.c │ ├── otlparse.h │ ├── otltable.h │ ├── otltags.h │ ├── otlutils.h │ ├── pcf.c │ ├── pcf.h │ ├── pcfdriver.c │ ├── pcfdriver.h │ ├── pcferror.h │ ├── pcfread.c │ ├── pcfutil.c │ ├── pcfutil.h │ ├── pfr.c │ ├── pfrcmap.c │ ├── pfrcmap.h │ ├── pfrdrivr.c │ ├── pfrdrivr.h │ ├── pfrerror.h │ ├── pfrgload.c │ ├── pfrgload.h │ ├── pfrload.c │ ├── pfrload.h │ ├── pfrobjs.c │ ├── pfrobjs.h │ ├── pfrsbit.c │ ├── pfrsbit.h │ ├── pfrtypes.h │ ├── psaux.c │ ├── psauxerr.h │ ├── psauxmod.c │ ├── psauxmod.h │ ├── pshalgo.h │ ├── pshalgo1.c │ ├── pshalgo1.h │ ├── pshalgo2.c │ ├── pshalgo2.h │ ├── pshalgo3.c │ ├── pshalgo3.h │ ├── pshglob.c │ ├── pshglob.h │ ├── pshinter.c │ ├── pshmod.c │ ├── pshmod.h │ ├── pshrec.c │ ├── pshrec.h │ ├── psmodule.c │ ├── psmodule.h │ ├── psnamerr.h │ ├── psnames.c │ ├── psobjs.c │ ├── psobjs.h │ ├── pstables.h │ ├── raster.c │ ├── rasterrs.h │ ├── sfdriver.c │ ├── sfdriver.h │ ├── sferrors.h │ ├── sfnt.c │ ├── sfobjs.c │ ├── sfobjs.h │ ├── smooth.c │ ├── stddef.h │ ├── t1afm.c │ ├── t1afm.h │ ├── t1cmap.c │ ├── t1cmap.h │ ├── t1decode.c │ ├── t1decode.h │ ├── t1driver.c │ ├── t1driver.h │ ├── t1errors.h │ ├── t1gload.c │ ├── t1gload.h │ ├── t1load.c │ ├── t1load.h │ ├── t1objs.c │ ├── t1objs.h │ ├── t1parse.c │ ├── t1parse.h │ ├── t1tokens.h │ ├── t42drivr.c │ ├── t42drivr.h │ ├── t42error.h │ ├── t42objs.c │ ├── t42objs.h │ ├── t42parse.c │ ├── t42parse.h │ ├── test_bbox.c │ ├── test_trig.c │ ├── truetype.c │ ├── ttcmap.c │ ├── ttcmap.h │ ├── ttcmap0.c │ ├── ttcmap0.h │ ├── ttdriver.c │ ├── ttdriver.h │ ├── tterrors.h │ ├── ttgload.c │ ├── ttgload.h │ ├── ttinterp.c │ ├── ttinterp.h │ ├── ttload.c │ ├── ttload.h │ ├── ttobjs.c │ ├── ttobjs.h │ ├── ttpload.c │ ├── ttpload.h │ ├── ttpost.c │ ├── ttpost.h │ ├── ttsbit.c │ ├── ttsbit.h │ ├── type1.c │ ├── type1cid.c │ ├── type42.c │ ├── winfnt.c │ ├── winfnt.h │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── libinterp │ ├── README │ ├── alt.c │ ├── comp-386.c │ ├── comp-arm.c │ ├── comp-mips.c │ ├── comp-power.c │ ├── comp-sparc.c │ ├── comp-spim.c │ ├── conv.c │ ├── crypt.c │ ├── cryptmod.h │ ├── das-386.c │ ├── das-arm.c │ ├── das-mips.c │ ├── das-power.c │ ├── das-sparc.c │ ├── das-spim.c │ ├── das-stub.c │ ├── dec.c │ ├── decgen.c │ ├── dlm-Inferno.c │ ├── dlm-Nt.c │ ├── dlm-Plan9.c │ ├── dlm-Posix.c │ ├── draw.c │ ├── drawmod.h │ ├── freetype.c │ ├── freetypemod.h │ ├── gc.c │ ├── geom.c │ ├── heap.c │ ├── heapaudit.c │ ├── ipint.c │ ├── ipint.h │ ├── ipintsmod.h │ ├── keyring.c │ ├── keyring.h │ ├── keyringif.h │ ├── keyringif.m │ ├── link.c │ ├── load.c │ ├── loader.c │ ├── loadermod.h │ ├── math.c │ ├── mathmod.h │ ├── mkfile │ ├── mkoptab │ ├── optab.h │ ├── prefab.c │ ├── raise.c │ ├── readmod.c │ ├── runt.c │ ├── runt.h │ ├── sign.c │ ├── stack.c │ ├── string.c │ ├── sysmod.h │ ├── tab.h │ ├── tk.c │ ├── tkmod.h │ ├── validstk.c │ └── xec.c ├── libkern │ ├── abort.c │ ├── abs.c │ ├── atol.c │ ├── charstod.c │ ├── cistrcmp.c │ ├── cistrncmp.c │ ├── cistrstr.c │ ├── cleanname.c │ ├── convD2M.c │ ├── convM2D.c │ ├── convM2S.c │ ├── convS2M.c │ ├── div-arm.s │ ├── div-thumb.s │ ├── dofmt.c │ ├── exp.c │ ├── fcallfmt.c │ ├── floor.c │ ├── fmt.c │ ├── fmtdef.h │ ├── fmtprint.c │ ├── fmtquote.c │ ├── fmtstr.c │ ├── fmtvprint.c │ ├── frexp-386.c │ ├── frexp-arm.c │ ├── frexp-mips.c │ ├── frexp-power.c │ ├── frexp-sparc.c │ ├── frexp-spim.c │ ├── frexp-thumb.c │ ├── getfcr-386.s │ ├── getfcr-arm.s │ ├── getfcr-mips.s │ ├── getfcr-power.s │ ├── getfcr-sparc.s │ ├── getfcr-spim.s │ ├── getfcr-thumb.s │ ├── getfields.c │ ├── log.c │ ├── memccpy-power.s │ ├── memccpy.c │ ├── memchr.c │ ├── memcmp-power.s │ ├── memcmp.c │ ├── memmove-386.s │ ├── memmove-arm.s │ ├── memmove-mips.s │ ├── memmove-power.s │ ├── memmove-sparc.s │ ├── memmove-spim.s │ ├── memmove-thumb.s │ ├── memmove.c │ ├── memset-386.s │ ├── memset-arm.s │ ├── memset-mips.s │ ├── memset-power.s │ ├── memset-sparc.s │ ├── memset-spim.s │ ├── memset-thumb.s │ ├── memset.c │ ├── mkfile │ ├── mkfile-386 │ ├── mkfile-arm │ ├── mkfile-mips │ ├── mkfile-power │ ├── mkfile-sparc │ ├── mkfile-spim │ ├── mkfile-thumb │ ├── nan-386.c │ ├── nan-arm.c │ ├── nan-mips.c │ ├── nan-power.c │ ├── nan-sparc.c │ ├── nan-spim.c │ ├── nan-thumb.c │ ├── netmkaddr.c │ ├── pow.c │ ├── pow10.c │ ├── qsort.c │ ├── rune.c │ ├── runestrlen.c │ ├── seprint.c │ ├── sin.c │ ├── smprint.c │ ├── snprint.c │ ├── sqrt.c │ ├── strcat.c │ ├── strchr-386.s │ ├── strchr-arm.s │ ├── strchr-mips.s │ ├── strchr-power.s │ ├── strchr-sparc.s │ ├── strchr-spim.c │ ├── strchr-spim.s │ ├── strchr-thumb.s │ ├── strchr.c │ ├── strcmp-power.s │ ├── strcmp.c │ ├── strcpy.c │ ├── strdup.c │ ├── strecpy.c │ ├── strlen.c │ ├── strncmp-power.s │ ├── strncmp.c │ ├── strncpy.c │ ├── strrchr.c │ ├── strstr.c │ ├── strtod.c │ ├── strtol.c │ ├── strtoll.c │ ├── strtoul.c │ ├── strtoull.c │ ├── tokenize.c │ ├── toupper.c │ ├── u16.c │ ├── u32.c │ ├── u64.c │ ├── utfecpy.c │ ├── utflen.c │ ├── utfnlen.c │ ├── utfrrune.c │ ├── utfrune.c │ ├── vlop-386.s │ ├── vlop-arm.s │ ├── vlop-mips.s │ ├── vlop-power.s │ ├── vlop-sparc.s │ ├── vlop-spim.s │ ├── vlop-thumb.s │ ├── vlrt-386.c │ ├── vlrt-arm.c │ ├── vlrt-mips.c │ ├── vlrt-power.c │ ├── vlrt-sparc.c │ ├── vlrt-spim.c │ ├── vlrt-thumb.c │ ├── vseprint.c │ ├── vsmprint.c │ └── vsnprint.c ├── libkeyring │ ├── dsaalg.c │ ├── egalg.c │ ├── keys.h │ ├── mkfile │ └── rsaalg.c ├── liblogfs │ ├── boot.c │ ├── clunk.c │ ├── conv.c │ ├── create.c │ ├── dump.c │ ├── error.c │ ├── extentlist.c │ ├── fidmap.c │ ├── findfreeblock.c │ ├── flush.c │ ├── format.c │ ├── gn.c │ ├── group.c │ ├── groupset.c │ ├── is.c │ ├── local.h │ ├── log.c │ ├── map.c │ ├── mkfile │ ├── open.c │ ├── path.c │ ├── perm.c │ ├── read.c │ ├── remove.c │ ├── replace.c │ ├── replay.c │ ├── scan.c │ ├── srv.c │ ├── sweep.c │ ├── tagname.c │ ├── test.c │ ├── ust.c │ ├── walk.c │ ├── write.c │ └── wstat.c ├── libmath │ ├── FPcontrol-DragonFly.c │ ├── FPcontrol-FreeBSD.c │ ├── FPcontrol-Inferno.c │ ├── FPcontrol-Irix.c │ ├── FPcontrol-MacOSX.c │ ├── FPcontrol-NetBSD.c │ ├── FPcontrol-Nt.c │ ├── FPcontrol-OpenBSD.c │ ├── FPcontrol-Plan9.c │ ├── FPcontrol-Solaris.c │ ├── FPcontrol-Unixware.c │ ├── FPcontrol-linux.c │ ├── blas.c │ ├── dtoa.c │ ├── fdim.c │ ├── fdlibm │ │ ├── e_acos.c │ │ ├── e_acosh.c │ │ ├── e_asin.c │ │ ├── e_atan2.c │ │ ├── e_atanh.c │ │ ├── e_cosh.c │ │ ├── e_exp.c │ │ ├── e_fmod.c │ │ ├── e_hypot.c │ │ ├── e_j0.c │ │ ├── e_j1.c │ │ ├── e_jn.c │ │ ├── e_lgamma_r.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_remainder.c │ │ ├── e_sinh.c │ │ ├── e_sqrt.c │ │ ├── fdlibm.h │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── k_tan.c │ │ ├── readme │ │ ├── s_asinh.c │ │ ├── s_atan.c │ │ ├── s_cbrt.c │ │ ├── s_ceil.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_erf.c │ │ ├── s_expm1.c │ │ ├── s_fabs.c │ │ ├── s_finite.c │ │ ├── s_floor.c │ │ ├── s_ilogb.c │ │ ├── s_isnan.c │ │ ├── s_log1p.c │ │ ├── s_modf.c │ │ ├── s_nextafter.c │ │ ├── s_rint.c │ │ ├── s_scalbn.c │ │ ├── s_sin.c │ │ ├── s_tan.c │ │ └── s_tanh.c │ ├── g_fmt.c │ ├── gemm.c │ ├── gfltconv.c │ ├── mkfile │ └── pow10.c ├── libmemdraw │ ├── alloc.c │ ├── arc.c │ ├── cload.c │ ├── cmap.c │ ├── cread.c │ ├── defont.c │ ├── draw.c │ ├── drawtest.c │ ├── ellipse.c │ ├── fillpoly.c │ ├── hwdraw.c │ ├── icossin.c │ ├── icossin2.c │ ├── iprint.c │ ├── line.c │ ├── load.c │ ├── mkfile │ ├── mkfile-FreeBSD │ ├── mkfile-Inferno │ ├── mkfile-Irix │ ├── mkfile-MacOSX │ ├── mkfile-NetBSD │ ├── mkfile-Nt │ ├── mkfile-OpenBSD │ ├── mkfile-Plan9 │ ├── mkfile-Solaris │ ├── mkfile-linux │ ├── mkfile-os │ ├── openmemsubfont.c │ ├── poly.c │ ├── read.c │ ├── string.c │ ├── subfont.c │ ├── unload.c │ └── write.c ├── libmemlayer │ ├── draw.c │ ├── lalloc-x11.c │ ├── lalloc.c │ ├── layerop.c │ ├── ldelete.c │ ├── lhide.c │ ├── line.c │ ├── load.c │ ├── lorigin.c │ ├── lreshape.c │ ├── lsetrefresh.c │ ├── ltofront.c │ ├── ltorear.c │ ├── mkfile │ ├── mkfile-FreeBSD │ ├── mkfile-Hp │ ├── mkfile-Inferno │ ├── mkfile-Irix │ ├── mkfile-MacOSX │ ├── mkfile-NetBSD │ ├── mkfile-Nt │ ├── mkfile-OpenBSD │ ├── mkfile-Plan9 │ ├── mkfile-Posix │ ├── mkfile-Solaris │ ├── mkfile-Unixware │ ├── mkfile-linux │ ├── mkfile-os │ └── unload.c ├── libmp │ ├── Inferno-386 │ │ ├── mkfile │ │ ├── mpdigdiv.s │ │ ├── mpvecadd.s │ │ ├── mpvecdigmuladd.s │ │ ├── mpvecdigmulsub.s │ │ └── mpvecsub.s │ ├── Inferno-amd64 │ │ ├── mkfile │ │ ├── mpdigdiv.s │ │ ├── mpvecadd.s │ │ ├── mpvecdigmuladd.s │ │ ├── mpvecdigmulsub.s │ │ └── mpvecsub.s │ ├── Inferno-mips │ │ ├── mkfile │ │ ├── mpdigdiv.s │ │ ├── mpvecadd.s │ │ ├── mpvecdigmuladd.s │ │ ├── mpvecdigmulsub.s │ │ └── mpvecsub.s │ ├── Inferno-power │ │ ├── mkfile │ │ ├── mpvecadd.s │ │ ├── mpvecdigmuladd.s │ │ ├── mpvecdigmulsub.s │ │ └── mpvecsub.s │ ├── Plan9-386 │ │ ├── mkfile │ │ ├── mpdigdiv.s │ │ ├── mpvecadd.s │ │ ├── mpvecdigmuladd.s │ │ ├── mpvecdigmulsub.s │ │ └── mpvecsub.s │ ├── Plan9-amd64 │ │ ├── mkfile │ │ ├── mpdigdiv.s │ │ ├── mpvecadd.s │ │ ├── mpvecdigmuladd.s │ │ ├── mpvecdigmulsub.s │ │ └── mpvecsub.s │ ├── Plan9-mips │ │ ├── mkfile │ │ ├── mpdigdiv.s │ │ ├── mpvecadd.s │ │ ├── mpvecdigmuladd.s │ │ ├── mpvecdigmulsub.s │ │ └── mpvecsub.s │ ├── Plan9-power │ │ ├── mkfile │ │ ├── mpvecadd.s │ │ ├── mpvecdigmuladd.s │ │ ├── mpvecdigmulsub.s │ │ └── mpvecsub.s │ ├── bigtest.c │ ├── mkfile │ ├── mtest.c │ ├── port │ │ ├── betomp.c │ │ ├── crt.c │ │ ├── crttest.c │ │ ├── dat.h │ │ ├── letomp.c │ │ ├── mkfile │ │ ├── mpadd.c │ │ ├── mpaux.c │ │ ├── mpcmp.c │ │ ├── mpdigdiv.c │ │ ├── mpdiv.c │ │ ├── mpeuclid.c │ │ ├── mpexp.c │ │ ├── mpextendedgcd.c │ │ ├── mpfactorial.c │ │ ├── mpfmt.c │ │ ├── mpinvert.c │ │ ├── mpleft.c │ │ ├── mpmod.c │ │ ├── mpmul.c │ │ ├── mprand.c │ │ ├── mpright.c │ │ ├── mpsub.c │ │ ├── mptobe.c │ │ ├── mptoi.c │ │ ├── mptole.c │ │ ├── mptoui.c │ │ ├── mptouv.c │ │ ├── mptov.c │ │ ├── mpvecadd.c │ │ ├── mpveccmp.c │ │ ├── mpvecdigmuladd.c │ │ ├── mpvecsub.c │ │ ├── os.h │ │ ├── reduce-nt │ │ ├── reduce-rc │ │ ├── reduce-sh │ │ └── strtomp.c │ └── test.c ├── libnandfs │ ├── calcformat.c │ ├── correctauxilliary.c │ ├── ecc.c │ ├── eraseblock.c │ ├── extracttags.c │ ├── findfreeblock.c │ ├── formatblock.c │ ├── getblockstatus.c │ ├── hamming31_26.c │ ├── init.c │ ├── local.h │ ├── markblockbad.c │ ├── mkfile │ ├── open.c │ ├── readblock.c │ ├── readpage.c │ ├── readpageauxilliary.c │ ├── reformatblock.c │ ├── setget.c │ ├── updatepage.c │ ├── writeblock.c │ └── writepageauxilliary.c ├── libprefab │ ├── box.c │ ├── compound.c │ ├── element.c │ ├── elistelement.c │ ├── iconbox.c │ ├── iconelement.c │ ├── mkfile │ ├── textbox.c │ └── textelement.c ├── libsec.h ├── libsec │ ├── Inferno-386 │ │ ├── md5block.s │ │ ├── mkfile │ │ └── sha1block.s │ ├── Inferno-mips │ │ ├── md5block.s │ │ ├── mkfile │ │ └── sha1block.s │ ├── Plan9-386 │ │ ├── md5block.s │ │ ├── mkfile │ │ └── sha1block.s │ ├── Plan9-mips │ │ ├── md5block.s │ │ ├── mkfile │ │ └── sha1block.s │ ├── mkfile │ └── port │ │ ├── aes.c │ │ ├── blowfish.c │ │ ├── decodepem.c │ │ ├── des.c │ │ ├── des3CBC.c │ │ ├── des3ECB.c │ │ ├── desCBC.c │ │ ├── desECB.c │ │ ├── desmodes.c │ │ ├── dsaalloc.c │ │ ├── dsagen.c │ │ ├── dsaprimes.c │ │ ├── dsaprivtopub.c │ │ ├── dsasign.c │ │ ├── dsaverify.c │ │ ├── egalloc.c │ │ ├── egdecrypt.c │ │ ├── egencrypt.c │ │ ├── eggen.c │ │ ├── egprivtopub.c │ │ ├── egsign.c │ │ ├── egtest.c │ │ ├── egverify.c │ │ ├── fastrand.c │ │ ├── genprime.c │ │ ├── genrandom.c │ │ ├── gensafeprime.c │ │ ├── genstrongprime.c │ │ ├── hmac.c │ │ ├── hmactest.c │ │ ├── idea.c │ │ ├── md4.c │ │ ├── md4test.c │ │ ├── md5.c │ │ ├── md5block.c │ │ ├── md5pickle.c │ │ ├── mkfile │ │ ├── nfastrand.c │ │ ├── primetest.c │ │ ├── prng.c │ │ ├── probably_prime.c │ │ ├── rc4.c │ │ ├── reduce-nt │ │ ├── reduce-rc │ │ ├── reduce-sh │ │ ├── rsaalloc.c │ │ ├── rsadecrypt.c │ │ ├── rsaencrypt.c │ │ ├── rsafill.c │ │ ├── rsagen.c │ │ ├── rsaprivtopub.c │ │ ├── rsatest.c │ │ ├── sha1.c │ │ ├── sha1block.c │ │ ├── sha1pickle.c │ │ ├── sha2.c │ │ ├── sha256block.c │ │ ├── sha512block.c │ │ ├── smallprimes.c │ │ └── smallprimetest.c ├── libtk │ ├── NOTES │ ├── buton.c │ ├── canvs.c │ ├── canvs.h │ ├── canvu.c │ ├── carcs.c │ ├── cbits.c │ ├── cimag.c │ ├── cline.c │ ├── colrs.c │ ├── coval.c │ ├── cpoly.c │ ├── crect.c │ ├── ctext.c │ ├── cwind.c │ ├── ebind.c │ ├── entry.c │ ├── extns.c │ ├── frame.c │ ├── frame.h │ ├── grids.c │ ├── image.c │ ├── label.c │ ├── label.h │ ├── listb.c │ ├── listb.h │ ├── mail.tk │ ├── menu.tk │ ├── menus.c │ ├── mkfile │ ├── mkfile-std │ ├── packr.c │ ├── panel.c │ ├── parse.c │ ├── radio.tk │ ├── scale.c │ ├── scrol.c │ ├── textu.c │ ├── textw.c │ ├── textw.h │ ├── tindx.c │ ├── tmark.c │ ├── ttags.c │ ├── twind.c │ ├── utils.c │ ├── varbl.c │ ├── windw.c │ └── xdata.c ├── limbo │ ├── asm.c │ ├── com.c │ ├── decls.c │ ├── dis.c │ ├── dtocanon.c │ ├── ecom.c │ ├── fns.h │ ├── gen.c │ ├── lex.c │ ├── limbo.h │ ├── limbo.y │ ├── mkfile │ ├── nodes.c │ ├── optab.c │ ├── optim.c │ ├── sbl.c │ ├── stubs.c │ ├── typecheck.c │ └── types.c ├── logfs.h ├── logfsos.h ├── mathi.h ├── memdraw.h ├── memlayer.h ├── mklibsubdirs ├── mp.h ├── nandecc.h ├── nandfs.h ├── pool.h ├── pooldefs.h ├── prefab.h ├── raise.h ├── rdbg.h ├── styx.h ├── styxserver.h ├── tk.h ├── trace.h ├── version.h └── vm.h ├── lib ├── acid │ ├── 386 │ ├── amd64 │ ├── arm │ ├── gpa │ ├── inferno │ ├── mips │ ├── port │ ├── power │ ├── rdebug │ └── sparc ├── convcs │ ├── big5 │ ├── charsets │ ├── cp932 │ ├── gb2312 │ ├── ibm437.cp │ ├── ibm850.cp │ ├── ibm866.cp │ ├── iso-8859-1.cp │ ├── iso-8859-10.cp │ ├── iso-8859-15.cp │ ├── iso-8859-2.cp │ ├── iso-8859-3.cp │ ├── iso-8859-4.cp │ ├── iso-8859-5.cp │ ├── iso-8859-6.cp │ ├── iso-8859-7.cp │ ├── iso-8859-8.cp │ ├── iso-8859-9.cp │ ├── jisx0201kana │ ├── jisx0208-1997 │ ├── jisx0212 │ ├── koi8-r.cp │ ├── windows-1250.cp │ ├── windows-1251.cp │ └── windows-1252.cp ├── games │ ├── fortunes │ └── fortunes.index ├── keyboard ├── lego │ ├── llp.h │ ├── styx.c │ ├── styx.srec │ └── styx_abp.srec ├── limbo.vim ├── mashinit ├── mimetype ├── mk │ ├── binds │ ├── mkconfig │ └── mksubdirs ├── ndb │ ├── common │ ├── dns │ ├── inferno │ ├── local │ ├── registry │ └── services ├── polyhedra ├── polyhedra.all ├── print │ ├── defprinter │ ├── dj895.map │ ├── dj970.map │ ├── paper.cfg │ ├── pmode.cfg │ ├── popt.cfg │ ├── printer.cfg │ └── ptype.cfg ├── scores │ ├── snake │ ├── tetris │ └── x ├── scsicodes ├── sexp ├── sh │ ├── owen │ ├── profile │ ├── sched │ ├── srv │ └── win ├── strokes │ ├── digits.bit │ ├── digits.cl │ ├── digits.clx │ ├── letters.bit │ ├── letters.cl │ ├── letters.clx │ ├── punc.bit │ ├── punc.cl │ └── punc.clx ├── tbsetup ├── unicode ├── unidata │ ├── blocks.txt │ ├── index2.txt │ └── unidata2.txt ├── units ├── usbdb ├── wmcharon ├── wmsetup ├── wmsetup.grid ├── words └── yaccpar ├── makemk.sh ├── mkconfig ├── mkfile ├── mkfiles ├── mkone-nt ├── mkone-rc ├── mkone-sh ├── mksubdirs ├── mksyslib-nt ├── mksyslib-rc └── mksyslib-sh ├── module ├── 9p.m ├── alphabet.m ├── alphabet │ ├── abc.m │ ├── abcstyx.m │ ├── abctypes.m │ ├── endpoints.m │ ├── extvalues.m │ ├── fs.m │ ├── fstypes.m │ ├── grid.m │ ├── gridtypes.m │ └── reports.m ├── arg.m ├── asn1.m ├── attrdb.m ├── auth9.m ├── bench.m ├── bloomfilter.m ├── brutus.m ├── brutusext.m ├── bufio.m ├── bundle.m ├── cci.m ├── cfg.m ├── cfgfile.m ├── complete.m ├── convcs.m ├── crc.m ├── crypt.m ├── css.m ├── csv.m ├── cvsimages.m ├── daytime.m ├── db.m ├── dbm.m ├── debug.m ├── devpointer.m ├── dhcp.m ├── dial.m ├── dialog.m ├── dict.m ├── dis.m ├── diskblocks.m ├── disks.m ├── dividers.m ├── draw.m ├── ecmascript.m ├── emio.m ├── encoding.m ├── env.m ├── ether.m ├── exception.m ├── factotum.m ├── ffts.m ├── filepat.m ├── filter.m ├── format.m ├── freetype.m ├── fslib.m ├── fsproto.m ├── gr.m ├── grid │ ├── announce.m │ ├── browse.m │ ├── browser.m │ ├── demo │ │ ├── block.m │ │ └── exproc.m │ ├── fbrowse.m │ ├── pathreader.m │ ├── readjpg.m │ ├── regpoll.m │ └── srvbrowse.m ├── hash.m ├── html.m ├── ida.m ├── imagefile.m ├── inflate.m ├── ip.m ├── ipattr.m ├── ipints.m ├── ir.m ├── itslib.m ├── json.m ├── keyboard.m ├── keyring.m ├── keyset.m ├── libc.m ├── libc0.m ├── linalg.m ├── lists.m ├── loader.m ├── lock.m ├── man.m ├── math.m ├── math │ ├── geodesy.m │ ├── polyfill.m │ └── polyhedra.m ├── memfs.m ├── mpeg.m ├── msgio.m ├── multistyx.m ├── muxclient.m ├── names.m ├── newns.m ├── oldauth.m ├── palm.m ├── palmfile.m ├── pkcs.m ├── plumbmsg.m ├── pop3.m ├── popup.m ├── powerman.m ├── prefab.m ├── print.m ├── profile.m ├── pslib.m ├── quicktime.m ├── rabin.m ├── rand.m ├── readdir.m ├── regex.m ├── registries.m ├── rfc822.m ├── riff.m ├── runt.m ├── scoretable.m ├── scsiio.m ├── secstore.m ├── security.m ├── selectfile.m ├── sets.m ├── sets32.m ├── sexprs.m ├── sh.m ├── smtp.m ├── sort.m ├── spki.m ├── srv.m ├── srvrunt.b ├── ssl3.m ├── sslsession.m ├── string.m ├── strinttab.m ├── strokes.m ├── styx.m ├── styxconv.m ├── styxflush.m ├── styxlib.m ├── styxpersist.m ├── styxservers.m ├── sys.m ├── tables.m ├── tabs.m ├── tcllib.m ├── tftp.m ├── timers.m ├── titlebar.m ├── tk.m ├── tkclient.m ├── translate.m ├── ubfa.m ├── unbundle.m ├── uris.m ├── url.m ├── usb.m ├── vac.m ├── venti.m ├── volume.m ├── wait.m ├── watchvars.m ├── webget.m ├── winplace.m ├── wmclient.m ├── wmlib.m ├── wmsrv.m ├── workdir.m ├── x509.m ├── xml.m └── xpointers.m ├── sys ├── font │ ├── big5 │ │ ├── 3100.16 │ │ ├── 4e00.16 │ │ ├── 5000.16 │ │ ├── 5200.16 │ │ ├── 5400.16 │ │ ├── 5600.16 │ │ ├── 5800.16 │ │ ├── 5a00.16 │ │ ├── 5c00.16 │ │ ├── 5e00.16 │ │ ├── 6000.16 │ │ ├── 6200.16 │ │ ├── 6400.16 │ │ ├── 6600.16 │ │ ├── 6800.16 │ │ ├── 6a00.16 │ │ ├── 6c00.16 │ │ ├── 6e00.16 │ │ ├── 7000.16 │ │ ├── 7200.16 │ │ ├── 7400.16 │ │ ├── 7600.16 │ │ ├── 7800.16 │ │ ├── 7a00.16 │ │ ├── 7c00.16 │ │ ├── 7e00.16 │ │ ├── 8000.16 │ │ ├── 8200.16 │ │ ├── 8400.16 │ │ ├── 8600.16 │ │ ├── 8800.16 │ │ ├── 8a00.16 │ │ ├── 8c00.16 │ │ ├── 8e00.16 │ │ ├── 9000.16 │ │ ├── 9200.16 │ │ ├── 9400.16 │ │ ├── 9600.16 │ │ ├── 9800.16 │ │ ├── 9a00.16 │ │ ├── 9c00.16 │ │ ├── 9e00.16 │ │ ├── README │ │ ├── hiragana.16 │ │ ├── jis3000.16 │ │ └── katakana.16 │ ├── charon │ │ ├── bold.large.font │ │ ├── bold.normal.font │ │ ├── bold.small.font │ │ ├── bold.tiny.font │ │ ├── bold.vlarge.font │ │ ├── cw.large.font │ │ ├── cw.normal.font │ │ ├── cw.small.font │ │ ├── cw.tiny.font │ │ ├── cw.vlarge.font │ │ ├── italic.large.font │ │ ├── italic.normal.font │ │ ├── italic.small.font │ │ ├── italic.tiny.font │ │ ├── italic.vlarge.font │ │ ├── plain.large.font │ │ ├── plain.normal.font │ │ ├── plain.small.font │ │ ├── plain.tiny.font │ │ └── plain.vlarge.font │ ├── chinese │ │ ├── lucidasans │ │ │ ├── unicode.10.font │ │ │ ├── unicode.13.font │ │ │ ├── unicode.8.font │ │ │ └── unicode.9.font │ │ ├── lucm │ │ │ └── unicode.9.font │ │ └── pelm │ │ │ ├── big5.9.font │ │ │ ├── fangsong.9.font │ │ │ ├── hanc.9.font │ │ │ ├── hanj.9.font │ │ │ ├── hku.9.font │ │ │ ├── song.8.font │ │ │ ├── song.9.font │ │ │ ├── unicode.16.font │ │ │ └── unicode.9.font │ ├── courier │ │ ├── R.10.1 │ │ ├── R.11.1 │ │ ├── R.12.1 │ │ ├── R.15.1 │ │ ├── R.17.1 │ │ ├── R.2.1 │ │ ├── R.23.1 │ │ ├── R.25.1 │ │ ├── R.3.1 │ │ ├── R.4.1 │ │ ├── R.5.1 │ │ ├── R.6.1 │ │ ├── R.7.1 │ │ ├── R.8.1 │ │ ├── latin1.4.font │ │ ├── latin1.5 │ │ ├── latin1.5.font │ │ └── latin1.7.font │ ├── gb │ │ ├── FangSong.4e00.16 │ │ ├── FangSong.5000.16 │ │ ├── FangSong.5200.16 │ │ ├── FangSong.5400.16 │ │ ├── FangSong.5600.16 │ │ ├── FangSong.5800.16 │ │ ├── FangSong.5a00.16 │ │ ├── FangSong.5c00.16 │ │ ├── FangSong.5e00.16 │ │ ├── FangSong.6000.16 │ │ ├── FangSong.6200.16 │ │ ├── FangSong.6400.16 │ │ ├── FangSong.6600.16 │ │ ├── FangSong.6800.16 │ │ ├── FangSong.6a00.16 │ │ ├── FangSong.6c00.16 │ │ ├── FangSong.6e00.16 │ │ ├── FangSong.7000.16 │ │ ├── FangSong.7200.16 │ │ ├── FangSong.7400.16 │ │ ├── FangSong.7600.16 │ │ ├── FangSong.7800.16 │ │ ├── FangSong.7a00.16 │ │ ├── FangSong.7c00.16 │ │ ├── FangSong.7e00.16 │ │ ├── FangSong.8000.16 │ │ ├── FangSong.8200.16 │ │ ├── FangSong.8400.16 │ │ ├── FangSong.8600.16 │ │ ├── FangSong.8800.16 │ │ ├── FangSong.8a00.16 │ │ ├── FangSong.8c00.16 │ │ ├── FangSong.8e00.16 │ │ ├── FangSong.9000.16 │ │ ├── FangSong.9200.16 │ │ ├── FangSong.9400.16 │ │ ├── FangSong.9600.16 │ │ ├── FangSong.9800.16 │ │ ├── FangSong.9a00.16 │ │ ├── FangSong.9c00.16 │ │ ├── FangSong.9e00.16 │ │ ├── Song.4e00.24 │ │ ├── Song.5000.24 │ │ ├── Song.5200.24 │ │ ├── Song.5400.24 │ │ ├── Song.5600.24 │ │ ├── Song.5800.24 │ │ ├── Song.5a00.24 │ │ ├── Song.5c00.24 │ │ ├── Song.5e00.24 │ │ ├── Song.6000.24 │ │ ├── Song.6200.24 │ │ ├── Song.6400.24 │ │ ├── Song.6600.24 │ │ ├── Song.6800.24 │ │ ├── Song.6a00.24 │ │ ├── Song.6c00.24 │ │ ├── Song.6e00.24 │ │ ├── Song.7000.24 │ │ ├── Song.7200.24 │ │ ├── Song.7400.24 │ │ ├── Song.7600.24 │ │ ├── Song.7800.24 │ │ ├── Song.7a00.24 │ │ ├── Song.7c00.24 │ │ ├── Song.7e00.24 │ │ ├── Song.8000.24 │ │ ├── Song.8200.24 │ │ ├── Song.8400.24 │ │ ├── Song.8600.24 │ │ ├── Song.8800.24 │ │ ├── Song.8a00.24 │ │ ├── Song.8c00.24 │ │ ├── Song.8e00.24 │ │ ├── Song.9000.24 │ │ ├── Song.9200.24 │ │ ├── Song.9400.24 │ │ ├── Song.9600.24 │ │ ├── Song.9800.24 │ │ ├── Song.9a00.24 │ │ ├── Song.9c00.24 │ │ └── Song.9e00.24 │ ├── hack │ │ ├── Hack-Bold.ttf │ │ ├── Hack-BoldItalic.ttf │ │ ├── Hack-Italic.ttf │ │ └── Hack-Regular.ttf │ ├── jis │ │ ├── README │ │ ├── hiragana.16 │ │ ├── hiragana.24 │ │ ├── jis3000.16 │ │ ├── jis3000.24 │ │ ├── jis4e00.16 │ │ ├── jis4e00.24 │ │ ├── jis5000.16 │ │ ├── jis5000.24 │ │ ├── jis5200.16 │ │ ├── jis5200.24 │ │ ├── jis5400.16 │ │ ├── jis5400.24 │ │ ├── jis5600.16 │ │ ├── jis5600.24 │ │ ├── jis5800.16 │ │ ├── jis5800.24 │ │ ├── jis5a00.16 │ │ ├── jis5a00.24 │ │ ├── jis5c00.16 │ │ ├── jis5c00.24 │ │ ├── jis5e00.16 │ │ ├── jis5e00.24 │ │ ├── jis6000.16 │ │ ├── jis6000.24 │ │ ├── jis6200.16 │ │ ├── jis6200.24 │ │ ├── jis6400.16 │ │ ├── jis6400.24 │ │ ├── jis6600.16 │ │ ├── jis6600.24 │ │ ├── jis6800.16 │ │ ├── jis6800.24 │ │ ├── jis6a00.16 │ │ ├── jis6a00.24 │ │ ├── jis6c00.16 │ │ ├── jis6c00.24 │ │ ├── jis6e00.16 │ │ ├── jis6e00.24 │ │ ├── jis7000.16 │ │ ├── jis7000.24 │ │ ├── jis7200.16 │ │ ├── jis7200.24 │ │ ├── jis7400.16 │ │ ├── jis7400.24 │ │ ├── jis7600.16 │ │ ├── jis7600.24 │ │ ├── jis7800.16 │ │ ├── jis7800.24 │ │ ├── jis7a00.16 │ │ ├── jis7a00.24 │ │ ├── jis7c00.16 │ │ ├── jis7c00.24 │ │ ├── jis7e00.16 │ │ ├── jis7e00.24 │ │ ├── jis8000.16 │ │ ├── jis8000.24 │ │ ├── jis8200.16 │ │ ├── jis8200.24 │ │ ├── jis8400.16 │ │ ├── jis8400.24 │ │ ├── jis8600.16 │ │ ├── jis8600.24 │ │ ├── jis8800.16 │ │ ├── jis8800.24 │ │ ├── jis8a00.16 │ │ ├── jis8a00.24 │ │ ├── jis8c00.16 │ │ ├── jis8c00.24 │ │ ├── jis8e00.16 │ │ ├── jis8e00.24 │ │ ├── jis9000.16 │ │ ├── jis9000.24 │ │ ├── jis9200.16 │ │ ├── jis9200.24 │ │ ├── jis9400.16 │ │ ├── jis9400.24 │ │ ├── jis9600.16 │ │ ├── jis9600.24 │ │ ├── jis9800.16 │ │ ├── jis9800.24 │ │ ├── jis9a00.16 │ │ ├── jis9a00.24 │ │ ├── jis9c00.16 │ │ ├── jis9c00.24 │ │ ├── jis9e00.16 │ │ ├── jis9e00.24 │ │ ├── katakana.16 │ │ └── katakana.24 │ ├── minicharon │ │ ├── bold.large.font │ │ ├── bold.normal.font │ │ ├── bold.small.font │ │ ├── bold.tiny.font │ │ ├── bold.vlarge.font │ │ ├── cw.large.font │ │ ├── cw.normal.font │ │ ├── cw.small.font │ │ ├── cw.tiny.font │ │ ├── cw.vlarge.font │ │ ├── italic.large.font │ │ ├── italic.normal.font │ │ ├── italic.small.font │ │ ├── italic.tiny.font │ │ ├── italic.vlarge.font │ │ ├── plain.large.font │ │ ├── plain.normal.font │ │ ├── plain.small.font │ │ ├── plain.tiny.font │ │ └── plain.vlarge.font │ ├── minitel │ │ ├── 14x17 │ │ ├── 14x17arrow │ │ ├── 14x17xoe │ │ ├── 14x34 │ │ ├── 14x34arrow │ │ ├── 14x34xoe │ │ ├── 28x17 │ │ ├── 28x17arrow │ │ ├── 28x17xoe │ │ ├── 28x34 │ │ ├── 28x34arrow │ │ ├── 28x34xoe │ │ ├── 8x12 │ │ ├── 8x12arrow │ │ ├── 8x12xoe │ │ ├── f40x25 │ │ ├── f40x25g1 │ │ ├── f40x25h │ │ ├── f40x25s │ │ ├── f40x25w │ │ ├── f80x25 │ │ └── vid14x17 │ ├── misc │ │ ├── 6x10.0 │ │ ├── 6x13.0 │ │ ├── 8x13.0 │ │ ├── 8x13bold.0 │ │ ├── README │ │ ├── a12biluc.0 │ │ ├── a12bluci.0 │ │ ├── a12butto.0 │ │ ├── a12iluci.0 │ │ ├── a12lucid.0 │ │ ├── a12sbarh.0 │ │ ├── a12sbarv.0 │ │ ├── a12sldrh.0 │ │ ├── a12sldrv.0 │ │ ├── arrows │ │ ├── ascii.5x7 │ │ ├── ascii.5x7.font │ │ ├── ascii.6x10 │ │ ├── ascii.6x10.font │ │ ├── b12bluci.0 │ │ ├── b12butto.0 │ │ ├── b12lucid.0 │ │ ├── b12sbarh.0 │ │ ├── b12sbarv.0 │ │ ├── b12sldrh.0 │ │ ├── b12sldrv.0 │ │ ├── c12bluci.0 │ │ ├── c12butto.0 │ │ ├── c12iluci.0 │ │ ├── c12lucid.0 │ │ ├── c12sbarh.0 │ │ ├── c12sbarv.0 │ │ ├── c12sldrh.0 │ │ ├── c12sldrv.0 │ │ ├── char-1 │ │ ├── chart │ │ ├── cursor.0 │ │ ├── cyrillic.9 │ │ ├── d12bluci.0 │ │ ├── d12butto.0 │ │ ├── d12iluci.0 │ │ ├── d12lucid.0 │ │ ├── d12sbarh.0 │ │ ├── d12sbarv.0 │ │ ├── d12sldrh.0 │ │ ├── d12sldrv.0 │ │ ├── ding │ │ ├── e12biluc.0 │ │ ├── e12bluci.0 │ │ ├── e12butto.0 │ │ ├── e12iluci.0 │ │ ├── e12lucid.0 │ │ ├── e12sbarh.0 │ │ ├── e12sbarv.0 │ │ ├── e12sldrh.0 │ │ ├── e12sldrv.0 │ │ ├── f12bluci.0 │ │ ├── f12butto.0 │ │ ├── f12lucid.0 │ │ ├── f12sbarh.0 │ │ ├── f12sbarv.0 │ │ ├── f12sldrh.0 │ │ ├── f12sldrv.0 │ │ ├── g12bluci.0 │ │ ├── g12butto.0 │ │ ├── g12lucid.0 │ │ ├── g12sbarh.0 │ │ ├── g12sbarv.0 │ │ ├── g12sldrh.0 │ │ ├── g12sldrv.0 │ │ ├── genpunc.8 │ │ ├── genpunc.9 │ │ ├── geometric │ │ ├── greek.8 │ │ ├── h12bluci.0 │ │ ├── h12butto.0 │ │ ├── h12iluci.0 │ │ ├── h12lucid.0 │ │ ├── h12sbarh.0 │ │ ├── h12sbarv.0 │ │ ├── h12sldrh.0 │ │ ├── h12sldrv.0 │ │ ├── helvb10.0 │ │ ├── helvb12.0 │ │ ├── helvr10.0 │ │ ├── ipa.8 │ │ ├── latin1.6x10 │ │ ├── latin1.6x10.font │ │ ├── latin1.6x13 │ │ ├── latin1.6x13.font │ │ ├── latin1.8x13 │ │ ├── latin1.8x13.font │ │ ├── letterlike.8 │ │ ├── math1 │ │ ├── math2 │ │ ├── numbforms.9 │ │ ├── olcursor.0 │ │ ├── olgl10.0 │ │ ├── st │ │ ├── st.font │ │ ├── tech │ │ ├── unicode.6x13.font │ │ └── zapf │ ├── psrename │ └── vera │ │ ├── vera │ │ ├── vera.10.0000 │ │ ├── vera.10.0020 │ │ ├── vera.10.00a0 │ │ ├── vera.10.0106 │ │ ├── vera.10.010c │ │ ├── vera.10.0111 │ │ ├── vera.10.011e │ │ ├── vera.10.0130 │ │ ├── vera.10.0141 │ │ ├── vera.10.0152 │ │ ├── vera.10.015e │ │ ├── vera.10.0178 │ │ ├── vera.10.017d │ │ ├── vera.10.0192 │ │ ├── vera.10.02c6 │ │ ├── vera.10.02d8 │ │ ├── vera.10.03a9 │ │ ├── vera.10.03c0 │ │ ├── vera.10.2013 │ │ ├── vera.10.2018 │ │ ├── vera.10.201c │ │ ├── vera.10.2020 │ │ ├── vera.10.2026 │ │ ├── vera.10.2030 │ │ ├── vera.10.2039 │ │ ├── vera.10.20ac │ │ ├── vera.10.2122 │ │ ├── vera.10.2202 │ │ ├── vera.10.2206 │ │ ├── vera.10.220f │ │ ├── vera.10.2211 │ │ ├── vera.10.2215 │ │ ├── vera.10.2219 │ │ ├── vera.10.221e │ │ ├── vera.10.222b │ │ ├── vera.10.2248 │ │ ├── vera.10.2260 │ │ ├── vera.10.2264 │ │ ├── vera.10.25ca │ │ ├── vera.10.fb01 │ │ ├── vera.10.font │ │ ├── vera.12.0000 │ │ ├── vera.12.0020 │ │ ├── vera.12.00a0 │ │ ├── vera.12.0106 │ │ ├── vera.12.010c │ │ ├── vera.12.0111 │ │ ├── vera.12.011e │ │ ├── vera.12.0130 │ │ ├── vera.12.0141 │ │ ├── vera.12.0152 │ │ ├── vera.12.015e │ │ ├── vera.12.0178 │ │ ├── vera.12.017d │ │ ├── vera.12.0192 │ │ ├── vera.12.02c6 │ │ ├── vera.12.02d8 │ │ ├── vera.12.03a9 │ │ ├── vera.12.03c0 │ │ ├── vera.12.2013 │ │ ├── vera.12.2018 │ │ ├── vera.12.201c │ │ ├── vera.12.2020 │ │ ├── vera.12.2026 │ │ ├── vera.12.2030 │ │ ├── vera.12.2039 │ │ ├── vera.12.20ac │ │ ├── vera.12.2122 │ │ ├── vera.12.2202 │ │ ├── vera.12.2206 │ │ ├── vera.12.220f │ │ ├── vera.12.2211 │ │ ├── vera.12.2215 │ │ ├── vera.12.2219 │ │ ├── vera.12.221e │ │ ├── vera.12.222b │ │ ├── vera.12.2248 │ │ ├── vera.12.2260 │ │ ├── vera.12.2264 │ │ ├── vera.12.25ca │ │ ├── vera.12.fb01 │ │ ├── vera.12.font │ │ ├── vera.14.0000 │ │ ├── vera.14.0020 │ │ ├── vera.14.00a0 │ │ ├── vera.14.0106 │ │ ├── vera.14.010c │ │ ├── vera.14.0111 │ │ ├── vera.14.011e │ │ ├── vera.14.0130 │ │ ├── vera.14.0141 │ │ ├── vera.14.0152 │ │ ├── vera.14.015e │ │ ├── vera.14.0178 │ │ ├── vera.14.017d │ │ ├── vera.14.0192 │ │ ├── vera.14.02c6 │ │ ├── vera.14.02d8 │ │ ├── vera.14.03a9 │ │ ├── vera.14.03c0 │ │ ├── vera.14.2013 │ │ ├── vera.14.2018 │ │ ├── vera.14.201c │ │ ├── vera.14.2020 │ │ ├── vera.14.2026 │ │ ├── vera.14.2030 │ │ ├── vera.14.2039 │ │ ├── vera.14.20ac │ │ ├── vera.14.2122 │ │ ├── vera.14.2202 │ │ ├── vera.14.2206 │ │ ├── vera.14.220f │ │ ├── vera.14.2211 │ │ ├── vera.14.2215 │ │ ├── vera.14.2219 │ │ ├── vera.14.221e │ │ ├── vera.14.222b │ │ ├── vera.14.2248 │ │ ├── vera.14.2260 │ │ ├── vera.14.2264 │ │ ├── vera.14.25ca │ │ ├── vera.14.fb01 │ │ ├── vera.14.font │ │ ├── vera.16.0000 │ │ ├── vera.16.0020 │ │ ├── vera.16.00a0 │ │ ├── vera.16.0106 │ │ ├── vera.16.010c │ │ ├── vera.16.0111 │ │ ├── vera.16.011e │ │ ├── vera.16.0130 │ │ ├── vera.16.0141 │ │ ├── vera.16.0152 │ │ ├── vera.16.015e │ │ ├── vera.16.0178 │ │ ├── vera.16.017d │ │ ├── vera.16.0192 │ │ ├── vera.16.02c6 │ │ ├── vera.16.02d8 │ │ ├── vera.16.03a9 │ │ ├── vera.16.03c0 │ │ ├── vera.16.2013 │ │ ├── vera.16.2018 │ │ ├── vera.16.201c │ │ ├── vera.16.2020 │ │ ├── vera.16.2026 │ │ ├── vera.16.2030 │ │ ├── vera.16.2039 │ │ ├── vera.16.20ac │ │ ├── vera.16.2122 │ │ ├── vera.16.2202 │ │ ├── vera.16.2206 │ │ ├── vera.16.220f │ │ ├── vera.16.2211 │ │ ├── vera.16.2215 │ │ ├── vera.16.2219 │ │ ├── vera.16.221e │ │ ├── vera.16.222b │ │ ├── vera.16.2248 │ │ ├── vera.16.2260 │ │ ├── vera.16.2264 │ │ ├── vera.16.25ca │ │ ├── vera.16.fb01 │ │ ├── vera.16.font │ │ ├── vera.18.0000 │ │ ├── vera.18.0020 │ │ ├── vera.18.00a0 │ │ ├── vera.18.0106 │ │ ├── vera.18.010c │ │ ├── vera.18.0111 │ │ ├── vera.18.011e │ │ ├── vera.18.0130 │ │ ├── vera.18.0141 │ │ ├── vera.18.0152 │ │ ├── vera.18.015e │ │ ├── vera.18.0178 │ │ ├── vera.18.017d │ │ ├── vera.18.0192 │ │ ├── vera.18.02c6 │ │ ├── vera.18.02d8 │ │ ├── vera.18.03a9 │ │ ├── vera.18.03c0 │ │ ├── vera.18.2013 │ │ ├── vera.18.2018 │ │ ├── vera.18.201c │ │ ├── vera.18.2020 │ │ ├── vera.18.2026 │ │ ├── vera.18.2030 │ │ ├── vera.18.2039 │ │ ├── vera.18.20ac │ │ ├── vera.18.2122 │ │ ├── vera.18.2202 │ │ ├── vera.18.2206 │ │ ├── vera.18.220f │ │ ├── vera.18.2211 │ │ ├── vera.18.2215 │ │ ├── vera.18.2219 │ │ ├── vera.18.221e │ │ ├── vera.18.222b │ │ ├── vera.18.2248 │ │ ├── vera.18.2260 │ │ ├── vera.18.2264 │ │ ├── vera.18.25ca │ │ ├── vera.18.fb01 │ │ ├── vera.18.font │ │ ├── vera.20.0000 │ │ ├── vera.20.0020 │ │ ├── vera.20.00a0 │ │ ├── vera.20.0106 │ │ ├── vera.20.010c │ │ ├── vera.20.0111 │ │ ├── vera.20.011e │ │ ├── vera.20.0130 │ │ ├── vera.20.0141 │ │ ├── vera.20.0152 │ │ ├── vera.20.015e │ │ ├── vera.20.0178 │ │ ├── vera.20.017d │ │ ├── vera.20.0192 │ │ ├── vera.20.02c6 │ │ ├── vera.20.02d8 │ │ ├── vera.20.03a9 │ │ ├── vera.20.03c0 │ │ ├── vera.20.2013 │ │ ├── vera.20.2018 │ │ ├── vera.20.201c │ │ ├── vera.20.2020 │ │ ├── vera.20.2026 │ │ ├── vera.20.2030 │ │ ├── vera.20.2039 │ │ ├── vera.20.20ac │ │ ├── vera.20.2122 │ │ ├── vera.20.2202 │ │ ├── vera.20.2206 │ │ ├── vera.20.220f │ │ ├── vera.20.2211 │ │ ├── vera.20.2215 │ │ ├── vera.20.2219 │ │ ├── vera.20.221e │ │ ├── vera.20.222b │ │ ├── vera.20.2248 │ │ ├── vera.20.2260 │ │ ├── vera.20.2264 │ │ ├── vera.20.25ca │ │ ├── vera.20.fb01 │ │ └── vera.20.font │ │ ├── verabd │ │ ├── vera.16.font │ │ ├── verabd.10.0000 │ │ ├── verabd.10.0020 │ │ ├── verabd.10.00a0 │ │ ├── verabd.10.0106 │ │ ├── verabd.10.010c │ │ ├── verabd.10.0111 │ │ ├── verabd.10.011e │ │ ├── verabd.10.0130 │ │ ├── verabd.10.0141 │ │ ├── verabd.10.0152 │ │ ├── verabd.10.015e │ │ ├── verabd.10.0178 │ │ ├── verabd.10.017d │ │ ├── verabd.10.0192 │ │ ├── verabd.10.02c6 │ │ ├── verabd.10.02d8 │ │ ├── verabd.10.03a9 │ │ ├── verabd.10.03c0 │ │ ├── verabd.10.2013 │ │ ├── verabd.10.2018 │ │ ├── verabd.10.201c │ │ ├── verabd.10.2020 │ │ ├── verabd.10.2026 │ │ ├── verabd.10.2030 │ │ ├── verabd.10.2039 │ │ ├── verabd.10.20ac │ │ ├── verabd.10.2122 │ │ ├── verabd.10.2202 │ │ ├── verabd.10.2206 │ │ ├── verabd.10.220f │ │ ├── verabd.10.2211 │ │ ├── verabd.10.2215 │ │ ├── verabd.10.2219 │ │ ├── verabd.10.221e │ │ ├── verabd.10.222b │ │ ├── verabd.10.2248 │ │ ├── verabd.10.2260 │ │ ├── verabd.10.2264 │ │ ├── verabd.10.25ca │ │ ├── verabd.10.fb01 │ │ ├── verabd.10.font │ │ ├── verabd.12.0000 │ │ ├── verabd.12.0020 │ │ ├── verabd.12.00a0 │ │ ├── verabd.12.0106 │ │ ├── verabd.12.010c │ │ ├── verabd.12.0111 │ │ ├── verabd.12.011e │ │ ├── verabd.12.0130 │ │ ├── verabd.12.0141 │ │ ├── verabd.12.0152 │ │ ├── verabd.12.015e │ │ ├── verabd.12.0178 │ │ ├── verabd.12.017d │ │ ├── verabd.12.0192 │ │ ├── verabd.12.02c6 │ │ ├── verabd.12.02d8 │ │ ├── verabd.12.03a9 │ │ ├── verabd.12.03c0 │ │ ├── verabd.12.2013 │ │ ├── verabd.12.2018 │ │ ├── verabd.12.201c │ │ ├── verabd.12.2020 │ │ ├── verabd.12.2026 │ │ ├── verabd.12.2030 │ │ ├── verabd.12.2039 │ │ ├── verabd.12.20ac │ │ ├── verabd.12.2122 │ │ ├── verabd.12.2202 │ │ ├── verabd.12.2206 │ │ ├── verabd.12.220f │ │ ├── verabd.12.2211 │ │ ├── verabd.12.2215 │ │ ├── verabd.12.2219 │ │ ├── verabd.12.221e │ │ ├── verabd.12.222b │ │ ├── verabd.12.2248 │ │ ├── verabd.12.2260 │ │ ├── verabd.12.2264 │ │ ├── verabd.12.25ca │ │ ├── verabd.12.fb01 │ │ ├── verabd.12.font │ │ ├── verabd.14.0000 │ │ ├── verabd.14.0020 │ │ ├── verabd.14.00a0 │ │ ├── verabd.14.0106 │ │ ├── verabd.14.010c │ │ ├── verabd.14.0111 │ │ ├── verabd.14.011e │ │ ├── verabd.14.0130 │ │ ├── verabd.14.0141 │ │ ├── verabd.14.0152 │ │ ├── verabd.14.015e │ │ ├── verabd.14.0178 │ │ ├── verabd.14.017d │ │ ├── verabd.14.0192 │ │ ├── verabd.14.02c6 │ │ ├── verabd.14.02d8 │ │ ├── verabd.14.03a9 │ │ ├── verabd.14.03c0 │ │ ├── verabd.14.2013 │ │ ├── verabd.14.2018 │ │ ├── verabd.14.201c │ │ ├── verabd.14.2020 │ │ ├── verabd.14.2026 │ │ ├── verabd.14.2030 │ │ ├── verabd.14.2039 │ │ ├── verabd.14.20ac │ │ ├── verabd.14.2122 │ │ ├── verabd.14.2202 │ │ ├── verabd.14.2206 │ │ ├── verabd.14.220f │ │ ├── verabd.14.2211 │ │ ├── verabd.14.2215 │ │ ├── verabd.14.2219 │ │ ├── verabd.14.221e │ │ ├── verabd.14.222b │ │ ├── verabd.14.2248 │ │ ├── verabd.14.2260 │ │ ├── verabd.14.2264 │ │ ├── verabd.14.25ca │ │ ├── verabd.14.fb01 │ │ ├── verabd.14.font │ │ ├── verabd.16.0000 │ │ ├── verabd.16.0020 │ │ ├── verabd.16.00a0 │ │ ├── verabd.16.0106 │ │ ├── verabd.16.010c │ │ ├── verabd.16.0111 │ │ ├── verabd.16.011e │ │ ├── verabd.16.0130 │ │ ├── verabd.16.0141 │ │ ├── verabd.16.0152 │ │ ├── verabd.16.015e │ │ ├── verabd.16.0178 │ │ ├── verabd.16.017d │ │ ├── verabd.16.0192 │ │ ├── verabd.16.02c6 │ │ ├── verabd.16.02d8 │ │ ├── verabd.16.03a9 │ │ ├── verabd.16.03c0 │ │ ├── verabd.16.2013 │ │ ├── verabd.16.2018 │ │ ├── verabd.16.201c │ │ ├── verabd.16.2020 │ │ ├── verabd.16.2026 │ │ ├── verabd.16.2030 │ │ ├── verabd.16.2039 │ │ ├── verabd.16.20ac │ │ ├── verabd.16.2122 │ │ ├── verabd.16.2202 │ │ ├── verabd.16.2206 │ │ ├── verabd.16.220f │ │ ├── verabd.16.2211 │ │ ├── verabd.16.2215 │ │ ├── verabd.16.2219 │ │ ├── verabd.16.221e │ │ ├── verabd.16.222b │ │ ├── verabd.16.2248 │ │ ├── verabd.16.2260 │ │ ├── verabd.16.2264 │ │ ├── verabd.16.25ca │ │ ├── verabd.16.fb01 │ │ ├── verabd.16.font │ │ ├── verabd.18.0000 │ │ ├── verabd.18.0020 │ │ ├── verabd.18.00a0 │ │ ├── verabd.18.0106 │ │ ├── verabd.18.010c │ │ ├── verabd.18.0111 │ │ ├── verabd.18.011e │ │ ├── verabd.18.0130 │ │ ├── verabd.18.0141 │ │ ├── verabd.18.0152 │ │ ├── verabd.18.015e │ │ ├── verabd.18.0178 │ │ ├── verabd.18.017d │ │ ├── verabd.18.0192 │ │ ├── verabd.18.02c6 │ │ ├── verabd.18.02d8 │ │ ├── verabd.18.03a9 │ │ ├── verabd.18.03c0 │ │ ├── verabd.18.2013 │ │ ├── verabd.18.2018 │ │ ├── verabd.18.201c │ │ ├── verabd.18.2020 │ │ ├── verabd.18.2026 │ │ ├── verabd.18.2030 │ │ ├── verabd.18.2039 │ │ ├── verabd.18.20ac │ │ ├── verabd.18.2122 │ │ ├── verabd.18.2202 │ │ ├── verabd.18.2206 │ │ ├── verabd.18.220f │ │ ├── verabd.18.2211 │ │ ├── verabd.18.2215 │ │ ├── verabd.18.2219 │ │ ├── verabd.18.221e │ │ ├── verabd.18.222b │ │ ├── verabd.18.2248 │ │ ├── verabd.18.2260 │ │ ├── verabd.18.2264 │ │ ├── verabd.18.25ca │ │ ├── verabd.18.fb01 │ │ ├── verabd.18.font │ │ ├── verabd.20.0000 │ │ ├── verabd.20.0020 │ │ ├── verabd.20.00a0 │ │ ├── verabd.20.0106 │ │ ├── verabd.20.010c │ │ ├── verabd.20.0111 │ │ ├── verabd.20.011e │ │ ├── verabd.20.0130 │ │ ├── verabd.20.0141 │ │ ├── verabd.20.0152 │ │ ├── verabd.20.015e │ │ ├── verabd.20.0178 │ │ ├── verabd.20.017d │ │ ├── verabd.20.0192 │ │ ├── verabd.20.02c6 │ │ ├── verabd.20.02d8 │ │ ├── verabd.20.03a9 │ │ ├── verabd.20.03c0 │ │ ├── verabd.20.2013 │ │ ├── verabd.20.2018 │ │ ├── verabd.20.201c │ │ ├── verabd.20.2020 │ │ ├── verabd.20.2026 │ │ ├── verabd.20.2030 │ │ ├── verabd.20.2039 │ │ ├── verabd.20.20ac │ │ ├── verabd.20.2122 │ │ ├── verabd.20.2202 │ │ ├── verabd.20.2206 │ │ ├── verabd.20.220f │ │ ├── verabd.20.2211 │ │ ├── verabd.20.2215 │ │ ├── verabd.20.2219 │ │ ├── verabd.20.221e │ │ ├── verabd.20.222b │ │ ├── verabd.20.2248 │ │ ├── verabd.20.2260 │ │ ├── verabd.20.2264 │ │ ├── verabd.20.25ca │ │ ├── verabd.20.fb01 │ │ └── verabd.20.font │ │ ├── verabi │ │ ├── verabi.10.0000 │ │ ├── verabi.10.0020 │ │ ├── verabi.10.00a0 │ │ ├── verabi.10.0106 │ │ ├── verabi.10.010c │ │ ├── verabi.10.0111 │ │ ├── verabi.10.011e │ │ ├── verabi.10.0130 │ │ ├── verabi.10.0141 │ │ ├── verabi.10.0152 │ │ ├── verabi.10.015e │ │ ├── verabi.10.0178 │ │ ├── verabi.10.017d │ │ ├── verabi.10.0192 │ │ ├── verabi.10.02c6 │ │ ├── verabi.10.02d8 │ │ ├── verabi.10.03a9 │ │ ├── verabi.10.03c0 │ │ ├── verabi.10.2013 │ │ ├── verabi.10.2018 │ │ ├── verabi.10.201c │ │ ├── verabi.10.2020 │ │ ├── verabi.10.2026 │ │ ├── verabi.10.2030 │ │ ├── verabi.10.2039 │ │ ├── verabi.10.20ac │ │ ├── verabi.10.2122 │ │ ├── verabi.10.2202 │ │ ├── verabi.10.2206 │ │ ├── verabi.10.220f │ │ ├── verabi.10.2211 │ │ ├── verabi.10.2215 │ │ ├── verabi.10.2219 │ │ ├── verabi.10.221e │ │ ├── verabi.10.222b │ │ ├── verabi.10.2248 │ │ ├── verabi.10.2260 │ │ ├── verabi.10.2264 │ │ ├── verabi.10.25ca │ │ ├── verabi.10.fb01 │ │ ├── verabi.10.font │ │ ├── verabi.12.0000 │ │ ├── verabi.12.0020 │ │ ├── verabi.12.00a0 │ │ ├── verabi.12.0106 │ │ ├── verabi.12.010c │ │ ├── verabi.12.0111 │ │ ├── verabi.12.011e │ │ ├── verabi.12.0130 │ │ ├── verabi.12.0141 │ │ ├── verabi.12.0152 │ │ ├── verabi.12.015e │ │ ├── verabi.12.0178 │ │ ├── verabi.12.017d │ │ ├── verabi.12.0192 │ │ ├── verabi.12.02c6 │ │ ├── verabi.12.02d8 │ │ ├── verabi.12.03a9 │ │ ├── verabi.12.03c0 │ │ ├── verabi.12.2013 │ │ ├── verabi.12.2018 │ │ ├── verabi.12.201c │ │ ├── verabi.12.2020 │ │ ├── verabi.12.2026 │ │ ├── verabi.12.2030 │ │ ├── verabi.12.2039 │ │ ├── verabi.12.20ac │ │ ├── verabi.12.2122 │ │ ├── verabi.12.2202 │ │ ├── verabi.12.2206 │ │ ├── verabi.12.220f │ │ ├── verabi.12.2211 │ │ ├── verabi.12.2215 │ │ ├── verabi.12.2219 │ │ ├── verabi.12.221e │ │ ├── verabi.12.222b │ │ ├── verabi.12.2248 │ │ ├── verabi.12.2260 │ │ ├── verabi.12.2264 │ │ ├── verabi.12.25ca │ │ ├── verabi.12.fb01 │ │ ├── verabi.12.font │ │ ├── verabi.14.0000 │ │ ├── verabi.14.0020 │ │ ├── verabi.14.00a0 │ │ ├── verabi.14.0106 │ │ ├── verabi.14.010c │ │ ├── verabi.14.0111 │ │ ├── verabi.14.011e │ │ ├── verabi.14.0130 │ │ ├── verabi.14.0141 │ │ ├── verabi.14.0152 │ │ ├── verabi.14.015e │ │ ├── verabi.14.0178 │ │ ├── verabi.14.017d │ │ ├── verabi.14.0192 │ │ ├── verabi.14.02c6 │ │ ├── verabi.14.02d8 │ │ ├── verabi.14.03a9 │ │ ├── verabi.14.03c0 │ │ ├── verabi.14.2013 │ │ ├── verabi.14.2018 │ │ ├── verabi.14.201c │ │ ├── verabi.14.2020 │ │ ├── verabi.14.2026 │ │ ├── verabi.14.2030 │ │ ├── verabi.14.2039 │ │ ├── verabi.14.20ac │ │ ├── verabi.14.2122 │ │ ├── verabi.14.2202 │ │ ├── verabi.14.2206 │ │ ├── verabi.14.220f │ │ ├── verabi.14.2211 │ │ ├── verabi.14.2215 │ │ ├── verabi.14.2219 │ │ ├── verabi.14.221e │ │ ├── verabi.14.222b │ │ ├── verabi.14.2248 │ │ ├── verabi.14.2260 │ │ ├── verabi.14.2264 │ │ ├── verabi.14.25ca │ │ ├── verabi.14.fb01 │ │ ├── verabi.14.font │ │ ├── verabi.16.0000 │ │ ├── verabi.16.0020 │ │ ├── verabi.16.00a0 │ │ ├── verabi.16.0106 │ │ ├── verabi.16.010c │ │ ├── verabi.16.0111 │ │ ├── verabi.16.011e │ │ ├── verabi.16.0130 │ │ ├── verabi.16.0141 │ │ ├── verabi.16.0152 │ │ ├── verabi.16.015e │ │ ├── verabi.16.0178 │ │ ├── verabi.16.017d │ │ ├── verabi.16.0192 │ │ ├── verabi.16.02c6 │ │ ├── verabi.16.02d8 │ │ ├── verabi.16.03a9 │ │ ├── verabi.16.03c0 │ │ ├── verabi.16.2013 │ │ ├── verabi.16.2018 │ │ ├── verabi.16.201c │ │ ├── verabi.16.2020 │ │ ├── verabi.16.2026 │ │ ├── verabi.16.2030 │ │ ├── verabi.16.2039 │ │ ├── verabi.16.20ac │ │ ├── verabi.16.2122 │ │ ├── verabi.16.2202 │ │ ├── verabi.16.2206 │ │ ├── verabi.16.220f │ │ ├── verabi.16.2211 │ │ ├── verabi.16.2215 │ │ ├── verabi.16.2219 │ │ ├── verabi.16.221e │ │ ├── verabi.16.222b │ │ ├── verabi.16.2248 │ │ ├── verabi.16.2260 │ │ ├── verabi.16.2264 │ │ ├── verabi.16.25ca │ │ ├── verabi.16.fb01 │ │ ├── verabi.16.font │ │ ├── verabi.18.0000 │ │ ├── verabi.18.0020 │ │ ├── verabi.18.00a0 │ │ ├── verabi.18.0106 │ │ ├── verabi.18.010c │ │ ├── verabi.18.0111 │ │ ├── verabi.18.011e │ │ ├── verabi.18.0130 │ │ ├── verabi.18.0141 │ │ ├── verabi.18.0152 │ │ ├── verabi.18.015e │ │ ├── verabi.18.0178 │ │ ├── verabi.18.017d │ │ ├── verabi.18.0192 │ │ ├── verabi.18.02c6 │ │ ├── verabi.18.02d8 │ │ ├── verabi.18.03a9 │ │ ├── verabi.18.03c0 │ │ ├── verabi.18.2013 │ │ ├── verabi.18.2018 │ │ ├── verabi.18.201c │ │ ├── verabi.18.2020 │ │ ├── verabi.18.2026 │ │ ├── verabi.18.2030 │ │ ├── verabi.18.2039 │ │ ├── verabi.18.20ac │ │ ├── verabi.18.2122 │ │ ├── verabi.18.2202 │ │ ├── verabi.18.2206 │ │ ├── verabi.18.220f │ │ ├── verabi.18.2211 │ │ ├── verabi.18.2215 │ │ ├── verabi.18.2219 │ │ ├── verabi.18.221e │ │ ├── verabi.18.222b │ │ ├── verabi.18.2248 │ │ ├── verabi.18.2260 │ │ ├── verabi.18.2264 │ │ ├── verabi.18.25ca │ │ ├── verabi.18.fb01 │ │ ├── verabi.18.font │ │ ├── verabi.20.0000 │ │ ├── verabi.20.0020 │ │ ├── verabi.20.00a0 │ │ ├── verabi.20.0106 │ │ ├── verabi.20.010c │ │ ├── verabi.20.0111 │ │ ├── verabi.20.011e │ │ ├── verabi.20.0130 │ │ ├── verabi.20.0141 │ │ ├── verabi.20.0152 │ │ ├── verabi.20.015e │ │ ├── verabi.20.0178 │ │ ├── verabi.20.017d │ │ ├── verabi.20.0192 │ │ ├── verabi.20.02c6 │ │ ├── verabi.20.02d8 │ │ ├── verabi.20.03a9 │ │ ├── verabi.20.03c0 │ │ ├── verabi.20.2013 │ │ ├── verabi.20.2018 │ │ ├── verabi.20.201c │ │ ├── verabi.20.2020 │ │ ├── verabi.20.2026 │ │ ├── verabi.20.2030 │ │ ├── verabi.20.2039 │ │ ├── verabi.20.20ac │ │ ├── verabi.20.2122 │ │ ├── verabi.20.2202 │ │ ├── verabi.20.2206 │ │ ├── verabi.20.220f │ │ ├── verabi.20.2211 │ │ ├── verabi.20.2215 │ │ ├── verabi.20.2219 │ │ ├── verabi.20.221e │ │ ├── verabi.20.222b │ │ ├── verabi.20.2248 │ │ ├── verabi.20.2260 │ │ ├── verabi.20.2264 │ │ ├── verabi.20.25ca │ │ ├── verabi.20.fb01 │ │ └── verabi.20.font │ │ ├── verait │ │ ├── verait.10.0000 │ │ ├── verait.10.0020 │ │ ├── verait.10.00a0 │ │ ├── verait.10.0106 │ │ ├── verait.10.010c │ │ ├── verait.10.0111 │ │ ├── verait.10.011e │ │ ├── verait.10.0130 │ │ ├── verait.10.0141 │ │ ├── verait.10.0152 │ │ ├── verait.10.015e │ │ ├── verait.10.0178 │ │ ├── verait.10.017d │ │ ├── verait.10.0192 │ │ ├── verait.10.02c6 │ │ ├── verait.10.02d8 │ │ ├── verait.10.03a9 │ │ ├── verait.10.03c0 │ │ ├── verait.10.2013 │ │ ├── verait.10.2018 │ │ ├── verait.10.201c │ │ ├── verait.10.2020 │ │ ├── verait.10.2026 │ │ ├── verait.10.2030 │ │ ├── verait.10.2039 │ │ ├── verait.10.20ac │ │ ├── verait.10.2122 │ │ ├── verait.10.2202 │ │ ├── verait.10.2206 │ │ ├── verait.10.220f │ │ ├── verait.10.2211 │ │ ├── verait.10.2215 │ │ ├── verait.10.2219 │ │ ├── verait.10.221e │ │ ├── verait.10.222b │ │ ├── verait.10.2248 │ │ ├── verait.10.2260 │ │ ├── verait.10.2264 │ │ ├── verait.10.25ca │ │ ├── verait.10.fb01 │ │ ├── verait.10.font │ │ ├── verait.12.0000 │ │ ├── verait.12.0020 │ │ ├── verait.12.00a0 │ │ ├── verait.12.0106 │ │ ├── verait.12.010c │ │ ├── verait.12.0111 │ │ ├── verait.12.011e │ │ ├── verait.12.0130 │ │ ├── verait.12.0141 │ │ ├── verait.12.0152 │ │ ├── verait.12.015e │ │ ├── verait.12.0178 │ │ ├── verait.12.017d │ │ ├── verait.12.0192 │ │ ├── verait.12.02c6 │ │ ├── verait.12.02d8 │ │ ├── verait.12.03a9 │ │ ├── verait.12.03c0 │ │ ├── verait.12.2013 │ │ ├── verait.12.2018 │ │ ├── verait.12.201c │ │ ├── verait.12.2020 │ │ ├── verait.12.2026 │ │ ├── verait.12.2030 │ │ ├── verait.12.2039 │ │ ├── verait.12.20ac │ │ ├── verait.12.2122 │ │ ├── verait.12.2202 │ │ ├── verait.12.2206 │ │ ├── verait.12.220f │ │ ├── verait.12.2211 │ │ ├── verait.12.2215 │ │ ├── verait.12.2219 │ │ ├── verait.12.221e │ │ ├── verait.12.222b │ │ ├── verait.12.2248 │ │ ├── verait.12.2260 │ │ ├── verait.12.2264 │ │ ├── verait.12.25ca │ │ ├── verait.12.fb01 │ │ ├── verait.12.font │ │ ├── verait.14.0000 │ │ ├── verait.14.0020 │ │ ├── verait.14.00a0 │ │ ├── verait.14.0106 │ │ ├── verait.14.010c │ │ ├── verait.14.0111 │ │ ├── verait.14.011e │ │ ├── verait.14.0130 │ │ ├── verait.14.0141 │ │ ├── verait.14.0152 │ │ ├── verait.14.015e │ │ ├── verait.14.0178 │ │ ├── verait.14.017d │ │ ├── verait.14.0192 │ │ ├── verait.14.02c6 │ │ ├── verait.14.02d8 │ │ ├── verait.14.03a9 │ │ ├── verait.14.03c0 │ │ ├── verait.14.2013 │ │ ├── verait.14.2018 │ │ ├── verait.14.201c │ │ ├── verait.14.2020 │ │ ├── verait.14.2026 │ │ ├── verait.14.2030 │ │ ├── verait.14.2039 │ │ ├── verait.14.20ac │ │ ├── verait.14.2122 │ │ ├── verait.14.2202 │ │ ├── verait.14.2206 │ │ ├── verait.14.220f │ │ ├── verait.14.2211 │ │ ├── verait.14.2215 │ │ ├── verait.14.2219 │ │ ├── verait.14.221e │ │ ├── verait.14.222b │ │ ├── verait.14.2248 │ │ ├── verait.14.2260 │ │ ├── verait.14.2264 │ │ ├── verait.14.25ca │ │ ├── verait.14.fb01 │ │ ├── verait.14.font │ │ ├── verait.16.0000 │ │ ├── verait.16.0020 │ │ ├── verait.16.00a0 │ │ ├── verait.16.0106 │ │ ├── verait.16.010c │ │ ├── verait.16.0111 │ │ ├── verait.16.011e │ │ ├── verait.16.0130 │ │ ├── verait.16.0141 │ │ ├── verait.16.0152 │ │ ├── verait.16.015e │ │ ├── verait.16.0178 │ │ ├── verait.16.017d │ │ ├── verait.16.0192 │ │ ├── verait.16.02c6 │ │ ├── verait.16.02d8 │ │ ├── verait.16.03a9 │ │ ├── verait.16.03c0 │ │ ├── verait.16.2013 │ │ ├── verait.16.2018 │ │ ├── verait.16.201c │ │ ├── verait.16.2020 │ │ ├── verait.16.2026 │ │ ├── verait.16.2030 │ │ ├── verait.16.2039 │ │ ├── verait.16.20ac │ │ ├── verait.16.2122 │ │ ├── verait.16.2202 │ │ ├── verait.16.2206 │ │ ├── verait.16.220f │ │ ├── verait.16.2211 │ │ ├── verait.16.2215 │ │ ├── verait.16.2219 │ │ ├── verait.16.221e │ │ ├── verait.16.222b │ │ ├── verait.16.2248 │ │ ├── verait.16.2260 │ │ ├── verait.16.2264 │ │ ├── verait.16.25ca │ │ ├── verait.16.fb01 │ │ ├── verait.16.font │ │ ├── verait.18.0000 │ │ ├── verait.18.0020 │ │ ├── verait.18.00a0 │ │ ├── verait.18.0106 │ │ ├── verait.18.010c │ │ ├── verait.18.0111 │ │ ├── verait.18.011e │ │ ├── verait.18.0130 │ │ ├── verait.18.0141 │ │ ├── verait.18.0152 │ │ ├── verait.18.015e │ │ ├── verait.18.0178 │ │ ├── verait.18.017d │ │ ├── verait.18.0192 │ │ ├── verait.18.02c6 │ │ ├── verait.18.02d8 │ │ ├── verait.18.03a9 │ │ ├── verait.18.03c0 │ │ ├── verait.18.2013 │ │ ├── verait.18.2018 │ │ ├── verait.18.201c │ │ ├── verait.18.2020 │ │ ├── verait.18.2026 │ │ ├── verait.18.2030 │ │ ├── verait.18.2039 │ │ ├── verait.18.20ac │ │ ├── verait.18.2122 │ │ ├── verait.18.2202 │ │ ├── verait.18.2206 │ │ ├── verait.18.220f │ │ ├── verait.18.2211 │ │ ├── verait.18.2215 │ │ ├── verait.18.2219 │ │ ├── verait.18.221e │ │ ├── verait.18.222b │ │ ├── verait.18.2248 │ │ ├── verait.18.2260 │ │ ├── verait.18.2264 │ │ ├── verait.18.25ca │ │ ├── verait.18.fb01 │ │ ├── verait.18.font │ │ ├── verait.20.0000 │ │ ├── verait.20.0020 │ │ ├── verait.20.00a0 │ │ ├── verait.20.0106 │ │ ├── verait.20.010c │ │ ├── verait.20.0111 │ │ ├── verait.20.011e │ │ ├── verait.20.0130 │ │ ├── verait.20.0141 │ │ ├── verait.20.0152 │ │ ├── verait.20.015e │ │ ├── verait.20.0178 │ │ ├── verait.20.017d │ │ ├── verait.20.0192 │ │ ├── verait.20.02c6 │ │ ├── verait.20.02d8 │ │ ├── verait.20.03a9 │ │ ├── verait.20.03c0 │ │ ├── verait.20.2013 │ │ ├── verait.20.2018 │ │ ├── verait.20.201c │ │ ├── verait.20.2020 │ │ ├── verait.20.2026 │ │ ├── verait.20.2030 │ │ ├── verait.20.2039 │ │ ├── verait.20.20ac │ │ ├── verait.20.2122 │ │ ├── verait.20.2202 │ │ ├── verait.20.2206 │ │ ├── verait.20.220f │ │ ├── verait.20.2211 │ │ ├── verait.20.2215 │ │ ├── verait.20.2219 │ │ ├── verait.20.221e │ │ ├── verait.20.222b │ │ ├── verait.20.2248 │ │ ├── verait.20.2260 │ │ ├── verait.20.2264 │ │ ├── verait.20.25ca │ │ ├── verait.20.fb01 │ │ └── verait.20.font │ │ ├── veramobd │ │ ├── veramobd.10.0000 │ │ ├── veramobd.10.0020 │ │ ├── veramobd.10.00a0 │ │ ├── veramobd.10.0106 │ │ ├── veramobd.10.010c │ │ ├── veramobd.10.0111 │ │ ├── veramobd.10.011e │ │ ├── veramobd.10.0130 │ │ ├── veramobd.10.0141 │ │ ├── veramobd.10.0152 │ │ ├── veramobd.10.015e │ │ ├── veramobd.10.0178 │ │ ├── veramobd.10.017d │ │ ├── veramobd.10.0192 │ │ ├── veramobd.10.02c6 │ │ ├── veramobd.10.02d8 │ │ ├── veramobd.10.03a9 │ │ ├── veramobd.10.03c0 │ │ ├── veramobd.10.2013 │ │ ├── veramobd.10.2018 │ │ ├── veramobd.10.201c │ │ ├── veramobd.10.2020 │ │ ├── veramobd.10.2026 │ │ ├── veramobd.10.2030 │ │ ├── veramobd.10.2039 │ │ ├── veramobd.10.20ac │ │ ├── veramobd.10.2122 │ │ ├── veramobd.10.2202 │ │ ├── veramobd.10.2206 │ │ ├── veramobd.10.220f │ │ ├── veramobd.10.2211 │ │ ├── veramobd.10.2215 │ │ ├── veramobd.10.2219 │ │ ├── veramobd.10.221e │ │ ├── veramobd.10.222b │ │ ├── veramobd.10.2248 │ │ ├── veramobd.10.2260 │ │ ├── veramobd.10.2264 │ │ ├── veramobd.10.25ca │ │ ├── veramobd.10.fb01 │ │ ├── veramobd.10.font │ │ ├── veramobd.12.0000 │ │ ├── veramobd.12.0020 │ │ ├── veramobd.12.00a0 │ │ ├── veramobd.12.0106 │ │ ├── veramobd.12.010c │ │ ├── veramobd.12.0111 │ │ ├── veramobd.12.011e │ │ ├── veramobd.12.0130 │ │ ├── veramobd.12.0141 │ │ ├── veramobd.12.0152 │ │ ├── veramobd.12.015e │ │ ├── veramobd.12.0178 │ │ ├── veramobd.12.017d │ │ ├── veramobd.12.0192 │ │ ├── veramobd.12.02c6 │ │ ├── veramobd.12.02d8 │ │ ├── veramobd.12.03a9 │ │ ├── veramobd.12.03c0 │ │ ├── veramobd.12.2013 │ │ ├── veramobd.12.2018 │ │ ├── veramobd.12.201c │ │ ├── veramobd.12.2020 │ │ ├── veramobd.12.2026 │ │ ├── veramobd.12.2030 │ │ ├── veramobd.12.2039 │ │ ├── veramobd.12.20ac │ │ ├── veramobd.12.2122 │ │ ├── veramobd.12.2202 │ │ ├── veramobd.12.2206 │ │ ├── veramobd.12.220f │ │ ├── veramobd.12.2211 │ │ ├── veramobd.12.2215 │ │ ├── veramobd.12.2219 │ │ ├── veramobd.12.221e │ │ ├── veramobd.12.222b │ │ ├── veramobd.12.2248 │ │ ├── veramobd.12.2260 │ │ ├── veramobd.12.2264 │ │ ├── veramobd.12.25ca │ │ ├── veramobd.12.fb01 │ │ ├── veramobd.12.font │ │ ├── veramobd.14.0000 │ │ ├── veramobd.14.0020 │ │ ├── veramobd.14.00a0 │ │ ├── veramobd.14.0106 │ │ ├── veramobd.14.010c │ │ ├── veramobd.14.0111 │ │ ├── veramobd.14.011e │ │ ├── veramobd.14.0130 │ │ ├── veramobd.14.0141 │ │ ├── veramobd.14.0152 │ │ ├── veramobd.14.015e │ │ ├── veramobd.14.0178 │ │ ├── veramobd.14.017d │ │ ├── veramobd.14.0192 │ │ ├── veramobd.14.02c6 │ │ ├── veramobd.14.02d8 │ │ ├── veramobd.14.03a9 │ │ ├── veramobd.14.03c0 │ │ ├── veramobd.14.2013 │ │ ├── veramobd.14.2018 │ │ ├── veramobd.14.201c │ │ ├── veramobd.14.2020 │ │ ├── veramobd.14.2026 │ │ ├── veramobd.14.2030 │ │ ├── veramobd.14.2039 │ │ ├── veramobd.14.20ac │ │ ├── veramobd.14.2122 │ │ ├── veramobd.14.2202 │ │ ├── veramobd.14.2206 │ │ ├── veramobd.14.220f │ │ ├── veramobd.14.2211 │ │ ├── veramobd.14.2215 │ │ ├── veramobd.14.2219 │ │ ├── veramobd.14.221e │ │ ├── veramobd.14.222b │ │ ├── veramobd.14.2248 │ │ ├── veramobd.14.2260 │ │ ├── veramobd.14.2264 │ │ ├── veramobd.14.25ca │ │ ├── veramobd.14.fb01 │ │ ├── veramobd.14.font │ │ ├── veramobd.16.0000 │ │ ├── veramobd.16.0020 │ │ ├── veramobd.16.00a0 │ │ ├── veramobd.16.0106 │ │ ├── veramobd.16.010c │ │ ├── veramobd.16.0111 │ │ ├── veramobd.16.011e │ │ ├── veramobd.16.0130 │ │ ├── veramobd.16.0141 │ │ ├── veramobd.16.0152 │ │ ├── veramobd.16.015e │ │ ├── veramobd.16.0178 │ │ ├── veramobd.16.017d │ │ ├── veramobd.16.0192 │ │ ├── veramobd.16.02c6 │ │ ├── veramobd.16.02d8 │ │ ├── veramobd.16.03a9 │ │ ├── veramobd.16.03c0 │ │ ├── veramobd.16.2013 │ │ ├── veramobd.16.2018 │ │ ├── veramobd.16.201c │ │ ├── veramobd.16.2020 │ │ ├── veramobd.16.2026 │ │ ├── veramobd.16.2030 │ │ ├── veramobd.16.2039 │ │ ├── veramobd.16.20ac │ │ ├── veramobd.16.2122 │ │ ├── veramobd.16.2202 │ │ ├── veramobd.16.2206 │ │ ├── veramobd.16.220f │ │ ├── veramobd.16.2211 │ │ ├── veramobd.16.2215 │ │ ├── veramobd.16.2219 │ │ ├── veramobd.16.221e │ │ ├── veramobd.16.222b │ │ ├── veramobd.16.2248 │ │ ├── veramobd.16.2260 │ │ ├── veramobd.16.2264 │ │ ├── veramobd.16.25ca │ │ ├── veramobd.16.fb01 │ │ ├── veramobd.16.font │ │ ├── veramobd.18.0000 │ │ ├── veramobd.18.0020 │ │ ├── veramobd.18.00a0 │ │ ├── veramobd.18.0106 │ │ ├── veramobd.18.010c │ │ ├── veramobd.18.0111 │ │ ├── veramobd.18.011e │ │ ├── veramobd.18.0130 │ │ ├── veramobd.18.0141 │ │ ├── veramobd.18.0152 │ │ ├── veramobd.18.015e │ │ ├── veramobd.18.0178 │ │ ├── veramobd.18.017d │ │ ├── veramobd.18.0192 │ │ ├── veramobd.18.02c6 │ │ ├── veramobd.18.02d8 │ │ ├── veramobd.18.03a9 │ │ ├── veramobd.18.03c0 │ │ ├── veramobd.18.2013 │ │ ├── veramobd.18.2018 │ │ ├── veramobd.18.201c │ │ ├── veramobd.18.2020 │ │ ├── veramobd.18.2026 │ │ ├── veramobd.18.2030 │ │ ├── veramobd.18.2039 │ │ ├── veramobd.18.20ac │ │ ├── veramobd.18.2122 │ │ ├── veramobd.18.2202 │ │ ├── veramobd.18.2206 │ │ ├── veramobd.18.220f │ │ ├── veramobd.18.2211 │ │ ├── veramobd.18.2215 │ │ ├── veramobd.18.2219 │ │ ├── veramobd.18.221e │ │ ├── veramobd.18.222b │ │ ├── veramobd.18.2248 │ │ ├── veramobd.18.2260 │ │ ├── veramobd.18.2264 │ │ ├── veramobd.18.25ca │ │ ├── veramobd.18.fb01 │ │ ├── veramobd.18.font │ │ ├── veramobd.20.0000 │ │ ├── veramobd.20.0020 │ │ ├── veramobd.20.00a0 │ │ ├── veramobd.20.0106 │ │ ├── veramobd.20.010c │ │ ├── veramobd.20.0111 │ │ ├── veramobd.20.011e │ │ ├── veramobd.20.0130 │ │ ├── veramobd.20.0141 │ │ ├── veramobd.20.0152 │ │ ├── veramobd.20.015e │ │ ├── veramobd.20.0178 │ │ ├── veramobd.20.017d │ │ ├── veramobd.20.0192 │ │ ├── veramobd.20.02c6 │ │ ├── veramobd.20.02d8 │ │ ├── veramobd.20.03a9 │ │ ├── veramobd.20.03c0 │ │ ├── veramobd.20.2013 │ │ ├── veramobd.20.2018 │ │ ├── veramobd.20.201c │ │ ├── veramobd.20.2020 │ │ ├── veramobd.20.2026 │ │ ├── veramobd.20.2030 │ │ ├── veramobd.20.2039 │ │ ├── veramobd.20.20ac │ │ ├── veramobd.20.2122 │ │ ├── veramobd.20.2202 │ │ ├── veramobd.20.2206 │ │ ├── veramobd.20.220f │ │ ├── veramobd.20.2211 │ │ ├── veramobd.20.2215 │ │ ├── veramobd.20.2219 │ │ ├── veramobd.20.221e │ │ ├── veramobd.20.222b │ │ ├── veramobd.20.2248 │ │ ├── veramobd.20.2260 │ │ ├── veramobd.20.2264 │ │ ├── veramobd.20.25ca │ │ ├── veramobd.20.fb01 │ │ └── veramobd.20.font │ │ ├── veramobi │ │ ├── veramobi.10.0000 │ │ ├── veramobi.10.0020 │ │ ├── veramobi.10.00a0 │ │ ├── veramobi.10.0106 │ │ ├── veramobi.10.010c │ │ ├── veramobi.10.0111 │ │ ├── veramobi.10.011e │ │ ├── veramobi.10.0130 │ │ ├── veramobi.10.0141 │ │ ├── veramobi.10.0152 │ │ ├── veramobi.10.015e │ │ ├── veramobi.10.0178 │ │ ├── veramobi.10.017d │ │ ├── veramobi.10.0192 │ │ ├── veramobi.10.02c6 │ │ ├── veramobi.10.02d8 │ │ ├── veramobi.10.03a9 │ │ ├── veramobi.10.03c0 │ │ ├── veramobi.10.2013 │ │ ├── veramobi.10.2018 │ │ ├── veramobi.10.201c │ │ ├── veramobi.10.2020 │ │ ├── veramobi.10.2026 │ │ ├── veramobi.10.2030 │ │ ├── veramobi.10.2039 │ │ ├── veramobi.10.20ac │ │ ├── veramobi.10.2122 │ │ ├── veramobi.10.2202 │ │ ├── veramobi.10.2206 │ │ ├── veramobi.10.220f │ │ ├── veramobi.10.2211 │ │ ├── veramobi.10.2215 │ │ ├── veramobi.10.2219 │ │ ├── veramobi.10.221e │ │ ├── veramobi.10.222b │ │ ├── veramobi.10.2248 │ │ ├── veramobi.10.2260 │ │ ├── veramobi.10.2264 │ │ ├── veramobi.10.25ca │ │ ├── veramobi.10.fb01 │ │ ├── veramobi.10.font │ │ ├── veramobi.12.0000 │ │ ├── veramobi.12.0020 │ │ ├── veramobi.12.00a0 │ │ ├── veramobi.12.0106 │ │ ├── veramobi.12.010c │ │ ├── veramobi.12.0111 │ │ ├── veramobi.12.011e │ │ ├── veramobi.12.0130 │ │ ├── veramobi.12.0141 │ │ ├── veramobi.12.0152 │ │ ├── veramobi.12.015e │ │ ├── veramobi.12.0178 │ │ ├── veramobi.12.017d │ │ ├── veramobi.12.0192 │ │ ├── veramobi.12.02c6 │ │ ├── veramobi.12.02d8 │ │ ├── veramobi.12.03a9 │ │ ├── veramobi.12.03c0 │ │ ├── veramobi.12.2013 │ │ ├── veramobi.12.2018 │ │ ├── veramobi.12.201c │ │ ├── veramobi.12.2020 │ │ ├── veramobi.12.2026 │ │ ├── veramobi.12.2030 │ │ ├── veramobi.12.2039 │ │ ├── veramobi.12.20ac │ │ ├── veramobi.12.2122 │ │ ├── veramobi.12.2202 │ │ ├── veramobi.12.2206 │ │ ├── veramobi.12.220f │ │ ├── veramobi.12.2211 │ │ ├── veramobi.12.2215 │ │ ├── veramobi.12.2219 │ │ ├── veramobi.12.221e │ │ ├── veramobi.12.222b │ │ ├── veramobi.12.2248 │ │ ├── veramobi.12.2260 │ │ ├── veramobi.12.2264 │ │ ├── veramobi.12.25ca │ │ ├── veramobi.12.fb01 │ │ ├── veramobi.12.font │ │ ├── veramobi.14.0000 │ │ ├── veramobi.14.0020 │ │ ├── veramobi.14.00a0 │ │ ├── veramobi.14.0106 │ │ ├── veramobi.14.010c │ │ ├── veramobi.14.0111 │ │ ├── veramobi.14.011e │ │ ├── veramobi.14.0130 │ │ ├── veramobi.14.0141 │ │ ├── veramobi.14.0152 │ │ ├── veramobi.14.015e │ │ ├── veramobi.14.0178 │ │ ├── veramobi.14.017d │ │ ├── veramobi.14.0192 │ │ ├── veramobi.14.02c6 │ │ ├── veramobi.14.02d8 │ │ ├── veramobi.14.03a9 │ │ ├── veramobi.14.03c0 │ │ ├── veramobi.14.2013 │ │ ├── veramobi.14.2018 │ │ ├── veramobi.14.201c │ │ ├── veramobi.14.2020 │ │ ├── veramobi.14.2026 │ │ ├── veramobi.14.2030 │ │ ├── veramobi.14.2039 │ │ ├── veramobi.14.20ac │ │ ├── veramobi.14.2122 │ │ ├── veramobi.14.2202 │ │ ├── veramobi.14.2206 │ │ ├── veramobi.14.220f │ │ ├── veramobi.14.2211 │ │ ├── veramobi.14.2215 │ │ ├── veramobi.14.2219 │ │ ├── veramobi.14.221e │ │ ├── veramobi.14.222b │ │ ├── veramobi.14.2248 │ │ ├── veramobi.14.2260 │ │ ├── veramobi.14.2264 │ │ ├── veramobi.14.25ca │ │ ├── veramobi.14.fb01 │ │ ├── veramobi.14.font │ │ ├── veramobi.16.0000 │ │ ├── veramobi.16.0020 │ │ ├── veramobi.16.00a0 │ │ ├── veramobi.16.0106 │ │ ├── veramobi.16.010c │ │ ├── veramobi.16.0111 │ │ ├── veramobi.16.011e │ │ ├── veramobi.16.0130 │ │ ├── veramobi.16.0141 │ │ ├── veramobi.16.0152 │ │ ├── veramobi.16.015e │ │ ├── veramobi.16.0178 │ │ ├── veramobi.16.017d │ │ ├── veramobi.16.0192 │ │ ├── veramobi.16.02c6 │ │ ├── veramobi.16.02d8 │ │ ├── veramobi.16.03a9 │ │ ├── veramobi.16.03c0 │ │ ├── veramobi.16.2013 │ │ ├── veramobi.16.2018 │ │ ├── veramobi.16.201c │ │ ├── veramobi.16.2020 │ │ ├── veramobi.16.2026 │ │ ├── veramobi.16.2030 │ │ ├── veramobi.16.2039 │ │ ├── veramobi.16.20ac │ │ ├── veramobi.16.2122 │ │ ├── veramobi.16.2202 │ │ ├── veramobi.16.2206 │ │ ├── veramobi.16.220f │ │ ├── veramobi.16.2211 │ │ ├── veramobi.16.2215 │ │ ├── veramobi.16.2219 │ │ ├── veramobi.16.221e │ │ ├── veramobi.16.222b │ │ ├── veramobi.16.2248 │ │ ├── veramobi.16.2260 │ │ ├── veramobi.16.2264 │ │ ├── veramobi.16.25ca │ │ ├── veramobi.16.fb01 │ │ ├── veramobi.16.font │ │ ├── veramobi.18.0000 │ │ ├── veramobi.18.0020 │ │ ├── veramobi.18.00a0 │ │ ├── veramobi.18.0106 │ │ ├── veramobi.18.010c │ │ ├── veramobi.18.0111 │ │ ├── veramobi.18.011e │ │ ├── veramobi.18.0130 │ │ ├── veramobi.18.0141 │ │ ├── veramobi.18.0152 │ │ ├── veramobi.18.015e │ │ ├── veramobi.18.0178 │ │ ├── veramobi.18.017d │ │ ├── veramobi.18.0192 │ │ ├── veramobi.18.02c6 │ │ ├── veramobi.18.02d8 │ │ ├── veramobi.18.03a9 │ │ ├── veramobi.18.03c0 │ │ ├── veramobi.18.2013 │ │ ├── veramobi.18.2018 │ │ ├── veramobi.18.201c │ │ ├── veramobi.18.2020 │ │ ├── veramobi.18.2026 │ │ ├── veramobi.18.2030 │ │ ├── veramobi.18.2039 │ │ ├── veramobi.18.20ac │ │ ├── veramobi.18.2122 │ │ ├── veramobi.18.2202 │ │ ├── veramobi.18.2206 │ │ ├── veramobi.18.220f │ │ ├── veramobi.18.2211 │ │ ├── veramobi.18.2215 │ │ ├── veramobi.18.2219 │ │ ├── veramobi.18.221e │ │ ├── veramobi.18.222b │ │ ├── veramobi.18.2248 │ │ ├── veramobi.18.2260 │ │ ├── veramobi.18.2264 │ │ ├── veramobi.18.25ca │ │ ├── veramobi.18.fb01 │ │ ├── veramobi.18.font │ │ ├── veramobi.20.0000 │ │ ├── veramobi.20.0020 │ │ ├── veramobi.20.00a0 │ │ ├── veramobi.20.0106 │ │ ├── veramobi.20.010c │ │ ├── veramobi.20.0111 │ │ ├── veramobi.20.011e │ │ ├── veramobi.20.0130 │ │ ├── veramobi.20.0141 │ │ ├── veramobi.20.0152 │ │ ├── veramobi.20.015e │ │ ├── veramobi.20.0178 │ │ ├── veramobi.20.017d │ │ ├── veramobi.20.0192 │ │ ├── veramobi.20.02c6 │ │ ├── veramobi.20.02d8 │ │ ├── veramobi.20.03a9 │ │ ├── veramobi.20.03c0 │ │ ├── veramobi.20.2013 │ │ ├── veramobi.20.2018 │ │ ├── veramobi.20.201c │ │ ├── veramobi.20.2020 │ │ ├── veramobi.20.2026 │ │ ├── veramobi.20.2030 │ │ ├── veramobi.20.2039 │ │ ├── veramobi.20.20ac │ │ ├── veramobi.20.2122 │ │ ├── veramobi.20.2202 │ │ ├── veramobi.20.2206 │ │ ├── veramobi.20.220f │ │ ├── veramobi.20.2211 │ │ ├── veramobi.20.2215 │ │ ├── veramobi.20.2219 │ │ ├── veramobi.20.221e │ │ ├── veramobi.20.222b │ │ ├── veramobi.20.2248 │ │ ├── veramobi.20.2260 │ │ ├── veramobi.20.2264 │ │ ├── veramobi.20.25ca │ │ ├── veramobi.20.fb01 │ │ └── veramobi.20.font │ │ ├── veramoit │ │ ├── veramoit.10.0000 │ │ ├── veramoit.10.0020 │ │ ├── veramoit.10.00a0 │ │ ├── veramoit.10.0106 │ │ ├── veramoit.10.010c │ │ ├── veramoit.10.0111 │ │ ├── veramoit.10.011e │ │ ├── veramoit.10.0130 │ │ ├── veramoit.10.0141 │ │ ├── veramoit.10.0152 │ │ ├── veramoit.10.015e │ │ ├── veramoit.10.0178 │ │ ├── veramoit.10.017d │ │ ├── veramoit.10.0192 │ │ ├── veramoit.10.02c6 │ │ ├── veramoit.10.02d8 │ │ ├── veramoit.10.03a9 │ │ ├── veramoit.10.03c0 │ │ ├── veramoit.10.2013 │ │ ├── veramoit.10.2018 │ │ ├── veramoit.10.201c │ │ ├── veramoit.10.2020 │ │ ├── veramoit.10.2026 │ │ ├── veramoit.10.2030 │ │ ├── veramoit.10.2039 │ │ ├── veramoit.10.20ac │ │ ├── veramoit.10.2122 │ │ ├── veramoit.10.2202 │ │ ├── veramoit.10.2206 │ │ ├── veramoit.10.220f │ │ ├── veramoit.10.2211 │ │ ├── veramoit.10.2215 │ │ ├── veramoit.10.2219 │ │ ├── veramoit.10.221e │ │ ├── veramoit.10.222b │ │ ├── veramoit.10.2248 │ │ ├── veramoit.10.2260 │ │ ├── veramoit.10.2264 │ │ ├── veramoit.10.25ca │ │ ├── veramoit.10.fb01 │ │ ├── veramoit.10.font │ │ ├── veramoit.12.0000 │ │ ├── veramoit.12.0020 │ │ ├── veramoit.12.00a0 │ │ ├── veramoit.12.0106 │ │ ├── veramoit.12.010c │ │ ├── veramoit.12.0111 │ │ ├── veramoit.12.011e │ │ ├── veramoit.12.0130 │ │ ├── veramoit.12.0141 │ │ ├── veramoit.12.0152 │ │ ├── veramoit.12.015e │ │ ├── veramoit.12.0178 │ │ ├── veramoit.12.017d │ │ ├── veramoit.12.0192 │ │ ├── veramoit.12.02c6 │ │ ├── veramoit.12.02d8 │ │ ├── veramoit.12.03a9 │ │ ├── veramoit.12.03c0 │ │ ├── veramoit.12.2013 │ │ ├── veramoit.12.2018 │ │ ├── veramoit.12.201c │ │ ├── veramoit.12.2020 │ │ ├── veramoit.12.2026 │ │ ├── veramoit.12.2030 │ │ ├── veramoit.12.2039 │ │ ├── veramoit.12.20ac │ │ ├── veramoit.12.2122 │ │ ├── veramoit.12.2202 │ │ ├── veramoit.12.2206 │ │ ├── veramoit.12.220f │ │ ├── veramoit.12.2211 │ │ ├── veramoit.12.2215 │ │ ├── veramoit.12.2219 │ │ ├── veramoit.12.221e │ │ ├── veramoit.12.222b │ │ ├── veramoit.12.2248 │ │ ├── veramoit.12.2260 │ │ ├── veramoit.12.2264 │ │ ├── veramoit.12.25ca │ │ ├── veramoit.12.fb01 │ │ ├── veramoit.12.font │ │ ├── veramoit.14.0000 │ │ ├── veramoit.14.0020 │ │ ├── veramoit.14.00a0 │ │ ├── veramoit.14.0106 │ │ ├── veramoit.14.010c │ │ ├── veramoit.14.0111 │ │ ├── veramoit.14.011e │ │ ├── veramoit.14.0130 │ │ ├── veramoit.14.0141 │ │ ├── veramoit.14.0152 │ │ ├── veramoit.14.015e │ │ ├── veramoit.14.0178 │ │ ├── veramoit.14.017d │ │ ├── veramoit.14.0192 │ │ ├── veramoit.14.02c6 │ │ ├── veramoit.14.02d8 │ │ ├── veramoit.14.03a9 │ │ ├── veramoit.14.03c0 │ │ ├── veramoit.14.2013 │ │ ├── veramoit.14.2018 │ │ ├── veramoit.14.201c │ │ ├── veramoit.14.2020 │ │ ├── veramoit.14.2026 │ │ ├── veramoit.14.2030 │ │ ├── veramoit.14.2039 │ │ ├── veramoit.14.20ac │ │ ├── veramoit.14.2122 │ │ ├── veramoit.14.2202 │ │ ├── veramoit.14.2206 │ │ ├── veramoit.14.220f │ │ ├── veramoit.14.2211 │ │ ├── veramoit.14.2215 │ │ ├── veramoit.14.2219 │ │ ├── veramoit.14.221e │ │ ├── veramoit.14.222b │ │ ├── veramoit.14.2248 │ │ ├── veramoit.14.2260 │ │ ├── veramoit.14.2264 │ │ ├── veramoit.14.25ca │ │ ├── veramoit.14.fb01 │ │ ├── veramoit.14.font │ │ ├── veramoit.16.0000 │ │ ├── veramoit.16.0020 │ │ ├── veramoit.16.00a0 │ │ ├── veramoit.16.0106 │ │ ├── veramoit.16.010c │ │ ├── veramoit.16.0111 │ │ ├── veramoit.16.011e │ │ ├── veramoit.16.0130 │ │ ├── veramoit.16.0141 │ │ ├── veramoit.16.0152 │ │ ├── veramoit.16.015e │ │ ├── veramoit.16.0178 │ │ ├── veramoit.16.017d │ │ ├── veramoit.16.0192 │ │ ├── veramoit.16.02c6 │ │ ├── veramoit.16.02d8 │ │ ├── veramoit.16.03a9 │ │ ├── veramoit.16.03c0 │ │ ├── veramoit.16.2013 │ │ ├── veramoit.16.2018 │ │ ├── veramoit.16.201c │ │ ├── veramoit.16.2020 │ │ ├── veramoit.16.2026 │ │ ├── veramoit.16.2030 │ │ ├── veramoit.16.2039 │ │ ├── veramoit.16.20ac │ │ ├── veramoit.16.2122 │ │ ├── veramoit.16.2202 │ │ ├── veramoit.16.2206 │ │ ├── veramoit.16.220f │ │ ├── veramoit.16.2211 │ │ ├── veramoit.16.2215 │ │ ├── veramoit.16.2219 │ │ ├── veramoit.16.221e │ │ ├── veramoit.16.222b │ │ ├── veramoit.16.2248 │ │ ├── veramoit.16.2260 │ │ ├── veramoit.16.2264 │ │ ├── veramoit.16.25ca │ │ ├── veramoit.16.fb01 │ │ ├── veramoit.16.font │ │ ├── veramoit.18.0000 │ │ ├── veramoit.18.0020 │ │ ├── veramoit.18.00a0 │ │ ├── veramoit.18.0106 │ │ ├── veramoit.18.010c │ │ ├── veramoit.18.0111 │ │ ├── veramoit.18.011e │ │ ├── veramoit.18.0130 │ │ ├── veramoit.18.0141 │ │ ├── veramoit.18.0152 │ │ ├── veramoit.18.015e │ │ ├── veramoit.18.0178 │ │ ├── veramoit.18.017d │ │ ├── veramoit.18.0192 │ │ ├── veramoit.18.02c6 │ │ ├── veramoit.18.02d8 │ │ ├── veramoit.18.03a9 │ │ ├── veramoit.18.03c0 │ │ ├── veramoit.18.2013 │ │ ├── veramoit.18.2018 │ │ ├── veramoit.18.201c │ │ ├── veramoit.18.2020 │ │ ├── veramoit.18.2026 │ │ ├── veramoit.18.2030 │ │ ├── veramoit.18.2039 │ │ ├── veramoit.18.20ac │ │ ├── veramoit.18.2122 │ │ ├── veramoit.18.2202 │ │ ├── veramoit.18.2206 │ │ ├── veramoit.18.220f │ │ ├── veramoit.18.2211 │ │ ├── veramoit.18.2215 │ │ ├── veramoit.18.2219 │ │ ├── veramoit.18.221e │ │ ├── veramoit.18.222b │ │ ├── veramoit.18.2248 │ │ ├── veramoit.18.2260 │ │ ├── veramoit.18.2264 │ │ ├── veramoit.18.25ca │ │ ├── veramoit.18.fb01 │ │ ├── veramoit.18.font │ │ ├── veramoit.20.0000 │ │ ├── veramoit.20.0020 │ │ ├── veramoit.20.00a0 │ │ ├── veramoit.20.0106 │ │ ├── veramoit.20.010c │ │ ├── veramoit.20.0111 │ │ ├── veramoit.20.011e │ │ ├── veramoit.20.0130 │ │ ├── veramoit.20.0141 │ │ ├── veramoit.20.0152 │ │ ├── veramoit.20.015e │ │ ├── veramoit.20.0178 │ │ ├── veramoit.20.017d │ │ ├── veramoit.20.0192 │ │ ├── veramoit.20.02c6 │ │ ├── veramoit.20.02d8 │ │ ├── veramoit.20.03a9 │ │ ├── veramoit.20.03c0 │ │ ├── veramoit.20.2013 │ │ ├── veramoit.20.2018 │ │ ├── veramoit.20.201c │ │ ├── veramoit.20.2020 │ │ ├── veramoit.20.2026 │ │ ├── veramoit.20.2030 │ │ ├── veramoit.20.2039 │ │ ├── veramoit.20.20ac │ │ ├── veramoit.20.2122 │ │ ├── veramoit.20.2202 │ │ ├── veramoit.20.2206 │ │ ├── veramoit.20.220f │ │ ├── veramoit.20.2211 │ │ ├── veramoit.20.2215 │ │ ├── veramoit.20.2219 │ │ ├── veramoit.20.221e │ │ ├── veramoit.20.222b │ │ ├── veramoit.20.2248 │ │ ├── veramoit.20.2260 │ │ ├── veramoit.20.2264 │ │ ├── veramoit.20.25ca │ │ ├── veramoit.20.fb01 │ │ └── veramoit.20.font │ │ ├── veramono │ │ ├── veramono.10.0000 │ │ ├── veramono.10.0020 │ │ ├── veramono.10.00a0 │ │ ├── veramono.10.0106 │ │ ├── veramono.10.010c │ │ ├── veramono.10.0111 │ │ ├── veramono.10.011e │ │ ├── veramono.10.0130 │ │ ├── veramono.10.0141 │ │ ├── veramono.10.0152 │ │ ├── veramono.10.015e │ │ ├── veramono.10.0178 │ │ ├── veramono.10.017d │ │ ├── veramono.10.0192 │ │ ├── veramono.10.02c6 │ │ ├── veramono.10.02d8 │ │ ├── veramono.10.03a9 │ │ ├── veramono.10.03c0 │ │ ├── veramono.10.2013 │ │ ├── veramono.10.2018 │ │ ├── veramono.10.201c │ │ ├── veramono.10.2020 │ │ ├── veramono.10.2026 │ │ ├── veramono.10.2030 │ │ ├── veramono.10.2039 │ │ ├── veramono.10.20ac │ │ ├── veramono.10.2122 │ │ ├── veramono.10.2202 │ │ ├── veramono.10.2206 │ │ ├── veramono.10.220f │ │ ├── veramono.10.2211 │ │ ├── veramono.10.2215 │ │ ├── veramono.10.2219 │ │ ├── veramono.10.221e │ │ ├── veramono.10.222b │ │ ├── veramono.10.2248 │ │ ├── veramono.10.2260 │ │ ├── veramono.10.2264 │ │ ├── veramono.10.25ca │ │ ├── veramono.10.fb01 │ │ ├── veramono.10.font │ │ ├── veramono.12.0000 │ │ ├── veramono.12.0020 │ │ ├── veramono.12.00a0 │ │ ├── veramono.12.0106 │ │ ├── veramono.12.010c │ │ ├── veramono.12.0111 │ │ ├── veramono.12.011e │ │ ├── veramono.12.0130 │ │ ├── veramono.12.0141 │ │ ├── veramono.12.0152 │ │ ├── veramono.12.015e │ │ ├── veramono.12.0178 │ │ ├── veramono.12.017d │ │ ├── veramono.12.0192 │ │ ├── veramono.12.02c6 │ │ ├── veramono.12.02d8 │ │ ├── veramono.12.03a9 │ │ ├── veramono.12.03c0 │ │ ├── veramono.12.2013 │ │ ├── veramono.12.2018 │ │ ├── veramono.12.201c │ │ ├── veramono.12.2020 │ │ ├── veramono.12.2026 │ │ ├── veramono.12.2030 │ │ ├── veramono.12.2039 │ │ ├── veramono.12.20ac │ │ ├── veramono.12.2122 │ │ ├── veramono.12.2202 │ │ ├── veramono.12.2206 │ │ ├── veramono.12.220f │ │ ├── veramono.12.2211 │ │ ├── veramono.12.2215 │ │ ├── veramono.12.2219 │ │ ├── veramono.12.221e │ │ ├── veramono.12.222b │ │ ├── veramono.12.2248 │ │ ├── veramono.12.2260 │ │ ├── veramono.12.2264 │ │ ├── veramono.12.25ca │ │ ├── veramono.12.fb01 │ │ ├── veramono.12.font │ │ ├── veramono.14.0000 │ │ ├── veramono.14.0020 │ │ ├── veramono.14.00a0 │ │ ├── veramono.14.0106 │ │ ├── veramono.14.010c │ │ ├── veramono.14.0111 │ │ ├── veramono.14.011e │ │ ├── veramono.14.0130 │ │ ├── veramono.14.0141 │ │ ├── veramono.14.0152 │ │ ├── veramono.14.015e │ │ ├── veramono.14.0178 │ │ ├── veramono.14.017d │ │ ├── veramono.14.0192 │ │ ├── veramono.14.02c6 │ │ ├── veramono.14.02d8 │ │ ├── veramono.14.03a9 │ │ ├── veramono.14.03c0 │ │ ├── veramono.14.2013 │ │ ├── veramono.14.2018 │ │ ├── veramono.14.201c │ │ ├── veramono.14.2020 │ │ ├── veramono.14.2026 │ │ ├── veramono.14.2030 │ │ ├── veramono.14.2039 │ │ ├── veramono.14.20ac │ │ ├── veramono.14.2122 │ │ ├── veramono.14.2202 │ │ ├── veramono.14.2206 │ │ ├── veramono.14.220f │ │ ├── veramono.14.2211 │ │ ├── veramono.14.2215 │ │ ├── veramono.14.2219 │ │ ├── veramono.14.221e │ │ ├── veramono.14.222b │ │ ├── veramono.14.2248 │ │ ├── veramono.14.2260 │ │ ├── veramono.14.2264 │ │ ├── veramono.14.25ca │ │ ├── veramono.14.fb01 │ │ ├── veramono.14.font │ │ ├── veramono.16.0000 │ │ ├── veramono.16.0020 │ │ ├── veramono.16.00a0 │ │ ├── veramono.16.0106 │ │ ├── veramono.16.010c │ │ ├── veramono.16.0111 │ │ ├── veramono.16.011e │ │ ├── veramono.16.0130 │ │ ├── veramono.16.0141 │ │ ├── veramono.16.0152 │ │ ├── veramono.16.015e │ │ ├── veramono.16.0178 │ │ ├── veramono.16.017d │ │ ├── veramono.16.0192 │ │ ├── veramono.16.02c6 │ │ ├── veramono.16.02d8 │ │ ├── veramono.16.03a9 │ │ ├── veramono.16.03c0 │ │ ├── veramono.16.2013 │ │ ├── veramono.16.2018 │ │ ├── veramono.16.201c │ │ ├── veramono.16.2020 │ │ ├── veramono.16.2026 │ │ ├── veramono.16.2030 │ │ ├── veramono.16.2039 │ │ ├── veramono.16.20ac │ │ ├── veramono.16.2122 │ │ ├── veramono.16.2202 │ │ ├── veramono.16.2206 │ │ ├── veramono.16.220f │ │ ├── veramono.16.2211 │ │ ├── veramono.16.2215 │ │ ├── veramono.16.2219 │ │ ├── veramono.16.221e │ │ ├── veramono.16.222b │ │ ├── veramono.16.2248 │ │ ├── veramono.16.2260 │ │ ├── veramono.16.2264 │ │ ├── veramono.16.25ca │ │ ├── veramono.16.fb01 │ │ ├── veramono.16.font │ │ ├── veramono.18.0000 │ │ ├── veramono.18.0020 │ │ ├── veramono.18.00a0 │ │ ├── veramono.18.0106 │ │ ├── veramono.18.010c │ │ ├── veramono.18.0111 │ │ ├── veramono.18.011e │ │ ├── veramono.18.0130 │ │ ├── veramono.18.0141 │ │ ├── veramono.18.0152 │ │ ├── veramono.18.015e │ │ ├── veramono.18.0178 │ │ ├── veramono.18.017d │ │ ├── veramono.18.0192 │ │ ├── veramono.18.02c6 │ │ ├── veramono.18.02d8 │ │ ├── veramono.18.03a9 │ │ ├── veramono.18.03c0 │ │ ├── veramono.18.2013 │ │ ├── veramono.18.2018 │ │ ├── veramono.18.201c │ │ ├── veramono.18.2020 │ │ ├── veramono.18.2026 │ │ ├── veramono.18.2030 │ │ ├── veramono.18.2039 │ │ ├── veramono.18.20ac │ │ ├── veramono.18.2122 │ │ ├── veramono.18.2202 │ │ ├── veramono.18.2206 │ │ ├── veramono.18.220f │ │ ├── veramono.18.2211 │ │ ├── veramono.18.2215 │ │ ├── veramono.18.2219 │ │ ├── veramono.18.221e │ │ ├── veramono.18.222b │ │ ├── veramono.18.2248 │ │ ├── veramono.18.2260 │ │ ├── veramono.18.2264 │ │ ├── veramono.18.25ca │ │ ├── veramono.18.fb01 │ │ ├── veramono.18.font │ │ ├── veramono.20.0000 │ │ ├── veramono.20.0020 │ │ ├── veramono.20.00a0 │ │ ├── veramono.20.0106 │ │ ├── veramono.20.010c │ │ ├── veramono.20.0111 │ │ ├── veramono.20.011e │ │ ├── veramono.20.0130 │ │ ├── veramono.20.0141 │ │ ├── veramono.20.0152 │ │ ├── veramono.20.015e │ │ ├── veramono.20.0178 │ │ ├── veramono.20.017d │ │ ├── veramono.20.0192 │ │ ├── veramono.20.02c6 │ │ ├── veramono.20.02d8 │ │ ├── veramono.20.03a9 │ │ ├── veramono.20.03c0 │ │ ├── veramono.20.2013 │ │ ├── veramono.20.2018 │ │ ├── veramono.20.201c │ │ ├── veramono.20.2020 │ │ ├── veramono.20.2026 │ │ ├── veramono.20.2030 │ │ ├── veramono.20.2039 │ │ ├── veramono.20.20ac │ │ ├── veramono.20.2122 │ │ ├── veramono.20.2202 │ │ ├── veramono.20.2206 │ │ ├── veramono.20.220f │ │ ├── veramono.20.2211 │ │ ├── veramono.20.2215 │ │ ├── veramono.20.2219 │ │ ├── veramono.20.221e │ │ ├── veramono.20.222b │ │ ├── veramono.20.2248 │ │ ├── veramono.20.2260 │ │ ├── veramono.20.2264 │ │ ├── veramono.20.25ca │ │ ├── veramono.20.fb01 │ │ └── veramono.20.font │ │ └── verase │ │ ├── verase.10.0000 │ │ ├── verase.10.0020 │ │ ├── verase.10.00a0 │ │ ├── verase.10.0106 │ │ ├── verase.10.010c │ │ ├── verase.10.0111 │ │ ├── verase.10.011e │ │ ├── verase.10.0130 │ │ ├── verase.10.0141 │ │ ├── verase.10.0152 │ │ ├── verase.10.015e │ │ ├── verase.10.0178 │ │ ├── verase.10.017d │ │ ├── verase.10.0192 │ │ ├── verase.10.02c6 │ │ ├── verase.10.02d8 │ │ ├── verase.10.03a9 │ │ ├── verase.10.03c0 │ │ ├── verase.10.2013 │ │ ├── verase.10.2018 │ │ ├── verase.10.201c │ │ ├── verase.10.2020 │ │ ├── verase.10.2026 │ │ ├── verase.10.2030 │ │ ├── verase.10.2039 │ │ ├── verase.10.20ac │ │ ├── verase.10.2122 │ │ ├── verase.10.2202 │ │ ├── verase.10.2206 │ │ ├── verase.10.220f │ │ ├── verase.10.2211 │ │ ├── verase.10.2215 │ │ ├── verase.10.2219 │ │ ├── verase.10.221e │ │ ├── verase.10.222b │ │ ├── verase.10.2248 │ │ ├── verase.10.2260 │ │ ├── verase.10.2264 │ │ ├── verase.10.25ca │ │ ├── verase.10.fb01 │ │ ├── verase.10.font │ │ ├── verase.12.0192 │ │ ├── verase.12.02c6 │ │ ├── verase.12.02d8 │ │ ├── verase.12.03a9 │ │ ├── verase.12.03c0 │ │ ├── verase.12.2013 │ │ └── verase.12.2018 ├── icon │ ├── audioctl.bit │ ├── bigdelight.bit │ ├── bigtv.bit │ ├── bigtvchrom.bit │ ├── cards │ │ ├── c.all.bit │ │ ├── c0.bit │ │ ├── c1.bit │ │ ├── c10.bit │ │ ├── c11.bit │ │ ├── c12.bit │ │ ├── c13.bit │ │ ├── c14.bit │ │ ├── c15.bit │ │ ├── c16.bit │ │ ├── c17.bit │ │ ├── c18.bit │ │ ├── c19.bit │ │ ├── c2.bit │ │ ├── c20.bit │ │ ├── c21.bit │ │ ├── c22.bit │ │ ├── c23.bit │ │ ├── c24.bit │ │ ├── c25.bit │ │ ├── c26.bit │ │ ├── c27.bit │ │ ├── c28.bit │ │ ├── c29.bit │ │ ├── c3.bit │ │ ├── c30.bit │ │ ├── c31.bit │ │ ├── c32.bit │ │ ├── c33.bit │ │ ├── c34.bit │ │ ├── c35.bit │ │ ├── c36.bit │ │ ├── c37.bit │ │ ├── c38.bit │ │ ├── c39.bit │ │ ├── c4.bit │ │ ├── c40.bit │ │ ├── c41.bit │ │ ├── c42.bit │ │ ├── c43.bit │ │ ├── c44.bit │ │ ├── c45.bit │ │ ├── c46.bit │ │ ├── c47.bit │ │ ├── c48.bit │ │ ├── c49.bit │ │ ├── c5.bit │ │ ├── c50.bit │ │ ├── c51.bit │ │ ├── c6.bit │ │ ├── c7.bit │ │ ├── c8.bit │ │ ├── c9.bit │ │ ├── config │ │ ├── rear.all.bit │ │ ├── rear0.bit │ │ ├── rear1.bit │ │ ├── rear2.bit │ │ └── rear3.bit │ ├── charon │ │ ├── bookmark.bit │ │ ├── charon.bit │ │ ├── charon1.bit │ │ ├── charon2.bit │ │ ├── circarrow.bit │ │ ├── conf.bit │ │ ├── copy.bit │ │ ├── down.bit │ │ ├── edit.bit │ │ ├── exit.bit │ │ ├── help.bit │ │ ├── history.bit │ │ ├── home.bit │ │ ├── keyboard.bit │ │ ├── minus.bit │ │ ├── plus.bit │ │ ├── redleft.bit │ │ ├── redright.bit │ │ ├── ssl.bit │ │ ├── ssloff.bit │ │ ├── sslon.bit │ │ ├── stop.bit │ │ └── up.bit │ ├── coffee0.bit │ ├── coffee0.mask │ ├── coffee1.bit │ ├── coffee1.mask │ ├── coffee2.bit │ ├── coffee2.mask │ ├── coffee3.bit │ ├── coffee3.mask │ ├── coffee4.bit │ ├── coffee4.mask │ ├── coffee5.bit │ ├── coffee5.mask │ ├── coin.bit │ ├── cornelia.bit │ ├── csn.bit │ ├── csnsmall.bit │ ├── delight.bit │ ├── email.bit │ ├── envelope.bit │ ├── film.bit │ ├── gaijin.bit │ ├── gaijinsmall.bit │ ├── gritbath.bit │ ├── ibc.bit │ ├── inferno.bit │ ├── lnw.bit │ ├── manufacture.bit │ ├── minicharon │ │ ├── back.bit │ │ ├── fwd.bit │ │ └── stop.bit │ ├── monitor │ │ ├── bars.bit │ │ ├── browse.bit │ │ ├── browsemask.bit │ │ ├── del.bit │ │ ├── delmask.bit │ │ ├── delnode.bit │ │ ├── delnodemask.bit │ │ ├── exclude.bit │ │ ├── excludemask.bit │ │ ├── go.bit │ │ ├── gomask.bit │ │ ├── graph.bit │ │ ├── include.bit │ │ ├── includemask.bit │ │ ├── newjob.bit │ │ ├── newjobmask.bit │ │ ├── nos.bit │ │ ├── pc.bit │ │ ├── pcbl.bit │ │ ├── pcbl2.bit │ │ ├── pcdown.bit │ │ ├── pcdownbl.bit │ │ ├── pcdownbl2.bit │ │ ├── pcicon.bit │ │ ├── pcoff.bit │ │ ├── pcoffbl.bit │ │ ├── pcoffbl2.bit │ │ ├── pdown.bit │ │ ├── pdownmask.bit │ │ ├── pup.bit │ │ ├── pupmask.bit │ │ ├── refresh.bit │ │ ├── refreshmask.bit │ │ ├── stop.bit │ │ └── stopmask.bit │ ├── movie.bit │ ├── news.bit │ ├── noentry.bit │ ├── othello.bit │ ├── penguin.bit │ ├── phone.bit │ ├── pizza.bit │ ├── pizzamenu.bit │ ├── rec-pb │ │ ├── cd.bit │ │ ├── corner-ll.bit │ │ ├── corner-lr.bit │ │ ├── corner-ul.bit │ │ ├── corner-ur.bit │ │ ├── edge-h.bit │ │ ├── edge-v.bit │ │ ├── ff.bit │ │ ├── line.bit │ │ ├── mic.bit │ │ ├── pause.bit │ │ ├── play.bit │ │ ├── pop.bit │ │ ├── push.bit │ │ ├── rec.bit │ │ ├── rew.bit │ │ ├── slider.bit │ │ ├── sliderpattern.bit │ │ ├── speaker.bit │ │ ├── stop.bit │ │ └── synth.bit │ ├── register.bit │ ├── run.bit │ ├── smallcards │ │ ├── c.all.bit │ │ ├── c0.bit │ │ ├── c1.bit │ │ ├── c10.bit │ │ ├── c11.bit │ │ ├── c12.bit │ │ ├── c13.bit │ │ ├── c14.bit │ │ ├── c15.bit │ │ ├── c16.bit │ │ ├── c17.bit │ │ ├── c18.bit │ │ ├── c19.bit │ │ ├── c2.bit │ │ ├── c20.bit │ │ ├── c21.bit │ │ ├── c22.bit │ │ ├── c23.bit │ │ ├── c24.bit │ │ ├── c25.bit │ │ ├── c26.bit │ │ ├── c27.bit │ │ ├── c28.bit │ │ ├── c29.bit │ │ ├── c3.bit │ │ ├── c30.bit │ │ ├── c31.bit │ │ ├── c32.bit │ │ ├── c33.bit │ │ ├── c34.bit │ │ ├── c35.bit │ │ ├── c36.bit │ │ ├── c37.bit │ │ ├── c38.bit │ │ ├── c39.bit │ │ ├── c4.bit │ │ ├── c40.bit │ │ ├── c41.bit │ │ ├── c42.bit │ │ ├── c43.bit │ │ ├── c44.bit │ │ ├── c45.bit │ │ ├── c46.bit │ │ ├── c47.bit │ │ ├── c48.bit │ │ ├── c49.bit │ │ ├── c5.bit │ │ ├── c50.bit │ │ ├── c51.bit │ │ ├── c6.bit │ │ ├── c7.bit │ │ ├── c8.bit │ │ ├── c9.bit │ │ ├── config │ │ ├── rear.all.bit │ │ ├── rear0.bit │ │ ├── rear1.bit │ │ ├── rear2.bit │ │ ├── rear3.bit │ │ └── rear4.bit │ ├── term.bit │ ├── thisburgh.bit │ ├── tinycards │ │ ├── c.all.bit │ │ ├── c0.bit │ │ ├── c1.bit │ │ ├── c10.bit │ │ ├── c11.bit │ │ ├── c12.bit │ │ ├── c13.bit │ │ ├── c14.bit │ │ ├── c15.bit │ │ ├── c16.bit │ │ ├── c17.bit │ │ ├── c18.bit │ │ ├── c19.bit │ │ ├── c2.bit │ │ ├── c20.bit │ │ ├── c21.bit │ │ ├── c22.bit │ │ ├── c23.bit │ │ ├── c24.bit │ │ ├── c25.bit │ │ ├── c26.bit │ │ ├── c27.bit │ │ ├── c28.bit │ │ ├── c29.bit │ │ ├── c3.bit │ │ ├── c30.bit │ │ ├── c31.bit │ │ ├── c32.bit │ │ ├── c33.bit │ │ ├── c34.bit │ │ ├── c35.bit │ │ ├── c36.bit │ │ ├── c37.bit │ │ ├── c38.bit │ │ ├── c39.bit │ │ ├── c4.bit │ │ ├── c40.bit │ │ ├── c41.bit │ │ ├── c42.bit │ │ ├── c43.bit │ │ ├── c44.bit │ │ ├── c45.bit │ │ ├── c46.bit │ │ ├── c47.bit │ │ ├── c48.bit │ │ ├── c49.bit │ │ ├── c5.bit │ │ ├── c50.bit │ │ ├── c51.bit │ │ ├── c6.bit │ │ ├── c7.bit │ │ ├── c8.bit │ │ ├── c9.bit │ │ ├── config │ │ ├── rear.all.bit │ │ ├── rear0.bit │ │ ├── rear1.bit │ │ ├── rear2.bit │ │ └── rear3.bit │ ├── tinytk │ │ ├── exit.bit │ │ ├── help.bit │ │ ├── maxf.bit │ │ ├── ok.bit │ │ ├── task.bit │ │ └── task.orig.bit │ ├── tk │ │ ├── archive.bit │ │ ├── audio.bit │ │ ├── back.9 │ │ ├── back.bit │ │ ├── binary_document.bit │ │ ├── binhex_document.bit │ │ ├── bluebar.bit │ │ ├── bom.bit │ │ ├── bomb.bit │ │ ├── bomb.mask │ │ ├── calculator.bit │ │ ├── caution.bit │ │ ├── cd_i.bit │ │ ├── cd_rom.bit │ │ ├── clock.bit │ │ ├── color_left.bit │ │ ├── color_right.bit │ │ ├── compressed_document.bit │ │ ├── cursor.drag │ │ ├── cursor.no │ │ ├── cursor.wait │ │ ├── cursor.win │ │ ├── debug │ │ │ ├── break.bit │ │ │ ├── break.mask │ │ │ ├── closed.bit │ │ │ ├── closed.mask │ │ │ ├── detach.bit │ │ │ ├── detach.mask │ │ │ ├── kill.bit │ │ │ ├── kill.mask │ │ │ ├── new.mask │ │ │ ├── open.bit │ │ │ ├── open.mask │ │ │ ├── opstep.bit │ │ │ ├── opstep.mask │ │ │ ├── run.bit │ │ │ ├── run.mask │ │ │ ├── stepin.bit │ │ │ ├── stepin.mask │ │ │ ├── stepop.bit │ │ │ ├── stepop.mask │ │ │ ├── stepout.bit │ │ │ ├── stepout.mask │ │ │ ├── stepover.bit │ │ │ ├── stepover.mask │ │ │ ├── stepsemi.bit │ │ │ ├── stepsemi.mask │ │ │ ├── stop.bit │ │ │ └── stop.mask │ │ ├── dir.bit │ │ ├── dir.mask │ │ ├── dir.up │ │ ├── dir_remote.bit │ │ ├── dis.bit │ │ ├── dis.mask │ │ ├── disk_drive.bit │ │ ├── diskette.bit │ │ ├── display.bit │ │ ├── document.bit │ │ ├── email.bit │ │ ├── email_waiting.bit │ │ ├── error │ │ ├── exit.bit │ │ ├── fax.bit │ │ ├── file.bit │ │ ├── file.mask │ │ ├── filing_cabinet.bit │ │ ├── film.bit │ │ ├── find.bit │ │ ├── fixed_disk.bit │ │ ├── flag.bit │ │ ├── flag.mask │ │ ├── folder.bit │ │ ├── form.bit │ │ ├── forward.9 │ │ ├── forward.bit │ │ ├── ftp.bit │ │ ├── glossary.bit │ │ ├── gopher.bit │ │ ├── gray12 │ │ ├── gray25 │ │ ├── help.bit │ │ ├── home.bit │ │ ├── hourglass │ │ ├── iaf.bit │ │ ├── iaf.mask │ │ ├── image.bit │ │ ├── index.bit │ │ ├── info │ │ ├── keybd │ │ │ ├── capsoff.bit │ │ │ ├── capson.bit │ │ │ ├── darrow.bit │ │ │ ├── hom.bit │ │ │ ├── larrow.bit │ │ │ ├── pgdw.bit │ │ │ ├── pgup.bit │ │ │ ├── rarrow.bit │ │ │ ├── shift.bit │ │ │ ├── tog.bit │ │ │ └── uarrow.bit │ │ ├── keyboard.bit │ │ ├── mail.bit │ │ ├── mail │ │ │ ├── cd.bit │ │ │ ├── down.bit │ │ │ ├── forward.bit │ │ │ ├── mail_in.bit │ │ │ ├── new.bit │ │ │ ├── reply.bit │ │ │ ├── replyall.bit │ │ │ ├── show.bit │ │ │ ├── stop.bit │ │ │ ├── trash.bit │ │ │ └── up.bit │ │ ├── mailInfo │ │ ├── mailNoInfo │ │ ├── mail_in.bit │ │ ├── mail_out.bit │ │ ├── mailbdy │ │ ├── mailcon │ │ ├── maildel │ │ ├── maildeliver │ │ ├── mailfolder │ │ ├── mailforward │ │ ├── mailhdr │ │ ├── mailnew │ │ ├── mailnext │ │ ├── mailnocc │ │ ├── mailprev │ │ ├── mailreply │ │ ├── mailsave │ │ ├── mailundel │ │ ├── map.bit │ │ ├── maxf.bit │ │ ├── maxf0.bit │ │ ├── maxf2.bit │ │ ├── mouse.bit │ │ ├── network.bit │ │ ├── newhome.bit │ │ ├── next.bit │ │ ├── notebook.bit │ │ ├── ok.bit │ │ ├── parent.bit │ │ ├── pic.bit │ │ ├── pic.mask │ │ ├── postscript.bit │ │ ├── previous.bit │ │ ├── printer.bit │ │ ├── questhead │ │ ├── question │ │ ├── reload.bit │ │ ├── root.bit │ │ ├── sadsmiley.bit │ │ ├── small_color_left.bit │ │ ├── small_color_right.bit │ │ ├── small_find.bit │ │ ├── small_newhome.bit │ │ ├── small_reload.bit │ │ ├── small_stop.bit │ │ ├── smiley.bit │ │ ├── stop.bit │ │ ├── stop2.bit │ │ ├── stop2.mask │ │ ├── summary.bit │ │ ├── sweb.bit │ │ ├── task.bit │ │ ├── telephone.bit │ │ ├── telnet.bit │ │ ├── text_document.bit │ │ ├── tn3270.bit │ │ ├── toc.bit │ │ ├── trash.bit │ │ ├── unknown_document.bit │ │ ├── uparrow.bit │ │ ├── uuencoded_document.bit │ │ ├── vitasmall.bit │ │ ├── warning │ │ ├── wmsds.bit │ │ ├── wmsds.mask │ │ └── ybr.bit │ ├── tvlist.bit │ ├── vitanuova.bit │ ├── wallst.bit │ ├── web.bit │ ├── whiteboard │ │ ├── 0.bit │ │ ├── 1.bit │ │ ├── 2.bit │ │ └── erase.bit │ └── wjsmall.bit └── layouts │ ├── _default │ ├── list.html │ └── single.html │ ├── index.html │ └── partials │ ├── banner.html │ ├── footer.html │ ├── header.html │ ├── sidebar.html │ └── style.html ├── tools ├── db │ ├── infdb.c │ └── mkfile ├── libstyx │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── mkfile │ ├── styxaux.h │ └── styxserver.c ├── mkfile ├── odbc │ ├── mkfile │ ├── mkfile-MacOSX │ ├── mkfile-Nt │ ├── mkfile-Plan9 │ ├── mkfile-Solaris │ ├── mkfile-linux │ └── odbc.c └── styxtest │ ├── mkfile │ ├── mkfile-FreeBSD │ ├── mkfile-Irix │ ├── mkfile-MacOSX │ ├── mkfile-NetBSD │ ├── mkfile-Nt │ ├── mkfile-OpenBSD │ ├── mkfile-Plan9 │ ├── mkfile-Solaris │ ├── mkfile-linux │ ├── styxtest.c │ └── styxtest0.c ├── usr └── inferno │ ├── lib │ └── plumbing │ └── namespace └── utils ├── 0a ├── a.h ├── a.y ├── l.s ├── lex.c └── mkfile ├── 0c ├── cgen.c ├── enam.c ├── gc.h ├── list.c ├── mkenam ├── mkfile ├── mul.c ├── peep.c ├── reg.c ├── sgen.c ├── swt.c ├── txt.c └── v.out.h ├── 0l ├── asm.c ├── enam.c ├── l.h ├── list.c ├── mkfile ├── noop.c ├── obj.c ├── optab.c ├── pass.c ├── sched.c └── span.c ├── 5a ├── a.h ├── a.y ├── lex.c └── mkfile ├── 5c ├── 5.out.h ├── cgen.c ├── enam.c ├── gc.h ├── list.c ├── mkenam ├── mkfile ├── mul.c ├── peep.c ├── reg.c ├── sgen.c ├── swt.c └── txt.c ├── 5coff ├── 5coff.c ├── auxi.c ├── auxi.h ├── coff.c ├── mkfile └── readcoff.c ├── 5cv ├── 5cv.c └── mkfile ├── 5l ├── asm.c ├── l.h ├── list.c ├── mkfile ├── noop.c ├── obj.c ├── optab.c ├── pass.c └── span.c ├── 6a ├── a.h ├── a.y ├── lex.c └── mkfile ├── 6c ├── 6.out.h ├── cgen.c ├── div.c ├── enam.c ├── gc.h ├── list.c ├── machcap.c ├── mkenam ├── mkfile ├── mul.c ├── peep.c ├── reg.c ├── sgen.c ├── swt.c └── txt.c ├── 6l ├── asm.c ├── l.h ├── list.c ├── mkfile ├── obj.c ├── optab.c ├── pass.c └── span.c ├── 8a ├── a.h ├── a.y ├── l.s ├── lex.c └── mkfile ├── 8c ├── 8.out.h ├── cgen.c ├── cgen64.c ├── div.c ├── enam.c ├── gc.h ├── list.c ├── machcap.c ├── mkenam ├── mkfile ├── mul.c ├── peep.c ├── reg.c ├── sgen.c ├── swt.c └── txt.c ├── 8l ├── asm.c ├── l.h ├── list.c ├── mkfile ├── obj.c ├── optab.c ├── pass.c └── span.c ├── 9c └── 9.out.h ├── acid ├── 386 ├── B.sh ├── acid.h ├── arm ├── builtin.c ├── dbg.y ├── dot.c ├── exec.c ├── expr.c ├── lex.c ├── list.c ├── main.c ├── mips ├── mkfile ├── os-Nt.c ├── os-Plan9.c ├── os-Posix.c ├── port ├── print.c ├── proc.c ├── rdebug.c ├── sparc └── util.c ├── awk ├── FIXES ├── README ├── awk.h ├── awkgram.y ├── b.c ├── buildwin.bat ├── lex.c ├── lib.c ├── mac.code ├── main.c ├── makefile ├── maketab.c ├── missing95.c ├── mkfile ├── parse.c ├── proctab.c ├── proto.h ├── run.c ├── tran.c ├── ytab.c ├── ytab.h ├── ytabc.bak └── ytabh.bak ├── c2l ├── Nt.c ├── Plan9.c ├── Posix.c ├── acid.c ├── bits.c ├── c2l.c ├── cc.h ├── cc.y ├── com.c ├── com64.c ├── dcl.c ├── dpchk.c ├── lex.c ├── lexbody ├── mac.c ├── macbody ├── mkfile ├── mpatof.c ├── out.c ├── scon.c └── sub.c ├── cat ├── cat.c └── mkfile ├── cc ├── Nt.c ├── Plan9.c ├── Posix.c ├── acid.c ├── bits.c ├── cc.h ├── cc.y ├── com.c ├── com64.c ├── dcl.c ├── dpchk.c ├── funct.c ├── lex.c ├── lexbody ├── mac.c ├── macbody ├── mkfile ├── mpatof.c ├── omachcap.c ├── pgen.c ├── pickle.c ├── pswt.c ├── scon.c └── sub.c ├── cp ├── cp.c └── mkfile ├── cvbit ├── cvbit.c └── mkfile ├── data2c ├── data2c.c └── mkfile ├── data2s ├── data2s.c └── mkfile ├── echo ├── echo.c └── mkfile ├── format ├── Nt.c ├── Plan9.c ├── format.c └── mkfile ├── ftl ├── ftl.c └── mkfile ├── iar ├── Nt.c ├── Plan9.c ├── Posix.c ├── ar.c └── mkfile ├── idea ├── idea.c └── mkfile ├── include ├── a.out.h ├── ar.h ├── mach.h └── regexp.h ├── iyacc ├── mkfile ├── yacc.c └── yaccpar ├── ka ├── a.h ├── a.y ├── l.s ├── lex.c ├── mkfile └── note ├── kc ├── cgen.c ├── enam.c ├── gc.h ├── k.out.h ├── list.c ├── mkenam ├── mkfile ├── mul.c ├── peep.c ├── reg.c ├── sgen.c ├── swt.c └── txt.c ├── kl ├── asm.c ├── foo.c ├── l.h ├── list.c ├── mkfile ├── noop.c ├── obj.c ├── optab.c ├── pass.c ├── sched.c └── span.c ├── kprof ├── kprof.c └── mkfile ├── ksize ├── ksize.c └── mkfile ├── kstrip ├── kstrip.c └── mkfile ├── ld ├── Nt.c ├── Plan9.c ├── Posix.c ├── elf.c └── elf.h ├── lib ├── rcmain └── yaccpar ├── libmach ├── 4.c ├── 4db.c ├── 5.c ├── 5db.c ├── 5obj.c ├── 6.c ├── 6obj.c ├── 8.c ├── 8db.c ├── 8obj.c ├── 9.c ├── 9obj.c ├── access.c ├── bootexec.h ├── elf.h ├── executable.c ├── k.c ├── kdb.c ├── kobj.c ├── machdata.c ├── map.c ├── mkfile ├── obj.c ├── obj.h ├── q.c ├── qdb.c ├── qobj.c ├── setmach.c ├── swap.c ├── sym.c ├── t.c ├── tdb.c ├── ureg4.h ├── ureg5.h ├── ureg6.h ├── ureg8.h ├── ureg9.h ├── uregk.h ├── uregq.h ├── uregt.h ├── uregv.h ├── v.c ├── vcodas.c ├── vdb.c └── vobj.c ├── libregexp ├── mkfile ├── regaux.c ├── regcomp.c ├── regcomp.h ├── regerror.c ├── regexec.c ├── regsub.c ├── rregexec.c ├── rregsub.c ├── test.c └── test2.c ├── md5sum ├── md5sum.c └── mkfile ├── mk ├── Nt.c ├── Plan9.c ├── Posix.c ├── README ├── arc.c ├── archive.c ├── bufblock.c ├── env.c ├── file.c ├── fns.h ├── graph.c ├── job.c ├── lex.c ├── main.c ├── match.c ├── mk.c ├── mk.h ├── mkfile ├── parse.c ├── rc.c ├── recipe.c ├── rule.c ├── run.c ├── sh.c ├── shprint.c ├── symtab.c ├── var.c ├── varsub.c └── word.c ├── mkdir ├── mkdir.c └── mkfile ├── mkext ├── mkext.c └── mkfile ├── mkfile ├── mkppcimage ├── mkfile └── mkppcimage.c ├── ms2 ├── mkfile └── ms2.c ├── mv ├── mkfile └── mv.c ├── na ├── mkfile ├── na.h ├── na.man └── na.y ├── ndate ├── mkfile └── ndate.c ├── nm ├── mkfile └── nm.c ├── ntsrv ├── domk ├── mkfile └── ntsrv.c ├── qa ├── a.h ├── a.y ├── lex.c └── mkfile ├── qc ├── cgen.c ├── enam.c ├── gc.h ├── list.c ├── machcap.c ├── mkenam ├── mkfile ├── mul.c ├── peep.c ├── q.out.h ├── reg.c ├── sgen.c ├── swt.c └── txt.c ├── ql ├── asm.c ├── asmout.c ├── cnam.c ├── l.h ├── list.c ├── mkcname ├── mkfile ├── noop.c ├── obj.c ├── optab.c ├── pass.c ├── sched.c └── span.c ├── rcsh ├── Nt.c ├── code.c ├── exec.c ├── glob.c ├── here.c ├── io.c ├── lex.c ├── main.c ├── mkfile ├── pcmd.c ├── pfnc.c ├── rc.h ├── rcmain ├── rcpath ├── simple.c ├── syn.y ├── trap.c ├── tree.c ├── var.c └── word.c ├── rm ├── mkfile └── rm-Nt.c ├── sed ├── mkfile └── sed.c ├── sqz ├── mkfile ├── squeeze.h ├── sqz.c └── zqs.c ├── srclist ├── Nt.c ├── Plan9.c ├── Posix.c ├── mkfile └── srclist.c ├── tc ├── 5.out.h ├── cgen.c ├── enam.c ├── gc.h ├── list.c ├── mkenam ├── mkfile ├── mul.c ├── peep.c ├── reg.c ├── sgen.c ├── swt.c └── txt.c ├── test ├── mkfile └── test-Nt.c ├── tl ├── asm.c ├── l.h ├── list.c ├── mkfile ├── noop.c ├── obj.c ├── optab.c ├── pass.c ├── span.c └── thumb.c ├── tr ├── mkfile └── tr.c ├── va ├── a.h ├── a.y ├── l.s ├── lex.c └── mkfile ├── vc ├── cgen.c ├── enam.c ├── gc.h ├── list.c ├── mkenam ├── mkfile ├── mul.c ├── peep.c ├── reg.c ├── sgen.c ├── swt.c ├── txt.c └── v.out.h └── vl ├── asm.c ├── compat.c ├── l.h ├── list.c ├── mkfile ├── noop.c ├── obj.c ├── optab.c ├── pass.c ├── sched.c └── span.c /.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=c -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/NOTICE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/README.adoc -------------------------------------------------------------------------------- /acme/acid/guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/acid/guide -------------------------------------------------------------------------------- /acme/acid/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/acid/mkfile -------------------------------------------------------------------------------- /acme/acid/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/acid/readme -------------------------------------------------------------------------------- /acme/edit/guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/guide -------------------------------------------------------------------------------- /acme/edit/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/mkfile -------------------------------------------------------------------------------- /acme/edit/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/readme -------------------------------------------------------------------------------- /acme/edit/src/a.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/src/a.b -------------------------------------------------------------------------------- /acme/edit/src/c.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/src/c.b -------------------------------------------------------------------------------- /acme/edit/src/d.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/src/d.b -------------------------------------------------------------------------------- /acme/edit/src/e.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/src/e.b -------------------------------------------------------------------------------- /acme/edit/src/g.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/src/g.b -------------------------------------------------------------------------------- /acme/edit/src/i.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/src/i.b -------------------------------------------------------------------------------- /acme/edit/src/p.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/src/p.b -------------------------------------------------------------------------------- /acme/edit/src/x.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/edit/src/x.b -------------------------------------------------------------------------------- /acme/mail/guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/mail/guide -------------------------------------------------------------------------------- /acme/mail/mkbox.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/mail/mkbox.b -------------------------------------------------------------------------------- /acme/mail/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/mail/mkfile -------------------------------------------------------------------------------- /acme/mail/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/mail/readme -------------------------------------------------------------------------------- /acme/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/acme/mkfile -------------------------------------------------------------------------------- /appl/acme/acme.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/acme.b -------------------------------------------------------------------------------- /appl/acme/acme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/acme.m -------------------------------------------------------------------------------- /appl/acme/buff.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/buff.b -------------------------------------------------------------------------------- /appl/acme/buff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/buff.m -------------------------------------------------------------------------------- /appl/acme/col.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/col.b -------------------------------------------------------------------------------- /appl/acme/col.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/col.m -------------------------------------------------------------------------------- /appl/acme/common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/common.m -------------------------------------------------------------------------------- /appl/acme/dat.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/dat.b -------------------------------------------------------------------------------- /appl/acme/dat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/dat.m -------------------------------------------------------------------------------- /appl/acme/disk.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/disk.b -------------------------------------------------------------------------------- /appl/acme/disk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/disk.m -------------------------------------------------------------------------------- /appl/acme/ecmd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/ecmd.b -------------------------------------------------------------------------------- /appl/acme/ecmd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/ecmd.m -------------------------------------------------------------------------------- /appl/acme/edit.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/edit.b -------------------------------------------------------------------------------- /appl/acme/edit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/edit.m -------------------------------------------------------------------------------- /appl/acme/elog.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/elog.b -------------------------------------------------------------------------------- /appl/acme/elog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/elog.m -------------------------------------------------------------------------------- /appl/acme/exec.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/exec.b -------------------------------------------------------------------------------- /appl/acme/exec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/exec.m -------------------------------------------------------------------------------- /appl/acme/file.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/file.b -------------------------------------------------------------------------------- /appl/acme/file.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/file.m -------------------------------------------------------------------------------- /appl/acme/frame.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/frame.b -------------------------------------------------------------------------------- /appl/acme/frame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/frame.m -------------------------------------------------------------------------------- /appl/acme/fsys.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/fsys.b -------------------------------------------------------------------------------- /appl/acme/fsys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/fsys.m -------------------------------------------------------------------------------- /appl/acme/graph.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/graph.b -------------------------------------------------------------------------------- /appl/acme/graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/graph.m -------------------------------------------------------------------------------- /appl/acme/gui.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/gui.b -------------------------------------------------------------------------------- /appl/acme/gui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/gui.m -------------------------------------------------------------------------------- /appl/acme/look.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/look.b -------------------------------------------------------------------------------- /appl/acme/look.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/look.m -------------------------------------------------------------------------------- /appl/acme/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/mkfile -------------------------------------------------------------------------------- /appl/acme/regx.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/regx.b -------------------------------------------------------------------------------- /appl/acme/regx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/regx.m -------------------------------------------------------------------------------- /appl/acme/row.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/row.b -------------------------------------------------------------------------------- /appl/acme/row.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/row.m -------------------------------------------------------------------------------- /appl/acme/scrl.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/scrl.b -------------------------------------------------------------------------------- /appl/acme/scrl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/scrl.m -------------------------------------------------------------------------------- /appl/acme/text.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/text.b -------------------------------------------------------------------------------- /appl/acme/text.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/text.m -------------------------------------------------------------------------------- /appl/acme/time.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/time.b -------------------------------------------------------------------------------- /appl/acme/time.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/time.m -------------------------------------------------------------------------------- /appl/acme/util.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/util.b -------------------------------------------------------------------------------- /appl/acme/util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/util.m -------------------------------------------------------------------------------- /appl/acme/wind.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/wind.b -------------------------------------------------------------------------------- /appl/acme/wind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/wind.m -------------------------------------------------------------------------------- /appl/acme/xfid.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/xfid.b -------------------------------------------------------------------------------- /appl/acme/xfid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/acme/xfid.m -------------------------------------------------------------------------------- /appl/charon/date.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/date.b -------------------------------------------------------------------------------- /appl/charon/date.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/date.m -------------------------------------------------------------------------------- /appl/charon/file.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/file.b -------------------------------------------------------------------------------- /appl/charon/ftp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/ftp.b -------------------------------------------------------------------------------- /appl/charon/gui.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/gui.b -------------------------------------------------------------------------------- /appl/charon/gui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/gui.m -------------------------------------------------------------------------------- /appl/charon/http.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/http.b -------------------------------------------------------------------------------- /appl/charon/img.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/img.b -------------------------------------------------------------------------------- /appl/charon/img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/img.m -------------------------------------------------------------------------------- /appl/charon/lex.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/lex.b -------------------------------------------------------------------------------- /appl/charon/lex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/lex.m -------------------------------------------------------------------------------- /appl/charon/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/mkfile -------------------------------------------------------------------------------- /appl/charon/url.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/url.b -------------------------------------------------------------------------------- /appl/charon/url.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/charon/url.m -------------------------------------------------------------------------------- /appl/cmd/9660srv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/9660srv.b -------------------------------------------------------------------------------- /appl/cmd/9export.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/9export.b -------------------------------------------------------------------------------- /appl/cmd/9srvfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/9srvfs.b -------------------------------------------------------------------------------- /appl/cmd/9win.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/9win.b -------------------------------------------------------------------------------- /appl/cmd/B.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/B.b -------------------------------------------------------------------------------- /appl/cmd/ar.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ar.b -------------------------------------------------------------------------------- /appl/cmd/archfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/archfs.b -------------------------------------------------------------------------------- /appl/cmd/asm/asm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/asm/asm.b -------------------------------------------------------------------------------- /appl/cmd/asm/asm.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/asm/asm.y -------------------------------------------------------------------------------- /appl/cmd/auplay.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/auplay.b -------------------------------------------------------------------------------- /appl/cmd/bind.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/bind.b -------------------------------------------------------------------------------- /appl/cmd/bit2gif.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/bit2gif.b -------------------------------------------------------------------------------- /appl/cmd/bytes.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/bytes.b -------------------------------------------------------------------------------- /appl/cmd/cal.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/cal.b -------------------------------------------------------------------------------- /appl/cmd/calc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/calc.b -------------------------------------------------------------------------------- /appl/cmd/cat.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/cat.b -------------------------------------------------------------------------------- /appl/cmd/cd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/cd.b -------------------------------------------------------------------------------- /appl/cmd/cddb.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/cddb.b -------------------------------------------------------------------------------- /appl/cmd/chgrp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/chgrp.b -------------------------------------------------------------------------------- /appl/cmd/chmod.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/chmod.b -------------------------------------------------------------------------------- /appl/cmd/cmp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/cmp.b -------------------------------------------------------------------------------- /appl/cmd/comm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/comm.b -------------------------------------------------------------------------------- /appl/cmd/cook.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/cook.b -------------------------------------------------------------------------------- /appl/cmd/cp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/cp.b -------------------------------------------------------------------------------- /appl/cmd/cprof.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/cprof.b -------------------------------------------------------------------------------- /appl/cmd/cpu.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/cpu.b -------------------------------------------------------------------------------- /appl/cmd/crypt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/crypt.b -------------------------------------------------------------------------------- /appl/cmd/date.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/date.b -------------------------------------------------------------------------------- /appl/cmd/dbfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/dbfs.b -------------------------------------------------------------------------------- /appl/cmd/dd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/dd.b -------------------------------------------------------------------------------- /appl/cmd/dial.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/dial.b -------------------------------------------------------------------------------- /appl/cmd/diff.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/diff.b -------------------------------------------------------------------------------- /appl/cmd/disdep.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/disdep.b -------------------------------------------------------------------------------- /appl/cmd/disdump.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/disdump.b -------------------------------------------------------------------------------- /appl/cmd/dossrv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/dossrv.b -------------------------------------------------------------------------------- /appl/cmd/du.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/du.b -------------------------------------------------------------------------------- /appl/cmd/echo.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/echo.b -------------------------------------------------------------------------------- /appl/cmd/ed.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ed.b -------------------------------------------------------------------------------- /appl/cmd/emuinit.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/emuinit.b -------------------------------------------------------------------------------- /appl/cmd/env.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/env.b -------------------------------------------------------------------------------- /appl/cmd/export.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/export.b -------------------------------------------------------------------------------- /appl/cmd/fc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fc.b -------------------------------------------------------------------------------- /appl/cmd/fcp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fcp.b -------------------------------------------------------------------------------- /appl/cmd/fmt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fmt.b -------------------------------------------------------------------------------- /appl/cmd/fortune.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fortune.b -------------------------------------------------------------------------------- /appl/cmd/freq.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/freq.b -------------------------------------------------------------------------------- /appl/cmd/fs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs.b -------------------------------------------------------------------------------- /appl/cmd/fs/and.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/and.b -------------------------------------------------------------------------------- /appl/cmd/fs/eval.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/eval.b -------------------------------------------------------------------------------- /appl/cmd/fs/exec.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/exec.b -------------------------------------------------------------------------------- /appl/cmd/fs/ls.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/ls.b -------------------------------------------------------------------------------- /appl/cmd/fs/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/mkfile -------------------------------------------------------------------------------- /appl/cmd/fs/mode.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/mode.b -------------------------------------------------------------------------------- /appl/cmd/fs/not.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/not.b -------------------------------------------------------------------------------- /appl/cmd/fs/or.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/or.b -------------------------------------------------------------------------------- /appl/cmd/fs/path.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/path.b -------------------------------------------------------------------------------- /appl/cmd/fs/pipe.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/pipe.b -------------------------------------------------------------------------------- /appl/cmd/fs/run.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/run.b -------------------------------------------------------------------------------- /appl/cmd/fs/size.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/size.b -------------------------------------------------------------------------------- /appl/cmd/fs/void.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/void.b -------------------------------------------------------------------------------- /appl/cmd/fs/walk.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/fs/walk.b -------------------------------------------------------------------------------- /appl/cmd/ftest.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ftest.b -------------------------------------------------------------------------------- /appl/cmd/ftpfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ftpfs.b -------------------------------------------------------------------------------- /appl/cmd/getfile.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/getfile.b -------------------------------------------------------------------------------- /appl/cmd/gettar.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/gettar.b -------------------------------------------------------------------------------- /appl/cmd/gif2bit.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/gif2bit.b -------------------------------------------------------------------------------- /appl/cmd/grep.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/grep.b -------------------------------------------------------------------------------- /appl/cmd/gunzip.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/gunzip.b -------------------------------------------------------------------------------- /appl/cmd/gzip.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/gzip.b -------------------------------------------------------------------------------- /appl/cmd/idea.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/idea.b -------------------------------------------------------------------------------- /appl/cmd/import.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/import.b -------------------------------------------------------------------------------- /appl/cmd/iostats.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/iostats.b -------------------------------------------------------------------------------- /appl/cmd/ip/dhcp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ip/dhcp.b -------------------------------------------------------------------------------- /appl/cmd/ip/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ip/mkfile -------------------------------------------------------------------------------- /appl/cmd/ip/ping.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ip/ping.b -------------------------------------------------------------------------------- /appl/cmd/ip/rip.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ip/rip.b -------------------------------------------------------------------------------- /appl/cmd/ip/sntp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ip/sntp.b -------------------------------------------------------------------------------- /appl/cmd/irtest.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/irtest.b -------------------------------------------------------------------------------- /appl/cmd/itest.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/itest.b -------------------------------------------------------------------------------- /appl/cmd/kill.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/kill.b -------------------------------------------------------------------------------- /appl/cmd/listen.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/listen.b -------------------------------------------------------------------------------- /appl/cmd/lockfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/lockfs.b -------------------------------------------------------------------------------- /appl/cmd/logfile.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/logfile.b -------------------------------------------------------------------------------- /appl/cmd/look.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/look.b -------------------------------------------------------------------------------- /appl/cmd/ls.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ls.b -------------------------------------------------------------------------------- /appl/cmd/lstar.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/lstar.b -------------------------------------------------------------------------------- /appl/cmd/m4.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/m4.b -------------------------------------------------------------------------------- /appl/cmd/man2txt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/man2txt.b -------------------------------------------------------------------------------- /appl/cmd/mash/tk.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mash/tk.b -------------------------------------------------------------------------------- /appl/cmd/mc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mc.b -------------------------------------------------------------------------------- /appl/cmd/md5sum.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/md5sum.b -------------------------------------------------------------------------------- /appl/cmd/mdb.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mdb.b -------------------------------------------------------------------------------- /appl/cmd/memfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/memfs.b -------------------------------------------------------------------------------- /appl/cmd/mk/ar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mk/ar.m -------------------------------------------------------------------------------- /appl/cmd/mk/mk.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mk/mk.b -------------------------------------------------------------------------------- /appl/cmd/mk/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mk/mkfile -------------------------------------------------------------------------------- /appl/cmd/mkdir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mkdir.b -------------------------------------------------------------------------------- /appl/cmd/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mkfile -------------------------------------------------------------------------------- /appl/cmd/mntgen.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mntgen.b -------------------------------------------------------------------------------- /appl/cmd/mount.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mount.b -------------------------------------------------------------------------------- /appl/cmd/mouse.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mouse.b -------------------------------------------------------------------------------- /appl/cmd/mprof.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mprof.b -------------------------------------------------------------------------------- /appl/cmd/mv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/mv.b -------------------------------------------------------------------------------- /appl/cmd/ndb/cs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ndb/cs.b -------------------------------------------------------------------------------- /appl/cmd/ndb/dns.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ndb/dns.b -------------------------------------------------------------------------------- /appl/cmd/netkey.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/netkey.b -------------------------------------------------------------------------------- /appl/cmd/netstat.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/netstat.b -------------------------------------------------------------------------------- /appl/cmd/newer.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/newer.b -------------------------------------------------------------------------------- /appl/cmd/ns.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ns.b -------------------------------------------------------------------------------- /appl/cmd/nsbuild.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/nsbuild.b -------------------------------------------------------------------------------- /appl/cmd/os.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/os.b -------------------------------------------------------------------------------- /appl/cmd/p.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/p.b -------------------------------------------------------------------------------- /appl/cmd/pause.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/pause.b -------------------------------------------------------------------------------- /appl/cmd/plumb.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/plumb.b -------------------------------------------------------------------------------- /appl/cmd/plumber.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/plumber.b -------------------------------------------------------------------------------- /appl/cmd/prof.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/prof.b -------------------------------------------------------------------------------- /appl/cmd/ps.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ps.b -------------------------------------------------------------------------------- /appl/cmd/puttar.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/puttar.b -------------------------------------------------------------------------------- /appl/cmd/pwd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/pwd.b -------------------------------------------------------------------------------- /appl/cmd/ramfile.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/ramfile.b -------------------------------------------------------------------------------- /appl/cmd/raw2iaf.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/raw2iaf.b -------------------------------------------------------------------------------- /appl/cmd/rawdbfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/rawdbfs.b -------------------------------------------------------------------------------- /appl/cmd/rcmd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/rcmd.b -------------------------------------------------------------------------------- /appl/cmd/rdp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/rdp.b -------------------------------------------------------------------------------- /appl/cmd/read.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/read.b -------------------------------------------------------------------------------- /appl/cmd/rm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/rm.b -------------------------------------------------------------------------------- /appl/cmd/runas.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/runas.b -------------------------------------------------------------------------------- /appl/cmd/sed.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sed.b -------------------------------------------------------------------------------- /appl/cmd/sh/arg.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/arg.b -------------------------------------------------------------------------------- /appl/cmd/sh/csv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/csv.b -------------------------------------------------------------------------------- /appl/cmd/sh/echo.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/echo.b -------------------------------------------------------------------------------- /appl/cmd/sh/expr.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/expr.b -------------------------------------------------------------------------------- /appl/cmd/sh/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/mkfile -------------------------------------------------------------------------------- /appl/cmd/sh/sh.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/sh.b -------------------------------------------------------------------------------- /appl/cmd/sh/sh.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/sh.y -------------------------------------------------------------------------------- /appl/cmd/sh/std.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/std.b -------------------------------------------------------------------------------- /appl/cmd/sh/test.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/test.b -------------------------------------------------------------------------------- /appl/cmd/sh/tk.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sh/tk.b -------------------------------------------------------------------------------- /appl/cmd/sha1sum.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sha1sum.b -------------------------------------------------------------------------------- /appl/cmd/sleep.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sleep.b -------------------------------------------------------------------------------- /appl/cmd/sort.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sort.b -------------------------------------------------------------------------------- /appl/cmd/src.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/src.b -------------------------------------------------------------------------------- /appl/cmd/stack.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/stack.b -------------------------------------------------------------------------------- /appl/cmd/stackv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/stackv.b -------------------------------------------------------------------------------- /appl/cmd/stream.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/stream.b -------------------------------------------------------------------------------- /appl/cmd/strings.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/strings.b -------------------------------------------------------------------------------- /appl/cmd/styxmon.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/styxmon.b -------------------------------------------------------------------------------- /appl/cmd/sum.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/sum.b -------------------------------------------------------------------------------- /appl/cmd/tail.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/tail.b -------------------------------------------------------------------------------- /appl/cmd/tarfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/tarfs.b -------------------------------------------------------------------------------- /appl/cmd/tclsh.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/tclsh.b -------------------------------------------------------------------------------- /appl/cmd/tcs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/tcs.b -------------------------------------------------------------------------------- /appl/cmd/tee.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/tee.b -------------------------------------------------------------------------------- /appl/cmd/telnet.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/telnet.b -------------------------------------------------------------------------------- /appl/cmd/test.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/test.b -------------------------------------------------------------------------------- /appl/cmd/time.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/time.b -------------------------------------------------------------------------------- /appl/cmd/tkcmd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/tkcmd.b -------------------------------------------------------------------------------- /appl/cmd/touch.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/touch.b -------------------------------------------------------------------------------- /appl/cmd/tr.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/tr.b -------------------------------------------------------------------------------- /appl/cmd/trfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/trfs.b -------------------------------------------------------------------------------- /appl/cmd/tsort.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/tsort.b -------------------------------------------------------------------------------- /appl/cmd/unicode.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/unicode.b -------------------------------------------------------------------------------- /appl/cmd/uniq.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/uniq.b -------------------------------------------------------------------------------- /appl/cmd/units.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/units.b -------------------------------------------------------------------------------- /appl/cmd/units.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/units.y -------------------------------------------------------------------------------- /appl/cmd/unmount.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/unmount.b -------------------------------------------------------------------------------- /appl/cmd/vacfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/vacfs.b -------------------------------------------------------------------------------- /appl/cmd/vacget.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/vacget.b -------------------------------------------------------------------------------- /appl/cmd/vacput.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/vacput.b -------------------------------------------------------------------------------- /appl/cmd/wav2iaf.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/wav2iaf.b -------------------------------------------------------------------------------- /appl/cmd/wc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/wc.b -------------------------------------------------------------------------------- /appl/cmd/webgrab.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/webgrab.b -------------------------------------------------------------------------------- /appl/cmd/wish.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/wish.b -------------------------------------------------------------------------------- /appl/cmd/xargs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/xargs.b -------------------------------------------------------------------------------- /appl/cmd/xd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/xd.b -------------------------------------------------------------------------------- /appl/cmd/yacc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/yacc.b -------------------------------------------------------------------------------- /appl/cmd/zeros.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/cmd/zeros.b -------------------------------------------------------------------------------- /appl/collab/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/collab/mkfile -------------------------------------------------------------------------------- /appl/demo/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/demo/mkfile -------------------------------------------------------------------------------- /appl/demo/ns/ns.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/demo/ns/ns.b -------------------------------------------------------------------------------- /appl/ebook/ebook.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/ebook/ebook.b -------------------------------------------------------------------------------- /appl/ebook/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/ebook/mkfile -------------------------------------------------------------------------------- /appl/ebook/table.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/ebook/table.b -------------------------------------------------------------------------------- /appl/ebook/table.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/ebook/table.m -------------------------------------------------------------------------------- /appl/ebook/tst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/ebook/tst.txt -------------------------------------------------------------------------------- /appl/ebook/units.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/ebook/units.b -------------------------------------------------------------------------------- /appl/ebook/units.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/ebook/units.m -------------------------------------------------------------------------------- /appl/grid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/grid/README -------------------------------------------------------------------------------- /appl/grid/find.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/grid/find.b -------------------------------------------------------------------------------- /appl/grid/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/grid/mkfile -------------------------------------------------------------------------------- /appl/grid/query.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/grid/query.b -------------------------------------------------------------------------------- /appl/lib/arg.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/arg.b -------------------------------------------------------------------------------- /appl/lib/asn1.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/asn1.b -------------------------------------------------------------------------------- /appl/lib/attrdb.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/attrdb.b -------------------------------------------------------------------------------- /appl/lib/auth.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/auth.b -------------------------------------------------------------------------------- /appl/lib/auth9.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/auth9.b -------------------------------------------------------------------------------- /appl/lib/bufio.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/bufio.b -------------------------------------------------------------------------------- /appl/lib/cfg.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/cfg.b -------------------------------------------------------------------------------- /appl/lib/cfgfile.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/cfgfile.b -------------------------------------------------------------------------------- /appl/lib/crc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/crc.b -------------------------------------------------------------------------------- /appl/lib/csv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/csv.b -------------------------------------------------------------------------------- /appl/lib/daytime.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/daytime.b -------------------------------------------------------------------------------- /appl/lib/db.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/db.b -------------------------------------------------------------------------------- /appl/lib/dbm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/dbm.b -------------------------------------------------------------------------------- /appl/lib/dbsrv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/dbsrv.b -------------------------------------------------------------------------------- /appl/lib/debug.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/debug.b -------------------------------------------------------------------------------- /appl/lib/deflate.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/deflate.b -------------------------------------------------------------------------------- /appl/lib/dial.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/dial.b -------------------------------------------------------------------------------- /appl/lib/dialog.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/dialog.b -------------------------------------------------------------------------------- /appl/lib/dict.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/dict.b -------------------------------------------------------------------------------- /appl/lib/dis.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/dis.b -------------------------------------------------------------------------------- /appl/lib/disks.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/disks.b -------------------------------------------------------------------------------- /appl/lib/env.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/env.b -------------------------------------------------------------------------------- /appl/lib/ether.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/ether.b -------------------------------------------------------------------------------- /appl/lib/filepat.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/filepat.b -------------------------------------------------------------------------------- /appl/lib/format.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/format.b -------------------------------------------------------------------------------- /appl/lib/fslib.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/fslib.b -------------------------------------------------------------------------------- /appl/lib/fsproto.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/fsproto.b -------------------------------------------------------------------------------- /appl/lib/hash.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/hash.b -------------------------------------------------------------------------------- /appl/lib/html.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/html.b -------------------------------------------------------------------------------- /appl/lib/ida/ida.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/ida/ida.b -------------------------------------------------------------------------------- /appl/lib/inflate.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/inflate.b -------------------------------------------------------------------------------- /appl/lib/ip.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/ip.b -------------------------------------------------------------------------------- /appl/lib/ipattr.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/ipattr.b -------------------------------------------------------------------------------- /appl/lib/ir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/ir.b -------------------------------------------------------------------------------- /appl/lib/irmpath.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/irmpath.b -------------------------------------------------------------------------------- /appl/lib/irsage.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/irsage.b -------------------------------------------------------------------------------- /appl/lib/irsim.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/irsim.b -------------------------------------------------------------------------------- /appl/lib/itslib.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/itslib.b -------------------------------------------------------------------------------- /appl/lib/json.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/json.b -------------------------------------------------------------------------------- /appl/lib/keyset.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/keyset.b -------------------------------------------------------------------------------- /appl/lib/libc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/libc.b -------------------------------------------------------------------------------- /appl/lib/libc0.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/libc0.b -------------------------------------------------------------------------------- /appl/lib/lists.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/lists.b -------------------------------------------------------------------------------- /appl/lib/lock.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/lock.b -------------------------------------------------------------------------------- /appl/lib/login.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/login.b -------------------------------------------------------------------------------- /appl/lib/man.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/man.b -------------------------------------------------------------------------------- /appl/lib/memfs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/memfs.b -------------------------------------------------------------------------------- /appl/lib/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/mkfile -------------------------------------------------------------------------------- /appl/lib/mpeg.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/mpeg.b -------------------------------------------------------------------------------- /appl/lib/msgio.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/msgio.b -------------------------------------------------------------------------------- /appl/lib/names.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/names.b -------------------------------------------------------------------------------- /appl/lib/newns.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/newns.b -------------------------------------------------------------------------------- /appl/lib/ninep.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/ninep.b -------------------------------------------------------------------------------- /appl/lib/oldauth.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/oldauth.b -------------------------------------------------------------------------------- /appl/lib/palm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/palm.b -------------------------------------------------------------------------------- /appl/lib/palmdb.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/palmdb.b -------------------------------------------------------------------------------- /appl/lib/pop3.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/pop3.b -------------------------------------------------------------------------------- /appl/lib/popup.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/popup.b -------------------------------------------------------------------------------- /appl/lib/profile.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/profile.b -------------------------------------------------------------------------------- /appl/lib/pslib.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/pslib.b -------------------------------------------------------------------------------- /appl/lib/rabin.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/rabin.b -------------------------------------------------------------------------------- /appl/lib/rand.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/rand.b -------------------------------------------------------------------------------- /appl/lib/random.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/random.b -------------------------------------------------------------------------------- /appl/lib/readdir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/readdir.b -------------------------------------------------------------------------------- /appl/lib/readgif.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/readgif.b -------------------------------------------------------------------------------- /appl/lib/readjpg.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/readjpg.b -------------------------------------------------------------------------------- /appl/lib/readpng.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/readpng.b -------------------------------------------------------------------------------- /appl/lib/regex.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/regex.b -------------------------------------------------------------------------------- /appl/lib/rfc822.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/rfc822.b -------------------------------------------------------------------------------- /appl/lib/riff.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/riff.b -------------------------------------------------------------------------------- /appl/lib/scsiio.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/scsiio.b -------------------------------------------------------------------------------- /appl/lib/sets.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/sets.b -------------------------------------------------------------------------------- /appl/lib/sets32.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/sets32.b -------------------------------------------------------------------------------- /appl/lib/sexprs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/sexprs.b -------------------------------------------------------------------------------- /appl/lib/slip.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/slip.b -------------------------------------------------------------------------------- /appl/lib/smtp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/smtp.b -------------------------------------------------------------------------------- /appl/lib/sort.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/sort.b -------------------------------------------------------------------------------- /appl/lib/ssl.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/ssl.b -------------------------------------------------------------------------------- /appl/lib/string.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/string.b -------------------------------------------------------------------------------- /appl/lib/styx.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/styx.b -------------------------------------------------------------------------------- /appl/lib/styxlib.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/styxlib.b -------------------------------------------------------------------------------- /appl/lib/tables.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/tables.b -------------------------------------------------------------------------------- /appl/lib/tabs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/tabs.b -------------------------------------------------------------------------------- /appl/lib/tcl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/tcl.m -------------------------------------------------------------------------------- /appl/lib/tcl_io.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/tcl_io.b -------------------------------------------------------------------------------- /appl/lib/tcl_tk.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/tcl_tk.b -------------------------------------------------------------------------------- /appl/lib/tftp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/tftp.b -------------------------------------------------------------------------------- /appl/lib/timers.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/timers.b -------------------------------------------------------------------------------- /appl/lib/ubfa.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/ubfa.b -------------------------------------------------------------------------------- /appl/lib/url.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/url.b -------------------------------------------------------------------------------- /appl/lib/usb/usb.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/usb/usb.b -------------------------------------------------------------------------------- /appl/lib/utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/utils.m -------------------------------------------------------------------------------- /appl/lib/vac.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/vac.b -------------------------------------------------------------------------------- /appl/lib/venti.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/venti.b -------------------------------------------------------------------------------- /appl/lib/virgil.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/virgil.b -------------------------------------------------------------------------------- /appl/lib/volume.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/volume.b -------------------------------------------------------------------------------- /appl/lib/w3c/css.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/w3c/css.b -------------------------------------------------------------------------------- /appl/lib/wait.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/wait.b -------------------------------------------------------------------------------- /appl/lib/wmlib.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/wmlib.b -------------------------------------------------------------------------------- /appl/lib/wmsrv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/wmsrv.b -------------------------------------------------------------------------------- /appl/lib/workdir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/workdir.b -------------------------------------------------------------------------------- /appl/lib/xml.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/lib/xml.b -------------------------------------------------------------------------------- /appl/math/ack.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/ack.b -------------------------------------------------------------------------------- /appl/math/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/doc.txt -------------------------------------------------------------------------------- /appl/math/factor.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/factor.b -------------------------------------------------------------------------------- /appl/math/ffts.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/ffts.b -------------------------------------------------------------------------------- /appl/math/fit.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/fit.b -------------------------------------------------------------------------------- /appl/math/gr.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/gr.b -------------------------------------------------------------------------------- /appl/math/graph0.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/graph0.b -------------------------------------------------------------------------------- /appl/math/hist0.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/hist0.b -------------------------------------------------------------------------------- /appl/math/linalg.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/linalg.b -------------------------------------------------------------------------------- /appl/math/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/mkfile -------------------------------------------------------------------------------- /appl/math/parts.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/parts.b -------------------------------------------------------------------------------- /appl/math/perms.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/perms.b -------------------------------------------------------------------------------- /appl/math/pi.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/pi.b -------------------------------------------------------------------------------- /appl/math/powers.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/powers.b -------------------------------------------------------------------------------- /appl/math/primes.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/primes.b -------------------------------------------------------------------------------- /appl/math/sieve.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/math/sieve.b -------------------------------------------------------------------------------- /appl/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/mkfile -------------------------------------------------------------------------------- /appl/spree/join.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/spree/join.b -------------------------------------------------------------------------------- /appl/spree/join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/spree/join.m -------------------------------------------------------------------------------- /appl/spree/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/spree/mkfile -------------------------------------------------------------------------------- /appl/spree/spree.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/spree/spree.b -------------------------------------------------------------------------------- /appl/spree/spree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/spree/spree.m -------------------------------------------------------------------------------- /appl/svc/auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/svc/auth.sh -------------------------------------------------------------------------------- /appl/svc/httpd/httpd.debug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/httpd/httpd.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/svc/mkfile -------------------------------------------------------------------------------- /appl/svc/net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/svc/net.sh -------------------------------------------------------------------------------- /appl/svc/rstyx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/svc/rstyx.sh -------------------------------------------------------------------------------- /appl/svc/styx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/svc/styx.sh -------------------------------------------------------------------------------- /appl/svc/webget/webget.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/tiny/broke.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/tiny/broke.b -------------------------------------------------------------------------------- /appl/tiny/kill.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/tiny/kill.b -------------------------------------------------------------------------------- /appl/tiny/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/tiny/mkfile -------------------------------------------------------------------------------- /appl/tiny/rm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/tiny/rm.b -------------------------------------------------------------------------------- /appl/tiny/sh.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/tiny/sh.b -------------------------------------------------------------------------------- /appl/wm/about.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/about.b -------------------------------------------------------------------------------- /appl/wm/avi.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/avi.b -------------------------------------------------------------------------------- /appl/wm/bounce.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/bounce.b -------------------------------------------------------------------------------- /appl/wm/brutus.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/brutus.b -------------------------------------------------------------------------------- /appl/wm/c4.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/c4.b -------------------------------------------------------------------------------- /appl/wm/calendar.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/calendar.b -------------------------------------------------------------------------------- /appl/wm/clock.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/clock.b -------------------------------------------------------------------------------- /appl/wm/coffee.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/coffee.b -------------------------------------------------------------------------------- /appl/wm/collide.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/collide.b -------------------------------------------------------------------------------- /appl/wm/colors.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/colors.b -------------------------------------------------------------------------------- /appl/wm/cprof.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/cprof.b -------------------------------------------------------------------------------- /appl/wm/date.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/date.b -------------------------------------------------------------------------------- /appl/wm/deb.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/deb.b -------------------------------------------------------------------------------- /appl/wm/debdata.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/debdata.b -------------------------------------------------------------------------------- /appl/wm/debsrc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/debsrc.b -------------------------------------------------------------------------------- /appl/wm/dir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/dir.b -------------------------------------------------------------------------------- /appl/wm/edit.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/edit.b -------------------------------------------------------------------------------- /appl/wm/filename.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/filename.b -------------------------------------------------------------------------------- /appl/wm/hebrew.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/hebrew.m -------------------------------------------------------------------------------- /appl/wm/keyboard.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/keyboard.b -------------------------------------------------------------------------------- /appl/wm/logon.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/logon.b -------------------------------------------------------------------------------- /appl/wm/man.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/man.b -------------------------------------------------------------------------------- /appl/wm/mand.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/mand.b -------------------------------------------------------------------------------- /appl/wm/mash.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/mash.b -------------------------------------------------------------------------------- /appl/wm/memory.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/memory.b -------------------------------------------------------------------------------- /appl/wm/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/mkfile -------------------------------------------------------------------------------- /appl/wm/mpeg.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/mpeg.b -------------------------------------------------------------------------------- /appl/wm/mpeg/vlc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/mpeg/vlc.b -------------------------------------------------------------------------------- /appl/wm/mprof.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/mprof.b -------------------------------------------------------------------------------- /appl/wm/pen.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/pen.b -------------------------------------------------------------------------------- /appl/wm/prof.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/prof.b -------------------------------------------------------------------------------- /appl/wm/qt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/qt.b -------------------------------------------------------------------------------- /appl/wm/readmail.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/readmail.b -------------------------------------------------------------------------------- /appl/wm/reversi.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/reversi.b -------------------------------------------------------------------------------- /appl/wm/rmtdir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/rmtdir.b -------------------------------------------------------------------------------- /appl/wm/rt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/rt.b -------------------------------------------------------------------------------- /appl/wm/sam.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/sam.b -------------------------------------------------------------------------------- /appl/wm/samstub.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/samstub.b -------------------------------------------------------------------------------- /appl/wm/samstub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/samstub.m -------------------------------------------------------------------------------- /appl/wm/samterm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/samterm.m -------------------------------------------------------------------------------- /appl/wm/samtk.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/samtk.b -------------------------------------------------------------------------------- /appl/wm/samtk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/samtk.m -------------------------------------------------------------------------------- /appl/wm/sendmail.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/sendmail.b -------------------------------------------------------------------------------- /appl/wm/sh.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/sh.b -------------------------------------------------------------------------------- /appl/wm/smenu.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/smenu.b -------------------------------------------------------------------------------- /appl/wm/smenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/smenu.m -------------------------------------------------------------------------------- /appl/wm/snake.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/snake.b -------------------------------------------------------------------------------- /appl/wm/sweeper.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/sweeper.b -------------------------------------------------------------------------------- /appl/wm/task.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/task.b -------------------------------------------------------------------------------- /appl/wm/telnet.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/telnet.b -------------------------------------------------------------------------------- /appl/wm/tetris.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/tetris.b -------------------------------------------------------------------------------- /appl/wm/toolbar.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/toolbar.b -------------------------------------------------------------------------------- /appl/wm/view.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/view.b -------------------------------------------------------------------------------- /appl/wm/vt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/vt.b -------------------------------------------------------------------------------- /appl/wm/wish.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/wish.b -------------------------------------------------------------------------------- /appl/wm/wm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/wm.b -------------------------------------------------------------------------------- /appl/wm/wmdeb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/wmdeb.m -------------------------------------------------------------------------------- /appl/wm/wmplay.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/appl/wm/wmplay.b -------------------------------------------------------------------------------- /arch/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/README -------------------------------------------------------------------------------- /arch/dragonfly/386/lib/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/emu/irix/NOTE: -------------------------------------------------------------------------------- 1 | for some strange reason, it lacks deveia! 2 | -------------------------------------------------------------------------------- /arch/emu/irix/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/irix/os.c -------------------------------------------------------------------------------- /arch/emu/linux/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/linux/emu -------------------------------------------------------------------------------- /arch/emu/linux/mkfile-386: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/emu/linux/mkfile-arm: -------------------------------------------------------------------------------- 1 | ARCHFILES=\ 2 | arm-tas-v7.$O\ 3 | -------------------------------------------------------------------------------- /arch/emu/linux/mkfile-mips: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/emu/linux/mkfile-power: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/emu/nt/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/cmd.c -------------------------------------------------------------------------------- /arch/emu/nt/fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/fp.c -------------------------------------------------------------------------------- /arch/emu/nt/ie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/ie -------------------------------------------------------------------------------- /arch/emu/nt/ipif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/ipif.c -------------------------------------------------------------------------------- /arch/emu/nt/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/mkfile -------------------------------------------------------------------------------- /arch/emu/nt/nt.rc: -------------------------------------------------------------------------------- 1 | 100 ICON inferno.ico 2 | -------------------------------------------------------------------------------- /arch/emu/nt/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/os.c -------------------------------------------------------------------------------- /arch/emu/nt/r16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/r16.c -------------------------------------------------------------------------------- /arch/emu/nt/r16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/r16.h -------------------------------------------------------------------------------- /arch/emu/nt/vlrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/vlrt.c -------------------------------------------------------------------------------- /arch/emu/nt/win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/nt/win.c -------------------------------------------------------------------------------- /arch/emu/osx/NOTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/osx/NOTE -------------------------------------------------------------------------------- /arch/emu/osx/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/osx/cmd.c -------------------------------------------------------------------------------- /arch/emu/osx/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/osx/os.c -------------------------------------------------------------------------------- /arch/emu/osx/win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/osx/win.c -------------------------------------------------------------------------------- /arch/emu/port/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/emu/port/ip.h -------------------------------------------------------------------------------- /arch/irix/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/irix/mkfile -------------------------------------------------------------------------------- /arch/linux/386/include/fpuctl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/linux/arm/include/fpuctl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/linux/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/linux/mkfile -------------------------------------------------------------------------------- /arch/linux/spim/include/fpuctl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/mkfile -------------------------------------------------------------------------------- /arch/native/arm/ks32/squirt: -------------------------------------------------------------------------------- 1 | #!/bin/rc 2 | cat ievaluator7t.txt 3 | -------------------------------------------------------------------------------- /arch/native/boot/arm1110/dat.h: -------------------------------------------------------------------------------- 1 | /* deliberately empty */ 2 | -------------------------------------------------------------------------------- /arch/native/boot/mpc/mem.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/native/boot/rpcg/mem.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/native/power/fads/io.h: -------------------------------------------------------------------------------- 1 | #include "../mpc/800io.h" 2 | -------------------------------------------------------------------------------- /arch/native/power/ipengine/io.h: -------------------------------------------------------------------------------- 1 | #include "../mpc/800io.h" 2 | -------------------------------------------------------------------------------- /arch/native/power/rpcg/io.h: -------------------------------------------------------------------------------- 1 | #include "../mpc/800io.h" 2 | -------------------------------------------------------------------------------- /arch/netbsd/386/include/fpuctl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/netbsd/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/netbsd/mkfile -------------------------------------------------------------------------------- /arch/nt/386/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/nt/386/mkfile -------------------------------------------------------------------------------- /arch/nt/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/nt/mkfile -------------------------------------------------------------------------------- /arch/osx/386/include/fpuctl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/osx/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/osx/mkfile -------------------------------------------------------------------------------- /arch/plan9/arm/lib/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/plan9/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/arch/plan9/mkfile -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/config.toml -------------------------------------------------------------------------------- /dis/broke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/broke -------------------------------------------------------------------------------- /dis/demo/ns/runns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/demo/ns/runns -------------------------------------------------------------------------------- /dis/lc: -------------------------------------------------------------------------------- 1 | #!/dis/sh 2 | ls -p $* | mc 3 | -------------------------------------------------------------------------------- /dis/lookman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/lookman -------------------------------------------------------------------------------- /dis/man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/man -------------------------------------------------------------------------------- /dis/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/shutdown -------------------------------------------------------------------------------- /dis/sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/sig -------------------------------------------------------------------------------- /dis/svc/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/svc/auth -------------------------------------------------------------------------------- /dis/svc/net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/svc/net -------------------------------------------------------------------------------- /dis/svc/rstyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/svc/rstyx -------------------------------------------------------------------------------- /dis/svc/styx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/dis/svc/styx -------------------------------------------------------------------------------- /include/a.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/a.out.h -------------------------------------------------------------------------------- /include/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/bio.h -------------------------------------------------------------------------------- /include/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/draw.h -------------------------------------------------------------------------------- /include/dynld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/dynld.h -------------------------------------------------------------------------------- /include/fcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/fcall.h -------------------------------------------------------------------------------- /include/flate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/flate.h -------------------------------------------------------------------------------- /include/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/isa.h -------------------------------------------------------------------------------- /include/kern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/kern.h -------------------------------------------------------------------------------- /include/lib9/argv0.c: -------------------------------------------------------------------------------- 1 | char* argv0 = 0; 2 | -------------------------------------------------------------------------------- /include/lib9/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | TARGFILES=errstr-Plan9.$O\ 2 | 3 | -------------------------------------------------------------------------------- /include/libfreetype/ft2system.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/libinterp/README: -------------------------------------------------------------------------------- 1 | comp-68020.c has not been tested recently 2 | -------------------------------------------------------------------------------- /include/libinterp/das-spim.c: -------------------------------------------------------------------------------- 1 | #include "das-mips.c" 2 | -------------------------------------------------------------------------------- /include/libkern/getfcr-spim.s: -------------------------------------------------------------------------------- 1 | #include "getfcr-mips.s" 2 | -------------------------------------------------------------------------------- /include/libkern/memmove-spim.s: -------------------------------------------------------------------------------- 1 | #include "memmove-mips.s" 2 | -------------------------------------------------------------------------------- /include/libkern/memset-spim.s: -------------------------------------------------------------------------------- 1 | #include "memset-mips.s" 2 | -------------------------------------------------------------------------------- /include/libkern/strchr-spim.s: -------------------------------------------------------------------------------- 1 | #include "strchr-mips.s" 2 | -------------------------------------------------------------------------------- /include/libmath/FPcontrol-Plan9.c: -------------------------------------------------------------------------------- 1 | #include "FPcontrol-Inferno.c" 2 | -------------------------------------------------------------------------------- /include/libmemlayer/lreshape.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/logfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/logfs.h -------------------------------------------------------------------------------- /include/logfsos.h: -------------------------------------------------------------------------------- 1 | #include "lib9.h" 2 | -------------------------------------------------------------------------------- /include/mathi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/mathi.h -------------------------------------------------------------------------------- /include/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/mp.h -------------------------------------------------------------------------------- /include/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/pool.h -------------------------------------------------------------------------------- /include/raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/raise.h -------------------------------------------------------------------------------- /include/rdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/rdbg.h -------------------------------------------------------------------------------- /include/styx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/styx.h -------------------------------------------------------------------------------- /include/tk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/tk.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "Fourth Edition (20151010)" 2 | -------------------------------------------------------------------------------- /include/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/include/vm.h -------------------------------------------------------------------------------- /lib/acid/386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/acid/386 -------------------------------------------------------------------------------- /lib/acid/amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/acid/amd64 -------------------------------------------------------------------------------- /lib/acid/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/acid/arm -------------------------------------------------------------------------------- /lib/acid/gpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/acid/gpa -------------------------------------------------------------------------------- /lib/acid/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/acid/mips -------------------------------------------------------------------------------- /lib/acid/port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/acid/port -------------------------------------------------------------------------------- /lib/acid/power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/acid/power -------------------------------------------------------------------------------- /lib/acid/rdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/acid/rdebug -------------------------------------------------------------------------------- /lib/acid/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/acid/sparc -------------------------------------------------------------------------------- /lib/convcs/big5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/convcs/big5 -------------------------------------------------------------------------------- /lib/keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/keyboard -------------------------------------------------------------------------------- /lib/lego/llp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/lego/llp.h -------------------------------------------------------------------------------- /lib/lego/styx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/lego/styx.c -------------------------------------------------------------------------------- /lib/limbo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/limbo.vim -------------------------------------------------------------------------------- /lib/mashinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/mashinit -------------------------------------------------------------------------------- /lib/mimetype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/mimetype -------------------------------------------------------------------------------- /lib/mk/binds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/mk/binds -------------------------------------------------------------------------------- /lib/mk/mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/mk/mkconfig -------------------------------------------------------------------------------- /lib/ndb/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/ndb/common -------------------------------------------------------------------------------- /lib/ndb/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/ndb/dns -------------------------------------------------------------------------------- /lib/ndb/inferno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/ndb/inferno -------------------------------------------------------------------------------- /lib/ndb/local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/ndb/local -------------------------------------------------------------------------------- /lib/polyhedra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/polyhedra -------------------------------------------------------------------------------- /lib/print/defprinter: -------------------------------------------------------------------------------- 1 | printer0 2 | -------------------------------------------------------------------------------- /lib/scores/x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/scores/x -------------------------------------------------------------------------------- /lib/scsicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/scsicodes -------------------------------------------------------------------------------- /lib/sexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/sexp -------------------------------------------------------------------------------- /lib/sh/owen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/sh/owen -------------------------------------------------------------------------------- /lib/sh/profile: -------------------------------------------------------------------------------- 1 | # emu sh initialisation here 2 | -------------------------------------------------------------------------------- /lib/sh/sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/sh/sched -------------------------------------------------------------------------------- /lib/sh/srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/sh/srv -------------------------------------------------------------------------------- /lib/sh/win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/sh/win -------------------------------------------------------------------------------- /lib/tbsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/tbsetup -------------------------------------------------------------------------------- /lib/unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/unicode -------------------------------------------------------------------------------- /lib/units: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/units -------------------------------------------------------------------------------- /lib/usbdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/usbdb -------------------------------------------------------------------------------- /lib/wmcharon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/wmcharon -------------------------------------------------------------------------------- /lib/wmsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/wmsetup -------------------------------------------------------------------------------- /lib/words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/words -------------------------------------------------------------------------------- /lib/yaccpar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/lib/yaccpar -------------------------------------------------------------------------------- /makemk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/makemk.sh -------------------------------------------------------------------------------- /mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/mkconfig -------------------------------------------------------------------------------- /mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/mkfile -------------------------------------------------------------------------------- /module/9p.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/9p.m -------------------------------------------------------------------------------- /module/arg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/arg.m -------------------------------------------------------------------------------- /module/asn1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/asn1.m -------------------------------------------------------------------------------- /module/attrdb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/attrdb.m -------------------------------------------------------------------------------- /module/auth9.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/auth9.m -------------------------------------------------------------------------------- /module/bench.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/bench.m -------------------------------------------------------------------------------- /module/brutus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/brutus.m -------------------------------------------------------------------------------- /module/bufio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/bufio.m -------------------------------------------------------------------------------- /module/bundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/bundle.m -------------------------------------------------------------------------------- /module/cci.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/cci.m -------------------------------------------------------------------------------- /module/cfg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/cfg.m -------------------------------------------------------------------------------- /module/convcs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/convcs.m -------------------------------------------------------------------------------- /module/crc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/crc.m -------------------------------------------------------------------------------- /module/crypt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/crypt.m -------------------------------------------------------------------------------- /module/css.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/css.m -------------------------------------------------------------------------------- /module/csv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/csv.m -------------------------------------------------------------------------------- /module/db.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/db.m -------------------------------------------------------------------------------- /module/dbm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/dbm.m -------------------------------------------------------------------------------- /module/debug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/debug.m -------------------------------------------------------------------------------- /module/dhcp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/dhcp.m -------------------------------------------------------------------------------- /module/dial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/dial.m -------------------------------------------------------------------------------- /module/dialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/dialog.m -------------------------------------------------------------------------------- /module/dict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/dict.m -------------------------------------------------------------------------------- /module/dis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/dis.m -------------------------------------------------------------------------------- /module/disks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/disks.m -------------------------------------------------------------------------------- /module/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/draw.m -------------------------------------------------------------------------------- /module/emio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/emio.m -------------------------------------------------------------------------------- /module/env.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/env.m -------------------------------------------------------------------------------- /module/ether.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/ether.m -------------------------------------------------------------------------------- /module/ffts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/ffts.m -------------------------------------------------------------------------------- /module/filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/filter.m -------------------------------------------------------------------------------- /module/format.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/format.m -------------------------------------------------------------------------------- /module/fslib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/fslib.m -------------------------------------------------------------------------------- /module/gr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/gr.m -------------------------------------------------------------------------------- /module/hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/hash.m -------------------------------------------------------------------------------- /module/html.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/html.m -------------------------------------------------------------------------------- /module/ida.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/ida.m -------------------------------------------------------------------------------- /module/ip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/ip.m -------------------------------------------------------------------------------- /module/ipattr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/ipattr.m -------------------------------------------------------------------------------- /module/ipints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/ipints.m -------------------------------------------------------------------------------- /module/ir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/ir.m -------------------------------------------------------------------------------- /module/itslib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/itslib.m -------------------------------------------------------------------------------- /module/json.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/json.m -------------------------------------------------------------------------------- /module/keyset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/keyset.m -------------------------------------------------------------------------------- /module/libc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/libc.m -------------------------------------------------------------------------------- /module/libc0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/libc0.m -------------------------------------------------------------------------------- /module/linalg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/linalg.m -------------------------------------------------------------------------------- /module/lists.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/lists.m -------------------------------------------------------------------------------- /module/loader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/loader.m -------------------------------------------------------------------------------- /module/lock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/lock.m -------------------------------------------------------------------------------- /module/man.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/man.m -------------------------------------------------------------------------------- /module/math.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/math.m -------------------------------------------------------------------------------- /module/memfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/memfs.m -------------------------------------------------------------------------------- /module/mpeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/mpeg.m -------------------------------------------------------------------------------- /module/msgio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/msgio.m -------------------------------------------------------------------------------- /module/names.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/names.m -------------------------------------------------------------------------------- /module/newns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/newns.m -------------------------------------------------------------------------------- /module/palm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/palm.m -------------------------------------------------------------------------------- /module/pkcs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/pkcs.m -------------------------------------------------------------------------------- /module/pop3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/pop3.m -------------------------------------------------------------------------------- /module/popup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/popup.m -------------------------------------------------------------------------------- /module/prefab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/prefab.m -------------------------------------------------------------------------------- /module/print.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/print.m -------------------------------------------------------------------------------- /module/pslib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/pslib.m -------------------------------------------------------------------------------- /module/rabin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/rabin.m -------------------------------------------------------------------------------- /module/rand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/rand.m -------------------------------------------------------------------------------- /module/regex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/regex.m -------------------------------------------------------------------------------- /module/rfc822.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/rfc822.m -------------------------------------------------------------------------------- /module/riff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/riff.m -------------------------------------------------------------------------------- /module/runt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/runt.m -------------------------------------------------------------------------------- /module/scsiio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/scsiio.m -------------------------------------------------------------------------------- /module/sets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/sets.m -------------------------------------------------------------------------------- /module/sets32.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/sets32.m -------------------------------------------------------------------------------- /module/sexprs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/sexprs.m -------------------------------------------------------------------------------- /module/sh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/sh.m -------------------------------------------------------------------------------- /module/smtp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/smtp.m -------------------------------------------------------------------------------- /module/sort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/sort.m -------------------------------------------------------------------------------- /module/spki.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/spki.m -------------------------------------------------------------------------------- /module/srv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/srv.m -------------------------------------------------------------------------------- /module/srvrunt.b: -------------------------------------------------------------------------------- 1 | implement nothing; 2 | 3 | include "srv.m"; 4 | -------------------------------------------------------------------------------- /module/ssl3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/ssl3.m -------------------------------------------------------------------------------- /module/string.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/string.m -------------------------------------------------------------------------------- /module/styx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/styx.m -------------------------------------------------------------------------------- /module/sys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/sys.m -------------------------------------------------------------------------------- /module/tables.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/tables.m -------------------------------------------------------------------------------- /module/tabs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/tabs.m -------------------------------------------------------------------------------- /module/tcllib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/tcllib.m -------------------------------------------------------------------------------- /module/tftp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/tftp.m -------------------------------------------------------------------------------- /module/timers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/timers.m -------------------------------------------------------------------------------- /module/tk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/tk.m -------------------------------------------------------------------------------- /module/ubfa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/ubfa.m -------------------------------------------------------------------------------- /module/uris.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/uris.m -------------------------------------------------------------------------------- /module/url.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/url.m -------------------------------------------------------------------------------- /module/usb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/usb.m -------------------------------------------------------------------------------- /module/vac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/vac.m -------------------------------------------------------------------------------- /module/venti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/venti.m -------------------------------------------------------------------------------- /module/volume.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/volume.m -------------------------------------------------------------------------------- /module/wait.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/wait.m -------------------------------------------------------------------------------- /module/webget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/webget.m -------------------------------------------------------------------------------- /module/wmlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/wmlib.m -------------------------------------------------------------------------------- /module/wmsrv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/wmsrv.m -------------------------------------------------------------------------------- /module/x509.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/x509.m -------------------------------------------------------------------------------- /module/xml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/module/xml.m -------------------------------------------------------------------------------- /sys/font/minitel/f40x25g1: -------------------------------------------------------------------------------- 1 | 17 13 2 | 0 255 vid14x17 3 | -------------------------------------------------------------------------------- /sys/font/psrename: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sys/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | ../index.html -------------------------------------------------------------------------------- /sys/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | ../index.html -------------------------------------------------------------------------------- /tools/db/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/tools/db/mkfile -------------------------------------------------------------------------------- /tools/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/tools/mkfile -------------------------------------------------------------------------------- /tools/odbc/mkfile-MacOSX: -------------------------------------------------------------------------------- 1 | SYSLIBS= -liodbc 2 | -------------------------------------------------------------------------------- /tools/odbc/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/odbc/mkfile-linux: -------------------------------------------------------------------------------- 1 | SYSLIBS=-lodbc 2 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-FreeBSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-Irix: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-MacOSX: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-NetBSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-OpenBSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-linux: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/inferno/namespace: -------------------------------------------------------------------------------- 1 | bind -ia #C / 2 | -------------------------------------------------------------------------------- /utils/0a/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0a/a.h -------------------------------------------------------------------------------- /utils/0a/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0a/a.y -------------------------------------------------------------------------------- /utils/0a/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0a/l.s -------------------------------------------------------------------------------- /utils/0a/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0a/lex.c -------------------------------------------------------------------------------- /utils/0a/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0a/mkfile -------------------------------------------------------------------------------- /utils/0c/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/cgen.c -------------------------------------------------------------------------------- /utils/0c/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/enam.c -------------------------------------------------------------------------------- /utils/0c/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/gc.h -------------------------------------------------------------------------------- /utils/0c/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/list.c -------------------------------------------------------------------------------- /utils/0c/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/mkenam -------------------------------------------------------------------------------- /utils/0c/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/mkfile -------------------------------------------------------------------------------- /utils/0c/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/mul.c -------------------------------------------------------------------------------- /utils/0c/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/peep.c -------------------------------------------------------------------------------- /utils/0c/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/reg.c -------------------------------------------------------------------------------- /utils/0c/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/sgen.c -------------------------------------------------------------------------------- /utils/0c/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/swt.c -------------------------------------------------------------------------------- /utils/0c/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0c/txt.c -------------------------------------------------------------------------------- /utils/0l/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0l/asm.c -------------------------------------------------------------------------------- /utils/0l/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0l/enam.c -------------------------------------------------------------------------------- /utils/0l/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0l/l.h -------------------------------------------------------------------------------- /utils/0l/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0l/list.c -------------------------------------------------------------------------------- /utils/0l/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0l/mkfile -------------------------------------------------------------------------------- /utils/0l/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0l/noop.c -------------------------------------------------------------------------------- /utils/0l/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0l/obj.c -------------------------------------------------------------------------------- /utils/0l/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0l/pass.c -------------------------------------------------------------------------------- /utils/0l/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/0l/span.c -------------------------------------------------------------------------------- /utils/5a/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5a/a.h -------------------------------------------------------------------------------- /utils/5a/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5a/a.y -------------------------------------------------------------------------------- /utils/5a/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5a/lex.c -------------------------------------------------------------------------------- /utils/5a/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5a/mkfile -------------------------------------------------------------------------------- /utils/5c/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/cgen.c -------------------------------------------------------------------------------- /utils/5c/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/enam.c -------------------------------------------------------------------------------- /utils/5c/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/gc.h -------------------------------------------------------------------------------- /utils/5c/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/list.c -------------------------------------------------------------------------------- /utils/5c/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/mkenam -------------------------------------------------------------------------------- /utils/5c/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/mkfile -------------------------------------------------------------------------------- /utils/5c/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/mul.c -------------------------------------------------------------------------------- /utils/5c/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/peep.c -------------------------------------------------------------------------------- /utils/5c/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/reg.c -------------------------------------------------------------------------------- /utils/5c/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/sgen.c -------------------------------------------------------------------------------- /utils/5c/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/swt.c -------------------------------------------------------------------------------- /utils/5c/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5c/txt.c -------------------------------------------------------------------------------- /utils/5cv/5cv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5cv/5cv.c -------------------------------------------------------------------------------- /utils/5l/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5l/asm.c -------------------------------------------------------------------------------- /utils/5l/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5l/l.h -------------------------------------------------------------------------------- /utils/5l/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5l/list.c -------------------------------------------------------------------------------- /utils/5l/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5l/mkfile -------------------------------------------------------------------------------- /utils/5l/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5l/noop.c -------------------------------------------------------------------------------- /utils/5l/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5l/obj.c -------------------------------------------------------------------------------- /utils/5l/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5l/pass.c -------------------------------------------------------------------------------- /utils/5l/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/5l/span.c -------------------------------------------------------------------------------- /utils/6a/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6a/a.h -------------------------------------------------------------------------------- /utils/6a/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6a/a.y -------------------------------------------------------------------------------- /utils/6a/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6a/lex.c -------------------------------------------------------------------------------- /utils/6a/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6a/mkfile -------------------------------------------------------------------------------- /utils/6c/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/cgen.c -------------------------------------------------------------------------------- /utils/6c/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/div.c -------------------------------------------------------------------------------- /utils/6c/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/enam.c -------------------------------------------------------------------------------- /utils/6c/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/gc.h -------------------------------------------------------------------------------- /utils/6c/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/list.c -------------------------------------------------------------------------------- /utils/6c/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/mkenam -------------------------------------------------------------------------------- /utils/6c/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/mkfile -------------------------------------------------------------------------------- /utils/6c/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/mul.c -------------------------------------------------------------------------------- /utils/6c/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/peep.c -------------------------------------------------------------------------------- /utils/6c/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/reg.c -------------------------------------------------------------------------------- /utils/6c/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/sgen.c -------------------------------------------------------------------------------- /utils/6c/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/swt.c -------------------------------------------------------------------------------- /utils/6c/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6c/txt.c -------------------------------------------------------------------------------- /utils/6l/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6l/asm.c -------------------------------------------------------------------------------- /utils/6l/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6l/l.h -------------------------------------------------------------------------------- /utils/6l/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6l/list.c -------------------------------------------------------------------------------- /utils/6l/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6l/mkfile -------------------------------------------------------------------------------- /utils/6l/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6l/obj.c -------------------------------------------------------------------------------- /utils/6l/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6l/pass.c -------------------------------------------------------------------------------- /utils/6l/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/6l/span.c -------------------------------------------------------------------------------- /utils/8a/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8a/a.h -------------------------------------------------------------------------------- /utils/8a/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8a/a.y -------------------------------------------------------------------------------- /utils/8a/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8a/l.s -------------------------------------------------------------------------------- /utils/8a/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8a/lex.c -------------------------------------------------------------------------------- /utils/8a/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8a/mkfile -------------------------------------------------------------------------------- /utils/8c/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/cgen.c -------------------------------------------------------------------------------- /utils/8c/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/div.c -------------------------------------------------------------------------------- /utils/8c/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/enam.c -------------------------------------------------------------------------------- /utils/8c/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/gc.h -------------------------------------------------------------------------------- /utils/8c/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/list.c -------------------------------------------------------------------------------- /utils/8c/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/mkenam -------------------------------------------------------------------------------- /utils/8c/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/mkfile -------------------------------------------------------------------------------- /utils/8c/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/mul.c -------------------------------------------------------------------------------- /utils/8c/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/peep.c -------------------------------------------------------------------------------- /utils/8c/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/reg.c -------------------------------------------------------------------------------- /utils/8c/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/sgen.c -------------------------------------------------------------------------------- /utils/8c/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/swt.c -------------------------------------------------------------------------------- /utils/8c/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8c/txt.c -------------------------------------------------------------------------------- /utils/8l/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8l/asm.c -------------------------------------------------------------------------------- /utils/8l/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8l/l.h -------------------------------------------------------------------------------- /utils/8l/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8l/list.c -------------------------------------------------------------------------------- /utils/8l/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8l/mkfile -------------------------------------------------------------------------------- /utils/8l/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8l/obj.c -------------------------------------------------------------------------------- /utils/8l/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8l/pass.c -------------------------------------------------------------------------------- /utils/8l/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/8l/span.c -------------------------------------------------------------------------------- /utils/acid/386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/acid/386 -------------------------------------------------------------------------------- /utils/acid/B.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/acid/B.sh -------------------------------------------------------------------------------- /utils/acid/arm: -------------------------------------------------------------------------------- 1 | please remove this file 2 | -------------------------------------------------------------------------------- /utils/acid/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/acid/mips -------------------------------------------------------------------------------- /utils/acid/port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/acid/port -------------------------------------------------------------------------------- /utils/awk/FIXES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/awk/FIXES -------------------------------------------------------------------------------- /utils/awk/awk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/awk/awk.h -------------------------------------------------------------------------------- /utils/awk/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/awk/b.c -------------------------------------------------------------------------------- /utils/awk/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/awk/lex.c -------------------------------------------------------------------------------- /utils/awk/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/awk/lib.c -------------------------------------------------------------------------------- /utils/awk/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/awk/run.c -------------------------------------------------------------------------------- /utils/c2l/Nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/Nt.c -------------------------------------------------------------------------------- /utils/c2l/c2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/c2l.c -------------------------------------------------------------------------------- /utils/c2l/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/cc.h -------------------------------------------------------------------------------- /utils/c2l/cc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/cc.y -------------------------------------------------------------------------------- /utils/c2l/com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/com.c -------------------------------------------------------------------------------- /utils/c2l/dcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/dcl.c -------------------------------------------------------------------------------- /utils/c2l/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/lex.c -------------------------------------------------------------------------------- /utils/c2l/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/mac.c -------------------------------------------------------------------------------- /utils/c2l/out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/out.c -------------------------------------------------------------------------------- /utils/c2l/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/c2l/sub.c -------------------------------------------------------------------------------- /utils/cat/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cat/cat.c -------------------------------------------------------------------------------- /utils/cc/Nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/Nt.c -------------------------------------------------------------------------------- /utils/cc/acid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/acid.c -------------------------------------------------------------------------------- /utils/cc/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/bits.c -------------------------------------------------------------------------------- /utils/cc/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/cc.h -------------------------------------------------------------------------------- /utils/cc/cc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/cc.y -------------------------------------------------------------------------------- /utils/cc/com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/com.c -------------------------------------------------------------------------------- /utils/cc/dcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/dcl.c -------------------------------------------------------------------------------- /utils/cc/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/lex.c -------------------------------------------------------------------------------- /utils/cc/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/mac.c -------------------------------------------------------------------------------- /utils/cc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/mkfile -------------------------------------------------------------------------------- /utils/cc/pgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/pgen.c -------------------------------------------------------------------------------- /utils/cc/pswt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/pswt.c -------------------------------------------------------------------------------- /utils/cc/scon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/scon.c -------------------------------------------------------------------------------- /utils/cc/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cc/sub.c -------------------------------------------------------------------------------- /utils/cp/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cp/cp.c -------------------------------------------------------------------------------- /utils/cp/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/cp/mkfile -------------------------------------------------------------------------------- /utils/ftl/ftl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ftl/ftl.c -------------------------------------------------------------------------------- /utils/iar/Nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/iar/Nt.c -------------------------------------------------------------------------------- /utils/iar/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/iar/ar.c -------------------------------------------------------------------------------- /utils/ka/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ka/a.h -------------------------------------------------------------------------------- /utils/ka/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ka/a.y -------------------------------------------------------------------------------- /utils/ka/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ka/l.s -------------------------------------------------------------------------------- /utils/ka/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ka/lex.c -------------------------------------------------------------------------------- /utils/ka/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ka/mkfile -------------------------------------------------------------------------------- /utils/ka/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ka/note -------------------------------------------------------------------------------- /utils/kc/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/cgen.c -------------------------------------------------------------------------------- /utils/kc/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/enam.c -------------------------------------------------------------------------------- /utils/kc/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/gc.h -------------------------------------------------------------------------------- /utils/kc/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/list.c -------------------------------------------------------------------------------- /utils/kc/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/mkenam -------------------------------------------------------------------------------- /utils/kc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/mkfile -------------------------------------------------------------------------------- /utils/kc/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/mul.c -------------------------------------------------------------------------------- /utils/kc/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/peep.c -------------------------------------------------------------------------------- /utils/kc/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/reg.c -------------------------------------------------------------------------------- /utils/kc/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/sgen.c -------------------------------------------------------------------------------- /utils/kc/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/swt.c -------------------------------------------------------------------------------- /utils/kc/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kc/txt.c -------------------------------------------------------------------------------- /utils/kl/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kl/asm.c -------------------------------------------------------------------------------- /utils/kl/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kl/foo.c -------------------------------------------------------------------------------- /utils/kl/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kl/l.h -------------------------------------------------------------------------------- /utils/kl/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kl/list.c -------------------------------------------------------------------------------- /utils/kl/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kl/mkfile -------------------------------------------------------------------------------- /utils/kl/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kl/noop.c -------------------------------------------------------------------------------- /utils/kl/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kl/obj.c -------------------------------------------------------------------------------- /utils/kl/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kl/pass.c -------------------------------------------------------------------------------- /utils/kl/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/kl/span.c -------------------------------------------------------------------------------- /utils/ld/Nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ld/Nt.c -------------------------------------------------------------------------------- /utils/ld/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ld/elf.c -------------------------------------------------------------------------------- /utils/ld/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ld/elf.h -------------------------------------------------------------------------------- /utils/mk/Nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/Nt.c -------------------------------------------------------------------------------- /utils/mk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/README -------------------------------------------------------------------------------- /utils/mk/arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/arc.c -------------------------------------------------------------------------------- /utils/mk/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/env.c -------------------------------------------------------------------------------- /utils/mk/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/file.c -------------------------------------------------------------------------------- /utils/mk/fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/fns.h -------------------------------------------------------------------------------- /utils/mk/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/job.c -------------------------------------------------------------------------------- /utils/mk/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/lex.c -------------------------------------------------------------------------------- /utils/mk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/main.c -------------------------------------------------------------------------------- /utils/mk/mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/mk.c -------------------------------------------------------------------------------- /utils/mk/mk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/mk.h -------------------------------------------------------------------------------- /utils/mk/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/mkfile -------------------------------------------------------------------------------- /utils/mk/rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/rc.c -------------------------------------------------------------------------------- /utils/mk/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/rule.c -------------------------------------------------------------------------------- /utils/mk/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/run.c -------------------------------------------------------------------------------- /utils/mk/sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/sh.c -------------------------------------------------------------------------------- /utils/mk/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/var.c -------------------------------------------------------------------------------- /utils/mk/word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mk/word.c -------------------------------------------------------------------------------- /utils/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mkfile -------------------------------------------------------------------------------- /utils/ms2/ms2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ms2/ms2.c -------------------------------------------------------------------------------- /utils/mv/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mv/mkfile -------------------------------------------------------------------------------- /utils/mv/mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/mv/mv.c -------------------------------------------------------------------------------- /utils/na/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/na/mkfile -------------------------------------------------------------------------------- /utils/na/na.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/na/na.h -------------------------------------------------------------------------------- /utils/na/na.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/na/na.man -------------------------------------------------------------------------------- /utils/na/na.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/na/na.y -------------------------------------------------------------------------------- /utils/nm/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/nm/mkfile -------------------------------------------------------------------------------- /utils/nm/nm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/nm/nm.c -------------------------------------------------------------------------------- /utils/qa/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qa/a.h -------------------------------------------------------------------------------- /utils/qa/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qa/a.y -------------------------------------------------------------------------------- /utils/qa/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qa/lex.c -------------------------------------------------------------------------------- /utils/qa/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qa/mkfile -------------------------------------------------------------------------------- /utils/qc/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/cgen.c -------------------------------------------------------------------------------- /utils/qc/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/enam.c -------------------------------------------------------------------------------- /utils/qc/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/gc.h -------------------------------------------------------------------------------- /utils/qc/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/list.c -------------------------------------------------------------------------------- /utils/qc/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/mkenam -------------------------------------------------------------------------------- /utils/qc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/mkfile -------------------------------------------------------------------------------- /utils/qc/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/mul.c -------------------------------------------------------------------------------- /utils/qc/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/peep.c -------------------------------------------------------------------------------- /utils/qc/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/reg.c -------------------------------------------------------------------------------- /utils/qc/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/sgen.c -------------------------------------------------------------------------------- /utils/qc/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/swt.c -------------------------------------------------------------------------------- /utils/qc/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/qc/txt.c -------------------------------------------------------------------------------- /utils/ql/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ql/asm.c -------------------------------------------------------------------------------- /utils/ql/cnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ql/cnam.c -------------------------------------------------------------------------------- /utils/ql/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ql/l.h -------------------------------------------------------------------------------- /utils/ql/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ql/list.c -------------------------------------------------------------------------------- /utils/ql/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ql/mkfile -------------------------------------------------------------------------------- /utils/ql/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ql/noop.c -------------------------------------------------------------------------------- /utils/ql/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ql/obj.c -------------------------------------------------------------------------------- /utils/ql/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ql/pass.c -------------------------------------------------------------------------------- /utils/ql/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/ql/span.c -------------------------------------------------------------------------------- /utils/rcsh/Nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/rcsh/Nt.c -------------------------------------------------------------------------------- /utils/rcsh/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/rcsh/io.c -------------------------------------------------------------------------------- /utils/rcsh/rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/rcsh/rc.h -------------------------------------------------------------------------------- /utils/rm/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/rm/mkfile -------------------------------------------------------------------------------- /utils/sed/sed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/sed/sed.c -------------------------------------------------------------------------------- /utils/sqz/sqz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/sqz/sqz.c -------------------------------------------------------------------------------- /utils/sqz/zqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/sqz/zqs.c -------------------------------------------------------------------------------- /utils/tc/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/cgen.c -------------------------------------------------------------------------------- /utils/tc/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/enam.c -------------------------------------------------------------------------------- /utils/tc/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/gc.h -------------------------------------------------------------------------------- /utils/tc/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/list.c -------------------------------------------------------------------------------- /utils/tc/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/mkenam -------------------------------------------------------------------------------- /utils/tc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/mkfile -------------------------------------------------------------------------------- /utils/tc/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/mul.c -------------------------------------------------------------------------------- /utils/tc/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/peep.c -------------------------------------------------------------------------------- /utils/tc/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/reg.c -------------------------------------------------------------------------------- /utils/tc/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/sgen.c -------------------------------------------------------------------------------- /utils/tc/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/swt.c -------------------------------------------------------------------------------- /utils/tc/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tc/txt.c -------------------------------------------------------------------------------- /utils/tl/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tl/asm.c -------------------------------------------------------------------------------- /utils/tl/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tl/l.h -------------------------------------------------------------------------------- /utils/tl/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tl/list.c -------------------------------------------------------------------------------- /utils/tl/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tl/mkfile -------------------------------------------------------------------------------- /utils/tl/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tl/noop.c -------------------------------------------------------------------------------- /utils/tl/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tl/obj.c -------------------------------------------------------------------------------- /utils/tl/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tl/pass.c -------------------------------------------------------------------------------- /utils/tl/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tl/span.c -------------------------------------------------------------------------------- /utils/tr/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tr/mkfile -------------------------------------------------------------------------------- /utils/tr/tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/tr/tr.c -------------------------------------------------------------------------------- /utils/va/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/va/a.h -------------------------------------------------------------------------------- /utils/va/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/va/a.y -------------------------------------------------------------------------------- /utils/va/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/va/l.s -------------------------------------------------------------------------------- /utils/va/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/va/lex.c -------------------------------------------------------------------------------- /utils/va/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/va/mkfile -------------------------------------------------------------------------------- /utils/vc/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/cgen.c -------------------------------------------------------------------------------- /utils/vc/enam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/enam.c -------------------------------------------------------------------------------- /utils/vc/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/gc.h -------------------------------------------------------------------------------- /utils/vc/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/list.c -------------------------------------------------------------------------------- /utils/vc/mkenam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/mkenam -------------------------------------------------------------------------------- /utils/vc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/mkfile -------------------------------------------------------------------------------- /utils/vc/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/mul.c -------------------------------------------------------------------------------- /utils/vc/peep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/peep.c -------------------------------------------------------------------------------- /utils/vc/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/reg.c -------------------------------------------------------------------------------- /utils/vc/sgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/sgen.c -------------------------------------------------------------------------------- /utils/vc/swt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/swt.c -------------------------------------------------------------------------------- /utils/vc/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vc/txt.c -------------------------------------------------------------------------------- /utils/vl/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vl/asm.c -------------------------------------------------------------------------------- /utils/vl/l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vl/l.h -------------------------------------------------------------------------------- /utils/vl/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vl/list.c -------------------------------------------------------------------------------- /utils/vl/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vl/mkfile -------------------------------------------------------------------------------- /utils/vl/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vl/noop.c -------------------------------------------------------------------------------- /utils/vl/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vl/obj.c -------------------------------------------------------------------------------- /utils/vl/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vl/pass.c -------------------------------------------------------------------------------- /utils/vl/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hall/ananta/HEAD/utils/vl/span.c --------------------------------------------------------------------------------