+CONTENTS100644 0 7 1747 6674533734 10216 0ustar rootbin@name ja-nemacs-canna-3_3_2_mini.tar @cwd /usr/local/lib/emacs/lisp/term/ vt100.el @comment MD5:980461cc479d82780b752e4ab4f6de0f vt200.el @comment MD5:64550b2600f66b6471e55731698684bf vt220.el @comment MD5:b367afafd58c81474314e7fcf2f7de6d @cwd /usr/local/lib/emacs/lisp/ canna.elc @comment MD5:1f3093061897e72f9a0cca81f3dbaffc keypad.elc @comment MD5:053b05114594f773720d8428ddc3b101 shell.elc @comment MD5:99bacd4e3417eb9c1a219907da23957a time.elc @comment MD5:ad7a64fabe8395c514c5c9a525a1c370 @cwd /usr/local/lib/emacs/lock/ @cwd /usr/local/lib/emacs/etc/ COPYING @comment MD5:947e994e5f7ffdc69bbbaeadf1699840 GNU @comment MD5:df89e665592ecb3651faf364f6fb5ce2 NEMACS.tut @comment MD5:da68cf9aa1f546332f552912f0604dba env @comment MD5:aed1b54bd6306e21cda6631c18c96c90 loadst @comment MD5:a73f2c61463109c76515a45928da4d27 sample.emacs @comment MD5:51457eeafab1fafe38292f660d1ffe5a @cwd /usr/local/bin/ nemacs @comment MD5:feb4b9699233bd290c4f8d34f7bbf871 etags @cwd . @ignore +COMMENT @ignore +DESC +COMMENT100644 0 7 105 6674533734 10026 0ustar rootbinA Nihongo emacs, with Canna support built in (Only the executables) +DESC100644 0 7 3276 6674533734 7476 0ustar rootbinThis is a mini-package containing only the executables for Nemacs-3.3.2, based on emacs-18.59 See the licence information '/usr/local/lib/emacs/etc/COPYING'. You can get full package of 'Nemacs' from ftp://... ftp://... ftp://... This *mini-package is maintained by Yahaba Shigeki *mini-package : 'mini-package' contains minimum files to execute application. This package style is proposed for small computer which has poor storage devices. ------------- from README.Nemacs ---------------- 1989.12.15: Nemacs Ver.3.2.1 (MUSUME-DOUJOUJI version) 1989.12.17: Nemacs Ver.3.2.1A (MUSUME-DOUJOUJI version with ANCHIN patch) 1989.12.22: Nemacs Ver.3.2.3 (YUMENO-AWAYUKI version) 1990.3.3: Nemacs Ver.3.3.1 (HINAMATSURI version) 1990.6.6: Nemacs Ver.3.3.2 (FUJIMUSUME version) This directory holds the distribution version of Nemacs Ver.3.3.2 (FUJIMUSUME version). 1990.6.6 Nemacs is distributed in the forms of patches to GNU Emacs under the terms of the GNU EMACS GENERAL PUBLIC LICENSE which is distributed along with GNU Emacs by the Free Software Foundation. Nemacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU EMACS GENERAL PUBLIC LICENSE for more details. You should have received a copy of the GNU EMACS GENERAL PUBLIC LICENSE along with Nemacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. ...... Send any comments, suggestions, and bug reports to nemacs@etl.go.jp ------------------ Yahaba Shigeki vt100.el100644 0 0 3730 4632773444 10472 0ustar rootwheel;; Map VT100 function key escape sequences ;; into the standard slots in function-keymap. (require 'keypad) (defvar CSI-map nil "The CSI-map maps the CSI function keys on the VT100 keyboard. The CSI keys are the arrow keys.") (if (not CSI-map) (progn (setq CSI-map (lookup-key global-map "\e[")) (if (not (keymapp CSI-map)) (setq CSI-map (make-sparse-keymap))) ;; [ commands (setup-terminal-keymap CSI-map '(("A" . ?u) ; up arrow ("B" . ?d) ; down-arrow ("C" . ?r) ; right-arrow ("D" . ?l))))) ; left-arrow (defun enable-arrow-keys () "Enable the use of the VT100 arrow keys for cursor motion. Because of the nature of the VT100, this unavoidably breaks the standard Emacs command ESC [; therefore, it is not done by default, but only if you give this command." (interactive) (global-set-key "\e[" CSI-map)) (defvar SS3-map nil "SS3-map maps the SS3 function keys on the VT100 keyboard. The SS3 keys are the numeric keypad keys in keypad application mode \(DECKPAM). SS3 is DEC's name for the sequence O which is the common prefix of what these keys transmit.") (if (not SS3-map) (progn (setq SS3-map (lookup-key global-map "\eO")) (if (not (keymapp SS3-map)) (setq SS3-map (make-keymap))) ;; O commands (setup-terminal-keymap SS3-map '(("A" . ?u) ; up arrow ("B" . ?d) ; down-arrow ("C" . ?r) ; right-arrow ("D" . ?l) ; left-arrow ("M" . ?e) ; Enter ("P" . ?\C-a) ; PF1 ("Q" . ?\C-b) ; PF2 ("R" . ?\C-c) ; PF3 ("S" . ?\C-d) ; PF4 ("l" . ?,) ; , ("m" . ?-) ; - ("n" . ?.) ; . ("p" . ?0) ; 0 ("q" . ?1) ; 1 ("r" . ?2) ; 2 ("s" . ?3) ; 3 ("t" . ?4) ; 4 ("u" . ?5) ; 5 ("v" . ?6) ; 6 ("w" . ?7) ; 7 ("x" . ?8) ; 8 ("y" . ?9))) ; 9 (define-key global-map "\eO" SS3-map))) vt200.el100644 0 0 5127 4632773444 10475 0ustar rootwheel;; vt200 series terminal stuff. ;; April 1985, Joe Kelsey (require 'keypad) (defvar CSI-map nil "The CSI-map maps the CSI function keys on the VT200 keyboard. The CSI keys are the dark function keys, and are only active in VT200-mode, except for the arrow keys.") (defun enable-arrow-keys () "Enable the use of the VT200 arrow keys and dark function keys. Because of the nature of the VT200, this unavoidably breaks the standard Emacs command ESC [; therefore, it is not done by default, but only if you give this command." (interactive) (global-set-key "\e[" CSI-map)) ;; I suggest that someone establish standard mappings for all of ;; the VT200 CSI function keys into the function-keymap. (if CSI-map nil (setq CSI-map (make-keymap)) ; [ commands (setup-terminal-keymap CSI-map '(("A" . ?u) ; up arrow ("B" . ?d) ; down-arrow ("C" . ?r) ; right-arrow ("D" . ?l) ; left-arrow ("1~" . ?f) ; Find ("2~" . ?I) ; Insert Here ("3~" . ?k) ; Re-move ("4~" . ?s) ; Select ("5~" . ?P) ; Prev Screen ("6~" . ?N) ; Next Screen ("17~" . ?\C-f) ; F6 ("18~" . ?\C-g) ; F7 ("19~" . ?\C-h) ; F8 ("20~" . ?\C-i) ; F9 ("21~" . ?\C-j) ; F10 ("23~" . ESC-prefix) ; F11 (ESC) ("24~" . ?\C-l) ; F12 ("25~" . ?\C-m) ; F13 ("26~" . ?\C-n) ; F14 ("31~" . ?\C-q) ; F17 ("32~" . ?\C-r) ; F18 ("33~" . ?\C-s) ; F19 ("34~" . ?\C-t) ; F20 ("28~" . ??) ; Help ("29~" . ?x)))) ; Do (defvar SS3-map nil "SS3-map maps the SS3 function keys on the VT200 keyboard. The SS3 keys are the numeric keypad keys in keypad application mode \(DECKPAM). SS3 is DEC's name for the sequence O which is the common prefix of what these keys transmit.") (if SS3-map nil (setq SS3-map (make-keymap)) ; O commands (setup-terminal-keymap SS3-map '(("A" . ?u) ; up arrow ("B" . ?d) ; down-arrow ("C" . ?r) ; right-arrow ("D" . ?l) ; left-arrow ("M" . ?e) ; Enter ("P" . ?\C-a) ; PF1 ("Q" . ?\C-b) ; PF2 ("R" . ?\C-c) ; PF3 ("S" . ?\C-d) ; PF4 ("l" . ?,) ; , ("m" . ?-) ; - ("n" . ?.) ; . ("p" . ?0) ; 0 ("q" . ?1) ; 1 ("r" . ?2) ; 2 ("s" . ?3) ; 3 ("t" . ?4) ; 4 ("u" . ?5) ; 5 ("v" . ?6) ; 6 ("w" . ?7) ; 7 ("x" . ?8) ; 8 ("y" . ?9))) ; 9 (define-key global-map "\eO" SS3-map)) vt220.el100644 0 0 57 4632773444 10434 0ustar rootwheel(load (concat term-file-prefix "vt200") nil t) canna.elc100644 0 0 43360 6665712071 11063 0ustar rootwheel (defconst canna-rcs-version "Canna/emacs 2.4, based on Canna 2.2/3.2. RCS $Id: canna.el,v 1.75 1994/06/21 10:25:43 kon Exp $") (defun canna-version nil (interactive) (byte-code "OP!" [canna-rcs-version nil message 0 72 " ..."] 4)) (provide (quote canna)) (defvar canna-save-undo-text-predicate nil) (defvar canna-undo-hook nil) (defvar canna-do-keybind-for-functionkeys t) (defvar canna-use-functional-numbers nil) (defvar canna-use-space-key-as-henkan-region t) (defvar canna-server nil) (defvar canna-file nil) (defvar canna-underline nil) (defvar canna-with-fences (not canna-underline)) (if canna-underline (require (quote attribute))) (defvar canna:*kanji-mode-string* "[ ]") (defvar canna:*alpha-mode-string* "") (defvar canna:*saved-mode-string* "[ ]") (defvar mode-line-canna-mode canna:*alpha-mode-string*) (defvar mode-line-canna-mode-in-minibuffer canna:*alpha-mode-string*) (defvar display-minibuffer-mode-in-minibuffer nil) (make-variable-buffer-local (quote mode-line-canna-mode)) (if (not (boundp (quote select-window-hook))) (setq display-minibuffer-mode-in-minibuffer nil)) (defun canna:select-window-hook (old new) (byte-code " =‰ ʼnʼn" [new minibuffer-window-selected t display-minibuffer-mode-in-minibuffer minibuffer-preprompt nil canna:*japanese-mode-in-minibuffer* minibuffer-window] 3)) (if (and (boundp (quote select-window-hook)) (not (eq select-window-hook (quote egg:select-window-hook)))) (setq select-window-hook (quote canna:select-window-hook))) (defun mode-line-canna-mode-update (str) (byte-code "p !=!  \"  !" [display-minibuffer-mode-in-minibuffer minibuffer-preprompt str mode-line-canna-mode-in-minibuffer mode-line-canna-mode window-buffer minibuffer-window boundp set-buffer-modified-p buffer-modified-p] 6)) (defun canna:memq-recursive (a l) (byte-code "! = @\" A\"" [l a atom canna:memq-recursive] 5)) (defun canna:create-mode-line nil (byte-code "\"?EEEED\"\" !" [mode-line-format mode-line-canna-mode canna:memq-recursive set-default append minibuffer-window-selected display-minibuffer-mode-in-minibuffer "-" "m" mode-line-canna-mode-in-minibuffer mode-line-canna-mode-update] 9)) (defun canna:mode-line-display nil (byte-code "!" [mode-line-canna-mode mode-line-canna-mode-update] 2)) (defvar canna:*japanese-mode* nil "\ T if canna mode is ``japanese''.") (make-variable-buffer-local (quote canna:*japanese-mode*)) (set-default (quote canna:*japanese-mode*) nil) (defvar canna:*japanese-mode-in-minibuffer* nil "\ T if canna mode is ``japanese'' in minibuffer.") (defvar canna:*exit-japanese-mode* nil) (defvar canna:*fence-mode* nil) (make-variable-buffer-local (quote canna:*fence-mode*)) (setq-default canna:*fence-mode* nil) (defvar canna-sys:*global-map* (copy-keymap global-map)) (defvar canna:*region-start* (make-marker)) (defvar canna:*region-end* (make-marker)) (defvar canna:*spos-undo-text* (make-marker)) (defvar canna:*epos-undo-text* (make-marker)) (defvar canna:*undo-text-yomi* nil) (defvar canna:*local-map-backup* nil) (defvar canna:*last-kouho* 0) (defvar canna:*initialized* nil) (defvar canna:*previous-window* nil) (defvar canna:*minibuffer-local-map-backup* nil) (defvar canna:*cursor-was-in-minibuffer* nil) (defvar canna:*menu-buffer* " *menu*") (defvar canna:*saved-minibuffer*) (defvar canna:*use-region-as-henkan-region* nil) (defvar canna-mode-map (make-keymap)) (let ((ch 0)) (while (<= ch 127) (aset canna-mode-map ch (quote canna-functional-insert-command)) (setq ch (1+ ch)))) (defvar canna-minibuffer-mode-map (make-keymap)) (let ((ch 0)) (while (<= ch 127) (aset canna-minibuffer-mode-map ch (quote canna-minibuffer-insert-command)) (setq ch (1+ ch)))) (if (not (fboundp (quote canna-sys:kill-emacs))) (fset (quote canna-sys:kill-emacs) (symbol-function (quote kill-emacs)))) (defun canna:kill-emacs (&optional query) (interactive "P") (byte-code "! !" [query nil message "ؤʡ٤μ򥻡֤ޤ" canna:finalize canna-sys:kill-emacs] 4)) (defun adjust-minibuffer-mode nil (byte-code "p != ‚Ç" [canna:*japanese-mode* canna:*japanese-mode-in-minibuffer* t nil window-buffer minibuffer-window] 4)) (defun canna-functional-insert-command (arg) "\ Use input character as a key of complex translation input such as kana-to-kanji translation." (interactive "p") (byte-code "ˆ \"" [last-command-char arg nil canna:functional-insert-command2] 3)) (defun canna:functional-insert-command2 (ch arg) "\ This function actualy isert a converted Japanese string." (byte-code "!!" [ch canna:display-candidates canna-key-proc] 3)) (defun canna:delete-last-preedit nil (byte-code "!?  # # \"ɉ" [canna:*last-kouho* canna-underline canna:*region-start* canna:*region-end* zerop attribute-off-region inverse underline delete-region 0] 6)) (defun canna:insert-fixed (strs) (byte-code "VX  ? B\"B B `\"2э* c  `\"XQӍ* c " [strs canna-kakutei-yomi canna-save-undo-text-predicate canna-kakutei-romaji canna:*undo-text-yomi* canna:*spos-undo-text* overwrite-mode num kanji-compare canna-kakutei-string canna:*epos-undo-text* t 0 funcall set-marker 128 delete-loop (byte-code "V&l\"g YS!S" [num nil kanji-compare 0 throw delete-loop delete-char 1] 5) canna:do-auto-fill (byte-code "V&l\"g YS!S" [num nil kanji-compare 0 throw delete-loop delete-char 1] 5)] 6)) (defun canna:insert-preedit nil (byte-code "V6 `\" c `\"! c ?' `\" 1 # ?R!KM Z!zV\\Vz iςj #   \\#)" [canna-henkan-length canna:*region-start* canna-with-fences canna:*region-end* canna-henkan-string canna-underline canna:*last-kouho* canna-henkan-revlen t canna-henkan-revpos start 0 set-marker "||" backward-char 1 attribute-on-region underline zerop + inverse] 13)) (defun canna:display-candidates (strs) (byte-code "; !  ! ;$ ! + < %JJ ! !" [strs canna-henkan-string canna-mode-string canna-empty-info canna-ichiran-string canna-ichiran-length canna-ichiran-revpos canna-ichiran-revlen canna:*cursor-was-in-minibuffer* canna-minibuffer-mode-map beep message canna:delete-last-preedit canna:insert-fixed canna:insert-preedit mode-line-canna-mode-update canna:quit-canna-mode canna:minibuffer-input select-window minibuffer-window use-local-map] 13)) (defun canna:minibuffer-input (str len revpos revlen nfixed) "\ Displaying misc informations for kana-to-kanji input." (byte-code "  ! ?6 =\" ed# ! !\" ! Eed#ljed\" =?[ɉ c Vn  Z! !xɉ ! \" =! ed\" !!" [canna:*previous-window* canna:*cursor-was-in-minibuffer* canna-underline canna:*saved-minibuffer* canna:*menu-buffer* canna:*minibuffer-local-map-backup* canna-minibuffer-mode-map t minibuffer-window-selected nil str revlen len revpos canna-empty-info nfixed selected-window select-window minibuffer-window attribute-off-region inverse canna:delete-last-preedit window-buffer set-window-buffer get-buffer-create current-local-map use-local-map delete-region 0 backward-char zerop canna:insert-fixed canna:insert-preedit message] 28)) (defun canna-minibuffer-insert-command (arg) "\ Use input character as a key of complex translation input such as kana-to-kanji translation, even if you are in the minibuffer." (interactive "p") (byte-code "Ĉ! ! \"" [canna:*minibuffer-local-map-backup* canna:*previous-window* last-command-char arg nil use-local-map select-window canna:functional-insert-command2] 5)) (if (not (boundp (quote MULE))) (defun cancel-undo-boundary nil)) (defun canna-self-insert-command (arg) "\ Self insert pressed key and use it to assemble Romaji character." (interactive "p") (byte-code "ƈ  ? B = V! ! : X7 ` Z`#B UB " [canna:*japanese-mode* canna:*fence-mode* last-command last-command-char arg self-insert-after-hook nil adjust-minibuffer-mode canna:enter-canna-mode-and-functional-insert canna-self-insert-command 32 cancel-undo-boundary self-insert-command 1 funcall canna:do-auto-fill] 8)) (defun canna-toggle-japanese-mode nil "\ Toggle canna japanese mode." (interactive) (byte-code "ˆ  ‰ ‰ !Glj!B \"<  A ) !P  )" [in-minibuffer canna:*japanese-mode* nil canna:*use-region-as-henkan-region* canna:*saved-mode-string* mode-line-canna-mode canna:*alpha-mode-string* t new-mode canna:*kanji-mode-string* canna:*japanese-mode-in-minibuffer* adjust-minibuffer-mode canna-abandon-undo-info mode-line-canna-mode-update fboundp canna-query-mode string-equal ""] 9)) (defun canna:initialize nil (byte-code " 4É ̂ #AA@(AA@!A@4A@!!E!  !!V  )" [init-val nil canna:*initialized* t canna-underline canna-server canna-file canna-mode-alpha-mode canna:*alpha-mode-string* canna-func-japanese-mode canna:*kanji-mode-string* canna-initialize 0 1 canna:output-warnings error fboundp canna-query-mode canna-change-mode canna-do-function] 11)) (defun canna:finalize nil (byte-code "?&‰  AA@ AA@! A@% A@!)" [canna:*initialized* t nil init-val canna-finalize canna:output-warnings error] 4)) (defun canna:enter-canna-mode nil (byte-code "?! ! É!\"  !" [canna:*initialized* canna:*local-map-backup* canna:*fence-mode* t disable-undo canna-mode-map message "ؤʡ٤νԤäƤޤ...." canna:initialize "ؤʡ٤νԤäƤޤ....done" current-local-map boundp use-local-map] 7)) (defun canna:enter-canna-mode-and-functional-insert nil (byte-code "  " [canna:*use-region-as-henkan-region* nil unread-command-char last-command-char canna:enter-canna-mode] 3)) (defun canna:quit-canna-mode nil (byte-code "0 !‰ %‰ \" % !!0\" \"" [canna:*fence-mode* canna:*local-map-backup* nil canna:*exit-japanese-mode* canna-mode-string canna:*alpha-mode-string* canna:*japanese-mode* disable-undo canna:*region-start* canna:*region-end* use-local-map canna-toggle-japanese-mode mode-line-canna-mode-update boundp set-marker] 8)) (defun canna-touroku nil "\ Register a word into a kana-to-kanji dictionary." (interactive) (byte-code " !! " [canna:*japanese-mode* nil canna:enter-canna-mode canna:display-candidates canna-touroku-string "" beep] 5)) (defun canna-without-newline (start end) (byte-code " =?& `X `X)&`X& `X)" [start end beginning-of-line end-of-line] 4)) (defun canna-touroku-region (start end) "\ Register a word which is indicated by region into a kana-to-kanji dictionary." (interactive "r") (byte-code "Ĉ \" ĉ  \"!!\"!" [start end canna:*japanese-mode* canna:*use-region-as-henkan-region* nil canna-without-newline canna:enter-canna-mode canna:display-candidates canna-touroku-string buffer-substring message "꡼Ǥ̥꡼󤫡ԤޤޤƤޤ"] 7)) (defun canna-extend-mode nil "\ To enter an extend-mode of Canna." (interactive) (byte-code "!!" [canna-func-extend-mode nil canna:display-candidates canna-do-function] 3)) (defun canna-kigou-mode nil "\ Enter symbol choosing mode." (interactive) (byte-code "ˆ !! " [canna:*japanese-mode* canna-mode-kigo-mode nil canna:enter-canna-mode canna:display-candidates canna-change-mode beep] 5)) (defun canna-hex-mode nil "\ Enter hex code entering mode." (interactive) (byte-code "ˆ !! " [canna:*japanese-mode* canna-mode-hex-mode nil canna:enter-canna-mode canna:display-candidates canna-change-mode beep] 5)) (defun canna-bushu-mode nil "\ Enter special mode to convert by BUSHU name." (interactive) (byte-code "ˆ !! " [canna:*japanese-mode* canna-mode-bushu-mode nil canna:enter-canna-mode canna:display-candidates canna-change-mode beep] 5)) (defun canna-reset nil (interactive) (byte-code "! ! !" [nil message "ؤʡ٤μ򥻡֤ޤ" canna:finalize "ؤʡ٤κƽԤäƤޤ...." canna:initialize "ؤʡ٤κƽԤäƤޤ....done"] 6)) (defun canna nil (interactive) (byte-code "ň!!!  W. I T)@ U @WL @\"\"Ɖ A5 *_\"!!?l!\"\"\"\"\"\"\"\"  !KM! ! ! !)" [init-val ch global-map keys ok nil t canna-do-keybind-for-functionkeys canna-use-space-key-as-henkan-region canna:*alpha-mode-string* message "ؤʡ٤Ƥޤ...." fboundp canna-initialize canna-change-mode canna:initialize 32 127 canna-self-insert-command 128 global-set-key make-string 1 canna-toggle-japanese-mode "" keymapp global-key-binding "[" global-unset-key "" "[28~" canna-extend-mode "[2~" canna-kigou-mode "[11~" "[12~" canna-hex-mode "[13~" canna-bushu-mode "" canna-set-mark-command " " canna-henkan-region-or-self-insert canna:create-mode-line mode-line-canna-mode-update kill-emacs canna:kill-emacs beep "*canna-warning*" princ " Emacs Ǥ new-canna Ȥޤ" terpri print-help-return-message " Emacs Ǥ canna Ȥޤ" "ؤʡ٤Ƥޤ....done"] 31)) (defun canna:do-auto-fill nil (byte-code " ? i V-i! iWi W,i!)" [auto-fill-hook buffer-read-only fill-column ocolumn run-hooks] 4)) (defun canna:output-warnings (mesg) (byte-code "@! A " [mesg "*canna-warning*" princ terpri print-help-return-message] 6)) (defun canna-undo (&optional arg) (interactive "*p") (byte-code "ʈ p !=Q! !! b \" ?(ʼn?1 @A\"G!I)! X  !" [canna:*undo-text-yomi* canna:*spos-undo-text* canna:*epos-undo-text* canna:*japanese-mode* canna:*exit-japanese-mode* t canna:*fence-mode* texts canna-undo-hook arg nil marker-buffer message "ɤߤᤷޤ" switch-to-buffer delete-region canna:enter-canna-mode canna:display-candidates canna-store-yomi funcall canna-abandon-undo-info undo] 13)) (defun canna-abandon-undo-info nil (interactive) (byte-code " \" \"" [canna:*undo-text-yomi* nil canna:*spos-undo-text* canna:*epos-undo-text* set-marker] 4)) (defun canna-henkan-region (start end) "\ Convert a text which is indicated by region into a kanji text." (interactive "r") (byte-code "Ĉ? ‰ \"! \" !,! !)" [canna:*japanese-mode* canna:*exit-japanese-mode* t res nil start end canna-func-henkan canna-store-yomi buffer-substring delete-region canna:enter-canna-mode fboundp canna-do-function canna:display-candidates] 8)) (defun canna-set-mark-command (arg) "\ Beside setting mark, set mark as a HENKAN region if it is in the japanese mode." (interactive "P") (byte-code "Ĉ! É!" [arg canna:*japanese-mode* canna:*use-region-as-henkan-region* t nil set-mark-command message "Mark set(Ѵΰ賫)"] 3)) (defun canna-henkan-region-or-self-insert (arg) "\ Do kana-to-kanji convert region if HENKAN region is defined, self insert otherwise." (interactive "p") (byte-code " `W `W)?' \"* !" [canna:*use-region-as-henkan-region* nil arg mark beginning-of-line canna-henkan-region region-beginning region-end canna-self-insert-command] 8)) (defun canna-electric-c-terminator (arg) (interactive "P") (byte-code "ˆ ! !" [canna:*japanese-mode* arg nil canna-self-insert-command electric-c-terminator] 3)) (defun canna-electric-c-semi (arg) (interactive "P") (byte-code "ˆ ! !" [canna:*japanese-mode* arg nil canna-self-insert-command electric-c-semi] 3)) (defun canna-electric-c-brace (arg) (interactive "P") (byte-code "ˆ ! !" [canna:*japanese-mode* arg nil canna-self-insert-command electric-c-brace] 3)) (defun canna-c-mode-hook nil (byte-code "####" [c-mode-map define-key "{" canna-electric-c-brace "}" ";" canna-electric-c-semi ":" canna-electric-c-terminator] 7)) (defun canna-set-fence-mode-format (fence sep underline) (byte-code "  !  !Ň" [canna-with-fences fence sep canna-underline underline t canna-set-bunsetsu-kugiri require attribute] 3)) (defun canna-rk-region (start end) "\ Convert region into kana." (interactive "r") (byte-code " \"G W< \"V2\") T ," [str nil len i res start end ch canna-func-functional-insert 0 buffer-substring elt 32 canna-do-function] 6)) (defun canna-rk-trans-region (start end) "\ Insert alpha-numeric string as it is sent from keyboard." (interactive "r") (byte-code " \" \" ?Ɖ! !)" [res nil start end canna:*japanese-mode* canna:*exit-japanese-mode* t canna-func-henkan canna-rk-region delete-region canna-do-function canna:enter-canna-mode canna:display-candidates] 6)) (defun canna-rk-trans (arg) (interactive "p") (byte-code "`!`=?`\")" [po nil skip-chars-backward "-a-zA-Z.,'?!~" canna-rk-trans-region] 4)) (defun canna-henkan-kakutei-and-self-insert (arg) (interactive "p") (byte-code "Ĉ !  " [canna:*japanese-mode* arg unread-command-char last-command-char nil canna-functional-insert-command canna-kakutei-to-basic-stat] 3)) (defun canna-kakutei-to-basic-stat nil (byte-code " ?!! ? !)" [res canna-empty-info canna:*japanese-mode* canna:*alpha-mode-string* 0 canna-key-proc 13 canna:display-candidates mode-line-canna-mode-update] 4)) (defun canna-setup-for-being-boiled nil (byte-code "TX I IT)" [ch canna-mode-map canna-minibuffer-mode-map 32 127 canna-henkan-kakutei-and-self-insert canna-minibuffer-insert-command] 4)) (defvar rK-trans-key " " "for `boil' only") (make-variable-buffer-local (quote rK-trans-key)) (defun canna-boil nil "\ `canna-boil' cooks `canna' as if `boil' does for `egg'." (interactive) (byte-code " \"!" [rK-trans-key nil canna-setup-for-being-boiled local-set-key canna-rk-trans message "boiled"] 4)) keypad.elc100644 0 0 4623 4632773412 11235 0ustar rootwheel (defun keypad-default (char definition) (byte-code " \"  #" [function-keymap char definition lookup-key define-key] 5)) (keypad-default "l" (quote backward-char)) (keypad-default "r" (quote forward-char)) (keypad-default "D" (quote delete-char)) (keypad-default "u" (quote previous-line)) (keypad-default "d" (quote next-line)) (keypad-default "N" (quote scroll-up)) (keypad-default "P" (quote scroll-down)) (keypad-default "C" (quote recenter)) (keypad-default "?" (quote help-for-help)) (keypad-default "s" (quote set-mark-command)) (keypad-default "k" (quote kill-region)) (keypad-default "f" (quote re-search-forward)) (keypad-default "" (quote beginning-of-line)) (keypad-default "" (quote end-of-line)) (keypad-default "" (quote isearch-forward)) (keypad-default "" (quote kill-line)) (keypad-default "." (quote delete-char)) (keypad-default "0" (quote yank)) (keypad-default "e" (quote open-line)) (keypad-default "1" (quote backward-word)) (keypad-default "3" (quote forward-word)) (keypad-default "7" (quote backward-paragraph)) (keypad-default "9" (quote forward-paragraph)) (keypad-default "h" (quote move-to-window-line)) (defun setup-terminal-keymap (map translations) "\ Set up keymap MAP to forward to function-keymap according to TRANSLATIONS. TRANSLATIONS is an alist; each element of it looks like (FROMSTRING . TOCHAR). For each such pair, we define the key sequence FROMSTRING in MAP to forward to the definition of character TOCHAR in function-keymap. \"Forwarding\" means that subsequent redefinition of TOCHAR in function-keymap will be seen automatically in MAP as well. This function is used by files term/*.el to set up the mapping from the escape sequences sent by function keys on particular terminals (FROMSTRINGs) into Emacs standard function key slots (TOCHARs). An actual definition (such as a symbol) may be given in place of TOCHAR. Generally, MAP is a prefix keymap which will be attached to a key that is the common prefix sent by all function keys (often ESC O or ESC [)." (byte-code "& @@@A! @AB@A#A" [translations map function-keymap define-key numberp] 7)) (defun function-key-sequence (char) "\ Return key sequence for function key that on this terminal translates into slot CHAR in function-keymap. Or return nil if there is none." (byte-code " B \"@" [function-keymap char where-is-internal current-local-map] 4)) (provide (quote keypad)) shell.elc100644 0 0 27376 4632773426 11126 0ustar rootwheel (provide (quote shell)) (defvar last-input-start nil "\ In a shell-mode buffer, marker for start of last unit of input.") (defvar last-input-end nil "\ In a shell-mode buffer, marker for end of last unit of input.") (defvar shell-mode-map nil) (defvar shell-directory-stack nil "\ List of directories saved by pushd in this buffer's shell.") (defvar shell-popd-regexp "popd" "\ *Regexp to match subshell commands equivalent to popd.") (defvar shell-pushd-regexp "pushd" "\ *Regexp to match subshell commands equivalent to pushd.") (defvar shell-cd-regexp "cd" "\ *Regexp to match subshell commands equivalent to cd.") (defvar explicit-shell-file-name nil "\ *If non-nil, is file name to use for explicitly requested inferior shell.") (defun shell-mode nil "\ Major mode for interacting with an inferior shell. Shell name is same as buffer name, sans the asterisks. Return at end of buffer sends line as input. Return not at end copies rest of line to end and sends it. The following commands imitate the usual Unix interrupt and editing control characters: \\{shell-mode-map} Entry to this mode calls the value of shell-mode-hook with no args, if that value is non-nil. cd, pushd and popd commands given to the shell are watched by Emacs to keep this buffer's default directory the same as the shell's working directory. Variables shell-cd-regexp, shell-pushd-regexp and shell-popd-regexp are used to match these command names. You can send text to the shell (or its subjobs) from other buffers using the commands process-send-region, process-send-string and lisp-send-defun." (interactive) (byte-code "ň ɉʉˉ !!ʼn! ! !" [major-mode mode-name mode-line-process shell-mode-map shell-directory-stack nil last-input-start last-input-end kill-all-local-variables shell-mode "Shell" (": %s") use-local-map make-local-variable make-marker run-hooks shell-mode-hook] 9)) (if shell-mode-map nil (setq shell-mode-map (make-sparse-keymap)) (define-key shell-mode-map " " (quote shell-send-input)) (define-key shell-mode-map "" (quote shell-send-eof)) (define-key shell-mode-map "" (quote kill-shell-input)) (define-key shell-mode-map "" (quote backward-kill-word)) (define-key shell-mode-map "" (quote interrupt-shell-subjob)) (define-key shell-mode-map "" (quote stop-shell-subjob)) (define-key shell-mode-map "" (quote quit-shell-subjob)) (define-key shell-mode-map "" (quote kill-output-from-shell)) (define-key shell-mode-map "" (quote show-output-from-shell)) (define-key shell-mode-map "" (quote copy-last-shell-input))) (defvar explicit-csh-args (if (eq system-type (quote hpux)) (quote ("-i" "-T")) (quote ("-i"))) "\ Args passed to inferior shell by M-x shell, if the shell is csh. Value is a list of strings, which may be nil.") (defun shell nil "\ Run an inferior shell, with I/O through buffer *shell*. If buffer exists but shell process is not running, make new shell. Program used comes from variable explicit-shell-file-name, or (if that is nil) from the ESHELL environment variable, or else from SHELL if there is no ESHELL. If a file ~/.emacs_SHELLNAME exists, it is given as initial input (Note that this may lose due to a timing error if the shell discards input when it starts up.) The buffer is put in shell-mode, giving commands for sending input and controlling the subjobs of the shell. See shell-mode. See also variable shell-prompt-pattern. The shell file name (sans directories) is used to make a symbol name such as `explicit-csh-arguments'. If that symbol is a variable, its value is used as a list of arguments when invoking the shell. Otherwise, one argument `-i' is passed to the shell. Note that many people's .cshrc files unconditionally clear the prompt. If yours does, you will probably want to change it." (interactive) (byte-code "Ĉ !!! P!( P Q! 6 !> J?)%!*" [prog explicit-shell-file-name name symbol nil getenv "ESHELL" "SHELL" "/bin/sh" file-name-nondirectory switch-to-buffer apply make-shell "shell" file-exists-p "~/.emacs_" intern-soft "explicit-" "-args" boundp ("-i")] 14)) (defun make-shell (name program &optional startfile &rest switches) (byte-code " Q!!  !q >+ł 2 ! P \"ZZ!Z!Z &  !db !`d\" `d\"  \" !db !`\" )," [buffer name proc status size nil exec-directory program explicit-shell-file-name switches startfile get-buffer-create "*" get-buffer-process process-status (run stop) delete-process apply start-process "env" format "TERMCAP=emacs:co#%d:tc=unknown:" screen-width "TERM=emacs" "EMACS=t" "-" getenv "ESHELL" "SHELL" "/bin/sh" sleep-for 1 insert-file-contents buffer-substring delete-region process-send-string process-name set-marker process-mark shell-mode] 19)) (defvar shell-set-directory-error-hook (quote ignore) "\ Function called with no arguments when shell-send-input recognizes a change-directory command but gets an error trying to change Emacs's default directory.") (defun shell-send-input nil "\ Send input to subshell. At end of buffer, sends all text after last output as input to the subshell, including a newline inserted at the end. When not at end, copies current line to the end of the buffer and sends it, after first attempting to discard any prompt at the beginning of the line by matching the regexp that is the value of shell-prompt-pattern if possible. This regexp should start with \"^\"." (interactive) (byte-code "ƈp! ! m&p!!\"c `\"M `)#`!`\"db`\" c `\")ԏp!  # !`\")" [last-input-start last-input-end shell-prompt-pattern t copy process nil get-buffer-process error "Current buffer has no process" end-of-line move-marker process-mark 10 beginning-of-line re-search-forward buffer-substring forward-line 1 (byte-code "b )" [last-input-start shell-set-directory] 2) ((error (byte-code "!" [shell-set-directory-error-hook funcall] 2))) process-send-region set-marker] 20)) (defun shell-set-directory nil (byte-code "! !f>  @! A !v!f>C @  @! AB)s!f>s!!`!`\"!!!r B !)!!f>!!!f>!!`!`\"!!! !)" [shell-popd-regexp shell-directory-stack shell-pushd-regexp old default-directory dir shell-cd-regexp looking-at match-end 0 (59 10) cd (59 10) (32 9) nil skip-chars-forward "^ " " " file-directory-p expand-file-name substitute-in-file-name buffer-substring "^ ;" (59 10) getenv "HOME" (32 9) forward-char 3] 29)) (defun shell-send-eof nil "\ Send eof to subshell (or to the program running under it)." (interactive) (byte-code " " [nil process-send-eof] 2)) (defun kill-output-from-shell nil "\ Kill all output from shell since last input." (interactive) (byte-code "db `\"cdb" [last-input-end nil beginning-of-line kill-region "*** output flushed *** "] 4)) (defun show-output-from-shell nil "\ Display start of this batch of shell output at top of window. Also put cursor there." (interactive) (byte-code " \"b" [last-input-end nil set-window-start selected-window] 4)) (defun copy-last-shell-input nil "\ Copy previous shell input, sans newline, and insert before point." (interactive) (byte-code "ˆ \"c!" [last-input-end last-input-start nil buffer-substring delete-char -1] 3)) (defun interrupt-shell-subjob nil "\ Interrupt this shell's current subjob." (interactive) (byte-code "\"" [nil t interrupt-process] 3)) (defun kill-shell-subjob nil "\ Send kill signal to this shell's current subjob." (interactive) (byte-code "\"" [nil t kill-process] 3)) (defun quit-shell-subjob nil "\ Send quit signal to this shell's current subjob." (interactive) (byte-code "\"" [nil t quit-process] 3)) (defun stop-shell-subjob nil "\ Stop this shell's current subjob." (interactive) (byte-code "\"" [nil t stop-process] 3)) (defun kill-shell-input nil "\ Kill all text since last stuff output by the shell or its subjobs." (interactive) (byte-code "p!!`\"" [nil kill-region process-mark get-buffer-process] 5)) (defvar inferior-lisp-mode-map nil) (if inferior-lisp-mode-map nil (setq inferior-lisp-mode-map (copy-alist shell-mode-map)) (lisp-mode-commands inferior-lisp-mode-map) (define-key inferior-lisp-mode-map "" (quote lisp-send-defun))) (defvar inferior-lisp-program "lisp" "\ *Program name for invoking an inferior Lisp with `run-lisp'.") (defvar inferior-lisp-load-command "(load \"%s\") " "*Format-string for building a Lisp expression to load a file. This format string should use %s to substitute a file name and should result in a Lisp expression that will command the inferior Lisp to load that file. The default works acceptably on most Lisps. The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\ \" produces cosmetically superior output for this application, but it works only in Common Lisp.") (defvar inferior-lisp-prompt "^.*>:? *$" "\ *Regexp to recognize prompts from the inferior Lisp. Default is right for Franz Lisp and kcl.") (defun inferior-lisp-mode nil "\ Major mode for interacting with an inferior Lisp process. Runs a Lisp interpreter as a subprocess of Emacs, with Lisp I/O through an Emacs buffer. Variable inferior-lisp-program controls which Lisp interpreter is run. Variables inferior-lisp-prompt and inferior-lisp-load-command can customize this mode for different Lisp interpreters. Commands: DELETE converts tabs to spaces as it moves back. TAB indents for Lisp; with argument, shifts rest of expression rigidly with the current line. Meta-Control-Q does TAB on each line starting within following expression. Paragraphs are separated only by blank lines. Semicolons start comments. Return at end of buffer sends line as input. Return not at end copies rest of line to end and sends it. The following commands imitate the usual Unix interrupt and editing control characters: \\{shell-mode-map} Entry to this mode calls the value of lisp-mode-hook with no arguments, if that value is non-nil. Likewise with the value of shell-mode-hook. lisp-mode-hook is called after shell-mode-hook. You can send text to the inferior Lisp from other buffers using the commands process-send-region, process-send-string and \\[lisp-send-defun]." (interactive) (byte-code "Lj ɉʉˉ! !! ! \"" [major-mode mode-name mode-line-process t inferior-lisp-mode-map last-input-start last-input-end nil kill-all-local-variables inferior-lisp-mode "Inferior Lisp" (": %s") lisp-mode-variables use-local-map make-local-variable make-marker run-hooks shell-mode-hook lisp-mode-hook] 10)) (defun run-lisp nil "\ Run an inferior Lisp process, input and output via buffer *lisp*." (interactive) (byte-code "\"! " [inferior-lisp-program nil switch-to-buffer make-shell "lisp" inferior-lisp-mode] 4)) (defun lisp-send-defun (display-flag) "\ Send the current defun to the Lisp process made by M-x run-lisp. With argument, force redisplay and scrolling of the *lisp* buffer. Variable `inferior-lisp-load-command' controls formatting of the `load' form that is set to the Lisp process." (interactive "P") (byte-code "ˆ! ! `!!\" ` % \"\"* ! !!G!!qd !db dUo !?wˆZdZ!`\")\"-)" [end filename nil inferior-lisp-load-command display-flag process buffer w height inferior-lisp-prompt get-process "lisp" error "No current lisp process" end-of-defun format "/tmp/emlisp%d" process-id beginning-of-defun write-region nomessage process-send-string process-buffer get-buffer-window display-buffer window-height accept-process-output beginning-of-line looking-at vertical-motion 4 set-window-start set-window-point] 23)) (defun lisp-send-defun-and-go nil "\ Send the current defun to the inferior Lisp, and switch to *lisp* buffer." (interactive) (byte-code "!!" [nil lisp-send-defun switch-to-buffer "*lisp*"] 3)) time.elc100644 0 0 2604 4632773434 10717 0ustar rootwheel (defvar display-time-process nil) (defvar display-time-interval 60 "\ *Seconds between updates of time in the mode line.") (defvar display-time-string nil) (defun display-time nil "\ Display current time and load level in mode line of each buffer. Updates automatically every minute. If display-time-day-and-date is non-nil, the current day and date are displayed as well." (interactive) (byte-code "Ĉ !=?M  ! !ɉ >. \"̉ !% ! \" \"))" [live display-time-process global-mode-string display-time-string nil display-time-interval process-status run delete-process ("") append (display-time-string) "time and load" start-process "display-time" "loadst" "-n" int-to-string process-kill-without-query set-process-sentinel display-time-sentinel set-process-filter display-time-filter] 10)) (defun display-time-sentinel (proc reason) (byte-code "!= ĉ q) !!" [proc display-time-string process-status run "" other-buffer set-buffer-modified-p buffer-modified-p sit-for 0] 6)) (defun display-time-filter (proc string) (byte-code "GV OGV#)!O\":!TO H OP q) !!" [string display-time-day-and-date display-time-string 30 -30 nil 4 string-match "[0-9]+:[0-9][0-9].." match-beginning 0 "[^0-9][0-9]+:" current-time-string 11 other-buffer set-buffer-modified-p buffer-modified-p sit-for] 10)) COPYING100644 0 0 17076 4632773174 10361 0ustar rootwheel GNU EMACS GENERAL PUBLIC LICENSE (Clarified 11 Feb 1988) Copyright (C) 1985, 1987, 1988 Richard M. Stallman Everyone is permitted to copy and distribute verbatim copies of this license, but changing it is not allowed. You can also use this wording to make the terms for other programs. The license agreements of most software companies keep you at the mercy of those companies. By contrast, our general public license is intended to give everyone the right to share GNU Emacs. To make sure that you get the rights we want you to have, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. Hence this license agreement. Specifically, we want to make sure that you have the right to give away copies of Emacs, that you receive source code or else can get it if you want it, that you can change Emacs or use pieces of it in new free programs, and that you know you can do these things. To make sure that everyone has such rights, we have to forbid you to deprive anyone else of these rights. For example, if you distribute copies of Emacs, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights. Also, for our own protection, we must make certain that everyone finds out that there is no warranty for GNU Emacs. If Emacs is modified by someone else and passed on, we want its recipients to know that what they have is not what we distributed, so that any problems introduced by others will not reflect on our reputation. Therefore we (Richard Stallman and the Free Software Fundation, Inc.) make the following terms which say what you must do to be allowed to distribute or change GNU Emacs. COPYING POLICIES 1. You may copy and distribute verbatim copies of GNU Emacs source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy a valid copyright notice "Copyright (C) 1988 Free Software Foundation, Inc." (or with whatever year is appropriate); keep intact the notices on all files that refer to this License Agreement and to the absence of any warranty; and give any other recipients of the GNU Emacs program a copy of this License Agreement along with the program. You may charge a distribution fee for the physical act of transferring a copy. 2. You may modify your copy or copies of GNU Emacs source code or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following: a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and b) cause the whole of any work that you distribute or publish, that in whole or in part contains or is a derivative of GNU Emacs or any part thereof, to be licensed at no charge to all third parties on terms identical to those contained in this License Agreement (except that you may choose to grant more extensive warranty protection to some or all third parties, at your option). c) if the modified program serves as a text editor, cause it when started running in the simplest and usual way, to print an announcement including a valid copyright notice "Copyright (C) 1988 Free Software Foundation, Inc." (or with the year that is appropriate), saying that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License Agreement. d) You may charge a distribution fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. Mere aggregation of another unrelated program with this program (or its derivative) on a volume of a storage or distribution medium does not bring the other program under the scope of these terms. 3. You may copy and distribute GNU Emacs (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: a) accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, b) accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal shipping charge) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or, c) accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.) For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs. 4. You may not copy, sublicense, distribute or transfer GNU Emacs except as expressly provided under this License Agreement. Any attempt otherwise to copy, sublicense, distribute or transfer GNU Emacs is void and your rights to use GNU Emacs under this License agreement shall be automatically terminated. However, parties who have received computer software programs from you with this License Agreement will not have their licenses terminated so long as such parties remain in full compliance. 5. If you wish to incorporate parts of GNU Emacs into other free programs whose distribution conditions are different, write to the Free Software Foundation. We have not yet worked out a simple rule that can be stated here, but we will often permit this. We will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software. Your comments and suggestions about our licensing policies and our software are welcome! Please contact the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, or call (617) 876-3296. NO WARRANTY BECAUSE GNU EMACS IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC, RICHARD M. STALLMAN AND/OR OTHER PARTIES PROVIDE GNU EMACS "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE GNU EMACS PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL FREE SOFTWARE FOUNDATION, INC., RICHARD M. STALLMAN, AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE GNU EMACS AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH PROGRAMS NOT DISTRIBUTED BY FREE SOFTWARE FOUNDATION, INC.) THE PROGRAM, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. GNU100644 0 0 56613 4632773176 7704 0ustar rootwheel The GNU Manifesto Copyright (C) 1985 Richard M. Stallman (Copying permission notice at the end.) What's GNU? Gnu's Not Unix! GNU, which stands for Gnu's Not Unix, is the name for the complete Unix-compatible software system which I am writing so that I can give it away free to everyone who can use it. Several other volunteers are helping me. Contributions of time, money, programs and equipment are greatly needed. So far we have an Emacs text editor with Lisp for writing editor commands, a source level debugger, a yacc-compatible parser generator, a linker, and around 35 utilities. A shell (command interpreter) is nearly completed. A new portable optimizing C compiler has compiled itself and may be released this year. An initial kernel exists but many more features are needed to emulate Unix. When the kernel and compiler are finished, it will be possible to distribute a GNU system suitable for program development. We will use @TeX{} as our text formatter, but an nroff is being worked on. We will use the free, portable X window system as well. After this we will add a portable Common Lisp, an Empire game, a spreadsheet, and hundreds of other things, plus on-line documentation. We hope to supply, eventually, everything useful that normally comes with a Unix system, and more. GNU will be able to run Unix programs, but will not be identical to Unix. We will make all improvements that are convenient, based on our experience with other operating systems. In particular, we plan to have longer filenames, file version numbers, a crashproof file system, filename completion perhaps, terminal-independent display support, and perhaps eventually a Lisp-based window system through which several Lisp programs and ordinary Unix programs can share a screen. Both C and Lisp will be available as system programming languages. We will try to support UUCP, MIT Chaosnet, and Internet protocols for communication. GNU is aimed initially at machines in the 68000/16000 class with virtual memory, because they are the easiest machines to make it run on. The extra effort to make it run on smaller machines will be left to someone who wants to use it on them. To avoid horrible confusion, please pronounce the `G' in the word `GNU' when it is the name of this project. Who Am I? I am Richard Stallman, inventor of the original much-imitated EMACS editor, formerly at the Artificial Intelligence Lab at MIT. I have worked extensively on compilers, editors, debuggers, command interpreters, the Incompatible Timesharing System and the Lisp Machine operating system. I pioneered terminal-independent display support in ITS. Since then I have implemented one crashproof file system and two window systems for Lisp machines, and designed a third window system now being implemented; this one will be ported to many systems including use in GNU. [Historical note: The window system project was not completed; GNU now plans to use the X window system.] Why I Must Write GNU I consider that the golden rule requires that if I like a program I must share it with other people who like it. Software sellers want to divide the users and conquer them, making each user agree not to share with others. I refuse to break solidarity with other users in this way. I cannot in good conscience sign a nondisclosure agreement or a software license agreement. For years I worked within the Artificial Intelligence Lab to resist such tendencies and other inhospitalities, but eventually they had gone too far: I could not remain in an institution where such things are done for me against my will. So that I can continue to use computers without dishonor, I have decided to put together a sufficient body of free software so that I will be able to get along without any software that is not free. I have resigned from the AI lab to deny MIT any legal excuse to prevent me from giving GNU away. Why GNU Will Be Compatible with Unix Unix is not my ideal system, but it is not too bad. The essential features of Unix seem to be good ones, and I think I can fill in what Unix lacks without spoiling them. And a system compatible with Unix would be convenient for many other people to adopt. How GNU Will Be Available GNU is not in the public domain. Everyone will be permitted to modify and redistribute GNU, but no distributor will be allowed to restrict its further redistribution. That is to say, proprietary modifications will not be allowed. I want to make sure that all versions of GNU remain free. Why Many Other Programmers Want to Help I have found many other programmers who are excited about GNU and want to help. Many programmers are unhappy about the commercialization of system software. It may enable them to make more money, but it requires them to feel in conflict with other programmers in general rather than feel as comrades. The fundamental act of friendship among programmers is the sharing of programs; marketing arrangements now typically used essentially forbid programmers to treat others as friends. The purchaser of software must choose between friendship and obeying the law. Naturally, many decide that friendship is more important. But those who believe in law often do not feel at ease with either choice. They become cynical and think that programming is just a way of making money. By working on and using GNU rather than proprietary programs, we can be hospitable to everyone and obey the law. In addition, GNU serves as an example to inspire and a banner to rally others to join us in sharing. This can give us a feeling of harmony which is impossible if we use software that is not free. For about half the programmers I talk to, this is an important happiness that money cannot replace. How You Can Contribute I am asking computer manufacturers for donations of machines and money. I'm asking individuals for donations of programs and work. One consequence you can expect if you donate machines is that GNU will run on them at an early date. The machines should be complete, ready to use systems, approved for use in a residential area, and not in need of sophisticated cooling or power. I have found very many programmers eager to contribute part-time work for GNU. For most projects, such part-time distributed work would be very hard to coordinate; the independently-written parts would not work together. But for the particular task of replacing Unix, this problem is absent. A complete Unix system contains hundreds of utility programs, each of which is documented separately. Most interface specifications are fixed by Unix compatibility. If each contributor can write a compatible replacement for a single Unix utility, and make it work properly in place of the original on a Unix system, then these utilities will work right when put together. Even allowing for Murphy to create a few unexpected problems, assembling these components will be a feasible task. (The kernel will require closer communication and will be worked on by a small, tight group.) If I get donations of money, I may be able to hire a few people full or part time. The salary won't be high by programmers' standards, but I'm looking for people for whom building community spirit is as important as making money. I view this as a way of enabling dedicated people to devote their full energies to working on GNU by sparing them the need to make a living in another way. Why All Computer Users Will Benefit Once GNU is written, everyone will be able to obtain good system software free, just like air. This means much more than just saving everyone the price of a Unix license. It means that much wasteful duplication of system programming effort will be avoided. This effort can go instead into advancing the state of the art. Complete system sources will be available to everyone. As a result, a user who needs changes in the system will always be free to make them himself, or hire any available programmer or company to make them for him. Users will no longer be at the mercy of one programmer or company which owns the sources and is in sole position to make changes. Schools will be able to provide a much more educational environment by encouraging all students to study and improve the system code. Harvard's computer lab used to have the policy that no program could be installed on the system if its sources were not on public display, and upheld it by actually refusing to install certain programs. I was very much inspired by this. Finally, the overhead of considering who owns the system software and what one is or is not entitled to do with it will be lifted. Arrangements to make people pay for using a program, including licensing of copies, always incur a tremendous cost to society through the cumbersome mechanisms necessary to figure out how much (that is, which programs) a person must pay for. And only a police state can force everyone to obey them. Consider a space station where air must be manufactured at great cost: charging each breather per liter of air may be fair, but wearing the metered gas mask all day and all night is intolerable even if everyone can afford to pay the air bill. And the TV cameras everywhere to see if you ever take the mask off are outrageous. It's better to support the air plant with a head tax and chuck the masks. Copying all or parts of a program is as natural to a programmer as breathing, and as productive. It ought to be as free. Some Easily Rebutted Objections to GNU's Goals "Nobody will use it if it is free, because that means they can't rely on any support." "You have to charge for the program to pay for providing the support." If people would rather pay for GNU plus service than get GNU free without service, a company to provide just service to people who have obtained GNU free ought to be profitable. We must distinguish between support in the form of real programming work and mere handholding. The former is something one cannot rely on from a software vendor. If your problem is not shared by enough people, the vendor will tell you to get lost. If your business needs to be able to rely on support, the only way is to have all the necessary sources and tools. Then you can hire any available person to fix your problem; you are not at the mercy of any individual. With Unix, the price of sources puts this out of consideration for most businesses. With GNU this will be easy. It is still possible for there to be no available competent person, but this problem cannot be blamed on distibution arrangements. GNU does not eliminate all the world's problems, only some of them. Meanwhile, the users who know nothing about computers need handholding: doing things for them which they could easily do themselves but don't know how. Such services could be provided by companies that sell just hand-holding and repair service. If it is true that users would rather spend money and get a product with service, they will also be willing to buy the service having got the product free. The service companies will compete in quality and price; users will not be tied to any particular one. Meanwhile, those of us who don't need the service should be able to use the program without paying for the service. "You cannot reach many people without advertising, and you must charge for the program to support that." "It's no use advertising a program people can get free." There are various forms of free or very cheap publicity that can be used to inform numbers of computer users about something like GNU. But it may be true that one can reach more microcomputer users with advertising. If this is really so, a business which advertises the service of copying and mailing GNU for a fee ought to be successful enough to pay for its advertising and more. This way, only the users who benefit from the advertising pay for it. On the other hand, if many people get GNU from their friends, and such companies don't succeed, this will show that advertising was not really necessary to spread GNU. Why is it that free market advocates don't want to let the free market decide this? "My company needs a proprietary operating system to get a competitive edge." GNU will remove operating system software from the realm of competition. You will not be able to get an edge in this area, but neither will your competitors be able to get an edge over you. You and they will compete in other areas, while benefitting mutually in this one. If your business is selling an operating system, you will not like GNU, but that's tough on you. If your business is something else, GNU can save you from being pushed into the expensive business of selling operating systems. I would like to see GNU development supported by gifts from many manufacturers and users, reducing the cost to each. "Don't programmers deserve a reward for their creativity?" If anything deserves a reward, it is social contribution. Creativity can be a social contribution, but only in so far as society is free to use the results. If programmers deserve to be rewarded for creating innovative programs, by the same token they deserve to be punished if they restrict the use of these programs. "Shouldn't a programmer be able to ask for a reward for his creativity?" There is nothing wrong with wanting pay for work, or seeking to maximize one's income, as long as one does not use means that are destructive. But the means customary in the field of software today are based on destruction. Extracting money from users of a program by restricting their use of it is destructive because the restrictions reduce the amount and the ways that the program can be used. This reduces the amount of wealth that humanity derives from the program. When there is a deliberate choice to restrict, the harmful consequences are deliberate destruction. The reason a good citizen does not use such destructive means to become wealthier is that, if everyone did so, we would all become poorer from the mutual destructiveness. This is Kantian ethics; or, the Golden Rule. Since I do not like the consequences that result if everyone hoards information, I am required to consider it wrong for one to do so. Specifically, the desire to be rewarded for one's creativity does not justify depriving the world in general of all or part of that creativity. "Won't programmers starve?" I could answer that nobody is forced to be a programmer. Most of us cannot manage to get any money for standing on the street and making faces. But we are not, as a result, condemned to spend our lives standing on the street making faces, and starving. We do something else. But that is the wrong answer because it accepts the questioner's implicit assumption: that without ownership of software, programmers cannot possibly be paid a cent. Supposedly it is all or nothing. The real reason programmers will not starve is that it will still be possible for them to get paid for programming; just not paid as much as now. Restricting copying is not the only basis for business in software. It is the most common basis because it brings in the most money. If it were prohibited, or rejected by the customer, software business would move to other bases of organization which are now used less often. There are always numerous ways to organize any kind of business. Probably programming will not be as lucrative on the new basis as it is now. But that is not an argument against the change. It is not considered an injustice that sales clerks make the salaries that they now do. If programmers made the same, that would not be an injustice either. (In practice they would still make considerably more than that.) "Don't people have a right to control how their creativity is used?" "Control over the use of one's ideas" really constitutes control over other people's lives; and it is usually used to make their lives more difficult. People who have studied the issue of intellectual property rights carefully (such as lawyers) say that there is no intrinsic right to intellectual property. The kinds of supposed intellectual property rights that the government recognizes were created by specific acts of legislation for specific purposes. For example, the patent system was established to encourage inventors to disclose the details of their inventions. Its purpose was to help society rather than to help inventors. At the time, the life span of 17 years for a patent was short compared with the rate of advance of the state of the art. Since patents are an issue only among manufacturers, for whom the cost and effort of a license agreement are small compared with setting up production, the patents often do not do much harm. They do not obstruct most individuals who use patented products. The idea of copyright did not exist in ancient times, when authors frequently copied other authors at length in works of non-fiction. This practice was useful, and is the only way many authors' works have survived even in part. The copyright system was created expressly for the purpose of encouraging authorship. In the domain for which it was invented--books, which could be copied economically only on a printing press--it did little harm, and did not obstruct most of the individuals who read the books. All intellectual property rights are just licenses granted by society because it was thought, rightly or wrongly, that society as a whole would benefit by granting them. But in any particular situation, we have to ask: are we really better off granting such license? What kind of act are we licensing a person to do? The case of programs today is very different from that of books a hundred years ago. The fact that the easiest way to copy a program is from one neighbor to another, the fact that a program has both source code and object code which are distinct, and the fact that a program is used rather than read and enjoyed, combine to create a situation in which a person who enforces a copyright is harming society as a whole both materially and spiritually; in which a person should not do so regardless of whether the law enables him to. "Competition makes things get done better." The paradigm of competition is a race: by rewarding the winner, we encourage everyone to run faster. When capitalism really works this way, it does a good job; but its defenders are wrong in assuming it always works this way. If the runners forget why the reward is offered and become intent on winning, no matter how, they may find other strategies--such as, attacking other runners. If the runners get into a fist fight, they will all finish late. Proprietary and secret software is the moral equivalent of runners in a fist fight. Sad to say, the only referee we've got does not seem to object to fights; he just regulates them ("For every ten yards you run, you are allowed one kick."). He really ought to break them up, and penalize runners for even trying to fight. "Won't everyone stop programming without a monetary incentive?" Actually, many people will program with absolutely no monetary incentive. Programming has an irresistible fascination for some people, usually the people who are best at it. There is no shortage of professional musicians who keep at it even though they have no hope of making a living that way. But really this question, though commonly asked, is not appropriate to the situation. Pay for programmers will not disappear, only become less. So the right question is, will anyone program with a reduced monetary incentive? My experience shows that they will. For more than ten years, many of the world's best programmers worked at the Artificial Intelligence Lab for far less money than they could have had anywhere else. They got many kinds of non-monetary rewards: fame and appreciation, for example. And creativity is also fun, a reward in itself. Then most of them left when offered a chance to do the same interesting work for a lot of money. What the facts show is that people will program for reasons other than riches; but if given a chance to make a lot of money as well, they will come to expect and demand it. Low-paying organizations do poorly in competition with high-paying ones, but they do not have to do badly if the high-paying ones are banned. "We need the programmers desperately. If they demand that we stop helping our neighbors, we have to obey." You're never so desperate that you have to obey this sort of demand. Remember: millions for defense, but not a cent for tribute! "Programmers need to make a living somehow." In the short run, this is true. However, there are plenty of ways that programmers could make a living without selling the right to use a program. This way is customary now because it brings programmers and businessmen the most money, not because it is the only way to make a living. It is easy to find other ways if you want to find them. Here are a number of examples. A manufacturer introducing a new computer will pay for the porting of operating systems onto the new hardware. The sale of teaching, hand-holding and maintenance services could also employ programmers. People with new ideas could distribute programs as freeware, asking for donations from satisfied users, or selling hand-holding services. I have met people who are already working this way successfully. Users with related needs can form users' groups, and pay dues. A group would contract with programming companies to write programs that the group's members would like to use. All sorts of development can be funded with a Software Tax: Suppose everyone who buys a computer has to pay x percent of the price as a software tax. The government gives this to an agency like the NSF to spend on software development. But if the computer buyer makes a donation to software development himself, he can take a credit against the tax. He can donate to the project of his own choosing--often, chosen because he hopes to use the results when it is done. He can take a credit for any amount of donation up to the total tax he had to pay. The total tax rate could be decided by a vote of the payers of the tax, weighted according to the amount they will be taxed on. The consequences: * the computer-using community supports software development. * this community decides what level of support is needed. * users who care which projects their share is spent on can choose this for themselves. In the long run, making programs free is a step toward the post-scarcity world, where nobody will have to work very hard just to make a living. People will be free to devote themselves to activities that are fun, such as programming, after spending the necessary ten hours a week on required tasks such as legislation, family counseling, robot repair and asteroid prospecting. There will be no need to be able to make a living from programming. We have already greatly reduced the amount of work that the whole society must do for its actual productivity, but only a little of this has translated itself into leisure for workers because much nonproductive activity is required to accompany productive activity. The main causes of this are bureaucracy and isometric struggles against competition. Free software will greatly reduce these drains in the area of software production. We must do this, in order for technical gains in productivity to translate into less work for us. Copyright (C) 1985 Richard M. Stallman Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the copyright notice and permission notice are preserved, and that the distributor grants the recipient permission for further redistribution as permitted by this notice. Modified versions may not be made. NEMACS.tut100644 0 0 70705 4632773217 11026 0ustar rootwheel ============================== ܸ GNUEMACS(NEmacs) ============================== ա Ԥϡֽ괷פåȡ˺Ƥ ">>" ϤޤԤϡλ򤹤٤ؼƤޤ NEmacsΥޥɤϤȤˤϡŪ˥ȥ롦ʥ ȥåפˡCTRL 뤤ϡCTL Ƚ񤤤Ƥˤ᥿̡ס ȤˤȤޤǡCONTROL Ȥ META Ȥˡ 褦ʵȤȤˤޤ C-<ʸ> ȥ롦򲡤ޤޡ<ʸ>򲡤ޤ㤨С C-f ϡȥ롦򲡤ʤ f Υ򲡤Ȥ ̣ޤ <> >> ǤϡC-vView Next Screen; β̤򸫤ˤ򥿥פ ߤƲβ̤˿ʤळȤǤޤ ESC <ʸ> ס򲡤ƤΥ줫<ʸ>򲡤 ա <ʸ>ϡʸǤ⾮ʸǤ⥳ޥɤȤƤƱ̣ˤʤ ޤ᥿Ȥʤ ESC <ʸ> M-<ʸ> (᥿򲡤ޤ<ʸ>򲡤) Ȥޤ פǤ EmacsλϡC-x C-c 򥿥פޤEmacscsh 鵯ưƤ硢ڥɤʰŪ˻ߤ)Ȥ ޤEmacs򥵥ڥɤˤϡC-z򥿥פޤ ơ줫ϡʬɤ߽顢C-v ϤƹԤäƲ β̤ȼβ̤ȤǤϡɽƤ˲ʸνŤʤ꤬ޤ ϡɽƤƤϢ³Ƥ뤳ȤȽ褦ˤ뤿Ǥ ޤϡեưƹԤˡΤɬפޤC-v ˤ ä˿ʤळȤϤ⤦ȽޤˤϡESC v 򥿥פޤ >> ESC v C-v Ȥäơ˰ư뤳Ȥ򲿲󤫻Ƥߤʤ ==== ե˸ƹԤˤϡΥޥɤȤޤ C-v ˰ʬʤ ESC v ˰ʬ C-l ̤ľΤȤΤäԤ ̤ˤ褦ˤ >> 뤬ɤˤ뤫ζ᤯ˤɤʥƥȤ񤫤Ƥ ФʤC-l 򥿥פ뤬ɤ˰ư ᤯ΥƥȤϤɤʤäĴ٤Ƥߤʤ Ūʥ ====================== ΰưϤǤ褦ˤʤޤ٤ϡ̤ǡξ ư뤿ˡ򲱤ޤ礦ˤϤĤΤޤ ˡϡ(previous)(next)(forward)(backward)˰ư륳ޥɤ ȤǤΥޥɤϤ줾졢C-p, C-n, C-f,C-b ˳Ƥ ꡢߤξ꤫鿷˥ưޤޤǽ񤱤С ιԡC-p : : ʸC-b .... ߤΥ .... ʸC-f : : ιԡC-n ϡ줾졢Previous, Next, Backward, Forward Ƭʸˤʤä Τǡ䤹Ǥ礦ϡŪʥưޥɤǤꡢ ĤǤȤΤǤ >> C-n 򲿲󤫥פʺʤɤǤˤιԤޤǥ ưʤ >> C-f ȤäƹԤۤɤ˰ưC-p DzԤ˰ưƤߤʤ ΰ֤Ѳդʤ >> ԤƬ C-b 򥿥פƤߤʤϤɤ˰ưޤ ˤ⤦ C-b 򥿥פ٤ C-f ǹʤ 뤬ۤȤɤʤޤ ̤Ƭۤƥư褦Ȥȡˤ ƥȤươϾ˲ˤ褦ˤޤ >> C-n Ȥäơ̤βü겼˰ưƤߤʤ ޤΰ֤ϤɤѤޤ ʸñ̤ΰưǤϤޤɤäȻפʤ顢ññ̤ǰư뤳Ȥ ǤޤESC f ǰñʬ˿ʤߡESC b ǰñʬޤ ա ܸˤĤƤϡñڤܤǧ뤳ȤϤǤޤ󤬡 ŪʸñڤܤȤƤޤ >> ESC f ESC b 򲿲󤫥פƤߤʤC-f C-b ʻѤ ߤʤ C-f C-b Ф롢ESC f ESC b ܤޤ礦¿ 硢ESC <ʸ>ʸطν˻Ȥ졢C-<ʸ>Ϥäȴ ŪоݡʸȤԤȤˤФ˻Ȥޤ C-a C-e ΤäƤʥޥɤǤC-a ϥԤƬ ưC-e ϹԤ˰ưޤ >> C-a 򣲲󡢤줫 C-e 򣲲ϤƤߤʤΥޥ 򣲲ʾ巫֤Ƥ⡢ϤʾưʤȤա ġñʥưޥɤޤեƬ˰ư ESC < ȡե˰ư ESC > Ǥ ƥǥ¸ߤ֤֥ݥȡפȸƤӤޤ СϡƥȤΤɤ˥ݥȤ뤫̾ǼƤΤǤ ʲñʰưˤĤ󤷤ޤΤʤˤϡññ̤Ǥ ưޥɤޤޤƤޤ C-f ʸ˿ʤ C-b ʸ ESC f ñ˿ʤ ESC b ñ C-n ιԤ˰ư C-p ιԤ˰ư ESC ] ν˰ư ESC [ Ƭ˰ư C-a Ԥκǽ˰ư C-e ԤκǸ˰ư ESC < եκǽ˰ư ESC > եκǸ˰ư >> ơΥޥɤƤߤʤΥޥɤϡǤ⤷Ф ȤΤǤǸĤǤϡξȤΥ줿Ȥ˰ư Τǡ C-v ESC v ȤäƤä褦ˤʤ Emacs¾ΥޥɤƱͤˡΥޥɤˤϡ֤β ꤹ Ϳ뤳ȤǤޤΤˤϡޥɤϤˡ C-u³Ʒ֤Ϥޤ 㤨СC-u 8 C-f Ȥȡʸʬ˰ưޤ >> C-n 뤤 C-p ŬʰꤷơΰưǤʤ٤ ιԤζ᤯褦ˤƤߤʤ C-v ESC v ˤĤƤϾ㤤ޤξ硢ꤵ줿ιԤ ̤ư뤳Ȥˤʤޤ >> C-u 3 C-v ϤƤߤʤ ˤϡC-u 3 ESC v ȤФ褤ΤǤ ߥޥ ============ C-g ȤޥɤǡϤɬפȤ褦ʥޥɤߤ뤳Ȥ Ǥޤ㤨СϤƤ䡢İʾΥϤɬפȤ ޥɤϤƤˡ᤿ʤä顢C-g ȤɤΤ >> C-u 100 򥿥פư򣱣ꤷC-g 򥿥פʤ ΤȤ C-f 򥿥פƤߤʤʸưޤ⤷ ְä ESC ϤƤޤä⡢C-g Ϥмä 顼 ====== ˤϡEmacsǵƤʤ򤷤ƤޤȤޤ㤨С ޥɤƤʤȥ롦ϤƤޤäˤϡEmacs ϥ٥Ĥ餷ˡ̤ΰֲˡäɽޤ EmacsΥСˤäƤϡԤ˽񤫤Ƥ뤳Ȥ¹ԤǤ 礬ޤͤʾˤϡ顼åɽޤ顢 ư򲡤ơμʬ˿ʤDz ɥ ========== EmacsϴĤΥɥĤȤȡΤ줾ФƥƥȤ ɽ뤳ȤǤޤإפ䡢ĤΥޥɤνϤɽ뤿 ˸줿;ʬʥɥäˡΥޥɤΤɬפޤ C-x 1 ɥ򣱤Ĥˤ롣 C-x 1 ϡ¾ΥɥäơΤ륦ɥ򡢲 ˹ޤ >> 򤳤ιԤ˻äƤơC-u 0 C-l ȥפޤ >> C-h k C-f ȥפʤɥ C-f ޥɤΥɥ Ȥɽ뤿˸ƱˡΥɥɤΤ褦 ˽̤फѻʤ >> C-x 1ȥפơɥȤθƤɥäʤ Ⱥ ========== ƥȤ򥿥פСñˤ򥿥פǹޤܤ ʸ'A','7','*',''ʤɡˤEmacsˤäƥƥȤǤȤߤʤ졢 ΤޤޤԤνϲʸɽ졢Ϥˤ 򥿥פޤ ľϤʸˤϡ Ϥޤ ϡ ܡɤǡDeleteפȽ񤤤Ƥ륭򲡤ϤޤDeleteפΤ ˡRuboutפȽ񤤤Ƥ뤫Τޤ󡣤Ūˤϡ ϡ Τ֤ľʸޤ >> ʸ򤤤Ĥפ줫餽 Ȥäƺ ʤ >> ޡۤޤǥƥȤ򥿥פʤƥȤԤ ʾĹʤȡιԤϲ̤Ϥ߽Фơַ³פޤ üˤ'\'ϡιԤ³Ƥ뤳ȤɽƤޤ EmacsϡԽΰ֤褦˹Ԥ򥹥뤷ޤ α뤤Ϻüˤ'\'ϡ˹Ԥޤ³Ƥ뤳 ȤɽƤޤ ϡʸϤºݤˤä褯ȽǤ礦 >> ۤϤ³줿Ԥξ˥äƤC-d ǥ ȤơƥȤԤ˼ޤ褦ˤƤߤʤ³ ɽ'\'Ͼäޤ͡ >> ԤƬ˰ư ϤʤϤι ľιԶڤΤǡιԤιԤȤĤʤäƤޤ ޤĤʤäԤ̤Ĺʤȡ³ɽ 礦 >> 򲡤ơ⤦ٹԶڤʤ EmacsΤۤȤɤΥޥɤϡ֤βͿ뤳ȤǤޤ ΤȤϡʸˤĤƤƤϤޤޤ >> C-u 8 * ϤƤߤʤɤʤޤ ĤιԤδ֤˶ԤꤿˤϡܤιԤƬ˹ԤC-o Ϥޤ >> ŬʹԤƬ˹Ԥ C-o ϤƤߤʤ ǡEmacsǡƥȤϤޤְ㤤äȤŪ ˡؤȤˤʤޤʸƱͤˡñԤ뤳ȤǤ ޤˤĤ󤹤ȼΤ褦ˤʤޤ ľʸ C-d Τʸ ESC ľñ ESC d ְʹߤˤñ C-k ֤ޤǤ ǡ򸵤ᤷʤ뤳ȤޤEmacsϡ ʸ礭ñ̤ǺԤäˤϡƤ¸Ƥޤ ᤹ˤϡC-y ȤޤդΤϡC-y Ԥä ϤʤɤˤǤ뤳ȤǤC-y ϡ¸줿ƥȤ򸽺ߥ Τ뤿ΥޥɤǤ顢ȤäƥƥȤΰư ȤǤޤ Ԥޥɤˤϡ"Delete" ޥɤȡ"Kill" ޥɤȤ "Kill" ޥɤǤϺ줿Τ¸ޤ"Delete" ޥɤ ¸ޤ󡣤֤Ϳȡ¸ޤ >> C-n 򣲲ۤɥפơ̤Ŭʾ˰ưʤơ C-k ǡιԤʤ ܤ C-k ǤιԤƤ졢⤦ C-k Ϥȡ ԼȤޤ⤷C-k ˷֤ꤷˤϡβ ιԤƤȹԼȤȤƱˡ˺ޤ 줿ƥȤϡ¸ƤΤǡФȤǤ ΤˤϡC-y 򥿥פޤ >> C-y Ƥߤʤ C-k ٤³ƹԤȡƥȤϡޤȤ¸졢C-y ǡƤФޤ >> C-k ٤⥿פƤߤʤ >> ƥȤФˤϡC-y ǤԲ˰ư C-y 򥿥פƤߤʤǥƥȤΥԡǤ Ǥ ߲ΥƥȤ¸Ƥơ¾ΥƥȤȤɤ ʤǤ礦C-y ϡäȤǶ줿ΤФޤ >> Ԥư̤ιԤʤC-y Ԥ ȡܤιԤޤ ä(UNDO) ============== ĤǤ⡢ƥȤѹɤ⡢ȤᤷȤC-x u ľޤ̤ϴְ㤨ޥɤ̵ˤƯ򤷤ޤ֤UNDO ԤʤȤϡ٤⤽ΥޥɤԤʤн褦ˤʤäƤޤ >> ιԤC-kǾäƲơC-x uᤷƲ C-_ϡUNDOԤʤ⤦ĤΥޥɤǤǽϡC-x uƱǤ C-_C-x uUNDOβͿ뤳Ȥޤ ե ======== ƥȤؤѹʵŪˤ뤿ˤϡե¸ʤ ʤޤ¸ʤȡۤɤѹϡEmacsλƱ˼ Ƥޤޤ ޸ƤեФơʤԽԤäΤ񤭹ߤޤ ޸ƤեȤϡñˤԽƤե뼫ΤΤȤǤ ʤե򥻡֡¸ˤޤǡޤǤѹԽƤ ե˽񤭹ޤϤޤ󡣤ϡʤΤ褦˹Ԥ ʤΤˡޤѹäΤ˽񤭹ޤ褦ʻʤ褦 Ǥ ֤ԤäǤѹΤְäƤΤEmacs̾ ѤƥꥸʥΥեĤޤ : ޤEmacs¬λ֤ФΥߥ󥰤Ȥ˼ưŪ ԽƤեƤ̾Ѥե˥֤ ޤˤäơξϹԤäѹФǾ¤ ǺѤ褦ˤʤäƤޤ ̤β򸫤ȡΤ褦ʴǥ⡼ɥ饤ɽƤȻ ޤ () --**-NEmacs: NEMACS.tut (Fundamental) ---55%------[JJJ-]-------- Emacs塼ȥꥢΥԡNEMACS.tutȸƤФƤޤե եɡʥե򸫤ĤƥХåեɤ߹ळȡˤȡNEMACS.tut ʬɽޤ㤨Сnew-fileȤ̾Υեեɤʤ С"NEmacs: new-file"Ȥ⡼ɥ饤ˤʤǤ礦 ա ⡼ɥ饤ˤĤƤϸۤޤԤ եեɤꡢ֤ꤹ륳ޥɤϡޤǤΤ Ȥϰ㤤ĤʸʤäƤޤC-x ³Ϥʸե ФƹԤɽޤ ⤦ĤޤǤΤΤȰ㤦ϡեɤλե̾Emacs ޤΤȤüɤ߹Ǥ륳ޥɤȸäƤޤ ա ξϥե̾Ǥ C-x C-f ե򸫤Ĥʥեɤ Emacsϥե̾ʹƤޤϡ̤βιԤ˸ޤե ̾ꤷƤʬϡߥ˥ХåեȸƤФΤǤߥ˥Хåե ͤʻȤ򤷤ޤե̾³ơ꥿󥭡򲡤ȡߥ˥ åեɽƤƤϤ⤦ɬפǤϤʤʤΤǾäƤޤޤ >> C-x C-fȥפC-gȥפƲߥ˥Хåե äޤC-x C-fޥɤäޤȸǡ ե򸫤Ĥ褦ʤȤϤޤ ٤ϥե򥻡֤Ƥߤޤ礦ޤǤѹ¸뤿ˤϼ Τ褦ʥޥɤȤޤ C-x C-s ե򥻡֤ EmacsƤϥե˽񤭽Фޤ֤ꥸʥ եϿ̾ĤƻĤƤΤƤϼޤ󡣤 ο̾ϥꥸʥΥե̾'~'ĤΤǤ ֤ȡEmacsϥ֤ե̾ɽޤ >> C-x C-sȥפƥ塼ȥꥢΥԡ򥻡֤Ʋ ̤β"Wrote ...../NEMACS.tut"ɽޤ ե餢äեեɤ 褦ʥե򤷤ޤơΥեɤե˥פƤ ե򥻡֤褦Ȥ˽ơEmacsϺޤԽƤ ե˽񤭹ߤޤ Хåե ======== ⤷ܤΥե C-x C-f ǼФȡܤΥեEmacs ˻ĤޤEmacsˤե뤫ƥȤɤ߹¸Ƥ ΤϥХåեȸƤФޤեμФϡEmacs˿Хåե ޤ Emacs¸ƤХåեΥꥹȤ򸫤ˤϡΤ褦˥פ ޤ C-x C-b >> C-x C-b ȥפʤ줾ΥХåեɤΤ褦̾ äƤ뤫ơɤΤ褦ʥե̾ĤƤΤѻ ХåեˤϥեȰפʤΤ⤢ޤȤС "*Buffer List*" ȤեϤޤ󡣤 C-x C-b ˤäƺ ХåեꥹȤФƤΥХåեǤ ʤƤEmacsɥˤ롢ɤʥƥȤǤ⡢줫 ΥХåեˤޤ >> ХåեꥹȤä C-x 1 ȥפʤ ⤷եΥƥȤѹԤʤäƤ顢¾Υե Ȥ顢ǽΥեϥ֤Ƥޤ󡣤ѹEmacsΥ бХåե˹ԤʤƤޤ ܤΥեбХåեäꡢǥåȤꤷƤ⡢ ܤΥեбХåեˤϲƶͿޤ󡣤ϤȤƤ פޤܤΥեбХåեäƤΩ ˡǤ C-x C-s ǥХåե򥻡֤뤿 C-x C-f ǥХåեڤؤ ǤǼΥޥɤȤޤ C-x s ߤХåե򥻡֤롣 C-x s ƤѤХåեƤե˥֤ޤλҤ ĤҤȤĤ(֤٤)ХåեФơ֤뤫ʤyn ޤɽϲ̤βιԤɽޤ㤨СΤ褦ˤǤ Save file /usr/private/yours/NEMACS.tut? (y or n) ޥɤγĥ ============== ǥˤϡȥ롦᥿ϤǤΤ⤺ ¿Υޥɤޤ򰷤ˡĥeXtend˥ޥɤ ȤޤˤϡʲΣĤμबޤ C-x ʸˤĥ³ưʸϤޤ ESC x ̾ˤĥ³ƥޥɤ̾Ϥޤ ϰ̤ˡɤ⡢ޤǸƤΤۤˤˤѤ ʤޥɤΤΤΤǤC-x C-f ʥեɡˤ C-x C-sʥ֡ Ϥ֤Ǥ¾ˡC-x C-cʥǥνλˤ⤽Ǥ C-zEmacsȴΤɤȤˡǤEmacsλ뤳Ȥʤ öcshΥ٥ˤϰɤˡȸǤ礦C-zԤʤƤ EmacsϥȥåפƤǡƤ˲ȤȤϤޤ : X-windowǹԤʤäƤ硢⤷ϻѤƤ륷 shλϡθ¤ǤϤޤ C-x ޥɤϡ󤢤ޤǤ˳ؤΤϰʲΤΤǤ C-x C-f եԽFind C-x C-s ե¸Save C-x C-b ХåեꥹȤɽ C-x C-c ǥλ롣ե¸ϡưŪˤϹԤޤ 󡣤⤷ե뤬ѹƤСե¸ 򤹤ΤɤʹƤޤ¸ƽλ̤ˡ ϡC-x C-s C-x C-c Ȥ뤳ȤǤ ̾ˤĥޥɤˤϡޤȤʤΤ䡢Υ⡼ɤǤ ȤʤΤʤɤޤȤơ"command-apropos" Ȥꤢޤ ΥޥɤϥɤϤ˥ޥåƤΥޥɤ̾ɽ ޤESC x ȥפȡ꡼β "M-x" ɽޤ Фơ¹Ԥ륳ޥɤ̾ʺξ硢"command-apropos"ˤϤޤ "command-a" ޤϤ她ڡСʬϼưŪޤ θ塢ɤʹޤ顢Τꤿʸ򥿥פޤʤ ɤʤȡƤΥޥɤɽޤ >> ESC x 򥿥פ³ơ"command-apropos" 뤤 "command-a" ȥפޤˡ"kanji" ȥפޤ 줿֥ɥפäˤϡC-x 1 ȥפޤ ⡼ɥ饤 ============ ⤷äȥޥɤǤäʤС̤βΥꥢȸƤФ ǤäΤɽޤꥢϲ̤1Ф󲼤ιԤǤ ιԤϡ⡼ɥ饤ȸƤФƤޤ⡼ɥ饤Ϥɽ ƤǤ礦 --**-NEmacs: NEMACS.tut (Fundamental) ---NN%----[JJJ-]------- : NN%NNϿäƤޤʤȤäƤEmacsΥ⡼ ɥ饤Ȱ㤦ΤʤɡƤʤ褦ˡ㤨С uptimeɽƤΤϡdisplay-timeȤǽư 뤫Ǥ ιԤˤä¿ͭѤʾޤ ʤƤե̾ɽƤޤNN%ϸߥ꡼ ˥եΰ־夫鲿ѡܤɽƤ뤫򼨤Ƥޤե ΰֺǽɽƤʤС--Top--ɽƤޤեΰ ǸɽƤʤС--Bot--ɽޤ̤˥եƤ ɽƤʤС--All--ɽޤ ⡼ɥ饤ξ̤ϡɤʥ⡼ɤäƤ뤫򼨤Ƥޤ ߤϡǥեȤFundamentaläƤޤ᥸㡼⡼ɤΰ EmacsLisp modeText modeΤ褦ʤȤʤץƥȤ ФƥǥåȤԤδĤΥ᥸㡼⡼ɤäƤޤɤʻ Ǥɬ줫Υ᥸㡼⡼ɤξ֤ˤʤäƤޤ 줾Υ᥸㡼⡼ɤϴĤΥޥɤ㤦񤤤ˤƤ ޤ夲Ƥߤޤ礦ץ˥Ȥ륳ޥɤ ޤȤɤͤʷˤ뤫ϡƥץˤäư㤤ޤ 줾Υ᥸㡼⡼ɤϡƤޤ 줾Υ᥸㡼⡼ɤ뤿Υޥɤϥ⡼̾γĥ줿 ˤʤäƤޤ㤨СM-x fundamental-modeFundamental뤿ΤΤ ⤷Ѹ򥨥ǥåȤʤСText modeޤ >> M-x text-mode ȥפʤ ߤΥ᥸㡼⡼ɤˤĤƤΥɥȤ򸫤ϡC-h mȥ ޤ >> C-h m ȤäText modeFundamental modeΰ㤤Ĵ٤ʤ >> C-x 1ǥɥȤ̤äʤ ֱüˤϴηϤ˴ؤե饰ξ֤ɽƤޤ NEmacsϡեϡϡ̽ϤˤĤơ줾Ω˴ ꤵ뤳Ȥޤ >> ⡼ɥ饤"[JJJ-]","[SSS-]","[EEE-]""['JSEN-' Ȥ߹碌]"ɽƤ뤫ɤǧʤ ˥եϡܡϡɽץϤδɤ ƤꡢJJISSϥեJISEEUCɡN̵Ѵ-̤̣ ޤɤδɤѤ뤫ɤڻȤʤϡɽ ˤäɽޤߤɽƤΤǴɤѽ֤ˤʤ ƤޤɤȤɤϡ켫ΤON/OFFΥȥˤʤäƤ C-x C-k tڤ괹ޤ ϡٴɤOFFƤ顢⤦ONԤäƤߤޤ >> C-x C-k t2ٹԤʤ ϥ⡼ɤJISɤȤʤäƤ⤷ʤλȤäƤü ˥᥿դƤʤ顢סˤȤȤ ޤλ᥿λȤϥȥ롦Ʊͤ˲ʤʸ 򥿥פޤESC <ʸ>M-<ʸ>ƱƯ򤷤ޤޤǤESC <ʸ>ȹԤʤäƤȤM-<ʸ>ȤʤޤդʤФʤʤ ϡեJISEUCɤλϻѤǤޤ ɤڤؤϡơΥХåեФƤΤͭǤ줾Ρ ɻˤĤƤϡC-h a change Ǹ뤳Ȥޤ >> C-h a change ǽФƤɥΡchange-display- code, change-fileio-code, change-input-code, change-process-code ɤߤʤ ===== ʸ򡢥եǡϸˡõǤޤϤ ޥɤϡְʹߤ򸡺ʤ C-sְʤ C-r ǤC-s 򥿥פȡꥢ "I-search:"Ȥʸ󤬥ץ ץȤȤɽޤESC򲡤ȡλǤޤ >> C-sǸϤޤޤ줫顢äȣʸ"cursor"Ȥ ñϤޤʸϤ뤴Ȥˡϡɤư 򤷤ޤ? >> ⤦ C-s 򥿥פȡ"cursor"򸫤Ĥޤ >> 򣴲Ϥơư򸫤ʤ >> ESC򲡤ơλޤ õʸ򥿥Ǥ⡢פʸʬǡϤޤ ʸõˤϡƤC-s򥿥פޤ⤷ʸ¸ߤʤä顢 åɽޤC-g Ǥ⽪λǤޤ ¹ϤȡʸΣָʸäޤ ơϡΰ֤ޤȤС"cu"ȥפơǽ "cu"ΰ֤˥뤬ưȤޤϤȡ 饤'u'äϡ'u'򥿥פˡ뤬ä'c'ΰ ֤ˡưޤ ¹ˡC-s C-r ʳΥȥʸ򥿥פȡ λޤ C-s ϡߤΥְʹߤ˽ФƤ븡ʸõޤ⤷ õä顢C-r 򥿥פ뤳ȤǡǤޤC-s C-r ϡȿФʤǡƱƯ򤷤ޤ ꥫ ǥƥ ٥ Ȥɤܰդˡ˥ꥫ ǥƥ ٥ȸƤФ֤ 뤳Ȥޤ᥸㡼⡼ɤξ'()'β'[]'ǰϤ Τ⡼ɥ饤ɽޤ㤨С(Fundamental)ɽ [(Fundamental)]Τ褦ˤʤޤ : Ǥϥꥫ ǥƥ ٥뼫ΤˤĤƤ ޤ ꥫ ǥƥ ٥뤫ȴǤ뤿ˤϡM-x top-level ȥפޤ >> ƤߤƲ꡼"Back to top level"ɽ ϡλߤԤ줿ϡǤ˥ȥåץ٥ˤΤǤM-x top-levelϡƶͿƤޤ ꥫ ǥƥ ٥뤫ȴФΤФƤC-gϸޤ إ ====== EmacsˤϡΩĵǽꡢǡ٤Ƥ뤳 ϡԲǽǤޤΤʤ¿εǽؤ֤ˤϡȸƤ C-h 򥿥פ뤳Ȥǡξ뤳ȤǤޤ ȤϡC-h 򥿥פ³ɬפʥץʸפޤ 狼ʤСC-h ? ȥפȡɤʥץ󤬤Τɽ ⤷C-h 򥿥פƤ鵤Ѥä顢C-g 򥿥פСä ȤǤޤ ǤŪʤΤϡC-h c Ǥ³ƥϤȡΥ ɤˤĤƤûɽޤ >> C-h c C-p ȥפƤߤʤ"C-p runs the command previous- line"Τ褦ʥåɽϤǤ ȤϤ뤬ФƤϤʤޥɤפФΤǤC-x C-s 褦ʣǣĤΥޥɤC-h c θ³ޤ äȾܤΤꤿä顢c k ꤷޤ >> C-h k C-p ȥפƤߤʤ EmacsΥɥˡޥɤ̾ȵǽɽޤɤ߽顢 C-x 1 ȥפȡȴޤ ¾ˤΩĥץ󤬤ޤ C-h f ե󥯥̾Ϥȡե󥯥ɽޤ >> C-h f previous-line 򥿥פ 򲡤ʤC-p ޥ ɤ¹Ԥե󥯥ˤĤƤξɽޤ C-h a ɤϤȡ̾ˤΥɤޤࡢƤΥ ޥɤɽޤΥޥɤϤ٤ESC x Ǽ¹ԤǤ ޤ >> C-h a file ȥפ򲡤ʤ̾"file"Ȥʸ ƤΥޥɤɽޤޤfind-file write-file Ȥ̾ C-x C-f C-x C-w Τ褦ʥޥɤɽޤ ======== ˺줺ˡ λˤϡC-x C-c Ȥޤ Ԥϡޤäν鿴Ԥˤ狼䤹褦ˤȰտޤƤޤ Ǥ顢⤷狼ˤäʤ顢ͤǶԤΤǤϤʤ ʸĤƲ ⤷EMACS ǤȤäƤߤСƤޤȤʤɤǤ ʤǤ礦ǽϸǤΤޤ󡣤Ϥɤʥǥ ƱͤǤEMACS Τ褦ˡ¿ΤȤǤˤäˤǤ ơEMACS ǤϡºݡǤǤΤǤ顣 ռ ===== ʸϡJUNETή줿"ܸ MicroEMACS (kemacs) " GNUE- macs (NEmacs)TutorialѤ˽񤭴ΤǤ Jonathan Payne ˤ "JOVE Tutorial" (19 January 86) ѹΤ ꡢϤȤȤϡCCA-UNIXSteve Zimmerman ˤäѹ줿 MIT "Teach-Emacs" (31 October 85) ʤˡѹΤ Update - February 1986 by Dana Hoggatt. Update - December 1986 by Kim Leburg. Update/Translate - July 1987 by SANETO Takanori ̤ʼռ ========== ǽˤܸ줿SANETO Takanori󡣤ʸϤGMW + Wnn + NEmacsȤäƽ񤭤ޤΤ褦餷ץä شդΰդɽȻפޤȤϤȤ򿧡ȼäƤ줿 ƣͻҤ󡢤ɤ⤢꤬Ȥ ¾ʸդϡʲμԤˤޤ ͵ hironobu@sra.co.jp Update/Add - December 1987 by Hironobu Suzuki Update/Add - November 1989 by Ken'ichi Handa Update/Add - January 1990 by Shigeki Yoshida env100755 0 0 44313 6665706475 10046 0ustar rootwheel  UVS]sS{t u9w3t 08t8/u H 0@8uE0Et53V3P/usr/libexec/ld.soCouldn't open . Failure reading ld.so Bad magic: ld.so Cannot map ld.so (text) Cannot map ld.so (data) Cannot map ld.so (bss) ld.so failed: UDVSjjhj3Eu?jhjjjhjj jhjjjjj URujwjhjjjjUf t$f}tjhjjjjEEЁ t4t†f t ʉ QRjujjujhE܃$ujhjjjjU= t!=tҁ tuKMEЁ t*t†f t ,M= t=t tY 1QRjujjuċUURh($ujhjjjjUȅtIjjjuhjRUUURh$ujhjjjjE03UE0UEEu܃ ]Sj֣1U 1uuSj֣1 0 1=1uyj h4jj, 1t@R ҉Åt5jhAjj؃;t @8u)RSjjjhDjjjj=1~ 1re[^U 1t u u1U 1t u@ÐUU 1u1Ð=1 Ru@uRu@Service unavailableU 1t@ ÐbYXQQrø-No argument following "%s" switch-u-unset-s-setNo value specified for variable "%s"--unknown switch "%s"%s %s: Cannot execute "%s": %s UWVS]u |3Kl2dl2P33thP2u KCE8u6j=ERDžtGPEREÐOj=PDžtGPPjKɐ8-tPhhPzthPduKjPKhP/thPu4K>WhKPWKMhPth PuKPh@38u 3R3h"W֐j33VP!P|3Ph&h$339p2~"3,1Rh>h$3 h$3j `3=3uP\e[^_Environment variable names may not contain "=": %sZero-length environment variable name specified.=UWVSu] VEj=V E}tVh$&>u hW=3?uUEPPV u6E8=u,t Gu말u+3‰EE@9l2=l2dl2P3P3E=3ShV Ã?tP Ge[^_%s: U|3Phh$3 EPE PEPh$3h$3j 0j>Out of memoryUh>USEP/Åu]USE PEPÅu]UEPEE PEEPEEEUBPeEEPEPtE PEEPaEPEEURIEEUEEUVS]u N~}F9F uڈVS‰e[^US 1= 1tЃ;u]US$1u1=(1t@<(1uÅt$1KuhN]U=1u1n0!,v0&,~0,0 ,0 ,0 ,0,t20,0(,0,0#,,1p20",0,0 ," !       '+&) #!$"*#%$(%&,'()*+,--0 #05 >xGZ 1i $1x000000@` l20 L00!028|0A |3K#R 3[l0c0k0rz 3t0D0, 1 3 3$__DYNAMIC_dlopen_xrealloc_fatal__exit_dummy_decl_dlclose_dlerror___do_global_dtors___DTOR_LIST_____CTOR_LIST___realloc_strcmp_strlen_strcpy___do_global_ctors_printf___progname_sys_errlist_xmalloc_nenv_size_strncmpstart_sys_nerr_setenv_memory_fatal_fprintf_malloc__exit_dummy_ref___sF___swbuf_progname_etext_environ_atexit_execvp_index_concat_errno_exit_main_free_dlsym_edata_nenv_end___main#c0(0#`0d0PH (" x0 100 '09 BxK^ 1m $1|0,1` l2 p2L0t2 |3#  3 3"D(,/ 16 3< 3A$I Yn}dd%>\$A]o!-R+b/2345;<=>? @A$B1D?2J3U4^5h6r7z:;<>?@ABCDEFGHIJ%K.M8bCgMlXqbmG/g2WDDDUDUD\D]D`DjDDDDDDDDDDDDDDDDD%D)D,D3D8D=DMD|DDDDDDDDDDDDDD(D,D0D 4D DDLDPD\D|DDDDDDD D"`\D#D$D%D%i$Dqy @@@llD*D+D,D/D0D1D3D4D5D7D8D; D<D>D?0D78DB@DCDDELDF^DHjDIqDJDKDNDODPDRDSDTDUDU$))) @)@)@+,/.,DZD[D\D] D^/D_<$YY Y YDfLDgODh\ $fLDm`DndDodDprDq{DrDr# $l`/ l7 @nA B DxDyDzD{D|D}D}C $vP vX w ` @yj k DDDDDD&D>DQDXDXl $w ~         \Dn\DogDpDrDsDs $n\ n n @n @n    P __DYNAMIC_dlopen_xrealloc_fatal__exit_dummy_decl_dlclose_dlerror___do_global_dtors___DTOR_LIST_____CTOR_LIST_____do_global_ctors___progname_sys_errlist_xmalloc_nenv_sizestart_sys_nerr_setenv_memory_fatal__exit_dummy_ref___sF_progname_etext_environ_concat_errno_main_dlsym_edata_nenv_end___main/usr/lib/crt0.o/var/tmp/cc0026111.ogcc2_compiled.___gnu_compiled_c/usr/local/home/yahaba/work/nemacs/nemacs-3.3.2/etc/env.cint:t1=r1;-2147483648;2147483647;char:t2=r2;0;127;long int:t3=r1;-2147483648;2147483647;unsigned int:t4=r1;0;-1;long unsigned int:t5=r1;0;-1;long long int:t6=r1;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=r1;0000000000000;01777777777777777777777;short int:t8=r1;-32768;32767;short unsigned int:t9=r1;0;65535;signed char:t10=r1;-128;127;unsigned char:t11=r1;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;12;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=r16;4;0;complex double:t17=r17;8;0;complex long double:t18=r18;12;0;void:t19=19_physadr:T20=s4r:21=ar1;0;0;1,0,32;;physadr:t22=*20label_t:T23=s24val:24=ar1;0;5;1,0,192;;label_t:t23vm_offset_t:t4vm_ooffset_t:t6vm_pindex_t:t4vm_size_t:t4int8_t:t10u_int8_t:t11int16_t:t8u_int16_t:t9int32_t:t1u_int32_t:t4int64_t:t6u_int64_t:t7register_t:t1u_char:t11u_short:t9u_int:t4u_long:t5ushort:t9uint:t4u_quad_t:t7quad_t:t6qaddr_t:t25=*6caddr_t:t26=*2daddr_t:t1dev_t:t4fixpt_t:t4gid_t:t4ino_t:t4key_t:t3mode_t:t9nlink_t:t9off_t:t6pid_t:t1segsz_t:t1swblk_t:t1uid_t:t4rlim_t:t6clock_t:t5size_t:t4ssize_t:t1time_t:t3fd_mask:t3fd_set:T27=s32fds_bits:28=ar1;0;7;3,0,256;;fd_set:t27fpos_t:t6__sbuf:T29=s8_base:30=*11,0,32;_size:1,32,32;;__sFILE:T31=s88_p:30,0,32;_r:1,32,32;\_w:1,64,32;_flags:8,96,16;_file:8,112,16;\_bf:29,128,64;_lbfsize:1,192,32;_cookie:32=*19,224,32;\_close:33=*34=f1,256,32;_read:35=*36=f1,288,32;\_seek:37=*38=f6,320,32;_write:35,352,32;_ub:29,384,64;\_up:30,448,32;_ur:1,480,32;_ubuf:39=ar1;0;2;11,512,24;\_nbuf:40=ar1;0;0;11,536,8;_lb:29,544,64;\_blksize:1,608,32;_offset:6,640,64;;FILE:t31___sputcmain:F1argc:p1argv:p41=*26envp:p41argc:r1argv:r41tem:r26setenv:F19var:p26val:p26var:r26val:r26e:r41len:1tem:26fatal:F19msg:p26arg1:p26arg2:p26memory_fatal:F19xmalloc:F26size:p1value:r26xrealloc:F26ptr:p26size:p1value:r26concat:F26s1:p26s2:p26s3:p26len1:1len2:1len3:1result:26/usr/include/stdio.h__sputc:f1_c:p1_p:p42=*31_c:r1_p:r42nenv:G41nenv_size:G1progname:G26__main.o_exit.oloadst102755 0 2 30000 6665711526 10352 0ustar rootkmem  UVS]sS{t u9wt2t 18t8/u H 1@8uE0Et5t2V3{P/usr/libexec/ld.soCouldn't open . Failure reading ld.so Bad magic: ld.so Cannot map ld.so (text) Cannot map ld.so (data) Cannot map ld.so (bss) ld.so failed: UDVSjjhj3Eu?jhjjjhjj jhjjjjj URujwjhjjjjUf t$f}tjhjjjjEEЁ t4t†f t ʉ QRjujjujhE܃$ujhjjjjU= t!=tҁ tuKMEЁ t*t†f t ,M= t=t tY 1QRjujjuċUURh($ujhjjjjUȅtIjjjuhjRUUURh$ujhjjjjE0t2UE1UEEu܃ ]Sj֣L1UD1uuSj֣L1 0D1=L1uyj h4jj,D1t@R ҉Åt5jhAjj؃;t @8u)RSjjjhDjjjj=L1~D1re[^UD1t u u1UD1t u@ÐUU D1u1Ð=L1 Ru@uRu@Service unavailableUD1t@ ÐbYXQQrø/dev/kmem-n-uBogus argument: %s USERMAIL/usr/spool/mail/%s/pmam%d:%02d%s Mail%sUtWVSVjhM}E hE Ru x2ghE Ru d1CE Rep2=p2"E Rhh25 j^=d1t P8hlj}hE}u2EPPREEPhEPy EPEPI|/fEf%f=@u!hEP<EPEP, EP EPǃ ~PGPO Ⱦ JQhEPEP|#}}u}w }u  Ph `=x2uh1j Xh13=p25p2PEEPht1P e[^_UVS]u N~}F9F uڈVS‰e[^USX1=X1tЃ;u]US\1u1=`1t@<`1uÅt\1Kuh]U=P1uP1n0 ,v0%,~0,0,h10,0),0,0,0,0",0 ,0,0,0 ,0,0#,0,0,0&,1 ,1,   &!'   !  %)( *" "##$$%+&'()*+,,0  10 412 ;0CxL_ T1n0v \110(001 000$1 d10 |000"8 ) p25 t2>l0F x2M0S0] |2dt0j0pv,}0D1 2t__DYNAMIC_open_dlopen_getuid__exit_dummy_decl_dlclose_getenv_dlerror___do_global_dtors___DTOR_LIST___strcat___CTOR_LIST___strcmp_strlen___do_global_ctors_sprintf_printf___prognamestart_localtime_fprintf_malloc__exit_dummy_ref_uflag_sleep___sF___swbuf_stat_ioctl_etext_repetition_environ_atexit_nflag_time_getpwuid_errno_exit_atoi_main_dlsym_fflush_edata_end___main4 c0(0$ `0d0P  0 zrjbZRH141sample.emacs100644 0 0 767 6674532531 11556 0ustar rootwheel; ; ;(set-kanji-input-code "jis") (set-kanji-display-code "euc") (set-default-kanji-fileio-code "euc") (set-default-kanji-process-code "euc") ; (setq-default c-argdecl-indent 0) (setq-default c-indent-level 4) (setq-default c-continued-statement-offset 4) (setq-default c-continued-brace-offset -4) (setq-default c-brace-offset 0) (setq-default c-brace-imaginary-offset 0) (setq-default c-label-offset -4) ; (setq-default tab-width 4) ; (display-time) ; for Canna (load-library "canna") (canna) nemacs101755 0 0 4700000 6665711533 10550 0ustar rootwheelp  UUS]E J ||9Eu||PSE P Py ]UWVS5Du6WDt1ہ,~(<tPɛCl(9(@\@Pܚƅu D5D(4 C뷐(Ѝ  te[^_USDuɂ Dh9Sj2  t]U}u*E8t EDEDtUS9(}!<tPCؐ(@Ph1 ]UVSU1u1~zt o9B=u+A< tI9u8{ tK9uAꐅte[^UVS}u1a=t EPL]8Ep~ |3 t N鐋E9P)Ɖ}1e[^UExREEǀxUWVS] }}謀 ExtF9~艀 uF9~9F9<2F)f^K})D2 GᐐExe[^_US=pu1}u }E EP=(uEPE PEPEPjͥ] ]E @9}PKᐐ] E@9}EKސ]]E@9}K吐}E PEEPEEPj=(uEPE EPLj ]]C9]}P3C吐]C9] }EC㐐] ]C9] }Cꐐ]U WVSEPUEUHJ(MEUH J$MEX 9]4x<}~REP9P9PE EPFPGP1 F9E~fFf9G~WE9~fFG9EfFf9G~F9EFD0FƄ09 fFڐG+URE0RE8R詆 G+URE90RE98R fGfFCe[^_UWVS]Ku}^ _$uF 9|xօt r9|fJ@ލe[^_UWVS5 =+FP9V(~SF<t9~t?9F 2F F$9}$= t 9Tu=u 1E9TpHx`FPFTTFLPj襥G  Xj9Rh t C9~fCCƄ9e[^_US C<t9Cu1GM CT`CPPP:h s ]UWVS=(uz hhh4 =t}u E臠=puE (ttt ;u 吐} utt  E(4tt+(94t(HPV(R Pȿ` EE}9=(~}u=u }4}EԋUԊ08u0EԋUԋMM8 uẼuEЃu mM)MԋMM؉ XEPEPkEHMME؊0 t E9E~EEE9E}EPEPEP'}uf=uE xuV1EE9E}1EPEPšMM XE+EPEP詞~EE 0ME0uSEE xuuVE EEEPEPEEPEPE=u=EE9Eu2MMċEMĀ< uEEM<u Eِ}uE9EtE9E}EEE}MMĉMMȋU+UE+E9~)E9}s(GM8Au)؋U)MDM8Dt.OM\tOMĊM8t륐E)MEU0E+EU+U)щM}t}tEU9|EEEt>E9Et6EEU+U9|!EEE9E}EEEE9E}&EPEP荘E+EP£E9E}{}tTEE+U9U}DE+EU+EPEP<EE+U+EPgE+EM)MEPEPE+EPjE+EEEEMME9EuE9EuEEPEP贗}t E9EtIE9\uEEU Mщ XE+EPEURiE9EEM+MMЉEMMMЃ}u$E\$tEEEыẼtMEEM XE+EPEURӚẼt jE+EPEUE+UR裞EEHE9E}@EEM XE+EPEUR`E+EP荡EE萋E9E}EPEP*EP6e[^_UUEE8 t𐐋E)ЍHUVSUM ]E]AB8Et,E\]}tA]B8EtJ+Epe[^UUEE8 uE E 8uE)ЍHUVSUM]E]AB8EuE uE 8t.E\]}tA]B8EtJ묐+Epe[^U=tPE9tbPEPvEhL E%PR =u"PEPiPhN rUEtEPxP EE 9PjERa UEtEPxPȃEE 9PERj  U(P‰U\Pڄ‰U EEPEP=jEPEP h ,jhl E UTUT=uETE$ETjEPEPe T벐UWVSu} ]=Tt=T5$SWV e[^_UWVSu} ]t 95(tt 9=\t tm95(te,~,jFPT%P Rc T%NH jjTPdc 5(5j讌tO9=\tG,~,jWT%P Rd jWTPd =\=|s"| je[^_UPUEUEtEP(PEh E%RjE%PR05h s^ =t5PE%RjE%PR4P5^ UE9tqh ^  U=t| = }U 9 4  8 t  h j ̌h j踌   0h9u =uha 蛈h 1] USEtEPxPOE] jjS ]UEtEPxP~Et bE 9u jzE~/jjER2 >tU(| =LuLh zb =uh h T jj P豠=t=Lth ,jf Uh ~hH ~h ~h ~h ~hd z~h m~h `~h S~h F~h|h ~hh# ~h,h0 |~h(hE ~h@hS ~@h hi <~(UE@UB‰P)ĉEE PEPEPEPEPEPEPE PEPEP% U4WVSE =(uEE(+EPM(+EƉu(+EdM(+ETƉuEfEf@:Ef@:E@E@EU+ M9] }fE @ЉЍ}ڍU]Ћuu܋MMЋu܋M1Efufwf:fG:_GC떐EU+ MEM9M }E̍E4uE̍EfMfLE̍Ef:E̍EfD:E̍EM̈LE̍EDEtE }9] }EM9M }E )ƉuEM MuF9E~ MIMuF9E~ MIMU̍U]؋uuЋMMԋuЋM91t؍E4ufMfE )ƉuE9] uM MuvuTM M؍E4uMA9~^ uvuMA)‰ЍE4uE9E}Eڍ MЋUuf42ffwM9M| MIOGG9~] wu9] uM Muvu7M M؍E4uMIM؍E4uE9E}EfGM9M|MIOGẼCe[^_Ut WVSEDžDž} ƅ E @ЉЍ]K9}UC9}IK C)ƋMLyfCf9~CC)ǃuE EP4DžCREPK.  NOu"tE EP躁DžN}RTR訒L<9|O搐Nut j[^_UWVSDžhPe ]9] ؍E<~s؍E4} <DCj]9] ؍E4ڍU9u6L|uCb[^_US(+] ]}~])]=(uE}u1o}}E E]]] ]]]]]]]] EUJMdPU UJM T ]US(Ѝ PȉәEEPhdhPEPEPE PEP.jhThEPEPEPEP ]US} t6EPEPjE PE PӒPE P\P~}tZEPEPEP蝒PEP&U RjEPËEPR,!EPEPjh'jh' ]UWVSu>5(u }}e}u=(}(HE}K ׉EUEE+u ME ׉EUEE+] M뭍e[^_U=(uV =t&{5h _O '=(uyV HjT%P R =(uLV U==tv = }T 9 3 8 t  h j }h j }  EPEPE PEPh h RN ih9u[=uRE PjEPh,hd Wd C"jj!==lu֐U==tv = }T 9 3 8 t  h j |h j |  EPh h 6M Ih9u;=u2EE$jj#?=luؐUVS=ltAl=u= uiT%X jS ơ\Pjjj=u PVT%Pa;9u VT9 tHT9 u D e[^U4WVS MEE=t=lt9l=u=t}uE=u =HuuЋFL9T~*}ЋWL9P,|MЉAp=~1=u =E`9\uH94uE5D u܋=H }؃}}MЋAp9T 9uЋF,%9}ЋG89M9 `HLUJ)9`luЋFL9T~?EH9xNEH9H>}9=/M9 L}u95XEH9H}UJDUJ@8 tSHL+\B9Et(}9=H} ED E@8 tMЋAL9T 9Tt\ uuwPP PL Puu=\ |6=D t-u95H u"}ЋG(9\t uG `M9APu}ujuЋF<R}Ћ_(K؋MЋQ(Q9\tHPhj`PuЋF<t}ЋG<)1Pju$E҉lj}#MЋA9E~E䣤L _L P,D }t 0j PEuЋF(9\t um= t{EPjẼ}tCD \9t\4}ЋG(9\t }MЋA,%9tuЋv,u E@X }ԋGpMԋAxuԋF }ԋG MЉAPuЉFT}ЉGX}tjT%P R8MЉApuԋF}ЉGLMЉAh`\H4H= t{=lt EPe[^_USE9u]C,9t5} t*C,%9u TS,B1CLChCpC9tE PCP{C9tE PCP`CEV} t`\H4\4]UT%P RU吋E9u#jEPE%PUҐULWVSMMԋ5`uСE}ԋ_(K]̋MԋA(A9\tM̋uԋv<u}E=(uK }ԋG9tMԋAPB1uԋF9t}ԋGP1MԋA,9u5K =t uԉFp}ԋG$ET%9EtM=t1(MԋA,%Pg`E܃} u! %P,9uE9 tquԋF4P&6P``9X~ X`7HL+\9`~HL+\z=`MԋA0%9t,uԋF0P5Eȋ}ԋG89tMԉApuԉF8}GLuȋEP6uu許PuuhEMU‰PHL+\BPE9Tu}u 5Pu E}t E@+EEPjuʪ$E҉ljEP` %9Et*P`PeePMԋA4P0 5`uЋE9 u/}ԋ}}| EEEuMq 5G}ԋGL9TM9 `=} uuԋF(9\tE9TuuPuuh'E@P`P}t +E1Pju胩$E҉ljE9E~E %9Eu1MԋIM}| EEE}u~ =GMԋAt9tFu95Xt;EH9H}UJD UJ@8 t?B} E9T}9=`MԃyLuԋFh9tu= tl=uc=X uZ}ԋG(9\uL\9`u?49Hu2 PE؃}t}t}~;M9 X|HL+\B9EaHL+\9U~u95Xt}ԋGL9T~.uȋEP@t  uMALuԉFp==}9=`~KEPuu̡PHLMԋQdJ)PE҉ljE9EqEPuu̡M9 `}PuϭE҉lj`9E*EPEPJt uEPuűE؉MU‰P`PRE҉ljEPEPMԋA0P0Eȋu95Xt/EH9H}UJD UJ@8 t }ԉGtMԋAp9u} u#\H9E|E9Tt u EP `EPj u `Ee[^_U4WVSMMu^$]E9TtM} }܋M܉Mu uvEPu _PuF0Pb+ \ }G<tMA<)1EM}}EPEPuu uZE҉ljEHMI(M}tEE܋u 9utO1}t?}}̋UJ9H}MIMЋUDuNuЋU@: t})lj}؋MM Duuԋ}G<tMA<)9E| }|E HLU J)׋u~dMu+q ql}Gh\ e[^_UWVSMhh^$dE9TtdhG EhA0P -Ehv(N<Dž`d9`|`EP豳`֐1}}=\ uЋhq5` ` =` }1\ =LEPh7PEPEPhdHL+\BPEPjEP蠕$Ẻ҉ljEԋh9Alt3 HLUJ)Ћh9Fdt3 ,[^_UWVSM hu9}EX(K؋UMpR(pV9\tHEEP<}1}uI=tUJ(pp95\&pp9 uEȡu,pp9=t1E1}t%pp95tE9}EEHMEPREP@tEtF}~ }ET%9Eu]} uWEU9P uL= t;jj}u \$PEP PtEPEEEPE9tlj}HL+\JMEP9t։||}}E+tBtM|+tBtƉu9RQPx}RPEEPPEM}tEE9t:EuE%8tEPqEE9E }*EPCPEEPOEu놋E9uEEEEEE9R4OHMROEEPNEM}tDE9t9EuE%8tEPTEE9E }*EP'OEEPNEu뇋E9uEEEEEEhu}9}w Mxu9hh9}uh9 `u =\ }E\ u+|5` }}h9 `~u95`} =`}h9 H|H@9E~ 5HFuh9=H}h DMh5@uh9}~ouE9tUEPMEEP7MEEu E%8tEPEEEE널h9M~nuE9tUEPXMEEPLEEu E%8tEP&EEEE녋M ME}~"}~|9urMuE} Eh9}~ }~h@Py9E~bEjh@P覟hhH9H}hJDhJ@8 uhr}t;}t5EE+|9E}MME+xPh xk &} uz|9ur} EM+|lul}l}~lIpp}ul}u됐U} }jhkhhH9H}hJDhJ@8 uh}t5EE+|9E}uuE+xPh x^j }E\EH9hh@9H}hBDhB@\|9}rMuEhh9=H}h DMh5@u|9}vMu|9}uM EE}6}t0|9ur}^E|9Mr M@uEs|9}rM\E|9urE0uE|9}rE€р0uE|9}rE$0uEE+tBt9UrE9ErEUEƐhEP<߉}܃}tEEhMԋu9uhx+EE܋E9t9Uvl}tfx\tPh9M~ExF\t.x\EhEh9 `u \ uuHL+\B9hh9=H}hDh@8 u h}M$Ejh蠚hEP<t!EP<p+p1E܋hhJ9H}hOppDhIpp@: uHEu\EEMԋE 9`|*`9E| =\ }E\ }+|=` \ 9E=` } ` ` 9E}E` EH ` %9E\ ` EP<tEP<)9Ut P}uJ}tBE D T \ L EP HLUJ)։5H D }tFE9E t>}t|\u |$|9uw |G}EU@(B9\t7E|9Ms |u}9}w M E됋u|EE+ttG9}ЋtfAtFtƄ89``%9`P9E HH%HMH%UEP(J9U~ Ep(NuEP|EPB- tG|Upp+t9}$|Eftf9f)׋tf~hMظ U؉lj󥸨 \[^_UWVSEUX$Z KEpEx(VS}EPtRWWjVuEPAEP(9\tEPB(9\txMAe[^_U$WVSu]} } ~|Et#wmXJME9} M9u +MMM MEEt}%uEH9Et;MM+MMuE9~PVjVEPE PEP EM MEEWVMA,P V^MMM9 tMA$A(MQ$Q(9uSM9Y,uFS9=uh1 P蠼WV@MA,P%u95TuEe[^_USPj9t9 tPj‰]UPj|‰UEPEEuEPjB‰ UE9tE PjUE9tAEPAEEtEPPEEPjUE9tAEPEEtEPPwEEPjPUWVS]C$E=   }u7E9TtE 9  } ~EPcCLHE C$C9tRCEE9u7E%S P EPE PEPE E%PU뾐C9C EEECEE9unu}~$}EF EE EE} }EjEE+UREP }}}EEFE녃}uJCEE9u7jE%P$PEPM E%PU뾐e[^_UWVS]C(E}uE 9~EPbCLHE C(C9tRCEE9u7E%SPEPE PEPq E%PU뾐C9CEEECEE9unu}~(}EFEE EE} }EjEE+UREP }}}EEFE녃}uJCEE9u7jE%P(PEPy E%PU뾐e[^_UWVS]u SEV ƉtVPƉ%PH9u h My,9=t uMq,V%9u ` B PPMA4P! V%P8RPMA0P MAtMALH9 u Ve[^_UVS]s,%S49t %9t %9p,ug%9u% %9tC4P`C4PB C0PB8e[^UWVS]= tSPáT9 u9Tt$(T9 t9Tu$ށF,9u h  F@9 u G,%9u!G,P`PPG4P  F,P8F,PG,%9uoF4P`P``9X~ X`HL+\B9`~HL+\J `He[^_UWVSu] V袲ƉtVP99u* %P,%9u :Vz9=t9t 9= u ==    M9H} ɉ HW9H+%P(9\uPPW/ cW9= t! 9TuGT%9x t6W M9|PPW VWe[^_UWVS]5S輿%TP,j`X\V9tSP(iPSlj= MMA<SjPMA0P SjcPMA4P e[^_UWVS]SƁ߁U UBDVEPGG GGwUB0UB4UB,e[^_UWVSE9u E$EtEPPEuE 9u"E9t N(M N$M0E tE PxPE M M}E9Tu hF E9=   M9 E 9F$|EPE PEP7 F9tF%P9tEP^%UPnM9 E9F(|EPE PEP F9tF%P9tEP^%UPHÉ߁FGG9t G%X EG ^FGF,PS:E9t(F$G$F G N(+MO(MN(MNO&FGF(G(N$+MO$MN$MN O e[^_UVSu] tVxP9PRe[^UVSu] tVxP<9PPDe[^UUB$UUB(UXWVS}} t x`E} t EܒE =    Ez]]][]]9u} t h ̓C} tE%P9uE%P9u ]]낃} t E(E$EE]} u#E9Tt]9 /}~$]9EPS]9t!u]]܋]ӃU+]m]C9t][] ][ ]u]]؋]Ӄƃ} u"]9Tt+ ]^] +]9}}}]C9']CP]]Ћ]Ӄ)]ԃ} u+]C9Tt]9 ~"}]9~j]CP]]̋]Ӄ)R]CP]Ӄ jEREP]Ӄ } t]C%]C% } t]S]S j]CP]]ȋ]ӃP]CP]Ӄ ]C 9]C P]]]Ӄ)]ă} u*]C 9Tt]9 ~!}]9~{j]C P]]]Ӄ)R]C P]Ӄ } t EE } tUU )jEREP]Ӄ u]]]ӃEE9U]]]EEQ]߉]UUU]+]M)ʍ ʍ E} tE%( E%$]]jEUREP]Ӄ juu]Ӄ ]CLe[^_UWVSu=`^$]E9TtM `MEPuEM9 uSE؉MU‰P P[ `MF,PuF0PN F8F0PP/`1} }`9XuEE Pv Pk[ `MPEW׶`}tPP辋HL+\B9EF,Pu PF0Py EFtFpFL9}~uT`} }iu<`u PZE9=` M9M|W`ja PVZPdPϊe[^_UVS] PB)Љu 9uV PL9(uP P|/S&rÉE P PKe[^UjEP^UjEPBUS]9u %X(Sqá %P<P P P‰]US]9u %X(Sqá %P<)P P P#‰]U WVS]E `M 9Tu 9t 5 P PƉtVPVx95 u h MMA,PaMA4PP3`9u+PV*d9(u)PVHu S ÉtSxPÉRVP`PPMA4P EPuo`e[^_U WVS] P=E} 9TtO5 u5`u9ul:Ju:,SnÉtSxPÉ} %с ˉ%ډс SUuF,P`PPuF0P' KuFtu`uF8e[^_UWVS]5 ~$ 9TtO9u:DSnmÉ})%MUсM] ËF0PEM9 XHL+\B9Ee؉MU‰PPuTF,P`PcPF0P IFtF8u輯`S$T‰e[^_UWVS(E\EEEu'EPh% POE͐uNMF 9(uF9\ujFPF Pq EHFEE%PH9uEEEU9EU|_CG09tEW0D%PS CG49t%EW4D%PS C %WPcC C9tPC%W$9P(u!C%WPC%PC%WPC%PGCG C G$C(G(C$G,CCF4PSCF0PBCFtC8F,%xdW#C!CCCC8F9u C0F%PHS0F 9u C4F %PHS4F9tEPE PFP EF9tEPE PFPz EFEmEe[^_UVS5+5Phȫ(EPiVae[^USj1j%T%TPT%X %@( T%@( %@$ T%@ T%@$FPSijPTPN ]Uh hhThh h h  hh 4hh hHh Hh h  hh#  h$h4 $hO  h h| h h` h h h h< h` h h h h uh hh@ [h Nh Ah 4h< 'h` h h h h hh hl h h h$ hl h h ~h qh dhD Whh Jh =h 0h #h< hp Uhj j1lP[j h j2lPFj h j0lP1j h jolPj h j^lPj h jlPi h jpPi h jPi h jvPi h j pPi h jrPti US= t  ;hT(+@P=Ht=t HDPu ]US=xt x~=thT(+@PP/ =thT(+@PP =4thT(+@P4P s*]US=ttt=@}b%=thT(+@PP| =8thT(+@P8PT =thT(+@PP, ]US= t Ӌ]US=<t <o:]US=tEPӃ2E}u( =(u Pj ]U=$t%E HPEPjj$PEf=t3(P(+E PEP(PjjPcE(\PE PjEPjj(P9EhT(+@PEP EP/S(U=uhT(+@P0P U=thT(+@P PT U=@};=t(= thT(+@P P  U=@};=u(=thT(+@PP U=@|=|tCU=@|/=|ƒ=1Ѕt OU}u?= == =t=@ujE P&D@‰D9|M$uA$t@)$tD@ DhT(+@P}t P] @p @@US=tE PEPӃ3=@} EE p8uE PEP]USE=tEPE PEPӃ jE P=@} =Xtw@p8th=tJ\P@HP$hT(+@Ph 3 @Dj@P$EPw@PEP]USEp?E =$tE PEP$ӃG@9EuD9E u.=u=h uE PEP$]US=ttE PEPtӃF@9EuD9E u.=un=h uE PEP#]UVS=t 5|=tG"hT(+@PP (+@Pp@PR-@9(jS\PCڍe[^US=t j=tOhT(+@PP (PhpÂ@Djj]U=@u'=Du@p8tjh# EPUVS@p?E=tEP5փkD9E[=Du @p}=XthTjXP D9]=tPj W = }T 9 3 8 t  h j h j   C^E+DDУD9|J$u>$t @&$tD@ De[^UWVS]=tE PS MMу'*$tZ@@9(uLDE @p ?MU)9\u"M =tE \$tM DE ‰D9|J$u>$t @&$tD@ D=tV= tM= tD PE PEP P PjEPSE PªE ]] 9E }=Բu =$u=uQh E PjS˞f f@ft% =tPE PjS藞M } }  @9E ~|9]ww8CupsF8tN)9= }OWPjjPEhTWu uE @)M tu MC}_=Բ=tPj aS = }W 9 6 8 t  h j h j   hT(+@PPP =$t }~uE`=tPuR = }W 9 6 M 8 t  h j ,h u M  菤e[^_U WVS]=вtE PS вMMу=tJE PjjPhTjVu Vt E PS{=<tS=tJE EM}u!=<thTj<P ԅt E PSG;DE ‰D9|M$uA$t@)$tD@ D=tZtV= tM= tD PE P謢EP P PjEPSE PjE ]tk=Բu=$u=u =<u =u9h E PjSk=tPE PjSMM } }=<thTj<P u ;C=$t ~u`=tPW|O = }R 9 5  8 t  h j h W   =thTjP [e[^_UWVS]=tS=׃= t-=hthT(+@PhPB =Lt:SjjLPrEhTjEP EPr%19|hTjP F߃= u(=thT(+@PP e[^_U8WVS} ~ ,@E} ~ ldE} ~ E] }ۃ=<tE PEP=<׃y=(tE9 \=8uE9(@}tNjEPoSjjEP hT(+@PV V}tRjEPK} hT(+@PEPV ڐ=t Dw PEP} }j HPjEPMK}hT +EPEP ۡ PjK=@} }Y(+@U Rp@P@+E pR E P(E pR#v(+@+U R@Rp@P (+@+U R@E pR@RP E Pp@Pu=(u'=8t} }j(E P[^_U` }th@jEPu ` U` }th@jEPA ` US]` th@jS ` th@j S ` ]UWVS=t"EPXE=<u#=u=0= uv0Pǡ P8ЍЍ EMEdE<PǡP 8ME'E=LtELPE{=tchP,ǡP 8M= tEMU‰EPEE'E\K}EE‰U琐\K}EE‰U搐e[^_US$=$u=tt8=lu/=du&SS@PP,P Pj&jj@PdP,PlPi=t:P/P'#P  , ]UVS0EPP} h% uEPhI f PϋP`E}uEEEPhk lEPhn ,EPhq DEPht EPhw XEPhz xEPh} `hEPh HdEPh 0\EPh $EPh EPh lEPh EPh LEPh dEPh @EPh phEPh XEPh @ EPh (XEPh <EPh EPh 0EPh EPh EPh 4EPh `EPh hTEPh PL=LuEPh /Lh tP EPh P=PuEPh PEPh EPh EPh  EPh uEPh ]EPh E EPh -tEPh EPh EPh HEPh HEPh 8EPh EPh (h 9€%h 8h $h 1h uh u5h h h h Բh k€%h Fh 2h(h\o=\h \=(h! (h$ h' z@h* fx=Du D- =u L=t 0=x} x=uDh/ @EPh2 V EPh5 >=t2t8 @\Lh< EPWu8 jhC EP t hG EP=(u:;thL SuCܐ;t (Q PEPh` EPEEPÃPU]9]u;%u {+uCCC吐(=,~,(\=,~,\(\|( q tEPhd 1=ht(=0t0PhPu5 1=t(= t PPu5 =@~ @) \1Xlt=xu$%1=(u=$u=u(1=lu =,u=du+=@u"=(t=t= up1=<u=0u=u =u=u =Lu8=Xȉ g=$t P%^[^Uh| h fEPE PEPh fh j达UEE` US]]=tPE$R; = }` 9 ; M 8 t  h j h E$Re M  ]U=Ht)` h@jHP  ` '=Lt)` h@jLPͼ ` '=Pt)` h@jPP葼 ` '=Tt)` h@jTPU ` '=Xt)` h@jXP ` '=\t)` h@j\Pݻ ` '=`t)` h@j`P衻 ` '=xt9=tt(` h@jtP\ ` ''=dtIjjdP E}t$` h@jEP ` ''=htIjjhPB E}t$` h@jEP袺 ` ''=ltIjjlP E}t$` h@jEPF ` ''U WVSD9|uSE]+]؅u|}HU=LU='u}t h A?ӉU}tK}hTju聹 ␋u+u u}PU=='$u @M ș=xUMș=xUEUBUM ș=xUMxUUxUE9|E}t"EU+UUM 'E}t"}=E+EU}'9}~EE}EE}'~G9E}8UU}t&M}}hTjtP  ېEE u+u u|~TU=PU=ސ'u}t h 6'4E}tN}hTjuy ␋Ee[^_U@U SE9@uE 9DuP=@=DjE PEPDP@PEEE='jE PEPjjEE9E~ EEEE=' jE PEPjHP^EE9E~ EEEE='i$t>@@9 E'#jE PEPj@@PE!jE PEPj@PEE9E~ EEEEdEE9@u!='EhE*E 9Du='ElEEEdEE9E` E9huE PEPEP褻 EPE PEP苻 É]h@jEP ` 9E|*hTjEP޴ E@E DEtH ttchTjXP莴 @DehTj`Pb J@D6hTj\P2 $t@DjE PEPDP@PE@E D]Ujth@\h0U=~ =|~ a=dt=pu1J=Ht =Pu -=du=Lt=Tu 1UE@jEPw=t@PȱP蠱EPhwt@j# u2j9Eu!0`}tEPh h [ PXP@P<PUSD]K}@t9]|1DP؍E R豱PDK뻐]UtE%X h j迾LE9Eh EU BRzufEjjjjEU P7 j?EU Ph h Y E@9E~7h EU BRu ELE@9E~7h EU BRu E=t=uh jh jխh jƭh j跭h j設h j虭h j芭h j {h j lh j ]h jNh j?h j0,=u(轌/-wí-"EPE PEP z=uD,l(Zߔ4T\=e藢Fd襈$kz1Y,(l*DEG=pDž,`S4f/\B8q ԥwu萟'i~8/CVb4%|=E9E~|h EU BRuRPEU BRxP試Ph 艼P莦TU\ 9t\ PbTfX f ftE=E9{dE}t`}u  P}u  PEPh PiEE9u St1h6 P,EE9u bPRP臁h MYEP%Eu E1PUS1ۋEtEP(P1EPEPBEE 9tRE tE P(PE E %8t#PE PE ] |E|h Yh hЇ WjjhЇ SE%PRE|]UVSEP菣Åu] Efj:S#ƅuSn4EP9t)PS.P董E>t^뗐EPcs‰e[^Uhh 賿h 覿hDh 4h0h "h 0h,h ȿ\ h\ h US]=u= ~ = u 7 E =t#PEPEPlEEE9 fEPE RS<EE E}u1 9u"h EPkEP?lEE돐t+= t"= u 9uEH-E t | jN =$t@9tD%]U+‰El=lt(PPYP0PY=lt' %P,9t fPh(ZEE9uPܲP<EPCZUE9t EPe lU@L,hq;EPEE9u@EPWEEtEEP觿EE@PEP1sEl PEPsPXPkEEtEEPſEE9tE%UE%PUEuPEPAPjh$ 讇 EEtPj}t 3 6 Pm E9tPEP|PPEP]P蒋EPҾEEg=t"h9 )HjP@Lj辺‰U=lt$PhP"5 ‰YVNPhP4 PhP4 =tP뮐UShPh8 9uڐ]UTP@‰UT9thPhc8 +|9th: F hl FUPP5U=ltPP4h :;U=ltPP4h. ;UHWVS$  PEE +=t9uI& %P,9t %P,RUbE= tV=tMPj(P7E@9t@t E}u,1}t=PjjEPCEȃ}u 'EӉU p MԉMMՉM̡Eh9tO@9tBh@9t+L9u@PܲP6EE9u'Z59E 9}E9HHL+\9``E``9H} D @M`@P```9Eu`}~s}~m %PL9TX %PP9`uC=Hu:9u' uh9ujE E9`9X`HP``5``9H} D @M}~s}~m %PL9TX %PP9`uC=Hu:9u'#uh9ujE"E9tE9th9u6T9 t)=u}t }蟎EEE %PL9T] %PP9`uHT9P,}8=Hu/9u3uh9u EMME9u u j{Ée[^UPEPUS]ۃt1u1=u(9t =u +bt9d uAN=@\t# Ph\@PΙ @\=  \ ]US=t; P =P }hL L L = tL@9ti= u*jjjm1 = u= u j] = Љ@@=u=t=u؃]U   UE  @9 tE8= t=u= u = u;EPhf@j } EE8t =$uBh@"E= uEREP"E UWVS= t6= u}u UR}u}~E=$tEPPj=$׃ EEPPj E@\19u'.P.uFӐ[^_U= tGEPhf@j蝒 }E}t!h@!jjq!UVS =0t 0 Phf@j } Dž=$t3hPj5$փ u느8~ DžPPjq 19%+P*+uCҐ [^UWVSE}t  }u = u"h9u=u j}u}Pǡ9t=t=t&=@[\uD t4tEj:UBj!Ɓ~@~E MM E MME@S~E MME MM~~E@`E@a'EɀjkUBɀ @dPxU%M1ۋE9uE9u9] u hV -(| }Pơ@E} 1~ 5HE E9tVEP[PEE9tVEP+PEE9E9P 9E9t$P PEPP(EE9t%P PEPPEE9u E9uEP CEEE9tEEEuE9tE9 uE%PUȐEuE9t E9 uE%PUɋEteEuE%90tHE9t }Et%EE%90tzEt!EuE%90t EEEEt!EuE%90t EEEe[^_U SE9t"EtEP(PXE@9t+L9u@PܲP#"jE9tE%1PjEPSEP‰]UVSEEl4Eu5pPEPX95tP63‰n]t)% 9Pu S%X̐u"S踤95|uEPS&돐ttJEM E8MMEEE PEPƋE)uEPSd‰ e[^U\ (~(EEPEPh v EE9(uh EP:Eu-E%uh EPnEu9E%u(E%Ph EP )EuERh EP h EP/PP4PPEP诉P8EE(~(EEPh EPB }'~  (NE%U(+E9E}EEEP EPE%PR MM  PEPEEE PEP‰U=u h U=t |!t U= c Ph‰ljdhEd+0PE%PR0Pۊ 0PE%0˜)Ph贊 EU Ph 葇‰UlUEUPEP:Eh E%PR(Ut / US+‰EE9t"EtEP(PWEh É%X9 t"9tS-9tlk4jh0F9EPW0EPJ9h yÉ%X9 t9t St-]UVSEu:]E%0NPC.j .= u"@R@x. Ԑe[^UE0$@9t}= tj U$0U E @9(9h w2jE/h4 h v P =P }hL ZˆL L E$ +LPLP|xh C }uEPxPgM}~EPxPHUVS]]=tg+L9uD‰УPLP-uƉ+L  5LUe[^U塸 U=th" &/x9uhS EPxPYUEPhEPnEEU+‰EEE 9tE PE E MEEEuE9 uE%PUҋEtEP(PzEEEPhPtEEPha-EMMEM EhM}thtʐEEPG-UxhUdP4Lh0 蜏h 菏h 肏ht uhh Ϗhhh hhh ߏhxh ͏Uh jelP h j(lPj h j)lPU USPSs‰]UP0PE7EP视EEe[^_Uh lPEP$P@ ‰UUM v MA-A€wzuEASACAb uTAAABAL uLAFADA8 uRAEATA$CA-Atw `A @A0uDAEALA uSAPACAЈAUSEtEPxP4EEӍEPPEP}k‰]USUM v؈AЈA:v MA-A€w^A@Au ^A?AЈA]UEtEPxPeEEPERXEPj‰UWVS%ME 9t5EPPE PaPP;EPáE9u)SJP?S4P赃Eu W虃ǐ9=t }~ @9t+L9u@PܲPu>W褂P%EW荂P肂EW%MLMMMEEtu+EEu*EPu&7EE9uM9Mtu`PV%EE 9tuE PEM9 tNEtDEu)EPu6EE9urM9Mt`E9tE@EPuXaE4S辁EP'1‰e[^_USEtEP<PF|Eh gPPPxREP P Pq; É%8t(%PRE%Rh E%Rh d ]USSh3h J ]USE Pc%E%Xx9t>h CEPCEPjSs h* zCh, mC}t EP[CE%PxRjS EP$]UWVSEP9uSV NjE9u =Hu%8u}*V~PEPlju=9=tW9u'WE PV~PVPS~+e[^_USEu5E%%R%PRB5EP'9th> AhM A]USE 9tE %8~E PEu'EPEPh5SEP~P%EPEPh5SEPu]U$WVSu] EE}thP sEt@9t+L9u@PܲP+V|P|V|P-}PEM9 uEu-}t'EPu0EE9tRE9t]E9uh` bEE%M܊M܈HEPEP EE9tE}tjhb ?E9t?%R%PR?jhd ?E@ځ MWtEE%RE%PR@?E%M} +EPhf ?uMMMуjh{ >V{e[^_U0WVS]u %MءEE}th} pE19}@9t+L9u@PܲP%TR/EE9uEu-}t'EPEP-EE9tNE9t]E9uh `EE%MЊMЈHEPEPE܋E9tE}tjh c=E95t?%R%PR7=jh (=E@ M}EPEE%RE%PR<E%MG9E~6% MEЍP PEE9Et G뻐E9jh m<E95t?%R%PRD<jh 5<E@ M}EP#EE%RE%PR;E%M} +EPh ;EPMMԋMуjh ;Ge[^_USPEP={PE P 9t!D9tEPDP9tPEP=W]UWVS]E9uc@9t+L9u@PܲP#SvS;wáPPxRV Eh W]Pu P31 E%P(PVCPW覴PuuFPAV2xEM9 t V藤EEuuh QPPVnEEuuh $EPte[^_UWVSEPJ9] j SƉ߀?t9u&?\u[uE P$E 뷐G͐t )ډUSnEuS8jh 8e[^_UEtEP(PpEE DEEDEUUEEUEPht<P7n hPP{%E9uPh<h > EUh i0h0^xEUpEPh iP|CEUEPh iP|EPh miPfwEUlEPh# 8iPQ|EPh- iPwhh> phhS oh<hk o{<h h o] ph h$h$^]h ah h =]h @h<h<]hh nh nh@ }nh pnhT cnht Vnh Inh P=]UUVS]S*95u S%P7e[^U吡P`9u.P}P9:PPxÐUWVS]9u0PSP'S^EE9u S] PS/ơ PVǡ PV %PW Pk e[^_UWVS] M5 uE9]u}t% 9t},}EtCH9u ha H}tyM9Mu'uF,P`PSUP}G4P `9X!HL+\B9` 8E@lj @ډlj 9]urMA4P#PG``9X~ X`HL+\B9`~HL+\r5` {h}M9 uE%%puEtEtBE%8}} t} t} tE%PD]E%HMf}uvhu}9=uE%%HMEtEtBE%0u} t} t} tE%P\E%x}ee[^_UWVE9u+׾@ 󥣠@ e^_UHL+\BPj@8@XUWVS]u uPZ!tPx PPuP !!tPx P}P9~;>Pvu Pbu9X@9(HL+ \Q9PPPe[^_UWVS METPEEE(E%Ph Já9XltSV95t SPjP`jh 1 9uSSPTljMMAH%x uPE9tMAL9u1M9Mu`EjM9Mu    PjMAM9A,}   PijMA`9u   PAPMAHP#jzOPEP Mqq PVEPEPPMApP"EPEP辐MAL9tPMALP{"jh SRYP`ue[^_UEPh_h? f UWVSXh9u%2%PB%8%9un%PB%x%8JQ%PR%PPVSV %X;PUe[^_UShhX% X% h} H784 (, $<@F0hhPTX\`dptx @ @ Hh t5h D\\h nDh .5PT h 5PPS]Uh 4PPKP)uPh vP(/th PpPL4BP|9uPZUh /8h "8h\8h8h7h 7hh DJh8h 2Jh$h Jh h Jhh0 IhhD IhhX Ih hj Ih<h Ih@h ItPh Ihh zIlPh IPh IPh hIpPh RIPh :IPh "IPh IPh( HPh2 HPhA HPhL Hh^ AdPhp ~HPh fHPPh PHPh 8HLPh "H\Ph H`Ph GTPh GXPh GPh GPh% GPh@ Gh| aFh TFh GFh :Fh -Fh8 FhX Fh Fh Eh Eh Eht Eh Eh Eh Eh| EhD Eh Eh wEh jEh ]Eh@ PEh CEhP 6EUhO jblP臶 h` jklPr hl jlP] UdEPEP蕵uEP3E}tER.UWVS]فMh O‹MBP)ĉSWSEM9 tAu6X9u,SD9tSh w=PWGTWPSh A=P 95t%WjWth e[^_UWVSu] h VehV<<0%PRWCh?u ?/u!G퐍e[^_UShE PEP苳 É؅|XhS"},Ph EP4O EPPEPSP+ S+ 1]UVS]h Set>= t0S2ƅt+9t 1뮐1e[^UEPqE}u= u1R}t*jEPg+}= t E#EPO} 1UShjEP Å}1EP,9T~E9t EPU塠P,9T~!PLuPLRU塠TPEU@,9B~EPLuEPLRUVSPEP/Euh BP)ĉEPSSFE} )'9EuS^‰e[^Uh >h >h >U@P9Dt!E9H|EP$H@9E~ EP\UWVS]Kp9TuxHL)ډ&L9~ L9x~xHBUu5D}=@HEbU)ډU}uP@9tL9u]1}}~E}U)UM}} NO뛐PPH@PCP H)LH@9t+L9u@PܲPKe[^_UWVS]Kp9TuxHL)ى DHL)9~HL)ى H9x~ Hx HAM}=Du5@HEb+MM}uP@9tL9u]1}}~E}MMM}} GF뙐PPPPRHPPRX H)LH@9t+L9u@PܲPźe[^_UWVS]u }jWVS e[^_U(WVSUM ]EE@DEEEEEE9uu~~$E#FE}t9~ E9}~< "E#FE}tE9}}9<E#FE܃}t 9~99~t~F FE؋E؉E_e[^_UWVSP9EEHLUR@@P,6ÅuZ P)Ms5@H@=@} LM5Pu]]}+=L}M9MrKMu萐}=P @ P Dк@lj EPHLPBPH@P e[^_US]]jEP(]UEPPEPUWVS]u =`VSjVWGPe[^_UVS]u xH@9`t`P95P} V5V`PTV@`PS% )5P)5D5H5`e[^UVS] 5`SEPXSVFP e[^US] SEP/]UWVS]u 9X~XHL+\9~5H5L+5\FS2uKV!uF)߉C9H} SF9H~ V+/WSX T9`~95`} ` )=`؉+PRPPPP =P=DH@))LK HH9x~ HxL9~ Le[^_UtEH9xp9Tt MI xHLU J)9p9TtHLU J)щ TU塠P`9tPL9t!P,9TPLRUVS]tSP4É%8t+%0%PH9te[^UWVSEtEPP3EE%8t|E%8E%p9=t} E@MAAP9~ M+qMA@9~MqF~MAA P9  e[^_UWVSEtEPP2EE 9tE u3E %8u&EPE%E*E uE PE #E tE Px PS2E E9u5LEtEPP2EuFH9uEP=E] MM95u@9_~_GG WJ)9~ __ GH)ËG@9~_MYM91t EPFDMAEFDM1Ee[^_UEtEPP?1EE%U 9uPEUEtEPP0EE%xu  UWVS]%U}uMAH9uuUrD=% M9Eu%PUe%M9E9=u-MUJDU9tE%M9tL%PU%MH%UMIMU UPu"%e[^_UWVS]3{95tuE@u h ϲMAAP9~M+yMA@9~MyG~MAA P9e[^_UVS] ttSƉuS}PSV %ځJHSx Ph.te[^Uh4 g/h Z/hX M/hx @/h 3/h &/UVS+‰EEth JE=tE%PRh V=du 9Tu h  9u,‰УR8Px8 ‰8   ‰8 PLP ‰8 @L ‰8 lL E ‰8ruEuu ‰8r uEu5q-PhȫXP PPWXP'PTPETPT%@< Ph E 9tE PjtE%BBЍ)ԉࣤ E%BR PE%PR @UPxnT%9P =ujjHLP@@PGáLP%HPDHPR EP5E}t S Ée[^UEEPEPEE9u2PPEEPPEP.EE9tE%PH9tCEPhL EPr7 EPbPOEE%UE%PVEUT%P,RF HT%@L ‰8  ‰8DP ‰8D@ ‰8D lUEtEP(P(EE 9t"E tE P(P(E E9u EjEPEE9PEPE PEPd‰UEtEP(P7(EE 9t"E tE P(P (E jEPE PP‰UE PEP|P‰UPPE PEP‰UEtEP(Po'EE tE P(PM'E jEPE PP0‰UPPP4PPEPP_"‰UPPPPPEPP"‰UE uE %PHU E 9t1h EEEE EEPjxEEM MEM PEPP PEPEEE%8tE E U`SE ؉]EEtEP(P%E}u0E t%PEPEPE P肸‰E}t E E(EE %U؋E %U܋DEА S}tJE9u:EP)EEP)EEP)E}tVEЉEEP -EE%xt%E%UЁJ ˉ] E/E܋E9E E %U܋DEEbE%U9GE%RE%PRE%PR E9E94uEP袧EaE]]E]]]]E]]]]E]EPEP;EċEE9uEԋE9uEEE%UNUE9}EEPE%PRE%PR~ EE}}EEE9u F}uE%U9u(EEEȋEPEPEPV ‰]UVSM ]=Lt-tU1AEP 8P tKؐ&tAUUE8Et Kݐu u)މe[^UHSE ؉]EtEP(P!E}u/E t$PEPEPE P艴‰iE}t E E(EE %UE %UDE }tJE9uEP%EEP%EEP&E}tVEEEP)EE%xt%E%UJ ˉ] E/EE9E LE %UDEEE%U9E%x E%RE%PRE%PR| E9E94uEP蘣EcEЍ]]E]Љ]č]]E]ĉ]]]E]EPEP/E܋EУE9u EPEPEEP‰]U+‰EE PHP*EPtPE9u PTPjEPEPE9u< PaEEP輼EUHL+\JMLEEP`EP}EP`LPjLP赞HL+\BP`PP@9t@t ELU pPDPhP EE9u h 1E9u gPEPOEE9‰‰UtEPjeDu#DPpgP@EDuFgEE%RE%PRDPo EEt E2p9tEPpP E E)dPpPfPDP EE9u:}t I= t h n }t USÃtt 1t))hM h` ]USHL9\u\Ãtt 8t17P9th ( PPΗ]UWVSpPDP:eP EE9u.h /E9u dE}uE%UE%U]+]EPVW }`)]EPMVWGW }C㐍CPjEHL+\BPz`HL+\E%9pPDPh PcPPJ EEu EEPpPDPh bPcPP EEuEEuE%9)P@3TЃtCʐE%9~CHL+\9u= t^SVe[^_UWVSE%PkE9uh( Shb >]19ut'jPj#PZPSƉuAPVP:PVgPPPVS7G>EPke[^_Uh |pPDPtaP EE9u^h @*hPEPAPhPh  Ujp PKPPPUPP4U Pj‰UheU  jPD8ha 6HhHh} ThTh ththh hh h z hLh ^Lhdh BdhDh ZDhph0 >phPhP "Phhn h\ Oh Bh 5h (h h@ hd h h< h h h h$ h h| h h| h rh eUh jPׅ h j P… h j P譅 h jP蘅 h j P胅 h j Pn h j PY h j PD h  j?P/ h" j<P h7 j <P hG j <P hW j <Pۄ hk j <PƄ h j?<P豄 h j P蜄 h j  P臄 h j  Pr h j  P] h j  PH h j? P3 U= |) 9p~ REh@ EE%UJP PBE PEPPEPpPPXP뻐UVSEtEP(PE]E%09t ~/uN9u)PS‰e[^UWVSEtEP(P0E]E%09t~/uN퐉)PV-‰e[^_UE PվPUE PEP5EE8/th EPq7EUEtEP(PlEE9u RE% BЍ)ԉEE%PREP:P‰UEPPUEPE P4E E8/u}~ E EUEtEP(PEE9u RE%BЍ)ԉEEPE%PR:EP‰Uh' PEP赶EE%PRfEUWVSEtEP(P EE%HME8/}E?ub?/u /uOM?/u~u OME?/u-.u'/tt.u/tu EG뙐}u2E%P9Uu EEPs‰1E8~E@8/t E@8u(hU ƉuZ E}?t?/uG쐉+EPBЍ)ԉe+EPuEP +EME@P E}uE@Ph[ 誏}EpE8/tHuDE 9u PPU E tE P(P E u EPźÅtV趺SЍHMKMEЍ)ԉEEt2E8t E8/tVEPz1VEPfEPEP 3}MM?u?/tMGEjhx W?0 uMMG?/u.u/t u rjh{ W/ uNM9MtF/tu:M9MtMM9/u ␐M9Mu M9/uE MGE"E+EPEPx‰e[^_UWVSEEEtEP(P EE%HME%MMu9uu'>~t>/t9ut~/u uEFҐu9uu >$tFF9uu |>$uFME`>{u'F9ut>}uF퐀>}to29ut!hP*u>_t FӐ)PBЍ)ԉE)PWEP- )UEPDžuW袷EE}u EE%UBP)ĉEMMu>u!>$tMFEF9uuI>$uMFEd>{u+F9ut>}uF퐀>}t F59ut!hP(u>_t FӐ)PBЍ)ԉE)PWEP0, )UEPDžuWuW-W.EMu9uu >~t>/t9ut ~/uuFܐE+EPEP‰.h Jh =EPh  ,e[^_USE PEPÉ%8~@%ځP:/u'9]u S薯É%ځP]U SjE%PRv*}u#PEPPXPEMMEM E PE%PRh= @Z PËE9u#PEP)PXPh]U|@EtEP(P-EE tE P(P E PEPEPE PE E9tEu$EPh E Pw jE%PR1vE}}"PEP$Ph hE %PRE}}.EPPE PPh h@PEP  E}EEPPEP 9Et"PE PkPh #또PEP|tE9tGDžDžPE %PRLfRE %PRJEP^EPRUEtEP(PEPEPEE%PRGZ}MQjPh UEtEP(POEE tE P(P-E PEP>EPE P'E E9t Eu"EPhj E P E %PRE%PR[}P= u)PEPE PEP*EPMQjPhw UEtEP(PEE tE P(PE PEPEPE PE E9t Eu"EPh E Pk E %PR'XE %PRE%PR7}MQjPh UEtEP(PEE tE P(PE PEPEPE PE E9t Eu"EPh\ E P[ E %PRE%PR}MQjPhk UEtEP(PEE%PUE8/t E8~t  UEtEP(PEPEPEjE%PR"| UEtEP(P<EPEPMEjE%PRr"| UEtEP(PEPEPEEdjEPEEPEP$EPEPE%PR EE9E~EPUЍ M땐}uEPy+EPEPKEEPNEUEtEP(PEPEPEjE%PR!|1jE%PR | WEPEjE9tE%< P |U`SPPREPWÍEP%PRm} &fEf%f=@u ]UdPPREPEEPE%PR+m} fER‰UPPREP@EE tE PxPE E RE%PR }"PEPrPh *UhEtEP(P|EE tE P(PZE PPREPEEPE%PRk} gEEPPRE P`EEPE%PRk} E9E}UEPUWVS1+‰EP`9t谣EtEP(PBEPEPSEDž\EPE%PRj|+jE%PRj\\|W\|\E 9u"PEPWPh  E1\Ph}}|}u}r}u h  {E 9u`P< P``ȉ9U9Uu9Ew9Euuu%@HX]1ȉڋMЋ])Ӊdhhd@HPR\lj=H)=P)=D듐9eP9IH|EEEEE E`PkE`PUEp]tDžxp EPj؉EpH9|t|P蔹EtjEEtXtijjEPEPVR)Éll) HlPl D+ljjEPEPV~TV`P\E‰É}E%PRh6 yE 9UP0TP,TP4HL+ \HXPL9tPLREPڴUPL}u"PEPPhJ KPV4PiPEPZ‰P[^_UWVS+‰EE9uEL@=Hlj} E P}W?PEPMEE%x}=du EP蕰E9tjEPeÅ}hEPhÅ}7=du EP艳PEPSPh SPh莑E9t_jjjS(҅|uDr u<:=du EPPEPPh EUU 9 E94P9E0lEpE tExE|EE`}dDžh`=lPjhE`EtjEEUUEB9H~Zu E}H@9~+EPE9H} DE @EPS }E B9H}j}udE}HBE9}ЉEE +EPE9H} DE @EPSE }E9uUSل}ES}EEPEPfbE‰=lj==du EPME9u UP0}tEPh sE9u:TP,HL+=\xXUPLE9t &=duEPh ~T[^_U,WVSu EEE]]ԡ9ER‰Uu69}wZ? uP EU<EE9E0EEPEP‰UuG럡99r`NEd]]EMԋt9}wAE9EwGE-dPhdEP Ud9t1E}}Ed}ts\t/G\tEGEEGE2EEE(EEDEEGEEs\tXG\tGEEE$EEEEGEEGEE EGE}t EEE(EEDEI9}w9E9EwGE-dPhdEPm Ud9t1E}}Ed\G\EGEGE$t[}wEM߈Ӏ1EEM߈ӀqE}vE]ހàEE]ހßE>}wEM߈Ӏ0EEM߈ӀpEE]ހE EGE}|G9}u EGEE-dPhdEP# Ud9t 1E&uVEP 9Et 1E9u j pPh9 hF j pPS9 E }~~hZ EPpP,9 Ehn jpP9 h jpP8 h jpP8 h jpP8 h jpP8 h jpP8 UWVS}ȉM#E uJu |2*}tP M P 9u P! M E E E PnE E %819|rE %t}t P P 9uP! E %L}u*P@LM}e}ȉMC뉐E #jE PP E e[^_UEPj‰UEPj‰UEPjr‰UWVS}EPE P_sϏE+E PE P/] 9]9H} D @0t}t P !P 9ut }uP! 9H} D @}~!P@|CREPE Pe[^_UE PEPj UE PEPj UE PEPj UE PEPj U E tE PxPE E R`PE}u,E ~HL+\@XE`9E}EE`9E~EEEPEPEP EP;n`UEPj.UEPjUEPjUh h h  h, hP hx h h h Uh jlP3 h j lP3 h, juP3 h8 jlP3 hF jcP3 UUEU4WVSEЋUЋU}EЋUЋUE9ˆUEЉEUЋEЋEU9EUЉU`EЋU9 u TEЋU9Pu p`E̋`JUЋE9H}UJUЋ]DCEHEЋ]@CHBUЋE9` 5@F5D5HF}~ }E11E9u4@BU9]u5@FH=HuKE}v }~wA}tUUЋEЊ\$E}tA{} uxq} u&UЋEЋE܋U9uLE} u&tMș}UЉE؋MMM1ɿ}t}wtMș}UЉEԋMMM p`EЋUЉ TEЋUЉPe[^_U WVSfáEU9]} ~=tZEEEUؙUE+ut5uN}jh @␐MșUE]ߐ9]\E)؉E} U)ډUEuh E)؉E}U)ډUE؉ESU]랐EEUp`EU TEUPe[^_USEtEPxPȼEE 9uE E tE PxP蕼E U ]E9U}E]EPE%U Ӊ]E]Uj`PqPEEUWVS1ɋ5H5L+5\F~ 9u}UU9H}ED E@ ușU+UUMȅu uAu  E띐e[^_UWVS`pƋ H LM \)MM}9ȉM衠9ȉM}~ } EEtEPxP蘺E}9~jS19}9]} 9H} D @M} u} u9ueCF} uNu}uE}t}~}tF,}~"}~~}tE\u=Se``)Ɖ5p` TPuEe[^_U0WVS} E ]]E]]졠]ࡠ9؉]ܡ9؉]u9 t1E}~ }E]]]9]~ ]9]| ]]]9H} ED E@]}~}~ EE}tnE䊐\t]HL+\9U}EE@9H}UBDUB@\t EE} uN]](]Ћ]$]Ѓ}$~EHUʉș}M)MEEȉș}M)M|} }E@Pj9EE]9]~)]9H}ED E@8 uƐ}~E@P9E~뢐M衠9tEE9| E))UEU)Ӊ]]$)]}$~EE(} ur}}l]9]~(]9H} ED E@8 u EǐM衠9tEE9| E))U}t}EEE9E9PHL+\9UE@9H}UBDUB@8 u]9]|}$u.=t G9\9uG]9]~(]9H} ED E@8 u EǐME)}}(R}FEW97HL+\B9EE@9H}UBDUB@\E9H}UDU@\]9]|}$u.=t G9\9uG]9]~(]9H} ED E@8 u EǐME)}E(H](E ]<]@uED5D]H1]9]t=]]؋D]f}} UB9Uu]9]u } tL<e[^_UVS] `E9Xt-C9H}SD S@8 t1HS^`EEP^`EP(JMȉ֙M)щe[^U0WVS] E}~ +E1E衠u'MЋu95t 1EE9TuP1E9]6}9=XEH9H}UJD UJ@8 ju E؃}~!M9 X}u9E~jEHP EjEPuh'h'uE}uEPju$E҉ljE}uEEEEEPEPuhSHL+\BPEPuuK$‰E9]}uM9 X| uuBjEHPE؋}9=Xt}~uQ9E뼐jEPuh'h'uE}uEPju$E҉ljM)MEu؉u49]|7}=M܉ E($ e[^_UWVS MEtEPxPWE PuF<RMY(K؋uV(V TMu9V(tHPER`P}EPZ`EP@‰e[^_Uhh4 .h 諯h 螯h` 葯h 脯h wUE9uE U9PuE UPE PE%RE%PR9& E}t?EP^E*PEP}P P.ՐEUPEPBPP.USEtEP(PGE9tP 1PhEP @9t+L9u@PܲP- @ XMH@+ XMDHHM L+ \M}}M)MMME}} MMEHL+\XH)Rh `+XPEPEPEPEPhKO | E1ۃ ~+< | X X CϐE]U EtEP(P蔫EE tE P(PrE E9u EzE %UEtEPxP.EEM}}E9E| M+MM!}| E9E|EPE P迫9t P 1PhEP_ h E %+UREPE %RE %PRh2JE}} EP跫‰U$WVSUM~HL+\] XE~ E E}t EE@9E uH]܋u܋E 9H}5LE9~95H}D]E@]EE 9H} =D} =@} Eb9t G9}uꐐ9}t;Iu*E +]]]C]EL G9}u 뜐+EE M EH9E E 9H} 5HFE9}95H}D]M@]ME 9H} =D} =@} EGVO9}t 9uꐐ9}t/Au&E +]]]C]EK륐+EE }t E]E }t@e[^_UVS]u jVSj Z‰e[^UE PEPj. UE PEPj U WVSDžE tE P(PE E9uYM}t(HL+\B X ЉEDEuEPwE#EtEPx PcE] E %hP:9t9^uDž9u \u'9u 9tV9-uK9uI8 sƄ(֐Ƅ(/t3Dž~)ِ}E9`}55``9H} D@(un=```9H}D@\tGGP'P`H~E9`~M ``H9H}JDJ@(u`HPO`[^_USEEE9tLEtEPxPOEEMʉM}~ EEtEP(PEE 9u+}~HL+\@XEE uE P0sE #E tE Px P苢E E M}~E9`E9`|h" %HL+\B9E~HL+\JME9X~XE9t }uE9t P 1PEPEPEP`PEP`9X"HL+\B9}u 9t P 1PEPEPEPSEP3Ã}~4E%+R:LMCE%+SLEBSKu]yE9uEP‰E9tDE9XHL+\B9E WEP[L`F9XHL+\B9SL`]UdWVS}E%UE%HM}~ E E}u1l }tWhEPK }tF8u<@B9u(E‰UUċ]s}ujEЍ)ԉeċuuM}u4EEątU M];EuuMEÐ])]ċuĉu}F@9t+L9u@PܲP @ XMH@+X]ءDHpu܋ L+ \Mԃ}}])]܋uuE}} MME}|E +XPh E+E PE +XPEPEPEPEPh=$|QX]E} ~-u< |]M Mu Eˡ E E.EE}E+XPh E+E PE +XPEPEPEPEPh"=$|QX]E} ~-u< |]M Mu Eˡ E UډnMAE RKeЋ]]]ȋEE UEUЋu)։u}}EHUЉEEċMЉME]ȉ]u9uu7EM]Љ EuMЉ1E]uЉEM]Љ Eu9uuMċ] MuuM9Mu]]tcu4>uEEM9Mu ]uЋEu+uM]Љ4MME9EuM+M]uЉ א%]9]u uMЋEM+M]uЉ C]+]]E̅}1u)ƉE }uM+M M}~EHUЅ|%EE|E؉U~@9t+L9u@PܲP]]ċE +EȋuƉu}~" HMEU9H}LEE9H} H@E}~"U NE9~ЋUJ9~‰UU E9}ЋU9}‰UE+E UЃIE9H}D]] 5@uuE 9H} DM M@] ]EE}~REE9E}#u9u~M]Ћ]䐐"u9uvM]Ћ]䐐REE9E~%u9u}M]Ћ]␐"u9usM]Ћ]䐐E+EU9U|u)uM+M̉Mt9])]EU…u!u)uEMċ] 8:t͐2u)uEU…uM)ME]ċu8tҐE+E+UUEE̅u|M)M]] ]u)u}~E@+M ] u5 5 E+Ẻ‰Ut MM}~  h]]E+EE "}~.5HuEU +UȍJM]9H}LE$E +EȍP9H} H@E}~UJEE9~ЉEE+E9E~EEE+E UЅ}2E 9H} DE @E uЋ4u 뾐E +EU9U|6M)M ]+]̉]u)uEU…u}M)M ]ċu]t-E 9H} DE @E 89Uu02E 9H} DE @E 9Eu rE+E+UU EE̅upu)u }~E @+M E ]  E+Ẻ‰Ut uu }~  ;MM gE+E UЅ}E؋UЉ 7e[^_UWVSEEEtEP(P E]E%M19}QP@TЃt+E~$P@D;TЃuEG몐P@MD TЃuE}uh# ‰E+EMIMUUЍPRSjEu\FbF19}qP@TЃuFB~>P@D;TЃuM}t\FWF\FWF*FG닐\FbFEe[^_UjjEPEPE PEP‰UjjEPEPE PEP‰UjjEPEPE PEPP}‰UjjEPEPE PEPPI‰UjjEPEPE PEP ‰UjjEPEPE PEP‰UWVSEEtEP(P:EE 9X. 9 |!HL+\B9 + P]P PLP詒E 95 E EE 9|9H} D @8P 9uJP! 9t?EP@MDƒt EX EAP! 9t3E}u&P@MDƒuE}C;}u }uE}uE P<`E9tMQj1ۋE%9E%|\ufE%C|&u P P:0~+:&< ~ P P WRX WFXCg `+ M P PlY}u/`P$P`+EPP3}u-`PP`+EPېPHe[^_UE9X~XEHL+\B9E|HL+\JME 9E~EE HL+\B9E |HL+\JM `PQE +EPE9H} DE @EPWUSEtEPxP[E]| j 譏PEP< } *} t   Pk‰]UjEPZ‰UjEP>‰U\SEE} ~E U}vUDհPEP̎PETŰRAZ vMUىˍ ʉPE R肎PUEʉэЋRY EE$EMUىˍ ʋ  LŰEEPUBPr‰]UWVS]t9tjSdP_ Ð1 ~S9=u SXutWPWw\ SS耐ljtWP轋W2\ SԐF>e[^_UWVSEtEP(P]EE%Uu}9u9>[t+>]t&>*t!>.t>\t>?t>+t >^t>$tEFÐjiPu[PduE]u9u>>[t+>]t&>*t!>.t>\t>?t>+t >^t>$t\CCF뼋Ee[^_US1ہ~\@~Zڀ P P @~Zڀ P! !`~zڀP! P! C띐dP臆h9% mhIyhG% L h (yPP4nPP#nPl PP B hV% tPPPA PPmP PmPl P PA hd% ctPP PA hQxhp" ̉hP" 迉h" 貉h" 襉hH# 蘉h# 苉h# ~hx# qh4$ dh# Whh$ Jh$ =h$ 0h$ #h$ h% ]U% EE% EUdWVSEu]] ]EPUEEEu@<@8Dž09؉,E@Exu_E@E8tjER謄Uj荃UE8uvE0E9]uU+UJ9E$Exu EUJʍ4pEx~ E@EPRERUuE+$}t ]}t ]苝]}t ]9uuI}tEr):AAAAAAAAAAAAAAAAAAAAAAAAA+AAA99a-L-AA/AAAAAAAAAAAAAAAAL-AAAAAAAAAAAAAAAAAAAAAAAAAAA/\:A,AAAAAAAAAAAAAAAAAAAAAAAAAAAAA<:% tT% u9ut}tjEP Ep9u; tz% un% t>)tW;\u~)t=% t;|t!3>\u%{|t}t{ t% u% t-M{]=‰Ɖ9]u6}tE9uu}tE0\t_‰ 9]up6}tE Dž 9$} $9 ~~Ѕ}}+㉝ bDž!9 hBDž~ސ뉐9 9}Ѕ}}+扵 Nʅ}Ћщ}+扵 20$$C j (  {9]u }tE]uE@9t >-{]9uuy }tE9uu: }tE9v9빐03|~ ~C‰~~C|uKʐF% u  % u  % u  % u p x9]uh9uupكU:@<<AAAAAAA@@@@@@@@@AAx@<>@AAA@>AAAAAAAAAAAAAAA?AAAX@AAAAAAAA@A@P>AAAA?AAAAAAAAAAH?AAA8@AA(?A=% t<98u0 # 0*tT;^tI% t%>\ub{+t&~?tH;+t >?t0]苵]E}tjEPq @9F@ƃ~>tFF@ƍ9t90u[>FF$FE@C Dž~ t אExt}tJDž~2vw Dž~7P@Dƒu Dž~7P@Dƒt 뻃}tRDž~2vw ?7Dž~ݐC Dž~ݐFtt t ƃGDž~+9u ȐC>Ftt t HFDž~+9t ȐFDž~:P@D9u 빐_>FDž~:P@D9t 빐> {‰HF<0tf}t&Ѕ}€ʀEЅ}€ʀЅ}‰pDž}Ѕ}2}+牽#t%}tE BwzF}}2})׉!Ѕt$}tE h> ‰xF}<0t$Ѕ}‰HƒuH}t'Ѕ}€ʀEЅ}€ʀ_Dž}Ѕ}2}+牽#u%}tE B~1}tE Ð>JF}}2})щ!Ѕu$}tE h9t0 [^_UEPEPEPEPEPE PjjEP$‰UDWVS] Ep ExMMM9ȉMtExu EPEx~,Eu~}~E9EEx+1]EMMM9M~MMM9MM+MM+EMMM9M U+UUU Utf9~* M܋M 9M؋M؀<1t}t }u 2 ဈMB}t}MMЉM EK렐Z9~  M̋M̀<1t}t }u 2 ဈMB}t}MMĉM EK몐M)ىMMMPU9UU+UMMM U Ut :MM<1uЀ<2us| E9EutExu E(PE$PEPEPEPEPE PEP E}|}u Euq~8E9E E+EEE E$t~ EKE1CME9E E+EEE E$t CMje[^_UWVSEEX9ȉMEPU؍XTTPTL}uE EEEE E] ]]MMME$9E|] ]$]EEEEEE$+MMDž ~DŽڐE9E|M M]MM])M 09} 0E U9MuE +] X(E +UMщH(Dž ~u(E E D()tE $+M !E $+U]Ӌ)tE +M L($E +U]Ӌ\(9Mu+E +UP/&+EU+]``(/|.U]]a<^a_a|X`Y`Y V`VV txtt({h~kobDg(uDw`y`zT}$9Mˆ(-9Mˆ(w-$``8u MW9tH9Mu;9u!M몐9u9t'9Mul,]Mɋ++9~+}t&EP,u&,u u ++9t'9Mu|+]MɃ}tU t t -+P@T u?}t99t+P@TЃ u*Džy u Dž9t'9Mux*]MɃ}tM؉`` ; ,DžЊ\``tÃQ‹9``}```҉`щ``C``}`````+`㉝`#`tʉ``J``u(J@``L``ډ`` u`}tZ9tLZ@``\``ʉ`` u'``9…}``T ``}`````+`㉝`#`tʉJ``u 'J@``L``ډ`` u`}tZ9tLZ@``\``ʉ`` uO&9] ty t +&+&9]t-9Mu}tE8 t; t %%P9LL+T‰9& } 1&L+T‰P)ĉL+TPPTP> P+TPL+T‰ÉLT PPPP$ 9uC9t;t9t C zu!J`9`tCAz tz t0z ``J```9```}``L `}+㉝`#``tÈ``u Cyt CP @5"P9LL+T‰P)ĉL+TPPTP[; P+TPL+T‰ÉLTPPPP9M t!9]t9Mu}u !}JK]}tEM؉``UEE9E t,E9Et$P@ETЃ u&P@ETȉMMB@U``Dƒ uVP@ETЃ u6E8uE$xU``C``Q@]艝`` D%E1}t}t }t)E9Mt EE}t E]؉`` E UEE狝9]t"P@ETЃ u$P@ETȉMP@ETЃ uhB@U``Dƒ u9}u#Eډ``xU+Z@`U狍`D%E1}t}t }t)E܃}t }t}~}E9Et0}t"}~}~}t}~}~P@CTЃ‹J@``\9Mu-U`` `\`6```\```È``1Ѕt9M t!9]t9Mu}u }JK]}tEM؉``UEE9E t,E9Et$P@ETЃ u&P@ETȉMMB@U``Dƒ uVP@ETЃ u6E8uE$xU``C``Q@]艝`` ||D%E1}t}t }t)E9Mt EE}t E]؉`` E UEE狝9]t"P@ETЃ u$P@ETȉMP@ETЃ uhB@U``Dƒ u9}u#Eډ``xU+Z@`U狍`D%E1}t}t }t)E܃}t }t}~}E9Et0}t"}~}~}t}~}~[KP@CTЃ‹J@``9]u+U ````4 ``xx``````1Ѕtqc}r9]t9Mu}u ;9]t EE}t EM؉``E UEE狍9Mt"P@ETЃ u$P@ET؉]P@ETЃ uhB@U ``Dƒ u9}u#Eʉ``xU+J@`U狝`D%E1}t}t }t)E܃}t}~}9M uK]}tEM؉``UEE9E t,E9Et$P@ETЃ u&P@ETȉMMB@U``Dƒ uVP@ETЃ u6E8uE$xU``C``Q@]艝`` ttD%E1}t}t }t)EE9Et }t }t}~}~ 9MtM9]u }u:B@9MtUDƒu9] t)P@ATЃu KK}v9] u.IM}tE]؉`` UEE9E t,E9Et$P@ETЃ u&P@ET؉]MB@U ``Dƒ uVP@ETЃ u6E8uE$xU ``C ``S@M艍``ppD%E1}t}t }t)E}t}~}9]t9Mu}u k9]t EE}t EM؉``E UEE狍9Mt"P@ETЃ u$P@ET؉]P@ETЃ uhB@U ``Dƒ u9}u#Eʉ``xU+J@`U狝`D%E1}t}t }t)E܋E9Et }t }t}~}~ 9M t)P@CTЃu 9Mtu9]u }ubP@z9MuEЍ:!``:ƒu `l+E9Er+D9l} +@9l}  `h+E9Er+D9ht +@9ht WG`d+E9Er+D9d~ +@9d~  9]tEE}t EM؉``E UEE狍9Mt"P@ETЃ u$P@ET؉]P@ETЃ uhB@U ``Dƒ u9}u#Eʉ``xU+J@`U狝`D%Eܐ9t$9]up M]̡P@T u?}t99t+P@TЃ u9]t  9]tEE}t EM؉``E UEE狍9Mt"P@ETЃ u$P@ET؉]P@ETЃ uhB@U ``Dƒ u9}u#Eʉ``xU+J@`U狝`D%Eܐ9t$9]uT M]̡P@T u?}t99t+P@TЃ u9]u 9t'9]u M]Ƀ}tU t tO M衠P@T u?}t99t+P@TЃ u+Eu 9t'9]u M]ɋM衠P@T u?}t99t+P@TЃ uE苍9Mu}9]t EE}t EM؉``E UEE狍9Mt"P@ETЃ u$P@ET؉]P@ETЃ uhB@U ``Dƒ u9}u#Eʉ``xU+J@`U狝`D%Eܐ9t$9]uxM]̡P@T u?}t99t+P@TЃ u}t}~}~ Dž9t&9]uM]ʋM衠P@T u?}t99t+P@TЃ u+Et7B@U ``D9u }9Mt EE}t E]؉`` E UEE狝9]t"P@ETЃ u$P@ETȉMP@ETЃ uhB@U``Dƒ u9}u#Eډ``xU+Z@`U狍`D%Eܐ9t$9Mu8]M̡P@T u?}t99t+P@TЃ u}t}~}~ Dž 9t&9MuP]Mʋ]衠P@T u?}t99t+P@TЃ u+Et7B@U``D9uw9] udg9Mt9]u}u 77 Dž}9t'9Mu]MɋB@M؉``Dƒ u DžU؋``8 tPu ,9t$9Mu ]M̡P@TЃ u Dž8tu S``‰```щ`+`u)P@TЃ uP9TtfP8u PېPPPP9M w9]r M BP[^_UWVSUM] u0uu;uuCAu0u87t  Jː1e[^_USjEUÉBtj`Euj 1e[^_UWVSEEXtj`Euj3 e[^_U WVSX<1 Mu q 9u t hb& +uCHH<uL}<t<t +‰ |1<t 9C~h&  F F = N}u KLL<t!<t} w tt9 X6HL+ \B9h& ^`R9 X"HL+\B9h' t`<,DLPlА`P`P~P +}CCPP`)P CSRP`Pg {CP`PE P`P TR"`+}2PCSRPCPx{CP_TR`G9H0t2?TP,h;' ޡ$ = [^_UWVS}u ]>PWN}%9=H} D @CGԍe[^_UWVS}] uH@9}a;HB9~SGH)RV9=H} D @P  GH)֍GH))Ӌ=HGSV9=H} D @Pr  e[^_USXDžux0`8`G=`w` %U%UBe[^_UVSu X=X ~ h2 舖' X%U E P%PREP %U BVЅ}Xe[^USX=X ~ h2 ' XXEPځE PځB]UVSuNr X=X ~ h3 ^' X5X%Ue[^UWVS]|9u %=1 s%=' rtVw ttcth93 誔%PR%R‰%R%PR‰e%RE%M91%M|WMDEe[^_U塄6 Ub3 6 =6 ~/U0WVSE=u h6 lPj|P葿EEuE%PL,uH EM9 6 ]b3 PEې5uЃ}uEM]9KEuЋFuUEЋMAPKU]ЋSuuԋMM]Ћ[]ԋuMԋ414EvMЋ MQ]؋u95u!uE؃PEҐpE}u+EPEPEPUϐE}u+EPcEPTEP Uϐ=uGuGPGW  t  tE _ K]쐃}}lEGuLEGPUWuuԋMM_]ԋuMԋ414M덐?,g MЃ}ufE]u9^CUMЋQ]]ԋuuMЋIMԋ]uԋE뱐uЋ6u딐=uGW  t  tE _ K]쐃}} h,> hD> h\> ht> h> rh> eh> Xh> Kh? >h> 1h(? $h@? hX? UjHP8POU=uh|jU@WVS,uPu ,%PPBЍ)ԉ,%PRV>P%PRVjjV? }VhB ]QjMȉRP{҅|u,ru$"ݷVEPhB P @9udhW_ ;u5jW$1t A)RP‰[^_U EEEtEPGEݐEu}E%xu E%x|*E%PRP‰vE%PRP‰JEuhB g‰'Euh3C C‰Et-PEPVP(PL‰EPEEt,PEP P(PLL‰E%09uhCC 蒶‰RE%d9t E%|9tEPPPYEEuEP-‰Eu2E|#EPP‰E%9uiE%9u$EP3P<‰3.PEP荮P(PJ‰USE PEPÉuЅ}PS ‰]U,WVSEtEP(P:EE%BЍ)ԉhC P!E%PRPjjPs: E}}0PP'PXPhC EP1Dž ")PREPa DžuƄ/~K 9t9u  ֋9j ++PRPP yVuRF)Ɖy*u‰PPPPP ByF%Pu6%J)щH%9dt9|tPPyuN%u:%I+hD TI)))WPֳ EPׯ[^_U(WVSEE9u EtEP(P&E]E%8PxUE%UEP‰U9r;\u{=uECF;\{[E]9s;]uC퐉+MMCPEPEP蠯PɿEءPEPuE E؋M9 uHE‰UREP?EE+EƋEEjVhPD : uBE;\{{t {u C搉+MMCET%PnPEPEP荮P趾E܋EPE؋M9 t8EPE؋M9 tju6E؋M9 taEPCEhUD IE%RE%PRJhdD EH8lPEPMPJPEPWPLlEPEP 7‰5 6E9u!PEPV‰ E܀8*uEܡP`9tlNE܉EDžE؀8u>E؀8ruj EPE؃}tE E{K 빐}ЋE@P)ĉEE@P)ĉEE@P)ĉEE@P)ĉE1ۋE@9|CڍU  ڍU  ؍EC볡uDžuDžEDžEDž=uF}GE܉EػE؀8u jcE@PP ƅgj Pt Dž9|U4M<995t9<u >|K dEPHPPjdhP蜈E؊¾ƒ6td H,P< <PP PPhPhPڍ U ؍EUPEP ڍ U bIڍ U 9Tu)؍ERCڍ U P؍ERhP螊Px ڍ U PHPYCPhPSP4x ڍ U hP. ڍ U ؍EUEPڍ U &PP4PPhP謉P5ڍ U ؍EUPEPdڍ U ڍU ` ؍EvdPPPRPhPP ڍ U .dPPPhP躈P۸ڍ U PPPhPvP藸ڍ U hPDP9ڍ U ؍EUEP:ڍ U DKPdRlڍ U ؍EE9tPhP荇Psڍ U ؍Eu볐ڍU  ڍUM ؍E]EPRڍ U ؍E%+PdRkẺڍU `9M}M̉ ؍ECڍU `9M~M̉ ؍EPhP:Prڍ U ijhPPPPslڍ U ؍EUPEP貕ڍ U hP蔅P1sڍ U ڍU  PhPFPkqڍ U ڍU  cPhPPqڍ U ڍU  ERERh}K  ؍Eԃ<u Dž؍E9uM؍Eu6ڍUٍ<M41<j EPE؃}tEEؾK CY@9t+L9u@PܲPLEUuE 9uEUE@9|؍Eԃ<~FP؍EԋK PxP}|ڍ U ,؍ERڍ U CjlPEPE@P|P|lEPE@P}*‰[^_UE9u EaEuEE%M8EuE%UEu EE EEUhK G(h(#hK &8h8hhK hlh L hlhL lhJ =hTK 0hK #Ud 2d ‰Pu` XUp@4U9}  d (9` } d ( ` 4EPtP'‰U4@PEPyPhUSE9u {EEEUUEUEP#P9t%EP苙EE9u뺐E]USE9u {EEEUUEUEP臘P9u%EPEE9u뺐E]U SEMMEM EPPwËE9t*EPiPҗPC‰*EP?P4P‰]U VSEMMEM E9uiEPOSDP95t,%P9t%PR.E%PU늋Ee[^UVS9j茓ËE9tEP裖ƉtZ@9t+L9u@PܲPSV /EP͖E뀐E9u nEEEUUEUEPPdËEPfEE9uƐEe[^UVS1E9u ]EEUUEUUUUEUFuSDPES&PS螕9u뮐EEe[^UVSEE9u ]EEUUEUUUUEUFuSpPESRPSʔ9u뮐EEe[^U WVSE9u ]EUUEUSUP输P/S訓VWSP9u말Ee[^_UEPT‰UEP8‰UVSh9u=ut{ tC9Lt ܋C0tK@9t+L9u@PܲPV芕묐u +t;tP98u e[^UVSEP"ËEP蠒PdPrơ|9t V{VSe[^UVSEP‘ËEP@PdPqPPqơ|9t V6{VSre[^UVSEPNËEP̑95tAS95u.EP裑P P}PSEPuPjPӐ95t(|9t VozVPPSD e[^UVSEP肐ËEPPiPPSvEPҐPǐP095t(|9t VyVPPS"D e[^UPPEPCEEuE} +EuE%x*uU4+‰EEMMEMM؍MMEM؉M̍MMEM̉ EPEE9u@9t+L9u@PܲP+ EP迎EEuPEPY'BEPP脎PEEPEPdP'EPَE0EEP軎PHEEP'EU(WVS+‰EEPݍV.É؍BЍ)ԉEEMMEMM܋EEEM܉ E195u@9t+L9u@PܲP V&Éu#U M؋M؉ G@SzPPTU؋M؍MM؋M؉G}V:2EEP蓌195ufVzɍUEGuEPS%EPS:P$V貌듐EP蟌P,ËEP%e[^_U$EUUEUU܍UUEU܉EP訋EEP#EEPEE9uI@9t+L9u@PܲPEPS뛐EUWVS] t%8t @9t+L9u@PܲPE PWb7EM9 u1%HMEuM9 t}>2Eu!E%PuE%x EEEtk@9t+L9u@PܲPE%PUE9 u EPz}EE닐EEEEPEUUJ9|.E%fx|[UBU9|=PEPYPEPYPP!‰E%fxu!EE%UR8׃EEE%fx1EЍBЍ)ԉEE̍uuEủuuuEuuuuEu5EEEE9uEEPxPLэMGEP@9t+L9u@PܲPVi9=u E9= u E}t>EPE +EP0JPVTiPM M}M9M ~EUEEPWX}uBPEPIPEPIPPC‰PWVGiM9M ~8PEPHPEPHPP‰8EPhPhPuEEPEe[^_US+؉ӡd 9` c=`  ` d 9` @PhAP NPGPP` Ѝ  ` d Ѝ  d d 9` } ` d d ‰PPF؉ щ ]USd ‰9uU@E%PUE9 tEP"m CEuE PEPEPl E PEPo]Ud ‰9u8UPU PUVS@9u@E‰9urxtJQXӃ>9uPRPRRnt@9u}t @e[^UVSEtEPxP`E1tE9| F␐tE 9CE e[^UWVSuLj{tP P P9,{ ujhP $,CUPEP1{ u-{tjhP +jhP +{ ubjhP +C819=u>tjhP +PWdPJ1WdF빐NjhP `+19s 4tjhP D+PCR0FjhP +e[^_Uh` hP `hhP `h@hQ b`@hLhQ F`Lh&Q Y|h|Mh/Q XhMh5Q XhMh:Q XhMhFQ X4h4oMhOQ rX|h|NMhUQ QXh-Mh[Q 0X h  MhheQ ^h`hzQ ^`hhQ ^h4hQ ^hthQ ^thQ WhiLhhQ ^h@Lh0L ]hHL ]h`L ]hxL ]hL }]hL p]hL c]hL V]hM I]h M <]hdM /]hM "]hM ]hM ]hM \hN \hN \h4N \hPN \hpN \hN \hN \hN \h O \h@M y\h4O l\hTO _\hO R\hO E\hO 8\htP +\hP \UEUSE9uEjRi  P!\‰]UWVS]ttSr‰ujE95uK@9t+L9u@PܲP V._E뫋}1.9u 1SPY,e[^_UVSu] u'% ΁u'%ځ ˁtV(P-YƉtS(PYÉ%ځ9u0%R%PR%PR# u e[^UWVS]u u-%ځUU ˁu-%UU ΁tS(PXÉtV(PWƉځUEUE%U%U9} %U19}7UU8t"UU8v'GÐ%98~ e[^_UjjMQj‰UjjE PEP‰UjjE PEP‰UjjE PEP‰UE9uEmEt-Et"EtEPPxVEjEt EPMQj‰U,WVS}t!}~MEU E EEM9MEE 4tq95tit_tUu%VqU MԋU Mԉ )VPxUU MԋU Mԉ E]E1M9M(EE 4VE}EА}}uPEP:E7}uPEP+;EEPEPS?E}uE9u EEu ]EEEEM9MeEEE 4tVEEM95uuVXEV(YIM9Mu%UBME%U܋LME܃}}%M؉]%XqEuE%UM؉LELEuuءxPBSEސE%UBUMԊMԈEEE9tE%UPEe[^_UVSEt"E9tEPPREE9uEzjjMQjQE]tJ%0u)%PR%R6ځ%X몋Ee[^UWVS] uEtEP(PQEtSxPQ95uEP"tVxPQƉ}(%U ʁ Ӊ}(%U ʁ ։|29E%9|VSEPR }})UuuB;EERE%PRE%QP> Ee[^_UWVS] EtEPxPFPE}19|I@9t+L9u@PܲPS"UF뱉e[^_UE PEP`PeT‰UVSu] tSxPOÐzt 95t VSPT‰IAttSVUe‰VPO냐e[^UWVS]u 95u^VS9uQ@9t+L9u@PܲPVS뛐e[^_UWVS]u 95u{VSljtQWRE9]uS@9t+L9u@PܲPV&S{e[^_UWVS]u tAV^RljtWFRE9]uVR붐e[^_UWVS]u 95uVQljtaSWQPEU9tQ@9t+L9u@PܲPVRke[^_UWVS]u 95u{V>QljtQWQE9]uS@9t+L9u@PܲP?VbQ{e[^_UWVS]u =95uVPE9]u39=uVQE VPPWQVPơ@9t+L9u@PܲPrcE e[^_UWVSE9uEnu95uU@9t+L9u@PܲPVPSVP뢐e[^_UWVSEPEEЍBЍ)ԉ}Ou}VOOVOSER/‰e[^_U$WVSEEEP|É E :M܋EP% ËEPS_VNEPVOEMMEMMMMEM E PEP;EE PEP&EEE PEPEP ‰e[^_U8WVSu} EEUUEUUU UEUUԍUUEUԉUȍUUEUȉ 95u,E9uWSNE9=u,E9uVSUNEVLPWLPEP EE9uuV/MƉu}WMlj} 9u EEEPSM] e[^_UWVS] EPO95uGV*L9uVLPL‰#VLPL믡e[^_UWVS] =EPAO95uNVKE9]uEPV!LPL‰}VLPK몐PEPe+PSY+E9=uEPEPOEPWKPwLEe[^_UWVSu] @9t+L9u@PܲP9t 9u uZShJPV\JPUEE9u EnVJSJ(uB%ځ9u!%ځ@9Bu %ځ9t 1%98H%TU%TUEPEPcEE9uEG묐qu^%ځ9t J%R%PR%PR藨 t  e[^_UWVSEuEu#P`P/PEPp }|*E9E~E `+EEPG`E9t EPUEEE 9uE E EE 9uE E u)E %9tE %P*E E u[E%9tE%R`EE PPW``EE hjE PEP  Eu#P`P}.PEP }|(E9E~E `+EEP`E9t EP-EUEETEEEE9uEEu)E%9tE%PEEu[E%9tE%R`EEPyP``EEhjEPEP Eu#P`P-PEP }|+E9E~E`+EEPc`E9t EPT%PuEEPEUEEE 9uE E EE 9uE E u)E %9tE %PE E u[E%9tE%R`EE PPG``EE hjE PEP Eu#P`Pm+PEP }|(E9E~E `+EEP`E9t EPEUEEE 9uE E EE 9uE E u)E %9tE %PE E u[E%9tE%Rn`EE P^P``EE hE Pj DjE PEP E Pj $Eu#P`P)PEPV }|(E9E~E `+EEP/`E9t EPEU@WVS]u @9t+L9u@PܲPȨh=h~ hW )wd؇|0L000،0000000@܍VjhW ; PhW EP4 VjEP VjhW  IRh0X EPK4 VjEP }u&V%R%PR فM؃EVj"%8@9t+L9u@PܲP/M؊ ME؀} u#=4tVj\Vjn+}"t }\t Vj\xVEPjO\Vj"X%MЉ%M M̋M9MtMЀ9-t MЀ9+tEЋM9Mu15M9MtMЀ9/v MЀ99v EېM9M%MЋM9Mu@9t+L9u@PܲPMЊ MEЃ}th}"tU}\tO}'tI};tC}#t=}(t7})t1},t+}.t%}`t}[t}]t}?t } vuVj\1VEP/Vj(1EDu DM}t[Gt Vj }t9}}Vjh3X *EPVSu(P S(9t(tVjh7X EPVS Vj)Vj[1%982t Vj %LMEPVu& GVj]x%PH9uVjh;X c}t>VjhLX Vj%PHBP Vj>S!Vj%PHBP }t>VjhVX Vj%PBPn Vj>!Vj%PBP@ VjhaX + %PDRhkX EPw/ VjEP %P,9t=%P,BH%HMVjhnX VjEP Vj>.VjhsX VjhX w %8uVjhX [ ^SPhX EP. VjEP+ VjhX  Vj%BH%PR Vj>x7VjhX Vj%PR Vj>B he[^_UhhX :"hX hhDhX !Dh4hX !4hTh,W !hHW !hlW !hW hW hV hV U WVS= |=  EueE%9u @ uFF +V9V ~ ^ F 9F} F8F EE%9u@ E%0EPIEFF +V9U~ %M9N}EFE8F@9EtE%@-EP?PE@PPEPP E9 u9 Hx} PpM MM}Eu= 9 ~$E% ME 7EPwEE9uEe[^_USjlÁ]US Hx} PLÁ ]U$WVS+‰EEtEP(PEEPEE%8~3jEPE9t]Y ^Y PEP,P/ƅ}bE 9uKBPEPPhhY PPXP5Rh~Y V}JÅu"VVE%PRhY mE9uE%PRhY qEMMEMMMMEM jE܋M܉}܁Wh} 9t#EPEPP8 9tjh7S PQEPuE=u$E9uE%PRhY 脩e[^_UE%RK = }  UU1:~t :/tUWVSEduE}t EE PtEE9u EPPE P WUu(PPRW W2uEPHME9E~ Ed‰UBЍ)ԉE, 7j:,PB}((t(+, ,P $%R%PRV= %2$t$P,PV 0PVg|^f8f%f=@tM}tjV<jjV Å|}tVUS(u$@,}t #EP3E[^_U UWVS+‰EEP0P ?E EPÃ;u)EPÉ؃ tuݐ봐} t t t t댐|9t7(u2PhEPj, ƋE@PA EP9Ƌ=  VMMMуƃ}tDtPVAt9uPVNPV= EP觴e[^_U+‰EE9u <EEEEPPOWXPhLXP`E9Ph7j薿PEPU+‰EE9u <EEEEPP蟲E9uWPhL7ePh "ER`E PXPQPcE9Ph7j裾PEPU E9u,EE9ulEE9lu&Ph1Z P‰JEu)PPEP, P‰EPc‰U EtEP(PEE9uE%UZEtEPxPEEM}|E%U9|EPEP#E 9u EPE tE PxPE E M}| E9E|E PEPE E  EP1E PPEPO‰USEP`É uEUPjEPPP0P7‰]U WVS]Sfƅ}PLP‰0Fރ;xȞ0dSj‰S‰ PjhiZ P3P0Pr‰SƉ| u ߐ'PSPPP‰LSVǁ\uS% lj=  MESEE|}"uSEE"t 9}uL ‰У P PvEE+ NjE+   M}\u SE}}9= uEEGAM |9t&P9u}tj0‰= t'+ P Pk‰"+ P P‰ F=  M ~6"t1't,;t'?t"(t)t.t[t]t #uz9}uL ‰У P PEE+ NjE+   M\u SƉȈGSI9}u= ‰У P PEE+ NjE+  5 MM9+t M9-tE9}tP9}tM1/~ 9~  Eې9}u# P,5ME Pa‰e[^_UWVSEPjEuE= tER`EPEPEE%0}19|a= tuPpEuEM MMuEunC뙋Ee[^_U$WVS] }} 1EEE sEMMEMM܍MMEM܉ S-ƋE }~T]u EPjhkZ :PP0P‰)u E.EMMEMM܍MMEM܉ E9tSUBSES$ƋE u)u EPjh~Z :PP0P‰Pj hZ PkP0P誊‰= t}PVPVNjE9tE%x}}}}95|ȉM}~  e[^_UWVSEPUÍCl$TTTTTTTT<HT`lxa^RF : . "  EPÃ-t hZ #EPÃ\uEPxÉڀʀEPÃ-t hZ ӉEPÃ\uEP(Ã?u _ځPs1G~;EPSÉ؃/~7փ 뿐e[^_U吋EuE%8t29Eu `EPPqE뷐EU SEPPEEEuE%8uEP_EEPEPEP EEuENEP|9tEPEPEPEPS‰]UWVSE 9uE E PE EtEP(PHEE%RE%PRE P, Ét |9tEPVEEPƋ} ЍBNju%H%@7e[^_USE 9uE E PE EtEP(P>EE%RE%PRE P" Ét]UWVS] uEuE%Uu#EPEE%UVSEMME}UE%UDE}u}Eth[ ߅b}%92u'VS%Rf u B%xu%x뤋MMEe[^_UWVSUM 19u&B_v؍4א?e[^_UWVSEtEPPdEE%K}RE%tt<6EPV} ׃%xu%pK멐e[^_UEPE PēUE 9uE E PE EPhpE P U SEjhU[ NP[jPEP`hh`jhY[ 9EMȻU%UэJ]Ejh][ P % P % P % Phe[ %P%P %P|hg[ P d P ]UEPRvEE%UHUEPAEE%U HUEP EE%U HUEPEE%U HE PUEPEE%U HUEPeEM + ME%UHEXUE8u`U E~[ EPh[ >EE9uEPEE9tTEPgEjE%PR`!}'EPBPh[ ;%E%PUltEPh[ P=,|9t%,Ph[ P", UhZ ghDZ ZhZ MhZ @hDY 3hY &hY hY h Y h8[ hh[ hth[ nh,h[ \,h,h[ @hh\ $h h \ h\ 0h0h-\ lhlh7\  h  UjNPj;AP ‰UEtEPPEE%UEE9E$jUMDEՐUEtEPPEE tE P(PE EtEP(PEE9uj*E!EtEPxPEEPE PEE%PUE%PUE9Et.EuOEPEP膟EE9t/E9Et.EPEP跲EE9t EPEPEPEPyEPEPE UjPPE PEP3P̲PLEU塠P|9u hm] {jPPE PEP3PP|REUEtEP(PEE 9tE PEPPEqEP|9tP|REPEE%P9uEE9u̲PEPEE%P9u  EUE PEP EE9uEEP‰UWVS8 Dž4Dž00%9t 9$$u$P$+$t$Px P=$$95H} D @8-u FPV蝿j`PKƅt`)= 95`~ 9=`c9=H} D @P 9tP 4P! 9t0‹  G듡P|u08 )R8PP|R Dž t %P9t+8 )R8P̲P t %P9t h9u;=u2T9 t% 8)P;`V&`8 )‰`PxP`PgP(>8 )‰`P`Pd 8` %P  % Q I A щH %P,,%R,%PRc40= uUj`PjV9~*`PPVPD/(`PPVP.E4t;=`V`jvP/W` %P((9t(Pz[^_U `EE9XHL+\9 PE`u|8%PME%U`EP`P蝺%R%PRj%)ME9U~+EP蛜`UE%P9ujh5^ E%ME PEPjh;^ 輸E PE%PRjh=^ 蕸E PE%PRjh?^ nE PE%P RjhA^ GUE%P9ujEE PEPPEEPjP\2E PE%P REPjP+2E PE%PRE%P9t1EPj-RP1E PE%PRE P'UEtEP<PEEP_EEtEPPQE%UE 9tOhx^ 蝶EPEPhz^ 耶EPhEPk h~^ ^Mh^ NEPEP調h^ 1EPhܾEP h^ UEtEP<PdEEPEE9t EP#EE9t5;EEPEPDPEPDEtEPPE쐋E 9uE PWEEPFEEPEEP$EEPEEPEEP}EEPEEPEPEPEPEPE P?E 4UhDh^ Ph^ sPxPh^ XP]Dh̲h_ L̲h h-_ .  P|h8hK_ hhW_ hhh_ v8hh}_ h0h_ 0|Ph_ hh_ ,h h_  hP\ hx\ h\ sh\ fh] Yh] Lh] ?h] 2h^ %hD^ h^ UEuE%8u  USEP9tjEPLP E͐E]UP@MEU塸UEEEPEPWEE9tEPCE!9u E: EhE%PRE%PR EUEPEUP@EUEtEPxPHEB@UыDa R‰UWVSE(EuEPTE#EtEPx PEE9X(UHL+ \9]]}E9H} ED E@]UHL+ \9t;uFE@9H} D @]EJE%8u E%X]E%8tE%X]E`b P@ETЃ uKP@ETЃ u+}uE$x9U9J@ULʍ9PX‰e[^_U VSEtEPxPEE tE P(PE E9uP@MEPE] ` C=uEPhb h M}tC} uEE M;uWC<2t%<2w <1t?<3t <4t(2M'MMM뤐E%UMUMMMLe[^USEthc 转 ]ۋEEEMEMEMEM| h&c ma EEEEjEPE}u EjEP}tjh.c }tjh0c Ы}tjh2c 軫}tjh4c 覫h6c y =x(<L\l|hEc "hPc h\c hac hhc Ҫhmc 辪hsc 說hyc 薪qhc 膪ahc vQhc fAhc V1hc F!hc 6hc &x}t%hc EEEjEP}t hc }t hc ҩ}t h6d 迩}t hld 謩]UE%P膌PjhPEPjEP[USX@Sh8hd ]UWVSuX]HL]\)]E@9t+L9u@PܲP-a}  9uu1 B@95H} D @Dƒu E!EH9u1 95H} D @]F9H}VDV@]衠P@ETЃ uLP@ETЃ u,}uE$x]E]!P@E\]}e}t}~}~} ~FFwEUH<<<<<<<<<<<<<<<F9u~AB@95H} D @Dƒt 볐/MM9E95H} D @]F9H}VDV@]衠P@ETЃ uLP@ETЃ u,}uE$x]E]!P@E\]}e}t }tv9EaB@95H} D @Dƒ B@V9H} ND N@Dƒ 95H} D@8u;F9H}VDV@$x]+95H} D @]=B@95H} D @\]}e}t }t ]9]t E@9Et uM9Ez95H} D @]F9H}VDV@]衠P@ETЃ uLP@ETЃ u,}uE$x]E]!P@E\]}e}t }tz9EaB@95H} D @Dƒ B@V9H} ND N@Dƒ 95H} D@8u;F9H}VDV@$x]+95H} D @]=B@95H} D @\]}e}t }t ]9]t zM k} |l s9uu1ZNV}N95H} D@]F9H}VDV@]衠P@ETЃ uLP@ETЃ u,}uE$x]E]!P@E\]}e}t}~}~RFB@95H} D @Dƒu E}uZ9u}EB@V9H} ND N@DƒtN믐}t}tE@9F9H} VD V@]衠P@ETЃ F9H} VD V@]졠P@ETЃ uLP@ETЃ u,}uE$x]E]!P@E\]}e}t }tP@ETЃ u@P@Bƒ u%}ux]E]!P@E\]}e KE@@ME@9+F9H} VD V@]衠P@ETЃ F9H} VD V@]졠P@ETЃ uLP@ETЃ u,}uE$x]E]!P@E\]}e]9]t E@9Et ?E@9&F9H} VD V@]衠P@ETЃ F9H} VD V@]}P@ETЃ uQP@ETЃ u1}uE$x9u<>E9u)+P@ET9u E e[^_UEtEPxPEER`P*E}u@E~HL+\@XP}`EPg}`U WVS]EEE}~E@9t+L9u@PܲPQ} x5H5L+5\F9|49H} D @M䡠P@}|}}eC9}wP@MDƒtRB@9H} D @Dƒt=tE CE _xp9uC}u }u 9|B@9H} D @D}E wP(hhlllllXXllhC9uf CSs=u: 9uKB@9H} D @ MUDƒ uyC9}kP@}DƒtFB@9H} D @DƒtC0_}uQ9t%9H} D @9EuC}t E!EE}u+M}uE9E~ hd PC9H} SD S@E 9|9H} D @U9uOB@9H} D @Dƒ w rCCqC}u }t-}tM }} |5X9yKSE}tK9H} D@M䡠P@}|}}e9P@MDƒttB@S9H}{}UDKMU@Dƒt#CPu=tE K}u E1 ]4ddXd}u }u 9CPOE}tK}B@S9H}{}UDKMU@DƒtRB@S9H}{}UDKMU@DƒteK/W}u%9t,C9H} SD S@9EuK}t E"EE}uM}uE9E~ he M=u9tKB@9H} D @:}UDƒ u9uKP@MDƒtVB@9H} D @DƒtS u !9H} D @E^9uCPu:ES9H}{}UDKMU@9uK랐K}u }t)}t0,E I]EhAe Ke[^_U WVSUX]19U}X=G@z9=H}Z]}=DZ]}=@?Lɉȃ t t J딐e[^_UEtEPxPEE tE PxPE EtEPxPEjERE RER‰UEtEPxP4EE tE PxPE jjE RER‰UXE`EE9E}^EHP4uKB@UJ9H}MID MI@Dƒt  M두EPKq`UdWVS] Dž@9t+L9u@PܲPEE9u DžEE.EP/9t DžEPuEEPdEEPSEEP9tEEPEEPj9ȉMEPEEP09EA}t}|tltm9]  B@9H} D @tC9] B@S9H}{DK@DƒtNB@9H} D @Dƒt Dž C x`l\`}t{>9] uC}ts19] B@9H} D @D wNHxxC9] u  CRFE 9] uB@9H} D @ҋDƒ uC9] ~nP@TЃtEB@9H} D @DƒtC'E}tK9u he CGM}uqS9~ 9tFE}u}tKC9H}SD S@0u9] 9H} D @9EuVB@9H} D @Dƒ w r C9] 8CpEAC KEuEGE9t AE]Ulj[^_U$WVE9t1EtEPxPHEEME`yE PMQ$lEPE9PEPE RER}EPh`PEP(P]P}t P=P}t PP}|EPȽPP}|EP蠽P͠P}|EPxP襠PEPVP苠‰e^_UVSPz5az~ DCAZ~DC됐09~DCdždždž)dž(džt]dž|[dž}dž{dždžx 1ۃ ~f DC䐐1ۃ ~f DC吐~ DC됐~ D Cdž1ۃ~DC됐~ ƃC쐐   ~ ƃC됐~ ƃC쐐1ۃ2~ ƃx C =~ƃx C퐐e[^Uhf ˳LhL觨h蚨hh.f |h_ h` h8` hd` ܹh` Ϲha ¹hxb 赹hb 訹hd 蛹hd 莹hXe 聹hxe the ghe ZU} t E PvEPhPf ;UEPTEPEPE Pp; UE} t)jE Pj)E}}EPE PwhEP6E}}EPEPKEPE PEPEPEPEPEP|2EP | EPE PEPEP|EPk1EPW}| EPEEP 1UWV觼H , }uQQE, !Ejѣ , M, !E}tA , M, !EE9Es"jEPhhf EPFEEE9Es&EPEPhf EP}  j h E P tEPEP = = =  = %=tl %=tT %= t< %=t$jEPhf EP  j I$cO$ E(   }tE M+M M+M M+ $  j h EP tEPE P 1e^_UVSj = tC =t% %= t @ RPEP蛞5$  SVEP+ 5(  SVEP 1e[^UWVSu ]h0PH19r,,),)9,~ ),,VEPɜ ((u'= u,0PEP蘜 I(9,t8 P(,EPVhf EP%EPEPe,,%[^_U8WVS} } 1j 5  = tD =t6 %= t %=t=  = tD =t6 %= t %=t  = t~ =tD %= t,%%*%%(%%5   t}  tJ  Ɂ t2_ #0ˉ؉5   tE  t6  Ɂ t  Ɂt   tu  t>  Ɂ t&$$ˉ5   tm  tB  Ɂ t* *ˉRPE P踘hPE P :PPEPY 9tEPEPW띐}EPEP:1[^_UhEh uȉMEPaEPEPuEPEPfEfЉfIf UEPEPuEPEPU SEMMEM E9u~EP+P4ËEP螱EE9uEtEPPV4EPSEwE]UVS+؉ӋE PP7IEPPSJe[^U9uj‰PP‰US9uPE P萃‰oEtEPxP#EE%UQс ˉ]PEPZP脯‰]U9uU EMMEM EPP2lEEP聯PP[2‰U VSl9u4lu S螮9(u EUUEUNEPs萐Ee[^UVS19]f؍E 4u VƉu%R%PRqV(P 밐C딐e[^UhJh 蟣h{hPg hg hlg ܩhg ϩhg ©hg 赩h(h 訩ULWVS+‰E1] ]EEtEP(P6EE tE PPE EtEPxPEEP)ĉeȋEPuX<EuuE]]u uE]]܋uȉuE]܉EEEuȉuԋE]É] u9usWh~h *]9]vWhh *E%8B0űU̍BG=.                      < T               X p H$Hl 0l,Hd @`8$P|(Hh,Hd,Hhh @@Pdp0`E%8B]G9E%8B0uGE%8BEGE]̋u]ċEtu5EE%puUBwvL                    ]9 tu蜮EE]uȉE%8B0uG9E%8B]GE%8BEGEuȋPE]̋uPE%8B]G9E%8B0uGE%8BEGE]ȋPEű]P@E%8B0uG9E%8B]GE%8BEGEE̍)UȋE+Eԉ‰puuȋE@Pk5]ȉE+EPEȃP6EEmE%8B0uG9E%8B]GE%8BEGEء+‰+UR@@9t+L9u@PܲPc"E%8B0uGE%8BEG}@9t+L9u@PܲP!E%8B]GE%8BEGuȋE9u}@9t+L9u@PܲPs!E%8B]GE%8BEGuȋE9t}@9t+L9u@PܲP E%8B]GE%8BEGuȋ9u}E@9t+L9u@PܲPk E%8B]GE%8BEGuȋ9t}Ex ]ȋ]ăEl EX uȋ6uăEuċ]ȉ3< EE%8B]GE%8BU‰ЍEЋuȉG PhL< ]ȋP%uȉ Ph V< ]ȋ]ăEuh7uȋP ]ȉg uȋPEj << ]ȋ]ăEuċuȋPEnEuċ]ȋPZPuȉ ]ȋ%PREluȉ ]ȋ]ăEuȋP艇uċ]ȉ3+‰PR; ]ȋ]ăEuȋ6uEtuxPE]]}M̃}}TEuE%pu7]9t+uġP腜EE)uȋu]ȉ uȋu]ȉ~ uȋu]ȉZ uȋt]ȋ9tuȉ& ]ȋ]ăE]ċu9u uȉ ]ȋ]ăEuċuȋPvL]ȉ uȋ9u]ȉ uȋ6uċEuE%]ȉ4u95u ]ȉuġPP蓟H uȋ6uċEuE%P]ȉ7u95u ]ȉuġP蒚P軟uȋ6uăEuċ]ȋPuȉP]ȋP~uȉ]ȋ]ăEPu~PuȋP~]ȉ[Euj^uȉ<Euj>]ȉuȋP?]ȉuȋ6uăEuċ]ȋP覯uȉ]ȋ]Euȋ6uăEuuċ]ȋP# uȉ]ȋPuȉ]ȋPuȉc]ȋ]ăEuċuȋP讦]ȉ8uȋ6uăEuċ]ȋPbuȉ ]ȋ]ăEuċuȋPP]ȉuȋ6uE]ȋ]ăEuuċuȋP7F ]ȉEuj.AuȉEujA]ȉhEuj@uȉH]ȋ]ċEu2E%UQс Ήuċuċ]ȉ3u谹]ȉuȋ6uċEu2E%UQс ˉ]ċ]ċuȉuuȉ]ȋ]Euȋ6uċEuugEEtuġx PEċEuuGgE!Etux P褖EUU9u ]ȉ uȉ]ȋ]ăEuċuȋP莯]ȉuȋ6uăEuċ]ȋP躮uȉx]ȋ]ăEuċuȋPޯ]ȉLuȋ6uăEuċ]ȋPZuȉ Euj´]ȉuȋ6uċEu2E%Uډс ˉ]ċ]ċuȉujbuȉEuj"]ȉEujuȉ`Euj]ȉ@5`uăEuċ]ȉ3#PdR`E]ȉuȋP]ȉujuȉHL]ċ5\)uEăEuċ]ȉ3X]ăE]ċuȉuȋP]ȉcHL+\9`55`u`9H} ED E@] EE]ċuȉ`9X};5`u`H9H}UJDUJ@]EE]ċuȉsEăE]ċuȉPuȋP]ȉ]hh 薍P藚@/Euȉ(E]ȉEuȉ3E]ȉgh8j ‰)h=j ‰hDj ‰e[^US] tSPÉځB4]US] tSP׊ÉځB$]US] tSP蛊ÉځB]US] tSP_ÉځB]UVS]u  tSP95ttVPƉ%p e[^US] tSP迉ÉځB ]US] tSP胉ÉځB8]UVSu]  tVPCƉ%Xe[^US] tSPÉځB]UVSu]  tVPLjƉ%Xe[^US] tSP苈ÉځB]US] tSPOÉ%P<]UhWVS ME%P{3P--jhl S9uSZPیE}}MA,9uEPjEPj ܈Pq}0}}tl}}t &}tf}E%P,Ѓujhvl Sjh{l Sjhl RE%P,Ѓujhl Rjhl RMy4t&}G4Phl EP jEP}REP?My4j}G4RNRjhl fhk 1fhk $fhk fhl fhm eh,m ehm eh$n ehn eho ehho eho eho eho eho {eh$p neh`n aehp Tehp GeUVSEPhËEP8iSQNj VNe[^UXWVS] +‰E~E Ѝ)ԉ硠tP(POc}~C9thq NCPPRCP6UCCtCP(PbCsE} E\9 tL95t>t5EEtEPPnbE}~C EDž9MYt#P(Pb%HL뛐%p7DjjC%PRY E}}"PCPLFPhq PjEPhq P PGE9u-EPKPPEPhq OE%p7Eujhq EE EPC |u|Cu2}| EPKPWEP |EPJJ}EPJPhq NEu aPEPaPDPh@K Eu EP @9t+L9u@PܲPDž%p9`Pe9DE}BЍ)ԉuB}t.E9t#E9tEP# }~_Dž9ED4 벐 EPEPA tjV_9ttuEhPEPG t1PPhjPEP{ E9tP%E9t h9u=u j@9t+L9u@PܲP9ttuaPP[^_U\WVS] h r EP*EP*EPfGEECE+‰E܋C%x}ءEԡPb9I}~ EEЋEЉP)ĉẼ}u5?E̋ũC9t){t#C9tCPwẼSẼ }~6EE9E%EU̍BU EԐE}}E}}}}E}}}}E}=EPEPEԋEEtj[EԋEPdPdPPEPEPEPseEP_EԣC 9tEPEPlEC CPEPEPSe[^_U WVS]?DjVj: ?PPupPP MEP)ĉuWPPBP^G M|/t E8/EM9WN;EuǁM}tEǁGɋ}G}M<OM}}M<)׉}uǁM}t.MM9:ǁG뭐joBjeBj[BjEP=jE P/jEP!EP%BE PBEP BVV7VE|SP4jhr j5A PzPPjA j(De[^_UVSh8r hQr   P[PG, PhTr hUr 誗P ,P*HEjE%PR#{}%,%PRhZr jhr :É؅ur PA`=t85|>u+PPAP:Ρe[^Uh`hr Wh hr Wh,hr Whhr |Whpq Vhq VUWVSu] M}tVxP`UƋM9 XHL+\9UM9uuD1M9 H} ED E@\e[^_USUѡHL+\999H} D @\tdJ9X/9H} D @\uJ)ЉÃt 1]U塠9uEEPuMEUVSuEtEPxPSE95XHL+\9 *VtD t95H} D @HL+\9~ 95H} D @F9H}VD V@ ^95X~QF9H} VD V@95H} D @ e[^UEE PMQ&EEE E9t:E9Et2EPuMEEPuEEEPEPa}t?`EEP`EPhbs EPw`U SE EX]EEE 9EwE \$E UE E UE }vF}vEMшˀ EEMшˀàEE]E]}vEMшˀEEMшˀßE}~vE]`EE]aEEU E EE 9EuEU E EU+U]U SE EX]EEE 9EwE \$E UE E UE E$t[}wEMӀ1EEMӀqE}vE]àEE]ßE>}wEMӀ0EEMӀpEE]EEU E E E 9EuEU E EU+U]U SE EX]EEEE 9EwE PW tEE E Ps tEE e}tNE \$tEEPEP~ U EtEP(PLAEE tE PxP+AE EtEPxP AEE%UE 9Eu hs k} uEPu=E}u$_}u.UЍHMEPB=E}uw$,EPE%PR+EE%HMDPPEPE PEPE%PRE%REE} t }t$EPEPC+EEPF=EUS}t E9EtEE tZt}uEPE PEPi E PEPEPE PEPÉ]}uEPE PEP E PEPEPE PEPSÉ]=}uEPE PEP EPE PEP É]E]U E PUREUE UE9H|H@9E~ EPE+EPE9H} DE@EPE}|EP?UEtEP(P=EE%RE%PR0E}|EP9?U EE HMEE9EwEUE}uE8$u}u E$t^}w n}v }w QEUE}w 8}v 'EY}u 1USE UE E}u 12U%=t =t2E U E ME E E U E E}tE UE MEPE PEPO& E}}u ] ]]EltbEH\$EE M E 9EwE \$uېE+E ƒu5EU ˀEMMI]] ӉMEUEUEE ME 9EwE \$E @8vIE 8vE U  шˀ E U  шˀàE @U BbE 8vE U  шˀE U  шˀßE @8~vE @U B`E @U BaE E E 9ErE \$uEUE.EU ˀEMM ]] ӉcEEE EE 9EwE PktEU ˀE E P{tEUE uEffft(E \$tE @\$uEU E E(EU ˀE EEU ˀE E"E 9EE 8u0EU ˀEMM A]] ӉsEffft(E \$tE @\$uEU E E(EU ˀE EEU ˀE EE@9E E 8u%EU ˀEU ˀdEffftE \$uEU E E.EU ˀEMM ]] ӉE9E u EUEEU+U]U塠9t=u @U塠9t=u @Uhh\E}~"E\U\ E֐E}~!E\U\ EאE!}~~ E\U\ EېE}~!E\U\ EאTdUhr +7hs 7h8s 7hlt 7ht 6hhs 6hs 6ht 6h@t 6hht 6hht 6h ht 6 @hht 6Jhht y6@hDhu ]6DJh<hu A6<@h<h(u %6<Jhh9u 6h hJu 5 hh]u 96hhdu 6U,EtEPxP!4EEPhh4 ERj<EԍEPEPh4  ‰UE} },4 PP4 PEE PEPD E P4EL H EPEE HMEP;EE EP[EPEPMH E@EEPEE EUB=EPEP L P Ex|@EPRERP EPT EPX EP \ ` EPtJEx|AEPREPRy` EPd EP h EP$l p EPt(EPRPEPRp EPЃ8 EPЃ< EUE9ЉUEPjjo: Ut E9u E=EtEPxP/1EEM}ȉME 9ujjj9 rE tE P(P0E E %RE %PRP{U E %Pjjz9 E9ujjja9 qEtEP(PJ0EE%RE%PRPT E%Pjj8 4 h4 jj8 EE=4 tf4 EEE8u EE9Ew=EEPERPERP!E뼐PEPE}uWEP4 P8P4 P_PEEPP‰@ .hv jj. EPjj7 jNjj7 jjj7 jjj7 EPP<EEPP#‰Uh4 jj@7 E=4 tP4 EE8u>EPERPER@PEE뻐PEPEt EU@EtEP(P-EE4 EE%HMȋE%U̍MȉMEPj jL6 EċEPEPh4 j EEUEtEPxP -EERjj5 U} hx h_} hx h} hx h} hx h} hx h} hx h~ hx h&~ u hx hH~ c hx h\~ Q hx hr~ ? hx h~ - hx h~  hx h~ hx h~ hx h~ hx h  hx h% hx h= hx h[ hx hz hx h yhx h ghx h Uhx h Chx h 1hy h! hy h: hy hS h y hi hy h hy h hy h hy h h y hԀ h$y h }h(y h kh,y h Yh0y h: Gh4y hY 5h8y hk #ht  >%FMME%E*EE>/~ >9>-t> tFҐEEF>‰]USEP| Pi1t {:u]USEP| P1Åt{=t{~u1E PS‰]U WVS}u 1} u:];Ct :t u㐐+EPR E E U]u;Ct :t u ^u $Cz\ut;C/~J7EEE} ME/~}7~׃}C#?~$ M} t}ȈFM} tE NEe[^_UWVSu]1u>/~ >9~ Fـ>.u FF>*uF} >uPFӃE ft> uF쐀>t{ tUSM9KuDC9Cu:SЍ KCPuEE+ECE+EEMMM /C+E)EC+ES)‰ЉCPuCPv MKC+CPECPEP* ljuC {C9Ct CMVe[^_UEPjjEPE PEP\‰U}u18EEE EEP0PhPj2h EP‰U,WVS]}E EE]EEU UU{uu܋E9E}uIU(U܋u܉u؋E؉Eu EE(U+U Uuuu uu >EEUU؋u؉u܋EE؉E؋U؉U܋u܉uu܋E Eu, EU+U U܋uuE+E E܋UUuu EԋUԉUG}u}%vEGUuԃۉu܃}MSE܋dEeܐ h,x\D9 L} }ce}~9EU؉M܀E0E܋UEEU؉E܋E؉EEdU؉M܀E0E܋UE萋EdU؉E܋E؉EE U؉M܀E0E܋UEE щE؈M܀E0E܋UE,}_~5E`U؉M܊E܋UEE`U؉E܋E؉EU܋uuG}t^}t} t } tJE9]u EEEusE܋U)UEuuuSE܋E)E룐UU܀M܀E܋UEcXsu܋E܉USE>7uGE9~ U܋u3GG$EU܉Upu u䋴u?-u E)??+uU1?*u u33"?/u ș}U؉E܋u܉3EC3`s`3s{E щE܋E܉EeUU؋uu܉u܋EHUU܃}}Euu܋E܉E؋UU܋u+u܉u؋E؉E܋UU؉U؋u)3EԈE܊U܋uEEUUM}uuuuO/ؐEEM}UUuu#/אE e[^_U}tE P T E X USEH]U]UWVSjEEE= u  =P u=\ u}x\ jƉ+ U=X *T ]}to} }t }P EUU]]eEEU9UvT h X ]EЃ P Ȼ1UEMEUU]9]vT h X EU҃_P ]E1щEEEeUUe]]E9EvT h$ X U]Ӄ%E}t!U+]]u.EE}wE+MMUuƉu}u]]u}EP +U ]}tOE4 MU"T]^OEFuݐFUUuS}e[^_UVSj0Ɖ%t%)R =tu5thƃuL F5 TF1ۃ~+ F4 T^Cѐe[^UWVS1uF…uG𐀿0 uGƇ0 < u W= ؅u Ƈ0 1>C Ƈ0 ;Tu C9ufEfCSe[^_UVSuuD^;u C)ƍ^;tqCTƀ0  S ƀ0 e[^UWVS] }uS‰uNM~ ~FHMM~KMeM9EvM9Ew f^EG9sS`EEu1'WuEP EPEe[^_UWVSE EPÅu11EH!ƅu UJE!Jf)fy։e[^_UEPP‰UEPjEP UE UujjuRujxUuu uj}UShT:Ãt<5L SY u#Su u tS S1]UWVS}u = t,FF FF=< t)jjj# u < u uÃuu uÃu lj(jVNUCUSs u}t6EPCPU}u S{ jS F1e[^_UWVS}u ]vtt t!u ujk"wo=< tjjj" tS< VW uVWu +uVWE EuPS-"e[^_UWVS]u}j…t&rzMJ M JM<B<Ѝe[^_UE<Q<Qa꤬­ޤU WVSu] U$EMA}GttM }U~uVuT EEMAtVE+EHP4^S}MD9Pƒ ~t ;uE+EB)HPCPEEDP }G~EMAtqE}GtOM}9=Ȉ }X=Ȉ Ĉ t P/ Ȉ PiĈ u!Ȉ 4 `=Ȉ 4Ĉ My}}GMAA A}G~VSP7MA)փ}G ~$VSPOP}G )փ1ҋMIM}G)ȋO M)ȅ~VSP}P|)փMA AЉACN}Gt$VwSM‹MY\F)փ }GMA A$AYG ~VSPw}G )փMA$~%VSPy APMA$)փ1ҋ} }MA)y$})~VSPAMP}Ӌ}G$G ЉGEe[^_U,WVS}uM9 Ȉ }R Ȉ Ĉ t P Ȉ PĈ uȈ 4 `}Ĉ 9}Ĉ  8 @9|Mԍ]SuV5Ȉ 5Ĉ u u¡Ȉ 9|PĈ Vuu uWSRPe[^_U8WVSuDž@Ex$hhhhhhh||hhhhhxh\hطhhh\FF @t*h@PSDŽ Džh@F 0SDŽ Wuu u3ÃH t5 tthWVFVuu uF8Puu uÃ6Wv vvQF8Puu uAÃ|+Dž6Wv vvjO؍[^_UE UujjuRujhUuu ujEUD t P.D ؉ tP؉ p t hx |   T X \     ` l d     ( ȉ     h  ԉ Љ ܉   . P     ĉ            UPWVSu1FMF F D t.~M؉NӀ;tPVC;uPV~e[^_US]hTjSS>}4CCCP} t @ <(S~S>1]US]t9w$лллллл؋[PË]USEtXP؅u]UVSuP}<t PF|Pb}=  u5JHnLtXP;؅uV,e[^US]jjjjjSEjjjjjjOƒt`BBCCPǂ8(8 B 8 C8 BC(FǃHǃLǃD1 S]U11ɐ` txtA@ uB_~uÐ1UWVSE`1׋E 1֍ >1։e[^_UVSu] SV` t90u 9Xu@ @ u1e[^UWVSu} WVv` ` t*90u9xupEEUP*X @ ujt0xUP@ e[^_UWVS} Wu` ` t%X U9u9xu P p ؅uۍe[^_US]t!s9C t PS]UVS` t P9~e[^UVS195` ~! 3qF95` ` e[^UWS]=` ?80PqǃtSW` < ` e[_UE t   1The locale database is insufficient for Japanese input system.Insufficient memory.US] =< ,}4 ޿W}4 輸^,T7 "?,ato#@jus 3-C p%C 0s  s S^ e[^ý⤵ƤʤΤˡؽ٤ȸޤUVS] t=< t4 ^< '.H*" Λt1=` t e[^UUE B(1UE 1UWVSu} GGFG Fj(jP1jVF PF`zu4?u1IZ<(t "jV <(t l"$hXXXXXXXXXX((((((((((XXXXXXXjjj1 j2j3j0V 1G=h t$<(<( 0 <(SV1e[^_UM1ҋA=̻ t=8 uPxuUWVS]E M1 Cu @CP @C u S )SUN~ STtSB  BC@C@ C@$M Ee[^_UE 1UE |~ ÐH 1UE ȉ 1UE h 1US]SPd@t PSSWSYS%1]UWVSu} GGFG FG P~ct]8tXRPS>G @DŽj(jvjV9F F` hSVܭF  &jV F F`hjV豭7V1[^_US]} t |P]UVS]u VCPPt;uVP(P[ue[^UVS]u tVs[ ue[^UVSu1ې` t VPC_~e[^UVS]u FFCF Cj(jPjjSC Su jSC C`C C e[^UVS]u FFCF Cj(jP jSC C`C C e[^UWVS} 11ېл Bv+t'BvRjjh̻ u̻ Ѓt>FC~e[^_Uu u%U= u1øUu US] T3v1=` t ` ]UE 1U WVS1ҋM A 0xtVSVƒ tWS߃u uMPxu jQM A MA`WVQ*i t'>t"MPĖ <(t4 MQu@<M 1[^_UWS] t Pt:;t50P t SPX   1e[_UVS]u FFCF CCC j(js6Sn1e[^UWVS]}1hTjxRODžC CEE}UE ?u0<(F(|<(F(u PjuxUЅt<(|F(l[^_UWVS}u <tJ9Ƈ9t-G`tsVW҉Ƌ< ȐsVW҉ƃ [뵐e[^_U,WVS]EEEƃ9ƃ@Cu SRjPSЉ8t$8EQS-ƉCP~SBuE$Bƃ@BCC )KEPCP‹}uC APS|E΋CP|8}Uԋx}x }@tEx}x}x }܋@$E؀@:}uC`C}ԉx|C}8C}xC}x }t+C}xC}xC}܉x C}؉x$CHe[^_USU] J8t-t!|%y|$8AuRW 8؋]US]u SPS]UE t t#5 Ð5 ÐUVS]u FFCF Cj(jPjSC |C`C Sne[^UEP:uÐ1zuBUut} t <( <(1ÐUS] uu E(1]UVSE1t=Ã;t63uttttF;u͉e[^UWVS111$ 9~ƃG'~ tsp9~Ƌ[ue[^_UUM =, tǂ0ǂ4Ðyt0A4ǂ0ǂ41UE 0 1UujUujU1 :uÐB@c~UEƀ u jPjvUEƀ u jPjUVSuP<(tP(tjP^SVjVF`} t<(CL <(CL S9 CFFVD1e[^Uto1U4Uhu h h 5 1UE 8 1UUEP8uP1UU 1UEuu  US]jhMpt1Ґ B~ȋ]USh ` h̺ h8 tf1۹Ћ tG@T @$ = u ` =̺ u =8 u BC ~1 55` ]UVS1Ћ t)@u ph$ PT HF ~5` 95.5#2e[^U WVSUU} u&uuPu jE}} M Ћ M6}' (9Eu@E}wEPjjujUЃWMyJAjhmEu "}Ur@1ېUB<JuSPEt PSux MA<Ku uPSC C~MUJb}u @tH}u @tUP} wdMAU <Ku}Kt PR MAUM JuuQUr }Ku2uuMq4 t} uEPUr1e[^_UWVS]} uEtgVjjSjЃtTCuNCtG<KuKt PW CJuuWs KuuusEEe[^_UWVS1}` U<Ku} Kt PR` M<Ku} Kt PQB U<Ku} Kt PR$ ` M U M M } Ju4uR5` Puu5?uu5.$} KuUuu5`  t2uu5{ tuu5b u 1uuu u4Ћ ,ǃF ~Ջ {u$uuu uC pǃ[ux}unu 5` mu 5_u 5Q1Ћ t.u jjSjЃtCuCt u PF ~e[^_USMU ȍY8u@9~A Y~8u@9~A8u@9~􍁠8u@9~8u@9~]UE E}UVSu] j@PV t90u 8Xu@ @ u1e[^UWVSuE Ej@%EPVUׁ tV93uHE8Cu@St R}0щMQH‰StfuR[{ [ ujÃt>3EC0ҋ}щMQ‰St uRaC e[^_UVSuM MuPV t$93uM8KuC S1S [ u܍e[^UVSutv^ Vރue[^UVS 39~e[^US]tCt PS]UVSutv^ Vwރue[^UVS 39~e[^UU1:t @<uUUME 9u~JÐu EÐ9|1øKU WVSu0}HEu Ej] MPV ] YM ] 8G697.Gp>t{M] D 8ubFM]Puuu}KuJuM] D Pw>uGpEGP)փtjEPR‹GPGPLM] D M]Puuu`‹GE@MG@DWB<Ju]M _ ] jpMǃ7] MGjIG4G@j$‹GPGPt_MD ]PuuQ‹G@PG@@G WBxJuSM] D PRPZWQ1e[^_UWVS}u] jPWe t 98u8Xu tP @ u1e[^_UWVS]} WjuWSu -V9֐SuWptC9~1e[^_UWVS}MMjSu $E@@EP"EjSW% M tM8Nu9>4N Mv ujXMƃ>MNj7F4F@F E@P‹FPVB1ۉE9]}M $)ȃuuKuMqDP>Juj@DPMq FC9]}Myt t W"MAt Pue[^_UU` <t1ÐUUE@ @@@@@$@(@,@0@!malloc (newKigoContext) ǤޤǤUSj4Ãt Sn4 61]malloc (pushCallback) ǤޤǤUS]uuuu PSu4 4o…t!PBPCBC 1 S]UUPAPABQkU WVS}P}uG0X jGW,@tV蔷Eك ~W0ٍY ~BWB0EF}~}GHW}G0@ B}W}G0@B}O}GW,@DA }G@$e[^_áU<><Ⱦ><><Ⱦ><>[Ⱦ][][Ⱦ][][Ⱦ][][༡][ʸ][][][][][][][ ] UU$ t9uxu@ Ð1Ë@u1UU' DÐB9 ~B$P t@Ð1UWVS]PC@tCH=H uTG8C%PCPutbt PVctSGCGCCpCH8G8Ct0CGCG@h l CHC@h e[^_å꤬­ޤUWVS1ۿp 1dž ` t P虮1$ C'~̃=\ uhlm\ e[^_UWVS1 1ې t|tǃ t蹯p DF'~ƍe[^_US]PBCBPRZƃ9]US]P@<(uSC@1 S*]US]P<(uSKSC@1S]UVSuP<(tVʠ^%<(ǃ8(8 F8 CCƃ4(CSV$uF@1 jjV"8e[^UVSE] P1H txt ~t_uP'w ‹4$ " (8sƒ$PtpuHy.VS#A@CA@ 1e[^UVS]u u'f  tDt Pktǃ Vū$ fǀ ǀ$ H (9}9C$PÃt.Ct Pu C VZC1e[^PF10PF9PF8PF7PF6PF5PF4PF3PF2PF1F10F9F8F7F6F5F4F3F2F1C-downC-rightC-leftC-upC-xferC-nferS-downS-rightS-leftS-upS-xferS-nferKeyPadHELPHomeRolldownRollupInsertDownRightLeftUpXferNferDELspaceC-UUAff  tBw@`  B߃]w  _=w   p u 5@ VB w 4H Bp w 48 + w 4(  v1Ð4 h  UWVSuFPPUURyjFPFpOÃtXCVP 0}P躸 t9uP)5 VMCxu5 2V@ FVe[^_U8WVSu] UUEEEEuNMuFXEPSEԃu 1E<EFF UPVËFHMȃ|f8MPU@ EF,9wN,9sD}uh葷EЃu#}uF0WMF8 F@EPU؋HMP U@$E܍F,9ErY,9EsN}uhẼtXM̉MuFpuaUMFHF` | ~])^EԋUԀ:uVOE8}t%uW^,SMD,u ߃F8FUPFMHFUP }tV}t%uu؍^,S褡MD,uͶ]؋FU؉PFMHFUP FM܉H$FHEe[^_Ujjuq UWVSU}t 1ttuV5 0Ґ9E= KuUNjU)S5 诵‰ tHh1RuiP5 5 uF>K5 u耖M Q EPJPjjRu> ue[^_Uh h $ h( = t =$ tu Ð1UUPAPABQ#malloc (pushCallback) ǤޤǤUWVS]u }u0u,u(u$PS u4 U…tBPBPCBC r$zu uuuS!uS+Se[^_U4WVSE UPEAAA A}8YA9| A uMMԃu Uz(Ay$}q(EU9QxEEEA0}t8 A0UT8A1EE}G(=( 9E|u]U9U}9ytAU܋}WUЋA,U}8A,ỦT8}tBT8A,UЋ}T8u]}t*5( MP5( V葜ẼMԋ}U<:u5 MߛP5 5$ MƛP5$ VEMẼ}Ѓ?tEUB(=( t 9|+9}'}Ћ%=uCCEE̋UЃ:u}G(=( t 9}!9|UЃ:t}A)EE EE}G(=( t9ty=( tUB( C}G(H9|A0}U<A0t M觚ËMԋA0U\UE}9yURy,Q,Dy,DA0UA0DA0DA0D 1e[^_UWVSuPyAW<tAq,[I0L TG<t $ u1e[^_US]PBSSڐƃ91],Ủ u0hj̉ u ÐhO PhPmhO 5̉ ]1UW=̉ t:0Pǃt5̉ Wq5̉ 蒮=̉ }åޥեɤ߹ߤޤ ꤬­ޤ󡣥ޥեɤ߹ޤ ꤵ줿ޥե %s ¸ߤޤCANNAFILEIROHAFILE: ޥեꤹ뤿δĶѿ %s ꤵƤ ޤΥޥեꤹ %s Ƥޤ󡣿ΥޥեĶѿ %s ꤷƲHOME/.cannaDISPLAYTERM.iroha: Υޥե %s ¸ߤƤޤ ޥե %s ¸ߤƤޤcanvert ޥɤ ѤƿΥޥե %s Ʋ () canvert -c -o ~/%s -n ~/%s/usr/local/lib/canna/defaultƥΥޥե %s ¸ߤޤUWVSDž5;u)=0 t h-~hU  tGPhO hO < uZ=0 t h-0hO hhƃt)VhO hO < txh趑ƃtXhhSúSIhhS譺S3 h\&hhS芺ShKƃVhO hhO hhO 0O ЍxhO ;hՐƃt((0(,($ x8$ x8V1V>e[^US]P,(90(t5C jjS,u ƃ@CBƃA1]UWVS} UP<(jhjSRǃL(ǃ8|8(()ƃt29u~V(PWou(PWwouu8(C UBe[^_UU@(t1Ð<(% @(BD(UE<(<(@( щ<(ǀ@(D(PUjjut1ÐUS] UM9s )ЉSuRn؋]UEuu |8(()Q(RUEuu (((PUEuu PiUEP@(tPUWVS}] w4]mEw8RmƋ((EЃ==xw4(P4mw8DPmUB((($RwVF@1F e[^U$WVSuP80(9}@E80(fEf8EPj0(jSE$+9u$((,(0( $$DE܉ƃuEPj8PjSuT9Us,= E܃9s EE1ɍuu9}WuBЃ w5Bw&Bv= tfaZ©Ћu܈FuA9|EE E~EE EEEE_<]w~E_<]v 1ueC9Ev#~uFxtXuEGjEjEPEPZE 1E9}}F$)( t,0(E܉+E($t$)Ȁ( A9|$)( juEPEPux0(+E䀌($0(,($ f8f80(f8ǃL(e[^_UVSuPF(u%@(tSBV萬VuVO0(H9t8~t8V1e[^UUPP2RUWVS}u}us1ɍ]BЃ wBwBwD©ЈCA~ʍMUUʀUEE EE_]wF h~,WVbESitV hWV@E((0(,($ }u Ɔ@FBƆAF u/($t&{u {usRt HPSV|V袰u54 VPV%YCǃT(jjV訰 }54 VPV% ~9T(| jV Vn1e[^_UUP=(u RyÐR^UUP=(u RQÐRIUS]hC,PSShSN1]US]hC,PSSpS"1]US]hC,PSvS蠖S1]US]hC,PSJS贖S1]US]hC,PSSS1]US]hC,PSS4Sr1]US]hC,PSSpSF1]US]hC,PSSxS1]UVSuPhF,PVg =( t V VVͿ1e[^UVSuPhF,PV f<(} VxVʕV聿1e[^UVSuPhF,PV<( f|@u t=h u Vt8<(€<(@t V( t V詔 VBV1e[^UVS]PhC,PS?<( f} S蛔C t S轓5@t=h u ̀<(Sϓ̀<(SSi1e[^UVSuPhF,PV =(@t V VʓV1e[^UVSuPhF,PVk =(t V= VVѽ1e[^US]PSF]U0WVS]P8888Qu@(tQ|8t8],`$JTJ$Jt1= ,(0()׃}uM AME}Dž= t Dž W(PS/BMG8PPPP@PQWShPv`8t9t uEuuuu u^[^_UWVS}uEUP0($jjj)‰Pu;jjj(()PuU 0($(jjjVujjjE Pu詯e[^_UWVS}PO4؃{t @xujVRSPWcƉPCWze[^_ôμФ˼ԤޤƥФޤǤʴѴνλ˼ԤޤUWVSU:JPDž;t R؃{t @xujWSPu|UPC<= ~B`P(1\89}nVt)PWp Pd@1e[^U1ҡtxu‹uñϿѼ񤬤ޤ󡣼(%s)ޤ?(y/n)ñϿѼ񤬻ꤵƤޤU WVS}P`ƅ~ vhnSMSWa&@hlhllhjjWz2(}LJDW&n_,SO'PSW%P@@"JhhnS)S_,S0'S'PSWV%$W%LJDW|1[^_UVS]Pu hghHfjjjjjjS(t(h\jh jh@hjjjjjjSW(u$d@t P<<ǃD%<(@@"S|1e[^ñ[] ɤ?[U WVSMMA AHRu@MA@ MA0VR&MA`hhp,QS(Nj SMD,P% S~%Ǹ)PhpMD,P(VMD,P%MD,]F SD,P@%$S%ƋA MAHMApAx txx QB B$Np MA@$MAHQsu1[^_UWVSu} V>PW60P%DŽ0@Ve[^_US]S>SShhSP]UhruñϤƤUVSuP 09hhr^,S&S#PSV"V hhV^u hPrhpj jjjjjVY(u&d@t P>9džD"@@"Vy1e[^UVS]C S=Pp SISj=P@S0e[^US]SC=SIS7=SMS]ɤߤϤƤUWVS}PƇ9@-hht_,S>%S"PSW WRWHƃ|gPBt B =\ uh_hshsjjj%Pj jB PrW.ƃ0}5WHWM<d@t P7LJDW!7PCC#Ww{t Ƈ9C!uWؗe[^_UWVS}] W|Pd@8uW} W ;16t;u uWb"S SO!S-! 0uW"e[^_ˤϿޤñϿǤޤǤʴѴФ̿ǤޤפǤ(y/n)פǤ(y/n)ȡפǤ(y/n)פǤ(y/n)פǤ(y/n)ʤפǤ(y/n)ʡפǤ(y/n)ɤߤȸ ߷ϤƤ) Ťɤߤȸ ߷ϤƤ) ᤤɤߤȸ Ѥ㤤ޤϤʤƤɤߤȸ ߷ϤƤ˺٤ʻʬΤμ򤷤ƤɤǤ?(y/n)US1ې4P <$ u Cv1]UWVS]}uu SVSWSe[^_UVSuhu S!SV[^UWVSuhu S WSV[^_UVSuhu S SPSV[^UVSuhu Sj SPSVX[^Uh " h " h™ " US]S7S]US]S7SP u @thhlS E ]US]SK7S P u @thhlS E ]UVSu] V6VP tW SPSVhyhyhyjVx'Ã$udžDV".P@@# @thhlV ؍e[^UVSu] VW6VP tW SPSV/hyhyhyjV&Ã$udžDVz.P@@# @thhlVk ؍e[^UVSuV5P STPSVhzhyh(zjV=&ƒ(tP@@#džDVe[^US]S?5hhlS ]UWVSuPV{ tV hhV tk= tb5 ^,Sh{hyhx{jVx%ǃudžDV"@SNPSVP@@# @u1hhlVe[^_#JN#CN#KK#T35#T30#KJ#KX󤺤#NZX#ZX#SX#KY#T05#F14#NN#CJ#RTUWVSMPdž @dž F 0@@$}}}P~~D~P~h8@HPhh|h|_h|S@uh|h| @Podž`@ P5 h|dž`@  `@9 tJ`@B~1 09t@~`@ t u5 F P2H9t5 h| Pu h|K~#h} Pu h }!~#h} Pu h}h} Sgu h}u<GPSS`@ DŽS5 Ldž`@~R~Ijh!} P u!jh!} 0P t 5 h$} @P[GP PS(DŽS5 dž`@~R~Ijh(} P} u!jh(} 0P\ t 5 h+} @PGP PSDŽS5 h0} @P{dž`@ P5 h5}h9}h=}h| @P3 P5 GP PS`@ DŽS5 UGP PSDŽS5 *GP PSyDŽS5 5 P 1[^_#T15#T10#KYT#F04#F06r#KSrUSUPǃ @ǃ C @$P؂aaaaa$@HPh5vǃ@h:bǃ@ ǃ@R4Oh?:hD2RhI @P%$hKh5h0 @P31]#F12#KS#T13#T18UMPǀ @ǀ @ @$ă(0<DPdlt|h| @P|h|qh|bǀ@h$}Nǀ@ ǀ@Q:hh&h0}QJ hmhqhv @P1#K5#G5#S5#T5#N5#B5#M5#R5#W5UEP`@$  (08@HPXh @PxÐhhhڐhҐhʐhh뺐h @P,UVS]C S+Pp S,8S+P@Sde[^US]S{+S7So+S]]UWVS}PUE1G Ƈ9d@8t A8uWM67ƃMuUd@Pv&yPUd@CC =\ uMMh_uu jjjEPj QC PsWnƃ0u0Ct P&W7W|*LJDW3PCC$We{u W- Ƈ9e[^_ U,WVSMPǁD`@ujh @P un 0HP PP 0DŽ(@HP0PP@DŽ(, PP90PP&hPSh SX @PS3h S@$S¸)PPP= u1^| = u 4 uu h@d@4SxPS5 6t"=  u}5 E,P.`= tS5 G] P5 5 u,V0P5 5 S SV ],S PSu uuKc1[^_UjBh h tj0h( h èUj h h d UVS]u S+2S%VSS aǃDe[^UVS]u Sk%P@ C VSe[^UVS]u S?%P@ C!VSte[^UVS]u S%P@ C"VSHe[^US]S$PPt@ u S]US]S$S91S$S!`S]UWVS}] MMMMƇ9W0ƃuW PM JB Zh_hpujjjjjuB PrWƃ0u Wo OPMKC!= u C!W`_CM{t Ƈ9 C!uWe[^_UUP<(ujhjB PjBh RÐR UUP<(ujhjB!Pj0h RÐRUUP<(ujhjB"Pj h RpÐRUUBHB@B@B@ B@$UMQBQBBQB BQB$B QUUBB@ @@UWVS]1U <9s23 ttttF9rΉe[^_US]C@tpp9C(}S]UUB@B@ @B@1UEPB@@ @1U@ tUS]S]US]S]UWVS]} |8(()փ8tuuuWS腒9Ew E)V(PW'= t&M90(|8)W0(9((u"{u|8)ЋMM)0(|8)ЋMMe[^_åȸФޤǤU WVSM] ]8t \8d8U19ut}t9]v  VP(M%;E)PSMP(U7ǃM}!=  u MtM4 9\8u UUF9ur8t}t9]v  8(()E)9}W(PSMW M}t78؋UƋ889((tU2U8؋U9]v\8P(9+Ee[^_U WVSu] }]<(uuWuSV)((+|8tt9]v  EPEPuSVx8uSd8ttFEMEM4d8tuuWuSVuuuSVx9]v+Ee[^_UWVS}u W:Í9EwE)SWVWV-؍e[^_UEuu p0UEuu p4UEuu p8tUWVSMq,,}] {[{ut$uBuVSMf‰uE "EPEP5 uVSMƒM9] u }}}}4[= tt9uv  w9uvQF)BAy,8QE)BQE+EB e[^_UVSu]~Su hT T F@T FXF@ F@$FH8$ 8Ve[^UVSuhu ^,SPSVce[^UWVS}] uu}tu(;t#34uNϐ1e[^_å꤬­ƤޤU4 6UVS]h54 s,VPVSS"V1e[^US]S'SS1]US]S+SmS1]UT1UU1AuUVS]M ʃ9t :u)ȉ9s9sVt*Juڃ9t9u؍e[^UWVS}M Uu1H9s 9sJt4Ju#~tC9|e[^_UWVSUM ֋}\09t09s) t t\u \9u9ue[^_US]؃;t 8uu P؋]UUM :t9u :u+USM] Uu19uJt9u+]UETttCQ%=t$wt=t=t1øÐÐÐ Ð1Uu%Uuq%UuY%UuA%UWVSu T1179]:}g=t =t3A1 ITD̀ ‹}C-1D ‹}CA }CA1x119]}k=t =t7A1 JTD ‹}C+1D 0 ‹}CA }CA1t9]~ }1e[^_UWVS]=Tuz119U B9E} %=t wt<=t=t,#B% Bɀ BF9u f119U ~]B9E~R} trtt.#B%? Bɀ BF9u Ѝe[^_US] uuSPS]U1UWVS= u& jh 1ۡ 9} <tC9|9 uSP5 ^  €9}C9| 0}׍PƃtYWuVyǍP¡ t)WVR- VT  VB1e[^_US19 ~ t PC9 5   ]USU 9ttH9u9u31]U WVS}E~EM1E]3)ƋM$)MQRPu u蚂]}tEM]9~u$u MP19U$~2](M B9U$e[^_UUBvÐBUSU] _>w2EffUjEPEPt 1 EЋ]äʴѴФ̿ǤޤʴѴ˼ԤޤUSU] P(}}B|P(Bg= u#G| = u4 />5 P(} =  uf4 RP(]USU] P(|z| PxBǃP(1]US] =  u3f4 SuP]US]PBCBPR ƃ91]UEtt ÐtÐuÐÐ1UVSu[Åt=FCPCFCFCjju jPVuS V PF e[^UVS]uC u SYVSr1e[^malloc (newcoreContext) ǤޤǤUj ^ tÐ4 p1Uu malloc (pushCallback) ǤޤǤUS]uuuu PSu4 ͡@o…t-CBBPBPCBCl 1S]UUPAPABQ/US]C1JfCf=E Cu€Ύt=C9E;fKfMZ5$|:::::::::::::::::::::::::::::::::f}f}u f}B|f=u:jhuuW~ t)EES ƒ8}% C&%E u‰tVRuuWX~ t)EE9]tEe[^_UWVS]]u]]E] K]1ff]FӁtS t ~fFЃ E u‰͡?5fFfPf vf?fv ffw H‰ͣfF E tTf}u =~ C=9t ͎E҉ ѿof}uDjhuuu~}t E)EEV у!}}E FMPQuuu=~}t E)EE9u.}t]Ee[^_UWVS}}]}}E} O}1 f CfuDjhuuu~}t E)EES փfEy}lfu Ɓ  CfEEC9EvS =uEfu!u}t fEEPVuuu~}t E)EE9]}t}Ee[^_U WVSu]MME} O1fCf=u9jhuWVh~ t)ES ƒd}Xf=u €Τ % Cu )uu и%PRuWV~ t)E9],tEe[^_U WVSu]MME} O1Cu7jhuWVF~ t)ES ƒ} C%PRuWV~ t)E9]ztEe[^_U WVSu]MME} O1fCfw Ҹrf`f?w Ѐ̎Tfwff@%f fCf=wfJfvfHff% ¸%PRuWV~ t)E9]MtEe[^_U$WVS]EEHE} OEEEyM}7P< pPIMM9MWM9KIM< 9pM}M$tWj4 MtAM}uEM}~8t}:E}@ u }~&1fjPuWS~ t)E19u}tn }t}|X tjPuWS1~ t)Et|~{Dj4 P|tdh tjPuWS~ t)EDj4 DEN jPuWS~ t)EF9uEd}t5Eu&F jPuWS[~ t)EuN jPuWS4~ t)EEM9M{Ev }g}~MD8uM}~8t}:E}@ u }~&jPuWS~ t)E19u}tn }t}|X tjPuWS9~ t)Et|~{Dj4 P|tdh tjPuWS~ t)EDj4 DEN jPuWS~ t)EF9u}tP1}O9}#]MMܐMAMFKO9|uM} D1T1NNEe[^_UShSuuPShS ~Ƅ(u SuUShSuu3PShS ~Ƅ(u SuUShSuuPShSL ~Ƅ(u Su1UShSuuPShSH ~Ƅ(u SuUVSu]EM 9~19}B9|ȍe[^UWVSuhSuuu VWShSufNjU }Ƅ(,uSu 2U :؋U [^_U WVS]u0hWuugVPPPu SRWhVu膞(Ƅ(uCjtCfX@@@f@f@f@f@ Cc~1e[^UWVSUu B9}Rv<Zf{u-tPUUfCfCfC FB9|e[^_UVSucX{t"jSfCt PNCCt P7CCt P CfCfC fCtSXe[^UU1cwXt} u fxt1LOGNAMEUSERUS1pPtu-hÃuhuÃuÉ؋]UoPtu1:UWVS]f= u 1t诀tPt@0t/;/t*Pt SPhP 3E0}ЃPǃu cNyEu tW21ȣ 8ȣ 3WhtWuWffEffģ f fUffģ f~fMff ģ  f=ģ ~ WЉE}NhqO })UBPtWc  F8-t W;ȣ 8u(MAP  5 Ef fMUf f   = ~jÅt Su@|ЋMAe[^_UuYUSf= u`1ۃf= u4Åt) V@Ѓt fCCPe[^UuUVSu ]juu01't SV hRQ@Ѝ[^Uuu uUju{ƒt uu R@ÐUWVS} utu )hSV|PV{SWu[^_UWVSu Utu 1hS0HPRxSVu"[^_Ujuƒt uu R@ÐUWVS} utu )hSV*{PVzSWu[^_UWVSu Utu 1hS0HPRwSVu"[^_US] juƒtu  uSR@ Ћ]Uuu uUS] juOƒtu  uSR@$Ћ]Uuu uUS] juƒtu  SR@(Ћ]Uu uUVSu ]juu/u hR ~ SVQ@,1[^Uuu uU1U1UVSu ]ju!ƒt f= ~ )uhP~ SVR71[^UWVSUB PRMY19u ~=1UBfxtf@f@f@Sx\C F9u fU MfQe[^_UWVSujuMÃ}f{f= $1ɅtЃtu!fCfC } tCj uCtmC Vuu S@0Љƃ~7VSj hPCt(hCuCtPYC[ VuS@PЉƃ }0Ct P#CCtP C뱐CffCe[^_U WVS}E UuuVRjhSRPYvVPSW`[^_U WVS}E UuuVRjhSRP]sVPSW[^_UVSjuYà u S@4Љƃ|ejSCt PCt PCCfCfC fCCtPCfC1e[^Uu uJUSMA @Qf{u1 Q@8Ѕ}=  ufCfCfC1]UVSu juJt9A @QQ~} | C9}fsC1e[^Uu uUSjut1A @QQ} fCfHfC1]UuUVSju}tHA @QQ} ,fCfFfsf@CH9~fCC1e[^UuUVSjut@A @QQ5} $fCfNfsfHy fsfNfsC1e[^UuUWVSE} 019}VstFC9|e[^_USju^ƒtQB @Rfxt P1RPS?s 9E}1Su GsS!s]U WVS} uhSufƒ |'uhP ~ VWRSkr1[^_UWVS} uhSuƒ |'uhP ~ VWRSgn1[^_U WVS] juA @QEQG}u1}u}fWfthcEPqH1}f~19M~+uSMqPEÃFMы}G9|ffCe[^_U WVSEDž1ۃ} ujjP} 1hVP1Ƀ 9WRpƍ<E9OuU PVWpË} CTA9x} ȍ[^_U$WVSEDž1} ujjP} 1hSP1 9JSohSkÍ ;E97E P7 |;TF9U [^_US] ju/…t| B9}fZ B 1]Uu uUju…t!fB fIfJ fHy fJfIfJ B Ð1UuUSjut(fA fCfY f@AH9~fA A 1]UuU WVS} juCÃ*C @SfzfBftH1PRkPn tuCfC ȉ1f9C~AhS fC fAfK f@f9CffK Cƃu @99x WS@@Љƃ~0VSiSt hRS@\ЉDž|f{ 1[^_UUE jRt@Ð1PRuUWVS} Džjuƃ4FhWUifF Љf9F~utXhV[à |VhS'h9l)fF fBfV f@f9FffV 1"ffV uF[^_Uju+UjuUju UjuUWVS}juA1tb Wu S@DЉƃ |?VSCufC ft f9CufHfC St hRS@\Ѕ}fCe[^_UVSu ]t?|;Vj9wVjhPRVjPfDž1RPu[^UWS] UtG|C0щH9w0щJhPRSfP fDž1RPu[_UVSuF @Vf=ģ uf= u V|lf{ufCftH1PSƃ SV@HЃ|/VWiÃ9]}1]PVu [^U WVS} uhSjuPƒ |$uhP~ VWRSsh1[^_UWVS} uhSjutPƒ |$uhP~ VWRSgd1[^_UPWVSu }juøt5t  1) RhS@LЃ VWS@LЍ[^_UWVS]u uVSx hPjS{PhPS1DžDž9whSUP!chSMPbك 9|[^_U WVS] juƒtite SR@<ЉEf=ģ uSf= uI}u}MDJu}ߍuEEe[^_UWVS}u WLƃ|*hSW1U BhSW'U B[^_U=uÐUUEU   1Uu uUUE f=ģ t PRXPRUu uU塼 Uu4Uf=ģ uf=  Ð  = E u1UWVS] }juƃt&jt TuÅu <}u hR~ WuSV1[^_Uuuu uPUWVS} ujuÃtu 'Vu VWSe[^_Uuu uUWVS} uju~Ãtu 'Vfu VWSe[^_Uuu uUWVS}ujuÃt } tu)Vu VWu Se[^_Uuuu uUVSu ]jut"tt  =  uuSVQЍe[^Uuuuu uUWVS} ujuÃttu /ju uuVWSe[^_U WVS}uhSuu ulƒ|%uhP~ VWRS+a1[^_UWVS}uhSuu uƒ|%uhP~ VWRS#]1[^_UWVSjuDžw} |r}|lM 9M|d9|`9u[u`9Eru`EE_ fG uuuu WRW@TЉ}f_ _fGWN9t hwW@\Љƅ}I빋u G+EPGMHPS?`uGpP`SE EWBP_fw[^_UVSujVu%hSuu^PSuu Vk[^UWVS}ju3ƒu hhSBPr+[hVu S[E hVWS[hVuu[ PVWu u[^_UWVSjuþtR{ fC S@XЉƃ} f{ +fS9tfS VS~f{ CffCe[^_UuyUS]jut!tP9~1Rpu L^‰Ћ]U WVS} uhSuƒ } (uhP~ VWRSG]1[^_UWVS} uhSu&ƒ } (uhP~ VWRS;Y1[^_UWVS19u ~B1UZf{u't PfCfCfC F9u e[^_UWVSjuà u S@`ЉE} C @PSXC xC9}r 1S 2SfD fD2SfD fD2SfD fD2CCfDfDCfD GC9|fCfC uSE1e[^_Uu uUjuƒu Ð u$u uuuuu R@dUDWVSUEDž11Dž} tt JhSPRZhPhPRSu u>0}} }~}$ 1Dž9E)PMPMSZPS&Zt0SpZLE$)PE PMSAZPSCV|8$S*ZL9[M M[^_UDWVSUEDž11Dž} tt FhSPRMVhPhPRSu u0}} }~}$ 1Dž9E)PEPMSXPSTt0SXLE$)PE PMSXPST|8$SXL9\M M[^_UWVS] }juƃttf= ~u/Åu #}t u URWSV@hЍe[^_Uuuu uxUjuƒu Ð uu R@lU WVS} uhSuƒ } (uhP~ VWRSV1[^_UWVS} uhSu:ƒ } (uhP~ VWRSR1[^_Ujuƒu Ð uu R@pUSU EthSPRUPSuUSU EthSPRRPSuGUjuƒu Ð u R@tUu uUjut:  = ~  E u@PQÐUu uUS] juƒtf= ~t SR@x]Uu uUjut2  = ~ uu QÐUuu uUjugƒu Ð uuuu RU WVSM1ۋU U} ސuW5M袱 M} = t&uF 9M |)E  tt9|tt9| tt9}  5z1}tUe[^_U  UWVSu E }h\j te SW5[ |)Ɖ֡ #t̃tǃ(u ~빐5E  5j 蘯Ee[^_UVSUM ]q~'V|xÃ|xt^CCSCCCKCuPVSƍE9tS1p[^US]EE% % ؉EjEPL]U VS]u EE% % ؉EUEEEMjRe[^U SUM ]EEEUUEEEMEEE]j Rd]UVSU]uEEEUUE EE EE EM MEEE]EEEMjRe[^UWVSU]u}EEEUUE EE EE EM MEEE]EEEMEEEMjRe[^_UWVSM }w~VqÃEECECUSCCCKECEC EC US C C CSCWuPVS9ƍ9tSl1[^_UWVSMU 2BE ~R^ÃCCKCCCSCC C S S 19~Z1KU BD8AA F9Sƍ9tS 1[^_UWVS]U }O~Q ƃFF^FFFVFF F N ^ WuSEECECMKVÍ9tV1[^_UWVS]U }ML~QƃFF^FFFVFF F N ^ WuSEECECMKuuSVÍ 9tV1[^_UWVS]U }ML~QƃFF^FFFVFF F N ^ WuSEECECMKuuSy]E E CE CM KVÍ 9tV蹺1[^_UWVS]}W ~RŹƃFF^FFFV^Wu SEECECUSVÍ9tV1[^_US]jjjEPu1)EU U U Љ]UWVSWjhQ6   ЉLDž5)P)PPV V V Љƃ9}q~CV˷ujVhPFSP% P)PPPu1F} t0uuuMPM щ}9t 蹷1[^_Ujuuuu uUWVSU ZMMx1U fz ~SF\CGM A 9|؋U +BEEuz 9}~9F F F ÃSVBEރG9}ʋMUD P(EuEMMUQMDHEU Z1fz ~-SuESEEEà GM A 9|֋uU z 9}~KF F F ÃE+EPuSV BM AMރG9}UfM AtPMU JEe[^_UWU0RPj5 t&EPt}} 5衢E}UutEPtEÐUSj5H؋]UjUuu tEPCtEÐUEjPUEjPUWVSMEE] uuEu9u}[9sW9]vOS S S ׃9Ur$SQU6UEu9u}9MwEe[^_US]Suu tjjSu hEPtE]UEjuu PUWVSu ]0҉߈щMQSщMQVEPuƒtEPtEe[^_UWVS} ]hVSpBPSr>jVWuV[^_UWVS} ]hVS(BPS*>j VWu[^_UWU0uPRu utEPtE}UEuu Pj UEju Pj ~UWS] 0҉߈RSuEPjƒtEPBtEe[_UEjuu PUEj uu PUE PujQ tEPtEøUVSuuu VuÃ}jV؍e[^UWVSuu <ÍS~CPcǃtoCPWuu 6<uWUPj$t+jjjuh,PEt 9tW蛰[^_US]M Q Q Q Ѓ9}uuPQF<]UEhP RPjt#jjhu h(EPtEøUWVSEP U R@E}Eu 19}~8F F F ÃSV\;EރG9}ʃ}UUP輮Etju EMLHM19}~KF F F ÃE+EPuSV ;UBUރG9}UMEe[^_US]hC PPj)tjjjShEP5tE]Uuu uuU WVSu 1UfR fMf9Q~Zhuà 9~4.4L19}Vr6tFC9V\6} G[^_U$WVS]u S RKVDPRPjtjVuhxP u DžXhVShPSV1fAft ft Kft@<9291fy~WJ5|GFA9|hPW"5PW$1DžDžU19zhS)P1hS)PR1 F9[^_UU  /tmp/.iroha_unix/IROHA%s:%dUlWVSEEtPhhEP}f]0}ЍpjjEP脏 |$VSP谏 }5^e[^_tcpcannaU(WVSu} V諼ÃuRVE؃u jjuVà u2]EE0E{t )jjj詎  hqhuZ‹CEtfBffE f0f}fEfECE jEP5h | 5 e[^_U}t  ~CANNAHOST,r/usr/local/lib/canna/cannahostUWVSujƒuh rƒhRSƅh S TÃtZ;tU0Pm‰t SRjh jSÃuh h  hSsƒ tb0щƄ щQ躠‰t#SR,>tjM|념-[^_unix:UWVSU:u@Mucj*tC  A10}Pt uP_Džh 2Rh jRtP51ۋ2utSuhu2 :uSS2=}:?t&2v:uܡ[^_UWVSEUUz11ۋMfy ~WV.@HfAfDžf9~fffV G9}Sƍ9tS[^_UWVS]ۍ{~W ƃEE FSFVEFMNEFMNVM19]~&fAfBC9]BWVÍ9tV[^_U WVS]0}щu%xDB=~PƃEE FFVF^^19}*UfJffSA9|uS VÍ9tV[^_UWVS]0}׋UTW~RƃEE FFVF^^WuS_ 19M~+UfJffSA9MCEUSE U SE$U$SVÍ9tV[^_UWVSMUU{ ~WƃEE FFVFFFNEFUV ^ 19M~*UfJffSA9MCWVÍ9tV[^_UWVS0}ȉ׍w ~VÃtyEE CWCSECECECMKECMK C WuP VSǍ9tS[^_UWVS]0}щ}Љ| ~WƃEE FOFVFFF^EFMN ^ uS' uS WVÍ9tV [^_UVSUr~VÃtFEE CCSCRuP VS5ƍ9tS|[^UWVSU M\{~W苏ƃEE FFVEFMN^uuS~ ]}tu uS~ ] E$U$SWV\Í9tV裏[^_UWVS]0}щ}Љ| ~W腎ƃEE FOFVFFF^EFMN ^ uS} uS} WVIÍ9tV萎[^_UWVSM} u~V蚍ÃEE CU CSECUSCCCK C C C S CuuP| VSSƍ9tS蚍[^_UWVS]0}щ}щ} ЉDǁ~W\ƃEE FWFNFFF^EFUV ^ uS{ uSj{ u SR{ WVÍ9tVO[^_US]jjjEP3|'EU U U Љ1]UWVSu] }RRhP}aP@}Ȁ%B}Ȁ%B}Ȁ%1ۍ9tR9؍[^_US]jjjEP'}E}Ȁ%1]UWVS}u RRhP} ax}XˀXPHtuPRSփ}1ۍ9tRF؍[^_UWVS}u RRhP} ]fP} ӃˀڅtuPSփ }1ۍ9tR薉؍[^_US]jjjEP|EffUf И1]UWVS}PPhV(} IJffBf ÃۉPRuw 1ۋ9tP轈Í[^_UWVS}u RRhP} aHffPf уمtuRPSփ} 1ۍ9tR؍[^_UWVS}u RRhP} ]PffHf ʃڅt!uuPSփ}1ۍ9tRV؍[^_U WVSPPhQ%} nCS S S ׃uju $uVSu u M91 9tP蕆[^_UWU0RPj u&EPu}} 5AsE}Ujj-u"EPu5rEÐUjjuEPEuEøUEPjj uEPuEÐUEPjj uEP2uEÐUS]Su juuEPSuuE]UEuu PjUE uuPjuuEPuEÐUuu uj Uuu ujUuuuu uuEP&uEÐUEuu PjjUEju Pjj UEuu Pjj sUEuu Pj Uuuu juuEP{uEÐUUu BPRjUVSuESuu V |jSe[^US]uu PujjLuSh8)EP^uE]Uhuu juuuuEPuEÐUWVS] u}}|/19}ffCf fA9|1e[^_UEu h*P RPjNU WVS] uV{EtHUU19}#ffCf Ћ}f}A9|ދ}U:1e[^_US]K ISPht*QPj]US]u C PPjjuSh\ EPuE]UWVSu }]Wl@9}PWF PPju9uVh\ EP[uEe[^_Uuu ujGetServerInfoGetAccessControlListCreateDictioinaryDeleteDictioinaryRenameDictioinaryGetWordTextDictioinaryListDictioinaryUWS1ҋ ;t<0щMʀ<uBPSjj uEPuEe[_UWVSu] E0҉߈҃}|5ujjRSPjj? uEPuuIuEe[^_US]|uu Pjj]US]|uu Pjj]UEuu PujjuEPuEøUEuuu Pujj *uEPruEÐUWVS*0} ֋}ѿ} >uQuVu UPjj uuh*EPmu}e[^_U VS]u jju&EPEPEPuEEEe[^USM ]}Q Q Q ЉQ Q Q ЉCQ Q Q ЉCQ Q Q ЉC Q Q Q ЉCQ Q Q ЉCQ Q Q ЉC1]UVSMQ RADPRPjjuu h.EP&uue[^UWVS] E}9}uKQ Q  Ћ}Q Q  ЉFQ Q  ЉFQ Q  ЉFQ Q  ЉE}}9})1e[^_UVSMQ RAu DPRPjjuuhh0EPKuue[^UEuu PjjuEPuEÐUS]uuuuPjj9uSh4EPuE]US]jCPSjjuSh\ EPwuE]UEuPjjguu h*EP/uEÐUWVSURUu UB PRjE|r1ۋUB x19}UZP\F9|UZU1ۉUZP\FUB9|~<4VxÃu&VuSg UBtPyUZEe[^_UWVS}M |}]19}/ffAf f9ufF9|f]19}/ffAf f9ufF9|f1e[^_UEu$uuuu Pjj3 u u uh3EP uEÐUSMU EXu1 9sBA9utA]UVSu^}S6u SvPQ Q Q ЉFAQ Q Q ЉF AQ Q Q ЉFA Q Q Q ЉFAQ Q Q ЉF1e[^UEuu Pjjj >uuh4EPzuEÐUSMQ RAuDPRPjjuu h*EPquE]Uuu ujUEju PjjUEju PjjUEju Pjj!dUEju Pjj"HUEu Pujj uEP uEÐUVSEu]SVuu Pjj#uSVEPuEe[^UVSu] 119}EfN t*t%tt@ A9|e[^UWVS]119U ~lB9E~b}f w%=t# t?=t=t,#Bf%f Bɀ BF9u Ѝe[^_UVSu] 119} 2B}BuB@9|e[^UWVS}119] suu9u9}r=t =t:A9f TTffDf̀f ‹uf^]59ffDff f ‹uf^CA uf^]A9M `uf^؍e[^_UWVSuM19] ~uC9E~ltrt!t0Fff;f f-f?ff̀f?fff f fC9] f؍e[^_UWVSuM19] C9Ef t)tWt$t0Dǃ99 *? ? 0 ‰C9] r؍e[^_UWVS]u U}19}H9}ff9|fe[^_UWVS]u U19}H9M~;:9|e[^_U1US]M UE=t PRQS PRQSC]US]M UE=t PRQSb PRQSO]UUЃ:t 8u)UUf:t f8u)USMU 1Cfffu؋]UVSM] u1҅~ffft B9fЍe[^U u1u  1Ð    jU(,$ L @@JyuU WVS ~UzuoB Ux 19}^w?uG\K~)SMLMtxu@  A9MURUwe[^_UPC F @t=L t P迢$ @Dt Pn $$}u =8 t54 yn8 4 rޥեȤ "%s" Ѥޤ UWVSEhlv&tE0 1zH0 =0 ~5( u( hQ>uÃ#=0 uuhS>躘$$ @0}PlNj $ I|uI $S@uW$ @D0 PhRa%0 hP+ D$+D(j PU=4~ 0xt j!АE=0 ~ u5( 0 Ee[^_Interrupt:UjhF@ UVS]t35(u(,hly$0  H0 $$ @DD0 PhR $0 hP+ D$+D(jE ƒ=4~ 0xtRj' ΐ0 u5(81e[^CannaLisp: initialization failed. patch level 2CannaLisp listener %d.%d%s -> Goodbye. UtuhAh jYhl"0 H0 hAjjhAh X( 0 PhR"0 hP+ D$+D(hT@jU hA&j Pu =4~ 0xt:jPQ8u뱐je(hA뚐0 hAC-RightC-LeftC-DownC-UpC-XferC-NferS-RightS-LeftS-DownS-UpS-XferS-NferPf10Pf9Pf8Pf7Pf6Pf5Pf4Pf3Pf2F10F9F8F7F6F5F4F3F2ReturnEnterHelpClearHomeDownRightLeftUpRolldownRollupInsertDeleteBackspaceXferNferTabEscapeSpaceU WVS1ۍ1DC~jj_=Dž@ =D tVƐ1ɋ;t!|uD@AC;u9 } uj5BD3BDž@ =D DžD 1ҋ;tk4|>uj5D>LT>tC;u׃?Xj5CtC1ۋ=9}'ƍ1ҐD DC9~5ftPf19~;1DtPeDC91[^_US=tO19~-Dt PueDC95QetP5e]USU] B^w:Tt- Dtu1]US , Scu19ƒt)У)У]U3jh  jhjh$j j hc(tc0 j,j|ht64jj]0t Ð5hqc5(cc5 Uc5Gc59c5 +c5c1U5 c5 b5b5b5 b5hb5(b0tPb0US]1ɀ;t B:uQSf]US]S%;:uʉP@ @@@ @@ȋ]UWVS} 4t*%usbt-s uuX%ËC 4e[^_ (%s near line %d) (near line %d) UVS] u t S8$ @<L uhACLttQhKPNqthKP3q P8 0 hBt$ t(jQ4US] u t SY$ @<L uhADLttQhKPnpthKPSp PX jhlincorrect number of args to US]hL jSG]Non-number to : US]hL thL S u hL]Non-string US]h=M thL S u hL]readU}t hM)4ux(,$ @=L t+Pɒ$ @DtP^ $00@41Ð00<B4EOF hit in reading a list : UWVSWNu ? ÍCރ$NXQtQtQtQtQQ(OtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQhQtQtQtQ`Qj! jʁLQ 5 +u4WYÃ.t");Åu!4WcS> uCj.Pb j[ jË%L\4K%D% D%<u 4WkÃ)tu4Ԑ? SÃu4WYStjmjË%L\F585TÃu jWSjjKPj>'s C? Se[^_UG ~PÐu1U# u Ðu1U9w + UWVS0}ЍxǡD8$9w> +ƁC$uPCe[^_nilUS]uhRW%=*Sj.j S jj(tt=j %=~tTuj)f]UP:Eof hit in reading symbol.Too long symbol name readUWVSE1\uG$SLuEujh`SI\u .jh{SF멐S Ƅ.jh{Su=WtWP% $Ru1P|[^_Eof hit in reading a string.Too long string read.US1"t^ujhT0#\uj\#+C뮐jhT뛐 Ƅ+jhTSPread: malloc failed in reading character.U WVS@PGVǃujh|U:1Ã\UUÈ>FuStE~3?Cu.-u(~N>PGu?Fu1uGPru5?Pu0fu*1u$GPHN>Pu} É% WEUEe[^_UM<-u A9u 1Ðt< v .uyuA9uUS],9(sH ,Xr8 9< |Ouj T4 t.8 " P54 qU4 t8 8 9< }4 < < ]US4 t2 < < uRT4 8 y,tt %,\$ @tE=L tPhL h5( ,$ @D N1]US7S؋]UVS]( t*ApqHy 9A t ؈QSece[^US];tPC;u]UE  Ð(| )~;t1Stack over flowUU9 rjh?YÐH PStack under flowUS]~ 9r jhYo]U 9r jhY;Estack over flowUU9rjhZÐH PLstack under flowU9r jhFZ%dUWVSU%=w=u0t %PhZSbSO4|j"1ۃ9};PC9|j"t[^_GC: memory exhausted.GC: failed in allocating new cell area.UWVS=Ч tjh?[q Ч 1ujhU[911PC~ S 9rS9r194~ 10PC94h<vh8lh@bhDXhHNhLDhP:hT0 hX#h\h`hd5O ) =)lj9~ , Ч e[^_UVSuF$á9w50+أЍe[^UWVS]u VVS؃PDe[^_UVS] ƉCDe[^UWVSU~Áj4t2Eu4VDP%}?ʁ} uTP0Uρ<U ˁ؃P*]"s)%5ƋCFC F CFCFCFCFC F }?ʁ}~t FPVF tu FP| uwe[^_Bad macro form UWVSu] u=u M%=j=9V_SYj PL7Ej jy%=uh_SVM17%t%tS4>e[^_U%=~DÐ1evalUnbound variable: eval: undefined function eval: bad lambda form Too few actual parameters Too many actual arguments eval: bad macro form eval: unrecognized ftype used in UWVS}t h`8}E%==Ec0u]ƃt0E%Ã{tjjCs}7h`E%\%=~@=%D $bbcbHchgSh`Yp%\E%4jVӉL-U4*ځDЉځ\E%=~(ف@9Du%=ShaMځt4=}Vr=}Sc=}uR=}1 }%=9% T%=uj%%=~0%t"P5<j PF}%D%tR}tzjPmjP`F}}%=}% T%=}7h)a%%=~,%tPjjPF}%D%tz% D%%= jI %t4juP' jaPF}%=}u/}%=}7hDaP}=tjP{} C%=tjMtjP7KuF}7&tjYPNuP}%%4j%\%=~"فD9Du%=Sh_aTUUځtSFujuV|P%%4V Vj8Eh%=}DDouځDЉV}VwjE%=~$]TTE#ShuaE1e[^_UVSuM tC%T%=u%9tu% u1e[^UWVS]1GSځttjGVO%=te[^_UVS1H< D %tj:ƃ%=tJe[^consUVS}t hj#‰¡Te[^nconsUS}t hjځL؋]UVS}t hj|‰Td¡e[^US]0S<]setset/setq: bad variable type UWVS}t hk%=tShk&%=ǡ0S/t%0Gu wVjЍe[^_Odd number of args to setqUVS1t%=jh]l[tfjPYjƃ%=ie[^equal (=)U}t h5myuPoPyu1Ð<UWVS}u ]19} 8 08t)‰ @9|1e[^_UVS]u M19} 2B9|؍e[^UVS]M 9u %=ʁ=u?u9uePDPDP %K=tAt9΁tt9t -1e[^greaterpUWVSu%=tShnt߁Q1U߁C%=tShnt %9~Nu<e[^_lesspUWVSu:%=tShyoQt߁Q1U߁C%=tShyot %9}Nu<e[^_eqUS}t h%p9t1<]UWVS5%\%=4D9<tPjǃt*Åu FSY 2%=O1e[^_nullU}t h8qyuu <Ð1UVS5GtjÃt '*%=t1e[^UVS<5EtDjÃu 1*%=t؍e[^+UWVS}1_tL%=tRhVrst %KuW% e[^_*UWVS}_tN%=tRhr t %KuWV% e[^_-UWVS}u U\%=tShRsot ߁ ߁}udutL%=tShRst %)Nuuq% e[^_/Division by zeroUWVS}u E \%=tSh7trt ށ ށ}tn%=tSh7t'Aځut"t ]jh9tOuug% e[^_%UWVS}u \%=tShAu~t ځ ځwts%=tShAuU4Aفutt ]Йjh9tUUNuWUpU% e[^_gcU}t h;vy%1UWVSEEE<M|1usEH~k9=LuFP9=Pu>9=Tu.9=Xu9=\u9=`uME |%=j4Ãt~}0҉ǃ҉UR4‰St:EPR^sC  <E S5MuEe[^_US]jrtjP[Ku]copy-symbolcopy-symbol: bad arg UVS}t hx%=tShx%=t VhxفЋPQP Q PQPQPQ@Ae[^loadload: illegal file name load: file not found [load ] UWVS}t hx%=tShxhQ>ށP^ǃuShxhypShy`0 1H0 $$ @<@P02$ @LtPQ[$ @D0 PhR0 hP+ D$+D(jƒ=4~ 0xtRjΐ0 <e[^_set-mode-displayIllegal mode UVS}t hzt%=tShz8H%=uʁtuQhzt%1PVtj؍e[^: illegal function UWVS} %=I=u"%DMj)C~)tF<~%=uuh"1]3jP F~'EEEj1j1#ƃ<M (LE LLFj"‰V F @F @F @ F @j"E EH@ D H N A]%=t : E%PeF1t ~MMʁtF X u2E%0҉ǃ҉UR!E1}t/}E%PuKEN }%= MА%MЋT%=сEЋDE܅E܃$PHԋԋԋԋԋԋԋԋX`{{{hpx.& @}܋MЋ<%=F X }tF ` F F5  U}t u Vt Ru v V t" t 7t"-jhBuhVܾuhl̾e[^_Illegal form Key data expected Inconsist number for each key definition Too many symbol definitionsUWVS0Vhh.DžT%=tRhv<u0hh˽1ҋ 4 %=u-ːD%=uB4%=tփu 9t0hW%=.= 0= ?~0hDt %%4o T%=uV)lj)ljP%DPS  4%=t)PujhBj@PTupjhBܻ 19}ِB9|1ҋ9~!uB9⋽ ||| |A %=D[^_UVSM] uAu 1uA} 1ҋЍe[^UWVS}uWutƍEPEPu b9u&]3E+ @)U]+B1e[^_UWVS] }uا @PƒtxUا 9s[^~Et.t9tt+ـ !BE B BC9rE jhBxe[^_UMU tBtBȈBInconsistent range of charcter code Insufficient memory Key or string data expected UDWVSE%=~4%50%=~%0%=Shh脸ށDE%=tuh,TDE%=t}tuhVځtjWP E% =uhh迷u܁%=d9D%=uhhg_\%=tShv?t%=tVhvEPt %PsEPt %POEPEPEPEPEPE؃$uh菶uuuuSEEċEا EȋMȋا @E؉EP%EЃuujh/ uЋEEEE9EsJ}}Ȑ+EM)PuVb4}ȋMMċMĈ M9MruMu%\%=t=tBSh&胵qEPt %P}B%|2=equalsetqquoteUVS = t6 69%‹CB tB >uύe[^quickly-escape-from-kigo-inputauto-syncromaji-yuusenignore-casen-keys-to-disconnectchikuji-force-backspacerenbun-continuechikuji-continuehiragana-tourokukatakana-tourokuallow-next-inputindex-separatorindex-hankakukojincanna-directoryserver-nameserver-versionprotocol-versionhex-directabandon-illegal-phonogramcanna-versionkeep-cursor-positionn-kouho-bunsetsuinhibit-list-callbackbackspace-behaves-as-quitlearn-numerical-typeautokouho-countforce-kanagramatical-questiongrammatical-questionn-henkan-for-ichiranbreak-into-romanstay-after-validatekakutei-if-end-of-bunsetsuquit-if-end-of-ichirangakushureverse-wordreverse-widelycharacter-based-movebunsetsu-kugirinumerical-key-selectselect-directcursor-wrapenglish-tableromkana-tableUS@ =@ t)3CD;uً]han-alpha-kakutei-modezen-alpha-kakutei-modehan-kata-kakutei-modezen-kata-kakutei-modehan-hira-kakutei-modezen-hira-kakutei-modehan-alpha-henkan-modezen-alpha-henkan-modehan-kata-henkan-modezen-kata-henkan-modehan-hira-henkan-modezen-hira-henkan-modemount-dic-modebubun-muhenkan-modequoted-insert-modetouroku-dic-modetouroku-hinshi-modetouroku-modedelete-dic-modehenkan-method-modechanging-server-modeline-modegreek-moderussian-modeextend-modebushu-modehex-modehenkan-nyuuryoku-modechikuji-bunsetsu-modechikuji-yomi-modeshinshuku-modeon-off-modeyes-no-modekigou-modeichiran-modetankouho-modemojishu-modeyomi-modeempty-modealpha-modeUS = t)3CD;uً]show-canna-fileshow-romkana-tableshow-canna-versionshow-gakushushow-server-nameswitch-serverdisconnect-serverrenbun-modechikuji-modejisho-ichiransync-dictionarytemporarymarkbase-rotate-backwardbase-rotate-forwardbase-kakutei-henkan-togglebase-kana-eisu-togglebase-zenkaku-hankaku-togglebase-hiragana-katakana-togglebase-henkanbase-kakuteibase-hankakubase-zenkakubase-eisubase-kanabase-katakanabase-hiraganaromajikatakanahiraganato-lowercapitalizeto-upperhankakuzenkakuhenshukouho-ichiranconvert-as-bushuconvert-as-hextourokuquitshrinkextendkakuteihenkan-or-do-nothinghenkan-or-self-inserthenkan-naivehenkankill-to-end-of-linedelete-previousdelete-nextend-of-linebeginning-of-linepreviousnextbackwardforwardjapanese-modequoted-insertself-insertundefinedUS = t)3蕗CD;uً]tlambdamacro:user:bushu:rengo:katakana:hiragana:grammarU#ih8h<h@hDhӖHhĖLh赖Ph視X h蔖\hɲ腖`hӲvThRsgd<DUU E8u@Ð8uxu1US] tttPC@C wjSXC 9C~EPCPS  }tC ĐjS C 9C~EPCPGS  }tC 댐S]UWVSu} U]u GM t M~8̻ u'f,fAf,f@ЋE@9uWQ fdž,KSw t)j6w ntSVCjw VtV,Vn"K~6Sw -%1e[^_UWVSu}]u U BSWju u輞tSWV,S5Ж t(2u.t u%SWju uy%1e[^_¾ɡĻƦë­ɥסʤȤ餫ݡʤʤؤϷˡʤޤΩʤ᤹ؤʤäھʤؤ˻ʤä٤ͼʤƤؤʤˤ礦ñʤġ׵ʤ󤺤ʤȡȡʤΤؤʤ)ʤ)׮ѹȬ͡Ρʤˤ٤еҹұʤäȤШΤϤȤۤȤʤᤷ礯ڡդȤ餺सޤФΤĤ餤ΤषߤդդҤĤϤˤˤȤޤϤΤ᤹ޤĤƤۤۤΤ֤ˤĤĤޤä椦Ϥ㤯餤礦ΤϤĤҤʤޤäȤդ夦ФUhh h thh8 hUVSUPrCC$B@B@B@ 1e[^UE@ @1malloc (newForIchiranContext) ǤޤǤUSjÃt S4 Ǽ1]malloc (pushCallback) ǤޤǤUS]jjjjPSu4 )4s…t!PBPCBCB1 S]UUPAPABQUWVS}Ƈ9WZƃuLJDWTPBB =\ uh_h,h$jjj%Pj hB PrWTƃ0uLJDWMPM KCW.CO${tƇ9LJD C!uWLNe[^_UVSu]VGC=t PQVV%jVe[^UVSuVPX V{VhSjjVi }VG1e[^UUP<(u jRSÐǂDR(UuE UWVSu} ]VoC=t PPVVMP@(t PYhWVssdžDV,e[^_UVSu]VC=t PPVcVVK,VVϠe[^UVSu]VC=t P(()ډ|8E8((p8t8d8tu1e[^_äʴѴФ̿ǤޤU= u%\| = u4 ÐEPEPo }%åФ༡ưѴ򥵥ݡȤƤޤ༡ưѴؤ뤳ȤǤޤ༡ưѴؤޤUVS]P<(t S3ƃ9ǃDjS$u4u 4  4 654 SS"#uh h]SS"1e[^༡ưѴ˼ԤޤUWVSuPd8P(unSV} Gu4 SVjjjP(/u4 V4umt8(()P(P|8p8)P)RP(4d8((p8t8d8|WVwe[^_UMPt89p8u9((t((90(u '$u1ÐQɤߤ᤹ȤǤޤU(WVS}PEE98}E}G WK[tG jjp8+|8PjP("uhu%u3|8p8t8d8JVP(8tEPP(tjjP( t}}N9\8~\8d8}tm11|8}FE)($tA8A9})( t9ű|819})|8819})ȉ8= t+((90(t|80(,(8((0(,($ |8p8t8S\8tH\8x8u1 Su|}t*= t!= u}Ƈ@ƇBƇA1e[^_̤ʸФޤǤUWVS}PhG,PP(ƃ uhWS((+|89t*EPj)PjS8(()|8E8|8p8t81e[^_Ѵ˼ԤޤUWVSuPd8t8(()P(P|8p8)P)RP(' ‹((p8t8u4 V 0d89~\8Ve[^_ʸΰư˼Ԥޤʸγ˼ԤޤUWVSuPF ǃT(((9t8|9p8tL\8Vu54 VpWP(uhVVEO\8P(#d8 hoАVtx8SVF V.e[^_ʸν̾˼ԤޤUWVSuPF ǃT(((9t8|9p8tQ\8Vu54 VWP(uh^VMk\8EPP(|}u VlDP(%d8~Vtx8SVF V-e[^_U$WVS}PEG |80(9d8u W詽wjjp8)PjP(V uhuYuI-9|8p8t8d8H\8d8N9|cVP(\t.EPP(tjjP( u hN}}d8N9\8~11|8}ܐFE)($tA8A9})( t9ű|8,(0(8 $|819})|8819})ȉ8|8p8t8S\8H\8H9t8~t8t8} ǃt8u*ax8|890(b9((Zd8tPHPP(uhVu~kǃT(d8O\8uSu@?uu3|89((d8u8(C }GGH1e[^_༡Ѵ˼ԤޤUWVSuPd8u0u'($ts?tHPSVm u+4 h VSVoF 1x8t \8 d8F 0(9t8~t8VRStnt<8|89}f8V|8t8VQB((0(,($ ((9|80(V}54 V"P(YƒuhVlV^)1((|88ǃT(x8d89~ \8d8WP(Yuh;V1Z\8|8p8t8C F C ~9T(| jVBVSV菽F e[^_UUPx8@ @  B RUUPx8@ 4 B4 PRUUM P=(uR.RUhuUh`uUVSuPd8t V'F{u{tSV8PV[8(C FFHSVu1e[^USMP1ۋAH<(uY ؋]UWVSuPVǃCt58u0Ȗ <u Ɔ9<xt F`V5e[^_US]PĖ <(t4 SSZSE8]UMPĖ <(t4 QQcUUJB@BHz u `?v BHB Ãz1ÐUE@@P1UVS]Sƃ9<xt C`S4e[^UVS]Sfƃ9<xt C`S4e[^UUP<(u RmÐRUU t 9t @u1UWVS]E H P0܋<(tS辵S䀉<( A <(t <(ABA8(C4(BBS]C@1e[^_UWVS]u E11ҋP<(t}LtN MM9t@uu+j Cƒt$F BLBLJMzF tWh@p up0S萱S貴e[^_UE p uUS]u }t>Ptt -t%PSu!PSPS S:]UM<(4(t %Ð@t tf}@t u<(t UVS]Pu FSe[^UMP<(u擉<(PQ1ÐQvUMP<(u=h t f}QJË<(仉<(f}( <(RQL1UMP<(t QÐf|D@<(RQ 1US]P<(t S軲7<(@t <(<( t <(RS1]UMP<(u=h t%`= u QKÐ<(̀<(@t <(<( t=h u <(RQ71US]P<(u=h u%=uSα/<(廉<(%=u <(RS1]UMP<(u<(PQ1ÐQfUMP<(u<(PQm1ÐQ2ϢʸѴؤ뤳ȤǤޤϢʸѴؤޤUS]P<(t S԰Zƃ9ǃDjSthS蔶S 1"4 hSsSe ]ܸϥƥؤʡVersion %d.%d patch level 2UVSuP<(uSƆ9džD RPhUShSOSVȵ V 1 V¯[^äʴѴФȤ³ڤƤޤ%s ΤʴѴФ³ƤޤUS]P<(tSB_ƃ9ǃD= uhP-Ph9P PSٴS 1óؽϣΤξ֤ǤؽϣƣƤξ֤ǤUS]P<(t S萮<ƃ9ǃD=` u hhSMS< 1]åޥե %s ѤƤޤޥեꤵƤޤUWVSuP<(t VԭqƆ9džD̉ t10҉߈tSh{SSVyhSSV\VK 1[^_å޻Ѵơ֥ %s ѤƤޤ޻Ѵơ֥ϻѤƤޤUVSuP<(t VլjƆ9džDp t*=t!PhrSSV脲hSSVdVS 1[^˼ԤޤԤޤ Sync %sUVSuP<(t V VƆ9džDhi5 Sy}jRhSSV話V1[^ޥȤǤޤǤʴѴ˼ԤޤUhKu̻"%s"%14s %-20s ꤷƤޤ US=0 uu hz]SSuh|UEthPh$ :$ 1U=$ u1ø$ äʴѴФ̿ǤޤǤʴѴν˼ԤޤU=  u 4  4 D54 ...%s%sUWVSu0ҋ ЍxNv=J)PVh`:)B5 )PpSVhh`4 `h`$e[^_IROHADICDIR/usr/local/lib/canna/dicѤΥƥȤǤޤǤIROHADICPATHirohaΥǥ쥯ȥǤޤǤʸˡsaveddicnameμƥ༭ñϿѼϢ켭󼭽userUWVSEPÅuhQcÃu]S u p u)4 vhv v9= +hÃuHh5 u4 )h5 pu,ҐS5 XtS5 Dt= th 5 C=< = ti{u]{ uW=܉ tPs5 j uC sC shuCta{ u[u   =܉ tPsR uC sZsh>uw ta{uU=܉ tPs5 p uC sC shuC u E_u EPux E:u| E&u Eu E =܉ tPsR u1C {us't%sC su 1e[^_%s 򥢥ޥȤǤޤǤUWVS5tb~u   ~ u(vP\uvhWjWv+V%ރu}1[^_USjDEÃt5jDjSFUSU SCCCC ؋]US]C0t PC4t PC8t P|Cunrr1Ãt8^sF$<(F(@(<(tC 4 SC"4 h WەWPC GSW+<(tN $<(S|CC 4 G4 (<(t $<(ǂx8jWWWN1e[^_UWVSUP>t R<(t= uu= tV119\8|JSP(thPP( u C9\8}džx8Wuuuv1[^_UWVS}P<(=` %PP(u=  uǃx8ǃ8ǃ|8ǃp8ǃt8Sǃ,(ǃ ǃ8ǃ|8ǃ$ǃ0(ǃǃ((ƃ( ƃ($Cǃ(8(C GS?Cǃd8fǃ8fǃ8SW葝 @(tS%e[^_Uu.UVSuP;t jV<(= tzC C  F F Vx8((90(t$$ ((0(,(|8p8t8V = tOF d8\8SVq}54 V*V4O tPSVG- V-F SCVƆ@FBƆAF e[^UWVS]u VS}54 S覑S谋h((VS'SA t2FdžT(jEPSZ |SQVSʏ54 SDSS01e[^_ʸγ˼ԤޤUVSuP;t jV\F ǃT({t jSV7P(Ed8~ SV)F hV-Ve[^ʸν̾˼ԤޤUVSuP;t jV1\F ǃT({t jSVl7P(d8~ SV荎F h$V葚Ve[^ʻФޤǤUVSuP;t jVhh` P(G |HSV FHF@` h` 讐‹FPF@ F@$84 hV?SV谍1e[^U  juUVSuP;t jVA{tjSV P SVI|SV/V1V*e[^US]P} t)d8tjX|80(,(8"((9|8}&0(,($ SRd8HPR*S ]UWVSu] }C FV;uy<(t WVAgd8ttjHPSFt|8,(0(8((,(0( $e[^_US]PPt P.=T txt@xuP SʆjPSPS胋1]US]PPt P.=T txt@xuP SbjPSPS1]US]Pxt @xuPjPS`PS܊1]US]Pxt @xuPjPS PS蜊1]: UWVS]PCp` hh h軏VC0h臍C@CNHCHH SB B$CHS膄S$6tqƇE(S(((H PC@ @C@E =ȉ tCƃ@CBƃA*ƃ@CBƃA ƇE(SSE e[^_UVS]ǃDs PPSu5uujS+SSjSP(Sxe[^US]SSSSSU]US]hD h h jjjjjjS((tU P@S 1蟊]UUP<(u jRÐRãᡡ⡡㡡䡡塡987654321%s%cUWVSjh h~ t^1}𻈾  tB_wPj.3h@ WEW蠏F~jh he[^_UE`8P(艹UVS]E PPuS$Pe[^ %d/%dU(WVS]P=( t F@E}GH_FN,@V0D CFN,@V0DG]KFV,@DA = F t{FV,@~0}]TT 1ɋ=}9t/ t*t&}|}9M~A]9t tu}GH$]C@$=( }GxV} ~%}c~} ~"c~ppppRuh ]SFPS}WZB)P謊Gp‹GPe[^_UVS]uVVVSE e[^åȸФޤǤUWVSu]]ǃT(`8P(ǃu=  u4 / F 1SSuV+X8 Vf= u@uƆ@ƆBƆAVe[^_UWVS}]]ǃT(`8P(7ƃu=  u;4 / G 1SaSuWsX8TW讠W e[^_US]C(t PC,t PC0tP]US]tt PśS輛]UUPAPABQ蓛malloc (getIchiranList) ǤޤǤ٤ƤθμФ˼ԤޤƥФޤǤU WVSh]ƃu4 #hVu誸}  }4 LVj@P1Eu 4 #VcM1ۃ>tC} 9~u:uEPut E}E4 qVHu@1e[^_malloc (newIchiranContext) ǤޤǤUSj4MÃt SF4 ~1]malloc (pushCallback) ǤޤǤUWVS]}u$MMt 4u1u4u0u,u(PS詝u4 G…tmCBPBPCBC| 8M J$MJMJ zt J!J 1u EPuWSZu-S(SZuWu j041e[^_UE@ @@@@@$@(@,@0@!malloc (allocIchiranBuf) ǤޤǤUSEP@(@CPbC(u 4 ZbC@@P}u jEPVME M}7VMMă}uU2ME}74M}Eo9]~u}PM諁Mąu(6M证Mąu-6M賁MątC6M貁MątEEU:u9]}u=l tPxuS9=T uASPt#Ayu Sƃ91]UWVS]PA!t4tjjjj0w5l t P@EQtH= t5[!VǃtVƆ@FBƆA V:pe[^_UVSEPP< wу<wHsS,@[09 } !u=X t DHȉ1e[^UWVSuPW!t-4t#t jjjj jjjj0ЃGG$SvF ES6vG! t G!Ɔ9VƆ9Ee[^_US]PS@Szm]UVSu] ƃ8ƃ8S68|89}f880(9u((8f9}T80(f880(,(EPj0(jS#E$ 88$8EPj8PjSEf8C F e[^UVSu] ǃ8<(tC 4 F4 C Ė FĖ S|CVe[^UVSu=h 819((~33($u(vt 8 C9((19~!tvu8C9e[^U$ WVSM }8|8)9Ev,)P(Pu wt8+|8} <"E+E PM(Pu Ct}} M8<v}889h}>($'M($tF9|DžDž9+PM(PPosPPPPh+PW))ljPRMq"‹)8Rr 9M(F}89)‰ЉM8.$%%%P%%'VPhS?PSE+E Pu ӏ|VPhS賏PSE+E Pu HVPhS׏PSE+E Pu }8<898~04x‹M8)ljC98ӋM88)ljDŽ88)P<}88)RDPSq9x88)DŽ88)ljPSE+E Pu 誎 UM88)RDPE+E Pu r}88)щ8<uFt19}'}9} s4pwM M C9ً)E <uh} 9EvQMDPWo$E+E S}DPu o M8tv} K} 9EvQMDPWto$E+E S}DPu To } M9<} M9}8~ tM((} 8)9Ev-)P(PWnM((+8<} dE+E P}(Pu nMd1UUPƀ8PRd1UUP8tƀ8PRc1ÐR_UjuUj8uUj9uUVS]C S裀Pp SS莀P@Sle[^US]SgSS[S15SW0]ñϿѼ񤬻ꤵƤޤUVSuƆ9V;ÃtVL4uSn{džDV eHPd@;th0h0VWT$h0V-dV4džDV1e[^ɤ?[UWVS}Gpu@G@ VG0Sehh1O,QgVSD,PJe]SD,GHGPG$x tHH WB B$ X G@$G`GHW \W\1[^_UWVS}Wu~Pu 70VdU DŽ0Vc@W*e[^_US]S'~S=1S2S]US]ƃ9h3h2h1j jjjjjSa(t@@!SD1ǃDb]UEh@|P }=  uåȸФޤǤǾФޤǤ#%d#%dUWVS}W'}PX pW蔉W }P7 PbG DŽ G 0Sh@ u=  u4 3jEPh@ =  u4 3uuh3\SjS @PdW u+d@t PwVLJDWa G WP[^_US]S{PpSoS{SGP S.S]tc = NULL tc->udic = NULL ñѤΥƥȤǤޤñѤμޥȤǤޤǤʴѴ˼ԤޤƥФޤǤUVSEPu hu5芡d@u h5t蜇h@u%=  u4 5h@d@4SdejSh@Zu=  u4 5~j@0Ph@΍Ãu=  uv4 5@u h@u6jh@=  u44 6V؍[^äʴѴνλ˼ԤޤUEPjh@諍u=  u4 |71ɤߤϤƤɤߤϿ줿ñ¸ߤޤU(WVSuP@h7Vn]VEPVud@RP6tDu}u=V%h7V]V^-džDV1,EPEPh@à u d@t PsVV>u&d@t PsSVgPM؉Y=\ uE܋M؉A Eh_h,5h3jjjPj uE؃ PqVhÃ0u6d@t PrMqWdžDV\PxuV2Ɔ9؍e[^_ ʴѴФ̿ǤޤñǤޤǤ()ޤUWVS}LJDWvPhh:V_h0P_,S-]VS]$ @PSy]VSr]S\¸)P PD,P\ = u0| = u4 :W*W4[/h@d@4S`w,VS5 u&=  uhh&:V^ = tS5 自hh?:V]Ƌ SD,P+[S [Ƹ)PhB:D,P]ƃ$0SD,PZSZƸ)PhF:D,Pe]?_,SZPSWXW)WN1[^_UVS]uStVS)S$e[^UVS]uStVS[)ǃDSSqQE e[^)?(y/n)UWVS}PUhh?:W,UR\Ƌ] SD,PYSYƸ)PhB:D,PT\ƃ$]0SD,PYSYƸ)Ph<D,P\h<hp<hX:jW]d,u1Ud@t PouLJDWXuYPuWZW1e[^_malloc (newMountContext) ǤޤǤUjjXtÐ4 =1US]tGCtt PRnsGnC t P7nCt P'nSn]malloc (pushCallback) ǤޤǤUS]jjjjPS ru4 >4#…t!CBPBPCB1 Sr]UUPAPABQUVSutsV跖uu1e[^äʴѴФ̿ǤޤΥޥȤ˼ԤޤΥޥȤ˼ԤޤΥޥȡޥȤԤޤΥޥȡޥȤ˼ԤޤUu)^CuF8tF~jPFF19V~FF CuCu>u";v C;w;tFtCB9V[^_US]t6Ct P\C t P\Ct P\S\]UWVS]}t <w } W9}}w }8tA9|ʋ} w9}} }}}8uB9|} W)ȍe[^_UWSEU @ Cu0ډHUt? t$ tCtRPShh\PPShh[:PShhCX&PShhSZPShhUe[_UEU @ UE tt Ð Ð UWVSE1Dž}eDž}WDžf}| 9uKSK E9}'j}8RSu1҅t9v4Ep )<t 9wՍ9E}~8} 1}@t+EP9}}~}W8u LUtAt" tKt^VuhhZ\VuhhYFVuhhV.VuhhXVuhhMSDžDžu3u0ҍJ)3ujƒTtwf}}9}8}xquu0ҍJDu3u ҍJF1ɋ} Q9U|,} t&E G@E Iu} [^_UEU @ BuUEU 8t1Ð@ BuBuU0WVSE}DžDž}E8}0}0u0Pr<hf} ]DžIE9H@P5<+x?8Qu1E 1ۃ9]~?t GC9]S9UEP 19]~$tE G@E C9]C9U~} G}$t}E$8}uFFF}(t}(7},t)E,}08Dž}W1NVN 9]~%U RSERVu1҅t9v>E@ )<t 9wύ9}Dž} Dž9E} Dž}?ukE @tcW9}X}~R}8OuJuEPu0JDž}0?DžE 6u.0ۋJ6utJ Dž)׉}0u  E0g6uD6u_J6uLt"J DžC}0u S}0Cf} 9]DžDžDžo6FE00b6F}07VDž8} Dž9}} DžDžDž}(t }(}$t }$},t },}9}} t319~#} @G} A9ߋE 9U~5} t/E G@E uً} [^_UWVS}EM lMhd1ۅ~} 1sDž`d9hNuMXDžpDž\h3AhCpPtPxP|P\#EPPSVWluxB,9.)`} t ltlXXw |9s)P2PXtP0w t+|PXVwtڋ|)0҃ #d9hu\tDž\d9h`L[^_US8=8tЃ;u]USTu1=Xt@0HPhR6 h[e[^_passwd.bynameUWVSu=u.u 1E10׍G~P]EPV!6]}EPÃu"=thgVh à t<+t<-u1)1te[^_%upasswd.byuidU$VSu=ucu1E3uj]EPEPo5]EEP,Ãu3=t&Vhgj]S赞hgSh5 Ãt<+t<-u1b1te[^UEUUtP@ tP@  /etc/pwd.db/etc/spwd.db%s: %mUS`itTijjjjSw‰E4MMEjEPEPRB Ѓt 2Equ9=!uh!&tR5!9! != uHǐt=tu Shmij(q1]UVSjURuP@ Ѓu/]x9Ev,xP5|VB|u 15|5CFu5CFujhS2jhS2jhS25$CFu5CFu5CFu5CFujhS-2jhS2e[^U= ujjhXjju UWVSuE>+L0҉uh e~@=$ $ @ 8= tL}0HE jh EPRB Ѓt1҅t$ @ 돐hg$ @ 0hE$ @ E $ 1= uFP  EPEPEP u5FP$  1$}= tB}0HE jh EPRB Ѓt1҅ehguh H~= tL}щK] jh EPRR U҉t1҅t 1UhgFPh;~@FPM EPEPEP tD} }0щK] jh EPRRU҃E뤃}FP!‰$ z $ {  }0щK] jh EPRRU҃$ S BC u:~ }0HE jh EPRB1e[^_:UVS]U u<+<-VRhdƆEhgouVVTK(hgoVV8C(uCK(hgoVVC(uPgCK(hgoV^VC(uPwgC K(}tzhgoV,VC( uCK( hgoV VC(uPB"CK(hgoVUtlC)uP"C$K(hgouVUt>C(@uCK(@hgoVUt{(|CK(hgoVqUu1(C)u C K(j s ete[^master.passwd.bynameUEPEPEPEPhIqu|uu";Ð1%smaster.%sU0WVSu=!uh!b{VhqSJ =!tVhqSJ PP0} HPu S5!yT=Wj:ydDžƅ5jPV*DžWƒu4ƅ2jV*Wqƒu5+t-cm0_~@5!SjFPuePZǃ W :S2bt)G G xuS= 0H jh PRB ЃtrnFPSbX= b0щH jh PRR ҉t1҅~@5!SjFPP ǃW :t5S2t9h؇Sz>t%Fh؇Se>tPOFE u1l1<*L*L*h-tF,ut/1#t t utu@h-ue[^UWS] =l1uhl1jduEPEP0HPSu5l1RbuOj uMtE=w1Puh"KEƀ"uu#h"u1e[_UWVS}=l1uhl1c=D*uI &t P#EPEPh$&h &h@5l1cƃuWD*= &EPEPh$&h &5$&Sh@5l1!eƃ S"tD*1mE=vuz"뙐Puh(&IEƀ(&uT"j h(&lLEth(&WXIe[^_UWVSU1119|<]dPWU@"Uu W!1/Džu M BtF밃}tMe[^_UVSEju Pqƃ t5|Vu  V^! e[^UVSUEPu R ƃ tuVu  V! e[^UVSEju Pƃ t Vu{ V  e[^U5|u uDPATH/usr/bin:/bin:.execvp: : path too long sh/bin/shUWVSDžDžj/ut#MDžDž>M9u Lhu Dž h.Pc9ƒ:u 00Ѝp0}Ѝx 7ȃ=vtB:uBKt Aue[^Uj ju!HUEPu u^ %d/%sservices.byportservices.byname%.*s UWVS5\ f` %PhhPs` \ =d uhd Yu~PV0щHPSh5d lWƒt?u3V0щHPSh&5d 4Wƒt11h6hurc[^_%s/%sU WS=d uhd X5\ 5X hahSmrX \ PP0HPSh&5d TV,u1h6hur1[_UVS=d uhd Wt 1=P uKh t P4EPEPhp1hh h&5d WƃuOP Rh EPEPhp1hh 5p1Sh&5d =Yƃ StP 1&uuh6hupue[^r/etc/servicesUT uh8h:AT Pn}U lUT tPJT l# ,/UVS=P tht1pt t1=T uh8h:@T t5T hht1gAƃ u 13>+uPjatB=X t ht1"=` tht1 ht1_>#zhVK<Ãb5x5hV*<ƃAF< t< thV<ÃCV?%55|555t/< t(< t$6shS;ÃtCux5e[^|wsniea\XSOJE@<72-(# usr2usr1infowinchprofvtalrmxfszxcpuiottouttinchldconttstpstopurgtermalrmpipesyssegvbuskillfpeemtabrttrapillquitinthupSignal 0ӛěscWK@+Κ|dP<&User defined signal 2User defined signal 1Information requestWindow size changesProfiling timer expiredVirtual timer expiredFilesize limit exceededCputime limit exceededI/O possibleStopped (tty output)Stopped (tty input)Child exitedContinuedSuspendedSuspended (signal)Urgent I/O conditionTerminatedAlarm clockBroken pipeBad system callSegmentation faultBus errorKilledFloating point exceptionEMT trapAbort trapTrace/BPT trapIllegal instructionQuitInterruptHangup/UWVSE E}t]=vP T5jMI랐%1Dž3Cx$lhhУTťoooܣĤ|@[MyQ;R ]9P K}|oDžDžDžDžDžgeXR^ * 1DžDžtE]Sff tEMQft!E]CX:E]S !Z vV  T5tDžDž ]{S9 um]ЁvR T5t6MQZYJ~믐u8m 뗐/$,0DutP1Ґ]s9s*)3S88tׅ )Mq9.uWjE]sutP1,FMIOt2yQ7t m]*u…\EMI]DMICOt0yQ&7t 9M*u)ޅxut\1MЁvRP T5uF]KOt{Sj6t뀐EMI]ЁvR T5u1MICOtyQ5t)OvG]M2VՃMF$LΫLΫΫȪΫΫΫΫΫΫΫ<<<<<<ΫΫΫΫΫΫΫΫΫΫΫΫΫΫΫΫΫdΫΫΫΫΫΫΫΫ<<<<<<ΫΫΫΫΫΫΫΫΫΫΫΫΫΫΫΫΫduDžt ? Mp ?t]p Ր Ő@twΈ.t_9uQDžʋCMQZYJ~u@3uO}-9uQRsxtXuuVjRщƉ׃ u(tEMQf2Ct EMQ'tEMQ2z E]S2)ꋍ7OvGM2VՃ:$<4Ү4PҮ((((((((((ҮҮҮҮҮҮҮҮҮҮҮlҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮҮl?^@㿉Dtw)uRڋA]SJKJ~u<0uONt>9֐uR9w3etEtuV^K3uVHuHjRþtE]SEMQ)ꋝOt[^_UWVS} UG^uEMGEhuu }uG+]]UM] 7G-t t]tsu7]tuVC} E-뷐GEuu}Vu  UM] E}~Ɖuvu\e[^_UWVSE@UZ09u?hDžtoMy0A4UD@>Ny:1FMq4uURSǃt >VWSMy0UQ41e[^_UVSu] t^=4u6fC u+tDtS|u3c CCK {0t0C49C|St fH HCPc ߋCt9vB9u JC,CC<C8K@K0C4KBKB Ce[^UVS]u 9sHr1VsDct CDsH1e[^UWVS}W ,wj 7aƃ tF)ËM fO )_7_ECPPW^u+EUWDP7RK ]W+uMwj 7ƃ u_뮐F+MSWu$EGDu7PM)O7M GD M 1e[^_USU] 9u1*66h6h6UUu)؋]Uu u U`WVSu]SVlfEf%f=@t jVlǃ1SWYfEf%f=@t  hjjW*R tVj7ƃtFeFtFvF t>FFV F VW 1e[^_U =6u9EEEjjEPh6jEP#uá6U$WVSEu = t VPy  EE1EPOE]VCE܋u܃M9>EE;t@EPEPEPS];t#}tEPEPEPVu>t}t݋UtEt9u?u}+};t;ut %؉E*;t>u])‰U;u>u}uuEe[^_U4WVS}EG؉فvS T5уuȀ}-uEUE}+uEG}t}u"}0uxtXuWUE}uE }0uEE1҉EUuujjéӉM]uujjwӉMEEEM=w у1ɅtEtMvQ~  L5]vSK T5уtــMM9M}|-U9Uw%E9EuU9UwE9EuU9Uu9M} ECEEeÉ֋UU֋EEUЙẺUЉ؉EUЉEUUG}}EE "}t ]U]} tM}tOE EUe[^_U4WVS}EG؉فvS T5уuȀ}-uEUE}+uEG}t}u"}0uxtXuWUE}uE }0uEE1҉EUEE}tEEuuuu迦EuuuuئEUEEEM;w у1ɅtEtMvQ  L5]vS T5уtــMM9M}|-U9Uw%E9EuU9UwE9EuU9Uu9M} ECEEeÉ֋UU֋EEUЙẺUЉ؉EUЉEUUG}}0EE}tEE "}t ]U]} tM}tOE EUe[^_CPOSIX//LC_COLLATEr1.0 UWVS  }u  7upurxu PSkhxSuShzS hSÃu Sjj h$-uy$ucSjh huISjhhl u/SjhhluS" 1 S"[^___collate_substituteU WVS1E0ҋ]߈щHE1ۃ}t}?uh wE0ɍ׈щMEDE9#thVH ÃthV1 ÃtCh(@Vj'Z ~ Jh(@VjZ d th(@h(@$Y 8@(@<@;8@;;C< t< t;;;;t/< t(< t$ <shSB ÃtCu ;e[^UWVS}j|7ƅt=U 9VuW6t&^;t֐W3t ;u뻐Ce[^_UWVS} uj Åt9suWuC0FH u؍e[^_gethostby*.gethostanswer: asked for "%s", got "%s"USt u u  ]gethostby*.gethostanswer: asked for "%s %s %s", got type "%s"size (%d) too big Too many addresses (%d) Impossible condition (type=%d) ULWVSDžE@MM } t% }tl}bDž$ Dž,Ef@ȉEf@DžpADž u f h hpAVu覺Ãщƒt}t}uR0ҋʉӁ@؉)MDž@@@@Dž@@@@@@@DžDžp"9VuyÃщƒV蹾V譾%}uuV觾pVz؃}t }lAhVu豸Ã2Љƒދ0Ӂډ)؉09R@؉} hVu賷Ã|8t&ދ09|~ى)9}t7W襥Pu蜥Pj襥Puhj% ރC} t"} }tuVu艶Ã赺tnރu@/lAsZ0Ӂ~ 1ډ)5@t$5@hj%` ރ9@u(@0ʉ)P)‰=parSh+~@r$uj#h>MSRV)ރ WhW u~9v ,t"~}uh@@=@uK0}9|f^u@؉) tPPh@WO @ 1[^_UEtu@@@@Puu ures_search failed (%d) UWVS]u uu tt(  /5@@j.SuSIƒt=w 1ڀ;{.hpaSV`N  hShpAqEDžqEDž@pA@@@@@paD@@@@   PPh@FM=w 1u:.uB:uӀz.=w 1tj:SJu ;:ڀ;{.hpaSV0M hShpAUqEDžqEDž@pA@@@@@paD@@@@ @=w 1u <:t<.uB:uҀz.4hVWjS#D|$WSPV&   Ph1[^_%u.%u.%u.%u.in-addr.arpa%x.%x.ip6.intres_query failed (%d) UWVS}u }uC} u=j hWE; tj hW1; uE EE }t }t   /9E t  1A}t }t0rPGPGPGPhPO;%PЃPh VƃKy١FߺhWj jV@Ã}Sh 1j VSWÃu1jMKM K Qhpau@@paD@ }u& thpahpaICC  ؍[^_UXWVSE}}1ۋ} 9}}^1Ɋ,9s'}E1ҋE#490tA9rfL]}u~ D]9}]CE9] }t\} 9}}T}}MIx;}4}OfDMff9~ fTMf}DTIyE} 9}|e[^_Uu 't}t U%BrUVSu]F9~Å~Su 6)^1e[^UEPu uVsyslog: unknown facility/priority: %x<%d>%.15s %s[%d]: %m /dev/console U@ WVSu} tVhj#q @  u 5< Džjjh`jP8SIVhfSPhf 4 t:+=8 u 8 t58 hf 4 tPhjf =8 thNfhW`5Džjjh`jP6ÃuE<%u muGS!P SP~;GuSjl;Sƅ uWi|+4 tG)‰Љ)‰DžDžjPj  =auj4 P58  jWV50 jWV50 }b4 tYjjhAà |Bj>V@))ljDžDžjPSDS^[^_U0 tP=0 a/var/run/log/dev/logUVS=0 u)jjj0 jjP ' =0 =aEEjhu]SjV50 ӷ%auGjhSjV50 衷%au50 ?0 e[^UUM Et8 4 t u< 4 taU50 ָ0 aUU@ t@ $Id: yplib.c,v 1.24.2.3 1997/04/10 20:29:35 wpaul Exp $UWVSu}EP@E(ctE9C|uu%j~jStb (ct(cCt PC t PCC u*Ct~WC {ujC\US{ssu 腻ss uwCtVPtsgV-CUX Se[^_UWVS} u=(cuhC UCUQEPC(ct89su+us`uVWs0 uC9E~u1e[^_SuccessInternal ypbind errorDomain not boundSystem resource allocation failureUnknown ypbind error: #%d UEtt-tt ÐÐÐ'ÐPhJha(a/var/yp/binding%s/%s.%dclnttcp_createYP: server for domain %s not responding, retrying clntudp_createfcntl: F_SETFDUlWVSDžDžDžj/ul蜵\ t99t55t!~`t VVރu=\ } t } Ut0u )5tVRu t6uu+jljlV^F\FhDž{RRv\C tu fVdf9tJ~\W-DÃN`t QQR҃FhF`SCS ~hN`tQQRF`F\juhhSjS:ÃujjS8C= #DžDž jRSB 9t SjVHR5]FIFHVLffVJfVXSòS趲VhBN`tQQRF`F\jS\ƅDžjjRjhSÃu4XX O=`=Bh'0ffv SSRT T DžKRh/}Wh*jS҃ tISSRFh uhh B[`t/SSRFhT T R<>*SSRjVHRD[FIffNJVLfNX FhuVR~` T T DžF\V\RjhVHR!F`uhQ&Fhljjv\p u h)*DžjS_ZSv\4@ƅRSv\? uffVd)V`JRQ҃tV 't5} t} 71[^_UWVSuE~`t[EPEPv\? t}u fFdf9Et'^\SF?NjF`PPBSW?W F`PPBF`F\Fhe[^_Uju_UWVS}1t?CPW*u#S-tS ދuče[^_yp_match: clnt_callU,WVSu]}tD0}t2}~,} t&} t}t}u ouh(b_uHURURuuu t+UBR ]6Pu蛱  1URut T ]E]]] ]]]]]j ]SWUJ`AuuSh,URh+jQ҉ǃ(t#h8Ur`u _u ǃuMUBR+]6Pu軰  uh(b*u63uuu 1URh,e[^_US]=(buhh(b:t (b1]yp_first: clnt_callU,WVS}t(0}t} t} u B]]]]URu<t T ]E]]] ]j]]SUUJ`AuuSh -URh8,jQ҉ǃ(t hqUr`u hu ǃucU]BR\]]3Pu] ] U]BR,]]3Pu蹮] ] uh -e[^_yp_next: clnt_callU4WVS}tD0}t2}~,} t&} t}t}u N] ]]$]URut  T ]E]]܋] ]]]]]j]]STU؋J`AuuSh -URh+jQ҉ǃ(t hUr`4u \u(ǃucU]BR蔻]]3Pu!] ] U]$BRd] ]$3Pu] ]$ uh -?e[^_clnttcp_create failed U0WVS}t(0}t} t} u 9URut T ]EEMQHUQLUQPUQTUfEjjURjhURhǃuh ]]] ]]SOuuЍ]܉]ShURh8,jW҃ t,hUr`PWWRuWWRҋ}uh跥 u1 We[^_yp_order: clnt_callU WVS}t(0}t} t} u URu\t T ]E]]] ]j}WPUJ`AuuWh-URh8,j Q҃( uMt hvUr`u `uuU]Wh-E{Ee[^_yp_master: clnt_callU WVS}t(0}t} t} u URu0t T ]E]]] ]j]]SOUJ`AuuShX-URh8,j Q҉ǃ(t hUr`u huǃuuө]uhX-Ne[^_yp_maplist: clnt_callUWVS}t0u URut z5T uEj]SNUR`JuuSh.uVh*j R҃(thUr`u uuUu e[^_Request arguments badRPC failureCan't bind to server which serves this domainNo such map in server's domainNo such key in mapYP server errorLocal resource allocation failureNo more records in map databaseCan't communicate with portmapperCan't communicate with ypbindCan't communicate with ypservLocal domain name not setServer data base is badYP server version mismatch - server can't supply service.Access violationDatabase is busyYP unknown error %d UE$ (08@HPX`ÐÐÐÐÐÐ.Ð>Ð`ÐÐÐÐÐÐÐJÐ[ÐPhlhahaUEtmwtFw t8t/ytkt^lt?w tHt;Yt#tL1ø ÐÐÐÐÐÐ ÐÐÐUS]=(buEPut(bh(but1h(bn]$Id: xdryp.c,v 1.6 1996/06/03 13:16:53 jraynard Exp $UU hBPRuhtÐ1UWVSj]SJ]䐐uu3uuh-U 1}uuh-ѝU ]tE@P蒱uWu$E8E@PsuSuE uh-Z5uSuWjЉƋU  WӱSͱ *uh-U uh-U e[^_clntudp_create: out of memory U@WVSu}$1j 蜰Et*U U W׃M T9dRqÃu0h0h HX  `wT;`SXjURf~u"juu V*f>†fVMAp YSVS VSV SCUSUS C$C(M KT{\軝3U3ỦUEEM M܋MMju sXs8V}<URV[?SP轙`P`I TT?B~PTT?B䋽D9PD9PuH9T{`A,m ODžddRURj`q\``S1O}0 t#`W0G,`QX9Q`jPShS#8uVS:`,RV <`,uKMz ]SRW҃u`A,A0}tQ\SW9,c,c%s: ; errno = %s; low version = %lu, high version = %lu; why = %s(unknown authentication error - %d); s1 = %lu, s2 = %lu UWVS]Kƅu 1SEPSRUu h VN0ۉ׈щMDEuRuU׈щMЍDE U7$ W W W < < W d  W  W W W W W W W W u踒Rh u茱0ɋU׈uuh ui0ɋU׈uh uA0ɋU׈щMЍDE t Sh P uh u 0ɋU׈щMЍDESuuh uɰ0ɋU׈uuh< u詰U׈щMЍDEhQ u|e[^_%s Uu uPhn h 7RPC: Failed (unspecified error)RPC: Program not registeredRPC: Port mapper failureRPC: Unknown protocolRPC: Unknown hostRPC: Remote system errorRPC: Server can't decode argumentsRPC: Procedure unavailableRPC: Program/version mismatchRPC: Program unavailableRPC: Authentication errorRPC: Incompatible versions of RPCRPC: Timed outRPC: Unable to receiveRPC: Unable to sendRPC: Can't decode resultRPC: Can't encode argumentsRPC: SuccessRPC: (unknown error code)US]1ҹ 19 uDBvW]UuPhn h 4 - Error %dUWSÅu1uh S5XoPS,X t'uzhS5\@PSXhS`~9p~P藎PS'5`h0ЍDPK hQ S؍e[_UuPhn h 3Failed (unspecified error)Invalid server verifierClient credential too weakServer rejected verifierInvalid client verifierServer rejected credentialInvalid client credentialAuthentication OKUS]1ҹ@ 19@ uD Bv1]U WVSu t~t. .ujjVEE f~uJEEPEPjju"ÃEjEPjjuÃ|mjVuà f~uT= tjEPjju}4= ,E9t%EEPVu}= 1؍e[^_UVS0cuj@j1Ãu10c{<uq C C CC CCCCC ujjC(PV&SV4(C PV*( EV@ЉC)~vultGu] ډQRuv]Ӄu uN0t@9tQw]C0uVFf 1e[^_USUM AXYHy 9A t QR譢];; res_query(%s, %d, %d) ;; res_query: mkquery failed ;; res_query: send error ;; rcode = %d, ancount=%d UWVS]ufu!u MtSu uhVhWjjjSu ujcÃ$"t h uuSW'Ã}"t h߼ VufFftfF%PЃPh蔼FwQ$Pxh    ؍[^_UWVS}UUEEEuku   1ۉ?t8.uC@8u19vx.uFu'Wtuuuu PPE,9r+uuuu jW` UEu=|1۾ = tzuuuu 6W= = tt$!uEUB$<uECuC>tt}uuuuu jW{<}t U &}t }t  e[^_;; res_querydomain(%s, %s, %d, %d) %s.%sUWVSu] u!<u t uu؅uPVhruK0ЍXYX|!<3.uSVP蕵Ƅ+ ZR0҉ЍD=~ /SVhPuuuu[^_HOSTALIASESrUWVS  9m  9Yh$5tDh0P[ǃ,jWEWhS輸 ހ=vPr D5uF>ù>uS~uF=vPmr D5uӀ>tf^~t4=vP2r D5uC;u4ghVh4cwW4c W1[^_;; res_mkquery(%d, %s, %d, %d) U`WVS}$u(u ;u tuuu uh yt΃ ~j W"}fffUG$ЈG$ЈGg_ }Em} }tU}JAuMMQVSu g")SEP{kSMMQjkMfA}}uuVSufSj kSukSjkSjjMfA nE 9nG _ SEPj_SEPj_Sjj_SEPj_ }tuSuz]fG)e[^_US] jEPu\z CHyCCjSEP9z]UWVSEu }xucx u]@@ X;tGȃ)B9} 'щ)63];ue[^_UEM UttRQ-ÐRQÐ /0123456789U WVS1EuEZSh1$uEt/‹E-1$=wNu%E}?.u3t/}t)F1MAMu}~EM 1e[^_0123456789abcdef0123456789ABCDEFU(WVS}jj]SumE ?:u G?:[}VE$h$U胱U؅uVE$h$UdU؅t+E Em:u?}}u}]OC9ECЈCE1(.s9uSu>"7G,}tC9Esl CЈC}t.+u9]K)M  KG9~]9]u"EM EAEAEA 1e[^_US]jEP} tEE]U8WVS]uEEEEURVj } ]Uu}t69u U9U9~N)MUMVN EEE(EEURURjh 8gjVjN=8guߐS=8gtjURjWjURj 1e[^_U8gU E EEEjjEPujEP t1ÐUSE ]tpSPuputs]UEPURjquEÐUEPURjquEÐUUR,sirsxrsvrs rsr_sZr?s)rshrrSrrrr/rrrr+rUu uot Ð1Uu uot Ð1Uj@u uqtÐ1Uj@u uhqtÐ1Uj@u uHqtÐ1UE hPPuotÐ1UE hPPuotÐ1UVSu] SV>t7CPVMt&CPVltC PVKt1e[^UVSu] SVt'CPVtCPV t1e[^UVSu] SVtCPVt 1e[^UVSu] SV t7CPVkt&CPVktCPVkt1e[^UVSu] SVtCPVut 1e[^UVSu] SVt'CPV9tC PVt1e[^UVSu] SV6tCPVt 1e[^UVSu] SVtCPVjt 1e[^UVSu] SVlttuCPVu1e[^UVSu] SV"jtCPVt 1e[^UVSu] SVthP.jCPV~t 1e[^UVSu] SVthP.jCPV:t 1e[^Uu ukt Ð1UVSu] SV>itCPVt 1e[^Uu u2kt Ð1UVSu] jSVk tjCPV kt 1e[^UVSu] SVt)tuCPVh CPVu1e[^UVSu] SVt'CPVItC PV,ht1e[^Uu u2jt Ð1Uu ujt Ð1UVSu] SVtAt w t 1t'CPV:CPVz CPVu1e[^UVSu] SVbtAt w t 1t'CPVCPV CPVZu1e[^xdr_reference: out of memory UWVS}uU uEt u9VVfzËU uhP1h 1/VS=jSWU҉ƃ ?uSzU e[^_UVSu] ;ƒUEPVgu1&}tuuSV1e[^xdrrec_create: out of memory UWVSu }jDqyÃt*VJƉsuNSV{\t@CPVF^t/CPVY\tC PVH\t CPV7\1e[^UUE wR$<<<<<<< @PUUE tuÐ@PUVSu] Ft t!+Fu ]SP!Sv FCtwt ( t!FCFFC FCF Ce[^U=u ]res_send: %s: %s US tu^Pu h>u ]UE< UE@ UWVSE8}HMPU@ E11ۡ9}?}Mǹ1Ґ9Eut9EuF C9|ىe[^_UWVSu UfBOhVuuG} TV$M؃VM%9] u$9Euue^u  O1[^_UWVSu UfBUfB%9t 1|uO~jhVu uF|VZL؃VNL%uuPStO[^_;; res_send() ;; Querying server (# %d) address = %s socket(vc)connect/vcwrite failedread failed;; response truncated read(vc);; old answer (unexpected): socket(dg)connect(dg)sendsendtoselect;; timeout recvfrom;; old answer: ;; not our server: ;; wrong query name: server rejected query: ;; truncated answer ;; got answer: U\WVSM}u| u )t"h;Ah h u uDžu } ~ DžDžDžDž<DžDž9  Džw EW=< tW11ېEPuuE P}WEP< Ѓ $CDJDLMC) tt&Ep:NP@PhJAh v Dž=0 |=8 ! jjj2S0  juPMS }>= Ep pp0Wh}Ah 8 ]SE PH]EEEE EjEP50 i‹E 9t.= WhAh ufEEPV50 Sà ~fEf)fEuׅO= WhAh / 63&DžuTG%E9E}0thAh DžfMfMfEuf}t+EPV50 Sà ~fEf)fEuׅ= WhAtUIfEf+E8fEf=wSP50 Rà ~fEf)fEfu‹ff9u ) PhAh h UE9Pu=0 | =8 t3=8 t,jjj=P0 4 =t=4 uAju50 'P } Ep pp05 hA4 ju u50 v9E 5 hAh =4 tEƅDžfDžjP50 yO4   juju u50 ڊ9E t>Ep pp05 hAh ~ = DžDž0  vSbƃu SV=0  PjjVAQOÍ9t Vb} aPhB}u0thBh Dž DžPjuu50 ME"5 hBh 4 Džff9tu ) hB}u/uu ) Xh-BDugEEPuUE PRzuGu ) hABh ~h UE9Pu G$<t<wTt,hWBh /h UE9Pu5 =(; u6Gt*thoBh Džu(%!=!uhBh u ) t,hBh gh UE9Pum ttu u =@ tV11ۍEPuuu uu@ Ѓ$LLJLLMC)tE9 x9=PouJu  =A <45 hrAh 5 hA搐 [^_U0 |$P L0 4 8 rjeechodiscardsystatdaytimenetstatqotdchargenftp-dataftptelnetsmtptimerlpnamewhoisdomainaptsapfsbootpsbootpctftpfingerlinksupdupnewaccthostnamesiso-tsapx400x400-sndcsnet-nspop-2sunrpcauthsftpuucp-pathnntperpcntpstatsrvprofileNeWSsnmpsnmp-trapprint-srv%dUUB=$OQSQSQSQSQSQSQSQQQSRSRSSSSSSSSSSSRSRSS R(RSSSSSSSSS0RSSS8RS@RSSSSSSSHRPRXRSSSSSSSQS`RSSSSSSShRSSSSSSSpRSSSSxRRRRRRSSSRSRSRSRSRSRSRSRSSSSSSSSSRSSRSSSSSSSRSSSSSSSSSSSSSSSSSSSSSSSSSSMÐMÐMÐMÐMÐMÐMÐMÐNÐNÐNÐNÐNÐ#NÐ'NÐ,NÐ2NÐ9NÐ>NÐCNÐJNÐQNÐVNÐ]NÐbNÐiNÐqNÐ{NÐNÐNÐNÐNÐNÐNÐNÐNÐNÐNÐNÐNÐNÐNÐNÐNÐNÐRhNh@gi@gicmpigmpggpsttcpuclegpigpnvp-IIpupchaosudpUUB$SSSS(TSSSST(TTT(T(T(TT T/SÐ4SÐ9SÐ=SÐ@SÐDSÐHSÐLSÐPSÐWSÐ[SÐaSÐRhNhTghTgUWVS]}(#MMfEt tt u W,NxR=(t}tWuS #PS5\S8%\ +E9E |/Ny(t }t)t$GHOHx 1 Wj >HEADER<<- opcode: %s, status: %s, id: %d; flags: qr aa tc rd ra UNUSED-BIT-ON ad cd; Ques: %d, Ans: %d, Auth: %d, Addit: %d;; QUESTIONS: ;; , type = %s, class = %s ;; ANSWERS: ;; AUTHORITY RECORDS: ;; ADDITIONAL RECORDS: ;; ...truncated ;; ...malformed U WVSuukh}UӃ U (tu UBt_f%PB4 B4 hUVSFPVHx  Vj d(tt&FPVHy9F ; Vj;d(t hUVz}hUVBthUVBthUVBthUVtz}hUVZB@thVV@B thVV&BthVV (t fB%PhVV fB%Ph"VV fB%Ph,VV fB %Ph7VVz (t t FPVHx   Vj bfBH(tthCVVO&(tthRVV9(ttVu uSÃ)hPSEE Pu-YÅO9;(tt S3%PPhVVVa9(tt S2%PPhbVV%(tt!FPVHx   Vj aO9hpVVj BPSu uOÃtn9r^h}VVj@BPSu uÃt>9r.hVVhB PSu uÃt hVhVV=[^_Uu hu=UWVSU ]hVuEPR,ǃ}1>u'CHKHy9C .Sj.P` SVbE[^_Uuhu uf.UWVS]uSuEEPu +ƅ|#0ЍPt|.t9E1f4\fEe[^_UVShVhu uuÃtuVa1[^ %lu %s %s ; proto %d, port %d " "\"?" ;; *** Warning *** OS-type missing ( %lu ; serial %lu ; refresh (%s) %lu ; retry (%s) %lu ; expire (%s) %lu ) ; minimum (%s) %d %u %u "%.*s" %u %u %u %u %s %s ( 0x%04x %u %u ( ) ; BAD BASE64 %d ; LABELS WRONG (%d should be %d) ( %s %u ?%d?;; packet size error (found %d, dlen was %d) U WVS}u`u 1nhShu WǃtuS_W.%(Wn.؃W~.WS.%$ (tth\u{ (ttS)Ph\uW(Ph\u;(He$_(aannadaaanjaaiHefiHeeaHephnlk|enhhnnnlinhnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnuj +$uh ]\Gޅ9Ph ]tt0UBHJHy9BU\uj\YGMAPQHy 9A tM ؈UuSYNkMAPQHy9AM"uj"nY9Guh ][ރ9Ph ]st0UBHJHy9BU\uj\XGMAPQHy 9A tM ؈UuSXNkMAPQH9Auj"(  uh]Zh]u UBHJHy9B U  uj "Xuu W_ǃ JMAPQHy9AM uj Wuu Wǃ uh8]YW(ÃSh<]uW(ÃSKPShM]u0W(ÃS(PShd]uWk(ÃSPShy]u0WH(ÃSPSh]urv W(%Ph]uOuu W,ǃW'%Ph]uuu WǃUBHJHy 9BGU E$uh ]XGޅ9Ph ]pt0UBHJHy9BU\uj\UGMAPQHy 9A tM ؈UuSUNkMAPQHy9AM"uj"UBHJHy9B U  uj VU $9UBHJHy9B U" uj"UGޅ9Ph ]bot0MAPQHy9AM\uj\TGUBHJHy 9B tU؈MuSkTNkUBHJHy9BU"uj"2T9MAPQHy9AM uj S9NjW$&Ph\u$$"j.,PWj3'Ph\u$,PWOPh\u$WR$؃WF$%PSh]uGWSh]u|G(WSh]udGWSh]uO߃ W#W#؃W#%PSVh]u vUBHJHy9B U  uj ~Ruu Wǃ MAPQHy9AM uj 6Ruu Wsǃ YUBHJHy9B U  uj QuWT$<$/W"Ph]u$j\PW2PP\|'Ph]uG1Dž 7G}muuh]hSDžuSPISUBHJHy9BU uj PCu $9mMAPQHy9AM)uj)PUBHJHy9B U  uj RPWI!%Ph]uPGh]uPGh]uo(h`P $)PWo&19?uh]u'.`MAPQHy 9A tUȈUuWOF9|Wn %(Pj PhBUuPGh]uG P?ƃ9tVSh^uoW" Ã9tSh]uK WPYPh'^u+WP<PhBUu(W%Ph.^uuu Wh`P $)PW$1,9}c?uh]u.`MAPQHy 9A tUȈUuWMF9|h]uB}h]u.u $(h3^u$ MAPQHx   uj rM+ 9$t$Ph9^u1[^_pojogo`o\oANYHESIODHSCHAOSINKuCu@u4u1uuuttttttttt tt tt tkt gtSt Mts9s,s(sssrrr rr!rr"rwrrrXrSrEr?rrrqdqqeqqfqq#qq\oq"any"URN Naming AuthorityNAPTRgroup ID (nonstandard)GIDuser ID (nonstandard)UIDuser information (nonstandard)UINFOmail agent (deprecated)MAILAmailbox-related data (deprecated)MAILBzone transferAXFRincremental zone transferIXFRATM address (unimplemented)ATMAserver selectionSRVNIMROD locator (unimplemented)NIMLOCendpoint identifier (unimplemented)EIDnext valid name (unimplemented)NXTlocationLOCIPv6 addressAAAAgeographical position (withdrawn)GPOSmapping informationPXkeyKEYsignatureSIGNSAP_PTRnsap addressNSAProuterRTISDN addressISDNX25 addressX25DCE or AFS serverAFSDBresponsible personRPtextTXTmail exchangerMXmailbox informationMINFOhost informationHINFOdomain name pointerPTRwell-known service (deprecated)WKSnullNULLmail renameMRmail group memberMGmailboxMBstart of authoritySOAcanonical nameCNAMEmail forwarder (deprecated)MFmail destination (deprecated)MDname serverNSaddressAUWVSu}~t1^3u N)ut  ;uՅte[^_USUM ]zt$B9 ut, 8uQhNhhgFthg]USUM ]zt$B9 ut@+ 8uQhNh|gFt|g]Ujuhto6Ujuho"initdebugaaonly(unimpl)usevcprimry(unimpl)igntcrecursdefnamstyopndnsrchinsecure1insecure2?0x%lx?UE w'tnwtWtZt_tb=tuw@t^=t_=tiw =tXn=t]cvÐvÐvÐvÐvÐvÐvÐvÐvÐvÐvÐvÐPhvhgEg0 secss%d day%s%d hour%s%d min%s%d sec%sUWVSEu(wgfwfgwg<1U1U1׉ƻgt9wuwPVhwhgKDg=gtC;ut0t CwuwPWhwS DC;u}t6ut Cw}uwPuhxSCC;u}uu;u7}u1u u}t Cw}uwPuh xS}Cge[^_%ld.%.2ldUSE% f1fȊEff1f% P Ȼd1RPhpyhg Cg]UVSu11ۋ=w 1tu XAB̀:.ugB=w 1tIu XAB=w 1tu XABAu1Ɉȉ%e[^UWVS11EEM=w 1tD4Cΐ=vP D5tC=w 1=w 1tD<Cΐ=vP D5tC=w 16=w 1tMɍDЉECɐ;.C=w 1trEC=w 1t>ЍUC=w 1tMLЉMC=vP D5tҐ=vP D5tCЊ20$4}~\~\~\~\~\~\~\~\~~\~\~\~\~,~\~\~\~,~\~\~\~\~\~\~\~\~\~\~\~\~\~~\~\~\~\~\~\~\~\~~\~\~\~\~,~\~\~\~,~v@MU42+Uv@M)12$x~P\\\\\\\\D\\\\D\\\P\\\\\\\\\\\\\P\\\\\\\\D\\\\D\\\PM M  M C=vP8 D5tԐ=vP  D5tCЋMe[^_U4WVSU1EEEEEEEU0Ѝ|EP]SEEPSuẼUMMЉЃu5uu]]M̉M%}u}u]]M̉M 1.E8-u E@EE8+u@EE=w 1tDЋU4EɐE8.uqX]@=w 1tKEЍ‰UEE=w 1tEMLЉME]EE=vP# D5uE9s@EE=vP D5tE9M@E뾐9}<EPEԃE=vP D5uE9s@EE=vPG D5tE9@E뾐9}EP6E܃E=vP D5uE9s@EE=vP D5tE9s@E9}s EPE؋M ]ԈY]܈Y]؈YEAEAEA]YEAEA EA ]Y A A AYe[^_?; error: unknown LOC RR version%d %.2d %.2d.%.3d %c %d %.2d %.2d.%.3d %c %d.%.2dm %sm %sm %smUHWVS];thǃu 8CESU܊CE؊S{ C ‰US UсCS  {  EC EƁS {  C [ ׉}w)E]ÀigE}ESENȿU<UUE} EWEEUЉƿ<ỦƙUȉƉؿdUĉMMEPQEԃu x UEPPEu =x }EPPÃux SuuuuEPuuuVURuuuuhu 6D}9=x t W}&E9x t Pi&9x tSX&E e[^_UWS]0ЍH119} <.u@B9|;*utH~| .t@e[_%04d%02d%02d%02d%02d%02dUEEEP*BlB@B2rrr Prhhg5gZONEREFZONEINITUPDATEMAUPDATEMUPDATEDAUPDATEDUPDATEA8765NOTIFYCQUERYUCQUERYMIQUERYQUERYNOCHANGE14131211109REFUSEDNOTIMPNXDOMAINSERVFAILFORMERRNOERRORUWVSEEEE]=~؉E}%t=tt}|:}9]t 9].C9Evv}|:}JxsF.t\u D9EvO\CȈC9u vAJyF}} +E@EЃ? Ћu9uw9u vEE +E9E| !F,}}+uuEe[^_UWVSEu} =~E EEE}t8UUEt/MM9t EU:uMMOEF}t`uuuFPE|"_9] {E}tE9EsU:U}G\uFt9}v5؈GFt .uF+EPUu9>v}t/M$UM,9}w}t U G+E e[^_UVSu] 9s+@t сt t@9r9w)e[^US]ÀuMvS D5t#v Sm? 4؋]UWVSMMuM M{%t=tTKx2<.tj<\uFPFCPGU4U9uBKyFu?t).t+؃? Ћ} Gu>u E+E EM9MPe[^_US].CtY C.tH.t .tuBv2Bv*BЃ v"1+BvBv BЃ v-uމЉʅu]UE8*u!P.u PlÐuÐPVUSM1ۊu @%B߃]w$t1.t\uAuك.t1Q]UU ߃]v1BuUEff@f UMA A A UM fUfQUMU BBJUUBЃ w ÐUWVSu19} . +/€t1vRV  D5t%É=v P  4=w  1tP!EFtÉ=v P 4=w  1.PŠEЋM AM GFe[^_UWVS}u UtU gEg~19}J%B 07FB 07u C9}.BC9|Ee[^_USE] MUttRQS0RQS /1]%u.%u.%u.%uUWVSU} ]BPBPBPPh%uVy,9wVWE 1e[^_%xU\WVSj jURn 1 M M+MM+MM DG~E1|uu "Ft}t9u}]uG~Ãt}t9u}]u}t }E]1}t9}UU9} 9}uv:Cpt:CuO}uI}t}u=}u4)ڃRSU Rs tv0ҍ\ thS*à Gf}tUUu:CCEЉ)9UrPu \CE  1e[^_%d.%d.%d.%dUE PE PE PEPhPjhjtjABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=UWVS}1} UGMMGMMGE ÀE ÊMEȈE% ÊE? À?v?vM?vM}?vF9E@ÊMFŠFE슀FM􊁐MF} } EEE19U vD*GB9U wE$U% ÀE À?v?vM?vF9ErXÊMFŠF} u =E슀MFM=F9uvMe[^_U WVSMEEA} vSMwM D5==IShMbAÃMP}tX}t$}}} tU9U غ(E} t/E@9E-غ(uU D2GEEv} t/E@9E-غ(uU D2GEE2} tu9us\غ(GEE A=A}t\~}}vSMM D5tAuŃ=u9vSM{M D5{Au} tu U<2t\}PEe[^_UEOar/rbrUUEu EPUUu uUu uBUUM u BQR@Ðu BQRÃt1ÐUUM u BQRÐu BQR@Ãt1ÐUSM] t$r t3;]AURQ@%AURQЅtEf1]USM] t$r t3;]AURQ@%AURQЅtEf1]US] UEPut E1]US] UEPu`t E1]UVSM] t+r tBJ;ƃuQEPQB-AURQЅt}ƃ31e[^Uu uUWVSuM UtyӃt )߉u*FRQV@Ѓ tItLFShkV@@u(FRQV@ Ѓ ttFSh V@ t1e[^_xdr_bytes: out of memory UWVS}uU VWty69us?umt r@tG]uSu(VzËU uhh 'VSWtSU 뫐1e[^_UE hPPuDUWVSu} ]WVft{t9t{u}u1juVCjuVUҍe[^_xdr_string: out of memory UWVSuM t u0HEEPVtwE9EroPt r>tF\tOu(RËM uh[h 試/EuSVgSM 1e[^_Uju u$u1ø$Id: bcopy.S,v 1.3 1995/12/27 18:47:44 davidg Exp $VWt$ |$L$)9rL$_^ONL$_^0123456789U(WVSu95pv [M؅}ؐ 1ÊA؅u}-AI E9vÐIB9w e[^_UWVSu0Se ǃt SVW1e[^_UWVS]} =vP+ƃ 4G=v P+ 49u Cu1Mv Rg+à 4G=v PA+ 4)É؍e[^_UWVS}]u =vP*ǃ 4F=v P* 49tT=vP*à 4F=v P* 4)ÉCt ML1e[^_GMTUS]1;}1ɐ A~]US` U d U 19 (k~'1ҋprtrl` A9 (k19 $k~-plrP@l` A9 $kԋ]/etc/localtime/usr/share/zoneinfo/U#WVS]u ;:uC;/%(0(҉ЍD=^h(V3h<V`5SVY5j.S4 t Dž󃽐tjS1jS~ÃEPSfEf%f=hPSSKVVVU VM AVU BVtM A 92YC=yrt29t 9t )‰Љ)ËM ItM AЉxtU J t t9[19~VM DG9y1U 9z~"M F%9AG9y1U 9z~_DžtL] tV-CFCFM 9A tGU 9z1M 9y ~U LFG9z M ƄL199~>DžL] VVCGU 9:1M 9y~KDžtL] ttC FvhC tGU 9z1M 9y~BDžtL] ttCFv CtGU 9z1h[^_mnUM+tAtƒЃ v<wUWVS]} ut=ƒЃ w01ɐɍDҍ 9CƒЃ v9M1e[^_UWVSu hj]SutRURB9:uEAj;jSQXt%E@9:uAjȍe[^_UVSE] 1-uF+u@SPKu1 te[^USU] ]U=ة|/ةh kj2t h kmTZUWSh)yÃu =ة~Shب&0H=%ةtShب%;u? k$klrtrh`hl%;h kSMt&;:tjh kS t h koe[_UWVSE}E k $kt90k~-1҃=prtA (k1B9} 0Pu#19}9DB9|2LWV3EPSW CL` CLƉw(e[^_US]8hjS+]UVSu ]=ܩuܩhShVuVt C(U C(He[^UhjuUhu uyU`WVSu1EHEU }L}E9E}uUH}9W~E}td}~^EHELB93Lu?} 1P@93Pu#E}~ˉJULG93Lt‹EX M7U ȿQщƋE )؉EyNQxFQȿӉEHؿ<ӉEH]NȿӋEX}X|51u!ؿduؿu94mىM}ME)؍<Љ}EUJUMyMMEd)‰U܋EE܋U‰Uԍ{}M}KMЋEdE)ȉE̋E]̉]ȋE))Ƌ]ÔUZrEE9t WE } uf^ FFCFFYˀ9}t}uf^ M N~t tFNىN~ FȲ Ee[^_UW}}0HEEUUEEPu ş}Ujjuuu u/&LOCALDOMAINr/etc/resolv.confdomain searchnameserversortlistoptionsconfRES_OPTIONSenvU(WVSDžDžDžDž=u =u u f=u df5f,$ ,(hÃhSh(Dž( (1҃ =(tT$sA< t;< t< u t1DžC;u <v Ct< uhhhr g<;t<#tjho up< t< ubuC< t< tt< thSh(hh(LÃtDžIjh < t<  C< t< t< hSh(j h(Ãt( (1Ҁ=(t@$s.< t< u  t1C;u; t Ct< uDžHj h$ < t< u}tC< t< t< PSrƂ5fjh/> < t<  ^4C< t< t7< /<;'߄tTPhu><;t8|4=vP D5uC;uPWD0RhftyЈC.=vP D5uCt<;t}PWt4 04 }jh8^ < t< h@PDx~ ,$Ј,=(u:hSu"j.SÃtCPh(u (hEÃt hQS 1[^_;; res_setoptions("%s", "%s")... ndots:;; ndots=%d debug;; res_setoptions("%s", "%s").. ;; debug inet6UWVS}u VShN C< t< tjhpS uYCP€,$Ј, ,,PhwtmjhS7 u0uVWhC  h/(jhS u  ; t Ct < u; e[^_UE|Ð%=tÐUjEP_ ‹E3E1%UEPuu ÐEUWVS]uu =w 11E 0u$C xtXuEE|4=w 1tU|p}ur|n=w  1tRэJ vRMD M D5tAA C S.uE9Eu>uCt-сv R D5t_Eu)Ɖ@wh$Xt(8Pw(E:wEU"v11EU ЋU ǃ} tu e[^_UEU E EE EjjEPujEPt1Ð\D*oXF:$ vWH9!vX9 n>'iM5xdQB.{b@Inappropriate file type or formatFunction not implementedNo locks availableBad procedure for programProgram version wrongRPC prog. not availRPC version wrongRPC struct is badToo many levels of remote in pathStale NFS file handleDisc quota exceededToo many usersToo many processesDirectory not emptyNo route to hostHost is downFile name too longToo many levels of symbolic linksConnection refusedOperation timed outToo many references: can't spliceCan't send after socket shutdownSocket is not connectedSocket is already connectedNo buffer space availableConnection reset by peerSoftware caused connection abortNetwork dropped connection on resetNetwork is unreachableNetwork is downCan't assign requested addressAddress already in useAddress family not supported by protocol familyProtocol family not supportedOperation not supportedSocket type not supportedProtocol not supportedProtocol not availableProtocol wrong type for socketMessage too longDestination address requiredSocket operation on non-socketOperation already in progressOperation now in progressResource temporarily unavailableResult too largeNumerical argument out of domainBroken pipeToo many linksRead-only file systemIllegal seekNo space left on deviceFile too largeText file busyInappropriate ioctl for deviceToo many open filesToo many open files in systemInvalid argumentIs a directoryNot a directoryOperation not supported by deviceCross-device linkFile existsDevice busyBlock device requiredBad addressPermission deniedCannot allocate memoryResource deadlock avoidedNo child processesBad file descriptorExec format errorArgument list too longDevice not configuredInput/output errorInterrupted system callNo such processNo such file or directoryOperation not permittedUndefined error: 0Pr_tr?!rUWVSE} " Btp9u Bu@u1e[^_UVSuUt$] CAuJtAJuJue[^$Id: strncmp.S,v 1.3 1995/01/23 01:29:21 davidg Exp $SD$L$ T$@AJttm8ui@AJtpt^8uZ@AJtatO8uK@AJtRt@8u<@AJtCt18u-@AJt4t"8u@AJt%t8u@AJtt8t )[Ð1[$Id: strcpy.S,v 1.2 1995/01/23 01:29:17 davidg Exp $L$T$QtLBAtBBAt8BAt.BAt$BAtBAtBAuX$Id: strcmp.S,v 1.2 1995/01/23 01:29:14 davidg Exp $D$T$@BtX8 uT@BtL8 uH@Bt@8 u<@Bt48 u0@Bt(8 u$@Bt8 u@Bt8 u @Bt8 t)$Id: strchr.S,v 1.2 1995/01/23 01:29:12 davidg Exp $SD$L$ 8t@u1[$Id: strcat.S,v 1.2 1995/01/23 01:29:09 davidg Exp $W|$T$ W1OtLBAtBBAt8BAt.BAt$BAtBAtBAuX_Uj juAUE Puh ToUVSEPu ƃt(ÅthuuH } fC 1>fCfs [C$ C, C(, C p Et jjjS跼؍e[^UWVSu U)1@))ZSWuM }MMNtkZu$RU(UtM9MuF1KZ:9vSj WUQ Uu)ZSWuUu ])ދUuMEe[^_/usr/bin:/bin:/usr/sbin:/sbin:UVS]u EUM;tuQRPVSR<t #{u%t:v%t0jhPP!t:w u 1S$$ppxc wk, _SG; e[^rUWVS}EGÉEu=vP胷 D5ƃuɀ-u E+uG}t}u!0uUxtXu _E}uE 0uEE}tEE1uUE1EˉM}wE E E}t ӉUvR耶EM L5M}ہvSC D5E}téӉUM9}B}|9ur uE9~ EEuƊGӉU€}}}t "}tރ} t]}t_M e[^_UE@(h@,  1UEU} ut @0ÐtH UMU E}tt tB tUWVS}=u EPu ƃt1jjW(à |ڃtE9t 1D˭tfp Et ufH fx@@$ @, @(, @ p e[^_oyrUS]SCt K]UUfB f f t1RZUS]=4uCfC uuDu  tSuc CCK 3S0t)C@9t R4C0Ct!= u= u  }tauSu>‰ u  t"EPR软u}u }ujj# t'uuV+ƃ  }tEPt  hVĵVtu(>au FHwj hP Ѓ9F@t O VV(Й~džQV ƒF F TDJNRj8P躶 }t EP tRhVU*01҃}t tB4dž$j$Sƒu VXrB0BTB \B BBPBh"t衴V 1e[^_UVS]ts8She[^UEu Ð@u UdWVS]} uEC8CC C CCCC4 hjCDPj@jP t'EPW ;EC P"Ctnt,P"KC =~  QFtC4Ft FtEFt=t=uFCuSu1e[^_UVS]E H{4@}P"ADDDHK C$jP @PSt LVS0S(uC,K@C<Й{@P!9C}CPSG e[^UWVSu14jV{' t= tF0HtHuVt u= 19~8t PC9㋆t PvViu1 = e[^_USE} t 9tX4t%jjSn& uSuǃ01]UWVSu4aFj hP ҉F@SVBjjjW ut/hSW t=t Odž,O51ې8tjj^RQVIuC~1[^_UE@}uuu jPÐ ǀ,UEMPt t ǂ,u ǂ,uu uPRdUE@}v ǀ,Ðtju jP ǀ,U WVSMq MIMM MjjuQu Pu EuAMM#MMIMY ME9MfKfMfv:)9EuuMy׋EuEf}u juaf}uuuuuAE^MMEPufju%PuEX MEMq M9M } wD} r>uuuu} tzr,} t} MaMYMfDKfwjuQuuw_%؋MMKDK)‹MQbuuun u;uuuu.t6$uuuBt"$'Ma Ma1e[^_UWVSE]pt*t%t  dž,$|udž$dž(dž 1 u^$9^(r4jjSVt xf?uCdž(9^(sω$9^(}dž$?x(f|_uA=C=A>CEA?A@EEA@EAAEABEAC1ҐDDEEDDEDEEDFEDGfQfEEQEQB~UWVSu1Lhhxt=tt  Džt|uDž|9 }uE: }uNLECDž|9 DžlDžhLUDžtE: DžxMt h$IÃh$jSCǃEǃ|Eǃj$Ɖsj$jV L9t ^F F F F F F@/ F }tNM  tt uu uC) *E  jj EP輚w}u }jEP I6}b1u  EdgEfEeEdEE`cEbEaE`EE\_E^E]E\EEX[EZEYEXEETWEVEUETEEPSEREQEPE}b1}}=M_x EEexu0Ex=w Džxxv Džxhu  ǃǃ xltxIt!ȍD8lx 9lsllI1D1tffHffHw fǃDj2B  uShd hQBStVE t @U@t }} I   Ot*Kt Qt QSذ18[^_UWVS}jj7Bƃ tjV=  ]S7"BƃtiS7BÃtX}uRCCfCfCC jV艞jV7[DjS7QD1e[^_TMPDIR/tmp%s/bt.XXXXXXUWVShΖuPhhS DžWPjxSB ƃ t S jWjU[^_UEEt t ÐÐ1USEXCtjP3MCC u  ]UWVSEXCtjP3BC }t vEPu S6ƃ u V}uj63B;jPujjVS8ǃ!@tj63hBCe[^_UDWVSEU } uR`ыEEEAEAEAAEEAEAEAEAAEEAEA EA EA A EEA EA EAEAfAfEEAEAfAfEEAEAAA 1f9fDQfEEDQEDQDQEEEBEBEBEEEBEBEBtEEÈEˆBEBEBEEEBEBEBfFf9e[^_UDWVSEU } uRAA 1f9DYEEEBEBEBEEEBEBEBtE؊EۈEڈBEوBE؈BEԊE׈EֈBEՈBEԈBfDQfEҊEӈDQE҈DQfFf9E̊EψEΈAE͈AËAAEȊEˈAEʈAEɈAEȈAAEĊELjAEƈA EňA EĈA A EEÈA EˆA EAEAfAfEEAEAfAfEEAEAe[^_UEUUUPUPUPPUUPUPUPUPPUUPUP UP UP P UUP UP UPUPPUUPUPUPUPPUUPUPUPUPUWVS}wFtjP6;F jWt6;u FtPgF FtPFdždžtPdždžVWS1҅tЍe[^_USEXCtjP3:C } t B Ѓt1.tS)u 3;u ]UVSujj6z8à tUEb1EEEE UjEPSՔjS6':1e[^\r rUXME ~8UfEfEMMHEERuEP?‹EÐUEPu2tUUS]jS1҅tډЋ]UdWVSu} P;tC;u 0K;XtKM9v?;/u/EPVfEf%f=@/K9wǐt8hh V |aӐ= t'oEPVt= %N]t@jS7 UUfUfU}ujjjFPPEPWuN1e[^_UVSu] Ct&jP6Xƒ t-CBjR6C Ct-jP6+ƒ u CBjR6 1e[^{r{r{rU8WVS]fE fEM 9uSEPEPEPQu^SEPEPEPu uƅUfFf)fFfDVF0} }$MAM C}w7Sy >MA}GM C}w7Sjy_Mq1SYy} ?uVM }*uuWQ1,jV}7 {uuu uE,M9tzZ1ۅ*MM؋}}j3M1ƃ HfSfBfUG tFw t}GEM $E}GE܋M܋ $Eȋ}tgAua~ufvUMA$TʋE U}܋E }EPEPMЉEЃ $9EvE!EE WpV^)ڋEȃ9sTu >uuȍEPEPEPu uuȍEPEPEPu u"ƅE8CfUf9s%)PTVRR w fFE}ԋG tbw tFUfFf+EfFfDV%0uuSvMԋC EfVf+UfVfTF0}u }܋MЉ }ԋM܊I CEЅu}܋PE܃ PS(v MA q uA fEft%DF0EPTu3 }؋CUfFf+EfFfDV%0u MԋC}fEft%DF0EPT}GCUfFf+EfFfDV%0MAC m}} ?u7M }uuWQuuu u{tGju؋}7ju7juM1ju}71Nju؋M1juԋ}7juM1ju}7w譺e[^_UWVSEPu{ǃu 1REfGUfGM AGGQ W yu;M U B9u%BfGMfMU:MƃujWU21M FAFfFUfFI N U Bt5jPM1wà u V,1[CjSU2V uuWVu uËMVu r$9u] V܃M U U:؍e[^_UWVS}EPWƃtEPWÃu1eEEFCCFfCfFffCfFU B C F uuSVRWU2Ue[^_UWVSu }UfffFfFF0G t G W.CfFffFfFF0UB t B uUCfFF $ F jVU21e[^_UWVS} UMfffGfGG8CG txMAƋ $EfGf+EfGfGG8C6F PSp Fthv uuUmMQʋ $EfGf+EfGfGG8uRS\pMC hfGG $ G jWM11e[^_U(WVSEUffU}fff}ff}fEfE1ɋU BfEf9ENf}f9}u]EU B t2w ttGtb} DGƋ} DGƋF ÀVUM} DGƻE/U DBƋÀE gf}f9}wEU9f9}t0fAU}fGf)fGfDWSVGPMn Mf]fUf9Ur}t}tEfEf9MEE}fGUB(tG} 9Bu=fBf9Ewf@fBUf9Js}BfM믐U}Gf)OfUf9UwfE}} UU؋}f)fEf9Mf9Mu fEfEU B t.wtut;tNh} DGƋ JU DBƋF /} DGƻ&U DBƋÀ efA}UfBf)fBfDzSVBPMm fEMf9ME}fGfGfUf9UuffGE؍e[^_US]ju 3 tH jP31]UVSu11Ff9sDF0fBf9r؍e[^UWVSE} uXCtjP3C FwX$/ / / / / / / / / / C(tVEPSƃ (VWEPS|ƃ [uREPE0StjPuPWEPS:ƃ(!@tju3ECe[^_UWVSu} UEH$l0 0 1 0 1 1 (1 0 1 (1 :tzu EPWRVjS6ƒ tBt*B uB\jR6 ŐfGojR6^jS6 ƒ ^BtB uDB\jR6 BfHfG1e[^_UWVSu~F(tEPu FPVjv6, }t } tOF(uHf^fCA9YjQ6 tMjS6 tT1eF(tgU fGfBUf^fu>YjQ6 u0jS6z uAfKU fZ1e[^_UWVS]Su uE ;M  l}MOME}9tjPM1 MOM }fWfUMfyuq{}}9tjSM1 js}7 à u!M9jQ7f }SfWMfIQu u; 0U9t jS}7 M}9}yuMI}P9uJËsjSM1 u UG9utuu WuvuMfMUfJ ENfuftfNUMfpDG\8jW1 e[^_UWVS]u }jv3E u1MfEURuS tju3n 1#jV3^ UMSK e[^_UWVS]u }jv3E u1UPfJfUURuS tju3 1"jV3 UMSK e[^_UWVSE u@DB}Ct.FPVEPC PuMs} u }!@tR9Fs,u P7t PR5uF3C P6cMA }GK }Ct7EPuEP PuuP}M} u }!@tfC@M9As6u Pzs PRytu G}KAOs P}7bCMAC}G É1e[^_UVS]EfxuzuB u 1B t@DB@u@DB@tH p uEt2PPEPQSt EEPu Ѝe[^UWVS}O} W9vы}7} 8t%)‰FCIu}G} +Ge[^_UWVS}W} G9v‹}} 8tCAFJu}G} 9Gv@e[^_U WVS} ]ujWEPajGPEP aEEU9s1u PYq PSYrusEMUU>juM1ƃ tċ]9]s]SFPW`jVU2E)؉Et ߋFE1e[^_UWVSE UU1M@EEPuÃu ECCC fCfCuU9vuVuCP_ tGjWM1 U)utMMgjSU21e[^_UVSu] jSEP^_jSEPO_ju6ƒ$u UB tjR6|>쐐BERV;9]vju6Gƒ t)]ѐ1e[^UMU BBjR1UVS]u t+jP3ƒ tB V3e[^U`WVSURu UufUfft 1uh(jÃt[1ɸTT A~u u1QRUԋMRQ+$}u ؍e[^_USEU M] $]mpool_new: page allocation overflow. UVS]u uh/> h 5US:u1XAAAHTQ9RuJH YCA 9u CHKAe[^UWVS} u9w 1u uÃSJuL9uSQSPC9uK9IuYZK9Mu S }WS Q K 9Mu SuSQ}{WS u97u }WZu^KuÃU }1u}juu} Z9E9Uus&Y 9t O} {CSJuLK9IuYZ}{WS u97u }WZu^tss$ҋCe[^_UE HUшH1US]>P9u @ C @ B P 9u @@BQ`k 9uSQk1]UVSu9t%CtSVu[9u1҅tЍe[^UWVSu 99tzCuitSVCHL9uCACBSS9uC FC B S 9uCCB0[9uPiÅt{{1e[^_UWVS} tM qq$҃ ] S1ۉM]juuPW9Eu,9Uu'] sV9uc1e[^_UM AU‹9t 9Ht9u1Y_rUVS] ]SrhƃtSVbe[^UEPu uv$Id: bzero.S,v 1.2 1995/01/23 01:28:52 davidg Exp $WS|$ L$1~ڃ)Ӊك[_US] {tSu:CC C1]UXWVS}fW fUfGfEGEċG,EԍEEEEEuu uVbà |V;HtE@tO @؍[^_UVSUE]M t tStgy w I0svIо 10АI 0uu t+0RP4,4+4z38 P48PƅC9}Ct0t0(+~Q FEUJMB~u- u ^]UJMB~u3uCtCFEB0teƅ@0f8ff@f f@@FEUJMB~uPu0(+~P FEUJMB~u/u ^]UJMB~uu)~Q FEUJMB~u-u ^]UJMB~u3u0u4~}t8e݅D@D9H|0u/G 1G FEUJMB~u1uDK~R FEUJMB~u+u ^]UJMcH1G FEUZ]B~uSuHى~O FEUZ]B~uOu NMUZ]B~uu4DD94VUUZ]B~uJuH+D~R FEUZ]B~u?u NMUZ]B~uu0m4G FE*4FEUZ]B~u8uH44G FEUZ]B~uDu4D+HVUD04@C4ƅA.@FEUZ]B~uWu݅E@t'4DK^UJDUDK~Q FEUJMB~uu ^]4FEUJMB~u\u]NMUZ]B~usu0(+~R FEUJMB~uu ^]UJMB~uud(9~,}tuu/Eu}tURuVuE]C @t Dž,,[^_UWVSEMu fu etEuEEu-EPEPuuR$}mgtGu]tUUʃfu%90uE@t +]}}D@uU 0EE9r؋})ϋ]$;ȍe[^_U4WVSuU E} F-F+^ ~2Iп 0ƒ I09sAC9r 0C0C)[^_UWVS}M ysG tuW5+^M M MMqMfG t]M MMqMtvPuwG,ЉÃ ])ދM A)؉AuM MMqMt_G t9sSu7< )_k9Gs)9v%SuP; Wp-e<_9rSuwG,ЉÃ @Su7; )_])ދM A)؉AUEEu EM MMqMt}u/Vj uƒ tEH)‰U NMEE9s__9Ws%9~!SuR: Wt,um8_9|SuwG,ЉÃ ~LSu7: )_)]uW(,u!E])ދM A)؉A1 O @e[^_UURUMRQU MRQ,EUUjUMRQU MRQ,UWVSUM ]u}ڃىUM UM1}ىكۃىURSQuu3,EUt؃ڍe[^_UWVSUM ]u}ڃىUM UM1}ډڃكډjQRuu+t؃ڍe[^_$Id: isinf.c,v 1.3 1996/07/12 18:54:26 jkh Exp $U1fEf%f=uE u}tU1ҋE %=u }u$Id: memchr.S,v 1.5 1995/01/23 01:28:58 davidg Exp $W|$D$ L$uG_Ð1_USMt "PMMH‹MJZBB Ћ]UUtBBU WVS}WU_EM ME U ȉEu9u|ƅtE9w2G@PËWK w PVQ7 WMߋuUtBWe[^_UWVS]} uE E1Ҹ}~B9ER‰rB  ~% PCj Rƒ F9|C! PCj Rƒ F9uЍe[^_UU1uuuu|@@u ÐUMt't1Ðt 1fuuuuu @u ÉUS]jJX@]U8WVSMu F9A}MuAQU^]ډU9Q}@PMEǃUUM9s9}wM]]u܋UU؋]]9UUtT}uEEEUMуUfNf9}w][]tW}uEEVE]fFfGEЋM]9}wEEU9U&]Ut~%>uK]~ M}~>t]UZEe[^_UWVS} tj4 uE th@uhq@tSuueu tuSS뿐Ee[^_UWVS] MqA@EA9E~ F9EVEǃ}19}MM@9|U}ЉEe t: +u 1ۋM ؋}}9UwމtE}}9Uw}OMyuQEe[^_UVSM] SA)u9q0\ 9t9s9w1e[^U,WVSu} WVƒu!jnE@MA}u}1vU3EUԉP ^]u M_]؉E}1M ы]))ىEEfWfM9Mr]9]s:MMfWf]9rM?tM]KEe[^_UE %~ MEO؉UE.E)ʉѺUEEUWVSEPU@tSǺ )M  5 ) ?E9usF1O ) r9us MEtH] )U ? ؉E9us^1ۋU ) ?]UUEe[^_UWVSjƍNME U%E t UEEt_EPEt$ +EUӉ EFMUEFE]CtVU*EPkEEFFEE tM]5)ˋM,]MM]t‹E)ЋMe[^_UVSu] EPV]EPS]U+UF+CЅ~ E )EEue[^@?5?55?5?UWVSEEEEEMM]+tt&-uEEM9uE]]B MЁvR#  T5tE두];0u'EC];0u EM90t]; MM1EE1Ft9HMʋtTЉUttGE]t/}ȃt.EM tuH0uEE]t0t鋕tσMM]]EtEttmMMĸ9})G]Ӊ] @9E؉GMtU tEE]tڃЃ jEtet tE'u}u }+]]EC] t+t-uEE]ttЃ t0uEM t0t싕tσtЉ]EEM t/~5t9)]ڋtTЉUE]t/΋U)ƒ }N~ ENMMԃ}t]E ]]u"} }MM])]ԋMԉt}u}ȉ}̃~EM1SQ,$U} ~] 1SQ,$]؃}}~Q}E] , ]j)P9UE)EE , UM , ]7}|UE4, ]+Utttt E , ]tt4~# "p t UMt1҃t~(tt E ]Bѽtt؁EE ]Uց|r|vEEPUtttt E4, ]tt1҃t~*tt E ]BѽttEU UD@ujU UD@u;EE ">UMRQcE]EEuWuuE]stEK RSPn& URURURURNEjE}|Džt1}ԉ}uމtE1U|)׉u؋]xUD=} ځ3 6)щ׉9~9E}E؅~)))E؃t~,tuEuuGu]~VuE}~uuE~Wu`E}~uuIEuu|Nj_ tG uW }>8}.E!jWuW\tt7Eu\}uVUEEu/}u)UсMEExtUUMRQmUE@>uWn uatteUu Et؃u } n :Eu (n (n (n tuEÁ]UMUMEUMRQ}}mE]Em|v*؁}u }EEPEs}@wDÈ@s4(n }M Mm$ZmR$tuUMRQ}} mE]mEƁ9uug}U UmUmetu }ut&0n EtS8n EtC@n Et/u&uuW1uuuuW} t]M E}th[^_U$WVSE @E]9C} 1E EM]]؉E}]@E1uEEE]]E]É]E։]U)ЋU‰]u)ىEfOf]9]vE8u2}E9v8uME9}v];tE]Cu uLEEE}E E]]‹]É]։EU)ӋUډEu)]fOfE9Ev}]];u.]9v;uME9}vE8t]EXEe[^_InfinityNaN0?aCoc?`(?yPD?$@@@?UWVS]t'BrR1} }e  U uQM'E-| }uE uE$| } tu~tUM E ED@u'؋u} t M 2| 1| q URUR$EE ׁt/UM UMU?UEcUU2 ~#@)Eu  )U1QR,$]EE4| m<| D| L| W $}U UmUmEuEE@tME}wM, ]EuIMEU)Z|E|ۉ]Dž|}|Euĉu|M)MىME} vEE}~ EEE}wu$L d d     EEE?E}E}}ȉ} EUUčz}ЉUȅvۍS9r5EE}}1UUU UMĉMuЉuE~Oʃ, t+E5 ]Et E GuE]0tEGT| M]r؋MMUUUU uuċM̉MЃ}(}u, }}:}4EE}xd| ]dqE}U Um$[mS $]ـ0uFu9}uhEUEt+D@u9ut( MM99tuFuEċM0T| MUE@G4u܉uM؉MEE}tj}}t }3=6+}2]K9]| u)މu+]]]E}Ѕ})}1}|jE}~&|~}9|}|)})})|}~Q}t:}~)uu1Euucu]]+]tSuuEjE}~uuE}4}u'U utE|E E}t+MIut2| ) |B׃t )σ~ }}|}~uuE|~|uE}tEuuw}3Mjj uE }tjj uE uȉuЃ}W}~Q}|%jjuEPu؋MщM؋u1FuE}}~uuEMM}t?qEuv M RQP juE uu0EuuPuuƒz uRux)xREREu}uEu}9tl~NEI|uR}uLEuF~2juEuu uMt Eԃ}:tUԋu8~(}9uM9AMMu UԋMAM9}jj uE u9uujj VEE !jj u|Ejj umEGuum0EԊUԋMAM9}~jj u'E GƐjuEuuÃu=Mt5 M9MtMu>9tMAM,Eċu1FuMM90u Mu>0tEuv}t1}tM9Mt uWuL u4u9uu0FuEMMAu} tMu El[^_US]=4ufC uAujt.S0tC@9t R"C0c CCK {uS6fC tCKىK 1ҨuSS1]UVS]C u#EPEPSiuK!uK CCCC9Ȳ ΀CEC}tCPtf s e[^U`WVSu] }fVf|EPP}fEf%f= Eu-EFLfEf%f=u~(, uЍe[^_UWVS]CP8 …u1-B$ZBKxǾDXKyЍe[^_US=4uT CSJxfx t%XJy;uj gtΐ1Qf@ @@@@@f@@0@4@D@H]USKT +X ~t +C~P]UhX UȲ 4UEuhX \Ð@ u  ÐPUWVS}G tLwtE)7uGG/O @(GSVwG,Ѓ ~)ƅ1e[^_UWVSu}19] ~7)MuMD^Mf ‹MfMC9] ^f^e[^_UlWVSu} }u7}u1` U1uEԉE؃}5M1y(9}wu%9uv }tU2zMMЍUU̍M܉Mȉuԉ}fEUUfMfMfUfUMMfUfUfMfMUUԋUU؋MMfUfUfMfMUUfMfMfUfUEf}EM}XMA1fEuI 1։uMI 1MI 1Ӄ}t1ɉUMMUUQfM щM؉Ef8S+MMUfzuMEMfyt+ux UfrNy+MUȍJUEMYwEہv}~&uUURuGuUJRŨR3EUfRfUʉMURUMЉMUfMUfDJftJf9]u *% 1uӉNjE 9v!O]wU׉ 9w1ۋu~;EUBM q))ډӋUfB])NȋU)ډӋMf]tAO1ۋu~1UUM QUrȉEËMUfJNыMfUMfjjjut RP/u 1e[^_UUM RQjujhLUWVSu]}tgw;uj jPdžjEP0C M QTPCt#PPGPCPV諌u=j!@tk@9s?uP$ PR!u ? A3CPxG G1e[^_UWVS}w,EEju7pƒ B tWfE f+EfG G)1BfEDBfAf9MtE9E rEސu0fNfp[]}t r}t([DB jDBjjR7讑 &5 u}tiG,9trZ1ۅtFj37cƒ t2}uCDB CDBjR72 뙐u5 1e[^_UWVS}fӋM AftWf)P1PfCf4GMAf)P1PmfCf4GfEf)fLGftGe[^_UWVS] s>}]f|^wu u=}t }fD~]fC }f|~f}f)fEEH9EtrLF] [U)PSRU9U|D Vf|VuffDVfDVfDVf}f9f|Vf]f\Vf\V9U}f]f\F}f~fEfD~ffD~f}ff>]K8} O1e[^_U 9E uafUf+UtGfDsffUЋE)PUREEPfEff+Ds}f{fMfL{ f|sf}܃E4DsEЉEMDs)‰UEPEPufE f|sf}؃E9ff+EfЍUfMf)fLSf}f|CMa}g1e[^_UDWVS]]܋{][]؉}Ef]f]ffKf]f9m]]]]fGfwvftqEPu ]s Suuu]]][]ԋ]]][]؋]]܅]܋{Ef|Gf GfEfff)ÉfЍUf]f)f\Wf]f\GjuPuVE܃0]܋{]f[ f]E}tuus ]܉]Ћ]f[ f]fEf]f9&uf|w w]Mw)MDwEwDw)‰UftwfuQSuW; 9E uS]f{vEETS9vuuQEtS][]uuSR ]Y]f{vEETS9v&uuEuR][]uuS ]KfEf]f9f]f9}t uu 1e[^_U WVSu }NEf9fQfv fM ZE9]'E ffUUUu} TwFu9~܃}t.]MY<}tUBR)MڋuT@LEU uV<\}}tPLT@Uj։u}}Gu}u}uuuut'uu ut9Eu1 Oe[^_UWVSUr HǃtkMuNFSjW2UB )PhSE\f] UMfQ81e[^_UM1t@vHASH: Out of overflow pages. Increase page size U$WVSUR UMLDIM}_}}UR H#EEMq$u9}8}uVuE9uu UUMI HE9uu*} HUZ$!ÉyCE'1EM}"AM 9]}F9uTUMDDA$DDx|DXt+\@~8E}~j1h^ j>MUMQ x@|DH@UR H9EufE}ujE Pu{M}DDC~RAMtUMQ x@|DH@1+EE}u)ֿU u M9v0%PSQ ujSM1&pfE܋G$ECsu)U9s.EPuuWjSuKPMEf9EsE)RDCPPD fCUfCf+EfCfDSC؋WM@w7Pu jS6Jo1e[^_ *< $ FOpen termscript file: open-termscriptwOpening termscript$+x Xset-screen-height|+ set-screen-width+ screen-height+ hscreen-width8. #baud-rateX.0 send-string-to-terminal.\ ddingKeyboard macro terminated by a command ringing the bell/ sleep-forL0 sit-forTERMPlease set the environment variable TERM; see tset(1). inverse-videovisible-bellno-redraw-on-reenterwindow-systemwindow-system-versioncursor-in-echo-area= 1redraw-display %s  ... ...*invalid*NSJE[none] Narrow*-%no processAllBottomTop%2d%%[[[... [[[[[[[[[[% ...]]]]]]]]]]]]]--------------------------------------------------------------------------------------------------------------------------------------------global-mode-stringoverlay-arrow-positionoverlay-arrow-stringscroll-stepreset-terminal-on-cleardebug-end-postruncate-partial-width-windowsmode-line-inverse-videot ZwindowpT +selected-windowd minibuffer-windowt pos-visible-in-window-p window-buffer, window-heightP ?window-width\t window-hscrollx set-window-hscroll 6window-edgesl window-pointĆ wwindow-start, (set-window-pointT set-window-start} | delete-windowAttempt to delete minibuffer or sole ordinary window next-windowċ previous-window̌  ^pother-window*scratch**scratch*tP *get-lru-windowt get-largest-window get-buffer-window$ Ndelete-other-windowsT bDelete windows on (buffer): delete-windows-onQ 4 bReplace buffer in windows: replace-buffer-in-windows sset-window-bufferAttempt to display deleted bufferX select-windowTrying to select window with no buffer idisplay-buffer@9 8 Osplit-windowAttempt to split minibuffer window \penlarge-window pshrink-windowNo other window to side of this one8 ]Pscroll-upT  Pscroll-downp6 4 !Pscroll-leftZ X Pscroll-righth~ | IPscroll-other-windowThere is no other window  EPrecenterx Pmove-to-window-lineȫ set-window-configurationwindow-configuration-p`P current-window-configuration( save-window-excursionwindowptemp-buffer-show-hookminibuffer-scroll-windowpop-up-windowsnext-screen-context-linessplit-height-thresholdwindow-min-heightwindow-min-widthminibuffer-window-selectedminibuffer-window-selecteddelete-other-windowssplit-windowdelete-windowother-windowenlarge-windowscroll-leftscroll-rightscroll-upscroll-other-windowscroll-downrecentermove-to-window-lineS Cannot open termcap database file. Terminal type %s is not defined. alALblcdceclchcmcrcscScvdcDCdlDLdmedeihoicICimipkeksllnddonlbslebcpcrpsesfsosrtatetiupvbvevswiamdbhzinkmMTmimsulxnxsxtcolipbsgtwugueusRDsupdupc10perqv v%C %C %C %C !Terminal type "%s" is not powerful enough to run Emacs. It lacks the ability to position the cursor. If that is not the actual type of terminal you have, use the C-shell command `setenv TERM ...' to specify the correct type. It may be necessary to do `unsetenv TERMCAP' as well. emacs: OOPSOOPSFatal error (%d).-tUsing %s -nw-batch-lload Pkill-emacsss%d modified buffer%s exist%s, do you really want to exit? Subprocesses are executing; kill them and exit? | fdump-emacscommand-line-argssystem-typeberkeley-unixnoninteractivekill-emacs-hook(Type ? for further options)   recursive-editpeculiar error, : Bare impure Emacs (standard Lisp code not loaded)Bare Emacs (standard Lisp code not loaded)h top-level lexit-recursive-editNo recursive edit is in progress  abort-recursive-editNo recursive edit is in progress*Help*key sequence too long  read-key-sequence `command-execute :Pexecute-extended-command- C-u %d %d M-x , input-pending-pd4 Zrecent-keysT this-command-keys| recursion-depth< FOpen dribble file: open-dribble-filew Idiscard-input  suspend-emacssuspend-hooksuspend-resume-hookAuto-save? (y or n) Abort (and dump core)? (y or n) Continuing... < set-input-modeself-insert-commandforward-charbackward-chartop-leveldisableddisabled-command-hookmeta-flaglast-command-charlast-input-charunread-command-charmeta-prefix-charlast-commandthis-commandauto-save-intervalecho-keystrokeshelp-charhelp-formtop-levelkeyboard-translate-tabledisable-undosuspend-emacssuspend-emacsexit-recursive-editabort-recursive-editexecute-extended-commandF D Pstart-kbd-macroAlready defining kbd macro!Defining kbd macro...Appending to kbd macro...8 Hpend-kbd-macroNot defining kbd macro.Keyboard macro defined pcall-last-kbd-macroCan't execute anonymous macro while defining oneNo kbd macro has been definedL execute-kbd-macrodefining-kbd-macroexecuting-macroexecuting-kbd-macrolast-kbd-macrocall-last-kbd-macrostart-kbd-macroend-kbd-macro!4 make-keymap!T make-sparse-keymap0"| keymappCommand key out of range 0-127Command key out of range 0-127% Rcopy-keymap& gdefine-keyKey sequence %s uses invalid prefix characters0(H lookup-key)h key-binding,* ˹local-key-bindingd* global-key-binding* DkSet key globally: CSet key %s to command: global-set-key*\ ( kSet key locally: CSet key %s locally to command: local-set-keyX+ kUnset key globally: global-unset-keyx+ kUnset key locally: local-unset-key+ !define-prefix-command+$ use-global-map,H zuse-local-mapP,l current-local-mapd, ̳current-global-map, accessible-keymaps . mkey-description / single-key-description/8 7text-char-description80d Űwhere-is-internal2 CWhere is command: where-is, %s is on %s%s is not on any keys3 describe-bindings*Help*key binding --- ------- Local Bindings: Global Bindings: Prefix Command??suppress-keymapx suppress-keymapx .. , Function: Variable: $? xsApropos: apropos*Help*keymapglobal-mapesc-mapESC-prefixctl-x-mapControl-X-prefixminibuffer-local-mapminibuffer-local-ns-mapminibuffer-local-completion-mapminibuffer-local-must-match-mapsingle-key-descriptionkey-descriptionkeymappESC-prefixControl-X-prefix2Kn,X` %KNo buffer named %sInvalid buffer argumentJ buffer-listJ Vget-buffer K get-file-bufferK get-buffer-createO generate-new-buffer<%d>OL ͨbuffer-namePl gbuffer-file-namedP buffer-local-variablesQ buffer-modified-pQ Yset-buffer-modified-pS3  sRename buffer (to new name): rename-bufferBuffer "%s" already existsrename-auto-save-fileS ǥother-buffer*scratch*T äbuffer-flush-undoT  buffer-enable-undo\U  )bKill buffer: kill-bufferBuffer %s modified; kill anyway? 4Xl X ֣BSwitch to buffer: switch-to-bufferCannot switch buffers in minibuffer windowX Ipop-to-bufferTY 4current-buffertY set-bufferY$ barf-if-buffer-read-onlyZU T bury-bufferSelecting deleted buffer^ ǝerase-bufferBuffer-menu-mode MR Buffer Size Mode File -- ------ ---- ---- ---- . * % (b2 0 Plist-buffers*Buffer List*Lbd kill-all-local-variables%-Fundamentalfundamental-modemode-class prin1*scratch**scratch*`getwd' failed: %s. /default-mode-line-formatdefault-abbrev-modedefault-ctl-arrowdefault-truncate-linesdefault-fill-columndefault-left-margindefault-tab-widthdefault-case-fold-searchdefault-kanji-flagdefault-kanji-fileio-codemode-line-formatdefault-major-modemajor-modeabbrev-modecase-fold-searchmode-namefill-columnleft-margintab-widthctl-arrowtruncate-lineskanji-flagkanji-fileio-codekanji-fileio-codeunderlined-regioninversed-regiondefault-directoryauto-fill-hookbuffer-file-namebuffer-auto-save-file-namebuffer-read-onlybuffer-backed-upbuffer-saved-sizeselective-displayselective-display-ellipsesoverwrite-modeswitch-to-bufferkill-bufferlist-buffers/usr/local/lib/emacs/lock/ask-user-about-supersession-threatask-user-about-lock/usr/local/lib/emacs/lock/!!!SuperLock!!!/usr/local/lib/emacs/lock/%d /usr/local/lib/emacs/lock//usr/local/lib/emacs/lock/!!!SuperLock!!!/usr/local/lib/emacs/lock/!!!SuperLock!!!p lock-buffer(q Uunlock-bufferq file-locked-p/usr/local/lib/emacs/lock/0{$ xmarker-buffer{H marker-position`|l set-marker~ set-marker-typeX~ ~marker-point-typeMarker does not point anywherep ~copy-marker%sCommand attempted to use minibuffer while in minibuffer *Minibuf-%d*`p }read-from-minibuffer  |read-minibuffer V{eval-minibuffer zread-stringԇ yread-no-blanks-input@0 =yread-commandT Xxread-variableȈx wread-buffer%s(default %s)  vtry-completion sall-completionsp qcompleting-read [No match] [Next char not unique]ܓ9 8 nminibuffer-complete [Sole completion] [Complete, but not unique]8 lnminibuffer-complete-and-exit [Confirm]Ȕ mminibuffer-complete-word [No match] -P Jmdisplay-completion-listThere are no possible completions of what you have typed.Possible completions are: lminibuffer-completion-helpMaking completion list... [No completions] *Completions* %lself-insert-and-exitD) ( kexit-minibuffer`P kminibuffer-depthminibuffer-completion-tableminibuffer-completion-confirmminibuffer-completion-predicateuser-variable-pcompletion-auto-helpcompletion-ignore-caseenable-recursive-minibuffersminibuffer-completion-tableminibuffer-completion-predicateminibuffer-completion-confirmminibuffer-help-formabort-recursive-editexit-minibufferexit-minibufferabort-recursive-editexit-minibufferexit-minibufferexit-minibufferexit-minibufferself-insert-and-exitabort-recursive-editexit-minibufferexit-minibufferminibuffer-completeminibuffer-complete-wordminibuffer-completion-helpabort-recursive-editminibuffer-complete-and-exitminibuffer-complete-and-exitminibuffer-completeminibuffer-complete-wordminibuffer-completion-helpundocumented error codel hfile-name-directory gfile-name-nondirectory/ԟ gfile-name-as-directory edirectory-file-nameD dmake-temp-nameXXXXXXD mdexpand-file-nameHOME"%s" isn't a registered user///..< bsubstitute-in-file-nameBad format environment-variable substitutionMissing "}" in environment-variable substitutionSubstituting nonexistent environment variable "%s"File %s already exists; %s anyway?  x ZafCopy file: FCopy %s to file: pcopy-filecopy to itOpening input fileOpening output fileI/O errort  _fDelete file: delete-fileRemoving old name^ 8 _fRename file: FRename %s to file: prename-filerename to itRenaming$  ]fAdd name to file: FName to add to %s: padd-name-to-filemake it a new nameAdding new name4I  D\FMake symbolic link to file: FMake symbolic link to file %s: pmake-symbolic-linkmake it a linkMaking symbolic link0 Zfile-name-absolute-p Yfile-exists-p 6Yfile-readable-px Xfile-symlink-pt, 8Xfile-writable-pXT Wfile-directory-pȳ| Wfile-modes0 Vset-file-modesDoing chmodĴ zVfile-newer-than-file-p̵ Uinsert-file-contentsOpening input fileFile size is negativeIO error reading %sOpening input fileԺ t vTr FWrite region to file: write-regionOpening output fileLseek errorIO error writing %sWrote %s Rverify-visited-file-modtime Qclear-visited-file-modtimeAutosaving...error for %sAutosaving...error!for %sAutosaving...error for %s  PQdo-auto-saveBuffer %s has shrunk a lot; not autosaving itAuto-saving...Auto-saving...done Oset-buffer-auto-saved< COrecent-auto-save-pd Nread-file-name-internal Nread-file-nameHOMEread-file-name-internalNo file name specifiedfile-errorfile-already-existsfind-kanji-file-input-codeinvoke-find-kanji-file-input-codefind-kanji-file-output-codeinvoke-find-kanji-file-output-codeFile errorFile already existsinsert-default-directoryvms-stmlf-recfm Ldirectory-filesOpening directory  JKfile-name-completion\8 @Jfile-name-all-completionsOpening directory(x Ifile-attributescompletion-ignored-extensionsP  Fpforward-charh  Fpbackward-char  Epforward-line2 0 iDpbeginning-of-lineTZ X Cpend-of-line, | Cp Pdelete-charL  Bp Pdelete-backward-char  Apself-insert-command  @Pnewlinekill-backward-charskill-forward-charsblink-paren-hooknewlineself-insert-commandself-insert-commandbeginning-of-linebackward-chardelete-charend-of-lineforward-chardelete-backward-char ?upcase ?downcase  8?capitalizeB @ >rupcase-regionf d =rdowncase-region0  |?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~d" 2looking-at" >2string-match" 0skip-chars-forward" /skip-chars-backwardInvalid search bound (wrong side of point)7# $# /sSearch backward: search-backwardf# \# ?-sSearch: search-forward<# # t+sWord search backward: word-search-backwardp# # })sWord search: word-search-forward$ $ 'sRE search backward: re-search-backwardU$ H$ $sRE search: re-search-forward|$ "replace-match!$ match-beginning!$ match-end!$ match-data"% store-match-data#,% 9regexp-quotesearch-failedinvalid-regexpSearch failedInvalid regexpInvalid regular expressionUnmatched \(Unmatched \)Premature end of regular expressionNesting too deepRegular expression too bigMemory exhausted4& undo-boundaryX& Lundo-moreCannot undo more: changes have been made since the last undoNo further undo information availableChanges to be undone are outside visible portion of bufferChanges to be undone are outside visible portion of bufferChanges to great to be undone@p' undo-startUndo information not kept for this buffernilunboundtvariable-documentationfundamental-mode mode-classquotelambdasubrerror-conditions error-message top-levelerrorquitwrong-type-argumentargs-out-of-range void-function void-variablesetting-constantinvalid-read-syntaxinvalid-functionwrong-number-of-argumentsno-catch end-of-file arith-errorbeginning-of-buffer end-of-bufferbuffer-read-onlylistpconspsymbolpintegerpnatnumpstringparrayp sequencepbufferpvectorpchar-or-string-pmarkerpinteger-or-marker-pboundpfboundpcdreqnullnlistpatomsubrpcarcar-safecdr-safesetcarsetcdrsymbol-function symbol-plist symbol-name makunbound fmakunboundfsetsetplist symbol-valueset default-value set-default setq-defaultmake-variable-buffer-localmake-local-variablekill-local-variablearefaset int-to-string string-to-int=<><=>=/=zerop+-*/%maxminlogandlogiorlogxorlshash1+1-lognotgc-cons-thresholdpure-bytes-used purify-flagconslistvector make-list make-vector make-string make-symbol make-markerpurecopygarbage-collectreadread-from-stringintern intern-softloadeval-current-buffer eval-region read-char get-file-charmapatomsobarrayvaluesstandard-input load-path load-hookload-in-progressstandard-output print-lengthprint-escape-newlinesprin1prin1-to-stringprincprintterpri write-charwith-output-to-temp-buffermax-specpdl-sizemax-lisp-eval-depth quit-flag inhibit-quitautoloadmacroexit interactivecommandpdefun&rest &optionalstack-trace-on-errordebug-on-error debug-on-quitdebug-on-next-calldebuggermocklisp-argumentsorandifcondprognprog1prog2setqfunctiondefmacrodefvardefconstuser-variable-pletlet*while macroexpandcatchthrowunwind-protectcondition-casesignal interactive-pevalapplyfuncallbacktrace-debug backtrace string-lesspfeaturesidentityrandomlength string-equalappendconcatvconcat copy-sequence copy-alist substringnthcdrntheltmemqassqassocrassqdelqnreversereversesortgetputequal fillarraynconcmapcar mapconcaty-or-n-p yes-or-no-p load-averagefeatureprequireprovideabbrev-table-name-listglobal-abbrev-tablefundamental-mode-abbrev-table last-abbrevlast-abbrev-textlast-abbrev-locationabbrev-start-locationabbrev-start-location-bufferlocal-abbrev-tableabbrevs-changedabbrev-all-capsmake-abbrev-tableclear-abbrev-table define-abbrevdefine-global-abbrevdefine-mode-abbrevabbrev-expansion abbrev-symbol expand-abbrevunexpand-abbrevinsert-abbrev-table-descriptiondefine-abbrev-tabledefault-mode-line-formatdefault-abbrev-modedefault-ctl-arrowdefault-truncate-linesdefault-fill-columndefault-left-margindefault-tab-widthdefault-case-fold-searchdefault-kanji-flagdefault-kanji-fileio-codemode-line-formatdefault-major-mode major-mode abbrev-modecase-fold-search mode-name fill-column left-margin tab-width ctl-arrowtruncate-lines kanji-flagkanji-fileio-codeunderlined-regioninversed-regiondefault-directoryauto-fill-hookbuffer-file-namebuffer-auto-save-file-namebuffer-backed-upbuffer-saved-sizeselective-displayselective-display-ellipsesoverwrite-mode buffer-list get-bufferget-file-bufferget-buffer-creategenerate-new-buffer buffer-namebuffer-local-variablesbuffer-modified-pset-buffer-modified-p rename-buffer other-bufferbuffer-flush-undobuffer-enable-undo kill-buffer erase-bufferswitch-to-buffer pop-to-buffercurrent-buffer set-bufferbarf-if-buffer-read-only bury-buffer list-bufferskill-all-local-variables byte-codecall-interactively prefix-argcurrent-prefix-argcommand-historyprefix-numeric-valueupcasedowncase capitalize upcase-regiondowncase-regioncapitalize-region upcase-word downcase-wordcapitalize-wordshell-file-name exec-pathexec-directoryprocess-environment call-processcall-process-regionkill-backward-charskill-forward-charsblink-paren-hook forward-char backward-char forward-linebeginning-of-line end-of-line delete-chardelete-backward-charself-insert-commandnewlinedirectory-filesfile-name-completionfile-name-all-completionsfile-attributescompletion-ignored-extensionsopen-termscriptdingsit-for screen-height screen-widthset-screen-heightset-screen-width sleep-for baud-ratesend-string-to-terminal inverse-video visible-bellno-redraw-on-reenter window-systemwindow-system-versioncursor-in-echo-area documentationdocumentation-propertySnarf-documentationsubstitute-command-keys char-equal goto-charstring-to-charchar-to-stringbuffer-substring buffer-string point-marker mark-markerpointregion-beginning region-endsave-excursion buffer-size point-max point-minpoint-min-markerpoint-max-markerbobpeobpbolpeolpfollowing-charpreceding-char char-afterinsertinsert-before-markersinsert-after-markers insert-charuser-login-nameuser-real-login-nameuser-uid user-real-uiduser-full-namecurrent-time-string system-namemessageformatgetenvinsert-buffer-substringsubst-char-in-region delete-regionwidennarrow-to-regionsave-restriction dump-emacs kill-emacscommand-line-args system-type berkeley-unixnoninteractivekill-emacs-hook file-errorfile-already-existsfind-kanji-file-input-code!invoke-find-kanji-file-input-codefind-kanji-file-output-code"invoke-find-kanji-file-output-codeinsert-default-directoryvms-stmlf-recfmfile-name-directoryfile-name-nondirectoryfile-name-as-directorydirectory-file-namemake-temp-nameexpand-file-namesubstitute-in-file-name copy-file delete-file rename-fileadd-name-to-filemake-symbolic-linkfile-name-absolute-p file-exists-pfile-readable-pfile-writable-pfile-symlink-pfile-directory-p file-modesset-file-modesfile-newer-than-file-pinsert-file-contents write-regionverify-visited-file-modtimeclear-visited-file-modtime do-auto-saveset-buffer-auto-savedrecent-auto-save-pread-file-name-internalread-file-name unlock-buffer lock-buffer file-locked-pindent-tabs-modecurrent-indentation indent-tocurrent-columnmove-to-columnvertical-motiondisabledread-key-sequencerecursive-editinput-pending-pcommand-execute recent-keysthis-command-keys suspend-emacsabort-recursive-editexit-recursive-editrecursion-depth discard-inputopen-dribble-fileset-input-modeexecute-extended-commanddisabled-command-hook meta-flaglast-command-charlast-input-charunread-command-charmeta-prefix-char last-command this-commandauto-save-intervalecho-keystrokes help-char help-formkeyboard-translate-table disable-undokeymap global-mapesc-map ESC-prefix ctl-x-mapControl-X-prefixminibuffer-local-mapminibuffer-local-ns-mapminibuffer-local-completion-mapminibuffer-local-must-match-mapsingle-key-descriptionkey-descriptionkeymapp make-keymapmake-sparse-keymap copy-keymap key-bindinglocal-key-bindingglobal-key-bindingglobal-set-key local-set-key define-key lookup-keyglobal-unset-keylocal-unset-keydefine-prefix-commanduse-global-map use-local-mapcurrent-local-mapcurrent-global-mapaccessible-keymapstext-char-descriptionwhere-is-internalwhere-isdescribe-bindingsaproposstart-kbd-macro end-kbd-macrocall-last-kbd-macroexecute-kbd-macrodefining-kbd-macroexecuting-macroexecuting-kbd-macrolast-kbd-macromarker-position marker-buffer set-markerset-marker-typemarker-point-type copy-markerminibuffer-completion-tableminibuffer-completion-confirmminibuffer-completion-predicatecompletion-auto-helpcompletion-ignore-caseenable-recursive-minibuffersminibuffer-help-formread-from-minibuffereval-minibufferread-minibuffer read-string read-command read-variable read-bufferread-no-blanks-inputminibuffer-depthtry-completionall-completionscompleting-readminibuffer-completeminibuffer-complete-wordminibuffer-complete-and-exitdisplay-completion-listminibuffer-completion-helpself-insert-and-exitexit-minibuffermocklispml-ifml-argml-nargsml-interactiveml-provide-prefix-argumentml-prefix-argument-loop insert-stringprocesspinvoke-find-kanji-process-codefind-kanji-process-codedelete-exited-processesprocess-connection-type get-processget-buffer-processdelete-processprocess-statusprocess-exit-status process-id process-nameprocess-commandset-process-bufferprocess-buffer process-markset-process-filterprocess-filterset-process-sentinelprocess-sentinelprocess-kill-without-querylist-processes process-list start-processopen-network-streamaccept-process-outputprocess-send-regionprocess-send-stringinterrupt-process kill-process quit-process stop-processcontinue-processprocess-send-eofwaiting-for-user-input-pprocess-kanji-codeset-process-kanji-code search-failedinvalid-regexp string-match looking-atskip-chars-forwardskip-chars-backwardsearch-forwardsearch-backwardword-search-forwardword-search-backwardre-search-forwardre-search-backward replace-matchmatch-beginning match-end match-datastore-match-data regexp-quotesyntax-table-pparse-sexp-ignore-comments syntax-tablestandard-syntax-tablecopy-syntax-tableset-syntax-table char-syntax char-categorymodify-syntax-entrydescribe-syntax forward-word scan-lists scan-sexpsbackward-prefix-charsparse-partial-sexp undo-start undo-boundary undo-morewindowptemp-buffer-show-hookminibuffer-scroll-windowpop-up-windowsnext-screen-context-linessplit-height-thresholdwindow-min-heightwindow-min-widthminibuffer-window-selectedselected-windowminibuffer-windowpos-visible-in-window-p window-buffer window-height window-widthwindow-hscrollset-window-hscroll window-edges window-point window-startset-window-pointset-window-start next-windowprevious-window other-windowget-lru-windowget-largest-windowget-buffer-windowdelete-other-windowsdelete-windows-onreplace-buffer-in-windows delete-windowset-window-buffer select-windowdisplay-buffer split-windowenlarge-window shrink-window scroll-up scroll-down scroll-left scroll-rightscroll-other-windowrecentermove-to-window-lineset-window-configurationcurrent-window-configurationsave-window-excursionglobal-mode-stringoverlay-arrow-positionoverlay-arrow-string scroll-stepreset-terminal-on-clear debug-end-postruncate-partial-width-windowsmode-line-inverse-videoredraw-display jcode-typekanji-char-afterkanji-delete-regionkanji-jis-start kanji-jis-endconvert-region-kanji-codeconvert-string-kanji-codecheck-region-kanji-codecheck-string-kanji-codekanji-code-minkanji-code-maxto-kanji-displayto-ascii-displayto-kanji-fileioto-ascii-fileioto-kanji-processto-ascii-processkanji-input-codekanji-display-codeNEMACSCANNAcanna-key-proccanna-initializecanna-finalizecanna-touroku-stringcanna-set-widthcanna-change-modecanna-store-yomicanna-do-function canna-parsecanna-query-modecanna-set-bunsetsu-kugiricanna-kakutei-stringcanna-kakutei-yomicanna-kakutei-romajicanna-henkan-stringcanna-henkan-lengthcanna-henkan-revposcanna-henkan-revlencanna-ichiran-stringcanna-ichiran-lengthcanna-ichiran-revposcanna-ichiran-revlencanna-mode-stringcanna-empty-infocanna-through-infocanna-underlinecanna-henkan-begincanna-henkan-nextcanna-bunsetu-henkoucanna-henkan-kakuteicanna-henkan-endcanna-henkan-quitcanna-mode-alpha-modecanna-mode-empty-modecanna-mode-kigo-modecanna-mode-yomi-modecanna-mode-jishu-modecanna-mode-tankouho-modecanna-mode-ichiran-modecanna-mode-yes-no-modecanna-mode-on-off-modecanna-mode-adjust-bunsetsu-modecanna-mode-chikuji-yomi-mode canna-mode-chikuji-bunsetsu-modecanna-mode-henkan-mode canna-mode-henkan-nyuuryoku-modecanna-mode-zen-hira-henkan-modecanna-mode-han-hira-henkan-modecanna-mode-zen-kata-henkan-modecanna-mode-han-kata-henkan-mode canna-mode-zen-alpha-henkan-mode canna-mode-han-alpha-henkan-mode canna-mode-zen-hira-kakutei-mode canna-mode-han-hira-kakutei-mode canna-mode-zen-kata-kakutei-mode canna-mode-han-kata-kakutei-mode!canna-mode-zen-alpha-kakutei-mode!canna-mode-han-alpha-kakutei-modecanna-mode-hex-modecanna-mode-bushu-modecanna-mode-extend-modecanna-mode-russian-modecanna-mode-greek-modecanna-mode-line-modecanna-mode-changing-server-modecanna-mode-henkan-method-modecanna-mode-delete-dic-modecanna-mode-touroku-modecanna-mode-touroku-empty-modecanna-mode-touroku-hinshi-modecanna-mode-touroku-dic-modecanna-mode-quoted-insert-modecanna-mode-bubun-muhenkan-modecanna-mode-mount-dic-modecanna-func-self-insertcanna-func-functional-insertcanna-func-quoted-insertcanna-func-japanese-modecanna-func-alpha-modecanna-func-henkan-nyuryoku-modecanna-func-forwardcanna-func-backwardcanna-func-nextcanna-func-previouscanna-func-beginning-of-linecanna-func-end-of-linecanna-func-delete-nextcanna-func-delete_previouscanna-func-kill-to-end-of-linecanna-func-henkancanna-func-kakuteicanna-func-extendcanna-func-shrinkcanna-func-adjust-bunsetsucanna-func-quitcanna-func-convert-as-hexcanna-func-convert-as-bushucanna-func-kouho-ichirancanna-func-bubun-muhenkancanna-func-zenkakucanna-func-hankakucanna-func-to-uppercanna-func-capitalizecanna-func-to-lowercanna-func-hiraganacanna-func-katakanacanna-func-romajicanna-func-base-hiraganacanna-func-base-katakanacanna-func-base-eisucanna-func-base-zenkakucanna-func-base-hankakucanna-func-base-kanacanna-func-base-kakuteicanna-func-base-henkan(canna-func-base-hiragana-katakana-toggle&canna-func-base-zenkaku-hankaku-toggle canna-func-base-kana-eisu-toggle%canna-func-base-kakutei-henkan-togglecanna-func-base-rotate-forwardcanna-func-base-rotate-backwardcanna-func-extend-modecanna-func-tourokucanna-func-hex-modecanna-func-bushu-modecanna-func-kigo-modecanna-func-markcanna-func-temporal-modecanna-key-nfercanna-key-xfer canna-key-upcanna-key-leftcanna-key-rightcanna-key-downcanna-key-insertcanna-key-rollupcanna-key-rolldowncanna-key-homecanna-key-helpcanna-key-kp-keycanna-key-shift-nfercanna-key-shift-xfercanna-key-shift-upcanna-key-shift-leftcanna-key-shift-rightcanna-key-shift-downcanna-key-control-nfercanna-key-control-xfercanna-key-control-upcanna-key-control-leftcanna-key-control-rightcanna-key-control-down one-window-pp argt Pp p Dq q   "=q 4q t q :/]\..*emacs 4\.ml$ ctl-x-4-mapadd-change-log-entry!add-change-log-entry-other-window`byte-compile-filebyte-recompile-directorybatch-byte-compilecalendarlist-command-historycommand-history-moderepeat-matching-complex-commandcommon-lisp-indent-hookcompare-windowscompilegrep next-errordabbrev-expandcancel-debug-on-entrydebug-on-entrydireddired-other-windowdired-noselectdissociated-pressdoctor disassembleelectric-buffer-listelectric-command-historyedt-emulation-on ftp-find-fileftp-write-filegdbset-gosmacs-bindingshanoi Helper-helpHelper-describe-bindingsinfo Info-tagify Info-validate Info-splitbatch-info-validate ledit-modeledit-from-lisp-mode lpr-buffer print-buffer lpr-region print-regioninsert-kbd-macrokbd-macro-queryname-last-kbd-macromake-command-summarydefine-mail-alias manual-entrymh-rmailmh-smailconvert-mocklisp-buffer modula-2-modeenable-commanddisable-command nroff-mode list-options edit-options outline-mode edit-picture picture-mode run-prologclear-rectangledelete-rectangledelete-extract-rectangleextract-rectangleinsert-rectanglekill-rectangleopen-rectangleyank-rectanglernewsnews-post-newssendnewspostnewsrmail rmail-inputrmail-dont-reply-to-names!rmail-default-dont-reply-to-namesrmail-primary-inbox-listrmail-ignored-headersrmail-delete-after-output run-schemesend-mail-functionsendmail-send-itmail-self-blindmail-interactivemail-yank-ignored-headersmail-header-separatormail-archive-file-name mail-aliasesmail-other-windowmailmail-use-rfc822 server-startrun-lispshell sort-linessort-paragraphs sort-pagessort-numeric-fields sort-fields sort-columnssort-regexp-fields spell-buffer spell-region spell-word spell-stringuntabifytabifyfind-tagfind-tag-other-window list-tags next-file tags-apropostags-loop-continuetag-table-filestags-query-replace tags-searchvisit-tags-tabletelnetterminal-emulator latex-modeplain-tex-modetex-modeplain-TeX-modetexinfo-format-buffertexinfo-format-regionbatch-texinfo-format display-timeunderline-regionununderline-regionask-user-about-lock"ask-user-about-supersession-threatvi-mode view-file view-buffer view-modevip-modeyowpsychoanalyze-pinhead forward-sexp backward-sexpbackward-up-list mark-sexp down-list kill-sexp forward-list backward-listbeginning-of-defun end-of-defun mark-defuninsert-parenthesesmove-past-close-and-reindentlisp-complete-symboleval-last-sexppoint-to-registerregister-to-pointcopy-to-registerinsert-registercopy-rectangle-to-registerfill-paragraph fill-regionset-fill-prefixbackward-paragraphforward-paragraphmark-paragraphbackward-sentenceforward-sentence kill-sentencebackward-kill-sentence backward-page forward-page mark-pagenarrow-to-pagecount-lines-pageisearch-forward P 2Џ @ Pȏ  isearch 4P P  PP isearch-forward-regexp P( :68 @ P0 X H 4PP 4P P@  PP isearch-backward P 6 @ P    P P  PP isearch-backward-regexp P _7 @ P    P 4P P  PPܐ search-last-stringsearch-last-regexpsearch-repeat-charsearch-reverse-charsearch-exit-charsearch-delete-charsearch-quote-charsearch-yank-word-charsearch-yank-line-charsearch-exit-optionsearch-slow-window-linessearch-slow-speed query-replace from-string\  to-stringp  t Px  = @ +sQuery replace: sQuery replace %s with: P  P D perform-replace \$ p, 4P4  P< t P h ` DoneT  PL  PP query-replace-regexpregexp p  t P ȓ ? @ 9sQuery replace regexp: sQuery replace regexp %s with: Pؓ  PГ X 0 8 p@ 4PH 4PP t P( | t Doneh  P`  PP replace-string\ p Ȕ  delimited P ؔ A$ @ -sReplace string: sReplace string %s with: P  P \ 4 \< pD  PL  PT  P,  x Donel  Pd  PPД replace-regexp p   P ̕ C @ -sReplace regexp: sReplace regexp %s with: Pܕ  Pԕ P ( 0 p8  P@ 4PH  P t l Done`  PX  PPĕ add-mode-abbrevadd-global-abbrevinverse-add-mode-abbrevinverse-add-global-abbrevabbrev-prefix-mark open-linet P $ mD @< *p4  P, ؗ  0ˆno?! V&c`Sb S.!)T ȗ flagtt P  З  PL  PP  split-line P  @ *  P  L ˆ!i`c" b*0  col ` Pp\  d   P(  PP  quoted-insertt P И  @ *p  Pؘ T  ˆ  Vc S) D t P( L  P  PPȘ delete-indentation t P|   @ *P  P @    !h=``S" ę 0 fixup-whitespacet P h 8  P  PP  PX Kx @p *h  P` (   !!!)c)  delete-horizontal-space^\|\s) $\|\s(\|\s' P\Ԛ     P  PPP  P@ ` @X *P  PH   !`!`"p    P hp   Ph  PP8 just-one-space P  @ *  P  @ !gU!c`!`" x   PH  hpP   P  PP delete-blank-lines P P؜ @М *Ȝ  P  d vˆ !'!?'o'!!?)N 9!`#L!`Me"T ?t !`#q `rd")*   thisblank singleblank[ ]*$ [ ]* [ ]*$[^ ](< P4P\  h    P  PP back-to-indentation P@  P @ PH  p  !!`    Ppx    PX  PP8 newline-and-indent Pܞ _ @ *  P  $ `!`"c t  indent-according-to-mode Ph,  xT |  P  PPԞ  reindent-then-newline-and-indent Pğ  @ܟ *ԟ  P̟ P  `!`" )c @   Ph x H  P  PP t P` ؠ  < @=‰``\"x Ƞ  kill-regiontx~ Р  Pp  PPh t P P  < @=‰``Z" @ tx~( H  P  PP backward-delete-char-untabifyt  killp P  ԡ @̡ *p P  P  , @Ĉ V o?8hU+i! iZ "!)!S)) " t t P d 4 |  Pܡ  PP  zap-to-chart  P   @ *p cZap to char: ̢  PĢ p 0 /`! $" V`S`Tb`- V,d-e" `  P4Pt8 h  P  PP  t P   @ P  P `  7 , V! "") !"\"-eb6!ȣ P  push-mark t P8'~ ~  X  P  PP x t Pp   @ P  P D  9 . T V ! ""* !""Z/db8! 4  t P8'~ ~  <  P  PP mark-whole-buffer Pt y @ P| Х   `!d!eb   P ȥ  P  PPl count-lines-regionstart, end@ P $ D @< r4  P, Ħ d  ˆ ""T  Region has %d lines count-lines,@ Pl T   PL  PP  what-line P  @ P p (  `"T")) ` Line %d P|0 T< h  P  PP , @ P  4 ħ  "eb !Z))  ,@8̧   P  PP what-cursor-position P, {< @ P4   Ȉged`  V% " S\ "]"4 " S"\ ]" U@ӂE "i U} "\ T"o &z & " T"! & ! &.L  begtotalpercenthscroll Hscroll=%d,point=%d of %d(%d%%) <%d - %d> column %d %s"point=%d of %d(%d%%) column %d %s<Char: %s (0%o) point=%d of %d(%d%%) <%d - %d> column %d %s2Char: %s (0%o) point=%d of %d(%d%%) column %d %s@` P8P~d~48 @ <~P   , (   PD  PP$  P̪ ܪ @ PԪ      P|   P  PPĪ eval-expression expression  PT d M @ xEval: t  Pl   È !B@" ث  4P P(   P  PP\ edit-and-eval-command( command4 P 8  X   !"!H | 4<`   P@  PP0 repeat-complex-command-mapprevious-complex-commandnext-complex-commandrepeat-complex-commandrepeat-complex-command-arg P4 D d @\ pT  PL   0ƈ S 8,! $ @"% B !. *t  newcmdRedo: |H4P P <p̭   Pl  PP< n P0 @ ` @X pP  PH X  4Ĉ Z] G^ U! Uǂ!2  S 8!ceb)p H narg$No following item in command history"No preceeding item command history  PP  < P  Ph  PP8  Ph x  @ p  P   [! Я  Pp د  P  PPp  goto-linet P  2< @4  NGoto line:  P  `  bS!)L  t P|h   PD  PP advertised-undoundo̰ t Pİ ܰ t @ *p  P ̱ D 0Ĉ ! = !ȉ !. ?. )  Undo!"delete-auto-save-file-if-necessary t PPL $ ı  P  PP԰  shell-command4  t P  @ @8 sShell command: P  P  x "ˆ & !`` $P  -cexchange-point-and-markshell-command-on-region t P4P4@$ L`   PH  PP , @$ 4, 4 t< @ P L  @  r sShell command on region: P p\  PT   vLj1 ` W  & - - )u!  q ) p=K҉  & q V)q !"t!)  swapbuffermark-c*Shell Command Output*((Shell command completed with no output)tt@,@4P P48D LL 8h    P  PPD universal-argument PD 9\ @T  P PL   ( r U "r #+l  c-u argstartcharprefix-arg-internal Pt~ص   Pd  PP< ( 0 $ P D Զ  ! W [ = ‰ U5[‰r! Y? X` !M N" Z\‰r6 j C~ !w "~U~ˉ )H 4 sign$ P\x~-09~ <  P@  PP8 t PT d c @| Pt  Pl Է   # ķ t Pt ̷  P  PP\ t P   @ P  P d 4  #$ T  Pt-< \  P  PP forward-to-indentationt P   @ p  P    !!и   t Pp    Pȸ  PP backward-to-indentationt PH X Sx @p ph  P` Թ   [!! Ĺ  t Pp  ̹  P  PPP  kill-line t P  , @$ *P  P ĺ l +`!!'m"!%!' `"<  [ ]*$ t P ؽR\t    P4  PP  kill-ring kill-ring-maxkill-ring-yank-pointer kill-appendL< before-p P$  l  @P@ P"T  PL4|t   PL  PPD  @ P Ļ  @ܻ *rԻ  P̻ T   ˆ " " D copy-region-as-kill@ Ph( L  P  PP kill-ring-save @ Px   @ r  P P  7ň= " W", " B G V, S ""ȉ  @  @Pd PxH|T H  P  PP append-next-kill P  @ P   ˆt ÉÉ ؽ  P   P  PPx rotate-yank-pointert P  g@ @8 p0  P( ؾ x !Ĉ G!!  GZ\" ")P Ⱦ Kill ring is empty Pxt PP~P T~ о  PH  PP yank-popt P  ( @ *p  P  p 0ň=? !Ɖ` W` " !`! @c . )8  beforeyankPrevious command was not a yankset-marktx P,P h@LĿ   P0  PP , t P$ < \ @T *PL  PD   *ˆ< Ă=ƂS!`! @c:) l   tx Px~L   Pd  PP4  insert-buffer P  D @< *bInsert buffer: $  P   0Ĉ! !qed) #`) !+T  newmark ,@h PR@   PL  PP append-to-buffer , @ P $ X @P BAppend to buffer: r4  P,   Ĉp !q #))h  oldbuf,@ P@   P`  PP prepend-to-buffer , @ P  D @< BPrepend to buffer: r  P  p Ĉp !q #)))T  ,@ P@x   PL  PP copy-to-buffer , @ P   @ BCopy to buffer: r  P  L Ĉp !q  #)))0 | ,@ P@T   P(  PP  P    !     P  PP ` P  P $  p# @ `, H  P  PP  mark-ring mark-ring-maxset-mark-commandt P  + @ P  P l  ?  ?! b \ No mark set in this bufferpop-markt PP  8 d  P  PP  location4 nomsgH P|  y  G ? + ! B G V+ "@" S "" 2`! F F VF! x Mark set P4HP TH|@ ,   P  PP  P (  *) !C"@\!@" ?$ A    PP@    P  PP exchange-dot-and-mark P\  t @l  P Pd     ? !`! b)  omarkNo mark set in this buffer PpP @   P|  PPT  next-linet P( 8 mX @P pH  P@   0ˆU*`! `Uh=? c& b!)-!‡h  opoint line-movet P    P`  PP0  previous-linet P , OL @D p<  P4  l  [!\  t Pt   PT  PP$  track-eol goal-columntemporary-goal-columnt P  h e= =? lɂi !?* !Z VD!!! S* WZ! TE a !Ƈ  t P'xR p   P  PP set-goal-columnt P  [ ( @ P  P  \ ˆ‰!i! "‡8  No goal column?Goal column %d (use \[set-goal-column] with an arg to unset it)t Pd 4x    P0  PP transpose-charst P $  D @< *P4  P,  p ?l!!"T  transpose-subrt P8     PL  PP transpose-wordst P    @ *p  P \ , " L t P8 P4 T  P  PP transpose-sexpst P   @ *p  P   "  t P8     P  PP transpose-linest P 0 P @H *p@  P8  l "`  P t P|   U m !!  t(   P  Pt P8 t    PX  PP( mover D t P<    U= "` "` b "` "` ) Vv "` "` "` "` b S> W "` "` "` "` Tw,\  start1end1start2end2transpose-subr-1    t  P( L`   PT  PPL  P  ? ^ ]V ! " " " b c W- 4 G GZ\b G! c*  word1word2"Don't have two things to transpose      P4 h\   P  PP comment-column comment-startcomment-start-skip comment-endcomment-indent-hookindent-for-comment P8 &X @P *H  P@   ~Lj!?!} `) #E !8!bE!"!"`i!UZ be!` " j t b "|cc),h  eolposcposindentbegposNo comment syntax definedmove ^ <     P x  Pd P$  8P $X (h`   P`  PP0 set-comment-columnt P  8 @0 P(  P   >=!=5 ! !!bi ") =i "H   kill-commentComment column set to %dt PP ( x~ $     P@  PP t P( 8 X @P PH  P@   Bň !V@ ` #-!b!` ")) 7!S )h   t P 4P P@ $    P`  PP0  backward-wordt PD T 8t @l pd  P\   [!  t PP   P|  PPL  mark-wordt P   @ p  P ` 0  Š!`)! P t PP8 X  P  PP  kill-wordt P   @ *p  P    `!`"  t PP   P  PP backward-kill-wordt P( 8 X @P *pH  P@  t [!h  t PT |   P`  PP0  fill-prefix do-auto-fill PH p ` ! iY!!hX*gX*gU*gU1ÂTee#<!oBnP #P!! `))bnel?)!`U){ b )) 8  fill-point [ ]\|\z[ ]\|\z kinsoku-shoriindent-new-comment-line \ P4P       @  P  PP comment-multi-line Px 1 @ *  P   Ĉ! ?`!`"R`!` "hX;gXL U?Ll?Lm?Qc*ck`!#)! lo? `!#)! s bi`!"))        "? ?! c!  G\  l? c! !+c *  comcolcomstartwin &  , P@P 4P4 ( < d  |   hp $8p  x   P  PPp auto-fill-modet P   @ P  P  @ !ˆ ? ? !Vł‰ ! p $t P  dPH x  P  PP turn-on-auto-fill P   !  H    P  PP set-fill-columnt P ( H @@ P8  P0  t ˆ ! i"X  fill-column set to %d\t PxR|    PP  PP set-selective-displayt P  q$ @ P  P  h .È= !  ! !""""4  1selective-display already in use for marked linesselective-display set to .4Pt PPp  P (    P,  PP t P0 @ U` @X PP  PH   ˆ ? ? !V !p  t P dP   Ph  PP8 blink-matching-parenblink-matching-paren-distanceblink-matching-open P<   `eTV`Zf!"` +e` Z] "̏) R f!"R Sf fH""" ZÉ b m! b׊!n?) ` T" !! `"" ! ?!)+L  oldposblinkposmismatchL  "@ l   xT t  PP     P   P  P|  P Matches %s  Mismatched parenthesesUnmatched parenthesis"    P  <~\8  $~,  p      PD  PP4  keyboard-quit P h @ P D  " 4  PؽQ <  P  PP  set-variablevar8  valL  Pp  8 @0  !"!D+  myhelpSet variable: ( `  PP  P @ )Ð!!"O!!%!J!)‘  *Help* Documentation:  Current value: 8  PH (PT  HP@Sl    P  PSet %s to value: 8 ` T     (  P  P  T Ĉ LH x 8 ` L  P\   P@  PP mode-specific-command-prefixmode-specific-maphelp-map help-command help-for-helpdescribe-copyingdescribe-distributiondescribe-no-warrantycommand-aproposdescribe-key-briefly describe-keydescribe-function view-lossage describe-modeview-emacs-newshelp-with-tutorialdescribe-variable P, < @ P4   ZĈ! !!!X!!!ĉ "!eb! ` `" !e`"#!eb!)L  fileauto-save-file-name ~/TUTORIALcreate-file-buffer~/TUTORIAL <<8 P` 8   h(x~ Td   PD  PP$ key P   @ kDescribe key briefly:  P  D .ˆ !?! !", !9(+!#)  defn%s is undefined%s runs the command %s  PxRX @l <   P  PP print-help-return-message Լ P  kd L $!?# ! ɂʂ!!" T 3Type \[delete-other-windows] to remove help window.3Type \[switch-to-buffer] RET to remove help window.QType \[switch-to-buffer-other-window] RET to restore old contents of help window. Լ4P,$(4`T    \  P  PP  Pt  @  @ kDescribe key:  P   ;ˆ !?! !"9Ȑ!!!2!!5! )  %s is undefined*Help*: not documented PxR @ (P( 0 ,D   P  PP|  P   @ P D  ˆÐ!! !! 4 *Help* Mode: H  P P , <  P  PP  P\  l @ Pd    "!|  find-file-read-onlyDISTRIB P@`    Pt  PPT  P )! @ P p 0  "!eb ` COPYING P@`8 D h  P  PP  P }! @ P    !!)   NO WARRANTY4 P  d   P  PP  P$ !4 @ P,  T  "!D  NEWS P@`\ h   P<  PP  P " @ P h  -Ð !!qeb!m?'# ) X *Help*  P4P P@2 (, `  P  PP  P 6" @ P   /ň!rUUʋ! A"A * !, ))  JA B C F I K L M N S T V W C-c C-d C-n C-w. Type C-h again for more help: | A! !ceb>@> >& d!3Ђ4"r)4  *Help* ?     P  P  P-A B C F I K L M N S T V W C-c C-d C-n C-w%s:  or Space to scroll4P        4   P,  P4P  P ? 4   P  PPx function-called-at-point P8 < 0 ( | +e`Z]d"!!p!9'!')))L  obj hH PTS   PP     P   P  P  P PD   0  P(  PP Լ PH X 'X @P  , " $ "&) !C+p @ fn Describe function (default %s): Describe function: |4PL tT P  TSp Ԁ H  Ph  P`   "ƈǐ !! ! !!! h  *Help*: not documented|4PL tԼ P (P  ,   P`  PPP variable-at-point P< T H ,  !!p!9!))d  'h p @S   PP     P   P  P  P P\   4  P@  PP8 variable P\ l 'l @d  , " $ "&) !C+ T v Describe variable (default %s): Describe variable: 4PL t P  @Sp Ԁ \  P|  Pt   HLjȐ !! !?! J! ! "?!!B!) |  doc*Help* 's value is void.Documentation:not documented as a variable.4PL t P (P @S x  HP4 ,@   Pt  PPd L P  1( @ sCommand apropos (regexp):  P  4 È!!) "!) x *Help* L P< ,8TH   P  PP delete-auto-save-filesmake-backup-filesbackup-by-copyingbackup-by-copying-when-linkedbackup-by-copying-when-mismatchbuffer-offer-savefile-precious-flagversion-controldired-kept-versionstrim-versions-without-askingkept-old-versionskept-new-versionsrequire-final-newlineauto-save-defaultauto-save-visited-file-name save-abbrevsfind-file-run-diredfind-file-not-found-hooksfind-file-hookswrite-file-hooksinhibit-local-variablespwd P 8 @  P P L   " <  Directory %s P $ D  P  PP cddir Pl | 9 @ DChange default directory:  P \  *È! =?!!?#"& L %s is not a directory   P`܎$PP  T  P  PPt  load-file P|  E9 @  fLoad file:  P     !$   P4P`   P  PP  load-librarylibrary P< L t9x @p sLoad library: \  PT   !   P   P  PPD switch-to-buffer-other-window P  9D @< #BSwitch to buffer in other window:   P   d  È ")T  ,4P Pl   PL  PP  find-filefilename< P  : @  FFind file:   P l $ !! \ find-file-noselect< PPD d  P   PP find-file-other-window< P  : @ FFind file in other window:   P 4  !! $ < PP  ,  P  PP < PD T ; @ fFind file read-only: d  P\    È!‰  <(R4P P(   P  PPL find-alternate-file< P  ;H @@ FFind alternate file: $  P   :ň ? "!?!p !ʼnЎ !) !+X  obufofileoname$Buffer %s is modified; kill anyway? Aborted **lose**, p=  ! T 8hx4 \  P   P(R8 P<P (P x d T(l   PP  PP  < P  <p    !" !) ` lastname<8 @ h  P  PP <  nowarn P  b= @ ~!! !"}! [ X !X!??"X !J҂K!X q")z! q ؏! ?") * t buf%s is a directory.File %s no longer exists!CFile has changed since last visited or saved. Flush your changes? ?File has changed since last visited or saved. Read from disk? revert-buffer< "0 X <4PD `  P\     @!? A)x  hooksP4PL(   Pp  Ph  Pafter-find-file<8P4P`PPP  Ph P  (  , |  P  PP  P warn@ P  \>@ \  !? Ây?8 "'ς5lj4Ђ5Â^?Fljт^ !Pӂ^ !!]Ղ^ o ! o"* y!! " 0  not-seriousmsgmake-auto-save-file-name2Auto save file is newer; consider M-x recover-file (New file)File is write protected#File exists, but is read-protected.,File not found and directory write-protected*File not found and directory doesn't existauto-save-mode normal-mode(R84 PTh@4PP`(|   x 8( \ ( 8  P  PP X ( PP h ?x @ Pp   ˆ !Ǐɏ  err    set-auto-mode   PPt  !" d !File mode specification error: %s$ <L l  P  P  P ?!  hack-local-variables(   PPL  !" < File local-variables error: %s <$ D  P  P  P ( P(\P |  T \   P  PP`  P A  eb!Ί `)#!`Ί `)#!!`b #{b #)x!` #k!m b!`" " !P!! =! ? @@" @A A) !*)+  modealist -*- :mode:;-modefile-name-sans-versions @ 4P4 8  Pp      (Ԁ4 ܎4H   P  PP  forceH P  B  P VdbdZe]##) ?) ) !"!)T  !lN` `" !bnb` `"tG!  ! S !!!!!!` !l!! `"  !  !"‰N!!p!!!  ! l! =(!!P!!N =D "=!A!N ! L+-)  continueprefix prefixlensuffixstr Local Variables:/Set local variables as specified at end of %s?  [ ]+Local variables entry is missing the prefix^: &Missing colon in local variables entryend^: /Local variables entry is terminated incorrectly-moderoot*Ignoring `eval:' in file's local variables?44P PH8\p8 L     p $t \P 0 8 Ⱦ4d l t |  (Ԁ| x  `}  - P  PP set-visited-file-name< P8 H  C @x FSet visited file name: X  PP   ~"! ")?)! R ! =A ! ! !Q !) !!m u t! }!  new-namerevert-buffer-functionrename-auto-save-file< P8 `L4PȾ, `phT܎4xt}tdl   P  PP@  write-file< P ( VDT @L  FWrite file: 8  P0   ˆ?"!! d   save-buffer<4P PȾ d$   P\  PP   backup-buffer P D  P 32 ?2 !2 !"H>2 GW+ O"?2Ώ  -` l P/tmp/ < !@AˏƉ $$ "!8 8Џ A' ,| p  backup-info backupnametargetssetmodesfind-backup-file-name Q0 !0 0  !V0 0 ! 8/ 8 ")= $Pԏ #!(  attr file-nlinks !  `   P\      P   P  P  Pp8 4H`4P<x <~ P $ d,   P\`  !!! $ P  ~/%backup%~5Cannot write backup file; backing up in ~/%%backup%%~ `84P`  ,  X  P  P  P%Delete excess backup versions of %s?  @!  t   P\     P    P  P  PL8`t`4P P  h p   $ x  P\     P   P  P  P `8|xX Ⱦh  Pt     P  PP  P0 @ 7F  - =""G+"+"+GOP   ;[0-9]+\' .[0-9]+\' \.~[0-9]+~\'~\'  ܎H       PH  PP8 make-backup-file-name P0 @ F \ PP | ~d l   PH  PP8 backup-file-name-p P  [G  "  ~$H    P  PP | P$ 4 1H"  {= !Cz !P G !" "" B"5V G  $?O !Cx T!RVw " S "" )"B.D "  base-versions bv-length possibilitiesversionshigh-water-markdeserve-versions-pnumber-to-deletenever.~backup-extract-version~P!  P! " !  !R! ! .~~|! }! ! !  P!  P!|(<Pdx Pd! d4}~x~}! ! T " "  P<  PP, | P" @# "  # ! U O!Ň" 0# [0-9]+~$|H" $}# 8#  P"  PP" < PP# `# H# |# !A@p# # <x# #  Ph#  PPX# #  P# # 5I# @# p#  P#  % D$ Aň V  =? > ʼn& . " ? >?ʼn+# $ modplargel$ @ PSaving file %s...basic-save-buffer$ @ P ` PP8Pd$ t$ 8$ $ %  P#  PP#  P$% TN & L%  ď 4% % h% !\% % Lp% %  P\% % % %  P% %  P%  P%  PL PT% % % &  P,%  PP%  P$& N4& @ P,& , \' È  !" ! ! !?; !"!8Ɖ;!p!R !?R!R!\  dVdSf"= "!dbc)     @! ? A  ? P 돈 ed %É )+ ? ! "ed %*) *!D&  ,  tempsetmodesdonerenamenodeleteFile to save in: 0File %s is write-protected; try to save anyway? ;Attempt to save to a file which you aren't allowed to write<Disk file has changed since visited or saved. Save anyway? Save not confirmed-Buffer %s does not end in newline. Add one? #(   # !(  ) 84Pd( )  P\h) 8) É,) X)  P,4P@) `)  P$)  P)  P)  #  ɏ) `* ) !) ) ) )  PP * ) ) *  P* *  P)  P)  P 84P, P) (* 0* h*  Px)  P*  "* * 8x* *  PP* * * *  P* *  P*  P*  P(No changes need to be saved)78 P4P`tp,P`@' (' P' 0( t( 8|<~ ( ((( ( p) p* dxx* * $+ (+ ,  P<&  PP& save-some-buffersL, t`, exitingT PD, p, 6O, @, P,  Px, . 8- ˈ  Z @ !P q ( ( ( VOƉOH B "G "!O֏)) A Ɖu "!{!ˉ !!*, .  consideredabbrev-file-nameSave file %s? Save buffer %s? -  - - $- -  PP. - - -  P- -  P-  P-  PSave abbrevs in %s? write-abbrev-file(No files need saving)h8T\4Pt$| PP8h- |- (-  . . H. P. l. .  P,  PPh,  not-modified P / O0/ @ P(/ / P/  !!@/ / Modification-flag cleared PX/ dx/ /  P8/  PP/ toggle-read-only P/ P/ @ P/ 40 0  ? !/ $0 (R PdP 0 ,0  P/  PP/  insert-file< PT0 d0 KP0 @0 fInsert file: t0  Pl0 0 0 ˆ !`A@\!)0 0 tem< P0 0  P0  PP\0 append-to-file,1 @$1 < P1 41 Pd1 @\1 r FAppend to file: D1  P<1 1 1  Ĉ $t1 1 ,@<4P P1 1  Pl1  PP,1 1 t1  noconfirm  P1 1 Q2 @2 P 2  P2 $4 2 Ɉ #` ?' ' ' !'! 0 2?@!!?P" ["! j ) ?") d^b!+,2 4  auto-save-p file-nameBBuffer has been auto-saved recently. Revert from auto-save file? 3Buffer does not seem to be associated with any fileFile %s no longer exists!Revert buffer from file %s? t 4LH8(R P4P(2 P$3 \3 |3 T,3 4  P$2  PP1  recover-file PH4 X4 S4 @|4 FRecover file: h4  P`4 7 4 Tň!!" ) "?( "IЋF"! ")!I!)ʼn!4 6 auto-save-file-name-p%s is an auto-save fileAuto-save file %s not current5  =?Ɛ ! & "!\5  6  *Directory*ls-lRecover auto save file %s?   PH܎5 $5 5 5 5 6  PT5  PRecover-file cancelled.<Auto-save off in this buffer till you do M-x auto-save-mode.H8  P4P(RL`pP5 |05 6 P,$6 @6 6 6  P4  PPP4 kill-some-buffers P07 JT@7 @ P87 P8 7 DÈ B@ ! "?8 H"8 !/ς0#!8 !*A)P7 @8 Buffer %s %s. Kill? HAS BEEN EDITED is unmodified P(Ⱦ7 <~ 7 P7 7 7 H8  PH7  PP(7 t P`8 p8 T8 @8 P8  Px8 9 8 Lƈ ? ? = < ! V6 - - ?4 6 tIĜH"8 p9 Auto-save %s (in this buffer)onoffLt4P8(R PxR|8  9 (9 09 x9  P8  PPh8  P9 U(: 9 ,  " " "?" "?"!* #)9 : osaveL84P|9  :  P9  PP9  P@: U: p: !!R Q!P: : ##%8x: `: (: :  PH:  PP8: < P: : V0; : ":  ; ^#.*#$<H;  ; (;  P:  PP: list-directory-brief-switcheslist-directory-verbose-switcheslist-directorydirname; ; verbose P; ; W< @< <   ł $D); |< pfxList directory (verbose): List directory (brief):  P@< 8< X< <  P;  P; <> ,= ˆ      !6ʉ "6 P  ! Ґ !! ! e  &} !   !R&)*< ,> switches full-dir-p/$/ *Directory* Directory ls-cexec ls   P$84PPHT= \= `d= Pt= x$= = = = = 4>  P<  PP; save-buffers-kill-emacsp> t Ph> > Y> @> P>  P> > >  ˆ" > > t4P P@> >  P>  PPx> ctl-x-4-prefix P ? [0? @ P(? x? L? !@? h?  P(T? p?  P8?  PP? indent-for-tab-command P? \? @ P? (@ ? = !? @  insert-tab P(?  @  P?  PP?  P@ h@  c i "T"jH@ @   ~~p@ @  P@@  PP8@ indent-rigidly,@ @@ t P@ @ Q\A @A r p@  P@ A dA DĈb  bn!`W= `!`"l4 \]")!")A A  @, t PhplA  tA A  PA  PP@  PlB B ( U' `!`"j`)` W& b)A \B epos p Php,B 4B dB  PA  PPA indent-region-function indent-region,B @B t PB B g]B @B r PB  PB C C ň?A  #> b  bn&!` W8 !!' ")! b  bnZ!` Wz`!`"lr"![ ")B C  t,@ P(  hpC C C  PB  PPB indent-relative-maybe P$D K^4D @ P,D D PD !DD D indent-relative4P PlD D  P> " "` UMi)) z `!`" "`Vpb")| *D PF  start-column^[^ ][ ]^  tab-to-tab-stop (  P4P@E \E pE E h <E XF  PD  PPD  tab-stop-listedit-tab-stops-mapedit-tab-stops-note-changesedit-tab-stops-bufferedit-tab-stops PF `G @ PF H G Èp!! !!É!ʼn @@"cA')cWb\ccTHcVzcSf)cebG xH tabs *Tab Stops* 0123456789! To install changes, type C-c C-cd P4PPG `}: 0G G G H H  P G  PPF  PH aH @ PH hI H /b #iB )p !!)!H XI :Tab stops installed  P4PPH TI I `I  PH  PPH  PI aI @ PI  J I -È  i @Y A ) @j+c)I I  P P I J  PI  PPxI split-window-vertically@J t P8J PJ YpJ @hJ P`J  PXJ J J  !"J J  Pt J J  PxJ  PPHJ split-window-horizontallyJ t PJ  K Z,K @$K PK  PK K PK  !#[K @K pK  PK 0L L ˆ"K  L t4P PL (L  PK  PPK shrink-window-horizontallyt P`L pL [L @L pL  PxL L L ˆ"L L t4P PL L  PL  PPhL Info-directory news-path9The root directory below which all news files are stored.news-inews-programProgram to post news.mh-progs Directory containing MH commandsmh-libDirectory of MH libraryrmail-file-name!Name of user's primary mail file.rmail-spool-directoryhpux usg-unix-v unisoft-unixrtusilicon-graphics-unixbName of directory used by system mailer for delivering new mail. Its name should end with a slash.sendmail-programProgram used to send messages.term-file-prefixIf non-nil, Emacs startup does (load (concat term-file-prefix (getenv "TERM"))) You may set this variable to nil in your `.emacs' file if you do not wish the terminal-initialization file to be loaded.manual-program"Program to run to print man pages.manual-formatted-dir-prefixzPrefix for directories containing formatted manual pages. Append a section-number or section-name to get a directory name.manual-formatted-dirlist6List of directories containing formatted manual pages.+*Default name of file to read abbrevs from.normal-top-levelcommand-line-processedinhibit-startup-messageinhibit-default-initcommand-switch-alistterm-setup-hookwindow-setup-hookinitial-major-modelisp-interaction-mode P|S R " !!!!!ʎ )|R lS Back to top level.PWDR !  !R S (R S  PR  P command-line 4PR ,R $S 84S tS  PtR  PPlR  PW T  A Ă   "Љ ?&k@":"FAf"S"cA@Aflj) ؏!q!) ?   !Q#!     P#? "   O ĉ *! !+S  W initargitermhyphend-q -no-init-file-u-user,U %$ =ȂQ$ $#)U U sys$login:.emacs~/.emacsdefault L 4P P܎4U LU TU `U lU U  PPV U !U V Error in init fileU U V  PU  PU  P *scratch*-winTERM [-_][^-_]+$command-line-1&L4 P`4P4txT ȾT T T T PT V  V (|0V ,Type C-h for help; C-x u to undo changes. (`C-' means use CTRL key.) GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for full details. You may give out copies of Emacs; type C-h C-c to see the conditions. Type C-h C-d for information on getting the latest version. Type C-h t for a tutorial on using Emacs.Type \[help-command] for help; \[advertised-undo] to undo changes. (`C-' means use CTRL key.) GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \[describe-no-warranty] for full details. You may give out copies of Emacs; type \[describe-copying] to see the conditions. Type \[describe-distribution] for information on getting the latest version. Type \[help-with-tutorial] for a tutorial on using Emacs. nemacs-version Type \[help-with-tutorial-for-nemacs] for a Japanese tutorial on using Nemacs. For any other Nemacs specific information, please read NEMACS.???.-f-funcall-e-l-load-i-insert-kill ^\+[0-9]+\'E4 P`4P(X \(DY (`Y Y  Y Y  Y  Y Y Y 4 [ \ \ P] dxȾ`] h] x] Ԁ] ] ] ] ] H] }(`P~] ^ , PXW  PPPW _ t P_ _ G8_ @0_ p(_  P _ _ l_  ‰`"!bW H_ _  buffer-endt Px_ _  P@_  PP_ _ t P_ _ FH` @_ p_  P_ T` $`  ‰[!` D` t P ,` L`  P`  PP_ t Pd` t` H` @` p`  P|` ` `  Š!`)!` ` t P ` `  P`  PPl` a t P` a H0a @(a p a  Pa a \a  ‰`#!b@a a t Pdda a  P8a  PPa a t Pa a BIa @a pa  Pa 0b b  ‰[!a  b t Pb (b  Pa  PPa t P@b Pb Ipb @hb p`b  PXb c b -ˆ V Ă  "+`# !b Z)b b inc t P<~db b  Pxb  PPHb t Pc  c VJ@c @8c p0c  P(c c \c [!Pc c up-listt P(pc c  PHc  PPc t Pc c Jc @c pc  Pc \d d -ˆ V Ă  "+`# !b Z)c Ld  t P<~d d Td  Pc  PPc t Pld |d Kd @d pd  Pd d d ˆ` !`")d d t P d d  Pd  PPtd backward-kill-sexpt Pe ,e 4LLe @De p*Help*Making completion list...%sdone"@t4P P4'(TSk l h4l ԀTl  `l 4ll l l 0m  Pj  PPj Pm  PHm `m Pm @xm ppm  Phm 8n m Wˆ ĉVm?, #!‚#dbS W5o?V! #K!bMebT-m (n  x P4P8m 0n  Pm  PPXm Pn  PHn `n HQn @xn ppn  Phn n n  ‰[!n n  Pn n  Pn  PPXn n t Pn n Qo @o P o  Po o do 3 ! ĉV!&W&S! "!,o o t P4P lo o  P$o  PPn o t Po o Ro @o Po  Po p Tp Sˆ ! ĉ V !*W*S! !); `!lHo?N!`")o p  tx P |\\p p  Po  PPo  Pp vSp @ Pp q ,q ELj` ! ` ` " " " $.)p q afterPage has %d lines (%d + %d)@x P\xT@q `q q  Pp  PPp  what-page Pq Sq @ Pq r 4r ,Ĉ `b #T` "T#*))r r Page %d, line %d x4P P| x x Register does not contain textL t P(xRSPPLx Lpx x  Pw  PPw x ,x @x y  delete-flagh Px y WDy @eb !e G!`)b#m~ł!cnb m?!hWhWgXgWc b!#!!h>)\!"db cebm? ! iY !młn!hX+gX+gU+gU3 Eee#>!! iYn!dd#]!! iYndb?z   !` !`   "!h>)  \U?hXgX  Wm?h> T Um?c*cm?  "? ci m?! !)) 4 fpre prefixcol (fill-prefix too long for specified width [.?!][])"']*$   * ])"'.ب ? ! P [ ]\|\z[ ]\|\z. ? ! P.( ?0 ! Pjustify-current-line6t%%%| \ P4P%,@%pT p\ tPd \h8    $Ĩ Ш       &T < 1 P  PPإ t PT d r @| Pt  Pl   ˆ n !` ` #))  @t P(%   P  PP\ t% %  % P , 5sL @D r P<  P4   3ň "ebm?1`!`!` Y*` #, b* )\ ܫ initial t%%&@% P%   PT  PP$  ascii-char ascii-space ascii-symbols ascii-numericascii-English-Upperascii-English-Lowerascii-alphanumeric kanji-char kanji-space kanji-symbols kanji-numerickanji-English-Upperkanji-English-Lowerkanji-hiraganakanji-katakanakanji-Greek-Upperkanji-Greek-Lowerkanji-Russian-Upperkanji-Russian-Lowerkanji-Kanji-1st-Levelkanji-Kanji-2nd-Levelkanji-kanji-charaletterkanji-space-insertablespace-insertablefind-space-insertable-point P d #!‚L   ( P4Pl   PD  PP<  P sĮ @ P   È G!!` `" b#I!!h>)?Ղ@\!"# b#_!cMdb iZ V "\V db !S})c!Sn*))Ԯ  ncolsnmove  * ])"'.ԯ ?ܯ ! P [.?!][])"']*  H(|  P4P\\(p  h$ ̯ 8  4(~    P̮  PP fill-individual-paragraphs~а ~ذ  justifyp( mailp( PȰ  t4 @, r P$  P 4  VȈ "eb!m?R` `" `)` = #=!. `UM` # b*)))D $ fin [ ]*[^ ]*:| ~~(,(4P( Pp  %̱ ,  P<  PP c-mode-abbrev-table c-mode-mapelectric-c-braceelectric-c-semielectric-c-terminatormark-c-function indent-c-expc-indent-commandc-macro-expandc-mode-syntax-tablec-indent-levelc-brace-imaginary-offsetc-brace-offsetc-argdecl-indentc-label-offsetc-continued-statement-offsetc-continued-brace-offsetc-auto-newlinec-tab-always-indent P Mz @ P е  ӈ !։׉  !!P!!ʉ !ۉ !ʉ !܉ !݉!މ!߉!!ʉ!,  C^$\| c-indent-line/*  *//\*+ *c-comment-indent c-mode-hook#( H(t)<xP4P< d ( P x  P|̏ `}ȴ <*   P*d*, ȵ  P$  PP  PX  ! Â!iT]) H ^/\* ( \  ( P  P  PP t Ph x n @ P  P   eĈ ?&l&!n)& % Â&ąL c > `Z GTb!)^b !!)c !!) x  insertpos x*t*4P Pt, <*( 4   P  PPp t P  ȷ @ P  P (  ˆ ! !!ط  *t P)    Pз  PP t P8 H h @` PX  PP   ƈ` ?TlT !gUR =7!?7!!` W)R ` " 8Q 8Q 8))? c r ?r `Z {Tb!)b !!) !!*x Թ pps case[ ]c-inside-parens-px*@tt** Pp( #:\0 P<**( X ܹ  Pp  PP@  P   ܺ D ` `"db`#efU)) l d(L t  PP     P   P  P|  P P  Ⱥ   P  PP  d" P , @$ P  P   Wňƈ?   `!` b!`) V; $+V ?L!n?)T V <  Indent current line as C code, or in some cases insert a tab character. If c-tab-always-indent is non-nil (the default), always indent current line. Otherwise, indent the current line only if point is at the left margin or in the line's indentation; otherwise insert a tab. A numeric argument, regardless of its value, means indent rigidly all the lines of the expression starting after point so that this line becomes properly indented. The relative indentation among the lines of the expression are preserved.# d"x"@(* P <* "     P4  PP  P, 8l  !d`Z `=" =/ !;Љ!?)oh>ӂ\) f" Tbib !h=h=`Zf=`Zf!>h= ! !h>?" !ib!g=) # b! !!fgUC!bgUU!#b ` )!-`W} `V|  Z}i))n !\ !nӂh=! #,)   basic-indentcolon-line-end c-backward-to-noncomment ^[^ #]\sw\|\s_.*(, ; P) ; } Pw _ P$c-backward-to-start-of-continued-exp PL ,T ;\ }d { P %#\|/\*\|case[ ].*:\|[a-zA-Z0-9_$]*:*/:>"4 P",#"*))4P*+))))p {+  \  8   <~,:' ,+D d~l t #/  P~)  $ P  PP  P q $ 7 !gU!` !#2 2!Tbi)*   star-start  /\*[ ]*@@+4P Pp< *D L $\   P  PP limT+ P  4 S ?Q "`` \Y#!!). #M !!??` X KbM *  stop \*//* #h+T+ PH \T \  pd l t   P  PP T+ P `  hU ! `XTb! P  T+) p$ , X  P  PP  limit|+ Pp  l  H `) !?F!!) TB!6 SB`WBˉb* \ if-levelelse\bif\b |++4 PP~4\  $ d  P  PP  P C @ P   `! `!   P   P  PP|  P  @ P  ` 0C`C`     !)m?; ?,?WmVщ?` `%@AA@AA@YAA@ 8 8!щIXщ (8VA AS" WB BT @? A@!`)"!!l0(@9@Y @f"M@ ! gU  !h>? @!i {|#   !  @ )@@[! ")!!!!) \] gU Z gU \ i U gU ` `" j!( `)#( 4).(   contain-stackrestartostateat-elseat-brace else\W P , ; } : { Pcase[ ][A-Za-z]:; $ P+4+H$\$"+p$#+ < $$$4P)*L )))P  <*<~4|p {\ + ,+d~**   }#h    P  PP search-string-charsearch-string-char-promptcurrent-isearch-messageforward\<   P ` < ~`  X  "V`    ܋GVUQU`"e!h!tb{ #. P  search-stringsearch-messagecmdssuccesswrappedbarrieradjustedslow-terminal-mode other-end small-window found-point found-startisearch-push-stateD Í !`0   search-done vu Yp    ?p`!W>[TD TZ")WjZ! `" " "m! b z{r Ɖ Y "p = GU""pU b"? p==o==H @"0 ABC !@#EE>e?dbN?` @"gD E pUA?  p==?bF`=G H!`)") P ABC!@#P)=I!"P!)   P  P) HJ#"HKUHLWHJM"HJN"W"#UlO!!{NU{P Q!P B!P??Ƃk   R> STA@8$$$$]$^b) U=  b1?1 ?1ƁVW1X!^XE%X!kM ?fZeYT#bD E )d t wordcsisearch-messagenonincremental-search isearch-popkanji-word-listisearch-search*t ? P !  p<\   PP     P   P  P  PZ4P<$=8=h P ܂< p<\<<h|T@<<<<== <4<H<=4\=x  H4t==ؽQ=p< =>`=P,<~  l ||  8~ | 3 PL=8=t=\    P(  P#p<<< P<4P<<<4<4 =$=8=L=T@ @ ~`= <~ X  P  PP  c-q-hack> ellipsis(> Pp  4 u ͏ É ς $-҂.8Ԃ9 DւEPQQ& H!I    n r "))  m\  `#ÉL  p<4P4 Pd   PP     P   P  P  Pfailing wrapped regexp I-search: backward: ^Q []%s4(>< P<><\<<>H<D        ( 8 @ H  P X   P  PP  P @ 4A@ @ A@ 8 8 8 8 8 8 AA@b)  cmd<P>p<<<\<=4<<P   P  PP  P,   ` & B   <p<<<\<=4<< $  P  PP  P t ""Ǐ ! @8 @8bL  lossage B   ʂ˂$ #̂$$ @ :!=!) ,  P4<\<p<4P=($8 4  PQ \ ɉL | < Pd   PD  P< D 4<   A@"ĉ , &\`Premature \|\`Unmatched \|\`Invalid incomplete input4d>H   4  P  P  P P4P<<=d>  L   PD  PP< \<  P  t ΂ς('Ђ(щ"r  =JDӂEԉN   =c_Ղ`ւuqׂr؂~قډ! GU   D B ".  Regexp search: Regexp search backward: Search: Search backward: %s Word search: Word search backward: ԼL4P\<@ P|       ,(   P  PP delete-non-matching-lines keep-lines P  Ą8 @0 +sKeep lines (containing match for regexp):  P   Jˆn !`m?G #?"d"9!b `) W8 ")!`) ))H   , P@ h$   P@  PP delete-matching-lines flush-lines P$ 4 o @x ,sFlush lines (containing match for regexp): D  P<   (m? #&Ċ!b `)!`")    P4Ph$   P  PP,  count-matcheshow-many P< L   @  sHow many matches for (regexp): \  PT 8  4Èm?` #, `U$!(T")* ( %d occurrences  P4P  0  P  PPD occur-mode-mapoccur-mode-goto-occurrence occur-buffer occur-nlinesoccur-pos-list occur-mode P KX   !ʼnƉ!!! H Occur > H|T? `}?,?@? P  P  PP  Pp I @ Px   L? !?!e`"S W* Z: V9 "\:" 8!!b*   occur-number1Buffer in which occurences were found is deleted.? P@?h?,?4P`(P ~T~8   P  PPh )list-matching-lines-default-context-lineslist-matching-linesoccur  nlines? P ( d @\ sList lines matching regexp: P8  P0 P  k̈ ! p e`"T`)Րqc! !$   ̉ ) =_db#P! `"\`)W[!`) VT!!`) "G" `"q B !c̉  # Z!W[V "!S"!WF"!T+)!-aq ! tg G"),t @ linenumprevpostagempty*Occur*Lines matching in buffer %3d -------- %d matching lines.0?|?P4P???,?@? P,@ @ @ T $ ((8 (. T?H H pP~P @: ` x H  Pl  PP query-replace-help#Help message while in query-replace\ p  query-flagH@  regexp-flag\@ delimited-flagp@ P X     !"? ? ؂   @ 8 ; !Q ]m?]`!$ `=m!  ? #? U #rU!*UUˉɉU bɉUU  #ɉU3& #ˉɉUN?K #ɉUk` #ˉ UvUɉU!U )!U!!" )!ɉˉɉ*` G . H nocasifyliteralsearch-function keep-goinglastreplreplaceddata\b Query replacing |  \ \@ regexp    P  \  with  p .  4 4@ P  PQuery replacing %s with %s: >@4\@\@@p<@4P@ Pp@H@p@@(Ⱦ4l t@(Lt $ ?`q^ y.,!n dHh$8 H P  P  PP t Ph x Y @ P  P   ˆ ? ? !V !   t P dP   P  PPp edit-abbrevs-mapedit-abbrevs-redefinekill-all-abbrevs Ph Ax @ Pp   ˆ @J!A)  tablesLAL P<   P  PP` insert-abbrevs P o @ P  T ÈĊ @"A)`)!0 | LAL4P P\   P(  PP  list-abbrevs P ۋ @ P 0   !  prepare-abbrev-list-buffer PA (  P  PP  P  .!q @"A )eb! )!P   *Abbrevs*edit-abbrevs-mode LAL4P P dA   PH  PP@  P  @ P  @ Èĉʼn !,   Edit-Abbrevs HA PAH \   P$  PP  edit-abbrevs P n @ P    !   PA   P  PP  P, < @ P4  \  !!L  define-abbrevs4P PAdx   PD  PP$  t P  ߎ @ P  P  p q ebm?#op !!!l?e ! ! !!l?L ! ! F B& "+ )  tableabbrevsexphook^( t P4PAABB8A     P  PP read-abbrev-fileL ` quietly   P  PP  P< qL @ PD T  Eň ! @!!q )! 5 1΂2ς> =Ђ>c,!\ D readonly [-M] *% % *  4P H(R P\ pHP     L  PT  PP4  Pl Ģ| @ Pt    ! !   PC   P  PPd  P  @ P  ,  ! !c!) p  [-M] (R P\4 D@ x  P  PP  P  @ P    !!!   [-M] PhC\    P  PP  P0 @ @ P8  x " !! !!c!)P   [-M] (R P\ S   PH  PP(  P \ @ P  4 &!q!) !!$!c)) | \* 4P P(RpHd\<  D   P  PP  P  @ P  X eb!#9!q )! 1ς2c)) )eb!p#!! =h =h !))!y!c`!`"!G*)  buff-menu-buffer^.S D P4P(RHx pH$P*  h   P  PP  P   @ P X  ~Ĉ!peb#=!!c) =9 >9 B ! S GT" ! =] ! x "! @! A^!,0 H buffmenuothers >H4PHH P(RpH  ~8T P  P(  PP  Pp  @ Px   !! !  4P PpHT8   P  PPh  P  @ P \ , !! L 4P PpH4 T  P  PP  Pt A @ P|   !!  4P PpH   P  PPl  P  @ P t , Ĉ!p !! !+ d  H4PH, PpHT4 l  P  PP nemacs-version-date P  @ P @  ˆt " # 0 %sNemacs version %s of %sI P    8  P  PP mode-line-nemacs-header  %[()%]-- %p-%- kanji-code-p P    ! X X  H\\   P  PP <D visitLIL ,T @ P0 l   ŏ*)l \   %!)   <LI,@ P(8I   PP,     P $  P  P  P P(R4P 4 < d  Pd  PP\ +find-kanji-file-input-code-by-file-contents< LI , @ P    "  ,@    P  PP ,0 @8 <@ ܾH LI P( ` p  ď))` P   &!)   ,@<ܾLI P(8I   PP$     P   P  P  P(R4P Px , 4 X  PX  PPP | resttI Pp        P  PP  programI   servicepI |  P , D  ď))4  p  %!)T   LII P8Ix   PP     P   P  P  P(R4P PL   $  P,  PP$ T  nomessageI P< d O  1"?0!!ǂ% "!ҎՏ),t  return\.elc$ *load-temp* LOADING %s...  ? ? " ! \ LOADING %s...doneI4I< 4 d  P  P q !eb)…!! |  4P   PQ    I4P   P  P  P<؁4PII P4H   l t   (   Pl  PP\ nemacs-lisp-interaction-mode P 0   !     ($ (  P  PP *protected-local-variables*save-protected-local-variablesvlistJ P   '#@!@@!B BA *  J  P@S   P  PP !recover-protected-local-variables  P@  x @@@ALA)X      PP  PPH si:kill-all-local-variables P ol   !Î )) \  ! (  (J 0  P  P IJ8  No-conversion(0) -> Shift-JIS(1) -> JIS(2) -> EUC(3) -> NIL" # @ P# x# <# ? ÂUT !# h#  P4PdPD# p#  P#  PP"  P$$ Change default-kanji-fileio-code. NIL -> No-conversion(0) -> Shift-JIS(1) -> JIS(2) -> EUC(3) -> NIL New default-kanji-fileio-code is returned.# 4$ @ P,$ $ l$ !? ÂUT !D$ $  P4PdPt$ $  P<$  PP#  P(% aChange kanji-input-code. No-conversion(0) -> Shift-JIS(1) -> JIS(2) -> EUC(3) -> No-conversion(0)$ 8% @ P0% % d% U ÂT !H% %  PdPl% %  P@%  PP$  P& cChange kanji-display-code. No-conversion(0) -> Shift-JIS(1) -> JIS(2) -> EUC(3) -> No-conversion(0)% ,& @ P$& & X& U ÂT <& |&  Ph`& &  P4&  PP%  P(' |Change kanji code for the current buffers' process. No-conversion(0) -> Shift-JIS(1) -> JIS(2) -> EUC(3) -> No-conversion(0)& 8' @ P0' ' |' ,Èp!?!%! U!ʂ# T")) !H' ' p no process l4P PP'  dP' '  P@'  PP&  P( Change default-kanji-process-code. No-conversion(0) -> Shift-JIS(1) -> JIS(2) -> EUC(3) -> No-conversion(0) New default kanji code for the current process is returned.( ( @ P( () ( ˆU ĂT !( ) K4P PdP(  )  P(  PP'  P) Change kanji-expected-code. NIL -> T -> No-conversion(0) -> Shift-JIS(1) -> JIS(2) -> EUC(3) -> NIL New kanji-expected-code is returned.@) ) @ P) x* $* +ˆ? !=Â!U‚!T !) h* kanji-expected-codem4P PdPD* p*  P)  PP8)  P* \Display a list of values of kanji-code related valiables with a brief format in mini-buffer.* + @ P* , L+ 0Ȉ!@ !@ !@ !@ !@p % !*!@!@&+ + ;global: [FIDP=%c%c%c%c] local: [FP=%c%c] expected: [E=%c]kanji-code-mnemonic-string Klm PT+ $m+ +  P +  PP*  P, wDisplay a list of kanji-code related valiables. Inserts the names and values in buffer *Kanji Codes* and displays that., , @ P, X/ - MɈ ː q !A !A!A!A!A!A E !AF&)*, H/ *kanji-fileio-code**kanji-process-code* *Kanji Codes*)* List of kanji-code related variables * Global variables:  default-kanji-fileio-code :  default-kanji-process-code :  kanji-expected-code :  kanji-display-code :  kanji-input-code : Buffer local variable:  kanji-fileio-code : (Kanji code for a process of the buffer:  (process-kanji-code) : No process8mLmKm PD- (X- - - $m - - .  . <. X. t. . . . P/ # P,  PP,  Ph/ / >Return as a string the meaning of one character mnemonic CODE.x/ 0 0 =? ‚<=Â<=ł<='ǂ<=1ɂ<=;˂<̇/ 0 - 0 NILT00 TN@0  No-conversionS\0  Shift-JISJt0 JISE0 EUC 0  Invalid value 4P0 (0 80 T0 l0 |0 0 0 0  P/  PPp/ help-with-tutorial-for-nemacsview-nemacs-news Px1 *Select the NEmacs learn-by-doing tutorial.H1 1 @ P1 2 1 ZĈ! !!!X!!!ĉ "!eb! ` `" !e`"#!eb!)1 2  ~/NEMACS.tut~/ NEMACS.tut <<8 P`2 82 2 ,2 h(x~ Td42 2  P1  PP@1  P3 )Display info on recent changes to NEmacs.2 3 @ P3 t3 03  "! 3 d3  NEMACS.nws P@`83 H3 l3  P3  PP2  P3 3 aConvert STRING into a list of integers. Each integer represents two-byte kanji code as one word.3 4 h4 T "P@A@ W( ?( W: C"AL " \C"AA , 4 4 resultc1c2 m Pmm4Pd~~4 4  P4  PP3 kanji-code-alistextended-kanji-code-alistkanji-code-internal P85 6 5 < ;  9 ! "#Ȃ: ".ʂ: "9̂:*P5 6 s.*jiseucjis44PL|5 H5 5 5 5 6  PH5  PP@5 set-kanji-fileio-codeD6 L6  P<6 6 @6 |6  %Cl6 6 Kanji Code System : m P4P6 6 6  Pd6  P\6 7 87 O ?5 9 !5 ; "A !?5%"A <pq tK !) 6 7 Kanji Code System : m P4Pmm8I@7 dP\7 7  P6  PPT6 set-default-kanji-fileio-code P7 h8 @`8 8  %C8 P8 Kanji Code System : m P4P8 48 X8  P7  P7 $9 8 ; ?5 9 !5 ; "A !?5%"A "x8 9 Kanji Code System : m P4Pmm8I8 $}8 9  Pp8  PP7 expected-kanji-code-alistset-kanji-expected-code Pp9 9 @9 9  %C9 9 Kanji Code System : (n P4P9 9 9  P9  P9 : P: @ ?; =; 9 !; ;& "A !?;%"A : : Kanji Code System : (n P4Pmmm8IX: t: :  P:  PPx9 set-kanji-input-code P: l; @d; ;  %C; T; Kanji Code System : m P4P; 8; \;  P:  P: (< ; : 9 !0 ; "A !?0%"A  !|; < Kanji Code System : m P4Pm8I; dP;  <  Pt;  PP: set-kanji-display-code PT< < @< <  %Ct< < Kanji Code System : m P4P< < <  Pl<  Pd< = H= U 9 !0 ; "A !?0%"A !?E%"A tR ! < = Kanji Code System : m P4Pm8IP= dPl= =  P<  PP\< set-default-kanji-process-code P= p> @h> >  %C> X> Kanji Code System : m P4P > <> `>  P>  P=  ? > 5 9 !0 ; "A !?0%"A > ? Kanji Code System : m P4PKm8I> > ?  Px>  PP= set-kanji-process-code PL? ? @? |?  %Cl? ? Kanji Code System : m P4P? ? ?  Pd?  P\? (A ,@ A 9 !0 ; "A !?0%"Aʏt> ! ? A Kanji Code System : d@  "X@ @  P l@ @  PP@ @ @ @  P@ @  P@  P@  P m P4Pm8I4@ P@ @ dP@  A  P?  PPT? 7* Expected Kanji code when a file is read. 0:No-conversion 1:Shift-JIS 2:JIS 3:EUC/AT&T/DEC If T, kanji code is guessed automatically. If NIL, code conversion is done according to kanji-fileio-code. After a file is read, kanji-fileio-code of the buffer is set to the quessed code if kanji-fileio-code is nil. si:find-file<B B  PB C  Edit file FILENAME. Switch to a buffer visiting file FILENAME, creating one if none already exists. Optional argument CODE specifies the kanji-expected-code for the FILENAME. If interactive, a numeric argument can be specified. Just C-u means t for kanji-expected-code.B C @C FFind file: PC  PC D 8D 8ˆ ? 2 =‚2 <Â2 W' V1 "2  !)C D Invalid argument %s m P4P<x~P@D nXD D  PC  PPB si:find-alternate-file<D D  PD hF zFind file FILENAME, select its buffer, kill previous buffer. If the current buffer now contains an empty file that you just visited (presumably by mistake), use this command to visit the file you really want. Optional argument CODE specifies the kanji-expected-code for the FILENAME. If interactive, a numeric argument can be specified. Just C-u means t for kanji-expected-code.D F @F FFind alternate file: PxF  PpF TG F 8ˆ ? 2 =‚2 <Â2 W' V1 "2  !)F DG Invalid argument %s m P4P<x~PF nG LG  PF  PPD si:find-file-read-only<G G  PG H Edit file FILENAME but don't save without confirmation. Like find-file but marks buffer as read-only. Optional argument CODE specifies the kanji-expected-code for the FILENAME. If interactive, a numeric argument can be specified. Just C-u means t for kanji-expected-code.G H @H FFind file read-only: PH  PH I HX= <=p= >== c/=@= zerop= int-to-string%d= string-to-intyesnoX> +x(> -@> \*X> //p> %P> maxp> ~min> 8logand> logior> logxor ? ash$? lshmark-marker<F save-excursion,F buffer-sizeLF point-minlF Bpoint-min-markerF point-max(F point-max-markerTF Qfollowing-charG preceding-char$G bobp,@G Peobp`\G bolpxG eolpG *char-afterG user-login-nameG user-real-login-nameH user-uid$H auser-real-uid8HH $user-full-nameTlH system-namepH current-time-stringH LinserttH insert-before-markersH insert-after-markers(I /insert-charHI buffer-substringpI 9buffer-stringI insert-buffer-substringI subst-char-in-regionI I (rdelete-region<J J widen.J ,J )rnarrow-to-regionHTJ save-restriction|J message%sJ format4J char-equalJ getenvJ &interactive;K 5K 0K K K region-endregion-beginningmarkpointThe mark is not set nowhK call-interactivelyInvalid control letter "%c" (%03o) in interactive calling string0K prefix-numeric-value-call-interactivelyprefix-argcurrent-prefix-argcommand-historyDL or8\L andtL Pif|L cond,L progn\L prog1$L /prog2L setq M quote 4M ~function TM interactive-p!xM defun8"M defmacro"M defvarx#M defconst$M user-variable-p$N let*&0N {let (HN /while(dN macroexpand*N catch,N jthrow-N unwind-protect-N condition-caseInvalid condition handlerh0 O signal*Backtrace*P3HO commandp4hO autoloadAutoloading failed to define function %s7O evalLisp nesting exceeds max-lisp-eval-depthT?O applyBP funcallLisp nesting exceeds max-lisp-eval-depthVariable binding depth exceeds max-specpdl-sizeNP lbacktrace-debugOP P ֲbacktrace* ( ...computing arguments... ...( ( ) max-specpdl-sizemax-lisp-eval-depthquit-flaginhibit-quitautoloadmacroexitinteractivecommandpdefun&rest&optionalstack-trace-on-errordebug-on-errordebug-on-quitdebug-on-next-calldebuggermocklisp-argumentsmocklisp-argumentspTQ identity|TR `randomT0R )lengthULR string-equalVpR ostring-lessp8XR append\XR 3concatXR _vconcatXR copy-sequence\ S icopy-alistH],S ssubstring^LS nthcdr_hS qnth_S elt``S ݤmemq`S VassqaS assocbS &rassqLcT delqd$T nreversedDT 'reverse4e`T sortg|T get,hT @put iT ՞equalHkT ÝfillarrayHlT wnconcnU mapconcato$U %d... . ###ja uchar-syntax    .w_()'"$\/<>suahHkKgrcC`b tchar-categoryb b *scSet syntax for character: sSet syntax for %s to: modify-syntax-entryinvalid syntax description letter: %cinvalidinvalid1234 which means: whitespacepunctuationwordsymbolopenclosequotestringmathescapecharquotecommentendcommentJapaneseinvalid, matches , is the first character of a comment-start sequence, is the second character of a comment-start sequence, is the first character of a comment-end sequence, is the second character of a comment-end sequenced d ndescribe-syntax*Help*dd d Fnpforward-wordContaining expression ends prematurelyContaining expression ends prematurelyUnbalanced parenthesesple mscan-listse ?kscan-sexpse ibackward-prefix-charsNesting too deep for parsere -iparse-partial-sexp_-+*/&|<>=.,;:?!#@~^'`syntax-table-pparse-sexp-ignore-commentsFailure operating on %sunexec: Specified bss_start (%u) is past end of programunexec: data_start (%u) can't be greater than bss_start (%u)invalid magic number in %sunexec write failure: addr 0x%x, fileno %d, size 0x%x, wrote 0x%x, errno %ddg dml-ifg cml-nargsg cml-argg cml-interactiveg 4cml-provide-prefix-argument8h bml-prefix-argument-loop Di kaprocessp di =aget-process!i `get-buffer-processCurrent buffer has no processProcess %s does not existH"i `delete-process"j _process-statusopenruncommandexternalclosedexitsignalstop0$`j R^process-exit-statusl$j ]process-id$j -]process-name$j \process-command %j [set-process-buffer%k @[process-buffer%n XOprocess-send-regionl?o Nprocess-send-stringProcess %s is not a subprocessProcess %s is not active@|o KNinterrupt-process@o Lkill-processAo ZLquit-process0Ao Kstop-processPAp KKcontinue-processpA8p Jprocess-send-eof (core dumped)unknown%s%s exited abnormally with code %d finished Process Gp p +Jprocess-kanji-codeGp p DIset-process-kanji-codeprocesspinvoke-find-kanji-process-codefind-kanji-process-codedelete-exited-processesprocess-connection-typeKq CGcall-process/dev/nullOpening process input fileSearching for program/dev/nullDoing vforkDSq kEcall-process-region/tmp/emacsXXXXXXCouldn't exec the program /usr/local/lib/emacs/etc==PATHWarning: executable/documentation dir (%s) does not exist. SHELL/bin/shshell-file-nameexec-pathexec-directoryprocess-environmentYs Ajcode-type[$s @kanji-char-after(]Ns Ls ?rkanji-delete-region ls |s >r nSource code: nTarget code: convert-region-kanji-codeno need of converionms =convert-string-kanji-codeno need of converionp&t $t w=rcheck-region-kanji-codeDqTt \@y[EL\F[=b\IU\H\Cm\D \  ԗ   4 @(#) 102.1 $Id: uldefine.c,v 7.21.1.2 1995/04/24 01:40:02 kon Exp $cccccccccccccc@(#) 102.1 $Id: ulhinshi.c,v 5.19 1994/03/10 02:30:25 kon Exp $ww[w+wvvvvvvrvTv6vvuuuuuʤФޤˤӤߤꤤĤ̤֤뤦@(#) 102.1 $Id: ulkigo.c,v 5.20 1994/12/21 05:03:45 misao Exp $C@=:741.+(%"  ݉ډ׉ԉщΉˉȉʼn‰ӊЊ͊ʊNJĊ|yvspmjgda^[XUROLIFda^[XUROLIFC@=:741.+(%"  @(#) 102.1 $Id: util.c,v 5.24 1994/12/21 05:03:58 misao Exp $@(#) 102.1 $Id: yesno.c,v 5.3 1994/03/01 14:21:08 kon Exp $@(#) 102.1 $Id: t_reimap.c,v 5.2 1994/04/21 02:44:46 kon Exp $J  L @(#) 102.1 $Id: bunsetsu.c,v 2.10 1994/03/01 13:40:47 kon Exp $@(#) 102.1 $Id: bunmap.c,v 5.6 1994/04/21 02:44:07 kon Exp $ <  ` lp8p9pt17HJ K  @(#) 102.1 $Id: RKkana.c,v 2.6 1994/03/10 01:42:45 kon Exp $ǡʡˡܡݡ䡩£ãģţƣǣȣɣʣˣ̣ͣΣϣУѣңӣԣգ֣ףأ٣ڣΡϡơСáѡ֡ס򤡤äĤƤȤʤˤ̤ͤΤϤҤդؤۤޤߤ󤫡 ,.:;?!ގߎ^_/~|''""()[][]{}+-=<>\$%#&*@ ޶޷޸޹޺޻޼޽޾޿޳ͻ޸ͻ$Id: rkc.c,v 5.22.1.2 1995/04/24 01:22:31 kon Exp $ MIEA@$Id: rkcConvert.c,v 6.12 1994/07/29 01:03:37 kon Exp $XxP0dL`0DlhH$Id: rkcwConv.c,v 6.23 1994/07/29 01:03:45 kon Exp $+,&&0'&&'( (t((((t) )*0++T*t112`222\456l666647,<-p--(.66-$Id: rkcwutil.c,v 4.20 1994/03/09 12:32:42 kon Exp $$Id: lisp.c,v 2.55.1.2 1995/04/24 01:33:52 kon Exp $(CD o@bAOB<C,D@(#) 102.1 $Id: defaultmap.c,v 6.6 1994/04/21 02:44:16 kon Exp $4      3@(#) 102.1 $Id: bushu.c,v 5.16 1994/12/21 05:01:56 misao Exp $  ߸ܸٸƸøtqdaROL?.+(%  ڷ׷Էѷη˷ȷŷ·}zwtqnkhWTQNKHEB1.+(ݶڶ׶ԶѶζ˶ȶŶ¶}zwtqnkheb_\WP%" ޻ۻԻϻ̻ɻƻ~yroje`]ZURMHC:5.)$ غѺ̺Ǻº~ytoje`YTOJEB=83.'" ۹ֹѹ̹Ź|wrkd_ZUPID?:50+&!$Id: chikuji.c,v 2.26 1995/04/21 03:42:18 misao Exp $$Id: chikujimap.c,v 5.9 1994/04/21 02:44:11 kon Exp $tT809DX   (   h,WT809D<xT d!tt D @(#) 102.1 $Id: empty.c,v 5.33 1994/12/21 05:02:04 misao Exp $@(#) 102.1 $Id: emptymap.c,v 5.12 1994/07/29 03:02:36 kon Exp $\1 2p3\ 0a" #T'$%&L(0)d*F+HG,H-H.G/$HJ 5DI7:;<K64G=G>J?8I@dABCDEmF1HxI308  @(#) 102.1 $Id: alphamap.c,v 4.14 1995/03/30 02:55:39 misao Exp $h7J K̺  @(#) 102.1 $Id: henkan.c,v 5.54 1995/02/25 07:41:11 misao Exp $0@(#) 102.1 $Id: tanmap.c,v 5.4 1994/04/21 02:44:50 kon Exp $ (   hl,W`8`9`t1@<T d!tt7HJ K  @(#) 102.1 $Id: hex.c,v 5.7 1994/03/10 02:24:57 kon Exp $@(#) 102.1 $Id: ichiran.c,v 5.26 1994/12/21 05:02:31 misao Exp $ ; 7 3 / + ' #   = @(#) 102.1 $Id: ichiranmap.c,v 5.4 1994/04/21 02:44:26 kon Exp $ ( \  \\89 \7J K  @(#) 102.1 $Id: jishu.c,v 5.8 1994/03/10 02:25:57 kon Exp $@(#) 102.1 $Id: jishumap.c,v 4.13 1994/04/21 02:44:30 kon Exp $t. * h*.H08X09h0t1+*..x--.t// /!0/L   \ 7+J K  @(#) 102.1 $Id: uldelete.c,v 7.17 1994/03/01 14:14:05 kon Exp $@(#) 102.1 $Id: ulmount.c,v 5.15.1.1 1995/04/24 01:44:25 kon Exp $@(#) 102.1 $Id: ulserver.c,v 5.16 1994/10/01 08:18:36 kon Exp $@(#) 102.1 $Id: RKroma.c,v 1.23 1994/04/18 12:05:31 kon Exp $0 ?9㼥ͤtgQ>PNaPqk,jj6HT7qYIσ7 qR>)OqN9NL(K@K箂CAk[Sžx l l   odZSNJC@40  TtJ.      h  M  *        }cH0$Id: yp.x,v 1.5 1996/02/26 02:22:53 wpaul Exp $X33444D556@9t999:,:X:89:D; d'@Bʚ;Ńzrjca_][SKB:1( ʇ‡_][Unknown error: @(#)localtime.c 7.57WILDABBRlU @(#)asctime.c 7.7RuneMaginonehBBBBB@(((((((((((((((          (((((((    ((((((    ((((  !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~  0000000000000000}?$@Y@@@@j@.AcAחAeA _BvH7BmB@0BļB4&k C7yAC؅W4vCNgmC=`XC@xDPKDMD7yACnF?O8M20HwZ/usr/local/home/yahaba/work/nemacs/nemacs-3.3.2/lisp/loadup.ela^[ ]^[ ]*$[ ^ /.ow.elc~3..bin.lbin.fasl.dvi.toc.log.aux.lof.blg.bbl.glo.idx.lotmake -k-al^[^#$%>]*[#$%>] *#$%?lisp%?lisztadd-logadd-log backquoteckbytecompytebytecompytebytecompytecalchistoryhischistoryhischistoryhis cl-indent-i compare-wmpcompilecompilecompiledabbrevdebugdebugdebugdireddireddired dissociatesdoctordisass ebuff-menuf echistoryhiedtfortranftpftpgdbgosmacshanoihelperhelperinfoinformatnfoinformatnfoinformatnfoinformatnfoleditleditlprlprlprlprmacrosmacrosmacrosmakesum mailaliasilmanmh-emh-e mlconvertcomodula2novicenovicenovice nroff-modefoptionsoptionsoutlinepictureprologprologrectrectrectrectrectrectrectrectrnews rnewspostewrmailrmailinfo-d^via:\|^mail-from:\|^origin:\|^status:\|^received:\|^[a-z-]*message-id:\|^summary-line:\|^errors-to:orsxschemeschemescribe^via:\|^mail-from:\|^origin:\|^status:\|^remailed\|^received:\|^[a-z-]*message-id:\|^summary-line:\|^to:\|^cc:\|^subject:\|^in-reply-to:\|^return-path:--text follows this line-- sendmailendsendmailendservershellshellsortsortsortsortsortsortsortspellspellspellspelltabifytabifytagstagstagstagstagstagstagstagstagstagstelnetterminalermtex-modeex-tex-modeex-tex-modeex-texinfotexinfmtexitexinfmtexitexinfmtexitime underlinede underlinedeuserlockseruserlockserviviewviewviewvipyowyowowexi-CF-l/usr/local/lib/emacs/info/s/usr/spool/news/l/n/usr/local/mh/r/usr/local/bin/mh/c~/RMAIL/usr/spool/mail/spofakemailterm/ke /usr/ucb/manusr /usr/man/catusr/usr/catman/u_man/man1//usr/catman/u_man/man6//usr/catman/p_man/man2//usr/catman/p_man/man3//usr/catman/p_man/man4//usr/catman/p_man/man5//usr/catman/a_man/man1//usr/catman/a_man/man7//usr/catman/a_man/man8//usr/catman/localat~/.abbrev_defsa[ -~]e[ ][ -/:-@[-`{-~]/[0-9][[A-Z][a-z] [0-9A-Za-z]\za\cs[-][-][-][-][-][-][-][-][-][-][С-]\(\ch\|\ck\|\cc\)|\ \([ -~]\|\z\)[ ~\([ -~]\|\z\)\|\([ -~]\|\z\)\|\([ -~]\|\z\)\|\([ -~]\|\z\)\|[0-9A-Za-z]\(\ch\|\ck\|\cc\)\|\(\ch\|\ck\|\cc\)[0-9A-Za-z][ \([ -~]\|\z\)\|\([ -~]\|\z\)\|\([ -~]\|\z\)\|\([ -~]\|\z\)\|\([ -~]\|\z\)\|[0-9A-Za-z]\(\ch\|\ck\|\cc\)\|\(\ch\|\ck\|\cc\)[0-9A-Za-z][cmacexpEnter string... st.. Type Space or `y' to replace one match, Delete or `n' to skip to next, ESC or `q' to exit, Period to replace one match and exit, Comma to replace but not move point immediately, C-r to enter recursive edit (\[exit-recursive-edit] to get out again), C-w to delete match and recursive edit, C-l to clear the screen, redisplay, and offer same replacement again, ! to replace all remaining matches with no more questions, ^ to move point back to previous match.io3.3.2 m1990.6.6IN.6%c:%n3.21nc!)-_~}]:;',.?¡áġšǡɡˡ͡ϡѡӡաס١ۡäå%({[ơȡʡ̡ΡСҡԡ֡ءڡ  18.55.1Sat Feb 27 15:16:19 1999:16jive.xpres.ei.nsc.co.jp DOC-18.55.11.17.1 no conversion shift jise/jiseucnilautoisp\.el$it/spool/mail/.*$rsh/usr/local/lib/emacs/etc/envhif.*mail.*is .*inews.*lwnnnntp.el/usr/lib/news/inewsdumpinidump./l Dumping data as file temacs.dumpaha temacs.dumptemacs/emacs-n[^-+_.a-zA-Z0-9]+/e-is!Dumping under names xemacs and %sgrxemacsxemacswtemacsdemacs-s[^-+_.a-zA-Z0-9]+-g xemacs emacs-18.55.1,Dumping under names xemacs and emacs-18.55.1./e:/usr/local/home/yahaba/work/nemacs/nemacs-3.3.2/src/xemacsa:/usr/local/home/yahaba/work/nemacs/nemacs-3.3.2/src/xemacsn:/usr/local/home/yahaba/work/nemacs/nemacs-3.3.2/src/temacsnemacs-3.3.2/etc/DOC-18.55.1PDOC-18.55.1&Finding pointers to doc strings...done&Finding pointers to doc strings...done=ֿonemacs-init../lisp/nemacs-init@/usr/local/home/yahaba/work/nemacs/nemacs-3.3.2/lisp/nemacs-initmanտo/usr/local/home/yahaba/work/nemacs/nemacs-3.3.2/lisp/nemacs-init.el@nemacs-init.elLOADING nemacs-init.el...at$(an@BsrBatHJat#ma{ kanji-util/../lisp/kanji-utilt?/usr/local/home/yahaba/work/nemacs/nemacs-3.3.2/lisp/kanji-utilC/usr/local/home/yahaba/work/nemacs/nemacs-3.3.2/lisp/kanji-util.elcK1.17/maKeymap for Kanji manipulation attcafif dorpnte fTedFl PcabCefTNreno conversionltshift jistojiseucnilauto7* Expected Kanji code when a file is read. 0:No-conversion 1:Shift-JIS 2:JIS 3:EUC/AT&T/DEC If T, kanji code is guessed automatically. If NIL, code conversion is done according to kanji-fileio-code. After a file is read, kanji-fileio-code of the buffer is set to the quessed code if kanji-fileio-code is nil.tt\.el$t/spool/mail/.*$H*non-nil means that kanji code is queried when kanji-fileio-code is nil.* Default kanji code for process I/O. 0:No-conversion 1:Shift-JIS 2:JIS 3:EUC/AT&T/DEC Used when kanji-process-code-hook is not set or the function set to the variable returns invalid code. vrshenvw/usr/local/lib/emacs/etc/envw.*mail.*x|.*inews.*|wnn|nntpP DL0,LoTlLA!\,I$)@o  L)BxH l>Hty$yA\>8Ax,oJ`y($hBB,my$I$m\xA\H@+ \  xy+C@?  x>x8yJ8m *$(nnJP`إ"I,?xJ(>=)%CL(*hxlC'KH t& ,)&dp |<t ȎI,C H$P(dt=<*$4lxI>pHA Ko=(& @\(( n , H \ldJoP&4$ x`! ,KhC̳d*H,+HHJ<*+@\m@x(($!hȲTP>@d>Pl $( < p(hK o tn 4HTh' |#@H<L("4`)+ԤKyKȂHlH<&`%C"@\<'|A%,#A@pdn,Pn\',H<?TC<4(<@8 4<Inn8%?yp|C<`ILm|H&@4 @#\ $l@C`  *x8yJ<TT'|?oHxpx8h+>! tP*h(J@|KIJ#*p =8Ah?x@+ (4xho|\HTK@*(!K` #\)(] [}{  t|T@t$LT`t$LTtTtTtTtTuT uT@uT`uTuTuTuTuTvT vT@vT`vTvTvTvTvTwT wT@wT`wTwTwTwTwTxT xT@xT`xTxTxTxTxTyT yT@yT`yTyTyTyTyTzT zT@zT`zTzTzTzTzT{T {T@{T`{T{T{T{T{TP* P`9  P* P9  P* P9  P+ P9  P+ Ph:  P$+ P:  P8+ P:  PH+ P(:  PX+ PH:  Ph+ P:  Pt+ P:  P+ P ;  P+ PT;  P+ P0;  P+ Pl;  PS+ P;  P+ P;  P+ P <  P8}, P<  P(, P<  P4, P<  P@, P=  P@ST, P=  Ph, P<  Pp, P=  Px, P,=  P, PD=  P, P\=  P, Pt=  P\|, P=  P4|, P=  P, P>  P, P,>  P, PD>  P, P\>  P|, Pt>  PxR, P>  P, P>  P, P>  P4P, P>  P- P?  P- P>  P- P(?  P- P@?  P<~ - PX?  P,-  PtD- X PdX- | P$h- P1  Pt- P1  P|- PL2  P- P 2  P- P,2  P- P2  PdR- Ph2  P- P2  P- P3  P- P6  P. PZ  P . PDZ  P$. PZ  P0. PZ  P@. PDY  PL. PY  Pd. PY  P~t. PY  P. P Y  P. P8[  P.  PD. t P4. , P$. , P.   .  P /  P / D P4/ 4 PTP/ P,W  P\/ PHW  Pp/ PlW  PP|/ PW  P/ PW  P/ PV  P/ PV / `  P/  P\/ @ PL0 L P0 PTO  P(0 P P P40 P P P@0 PJ  PP0 P4O  P`0 PdM  Pl0 P P Px0 P P P0  P0 ` P0  P0 4 PRx P P P P  \TpT P P P P P P P P P PdPd hTTTTTTTTTTTTttl\T@, P P P P PT P\P, P P4PF P P4P P4P P P P4P P P P;;;;;,TT[`Htl P P P, P P PT P\P, P P4PF P P4P P4P P P P4P P P PTף  `(tl P P P, P P PT P\P, P P4PF P P4P P4P P P P4P P P P  )( ] [ for a line of code. Default value is fixed. fortran-comment-indent-char Character to be inserted instead of space for full-line comment indentation. (default is a space) fortran-minimum-statement-indent Minimum indentation for fortran statements. (default 6) fortran-line-number-indent Maximum indentation for line numbers. A line number will get less than this much indentation if necessary to avoid reaching column 5. (default 1) fortran-check-all-num-for-matching-do Non-nil causes all numbered lines to be treated as possibleT ;; Nemacs site configuration file ;; Coded by K.Handa, Electrotechnical Lab. (handa@etl.go.jp) ;; and S.Tomura, Electrotechnical Lab. (tomura@etl.go.jp) ;; This file is part of Nemacs (Japanese version of GNU Emacs). ;; Nemacs is distributed in the forms of patches to GNU ;; Emacs under the terms of the GNU EMACS GENERAL PUBLIC ;; LICENSE which is distributed along with GNU Emacs by the ;; Free Software Foundation. ;; Nemacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied ;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ;; PURPOSE. See the GNU EMACS GENERAL PUBLIC LICENSE for ;; more details. ;; You should have received a copy of the GNU EMACS GENERAL ;; PUBLIC LICENSE along with Nemacs; see the file COPYING. ;; If not, write to the Free Software Foundation, 675 Mass ;; Ave, Cambridge, MA 02139, USA. ;;; 87.6.9 created by K.handa ;;; 87.6.15 modified by K.Handa ;;; 88.1.15 modified for Nemacs Ver.2.0 by K.Handa ;;; 88.5.26 modified for Nemacs Ver.2.1 by K.handa ;;; 88.3.23 modified for Nemacs Ver.3.0 by K.handa ;;; 89.11.21 modified for Nemacs Ver.3.2 by K.Handa and S.Tomura ;;; 89.12.15 modified for Nemacs Ver.3.2.1 by S.Tomura ;;; 90.2.28 copied from site-init.el for Nemacs Ver.3.3.0 by K.Handa ;;; ;;; Any one can change the following lines if you never key in JIS code ;;; modified by K.handa 88.5.26 (defvar esc-dol-map (make-keymap)) (defvar esc-par-map (make-keymap)) (define-key esc-map "$" esc-dol-map) (define-key esc-map "(" esc-par-map) (define-key esc-dol-map "@" 'kanji-jis-start) (define-key esc-dol-map "B" 'kanji-jis-start) (define-key esc-par-map "B" 'kanji-jis-end) (define-key esc-par-map "H" 'kanji-jis-end) (define-key esc-par-map "J" 'kanji-jis-end) ;;; Initialization of kanji code related variables for each site ;;; Any one can overwrite the followings in $home/.emacs (define-key esc-map "#" 'spell-word) (define-key esc-map "{" 'insert-parentheses) (setq-default kanji-flag t) ; 0: No-conversion ; 1: Shift-JIS ; 2: JIS ; 3: EUC ; nil: not decided ; t: guess (only for kanji-expected-code) (setq-default kanji-fileio-code nil) (setq default-kanji-process-code 0) (setq kanji-display-code 2) (setq kanji-input-code 2) (setq to-kanji-display 64) ;ESC-$-@ @=64 / B=66 (setq to-ascii-display 74) ;ESC-(-J B=66 / H=72 / J=74 (setq to-kanji-fileio 64) (setq to-ascii-fileio 74) (setq to-kanji-process 64) (setq to-ascii-process 74) ;;; Convenient Utilities provided by S.Tomura and K.Handa ;;; Change Kanji codes according to your environment (load-library "kanji-util") (define-program-kanji-code nil ".*mail.*" 2) (define-program-kanji-code nil ".*inews.*" 2) (define-service-kanji-code "wnn" nil 0) (define-service-kanji-code "nntp" nil 0) (garbage-collect) ;;; For gnus user only ;(setq gnus-your-domain "your.domain.address" ; gnus-your-organization "Your site name" ; gnus-use-generic-from t) ;(garbage-collect) ;;; For EGG user only (if (boundp 'EGG) (progn (if (not (or (boundp 'WNN3) (boundp 'WNN4V3))) (progn (load-library "wnn-client"))) (load-library "wnn-egg") (load-library "egg-rkdump") (if (or (boundp 'WNN3) (boundp 'WNN4V3)) (load-library "wnnfns")) (if (boundp 'WNN4V3) (setq egg-default-startup-file "eggrc-v4") (setq egg-default-startup-file "eggrc-v3")) (garbage-collect))) ;;; For rnews user only (setq news-inews-program "/usr/lib/news/inews") ;;; Do not change the following line. (setq initial-major-mode 'nemacs-lisp-interaction-mode) 0 t P0  PD 1 P0L  P1 PHL  P1 P`L  $1 PxL  P01 PL  <1 PL H1 PL  PT1 PL  P}`1 P M  Pp1 PM  P|1 PM  Pp|1 PM  P1 PM  P1 PN 1 PN $1 P4N 1 PPN  P1 PpN ltQ1 PN  P1 PN l 2 PN ؁ 2 P O  P,2 P@M  P@2 PO  PL2 PO  PX2 PO  Pd2 PtP  Px2 PP  P2 P\R  P2  P 2 PQ  P2 PR  P~2 PR  P2 P8R  P2 PR  P2 PR  P3 PR  Pp 3 PR  P 3 PR  P03 PS  PL@3 P8S  PL3 PTS  P~T3 PlS  P\3 PS  Ph3 PS  Pt3 PS  P3 PS  P3 PS  P3 PT  P3 P0T  P`3 PLT  P3 PhT  P3 PT  P3 PT  P3 PT  P3 PT  P`Q3 PU  P8Q4 PT  P4 P,U  P$4 P|U  P44 PU  PH4 P$V  PX4 P`V  P|d4 PDV  Pp4 D P4 ̲ P44  P|4 8 P(R4  P4  P|܂ 5  PlS(5 0 P4L5 | P$d5  Px5  P5 PP\  P5 Px\  Pt}5 P\  P5 P\  PR5 P]  P6 P]  P P  P~$> P  P0> P  PD> P  P`> P$  P> Pd  P>  P`> P  P> PH  P> P  P> P  P> P  P ? Pd  P$? P  P P4Pt P PHP PHP Pu PHP aHPe Pd P P1vv4P p{  {  {  {  P P P  HP  PD T $ T  Pd 1l .ut 4P|  P PE P l |S, HP $|HP  |1 HP ed Pq 4P  P P P P\<T  PA PHP,  PL   P< hD p4  A P|  d| HP i P l1 p  P  P PHP HP W Pb P D  (  \1 o 4P  P Pd HP< HP4 L P PL  ? \ L1d nl 4Pt  P PHP \ PHP HP  P P  P <1 {    { wn  P 4P P Dumping under names xemacs and emacs-18.55.1 ;;; 87.7.15 modified for Nemacs Ver.2.0 by K.Handa ;;; 89.3.22 modified for Nemacs Ver.3.0 by K.Handa ;;; 90.2.28 modified for Nemacs Ver.3.3.0 by K.Handa ;Load up standardly loaded Lisp files for Emacs. ;; This is loaded into a bare Emacs to make a dumpable one. ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY. No author or distributor ;; accepts responsibility to anyone for the consequences of using it ;; or for whether it serves any particular purpose or works at all, ;; unless he says so in writing. Refer to the GNU Emacs General Public ;; License for full details. ;; Everyone is granted permission to copy, modify and redistribute ;; GNU Emacs, but only under the conditions described in the ;; GNU Emacs General Public License. A copy of this license is ;; supposed to have been given to you along with GNU Emacs so you ;; can know your rights and responsibilities. It should be in a ;; file named COPYING. Among other things, the copyright notice ;; and this notice must be preserved on all copies. (load "subr") (garbage-collect) (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake. (garbage-collect) (load "simple") (garbage-collect) (load "help") (garbage-collect) (load "files") (garbage-collect) (load "indent") (load "window") (load "paths.el") ;Don't get confused if someone compiled paths by mistake. (garbage-collect) (load "startup") (load "lisp") (garbage-collect) (load "page") (load "register") (garbage-collect) (load "paragraphs") (load "lisp-mode") (garbage-collect) (load "text-mode") (load "fill") (garbage-collect) (load "c-mode") (garbage-collect) (load "isearch") (garbage-collect) (load "replace") (if (eq system-type 'vax-vms) (progn (garbage-collect) (load "vmsproc"))) (garbage-collect) (load "abbrev") (garbage-collect) (load "buff-menu") (if (eq system-type 'vax-vms) (progn (garbage-collect) (load "vms-patch"))) ;;; patch by K.Handa 87.7.15 ;;; modified by K.Handa 88.6.20, 89.3.22 (load "kanji") (garbage-collect) (load "kinsoku") (garbage-collect) ;;; end of patch ;If you want additional libraries to be preloaded and their ;doc strings kept in the DOC file rather than in core, ;you may load them with a "site-load.el" file. ;But you must also cause them to be scanned when the DOC file ;is generated. For VMS, you must edit ../etc/makedoc.com. ;For other systems, you must edit ../src/ymakefile. (if (load "site-load" t) (garbage-collect)) (load "version.el") ;Don't get confused if someone compiled version.el by mistake. ;; Note: all compiled Lisp files loaded above this point ;; must be among the ones parsed by make-docfile ;; to construct DOC. Any that are not processed ;; for DOC will not have doc strings in the dumped Emacs. (message "Finding pointers to doc strings...") (if (fboundp 'dump-emacs) (let ((name emacs-version)) (while (string-match "[^-+_.a-zA-Z0-9]+" name) (setq name (concat (downcase (substring name 0 (match-beginning 0))) "-" (substring name (match-end 0))))) (copy-file (expand-file-name "../etc/DOC") (concat (expand-file-name "../etc/DOC-") name) t) (Snarf-documentation (concat "DOC-" name))) (Snarf-documentation "DOC")) (message "Finding pointers to doc strings...done") ;;; 90.2.28 patch by K.Handa ;;; Now we load Nemacs related site configulation file. (load "nemacs-init" t) (garbage-collect) ;;; end of patch ;Note: You can cause additional libraries to be preloaded ;by writing a site-init.el that loads them. ;See also "site-load" above. (load "site-init" t) (garbage-collect) (if (or (equal (nth 3 command-line-args) "dump") (equal (nth 4 command-line-args) "dump")) (if (eq system-type 'vax-vms) (progn (message "Dumping data as file temacs.dump") (dump-emacs "temacs.dump" "temacs") (kill-emacs)) (let ((name (concat "emacs-" emacs-version))) (while (string-match "[^-+_.a-zA-Z0-9]+" name) (setq name (concat (downcase (substring name 0 (match-beginning 0))) "-" (substring name (match-end 0))))) (message "Dumping under names xemacs and %s" name)) (condition-case () (delete-file "xemacs") (file-error nil)) (dump-emacs "xemacs" "temacs") ;; Recompute NAME now, so that it isn't set when we dump. (let ((name (concat "emacs-" emacs-version))) (while (string-match "[^-+_.a-zA-Z0-9]+" name) (setq name (concat (downcase (substring name 0 (match-beginning 0))) "-" (substring name (match-end 0))))) (add-name-to-file "xemacs" name t)) (kill-emacs))) ;; Avoid error if user loads some more libraries now. (setq purify-flag nil) ;; For machines with CANNOT_DUMP defined in config.h, ;; this file must be loaded each time Emacs is run. ;; So run the startup code now. (or (fboundp 'dump-emacs) (eval top-level)) T guments. If SERVICEP is not nil, PROGRAM is a name of a service for open-network-stream and ARGS is a list of hosts. Kanji code of the process is set to the return value of this function Please redefine this function as you wish." (byte-code "? ȉ=  \" @\"& \" H A!7 AE A?AƂEΏJ)" [buffer t place servicep program args nil default-kanji-process-code "" buffer-name find-service-kanji-code find-program-kanji-code numberp (byte-code "A %" [place buffer program servicep args apply] 6) ((error (byte-code "" [default-kanji-process-code] 1)))] 7)) (fset (quote default-find-kanji-process-code) (symbol-function (quote find-kanji-process-code))) (setq find-kanji-process-code (quote find-kanji-process-code)) (defun strict-string-match (regexp string &optional start) (byte-code " #=! G=" [regexp string start 0 string-match match-end] 5)) (defvar program-kanji-code-alist nil) (defun define-program-kanji-code (buffer program code) (byte-code " B \"  \" B B *" [key buffer program place program-kanji-code-alist code assoc setcdr] 4)) (defun find-program-kanji-code (buffer program) (byte-code "  ?$ @@#@A *" [alist program-kanji-code-alist place nil buffer program program-kanji-code-match] 5)) (defun program-kanji-code-match (buffer program patpair) (byte-code " @ A 9 ! J; J?*;* \"D ?D ;D \"D !\"*" [bpat patpair ppat buffer program boundp string-match strict-string-match file-name-nondirectory] 7)) (define-program-kanji-code nil "rsh" (quote find-kanji-process-code-rsh)) (defun find-kanji-process-code-rsh (buffer rsh &optional servicep host &rest args) (byte-code "@\" AA@\"A @A$" [args buffer nil equal "-l" "-n" find-kanji-process-code] 7)) (define-program-kanji-code nil (concat exec-directory "env") (quote find-kanji-process-code-env)) (defun find-kanji-process-code-env (buffer env &optional servicep &rest args) (byte-code "@\" A@\"2@\"2@\"2@\"2@\"n@\"B@\"NAAAj@\"[@\"fAAjA @\"|@\"A @A$" [args t buffer nil string= "-" string-match "=" "-s" "-set" "-u" "-unset" "--" find-kanji-process-code] 17)) (defvar service-kanji-code-alist nil) (defun define-service-kanji-code (service host code) (byte-code " B \"  \" B B *" [key service host place service-kanji-code-alist code assoc setcdr] 4)) (defun find-service-kanji-code (service host) (byte-code "  ?$ @@#@A *" [alist service-kanji-code-alist place nil service host service-kanji-code-match] 5)) (defun service-kanji-code-match (service host patpair) (byte-code " @ A? =; ; \"+ ?+ \"*" [spat patpair hpat service host strict-string-match] 4)) r kanji-expected-code." (interactive "FFind alternate file: P") (byte-code "ˆ ? 2 =‚2 <Â2 W' V1 \"2  !)" [kanji-expected-code code nil t filename - 0 3 error "Invalid argument %s" si:find-alternate-file] 3)) (or (fboundp (quote si:find-file-read-only)) (fset (quote si:find-file-read-only) (symbol-function (quote find-file-read-only)))) (defun find-file-read-only (filename &optional code) "\ Edit file FILENAME but don't save without confirmation. Like find-file but marks buffer as read-only. Optional argument CODE specifies the kanji-expected-code for the FILENAME. If interactive, a numeric argument can be specified. Just C-u means t for kanji-expected-code." (interactive "FFind file read-only: P") (byte-code "ˆ ? 2 =‚2 <Â2 W' V1 \"2  !)" [kanji-expected-code code nil t filename - 0 3 error "Invalid argument %s" si:find-file-read-only] 3)) (or (fboundp (quote si:find-file-other-window)) (fset (quote si:find-file-other-window) (symbol-function (quote find-file-other-window)))) (defun find-file-other-window (filename &optional code) "\ Edit file FILENAME, in another window. May create a new window, or reuse an existing one; see the function display-buffer. Optional argument CODE specifies the kanji-expected-code for the FILENAME. If interactive, a numeric argument can be specified. Just C-u means t for kanji-expected-code." (interactive "FFind file in other window: P") (byte-code "ˆ ? 2 =‚2 <Â2 W' V1 \"2  !)" [kanji-expected-code code nil t filename - 0 3 error "Invalid argument %s" si:find-file-other-window] 3)) (defvar default-kanji-fileio-code-find-file-not-found default-kanji-fileio-code) (defun find-file-not-found-set-kanji-fileio-code nil (byte-code " ‡" [kanji-fileio-code default-kanji-fileio-code-find-file-not-found nil] 2)) (or (memq (quote find-file-not-found-set-kanji-fileio-code) find-file-not-found-hooks) (setq find-file-not-found-hooks (cons (quote find-file-not-found-set-kanji-fileio-code) find-file-not-found-hooks))) (defun find-kanji-file-input-code (filename visit start end) (byte-code " ? =? \" ?%)" [code kanji-expected-code kanji-fileio-code t start end check-region-kanji-code] 3)) (fset (quote default-find-kanji-file-input-code) (symbol-function (quote find-kanji-file-input-code))) (setq find-kanji-file-input-code (quote find-kanji-file-input-code)) (defvar kanji-file-input-code-alist (quote (("\\.el$" . 3) ("/spool/mail/.*$" . convert-mbox-kanji-code)))) (defun find-kanji-file-input-code-from-filename (filename visit start end) (byte-code " =! ?6@@\"-@AȉA) \\ !F \\ 9N !\\    %+" [alist kanji-file-input-code-alist found nil code case-fold-search system-type filename t visit start end vax-vms file-name-sans-versions string-match numberp fboundp funcall] 10)) (defun convert-mbox-kanji-code (filename visit start end) (byte-code " \"ebm?K`!#$ ` \" = U= UF $+ ))" [buffer-read-only nil start end code narrow-to-region forward-char 1 re-search-forward "^From" move beginning-of-line check-region-kanji-code 2 convert-region-kanji-code 3] 11)) (defun find-kanji-file-input-code-from-file-variables nil "\ Parse, and bind or evaluate as appropriate, any local variables for current buffer." (byte-code "dbdZe]##)!l7` `\"!bnJ` `\" W G !d! t!w! ! !!!`!l!!`\"  !   !\"‰!!p! !!!l! =  +e-)" [case-fold-search t nil continue prefix prefixlen suffix beg selective-display str var val kanji-fileio-code search-backward " " 3000 move search-forward "Local Variables:" skip-chars-forward " " buffer-substring end-of-line match-beginning 0 beginning-of-line regexp-quote re-search-forward "[ ]" forward-line 1 looking-at forward-char error "Local variables entry is missing the prefix" "^: " "Missing colon in local variables entry" skip-chars-backward read string-equal downcase "end" "^:" " " "Local variables entry is terminated incorrectly"] 33)) (defvar kanji-file-output-code-query-flag nil "\ *non-nil means that kanji code is queried when kanji-fileio-code is nil.") (defun find-kanji-file-output-code (start end filename append visit) (byte-code " ? \" %! " [kanji-file-output-code-query-flag kanji-fileio-code filename kanji-code-alist nil t kanji-code-internal completing-read format "Kanji Code System for %s: "] 8)) (fset (quote default-find-kanji-file-output-code) (symbol-function (quote find-kanji-file-output-code))) (setq find-kanji-file-output-code (quote find-kanji-file-output-code)) (defvar default-kanji-process-code 0 "\ * Default kanji code for process I/O. 0:No-conversion 1:Shift-JIS 2:JIS 3:EUC/AT&T/DEC Used when kanji-process-code-hook is not set or the function set to the variable returns invalid code. ") (defun find-kanji-process-code (buffer program &optional servicep &rest args) "\ Arguments are BUFFER, PROGRAM, SERVICEP, and ARGS. BUFFER is output buffer name of a process or nil. If SERVICEP is nil, PROGRAM is a path name of a program to be executed and ARGS is a list of the arw P~ Pw P P w P|S P$(w PS P0w PxR PH PHP[> PHPHP P> P P P4P4HP= PHP HPTQ  P& PHPD P P4PM$4,48 PHPT7 PHPt|* PHPd6 PHP+6 PHP PHP* PHP PHP( PHPQ  PHPd !' PHP  : Pp' PHP$::4d:<H:D,:L:T9\ P P4Pltx5|9d9L! P p P P4P_5dy PP" PHP,Ly PHPd P P4P<3D5LTx PHPtx PHP+x PP"T PHP PHP҈ PHP ! PHPl $I؍d PHPt P" P45 PHP$| <DHLdo PHPTT?lt |  PHP  PӉ PHP9 P> PHPHP PHP PHPS PHP$ P P4PX6 ܌ PHPD l PHP4 PHPT P P P4P\dh6ltHPq PHP PP"h PHPp PHPp PHP P PL? PHPi P PHPD?HP,i PHP<#i PHPt P P4PLTx6\dh PHPh Pi PHPHPg P P P4P`6HPg PHPf PHP  4P PЈ P P P| P԰ P P  Pl PP P PP, P< P8 P PH P P\ P\ Pl P P P P P| PP P P P< Pԉ P Px P< P P P P P P\ P(( P P`8 P| PxT P Pd P< P t P P P< P P P P P̊ PT P܊ P P P P\ Pt P P P( P4 P< P P,L P P@` P  P`| Pl P P P P, P ȋ P P P PS PL P P P8 P P,D P| PT P Pd P4 Pt P Pt P P PHPD P P4P$6,4N PHPTEN PHPdN PP"t P P P4P|6HPM PHP P . PHP, P P P4Pc6HPP" P* PHP," P P P4P<1D6LTHPl5 PHP| PP" PHP P P4P6 3 PHPd PHP PHPF P P P4P}6 P", PHP<L PHPL M PHP P P4P\d6ltі PHPs PP" Pg PHP P P4P6HP' PHPΕ PHP j PP"D P P4P$6,4 PHPT PHPdbk PHPt| P P P4P|6HP| PP" PHPz PHPnz PHPy PHP HP; P P P4P$7,4HPL PHP\: PHPl`C PHP P P4P|'7C PHP PHPH PHP P P P4P` 7HP w PHPч PHP, PHPd P P4P<D,7LT PHPt1 PHP PHP PHP> PHP PHP P P P4P87HPɃ PHP } PHP PHP,z PHP<lz PHPLy PHP P P4P\dD7ltp PHPBp PHP o P PHP P P4PP7a PP" P PHPKh P P P4P$\7,4HPL/S Pd PHPdS PP"t P P P4P|h7HPQ PHPQ PHP PHP PP" PHP HPx P P P4P$t7,4HPLU PHP\6 PHPl P P P Pt|7HP PHP PHP PHP P P4P7 PHP  PHP~ PHP,g P P P4P4K<7DLHPdO PHPt. PHP PHP P P4P57 PHP PHP PHP P P P4P7 HP$ PHP4 PHPDr PHP| P P4PT\7dl\ PHPF PHP0 PHP P P P4P 7HP PHP PHP PHP< P P4P7$,H PHPL  PHP\ PHPl9 P P P4Pt|7HP9 PHP8: PHP: PHP: PHP(; PHP_; P PHP PHP, PHP< PHPL PHP\ PHPl~ PHP|f PHP P P4P7K PHP0 PHP PHP P P P4P"8HP PHP, PHP< PHPt P P4PLT8\d} PHP\ PHP< PHP" P P P P(8HP PHP PHP PHP4 P P4P 88$ PHPD PHPTz PHPda P P P4PltD8|HPI PHP3 PHP PHP P P4PjT8 PHP PHP PHP$ P P P P,4d8<DHP\_ PHPl< PHP| PHP P P Pt8 PHP PHP PHP P P P4P-8 HP, PHP< PHPL PHP P P4P\(d8ltn PHPS PHPA PHP* P P P4P)8HP PHP PHP  P P P P*+8$,HPD PHPT PHPd PHP P P4Pt1|8c PHP@ PHP PHP P P P4Pl28HP PHP PHP$ PHP\ P P4P42<8DL PHPln PHP|W PHP< PHP! PHP  PHP PHP PHP PHP PHP PHP  PHPs PHP,W PHP<< PHPL PHP\ PHPl PHP| PHP PHP PHP PHP PHPa PHPD PHP+ PHP  PT P P_  P P\`  PЌ Pc  PP P`  P8 Pc  P Pd  P Pa  P<, P8b  Pt@ Ppf  PX Pxh  Pl Pi  P| Pi  P Pxj  P, P@m  P\ԍ P  P Pt  Px Pu  P Py  PH0 Px  PD P}  Pd P  Pxx P  P P|  P P  P| P  P̎ P  P P؅  P P<  Pč Px  P$ P  P@ Pn  PT P@n  PLh Po  Px Pp t\ Pq  Ph P  P؏ Ph  P( P`  Ph P  Pر P  Pd$ 8 P4< 8 PdT  Pl  P  P  P$  PT̑  P4  P P   P$$,,4 P<<DDL PTd\ PdTlltt| P P P P P P  P$ P$,,44< PDTL PTD\\ddl Pt| Pt P P P P P P ,$ P,<44 <LD PL\T4P\ld  l Pt| P PHPa PHPH PHP. PHP PHP PHP PHP PHP$ PHP4 PHPD PHPTq PHPdZ PHPtC PHP0 PHP PHP PHP PHP PHP PHP PHP P<  P P$,,44< PD PLLTD\\ddl Pt P||t P P P P4P P   P P$,,44< PD PLLTD\\4P P ldd| P P P P P P  P P!8 PHP,$$<HPT  P8 PHP\D Pllt P|t_ PHP P PHP P P PHP P   PHP P,,44< PP PHPLDD\\d Pll PHP|tt P PHP P PR PHP 4P P  P$<  PTtT Pp  P̏h P P P P P P P`  Px P  P| P P P P  P P P P P|  P P  Px P@  P Pt  P̖ P  P P  Pt P  P| P P P P  PT P P P, P\  Pd PH  Pd P0  P Pț  PЛ P  P P  Pl P P P| P P P P  P$ P  P4 P?  P| PX  P P\  P` P  P8 P P PH Px  P P  PT Pإ  P P̦  P( P P P P P P` P  PԦ Px  P P  P, P P P P P P P P P\, P P P0 P s P @5  PHP, P< P PHPLDD\@1 dtl2  Pt P3 2 @|@@@3  P < , $p/ $,44<<T4T`mD P\ Pddl\tt||p/  P* , \@ P P P@1 & '  PNtmL8) $' ,* 4% <D$ LT# \ld$ l" t|# % 48) & ! " l! ! l!  P P   P P$$,44<LD PL P4T PdtlTtD| @4PT6 @5 7 T6 7 x9  PT?  pD P P P܎ P  P P P P t  P PT P  P<ܬ P`  P P  P| P P P P P Pd( P P Pt P P P\ P  P P P PԱ  PX P&  P ܱ P  P  P  P P  P P P P, P P Pp8 P  PT$ P  P P P PP P P Pd PL  P\ܶ P P Pt P$  P\, Pܹ  PP P̺  PԺ P P<  PԘp P P\ P  P , P P P PX  Pd P P\` P  P P  PL P  PPx P P Pܲ P  P8 PX  P P  PL P P P P  P P P P` P  P P  P,`  P\p  P` Pt  Ph( P0  P P P PL P P P$8 PL Pt P P P( P  P4 P P P| P  P P  P4 P PĖ P Plh P< P  P| P  Px P  PȦ Pd  Phl P  P P(  P0 P P P P P P$ P P P0 P P P< P P PdH P  P P P P( P P P( $ PĔ P Px P Pt 8 P  PH P  P P P P  P P Pd P P P$ P P PLD P P P P  PT P(  P P0 P  P Ph  Pp P  P< P  P  PTH PP  P x P P P Px  P P  PxX P P P P Pt P P P4 P P P P  P(  P  PP P  Pd P(  P 4P PT  P P  P@ P P P  P P P( P P P PL  P T P  Ph P P PP x P P P P P P PT Pt T P l P\8  Pl P P  P Px  P<$ P  P@ P  P@\ P  Pp P  P P  P̧ P  P Pp  P PL  P P  P P  P  P  P8 P P P P P P Px  P$ P P PL P P P Pl  P PI  P, P@  PL P P P P P PT PD  PL P P PP P P Pp P P P 4P PT<  4P P< P P $ P P,  P P 4, <  P D P P|\ P P p  P P PTd   P  P\ P P( 4P P\x  P P0 P PHD 4P PL\ s PĘ | P P P PT  P P PT  PH\ Pd  P d P P Pl P  P P  P0 P P Pp P  P( PD  PT P P PL, P  P| PL  Pd P\G  P P P Px P P P P P P( P P P P P PH P P P  P,4  P4  P P PT PH  Pp P P PTd P P Pt P P P| P:  Pt  P9  P P  P P P P P  PT P  P P P P P P P P   Pt P P P4X P P P h P P Pt P P P P P P$ P P P P  P P P PH4 P PP P0:  P  P  P P%  P P(  P P P P P P P P P Px P P P P"  P  P P P< P#  P8 P  PP P  P P P P P P P P P P! P P P<! P P P`(! P P Pd@! P P PX! P P P`l! PH#  PL$ P P P|X$ P P P$ P$,  Pd' P P Px' P P Px' P P PL' P P P<,, P.  PT, P P P@- P P PP- : Px0. P  P/ P/  P/ P<0  P|D0 P0  P0 P P P@1 P1  Pd1 P P P|2 P P P2 P P P 44 P7  P4 P8;  P7 PX8  P 9 P P Px@; 8 PHd; 8 P\; PD>  P<; P P Pı; P P P < P P P4= P P PD= P P PL> P>  PP? P P? P0@  P? P@  P@ PA  P B P P Pt|B P P| B PC  P$D PD  PXD PhF  PD P P PE P P PE PJ  P$ pF 4 P F  PlF PpI  PF P PԮF PH  PG P P PLJ PJ  PJ PK  PK P8L  P`@L PL  PL 8 P PM 9 P<PM tA P \M (9 P\M <9 P4M T9 P N `9 P|4 P( P  P P> PT P  P4 P> Pp, P@  PH ̭ P P'\ P  PL| P P Ph  P P P P P P> P`  Pt P P P# P P? P,' PX  P P P P`= P P P$ P P P&< P P P P P P` P= P| P P P P P P" P P Pp P P Px P P P P P P0 P P P@ P P P|'P P P P@` P P P d P4H , P  PL!H P  P P P P P  P# P8  Px P  P< P  P> P  Pd P$  P8=x P P P P P P\@ P P P P P Pp, P  P!T P P PT( P  P< P  P $P P P P PT  Ph P P P< PL  PD P P PT D P$ p P`  P P|  P P  Pp Pd  P P  P P  PL  P  PT?, P   P=P P  Ph P  P P  PP" P\  PB P,  PH4 P P P P|C P P P P P PhC P P P P P P P P P P P P P P P P P P P PCCxhC,ChCC@CBTCCCCC@ P tA P P PL P P P P P PxB P P P Pl  P! P P P @t P|  P8 P P P` P P Ph P P P P P P$= P P P ,? Pt)P \ P P P <x\ P P P#\ P P P\ P]  P| ] P P P $] P P P4] P|_  Pn^ P P P_ | P P _ Ph`  Pm_ P P P ` Pa  PBa P P Pa P P P`ma P P Pxa P P PBa P P Pb P P P8tw | ||8^ |w$|` ,|w4|Da wD|w<|\|T|d|\|l|d| P PPAt|||L|l||||||| P`A P|| P||||||| PhA P|||| PTetags100755 0 0 60000 6665711527 10342 0ustar rootwheelP UVS]sS{t u9wqt $a8t8/u H $a@8uE`Et5qV3PO/usr/libexec/ld.soCouldn't open . Failure reading ld.so Bad magic: ld.so Cannot map ld.so (text) Cannot map ld.so (data) Cannot map ld.so (bss) ld.so failed: UDVSjjhj3Eu?jhjjjhjj jhjjjjj URujwjhjjjjUf t$f}tjhjjjjEEЁ t4t†f t ʉ QRjujjujhE܃$ujhjjjjU= t!=tҁ tuKMEЁ t*t†f t ,M= t=t tY 1QRjujjuċUURh($ujhjjjjUȅtIjjjuhjRUUURh$ujhjjjjE`qUE$aUEEu܃ ]Sj֣aUauuSj֣a `a=auyj h4jj,at@R ҉Åt5jhAjj؃;t @8u)RSjjjhDjjjj=a~arKe[^U塤at u u1U塤at u@ÐUU au1Ð=a Ru@uRu@Service unavailableU塤at@ ÐbYXQQrø "'#()[]{}=-+%*/&|^~!<>;,.:?ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$0123456789,;%s: -f flag may only be given once %s: -f flag must be followed by a filename Usage: %s [-BFaetuwvx] [-f outfile] file ... TAGStagsaw%s: %s,%d mv %s OTAGS;fgrep -v ' %s ' OTAGS >%s;rm OTAGSsort %s -o %sUp-EE  UĉUEPG=qu =qqPWe[^_U吃}u(EP REP=EPUҐ%s: Duplicate entry in file %s, line %d: %s Second entry ignored %s: Duplicate entry in files %s and %s: %s (Warning only) USE RER=Ã=paEU @9BuK=dau=ER8qPEPR=laCPPh%qP;{qP8aPqPj^s>u?>\t88atqPj\qPPF뽐qP8aPC Ph%qPh: qPj h\=hat/S ?Ѕ}?PCPPh %hp:"CPCPC PPh%hp9C Pje[^UWVS]1u1qCPƋC PƃCP9Ƌ{ uF 鐋{uFuF 鐉e[^_U(WVS8qq aqEEEEqEqfP f ftluRqa8qqPhaqB  q aqq\u^uAqa8qqPha3qB  q a }*uy*t 吐ᐐuKqa8qqPhaqB  q aq/uE#}t"uE}}t'uEa'tC'"t-#t\{to{ /t)}twEE9*u Ea@9u q=4au 4aEa@9u EM}u=4au 4at}}}=q}\bna+ a8qaEPPVP9atuPY)PRq+0RPw5 )Ƅ(PPPqPPPV)PRVP5 )Ƅ(PPPaPPPqEN btGatOE;u=4au 4a[^_definetypedefstructunionenumDEFUSEEKME=qu}E\cuj MC}uYqfP f ftHqa8qqPhaqB  qaq눐Jq=q%=qu0jh?,E P3 uqE=\at7jhF,E PW3 uE \bt 4a볃=4ajhN,E P3 uE \budjhU,E P2 uE \bu5jh[,E P2 u'E \bu4a=4au4a=4au4a=4au}u 4a=4auEE=qu'jh`,E P2 uaq=ataER}(tHE MEC<)u}u_qfP f ftqa8qqPha@qB  qaqEau }/t EE\cu }uK MEC\cue}u[qfP f ftJqa8qqPhaqB  qaq념EDqMEK1}u }t]UqPc0EjEPqPB0 qPhqjEPqP0 integerreallogicalcomplexcharacterdoubleprecisionfunctionsubroutineprogramprocedureUS8qq@qEfP f ft8qqaEPhaqBqaqq8%uqh@qRPu q١q8ugq рI222D3D3D3D3D2D3D32D3D3D3D3D3d2h0t8h0th0th0uh0{uqh0^tYh@qRu qסq8u'h0t h@qRu qءq8uq EP#UWVSEP"Åu] hN!E PS Eޅu!j:VƉt F>tEېEPEE;uj:SƅuS)"4)؅~i)PSUUM}}ME<}MMEUP!}MD9E>t^2EUEUD "Ee[^_UMM ME8uE8tE8~au EߐE+EPEPP! E+EƄ(aP8qPaP PaPjPw@qUEEta|OEtaDPEPEtaPr uEE뙐UEhUBU WVS] EPUEpE8K{}S E9uFEU MUMщEREPvEEU+P֋E}8EUP}| } t EFg+Ue[^_UEP0PEP ‰USE @PËE PEPS E ]UVSMU 18uΊAu퐐e[^USMU 8uAuꐐ1]UE PEPj2 U!*Q%-G,"1mM$ &5 ; *(6'-T0 +!4#J$9%:&2'/(8)=+W,3/?0<2^3V4L56CF7D8K9O:P;=S>B?@AECNDlEIF]GcHIgJeKaLYMmNORP\QnR_S`TiUVWX[YZd[\^b_`abjcqdfehfghkijkplnoopqrr` H5Da7!Xa(0|`=CG@Q(BXHa_aq z`P6 a