├── .hgignore ├── .hgtags ├── CHANGES ├── DragonFly └── 386 │ ├── bin │ └── .dreg │ ├── include │ ├── emu.h │ ├── fpuctl.h │ └── lib9.h │ └── lib │ └── .dreg ├── FreeBSD └── 386 │ ├── bin │ ├── data2c │ ├── iyacc │ ├── mk │ └── mkext │ └── include │ ├── emu.h │ ├── fpuctl.h │ └── lib9.h ├── INSTALL ├── Inferno ├── 386 │ └── include │ │ ├── lib9.h │ │ ├── u.h │ │ └── ureg.h ├── arm │ └── include │ │ ├── lib9.h │ │ ├── u.h │ │ └── ureg.h ├── mips │ └── include │ │ ├── lib9.h │ │ └── u.h ├── power │ └── include │ │ ├── lib9.h │ │ ├── u.h │ │ └── ureg.h ├── sparc │ └── include │ │ ├── lib9.h │ │ ├── u.h │ │ └── ureg.h ├── spim │ └── include │ │ ├── lib9.h │ │ └── u.h └── thumb │ └── include │ ├── lib9.h │ ├── u.h │ └── ureg.h ├── Irix └── mips │ ├── bin │ ├── awk │ ├── data2c │ ├── iyacc │ ├── mk │ └── mkext │ └── include │ ├── emu.h │ └── lib9.h ├── Linux ├── 386 │ ├── bin │ │ ├── data2c │ │ ├── iyacc │ │ ├── mk │ │ └── mkext │ └── include │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h ├── arm │ └── include │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h ├── power │ ├── bin │ │ ├── data2c │ │ ├── iyacc │ │ ├── limbo │ │ ├── mk │ │ └── mkext │ └── include │ │ ├── emu.h │ │ └── lib9.h └── spim │ └── include │ ├── emu.h │ ├── fpuctl.h │ └── lib9.h ├── MacOSX ├── 386 │ ├── bin │ │ ├── data2c │ │ ├── iyacc │ │ ├── mk │ │ └── mkext │ └── include │ │ ├── emu.h │ │ ├── fpuctl.h │ │ └── lib9.h ├── README ├── power │ ├── bin │ │ ├── data2c │ │ ├── iyacc │ │ ├── mk │ │ └── mkext │ └── include │ │ ├── emu.h │ │ └── lib9.h └── tcshrc ├── Mkdirs ├── NOTICE ├── NetBSD └── 386 │ ├── bin │ ├── data2c │ ├── mk │ ├── mkext │ └── yacc │ └── include │ ├── emu.h │ ├── fpuctl.h │ └── lib9.h ├── Nt └── 386 │ ├── bin │ ├── awk.exe │ ├── c2l.exe │ ├── cat.exe │ ├── cp.exe │ ├── data2c.exe │ ├── echo.exe │ ├── format.exe │ ├── gzip.exe │ ├── infdb.exe │ ├── iyacc.exe │ ├── mk.exe │ ├── mkdir.exe │ ├── mkext.exe │ ├── mv.exe │ ├── rcsh.exe │ ├── rm.exe │ ├── sed.exe │ ├── test.exe │ └── tr.exe │ └── include │ ├── emu.h │ └── lib9.h ├── OpenBSD └── 386 │ └── include │ ├── emu.h │ ├── fpuctl.h │ └── lib9.h ├── Plan9 ├── 386 │ ├── bin │ │ └── data2c │ └── include │ │ ├── emu.h │ │ ├── lib9.h │ │ └── u.h ├── arm │ ├── bin │ │ └── .dreg │ ├── include │ │ ├── emu.h │ │ ├── lib9.h │ │ └── u.h │ └── lib │ │ └── .dreg ├── include │ ├── lib9.h │ └── lib9x.h ├── mips │ └── include │ │ ├── emu.h │ │ ├── lib9.h │ │ └── u.h ├── power │ └── include │ │ ├── emu.h │ │ ├── lib9.h │ │ └── u.h └── sparc │ └── include │ ├── emu.h │ ├── lib9.h │ ├── os.h │ └── u.h ├── README.md ├── Solaris ├── 386 │ └── include │ │ ├── emu.h │ │ └── lib9.h └── sparc │ ├── bin │ ├── data2c │ ├── iyacc │ ├── mk │ └── mkext │ └── include │ ├── emu.h │ ├── fpuctl.h │ └── lib9.h ├── acme ├── acid │ ├── Acid.dis │ ├── Acid0.dis │ ├── guide │ └── readme ├── bin │ ├── guide │ └── readme ├── dis │ ├── adiff.dis │ ├── agrep.dis │ ├── awd.dis │ ├── cd.dis │ ├── new.dis │ ├── spout.dis │ ├── win.dis │ └── winm.dis ├── edit │ ├── a.dis │ ├── c.dis │ ├── d.dis │ ├── e.dis │ ├── g.dis │ ├── guide │ ├── i.dis │ ├── p.dis │ ├── pipe.dis │ ├── readme │ └── x.dis └── mail │ ├── Mail.dis │ ├── Mailpop3.dis │ ├── guide │ ├── mkbox.dis │ └── readme ├── appl ├── NOTICE ├── acme │ ├── acme.b │ ├── acme.m │ ├── acme │ │ ├── acid │ │ │ ├── guide │ │ │ ├── mkfile │ │ │ ├── readme │ │ │ └── src │ │ │ │ ├── Acid.b │ │ │ │ ├── Acid0.b │ │ │ │ └── mkfile │ │ ├── bin │ │ │ ├── guide │ │ │ ├── mkfile │ │ │ ├── readme │ │ │ └── src │ │ │ │ ├── adiff.b │ │ │ │ ├── agrep.b │ │ │ │ ├── awd.b │ │ │ │ ├── cd.b │ │ │ │ ├── mkfile │ │ │ │ ├── new.b │ │ │ │ ├── spout.b │ │ │ │ ├── win.b │ │ │ │ └── winm.b │ │ ├── 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 │ ├── 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 │ │ └── y.debug │ ├── 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 │ │ ├── NOTICE │ │ ├── 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 │ │ ├── doc │ │ │ └── History │ │ ├── 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 │ ├── NOTICE │ ├── 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 │ │ ├── NOTICE │ │ ├── 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 ├── dis ├── 9660srv.dis ├── 9export.dis ├── 9srvfs.dis ├── 9win.dis ├── B.dis ├── acme.dis ├── acme │ ├── acme.dis │ ├── buff.dis │ ├── col.dis │ ├── dat.dis │ ├── disk.dis │ ├── ecmd.dis │ ├── edit.dis │ ├── elog.dis │ ├── exec.dis │ ├── file.dis │ ├── frame.dis │ ├── fsys.dis │ ├── graph.dis │ ├── gui.dis │ ├── guiwm.dis │ ├── look.dis │ ├── regx.dis │ ├── row.dis │ ├── scrl.dis │ ├── styxaux.dis │ ├── text.dis │ ├── time.dis │ ├── util.dis │ ├── wind.dis │ └── xfid.dis ├── alphabet │ ├── abc.dis │ ├── abc │ │ ├── abc.dis │ │ ├── autoconvert.dis │ │ ├── autodeclare.dis │ │ ├── declare.dis │ │ ├── declares.dis │ │ ├── define.dis │ │ ├── eval.dis │ │ ├── import.dis │ │ ├── rewrite.dis │ │ ├── type.dis │ │ ├── typeset.dis │ │ └── undeclare.dis │ ├── abctypes.dis │ ├── alphabet.dis │ ├── alphabet.shmod.dis │ ├── endpoints.dis │ ├── endpointsrv.dis │ ├── eval.dis │ ├── extvalues.dis │ ├── fs.dis │ ├── fs │ │ ├── and.dis │ │ ├── bundle.dis │ │ ├── chstat.dis │ │ ├── compose.dis │ │ ├── depth.dis │ │ ├── entries.dis │ │ ├── exec.dis │ │ ├── filter.dis │ │ ├── ls.dis │ │ ├── match.dis │ │ ├── merge.dis │ │ ├── mergewrite.dis │ │ ├── mode.dis │ │ ├── newer.dis │ │ ├── not.dis │ │ ├── or.dis │ │ ├── path.dis │ │ ├── pipe.dis │ │ ├── print.dis │ │ ├── proto.dis │ │ ├── query.dis │ │ ├── run.dis │ │ ├── select.dis │ │ ├── setroot.dis │ │ ├── size.dis │ │ ├── unbundle.dis │ │ ├── walk.dis │ │ └── write.dis │ ├── fsfilter.dis │ ├── fstypes.dis │ ├── grid.dis │ ├── grid │ │ ├── farm.dis │ │ ├── line2rec.dis │ │ ├── local.dis │ │ ├── remote.dis │ │ └── rexec.dis │ ├── gridtypes.dis │ ├── main │ │ ├── auth.dis │ │ ├── cat.dis │ │ ├── create.dis │ │ ├── dial.dis │ │ ├── echo.dis │ │ ├── env.dis │ │ ├── export.dis │ │ ├── fd.dis │ │ ├── filter.dis │ │ ├── mount.dis │ │ ├── par.dis │ │ ├── parse.dis │ │ ├── pretty.dis │ │ ├── print.dis │ │ ├── read.dis │ │ ├── readall.dis │ │ ├── rewrite.dis │ │ ├── seq.dis │ │ ├── unparse.dis │ │ ├── w2fd.dis │ │ └── wait.dis │ ├── mktypeset.dis │ ├── proxy.dis │ ├── reports.dis │ └── rexecsrv.dis ├── ar.dis ├── archfs.dis ├── asm.dis ├── auhdr.dis ├── auplay.dis ├── auth │ ├── aescbc.dis │ ├── ai2key.dis │ ├── changelogin.dis │ ├── convpasswd.dis │ ├── countersigner.dis │ ├── createsignerkey.dis │ ├── dsagen.dis │ ├── factotum.dis │ ├── feedkey.dis │ ├── getpk.dis │ ├── infauth.dis │ ├── keyfs.dis │ ├── keysrv.dis │ ├── logind.dis │ ├── mkauthinfo.dis │ ├── passwd.dis │ ├── proto │ │ ├── authquery.dis │ │ ├── infauth.dis │ │ ├── p9any.dis │ │ ├── pass.dis │ │ └── rsa.dis │ ├── rpc.dis │ ├── rsagen.dis │ ├── secstore.dis │ ├── sign.dis │ ├── signer.dis │ └── verify.dis ├── auxi │ ├── camera.dis │ ├── chatsrv.dis │ ├── cpuslave.dis │ ├── digest.dis │ ├── fpgaload.dis │ ├── mangaload.dis │ ├── ns.dis │ ├── odbcmnt.dis │ ├── pcmcia.dis │ ├── rdbgsrv.dis │ ├── rstyxd.dis │ └── wbsrv.dis ├── avr │ └── burn.dis ├── basename.dis ├── bind.dis ├── broke ├── bytes.dis ├── cal.dis ├── calc.dis ├── cat.dis ├── cd.dis ├── cddb.dis ├── charon.dis ├── charon │ ├── build.dis │ ├── chutils.dis │ ├── cookiesrv.dis │ ├── ctype.dis │ ├── date.dis │ ├── event.dis │ ├── file.dis │ ├── ftp.dis │ ├── gui.dis │ ├── http.dis │ ├── img.dis │ ├── jscript.dis │ ├── layout.dis │ ├── lex.dis │ └── url.dis ├── chgrp.dis ├── chmod.dis ├── cleanname.dis ├── cmp.dis ├── collab │ ├── clients │ │ ├── chat.dis │ │ ├── poll.dis │ │ ├── poller.dis │ │ └── whiteboard.dis │ ├── collabsrv.dis │ ├── connect.dis │ ├── lib │ │ └── messages.dis │ ├── proxy.dis │ ├── servers │ │ ├── chatsrv.dis │ │ ├── memfssrv.dis │ │ ├── mpx.dis │ │ └── wbsrv.dis │ └── srvmgr.dis ├── comm.dis ├── cook.dis ├── cp.dis ├── cprof.dis ├── cpu.dis ├── crypt.dis ├── date.dis ├── dbfs.dis ├── dbm │ ├── delete.dis │ ├── fetch.dis │ ├── keys.dis │ ├── list.dis │ └── store.dis ├── dd.dis ├── demo │ ├── camera │ │ ├── camera.dis │ │ ├── camload.bit │ │ ├── camproc.bit │ │ ├── jpg2bit.dis │ │ ├── readjpg.dis │ │ ├── runcam │ │ └── tkinterface.dis │ ├── chat │ │ ├── chat.dis │ │ ├── chatclient │ │ └── chatsrv.dis │ ├── cpupool │ │ ├── regpoll.dis │ │ └── runrstyx │ ├── lego │ │ ├── clockface.dis │ │ ├── clockreg │ │ ├── firmdl.dis │ │ ├── legolink.dis │ │ ├── rcxsend.dis │ │ ├── styx.srec │ │ └── timers.dis │ ├── ns │ │ ├── ns.dis │ │ └── runns │ ├── odbc │ │ ├── odbcmnt.dis │ │ └── runodbc │ ├── readjpg.dis │ ├── spree │ │ └── spreeclient │ └── whiteboard │ │ ├── runwb │ │ ├── wbsrv.dis │ │ └── whiteboard.dis ├── dial.dis ├── diff.dis ├── disdep.dis ├── disdump.dis ├── disk │ ├── calc.tab.dis │ ├── fdisk.dis │ ├── format.dis │ ├── ftl.dis │ ├── kfs.dis │ ├── kfscmd.dis │ ├── mbr.dis │ ├── mkext.dis │ ├── mkfs.dis │ ├── pedit.dis │ └── prep.dis ├── dossrv.dis ├── du.dis ├── ebook │ ├── cssfont.dis │ ├── cssparser.dis │ ├── ebook.dis │ ├── mimeimage.dis │ ├── oebpackage.dis │ ├── reader.dis │ ├── strmap.dis │ ├── stylesheet.dis │ ├── table.dis │ └── units.dis ├── echo.dis ├── ed.dis ├── emuinit.dis ├── env.dis ├── export.dis ├── fc.dis ├── fcp.dis ├── fmt.dis ├── fortune.dis ├── freq.dis ├── fs.dis ├── fs │ ├── and.dis │ ├── bundle.dis │ ├── chstat.dis │ ├── compose.dis │ ├── depth.dis │ ├── entries.dis │ ├── eval.dis │ ├── exec.dis │ ├── filter.dis │ ├── join.dis │ ├── ls.dis │ ├── match.dis │ ├── merge.dis │ ├── merge2.dis │ ├── mergewrite.dis │ ├── mode.dis │ ├── not.dis │ ├── or.dis │ ├── path.dis │ ├── pipe.dis │ ├── print.dis │ ├── proto.dis │ ├── query.dis │ ├── run.dis │ ├── select.dis │ ├── setroot.dis │ ├── size.dis │ ├── unbundle.dis │ ├── void.dis │ ├── walk.dis │ └── write.dis ├── ftest.dis ├── ftpfs.dis ├── getauthinfo.dis ├── gettar.dis ├── grep.dis ├── grid │ ├── blurdemo.dis │ ├── cpupool.dis │ ├── demo │ │ ├── block.dis │ │ └── blur.dis │ ├── find.dis │ ├── jpg2bit.dis │ ├── lib │ │ ├── announce.dis │ │ ├── browser.dis │ │ ├── fbrowse.dis │ │ └── srvbrowse.dis │ ├── query.dis │ ├── readjpg.dis │ ├── register.dis │ ├── reglisten.dis │ ├── regstyxlisten.dis │ ├── remotelogon.dis │ ├── spreesrv │ └── usercreatesrv.dis ├── gunzip.dis ├── gzip.dis ├── idea.dis ├── import.dis ├── install │ ├── applylog.dis │ ├── arch.dis │ ├── archfs.dis │ ├── ckproto.dis │ ├── create.dis │ ├── eproto.dis │ ├── info.dis │ ├── insbylog │ ├── inst.dis │ ├── install.dis │ ├── log.dis │ ├── logs.dis │ ├── mergelog.dis │ ├── mkproto.dis │ ├── proto.dis │ ├── proto2list.dis │ ├── updatelog.dis │ ├── wdiff.dis │ ├── wfind.dis │ ├── wrap.dis │ └── wrap2list.dis ├── iostats.dis ├── ip │ ├── bootpd.dis │ ├── dhcp.dis │ ├── nppp │ │ ├── modem.dis │ │ ├── ppplink.dis │ │ └── script.dis │ ├── ping.dis │ ├── ppp │ │ ├── modem.dis │ │ ├── pppclient.dis │ │ ├── pppdial.dis │ │ ├── pppgui.dis │ │ ├── ppptest.dis │ │ └── script.dis │ ├── rip.dis │ ├── sntp.dis │ ├── tftpd.dis │ └── virgild.dis ├── itest.dis ├── itreplay.dis ├── kill.dis ├── lc ├── lego │ ├── clock.dis │ ├── clockface.dis │ ├── firmdl.dis │ ├── link.dis │ ├── rcxsend.dis │ ├── send.dis │ └── timers.dis ├── lib │ ├── arg.dis │ ├── asn1.dis │ ├── attrdb.dis │ ├── attrhash.dis │ ├── auth.dis │ ├── auth9.dis │ ├── bloomfilter.dis │ ├── bufio.dis │ ├── cfg.dis │ ├── cfgfile.dis │ ├── chanfill.dis │ ├── complete.dis │ ├── convcs │ │ ├── 8bit_stob.dis │ │ ├── big5_btos.dis │ │ ├── big5_stob.dis │ │ ├── convcs.dis │ │ ├── cp932_btos.dis │ │ ├── cp_btos.dis │ │ ├── cp_stob.dis │ │ ├── euc-jp_btos.dis │ │ ├── gb2312_btos.dis │ │ ├── utf16_btos.dis │ │ ├── utf16_stob.dis │ │ ├── utf8_btos.dis │ │ └── utf8_stob.dis │ ├── crc.dis │ ├── crypt │ │ ├── pkcs.dis │ │ ├── ssl3.dis │ │ ├── sslsession.dis │ │ └── x509.dis │ ├── csv.dis │ ├── daytime.dis │ ├── db.dis │ ├── dbm.dis │ ├── dbsrv.dis │ ├── debug.dis │ ├── deflate.dis │ ├── devpointer.dis │ ├── dhcpclient.dis │ ├── dial.dis │ ├── dialog.dis │ ├── dict.dis │ ├── dis.dis │ ├── diskblocks.dis │ ├── disks.dis │ ├── dividers.dis │ ├── drawmux.dis │ ├── ecmascript.dis │ ├── encoding │ │ ├── base16.dis │ │ ├── base32.dis │ │ ├── base32a.dis │ │ └── base64.dis │ ├── env.dis │ ├── ether.dis │ ├── exception.dis │ ├── factotum.dis │ ├── filepat.dis │ ├── format.dis │ ├── fsfilter.dis │ ├── fslib.dis │ ├── fsproto.dis │ ├── ftree │ │ ├── cptree.dis │ │ ├── ftree.dis │ │ └── items.dis │ ├── hash.dis │ ├── html.dis │ ├── ida │ │ ├── ida.dis │ │ └── idatab.dis │ ├── imageremap.dis │ ├── inflate.dis │ ├── ip.dis │ ├── ipattr.dis │ ├── ir.dis │ ├── irsage.dis │ ├── irsim.dis │ ├── itslib.dis │ ├── json.dis │ ├── keyset.dis │ ├── libc.dis │ ├── libc0.dis │ ├── lists.dis │ ├── lock.dis │ ├── login.dis │ ├── man.dis │ ├── mash │ │ ├── builtins.dis │ │ ├── history.dis │ │ ├── make.dis │ │ └── tk.dis │ ├── mashlib.dis │ ├── mashparse.dis │ ├── memfs.dis │ ├── mpeg.dis │ ├── msgio.dis │ ├── names.dis │ ├── nametree.dis │ ├── newns.dis │ ├── ninep.dis │ ├── oldauth.dis │ ├── palm.dis │ ├── palmdb.dis │ ├── palmfile.dis │ ├── parseman.dis │ ├── plumbing.dis │ ├── plumbmsg.dis │ ├── pop3.dis │ ├── popup.dis │ ├── powerman.dis │ ├── print │ │ ├── hp_driver.dis │ │ ├── print.dis │ │ └── scaler.dis │ ├── profile.dis │ ├── pslib.dis │ ├── quicktime.dis │ ├── rabin.dis │ ├── rand.dis │ ├── random.dis │ ├── readdir.dis │ ├── readgif.dis │ ├── readjpg.dis │ ├── readpicfile.dis │ ├── readpng.dis │ ├── readxbitmap.dis │ ├── regex.dis │ ├── regexutils.dis │ ├── registries.dis │ ├── rfc822.dis │ ├── riff.dis │ ├── scoretable.dis │ ├── scsiio.dis │ ├── secstore.dis │ ├── selectfile.dis │ ├── sets.dis │ ├── sets32.dis │ ├── sexprs.dis │ ├── slip.dis │ ├── smtp.dis │ ├── sort.dis │ ├── spki │ │ ├── keyreps.dis │ │ ├── spki.dis │ │ └── verifier.dis │ ├── ssl.dis │ ├── string.dis │ ├── strinttab.dis │ ├── strokes │ │ ├── buildstrokes.dis │ │ ├── readstrokes.dis │ │ ├── strokes.dis │ │ └── writestrokes.dis │ ├── styx.dis │ ├── styxconv │ │ ├── new2old.dis │ │ ├── old2new.dis │ │ ├── ostyx.dis │ │ └── styxconv.dis │ ├── styxflush.dis │ ├── styxlib.dis │ ├── styxpersist.dis │ ├── styxservers.dis │ ├── tables.dis │ ├── tabs.dis │ ├── tcl_calc.dis │ ├── tcl_core.dis │ ├── tcl_inthash.dis │ ├── tcl_io.dis │ ├── tcl_list.dis │ ├── tcl_modhash.dis │ ├── tcl_stack.dis │ ├── tcl_strhash.dis │ ├── tcl_string.dis │ ├── tcl_symhash.dis │ ├── tcl_tk.dis │ ├── tcl_utils.dis │ ├── tftp.dis │ ├── timers.dis │ ├── titlebar.dis │ ├── tkclient.dis │ ├── translate.dis │ ├── ubfa.dis │ ├── url.dis │ ├── usb │ │ ├── usb.dis │ │ ├── usbmass.dis │ │ ├── usbmct.dis │ │ └── usbmouse.dis │ ├── vac.dis │ ├── venti.dis │ ├── virgil.dis │ ├── volume.dis │ ├── w3c │ │ ├── css.dis │ │ ├── uris.dis │ │ └── xpointers.dis │ ├── wait.dis │ ├── watchvars.dis │ ├── winplace.dis │ ├── wmclient.dis │ ├── wmlib.dis │ ├── wmsrv.dis │ ├── workdir.dis │ ├── writegif.dis │ └── xml.dis ├── limbo.dis ├── listen.dis ├── lockfs.dis ├── logfile.dis ├── look.dis ├── lookman ├── ls.dis ├── lstar.dis ├── m4.dis ├── man ├── man2html.dis ├── man2txt.dis ├── mash.dis ├── math │ ├── ack.dis │ ├── crackerbarrel.dis │ ├── factor.dis │ ├── ffts.dis │ ├── fibonacci.dis │ ├── fit.dis │ ├── genprimes.dis │ ├── geodesy.dis │ ├── gr.dis │ ├── graph0.dis │ ├── hist0.dis │ ├── linalg.dis │ ├── linbench.dis │ ├── mersenne.dis │ ├── parts.dis │ ├── perms.dis │ ├── pi.dis │ ├── polyfill.dis │ ├── polyhedra.dis │ ├── powers.dis │ ├── primes.dis │ └── sieve.dis ├── mc.dis ├── md5sum.dis ├── mdb.dis ├── memfs.dis ├── metamorph.dis ├── mk.dis ├── mkdir.dis ├── mntgen.dis ├── mount.dis ├── mouse.dis ├── mpc │ ├── qconfig.dis │ └── qflash.dis ├── mpeg │ ├── decode.dis │ ├── decode4.dis │ ├── fixidct.dis │ ├── fltidct.dis │ ├── makergbvmap.dis │ ├── mpeg.dis │ ├── mpegio.dis │ ├── refidct.dis │ ├── remap.dis │ ├── remap1.dis │ ├── remap2.dis │ ├── remap24.dis │ ├── remap4.dis │ ├── remap8.dis │ ├── scidct.dis │ └── vlc.dis ├── mprof.dis ├── mv.dis ├── ndb │ ├── cs.dis │ ├── csquery.dis │ ├── dns.dis │ ├── dnsquery.dis │ ├── mkhash.dis │ ├── query.dis │ ├── registry.dis │ └── regquery.dis ├── netkey.dis ├── netstat.dis ├── newer.dis ├── ns.dis ├── nsbuild.dis ├── os.dis ├── p.dis ├── palm │ ├── connex.dis │ ├── desklink.dis │ └── palmsrv.dis ├── pause.dis ├── plumb.dis ├── plumber.dis ├── prof.dis ├── ps.dis ├── puttar.dis ├── pwd.dis ├── ramfile.dis ├── randpass.dis ├── raw2iaf.dis ├── rawdbfs.dis ├── rcmd.dis ├── rdp.dis ├── read.dis ├── rioimport.dis ├── rm.dis ├── runas.dis ├── sed.dis ├── sendmail.dis ├── sh.dis ├── sh │ ├── alphabet.dis │ ├── arg.dis │ ├── csv.dis │ ├── echo.dis │ ├── expr.dis │ ├── file2chan.dis │ ├── mk.dis │ ├── mload.dis │ ├── mpexpr.dis │ ├── regex.dis │ ├── sexprs.dis │ ├── sh.dis │ ├── shmk.dis │ ├── std.dis │ ├── string.dis │ ├── test.dis │ └── tk.dis ├── sha1sum.dis ├── shutdown ├── sig ├── sleep.dis ├── sort.dis ├── spki │ └── verify.dis ├── spree │ ├── archives.dis │ ├── clients │ │ ├── cards.dis │ │ ├── gather.dis │ │ ├── lobby.dis │ │ └── othello.dis │ ├── engines │ │ ├── afghan.dis │ │ ├── bounce.dis │ │ ├── canfield.dis │ │ ├── freecell.dis │ │ ├── gather.dis │ │ ├── lobby.dis │ │ ├── othello.dis │ │ ├── racingdemon.dis │ │ ├── spider.dis │ │ ├── spit.dis │ │ └── whist.dis │ ├── join.dis │ ├── joinsession.dis │ ├── lib │ │ ├── allow.dis │ │ ├── cardlib.dis │ │ ├── commandline.dis │ │ ├── objstore.dis │ │ └── tricks.dis │ └── spree.dis ├── src.dis ├── stack.dis ├── stackv.dis ├── stream.dis ├── strings.dis ├── styxchat.dis ├── styxlisten.dis ├── styxmon.dis ├── sum.dis ├── svc │ ├── auth │ ├── httpd │ │ ├── alarms.dis │ │ ├── cache.dis │ │ ├── cgiparse.dis │ │ ├── contents.dis │ │ ├── date.dis │ │ ├── echo.dis │ │ ├── httpd.dis │ │ ├── imagemap.dis │ │ ├── parser.dis │ │ ├── redirect.dis │ │ └── stats.dis │ ├── net │ ├── registry │ ├── rstyx │ ├── styx │ └── webget │ │ ├── date.dis │ │ ├── file.dis │ │ ├── ftp.dis │ │ ├── http.dis │ │ ├── image2enc.dis │ │ ├── message.dis │ │ ├── webget.dis │ │ └── wgutils.dis ├── tail.dis ├── tarfs.dis ├── tclsh.dis ├── tcs.dis ├── tee.dis ├── telnet.dis ├── test.dis ├── time.dis ├── timestamp.dis ├── tiny │ ├── broke.dis │ ├── rm.dis │ └── sh.dis ├── tkcmd.dis ├── tokenize.dis ├── touch.dis ├── touchcal.dis ├── tr.dis ├── trfs.dis ├── tsort.dis ├── unicode.dis ├── uniq.dis ├── units.dis ├── unmount.dis ├── usb │ └── usbd.dis ├── uudecode.dis ├── uuencode.dis ├── vacfs.dis ├── vacget.dis ├── vacput.dis ├── wav2iaf.dis ├── wc.dis ├── webgrab.dis ├── wish.dis ├── wm │ ├── about.dis │ ├── avi.dis │ ├── bounce.dis │ ├── brutus.dis │ ├── brutus │ │ ├── excerpt.dis │ │ ├── image.dis │ │ ├── mod.dis │ │ └── table.dis │ ├── c4.dis │ ├── calendar.dis │ ├── chat.dis │ ├── clock.dis │ ├── coffee.dis │ ├── collide.dis │ ├── colors.dis │ ├── cprof.dis │ ├── date.dis │ ├── deb.dis │ ├── debdata.dis │ ├── debsrc.dis │ ├── dir.dis │ ├── dmview.dis │ ├── dmwm.dis │ ├── edit.dis │ ├── filename.dis │ ├── ftree.dis │ ├── getauthinfo.dis │ ├── keyboard.dis │ ├── logon.dis │ ├── logwindow.dis │ ├── man.dis │ ├── mand.dis │ ├── mash.dis │ ├── memory.dis │ ├── mpeg.dis │ ├── mprof.dis │ ├── pen.dis │ ├── polyhedra.dis │ ├── prof.dis │ ├── qt.dis │ ├── readmail.dis │ ├── remotelogon.dis │ ├── reversi.dis │ ├── rmtdir.dis │ ├── rt.dis │ ├── sendmail.dis │ ├── sh.dis │ ├── smenu.dis │ ├── snake.dis │ ├── stopwatch.dis │ ├── sweeper.dis │ ├── task.dis │ ├── telnet.dis │ ├── tetris.dis │ ├── toolbar.dis │ ├── unibrowse.dis │ ├── view.dis │ ├── vt.dis │ ├── wish.dis │ ├── wm.dis │ └── wmplay.dis ├── wmexport.dis ├── wmimport.dis ├── xargs.dis ├── xd.dis ├── yacc.dis └── zeros.dis ├── doc ├── 20010618.ms ├── 20010618.pdf ├── 20011003.ms ├── 20011003.pdf ├── 20020628.ms ├── 20020628.pdf ├── 20020715.ms ├── INSTALL1.ms ├── acid.ms ├── acid.pdf ├── acidpaper.ms ├── acidpaper.pdf ├── acidtut.ms ├── acidtut.pdf ├── acme │ ├── acme.ms │ ├── acme.pdf │ └── mkfile ├── asm.ms ├── asm.pdf ├── backmatter.pdf ├── bltj.ms ├── bltj.pdf ├── changes.ms ├── changes.pdf ├── compiler.ms ├── compiler.pdf ├── descent │ ├── descent.ms │ ├── descent.pdf │ └── mkfile ├── dev.ms ├── dev.pdf ├── dis.ms ├── dis.pdf ├── ebookimp.ms ├── ebookimp.pdf ├── fonts ├── fonts.bem ├── fonts.pal ├── frontmatter.pdf ├── gridinstall.ms ├── gridinstall.pdf ├── hotchips.ms ├── hotchips.pdf ├── install.ms ├── install.pdf ├── lego.ms ├── lego.pdf ├── limbo │ ├── addendum.ms │ ├── addendum.pdf │ ├── limbo.ms │ ├── limbo.pdf │ ├── limbo.rc │ ├── mkfile │ └── synsum ├── limbotk │ ├── f1.gif │ ├── f1.ps │ ├── f2.gif │ ├── f2.ps │ ├── mkfile │ ├── tk.ms │ ├── tk.pdf │ └── tk.ps ├── lprof.ms ├── lprof.pdf ├── mk.ms ├── mk.pdf ├── mkfile ├── perform │ ├── mkfile │ ├── perform.ms │ └── perform.pdf ├── port.ms ├── port.pdf ├── realinferno │ ├── mkfile │ ├── real.ms │ └── real.pdf ├── sh.ms ├── sh.pdf ├── styx.ms └── styx.pdf ├── empties ├── emu ├── DragonFly │ ├── README │ ├── asm-386.S │ ├── audio.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── emu-g │ ├── mkfile │ └── os.c ├── FreeBSD │ ├── asm-386.S │ ├── audio.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── emu-g │ ├── mkfile │ ├── mkfile-FreeBSD │ └── os.c ├── Irix │ ├── NOTE │ ├── asm-mips.s │ ├── cmd.c │ ├── devfs.c │ ├── emu │ ├── 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 │ ├── emu-g │ ├── emu-wrt │ ├── mk-wrt │ ├── mkfile │ ├── mkfile-386 │ ├── mkfile-arm │ ├── mkfile-mips │ ├── mkfile-power │ ├── os-clone.c │ ├── os.c │ ├── segflush-386.c │ ├── segflush-arm.c │ ├── segflush-mips.S │ ├── segflush-power.c │ └── segflush-spim.S ├── MacOSX │ ├── NOTE │ ├── NOTICE │ ├── asm-386.s │ ├── asm-power.s │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── emu-g │ ├── keycodes.h │ ├── mkfile │ ├── mkfile-g │ ├── mkfile-x11 │ ├── os.c │ └── win.c ├── NOTICE ├── NetBSD │ ├── asm-386.S │ ├── audio.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── emu.c │ ├── mkfile │ ├── mkfile-NetBSD │ └── os.c ├── Nt │ ├── audio.c │ ├── cmd.c │ ├── devarch.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── 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 │ ├── emu │ ├── mkfile │ ├── mkfile-OpenBSD │ ├── os.c │ └── rfork_thread.S ├── Plan9 │ ├── asm-386.s │ ├── asm-arm.s │ ├── asm-mips.s │ ├── asm-power.s │ ├── asm-sparc.s │ ├── cmd.c │ ├── devfs.c │ ├── devsrv9.c │ ├── emu │ ├── emusig │ ├── mkfile │ ├── os.c │ └── win.c ├── Solaris │ ├── asm-386.s │ ├── asm-sparc.s │ ├── audio.c │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── mkfile │ └── os.c ├── Unixware │ ├── asm-386.s │ ├── cmd.c │ ├── deveia.c │ ├── devfs.c │ ├── emu │ ├── mkfile │ ├── mkfile-Unixware │ └── os.c ├── mkfile └── 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 ├── fonts ├── LICENCE ├── LICENCE.orig ├── 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 ├── 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 ├── lucida │ ├── Althebrew.10.0 │ ├── Althebrew.10.1 │ ├── Althebrew.10.2 │ ├── Althebrew.12.0 │ ├── Althebrew.12.1 │ ├── Althebrew.12.2 │ ├── Althebrew.14.0 │ ├── Althebrew.14.1 │ ├── Althebrew.14.2 │ ├── Althebrew.16.0 │ ├── Althebrew.16.1 │ ├── Althebrew.16.2 │ ├── Althebrew.18.0 │ ├── Althebrew.18.1 │ ├── Althebrew.18.2 │ ├── Althebrew.20.0 │ ├── Althebrew.20.1 │ ├── Althebrew.20.2 │ ├── Althebrew.24.0 │ ├── Althebrew.24.1 │ ├── Althebrew.24.2 │ ├── Althebrew.28.0 │ ├── Althebrew.28.1 │ ├── Althebrew.28.2 │ ├── Althebrew.32.0 │ ├── Althebrew.32.1 │ ├── Althebrew.32.2 │ ├── Althebrew.5.0 │ ├── Althebrew.5.1 │ ├── Althebrew.5.2 │ ├── Althebrew.6.0 │ ├── Althebrew.6.1 │ ├── Althebrew.6.2 │ ├── Althebrew.7.0 │ ├── Althebrew.7.1 │ ├── Althebrew.7.2 │ ├── Althebrew.8.0 │ ├── Althebrew.8.1 │ ├── Althebrew.8.2 │ ├── Althebrew.9.0 │ ├── Althebrew.9.1 │ ├── Althebrew.9.2 │ ├── Altshades.10.0 │ ├── Altshades.10.1 │ ├── Altshades.10.2 │ ├── Altshades.12.0 │ ├── Altshades.12.1 │ ├── Altshades.12.2 │ ├── Altshades.14.0 │ ├── Altshades.14.1 │ ├── Altshades.14.2 │ ├── Altshades.16.0 │ ├── Altshades.16.1 │ ├── Altshades.16.2 │ ├── Altshades.18.0 │ ├── Altshades.18.1 │ ├── Altshades.18.2 │ ├── Altshades.20.0 │ ├── Altshades.20.1 │ ├── Altshades.20.2 │ ├── Altshades.24.0 │ ├── Altshades.24.1 │ ├── Altshades.24.2 │ ├── Altshades.28.0 │ ├── Altshades.28.1 │ ├── Altshades.28.2 │ ├── Altshades.32.0 │ ├── Altshades.32.1 │ ├── Altshades.32.2 │ ├── Altshades.5.0 │ ├── Altshades.5.1 │ ├── Altshades.5.2 │ ├── Altshades.6.0 │ ├── Altshades.6.1 │ ├── Altshades.6.2 │ ├── Altshades.7.0 │ ├── Altshades.7.1 │ ├── Altshades.7.2 │ ├── Altshades.8.0 │ ├── Altshades.8.1 │ ├── Altshades.8.2 │ ├── Altshades.9.0 │ ├── Altshades.9.1 │ ├── Altshades.9.2 │ ├── EuroLatin.10.0 │ ├── EuroLatin.10.1 │ ├── EuroLatin.10.2 │ ├── EuroLatin.12.0 │ ├── EuroLatin.12.1 │ ├── EuroLatin.12.2 │ ├── EuroLatin.14.0 │ ├── EuroLatin.14.1 │ ├── EuroLatin.14.2 │ ├── EuroLatin.16.0 │ ├── EuroLatin.16.1 │ ├── EuroLatin.16.2 │ ├── EuroLatin.18.0 │ ├── EuroLatin.18.1 │ ├── EuroLatin.18.2 │ ├── EuroLatin.20.0 │ ├── EuroLatin.20.1 │ ├── EuroLatin.20.2 │ ├── EuroLatin.24.0 │ ├── EuroLatin.24.1 │ ├── EuroLatin.24.2 │ ├── EuroLatin.28.0 │ ├── EuroLatin.28.1 │ ├── EuroLatin.28.2 │ ├── EuroLatin.32.0 │ ├── EuroLatin.32.1 │ ├── EuroLatin.32.2 │ ├── EuroLatin.5.0 │ ├── EuroLatin.5.1 │ ├── EuroLatin.5.2 │ ├── EuroLatin.6.0 │ ├── EuroLatin.6.1 │ ├── EuroLatin.6.2 │ ├── EuroLatin.7.0 │ ├── EuroLatin.7.1 │ ├── EuroLatin.7.2 │ ├── EuroLatin.8.0 │ ├── EuroLatin.8.1 │ ├── EuroLatin.8.2 │ ├── EuroLatin.9.0 │ ├── EuroLatin.9.1 │ ├── EuroLatin.9.2 │ ├── FormBlock.10.0 │ ├── FormBlock.10.1 │ ├── FormBlock.10.2 │ ├── FormBlock.12.0 │ ├── FormBlock.12.1 │ ├── FormBlock.12.2 │ ├── FormBlock.14.0 │ ├── FormBlock.14.1 │ ├── FormBlock.14.2 │ ├── FormBlock.16.0 │ ├── FormBlock.16.1 │ ├── FormBlock.16.2 │ ├── FormBlock.18.0 │ ├── FormBlock.18.1 │ ├── FormBlock.18.2 │ ├── FormBlock.20.0 │ ├── FormBlock.20.1 │ ├── FormBlock.20.2 │ ├── FormBlock.24.0 │ ├── FormBlock.24.1 │ ├── FormBlock.24.2 │ ├── FormBlock.28.0 │ ├── FormBlock.28.1 │ ├── FormBlock.28.2 │ ├── FormBlock.32.0 │ ├── FormBlock.32.1 │ ├── FormBlock.32.2 │ ├── FormBlock.5.0 │ ├── FormBlock.5.1 │ ├── FormBlock.5.2 │ ├── FormBlock.6.0 │ ├── FormBlock.6.1 │ ├── FormBlock.6.2 │ ├── FormBlock.7.0 │ ├── FormBlock.7.1 │ ├── FormBlock.7.2 │ ├── FormBlock.8.0 │ ├── FormBlock.8.1 │ ├── FormBlock.8.2 │ ├── FormBlock.9.0 │ ├── FormBlock.9.1 │ ├── FormBlock.9.2 │ ├── GenDiacrit.10.0 │ ├── GenDiacrit.10.1 │ ├── GenDiacrit.10.2 │ ├── GenDiacrit.12.0 │ ├── GenDiacrit.12.1 │ ├── GenDiacrit.12.2 │ ├── GenDiacrit.14.0 │ ├── GenDiacrit.14.1 │ ├── GenDiacrit.14.2 │ ├── GenDiacrit.16.0 │ ├── GenDiacrit.16.1 │ ├── GenDiacrit.16.2 │ ├── GenDiacrit.18.0 │ ├── GenDiacrit.18.1 │ ├── GenDiacrit.18.2 │ ├── GenDiacrit.20.0 │ ├── GenDiacrit.20.1 │ ├── GenDiacrit.20.2 │ ├── GenDiacrit.24.0 │ ├── GenDiacrit.24.1 │ ├── GenDiacrit.24.2 │ ├── GenDiacrit.28.0 │ ├── GenDiacrit.28.1 │ ├── GenDiacrit.28.2 │ ├── GenDiacrit.32.0 │ ├── GenDiacrit.32.1 │ ├── GenDiacrit.32.2 │ ├── GenDiacrit.5.0 │ ├── GenDiacrit.5.1 │ ├── GenDiacrit.5.2 │ ├── GenDiacrit.6.0 │ ├── GenDiacrit.6.1 │ ├── GenDiacrit.6.2 │ ├── GenDiacrit.7.0 │ ├── GenDiacrit.7.1 │ ├── GenDiacrit.7.2 │ ├── GenDiacrit.8.0 │ ├── GenDiacrit.8.1 │ ├── GenDiacrit.8.2 │ ├── GenDiacrit.9.0 │ ├── GenDiacrit.9.1 │ ├── GenDiacrit.9.2 │ ├── GenPunct.10.0 │ ├── GenPunct.10.1 │ ├── GenPunct.10.2 │ ├── GenPunct.12.0 │ ├── GenPunct.12.1 │ ├── GenPunct.12.2 │ ├── GenPunct.14.0 │ ├── GenPunct.14.1 │ ├── GenPunct.14.2 │ ├── GenPunct.16.0 │ ├── GenPunct.16.1 │ ├── GenPunct.16.2 │ ├── GenPunct.18.0 │ ├── GenPunct.18.1 │ ├── GenPunct.18.2 │ ├── GenPunct.20.0 │ ├── GenPunct.20.1 │ ├── GenPunct.20.2 │ ├── GenPunct.24.0 │ ├── GenPunct.24.1 │ ├── GenPunct.24.2 │ ├── GenPunct.28.0 │ ├── GenPunct.28.1 │ ├── GenPunct.28.2 │ ├── GenPunct.32.0 │ ├── GenPunct.32.1 │ ├── GenPunct.32.2 │ ├── GenPunct.5.0 │ ├── GenPunct.5.1 │ ├── GenPunct.5.2 │ ├── GenPunct.6.0 │ ├── GenPunct.6.1 │ ├── GenPunct.6.2 │ ├── GenPunct.7.0 │ ├── GenPunct.7.1 │ ├── GenPunct.7.2 │ ├── GenPunct.8.0 │ ├── GenPunct.8.1 │ ├── GenPunct.8.2 │ ├── GenPunct.9.0 │ ├── GenPunct.9.1 │ ├── GenPunct.9.2 │ ├── Hebrew.10.0 │ ├── Hebrew.10.1 │ ├── Hebrew.10.2 │ ├── Hebrew.12.0 │ ├── Hebrew.12.1 │ ├── Hebrew.12.2 │ ├── Hebrew.14.0 │ ├── Hebrew.14.1 │ ├── Hebrew.14.2 │ ├── Hebrew.16.0 │ ├── Hebrew.16.1 │ ├── Hebrew.16.2 │ ├── Hebrew.18.0 │ ├── Hebrew.18.1 │ ├── Hebrew.18.2 │ ├── Hebrew.20.0 │ ├── Hebrew.20.1 │ ├── Hebrew.20.2 │ ├── Hebrew.24.0 │ ├── Hebrew.24.1 │ ├── Hebrew.24.2 │ ├── Hebrew.28.0 │ ├── Hebrew.28.1 │ ├── Hebrew.28.2 │ ├── Hebrew.32.0 │ ├── Hebrew.32.1 │ ├── Hebrew.32.2 │ ├── Hebrew.5.0 │ ├── Hebrew.5.1 │ ├── Hebrew.5.2 │ ├── Hebrew.6.0 │ ├── Hebrew.6.1 │ ├── Hebrew.6.2 │ ├── Hebrew.7.0 │ ├── Hebrew.7.1 │ ├── Hebrew.7.2 │ ├── Hebrew.8.0 │ ├── Hebrew.8.1 │ ├── Hebrew.8.2 │ ├── Hebrew.9.0 │ ├── Hebrew.9.1 │ ├── Hebrew.9.2 │ ├── Letterlike.10.0 │ ├── Letterlike.10.1 │ ├── Letterlike.10.2 │ ├── Letterlike.12.0 │ ├── Letterlike.12.1 │ ├── Letterlike.12.2 │ ├── Letterlike.14.0 │ ├── Letterlike.14.1 │ ├── Letterlike.14.2 │ ├── Letterlike.16.0 │ ├── Letterlike.16.1 │ ├── Letterlike.16.2 │ ├── Letterlike.18.0 │ ├── Letterlike.18.1 │ ├── Letterlike.18.2 │ ├── Letterlike.20.0 │ ├── Letterlike.20.1 │ ├── Letterlike.20.2 │ ├── Letterlike.24.0 │ ├── Letterlike.24.1 │ ├── Letterlike.24.2 │ ├── Letterlike.28.0 │ ├── Letterlike.28.1 │ ├── Letterlike.28.2 │ ├── Letterlike.32.0 │ ├── Letterlike.32.1 │ ├── Letterlike.32.2 │ ├── Letterlike.5.0 │ ├── Letterlike.5.1 │ ├── Letterlike.5.2 │ ├── Letterlike.6.0 │ ├── Letterlike.6.1 │ ├── Letterlike.6.2 │ ├── Letterlike.7.0 │ ├── Letterlike.7.1 │ ├── Letterlike.7.2 │ ├── Letterlike.8.0 │ ├── Letterlike.8.1 │ ├── Letterlike.8.2 │ ├── Letterlike.9.0 │ ├── Letterlike.9.1 │ ├── Letterlike.9.2 │ ├── MathOps1.10.0 │ ├── MathOps1.10.1 │ ├── MathOps1.10.2 │ ├── MathOps1.12.0 │ ├── MathOps1.12.1 │ ├── MathOps1.12.2 │ ├── MathOps1.14.0 │ ├── MathOps1.14.1 │ ├── MathOps1.14.2 │ ├── MathOps1.16.0 │ ├── MathOps1.16.1 │ ├── MathOps1.16.2 │ ├── MathOps1.18.0 │ ├── MathOps1.18.1 │ ├── MathOps1.18.2 │ ├── MathOps1.20.0 │ ├── MathOps1.20.1 │ ├── MathOps1.20.2 │ ├── MathOps1.24.0 │ ├── MathOps1.24.1 │ ├── MathOps1.24.2 │ ├── MathOps1.28.0 │ ├── MathOps1.28.1 │ ├── MathOps1.28.2 │ ├── MathOps1.32.0 │ ├── MathOps1.32.1 │ ├── MathOps1.32.2 │ ├── MathOps1.5.0 │ ├── MathOps1.5.1 │ ├── MathOps1.5.2 │ ├── MathOps1.6.0 │ ├── MathOps1.6.1 │ ├── MathOps1.6.2 │ ├── MathOps1.7.0 │ ├── MathOps1.7.1 │ ├── MathOps1.7.2 │ ├── MathOps1.8.0 │ ├── MathOps1.8.1 │ ├── MathOps1.8.2 │ ├── MathOps1.9.0 │ ├── MathOps1.9.1 │ ├── MathOps1.9.2 │ ├── NOTICE │ ├── Phonetic.10.0 │ ├── Phonetic.10.1 │ ├── Phonetic.10.2 │ ├── Phonetic.12.0 │ ├── Phonetic.12.1 │ ├── Phonetic.12.2 │ ├── Phonetic.14.0 │ ├── Phonetic.14.1 │ ├── Phonetic.14.2 │ ├── Phonetic.16.0 │ ├── Phonetic.16.1 │ ├── Phonetic.16.2 │ ├── Phonetic.18.0 │ ├── Phonetic.18.1 │ ├── Phonetic.18.2 │ ├── Phonetic.20.0 │ ├── Phonetic.20.1 │ ├── Phonetic.20.2 │ ├── Phonetic.24.0 │ ├── Phonetic.24.1 │ ├── Phonetic.24.2 │ ├── Phonetic.28.0 │ ├── Phonetic.28.1 │ ├── Phonetic.28.2 │ ├── Phonetic.32.0 │ ├── Phonetic.32.1 │ ├── Phonetic.32.2 │ ├── Phonetic.5.0 │ ├── Phonetic.5.1 │ ├── Phonetic.5.2 │ ├── Phonetic.6.0 │ ├── Phonetic.6.1 │ ├── Phonetic.6.2 │ ├── Phonetic.7.0 │ ├── Phonetic.7.1 │ ├── Phonetic.7.2 │ ├── Phonetic.8.0 │ ├── Phonetic.8.1 │ ├── Phonetic.8.2 │ ├── Phonetic.9.0 │ ├── Phonetic.9.1 │ ├── Phonetic.9.2 │ ├── control.10.0 │ ├── control.10.1 │ ├── control.10.2 │ ├── control.12.0 │ ├── control.12.1 │ ├── control.12.2 │ ├── control.14.0 │ ├── control.14.1 │ ├── control.14.2 │ ├── control.16.0 │ ├── control.16.1 │ ├── control.16.2 │ ├── control.18.0 │ ├── control.18.1 │ ├── control.18.2 │ ├── control.20.0 │ ├── control.20.1 │ ├── control.20.2 │ ├── control.24.0 │ ├── control.24.1 │ ├── control.24.2 │ ├── control.28.0 │ ├── control.28.1 │ ├── control.28.2 │ ├── control.32.0 │ ├── control.32.1 │ ├── control.32.2 │ ├── control.5.0 │ ├── control.5.1 │ ├── control.5.2 │ ├── control.6.0 │ ├── control.6.1 │ ├── control.6.2 │ ├── control.7.0 │ ├── control.7.1 │ ├── control.7.2 │ ├── control.8.0 │ ├── control.8.1 │ ├── control.8.2 │ ├── control.9.0 │ ├── control.9.1 │ ├── control.9.2 │ ├── cyrillic.10.0 │ ├── cyrillic.10.1 │ ├── cyrillic.10.2 │ ├── cyrillic.12.0 │ ├── cyrillic.12.1 │ ├── cyrillic.12.2 │ ├── cyrillic.14.0 │ ├── cyrillic.14.1 │ ├── cyrillic.14.2 │ ├── cyrillic.16.0 │ ├── cyrillic.16.1 │ ├── cyrillic.16.2 │ ├── cyrillic.18.0 │ ├── cyrillic.18.1 │ ├── cyrillic.18.2 │ ├── cyrillic.20.0 │ ├── cyrillic.20.1 │ ├── cyrillic.20.2 │ ├── cyrillic.24.0 │ ├── cyrillic.24.1 │ ├── cyrillic.24.2 │ ├── cyrillic.28.0 │ ├── cyrillic.28.1 │ ├── cyrillic.28.2 │ ├── cyrillic.32.0 │ ├── cyrillic.32.1 │ ├── cyrillic.32.2 │ ├── cyrillic.5.0 │ ├── cyrillic.5.1 │ ├── cyrillic.5.2 │ ├── cyrillic.6.0 │ ├── cyrillic.6.1 │ ├── cyrillic.6.2 │ ├── cyrillic.7.0 │ ├── cyrillic.7.1 │ ├── cyrillic.7.2 │ ├── cyrillic.8.0 │ ├── cyrillic.8.1 │ ├── cyrillic.8.2 │ ├── cyrillic.9.0 │ ├── cyrillic.9.1 │ ├── cyrillic.9.2 │ ├── latin1.10.0 │ ├── latin1.10.1 │ ├── latin1.10.2 │ ├── latin1.12.0 │ ├── latin1.12.1 │ ├── latin1.12.2 │ ├── latin1.14.0 │ ├── latin1.14.1 │ ├── latin1.14.2 │ ├── latin1.16.0 │ ├── latin1.16.1 │ ├── latin1.16.2 │ ├── latin1.18.0 │ ├── latin1.18.1 │ ├── latin1.18.2 │ ├── latin1.20.0 │ ├── latin1.20.1 │ ├── latin1.20.2 │ ├── latin1.24.0 │ ├── latin1.24.1 │ ├── latin1.24.2 │ ├── latin1.28.0 │ ├── latin1.28.1 │ ├── latin1.28.2 │ ├── latin1.32.0 │ ├── latin1.32.1 │ ├── latin1.32.2 │ ├── latin1.5.0 │ ├── latin1.5.1 │ ├── latin1.5.2 │ ├── latin1.6.0 │ ├── latin1.6.1 │ ├── latin1.6.2 │ ├── latin1.7.0 │ ├── latin1.7.1 │ ├── latin1.7.2 │ ├── latin1.8.0 │ ├── latin1.8.1 │ ├── latin1.8.2 │ ├── latin1.9.0 │ ├── latin1.9.1 │ ├── latin1.9.2 │ ├── latin1B.10.0 │ ├── latin1B.10.1 │ ├── latin1B.10.2 │ ├── latin1B.10.font │ ├── latin1B.12.0 │ ├── latin1B.12.1 │ ├── latin1B.12.2 │ ├── latin1B.12.font │ ├── latin1B.14.0 │ ├── latin1B.14.1 │ ├── latin1B.14.2 │ ├── latin1B.14.font │ ├── latin1B.16.0 │ ├── latin1B.16.1 │ ├── latin1B.16.2 │ ├── latin1B.16.font │ ├── latin1B.18.0 │ ├── latin1B.18.1 │ ├── latin1B.18.2 │ ├── latin1B.18.font │ ├── latin1B.20.0 │ ├── latin1B.20.1 │ ├── latin1B.20.2 │ ├── latin1B.20.font │ ├── latin1B.24.0 │ ├── latin1B.24.1 │ ├── latin1B.24.2 │ ├── latin1B.24.font │ ├── latin1B.28.0 │ ├── latin1B.28.1 │ ├── latin1B.28.2 │ ├── latin1B.28.font │ ├── latin1B.32.0 │ ├── latin1B.32.1 │ ├── latin1B.32.2 │ ├── latin1B.32.font │ ├── latin1B.5.0 │ ├── latin1B.5.1 │ ├── latin1B.5.2 │ ├── latin1B.5.font │ ├── latin1B.6.0 │ ├── latin1B.6.1 │ ├── latin1B.6.2 │ ├── latin1B.6.font │ ├── latin1B.7.0 │ ├── latin1B.7.1 │ ├── latin1B.7.2 │ ├── latin1B.7.font │ ├── latin1B.8.0 │ ├── latin1B.8.1 │ ├── latin1B.8.2 │ ├── latin1B.8.font │ ├── latin1B.9.0 │ ├── latin1B.9.1 │ ├── latin1B.9.2 │ ├── latin1B.9.font │ ├── latin1CW.10.0 │ ├── latin1CW.10.1 │ ├── latin1CW.10.2 │ ├── latin1CW.10.font │ ├── latin1CW.12.0 │ ├── latin1CW.12.1 │ ├── latin1CW.12.2 │ ├── latin1CW.12.font │ ├── latin1CW.14.0 │ ├── latin1CW.14.1 │ ├── latin1CW.14.2 │ ├── latin1CW.14.font │ ├── latin1CW.16.0 │ ├── latin1CW.16.1 │ ├── latin1CW.16.2 │ ├── latin1CW.16.font │ ├── latin1CW.18.0 │ ├── latin1CW.18.1 │ ├── latin1CW.18.2 │ ├── latin1CW.18.font │ ├── latin1CW.20.0 │ ├── latin1CW.20.1 │ ├── latin1CW.20.2 │ ├── latin1CW.20.font │ ├── latin1CW.24.0 │ ├── latin1CW.24.1 │ ├── latin1CW.24.2 │ ├── latin1CW.24.font │ ├── latin1CW.28.0 │ ├── latin1CW.28.1 │ ├── latin1CW.28.2 │ ├── latin1CW.28.font │ ├── latin1CW.32.0 │ ├── latin1CW.32.1 │ ├── latin1CW.32.2 │ ├── latin1CW.32.font │ ├── latin1CW.5.0 │ ├── latin1CW.5.1 │ ├── latin1CW.5.2 │ ├── latin1CW.5.font │ ├── latin1CW.6.0 │ ├── latin1CW.6.1 │ ├── latin1CW.6.2 │ ├── latin1CW.6.font │ ├── latin1CW.7.0 │ ├── latin1CW.7.1 │ ├── latin1CW.7.2 │ ├── latin1CW.7.2.font │ ├── latin1CW.7.font │ ├── latin1CW.8.0 │ ├── latin1CW.8.1 │ ├── latin1CW.8.2 │ ├── latin1CW.8.font │ ├── latin1CW.9.0 │ ├── latin1CW.9.1 │ ├── latin1CW.9.2 │ ├── latin1CW.9.font │ ├── latin1I.10.0 │ ├── latin1I.10.1 │ ├── latin1I.10.2 │ ├── latin1I.10.font │ ├── latin1I.12.0 │ ├── latin1I.12.1 │ ├── latin1I.12.2 │ ├── latin1I.12.font │ ├── latin1I.14.0 │ ├── latin1I.14.1 │ ├── latin1I.14.2 │ ├── latin1I.14.font │ ├── latin1I.16.0 │ ├── latin1I.16.1 │ ├── latin1I.16.2 │ ├── latin1I.16.font │ ├── latin1I.18.0 │ ├── latin1I.18.1 │ ├── latin1I.18.2 │ ├── latin1I.18.font │ ├── latin1I.20.0 │ ├── latin1I.20.1 │ ├── latin1I.20.2 │ ├── latin1I.20.font │ ├── latin1I.24.0 │ ├── latin1I.24.1 │ ├── latin1I.24.2 │ ├── latin1I.24.font │ ├── latin1I.28.0 │ ├── latin1I.28.1 │ ├── latin1I.28.2 │ ├── latin1I.28.font │ ├── latin1I.32.0 │ ├── latin1I.32.1 │ ├── latin1I.32.2 │ ├── latin1I.32.font │ ├── latin1I.5.0 │ ├── latin1I.5.1 │ ├── latin1I.5.2 │ ├── latin1I.5.font │ ├── latin1I.6.0 │ ├── latin1I.6.1 │ ├── latin1I.6.2 │ ├── latin1I.6.font │ ├── latin1I.7.0 │ ├── latin1I.7.1 │ ├── latin1I.7.2 │ ├── latin1I.7.font │ ├── latin1I.8.0 │ ├── latin1I.8.1 │ ├── latin1I.8.2 │ ├── latin1I.8.font │ ├── latin1I.9.0 │ ├── latin1I.9.1 │ ├── latin1I.9.2 │ ├── latin1I.9.font │ ├── unicode.10.font │ ├── unicode.12.font │ ├── unicode.14.font │ ├── unicode.16.font │ ├── unicode.18.font │ ├── unicode.20.font │ ├── unicode.24.font │ ├── unicode.28.font │ ├── unicode.32.font │ ├── unicode.5.font │ ├── unicode.6.font │ ├── unicode.7.font │ ├── unicode.8.font │ └── unicode.9.font ├── lucidasans │ ├── NOTICE │ ├── boldlatin1.10.font │ ├── boldlatin1.13.font │ ├── boldlatin1.6.font │ ├── boldlatin1.7.font │ ├── boldlatin1.8.font │ ├── boldtypelatin1.6.font │ ├── boldtypelatin1.7.font │ ├── euro.7.font │ ├── euro.8.font │ ├── italiclatin1.10.font │ ├── italiclatin1.13.font │ ├── italiclatin1.6.font │ ├── italiclatin1.7.font │ ├── italiclatin1.8.font │ ├── latin1.10.font │ ├── latin1.13.font │ ├── latin1.6.font │ ├── latin1.7.font │ ├── latin1.8.font │ ├── latin1_13.font │ ├── lsb.10 │ ├── lsb.12 │ ├── lsb.14 │ ├── lsb.18 │ ├── lsb.24 │ ├── lsbtr.10 │ ├── lsbtr.12 │ ├── lsi.10 │ ├── lsi.12 │ ├── lsi.14 │ ├── lsi.18 │ ├── lsi.24 │ ├── lsr.10 │ ├── lsr.12 │ ├── lsr.14 │ ├── lsr.18 │ ├── lsr.24 │ ├── lstr.10 │ ├── lstr.12 │ ├── news.10.font │ ├── news.6.font │ ├── news.7.font │ ├── news.8.font │ ├── typelatin1.6.font │ ├── typelatin1.7.font │ ├── unicode.10.font │ ├── unicode.13.font │ ├── unicode.6.font │ ├── unicode.7.font │ ├── unicode.8.font │ └── unicode.9x24.font ├── lucm │ ├── NOTICE │ ├── currency.9 │ ├── euro.9.font │ ├── genpunc.9 │ ├── greek.9 │ ├── ipa.9 │ ├── latin1.9 │ ├── latin1.9.font │ ├── latineur.9 │ ├── supsub.9 │ └── unicode.9.font ├── 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 ├── pelm │ ├── NOTICE │ ├── ascii.10 │ ├── ascii.10.font │ ├── ascii.12 │ ├── ascii.12.font │ ├── ascii.16 │ ├── ascii.16.font │ ├── currency.9 │ ├── encalpha.9 │ ├── euro.8.font │ ├── euro.9.font │ ├── fangsong.9.font │ ├── fffd.9 │ ├── hanc.9.font │ ├── hanj.9.font │ ├── hku.9.font │ ├── jis.9.font │ ├── latin1.8 │ ├── latin1.8.font │ ├── latin1.9 │ ├── latin1.9.font │ ├── latineur.8 │ ├── latineur.9 │ ├── song.9.font │ ├── song.9x24.font │ ├── supsub.8 │ ├── supsub.9 │ ├── unicode.8.font │ ├── unicode.9.font │ └── unicode.9x24.font ├── 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 ├── icons ├── 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 ├── include ├── NOTICE ├── 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 ├── libsec.h ├── logfs.h ├── logfsos.h ├── mathi.h ├── memdraw.h ├── memlayer.h ├── 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 ├── keydb └── keys ├── 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 ├── ebook │ └── default.css ├── ebooks │ ├── devils │ │ ├── A.html │ │ ├── A.html.annot │ │ ├── A.html.i │ │ ├── B.html │ │ ├── B.html.annot │ │ ├── B.html.i │ │ ├── C.html │ │ ├── C.html.annot │ │ ├── C.html.i │ │ ├── D.html │ │ ├── D.html.annot │ │ ├── D.html.i │ │ ├── DevilsDictionary.opf │ │ ├── E.html │ │ ├── E.html.annot │ │ ├── E.html.i │ │ ├── F.html │ │ ├── F.html.annot │ │ ├── F.html.i │ │ ├── G.html │ │ ├── G.html.annot │ │ ├── G.html.i │ │ ├── H.html │ │ ├── H.html.annot │ │ ├── H.html.i │ │ ├── I.html │ │ ├── I.html.annot │ │ ├── I.html.i │ │ ├── J.html │ │ ├── J.html.annot │ │ ├── J.html.i │ │ ├── K.html │ │ ├── K.html.annot │ │ ├── K.html.i │ │ ├── L.html │ │ ├── L.html.annot │ │ ├── L.html.i │ │ ├── M.html │ │ ├── M.html.annot │ │ ├── M.html.i │ │ ├── N.html │ │ ├── N.html.annot │ │ ├── N.html.i │ │ ├── O.html │ │ ├── O.html.annot │ │ ├── O.html.i │ │ ├── P.html │ │ ├── P.html.annot │ │ ├── P.html.i │ │ ├── Q.html │ │ ├── Q.html.annot │ │ ├── Q.html.i │ │ ├── R.html │ │ ├── R.html.annot │ │ ├── R.html.i │ │ ├── S.html │ │ ├── S.html.annot │ │ ├── S.html.i │ │ ├── T.html │ │ ├── T.html.annot │ │ ├── T.html.i │ │ ├── TitlePage.html │ │ ├── TitlePage.html.annot │ │ ├── TitlePage.html.i │ │ ├── U.html │ │ ├── U.html.annot │ │ ├── U.html.i │ │ ├── V.html │ │ ├── V.html.annot │ │ ├── V.html.i │ │ ├── W.html │ │ ├── W.html.annot │ │ ├── W.html.i │ │ ├── X.html │ │ ├── X.html.annot │ │ ├── X.html.i │ │ ├── Y.html │ │ ├── Y.html.annot │ │ ├── Y.html.i │ │ ├── Z.html │ │ ├── Z.html.annot │ │ ├── Z.html.i │ │ ├── devil.css │ │ ├── foreword.html │ │ ├── foreword.html.annot │ │ ├── foreword.html.i │ │ ├── index.html │ │ ├── index.html.annot │ │ ├── index.html.i │ │ ├── preface.html │ │ ├── preface.html.annot │ │ └── preface.html.i │ ├── oebtest │ │ ├── BART.html │ │ ├── BART.html.annot │ │ ├── BART.html.i │ │ ├── BentSub.html │ │ ├── BentSub.html.annot │ │ ├── BentSub.html.index │ │ ├── BlueWater.html │ │ ├── BlueWater.html.annot │ │ ├── BlueWater.html.i │ │ ├── DrBill.jpg │ │ ├── DrBill.png │ │ ├── DrBill.tif │ │ ├── DrBillBio.css │ │ ├── DrBillBio.opf │ │ ├── ExecutiveSummary.html │ │ ├── ExecutiveSummary.html.annot │ │ ├── ExecutiveSummary.html.i │ │ ├── ExecutiveSummary.html.index │ │ ├── GoldMine.html │ │ ├── GoldMine.html.annot │ │ ├── GoldMine.html.i │ │ ├── GoldMine.html.index │ │ ├── GoldenGate.html │ │ ├── GoldenGate.html.annot │ │ ├── GoldenGate.html.i │ │ ├── HelicopterMinesweeper.html │ │ ├── MeasuringOilTanks.html │ │ ├── MeasuringOilTanks.html.i │ │ ├── QuotesAboutBill.html │ │ ├── QuotesFromBill.html │ │ ├── TalkRadio.html │ │ ├── TitlePage.html │ │ ├── TitlePage.html.annot │ │ ├── TitlePage.html.i │ │ ├── TitlePage.html.index │ │ ├── about.html │ │ ├── awards.html │ │ ├── awards.html.annot │ │ ├── awards.html.i │ │ ├── background-education.html │ │ ├── background-education.html.i │ │ ├── bloodbanks.html │ │ ├── business.html │ │ ├── business.html.annot │ │ ├── business.html.i │ │ ├── colleague.html │ │ ├── confrontations.html │ │ ├── confrontations.html.annot │ │ ├── confrontations.html.i │ │ ├── copyright.html │ │ ├── covert.html │ │ ├── covert.html.annot │ │ ├── covert.html.i │ │ ├── creditcards.html │ │ ├── dial-a-ride.html │ │ ├── dial-a-ride.html.annot │ │ ├── dial-a-ride.html.i │ │ ├── foreword.html │ │ ├── foreword.html.annot │ │ ├── foreword.html.i │ │ ├── foreword.html.index │ │ ├── hobbies.html │ │ ├── hobbies.html.annot │ │ ├── hobbies.html.i │ │ ├── index.html │ │ ├── movies.html │ │ ├── patents.html │ │ ├── patents.html.annot │ │ ├── patents.html.i │ │ ├── publishing.html │ │ ├── raport-small.png │ │ ├── raport.png │ │ ├── resume.html │ │ ├── television.html │ │ ├── toc.html │ │ ├── toc.html.annot │ │ ├── toc.html.i │ │ └── toc.html.index │ └── understandingoeb │ │ ├── OEBActivityDiagram.png │ │ ├── OEBClassDiagram.png │ │ ├── chapter1.html │ │ ├── chapter2.html │ │ ├── chapter3.html │ │ ├── chapter4.html │ │ ├── chapter5.html │ │ ├── chapter6.html │ │ ├── foreword.html │ │ ├── preface.html │ │ ├── title.html │ │ ├── toc.html │ │ ├── understandingoeb.css │ │ └── understandingoeb.opf ├── emptydirs ├── games │ ├── fortunes │ └── fortunes.index ├── ircnames ├── keyboard ├── legal │ ├── GPL │ ├── LGPL │ ├── NOTICE.app │ ├── NOTICE.ffal │ ├── NOTICE.gpl │ ├── NOTICE.lgpl │ ├── NOTICE.liberal │ ├── calderalic.pdf │ └── lucent ├── 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 ├── proto │ ├── FreeBSD │ ├── Hp │ ├── Irix │ ├── Linux │ ├── MacOSX │ ├── NetBSD │ ├── Nt │ ├── Plan9 │ ├── Solaris │ ├── inferno │ ├── os │ ├── src │ └── utils ├── 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 ├── lib9 ├── NOTICE ├── 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-Linux-386.S ├── getcallerpc-Linux-arm.S ├── getcallerpc-Linux-power.c ├── getcallerpc-Linux-spim.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 ├── 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-Linux-386.S ├── setfcr-Linux-arm.S ├── setfcr-Linux-power.S ├── setfcr-MacOSX-386.c ├── setfcr-MacOSX-power.c ├── setfcr-Solaris-sparc.c ├── 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 ├── NOTICE ├── 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 ├── NOTICE ├── 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 ├── NOTICE ├── dynld-386.c ├── dynld-arm.c ├── dynld-mips.c ├── dynld-power.c ├── dynld-sparc.c ├── dynld-spim.c ├── dynld.c ├── dynloadfd.c └── mkfile ├── libfreetype ├── NOTICE │ ├── FTL.txt │ ├── GPL.txt │ ├── PATENTS │ └── license.txt ├── 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 ├── NOTICE ├── 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 ├── 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 ├── keyring.c ├── keyring.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 ├── NOTICE ├── 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 ├── NOTICE ├── dsaalg.c ├── egalg.c ├── keys.h ├── mkfile └── rsaalg.c ├── liblogfs ├── NOTICE ├── 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-Linux.c ├── FPcontrol-MacOSX.c ├── FPcontrol-NetBSD.c ├── FPcontrol-Nt.c ├── FPcontrol-OpenBSD.c ├── FPcontrol-Plan9.c ├── FPcontrol-Solaris.c ├── FPcontrol-Unixware.c ├── NOTICE ├── bin │ ├── fdlibm-stubs │ ├── unif_dtoa │ └── unif_fdlibm ├── 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 ├── NOTICE ├── 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-Linux ├── mkfile-MacOSX ├── mkfile-NetBSD ├── mkfile-Nt ├── mkfile-OpenBSD ├── mkfile-Plan9 ├── mkfile-Solaris ├── mkfile-os ├── openmemsubfont.c ├── poly.c ├── read.c ├── string.c ├── subfont.c ├── unload.c └── write.c ├── libmemlayer ├── NOTICE ├── 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-Linux ├── mkfile-MacOSX ├── mkfile-NetBSD ├── mkfile-Nt ├── mkfile-OpenBSD ├── mkfile-Plan9 ├── mkfile-Posix ├── mkfile-Solaris ├── mkfile-Unixware ├── 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 ├── NOTICE ├── 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 ├── NOTICE ├── 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 ├── NOTICE ├── box.c ├── compound.c ├── element.c ├── elistelement.c ├── iconbox.c ├── iconelement.c ├── mkfile ├── textbox.c └── textelement.c ├── libsec ├── Inferno-386 │ ├── md5block.s │ ├── mkfile │ └── sha1block.s ├── Inferno-mips │ ├── md5block.s │ ├── mkfile │ └── sha1block.s ├── NOTICE ├── 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 ├── NOTICE ├── 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 ├── NOTICE ├── 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 ├── locale ├── Argentina ├── Australia_ACT ├── Australia_Broken-Hill ├── Australia_LHI ├── Australia_NSW ├── Australia_North ├── Australia_Queensland ├── Australia_South ├── Australia_Sturt ├── Australia_Tasmania ├── Australia_Victoria ├── Australia_West ├── Australia_Yancowinna ├── Brazil_Acre ├── Brazil_DeNoronha ├── Brazil_East ├── Brazil_West ├── CET ├── CST.CDT ├── Canada_Atlantic ├── Canada_Central ├── Canada_East-Saskatchewan ├── Canada_Eastern ├── Canada_Mountain ├── Canada_Newfoundland ├── Canada_Pacific ├── Canada_Yukon ├── Chile_Continental ├── Chile_EasterIsland ├── Cuba ├── EET ├── EST.EDT ├── Egypt ├── GB-Eire ├── GMT ├── HST ├── Hongkong ├── Iceland ├── India ├── Iran ├── Israel ├── Jamaica ├── Japan ├── Libya ├── MET ├── MST.MDT ├── Mexico_BajaNorte ├── Mexico_BajaSur ├── Mexico_General ├── Moscow ├── NOTICE ├── NZ ├── NZ_CHAT ├── Navajo ├── PRC ├── PST.PDT ├── Poland ├── README ├── ROC ├── ROK ├── Singapore ├── Turkey ├── US_Alaska ├── US_Arizona ├── US_Central ├── US_East-Indiana ├── US_Eastern ├── US_Hawaii ├── US_Michigan ├── US_Mountain ├── US_Pacific ├── US_Yukon ├── W-SU ├── WET ├── en_US │ ├── dict │ │ └── calendar │ └── location ├── location └── timezone ├── makemk.sh ├── man ├── 1 │ ├── 0intro │ ├── 9win │ ├── INDEX │ ├── acme │ ├── alphabet-abc │ ├── alphabet-fs │ ├── alphabet-grid │ ├── alphabet-main │ ├── ar │ ├── asm │ ├── auplay │ ├── avr │ ├── basename │ ├── bind │ ├── blur │ ├── brutus │ ├── cal │ ├── calc │ ├── calendar │ ├── cat │ ├── cd │ ├── charon │ ├── chgrp │ ├── chmod │ ├── cleanname │ ├── cmp │ ├── collab │ ├── collab-clients │ ├── comm │ ├── cook │ ├── cp │ ├── cprof │ ├── cpu │ ├── crypt │ ├── date │ ├── dd │ ├── deb │ ├── diff │ ├── disdep │ ├── dmview │ ├── du │ ├── ebook │ ├── echo │ ├── emu │ ├── env │ ├── fc │ ├── filename │ ├── fmt │ ├── fortune │ ├── freq │ ├── fs │ ├── ftest │ ├── ftree │ ├── gettar │ ├── grep │ ├── grid-monitor │ ├── grid-ns │ ├── grid-query │ ├── grid-register │ ├── grid-session │ ├── gzip │ ├── idea │ ├── itest │ ├── keyboard │ ├── kill │ ├── limbo │ ├── listen │ ├── logon │ ├── logwindow │ ├── look │ ├── ls │ ├── m4 │ ├── man │ ├── mash │ ├── mash-make │ ├── mash-tk │ ├── math-misc │ ├── mc │ ├── mdb │ ├── miniterm │ ├── mk │ ├── mkdir │ ├── mprof │ ├── mux │ ├── mv │ ├── netkey │ ├── netstat │ ├── ns │ ├── nsbuild │ ├── os │ ├── p │ ├── passwd │ ├── plumb │ ├── prof │ ├── ps │ ├── pwd │ ├── rcmd │ ├── read │ ├── rm │ ├── runas │ ├── secstore │ ├── sendmail │ ├── sh │ ├── sh-alphabet │ ├── sh-arg │ ├── sh-csv │ ├── sh-expr │ ├── sh-file2chan │ ├── sh-mload │ ├── sh-regex │ ├── sh-sexprs │ ├── sh-std │ ├── sh-string │ ├── sh-test │ ├── sh-tk │ ├── sleep │ ├── sort │ ├── spree-join │ ├── stack │ ├── stream │ ├── strings │ ├── sum │ ├── tail │ ├── tcs │ ├── tee │ ├── telnet │ ├── time │ ├── timestamp │ ├── tiny │ ├── tkcmd │ ├── tktester │ ├── toolbar │ ├── touch │ ├── tr │ ├── tsort │ ├── unicode │ ├── uniq │ ├── units │ ├── uuencode │ ├── vacget │ ├── wc │ ├── webgrab │ ├── wish │ ├── wm │ ├── wm-misc │ ├── wm-sh │ ├── xd │ ├── yacc │ └── zeros ├── 2 │ ├── 0intro │ ├── 9p-ninep │ ├── INDEX │ ├── alphabet-intro │ ├── arg │ ├── asn1 │ ├── attrdb │ ├── bloomfilter │ ├── bufio │ ├── bufio-chanfill │ ├── cfg │ ├── command │ ├── complete │ ├── convcs │ ├── crc │ ├── crypt-0intro │ ├── crypt-crypt │ ├── crypt-dsagen │ ├── crypt-gensk │ ├── crypt-rc4 │ ├── crypt-sha1 │ ├── csv │ ├── daytime │ ├── dbm │ ├── debug │ ├── devpointer │ ├── dhcpclient │ ├── dial │ ├── dialog │ ├── dict │ ├── dis │ ├── diskblocks │ ├── disks │ ├── dividers │ ├── draw-0intro │ ├── draw-context │ ├── draw-display │ ├── draw-example │ ├── draw-font │ ├── draw-image │ ├── draw-point │ ├── draw-pointer │ ├── draw-rect │ ├── draw-screen │ ├── drawmux │ ├── encoding │ ├── env │ ├── ether │ ├── exception │ ├── factotum │ ├── filepat │ ├── filter │ ├── filter-deflate │ ├── filter-slip │ ├── format │ ├── fsproto │ ├── geodesy │ ├── hash │ ├── ida │ ├── imagefile │ ├── ip │ ├── ipints │ ├── ipints-genprime │ ├── ir │ ├── itslib │ ├── json │ ├── keyring-0intro │ ├── keyring-auth │ ├── keyring-certtostr │ ├── keyring-crypt │ ├── keyring-gensk │ ├── keyring-getmsg │ ├── keyring-getstring │ ├── keyring-ipint │ ├── keyring-rc4 │ ├── keyring-sha1 │ ├── keyset │ ├── lists │ ├── lock │ ├── math-0intro │ ├── math-elem │ ├── math-export │ ├── math-fp │ ├── math-linalg │ ├── mpeg │ ├── msgio │ ├── names │ ├── newns │ ├── palmfile │ ├── plumbmsg │ ├── pop3 │ ├── popup │ ├── prefab-0intro │ ├── prefab-compound │ ├── prefab-element │ ├── prefab-environ │ ├── prefab-style │ ├── print │ ├── prof │ ├── pslib │ ├── rabin │ ├── rand │ ├── readdir │ ├── regex │ ├── registries │ ├── rfc822 │ ├── scsiio │ ├── secstore │ ├── security-0intro │ ├── security-auth │ ├── security-login │ ├── security-oldauth │ ├── security-random │ ├── security-ssl │ ├── selectfile │ ├── sets │ ├── sexprs │ ├── sh │ ├── smtp │ ├── spki │ ├── spki-verifier │ ├── spree │ ├── spree-allow │ ├── spree-cardlib │ ├── spree-gather │ ├── spree-objstore │ ├── srv │ ├── string │ ├── stringinttab │ ├── styx │ ├── styxconv │ ├── styxflush │ ├── styxpersist │ ├── styxservers │ ├── styxservers-nametree │ ├── sys-0intro │ ├── sys-bind │ ├── sys-byte2char │ ├── sys-chdir │ ├── sys-dial │ ├── sys-dirread │ ├── sys-dup │ ├── sys-export │ ├── sys-fauth │ ├── sys-fd2path │ ├── sys-file2chan │ ├── sys-fversion │ ├── sys-iounit │ ├── sys-millisec │ ├── sys-open │ ├── sys-pctl │ ├── sys-pipe │ ├── sys-print │ ├── sys-read │ ├── sys-remove │ ├── sys-seek │ ├── sys-self │ ├── sys-sleep │ ├── sys-stat │ ├── sys-tokenize │ ├── sys-utfbytes │ ├── sys-werrstr │ ├── tabs │ ├── tftp │ ├── timers │ ├── tk │ ├── tkclient │ ├── translate │ ├── ubfa │ ├── venti │ ├── virgil │ ├── volume │ ├── w3c-css │ ├── w3c-uris │ ├── w3c-xpointers │ ├── wait │ ├── wmclient │ ├── wmlib │ ├── wmsrv │ ├── workdir │ └── xml ├── 3 │ ├── 0intro │ ├── INDEX │ ├── arch │ ├── audio │ ├── boot │ ├── cap │ ├── cmd │ ├── cons │ ├── dbg │ ├── draw │ ├── ds │ ├── dup │ ├── dynld │ ├── eia │ ├── env │ ├── ether │ ├── flash │ ├── floppy │ ├── fpga │ ├── fs │ ├── ftl │ ├── gpio │ ├── i2c │ ├── i82365 │ ├── indir │ ├── ip │ ├── kprof │ ├── logfs │ ├── lpt │ ├── mnt │ ├── mpeg │ ├── pbus │ ├── pipe │ ├── plap │ ├── pnp │ ├── pointer │ ├── prof │ ├── prog │ ├── root │ ├── rtc │ ├── sd │ ├── sign │ ├── snarf │ ├── srv │ ├── srv9 │ ├── ssl │ ├── switch │ ├── tinyfs │ ├── tls │ ├── touch │ ├── tv │ ├── usb │ ├── vga │ └── vid ├── 4 │ ├── 0intro │ ├── 9srvfs │ ├── INDEX │ ├── acme │ ├── archfs │ ├── dbfs │ ├── dossrv │ ├── export │ ├── factotum │ ├── ftpfs │ ├── grid-cpu │ ├── import │ ├── iostats │ ├── keyfs │ ├── keysrv │ ├── kfs │ ├── lockfs │ ├── logfile │ ├── memfs │ ├── mntgen │ ├── namespace │ ├── palmsrv │ ├── ramfile │ ├── registry │ ├── spree │ ├── tarfs │ ├── trfs │ └── vacfs ├── 5 │ ├── 0intro │ ├── INDEX │ ├── attach │ ├── clunk │ ├── error │ ├── flush │ ├── open │ ├── read │ ├── remove │ ├── stat │ ├── version │ └── walk ├── 6 │ ├── 0intro │ ├── INDEX │ ├── attrdb │ ├── audio │ ├── auth │ ├── colour │ ├── dis │ ├── font │ ├── image │ ├── json │ ├── keyboard │ ├── keys │ ├── keytext │ ├── login │ ├── man │ ├── namespace │ ├── ndb │ ├── plumbing │ ├── proto │ ├── regexp │ ├── sbl │ ├── scancode │ ├── sexprs │ ├── translate │ ├── ubfa │ ├── users │ └── utf ├── 7 │ ├── 0intro │ ├── INDEX │ ├── cddb │ ├── db │ └── dbsrv ├── 8 │ ├── 0intro │ ├── INDEX │ ├── ai2key │ ├── applylog │ ├── bootpd │ ├── changelogin │ ├── collabsrv │ ├── create │ ├── createsignerkey │ ├── cs │ ├── dhcp │ ├── dns │ ├── fpgaload │ ├── ftl │ ├── getauthinfo │ ├── httpd │ ├── init │ ├── kfscmd │ ├── logind │ ├── mangaload │ ├── manufacture │ ├── mkfs │ ├── ping │ ├── plumber │ ├── prep │ ├── rdbgsrv │ ├── register │ ├── rip │ ├── rstyxd │ ├── shutdown │ ├── signer │ ├── sntp │ ├── styxchat │ ├── styxmon │ ├── svc │ ├── touchcal │ └── virgild ├── 9 │ ├── 0intro │ ├── 1copyright │ ├── INDEX │ ├── bind │ ├── button │ ├── canvas │ ├── checkbutton │ ├── choicebutton │ ├── cursor │ ├── destroy │ ├── entry │ ├── focus │ ├── frame │ ├── grab │ ├── grid │ ├── image │ ├── label │ ├── listbox │ ├── lower │ ├── menu │ ├── menubutton │ ├── options │ ├── pack │ ├── panel │ ├── radiobutton │ ├── raise │ ├── scale │ ├── scrollbar │ ├── see │ ├── send │ ├── text │ ├── types │ ├── update │ └── variable ├── 10 │ ├── 0intro │ ├── 2a │ ├── 2c │ ├── 2l │ ├── 5coff │ ├── 5cv │ ├── 9load │ ├── INDEX │ ├── a.out │ ├── acid │ ├── allocb │ ├── ar │ ├── atoi │ ├── c2l │ ├── conf │ ├── delay │ ├── dev │ ├── devattach │ ├── dmainit │ ├── dynld │ ├── error │ ├── eve │ ├── getfields │ ├── iar │ ├── inb │ ├── inm │ ├── intrenable │ ├── kbdputc │ ├── kproc │ ├── kprof │ ├── ksize │ ├── kstrip │ ├── lock │ ├── malloc │ ├── master │ ├── memory │ ├── mk │ ├── ms2 │ ├── newchan │ ├── ntsrv │ ├── odbc │ ├── panic │ ├── parsecmd │ ├── plan9.ini │ ├── print │ ├── qio │ ├── qlock │ ├── readnum │ ├── ref │ ├── rune │ ├── seconds │ ├── sleep │ ├── splhi │ ├── srclist │ ├── strcat │ ├── styx │ ├── styxserver │ └── xalloc ├── fonts ├── index ├── lib │ ├── checkman.awk │ ├── colophon │ ├── lookman │ │ ├── junkwords │ │ └── mkindex │ ├── notes │ ├── preface │ ├── secindex │ ├── title │ └── trademarks └── mkfile ├── mkconfig ├── mkfile ├── mkfiles ├── mkdis ├── mkfile-DragonFly-386 ├── mkfile-FreeBSD-386 ├── mkfile-Inferno-386 ├── mkfile-Inferno-arm ├── mkfile-Inferno-mips ├── mkfile-Inferno-power ├── mkfile-Inferno-sparc ├── mkfile-Inferno-spim ├── mkfile-Inferno-thumb ├── mkfile-Irix-mips ├── mkfile-Linux-386 ├── mkfile-Linux-arm ├── mkfile-Linux-power ├── mkfile-Linux-spim ├── mkfile-MacOSX-386 ├── mkfile-MacOSX-power ├── mkfile-NetBSD-386 ├── mkfile-Nt-386 ├── mkfile-OpenBSD-386 ├── mkfile-Plan9-386 ├── mkfile-Plan9-68020 ├── mkfile-Plan9-amd64 ├── mkfile-Plan9-arm ├── mkfile-Plan9-mips ├── mkfile-Plan9-power ├── mkfile-Plan9-sparc ├── mkfile-Solaris-386 ├── mkfile-Solaris-sparc ├── mkfile-Unixware-386 ├── mkfile-os-386 ├── mkfile-os-arm ├── mkfile-os-power ├── mkfile-os-sparc ├── mkfile-os-spim ├── mkfile-os-thumb ├── mkhost-DragonFly ├── mkhost-FreeBSD ├── mkhost-Inferno ├── mkhost-Irix ├── mkhost-Linux ├── mkhost-MacOSX ├── mkhost-NetBSD ├── mkhost-Nt ├── mkhost-OpenBSD ├── mkhost-Plan9 ├── mkhost-Solaris ├── mkhost-Unixware ├── mkjava ├── mklibsubdirs ├── mkone-nt ├── mkone-rc ├── mkone-sh ├── mksubdirs ├── mksyslib-nt ├── mksyslib-rc └── mksyslib-sh ├── module ├── 9p.m ├── NOTICE ├── 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 ├── opt └── README ├── os ├── NOTICE ├── README ├── 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 │ │ ├── NOTICE │ │ ├── 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 │ │ ├── NOTICE │ │ ├── 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 │ │ ├── NOTICE │ │ ├── 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 │ │ ├── NOTICE │ │ ├── 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 ├── cerf1110 │ ├── Mk │ ├── NOTICE │ ├── README │ ├── archcerf.c │ ├── cerf │ ├── dat.h │ ├── devata.c │ ├── devcerf.c │ ├── ether8900.c │ ├── fns.h │ ├── io.h │ ├── main.c │ ├── mem.h │ └── mkfile ├── cerf250 │ ├── NOTICE │ ├── README │ ├── archcerf.c │ ├── cerf │ ├── dat.h │ ├── devpcf8563.c │ ├── ether91c111.c │ ├── fns.h │ ├── io.h │ ├── main.c │ ├── mem.h │ ├── mkfile │ └── uart.h ├── cerf405 │ ├── NOTICE │ ├── 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 │ ├── NOTICE │ ├── archfads.c │ ├── archfads.h │ ├── dat.h │ ├── fads │ ├── fns.h │ ├── io.h │ ├── main.c │ ├── mem.h │ ├── mkfile │ ├── mmu.c │ └── tlb.s ├── gum │ ├── Firstboot │ ├── NOTICE │ ├── README │ └── gum ├── 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 ├── ipaq1110 │ ├── Mk │ ├── NOTICE │ ├── 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 ├── ipengine │ ├── NOTICE │ ├── 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 ├── 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 ├── ks32 │ ├── Mk │ ├── NOTICE │ ├── 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 ├── mpc │ ├── 800io.h │ ├── NOTICE │ ├── 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 ├── omap │ └── README ├── pc │ ├── NOTICE │ ├── 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 ├── port │ ├── NOTICE │ ├── 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 ├── pxa │ ├── NOTICE │ ├── 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 ├── rpcg │ ├── NOTICE │ ├── archrpcg.c │ ├── archrpcg.h │ ├── clock.c │ ├── dat.h │ ├── fns.h │ ├── io.h │ ├── main.c │ ├── mem.h │ ├── mkfile │ ├── mmu.c │ ├── rpcg │ └── tlb.s └── 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 ├── services ├── httpd │ ├── httpd.debug │ ├── httpd.log │ ├── httpd.rewrite │ └── httpd.suff └── webget │ ├── help.html │ ├── inferno.gif │ ├── start.html │ ├── vnlogo.gif │ └── webget.log ├── tools ├── NOTICE ├── db │ ├── infdb.c │ └── mkfile ├── libstyx │ ├── Nt.c │ ├── Plan9.c │ ├── Posix.c │ ├── mkfile │ ├── styxaux.h │ └── styxserver.c ├── mkfile ├── odbc │ ├── mkfile │ ├── mkfile-Linux │ ├── mkfile-MacOSX │ ├── mkfile-Nt │ ├── mkfile-Plan9 │ ├── mkfile-Solaris │ └── odbc.c └── styxtest │ ├── mkfile │ ├── mkfile-FreeBSD │ ├── mkfile-Irix │ ├── mkfile-Linux │ ├── mkfile-MacOSX │ ├── mkfile-Nt │ ├── mkfile-OpenBSD │ ├── mkfile-Plan9 │ ├── mkfile-Solaris │ ├── 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 ├── NOTICE ├── 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 ├── NOTICE ├── 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 ├── NOTICE ├── README ├── awk.1 ├── 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 ├── NOTICE ├── 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 ├── NOTICE ├── 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 ├── NOTICE ├── 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 ├── mkfile-Nt ├── mkfile-Plan9 ├── mkfile-Posix ├── 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 ├── NOTICE ├── 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 /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/.hgtags -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/CHANGES -------------------------------------------------------------------------------- /DragonFly/386/bin/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DragonFly/386/lib/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/INSTALL -------------------------------------------------------------------------------- /Linux/386/include/fpuctl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/arm/include/fpuctl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/spim/include/fpuctl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/386/include/fpuctl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacOSX/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/MacOSX/README -------------------------------------------------------------------------------- /MacOSX/tcshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/MacOSX/tcshrc -------------------------------------------------------------------------------- /Mkdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/Mkdirs -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/NOTICE -------------------------------------------------------------------------------- /Plan9/arm/bin/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plan9/arm/lib/.dreg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/README.md -------------------------------------------------------------------------------- /appl/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/NOTICE -------------------------------------------------------------------------------- /appl/cmd/B.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/B.b -------------------------------------------------------------------------------- /appl/cmd/ar.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/ar.b -------------------------------------------------------------------------------- /appl/cmd/cd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/cd.b -------------------------------------------------------------------------------- /appl/cmd/cp.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/cp.b -------------------------------------------------------------------------------- /appl/cmd/dd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/dd.b -------------------------------------------------------------------------------- /appl/cmd/du.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/du.b -------------------------------------------------------------------------------- /appl/cmd/ed.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/ed.b -------------------------------------------------------------------------------- /appl/cmd/fc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/fc.b -------------------------------------------------------------------------------- /appl/cmd/fs.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/fs.b -------------------------------------------------------------------------------- /appl/cmd/ls.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/ls.b -------------------------------------------------------------------------------- /appl/cmd/m4.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/m4.b -------------------------------------------------------------------------------- /appl/cmd/mc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/mc.b -------------------------------------------------------------------------------- /appl/cmd/mv.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/mv.b -------------------------------------------------------------------------------- /appl/cmd/ns.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/ns.b -------------------------------------------------------------------------------- /appl/cmd/os.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/os.b -------------------------------------------------------------------------------- /appl/cmd/p.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/p.b -------------------------------------------------------------------------------- /appl/cmd/ps.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/ps.b -------------------------------------------------------------------------------- /appl/cmd/rm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/rm.b -------------------------------------------------------------------------------- /appl/cmd/tr.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/tr.b -------------------------------------------------------------------------------- /appl/cmd/wc.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/wc.b -------------------------------------------------------------------------------- /appl/cmd/xd.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/cmd/xd.b -------------------------------------------------------------------------------- /appl/lib/db.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/lib/db.b -------------------------------------------------------------------------------- /appl/lib/ip.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/lib/ip.b -------------------------------------------------------------------------------- /appl/lib/ir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/lib/ir.b -------------------------------------------------------------------------------- /appl/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/mkfile -------------------------------------------------------------------------------- /appl/svc/httpd/httpd.debug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/httpd/httpd.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/svc/webget/webget.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appl/wm/avi.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/avi.b -------------------------------------------------------------------------------- /appl/wm/c4.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/c4.b -------------------------------------------------------------------------------- /appl/wm/deb.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/deb.b -------------------------------------------------------------------------------- /appl/wm/dir.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/dir.b -------------------------------------------------------------------------------- /appl/wm/man.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/man.b -------------------------------------------------------------------------------- /appl/wm/pen.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/pen.b -------------------------------------------------------------------------------- /appl/wm/qt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/qt.b -------------------------------------------------------------------------------- /appl/wm/rt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/rt.b -------------------------------------------------------------------------------- /appl/wm/sam.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/sam.b -------------------------------------------------------------------------------- /appl/wm/sh.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/sh.b -------------------------------------------------------------------------------- /appl/wm/vt.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/vt.b -------------------------------------------------------------------------------- /appl/wm/wm.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/appl/wm/wm.b -------------------------------------------------------------------------------- /dis/9win.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/9win.dis -------------------------------------------------------------------------------- /dis/B.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/B.dis -------------------------------------------------------------------------------- /dis/acme.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/acme.dis -------------------------------------------------------------------------------- /dis/ar.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/ar.dis -------------------------------------------------------------------------------- /dis/asm.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/asm.dis -------------------------------------------------------------------------------- /dis/auhdr.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/auhdr.dis -------------------------------------------------------------------------------- /dis/bind.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/bind.dis -------------------------------------------------------------------------------- /dis/broke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/broke -------------------------------------------------------------------------------- /dis/bytes.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/bytes.dis -------------------------------------------------------------------------------- /dis/cal.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/cal.dis -------------------------------------------------------------------------------- /dis/calc.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/calc.dis -------------------------------------------------------------------------------- /dis/cat.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/cat.dis -------------------------------------------------------------------------------- /dis/cd.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/cd.dis -------------------------------------------------------------------------------- /dis/cddb.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/cddb.dis -------------------------------------------------------------------------------- /dis/chgrp.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/chgrp.dis -------------------------------------------------------------------------------- /dis/chmod.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/chmod.dis -------------------------------------------------------------------------------- /dis/cmp.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/cmp.dis -------------------------------------------------------------------------------- /dis/comm.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/comm.dis -------------------------------------------------------------------------------- /dis/cook.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/cook.dis -------------------------------------------------------------------------------- /dis/cp.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/cp.dis -------------------------------------------------------------------------------- /dis/cprof.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/cprof.dis -------------------------------------------------------------------------------- /dis/cpu.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/cpu.dis -------------------------------------------------------------------------------- /dis/crypt.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/crypt.dis -------------------------------------------------------------------------------- /dis/date.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/date.dis -------------------------------------------------------------------------------- /dis/dbfs.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/dbfs.dis -------------------------------------------------------------------------------- /dis/dd.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/dd.dis -------------------------------------------------------------------------------- /dis/dial.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/dial.dis -------------------------------------------------------------------------------- /dis/diff.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/diff.dis -------------------------------------------------------------------------------- /dis/du.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/du.dis -------------------------------------------------------------------------------- /dis/echo.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/echo.dis -------------------------------------------------------------------------------- /dis/ed.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/ed.dis -------------------------------------------------------------------------------- /dis/env.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/env.dis -------------------------------------------------------------------------------- /dis/fc.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/fc.dis -------------------------------------------------------------------------------- /dis/fcp.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/fcp.dis -------------------------------------------------------------------------------- /dis/fmt.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/fmt.dis -------------------------------------------------------------------------------- /dis/freq.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/freq.dis -------------------------------------------------------------------------------- /dis/fs.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/fs.dis -------------------------------------------------------------------------------- /dis/fs/ls.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/fs/ls.dis -------------------------------------------------------------------------------- /dis/fs/or.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/fs/or.dis -------------------------------------------------------------------------------- /dis/ftest.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/ftest.dis -------------------------------------------------------------------------------- /dis/ftpfs.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/ftpfs.dis -------------------------------------------------------------------------------- /dis/grep.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/grep.dis -------------------------------------------------------------------------------- /dis/gzip.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/gzip.dis -------------------------------------------------------------------------------- /dis/idea.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/idea.dis -------------------------------------------------------------------------------- /dis/itest.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/itest.dis -------------------------------------------------------------------------------- /dis/kill.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/kill.dis -------------------------------------------------------------------------------- /dis/lc: -------------------------------------------------------------------------------- 1 | #!/dis/sh 2 | ls -p $* | mc 3 | -------------------------------------------------------------------------------- /dis/limbo.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/limbo.dis -------------------------------------------------------------------------------- /dis/look.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/look.dis -------------------------------------------------------------------------------- /dis/lookman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/lookman -------------------------------------------------------------------------------- /dis/ls.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/ls.dis -------------------------------------------------------------------------------- /dis/lstar.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/lstar.dis -------------------------------------------------------------------------------- /dis/m4.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/m4.dis -------------------------------------------------------------------------------- /dis/man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/man -------------------------------------------------------------------------------- /dis/mash.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/mash.dis -------------------------------------------------------------------------------- /dis/mc.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/mc.dis -------------------------------------------------------------------------------- /dis/mdb.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/mdb.dis -------------------------------------------------------------------------------- /dis/memfs.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/memfs.dis -------------------------------------------------------------------------------- /dis/mk.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/mk.dis -------------------------------------------------------------------------------- /dis/mkdir.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/mkdir.dis -------------------------------------------------------------------------------- /dis/mount.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/mount.dis -------------------------------------------------------------------------------- /dis/mouse.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/mouse.dis -------------------------------------------------------------------------------- /dis/mprof.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/mprof.dis -------------------------------------------------------------------------------- /dis/mv.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/mv.dis -------------------------------------------------------------------------------- /dis/newer.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/newer.dis -------------------------------------------------------------------------------- /dis/ns.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/ns.dis -------------------------------------------------------------------------------- /dis/os.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/os.dis -------------------------------------------------------------------------------- /dis/p.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/p.dis -------------------------------------------------------------------------------- /dis/pause.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/pause.dis -------------------------------------------------------------------------------- /dis/plumb.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/plumb.dis -------------------------------------------------------------------------------- /dis/prof.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/prof.dis -------------------------------------------------------------------------------- /dis/ps.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/ps.dis -------------------------------------------------------------------------------- /dis/pwd.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/pwd.dis -------------------------------------------------------------------------------- /dis/rcmd.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/rcmd.dis -------------------------------------------------------------------------------- /dis/rdp.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/rdp.dis -------------------------------------------------------------------------------- /dis/read.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/read.dis -------------------------------------------------------------------------------- /dis/rm.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/rm.dis -------------------------------------------------------------------------------- /dis/runas.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/runas.dis -------------------------------------------------------------------------------- /dis/sed.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/sed.dis -------------------------------------------------------------------------------- /dis/sh.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/sh.dis -------------------------------------------------------------------------------- /dis/sh/mk.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/sh/mk.dis -------------------------------------------------------------------------------- /dis/sh/sh.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/sh/sh.dis -------------------------------------------------------------------------------- /dis/sh/tk.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/sh/tk.dis -------------------------------------------------------------------------------- /dis/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/shutdown -------------------------------------------------------------------------------- /dis/sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/sig -------------------------------------------------------------------------------- /dis/sleep.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/sleep.dis -------------------------------------------------------------------------------- /dis/sort.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/sort.dis -------------------------------------------------------------------------------- /dis/src.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/src.dis -------------------------------------------------------------------------------- /dis/stack.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/stack.dis -------------------------------------------------------------------------------- /dis/sum.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/sum.dis -------------------------------------------------------------------------------- /dis/svc/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/svc/auth -------------------------------------------------------------------------------- /dis/svc/net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/svc/net -------------------------------------------------------------------------------- /dis/svc/rstyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/svc/rstyx -------------------------------------------------------------------------------- /dis/svc/styx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/svc/styx -------------------------------------------------------------------------------- /dis/tail.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/tail.dis -------------------------------------------------------------------------------- /dis/tarfs.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/tarfs.dis -------------------------------------------------------------------------------- /dis/tclsh.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/tclsh.dis -------------------------------------------------------------------------------- /dis/tcs.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/tcs.dis -------------------------------------------------------------------------------- /dis/tee.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/tee.dis -------------------------------------------------------------------------------- /dis/test.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/test.dis -------------------------------------------------------------------------------- /dis/time.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/time.dis -------------------------------------------------------------------------------- /dis/tkcmd.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/tkcmd.dis -------------------------------------------------------------------------------- /dis/touch.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/touch.dis -------------------------------------------------------------------------------- /dis/tr.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/tr.dis -------------------------------------------------------------------------------- /dis/trfs.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/trfs.dis -------------------------------------------------------------------------------- /dis/tsort.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/tsort.dis -------------------------------------------------------------------------------- /dis/uniq.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/uniq.dis -------------------------------------------------------------------------------- /dis/units.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/units.dis -------------------------------------------------------------------------------- /dis/vacfs.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/vacfs.dis -------------------------------------------------------------------------------- /dis/wc.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/wc.dis -------------------------------------------------------------------------------- /dis/wish.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/wish.dis -------------------------------------------------------------------------------- /dis/wm/c4.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/wm/c4.dis -------------------------------------------------------------------------------- /dis/wm/qt.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/wm/qt.dis -------------------------------------------------------------------------------- /dis/wm/rt.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/wm/rt.dis -------------------------------------------------------------------------------- /dis/wm/sh.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/wm/sh.dis -------------------------------------------------------------------------------- /dis/wm/vt.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/wm/vt.dis -------------------------------------------------------------------------------- /dis/wm/wm.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/wm/wm.dis -------------------------------------------------------------------------------- /dis/xargs.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/xargs.dis -------------------------------------------------------------------------------- /dis/xd.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/xd.dis -------------------------------------------------------------------------------- /dis/yacc.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/yacc.dis -------------------------------------------------------------------------------- /dis/zeros.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/dis/zeros.dis -------------------------------------------------------------------------------- /doc/acid.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/acid.ms -------------------------------------------------------------------------------- /doc/acid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/acid.pdf -------------------------------------------------------------------------------- /doc/asm.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/asm.ms -------------------------------------------------------------------------------- /doc/asm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/asm.pdf -------------------------------------------------------------------------------- /doc/bltj.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/bltj.ms -------------------------------------------------------------------------------- /doc/bltj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/bltj.pdf -------------------------------------------------------------------------------- /doc/dev.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/dev.ms -------------------------------------------------------------------------------- /doc/dev.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/dev.pdf -------------------------------------------------------------------------------- /doc/dis.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/dis.ms -------------------------------------------------------------------------------- /doc/dis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/dis.pdf -------------------------------------------------------------------------------- /doc/fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/fonts -------------------------------------------------------------------------------- /doc/fonts.bem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/fonts.bem -------------------------------------------------------------------------------- /doc/fonts.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/fonts.pal -------------------------------------------------------------------------------- /doc/lego.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/lego.ms -------------------------------------------------------------------------------- /doc/lego.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/lego.pdf -------------------------------------------------------------------------------- /doc/lprof.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/lprof.ms -------------------------------------------------------------------------------- /doc/lprof.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/lprof.pdf -------------------------------------------------------------------------------- /doc/mk.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/mk.ms -------------------------------------------------------------------------------- /doc/mk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/mk.pdf -------------------------------------------------------------------------------- /doc/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/mkfile -------------------------------------------------------------------------------- /doc/port.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/port.ms -------------------------------------------------------------------------------- /doc/port.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/port.pdf -------------------------------------------------------------------------------- /doc/sh.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/sh.ms -------------------------------------------------------------------------------- /doc/sh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/sh.pdf -------------------------------------------------------------------------------- /doc/styx.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/styx.ms -------------------------------------------------------------------------------- /doc/styx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/doc/styx.pdf -------------------------------------------------------------------------------- /empties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/empties -------------------------------------------------------------------------------- /emu/Irix/NOTE: -------------------------------------------------------------------------------- 1 | for some strange reason, it lacks deveia! 2 | -------------------------------------------------------------------------------- /emu/Irix/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Irix/emu -------------------------------------------------------------------------------- /emu/Irix/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Irix/os.c -------------------------------------------------------------------------------- /emu/Linux/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Linux/emu -------------------------------------------------------------------------------- /emu/Linux/mkfile-386: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Linux/mkfile-arm: -------------------------------------------------------------------------------- 1 | ARCHFILES=\ 2 | arm-tas-v7.$O\ 3 | -------------------------------------------------------------------------------- /emu/Linux/mkfile-mips: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/Linux/mkfile-power: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emu/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/NOTICE -------------------------------------------------------------------------------- /emu/Nt/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/cmd.c -------------------------------------------------------------------------------- /emu/Nt/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/emu -------------------------------------------------------------------------------- /emu/Nt/fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/fp.c -------------------------------------------------------------------------------- /emu/Nt/ie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/ie -------------------------------------------------------------------------------- /emu/Nt/ipif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/ipif.c -------------------------------------------------------------------------------- /emu/Nt/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/mkfile -------------------------------------------------------------------------------- /emu/Nt/nt.rc: -------------------------------------------------------------------------------- 1 | 100 ICON inferno.ico 2 | -------------------------------------------------------------------------------- /emu/Nt/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/os.c -------------------------------------------------------------------------------- /emu/Nt/r16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/r16.c -------------------------------------------------------------------------------- /emu/Nt/r16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/r16.h -------------------------------------------------------------------------------- /emu/Nt/vlrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/vlrt.c -------------------------------------------------------------------------------- /emu/Nt/win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Nt/win.c -------------------------------------------------------------------------------- /emu/Plan9/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/Plan9/emu -------------------------------------------------------------------------------- /emu/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/mkfile -------------------------------------------------------------------------------- /emu/port/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/emu/port/ip.h -------------------------------------------------------------------------------- /fonts/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/fonts/LICENCE -------------------------------------------------------------------------------- /fonts/minitel/f40x25g1: -------------------------------------------------------------------------------- 1 | 17 13 2 | 0 255 vid14x17 3 | -------------------------------------------------------------------------------- /fonts/misc/st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/fonts/misc/st -------------------------------------------------------------------------------- /fonts/psrename: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/csn.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/icons/csn.bit -------------------------------------------------------------------------------- /icons/ibc.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/icons/ibc.bit -------------------------------------------------------------------------------- /icons/lnw.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/icons/lnw.bit -------------------------------------------------------------------------------- /icons/run.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/icons/run.bit -------------------------------------------------------------------------------- /icons/tk/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/icons/tk/info -------------------------------------------------------------------------------- /icons/web.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/icons/web.bit -------------------------------------------------------------------------------- /include/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/include/bio.h -------------------------------------------------------------------------------- /include/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/include/isa.h -------------------------------------------------------------------------------- /include/logfsos.h: -------------------------------------------------------------------------------- 1 | #include "lib9.h" 2 | -------------------------------------------------------------------------------- /include/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/include/mp.h -------------------------------------------------------------------------------- /include/tk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/include/tk.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "Fourth Edition (20151010)" 2 | -------------------------------------------------------------------------------- /include/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/include/vm.h -------------------------------------------------------------------------------- /keydb/keys: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/acid/386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/acid/386 -------------------------------------------------------------------------------- /lib/acid/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/acid/arm -------------------------------------------------------------------------------- /lib/acid/gpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/acid/gpa -------------------------------------------------------------------------------- /lib/acid/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/acid/mips -------------------------------------------------------------------------------- /lib/acid/port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/acid/port -------------------------------------------------------------------------------- /lib/ebooks/devils/A.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/B.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/C.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/D.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/E.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/F.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/G.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/H.html.annot: -------------------------------------------------------------------------------- 1 | 22841 Hello -------------------------------------------------------------------------------- /lib/ebooks/devils/I.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/J.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/K.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/L.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/M.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/N.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/O.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/P.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/Q.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/R.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/S.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/T.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/TitlePage.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/U.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/V.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/W.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/X.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/Y.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/Z.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/foreword.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/index.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/devils/preface.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/BART.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/BentSub.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/BlueWater.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/ExecutiveSummary.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/GoldMine.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/GoldenGate.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/TitlePage.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/awards.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/business.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/confrontations.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/covert.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/dial-a-ride.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/foreword.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/hobbies.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/patents.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ebooks/oebtest/toc.html.annot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/emptydirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/emptydirs -------------------------------------------------------------------------------- /lib/ircnames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/ircnames -------------------------------------------------------------------------------- /lib/keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/keyboard -------------------------------------------------------------------------------- /lib/legal/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/legal/GPL -------------------------------------------------------------------------------- /lib/limbo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/limbo.vim -------------------------------------------------------------------------------- /lib/mashinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/mashinit -------------------------------------------------------------------------------- /lib/mimetype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/mimetype -------------------------------------------------------------------------------- /lib/mk/binds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/mk/binds -------------------------------------------------------------------------------- /lib/ndb/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/ndb/dns -------------------------------------------------------------------------------- /lib/ndb/local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/ndb/local -------------------------------------------------------------------------------- /lib/polyhedra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/polyhedra -------------------------------------------------------------------------------- /lib/print/defprinter: -------------------------------------------------------------------------------- 1 | printer0 2 | -------------------------------------------------------------------------------- /lib/proto/Hp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/proto/Hp -------------------------------------------------------------------------------- /lib/proto/Nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/proto/Nt -------------------------------------------------------------------------------- /lib/proto/os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/proto/os -------------------------------------------------------------------------------- /lib/proto/src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/proto/src -------------------------------------------------------------------------------- /lib/scores/x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/scores/x -------------------------------------------------------------------------------- /lib/scsicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/scsicodes -------------------------------------------------------------------------------- /lib/sexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/sexp -------------------------------------------------------------------------------- /lib/sh/owen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/sh/owen -------------------------------------------------------------------------------- /lib/sh/profile: -------------------------------------------------------------------------------- 1 | # emu sh initialisation here 2 | -------------------------------------------------------------------------------- /lib/sh/sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/sh/sched -------------------------------------------------------------------------------- /lib/sh/srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/sh/srv -------------------------------------------------------------------------------- /lib/sh/win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/sh/win -------------------------------------------------------------------------------- /lib/tbsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/tbsetup -------------------------------------------------------------------------------- /lib/unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/unicode -------------------------------------------------------------------------------- /lib/units: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/units -------------------------------------------------------------------------------- /lib/usbdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/usbdb -------------------------------------------------------------------------------- /lib/wmcharon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/wmcharon -------------------------------------------------------------------------------- /lib/wmsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/wmsetup -------------------------------------------------------------------------------- /lib/words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/words -------------------------------------------------------------------------------- /lib/yaccpar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib/yaccpar -------------------------------------------------------------------------------- /lib9/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/NOTICE -------------------------------------------------------------------------------- /lib9/argv0.c: -------------------------------------------------------------------------------- 1 | char* argv0 = 0; 2 | -------------------------------------------------------------------------------- /lib9/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/create.c -------------------------------------------------------------------------------- /lib9/dofmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/dofmt.c -------------------------------------------------------------------------------- /lib9/dorfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/dorfmt.c -------------------------------------------------------------------------------- /lib9/errfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/errfmt.c -------------------------------------------------------------------------------- /lib9/exits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/exits.c -------------------------------------------------------------------------------- /lib9/fltfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/fltfmt.c -------------------------------------------------------------------------------- /lib9/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/fmt.c -------------------------------------------------------------------------------- /lib9/fmtdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/fmtdef.h -------------------------------------------------------------------------------- /lib9/fmtfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/fmtfd.c -------------------------------------------------------------------------------- /lib9/fmtstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/fmtstr.c -------------------------------------------------------------------------------- /lib9/fprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/fprint.c -------------------------------------------------------------------------------- /lib9/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/lock.c -------------------------------------------------------------------------------- /lib9/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/mkfile -------------------------------------------------------------------------------- /lib9/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | TARGFILES=errstr-Plan9.$O\ 2 | 3 | -------------------------------------------------------------------------------- /lib9/pow10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/pow10.c -------------------------------------------------------------------------------- /lib9/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/print.c -------------------------------------------------------------------------------- /lib9/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/qsort.c -------------------------------------------------------------------------------- /lib9/readn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/readn.c -------------------------------------------------------------------------------- /lib9/rune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/rune.c -------------------------------------------------------------------------------- /lib9/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/seek.c -------------------------------------------------------------------------------- /lib9/sprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/sprint.c -------------------------------------------------------------------------------- /lib9/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/strdup.c -------------------------------------------------------------------------------- /lib9/u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/u16.c -------------------------------------------------------------------------------- /lib9/u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/u32.c -------------------------------------------------------------------------------- /lib9/u64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/u64.c -------------------------------------------------------------------------------- /lib9/utflen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/lib9/utflen.c -------------------------------------------------------------------------------- /libbio/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libbio/NOTICE -------------------------------------------------------------------------------- /libbio/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libbio/mkfile -------------------------------------------------------------------------------- /libdraw/rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libdraw/rgb.c -------------------------------------------------------------------------------- /libfreetype/ft2system.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libinterp/README: -------------------------------------------------------------------------------- 1 | comp-68020.c has not been tested recently 2 | -------------------------------------------------------------------------------- /libinterp/das-spim.c: -------------------------------------------------------------------------------- 1 | #include "das-mips.c" 2 | -------------------------------------------------------------------------------- /libkern/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libkern/abs.c -------------------------------------------------------------------------------- /libkern/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libkern/exp.c -------------------------------------------------------------------------------- /libkern/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libkern/fmt.c -------------------------------------------------------------------------------- /libkern/getfcr-spim.s: -------------------------------------------------------------------------------- 1 | #include "getfcr-mips.s" 2 | -------------------------------------------------------------------------------- /libkern/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libkern/log.c -------------------------------------------------------------------------------- /libkern/memmove-spim.s: -------------------------------------------------------------------------------- 1 | #include "memmove-mips.s" 2 | -------------------------------------------------------------------------------- /libkern/memset-spim.s: -------------------------------------------------------------------------------- 1 | #include "memset-mips.s" 2 | -------------------------------------------------------------------------------- /libkern/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libkern/pow.c -------------------------------------------------------------------------------- /libkern/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libkern/sin.c -------------------------------------------------------------------------------- /libkern/strchr-spim.s: -------------------------------------------------------------------------------- 1 | #include "strchr-mips.s" 2 | -------------------------------------------------------------------------------- /libkern/u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libkern/u16.c -------------------------------------------------------------------------------- /libkern/u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libkern/u32.c -------------------------------------------------------------------------------- /libkern/u64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libkern/u64.c -------------------------------------------------------------------------------- /liblogfs/gn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/liblogfs/gn.c -------------------------------------------------------------------------------- /liblogfs/is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/liblogfs/is.c -------------------------------------------------------------------------------- /libmath/FPcontrol-Plan9.c: -------------------------------------------------------------------------------- 1 | #include "FPcontrol-Inferno.c" 2 | -------------------------------------------------------------------------------- /libmemlayer/lreshape.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmp/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libmp/NOTICE -------------------------------------------------------------------------------- /libmp/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libmp/mkfile -------------------------------------------------------------------------------- /libmp/mtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libmp/mtest.c -------------------------------------------------------------------------------- /libmp/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libmp/test.c -------------------------------------------------------------------------------- /libsec/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libsec/NOTICE -------------------------------------------------------------------------------- /libsec/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libsec/mkfile -------------------------------------------------------------------------------- /libtk/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/NOTES -------------------------------------------------------------------------------- /libtk/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/NOTICE -------------------------------------------------------------------------------- /libtk/buton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/buton.c -------------------------------------------------------------------------------- /libtk/canvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/canvs.c -------------------------------------------------------------------------------- /libtk/canvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/canvs.h -------------------------------------------------------------------------------- /libtk/canvu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/canvu.c -------------------------------------------------------------------------------- /libtk/carcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/carcs.c -------------------------------------------------------------------------------- /libtk/cbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/cbits.c -------------------------------------------------------------------------------- /libtk/cimag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/cimag.c -------------------------------------------------------------------------------- /libtk/cline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/cline.c -------------------------------------------------------------------------------- /libtk/colrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/colrs.c -------------------------------------------------------------------------------- /libtk/coval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/coval.c -------------------------------------------------------------------------------- /libtk/cpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/cpoly.c -------------------------------------------------------------------------------- /libtk/crect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/crect.c -------------------------------------------------------------------------------- /libtk/ctext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/ctext.c -------------------------------------------------------------------------------- /libtk/cwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/cwind.c -------------------------------------------------------------------------------- /libtk/ebind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/ebind.c -------------------------------------------------------------------------------- /libtk/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/entry.c -------------------------------------------------------------------------------- /libtk/extns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/extns.c -------------------------------------------------------------------------------- /libtk/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/frame.c -------------------------------------------------------------------------------- /libtk/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/frame.h -------------------------------------------------------------------------------- /libtk/grids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/grids.c -------------------------------------------------------------------------------- /libtk/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/image.c -------------------------------------------------------------------------------- /libtk/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/label.c -------------------------------------------------------------------------------- /libtk/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/label.h -------------------------------------------------------------------------------- /libtk/listb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/listb.c -------------------------------------------------------------------------------- /libtk/listb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/listb.h -------------------------------------------------------------------------------- /libtk/mail.tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/mail.tk -------------------------------------------------------------------------------- /libtk/menu.tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/menu.tk -------------------------------------------------------------------------------- /libtk/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/menus.c -------------------------------------------------------------------------------- /libtk/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/mkfile -------------------------------------------------------------------------------- /libtk/packr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/packr.c -------------------------------------------------------------------------------- /libtk/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/panel.c -------------------------------------------------------------------------------- /libtk/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/parse.c -------------------------------------------------------------------------------- /libtk/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/scale.c -------------------------------------------------------------------------------- /libtk/scrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/scrol.c -------------------------------------------------------------------------------- /libtk/textu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/textu.c -------------------------------------------------------------------------------- /libtk/textw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/textw.c -------------------------------------------------------------------------------- /libtk/textw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/textw.h -------------------------------------------------------------------------------- /libtk/tindx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/tindx.c -------------------------------------------------------------------------------- /libtk/tmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/tmark.c -------------------------------------------------------------------------------- /libtk/ttags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/ttags.c -------------------------------------------------------------------------------- /libtk/twind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/twind.c -------------------------------------------------------------------------------- /libtk/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/utils.c -------------------------------------------------------------------------------- /libtk/varbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/varbl.c -------------------------------------------------------------------------------- /libtk/windw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/windw.c -------------------------------------------------------------------------------- /libtk/xdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/libtk/xdata.c -------------------------------------------------------------------------------- /limbo/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/NOTICE -------------------------------------------------------------------------------- /limbo/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/asm.c -------------------------------------------------------------------------------- /limbo/com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/com.c -------------------------------------------------------------------------------- /limbo/decls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/decls.c -------------------------------------------------------------------------------- /limbo/dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/dis.c -------------------------------------------------------------------------------- /limbo/ecom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/ecom.c -------------------------------------------------------------------------------- /limbo/fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/fns.h -------------------------------------------------------------------------------- /limbo/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/gen.c -------------------------------------------------------------------------------- /limbo/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/lex.c -------------------------------------------------------------------------------- /limbo/limbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/limbo.h -------------------------------------------------------------------------------- /limbo/limbo.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/limbo.y -------------------------------------------------------------------------------- /limbo/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/mkfile -------------------------------------------------------------------------------- /limbo/nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/nodes.c -------------------------------------------------------------------------------- /limbo/optab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/optab.c -------------------------------------------------------------------------------- /limbo/optim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/optim.c -------------------------------------------------------------------------------- /limbo/sbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/sbl.c -------------------------------------------------------------------------------- /limbo/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/stubs.c -------------------------------------------------------------------------------- /limbo/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/limbo/types.c -------------------------------------------------------------------------------- /locale/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/CET -------------------------------------------------------------------------------- /locale/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Cuba -------------------------------------------------------------------------------- /locale/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/EET -------------------------------------------------------------------------------- /locale/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Egypt -------------------------------------------------------------------------------- /locale/GMT: -------------------------------------------------------------------------------- 1 | GMT 0 2 | -------------------------------------------------------------------------------- /locale/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/HST -------------------------------------------------------------------------------- /locale/India: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/India -------------------------------------------------------------------------------- /locale/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Iran -------------------------------------------------------------------------------- /locale/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Israel -------------------------------------------------------------------------------- /locale/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Japan -------------------------------------------------------------------------------- /locale/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Libya -------------------------------------------------------------------------------- /locale/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/MET -------------------------------------------------------------------------------- /locale/Moscow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Moscow -------------------------------------------------------------------------------- /locale/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/NOTICE -------------------------------------------------------------------------------- /locale/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/NZ -------------------------------------------------------------------------------- /locale/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Navajo -------------------------------------------------------------------------------- /locale/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/PRC -------------------------------------------------------------------------------- /locale/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Poland -------------------------------------------------------------------------------- /locale/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/README -------------------------------------------------------------------------------- /locale/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/ROC -------------------------------------------------------------------------------- /locale/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/ROK -------------------------------------------------------------------------------- /locale/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/Turkey -------------------------------------------------------------------------------- /locale/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/W-SU -------------------------------------------------------------------------------- /locale/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/locale/WET -------------------------------------------------------------------------------- /locale/en_US/location: -------------------------------------------------------------------------------- 1 | en_US 2 | -------------------------------------------------------------------------------- /locale/location: -------------------------------------------------------------------------------- 1 | en_US 2 | -------------------------------------------------------------------------------- /makemk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/makemk.sh -------------------------------------------------------------------------------- /man/1/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/0intro -------------------------------------------------------------------------------- /man/1/9win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/9win -------------------------------------------------------------------------------- /man/1/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/INDEX -------------------------------------------------------------------------------- /man/1/acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/acme -------------------------------------------------------------------------------- /man/1/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/ar -------------------------------------------------------------------------------- /man/1/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/asm -------------------------------------------------------------------------------- /man/1/auplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/auplay -------------------------------------------------------------------------------- /man/1/avr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/avr -------------------------------------------------------------------------------- /man/1/bind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/bind -------------------------------------------------------------------------------- /man/1/blur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/blur -------------------------------------------------------------------------------- /man/1/brutus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/brutus -------------------------------------------------------------------------------- /man/1/cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/cal -------------------------------------------------------------------------------- /man/1/calc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/calc -------------------------------------------------------------------------------- /man/1/cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/cat -------------------------------------------------------------------------------- /man/1/cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/cd -------------------------------------------------------------------------------- /man/1/charon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/charon -------------------------------------------------------------------------------- /man/1/chgrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/chgrp -------------------------------------------------------------------------------- /man/1/chmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/chmod -------------------------------------------------------------------------------- /man/1/cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/cmp -------------------------------------------------------------------------------- /man/1/collab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/collab -------------------------------------------------------------------------------- /man/1/comm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/comm -------------------------------------------------------------------------------- /man/1/cook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/cook -------------------------------------------------------------------------------- /man/1/cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/cp -------------------------------------------------------------------------------- /man/1/cprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/cprof -------------------------------------------------------------------------------- /man/1/cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/cpu -------------------------------------------------------------------------------- /man/1/crypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/crypt -------------------------------------------------------------------------------- /man/1/date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/date -------------------------------------------------------------------------------- /man/1/dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/dd -------------------------------------------------------------------------------- /man/1/deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/deb -------------------------------------------------------------------------------- /man/1/diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/diff -------------------------------------------------------------------------------- /man/1/disdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/disdep -------------------------------------------------------------------------------- /man/1/dmview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/dmview -------------------------------------------------------------------------------- /man/1/du: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/du -------------------------------------------------------------------------------- /man/1/ebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/ebook -------------------------------------------------------------------------------- /man/1/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/echo -------------------------------------------------------------------------------- /man/1/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/emu -------------------------------------------------------------------------------- /man/1/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/env -------------------------------------------------------------------------------- /man/1/fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/fc -------------------------------------------------------------------------------- /man/1/fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/fmt -------------------------------------------------------------------------------- /man/1/fortune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/fortune -------------------------------------------------------------------------------- /man/1/freq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/freq -------------------------------------------------------------------------------- /man/1/fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/fs -------------------------------------------------------------------------------- /man/1/ftest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/ftest -------------------------------------------------------------------------------- /man/1/ftree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/ftree -------------------------------------------------------------------------------- /man/1/gettar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/gettar -------------------------------------------------------------------------------- /man/1/grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/grep -------------------------------------------------------------------------------- /man/1/grid-ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/grid-ns -------------------------------------------------------------------------------- /man/1/gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/gzip -------------------------------------------------------------------------------- /man/1/idea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/idea -------------------------------------------------------------------------------- /man/1/itest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/itest -------------------------------------------------------------------------------- /man/1/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/kill -------------------------------------------------------------------------------- /man/1/limbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/limbo -------------------------------------------------------------------------------- /man/1/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/listen -------------------------------------------------------------------------------- /man/1/logon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/logon -------------------------------------------------------------------------------- /man/1/look: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/look -------------------------------------------------------------------------------- /man/1/ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/ls -------------------------------------------------------------------------------- /man/1/m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/m4 -------------------------------------------------------------------------------- /man/1/man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/man -------------------------------------------------------------------------------- /man/1/mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/mash -------------------------------------------------------------------------------- /man/1/mash-tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/mash-tk -------------------------------------------------------------------------------- /man/1/mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/mc -------------------------------------------------------------------------------- /man/1/mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/mdb -------------------------------------------------------------------------------- /man/1/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/mk -------------------------------------------------------------------------------- /man/1/mkdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/mkdir -------------------------------------------------------------------------------- /man/1/mprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/mprof -------------------------------------------------------------------------------- /man/1/mux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/mux -------------------------------------------------------------------------------- /man/1/mv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/mv -------------------------------------------------------------------------------- /man/1/netkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/netkey -------------------------------------------------------------------------------- /man/1/netstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/netstat -------------------------------------------------------------------------------- /man/1/ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/ns -------------------------------------------------------------------------------- /man/1/nsbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/nsbuild -------------------------------------------------------------------------------- /man/1/os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/os -------------------------------------------------------------------------------- /man/1/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/p -------------------------------------------------------------------------------- /man/1/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/passwd -------------------------------------------------------------------------------- /man/1/plumb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/plumb -------------------------------------------------------------------------------- /man/1/prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/prof -------------------------------------------------------------------------------- /man/1/ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/ps -------------------------------------------------------------------------------- /man/1/pwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/pwd -------------------------------------------------------------------------------- /man/1/rcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/rcmd -------------------------------------------------------------------------------- /man/1/read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/read -------------------------------------------------------------------------------- /man/1/rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/rm -------------------------------------------------------------------------------- /man/1/runas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/runas -------------------------------------------------------------------------------- /man/1/sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sh -------------------------------------------------------------------------------- /man/1/sh-arg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sh-arg -------------------------------------------------------------------------------- /man/1/sh-csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sh-csv -------------------------------------------------------------------------------- /man/1/sh-expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sh-expr -------------------------------------------------------------------------------- /man/1/sh-std: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sh-std -------------------------------------------------------------------------------- /man/1/sh-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sh-test -------------------------------------------------------------------------------- /man/1/sh-tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sh-tk -------------------------------------------------------------------------------- /man/1/sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sleep -------------------------------------------------------------------------------- /man/1/sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sort -------------------------------------------------------------------------------- /man/1/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/stack -------------------------------------------------------------------------------- /man/1/stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/stream -------------------------------------------------------------------------------- /man/1/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/strings -------------------------------------------------------------------------------- /man/1/sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/sum -------------------------------------------------------------------------------- /man/1/tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/tail -------------------------------------------------------------------------------- /man/1/tcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/tcs -------------------------------------------------------------------------------- /man/1/tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/tee -------------------------------------------------------------------------------- /man/1/telnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/telnet -------------------------------------------------------------------------------- /man/1/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/time -------------------------------------------------------------------------------- /man/1/tiny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/tiny -------------------------------------------------------------------------------- /man/1/tkcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/tkcmd -------------------------------------------------------------------------------- /man/1/toolbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/toolbar -------------------------------------------------------------------------------- /man/1/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/touch -------------------------------------------------------------------------------- /man/1/tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/tr -------------------------------------------------------------------------------- /man/1/tsort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/tsort -------------------------------------------------------------------------------- /man/1/unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/unicode -------------------------------------------------------------------------------- /man/1/uniq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/uniq -------------------------------------------------------------------------------- /man/1/units: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/units -------------------------------------------------------------------------------- /man/1/vacget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/vacget -------------------------------------------------------------------------------- /man/1/wc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/wc -------------------------------------------------------------------------------- /man/1/webgrab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/webgrab -------------------------------------------------------------------------------- /man/1/wish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/wish -------------------------------------------------------------------------------- /man/1/wm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/wm -------------------------------------------------------------------------------- /man/1/wm-misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/wm-misc -------------------------------------------------------------------------------- /man/1/wm-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/wm-sh -------------------------------------------------------------------------------- /man/1/xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/xd -------------------------------------------------------------------------------- /man/1/yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/yacc -------------------------------------------------------------------------------- /man/1/zeros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/1/zeros -------------------------------------------------------------------------------- /man/10/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/0intro -------------------------------------------------------------------------------- /man/10/2a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/2a -------------------------------------------------------------------------------- /man/10/2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/2c -------------------------------------------------------------------------------- /man/10/2l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/2l -------------------------------------------------------------------------------- /man/10/5coff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/5coff -------------------------------------------------------------------------------- /man/10/5cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/5cv -------------------------------------------------------------------------------- /man/10/9load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/9load -------------------------------------------------------------------------------- /man/10/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/INDEX -------------------------------------------------------------------------------- /man/10/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/a.out -------------------------------------------------------------------------------- /man/10/acid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/acid -------------------------------------------------------------------------------- /man/10/allocb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/allocb -------------------------------------------------------------------------------- /man/10/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/ar -------------------------------------------------------------------------------- /man/10/atoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/atoi -------------------------------------------------------------------------------- /man/10/c2l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/c2l -------------------------------------------------------------------------------- /man/10/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/conf -------------------------------------------------------------------------------- /man/10/delay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/delay -------------------------------------------------------------------------------- /man/10/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/dev -------------------------------------------------------------------------------- /man/10/dynld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/dynld -------------------------------------------------------------------------------- /man/10/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/error -------------------------------------------------------------------------------- /man/10/eve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/eve -------------------------------------------------------------------------------- /man/10/iar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/iar -------------------------------------------------------------------------------- /man/10/inb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/inb -------------------------------------------------------------------------------- /man/10/inm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/inm -------------------------------------------------------------------------------- /man/10/kproc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/kproc -------------------------------------------------------------------------------- /man/10/kprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/kprof -------------------------------------------------------------------------------- /man/10/ksize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/ksize -------------------------------------------------------------------------------- /man/10/kstrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/kstrip -------------------------------------------------------------------------------- /man/10/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/lock -------------------------------------------------------------------------------- /man/10/malloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/malloc -------------------------------------------------------------------------------- /man/10/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/master -------------------------------------------------------------------------------- /man/10/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/memory -------------------------------------------------------------------------------- /man/10/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/mk -------------------------------------------------------------------------------- /man/10/ms2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/ms2 -------------------------------------------------------------------------------- /man/10/ntsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/ntsrv -------------------------------------------------------------------------------- /man/10/odbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/odbc -------------------------------------------------------------------------------- /man/10/panic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/panic -------------------------------------------------------------------------------- /man/10/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/print -------------------------------------------------------------------------------- /man/10/qio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/qio -------------------------------------------------------------------------------- /man/10/qlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/qlock -------------------------------------------------------------------------------- /man/10/ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/ref -------------------------------------------------------------------------------- /man/10/rune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/rune -------------------------------------------------------------------------------- /man/10/sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/sleep -------------------------------------------------------------------------------- /man/10/splhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/splhi -------------------------------------------------------------------------------- /man/10/strcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/strcat -------------------------------------------------------------------------------- /man/10/styx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/styx -------------------------------------------------------------------------------- /man/10/xalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/10/xalloc -------------------------------------------------------------------------------- /man/2/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/0intro -------------------------------------------------------------------------------- /man/2/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/INDEX -------------------------------------------------------------------------------- /man/2/arg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/arg -------------------------------------------------------------------------------- /man/2/asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/asn1 -------------------------------------------------------------------------------- /man/2/attrdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/attrdb -------------------------------------------------------------------------------- /man/2/bufio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/bufio -------------------------------------------------------------------------------- /man/2/cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/cfg -------------------------------------------------------------------------------- /man/2/command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/command -------------------------------------------------------------------------------- /man/2/convcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/convcs -------------------------------------------------------------------------------- /man/2/crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/crc -------------------------------------------------------------------------------- /man/2/csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/csv -------------------------------------------------------------------------------- /man/2/daytime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/daytime -------------------------------------------------------------------------------- /man/2/dbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/dbm -------------------------------------------------------------------------------- /man/2/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/debug -------------------------------------------------------------------------------- /man/2/dial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/dial -------------------------------------------------------------------------------- /man/2/dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/dialog -------------------------------------------------------------------------------- /man/2/dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/dict -------------------------------------------------------------------------------- /man/2/dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/dis -------------------------------------------------------------------------------- /man/2/disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/disks -------------------------------------------------------------------------------- /man/2/drawmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/drawmux -------------------------------------------------------------------------------- /man/2/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/env -------------------------------------------------------------------------------- /man/2/ether: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/ether -------------------------------------------------------------------------------- /man/2/filepat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/filepat -------------------------------------------------------------------------------- /man/2/filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/filter -------------------------------------------------------------------------------- /man/2/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/format -------------------------------------------------------------------------------- /man/2/fsproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/fsproto -------------------------------------------------------------------------------- /man/2/geodesy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/geodesy -------------------------------------------------------------------------------- /man/2/hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/hash -------------------------------------------------------------------------------- /man/2/ida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/ida -------------------------------------------------------------------------------- /man/2/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/ip -------------------------------------------------------------------------------- /man/2/ipints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/ipints -------------------------------------------------------------------------------- /man/2/ir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/ir -------------------------------------------------------------------------------- /man/2/itslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/itslib -------------------------------------------------------------------------------- /man/2/json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/json -------------------------------------------------------------------------------- /man/2/keyset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/keyset -------------------------------------------------------------------------------- /man/2/lists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/lists -------------------------------------------------------------------------------- /man/2/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/lock -------------------------------------------------------------------------------- /man/2/math-fp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/math-fp -------------------------------------------------------------------------------- /man/2/mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/mpeg -------------------------------------------------------------------------------- /man/2/msgio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/msgio -------------------------------------------------------------------------------- /man/2/names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/names -------------------------------------------------------------------------------- /man/2/newns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/newns -------------------------------------------------------------------------------- /man/2/pop3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/pop3 -------------------------------------------------------------------------------- /man/2/popup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/popup -------------------------------------------------------------------------------- /man/2/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/print -------------------------------------------------------------------------------- /man/2/prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/prof -------------------------------------------------------------------------------- /man/2/pslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/pslib -------------------------------------------------------------------------------- /man/2/rabin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/rabin -------------------------------------------------------------------------------- /man/2/rand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/rand -------------------------------------------------------------------------------- /man/2/readdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/readdir -------------------------------------------------------------------------------- /man/2/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/regex -------------------------------------------------------------------------------- /man/2/rfc822: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/rfc822 -------------------------------------------------------------------------------- /man/2/scsiio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/scsiio -------------------------------------------------------------------------------- /man/2/sets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/sets -------------------------------------------------------------------------------- /man/2/sexprs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/sexprs -------------------------------------------------------------------------------- /man/2/sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/sh -------------------------------------------------------------------------------- /man/2/smtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/smtp -------------------------------------------------------------------------------- /man/2/spki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/spki -------------------------------------------------------------------------------- /man/2/spree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/spree -------------------------------------------------------------------------------- /man/2/srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/srv -------------------------------------------------------------------------------- /man/2/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/string -------------------------------------------------------------------------------- /man/2/styx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/styx -------------------------------------------------------------------------------- /man/2/sys-dup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/sys-dup -------------------------------------------------------------------------------- /man/2/tabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/tabs -------------------------------------------------------------------------------- /man/2/tftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/tftp -------------------------------------------------------------------------------- /man/2/timers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/timers -------------------------------------------------------------------------------- /man/2/tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/tk -------------------------------------------------------------------------------- /man/2/ubfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/ubfa -------------------------------------------------------------------------------- /man/2/venti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/venti -------------------------------------------------------------------------------- /man/2/virgil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/virgil -------------------------------------------------------------------------------- /man/2/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/volume -------------------------------------------------------------------------------- /man/2/w3c-css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/w3c-css -------------------------------------------------------------------------------- /man/2/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/wait -------------------------------------------------------------------------------- /man/2/wmlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/wmlib -------------------------------------------------------------------------------- /man/2/wmsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/wmsrv -------------------------------------------------------------------------------- /man/2/workdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/workdir -------------------------------------------------------------------------------- /man/2/xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/2/xml -------------------------------------------------------------------------------- /man/3/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/0intro -------------------------------------------------------------------------------- /man/3/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/INDEX -------------------------------------------------------------------------------- /man/3/arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/arch -------------------------------------------------------------------------------- /man/3/audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/audio -------------------------------------------------------------------------------- /man/3/boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/boot -------------------------------------------------------------------------------- /man/3/cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/cap -------------------------------------------------------------------------------- /man/3/cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/cmd -------------------------------------------------------------------------------- /man/3/cons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/cons -------------------------------------------------------------------------------- /man/3/dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/dbg -------------------------------------------------------------------------------- /man/3/draw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/draw -------------------------------------------------------------------------------- /man/3/ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/ds -------------------------------------------------------------------------------- /man/3/dup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/dup -------------------------------------------------------------------------------- /man/3/dynld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/dynld -------------------------------------------------------------------------------- /man/3/eia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/eia -------------------------------------------------------------------------------- /man/3/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/env -------------------------------------------------------------------------------- /man/3/ether: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/ether -------------------------------------------------------------------------------- /man/3/flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/flash -------------------------------------------------------------------------------- /man/3/floppy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/floppy -------------------------------------------------------------------------------- /man/3/fpga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/fpga -------------------------------------------------------------------------------- /man/3/fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/fs -------------------------------------------------------------------------------- /man/3/ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/ftl -------------------------------------------------------------------------------- /man/3/gpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/gpio -------------------------------------------------------------------------------- /man/3/i2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/i2c -------------------------------------------------------------------------------- /man/3/i82365: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/i82365 -------------------------------------------------------------------------------- /man/3/indir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/indir -------------------------------------------------------------------------------- /man/3/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/ip -------------------------------------------------------------------------------- /man/3/kprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/kprof -------------------------------------------------------------------------------- /man/3/logfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/logfs -------------------------------------------------------------------------------- /man/3/lpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/lpt -------------------------------------------------------------------------------- /man/3/mnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/mnt -------------------------------------------------------------------------------- /man/3/mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/mpeg -------------------------------------------------------------------------------- /man/3/pbus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/pbus -------------------------------------------------------------------------------- /man/3/pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/pipe -------------------------------------------------------------------------------- /man/3/plap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/plap -------------------------------------------------------------------------------- /man/3/pnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/pnp -------------------------------------------------------------------------------- /man/3/pointer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/pointer -------------------------------------------------------------------------------- /man/3/prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/prof -------------------------------------------------------------------------------- /man/3/prog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/prog -------------------------------------------------------------------------------- /man/3/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/root -------------------------------------------------------------------------------- /man/3/rtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/rtc -------------------------------------------------------------------------------- /man/3/sd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/sd -------------------------------------------------------------------------------- /man/3/sign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/sign -------------------------------------------------------------------------------- /man/3/snarf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/snarf -------------------------------------------------------------------------------- /man/3/srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/srv -------------------------------------------------------------------------------- /man/3/srv9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/srv9 -------------------------------------------------------------------------------- /man/3/ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/ssl -------------------------------------------------------------------------------- /man/3/switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/switch -------------------------------------------------------------------------------- /man/3/tinyfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/tinyfs -------------------------------------------------------------------------------- /man/3/tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/tls -------------------------------------------------------------------------------- /man/3/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/touch -------------------------------------------------------------------------------- /man/3/tv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/tv -------------------------------------------------------------------------------- /man/3/usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/usb -------------------------------------------------------------------------------- /man/3/vga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/vga -------------------------------------------------------------------------------- /man/3/vid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/3/vid -------------------------------------------------------------------------------- /man/4/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/0intro -------------------------------------------------------------------------------- /man/4/9srvfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/9srvfs -------------------------------------------------------------------------------- /man/4/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/INDEX -------------------------------------------------------------------------------- /man/4/acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/acme -------------------------------------------------------------------------------- /man/4/archfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/archfs -------------------------------------------------------------------------------- /man/4/dbfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/dbfs -------------------------------------------------------------------------------- /man/4/dossrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/dossrv -------------------------------------------------------------------------------- /man/4/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/export -------------------------------------------------------------------------------- /man/4/ftpfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/ftpfs -------------------------------------------------------------------------------- /man/4/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/import -------------------------------------------------------------------------------- /man/4/iostats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/iostats -------------------------------------------------------------------------------- /man/4/keyfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/keyfs -------------------------------------------------------------------------------- /man/4/keysrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/keysrv -------------------------------------------------------------------------------- /man/4/kfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/kfs -------------------------------------------------------------------------------- /man/4/lockfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/lockfs -------------------------------------------------------------------------------- /man/4/logfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/logfile -------------------------------------------------------------------------------- /man/4/memfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/memfs -------------------------------------------------------------------------------- /man/4/mntgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/mntgen -------------------------------------------------------------------------------- /man/4/palmsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/palmsrv -------------------------------------------------------------------------------- /man/4/ramfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/ramfile -------------------------------------------------------------------------------- /man/4/spree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/spree -------------------------------------------------------------------------------- /man/4/tarfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/tarfs -------------------------------------------------------------------------------- /man/4/trfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/trfs -------------------------------------------------------------------------------- /man/4/vacfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/4/vacfs -------------------------------------------------------------------------------- /man/5/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/0intro -------------------------------------------------------------------------------- /man/5/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/INDEX -------------------------------------------------------------------------------- /man/5/attach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/attach -------------------------------------------------------------------------------- /man/5/clunk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/clunk -------------------------------------------------------------------------------- /man/5/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/error -------------------------------------------------------------------------------- /man/5/flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/flush -------------------------------------------------------------------------------- /man/5/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/open -------------------------------------------------------------------------------- /man/5/read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/read -------------------------------------------------------------------------------- /man/5/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/remove -------------------------------------------------------------------------------- /man/5/stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/stat -------------------------------------------------------------------------------- /man/5/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/version -------------------------------------------------------------------------------- /man/5/walk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/5/walk -------------------------------------------------------------------------------- /man/6/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/0intro -------------------------------------------------------------------------------- /man/6/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/INDEX -------------------------------------------------------------------------------- /man/6/attrdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/attrdb -------------------------------------------------------------------------------- /man/6/audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/audio -------------------------------------------------------------------------------- /man/6/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/auth -------------------------------------------------------------------------------- /man/6/colour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/colour -------------------------------------------------------------------------------- /man/6/dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/dis -------------------------------------------------------------------------------- /man/6/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/font -------------------------------------------------------------------------------- /man/6/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/image -------------------------------------------------------------------------------- /man/6/json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/json -------------------------------------------------------------------------------- /man/6/keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/keys -------------------------------------------------------------------------------- /man/6/keytext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/keytext -------------------------------------------------------------------------------- /man/6/login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/login -------------------------------------------------------------------------------- /man/6/man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/man -------------------------------------------------------------------------------- /man/6/ndb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/ndb -------------------------------------------------------------------------------- /man/6/proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/proto -------------------------------------------------------------------------------- /man/6/regexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/regexp -------------------------------------------------------------------------------- /man/6/sbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/sbl -------------------------------------------------------------------------------- /man/6/sexprs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/sexprs -------------------------------------------------------------------------------- /man/6/ubfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/ubfa -------------------------------------------------------------------------------- /man/6/users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/users -------------------------------------------------------------------------------- /man/6/utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/6/utf -------------------------------------------------------------------------------- /man/7/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/7/0intro -------------------------------------------------------------------------------- /man/7/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/7/INDEX -------------------------------------------------------------------------------- /man/7/cddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/7/cddb -------------------------------------------------------------------------------- /man/7/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/7/db -------------------------------------------------------------------------------- /man/7/dbsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/7/dbsrv -------------------------------------------------------------------------------- /man/8/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/0intro -------------------------------------------------------------------------------- /man/8/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/INDEX -------------------------------------------------------------------------------- /man/8/ai2key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/ai2key -------------------------------------------------------------------------------- /man/8/bootpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/bootpd -------------------------------------------------------------------------------- /man/8/create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/create -------------------------------------------------------------------------------- /man/8/cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/cs -------------------------------------------------------------------------------- /man/8/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/dhcp -------------------------------------------------------------------------------- /man/8/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/dns -------------------------------------------------------------------------------- /man/8/ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/ftl -------------------------------------------------------------------------------- /man/8/httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/httpd -------------------------------------------------------------------------------- /man/8/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/init -------------------------------------------------------------------------------- /man/8/kfscmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/kfscmd -------------------------------------------------------------------------------- /man/8/logind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/logind -------------------------------------------------------------------------------- /man/8/mkfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/mkfs -------------------------------------------------------------------------------- /man/8/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/ping -------------------------------------------------------------------------------- /man/8/plumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/plumber -------------------------------------------------------------------------------- /man/8/prep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/prep -------------------------------------------------------------------------------- /man/8/rdbgsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/rdbgsrv -------------------------------------------------------------------------------- /man/8/rip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/rip -------------------------------------------------------------------------------- /man/8/rstyxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/rstyxd -------------------------------------------------------------------------------- /man/8/signer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/signer -------------------------------------------------------------------------------- /man/8/sntp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/sntp -------------------------------------------------------------------------------- /man/8/styxmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/styxmon -------------------------------------------------------------------------------- /man/8/svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/svc -------------------------------------------------------------------------------- /man/8/virgild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/8/virgild -------------------------------------------------------------------------------- /man/9/0intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/0intro -------------------------------------------------------------------------------- /man/9/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/INDEX -------------------------------------------------------------------------------- /man/9/bind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/bind -------------------------------------------------------------------------------- /man/9/button: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/button -------------------------------------------------------------------------------- /man/9/canvas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/canvas -------------------------------------------------------------------------------- /man/9/cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/cursor -------------------------------------------------------------------------------- /man/9/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/destroy -------------------------------------------------------------------------------- /man/9/entry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/entry -------------------------------------------------------------------------------- /man/9/focus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/focus -------------------------------------------------------------------------------- /man/9/frame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/frame -------------------------------------------------------------------------------- /man/9/grab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/grab -------------------------------------------------------------------------------- /man/9/grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/grid -------------------------------------------------------------------------------- /man/9/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/image -------------------------------------------------------------------------------- /man/9/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/label -------------------------------------------------------------------------------- /man/9/listbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/listbox -------------------------------------------------------------------------------- /man/9/lower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/lower -------------------------------------------------------------------------------- /man/9/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/menu -------------------------------------------------------------------------------- /man/9/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/options -------------------------------------------------------------------------------- /man/9/pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/pack -------------------------------------------------------------------------------- /man/9/panel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/panel -------------------------------------------------------------------------------- /man/9/raise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/raise -------------------------------------------------------------------------------- /man/9/scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/scale -------------------------------------------------------------------------------- /man/9/see: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/see -------------------------------------------------------------------------------- /man/9/send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/send -------------------------------------------------------------------------------- /man/9/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/text -------------------------------------------------------------------------------- /man/9/types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/types -------------------------------------------------------------------------------- /man/9/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/9/update -------------------------------------------------------------------------------- /man/fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/fonts -------------------------------------------------------------------------------- /man/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/index -------------------------------------------------------------------------------- /man/lib/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/lib/notes -------------------------------------------------------------------------------- /man/lib/title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/lib/title -------------------------------------------------------------------------------- /man/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/man/mkfile -------------------------------------------------------------------------------- /mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/mkconfig -------------------------------------------------------------------------------- /mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/mkfile -------------------------------------------------------------------------------- /mkfiles/mkdis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/mkfiles/mkdis -------------------------------------------------------------------------------- /module/9p.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/9p.m -------------------------------------------------------------------------------- /module/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/NOTICE -------------------------------------------------------------------------------- /module/arg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/arg.m -------------------------------------------------------------------------------- /module/asn1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/asn1.m -------------------------------------------------------------------------------- /module/cci.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/cci.m -------------------------------------------------------------------------------- /module/cfg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/cfg.m -------------------------------------------------------------------------------- /module/crc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/crc.m -------------------------------------------------------------------------------- /module/css.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/css.m -------------------------------------------------------------------------------- /module/csv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/csv.m -------------------------------------------------------------------------------- /module/db.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/db.m -------------------------------------------------------------------------------- /module/dbm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/dbm.m -------------------------------------------------------------------------------- /module/dhcp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/dhcp.m -------------------------------------------------------------------------------- /module/dial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/dial.m -------------------------------------------------------------------------------- /module/dict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/dict.m -------------------------------------------------------------------------------- /module/dis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/dis.m -------------------------------------------------------------------------------- /module/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/draw.m -------------------------------------------------------------------------------- /module/emio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/emio.m -------------------------------------------------------------------------------- /module/env.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/env.m -------------------------------------------------------------------------------- /module/ffts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/ffts.m -------------------------------------------------------------------------------- /module/gr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/gr.m -------------------------------------------------------------------------------- /module/hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/hash.m -------------------------------------------------------------------------------- /module/html.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/html.m -------------------------------------------------------------------------------- /module/ida.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/ida.m -------------------------------------------------------------------------------- /module/ip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/ip.m -------------------------------------------------------------------------------- /module/ir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/ir.m -------------------------------------------------------------------------------- /module/json.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/json.m -------------------------------------------------------------------------------- /module/libc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/libc.m -------------------------------------------------------------------------------- /module/lock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/lock.m -------------------------------------------------------------------------------- /module/man.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/man.m -------------------------------------------------------------------------------- /module/math.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/math.m -------------------------------------------------------------------------------- /module/mpeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/mpeg.m -------------------------------------------------------------------------------- /module/palm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/palm.m -------------------------------------------------------------------------------- /module/pkcs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/pkcs.m -------------------------------------------------------------------------------- /module/pop3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/pop3.m -------------------------------------------------------------------------------- /module/rand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/rand.m -------------------------------------------------------------------------------- /module/riff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/riff.m -------------------------------------------------------------------------------- /module/runt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/runt.m -------------------------------------------------------------------------------- /module/sets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/sets.m -------------------------------------------------------------------------------- /module/sh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/sh.m -------------------------------------------------------------------------------- /module/smtp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/smtp.m -------------------------------------------------------------------------------- /module/sort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/sort.m -------------------------------------------------------------------------------- /module/spki.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/spki.m -------------------------------------------------------------------------------- /module/srv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/srv.m -------------------------------------------------------------------------------- /module/srvrunt.b: -------------------------------------------------------------------------------- 1 | implement nothing; 2 | 3 | include "srv.m"; 4 | -------------------------------------------------------------------------------- /module/ssl3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/ssl3.m -------------------------------------------------------------------------------- /module/styx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/styx.m -------------------------------------------------------------------------------- /module/sys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/sys.m -------------------------------------------------------------------------------- /module/tabs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/tabs.m -------------------------------------------------------------------------------- /module/tftp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/tftp.m -------------------------------------------------------------------------------- /module/tk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/tk.m -------------------------------------------------------------------------------- /module/ubfa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/ubfa.m -------------------------------------------------------------------------------- /module/uris.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/uris.m -------------------------------------------------------------------------------- /module/url.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/url.m -------------------------------------------------------------------------------- /module/usb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/usb.m -------------------------------------------------------------------------------- /module/vac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/module/vac.m -------------------------------------------------------------------------------- /opt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/opt/README -------------------------------------------------------------------------------- /os/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/NOTICE -------------------------------------------------------------------------------- /os/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/README -------------------------------------------------------------------------------- /os/boot/arm1110/dat.h: -------------------------------------------------------------------------------- 1 | /* deliberately empty */ 2 | -------------------------------------------------------------------------------- /os/boot/mpc/mem.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/boot/rpcg/mem.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /os/fads/io.h: -------------------------------------------------------------------------------- 1 | #include "../mpc/800io.h" 2 | -------------------------------------------------------------------------------- /os/gum/gum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/gum/gum -------------------------------------------------------------------------------- /os/ip/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/arp.c -------------------------------------------------------------------------------- /os/ip/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/esp.c -------------------------------------------------------------------------------- /os/ip/gre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/gre.c -------------------------------------------------------------------------------- /os/ip/il.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/il.c -------------------------------------------------------------------------------- /os/ip/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/ip.c -------------------------------------------------------------------------------- /os/ip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/ip.h -------------------------------------------------------------------------------- /os/ip/ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/ppp.c -------------------------------------------------------------------------------- /os/ip/ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/ppp.h -------------------------------------------------------------------------------- /os/ip/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/tcp.c -------------------------------------------------------------------------------- /os/ip/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ip/udp.c -------------------------------------------------------------------------------- /os/ipengine/io.h: -------------------------------------------------------------------------------- 1 | #include "../mpc/800io.h" 2 | -------------------------------------------------------------------------------- /os/js/dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/dat.h -------------------------------------------------------------------------------- /os/js/fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/fns.h -------------------------------------------------------------------------------- /os/js/fsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/fsv.c -------------------------------------------------------------------------------- /os/js/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/io.h -------------------------------------------------------------------------------- /os/js/iob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/iob.c -------------------------------------------------------------------------------- /os/js/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/js -------------------------------------------------------------------------------- /os/js/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/kbd.c -------------------------------------------------------------------------------- /os/js/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/l.s -------------------------------------------------------------------------------- /os/js/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/mem.h -------------------------------------------------------------------------------- /os/js/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/mmu.c -------------------------------------------------------------------------------- /os/js/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/rom.c -------------------------------------------------------------------------------- /os/js/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/js/rom.h -------------------------------------------------------------------------------- /os/ks32/Mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ks32/Mk -------------------------------------------------------------------------------- /os/ks32/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/ks32/l.s -------------------------------------------------------------------------------- /os/ks32/squirt: -------------------------------------------------------------------------------- 1 | #!/bin/rc 2 | cat ievaluator7t.txt 3 | -------------------------------------------------------------------------------- /os/manga/Mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/manga/Mk -------------------------------------------------------------------------------- /os/mpc/fp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/mpc/fp.s -------------------------------------------------------------------------------- /os/mpc/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/mpc/l.s -------------------------------------------------------------------------------- /os/pc/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/apm.c -------------------------------------------------------------------------------- /os/pc/cga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/cga.c -------------------------------------------------------------------------------- /os/pc/dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/dat.h -------------------------------------------------------------------------------- /os/pc/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/dma.c -------------------------------------------------------------------------------- /os/pc/fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/fns.h -------------------------------------------------------------------------------- /os/pc/fpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/fpi.h -------------------------------------------------------------------------------- /os/pc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/io.h -------------------------------------------------------------------------------- /os/pc/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/kbd.c -------------------------------------------------------------------------------- /os/pc/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/l.s -------------------------------------------------------------------------------- /os/pc/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/mem.h -------------------------------------------------------------------------------- /os/pc/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/mmu.c -------------------------------------------------------------------------------- /os/pc/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/mp.c -------------------------------------------------------------------------------- /os/pc/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/mp.h -------------------------------------------------------------------------------- /os/pc/pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/pc -------------------------------------------------------------------------------- /os/pc/pc4e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/pc4e -------------------------------------------------------------------------------- /os/pc/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/pci.c -------------------------------------------------------------------------------- /os/pc/pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/pix -------------------------------------------------------------------------------- /os/pc/tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/tv.h -------------------------------------------------------------------------------- /os/pc/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/usb.h -------------------------------------------------------------------------------- /os/pc/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/vga.c -------------------------------------------------------------------------------- /os/pc/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pc/vga.h -------------------------------------------------------------------------------- /os/pxa/l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/inferno/HEAD/os/pxa/l.s -------------------------------------------------------------------------------- /os/rpcg/io.h: -------------------------------------------------------------------------------- 1 | #include "../mpc/800io.h" 2 | -------------------------------------------------------------------------------- /services/httpd/httpd.debug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/httpd/httpd.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/webget/webget.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/odbc/mkfile-Linux: -------------------------------------------------------------------------------- 1 | SYSLIBS=-lodbc 2 | -------------------------------------------------------------------------------- /tools/odbc/mkfile-MacOSX: -------------------------------------------------------------------------------- 1 | SYSLIBS= -liodbc 2 | -------------------------------------------------------------------------------- /tools/odbc/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-FreeBSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-Irix: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-Linux: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-MacOSX: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-OpenBSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/styxtest/mkfile-Plan9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/inferno/namespace: -------------------------------------------------------------------------------- 1 | bind -ia #C / 2 | -------------------------------------------------------------------------------- /utils/acid/arm: -------------------------------------------------------------------------------- 1 | please remove this file 2 | --------------------------------------------------------------------------------