diff -urN oneko-2.0b-sender0.5/Imakefile oneko-2.0b-bsd0.2/Imakefile --- oneko-2.0b-sender0.5/Imakefile Thu May 23 23:29:57 2002 +++ oneko-2.0b-bsd0.2/Imakefile Fri May 24 01:30:51 2002 @@ -12,12 +12,18 @@ ONEKOLIBDIR = $(LIBDIR)/oneko BMDIR = $(ONEKOLIBDIR)/oneko TORA_BMDIR = $(ONEKOLIBDIR)/tora + BSD_BMDIR = $(ONEKOLIBDIR)/bsd + BSD_PMDIR = $(ONEKOLIBDIR)/bsd #if HasGnuMake BMFILES != bitmaps/"*.xbm" TORA_BMFILES != bitmaps.tora/"*.xbm" + BSD_BMFILES != bitmaps.bsd/"*.xbm" + BSD_PMFILES != pixmaps.bsd/"*.xpm" #else - BMFILES = bitmaps/*.xbm - TORA_BMFILES = bitmaps.tora/*.xbm + BMFILES = bitmaps\/*.xbm + TORA_BMFILES = bitmaps.tora\/*.xbm + BSD_BMFILES = bitmaps.bsd\/*.xbm + BSD_PMFILES = pixmaps.bsd\/*.xpm #endif KOTATSUCURSOR = kotatsu.xbm kotatsu_mask.xbm POSTCURSOR = post.xbm post_mask.xbm @@ -78,6 +84,8 @@ InstallMultipleDestFlags(install,$(HELPFILE),$(ONEKOLIBDIR),$(INSTDATFLAGS)) InstallMultipleDestFlags(install,$(BMFILES),$(BMDIR),$(INSTDATFLAGS)) InstallMultipleDestFlags(install,$(TORA_BMFILES),$(TORA_BMDIR),$(INSTDATFLAGS)) +InstallMultipleDestFlags(install,$(BSD_BMFILES),$(BSD_BMDIR),$(INSTDATFLAGS)) +InstallMultipleDestFlags(install,$(BSD_PMFILES),$(BSD_PMDIR),$(INSTDATFLAGS)) InstallMultipleDestFlags(install,$(CURSORFILES),$(ONEKOLIBDIR),$(INSTDATFLAGS)) InstallAppDefaults(Oneko) diff -urN oneko-2.0b-sender0.5/Imakefile.R4 oneko-2.0b-bsd0.2/Imakefile.R4 --- oneko-2.0b-sender0.5/Imakefile.R4 Thu May 23 23:29:58 2002 +++ oneko-2.0b-bsd0.2/Imakefile.R4 Fri May 24 01:31:13 2002 @@ -1,10 +1,14 @@ # $Id: Imakefile.R4,v 1.16 1992/03/17 14:08:41 kato Exp kato $ ONEKOLIBDIR = $(LIBDIR)/oneko - BMFILES = bitmaps/*.xbm + BMFILES = bitmaps\/*.xbm BMDIR = $(ONEKOLIBDIR)/oneko - TORA_BMFILES = bitmaps.tora/*.xbm + TORA_BMFILES = bitmaps.tora\/*.xbm TORA_BMDIR = $(ONEKOLIBDIR)/tora + BSD_BMFILES = bitmaps.bsd\/*.xbm + BSD_BMDIR = $(ONEKOLIBDIR)/bsd + BSD_PMFILES = pixmaps.bsd\/*.xpm + BSD_PMDIR = $(ONEKOLIBDIR)/bsd KOTATSUCURSOR = kotatsu.xbm kotatsu_mask.xbm POSTCURSOR = post.xbm post_mask.xbm MARICURSOR = mari.xbm mari_mask.xbm @@ -30,6 +34,7 @@ $(MKDIRHIER) $(LIBDIR)/oneko $(MKDIRHIER) $(LIBDIR)/oneko/oneko $(MKDIRHIER) $(LIBDIR)/oneko/tora + $(MKDIRHIER) $(LIBDIR)/oneko/bsd install:: $(BINDIR)/oneko $(RM) $(BINDIR)/tora @@ -38,6 +43,8 @@ InstallMultipleDestFlags(install,$(HELPFILE),$(ONEKOLIBDIR),$(INSTDATFLAGS)) InstallMultipleDestFlags(install,$(BMFILES),$(BMDIR),$(INSTDATFLAGS)) InstallMultipleDestFlags(install,$(TORA_BMFILES),$(TORA_BMDIR),$(INSTDATFLAGS)) +InstallMultipleDestFlags(install,$(BSD_BMFILES),$(BSD_BMDIR),$(INSTDATFLAGS)) +InstallMultipleDestFlags(install,$(BSD_PMFILES),$(BSD_PMDIR),$(INSTDATFLAGS)) InstallMultipleDestFlags(install,$(CURSORFILES),$(ONEKOLIBDIR),$(INSTDATFLAGS)) InstallAppDefaults(Oneko) diff -urN oneko-2.0b-sender0.5/Makefile oneko-2.0b-bsd0.2/Makefile --- oneko-2.0b-sender0.5/Makefile Thu May 23 23:34:41 2002 +++ oneko-2.0b-bsd0.2/Makefile Fri May 24 01:29:10 2002 @@ -57,6 +57,10 @@ BMDIR = $(ONEKOLIBDIR)/oneko TORA_BMFILES = bitmaps.tora/*.xbm TORA_BMDIR = $(ONEKOLIBDIR)/tora + BSD_BMFILES = bitmaps.bsd/*.xbm + BSD_BMDIR = $(ONEKOLIBDIR)/bsd + BSD_PMFILES = pixmaps.bsd/*.xpm + BSD_PMDIR = $(ONEKOLIBDIR)/bsd KOTATSUCURSOR = kotatsu.xbm kotatsu_mask.xbm POSTCURSOR = post.xbm post_mask.xbm MARICURSOR = mari.xbm mari_mask.xbm @@ -144,6 +148,22 @@ @case '${MFLAGS}' in *[i]*) set +e;; esac; \ for i in $(TORA_BMFILES); do \ (set -x; $(INSTALL_DATA) $$i $(TORA_BMDIR)); \ + done + +install:: $(BSD_BMFILES) + @if [ -d $(BSD_BMDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(BSD_BMDIR)); fi + @case '${MFLAGS}' in *[i]*) set +e;; esac; \ + for i in $(BSD_BMFILES); do \ + (set -x; $(INSTALL_DATA) $$i $(BSD_BMDIR)); \ + done + +install:: $(BSD_PMFILES) + @if [ -d $(BSD_PMDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(BSD_PPDIR)); fi + @case '${MFLAGS}' in *[i]*) set +e;; esac; \ + for i in $(BSD_PMFILES); do \ + (set -x; $(INSTALL_DATA) $$i $(BSD_PMDIR)); \ done install:: $(CURSORFILES) diff -urN oneko-2.0b-sender0.5/Makefile.in oneko-2.0b-bsd0.2/Makefile.in --- oneko-2.0b-sender0.5/Makefile.in Thu May 23 23:35:06 2002 +++ oneko-2.0b-bsd0.2/Makefile.in Fri May 24 01:29:37 2002 @@ -56,6 +56,10 @@ BMDIR = $(ONEKOLIBDIR)/oneko @tora_bmfiles@ TORA_BMDIR = $(ONEKOLIBDIR)/tora + @bsd_bmfiles@ + BSD_BMDIR = $(ONEKOLIBDIR)/bsd + @bsd_pmfiles@ + BSD_PMDIR = $(ONEKOLIBDIR)/bsd KOTATSUCURSOR = kotatsu.xbm kotatsu_mask.xbm POSTCURSOR = post.xbm post_mask.xbm MARICURSOR = mari.xbm mari_mask.xbm @@ -143,6 +147,22 @@ @case '${MFLAGS}' in *[i]*) set +e;; esac; \ for i in $(TORA_BMFILES); do \ (set -x; $(INSTALL_DATA) $$i $(TORA_BMDIR)); \ + done + +install:: $(BSD_BMFILES) + @if [ -d $(BSD_BMDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(BSD_BMDIR)); fi + @case '${MFLAGS}' in *[i]*) set +e;; esac; \ + for i in $(BSD_BMFILES); do \ + (set -x; $(INSTALL_DATA) $$i $(BSD_BMDIR)); \ + done + +install:: $(BSD_PMFILES) + @if [ -d $(BSD_PMDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(BSD_PMDIR)); fi + @case '${MFLAGS}' in *[i]*) set +e;; esac; \ + for i in $(BSD_PMFILES); do \ + (set -x; $(INSTALL_DATA) $$i $(BSD_PMDIR)); \ done install:: $(CURSORFILES) diff -urN oneko-2.0b-sender0.5/Makefile.noimake oneko-2.0b-bsd0.2/Makefile.noimake --- oneko-2.0b-sender0.5/Makefile.noimake Thu May 23 23:29:58 2002 +++ oneko-2.0b-bsd0.2/Makefile.noimake Fri May 24 01:30:17 2002 @@ -39,6 +39,10 @@ BMDIR = $(ONEKOLIBDIR)/oneko TORA_BMFILES = bitmaps.tora/*.xbm TORA_BMDIR = $(ONEKOLIBDIR)/tora + BSD_BMFILES = bitmaps.bsd/*.xbm + BSD_BMDIR = $(ONEKOLIBDIR)/bsd + BSD_PMFILES = pixmaps.bsd/*.xpm + BSD_PMDIR = $(ONEKOLIBDIR)/bsd KOTATSUCURSOR = kotatsu.xbm kotatsu_mask.xbm POSTCURSOR = post.xbm post_mask.xbm MARICURSOR = mari.xbm mari_mask.xbm @@ -123,6 +127,22 @@ @case '${MFLAGS}' in *[i]*) set +e;; esac; \ for i in $(TORA_BMFILES); do \ (set -x; $(INSTALL) -c $(INSTDATFLAGS) $$i $(DESTDIR)$(TORA_BMDIR)); \ + done + +install:: $(BSD_BMFILES) + @if [ -d $(DESTDIR)$(BSD_BMDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(BSD_BMDIR)); fi + @case '${MFLAGS}' in *[i]*) set +e;; esac; \ + for i in $(BSD_BMFILES); do \ + (set -x; $(INSTALL) -c $(INSTDATFLAGS) $$i $(DESTDIR)$(BSD_BMDIR)); \ + done + +install:: $(BSD_PMFILES) + @if [ -d $(DESTDIR)$(BSD_PMDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(BSD_PMDIR)); fi + @case '${MFLAGS}' in *[i]*) set +e;; esac; \ + for i in $(BSD_PMFILES); do \ + (set -x; $(INSTALL) -c $(INSTDATFLAGS) $$i $(DESTDIR)$(BSD_PMDIR)); \ done install:: $(CURSORFILES) diff -urN oneko-2.0b-sender0.5/Oneko-uj.cpp oneko-2.0b-bsd0.2/Oneko-uj.cpp --- oneko-2.0b-sender0.5/Oneko-uj.cpp Thu May 23 23:24:01 2002 +++ oneko-2.0b-bsd0.2/Oneko-uj.cpp Fri May 24 00:18:09 2002 @@ -8,6 +8,13 @@ !tora.kotatsu.bitmap: ocha.xbm !tora.kotatsu.bitmask: ocha_mask.xbm ! +bsd.kotatsu.bitmap: %/bsd/kotatsu.xbm +bsd.kotatsu.bitmask: %/bsd/kotatsu_mask.xbm +bsd.cursor.bitmap: %/bsd/cursor.xbm +bsd.cursor.bitmask: %/bsd/cursor_mask.xbm +bsd.intervaltime: 300000 +bsd.nekospeed: 16 +! Oneko.saveunder: on Oneko.mail: on Oneko.post.geometry: -20+20 diff -urN oneko-2.0b-sender0.5/Oneko.cpp oneko-2.0b-bsd0.2/Oneko.cpp --- oneko-2.0b-sender0.5/Oneko.cpp Thu May 23 23:24:00 2002 +++ oneko-2.0b-bsd0.2/Oneko.cpp Fri May 24 00:18:09 2002 @@ -8,6 +8,13 @@ !tora.kotatsu.bitmap: ocha.xbm !tora.kotatsu.bitmask: ocha_mask.xbm ! +bsd.kotatsu.bitmap: %/bsd/kotatsu.xbm +bsd.kotatsu.bitmask: %/bsd/kotatsu_mask.xbm +bsd.cursor.bitmap: %/bsd/cursor.xbm +bsd.cursor.bitmask: %/bsd/cursor_mask.xbm +bsd.intervaltime: 300000 +bsd.nekospeed: 16 +! Oneko.saveunder: on Oneko.mail: on Oneko.post.geometry: -20+20 diff -urN oneko-2.0b-sender0.5/README.bsd oneko-2.0b-bsd0.2/README.bsd --- oneko-2.0b-sender0.5/README.bsd Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/README.bsd Fri May 24 01:56:24 2002 @@ -0,0 +1,39 @@ + oneko - Neko runs over the windows. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + Version 2.0 beta-pop1.1-tip1.7-sender0.5-bsd0.2 + + Mar 24th 2002 (bsd-0.2) + Added BSD daemon by Hironori Sakamoto + +はじめに + + oneko-1.2 には Toshihiro Kanda 氏による BSD デーモン版がありました。 + http://hp.vector.co.jp/authors/VA004959/oneko/ + これは、oneko-2.0b に BSD デーモン版を移植したものです。ビットマップは + 上記の oneko-1.2 版のものをそのまま使っていますので、画像の著作権は + Toshihiro Kanda 氏にあります。 + + このパッチは、Nobuyuki Sasaki氏の POP対応パッチ oneko-2.0b-pop1.1.patch、 + Yoshishige Arai氏の リスト表示ウィンドウパッチ oneko-2.0b-tip1.7.patch と + 私の oneko-2.0b-sender0.5.patch を当てた後に当てるパッチの形になっています。 + それぞれに含まれる README も読んで下さい。 + +追加機能 + + o -bsd (-bsd_deamon) オプションにより BSD デーモン版になります。 + o -tora オプションによりオリジナル版にあるトラ猫版になります。 + o -neko オプションによりオリジナルの oneko になります。 + o また一般に -name オプションでリソースを変えられる様になっています。 + o デフォルトで XPM 対応になります。 + o 試験的に BSD デーモンのカラー版を同梱しています。 + oneko -bsd -pixmapdir %/bsd -kotatsupixmap %/bsd/kotatsu.xpm + として使用することが出来ます。 + ポスト(post)、掬(mari) の XPM ファイルはまだ用意していません。 + +謝辞 + + xneko, oneko とその拡張版の開発に携わった多くの方々に感謝いたします。 + +----------------------------------- +坂本 浩則 + http://www2u.biglobe.ne.jp/~hsaka/ diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/akubi1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/akubi1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/akubi1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/akubi1.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,16 @@ +#define akubi1_width 32 +#define akubi1_height 32 +#define akubi1_x_hot 0 +#define akubi1_y_hot 11 +static unsigned char akubi1_bits[] = { + 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x28, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x3e, 0x28, 0x00, 0x00, 0x10, 0x04, + 0x00, 0x00, 0x08, 0xfe, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, + 0x00, 0x00, 0x13, 0x00, 0x00, 0x80, 0xf2, 0x00, 0x00, 0xc0, 0x1a, 0x03, + 0xe0, 0xa1, 0x14, 0x06, 0x1e, 0xa6, 0x14, 0x0b, 0x09, 0xa8, 0xf8, 0x30, + 0x09, 0x30, 0x01, 0x50, 0x01, 0x20, 0x00, 0x90, 0x01, 0x00, 0x00, 0xf0, + 0x81, 0x01, 0x00, 0x18, 0x61, 0x00, 0x00, 0x10, 0x11, 0x00, 0x00, 0x20, + 0x11, 0x70, 0x80, 0xc0, 0x1e, 0x8e, 0x00, 0x83, 0xe0, 0x01, 0x01, 0x7e, + 0x00, 0x00, 0x06, 0x01, 0x00, 0x00, 0xf8, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/akubi1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/akubi1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/akubi1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/akubi1_mask.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,14 @@ +#define akubi1_mask_width 32 +#define akubi1_mask_height 32 +#define akubi1_mask_x_hot 0 +#define akubi1_mask_y_hot 11 +static char akubi1_mask_bits[] = { + 0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x28,0x00,0x00,0x00, + 0x10,0x00,0x00,0x3e,0x28,0x00,0x00,0x10,0x04,0x00,0x00,0x08,0xfe,0x00,0x00, + 0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, + 0x00,0x00,0x1f,0x00,0x00,0x80,0xff,0x00,0x00,0xc0,0xff,0x03,0xe0,0xe1,0xff, + 0x07,0xfe,0xe7,0xff,0x0f,0xff,0xef,0xff,0x3f,0xff,0xff,0xff,0x7f,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0x1f,0xff, + 0xff,0xff,0x3f,0xff,0xff,0xff,0xff,0xfe,0x8f,0xff,0xff,0xe0,0x01,0xff,0x7f, + 0x00,0x00,0xfe,0x01,0x00,0x00,0xf8,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/akubi2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/akubi2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/akubi2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/akubi2.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,16 @@ +#define akubi2_width 32 +#define akubi2_height 32 +#define akubi2_x_hot 0 +#define akubi2_y_hot 11 +static unsigned char akubi2_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x1f, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x1e, 0x06, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x84, 0x1f, + 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, + 0x00, 0x00, 0x13, 0x00, 0x00, 0x80, 0xf2, 0x00, 0x00, 0xc0, 0x1a, 0x03, + 0x00, 0xa0, 0x14, 0x06, 0x06, 0xa0, 0x14, 0x0b, 0xe9, 0xa3, 0xf8, 0x30, + 0x19, 0x2c, 0x01, 0xd0, 0x09, 0x30, 0x00, 0x90, 0x01, 0x00, 0x00, 0x70, + 0x81, 0x01, 0x00, 0x18, 0x61, 0x00, 0x00, 0x10, 0x11, 0x00, 0x00, 0xa0, + 0x11, 0x00, 0x80, 0xc0, 0x1e, 0x7e, 0x00, 0x63, 0xe0, 0x81, 0x01, 0x1e, + 0x00, 0x00, 0x06, 0x03, 0x00, 0x00, 0xf8, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/akubi2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/akubi2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/akubi2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/akubi2_mask.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,14 @@ +#define akubi2_mask_width 32 +#define akubi2_mask_height 32 +#define akubi2_mask_x_hot 0 +#define akubi2_mask_y_hot 11 +static char akubi2_mask_bits[] = { + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x80,0x1f,0x00,0x00,0x00,0x08,0x00,0x00,0x1e,0x06,0x00,0x00,0x08,0x02,0x00, + 0x00,0x84,0x1f,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, + 0x00,0x00,0x1f,0x00,0x00,0x80,0xff,0x00,0x00,0xc0,0xff,0x03,0x00,0xe0,0xff, + 0x07,0x06,0xe0,0xff,0x0f,0xef,0xe3,0xff,0x3f,0xff,0xef,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0x1f,0xff, + 0xff,0xff,0xbf,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0x7f,0xe0,0x81,0xff,0x1f, + 0x00,0x00,0xfe,0x03,0x00,0x00,0xf8,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/akubiL.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/akubiL.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/akubiL.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/akubiL.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,16 @@ +#define akubiL_width 32 +#define akubiL_height 32 +#define akubiL_x_hot 0 +#define akubiL_y_hot 11 +static unsigned char akubiL_bits[] = { + 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x28, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x3e, 0x28, 0x00, 0x00, 0x10, 0x04, + 0x00, 0x00, 0x08, 0xfe, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, + 0x00, 0x00, 0x13, 0x00, 0x00, 0x80, 0xf2, 0x00, 0x00, 0xc0, 0x1a, 0x03, + 0xe0, 0xa1, 0x14, 0x06, 0x1e, 0xa6, 0x14, 0x0b, 0x09, 0xa8, 0xf8, 0x30, + 0x09, 0x30, 0x01, 0x50, 0x01, 0x20, 0x00, 0x90, 0x01, 0x00, 0x00, 0xf0, + 0x81, 0x01, 0x00, 0x18, 0x61, 0x00, 0x00, 0x10, 0x11, 0x00, 0x00, 0x20, + 0x11, 0x70, 0x80, 0xc0, 0x1e, 0x8e, 0x00, 0x83, 0xe0, 0x01, 0x01, 0x7e, + 0x00, 0x00, 0x06, 0x01, 0x00, 0x00, 0xf8, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/akubiL_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/akubiL_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/akubiL_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/akubiL_mask.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,14 @@ +#define akubiL_mask_width 32 +#define akubiL_mask_height 32 +#define akubiL_mask_x_hot 0 +#define akubiL_mask_y_hot 11 +static char akubiL_mask_bits[] = { + 0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x28,0x00,0x00,0x00, + 0x10,0x00,0x00,0x3e,0x28,0x00,0x00,0x10,0x04,0x00,0x00,0x08,0xfe,0x00,0x00, + 0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, + 0x00,0x00,0x1f,0x00,0x00,0x80,0xff,0x00,0x00,0xc0,0xff,0x03,0xe0,0xe1,0xff, + 0x07,0xfe,0xe7,0xff,0x0f,0xff,0xef,0xff,0x3f,0xff,0xff,0xff,0x7f,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0x1f,0xff, + 0xff,0xff,0x3f,0xff,0xff,0xff,0xff,0xfe,0x8f,0xff,0xff,0xe0,0x01,0xff,0x7f, + 0x00,0x00,0xfe,0x01,0x00,0x00,0xf8,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/akubiR.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/akubiR.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/akubiR.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/akubiR.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,16 @@ +#define akubiR_width 32 +#define akubiR_height 32 +#define akubiR_x_hot 0 +#define akubiR_y_hot 11 +static unsigned char akubiR_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x1f, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x1e, 0x06, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x84, 0x1f, + 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, + 0x00, 0x00, 0x13, 0x00, 0x00, 0x80, 0xf2, 0x00, 0x00, 0xc0, 0x1a, 0x03, + 0x00, 0xa0, 0x14, 0x06, 0x06, 0xa0, 0x14, 0x0b, 0xe9, 0xa3, 0xf8, 0x30, + 0x19, 0x2c, 0x01, 0xd0, 0x09, 0x30, 0x00, 0x90, 0x01, 0x00, 0x00, 0x70, + 0x81, 0x01, 0x00, 0x18, 0x61, 0x00, 0x00, 0x10, 0x11, 0x00, 0x00, 0xa0, + 0x11, 0x00, 0x80, 0xc0, 0x1e, 0x7e, 0x00, 0x63, 0xe0, 0x81, 0x01, 0x1e, + 0x00, 0x00, 0x06, 0x03, 0x00, 0x00, 0xf8, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/akubiR_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/akubiR_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/akubiR_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/akubiR_mask.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,14 @@ +#define akubiR_mask_width 32 +#define akubiR_mask_height 32 +#define akubiR_mask_x_hot 0 +#define akubiR_mask_y_hot 11 +static char akubiR_mask_bits[] = { + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x80,0x1f,0x00,0x00,0x00,0x08,0x00,0x00,0x1e,0x06,0x00,0x00,0x08,0x02,0x00, + 0x00,0x84,0x1f,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, + 0x00,0x00,0x1f,0x00,0x00,0x80,0xff,0x00,0x00,0xc0,0xff,0x03,0x00,0xe0,0xff, + 0x07,0x06,0xe0,0xff,0x0f,0xef,0xe3,0xff,0x3f,0xff,0xef,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0x1f,0xff, + 0xff,0xff,0xbf,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0x7f,0xe0,0x81,0xff,0x1f, + 0x00,0x00,0xfe,0x03,0x00,0x00,0xf8,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/awake.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/awake.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/awake.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/awake.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,16 @@ +#define awake_width 32 +#define awake_height 32 +#define awake_x_hot 0 +#define awake_y_hot 11 +static unsigned char awake_bits[] = { + 0x00, 0x86, 0x30, 0x00, 0x08, 0x85, 0x50, 0x10, 0x90, 0x02, 0xa0, 0x08, + 0x40, 0x02, 0x20, 0x01, 0x40, 0xfa, 0x2f, 0x01, 0x40, 0x04, 0x10, 0x01, + 0x40, 0x30, 0x06, 0x01, 0x4c, 0x48, 0x09, 0x31, 0x80, 0x88, 0x88, 0x00, + 0x80, 0xc4, 0x91, 0x00, 0x00, 0xe5, 0x53, 0x00, 0x00, 0xe5, 0x53, 0x00, + 0x00, 0x45, 0x51, 0x08, 0x90, 0x38, 0x8e, 0x10, 0x88, 0xc0, 0x81, 0x00, + 0x80, 0x04, 0x90, 0x00, 0x00, 0x19, 0x4c, 0x00, 0x08, 0xe2, 0x23, 0x00, + 0x12, 0x0c, 0x18, 0x00, 0x14, 0x1c, 0x18, 0x00, 0x09, 0x02, 0x20, 0x00, + 0x16, 0x01, 0x40, 0x00, 0xa0, 0x00, 0x80, 0x00, 0x40, 0x08, 0x08, 0x01, + 0xc0, 0x04, 0x10, 0x01, 0x40, 0x06, 0x30, 0x01, 0x80, 0x07, 0xd0, 0x00, + 0x00, 0x04, 0x10, 0x00, 0x80, 0x87, 0xf0, 0x10, 0x40, 0x40, 0x01, 0x23, + 0x40, 0x40, 0x01, 0x7d, 0x80, 0x3f, 0xfe, 0x20}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/awake_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/awake_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/awake_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/awake_mask.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,14 @@ +#define awake_mask_width 32 +#define awake_mask_height 32 +#define awake_mask_x_hot 0 +#define awake_mask_y_hot 11 +static char awake_mask_bits[] = { + 0x00,0x86,0x30,0x00,0x08,0x87,0x70,0x10,0x90,0x03,0xe0,0x08,0xc0,0x03,0xe0, + 0x01,0xc0,0xfb,0xef,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xcc,0xff, + 0xff,0x31,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00, + 0xff,0x7f,0x00,0x00,0xff,0x7f,0x08,0x90,0xff,0xff,0x10,0x88,0xff,0xff,0x00, + 0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x08,0xfe,0x3f,0x00,0x12,0xfc,0x1f, + 0x00,0x14,0xfc,0x1f,0x00,0x09,0xfe,0x3f,0x00,0x16,0xff,0x7f,0x00,0xa0,0xff, + 0xff,0x00,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0x80, + 0xff,0xdf,0x00,0x00,0xfc,0x1f,0x00,0x80,0xff,0xff,0x10,0xc0,0x7f,0xff,0x23, + 0xc0,0x7f,0xff,0x7d,0x80,0x3f,0xfe,0x20}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/cursor.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/cursor.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/cursor.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/cursor.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,8 @@ +#define bsd_cursor_width 17 +#define bsd_cursor_height 12 +#define bsd_cursor_x_hot 13 +#define bsd_cursor_y_hot 6 +static unsigned char bsd_cursor_bits[] = { + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x63, 0xc4, 0xff, + 0x5b, 0xb7, 0xfe, 0x63, 0xb4, 0xfe, 0xdb, 0xb5, 0xfe, 0x63, 0xc4, 0xfe, + 0xfd, 0x7f, 0xff, 0xf3, 0x8f, 0xff, 0x07, 0xc0, 0xff, 0x1f, 0xf0, 0xff}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/cursor_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/cursor_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/cursor_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/cursor_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,6 @@ +#define bsd_cursor_mask_width 17 +#define bsd_cursor_mask_height 12 +static unsigned char bsd_cursor_mask_bits[] = { + 0xe0, 0x0f, 0x00, 0xf8, 0x3f, 0x00, 0xfc, 0x7f, 0x00, 0xfe, 0xff, 0x00, + 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, + 0xfe, 0xff, 0x00, 0xfc, 0x7f, 0x00, 0xf8, 0x3f, 0x00, 0xe0, 0x0f, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/down1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/down1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/down1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/down1.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,16 @@ +#define down1_width 32 +#define down1_height 32 +#define down1_x_hot 0 +#define down1_y_hot 11 +static unsigned char down1_bits[] = { + 0x00, 0x06, 0x30, 0x00, 0x00, 0x05, 0x50, 0x00, 0x80, 0x02, 0xa0, 0x00, + 0x40, 0x02, 0x20, 0x01, 0x40, 0xfa, 0x2f, 0x01, 0x40, 0x04, 0x10, 0x01, + 0x40, 0x00, 0x00, 0x01, 0x40, 0x30, 0x06, 0x01, 0x80, 0x48, 0x89, 0x00, + 0x80, 0x88, 0x88, 0x00, 0x00, 0x85, 0x50, 0x00, 0x00, 0xe5, 0x53, 0x00, + 0x00, 0xe5, 0x53, 0x00, 0x00, 0x65, 0x53, 0x00, 0x80, 0x38, 0x8e, 0x00, + 0x80, 0xc4, 0x91, 0x00, 0x00, 0x19, 0x4c, 0x00, 0x00, 0xe2, 0x23, 0x00, + 0x00, 0x0c, 0x18, 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x01, 0x40, 0x00, + 0x80, 0x00, 0x40, 0x00, 0x40, 0x08, 0x80, 0x00, 0x40, 0x0c, 0x80, 0x00, + 0x80, 0x07, 0x90, 0x00, 0x58, 0x04, 0x88, 0x00, 0x24, 0x04, 0x88, 0x00, + 0x50, 0x04, 0x70, 0x00, 0x48, 0x84, 0x23, 0x00, 0x20, 0x42, 0x1c, 0x00, + 0x00, 0x42, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/down1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/down1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/down1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/down1_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define down1_mask_width 32 +#define down1_mask_height 32 +#define down1_mask_x_hot 0 +#define down1_mask_y_hot 11 +static char down1_mask_bits[] = { + 0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xe0,0x00,0xc0,0x03,0xe0, + 0x01,0xc0,0xfb,0xef,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00, + 0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x80,0xff,0xff,0x00, + 0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xfc,0x1f, + 0x00,0x00,0xfe,0x3f,0x00,0x00,0xff,0x7f,0x00,0x80,0xff,0x7f,0x00,0xc0,0xff, + 0xff,0x00,0xc0,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x58,0xfc,0xff,0x00,0x24, + 0xfc,0xff,0x00,0x50,0xfc,0x7f,0x00,0x48,0xfc,0x3f,0x00,0x20,0x7e,0x1c,0x00, + 0x00,0x7e,0x00,0x00,0x00,0x3c,0x00,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/down2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/down2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/down2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/down2.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,16 @@ +#define down2_width 32 +#define down2_height 32 +#define down2_x_hot 0 +#define down2_y_hot 11 +static unsigned char down2_bits[] = { + 0x00, 0x06, 0x30, 0x00, 0x00, 0x05, 0x50, 0x00, 0x80, 0x02, 0xa0, 0x00, + 0x40, 0x02, 0x20, 0x01, 0x40, 0xfa, 0x2f, 0x01, 0x40, 0x04, 0x10, 0x01, + 0x40, 0x00, 0x00, 0x01, 0x40, 0x30, 0x06, 0x01, 0x80, 0x48, 0x89, 0x00, + 0x80, 0x88, 0x88, 0x00, 0x00, 0x85, 0x50, 0x00, 0x00, 0xe5, 0x53, 0x00, + 0x00, 0xe5, 0x53, 0x00, 0x00, 0x65, 0x53, 0x00, 0x80, 0x38, 0x8e, 0x00, + 0x80, 0xc4, 0x91, 0x00, 0x00, 0x19, 0x4c, 0x00, 0x00, 0xe2, 0x23, 0x00, + 0x00, 0x0c, 0x18, 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x11, 0x40, 0x00, + 0x00, 0x49, 0x80, 0x00, 0x80, 0x28, 0x08, 0x01, 0x80, 0x90, 0x18, 0x01, + 0x80, 0x68, 0xf0, 0x00, 0x80, 0x04, 0x10, 0x00, 0x80, 0x08, 0x10, 0x00, + 0x00, 0x07, 0x10, 0x00, 0x80, 0xe2, 0x10, 0x00, 0x40, 0x1c, 0x21, 0x00, + 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x1e, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/down2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/down2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/down2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/down2_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define down2_mask_width 32 +#define down2_mask_height 32 +#define down2_mask_x_hot 0 +#define down2_mask_y_hot 11 +static char down2_mask_bits[] = { + 0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xe0,0x00,0xc0,0x03,0xe0, + 0x01,0xc0,0xfb,0xef,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00, + 0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x80,0xff,0xff,0x00, + 0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xfc,0x1f, + 0x00,0x00,0xfe,0x3f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0xff,0x00,0x80,0xff, + 0xff,0x01,0x80,0xff,0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0x1f,0x00,0x80, + 0xff,0x1f,0x00,0x00,0xff,0x1f,0x00,0x80,0xfe,0x1f,0x00,0x40,0x1c,0x3f,0x00, + 0x00,0x00,0x3f,0x00,0x00,0x00,0x1e,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dtogi1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dtogi1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dtogi1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dtogi1.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,16 @@ +#define dtogi1_width 32 +#define dtogi1_height 32 +#define dtogi1_x_hot 0 +#define dtogi1_y_hot 11 +static unsigned char dtogi1_bits[] = { + 0x00, 0x06, 0x30, 0x00, 0x00, 0x05, 0x50, 0x00, 0x80, 0x02, 0xa0, 0x00, + 0x40, 0x02, 0x20, 0x01, 0x40, 0xfa, 0x2f, 0x01, 0x40, 0x04, 0x10, 0x01, + 0x40, 0x00, 0x00, 0x01, 0x40, 0x30, 0x06, 0x01, 0x80, 0x48, 0x89, 0x00, + 0x80, 0x88, 0x88, 0x00, 0x00, 0x85, 0x50, 0x00, 0x00, 0xe5, 0x53, 0x00, + 0x00, 0xe5, 0x53, 0x00, 0x00, 0x65, 0x53, 0x00, 0x80, 0x38, 0x8e, 0x00, + 0x80, 0xc4, 0x91, 0x00, 0x00, 0x19, 0x4c, 0x00, 0x00, 0xe2, 0x23, 0x00, + 0x00, 0x0c, 0x18, 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x01, 0x40, 0x00, + 0x80, 0x00, 0x40, 0x00, 0x40, 0x08, 0x80, 0x00, 0x40, 0x0c, 0x80, 0x00, + 0x80, 0x07, 0x90, 0x00, 0x58, 0x04, 0x88, 0x00, 0x24, 0x04, 0x88, 0x00, + 0x50, 0x04, 0x70, 0x00, 0x48, 0x84, 0x23, 0x00, 0x20, 0x42, 0x1c, 0x00, + 0x00, 0x42, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dtogi1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dtogi1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dtogi1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dtogi1_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define dtogi1_mask_width 32 +#define dtogi1_mask_height 32 +#define dtogi1_mask_x_hot 0 +#define dtogi1_mask_y_hot 11 +static char dtogi1_mask_bits[] = { + 0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xe0,0x00,0xc0,0x03,0xe0, + 0x01,0xc0,0xfb,0xef,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00, + 0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x80,0xff,0xff,0x00, + 0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xfc,0x1f, + 0x00,0x00,0xfe,0x3f,0x00,0x00,0xff,0x7f,0x00,0x80,0xff,0x7f,0x00,0xc0,0xff, + 0xff,0x00,0xc0,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x58,0xfc,0xff,0x00,0x24, + 0xfc,0xff,0x00,0x50,0xfc,0x7f,0x00,0x48,0xfc,0x3f,0x00,0x20,0x7e,0x1c,0x00, + 0x00,0x7e,0x00,0x00,0x00,0x3c,0x00,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dtogi2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dtogi2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dtogi2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dtogi2.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,16 @@ +#define dtogi2_width 32 +#define dtogi2_height 32 +#define dtogi2_x_hot 0 +#define dtogi2_y_hot 11 +static unsigned char dtogi2_bits[] = { + 0x00, 0x06, 0x30, 0x00, 0x00, 0x05, 0x50, 0x00, 0x80, 0x02, 0xa0, 0x00, + 0x40, 0x02, 0x20, 0x01, 0x40, 0xfa, 0x2f, 0x01, 0x40, 0x04, 0x10, 0x01, + 0x40, 0x00, 0x00, 0x01, 0x40, 0x30, 0x06, 0x01, 0x80, 0x48, 0x89, 0x00, + 0x80, 0x88, 0x88, 0x00, 0x00, 0x85, 0x50, 0x00, 0x00, 0xe5, 0x53, 0x00, + 0x00, 0xe5, 0x53, 0x00, 0x00, 0x65, 0x53, 0x00, 0x80, 0x38, 0x8e, 0x00, + 0x80, 0xc4, 0x91, 0x00, 0x00, 0x19, 0x4c, 0x00, 0x00, 0xe2, 0x23, 0x00, + 0x00, 0x0c, 0x18, 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x11, 0x40, 0x00, + 0x00, 0x49, 0x80, 0x00, 0x80, 0x28, 0x08, 0x01, 0x80, 0x90, 0x18, 0x01, + 0x80, 0x68, 0xf0, 0x00, 0x80, 0x04, 0x10, 0x00, 0x80, 0x08, 0x10, 0x00, + 0x00, 0x07, 0x10, 0x00, 0x80, 0xe2, 0x10, 0x00, 0x40, 0x1c, 0x21, 0x00, + 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x1e, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dtogi2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dtogi2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dtogi2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dtogi2_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define dtogi2_mask_width 32 +#define dtogi2_mask_height 32 +#define dtogi2_mask_x_hot 0 +#define dtogi2_mask_y_hot 11 +static char dtogi2_mask_bits[] = { + 0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xe0,0x00,0xc0,0x03,0xe0, + 0x01,0xc0,0xfb,0xef,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00, + 0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x80,0xff,0xff,0x00, + 0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xfc,0x1f, + 0x00,0x00,0xfe,0x3f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0xff,0x00,0x80,0xff, + 0xff,0x01,0x80,0xff,0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0x1f,0x00,0x80, + 0xff,0x1f,0x00,0x00,0xff,0x1f,0x00,0x80,0xfe,0x1f,0x00,0x40,0x1c,0x3f,0x00, + 0x00,0x00,0x3f,0x00,0x00,0x00,0x1e,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dwleft1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dwleft1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dwleft1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dwleft1.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,16 @@ +#define dwleft1_width 32 +#define dwleft1_height 32 +#define dwleft1_x_hot 0 +#define dwleft1_y_hot 11 +static unsigned char dwleft1_bits[] = { + 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0x40, 0x01, + 0x00, 0x12, 0x80, 0x02, 0x00, 0xe2, 0x8f, 0x04, 0x00, 0x02, 0xb0, 0x04, + 0x00, 0xd9, 0x60, 0x04, 0x00, 0x26, 0x01, 0x04, 0x00, 0x22, 0x02, 0x04, + 0x00, 0x12, 0x02, 0x02, 0x00, 0x39, 0x02, 0x01, 0x00, 0x3d, 0x82, 0x00, + 0x80, 0x32, 0x81, 0x00, 0x80, 0xe2, 0x80, 0x00, 0x90, 0x1c, 0x40, 0x00, + 0x24, 0x01, 0x41, 0x00, 0x28, 0xfa, 0x20, 0x00, 0x12, 0x04, 0x10, 0x00, + 0x2c, 0x78, 0x08, 0x00, 0x40, 0x10, 0x08, 0x00, 0x80, 0x08, 0x10, 0x00, + 0x00, 0x0f, 0x20, 0x00, 0x80, 0x04, 0x40, 0x08, 0x80, 0x04, 0x80, 0x10, + 0x00, 0x07, 0x08, 0x3d, 0x00, 0x04, 0x10, 0x13, 0x00, 0x04, 0x90, 0x08, + 0x00, 0x44, 0x60, 0x00, 0x00, 0x48, 0x10, 0x00, 0x00, 0x28, 0x10, 0x00, + 0x00, 0x30, 0x08, 0x00, 0x00, 0xe0, 0x07, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dwleft1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dwleft1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dwleft1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dwleft1_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define dwleft1_mask_width 32 +#define dwleft1_mask_height 32 +#define dwleft1_mask_x_hot 0 +#define dwleft1_mask_y_hot 11 +static char dwleft1_mask_bits[] = { + 0x00,0x30,0x00,0x00,0x00,0x18,0xc0,0x00,0x00,0x1c,0xc0,0x01,0x00,0x1e,0x80, + 0x03,0x00,0xfe,0x8f,0x07,0x00,0xfe,0xbf,0x07,0x00,0xff,0xff,0x07,0x00,0xfe, + 0xff,0x07,0x00,0xfe,0xff,0x07,0x00,0xfe,0xff,0x03,0x00,0xff,0xff,0x01,0x00, + 0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x90,0xff,0x7f,0x00, + 0x24,0xff,0x7f,0x00,0x28,0xfe,0x3f,0x00,0x12,0xfc,0x1f,0x00,0x2c,0xf8,0x0f, + 0x00,0x40,0xf0,0x0f,0x00,0x80,0xf8,0x1f,0x00,0x00,0xff,0x3f,0x00,0x80,0xff, + 0x7f,0x08,0x80,0xff,0xff,0x10,0x00,0xff,0xff,0x3d,0x00,0xfc,0xff,0x13,0x00, + 0xfc,0xff,0x08,0x00,0xfc,0x7f,0x00,0x00,0xf8,0x1f,0x00,0x00,0xf8,0x1f,0x00, + 0x00,0xf0,0x0f,0x00,0x00,0xe0,0x07,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dwleft2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dwleft2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dwleft2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dwleft2.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,16 @@ +#define dwleft2_width 32 +#define dwleft2_height 32 +#define dwleft2_x_hot 0 +#define dwleft2_y_hot 11 +static unsigned char dwleft2_bits[] = { + 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0x40, 0x01, + 0x00, 0x12, 0x80, 0x02, 0x00, 0xe2, 0x8f, 0x04, 0x00, 0x02, 0xb0, 0x04, + 0x00, 0xd9, 0x60, 0x04, 0x00, 0x26, 0x01, 0x04, 0x00, 0x22, 0x02, 0x04, + 0x00, 0x12, 0x02, 0x02, 0x00, 0x39, 0x02, 0x01, 0x00, 0x3d, 0x82, 0x00, + 0x80, 0x32, 0x81, 0x00, 0x80, 0xe2, 0x80, 0x00, 0x80, 0x1c, 0x40, 0x00, + 0x00, 0x01, 0x41, 0x00, 0x00, 0xfa, 0x20, 0x00, 0x00, 0x04, 0x10, 0x00, + 0x00, 0x78, 0x08, 0x00, 0x00, 0x10, 0x08, 0x1c, 0x00, 0x08, 0x10, 0x18, + 0x00, 0x04, 0x20, 0x14, 0x00, 0x04, 0x44, 0x04, 0x18, 0x04, 0x43, 0x02, + 0x20, 0x87, 0xe0, 0x01, 0xfc, 0x84, 0xd0, 0x00, 0x20, 0x82, 0x48, 0x00, + 0x18, 0x02, 0x47, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x81, 0x43, 0x00, + 0x00, 0x61, 0x3c, 0x00, 0x00, 0x1e, 0x00, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dwleft2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dwleft2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dwleft2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dwleft2_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define dwleft2_mask_width 32 +#define dwleft2_mask_height 32 +#define dwleft2_mask_x_hot 0 +#define dwleft2_mask_y_hot 11 +static char dwleft2_mask_bits[] = { + 0x00,0x30,0x00,0x00,0x00,0x18,0xc0,0x00,0x00,0x1c,0xc0,0x01,0x00,0x1e,0x80, + 0x03,0x00,0xfe,0x8f,0x07,0x00,0xfe,0xbf,0x07,0x00,0xff,0xff,0x07,0x00,0xfe, + 0xff,0x07,0x00,0xfe,0xff,0x07,0x00,0xfe,0xff,0x03,0x00,0xff,0xff,0x01,0x00, + 0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0x7f,0x00, + 0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xfc,0x1f,0x00,0x00,0xf8,0x0f, + 0x00,0x00,0xf0,0x0f,0x1c,0x00,0xf8,0x1f,0x18,0x00,0xfc,0x3f,0x14,0x00,0xfc, + 0x7f,0x04,0x18,0xfc,0x7f,0x02,0x20,0xff,0xff,0x01,0xfc,0xfc,0xff,0x00,0x20, + 0xfe,0x7f,0x00,0x18,0xfe,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00, + 0x00,0x7f,0x3c,0x00,0x00,0x1e,0x00,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dwright1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dwright1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dwright1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dwright1.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define dwright1_width 32 +#define dwright1_height 32 +#define dwright1_x_hot 0 +#define dwright1_y_hot 11 +static char dwright1_bits[] = { + 0x00,0x00,0x0c,0x00,0x00,0x03,0x18,0x00,0x80,0x02,0x28,0x00,0x40,0x01,0x48, + 0x00,0x20,0xf1,0x47,0x00,0x20,0x0d,0x40,0x00,0x20,0x06,0x9b,0x00,0x20,0x80, + 0x64,0x00,0x20,0x40,0x44,0x00,0x40,0x40,0x48,0x00,0x80,0x40,0x9c,0x00,0x00, + 0x41,0xbc,0x00,0x00,0x81,0x4c,0x01,0x00,0x01,0x47,0x01,0x00,0x02,0x38,0x09, + 0x00,0x82,0x80,0x24,0x00,0x04,0x5f,0x14,0x00,0x08,0x20,0x48,0x00,0x10,0x1e, + 0x34,0x00,0x10,0x08,0x02,0x00,0x08,0x10,0x01,0x00,0x04,0xf0,0x00,0x10,0x02, + 0x20,0x01,0x08,0x01,0x20,0x01,0xbc,0x10,0xe0,0x00,0xc8,0x08,0x20,0x00,0x10, + 0x09,0x20,0x00,0x00,0x06,0x22,0x00,0x00,0x08,0x12,0x00,0x00,0x08,0x14,0x00, + 0x00,0x10,0x0c,0x00,0x00,0xe0,0x07,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dwright1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dwright1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dwright1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dwright1_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define dwright1_mask_width 32 +#define dwright1_mask_height 32 +#define dwright1_mask_x_hot 0 +#define dwright1_mask_y_hot 11 +static char dwright1_mask_bits[] = { + 0x00,0x00,0x0c,0x00,0x00,0x03,0x18,0x00,0x80,0x03,0x38,0x00,0xc0,0x01,0x78, + 0x00,0xe0,0xf1,0x7f,0x00,0xe0,0xfd,0x7f,0x00,0xe0,0xff,0xff,0x00,0xe0,0xff, + 0x7f,0x00,0xe0,0xff,0x7f,0x00,0xc0,0xff,0x7f,0x00,0x80,0xff,0xff,0x00,0x00, + 0xff,0xff,0x00,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00,0xfe,0xff,0x09, + 0x00,0xfe,0xff,0x24,0x00,0xfc,0x7f,0x14,0x00,0xf8,0x3f,0x48,0x00,0xf0,0x1f, + 0x34,0x00,0xf0,0x0f,0x02,0x00,0xf8,0x1f,0x01,0x00,0xfc,0xff,0x00,0x10,0xfe, + 0xff,0x01,0x08,0xff,0xff,0x01,0xbc,0xff,0xff,0x00,0xc8,0xff,0x3f,0x00,0x10, + 0xff,0x3f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xf8,0x1f,0x00,0x00,0xf8,0x1f,0x00, + 0x00,0xf0,0x0f,0x00,0x00,0xe0,0x07,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dwright2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dwright2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dwright2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dwright2.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define dwright2_width 32 +#define dwright2_height 32 +#define dwright2_x_hot 0 +#define dwright2_y_hot 11 +static char dwright2_bits[] = { + 0x00,0x00,0x0c,0x00,0x00,0x03,0x18,0x00,0x80,0x02,0x28,0x00,0x40,0x01,0x48, + 0x00,0x20,0xf1,0x47,0x00,0x20,0x0d,0x40,0x00,0x20,0x06,0x9b,0x00,0x20,0x80, + 0x64,0x00,0x20,0x40,0x44,0x00,0x40,0x40,0x48,0x00,0x80,0x40,0x9c,0x00,0x00, + 0x41,0xbc,0x00,0x00,0x81,0x4c,0x01,0x00,0x01,0x47,0x01,0x00,0x02,0x38,0x01, + 0x00,0x82,0x80,0x00,0x00,0x04,0x5f,0x00,0x00,0x08,0x20,0x00,0x00,0x10,0x1e, + 0x00,0x38,0x10,0x08,0x00,0x18,0x08,0x10,0x00,0x28,0x04,0x20,0x00,0x20,0x22, + 0x20,0x00,0x40,0xc2,0x20,0x18,0x80,0x07,0xe1,0x04,0x00,0x0b,0x21,0x3f,0x00, + 0x12,0x41,0x04,0x00,0xe2,0x40,0x18,0x00,0x02,0x80,0x00,0x00,0xc2,0x81,0x00, + 0x00,0x3c,0x86,0x00,0x00,0x00,0x78,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/dwright2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/dwright2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/dwright2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/dwright2_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define dwright2_mask_width 32 +#define dwright2_mask_height 32 +#define dwright2_mask_x_hot 0 +#define dwright2_mask_y_hot 11 +static char dwright2_mask_bits[] = { + 0x00,0x00,0x0c,0x00,0x00,0x03,0x18,0x00,0x80,0x03,0x38,0x00,0xc0,0x01,0x78, + 0x00,0xe0,0xf1,0x7f,0x00,0xe0,0xfd,0x7f,0x00,0xe0,0xff,0xff,0x00,0xe0,0xff, + 0x7f,0x00,0xe0,0xff,0x7f,0x00,0xc0,0xff,0x7f,0x00,0x80,0xff,0xff,0x00,0x00, + 0xff,0xff,0x00,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00,0xfe,0xff,0x01, + 0x00,0xfe,0xff,0x00,0x00,0xfc,0x7f,0x00,0x00,0xf8,0x3f,0x00,0x00,0xf0,0x1f, + 0x00,0x38,0xf0,0x0f,0x00,0x18,0xf8,0x1f,0x00,0x28,0xfc,0x3f,0x00,0x20,0xfe, + 0x3f,0x00,0x40,0xfe,0x3f,0x18,0x80,0xff,0xff,0x04,0x00,0xff,0x3f,0x3f,0x00, + 0xfe,0x7f,0x04,0x00,0xfe,0x7f,0x18,0x00,0xfe,0xff,0x00,0x00,0xfe,0xff,0x00, + 0x00,0x3c,0xfe,0x00,0x00,0x00,0x78,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/jare2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/jare2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/jare2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/jare2.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,16 @@ +#define jare2_width 32 +#define jare2_height 32 +#define jare2_x_hot 0 +#define jare2_y_hot 11 +static unsigned char jare2_bits[] = { + 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0x40, 0x01, + 0x00, 0x12, 0x80, 0x02, 0x00, 0xe2, 0x8f, 0x04, 0x00, 0x02, 0x90, 0x04, + 0x00, 0xd9, 0x60, 0x04, 0x00, 0x26, 0x01, 0x04, 0x00, 0x22, 0x02, 0x04, + 0x00, 0x12, 0x02, 0x02, 0x00, 0x39, 0x02, 0x01, 0x00, 0x3d, 0x82, 0x00, + 0x80, 0x32, 0x82, 0x00, 0x80, 0xe2, 0x81, 0x00, 0x80, 0x1c, 0x80, 0x00, + 0x00, 0x01, 0x41, 0x00, 0x00, 0xfa, 0x20, 0x00, 0x00, 0x04, 0x10, 0x00, + 0x80, 0x38, 0x08, 0x00, 0x20, 0x21, 0x10, 0x00, 0x40, 0x11, 0x20, 0x00, + 0x90, 0x0c, 0x20, 0x10, 0x60, 0x03, 0x20, 0x38, 0x00, 0x8d, 0x21, 0x54, + 0x00, 0x71, 0x30, 0x10, 0x00, 0x3e, 0x28, 0x10, 0x00, 0x48, 0x64, 0x10, + 0x00, 0xc8, 0xe3, 0x10, 0x00, 0x86, 0xa0, 0x09, 0x00, 0x41, 0x40, 0x07, + 0x00, 0x41, 0x40, 0x00, 0x00, 0xbe, 0x3f, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/jare2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/jare2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/jare2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/jare2_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define jare2_mask_width 32 +#define jare2_mask_height 32 +#define jare2_mask_x_hot 0 +#define jare2_mask_y_hot 11 +static char jare2_mask_bits[] = { + 0x00,0x30,0x00,0x00,0x00,0x18,0xc0,0x00,0x00,0x1c,0xc0,0x01,0x00,0x1e,0x80, + 0x03,0x00,0xfe,0x8f,0x07,0x00,0xfe,0x9f,0x07,0x00,0xff,0xff,0x07,0x00,0xfe, + 0xff,0x07,0x00,0xfe,0xff,0x07,0x00,0xfe,0xff,0x03,0x00,0xff,0xff,0x01,0x00, + 0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00, + 0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xfc,0x1f,0x00,0x80,0xf8,0x0f, + 0x00,0x20,0xe1,0x1f,0x00,0x40,0xf1,0x3f,0x00,0x90,0xfc,0x3f,0x10,0x60,0xff, + 0x3f,0x38,0x00,0xff,0x3f,0x54,0x00,0xff,0x3f,0x10,0x00,0xfe,0x3f,0x10,0x00, + 0xf8,0x7f,0x10,0x00,0xf8,0xff,0x10,0x00,0xfe,0xff,0x09,0x00,0xff,0x7f,0x07, + 0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/kaki1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/kaki1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/kaki1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/kaki1.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,16 @@ +#define kaki1_width 32 +#define kaki1_height 32 +#define kaki1_x_hot 0 +#define kaki1_y_hot 11 +static unsigned char kaki1_bits[] = { + 0x00, 0x80, 0xe3, 0x00, 0x00, 0x40, 0x42, 0x01, 0x00, 0x20, 0x41, 0x02, + 0x00, 0x20, 0x41, 0x04, 0x00, 0x90, 0x3f, 0x04, 0x00, 0x10, 0x10, 0x04, + 0x00, 0xd0, 0x00, 0x02, 0x00, 0x28, 0x01, 0x02, 0x00, 0x28, 0x02, 0x05, + 0x00, 0x28, 0x02, 0x04, 0x00, 0x78, 0x02, 0x04, 0x00, 0x7c, 0x02, 0x04, + 0x00, 0x62, 0x02, 0x04, 0x10, 0xe2, 0x01, 0x04, 0x28, 0x1c, 0x00, 0x02, + 0x44, 0x04, 0x02, 0x02, 0x22, 0xf8, 0x01, 0x01, 0x11, 0x10, 0x80, 0x00, + 0x4a, 0xe1, 0x41, 0x00, 0x84, 0x02, 0x41, 0x00, 0x50, 0x82, 0x40, 0x00, + 0x20, 0x62, 0x80, 0x00, 0x10, 0x59, 0x82, 0x00, 0xe0, 0xc6, 0xa1, 0x00, + 0x00, 0x46, 0x90, 0x00, 0x00, 0x7a, 0x88, 0x00, 0x00, 0xc2, 0x87, 0x00, + 0x00, 0x82, 0x80, 0x01, 0x00, 0xe1, 0x83, 0x03, 0x80, 0x50, 0x40, 0x22, + 0x60, 0x50, 0x40, 0x64, 0x18, 0xe0, 0x7f, 0xf8}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/kaki1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/kaki1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/kaki1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/kaki1_mask.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,14 @@ +#define kaki1_mask_width 32 +#define kaki1_mask_height 32 +#define kaki1_mask_x_hot 0 +#define kaki1_mask_y_hot 11 +static char kaki1_mask_bits[] = { + 0x00,0x80,0xe3,0x00,0x00,0xc0,0xc3,0x01,0x00,0xe0,0xc1,0x03,0x00,0xe0,0xc1, + 0x07,0x00,0xf0,0xff,0x07,0x00,0xf0,0xff,0x07,0x00,0xf0,0xff,0x03,0x00,0xf8, + 0xff,0x03,0x00,0xf8,0xff,0x07,0x00,0xf8,0xff,0x07,0x00,0xf8,0xff,0x07,0x00, + 0xfc,0xff,0x07,0x00,0xfe,0xff,0x07,0x10,0xfe,0xff,0x07,0x38,0xfc,0xff,0x03, + 0x7c,0xfc,0xff,0x03,0x3e,0xf8,0xff,0x01,0x1f,0xf0,0xff,0x00,0x4e,0xe1,0x7f, + 0x00,0x84,0x03,0x7f,0x00,0xd0,0x83,0x7f,0x00,0xe0,0xe3,0xff,0x00,0xf0,0xf9, + 0xff,0x00,0xe0,0xfe,0xff,0x00,0x00,0xfe,0xff,0x00,0x00,0xfa,0xff,0x00,0x00, + 0xc2,0xff,0x00,0x00,0x82,0xff,0x01,0x00,0xe1,0xff,0x03,0x80,0xf0,0x7f,0x22, + 0x60,0xf0,0x7f,0x64,0x18,0xe0,0x7f,0xf8}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/kaki2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/kaki2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/kaki2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/kaki2.xbm Wed May 22 03:32:14 2002 @@ -0,0 +1,16 @@ +#define kaki2_width 32 +#define kaki2_height 32 +#define kaki2_x_hot 0 +#define kaki2_y_hot 11 +static unsigned char kaki2_bits[] = { + 0x00, 0x80, 0xe3, 0x00, 0x00, 0x40, 0x42, 0x01, 0x00, 0x20, 0x41, 0x02, + 0x00, 0x20, 0x41, 0x04, 0x00, 0x90, 0x3f, 0x04, 0x00, 0x10, 0x10, 0x04, + 0x00, 0xd0, 0x00, 0x02, 0x00, 0x28, 0x01, 0x02, 0x00, 0x28, 0x02, 0x05, + 0x00, 0x28, 0x02, 0x04, 0x00, 0x78, 0x02, 0x04, 0x00, 0x7c, 0x02, 0x04, + 0x00, 0x62, 0x02, 0x04, 0x10, 0xe2, 0x01, 0x04, 0x28, 0x1c, 0x00, 0x02, + 0x44, 0x04, 0x02, 0x02, 0xa2, 0xf8, 0x01, 0x01, 0x91, 0x10, 0x80, 0x00, + 0x8a, 0xe0, 0x41, 0x00, 0x44, 0x0c, 0x41, 0x00, 0xb8, 0xf2, 0x40, 0x00, + 0x00, 0x43, 0x80, 0x00, 0x00, 0x43, 0xa2, 0x00, 0x00, 0xcd, 0xa1, 0x00, + 0x00, 0x71, 0xa0, 0x00, 0x00, 0x41, 0x90, 0x00, 0x80, 0xc0, 0x8f, 0x00, + 0x80, 0x80, 0x80, 0x01, 0x40, 0xe0, 0x83, 0x03, 0x20, 0x50, 0x40, 0x22, + 0x10, 0x50, 0x40, 0x64, 0x08, 0xe0, 0x7f, 0xf8}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/kaki2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/kaki2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/kaki2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/kaki2_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define kaki2_mask_width 32 +#define kaki2_mask_height 32 +#define kaki2_mask_x_hot 0 +#define kaki2_mask_y_hot 11 +static char kaki2_mask_bits[] = { + 0x00,0x80,0xe3,0x00,0x00,0xc0,0xc3,0x01,0x00,0xe0,0xc1,0x03,0x00,0xe0,0xc1, + 0x07,0x00,0xf0,0xff,0x07,0x00,0xf0,0xff,0x07,0x00,0xf0,0xff,0x03,0x00,0xf8, + 0xff,0x03,0x00,0xf8,0xff,0x07,0x00,0xf8,0xff,0x07,0x00,0xf8,0xff,0x07,0x00, + 0xfc,0xff,0x07,0x00,0xfe,0xff,0x07,0x10,0xfe,0xff,0x07,0x38,0xfc,0xff,0x03, + 0x7c,0xfc,0xff,0x03,0xfe,0xf8,0xff,0x01,0xff,0xf0,0xff,0x00,0xfe,0xe0,0x7f, + 0x00,0x7c,0x0c,0x7f,0x00,0xb8,0xfe,0x7f,0x00,0x00,0xff,0xff,0x00,0x00,0xff, + 0xff,0x00,0x00,0xfd,0xff,0x00,0x00,0xf1,0xff,0x00,0x00,0xc1,0xff,0x00,0x80, + 0xc0,0xff,0x00,0x80,0x80,0xff,0x01,0x40,0xe0,0xff,0x03,0x20,0xf0,0x7f,0x22, + 0x10,0xf0,0x7f,0x64,0x08,0xe0,0x7f,0xf8}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/kotatsu.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/kotatsu.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/kotatsu.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/kotatsu.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,48 @@ +#define bsd_kotatsu_width 64 +#define bsd_kotatsu_height 64 +#define bsd_kotatsu_x_hot 18 +#define bsd_kotatsu_y_hot 3 +static char bsd_kotatsu_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, + 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x18, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, + 0x00, 0xc0, 0x01, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, + 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x68, 0x00, 0x00, + 0x00, 0x00, 0x38, 0x00, 0x00, 0x8c, 0x01, 0x00, 0x00, 0x00, 0x66, 0x00, + 0x00, 0x1f, 0x0e, 0x00, 0x00, 0xc0, 0xf1, 0x00, 0x80, 0xfe, 0x70, 0x00, + 0x00, 0x30, 0xcc, 0x00, 0x80, 0x66, 0x83, 0x03, 0x00, 0x8e, 0xe7, 0x01, + 0x40, 0x33, 0x1f, 0x0c, 0xc0, 0x61, 0x33, 0x01, 0xc0, 0x99, 0xf9, 0x70, + 0x30, 0x9c, 0x99, 0x01, 0xc0, 0xcc, 0xcc, 0x87, 0x0f, 0xcf, 0xcc, 0x03, + 0x60, 0x66, 0x66, 0x1e, 0xe0, 0x66, 0x66, 0x02, 0x20, 0x33, 0x33, 0xfb, + 0x38, 0x33, 0x33, 0x07, 0xa0, 0x99, 0x99, 0x99, 0x9f, 0x99, 0x99, 0x05, + 0xd0, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x0c, 0x70, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x0e, 0x38, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x1b, + 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x39, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0x2c, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x36, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x73, 0x9c, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x39, 0xf0, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x1e, + 0xc0, 0x67, 0x66, 0x66, 0x66, 0x66, 0xe6, 0x03, 0x00, 0x33, 0x33, 0x33, + 0x33, 0x33, 0xf3, 0x00, 0x00, 0x9e, 0x99, 0x99, 0x99, 0x99, 0x39, 0x00, + 0x00, 0xc8, 0xcc, 0xcc, 0xcc, 0xcc, 0x0c, 0x00, 0x00, 0xf8, 0x66, 0x66, + 0x66, 0xe6, 0x07, 0x00, 0x00, 0x80, 0x3f, 0x33, 0x33, 0x73, 0x00, 0x00, + 0x00, 0x00, 0x90, 0x99, 0x99, 0x1d, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xcc, + 0xcc, 0x07, 0x00, 0x00, 0x00, 0x00, 0x80, 0x67, 0xe6, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x3e, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, + 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/kotatsu_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/kotatsu_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/kotatsu_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/kotatsu_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,40 @@ +#define bsd_kotatsu_mask_width 64 +#define bsd_kotatsu_mask_height 64 +#define bsd_kotatsu_mask_x_hot 18 +#define bsd_kotatsu_mask_y_hot 3 +static char bsd_kotatsu_mask_bits[] = { + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x07,0x00,0x00,0x00,0x00,0x00, + 0x00,0xfc,0x3f,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0xff,0x01,0x00,0x00,0x00, + 0x00,0xf0,0xff,0xff,0x0f,0x00,0x00,0x00,0x00,0xfc,0xff,0xff,0x7f,0x00,0x00, + 0x00,0x80,0xff,0xff,0xff,0xff,0x03,0x00,0x00,0xf0,0xff,0xff,0xff,0xff,0x1f, + 0x00,0x00,0xfc,0xff,0xff,0xff,0xff,0x7f,0x00,0x00,0xfc,0xff,0xff,0xff,0xff, + 0x7f,0x00,0x00,0xfe,0xff,0xff,0xff,0xff,0xff,0x00,0x80,0xff,0xff,0xff,0xff, + 0xff,0xff,0x01,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0x01,0xc0,0xff,0xff,0xff, + 0xff,0xff,0xff,0x03,0xe0,0xff,0xff,0xff,0xff,0xff,0xff,0x03,0xe0,0xff,0xff, + 0xff,0xff,0xff,0xff,0x03,0xe0,0xff,0xff,0xff,0xff,0xff,0xff,0x07,0xf0,0xff, + 0xff,0xff,0xff,0xff,0xff,0x07,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0, + 0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf8,0xff,0xff,0xff,0xff,0xff,0xff,0x1f, + 0xf8,0xff,0xff,0xff,0xff,0xff,0xff,0x1f,0xfc,0xff,0xff,0xff,0xff,0xff,0xff, + 0x3f,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xfe,0xff,0xff,0xff,0xff,0xff, + 0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xf8,0xff,0xff, + 0xff,0xff,0xff,0xff,0x3f,0xe0,0xff,0xff,0xff,0xff,0xff,0xff,0x07,0x80,0xff, + 0xff,0xff,0xff,0xff,0xff,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0x7f,0x00,0x00, + 0xfc,0xff,0xff,0xff,0xff,0x1f,0x00,0x00,0xfc,0xff,0xff,0xff,0xff,0x0f,0x00, + 0x00,0xc0,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xf8,0xff,0xff,0x3f,0x00, + 0x00,0x00,0x00,0xf0,0xff,0xff,0x0f,0x00,0x00,0x00,0x00,0xc0,0xff,0xff,0x01, + 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x3f, + 0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0xe0, + 0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/left1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/left1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/left1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/left1.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,16 @@ +#define left1_width 32 +#define left1_height 32 +#define left1_x_hot 0 +#define left1_y_hot 11 +static unsigned char left1_bits[] = { + 0x00, 0x60, 0x0c, 0x00, 0x00, 0x50, 0x14, 0x00, 0x00, 0x48, 0x12, 0x00, + 0x00, 0xf8, 0x11, 0x00, 0x00, 0x84, 0x10, 0x00, 0x00, 0x02, 0x10, 0x00, + 0x00, 0x07, 0x18, 0x00, 0x00, 0x05, 0x28, 0x00, 0x80, 0x08, 0x44, 0x00, + 0x80, 0x08, 0x40, 0x00, 0x80, 0x0b, 0x40, 0x00, 0xc0, 0x0b, 0x40, 0x00, + 0x20, 0x0b, 0x40, 0x00, 0x20, 0x06, 0x20, 0x00, 0xc0, 0x01, 0x20, 0x00, + 0x40, 0x10, 0x10, 0x00, 0x88, 0x0f, 0x08, 0x00, 0x12, 0x01, 0x04, 0x00, + 0x14, 0x3e, 0x04, 0x00, 0x09, 0x20, 0x04, 0x00, 0x16, 0x10, 0x08, 0x00, + 0x20, 0x0f, 0x08, 0x00, 0xc0, 0x08, 0x08, 0x00, 0x80, 0x84, 0x10, 0x00, + 0x80, 0x84, 0x10, 0x00, 0x00, 0x07, 0x11, 0x00, 0x00, 0x04, 0x31, 0x00, + 0x00, 0x02, 0xf9, 0x20, 0xc0, 0x01, 0xde, 0x43, 0x20, 0x80, 0x23, 0xfe, + 0x20, 0xc0, 0x20, 0x40, 0xc0, 0x3f, 0x1f, 0x20}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/left1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/left1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/left1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/left1_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define left1_mask_width 32 +#define left1_mask_height 32 +#define left1_mask_x_hot 0 +#define left1_mask_y_hot 11 +static char left1_mask_bits[] = { + 0x00,0x60,0x0c,0x00,0x00,0x70,0x1c,0x00,0x00,0x78,0x1e,0x00,0x00,0xf8,0x1f, + 0x00,0x00,0xfc,0x1f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xff,0x1f,0x00,0x00,0xff, + 0x3f,0x00,0x80,0xff,0x7f,0x00,0x80,0xff,0x7f,0x00,0x80,0xff,0x7f,0x00,0xc0, + 0xff,0x7f,0x00,0xe0,0xff,0x7f,0x00,0xe0,0xff,0x3f,0x00,0xc0,0xff,0x3f,0x00, + 0xc0,0xff,0x1f,0x00,0x88,0xff,0x0f,0x00,0x12,0xff,0x07,0x00,0x14,0xfe,0x07, + 0x00,0x09,0xe0,0x07,0x00,0x16,0xf0,0x0f,0x00,0x20,0xff,0x0f,0x00,0xc0,0xff, + 0x0f,0x00,0x80,0xff,0x1f,0x00,0x80,0xff,0x1f,0x00,0x00,0xff,0x1f,0x00,0x00, + 0xfc,0x3f,0x00,0x00,0xfe,0xff,0x20,0xc0,0xff,0xff,0x43,0xe0,0xff,0x3f,0xfe, + 0xe0,0xff,0x3f,0x40,0xc0,0x3f,0x1f,0x20}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/left2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/left2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/left2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/left2.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,16 @@ +#define left2_width 32 +#define left2_height 32 +#define left2_x_hot 0 +#define left2_y_hot 11 +static unsigned char left2_bits[] = { + 0x00, 0x70, 0x1c, 0x00, 0x00, 0x48, 0x28, 0x00, 0x00, 0x24, 0x48, 0x00, + 0x00, 0x24, 0x88, 0x00, 0x00, 0xf2, 0x87, 0x00, 0x00, 0x02, 0x82, 0x00, + 0x00, 0x1a, 0x40, 0x00, 0x00, 0x25, 0x40, 0x00, 0x00, 0x45, 0xa0, 0x00, + 0x00, 0x45, 0x80, 0x00, 0x00, 0x4f, 0x80, 0x00, 0x80, 0x4f, 0x80, 0x00, + 0x40, 0x4c, 0x80, 0x00, 0x40, 0x3c, 0x80, 0x00, 0x80, 0x03, 0x40, 0x00, + 0x80, 0x40, 0x40, 0x00, 0x00, 0x3f, 0x20, 0x00, 0x00, 0x02, 0x10, 0x00, + 0x00, 0x3c, 0x08, 0x00, 0x00, 0x20, 0x08, 0x00, 0x00, 0x10, 0x08, 0x70, + 0x00, 0x10, 0x10, 0x60, 0x30, 0x08, 0x10, 0x50, 0x40, 0x48, 0x10, 0x08, + 0xf8, 0x3f, 0x20, 0x06, 0x40, 0x04, 0xe4, 0x03, 0x30, 0x04, 0xe2, 0x01, + 0x80, 0xcf, 0x41, 0x00, 0x40, 0x30, 0x40, 0x00, 0x40, 0xc0, 0x43, 0x00, + 0x80, 0x7f, 0x20, 0x00, 0x00, 0x80, 0x1f, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/left2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/left2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/left2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/left2_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define left2_mask_width 32 +#define left2_mask_height 32 +#define left2_mask_x_hot 0 +#define left2_mask_y_hot 11 +static char left2_mask_bits[] = { + 0x00,0x70,0x1c,0x00,0x00,0x78,0x38,0x00,0x00,0x3c,0x78,0x00,0x00,0x3c,0xf8, + 0x00,0x00,0xfe,0xff,0x00,0x00,0xfe,0xff,0x00,0x00,0xfe,0x7f,0x00,0x00,0xff, + 0x7f,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x80, + 0xff,0xff,0x00,0xc0,0xff,0xff,0x00,0xc0,0xff,0xff,0x00,0x80,0xff,0x7f,0x00, + 0x80,0xff,0x7f,0x00,0x00,0xff,0x3f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xfc,0x0f, + 0x00,0x00,0xe0,0x0f,0x00,0x00,0xf0,0x0f,0x70,0x00,0xf0,0x1f,0x60,0x30,0xf8, + 0x1f,0x50,0x40,0xf8,0x1f,0x08,0xf8,0xff,0x3f,0x06,0x40,0xfc,0xff,0x03,0x30, + 0xfc,0xff,0x01,0x80,0xff,0x7f,0x00,0xc0,0xff,0x7f,0x00,0xc0,0xff,0x7f,0x00, + 0x80,0xff,0x3f,0x00,0x00,0x80,0x1f,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/ltogi1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/ltogi1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/ltogi1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/ltogi1.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,16 @@ +#define ltogi1_width 32 +#define ltogi1_height 32 +#define ltogi1_x_hot 0 +#define ltogi1_y_hot 11 +static unsigned char ltogi1_bits[] = { + 0x00, 0x60, 0x0c, 0x00, 0x00, 0x50, 0x14, 0x00, 0x00, 0x48, 0x12, 0x00, + 0x00, 0xf8, 0x11, 0x00, 0x00, 0x84, 0x10, 0x00, 0x00, 0x02, 0x10, 0x00, + 0x00, 0x07, 0x18, 0x00, 0x00, 0x05, 0x28, 0x00, 0x80, 0x08, 0x44, 0x00, + 0x80, 0x08, 0x40, 0x00, 0x80, 0x0b, 0x40, 0x00, 0xc0, 0x0b, 0x40, 0x00, + 0x20, 0x0b, 0x40, 0x00, 0x20, 0x06, 0x20, 0x00, 0xc0, 0x01, 0x20, 0x00, + 0x40, 0x10, 0x10, 0x00, 0x88, 0x0f, 0x08, 0x00, 0x12, 0x01, 0x04, 0x00, + 0x14, 0x3e, 0x04, 0x00, 0x09, 0x20, 0x04, 0x00, 0x16, 0x10, 0x08, 0x00, + 0x20, 0x0f, 0x08, 0x00, 0xc0, 0x08, 0x08, 0x00, 0x80, 0x84, 0x10, 0x00, + 0x80, 0x84, 0x10, 0x00, 0x00, 0x07, 0x11, 0x00, 0x00, 0x04, 0x31, 0x00, + 0x00, 0x02, 0xf9, 0x20, 0xc0, 0x01, 0xde, 0x43, 0x20, 0x80, 0x23, 0xfe, + 0x20, 0xc0, 0x20, 0x40, 0xc0, 0x3f, 0x1f, 0x20}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/ltogi1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/ltogi1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/ltogi1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/ltogi1_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define ltogi1_mask_width 32 +#define ltogi1_mask_height 32 +#define ltogi1_mask_x_hot 0 +#define ltogi1_mask_y_hot 11 +static char ltogi1_mask_bits[] = { + 0x00,0x60,0x0c,0x00,0x00,0x70,0x1c,0x00,0x00,0x78,0x1e,0x00,0x00,0xf8,0x1f, + 0x00,0x00,0xfc,0x1f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xff,0x1f,0x00,0x00,0xff, + 0x3f,0x00,0x80,0xff,0x7f,0x00,0x80,0xff,0x7f,0x00,0x80,0xff,0x7f,0x00,0xc0, + 0xff,0x7f,0x00,0xe0,0xff,0x7f,0x00,0xe0,0xff,0x3f,0x00,0xc0,0xff,0x3f,0x00, + 0xc0,0xff,0x1f,0x00,0x88,0xff,0x0f,0x00,0x12,0xff,0x07,0x00,0x14,0xfe,0x07, + 0x00,0x09,0xe0,0x07,0x00,0x16,0xf0,0x0f,0x00,0x20,0xff,0x0f,0x00,0xc0,0xff, + 0x0f,0x00,0x80,0xff,0x1f,0x00,0x80,0xff,0x1f,0x00,0x00,0xff,0x1f,0x00,0x00, + 0xfc,0x3f,0x00,0x00,0xfe,0xff,0x20,0xc0,0xff,0xff,0x43,0xe0,0xff,0x3f,0xfe, + 0xe0,0xff,0x3f,0x40,0xc0,0x3f,0x1f,0x20}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/ltogi2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/ltogi2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/ltogi2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/ltogi2.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,16 @@ +#define ltogi2_width 32 +#define ltogi2_height 32 +#define ltogi2_x_hot 0 +#define ltogi2_y_hot 11 +static unsigned char ltogi2_bits[] = { + 0x00, 0x70, 0x1c, 0x00, 0x00, 0x48, 0x28, 0x00, 0x00, 0x24, 0x48, 0x00, + 0x00, 0x24, 0x88, 0x00, 0x00, 0xf2, 0x87, 0x00, 0x00, 0x02, 0x82, 0x00, + 0x00, 0x1a, 0x40, 0x00, 0x00, 0x25, 0x40, 0x00, 0x00, 0x45, 0xa0, 0x00, + 0x00, 0x45, 0x80, 0x00, 0x00, 0x4f, 0x80, 0x00, 0x80, 0x4f, 0x80, 0x00, + 0x40, 0x4c, 0x80, 0x00, 0x40, 0x3c, 0x80, 0x00, 0x80, 0x03, 0x40, 0x00, + 0x80, 0x40, 0x40, 0x00, 0x00, 0x3f, 0x20, 0x00, 0x00, 0x02, 0x10, 0x00, + 0x00, 0x3c, 0x08, 0x00, 0x00, 0x20, 0x08, 0x00, 0x00, 0x10, 0x08, 0x70, + 0x00, 0x10, 0x10, 0x60, 0x30, 0x08, 0x10, 0x50, 0x40, 0x48, 0x10, 0x08, + 0xf8, 0x3f, 0x20, 0x06, 0x40, 0x04, 0xe4, 0x03, 0x30, 0x04, 0xe2, 0x01, + 0x80, 0xcf, 0x41, 0x00, 0x40, 0x30, 0x40, 0x00, 0x40, 0xc0, 0x43, 0x00, + 0x80, 0x7f, 0x20, 0x00, 0x00, 0x80, 0x1f, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/ltogi2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/ltogi2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/ltogi2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/ltogi2_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define ltogi2_mask_width 32 +#define ltogi2_mask_height 32 +#define ltogi2_mask_x_hot 0 +#define ltogi2_mask_y_hot 11 +static char ltogi2_mask_bits[] = { + 0x00,0x70,0x1c,0x00,0x00,0x78,0x38,0x00,0x00,0x3c,0x78,0x00,0x00,0x3c,0xf8, + 0x00,0x00,0xfe,0xff,0x00,0x00,0xfe,0xff,0x00,0x00,0xfe,0x7f,0x00,0x00,0xff, + 0x7f,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x80, + 0xff,0xff,0x00,0xc0,0xff,0xff,0x00,0xc0,0xff,0xff,0x00,0x80,0xff,0x7f,0x00, + 0x80,0xff,0x7f,0x00,0x00,0xff,0x3f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xfc,0x0f, + 0x00,0x00,0xe0,0x0f,0x00,0x00,0xf0,0x0f,0x70,0x00,0xf0,0x1f,0x60,0x30,0xf8, + 0x1f,0x50,0x40,0xf8,0x1f,0x08,0xf8,0xff,0x3f,0x06,0x40,0xfc,0xff,0x03,0x30, + 0xfc,0xff,0x01,0x80,0xff,0x7f,0x00,0xc0,0xff,0x7f,0x00,0xc0,0xff,0x7f,0x00, + 0x80,0xff,0x3f,0x00,0x00,0x80,0x1f,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/maneki1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/maneki1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/maneki1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/maneki1.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,16 @@ +#define maneki1_width 32 +#define maneki1_height 32 +#define maneki1_x_hot 0 +#define maneki1_y_hot 11 +static unsigned char maneki1_bits[] = { + 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0x40, 0x01, + 0x00, 0x12, 0x80, 0x02, 0x00, 0xe2, 0x8f, 0x04, 0x00, 0x02, 0x90, 0x04, + 0x00, 0xd9, 0x60, 0x04, 0x00, 0x26, 0x01, 0x04, 0x00, 0x22, 0x02, 0x04, + 0x00, 0x12, 0x02, 0x02, 0x00, 0x39, 0x02, 0x01, 0x00, 0x3d, 0x82, 0x00, + 0x80, 0x32, 0x82, 0x00, 0x80, 0xe2, 0x81, 0x00, 0x80, 0x1c, 0x80, 0x00, + 0x00, 0x01, 0x41, 0x00, 0x00, 0xfa, 0x20, 0x00, 0x00, 0x04, 0x10, 0x00, + 0x80, 0x38, 0x08, 0x00, 0x20, 0x21, 0x10, 0x00, 0x40, 0x11, 0x20, 0x00, + 0x90, 0x0c, 0x20, 0x10, 0x60, 0x03, 0x20, 0x38, 0x00, 0x8d, 0x21, 0x54, + 0x00, 0x71, 0x30, 0x10, 0x00, 0x3e, 0x28, 0x10, 0x00, 0x48, 0x64, 0x10, + 0x00, 0xc8, 0xe3, 0x10, 0x00, 0x86, 0xa0, 0x09, 0x00, 0x41, 0x40, 0x07, + 0x00, 0x41, 0x40, 0x00, 0x00, 0xbe, 0x3f, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/maneki1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/maneki1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/maneki1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/maneki1_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define maneki1_mask_width 32 +#define maneki1_mask_height 32 +#define maneki1_mask_x_hot 0 +#define maneki1_mask_y_hot 11 +static char maneki1_mask_bits[] = { + 0x00,0x30,0x00,0x00,0x00,0x18,0xc0,0x00,0x00,0x1c,0xc0,0x01,0x00,0x1e,0x80, + 0x03,0x00,0xfe,0x8f,0x07,0x00,0xfe,0x9f,0x07,0x00,0xff,0xff,0x07,0x00,0xfe, + 0xff,0x07,0x00,0xfe,0xff,0x07,0x00,0xfe,0xff,0x03,0x00,0xff,0xff,0x01,0x00, + 0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00, + 0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xfc,0x1f,0x00,0x80,0xf8,0x0f, + 0x00,0x20,0xe1,0x1f,0x00,0x40,0xf1,0x3f,0x00,0x90,0xfc,0x3f,0x10,0x60,0xff, + 0x3f,0x38,0x00,0xff,0x3f,0x54,0x00,0xff,0x3f,0x10,0x00,0xfe,0x3f,0x10,0x00, + 0xf8,0x7f,0x10,0x00,0xf8,0xff,0x10,0x00,0xfe,0xff,0x09,0x00,0xff,0x7f,0x07, + 0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/maneki2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/maneki2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/maneki2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/maneki2.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,16 @@ +#define maneki2_width 32 +#define maneki2_height 32 +#define maneki2_x_hot 0 +#define maneki2_y_hot 11 +static unsigned char maneki2_bits[] = { + 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0x40, 0x01, + 0x00, 0x12, 0x80, 0x02, 0x00, 0xe2, 0x8f, 0x04, 0x00, 0x02, 0x90, 0x04, + 0x00, 0xd9, 0x60, 0x04, 0x00, 0x26, 0x01, 0x04, 0x00, 0x22, 0x02, 0x04, + 0x00, 0x12, 0x02, 0x02, 0x00, 0x39, 0x02, 0x01, 0x00, 0x3d, 0x82, 0x00, + 0x80, 0x32, 0x82, 0x00, 0x80, 0xe2, 0x81, 0x00, 0x80, 0x1c, 0x80, 0x00, + 0x00, 0x01, 0x41, 0x00, 0x00, 0xfa, 0x20, 0x00, 0x00, 0x04, 0x10, 0x00, + 0x80, 0x38, 0x08, 0x00, 0x20, 0x21, 0x10, 0x00, 0x40, 0x11, 0x20, 0x00, + 0x90, 0x0c, 0x20, 0x10, 0x60, 0x03, 0x20, 0x38, 0x00, 0x8d, 0x21, 0x54, + 0x00, 0x71, 0x30, 0x10, 0x00, 0x3e, 0x28, 0x10, 0x00, 0x48, 0x64, 0x10, + 0x00, 0xc8, 0xe3, 0x10, 0x00, 0x86, 0xa0, 0x09, 0x00, 0x41, 0x40, 0x07, + 0x00, 0x41, 0x40, 0x00, 0x00, 0xbe, 0x3f, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/maneki2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/maneki2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/maneki2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/maneki2_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define maneki2_mask_width 32 +#define maneki2_mask_height 32 +#define maneki2_mask_x_hot 0 +#define maneki2_mask_y_hot 11 +static char maneki2_mask_bits[] = { + 0x00,0x30,0x00,0x00,0x00,0x18,0xc0,0x00,0x00,0x1c,0xc0,0x01,0x00,0x1e,0x80, + 0x03,0x00,0xfe,0x8f,0x07,0x00,0xfe,0x9f,0x07,0x00,0xff,0xff,0x07,0x00,0xfe, + 0xff,0x07,0x00,0xfe,0xff,0x07,0x00,0xfe,0xff,0x03,0x00,0xff,0xff,0x01,0x00, + 0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00, + 0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xfc,0x1f,0x00,0x80,0xf8,0x0f, + 0x00,0x20,0xe1,0x1f,0x00,0x40,0xf1,0x3f,0x00,0x90,0xfc,0x3f,0x10,0x60,0xff, + 0x3f,0x38,0x00,0xff,0x3f,0x54,0x00,0xff,0x3f,0x10,0x00,0xfe,0x3f,0x10,0x00, + 0xf8,0x7f,0x10,0x00,0xf8,0xff,0x10,0x00,0xfe,0xff,0x09,0x00,0xff,0x7f,0x07, + 0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/mati1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/mati1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/mati1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/mati1.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,16 @@ +#define mati1_width 32 +#define mati1_height 32 +#define mati1_x_hot 0 +#define mati1_y_hot 11 +static unsigned char mati1_bits[] = { + 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0x40, 0x01, + 0x00, 0x12, 0x80, 0x02, 0x00, 0xe2, 0x8f, 0x04, 0x00, 0x02, 0x90, 0x04, + 0x00, 0xd9, 0x60, 0x04, 0x00, 0x26, 0x01, 0x04, 0x00, 0x22, 0x02, 0x04, + 0x00, 0x12, 0x02, 0x02, 0x00, 0x39, 0x02, 0x01, 0x00, 0x3d, 0x82, 0x00, + 0x80, 0x32, 0x82, 0x00, 0x80, 0xe2, 0x81, 0x00, 0x90, 0x1c, 0x80, 0x00, + 0x24, 0x01, 0x41, 0x00, 0x28, 0xfa, 0x20, 0x00, 0x12, 0x04, 0x10, 0x00, + 0x2c, 0x38, 0x08, 0x00, 0x40, 0x23, 0x10, 0x00, 0x80, 0x14, 0x20, 0x00, + 0x40, 0x78, 0x22, 0x00, 0x40, 0x84, 0x21, 0x00, 0x80, 0x07, 0x20, 0x00, + 0x00, 0x0c, 0x20, 0x00, 0x00, 0xf4, 0x27, 0x00, 0x00, 0x08, 0x20, 0x00, + 0x00, 0x08, 0x60, 0xe0, 0x00, 0x86, 0x61, 0xc0, 0x00, 0x41, 0xc0, 0xa0, + 0x00, 0x41, 0x40, 0x11, 0x00, 0xbe, 0x3f, 0x0e}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/mati1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/mati1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/mati1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/mati1_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define mati1_mask_width 32 +#define mati1_mask_height 32 +#define mati1_mask_x_hot 0 +#define mati1_mask_y_hot 11 +static char mati1_mask_bits[] = { + 0x00,0x30,0x00,0x00,0x00,0x18,0xc0,0x00,0x00,0x1c,0xc0,0x01,0x00,0x1e,0x80, + 0x03,0x00,0xfe,0x8f,0x07,0x00,0xfe,0x9f,0x07,0x00,0xff,0xff,0x07,0x00,0xfe, + 0xff,0x07,0x00,0xfe,0xff,0x07,0x00,0xfe,0xff,0x03,0x00,0xff,0xff,0x01,0x00, + 0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x90,0xff,0xff,0x00, + 0x24,0xff,0x7f,0x00,0x28,0xfe,0x3f,0x00,0x12,0xfc,0x1f,0x00,0x2c,0xf8,0x0f, + 0x00,0x40,0xe3,0x1f,0x00,0x80,0xf7,0x3f,0x00,0xc0,0xff,0x3f,0x00,0xc0,0xff, + 0x3f,0x00,0x80,0xff,0x3f,0x00,0x00,0xfc,0x3f,0x00,0x00,0xfc,0x3f,0x00,0x00, + 0xf8,0x3f,0x00,0x00,0xf8,0x7f,0xe0,0x00,0xfe,0x7f,0xc0,0x00,0xff,0xff,0xa0, + 0x00,0xff,0x7f,0x11,0x00,0xfe,0x3f,0x0e}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/mati2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/mati2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/mati2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/mati2.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,16 @@ +#define mati2_width 32 +#define mati2_height 32 +#define mati2_x_hot 0 +#define mati2_y_hot 11 +static unsigned char mati2_bits[] = { + 0x08, 0x30, 0x00, 0x00, 0x08, 0x18, 0xe0, 0x00, 0x10, 0x14, 0x40, 0x01, + 0x21, 0xe2, 0x4f, 0x02, 0x22, 0x02, 0x30, 0x04, 0x12, 0x02, 0x00, 0x04, + 0x09, 0x06, 0x00, 0x02, 0x09, 0x09, 0x07, 0x01, 0x12, 0x9d, 0x80, 0x00, + 0xa0, 0x22, 0x80, 0x00, 0x80, 0xfe, 0x81, 0x00, 0x80, 0x83, 0x82, 0x00, + 0x80, 0x00, 0x84, 0x00, 0x00, 0x01, 0x44, 0x00, 0x00, 0x7a, 0x44, 0x00, + 0x00, 0x86, 0x22, 0x00, 0xc0, 0x05, 0x91, 0x03, 0x20, 0xfa, 0x70, 0x04, + 0x20, 0x00, 0x00, 0x04, 0x40, 0x00, 0x00, 0x04, 0xa0, 0x01, 0x00, 0x03, + 0x10, 0x02, 0x80, 0x00, 0x08, 0x02, 0x40, 0x00, 0x04, 0x02, 0x20, 0x00, + 0x00, 0x02, 0x20, 0x00, 0x00, 0x02, 0x60, 0x00, 0x00, 0x02, 0xe0, 0x00, + 0x00, 0x02, 0x20, 0x03, 0x00, 0x82, 0x20, 0x4c, 0x00, 0x42, 0x21, 0xf0, + 0x00, 0x22, 0x11, 0xe0, 0x00, 0x1c, 0x0e, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/mati2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/mati2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/mati2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/mati2_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define mati2_mask_width 32 +#define mati2_mask_height 32 +#define mati2_mask_x_hot 0 +#define mati2_mask_y_hot 11 +static char mati2_mask_bits[] = { + 0x08,0x30,0x00,0x00,0x08,0x18,0xe0,0x00,0x10,0x1c,0xc0,0x01,0x21,0xfe,0xcf, + 0x03,0x22,0xfe,0xff,0x07,0x12,0xfe,0xff,0x07,0x09,0xfe,0xff,0x03,0x09,0xff, + 0xff,0x01,0x12,0xff,0xff,0x00,0xa0,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80, + 0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x7f,0x00, + 0x00,0xfe,0x3f,0x00,0xc0,0xff,0x9f,0x03,0xe0,0xff,0xff,0x07,0xe0,0xff,0xff, + 0x07,0xc0,0xff,0xff,0x07,0xa0,0xff,0xff,0x03,0x10,0xfe,0xff,0x00,0x08,0xfe, + 0x7f,0x00,0x04,0xfe,0x3f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xfe,0x7f,0x00,0x00, + 0xfe,0xff,0x00,0x00,0xfe,0x3f,0x03,0x00,0xfe,0x3f,0x4c,0x00,0x7e,0x3f,0xf0, + 0x00,0x3e,0x1f,0xe0,0x00,0x1c,0x0e,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/right1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/right1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/right1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/right1.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define right1_width 32 +#define right1_height 32 +#define right1_x_hot 0 +#define right1_y_hot 11 +static char right1_bits[] = { + 0x00,0x30,0x06,0x00,0x00,0x28,0x0a,0x00,0x00,0x48,0x12,0x00,0x00,0x88,0x1f, + 0x00,0x00,0x08,0x21,0x00,0x00,0x08,0x40,0x00,0x00,0x18,0xe0,0x00,0x00,0x14, + 0xa0,0x00,0x00,0x22,0x10,0x01,0x00,0x02,0x10,0x01,0x00,0x02,0xd0,0x01,0x00, + 0x02,0xd0,0x03,0x00,0x02,0xd0,0x04,0x00,0x04,0x60,0x04,0x00,0x04,0x80,0x03, + 0x00,0x08,0x08,0x02,0x00,0x10,0xf0,0x11,0x00,0x20,0x80,0x48,0x00,0x20,0x7c, + 0x28,0x00,0x20,0x04,0x90,0x00,0x10,0x08,0x68,0x00,0x10,0xf0,0x04,0x00,0x10, + 0x10,0x03,0x00,0x08,0x21,0x01,0x00,0x08,0x21,0x01,0x00,0x88,0xe0,0x00,0x00, + 0x8c,0x20,0x00,0x04,0x9f,0x40,0x00,0xc2,0x7b,0x80,0x03,0x7f,0xc4,0x01,0x04, + 0x02,0x04,0x03,0x04,0x04,0xf8,0xfc,0x03}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/right1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/right1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/right1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/right1_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define right1_mask_width 32 +#define right1_mask_height 32 +#define right1_mask_x_hot 0 +#define right1_mask_y_hot 11 +static char right1_mask_bits[] = { + 0x00,0x30,0x06,0x00,0x00,0x38,0x0e,0x00,0x00,0x78,0x1e,0x00,0x00,0xf8,0x1f, + 0x00,0x00,0xf8,0x3f,0x00,0x00,0xf8,0x7f,0x00,0x00,0xf8,0xff,0x00,0x00,0xfc, + 0xff,0x00,0x00,0xfe,0xff,0x01,0x00,0xfe,0xff,0x01,0x00,0xfe,0xff,0x01,0x00, + 0xfe,0xff,0x03,0x00,0xfe,0xff,0x07,0x00,0xfc,0xff,0x07,0x00,0xfc,0xff,0x03, + 0x00,0xf8,0xff,0x03,0x00,0xf0,0xff,0x11,0x00,0xe0,0xff,0x48,0x00,0xe0,0x7f, + 0x28,0x00,0xe0,0x07,0x90,0x00,0xf0,0x0f,0x68,0x00,0xf0,0xff,0x04,0x00,0xf0, + 0xff,0x03,0x00,0xf8,0xff,0x01,0x00,0xf8,0xff,0x01,0x00,0xf8,0xff,0x00,0x00, + 0xfc,0x3f,0x00,0x04,0xff,0x7f,0x00,0xc2,0xff,0xff,0x03,0x7f,0xfc,0xff,0x07, + 0x02,0xfc,0xff,0x07,0x04,0xf8,0xfc,0x03}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/right2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/right2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/right2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/right2.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,16 @@ +#define right2_width 32 +#define right2_height 32 +#define right2_x_hot 0 +#define right2_y_hot 11 +static unsigned char right2_bits[] = { + 0x00, 0x38, 0x0e, 0x00, 0x00, 0x14, 0x12, 0x00, 0x00, 0x12, 0x24, 0x00, + 0x00, 0x11, 0x24, 0x00, 0x00, 0xe1, 0x4f, 0x00, 0x00, 0x41, 0x40, 0x00, + 0x00, 0x02, 0x58, 0x00, 0x00, 0x02, 0xa4, 0x00, 0x00, 0x05, 0xa2, 0x00, + 0x00, 0x01, 0xa2, 0x00, 0x00, 0x01, 0xf2, 0x00, 0x00, 0x01, 0xf2, 0x01, + 0x00, 0x01, 0x32, 0x02, 0x00, 0x01, 0x3c, 0x02, 0x00, 0x02, 0xc0, 0x01, + 0x00, 0x02, 0x02, 0x01, 0x00, 0x04, 0xfc, 0x00, 0x00, 0x08, 0x40, 0x00, + 0x00, 0x10, 0x3c, 0x00, 0x00, 0x10, 0x04, 0x00, 0x0e, 0x10, 0x08, 0x00, + 0x06, 0x08, 0x08, 0x00, 0x0a, 0x08, 0x10, 0x0c, 0x10, 0x08, 0x12, 0x02, + 0x60, 0x04, 0xfc, 0x1f, 0xc0, 0x27, 0x20, 0x02, 0x80, 0x47, 0x20, 0x0c, + 0x00, 0x82, 0xf3, 0x01, 0x00, 0x02, 0x0c, 0x02, 0x00, 0xc2, 0x03, 0x02, + 0x00, 0x04, 0xfe, 0x01, 0x00, 0xf8, 0x01, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/right2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/right2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/right2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/right2_mask.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define right2_mask_width 32 +#define right2_mask_height 32 +#define right2_mask_x_hot 0 +#define right2_mask_y_hot 11 +static char right2_mask_bits[] = { + 0x00,0x38,0x0e,0x00,0x00,0x1c,0x1e,0x00,0x00,0x1e,0x3c,0x00,0x00,0x1f,0x3c, + 0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x7f,0x00,0x00,0xfe, + 0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00, + 0xff,0xff,0x01,0x00,0xff,0xff,0x03,0x00,0xff,0xff,0x03,0x00,0xfe,0xff,0x01, + 0x00,0xfe,0xff,0x01,0x00,0xfc,0xff,0x00,0x00,0xf8,0x7f,0x00,0x00,0xf0,0x3f, + 0x00,0x00,0xf0,0x07,0x00,0x0e,0xf0,0x0f,0x00,0x06,0xf8,0x0f,0x00,0x0a,0xf8, + 0x1f,0x0c,0x10,0xf8,0x1f,0x02,0x60,0xfc,0xff,0x1f,0xc0,0xff,0x3f,0x02,0x80, + 0xff,0x3f,0x0c,0x00,0xfe,0xff,0x01,0x00,0xfe,0xff,0x03,0x00,0xfe,0xff,0x03, + 0x00,0xfc,0xff,0x01,0x00,0xf8,0x01,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/rtogi1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/rtogi1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/rtogi1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/rtogi1.xbm Wed May 22 03:32:13 2002 @@ -0,0 +1,14 @@ +#define rtogi1_width 32 +#define rtogi1_height 32 +#define rtogi1_x_hot 0 +#define rtogi1_y_hot 11 +static char rtogi1_bits[] = { + 0x00,0x30,0x06,0x00,0x00,0x28,0x0a,0x00,0x00,0x48,0x12,0x00,0x00,0x88,0x1f, + 0x00,0x00,0x08,0x21,0x00,0x00,0x08,0x40,0x00,0x00,0x18,0xe0,0x00,0x00,0x14, + 0xa0,0x00,0x00,0x22,0x10,0x01,0x00,0x02,0x10,0x01,0x00,0x02,0xd0,0x01,0x00, + 0x02,0xd0,0x03,0x00,0x02,0xd0,0x04,0x00,0x04,0x60,0x04,0x00,0x04,0x80,0x03, + 0x00,0x08,0x08,0x02,0x00,0x10,0xf0,0x11,0x00,0x20,0x80,0x48,0x00,0x20,0x7c, + 0x28,0x00,0x20,0x04,0x90,0x00,0x10,0x08,0x68,0x00,0x10,0xf0,0x04,0x00,0x10, + 0x10,0x03,0x00,0x08,0x21,0x01,0x00,0x08,0x21,0x01,0x00,0x88,0xe0,0x00,0x00, + 0x8c,0x20,0x00,0x04,0x9f,0x40,0x00,0xc2,0x7b,0x80,0x03,0x7f,0xc4,0x01,0x04, + 0x02,0x04,0x03,0x04,0x04,0xf8,0xfc,0x03}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/rtogi1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/rtogi1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/rtogi1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/rtogi1_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define rtogi1_mask_width 32 +#define rtogi1_mask_height 32 +#define rtogi1_mask_x_hot 0 +#define rtogi1_mask_y_hot 11 +static char rtogi1_mask_bits[] = { + 0x00,0x30,0x06,0x00,0x00,0x38,0x0e,0x00,0x00,0x78,0x1e,0x00,0x00,0xf8,0x1f, + 0x00,0x00,0xf8,0x3f,0x00,0x00,0xf8,0x7f,0x00,0x00,0xf8,0xff,0x00,0x00,0xfc, + 0xff,0x00,0x00,0xfe,0xff,0x01,0x00,0xfe,0xff,0x01,0x00,0xfe,0xff,0x01,0x00, + 0xfe,0xff,0x03,0x00,0xfe,0xff,0x07,0x00,0xfc,0xff,0x07,0x00,0xfc,0xff,0x03, + 0x00,0xf8,0xff,0x03,0x00,0xf0,0xff,0x11,0x00,0xe0,0xff,0x48,0x00,0xe0,0x7f, + 0x28,0x00,0xe0,0x07,0x90,0x00,0xf0,0x0f,0x68,0x00,0xf0,0xff,0x04,0x00,0xf0, + 0xff,0x03,0x00,0xf8,0xff,0x01,0x00,0xf8,0xff,0x01,0x00,0xf8,0xff,0x00,0x00, + 0xfc,0x3f,0x00,0x04,0xff,0x7f,0x00,0xc2,0xff,0xff,0x03,0x7f,0xfc,0xff,0x07, + 0x02,0xfc,0xff,0x07,0x04,0xf8,0xfc,0x03}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/rtogi2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/rtogi2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/rtogi2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/rtogi2.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,16 @@ +#define rtogi2_width 32 +#define rtogi2_height 32 +#define rtogi2_x_hot 0 +#define rtogi2_y_hot 11 +static unsigned char rtogi2_bits[] = { + 0x00, 0x38, 0x0e, 0x00, 0x00, 0x14, 0x12, 0x00, 0x00, 0x12, 0x24, 0x00, + 0x00, 0x11, 0x24, 0x00, 0x00, 0xe1, 0x4f, 0x00, 0x00, 0x41, 0x40, 0x00, + 0x00, 0x02, 0x58, 0x00, 0x00, 0x02, 0xa4, 0x00, 0x00, 0x05, 0xa2, 0x00, + 0x00, 0x01, 0xa2, 0x00, 0x00, 0x01, 0xf2, 0x00, 0x00, 0x01, 0xf2, 0x01, + 0x00, 0x01, 0x32, 0x02, 0x00, 0x01, 0x3c, 0x02, 0x00, 0x02, 0xc0, 0x01, + 0x00, 0x02, 0x02, 0x01, 0x00, 0x04, 0xfc, 0x00, 0x00, 0x08, 0x40, 0x00, + 0x00, 0x10, 0x3c, 0x00, 0x00, 0x10, 0x04, 0x00, 0x0e, 0x10, 0x08, 0x00, + 0x06, 0x08, 0x08, 0x00, 0x0a, 0x08, 0x10, 0x0c, 0x10, 0x08, 0x12, 0x02, + 0x60, 0x04, 0xfc, 0x1f, 0xc0, 0x27, 0x20, 0x02, 0x80, 0x47, 0x20, 0x0c, + 0x00, 0x82, 0xf3, 0x01, 0x00, 0x02, 0x0c, 0x02, 0x00, 0xc2, 0x03, 0x02, + 0x00, 0x04, 0xfe, 0x01, 0x00, 0xf8, 0x01, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/rtogi2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/rtogi2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/rtogi2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/rtogi2_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define rtogi2_mask_width 32 +#define rtogi2_mask_height 32 +#define rtogi2_mask_x_hot 0 +#define rtogi2_mask_y_hot 11 +static char rtogi2_mask_bits[] = { + 0x00,0x38,0x0e,0x00,0x00,0x1c,0x1e,0x00,0x00,0x1e,0x3c,0x00,0x00,0x1f,0x3c, + 0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x7f,0x00,0x00,0xfe, + 0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00, + 0xff,0xff,0x01,0x00,0xff,0xff,0x03,0x00,0xff,0xff,0x03,0x00,0xfe,0xff,0x01, + 0x00,0xfe,0xff,0x01,0x00,0xfc,0xff,0x00,0x00,0xf8,0x7f,0x00,0x00,0xf0,0x3f, + 0x00,0x00,0xf0,0x07,0x00,0x0e,0xf0,0x0f,0x00,0x06,0xf8,0x0f,0x00,0x0a,0xf8, + 0x1f,0x0c,0x10,0xf8,0x1f,0x02,0x60,0xfc,0xff,0x1f,0xc0,0xff,0x3f,0x02,0x80, + 0xff,0x3f,0x0c,0x00,0xfe,0xff,0x01,0x00,0xfe,0xff,0x03,0x00,0xfe,0xff,0x03, + 0x00,0xfc,0xff,0x01,0x00,0xf8,0x01,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/sleep1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/sleep1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/sleep1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/sleep1.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,16 @@ +#define sleep1_width 32 +#define sleep1_height 32 +#define sleep1_x_hot 0 +#define sleep1_y_hot 11 +static unsigned char sleep1_bits[] = { + 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x28, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x3e, 0x28, 0x00, 0x00, 0x10, 0x04, + 0x00, 0x00, 0x08, 0xfe, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, + 0x00, 0x00, 0x13, 0x00, 0x00, 0x80, 0xf2, 0x00, 0x00, 0xc0, 0x1a, 0x03, + 0xe0, 0xa1, 0x14, 0x06, 0x1e, 0xa6, 0x14, 0x0b, 0x09, 0xa8, 0xf8, 0x30, + 0x09, 0x30, 0x01, 0x50, 0x01, 0x20, 0x00, 0x90, 0x01, 0x00, 0x00, 0xf0, + 0x81, 0x01, 0x00, 0x18, 0x61, 0x00, 0x00, 0x10, 0x11, 0x00, 0x00, 0x20, + 0x11, 0x70, 0x80, 0xc0, 0x1e, 0x8e, 0x00, 0x83, 0xe0, 0x01, 0x01, 0x7e, + 0x00, 0x00, 0x06, 0x01, 0x00, 0x00, 0xf8, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/sleep1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/sleep1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/sleep1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/sleep1_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define sleep1_mask_width 32 +#define sleep1_mask_height 32 +#define sleep1_mask_x_hot 0 +#define sleep1_mask_y_hot 11 +static char sleep1_mask_bits[] = { + 0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x28,0x00,0x00,0x00, + 0x10,0x00,0x00,0x3e,0x28,0x00,0x00,0x10,0x04,0x00,0x00,0x08,0xfe,0x00,0x00, + 0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, + 0x00,0x00,0x1f,0x00,0x00,0x80,0xff,0x00,0x00,0xc0,0xff,0x03,0xe0,0xe1,0xff, + 0x07,0xfe,0xe7,0xff,0x0f,0xff,0xef,0xff,0x3f,0xff,0xff,0xff,0x7f,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0x1f,0xff, + 0xff,0xff,0x3f,0xff,0xff,0xff,0xff,0xfe,0x8f,0xff,0xff,0xe0,0x01,0xff,0x7f, + 0x00,0x00,0xfe,0x01,0x00,0x00,0xf8,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/sleep2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/sleep2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/sleep2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/sleep2.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,16 @@ +#define sleep2_width 32 +#define sleep2_height 32 +#define sleep2_x_hot 0 +#define sleep2_y_hot 11 +static unsigned char sleep2_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x1f, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x1e, 0x06, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x84, 0x1f, + 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, + 0x00, 0x00, 0x13, 0x00, 0x00, 0x80, 0xf2, 0x00, 0x00, 0xc0, 0x1a, 0x03, + 0x00, 0xa0, 0x14, 0x06, 0x06, 0xa0, 0x14, 0x0b, 0xe9, 0xa3, 0xf8, 0x30, + 0x19, 0x2c, 0x01, 0xd0, 0x09, 0x30, 0x00, 0x90, 0x01, 0x00, 0x00, 0x70, + 0x81, 0x01, 0x00, 0x18, 0x61, 0x00, 0x00, 0x10, 0x11, 0x00, 0x00, 0xa0, + 0x11, 0x00, 0x80, 0xc0, 0x1e, 0x7e, 0x00, 0x63, 0xe0, 0x81, 0x01, 0x1e, + 0x00, 0x00, 0x06, 0x03, 0x00, 0x00, 0xf8, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/sleep2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/sleep2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/sleep2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/sleep2_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define sleep2_mask_width 32 +#define sleep2_mask_height 32 +#define sleep2_mask_x_hot 0 +#define sleep2_mask_y_hot 11 +static char sleep2_mask_bits[] = { + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x80,0x1f,0x00,0x00,0x00,0x08,0x00,0x00,0x1e,0x06,0x00,0x00,0x08,0x02,0x00, + 0x00,0x84,0x1f,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, + 0x00,0x00,0x1f,0x00,0x00,0x80,0xff,0x00,0x00,0xc0,0xff,0x03,0x00,0xe0,0xff, + 0x07,0x06,0xe0,0xff,0x0f,0xef,0xe3,0xff,0x3f,0xff,0xef,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0x1f,0xff, + 0xff,0xff,0xbf,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0x7f,0xe0,0x81,0xff,0x1f, + 0x00,0x00,0xfe,0x03,0x00,0x00,0xf8,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/space.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/space.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/space.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/space.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,16 @@ +#define space_width 32 +#define space_height 32 +#define space_x_hot 0 +#define space_y_hot 11 +static char space_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/space_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/space_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/space_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/space_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define space_mask_width 32 +#define space_mask_height 32 +#define space_mask_x_hot 0 +#define space_mask_y_hot 11 +static char space_mask_bits[] = { + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/up1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/up1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/up1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/up1.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,16 @@ +#define up1_width 32 +#define up1_height 32 +#define up1_x_hot 0 +#define up1_y_hot 11 +static unsigned char up1_bits[] = { + 0x00, 0x06, 0x30, 0x00, 0x00, 0x05, 0x50, 0x00, 0x80, 0x02, 0xa0, 0x00, + 0x40, 0x02, 0x20, 0x01, 0x40, 0xfa, 0x2f, 0x01, 0x40, 0x04, 0x10, 0x01, + 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x80, 0x00, 0x80, 0x00, + 0x80, 0x00, 0x80, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, + 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x02, 0x20, 0x00, + 0x00, 0x04, 0x10, 0x00, 0x00, 0x0c, 0x18, 0x00, 0x00, 0x02, 0x20, 0x00, + 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x80, 0x00, 0x50, 0x00, + 0x80, 0x00, 0xa0, 0x00, 0x80, 0x04, 0x20, 0x01, 0x00, 0x07, 0x20, 0x02, + 0x00, 0x84, 0x20, 0x00, 0x00, 0xc4, 0x20, 0x00, 0x00, 0xf8, 0x41, 0x00, + 0x00, 0x40, 0x41, 0x00, 0x00, 0x40, 0x3e, 0x00, 0x00, 0x28, 0x00, 0x00, + 0x00, 0x18, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/up1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/up1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/up1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/up1_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define up1_mask_width 32 +#define up1_mask_height 32 +#define up1_mask_x_hot 0 +#define up1_mask_y_hot 11 +static char up1_mask_bits[] = { + 0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xe0,0x00,0xc0,0x03,0xe0, + 0x01,0xc0,0xfb,0xef,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00, + 0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00, + 0x00,0xfc,0x1f,0x00,0x00,0xfc,0x1f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xff,0x7f, + 0x00,0x00,0xff,0x7f,0x00,0x80,0xff,0x7f,0x00,0x80,0xff,0xbf,0x00,0x80,0xff, + 0x3f,0x01,0x00,0xff,0x3f,0x02,0x00,0xfc,0x3f,0x00,0x00,0xfc,0x3f,0x00,0x00, + 0xf8,0x7f,0x00,0x00,0x40,0x7f,0x00,0x00,0x40,0x3e,0x00,0x00,0x28,0x00,0x00, + 0x00,0x18,0x00,0x00,0x00,0x38,0x00,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/up2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/up2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/up2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/up2.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,16 @@ +#define up2_width 32 +#define up2_height 32 +#define up2_x_hot 0 +#define up2_y_hot 11 +static unsigned char up2_bits[] = { + 0x00, 0x06, 0x30, 0x00, 0x00, 0x05, 0x50, 0x00, 0x80, 0x02, 0xa0, 0x00, + 0x40, 0x02, 0x20, 0x01, 0x40, 0xfa, 0x2f, 0x01, 0x40, 0x04, 0x10, 0x01, + 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x80, 0x00, 0x80, 0x00, + 0x80, 0x00, 0x80, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, + 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x02, 0x20, 0x00, + 0x00, 0x04, 0x10, 0x00, 0x00, 0x0c, 0x18, 0x00, 0x00, 0x02, 0x20, 0x00, + 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x05, 0xa0, 0x00, + 0x00, 0x02, 0xa0, 0x00, 0x00, 0x02, 0x90, 0x00, 0x00, 0x02, 0x70, 0x00, + 0x00, 0x82, 0x10, 0x00, 0x00, 0x82, 0x11, 0x00, 0x00, 0xc1, 0x1f, 0x00, + 0x00, 0x41, 0x01, 0x00, 0x00, 0x3e, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, + 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0e, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/up2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/up2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/up2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/up2_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define up2_mask_width 32 +#define up2_mask_height 32 +#define up2_mask_x_hot 0 +#define up2_mask_y_hot 11 +static char up2_mask_bits[] = { + 0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xe0,0x00,0xc0,0x03,0xe0, + 0x01,0xc0,0xfb,0xef,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00, + 0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00, + 0x00,0xfc,0x1f,0x00,0x00,0xfc,0x1f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xff,0x7f, + 0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0xff,0x00,0x00,0xfe,0xff,0x00,0x00,0xfe, + 0xff,0x00,0x00,0xfe,0x7f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xfe,0x1f,0x00,0x00, + 0xff,0x1f,0x00,0x00,0x7f,0x01,0x00,0x00,0x3e,0x01,0x00,0x00,0x00,0x0a,0x00, + 0x00,0x00,0x0c,0x00,0x00,0x00,0x0e,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/upleft1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/upleft1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/upleft1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/upleft1.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define upleft1_width 32 +#define upleft1_height 32 +#define upleft1_x_hot 0 +#define upleft1_y_hot 11 +static char upleft1_bits[] = { + 0x00,0x00,0x18,0x00,0x00,0x06,0x30,0x00,0x00,0x05,0x50,0x00,0x80,0x02,0x90, + 0x00,0x40,0xe2,0x8f,0x00,0x40,0x1a,0x90,0x00,0x40,0x0c,0x20,0x01,0x40,0x00, + 0xc0,0x00,0x40,0x00,0xc0,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x00, + 0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x40,0x00, + 0x80,0x00,0x40,0x00,0x00,0x01,0x20,0x00,0x00,0x02,0x10,0x00,0x00,0x0c,0x08, + 0x00,0x20,0x10,0x08,0x00,0x48,0x08,0x30,0x00,0x50,0x04,0x50,0x00,0x24,0x02, + 0x90,0x00,0x58,0x01,0xa0,0x00,0x80,0x10,0x60,0x00,0x80,0x08,0x20,0x20,0x00, + 0x05,0x20,0x40,0x00,0x06,0x28,0xf0,0x00,0x08,0x38,0x4f,0x00,0x08,0xf4,0x20, + 0x00,0x10,0x0c,0x00,0x00,0xe0,0x03,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/upleft1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/upleft1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/upleft1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/upleft1_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define upleft1_mask_width 32 +#define upleft1_mask_height 32 +#define upleft1_mask_x_hot 0 +#define upleft1_mask_y_hot 11 +static char upleft1_mask_bits[] = { + 0x00,0x00,0x18,0x00,0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xf0, + 0x00,0xc0,0xe3,0xff,0x00,0xc0,0xfb,0xff,0x00,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x00,0xc0,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00, + 0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0x7f,0x00, + 0x80,0xff,0x7f,0x00,0x00,0xff,0x3f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xfc,0x0f, + 0x00,0x20,0xf0,0x0f,0x00,0x48,0xf8,0x3f,0x00,0x50,0xfc,0x7f,0x00,0x24,0xfe, + 0xff,0x00,0x58,0xff,0xff,0x00,0x80,0xff,0x7f,0x00,0x80,0xff,0x3f,0x20,0x00, + 0xff,0x3f,0x40,0x00,0xfe,0x3f,0xf0,0x00,0xf8,0x3f,0x4f,0x00,0xf8,0xff,0x20, + 0x00,0xf0,0x0f,0x00,0x00,0xe0,0x03,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/upleft2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/upleft2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/upleft2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/upleft2.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define upleft2_width 32 +#define upleft2_height 32 +#define upleft2_x_hot 0 +#define upleft2_y_hot 11 +static char upleft2_bits[] = { + 0x00,0x00,0x18,0x00,0x00,0x06,0x30,0x00,0x00,0x05,0x50,0x00,0x80,0x02,0x90, + 0x00,0x40,0xe2,0x8f,0x00,0x40,0x1a,0x90,0x00,0x40,0x0c,0x20,0x01,0x40,0x00, + 0xc0,0x00,0x40,0x00,0xc0,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x00, + 0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x40,0x00, + 0x80,0x00,0x40,0x00,0x00,0x01,0x20,0x00,0x00,0x02,0x10,0x00,0x00,0x0c,0x08, + 0x00,0x00,0x10,0x08,0x00,0x00,0x08,0x10,0x00,0x00,0x04,0x10,0x00,0x00,0x04, + 0x10,0x00,0x60,0x44,0x20,0x00,0x80,0x44,0x20,0x00,0xf0,0xe7,0x20,0x00,0x80, + 0x44,0x20,0x00,0x60,0x3a,0x44,0x00,0x00,0x01,0x4c,0x38,0x00,0xc2,0x53,0x30, + 0x00,0x3c,0x22,0x28,0x00,0x00,0xdc,0x07}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/upleft2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/upleft2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/upleft2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/upleft2_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define upleft2_mask_width 32 +#define upleft2_mask_height 32 +#define upleft2_mask_x_hot 0 +#define upleft2_mask_y_hot 11 +static char upleft2_mask_bits[] = { + 0x00,0x00,0x18,0x00,0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xf0, + 0x00,0xc0,0xe3,0xff,0x00,0xc0,0xfb,0xff,0x00,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x00,0xc0,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00, + 0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x80,0xff,0x7f,0x00, + 0x80,0xff,0x7f,0x00,0x00,0xff,0x3f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xfc,0x0f, + 0x00,0x00,0xf0,0x0f,0x00,0x00,0xf8,0x1f,0x00,0x00,0xfc,0x1f,0x00,0x00,0xfc, + 0x1f,0x00,0x60,0xfc,0x3f,0x00,0x80,0xfc,0x3f,0x00,0xf0,0xff,0x3f,0x00,0x80, + 0xfc,0x3f,0x00,0x60,0xfe,0x7f,0x00,0x00,0xff,0x7f,0x38,0x00,0xfe,0x7f,0x30, + 0x00,0x3c,0x3e,0x28,0x00,0x00,0xdc,0x07}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/upright1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/upright1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/upright1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/upright1.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,16 @@ +#define upright1_width 32 +#define upright1_height 32 +#define upright1_x_hot 0 +#define upright1_y_hot 11 +static unsigned char upright1_bits[] = { + 0x00, 0x18, 0x00, 0x00, 0x00, 0x0c, 0x60, 0x00, 0x00, 0x0a, 0xa0, 0x00, + 0x00, 0x09, 0x40, 0x01, 0x00, 0xf1, 0x47, 0x02, 0x00, 0x09, 0x58, 0x02, + 0x80, 0x04, 0x30, 0x02, 0x00, 0x03, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x80, 0x00, + 0x00, 0x01, 0x80, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x80, 0x00, 0x00, 0x08, 0x40, 0x00, + 0x00, 0x10, 0x30, 0x00, 0x00, 0x10, 0x08, 0x04, 0x00, 0x0c, 0x10, 0x12, + 0x00, 0x0a, 0x20, 0x0a, 0x00, 0x09, 0x40, 0x24, 0x00, 0x05, 0x80, 0x1a, + 0x00, 0x06, 0x08, 0x01, 0x04, 0x04, 0x10, 0x01, 0x02, 0x04, 0xa0, 0x00, + 0x0f, 0x14, 0x60, 0x00, 0xf2, 0x1c, 0x10, 0x00, 0x04, 0x2f, 0x10, 0x00, + 0x00, 0x30, 0x08, 0x00, 0x00, 0xc0, 0x07, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/upright1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/upright1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/upright1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/upright1_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define upright1_mask_width 32 +#define upright1_mask_height 32 +#define upright1_mask_x_hot 0 +#define upright1_mask_y_hot 11 +static char upright1_mask_bits[] = { + 0x00,0x18,0x00,0x00,0x00,0x0c,0x60,0x00,0x00,0x0e,0xe0,0x00,0x00,0x0f,0xc0, + 0x01,0x00,0xff,0xc7,0x03,0x00,0xff,0xdf,0x03,0x80,0xff,0xff,0x03,0x00,0xff, + 0xff,0x03,0x00,0xff,0xff,0x03,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00, + 0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x01,0x00,0xfe,0xff,0x01, + 0x00,0xfe,0xff,0x01,0x00,0xfc,0xff,0x00,0x00,0xf8,0x7f,0x00,0x00,0xf0,0x3f, + 0x00,0x00,0xf0,0x0f,0x04,0x00,0xfc,0x1f,0x12,0x00,0xfe,0x3f,0x0a,0x00,0xff, + 0x7f,0x24,0x00,0xff,0xff,0x1a,0x00,0xfe,0xff,0x01,0x04,0xfc,0xff,0x01,0x02, + 0xfc,0xff,0x00,0x0f,0xfc,0x7f,0x00,0xf2,0xfc,0x1f,0x00,0x04,0xff,0x1f,0x00, + 0x00,0xf0,0x0f,0x00,0x00,0xc0,0x07,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/upright2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/upright2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/upright2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/upright2.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,16 @@ +#define upright2_width 32 +#define upright2_height 32 +#define upright2_x_hot 0 +#define upright2_y_hot 11 +static unsigned char upright2_bits[] = { + 0x00, 0x18, 0x00, 0x00, 0x00, 0x0c, 0x60, 0x00, 0x00, 0x0a, 0xa0, 0x00, + 0x00, 0x09, 0x40, 0x01, 0x00, 0xf1, 0x47, 0x02, 0x00, 0x09, 0x58, 0x02, + 0x80, 0x04, 0x30, 0x02, 0x00, 0x03, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x80, 0x00, + 0x00, 0x01, 0x80, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x80, 0x00, 0x00, 0x08, 0x40, 0x00, + 0x00, 0x10, 0x30, 0x00, 0x00, 0x10, 0x08, 0x00, 0x00, 0x08, 0x10, 0x00, + 0x00, 0x08, 0x20, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x04, 0x22, 0x06, + 0x00, 0x04, 0x22, 0x01, 0x00, 0x04, 0xe7, 0x0f, 0x00, 0x04, 0x22, 0x01, + 0x00, 0x22, 0x5c, 0x06, 0x1c, 0x32, 0x80, 0x00, 0x0c, 0xca, 0x43, 0x00, + 0x14, 0x44, 0x3c, 0x00, 0xe0, 0x3b, 0x00, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/upright2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/upright2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/upright2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/upright2_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define upright2_mask_width 32 +#define upright2_mask_height 32 +#define upright2_mask_x_hot 0 +#define upright2_mask_y_hot 11 +static char upright2_mask_bits[] = { + 0x00,0x18,0x00,0x00,0x00,0x0c,0x60,0x00,0x00,0x0e,0xe0,0x00,0x00,0x0f,0xc0, + 0x01,0x00,0xff,0xc7,0x03,0x00,0xff,0xdf,0x03,0x80,0xff,0xff,0x03,0x00,0xff, + 0xff,0x03,0x00,0xff,0xff,0x03,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00, + 0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x01,0x00,0xfe,0xff,0x01, + 0x00,0xfe,0xff,0x01,0x00,0xfc,0xff,0x00,0x00,0xf8,0x7f,0x00,0x00,0xf0,0x3f, + 0x00,0x00,0xf0,0x0f,0x00,0x00,0xf8,0x1f,0x00,0x00,0xf8,0x3f,0x00,0x00,0xf8, + 0x3f,0x00,0x00,0xfc,0x3f,0x06,0x00,0xfc,0x3f,0x01,0x00,0xfc,0xff,0x0f,0x00, + 0xfc,0x3f,0x01,0x00,0xfe,0x7f,0x06,0x1c,0xfe,0xff,0x00,0x0c,0xfe,0x7f,0x00, + 0x14,0x7c,0x3c,0x00,0xe0,0x3f,0x00,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/utogi1.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/utogi1.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/utogi1.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/utogi1.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,16 @@ +#define utogi1_width 32 +#define utogi1_height 32 +#define utogi1_x_hot 0 +#define utogi1_y_hot 11 +static unsigned char utogi1_bits[] = { + 0x00, 0x06, 0x30, 0x00, 0x00, 0x05, 0x50, 0x00, 0x80, 0x02, 0xa0, 0x00, + 0x40, 0x02, 0x20, 0x01, 0x40, 0xfa, 0x2f, 0x01, 0x40, 0x04, 0x10, 0x01, + 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x80, 0x00, 0x80, 0x00, + 0x80, 0x00, 0x80, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, + 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x02, 0x20, 0x00, + 0x00, 0x04, 0x10, 0x00, 0x00, 0x0c, 0x18, 0x00, 0x00, 0x02, 0x20, 0x00, + 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x80, 0x00, 0x50, 0x00, + 0x80, 0x00, 0xa0, 0x00, 0x80, 0x04, 0x20, 0x01, 0x00, 0x07, 0x20, 0x02, + 0x00, 0x84, 0x20, 0x00, 0x00, 0xc4, 0x20, 0x00, 0x00, 0xf8, 0x41, 0x00, + 0x00, 0x40, 0x41, 0x00, 0x00, 0x40, 0x3e, 0x00, 0x00, 0x28, 0x00, 0x00, + 0x00, 0x18, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/utogi1_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/utogi1_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/utogi1_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/utogi1_mask.xbm Wed May 22 03:32:12 2002 @@ -0,0 +1,14 @@ +#define utogi1_mask_width 32 +#define utogi1_mask_height 32 +#define utogi1_mask_x_hot 0 +#define utogi1_mask_y_hot 11 +static char utogi1_mask_bits[] = { + 0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xe0,0x00,0xc0,0x03,0xe0, + 0x01,0xc0,0xfb,0xef,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00, + 0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00, + 0x00,0xfc,0x1f,0x00,0x00,0xfc,0x1f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xff,0x7f, + 0x00,0x00,0xff,0x7f,0x00,0x80,0xff,0x7f,0x00,0x80,0xff,0xbf,0x00,0x80,0xff, + 0x3f,0x01,0x00,0xff,0x3f,0x02,0x00,0xfc,0x3f,0x00,0x00,0xfc,0x3f,0x00,0x00, + 0xf8,0x7f,0x00,0x00,0x40,0x7f,0x00,0x00,0x40,0x3e,0x00,0x00,0x28,0x00,0x00, + 0x00,0x18,0x00,0x00,0x00,0x38,0x00,0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/utogi2.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/utogi2.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/utogi2.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/utogi2.xbm Wed May 22 03:32:11 2002 @@ -0,0 +1,16 @@ +#define utogi2_width 32 +#define utogi2_height 32 +#define utogi2_x_hot 0 +#define utogi2_y_hot 11 +static unsigned char utogi2_bits[] = { + 0x00, 0x06, 0x30, 0x00, 0x00, 0x05, 0x50, 0x00, 0x80, 0x02, 0xa0, 0x00, + 0x40, 0x02, 0x20, 0x01, 0x40, 0xfa, 0x2f, 0x01, 0x40, 0x04, 0x10, 0x01, + 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x80, 0x00, 0x80, 0x00, + 0x80, 0x00, 0x80, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, + 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x02, 0x20, 0x00, + 0x00, 0x04, 0x10, 0x00, 0x00, 0x0c, 0x18, 0x00, 0x00, 0x02, 0x20, 0x00, + 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x05, 0xa0, 0x00, + 0x00, 0x02, 0xa0, 0x00, 0x00, 0x02, 0x90, 0x00, 0x00, 0x02, 0x70, 0x00, + 0x00, 0x82, 0x10, 0x00, 0x00, 0x82, 0x11, 0x00, 0x00, 0xc1, 0x1f, 0x00, + 0x00, 0x41, 0x01, 0x00, 0x00, 0x3e, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, + 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0e, 0x00}; diff -urN oneko-2.0b-sender0.5/bitmaps.bsd/utogi2_mask.xbm oneko-2.0b-bsd0.2/bitmaps.bsd/utogi2_mask.xbm --- oneko-2.0b-sender0.5/bitmaps.bsd/utogi2_mask.xbm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/bitmaps.bsd/utogi2_mask.xbm Wed May 22 03:32:15 2002 @@ -0,0 +1,14 @@ +#define utogi2_mask_width 32 +#define utogi2_mask_height 32 +#define utogi2_mask_x_hot 0 +#define utogi2_mask_y_hot 11 +static char utogi2_mask_bits[] = { + 0x00,0x06,0x30,0x00,0x00,0x07,0x70,0x00,0x80,0x03,0xe0,0x00,0xc0,0x03,0xe0, + 0x01,0xc0,0xfb,0xef,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff,0xff,0x01,0xc0,0xff, + 0xff,0x01,0x80,0xff,0xff,0x00,0x80,0xff,0xff,0x00,0x00,0xff,0x7f,0x00,0x00, + 0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0x7f,0x00,0x00,0xfe,0x3f,0x00, + 0x00,0xfc,0x1f,0x00,0x00,0xfc,0x1f,0x00,0x00,0xfe,0x3f,0x00,0x00,0xff,0x7f, + 0x00,0x00,0xff,0x7f,0x00,0x00,0xff,0xff,0x00,0x00,0xfe,0xff,0x00,0x00,0xfe, + 0xff,0x00,0x00,0xfe,0x7f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xfe,0x1f,0x00,0x00, + 0xff,0x1f,0x00,0x00,0x7f,0x01,0x00,0x00,0x3e,0x01,0x00,0x00,0x00,0x0a,0x00, + 0x00,0x00,0x0c,0x00,0x00,0x00,0x0e,0x00}; diff -urN oneko-2.0b-sender0.5/configure oneko-2.0b-bsd0.2/configure --- oneko-2.0b-sender0.5/configure Thu May 23 23:35:56 2002 +++ oneko-2.0b-bsd0.2/configure Fri May 24 01:34:35 2002 @@ -31,7 +31,7 @@ ac_help="$ac_help --with-shape enable shape extension forcedly" ac_help="$ac_help - --with-xpm enable XPM support [default=no]" + --with-xpm enable XPM support [default=yes]" ac_help="$ac_help --with-mail-spool=DIR mail spool directory is DIR" ac_help="$ac_help @@ -3466,7 +3466,7 @@ fi -if test "$with_xpm" = "yes"; then +if test "$with_xpm" = "yes" -o "$with_xpm" = ""; then echo $ac_n "checking for XpmReadFileToPixmap in -lXpm""... $ac_c" 1>&6 echo "configure:3472: checking for XpmReadFileToPixmap in -lXpm" >&5 ac_lib_var=`echo Xpm'_'XpmReadFileToPixmap | sed 'y%./+-%__p_%'` @@ -3718,9 +3718,13 @@ if test "$with_gnu_make" = "yes"; then bmfiles='BMFILES != bitmaps/"*.xbm"' tora_bmfiles='TORA_BMFILES != bitmaps.tora/"*.xbm"' + bsd_bmfiles='BSD_BMFILES != bitmaps.bsd/"*.xbm"' + bsd_pmfiles='BSD_PMFILES != pixmaps.bsd/"*.xbm"' else bmfiles='BMFILES = bitmaps/*.xbm' tora_bmfiles='TORA_BMFILES = bitmaps.tora/*.xbm' + bsd_bmfiles='BSD_BMFILES = bitmaps.bsd/*.xbm' + bsd_pmfiles='BSD_PMFILES = pixmaps.bsd/*.xpm' fi if test "$with_shape" = "yes"; then libs_x="$libs_x -lXext" @@ -3900,6 +3904,8 @@ s%@mimeobj@%$mimeobj%g s%@bmfiles@%$bmfiles%g s%@tora_bmfiles@%$tora_bmfiles%g +s%@bsd_bmfiles@%$bsd_bmfiles%g +s%@bsd_pmfiles@%$bsd_pmfiles%g s%@USE_GNU_MAKE@%$USE_GNU_MAKE%g s%@SHAPE@%$SHAPE%g s%@XPM@%$XPM%g diff -urN oneko-2.0b-sender0.5/configure.in oneko-2.0b-bsd0.2/configure.in --- oneko-2.0b-sender0.5/configure.in Thu May 23 23:29:59 2002 +++ oneko-2.0b-bsd0.2/configure.in Fri May 24 01:34:48 2002 @@ -220,7 +220,7 @@ dnl here because of AC_CHECK_LIB(Xpm) failure on some systems(SunOS4 etc). dnl It seems that the behavior of sed on each system may differs. -if test "$with_xpm" = "yes"; then +if test "$with_xpm" = "yes" -o "$with_xpm" = ""; then AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, with_xpm=yes, AC_HAVE_LIBRARY(-lXpm, with_xpm=yes), $X_LIBS $libs_x) if test "$with_xpm" != "yes"; then @@ -398,9 +398,13 @@ if test "$with_gnu_make" = "yes"; then bmfiles='BMFILES != bitmaps/"*.xbm"' tora_bmfiles='TORA_BMFILES != bitmaps.tora/"*.xbm"' + bsd_bmfiles='BSD_BMFILES != bitmaps.bsd/"*.xbm"' + bsd_pmfiles='BSD_PMFILES != pixmaps.bsd/"*.xpm"' else bmfiles='BMFILES = bitmaps/*.xbm' tora_bmfiles='TORA_BMFILES = bitmaps.tora/*.xbm' + bsd_bmfiles='BSD_BMFILES = bitmaps.bsd/*.xbm' + bsd_pmfiles='BSD_PMFILES = pixmaps.bsd/*.xpm' fi if test "$with_shape" = "yes"; then libs_x="$libs_x -lXext" @@ -412,6 +416,8 @@ fi AC_SUBST(bmfiles) AC_SUBST(tora_bmfiles) +AC_SUBST(bsd_bmfiles) +AC_SUBST(bsd_pmfiles) AC_SUBST(USE_GNU_MAKE) AC_SUBST(SHAPE) AC_SUBST(XPM) diff -urN oneko-2.0b-sender0.5/help oneko-2.0b-bsd0.2/help --- oneko-2.0b-sender0.5/help Thu May 23 23:58:25 2002 +++ oneko-2.0b-bsd0.2/help Fri May 24 00:18:09 2002 @@ -2,6 +2,10 @@ Options are: -display specifies the the display name. +-name specifies the program name. +-neko use neko bitmaps. +-tora use tora bitmaps. +-bsd_daemon use bsd_daemon bitmaps. -bitmapdir specifies the directory name contains bitmap files. -kotatsubitmap specifies a bitmap file name for "kotatsu". -kotatsubitmask specifies a bitmap mask file name for "kotatsu". diff -urN oneko-2.0b-sender0.5/oneko.man oneko-2.0b-bsd0.2/oneko.man --- oneko-2.0b-sender0.5/oneko.man Fri May 24 00:06:12 2002 +++ oneko-2.0b-bsd0.2/oneko.man Fri May 24 00:18:09 2002 @@ -8,6 +8,17 @@ .B -display .I display-name ] [ +.B -name +.I command-name +] [ +.B -neko +] [ +.B -tora +] [ +.B -bsd_daemon +] [ +.B -bsd +] [ .B -bitmapdir .I directory-name ] [ @@ -197,11 +208,39 @@ .BI -display " display" specifies the X display on which the cat should appear. .TP +.BI -name " command-name" +specifies the program name. +The directory which contains animation bitmap files takes +/usr/lib/X11/oneko/ +.IR command-name . +.TP +.BI -neko +Runs a cat. +The directory which contains animation bitmap files takes +/usr/lib/X11/oneko/oneko. +This is default. +.TP +.B -tora +Make cat into "tora-neko". +"Tora-neko" means cat wite tiger-like stripe. +I don't know how to say it in English. +The directory which contains animation bitmap files takes +/usr/lib/X11/oneko/tora. +.TP +.B -bsd_daemon +Runs a 4.3BSD daemon instead of a cat. +The directory which contains animation bitmap files takes +/usr/lib/X11/oneko/bsd. +.TP +.B -bsd +Same as +.BR -bsd_daemon . +.TP .BI -bitmapdir " directory" specifies the directory name which contains animation bitmap files. You can use a set of bitmap patterns that you are designed. It takes /usr/lib/X11/oneko/ -.I Command-name +.I command-name as default value. .TP .BI -kotatsubitmap " bitmapfile" diff -urN oneko-2.0b-sender0.5/oneko.man.jp oneko-2.0b-bsd0.2/oneko.man.jp --- oneko-2.0b-sender0.5/oneko.man.jp Fri May 24 01:56:24 2002 +++ oneko-2.0b-bsd0.2/oneko.man.jp Fri May 24 01:56:24 2002 @@ -8,6 +8,17 @@ .B -display .I display-name ] [ +.B -name +.I command-name +] [ +.B -neko +] [ +.B -tora +] [ +.B -bsd_daemon +] [ +.B -bsd +] [ .B -bitmapdir .I directory-name ] [ @@ -213,10 +224,32 @@ .I oneko $@$rI=<($9$k%G%#%9%W%l%$$r;XDj$7$^$9!#(J .TP +.BI -name " command-name" +$@%W%m%0%i%`$NL>A0$r;XDj$7$^$9!#(J +$@%S%C%H%^%C%W%U%!%$%k$,$"$k%G%#%l%/%H%j$,(J /usr/lib/X11/oneko/ +.I command-name +$@$H$J$j$^$9!#(J +.TP +.B -neko +$@G-$N%S%C%H%^%C%W$r;HMQ$7$^$9!#(J +$@%S%C%H%^%C%W%U%!%$%k$,$"$k%G%#%l%/%H%j$O(J /usr/lib/X11/oneko/oneko $@$G$9!#(J +$@%G%U%)%k%HF0:n$G$9!#(J +.TP +.B -tora +$@%H%iG-$N%S%C%H%^%C%W$r;HMQ$7$^$9!#(J +$@%S%C%H%^%C%W%U%!%$%k$,$"$k%G%#%l%/%H%j$O(J /usr/lib/X11/oneko/tora $@$G$9!#(J +.TP +.B -bsd_daemon +BSD $@%G!<%b%s$N%S%C%H%^%C%W$r;HMQ$7$^$9!#(J +$@%S%C%H%^%C%W%U%!%$%k$,$"$k%G%#%l%/%H%j$O(J /usr/lib/X11/oneko/bsd $@$G$9!#(J +.TP +.B -bsd +.B -bsd_daemon $@$HF1$8$G$9!#(J +.TP .BI -bitmapdir " directory" $@%"%K%a!<%7%g%s$N$?$a$N%S%C%H%^%C%W%U%!%$%k$,$"$k%G%#%l%/%H%j$r;XDj$7$^(J $@$9!#%G%U%)%k%H$G$O(J /usr/lib/X11/oneko/ -.I Command-name +.I command-name $@$N%G%#%l%/%H%j$+$i!"%S%C%H%^%C%W$rC5$7$^$9!#(J .TP .BI -kotatsubitmap " bitmapfile" Binary files oneko-2.0b-sender0.5/oneko2.au and oneko-2.0b-bsd0.2/oneko2.au differ diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/akubi1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/akubi1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/akubi1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/akubi1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .......", +" . ", +" . . ", +" . ", +" ..... . . ", +" . . ", +" . .......", +" ..... ", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" ..XX. ", +" .X.XX.... ", +" ..X.X..XXX.. ", +" .... .X.XX.X.XXXX.. ", +" ....XXXX.. .X.XX.X.XXX..X. ", +".@@.XXXXXXX. .X.XXX.....XXXX.. ", +".@@.XXXXXXXX..XX.XXXXXXXXXXX.X. ", +".@@.XXXXXXXXX.XXXXXXXXXXXXXX.XX.", +".@.XXXXXXXXXXXXXXXXXXXXXXXXX....", +"..+.XXX..XXXXXXXXXXXXXXXXXX.. ", +".++.X..XXXXXXXXXXXXXXXXXXXXX. ", +".+++.XXXXXXXXXXXXXXXXXXXXXXXX. ", +".+++.XXXXXXX...XXXXXXXX.XXXXXX..", +" ....XXXX... .XXXXXXXX..XXXXX.", +" .... .XXXXXXXX...... ", +" ..XXXXX. ", +" ..... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/akubi2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/akubi2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/akubi2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/akubi2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ...... ", +" . ", +" .... .. ", +" . . ", +" . ...... ", +" .... ", +" ", +" .. ", +" ..XX. ", +" .X.XX.... ", +" ..X.X..XXX.. ", +" .X.XX.X.XXXX.. ", +" .. .X.XX.X.XXX..X. ", +".@@. ..... .X.XXX.....XXXX.. ", +".@@..XXXXX.. .XX.XXXXXXXXXXX.X..", +".@@.XXXXXXXX..XXXXXXXXXXXXXX.XX.", +".@.XXXXXXXXXXXXXXXXXXXXXXXXX... ", +"..+.XXX..XXXXXXXXXXXXXXXXXX.. ", +".++.X..XXXXXXXXXXXXXXXXXXXXX. ", +".+++.XXXXXXXXXXXXXXXXXXXXXXXX. .", +".+++.XXXXXXXXXXXXXXXXXX.XXXXXX..", +" ....XXXX......XXXXXXXXX..XXX.. ", +" .... ..XXXXXXXX.... ", +" ..XXXXX.. ", +" ..... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/akubiL.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/akubiL.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/akubiL.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/akubiL.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .......", +" . ", +" . . ", +" . ", +" ..... . . ", +" . . ", +" . .......", +" ..... ", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" ..XX. ", +" .X.XX.... ", +" ..X.X..XXX.. ", +" .... .X.XX.X.XXXX.. ", +" ....XXXX.. .X.XX.X.XXX..X. ", +".@@.XXXXXXX. .X.XXX.....XXXX.. ", +".@@.XXXXXXXX..XX.XXXXXXXXXXX.X. ", +".@@.XXXXXXXXX.XXXXXXXXXXXXXX.XX.", +".@.XXXXXXXXXXXXXXXXXXXXXXXXX....", +"..+.XXX..XXXXXXXXXXXXXXXXXX.. ", +".++.X..XXXXXXXXXXXXXXXXXXXXX. ", +".+++.XXXXXXXXXXXXXXXXXXXXXXXX. ", +".+++.XXXXXXX...XXXXXXXX.XXXXXX..", +" ....XXXX... .XXXXXXXX..XXXXX.", +" .... .XXXXXXXX...... ", +" ..XXXXX. ", +" ..... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/akubiR.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/akubiR.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/akubiR.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/akubiR.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ...... ", +" . ", +" .... .. ", +" . . ", +" . ...... ", +" .... ", +" ", +" .. ", +" ..XX. ", +" .X.XX.... ", +" ..X.X..XXX.. ", +" .X.XX.X.XXXX.. ", +" .. .X.XX.X.XXX..X. ", +".@@. ..... .X.XXX.....XXXX.. ", +".@@..XXXXX.. .XX.XXXXXXXXXXX.X..", +".@@.XXXXXXXX..XXXXXXXXXXXXXX.XX.", +".@.XXXXXXXXXXXXXXXXXXXXXXXXX... ", +"..+.XXX..XXXXXXXXXXXXXXXXXX.. ", +".++.X..XXXXXXXXXXXXXXXXXXXXX. ", +".+++.XXXXXXXXXXXXXXXXXXXXXXXX. .", +".+++.XXXXXXXXXXXXXXXXXX.XXXXXX..", +" ....XXXX......XXXXXXXXX..XXX.. ", +" .... ..XXXXXXXX.... ", +" ..XXXXX.. ", +" ..... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/all2xpm.pl oneko-2.0b-bsd0.2/pixmaps.bsd/all2xpm.pl --- oneko-2.0b-sender0.5/pixmaps.bsd/all2xpm.pl Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/all2xpm.pl Fri May 24 01:14:45 2002 @@ -0,0 +1,49 @@ + +@XPM = (); +while() { + chop; + /\S/o || next; + push( @XPM, split(" ") ); +} +while (<>) { + s/\w+_xpm/XXX_xpm/; + s/"\d+ \d+/\"32 32/; + $head .= $_; + /pixels/ && last; +} +while(<>) { + chop; + s/^\"// || last; + s/\"(,|}\;)$//; + push(@X, $_); +} +$i = 0; +for $xpm (@XPM) { + open(XPM, ">$xpm.xpm"); + $_ = $head; + s/XXX/$xpm/; + print XPM $head; + $j = int($i / 4); + $k = $i % 4; + for (0 .. 31) { + print XPM '"', substr($X[$j * 32 + $_], $k * 32, 32), '"'; + $_ == 31 && last; + print XPM ",\n"; + } + print XPM "};\n"; + $i++; + close(XPM); +} + + +__END__ +up1 up2 down2 down1 +left1 left2 right2 right1 +upleft1 upleft2 upright2 upright1 +dwleft1 dwleft2 dwright2 dwright1 +utogi1 utogi2 dtogi2 dtogi1 +ltogi1 ltogi2 rtogi2 rtogi1 +akubi1 akubi2 akubiL akubiR +sleep1 sleep2 mati1 mati2 +kaki1 kaki2 maneki1 maneki2 +jare2 awake diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/awake.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/awake.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/awake.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/awake.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. . .. ", +" . .X. . .X. . ", +" . .X. .X. . ", +" .XX. .XX. ", +" .XX. ......... .XX. ", +" .XXX.XXXXXXXXX.XXX. ", +" .XXXXX..XXX..XXXXX. ", +" .. .XXXX.oo.X.oo.XXXX. .. ", +" .XXX.ooo.ooo.XXX. ", +" .XX.ooo...ooo.XX. ", +" .X.oo.....oo.X. ", +" .X.oo.....oo.X. ", +" .X.ooo.X.ooo.X. . ", +" . .XXX...XXX...XXX. . ", +" . .XXXXXX...XXXXXX. ", +" .XX.XXXXXXXXX.XX. ", +" . .XX..XXXXX..XX. ", +" ..O. .XXX.....XXX. ", +".O..O. ..XXXXXXX.. ", +"..O.O. ...XXXXXX.. ", +"O..O. .XXXXXXXXXXX. ", +".OO.O. .XXXXXXXXXXXXX. ", +" .. .O..XXXXXXXXXXXXXXX. ", +" ..XXXX.XXXXXXX.XXXX. ", +" ..XX.XXXXXXXXX.XXX. ", +" .XX..XXXXXXXXX..XX. ", +" ....XXXXXXXXX. .. ", +" .XXXXXXXXX. ", +" .......X.X....... . ", +" .@@.++++. .++++.@@.. . ", +" .@@@.+++. .+++.@@@. ..... ", +" ....... ....... . "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/cursor.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/cursor.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/cursor.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/cursor.xpm Fri May 24 00:49:20 2002 @@ -0,0 +1,22 @@ +/* XPM */ +static char * cursor_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"17 12 4 1 13 6", +/* colors */ +" s None c None", +". c yellow", +"X c white", +"o c black", +/* pixels */ +" ......... ", +" ..XXXXXXXXX.. ", +" .XXXXXXXXXXXXX. ", +".XoooXXoooXoooXX.", +".XoXXoXoXXXoXXoX.", +".XoooXXoooXoXXoX.", +".XoXXoXXXoXoXXoX.", +".XoooXXoooXoooXX.", +" .XXXXXXXXXXXXX. ", +" ..XXXXXXXXX.. ", +" ......... ", +" "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/down1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/down1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/down1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/down1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .X. .X. ", +" .XX. .XX. ", +" .XX. ......... .XX. ", +" .XXX.XXXXXXXXX.XXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXX..XXX..XXXXX. ", +" .XXX.oo.X.oo.XXX. ", +" .XXX.ooo.ooo.XXX. ", +" .X.oooo.oooo.X. ", +" .X.oo.....oo.X. ", +" .X.oo.....oo.X. ", +" .X.oo..X..oo.X. ", +" .XXX...XXX...XXX. ", +" .XX.XXX...XXX.XX. ", +" .XX..XXXXX..XX. ", +" .XXX.....XXX. ", +" ..XXXXXXX.. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXX.XXXXXXXXXXX. ", +" .XXX..XXXXXXXXXXX. ", +" .. .....XXXXXXXXX.XX. ", +" .OO.O. .XXXXXXXX.XXX. ", +" .O..O. .XXXXXXXX.XXX. ", +" ..O.O. .XXXXXXX..... ", +" .O..O. ....X...@@@. ", +" ..O. .@@@@. ... ", +" . .@@@@. ", +" .... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/down2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/down2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/down2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/down2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .X. .X. ", +" .XX. .XX. ", +" .XX. ......... .XX. ", +" .XXX.XXXXXXXXX.XXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXX..XXX..XXXXX. ", +" .XXX.oo.X.oo.XXX. ", +" .XXX.ooo.ooo.XXX. ", +" .X.oooo.oooo.X. ", +" .X.oo.....oo.X. ", +" .X.oo.....oo.X. ", +" .X.oo..X..oo.X. ", +" .XXX...XXX...XXX. ", +" .XX.XXX...XXX.XX. ", +" .XX..XXXXX..XX. ", +" .XXX.....XXX. ", +" ..XXXXXXX.. ", +" .XX.XXXXXXXX. ", +" .XX.O..XXXXXXX. ", +" .X.O..O.XXXXXXX. ", +" .XX.O.O..XXX.XXXX. ", +" .XXX.O..O.XX..XXX. ", +" .XX.O.OO.XXXX.... ", +" .XXX.X..XXXXX. ", +" .XXX.XXXXXXXX. ", +" ......XXXXXXX. ", +" .O..@@@...X.... ", +" .O. ... .@@@@. ", +" . .@@@@. ", +" .... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/dtogi1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/dtogi1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/dtogi1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/dtogi1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .X. .X. ", +" .XX. .XX. ", +" .XX. ......... .XX. ", +" .XXX.XXXXXXXXX.XXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXX..XXX..XXXXX. ", +" .XXX.oo.X.oo.XXX. ", +" .XXX.ooo.ooo.XXX. ", +" .X.oooo.oooo.X. ", +" .X.oo.....oo.X. ", +" .X.oo.....oo.X. ", +" .X.oo..X..oo.X. ", +" .XXX...XXX...XXX. ", +" .XX.XXX...XXX.XX. ", +" .XX..XXXXX..XX. ", +" .XXX.....XXX. ", +" ..XXXXXXX.. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXX.XXXXXXXXXXX. ", +" .XXX..XXXXXXXXXXX. ", +" .. .....XXXXXXXXX.XX. ", +" .OO.O. .XXXXXXXX.XXX. ", +" .O..O. .XXXXXXXX.XXX. ", +" ..O.O. .XXXXXXX..... ", +" .O..O. ....X...@@@. ", +" ..O. .@@@@. ... ", +" . .@@@@. ", +" .... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/dtogi2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/dtogi2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/dtogi2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/dtogi2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .X. .X. ", +" .XX. .XX. ", +" .XX. ......... .XX. ", +" .XXX.XXXXXXXXX.XXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXX..XXX..XXXXX. ", +" .XXX.oo.X.oo.XXX. ", +" .XXX.ooo.ooo.XXX. ", +" .X.oooo.oooo.X. ", +" .X.oo.....oo.X. ", +" .X.oo.....oo.X. ", +" .X.oo..X..oo.X. ", +" .XXX...XXX...XXX. ", +" .XX.XXX...XXX.XX. ", +" .XX..XXXXX..XX. ", +" .XXX.....XXX. ", +" ..XXXXXXX.. ", +" .XX.XXXXXXXX. ", +" .XX.O..XXXXXXX. ", +" .X.O..O.XXXXXXX. ", +" .XX.O.O..XXX.XXXX. ", +" .XXX.O..O.XX..XXX. ", +" .XX.O.OO.XXXX.... ", +" .XXX.X..XXXXX. ", +" .XXX.XXXXXXXX. ", +" ......XXXXXXX. ", +" .O..@@@...X.... ", +" .O. ... .@@@@. ", +" . .@@@@. ", +" .... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/dwleft1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/dwleft1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/dwleft1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/dwleft1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .XX. .X. ", +" .XXX....... .XX. ", +" .XXXXXXXXXX.. .XX. ", +" .XX..X..XXXXX..XXX. ", +" ..oo.oo.XXXXXXXXX. ", +" .ooo.ooo.XXXXXXXX. ", +" .oo.oooo.XXXXXXX. ", +" .oo...ooo.XXXXXX. ", +" .o....ooo.XXXXX. ", +" .X.XX..oo.XXXXXX. ", +" . .X.XXX...XXXXXXX. ", +" ..O. .XX...XXXXXXXXX. ", +" .O..O. .XXXXXXX.XXXXX. ", +" ..O.O. .X.....XXXXX. ", +".O..O. .XXXXXXXXX. ", +" .OO.O. ....XXXX. ", +" .. .O. .XXXXXX. ", +" .O. .XXXXXXXX. ", +" .....XXXXXXXXX. ", +" .XX.XXXXXXXXXXX. . ", +" .XX.XXXXXXXXXXXX. . ", +" ...XXXXXXXX.XXXX. .... ", +" .XXXXXXXXX.XXX.. . ", +" .XXXXXXXXX.XX. . ", +" .XXX.XXXXXX.. ", +" .XX....XX. ", +" .X.@@@@.X. ", +" ..@@@@@. ", +" ...... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/dwleft2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/dwleft2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/dwleft2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/dwleft2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .XX. .X. ", +" .XXX....... .XX. ", +" .XXXXXXXXXX.. .XX. ", +" .XX..X..XXXXX..XXX. ", +" ..oo.oo.XXXXXXXXX. ", +" .ooo.ooo.XXXXXXXX. ", +" .oo.oooo.XXXXXXX. ", +" .oo...ooo.XXXXXX. ", +" .o....ooo.XXXXX. ", +" .X.XX..oo.XXXXXX. ", +" .X.XXX...XXXXXXX. ", +" .XX...XXXXXXXXX. ", +" .XXXXXXX.XXXXX. ", +" .X.....XXXXX. ", +" .XXXXXXXXX. ", +" ....XXXX. ", +" .XXXXXX. ... ", +" .XXXXXXXX. .. ", +" .XXXXXXXXXX. . . ", +" .. .XXXXXXX.XXX. . ", +" .OO. ...XXXXX..XXXX. . ", +" ...O..OO.XXXX.XXXXX.... ", +" .OOOOOO...XXXX.XXXX.X.. ", +" ...O.. .XXXXX.XXX.XX. ", +" .OO. .XXXXXX...XXX. ", +" .. ....X..XXX...X. ", +" .@@@.++...@@@.. ", +" .@@@@.. .... ", +" .... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/dwright1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/dwright1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/dwright1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/dwright1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .X. .XX. ", +" .XX. .......XXX. ", +" .XX. ..XXXXXXXXXX. ", +" .XXX..XXXXX..X..XX. ", +" .XXXXXXXXX.oo.oo.. ", +" .XXXXXXXX.ooo.ooo. ", +" .XXXXXXX.oooo.oo. ", +" .XXXXXX.ooo...oo. ", +" .XXXXX.ooo....o. ", +" .XXXXXX.oo..XX.X. ", +" .XXXXXXX...XXX.X. . ", +" .XXXXXXXXX...XX. .O.. ", +" .XXXXX.XXXXXXX. .O..O. ", +" .XXXXX.....X. .O.O.. ", +" .XXXXXXXXX. .O..O.", +" .XXXX.... .O.OO. ", +" .XXXXXX. .O. .. ", +" .XXXXXXXX. .O. ", +" .XXXXXXXXX..... ", +" . .XXXXXXXXXXX.XX. ", +" . .XXXXXXXXXXXX.XX. ", +" .... .XXXX.XXXXXXXX... ", +" . ..XXX.XXXXXXXXX. ", +" . .XX.XXXXXXXXX. ", +" ..XXXXXX.XXX. ", +" ..X....XX. ", +" .+.@@@@.X. ", +" .@@@@@.. ", +" ...... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/dwright2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/dwright2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/dwright2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/dwright2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .X. .XX. ", +" .XX. .......XXX. ", +" .XX. ..XXXXXXXXXX. ", +" .XXX..XXXXX..X..XX. ", +" .XXXXXXXXX.oo.oo.. ", +" .XXXXXXXX.ooo.ooo. ", +" .XXXXXXX.oooo.oo. ", +" .XXXXXX.ooo...oo. ", +" .XXXXX.ooo....o. ", +" .XXXXXX.oo..XX.X. ", +" .XXXXXXX...XXX.X. ", +" .XXXXXXXXX...XX. ", +" .XXXXX.XXXXXXX. ", +" .XXXXX.....X. ", +" .XXXXXXXXX. ", +" .XXXX.... ", +" ... .XXXXXX. ", +" .. .XXXXXXXX. ", +" . . .XXXXXXXXXX. ", +" . .XXX.XXXXXXX. .. ", +" . .XXXX..XXXXX... .OO. ", +" ....XXXXX.XXXX.OO..O... ", +" ..X.XXXX.XXXX...OOOOOO. ", +" .XX.XXX.XXXXX. ..O... ", +" .XXX...XXXXXX. .OO. ", +" .X...XXX..X.... .. ", +" ..@@@...++.@@@. ", +" .... ..@@@@. ", +" .... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/jare2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/jare2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/jare2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/jare2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .XX. .X. ", +" .XXX....... .XX. ", +" .XXXXXXXXXX. .XX. ", +" .XX..X..XXXXX..XXX. ", +" ..oo.oo.XXXXXXXXX. ", +" .ooo.ooo.XXXXXXXX. ", +" .oo.oooo.XXXXXXX. ", +" .oo...ooo.XXXXXX. ", +" .o....ooo.XXXXX. ", +" .X.XX..ooo.XXXXX. ", +" .X.XXX....XXXXXX. ", +" .XX...XXXXXXXXXX. ", +" .XXXXXXX.XXXXX. ", +" .X.....XXXXX. ", +" . .XXXXXXXXX. ", +" ..O. ...XXXXX. ", +" .O..O. .XXXXXX. ", +" ..O.O. .XXXXXXXX. ", +" .O..O. ..XXXXXXXXX. . ", +" .OO.O.XXXXXXXXXXX. ... ", +" .. .X..XXX..XXXX. . . . ", +" .XXX...XXXXX.. . ", +" .....XXXXX.X. . ", +" .XX.XXX.XX.. . ", +" .XX....XXX... . ", +" .....X..X....X.. . ", +" .@@.++.@@.++++. ... ", +" .@@@.+.@@@.+++. ", +" ..... ....... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/kaki1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/kaki1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/kaki1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/kaki1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" ... ... ", +" .XX. .X. ", +" .XX. .XX. ", +" .XX. .XXX. ", +" .XX.......XXXX. ", +" .XXXXXXX.XXXXX. ", +" .X..XXXXXXXXX. ", +" .o.oo.XXXXXXXX. ", +" .o.ooo.XXXXXX.X. ", +" .o.ooo.XXXXXXXX. ", +" ....oo.XXXXXXXX. ", +" .....oo.XXXXXXXX. ", +" .XXX..oo.XXXXXXXX. ", +" . .XXX....XXXXXXXXX. ", +" .%. ...XXXXXXXXXXXX. ", +" .%%%. .XXXXXX.XXXXXXX. ", +" .%%%. ......XXXXXXX. ", +".%%%. . .XXXXXXXXXX. ", +" .%. .O.. ....XXXXX. ", +" . . ..%. .XXXXX. ", +" .O..%%. .XXXXXX. ", +" ..%%%. ..XXXXXXXX. ", +" .%%%. ..X.XX.XXXXX. ", +" ... ..XXX...XXXX.X. ", +" ..XXX.XXXXX.XX. ", +" . ....XXXX.XXX. ", +" . .....XXXX. ", +" . .XXXXXXX.. ", +" . .........X... ", +" . .@.@@.++++. . . ", +" .. .@.@@@.+++. . .. ", +" .. .......... ....."}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/kaki2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/kaki2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/kaki2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/kaki2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" ... ... ", +" .XX. .X. ", +" .XX. .XX. ", +" .XX. .XXX. ", +" .XX.......XXXX. ", +" .XXXXXXX.XXXXX. ", +" .X..XXXXXXXXX. ", +" .o.oo.XXXXXXXX. ", +" .o.ooo.XXXXXX.X. ", +" .o.ooo.XXXXXXXX. ", +" ....oo.XXXXXXXX. ", +" .....oo.XXXXXXXX. ", +" .XXX..oo.XXXXXXXX. ", +" . .XXX....XXXXXXXXX. ", +" .%. ...XXXXXXXXXXXX. ", +" .%%%. .XXXXXX.XXXXXXX. ", +" .%%%.%. ......XXXXXXX. ", +".%%%.%%. .XXXXXXXXXX. ", +" .%.%%%. ....XXXXX. ", +" .%%%. .. .XXXXX. ", +" ... . .XX....XXXXXX. ", +" ..XXXX.XXXXXXXX. ", +" ..XXXX.XX.XXX.X. ", +" . ..XX...XXXX.X. ", +" . ...XXXXXX.X. ", +" . .XXXXX.XX. ", +" . ......XXX. ", +" . .XXXXXXX.. ", +" . .........X... ", +" . .@.@@.++++. . . ", +" . .@.@@@.+++. . .. ", +" . .......... ....."}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/kotatsu.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/kotatsu.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/kotatsu.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/kotatsu.xpm Fri May 24 01:05:09 2002 @@ -0,0 +1,76 @@ +/* XPM */ +static char * kotatsu_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"64 64 6 1 18 3", +/* colors */ +" s None c None", +". c black", +"X c #aa6600", +"o c #885500", +"O c #ee5500", +"+ c #44aa00", +/* pixels */ +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" .... ", +" ...XXXX... ", +" ...XXXXXXXXXX... ", +" ...XXXXXXXXXXXXXXXX... ", +" ..XXXXXXXXXXXXXXXXXXXXXX... ", +" ...XXXXXXXXXXXXXXXXXXXXXXXXXXX... ", +" ...XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX... ", +" ..XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.. ", +" .o..XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX... ", +" ..ooo..XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX..oo.. ", +" ....oooo...XXXXXXXXXXXXXXXXXXXXXXXXXX...ooo.... ", +" ........oooo...XXXXXXXXXXXXXXXXXXXXX..oooo..OO.. ", +" .+..OO..+..ooooo...XXXXXXXXXXXXXXX...ooo....OO.... ", +" +..OO..++.....ooooo..XXXXXXXXXX...oooo..+..OO..++. ", +" ...OO..++..OO.....oooo...XXXXX..oooo...++..OO..++.. ", +" ..OO..++..OO..++.....oooo.....oooo....++..OO..++.... ", +" ..OO..++..OO..++..OO....oooooooo...O..++..OO..++..OO. ", +" .OO..++..OO..++..OO..+.....ooo...OO..++..OO..++..OO... ", +" .O..++..OO..++..OO..++..OO......OO..++..OO..++..OO..+. ", +" .O..++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++.. ", +" ...++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++... ", +" ...++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++..O.. ", +" ..++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++..OO... ", +" ..++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..+. ", +" ..++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++.. ", +" ..+..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++... ", +" ...OO..++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..++... ", +" ....++..OO..++..OO..++..OO..++..OO..++..OO..++..OO..+.... ", +" .....OO..++..OO..++..OO..++..OO..++..OO..++..OO..... ", +" ..OO..++..OO..++..OO..++..OO..++..OO..++..OO.... ", +" ....++..OO..++..OO..++..OO..++..OO..++..OO... ", +" .++..OO..++..OO..++..OO..++..OO..++..OO.. ", +" .....O..++..OO..++..OO..++..OO..++...... ", +" .......OO..++..OO..++..OO..++... ", +" .OO..++..OO..++..OO..+... ", +" ...++..OO..++..OO..... ", +" ....OO..++..OO... ", +" .....++..OO... ", +" ..+..OO.. ", +" ...O.. ", +" .... ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/left1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/left1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/left1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/left1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .XX. .XX. ", +" ......XXX. ", +" .XXXX.XXXX. ", +" .XXXXXXXXXX. ", +" ...XXXXXXXX.. ", +" .o.XXXXXXXX.X. ", +" .ooo.XXXXXX.XXX. ", +" .ooo.XXXXXXXXXX. ", +" ...o.XXXXXXXXXX. ", +" ....o.XXXXXXXXXX. ", +" .XX..o.XXXXXXXXXX. ", +" .XXX..XXXXXXXXXX. ", +" ...XXXXXXXXXXXX. ", +" . .XXXXX.XXXXXXX. ", +" ..O. .....XXXXXXX. ", +".O..O. .XXXXXXXXX. ", +"..O.O. .....XXXX. ", +"O..O. .XXXX. ", +".OO.O. .XXXXXX. ", +" .. .O. ....XXXXXXX. ", +" .O.XXX.XXXXXXX. ", +" ..XX.XXXX.XXXX. ", +" .XX.XXXX.XXXX. ", +" ...XXXXX.XXX. ", +" .XXXXX.XXX.. ", +" .XXXXXX.XX..... . ", +" ........XXX....X.... . ", +" .@@.+++++....+++. .......", +" .@@@.++++..@@.++. . ", +" ........ ..... . "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/left2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/left2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/left2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/left2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" ... ... ", +" .XX. .X. ", +" .XX. .XX. ", +" .XX. .XXX. ", +" .XX.......XXXX. ", +" .XXXXXXX.XXXXX. ", +" .X..XXXXXXXXX. ", +" .o.oo.XXXXXXXX. ", +" .o.ooo.XXXXXX.X. ", +" .o.ooo.XXXXXXXX. ", +" ....oo.XXXXXXXX. ", +" .....oo.XXXXXXXX. ", +" .XXX..oo.XXXXXXXX. ", +" .XXX....XXXXXXXXX. ", +" ...XXXXXXXXXXXX. ", +" .XXXXXX.XXXXXXX. ", +" ......XXXXXXX. ", +" .XXXXXXXXXX. ", +" ....XXXXX. ", +" .XXXXX. ", +" .XXXXXX. ... ", +" .. .XXXXXXX. .. ", +" .OO. .XXXXXXXX. . . ", +" ...O.....XX.XXXXX. . ", +" .OOOOOOOO...XXXXXXX. .. ", +" ...O....XXXXXXX.XX..... ", +" .OO. .XXXXXX.XXX.... ", +" .. .....XX...XXXXX. ", +" .@@.++..XXXX..... ", +" .@@@.+++....++++. ", +" ........@@@.++. ", +" ...... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/ltogi1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/ltogi1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/ltogi1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/ltogi1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .XX. .XX. ", +" ......XXX. ", +" .XXXX.XXXX. ", +" .XXXXXXXXXX. ", +" ...XXXXXXXX.. ", +" .o.XXXXXXXX.X. ", +" .ooo.XXXXXX.XXX. ", +" .ooo.XXXXXXXXXX. ", +" ...o.XXXXXXXXXX. ", +" ....o.XXXXXXXXXX. ", +" .XX..o.XXXXXXXXXX. ", +" .XXX..XXXXXXXXXX. ", +" ...XXXXXXXXXXXX. ", +" . .XXXXX.XXXXXXX. ", +" ..O. .....XXXXXXX. ", +".O..O. .XXXXXXXXX. ", +"..O.O. .....XXXX. ", +"O..O. .XXXX. ", +".OO.O. .XXXXXX. ", +" .. .O. ....XXXXXXX. ", +" .O.XXX.XXXXXXX. ", +" ..XX.XXXX.XXXX. ", +" .XX.XXXX.XXXX. ", +" ...XXXXX.XXX. ", +" .XXXXX.XXX.. ", +" .XXXXXX.XX..... . ", +" ...X.....XX....X.... . ", +" .@@@.+++++...+++. .......", +" .@@@@.+++..@@.++. . ", +" ........ ..... . "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/ltogi2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/ltogi2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/ltogi2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/ltogi2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" ... ... ", +" .XX. .X. ", +" .XX. .XX. ", +" .XX. .XXX. ", +" .XX.......XXXX. ", +" .XXXXXXX.XXXXX. ", +" .X..XXXXXXXXX. ", +" .o.oo.XXXXXXXX. ", +" .o.ooo.XXXXXX.X. ", +" .o.ooo.XXXXXXXX. ", +" ....oo.XXXXXXXX. ", +" .....oo.XXXXXXXX. ", +" .XXX..oo.XXXXXXXX. ", +" .XXX....XXXXXXXXX. ", +" ...XXXXXXXXXXXX. ", +" .XXXXXX.XXXXXXX. ", +" ......XXXXXXX. ", +" .XXXXXXXXXX. ", +" ....XXXXX. ", +" .XXXXX. ", +" .XXXXXX. ... ", +" .. .XXXXXXX. .. ", +" .OO. .XXXXXXXX. . . ", +" ...O... .XX.XXXXX. . ", +" .OOOOOOO....XXXXXXX. .. ", +" ...O....XXXXXXX.XX..... ", +" .OO. .XXXXXX.XXX.... ", +" .. .....XX...XXXXX. ", +" .@@.++..XXXX..... ", +" .@@@.+++....++++. ", +" ........@@@.++. ", +" ...... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/maneki1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/maneki1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/maneki1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/maneki1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .XX. .X. ", +" .XXX....... .XX. ", +" .XXXXXXXXXX. .XX. ", +" .XX..X..XXXXX..XXX. ", +" ..oo.oo.XXXXXXXXX. ", +" .ooo.ooo.XXXXXXXX. ", +" .oo.oooo.XXXXXXX. ", +" .oo...ooo.XXXXXX. ", +" .o....ooo.XXXXX. ", +" .X.XX..ooo.XXXXX. ", +" .X.XXX....XXXXXX. ", +" .XX...XXXXXXXXXX. ", +" .XXXXXXX.XXXXX. ", +" .X.....XXXXX. ", +" . .XXXXXXXXX. ", +" ..O. ...XXXXX. ", +" .O..O. .XXXXXX. ", +" ..O.O. .XXXXXXXX. ", +" .O..O. ..XXXXXXXXX. . ", +" .OO.O.XXXXXXXXXXX. ... ", +" .. .X..XXX..XXXX. . . . ", +" .XXX...XXXXX.. . ", +" .....XXXXX.X. . ", +" .XX.XXX.XX.. . ", +" .XX....XXX... . ", +" ..X..X..X....X.. . ", +" .@@.++.@@.++++. ... ", +" .@@@.+.@@@.+++. ", +" ..... ....... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/maneki2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/maneki2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/maneki2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/maneki2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .XX. .X. ", +" .XXX....... .XX. ", +" .XXXXXXXXXX. .XX. ", +" .XX..X..XXXXX..XXX. ", +" ..oo.oo.XXXXXXXXX. ", +" .ooo.ooo.XXXXXXXX. ", +" .oo.oooo.XXXXXXX. ", +" .oo...ooo.XXXXXX. ", +" .o....ooo.XXXXX. ", +" .X.XX..ooo.XXXXX. ", +" .X.XXX....XXXXXX. ", +" .XX...XXXXXXXXXX. ", +" .XXXXXXX.XXXXX. ", +" .X.....XXXXX. ", +" . .XXXXXXXXX. ", +" ..O. ...XXXXX. ", +" .O..O. .XXXXXX. ", +" ..O.O. .XXXXXXXX. ", +" .O..O. ..XXXXXXXXX. . ", +" .OO.O.XXXXXXXXXXX. ... ", +" .. .X..XXX..XXXX. . . . ", +" .XXX...XXXXX.. . ", +" .....XXXXX.X. . ", +" .XX.XXX.XX.. . ", +" .XX....XXX... . ", +" ..X..X..X....X.. . ", +" .@@.++.@@.++++. ... ", +" .@@@.+.@@@.+++. ", +" ..... ....... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/mati1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/mati1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/mati1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/mati1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .XX. .X. ", +" .XXX....... .XX. ", +" .XXXXXXXXXX. .XX. ", +" .XX..X..XXXXX..XXX. ", +" ..oo.oo.XXXXXXXXX. ", +" .ooo.ooo.XXXXXXXX. ", +" .oo.oooo.XXXXXXX. ", +" .oo...ooo.XXXXXX. ", +" .o....ooo.XXXXX. ", +" .X.XX..ooo.XXXXX. ", +" . .X.XXX....XXXXXX. ", +" ..O. .XX...XXXXXXXXXX. ", +" .O..O. .XXXXXXX.XXXXX. ", +" ..O.O. .X.....XXXXX. ", +".O..O. .XXXXXXXXX. ", +" .OO.O. ...XXXXX. ", +" .. .O... .XXXXXX. ", +" ..XX. .XXXXXXXX. ", +" .XXXX....XX.XXX. ", +" .XXX.XXXX..XXXX. ", +" ....XXXXXXXXXX. ", +" ..XXXXXXXXX. ", +" .X.......XX. ", +" .XXXXXXXXX. ", +" .XXXXXXXXX.. ...", +" ..X..X..X..... ..", +" .@@.++.@@.++++.. . .", +" .@@@.+.@@@.+++. . . ", +" ..... ....... ... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/mati2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/mati2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/mati2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/mati2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" . .. ", +" . .. ... ", +" . .X. .X. ", +". . .XXX....... .XX. ", +" . . .XXXXXXXXXX..XXXX. ", +" . . .XXXXXXXXXXXXXXXX. ", +". . ..XXXXXXXXXXXXXX. ", +". . .XX.XXXX...XXXXX. ", +" . . .X...XX.XXXXXXX. ", +" . .X.XXX.XXXXXXXXX. ", +" .X........XXXXXX. ", +" ...#####.#.XXXXX. ", +" .##########.XXXX. ", +" .#########.XXX. ", +" .#....###.XXX. ", +" ..$$$$.#.XXX. ", +" ...X.$$$$$.XXX. ... ", +" .XXX.X.....XXXX...XXX. ", +" .XXXXXXXXXXXXXXXXXXXX. ", +" ..XXXXXXXXXXXXXXXXXXX. ", +" .O...XXXXXXXXXXXXXXX.. ", +" .O. .XXXXXXXXXXXXX. ", +" .O. .XXXXXXXXXXXX. ", +" .O. .XXXXXXXXXXX. ", +" . .XXXXXXXXXXX. ", +" .XXXXXXXXXXX.. ", +" .XXXXXXXXXXX... ", +" .XXXXXXXXXXX. .. ", +" ...X...X..X.. .. . ", +" .@@.+. .@@.+. ....", +" .@@@. .@@@. ...", +" ... ... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/right1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/right1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/right1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/right1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .XX. .XX. ", +" .XXX...... ", +" .XXXX.XXXX. ", +" .XXXXXXXXXX. ", +" ..XXXXXXXX... ", +" .X.XXXXXXXX.o. ", +" .XXX.XXXXXX.ooo. ", +" .XXXXXXXXXX.ooo. ", +" .XXXXXXXXXX.o... ", +" .XXXXXXXXXX.o.... ", +" .XXXXXXXXXX.o..XX. ", +" .XXXXXXXXXX..XXX. ", +" .XXXXXXXXXXXX... ", +" .XXXXXXX.XXXXX. . ", +" .XXXXXXX..... .O.. ", +" .XXXXXXXXX. .O..O.", +" .XXXX..... .O.O..", +" .XXXX. .O..O", +" .XXXXXX. .O.OO.", +" .XXXXXXX.... .O. .. ", +" .XXXXXXX.XXX.O. ", +" .XXXX.XXXX.XX.. ", +" .XXXX.XXXX.XX. ", +" .XXX.XXXXX... ", +" ..XXX.XXXXX. ", +" . .....XX.XXXXXX. ", +" . ....X....XX......... ", +"....... .+++....+++++.@@. ", +" . .++.@@..++++.@@@. ", +" . ..... ........ "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/right2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/right2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/right2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/right2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" ... ... ", +" .X. .XX. ", +" .XX. .XX. ", +" .XXX. .XX. ", +" .XXXX.......XX. ", +" .XXXXX.XXXXXXX. ", +" .XXXXXXXXX..X. ", +" .XXXXXXXX.oo.o. ", +" .X.XXXXXX.ooo.o. ", +" .XXXXXXXX.ooo.o. ", +" .XXXXXXXX.oo.... ", +" .XXXXXXXX.oo..... ", +" .XXXXXXXX.oo..XXX. ", +" .XXXXXXXXX....XXX. ", +" .XXXXXXXXXXXX... ", +" .XXXXXXX.XXXXXX. ", +" .XXXXXXX...... ", +" .XXXXXXXXXX. ", +" .XXXXX.... ", +" .XXXXX. ", +" ... .XXXXXX. ", +" .. .XXXXXXX. .. ", +" . . .XXXXXXXX. .OO. ", +" . .XXXXX.XX.....O... ", +" .. .XXXXXXX...OOOOOOOO. ", +" .....XX.XXXXXXX....O... ", +" ....XXX.XXXXXX. .OO. ", +" .XXXXX...XX..... .. ", +" .....XXXX..++.@@. ", +" .++++....+++.@@@. ", +" .++.@@@........ ", +" ...... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/rtogi1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/rtogi1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/rtogi1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/rtogi1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .XX. .XX. ", +" .XXX...... ", +" .XXXX.XXXX. ", +" .XXXXXXXXXX. ", +" ..XXXXXXXX... ", +" .X.XXXXXXXX.o. ", +" .XXX.XXXXXX.ooo. ", +" .XXXXXXXXXX.ooo. ", +" .XXXXXXXXXX.o... ", +" .XXXXXXXXXX.o.... ", +" .XXXXXXXXXX.o..XX. ", +" .XXXXXXXXXX..XXX. ", +" .XXXXXXXXXXXX... ", +" .XXXXXXX.XXXXX. . ", +" .XXXXXXX..... .O.. ", +" .XXXXXXXXX. .O..O.", +" .XXXX..... .O.O..", +" .XXXX. .O..O", +" .XXXXXX. .O.OO.", +" .XXXXXXX.... .O. .. ", +" .XXXXXXX.XXX.O. ", +" .XXXX.XXXX.XX.. ", +" .XXXX.XXXX.XX. ", +" .XXX.XXXXX... ", +" ..XXX.XXXXX. ", +" . .....XX.XXXXXX. ", +" . ....X....XX.....X... ", +"....... .+++...+++++.@@@. ", +" . .++.@@..+++.@@@@. ", +" . ..... ........ "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/rtogi2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/rtogi2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/rtogi2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/rtogi2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" ... ... ", +" .X. .XX. ", +" .XX. .XX. ", +" .XXX. .XX. ", +" .XXXX.......XX. ", +" .XXXXX.XXXXXXX. ", +" .XXXXXXXXX..X. ", +" .XXXXXXXX.oo.o. ", +" .X.XXXXXX.ooo.o. ", +" .XXXXXXXX.ooo.o. ", +" .XXXXXXXX.oo.... ", +" .XXXXXXXX.oo..... ", +" .XXXXXXXX.oo..XXX. ", +" .XXXXXXXXX....XXX. ", +" .XXXXXXXXXXXX... ", +" .XXXXXXX.XXXXXX. ", +" .XXXXXXX...... ", +" .XXXXXXXXXX. ", +" .XXXXX.... ", +" .XXXXX. ", +" ... .XXXXXX. ", +" .. .XXXXXXX. .. ", +" . . .XXXXXXXX. .OO. ", +" . .XXXXX.XX. ...O... ", +" .. .XXXXXXX....OOOOOOO. ", +" .....XX.XXXXXXX....O... ", +" ....XXX.XXXXXX. .OO. ", +" .XXXXX...XX..... .. ", +" .....XXXX..++.@@. ", +" .++++....+++.@@@. ", +" .++.@@@........ ", +" ...... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/sleep1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/sleep1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/sleep1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/sleep1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .......", +" . ", +" . . ", +" . ", +" ..... . . ", +" . . ", +" . .......", +" ..... ", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" ..XX. ", +" .X.XX.... ", +" ..X.X..XXX.. ", +" .... .X.XX.X.XXXX.. ", +" ....XXXX.. .X.XX.X.XXX..X. ", +".@@.XXXXXXX. .X.XXX.....XXXX.. ", +".@@.XXXXXXXX..XX.XXXXXXXXXXX.X. ", +".@@.XXXXXXXXX.XXXXXXXXXXXXXX.XX.", +".@.XXXXXXXXXXXXXXXXXXXXXXXXX....", +"..+.XXX..XXXXXXXXXXXXXXXXXX.. ", +".++.X..XXXXXXXXXXXXXXXXXXXXX. ", +".+++.XXXXXXXXXXXXXXXXXXXXXXXX. ", +".+++.XXXXXXX...XXXXXXXX.XXXXXX..", +" ....XXXX... .XXXXXXXX..XXXXX.", +" .... .XXXXXXXX...... ", +" ..XXXXX. ", +" ..... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/sleep2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/sleep2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/sleep2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/sleep2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ...... ", +" . ", +" .... .. ", +" . . ", +" . ...... ", +" .... ", +" ", +" .. ", +" ..XX. ", +" .X.XX.... ", +" ..X.X..XXX.. ", +" .X.XX.X.XXXX.. ", +" .. .X.XX.X.XXX..X. ", +".@@. ..... .X.XXX.....XXXX.. ", +".@@..XXXXX.. .XX.XXXXXXXXXXX.X..", +".@@.XXXXXXXX..XXXXXXXXXXXXXX.XX.", +".@.XXXXXXXXXXXXXXXXXXXXXXXXX... ", +"..+.XXX..XXXXXXXXXXXXXXXXXX.. ", +".++.X..XXXXXXXXXXXXXXXXXXXXX. ", +".+++.XXXXXXXXXXXXXXXXXXXXXXXX. .", +".+++.XXXXXXXXXXXXXXXXXX.XXXXXX..", +" ....XXXX......XXXXXXXXX..XXX.. ", +" .... ..XXXXXXXX.... ", +" ..XXXXX.. ", +" ..... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/up1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/up1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/up1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/up1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .X. .X. ", +" .XX. .XX. ", +" .XX. ......... .XX. ", +" .XXX.XXXXXXXXX.XXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXX. ", +" ..XXXXXXX.. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXX.X.. ", +" .XXXXXXXXXXXXX..O. ", +" .XX.XXXXXXXXXX. .O. ", +" ...XXXXXXXXXX. .O. ", +" ....X.XXXXX. . ", +" .+++..X..... ", +" ......+++++. ", +" . .+++++. ", +" . ..... ", +" . . ", +" .. ", +" ... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/up2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/up2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/up2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/up2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .X. .X. ", +" .XX. .XX. ", +" .XX. ......... .XX. ", +" .XXX.XXXXXXXXX.XXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXX. ", +" ..XXXXXXX.. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXXXX.O. ", +" .XXXXXXXXXXX.O. ", +" .X.XXXXXXXXX.OX. ", +" .XXXXXXXXXXX.X. ", +" .XXXXXXXXXX.XX. ", +" .XXXXXXXXXX... ", +" .XXXXX.X.... ", +" .....X..+++. ", +" .+++++....... ", +" .+++++. . ", +" ..... . ", +" . . ", +" .. ", +" ... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/upleft1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/upleft1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/upleft1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/upleft1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .X. .XX. ", +" .XX. .......XXX. ", +" .XX. ..XXXXXXX.XX. ", +" .XXX..XXXXXXXXX.XX. ", +" .XXXXXXXXXXXXXXX.. ", +" .XXXXXXXXXXXXXXX.. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXX. ", +" .XXXXXXXXXX. ", +" . ..XXXXXXX. ", +" ..O. .XXXXXX. ", +" .O..O. .XXXXXXXX.. ", +" ..O.O. .XXXXXXXXX.X. ", +" .O..O. .XXXXXXXXXX.XX. ", +" .OO.O..XXXXXXXXXXXX.X. ", +" .. ..XXXX.XXXXXXXX.. ", +" .XXX.XXXXXXXXX. . ", +" .X.XXXXXXXXXX. . ", +" ..XXXXXXXX.X. ....", +" .XXXXXXX... .... . ", +" .X......+.... . ", +" .+++++.. ", +" ..... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/upleft2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/upleft2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/upleft2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/upleft2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .X. .XX. ", +" .XX. .......XXX. ", +" .XX. ..XXXXXXX.XX. ", +" .XXX..XXXXXXXXX.XX. ", +" .XXXXXXXXXXXXXXX.. ", +" .XXXXXXXXXXXXXXX.. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXX. ", +" .XXXXXXXXXX. ", +" ..XXXXXXX. ", +" .XXXXXX. ", +" .XXXXXXXX. ", +" .XXXXXXXXX. ", +" .. .XXXXXXXXX. ", +" .OO. .XXX.XXXXXX. ", +" ...O...XXX.XXXXXX. ", +" .OOOOOO.XX...XXXXX. ", +" ...O...XXX.XXXXXX. ", +" .OO. .X...XXXX.XXX. ", +" .. .@.+++.XXX..X.. ... ", +" .++++....++.+. .. ", +" .... .+++. . . ", +" ... ..... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/upright1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/upright1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/upright1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/upright1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .XX. .X. ", +" .XXX....... .XX. ", +" .XX.XXXXXXX.. .XX. ", +" .XX.XXXXXXXXX..XXX. ", +" ..XXXXXXXXXXXXXXX. ", +" ..XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXX. ", +" .XXXXXXXXXX. ", +" .XXXXXXX.. . ", +" .XXXXXX. .O.. ", +" ..XXXXXXXX. .O..O. ", +" .X.XXXXXXXXX. .O.O.. ", +" .XX.XXXXXXXXXX. .O..O. ", +" .X.XXXXXXXXXXXX..O.OO. ", +" ..XXXXXXXX.XXXX.. .. ", +" . .XXXXXXXXX.XXX. ", +" . .XXXXXXXXXX.X. ", +".... .X.XXXXXXXX.. ", +" . .... ...XXXXXXX. ", +" . ....+......X. ", +" ..+++++. ", +" ..... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/upright2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/upright2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/upright2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/upright2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. ", +" .. .. ", +" .X. .X. ", +" .XX. .X. ", +" .XXX....... .XX. ", +" .XX.XXXXXXX.. .XX. ", +" .XX.XXXXXXXXX..XXX. ", +" ..XXXXXXXXXXXXXXX. ", +" ..XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXX. ", +" .XXXXXXXXXX. ", +" .XXXXXXX.. ", +" .XXXXXX. ", +" .XXXXXXXX. ", +" .XXXXXXXXX. ", +" .XXXXXXXXX. .. ", +" .XXXXXX.XXX. .OO. ", +" .XXXXXX.XXX...O... ", +" .XXXXX...XX.OOOOOO. ", +" .XXXXXX.XXX...O... ", +" .XXX.XXXX...X. .OO. ", +" ... ..X..XXX.+++.@. .. ", +" .. .+.++....++++. ", +" . . .+++. .... ", +" ..... ... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/utogi1.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/utogi1.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/utogi1.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/utogi1.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .X. .X. ", +" .XX. .XX. ", +" .XX. ......... .XX. ", +" .XXX.XXXXXXXXX.XXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXX. ", +" ..XXXXXXX.. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXX.X.. ", +" .XXXXXXXXXXXXX..O. ", +" .XX.XXXXXXXXXX. .O. ", +" ...XXXXXXXXXX. .O. ", +" ....X.XXXXX. . ", +" .+++..X..... ", +" ......+++++. ", +" . .+++++. ", +" . ..... ", +" . . ", +" .. ", +" ... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/utogi2.xpm oneko-2.0b-bsd0.2/pixmaps.bsd/utogi2.xpm --- oneko-2.0b-sender0.5/pixmaps.bsd/utogi2.xpm Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/utogi2.xpm Fri May 24 01:24:10 2002 @@ -0,0 +1,48 @@ +/* XPM */ +static char * XXX_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +"32 32 10 1 0 11", +/* colors */ +" s None c None", +". c black", +"X c #CCCC33332222", +"o c #FFFFFFFFAAAA", +"O c yellow", +"+ c #3333AAAA4444", +"@ c white", +"# c #888844443333", +"$ c pink", +"% c #88886666CCCC", +/* pixels */ +" .. .. ", +" .X. .X. ", +" .X. .X. ", +" .XX. .XX. ", +" .XX. ......... .XX. ", +" .XXX.XXXXXXXXX.XXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXXXX. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXX. ", +" ..XXXXXXX.. ", +" .XXXXXXXXXXX. ", +" .XXXXXXXXXXX.O. ", +" .XXXXXXXXXXX.O. ", +" .X.XXXXXXXXX.O.. ", +" .XXXXXXXXXX..X. ", +" .XXXXXXXXXX.XX. ", +" .XXXXXXXXXX... ", +" .XXXXX.X.... ", +" .....X..+++. ", +" .+++++....... ", +" .+++++. . ", +" ..... . ", +" . . ", +" .. ", +" ... "}; diff -urN oneko-2.0b-sender0.5/pixmaps.bsd/xpm2all.pl oneko-2.0b-bsd0.2/pixmaps.bsd/xpm2all.pl --- oneko-2.0b-sender0.5/pixmaps.bsd/xpm2all.pl Thu Jan 1 09:00:00 1970 +++ oneko-2.0b-bsd0.2/pixmaps.bsd/xpm2all.pl Fri May 24 01:15:14 2002 @@ -0,0 +1,88 @@ + +@XPM = (); +$NY = 0; +while() { + chop; + /\S/o || next; + push( @XPM, $_ ); + $NY++; +} +@xs = split( " ", $XPM[0] ); +$NX = @xs; +print <<'EOF'; +/* XPM */ +static char *all_xpm[] = { +/* width height num_colors chars_per_pixel x_hot y_hot */ +EOF +$l = 0; +open( XPM, "mati2.xpm" ); +while() { + /^\s*"/o || next; + if ( $l == 0 ) { + s/[",]//go; + ( $width, $height, $color, $pixel, $x_hot, $y_hot ) = split( " " ); + $width *= $NX; + $height *= $NY; + print <<"EOF" +"$width $height $color $pixel $x_hot $y_hot", +/* colors */ +EOF + } elsif ( $l <= $color ) { + print; + } else { + print <<"EOF"; +/* pixels */ +EOF + last; + } + $l++; +} +close( XPM ); +$FH = 'AAA'; +while( @XPM ) { +# print STDERR "$XPM[0]\n"; + @FHS = (); + foreach $xpm ( split( " ", shift( @XPM ) ) ) { + open( $FH, "$xpm.xpm" ); + push( @FHS, $FH ); + $l = 0; + while(<$FH>) { + /^\s*"/o || next; + last if ( $l++ == $color ); + } + $FH++; + } +# print STDERR "@FHS\n"; +XPM: while(1) { + print "\""; + foreach $FH ( @FHS ) { + $_ = <$FH>; + while( ! /^\s*"/o ) { $_ = <$FH> }; + chop; + s/[",};]//go; + print; + } + eof( $FHS[0] ) && last XPM; + print "\",\n"; + next; + } + if ( @XPM ) { + print "\",\n"; + } else { + print "\"};\n"; + } +} + + + +__END__ +up1 up2 down2 down1 +left1 left2 right2 right1 +upleft1 upleft2 upright2 upright1 +dwleft1 dwleft2 dwright2 dwright1 +utogi1 utogi2 dtogi2 dtogi1 +ltogi1 ltogi2 rtogi2 rtogi1 +akubi1 akubi2 akubiL akubiR +sleep1 sleep2 mati1 mati2 +kaki1 kaki2 maneki1 maneki2 +jare2 awake awake awake diff -urN oneko-2.0b-sender0.5/resource.c oneko-2.0b-bsd0.2/resource.c --- oneko-2.0b-sender0.5/resource.c Thu May 23 23:58:50 2002 +++ oneko-2.0b-bsd0.2/resource.c Fri May 24 00:21:54 2002 @@ -115,9 +115,16 @@ static char *DisplayName; +static XrmOptionDescRec resoureNameRec[] = { + {"-name", ".name", XrmoptionSepArg, (caddr_t) NULL}, + {"-neko", ".name", XrmoptionNoArg, (caddr_t) "oneko"}, + {"-tora", ".name", XrmoptionNoArg, (caddr_t) "tora"}, + {"-bsd", ".name", XrmoptionNoArg, (caddr_t) "bsd"}, + {"-bsd_daemon", ".name", XrmoptionNoArg, (caddr_t) "bsd"}, +}; + static XrmOptionDescRec optionRec[] = { {"-display", ".display", XrmoptionSepArg, (caddr_t) NULL}, - {"-name", ".name", XrmoptionSepArg, (caddr_t) NULL}, {"-bitmapdir", ".bitmapdir", XrmoptionSepArg, (caddr_t) NULL}, #ifdef XPM {"-pixmapdir", ".pixmapdir", XrmoptionSepArg, (caddr_t) NULL}, @@ -283,6 +290,7 @@ #endif }; +#define resoureNameNum (sizeof resoureNameRec / sizeof resoureNameRec[0]) #define optionNum (sizeof optionRec / sizeof optionRec[0]) typedef enum { @@ -307,7 +315,9 @@ static resvalue resourceValuses[] = { {"display", "Display", type_string, NULL, (caddr_t *) &DisplayName}, +/* {"name", "Name", type_string, NULL, (caddr_t *) &ResourceName}, +*/ {"bitmapdir", "Bitmapdir", type_string, NULL, (caddr_t *) &BitmapDir}, #ifdef XPM {"pixmapdir", "Pixmapdir", type_string, NULL, (caddr_t *) &PixmapDir}, @@ -442,7 +452,7 @@ {"kotatsu.init", "Kotatsu.Init", type_bool, "off", (caddr_t *) &KotatsuInit}, #ifdef SENDER {"sender.action", "Sender.Action", type_bool, "off", (caddr_t *) &SenderAction}, - {"sender.multi", "Sender.Multi", type_bool, "on", (caddr_t *) &MultiSender}, + {"sender.multi", "Ssender.Multi", type_bool, "on", (caddr_t *) &MultiSender}, {"sender.geometry", "Sender.Geometry", type_string, SENDER_GEOMETRY, (caddr_t *) &Senders[0].geometry}, {"sender.direction", "Sender.Direction", type_strcase, SENDER_DIRECTION, @@ -628,7 +638,8 @@ char fullclass[1024]; int len = 0; - (void) sprintf(fullname, "%s.%s", ProgramName, name); + (void) sprintf(fullname, "%s.%s", ResourceName? ResourceName: ProgramName, + name); (void) sprintf(fullclass, "%s.%s", ClassName, class); if (XrmGetResource(database, fullname, fullclass, &type, &value)) { string = value.addr; @@ -749,8 +760,11 @@ applicationDB = getAppDefaults(env ? env : LIBDIR, "app-defaults", ClassName); - XrmParseCommand(&cmdlineDB, optionRec, optionNum, ProgramName, + XrmParseCommand(&RDB, resoureNameRec, resoureNameNum, ProgramName, &argc, argv); + GetValue(RDB, "name", "Name", type_string, NULL, &ResourceName); + XrmParseCommand(&cmdlineDB, optionRec, optionNum, + ResourceName ? ResourceName : ProgramName, &argc, argv); (void) XrmMergeDatabases(applicationDB, &RDB); (void) XrmMergeDatabases(cmdlineDB, &RDB);