More tweaks of skeleton documentation wrt \n behavior at bol/eol.
[bpt/emacs.git] / lisp / play / handwrite.el
CommitLineData
c38e0c97 1;;; handwrite.el --- turns your emacs buffer into a handwritten document -*- coding: utf-8; -*-
1a44ec7a 2
ba318903 3;; Copyright (C) 1996, 2001-2014 Free Software Foundation, Inc.
1a44ec7a 4
9781053a 5;; Author: Danny Roozendaal (was: <danny@tvs.kun.nl>)
43f36b80 6;; Created: October 21 1996
0465b759 7;; Keywords: wp, print, postscript, cursive writing
1a44ec7a 8
43f36b80 9;; This file is part of GNU Emacs.
1a44ec7a 10
b1fc2b50 11;; GNU Emacs is free software: you can redistribute it and/or modify
43f36b80 12;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
1a44ec7a 15
43f36b80
RS
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
1a44ec7a 20
43f36b80 21;; You should have received a copy of the GNU General Public License
b1fc2b50 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
1a44ec7a 23
43f36b80
RS
24;;; Commentary:
25;;
26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27;; The function handwrite creates PostScript output containing a
28;; handwritten version of the current buffer..
29;; Other functions that may be useful are
30;;
31;; handwrite-10pt: sets the font size to 10 and finds corresponding
32;; values for the line spacing and the number of lines
33;; on a page.
34;; handwrite-11pt: which is similar
35;; handwrite-12pt: which is also similar
36;; handwrite-13pt: which is similar, too
37;;
38;; handwrite-set-pagenumber: set and unset page numbering
39;;
40;;
41;; If you are not satisfied with the type page there are a number of
42;; variables you may want to set.
43;;
44;;
45;; Installation
46;;
47;; type at your prompt "emacs -l handwrite.el" or put this file on your
865fe16f 48;; Emacs-Lisp load path, add the following into your init file:
43f36b80
RS
49;;
50;; (require 'handwrite)
51;;
52;; "M-x handwrite" or "Write by hand" in the edit menu should work now.
53;;
54;;
55;; I tried to make it `iso_8859_1'-friendly, but there are some exotic
56;; characters missing.
57;;
58;;
59;; Known bugs: -Page feeds do not do their work, but are ignored instead.
60;; -Tabs are not always properly displayed.
61;; -Handwrite may create corrupt PostScript if it encounters
62;; unknown characters.
63;;
64;; Thanks to anyone who emailed me suggestions!
65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
66
67
68;;; Code:
69
121656e9 70;; From ps-print.el
d94707e0
JB
71(defvar ps-printer-name)
72(defvar ps-lpr-command)
121656e9 73(defvar ps-lpr-switches)
d94707e0 74
43f36b80
RS
75
76;; Variables
77
323f7c49 78(defgroup handwrite nil
283bf437 79 "Turns your Emacs buffer into a handwritten document."
323f7c49
SE
80 :prefix "handwrite-"
81 :group 'games)
82
43f36b80 83(defvar handwrite-psindex 0
a2b80428 84 "The index of the PostScript buffer.")
b016851c
SM
85(defvar menu-bar-handwrite-map
86 (let ((map (make-sparse-keymap "Handwrite functions.")))
87 (define-key map [numbering]
88 '(menu-item "Page numbering" handwrite-set-pagenumber
89 :button (:toggle . handwrite-pagenumbering)))
90 (define-key map [handwrite-separator2] '("----" . nil))
91 (define-key map [10pt] '(menu-item "10 pt" handwrite-10pt
92 :button (:radio . (eq handwrite-fontsize 10))))
93 (define-key map [11pt] '(menu-item "11 pt" handwrite-11pt
94 :button (:radio . (eq handwrite-fontsize 11))))
95 (define-key map [12pt] '(menu-item "12 pt" handwrite-12pt
96 :button (:radio . (eq handwrite-fontsize 12))))
97 (define-key map [13pt] '(menu-item "13 pt" handwrite-13pt
98 :button (:radio . (eq handwrite-fontsize 13))))
99 (define-key map [handwrite-separator1] '("----" . nil))
100 (define-key map [handwrite] '("Write by hand" . handwrite))
101 map))
102(fset 'menu-bar-handwrite-map menu-bar-handwrite-map)
43f36b80
RS
103
104
105;; User definable variables
106
323f7c49 107(defcustom handwrite-numlines 60
67d110f1 108 "The number of lines on a page of the PostScript output from `handwrite'."
323f7c49
SE
109 :type 'integer
110 :group 'handwrite)
111(defcustom handwrite-fontsize 11
67d110f1 112 "The size of the font for the PostScript output from `handwrite'."
323f7c49
SE
113 :type 'integer
114 :group 'handwrite)
115(defcustom handwrite-linespace 12
67d110f1 116 "The spacing for the PostScript output from `handwrite'."
323f7c49
SE
117 :type 'integer
118 :group 'handwrite)
119(defcustom handwrite-xstart 30
67d110f1 120 "X-axis translation in the PostScript output from `handwrite'."
323f7c49
SE
121 :type 'integer
122 :group 'handwrite)
123(defcustom handwrite-ystart 810
67d110f1 124 "Y-axis translation in the PostScript output from `handwrite'."
323f7c49
SE
125 :type 'integer
126 :group 'handwrite)
127(defcustom handwrite-pagenumbering nil
67d110f1 128 "If non-nil, number each page of the PostScript output from `handwrite'."
323f7c49
SE
129 :type 'boolean
130 :group 'handwrite)
131(defcustom handwrite-10pt-numlines 65
67d110f1 132 "The number of lines on a page for the function `handwrite-10pt'."
323f7c49
SE
133 :type 'integer
134 :group 'handwrite)
135(defcustom handwrite-11pt-numlines 60
67d110f1 136 "The number of lines on a page for the function `handwrite-11pt'."
323f7c49
SE
137 :type 'integer
138 :group 'handwrite)
139(defcustom handwrite-12pt-numlines 55
67d110f1 140 "The number of lines on a page for the function `handwrite-12pt'."
323f7c49
SE
141 :type 'integer
142 :group 'handwrite)
143(defcustom handwrite-13pt-numlines 50
67d110f1 144 "The number of lines on a page for the function `handwrite-13pt'."
323f7c49
SE
145 :type 'integer
146 :group 'handwrite)
43f36b80
RS
147
148;; Interactive functions
149
a2b80428
RS
150;;;###autoload
151(defun handwrite ()
152 "Turns the buffer into a \"handwritten\" document.
153The functions `handwrite-10pt', `handwrite-11pt', `handwrite-12pt'
154and `handwrite-13pt' set up for various sizes of output.
155
b016851c
SM
156Variables: `handwrite-linespace' (default 12)
157 `handwrite-fontsize' (default 11)
158 `handwrite-numlines' (default 60)
159 `handwrite-pagenumbering' (default nil)"
43f36b80
RS
160 (interactive)
161 (let
121656e9 162 (;(pmin) ; thanks, Havard
43f36b80 163 (cur-buf (current-buffer))
a1506d29 164 (tpoint (point))
43f36b80
RS
165 (ps-ypos 63)
166 (lcount 0)
167 (ipage 1)
168 (nlan next-line-add-newlines) ;remember the old value
169 (buf-name (buffer-name) )
170 (textp)
171 (ps-buf-name) ;name of the PostScript buffer
2f88760a 172 (trans-table
c38e0c97
PE
173 '(("ÿ" . "264") ("á" . "207") ("à" . "210") ("â" . "211")
174 ("ä" . "212") ("ã" . "213") ("å" . "214") ("é" . "216")
175 ("è" . "217") ("ê" . "220") ("ë" . "221") ("í" . "222")
176 ("ì" . "223") ("î" . "224") ("ï" . "225") ("ó" . "227")
177 ("ò" . "230") ("ô" . "231") ("ö" . "232") ("õ" . "233")
178 ("ú" . "234") ("ù" . "235") ("û" . "236") ("ü" . "237")
179 ("ß" . "247") ("°" . "241") ("®" . "250") ("©" . "251")
180 ("ij" . "264") ("ç" . "215") ("§" . "244") ("ñ" . "226")
181 ("£" . "243")))
2f88760a
CY
182 (escape-table '("\\\\" "(" ")")) ; \\ comes first to not work
183 ; on inserted backslashes
184 line)
43f36b80
RS
185 (goto-char (point-min)) ;start at beginning
186 (setq handwrite-psindex (1+ handwrite-psindex))
187 (setq ps-buf-name
188 (format "*handwritten%d.ps*" handwrite-psindex))
189 (setq next-line-add-newlines t)
190 (switch-to-buffer ps-buf-name)
191 (handwrite-insert-header buf-name)
44e97401 192 (insert "%%Creator: GNU Emacs's handwrite version " emacs-version "\n")
43f36b80
RS
193 (handwrite-insert-preamble)
194 (handwrite-insert-info)
195 (handwrite-insert-font)
196 (setq textp (point))
197 (insert "%%Page: 1 1\n")
198 (insert "Hwjst\n")
199 (insert "/Hwsave save def\n")
200 (if handwrite-pagenumbering (insert "20 30 m\nxym(page 1)a\n"))
201 (insert "44 63 m\n")
202 (insert "xym( )a")
203 (backward-char 3)
204 (switch-to-buffer cur-buf)
205 (goto-char (point-min)) ;start at beginning
206 (save-excursion
2f88760a
CY
207 (while (not (eobp))
208 (setq line (thing-at-point 'line))
209 (dolist (escape escape-table)
210 (setq line (replace-regexp-in-string escape
211 (concat "\\\\" escape) line)))
212 (dolist (trans trans-table)
213 (setq line (replace-regexp-in-string (car trans)
214 (concat "\\\\" (cdr trans))
215 line)))
43f36b80 216 (switch-to-buffer ps-buf-name)
2f88760a 217 (insert (replace-regexp-in-string "\n" "" line))
43f36b80 218 (message "write write write...")
43f36b80
RS
219 (setq ps-ypos (+ ps-ypos handwrite-linespace))
220 (end-of-line)
221 (insert "\n")
222 (setq lcount (+ lcount 1))
2f88760a
CY
223 (when (= lcount handwrite-numlines)
224 (setq ipage (+ ipage 1))
225 (insert "0 0 m\n")
226 (insert "showpage exec Hwsave restore\n")
227 (insert "%%Page: " (number-to-string ipage) " "
228 (number-to-string ipage) "\n")
229 (insert "Hwjst\n")
230 (insert "/Hwsave save def\n")
231 (if handwrite-pagenumbering
232 (insert "20 30 m\nxym(page "
233 (number-to-string ipage) ")a\n"))
234 (setq ps-ypos 63)
235 (setq lcount 0))
236 (insert "44 " (number-to-string ps-ypos) " m\n")
43f36b80
RS
237 (insert "xym( )a")
238 (backward-char 3)
239 (switch-to-buffer cur-buf)
2f88760a 240 (forward-line 1)
43f36b80
RS
241 ))
242 (switch-to-buffer ps-buf-name)
97546017 243 (forward-line 1)
43f36b80
RS
244 (insert "showpage exec Hwsave restore\n\n")
245 (insert "%%Pages " (number-to-string ipage) " 0\n")
246 (insert "%%EOF\n")
c91c771d 247 ;;To avoid cumbersome code we simply ignore formfeeds
43f36b80
RS
248 (goto-char textp)
249 (while (search-forward "\f" nil t)
250 (replace-match "" nil t) )
251 (untabify textp (point-max)) ; this may result in strange tabs
252 (if (y-or-n-p "Send this to the printer? ")
504737d5
EZ
253 (progn
254 (require 'ps-print)
255 (let* ((coding-system-for-write 'raw-text-unix)
256 (ps-printer-name (or ps-printer-name
257 (and (boundp 'printer-name)
258 printer-name)))
259 (ps-lpr-switches
260 (if (stringp ps-printer-name)
261 (list (concat "-P" ps-printer-name)))))
2f88760a
CY
262 (apply (or (and (boundp 'ps-print-region-function)
263 ps-print-region-function)
264 'call-process-region)
504737d5 265 (point-min) (point-max) ps-lpr-command nil nil nil))))
43f36b80
RS
266 (message "")
267 (bury-buffer ())
268 (switch-to-buffer cur-buf)
269 (goto-char tpoint)
270 (setq next-line-add-newlines nlan)
271 ))
272
273
274(defun handwrite-set-pagenumber ()
a2b80428 275 "Toggle the value of `handwrite-pagenumbering'."
43f36b80
RS
276 (interactive)
277 (if handwrite-pagenumbering
b016851c
SM
278 (handwrite-set-pagenumber-off)
279 (handwrite-set-pagenumber-on)))
43f36b80
RS
280
281(defun handwrite-10pt ()
a2b80428
RS
282 "Specify 10-point output for `handwrite.
283This sets `handwrite-fontsize' to 10 and finds correct
284values for `handwrite-linespace' and `handwrite-numlines'."
43f36b80
RS
285 (interactive)
286 (setq handwrite-fontsize 10)
287 (setq handwrite-linespace 11)
288 (setq handwrite-numlines handwrite-10pt-numlines)
a2b80428 289 (message "Handwrite output size set to 10 points"))
43f36b80
RS
290
291
292(defun handwrite-11pt ()
a2b80428
RS
293 "Specify 11-point output for `handwrite.
294This sets `handwrite-fontsize' to 11 and finds correct
295values for `handwrite-linespace' and `handwrite-numlines'."
43f36b80
RS
296 (interactive)
297 (setq handwrite-fontsize 11)
298 (setq handwrite-linespace 12)
a2b80428 299 (setq handwrite-numlines handwrite-11pt-numlines)
a2b80428 300 (message "Handwrite output size set to 11 points"))
43f36b80
RS
301
302(defun handwrite-12pt ()
a2b80428
RS
303 "Specify 12-point output for `handwrite.
304This sets `handwrite-fontsize' to 12 and finds correct
305values for `handwrite-linespace' and `handwrite-numlines'."
43f36b80
RS
306 (interactive)
307 (setq handwrite-fontsize 12)
308 (setq handwrite-linespace 13)
309 (setq handwrite-numlines handwrite-12pt-numlines)
a2b80428 310 (message "Handwrite output size set to 12 points"))
43f36b80
RS
311
312(defun handwrite-13pt ()
a2b80428
RS
313 "Specify 13-point output for `handwrite.
314This sets `handwrite-fontsize' to 13 and finds correct
315values for `handwrite-linespace' and `handwrite-numlines'."
43f36b80
RS
316 (interactive)
317 (setq handwrite-fontsize 13)
318 (setq handwrite-linespace 14)
319 (setq handwrite-numlines handwrite-13pt-numlines)
a2b80428 320 (message "Handwrite output size set to 13 points"))
43f36b80
RS
321
322
323;; Internal Functions
324
325;;The header for the PostScript output. The argument is the name of
326;;the original buffer
327(defun handwrite-insert-header (buf-name)
328 (insert "%!PS-Adobe-2.0\n")
329 (insert "%%Title: " buf-name "\n")
330 (insert "%%CreationDate: " (current-time-string) "\n" )
331 (insert "%%Pages: (atend)\n")
332 (insert "%%For: " user-mail-address "\n")
333 (insert "%%EndComments\n"))
334
335;;Some PostScript definitions for using our font.
336(defun handwrite-insert-preamble ()
337 (insert "\n%%BeginPreamble
338/m {moveto} def
339/r {roll} def
340/e {exch} def
341/a {awidthshow} def
342/xym {0.52490 0. 32 0.05249 0.} def
343/HwJdict 80 dict def
344/Hwfdict 80 dict def
345/getsymb {Hwfdict /Jsymb get 3 1 r put} def
346/Chread{
347 { e begin
348 HwJdict begin %read in character specifications
349 /jnum e def
350 /jnum1 jnum 6 mul def
351 save symbstr jnum1 6 getinterval{
352 }forall
353 /pixvol e def
354 /pixwid e def
355 /charwidth e def
356 /trx e def
357 /try e def
358 /pixf e def
359 .02666667 .02666667 scale
360 /pixwid pixwid 1.042 mul def
361 /pixwidn pixwid trx add def
362 /pixvoln pixvol try add def
363 charwidth 0 trx try pixwidn pixvoln setcachedevice
364 newpath 0 0 m
365 pixf 0 gt{
366 pixf 3 bitshift
367 trx try translate
368 pixwid pixvol scale
369 /pixvol1 {pixvol 4 add true} def
370 /pixvol2 pixvol neg def
371 /pixvol3 pixvol 2 add def
372 pixvol1 pixwid 0 0 pixvol2 0 pixvol3 6 array astore
373 Jsymb jnum get
374 imagemask
375 }if
376 restore
377 end
378 end
379 }def
380}def
381/Hwjst{
382 /Joepie findfont [Hws 0 Hws pop 0 Hws neg 0 0] makefont setfont
383}def
384%%EndPreamble\n"))
385
b96fb65c 386;;The font size for the PostScript output.
43f36b80
RS
387;;Also the x-y-translations of the PostScript stuff.
388(defun handwrite-insert-info ()
389 (insert "\n%%BeginSizeTranslate\n")
390 (insert "/Hws " (number-to-string handwrite-fontsize) " def")
391 (insert " %The size of the font\n")
392 (insert (number-to-string handwrite-xstart)" "
393 (number-to-string handwrite-ystart))
394 (insert " translate %Translate the origin to the current location\n")
395 (insert "1 -1 scale %Flip the y coordinate\n")
396 (insert "%%EndSizeTranslate\n\n"))
397
398
399;;Bitmap PostScript font for pseudo handwritten documents.
400;;Two years ago, I created the 36 points font for my
401;;Apple Macintosh Classic II resulting in unusual ascii numbers.
402(defun handwrite-insert-font ()
403 (insert "\n%%BeginFont Joepie
404Hwfdict begin
405 /Jsymb 256 array def
406 /FontType 3 def
407 /FontBBox [0 0 1 1] def
408 /FontMatrix [1 0 0 1 0 0] def
409 /Encoding 256 array def
410end
411<002809000000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
412FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 002809080000
413FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 002809000000 FF28FFFF0000
414FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
415FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
416FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
417FF28FFFF0000 FF28FFFF0000 002809080000 020A0E08031E 021C0B0E0A0A
418040C09161418 04050A121323 040D0F1C141B 040C141C0F19 021B0B08060D
41902080B0C091E 0208080C0B20 041A0B100F0C 040E09141314 02060B08060B
4200219090C0C03 020C0B080304 04090C120F1F 04080A121017 020C10120514
421040A09121216 040C09121216 02090B120D15 040C0B121015 040A0A12121B
422020209120D1D 040A09121018 04040A12101C 020C0D080412 020408080717
423040B0B141116 040C0B16140B 040B0B141018 020A0D120C1C 04090B1C191F
424040A091A1C1C 0408071A1E20 040A0B1A1A1E 040E0D201E1A 040C0916181C
425040E0916171A 04010B1C1C27 060A0C20201E 040E060E141A 0401070E1327
426040E0A1C1D1A 040C0916181C 060C07262B1C 060C0520261C 04080D1E1C20
427040A05161C1C 040A0B1E1E1E 040A091A1D1E 040C0914171C 040E07161A1A
428060E091E1F1A 040E071A1D1A 060A0B2C2C1E 040808181B20 040409161722
429040C08181A1C 020A080A0A1D 040A0610121E 0208090A0A1F 041C0714160A
430040505161903 021B0C0C060D 040C08141713 040C0916181C 040C08121412
431040D0916181B 040C09141615 0202090C0D26 04040814171B 040A0916181E
432020C090A0D1B 0202090A0C23 040A0814171E 020C080A0D1C 060C09222412
433040C08161910 040C08141611 04000816191C 04020914171B 040A090E1014
434040A09101213 040C090C0F1B 040C09161812 040A09121412 040C09181A10
435040C08121511 04020812151C 040C08101312 040A050A0F1E 020A1114031C
4360208070A0E20 04140A141409 FF28FFFF0000 040A071A1B1C 040A091A181C
437040A0B1A171E 020F0F160E16 040A0F201A1E 04080D1E1A20 040E0B1E1D1A
438040C0814171B 040D0714171B 040D0714171A 040D0814171A 040D0814171B
439040D0814171B 04000912141C 040C0914151C 040C0914161C 040C0914151C
440040C0914151B 020B070A0D1C 020B070A0D1C 020B080A0D1C 020B070A0D1A
441040C0616191A 040B0714171D 040B08141719 040B0814171A 040B08141718
442040B08141718 040B0716191B 040B0716191B 040B0716191C 040B08161919
443040A0912111C 02180C0E090C 04050712141F 040A0816151C 04080A121220
444020F0A120E10 040408181522 04040816191D 040A0D201A1E 040A09201C1C
44506190B24210E 021C0B0C0708 0221090E0D03 040809141415 040C121E1619
44604080F1E1920 04130F1A1309 040C0B141216 04090914141E 040A0914131B
447040209161823 04030A161519 020B0B120E19 0407091A1921 040A0B1E141E
448040C0914140F 0401090C0F25 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
449FF28FFFF0000 040A0B14121A 04010910101B FF28FFFF0000 040A0614181C
450040A09141618 0407090E1221 040D0A141510 002800160000 04080A141119
45104080614151A 040A0B1E1804 FF28FFFF0000 040A071A1B1D 040A071A191D
452FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 041408141303 061409262404
453041A0B120F0B 021D0B120D0A 021E0E0A050A 021E0B0A060A FF28FFFF0000
454FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 040600060F1C FF28FFFF0000
455020C0A0C0B16 020D080C0C17 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
45602140B0A0506 02040908060E FF28FFFF0000 0608092A291E FF28FFFF0000
457FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
458FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
459040A0B1C181B 060C071E221C FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
460FF28FFFF0000 021D0C0E0C08 021E090E0C06 0421060E1105 FF28FFFF0000
461021F0A0A0506 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000
462041E09101107>
463Hwfdict begin /symbstr e def end
464255< 00000000 00000000 80018000 60030000 38060000 0E1C0000 03F00000
46501C00000 01800000 00000000 00000000>getsymb
466250< 0000 0000 6000 7800 7800 F800 F800 7000 0000 0000>getsymb
467248< 00000000 00000000 F8000000 3F800000 03F80000 007E0000 00038000
46800000000 00000000 >getsymb
469247< 0000 0000 0030 0060 38E0 7FC0 C300 8000 0000 0000 >getsymb
470246< 0000 0000 0C00 1E00 3F00 3380 60C0 4040 C020 0010 0000 0000
471>getsymb
472241< 000000000000 000000000000 008000000000 00C000000000 03C000000000
473038000000000 000000000000 000000000000 000000000000 000000000000
474010000000000 010000000000 010007C00000 03001FE00000 070038700000
475070030300000 0F0060300000 1B00C0700000 3300C0600000 6300C0C0C000
476C300C3818000 030046030000 03007C020000 0300F0060000 0180F00C0000
477018198180000 01C30C300000 00CE06300000 00FC03E00000 007801C00000
478000000000000 000000000000 >getsymb
479240< 00000000 00000000 00004000 0003C000 00038000 000E0000 000C0000
48000080000 00180000 0E187C00 1F98FC00 3FDCFF00 3FFFFF00 7FFFFE00
4817FFFFC00 FFFFF800 FFFFF000 FFFFF000 FFFFF000 FFFFF000 FFFFF000
482FFFFFC00 7FFFFC00 7FFFFF00 3FFFFF00 1FFFFE00 0FFFFE00 07FFF800
48303F3F000 00000000 00000000 >getsymb
484228< 000000000000 000000000000 03C010000000 07C0F0000000 1C7330000000
485383F20000000 303040000000 2030C0000000 6030C0000000 C01080000000
486C01180000000 C03100000000 406300000000 604200000000 60C40E000080
48771843F01E080 3F0CE183B180 1E0880CE1F00 001180FA0600 003100460600
4880023004C0200 0047004C0300 004B004C0300 00B300CC0300 00E300CC0200
48901C1818C0200 03C1830C0600 0380830C0C00 0600FE061800 1C007C03F000
490180000000000 300000000000 000000000000 000000000000 >getsymb
491226< 0000 0000 2000 1800 1800 0C00 0C00 0C00 0C00 0C00 0C00 1800 1000
4923000 6000 8000 0000 0000 >getsymb
493225< 0000 0000 7000 E800 F800 F800 F000 F000 0000 0000 >getsymb
494221< 0000 0000 8000 E000 3000 1C00 0E00 0700 0380 01C0 01C0 00E0 0030
4950030 0030 0060 00C0 0180 0300 0200 0600 0C00 1800 3000 4000 0000 0000
496>getsymb
497220< 0000 0000 0060 0040 00C0 0180 0300 0600 0C00 1C00 3000 7000 6000
498C000 4000 6000 3000 3000 1800 1C00 0E00 0600 0300 0100 0000 0000
499>getsymb
500218< 00000000 00000000 00020000 00060000 000E0000 000C0000 000C0000
50100180000 00180000 00100000 00300000 00200000 00200000 00400000
50200C00000 00C00000 01800000 01800000 03000000 03000000 06000000
50306000000 0C000000 1C000000 18000000 38000000 30000000 70000000
50460000000 C0000000 00000000 00000000 >getsymb
505213< 0000 0000 2000 1800 0C00 0400 0400 0C00 1800 3000 6000 8000 0000
5060000 >getsymb
507212< 0000 0000 0800 3000 6000 C000 C000 C000 6000 3000 1000 0800 0000
5080000 >getsymb
509211< 0000 0000 0040 1020 0810 0C18 0C18 1818 3010 4030 8060 0040 0000
5100000 >getsymb
511210< 00000000 00000000 00060000 04180000 18300000 30600000 60C00000
512C0C00000 C0C00000 C0C00000 C0400000 40200000 20000000 00000000
51300000000 >getsymb
514209< 000000000000 000000000000 FFF000000000 0FFFC0000000 000FFFFE0000
515000007FFF000 000000000000 000000000000 >getsymb
516208< 00000000 00000000 FFC00000 7FFF8000 007FE000 00000000 00000000
517>getsymb
518204< 00000000 00000000 00000200 00038C00 0007F800 001CF000 00380000
51900200000 00000000 00000000 00080000 00060000 00030000 00078000
5200007C000 000CE000 001CF000 00303000 00303E00 003FF800 00FF1800
52100400C00 00C00C00 01800600 01800600 03000300 06000300 1C000380
52230000380 60000380 E0000700 00000000 00000000 >getsymb
523203< 00000000 00000000 00300000 00180000 000E0000 00038000 0003C000
5240000E000 0000F000 00001800 00060800 00030000 00038000 00078000
525000EC000 000C6000 00182000 00302000 00703000 01FC3000 00FFF800
52601807F80 03800E00 07000200 06000200 0E000300 1C000100 38000180
527600000C0 C0000060 C0000060 00000000 00000000 >getsymb
528201< 00000000 00000000 80180600 E03C0700 E07C0700 703C0E00 00000000
52900000000 >getsymb
530200< 00000000 00000000 00100000 00180000 E00C0000 30060000 18060000
5310C070000 0E018000 0E01C000 0780C000 03806000 00E07000 00E03000
53200703800 00303800 00607000 00606000 01C0C000 0180C000 03018000
53306070000 0C060000 380C0000 30080000 00100000 00200000 00600000
53400000000 00000000 >getsymb
535199< 00000000 00000000 00010000 00620000 00C60000 018C0000 03180000
53606180000 0C300000 18600000 10600000 70C00000 60C00000 E1C00000
53761C00000 30E00000 38600000 18300000 1C100000 0E080000 070C0000
53803060000 01C30000 00C30000 00438000 00418000 00008000 00000000
53900000000 >getsymb
540197< 00000000 00000000 00003800 0000F000 0C038000 3F870000 70FE0000
541603C0000 C0000800 80001000 00003000 03802000 0FE06000 38F06000
542701CC000 600F8000 60078000 00030000 00000000 00000000 >getsymb
543196< 00000000 00000000 0001C000 001F8000 00380000 00600000 00600000
54400400000 00400000 00C00000 00C00000 00C00000 00C00000 00CC0000
54500980000 01F00000 0F800000 0D800000 01800000 01800000 01800000
54601800000 01800000 01800000 01800000 01800000 01800000 01800000
54701800000 01800000 03000000 02000000 06000000 8C000000 78000000
54800000000 00000000 >getsymb
549195< 00000000 00000000 00000400 00001800 0003F000 00078000 00060000
55000040000 000C0000 000C0000 600C0000 F00C0000 300C0000 18180000
55118180000 18180000 08100000 08300000 0C300000 0C600000 0C600000
5520C400000 0DC00000 07800000 07000000 02000000 00000000 00000000
553>getsymb
554194< 00000000 00000000 03018000 0F07C000 188C6000 10C83000 20701800
55560300C00 40200600 C0200300 C0000300 C0000300 40000300 40000300
55660000300 60000600 20000C00 30000800 10001800 18003000 0C006000
5570C00C000 06018000 03070000 010C0000 00980000 00F00000 00600000
55800400000 00400000 00000000 00000000 >getsymb
559192< 00000000 00000000 00C00000 00E00000 00C00000 00000000 00000000
56000000000 00C00000 00C00000 00600000 00600000 00C00000 01800000
56103000000 06000000 1C000000 38000000 60000000 60040000 C0060000
562C0020000 C0010000 E0030000 70060000 380C0000 1C3C0000 0FF80000
56307E00000 00000000 00000000 >getsymb
564191< 00000000 00000000 06000000 1F000000 318C0000 609F0000 60B38000
56560E18000 40418000 C040C000 C000C000 C000C000 C000C000 C0018000
56640030000 60060000 600C0000 30180000 30100000 18300000 18600000
56708400000 0CC00000 0C800000 05800000 03000000 03000000 02000000
56800000000 00000000 >getsymb
569186< 00000000 00000000 00060000 001C0000 00F80000 01F00000 01800000
57003800000 03800000 07000000 07000000 07000000 07000000 07000000
57107000000 07000000 07000000 07000000 07000000 07000000 07000000
5720F000000 0F000000 0F000000 0F000000 0F000000 0F000000 0F000000
5730E000000 0E000000 0E000000 0E000000 0E000000 0E000000 0E000000
5748C000000 FC000000 F8000000 30000000 00000000 00000000 >getsymb
575185< 00000000 00000000 00004000 7C003000 FF003000 CF806000 CDC0C000
5760CFF0000 0C1F0000 0C030000 0C030000 0C030000 0C030000 0C010000
5770C018000 3800D000 30006000 00000000 00000000 >getsymb
578184< 00000000 00000000 1FC00000 7FFC0000 EE0F0000 83038000 0301C000
5790180C000 01806000 01802000 01803000 01803000 01803000 01803000
58001803000 01803000 01806000 0180E000 0181C000 018F8000 03FC0000
5810FE00000 03000000 03000000 03000000 03000000 06000000 06000000
58206000000 06000000 06000000 06000000 00000000 00000000 >getsymb
583183< 00000000 00000000 000FF800 003FFE00 00F00700 03C00180 0F000080
58407000000 03C00000 01E00000 00780000 001E0000 00070000 0001C000
5850000E000 00007000 0000F800 0001C000 00038000 00060000 000C0000
58600380000 00700000 00E00000 01C00000 03800080 0F000180 1C000180
58738000180 70000300 E0000300 FC000600 7FFC0C00 03FFF800 0003F000
58800000000 00000000 >getsymb
589182< 0000 0000 0F00 3F80 40E0 8070 0038 0018 000C 000C 000C 000C 038C
5900FEC 1C3C 301C 201C 600C 600C 600C 600C 6008 6018 6030 3060 1FC0 0F80
5910000 0000 >getsymb
592181< 00000000 00000000 0600C000 0600C000 0600C000 0600C000 06008000
59306018000 06018000 0E018000 0E018000 0E018000 0E038000 0E038000
5940E038800 1E079800 1B0DF000 19F8E000 10F04000 30000000 30000000
59530000000 30000000 60000000 60000000 40000000 80000000 00000000
59600000000 >getsymb
597180< 00000000 00000000 08000000 0C030000 0C038000 00000000 00000000
59800000000 00000000 04030000 0C030000 0C030000 18030000 38030000
59930030000 70060300 F0060600 301C0C00 301C0C00 303C1800 186C3000
6001C6C6000 0CCC6000 078CC000 030D8000 000F0000 000E0000 003C0000
601007C0000 00CC0000 018C0000 030C0000 030C0000 03180000 03300000
60201E00000 00C00000 00000000 00000000 >getsymb
603179< 00000000 00000000 38000000 0E000000 03800000 00C00000 00600000
60400300000 001C0000 00070000 0003C000 00018000 00030000 00060000
605001C0000 00780000 00C00000 01800000 07000000 0E000000 18000000
60600000000 000FE000 1FFF0000 7FE00000 00000000 00000000 3FFFC000
607FFFF8000 00000000 00000000 >getsymb
608178< 00000000 00000000 00018000 00070000 000C0000 00180000 00700000
60901C00000 07000000 0C000000 38000000 60000000 C0000000 E0000000
61030000000 18000000 0E000000 07000000 01C00000 00E00000 00380000
611001C0000 00070000 00000000 00000000 3FFFF000 0FFFE000 00000000
61200000000 0FE00000 07FF8000 001FE000 00000000 00000000 >getsymb
613177< 00000000 00000000 01000000 03000000 03000000 03000000 03000000
61403000000 03000000 03000000 FFF80000 FFFF0000 03000000 03000000
61503000000 01800000 01800000 01800000 01800000 01800000 00000000
61600000000 FFFFC000 0FFFC000 00000000 00000000 >getsymb
617176< 00000000 00000000 000F0000 003FC000 3C60E000 7EC06000 C1806000
618C180C000 61FF8000 7F1F0000 1E000000 00000000 00000000 >getsymb
619175< 00000000 00000000 00000300 00000600 00000400 001FEC00 00783800
62000E03C00 03806600 06006200 0E004300 0C00C300 0C018180 0C018180
62118030180 18020180 18060180 180C0180 18080180 18180180 18300300
62218700300 18E00200 09800600 0D000C00 0F000800 07003800 0780F000
6230DFFC000 0C7F0000 18000000 30000000 60000000 C0000000 00000000
62400000000 >getsymb
625174< 00000000 00000000 00FF0000 03C1C000 0700E000 1C003000 30001000
62670001800 60001800 60000C00 60000C00 C0000C00 C0000C00 C0000C00
627C0000C00 C0000C00 C0000C00 C0001800 C0001800 C0001000 40003000
62860006000 70004000 3801C000 1C078000 0FFE0000 03F80000 00000000
62900000000 >getsymb
630173< 00000000 00000000 00040000 000C0000 000C0000 000C0000 00180000
631001FF000 07FFC000 3FF80000 78300000 00600000 00600000 00C00000
63200FFE000 3FFFC000 FFC00000 01800000 01800000 03000000 03000000
63306000000 04000000 00000000 00000000 >getsymb
634172< 0000 0000 E038 6038 C030 0000 0000 >getsymb
635171< 0000 0000 0600 1C00 3000 6000 4000 C000 C000 8000 0000 0000
636>getsymb
637170< 000000000000 000000000000 000F20000000 01F82C700000 FF803EF80000
638FF00638C0000 6300630C0000 330063040000 130063060000 1B0063060000
6390B00C3060000 0B00C3060000 0B00C3068000 0E0183028000 060101038000
640000000030000 000000000000 000000000000 >getsymb
641169< 00000000 00000000 0000F800 0003FC00 003F1E00 00F80700 03800180
64206000180 1C0000C0 300000C0 3007C0C0 601FF0E0 60301820 60200C30
643C0600430 C0C00030 C0C00030 C0C00030 C0C00030 C0C02030 C0402030
644C0606030 6030C020 603F8060 380E01C0 3C000300 03001E00 03C03C00
64500FFE000 00FF0000 00000000 00000000 >getsymb
646168< 00000000 00000000 00078000 000FC000 000CE000 000C7000 007E1800
64700FC0C00 07C00E00 0F800700 0C060300 1C9F8300 30B0C180 30C0C180
64870C1C180 E0C38080 C0FF00C0 C0FC00C0 C1C800C0 C1CC00C0 C30E01C0
649C3030180 E2038300 6201C300 30000700 30000E00 38003C00 1C007800
6500E00E000 0F03C000 07FF8000 01FC0000 00000000 00000000 >getsymb
651167< 00000000 00000000 00070000 003F8000 0C70C000 1EC04000 1E804000
6521700C000 37018000 36030000 360C0000 661F0000 66018180 C6008300
6530600C600 0600CC00 0600D800 0600F000 0600E000 0600C000 0E038000
6540E0E0000 0C180000 0C200000 0C000000 0C000000 08000000 08000000
65510000000 10000000 10000000 00000000 00000000 >getsymb
656166< 00000000 00000000 00060000 00038000 01F0C000 07AFE000 3FBDF000
6575F5C3000 4FFC3000 5FFC3000 BFFC1000 FFFC1000 7FFC1000 7FFC1800
6587FF81800 7FF81800 FFF81800 FFF80800 7FF80800 7FF80800 3FF80800
65900580800 00180800 00180800 00181800 00181800 00181800 00181000
66000183000 00182000 00186000 00186000 0018C000 001CC000 000F8000
66100078000 00000000 00000000 >getsymb
662165< 0000 0000 3000 4F00 9FC0 FFE0 FFF0 7FF8 FFF8 FFF8 FFF8 FFFC 9FE4
663AFE4 4FD8 7FF0 2700 1E00 0000 0000 >getsymb
664164< 00000000 00000000 00F00000 01FC0000 03060000 06020000 06000000
66507000000 03200000 01C00000 07F00000 1C1C0000 30060000 60030000
666C0018000 C0018000 C0018000 E0070000 700C0000 1E780000 07E00000
66703F00000 06380000 081C0000 000C0000 00060000 00030000 00018000
6680400C000 0400C000 06018000 03038000 01FE0000 00F00000 00000000
66900000000 >getsymb
670163< 00000000 00000000 00018000 0007C000 001C6000 00303000 00601800
67100600800 00400000 00C00000 00C00000 00C00000 00C00000 00C00000
67200C00000 00C00000 1FC00000 03FE0000 01FFC000 01C00000 01800000
6730180E000 03013000 07001800 06001800 0C001000 18002000 3FC0E000
674F07FC000 601F0000 00000000 00000000 >getsymb
675162< 00000000 00000000 00180000 00300000 00200000 00600000 00600000
67600600000 00600000 01F00000 07F80000 0CCC0000 08C40000 18C00000
67730C00000 70800000 F1801000 31803000 31806000 31804000 3180C000
67831818000 19818000 19830000 0D8E0000 07980000 01F00000 01800000
67901000000 01000000 03000000 03000000 02000000 00000000 00000000
680>getsymb
681161< 0000 0000 3C00 6600 6300 4180 C180 C080 C080 E180 FF00 4C00 6000
6823000 0000 0000 >getsymb
683160< 00000000 00000000 00C00000 00C00000 00C00000 00C00000 00C00000
68400C00000 00C00000 00C00000 01C00000 E1C00000 FFE00000 07FC0000
68501CF8000 01800000 01800000 01800000 01800000 01800000 01800000
68601800000 01800000 01800000 01800000 01800000 01800000 01800000
68701800000 01000000 00000000 00000000 >getsymb
688159< 00000000 00000000 01000000 0300C000 0300C000 00006000 00000000
68900000000 00000000 00000000 00008000 04008000 0E018000 3B018000
69063010000 43010180 C3030300 02030600 06030400 06030C00 06030C00
69106070800 06059800 060D9800 06189000 03F0F000 01E06000 00000000
69200000000 >getsymb
693158< 00000000 00000000 00100000 00780000 01CE0000 03870000 06018000
6940400C000 08006000 00002000 00000000 00000000 00000000 00004000
69500004000 0C018000 1E018000 33030000 63030180 C3030300 03030600
69606030600 06030400 06070C00 06070C00 06051800 06091800 07191000
69703F1F000 01E0E000 00000000 00000000 >getsymb
698157< 00000000 00000000 01800000 00C00000 00F00000 00300000 00180000
699000C0000 00060000 00000000 00000000 00000000 00008000 00018000
70000018000 3C018000 7E018000 43018180 C3010300 03030600 06030600
70106030C00 06070C00 06070C00 06059800 060D9800 07089000 03F8F000
70201F06000 00000000 00000000 >getsymb
703156< 00000000 00000000 00007000 0001C000 00030000 000E0000 00380000
70400200000 00E00000 00000000 00000000 00004000 0E00C000 1E00C000
70513018000 33018000 63030000 43030180 C3030300 03030600 06030600
70606070C00 06070C00 060F0C00 06099800 06199800 07309000 03E0F000
70701C06000 00000000 00000000 >getsymb
708155< 00000000 00000000 00C0C000 01E38000 11370000 0E1E0000 04000000
70900000000 00000000 00F00000 03FC0000 071E0000 0E070000 38018000
7107801C600 D801EC00 1801B800 18018000 18018000 0C018000 0C018000
71106010000 06030000 03060000 01FC0000 00F00000 00000000 00000000
712>getsymb
713154< 00000000 00000000 0C040000 0C0E0000 100E0000 00000000 00000000
71400000000 00000000 00F00000 03FC0000 079E0000 0F070000 3F038000
7157203C600 C6017C00 06013000 06018000 0E018000 0C018000 0C010000
71606030000 06060000 030C0000 01F80000 00F00000 00000000 00000000
717>getsymb
718153< 00000000 00000000 00C00000 00600000 00F00000 01BC0000 030E0000
71906070000 18018000 1000E000 00000000 00F00000 03FC0000 079E0000
7201F070000 3C038000 7803C600 D8016C00 18013800 18018000 18018000
7210C018000 0C010000 06030000 06060000 030C0000 01F80000 00F00000
72200000000 00000000 >getsymb
723152< 00000000 00000000 06000000 07000000 01C00000 00780000 003C0000
72400070000 00000000 00000000 00F00000 03FC0000 071E0000 1C030000
72538038000 7801C600 D8016C00 18013800 18018000 18018000 08018000
7260C010000 0C030000 06060000 030C0000 01F80000 00F00000 00000000
72700000000 >getsymb
728151< 00000000 00000000 00010000 00020000 000C0000 00180000 00300000
72900E00000 03800000 00000000 00000000 00000000 00000000 00000000
73000F00000 03FC0000 079C0000 1C060000 38030000 7801C600 D8016C00
73118013800 18018000 18018000 1C018000 0C030000 0C020000 0C060000
732060C0000 07F80000 01F00000 00000000 00000000 >getsymb
733150< 00000000 00000000 00000600 00E00C00 01B83800 010E6000 0603C000
7340C000000 00000000 00000000 00000000 00000000 00000000 0F1C0000
7353FBF0000 31B38000 61E18000 C1C18180 81818180 01818300 01818300
73601818600 03018600 07018400 06018C00 0600CC00 06007800 06003000
73700000000 00000000 >getsymb
738149< 0000 0000 1800 3830 3878 0070 0000 0000 0000 0000 0C00 1800 1800
7393000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00 1E00 1C00
7400800 0000 0000 >getsymb
741148< 0000 0000 0300 0780 0D80 18C0 3040 2060 2030 4030 0018 0000 0C00
7421800 1800 3000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00
7431E00 1C00 0800 0000 0000 >getsymb
744147< 0000 0000 8000 E000 7000 1800 0C00 0700 0780 0000 0000 0000 0C00
7451800 1800 3000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00
7461E00 1C00 0800 0000 0000 >getsymb
747146< 0000 0000 0018 0030 0060 01C0 0300 0E00 1C00 0000 0000 0000 0C00
7481800 1800 3000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00
7491E00 1C00 0800 0000 0000 >getsymb
750145< 00000000 00000000 301C0000 380C0000 30000000 00000000 00000000
75100000000 00000000 03E00000 0FF00000 1C180000 30180000 60180000
75240300000 C0600000 C0C00000 C7800000 FE001800 F0001000 60003000
75330006000 3000C000 18018000 0C030000 0C060000 061C0000 03F80000
75400E00000 00000000 00000000 >getsymb
755144< 00000000 00000000 03E00000 0FF80000 300E0000 20030000 40010000
756C0000000 00000000 00000000 03E00000 07300000 0C180000 180C0000
757300C0000 200C0000 60380000 60E00000 67C00000 FE001800 60003000
75860006000 3000C000 30018000 10030000 18060000 0C0C0000 06380000
75903F00000 01C00000 00000000 00000000 >getsymb
760143< 00000000 00000000 38000000 0C000000 07000000 01800000 00C00000
76100400000 00000000 00000000 01C00000 07E00000 0C300000 18180000
76230080000 30380000 60E00000 C3800000 CE000000 F8000C00 F0001800
76360003000 30006000 3000C000 18018000 08030000 0C060000 060C0000
76403F80000 01E00000 00000000 00000000 >getsymb
765142< 00000000 00000000 001C0000 00780000 00C00000 00800000 03000000
76602000000 00000000 00000000 07800000 1FC00000 30600000 60300000
76760300000 40600000 C1C00000 C7800000 9E000000 F0000800 C0001800
768C0003000 60006000 2000C000 30018000 18030000 080E0000 0C180000
76907F00000 03C00000 00000000 00000000 >getsymb
770141< 00000000 00000000 03E00000 0FF00000 18180000 30080000 60000000
77160003000 40006000 C000C000 C0008000 C0018000 C0018000 C0030000
77240030000 60020000 30060000 1F0C0000 07F80000 00E00000 00C00000
77300400000 00780000 001C0000 00040000 04060000 06060000 03060000
774030C0000 01F80000 00000000 00000000 >getsymb
775140< 00000000 00000000 00F00000 01F80000 02880000 00880000 00D80000
77600700000 00000000 00000000 01E08000 03F98000 060D8000 0C070000
77718060000 10060000 30060000 70060000 E0060600 E00C0400 600C0C00
778600C1800 201C1000 30163000 30366000 18366000 18624000 0FC3C000
77907818000 00000000 00000000 >getsymb
780139< 00000000 00000000 00004000 00008000 0E030000 339E0000 40F00000
78100000000 00000000 00000000 01E08000 03F98000 060D8000 0C070000
78218060000 10060000 30060000 70060000 E0060600 E00C0400 600C0C00
783600C1800 201C1000 30163000 30366000 18366000 18624000 0FC3C000
78407818000 00000000 00000000 >getsymb
785138< 00000000 00000000 00080000 040C0000 1C0C0000 18000000 00000000
78600000000 00000000 01E08000 03F98000 060D8000 0C070000 18060000
78710060000 30060000 70060000 E0060600 E00C0400 600C0C00 600C1800
788201C1000 30163000 30366000 18366000 18624000 0FC3C000 07818000
78900000000 00000000 >getsymb
790137< 00000000 00000000 00F00000 031C0000 0E060000 18038000 00008000
79100000000 00000000 01E08000 03F98000 060D8000 0C070000 18060000
79210060000 30060000 70060000 E0060600 E00C0400 600C0C00 600C1800
793201C1000 30163000 30366000 18366000 18624000 0FC3C000 07818000
79400000000 00000000 >getsymb
795136< 00000000 00000000 10000000 0C000000 04000000 06000000 03000000
79601800000 00000000 00000000 01E08000 03F98000 060D8000 0C070000
79718060000 10060000 30060000 70060000 E0060600 E00C0400 600C0C00
798600C1800 201C1000 30163000 30366000 18366000 18624000 0FC3C000
79907818000 00000000 00000000 >getsymb
800135< 00000000 00000000 00030000 000E0000 00180000 00300000 00400000
80100000000 00000000 00000000 01E08000 03F98000 060D8000 0C070000
80218060000 10060000 30060000 70060000 E0060600 E00C0400 600C0C00
803600C1800 201C1000 30163000 30366000 18366000 18624000 0FC3C000
80407818000 00000000 00000000 >getsymb
805134< 00000000 00000000 38003800 38003800 30001800 00000000 00000000
80620000000 60001800 60001800 60001800 C0001800 C0001800 C0001800
807C0003000 C0003000 C0006000 C0006000 C000C000 C001C018 C001C030
808C003C060 6006C060 600C60C0 30186180 3C303300 0FE01E00 07C00C00
80900000000 00000000 >getsymb
810133< 00000000 00000000 0F878000 1FCFC000 307CF800 303C3C00 30300C00
81130300600 30300300 30300300 30300300 30300300 30300700 60300E00
812C031FC00 C073F800 C0FF0000 C0FF0000 C0C30000 C0C30000 C0C18000
813C0C0C000 C0C0E000 C0C07000 E0C03000 E0C03800 70C00E00 30C00E00
81430C00300 30C00300 38C00380 1CC00180 0F8000C0 0F000040 00000000
81500000000 >getsymb
816132< 00000000 00000000 0F000100 1F800100 30E00300 30700300 30700300
81730700300 20580300 204C0300 20CC0380 60CC01C0 E0CE00C0 E0C700C0
818C0C300C0 C0C300C0 C0C381C0 C0C1C380 C0C0C300 C0C0C300 C0C0C300
819C0C0C300 C0C06300 C0C06300 C0C03300 C0C03300 C0C03F00 C0C01F00
820C0C00F00 C1C00F00 FF800F00 3F000600 00000000 00000000 >getsymb
821131< 0000 0000 000C 0018 0030 00E0 0380 0000 1FC0 09FC 181C 1000 3000
8222000 7F00 6FE0 E000 C000 C000 8000 C000 F000 3E00 07F0 0000 0000
823>getsymb
824130< 00000000 00000000 003FC000 00FFE000 07F03000 0FC03800 1F000C00
8253B000E00 33000000 73000000 63000000 63000000 C3000000 C3000000
826C3000000 C3000000 C3000000 C3000000 C3000000 C3000000 C3000000
827C3000000 C3000000 C3000000 C6000000 CC000200 7C000C00 3C001C00
82807003000 03807000 01FFE000 00FF8000 00000000 00000000 >getsymb
829129< 00000000 00000000 000F0000 001F8000 0030C000 0030C000 0010C000
830001F0000 00000000 00000000 000C0000 000E0000 000E0000 000F0000
83100338000 00338000 0040C000 00C0C000 00FFC000 00FFE000 0101E000
83203003000 04003800 0C003800 10000C00 30000C00 60000E00 60000E00
833C0000600 C0000700 00000000 00000000 >getsymb
834128< 00000000 00000000 00C00000 00E0E000 00E0E000 0070F000 00000000
83500000000 00000000 00000000 00030000 00030000 00038000 0003C000
836000CE000 000CF000 00383000 00303800 0037FC00 003FBC00 00C00C00
83700C00E00 03000700 03000300 0C000380 0C000180 3C0000C0 380000C0
838E0000060 C0000060 00000000 00000000 >getsymb
839126< 00000000 00000000 00001000 00003000 00004000 1C018000 3E030000
84063060000 819C0000 00F00000 00600000 00000000 00000000 >getsymb
841125< 0000 0000 0780 1FE0 3870 0030 0030 0030 0030 0030 0030 0070 0060
8420040 0060 0030 0018 001C 0070 0060 0040 00C0 00C0 00C0 00C0 00C0 00C0
8430060 0020 0030 C030 7060 1DE0 0F80 0000 0000 >getsymb
844124< 0000 0000 6000 6000 6000 6000 6000 6000 6000 6000 6000 6000 6000
8456000 6000 6000 6000 C000 C000 C000 C000 C000 C000 C000 C000 C000 C000
846C000 C000 4000 0000 0000 >getsymb
847123< 00000000 00000000 00F80000 03FC0000 07020000 06000000 0C000000
8480C000000 0C000000 0C000000 0C000000 0C000000 18000000 18000000
84970000000 E0000000 38000000 0C000000 0C000000 0C000000 0C000000
8500C000000 0C000000 0C000000 18000000 18000000 30000000 30000000
85130040000 183C0000 1CF00000 07800000 00000000 00000000 >getsymb
852122< 00000000 00000000 03020000 078E0000 0CFC0000 186C0000 30080000
85330180000 60300000 C0306000 0060C000 0040C000 00C18000 00818000
85401830000 01030000 03060000 078C0000 0CF80000 18300000 00000000
85500000000 >getsymb
856121< 00000000 00000000 0600C000 0600C000 0C00C000 1C00C000 3C018000
85738038000 78038000 D8031800 18031000 18073000 180F2000 181B6000
8581C334000 0E62C000 07C78000 00070000 00060000 000E0000 001E0000
85900360000 00660000 00C60000 01860000 01860000 01840000 018C0000
86000F80000 00700000 00000000 00000000 >getsymb
861120< 00000000 00000000 0C000000 1E030000 1B078000 330C8000 31180000
86261B00000 C1B01800 01A03000 01E02000 00C06000 00C04000 00C0C000
86301C08000 63418000 36670000 3C3E0000 18180000 00000000 00000000
864>getsymb
865119< 00000000 00000000 18004000 38084000 6C186000 4C186000 CC186040
86608183980 18183F00 18183600 18183000 18383000 18683000 18682000
8670C4C2000 0ECC6000 0386C000 01838000 00000000 00000000 >getsymb
868118< 00000000 00000000 18180000 3C1C0000 6C0C0000 4E0E0000 C6073000
8690607E000 0606C000 0C020000 0C030000 0C030000 0C030000 0C030000
8700C060000 040C0000 06180000 06300000 03E00000 01800000 00000000
87100000000 >getsymb
872117< 00000000 00000000 00004000 0E00C000 1E00C000 13018000 33018000
87363030000 43030000 C3030300 03030600 06030600 06070C00 06070C00
874060F0C00 06099800 06199800 07309000 03E0F000 01C06000 00000000
87500000000 >getsymb
876116< 00000000 00000000 00100000 00300000 00300000 00700000 00F00000
87701B00000 01300000 03300000 06200000 06200000 0C600000 18600000
87818400000 30400000 60400000 C6460000 0F4C0000 11580000 10F00000
8791FC00000 0CC00000 00800000 00800000 00800000 00800000 00800000
88000800000 00000000 00000000 >getsymb
881115< 00000000 00000000 00C00000 01C00000 07600000 1C600000 30300000
88260304000 C010C000 00198000 00198000 001B0000 000F0000 000E0000
883000C0000 00180000 00300000 00600000 18C00000 0F800000 07000000
88400000000 00000000 >getsymb
885114< 00000000 00000000 0C100000 1E300000 33F00000 31900000 60300000
88660600000 C0410000 80C20000 01860000 030C0000 03180000 03180000
88703300000 06300000 06200000 06600000 06400000 06C00000 07800000
88803000000 00000000 00000000 >getsymb
889113< 00000000 00000000 00004000 00FCC000 03FEC000 0F06C000 3C03C200
89078018600 D8018400 10038C00 30078C00 30058800 300D9800 30099800
89130119800 38333000 18633000 0FC23000 07062000 00066000 00064000
892000CC000 000CC000 000D8000 000D0000 000D0000 000F0000 000E0000
89300060000 00000000 00000000 >getsymb
894112< 00000000 00000000 00380000 0C7C0000 1EC60000 36C20000 67830000
89567030180 C6010300 06018600 06018400 0E018C00 0C008800 0C00D800
8960C007000 0C002000 0C000000 0C000000 0C000000 18000000 18000000
89718000000 18000000 18000000 18000000 18000000 18000000 18000000
89810000000 10000000 00000000 00000000 >getsymb
899111< 00000000 00000000 00F00000 03FC0000 079E0000 1F070000 3C038000
9007803C000 D8016C00 18013800 18018000 18018000 0C018000 0C010000
90106030000 06060000 030C0000 01F80000 00F00000 00000000 00000000
902>getsymb
903110< 00000000 00000000 0E0E0000 1F1F0000 33B30000 21A18000 61E18000
904C1C18180 81818180 01818300 03018300 03018600 07018600 06018400
9050E018C00 0C00CC00 0C007800 0C003000 00000000 00000000 >getsymb
906109< 000000000000 000000000000 000000E00000 060001F00000 0F1E01300000
90719BF03180000 31E382180000 31C0C6180000 6180C4180000 C180CC183000
9088180C8186000 0180D8186000 0180F018C000 0180E0198000 0380C0190000
9090300C01B0000 0601800E0000 0601800E0000 060180040000 060180000000
910000000000000 000000000000 >getsymb
911108< 0000 0000 0700 0F80 08C0 18C0 18C0 18C0 30C0 30C0 30C0 3080 3180
9123300 3600 3600 3C00 3800 3008 7018 F030 B020 3060 3040 30C0 30C0 3080
9131980 1F00 0E00 0000 0000 >getsymb
914107< 00000000 00000000 00300000 00F80000 018C0000 018C0000 030C0000
915030C0000 03180000 03300000 03600000 03C00000 03800000 03000000
91607000000 0F000000 1B1E0000 323F0000 66618000 C6C18600 86C30C00
917078E1800 07383000 07E03000 07806000 06C06000 0C60C000 0C20C000
9180C318000 18330000 181E0000 180C0000 00000000 00000000 >getsymb
919106< 0000 0000 0080 0300 0300 0000 0000 0600 0600 0600 0E00 1E00 1600
9203600 6610 C630 8660 06C0 0780 0700 0600 0E00 1E00 3600 6600 6600 C600
921C600 C600 C600 C600 C600 CC00 CC00 CC00 7800 3000 0000 0000 >getsymb
922105< 0000 0000 0600 0600 0200 0000 0000 0000 0000 0000 0000 0C00 1800
9231800 3000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00 1E00
9241C00 0800 0000 0000 >getsymb
925104< 00000000 00000000 01E00000 03300000 03180000 02180000 06180000
92606180000 06180000 06300000 06200000 06600000 06C00000 07800000
92707000000 0E000000 1E000000 36000000 66000000 C6000300 06380600
928067C0600 06C60C00 07830C00 07030C00 06031800 06031800 06031800
9290C033000 0C033000 1801E000 1800C000 00000000 00000000 >getsymb
930103< 00000000 00000000 00300000 00F88000 038D8000 06070000 0C030000
93118070000 38070000 780F0000 D81B0600 98330C00 18331800 18633000
9320CC36000 0783C000 03078000 000F0000 003B0000 00630000 00C30000
93301830000 03060000 06060000 06060000 060C0000 06180000 03F00000
93401E00000 00000000 00000000 >getsymb
935102< 0000 0000 0380 07C0 0CC0 08C0 18C0 18C0 1980 1980 1900 1B00 1A00
9361C00 1C00 1800 3800 3800 5800 D818 1C70 1FC0 1E00 1B00 1980 18C0 18C0
9371860 1860 1860 1860 1860 1860 1860 1860 18C0 18C0 0C80 0F80 0700 0000
9380000 >getsymb
939101< 00000000 00000000 03E00000 0FF80000 1C1C0000 300C0000 200C0000
940600C0000 60380000 40E00000 C7800000 DE000400 F0000C00 E0001800
94160003000 30006000 3000C000 18018000 08030000 0C060000 079C0000
94203F80000 00E00000 00000000 00000000 >getsymb
943100< 00000000 00000000 00004000 00004000 00004000 0000C000 0000C000
9440000C000 0000C000 00018000 00018000 00018000 01E18000 07F18000
9450C1B8000 181F0000 180F0000 30060000 70060000 F0020300 B0060600
94630060400 300E0C00 300B0C00 101B1800 18319800 0C61B000 07C1F000
9470380E000 00000000 00000000 >getsymb
94899< 00000000 00000000 01F00000 07380000 0E0C0000 0C040000 18000000
94930000000 70000000 F0001000 30003000 30006000 30004000 3000C000
95030018000 18018000 18030000 0E0E0000 07380000 01F00000 00000000
95100000000 >getsymb
95298< 00000000 00000000 00600000 00F00000 01980000 010C0000 030C0000
953030C0000 03180000 02100000 06300000 06600000 07C00000 07000000
95406000000 0E000000 1E000000 36000000 66008000 C600C300 0601FE00
9550601B800 02018000 03018000 03018000 01010000 01830000 00C60000
956007C0000 00380000 00000000 00000000 >getsymb
95797< 00000000 00000000 01E08000 03F98000 060D8000 0C070000 18060000
95810060000 30060000 70060000 E0060600 E00C0400 600C0C00 600C1800
959201C1000 30163000 30366000 18366000 18624000 0FC3C000 07818000
96000000000 00000000 >getsymb
96196< 0000 0000 1800 3000 3000 6000 6000 C000 C000 C000 C000 6000 3000
9621800 0400 0000 0000 >getsymb
96395< 00000000 00000000 FF800000 3FFFFF00 00FFFF80 00000000 00000000
964>getsymb
96594< 00000000 00000000 00700000 01F80000 038C0000 06060000 1C030000
9663001C000 6000E000 C0003000 00001800 00000C00 00000000 00000000
967>getsymb
96893< 0000 0000 3FC0 FFC0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0
96900C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0
97000C0 00C0 0180 0180 3F80 7F00 0000 0000 >getsymb
97192< 00000000 00000000 E0000000 70000000 30000000 18000000 18000000
9720C000000 0C000000 0E000000 06000000 06000000 03000000 03000000
97301800000 01800000 00C00000 00C00000 00400000 00600000 00600000
97400200000 00300000 00180000 00180000 00180000 000C0000 000E0000
97500060000 00070000 00038000 0000C000 00000000 00000000 >getsymb
97691< 0000 0000 7800 7F00 63C0 6000 6000 6000 6000 6000 6000 6000 6000
9776000 6000 6000 6000 6000 6000 6000 C000 C000 C000 C000 C000 C000 C000
978C000 E000 7C00 7F00 0000 0000 >getsymb
97990< 00000000 00000000 0C01F000 3E07B000 630C2000 41F86000 8070C000
98000018000 00030000 00060000 00040000 000C0000 00180000 00180000
98100300000 07E00000 00FC0000 00C00000 00800000 01800040 030000C0
98203000180 06000180 06000300 0C780600 09F80600 1B0F0C00 1E039800
9833C00F000 70007000 00000000 00000000 >getsymb
98489< 00000000 00000000 00002000 00002000 20002000 70006000 C8006000
985CC006000 CC00C000 8C00C000 0C00C000 0C00C000 0C00C000 0C00C000
9860C01C000 0C01C000 0403C000 0602C000 0602C600 0604CC00 021CD800
98703F0F000 01C0E000 0001C000 0003C000 0006C000 000CC000 0018C000
9880030C000 00608000 00418000 00C30000 00860000 008C0000 00D80000
98900700000 00000000 00000000 >getsymb
99088< 00000000 00000000 1F000000 31C00C00 30601E00 30303300 30387100
99118186000 0C18C000 000CC000 000C8000 000D8000 000F8000 000F0000
992000F0000 00070000 00060000 00060000 00060000 00060000 00060060
993000600C0 00060080 000F0180 400F0180 C01F0180 C0198100 C0318300
9946030C300 20604200 30C06600 1C803C00 0F801800 03000000 00000000
99500000000 >getsymb
99687< 000000000000 000000000000 100000000000 780000000000 4C0000000000
9978C0000000000 0C0030000000 0C00300000C0 0C00600001A0 0C0060000100
9980C0060000300 0C0060000300 0C00C0000300 0C00C0000300 1800C0000300
9991800C0000300 1001C0000600 3001C0000600 3003C0000C00 3003C0000C30
10003006C0001860 300CC00030C0 3018C00020C0 3018C0006180 3030C000C380
10011830C0018700 1860C0019C00 0CC0C003F800 0F80600FE000 0600703E0000
100200003FF00000 00000FC00000 000000000000 000000000000 >getsymb
100386< 00000000 00000000 30000100 78000380 CC0003F0 8C000360 0C000300
10040C000300 0C000300 0C000300 0C000600 0C000600 0C000600 0C000600
10050C000C00 06000C00 06000C00 06000C00 06001800 06001818 06001070
1006060011E0 06003F80 06007C00 0300F000 0187C000 01FF0000 00780000
100700000000 00000000 >getsymb
100885< 000000000000 000000000000 300003000000 780003000000 CC0003000000
10098C0003000000 0C0003000000 0C0003000000 180006000000 180006000000
1010180006000000 300006000000 300006000000 300006000000 30000C000000
101130000C000000 300018000000 300018000000 300030000000 300070060000
10123000700C0000 3000F0180000 1801B0180000 180318300000 0C0618600000
10130F0C0CC00000 03F807800000 01F003000000 000000000000 000000000000
1014>getsymb
101584< 00000000 00000000 0F800100 3FC00200 607E0C00 803FF800 000CE000
1016000C0000 000C0000 000C0000 00060000 00060000 00030000 00030000
101700030000 00030000 00030000 00030000 000300C0 00030180 02030300
101802030300 02030600 03030C00 01833800 01C7F000 00FF8000 003C0000
101900000000 00000000 >getsymb
102083< 00000000 00000000 00F00000 01FC0000 031E0000 02030000 06018000
10210600C000 06004000 06004000 06008000 03000000 03800000 00F00000
1022003C0000 000F0000 00038000 00018000 0000C600 00006400 00006C00
102300003800 00003000 20007000 70006000 9C00C000 06038000 030F0000
102403FC0000 01F80000 00000000 00000000 >getsymb
102582< 00000000 00000000 020FE000 033FF800 03F80C00 03C00600 07000300
10260F000300 1B000300 3B000300 33000600 33000C00 63003800 6300E000
102743038000 C30F0000 C3FC0000 C3FE0000 C3070018 C6070030 CC038060
10284C01C0C0 7C00C080 7C006180 38006180 38006100 38003300 38003300
102938001E00 38001E00 30000C00 10000000 00000000 00000000 >getsymb
103081< 00000000 00000000 001FE000 007FF000 01C03800 03001C00 06000C00
10310C000C00 0C000C00 18000C00 18000600 10000600 30000300 30000300
103230000300 30000300 60000300 60000200 60000600 C0000600 C000060C
1033C000060C C0000C18 C0000C18 C0001830 603C3020 304E7060 3083C040
10341C01E0C0 0E037180 03FE1F00 00FC0E00 00000000 00000000 >getsymb
103580< 00000000 00000000 03FC0000 0FFF0000 3C01C000 7C007000 4C003800
10368C001800 0C000C00 0C000C00 0C000C00 0C000C00 06000C00 06000800
103706001800 06003000 261FE000 1FFF8030 0F800060 060000C0 06000180
103806000300 06000E00 06003800 0600F000 0603C000 0C0F0000 0C3C0000
10390FF00000 1FC00000 00000000 00000000 >getsymb
104079< 00000000 00000000 00FE0000 01FF8000 0700C000 0E00C000 0C006000
104118003000 30003000 30003000 70003000 60001800 40001C00 C0000C00
1042C0000C00 C0000C00 C0000600 C0000600 C0000700 C0000730 C00006E0
1043C0000600 60000600 60000600 30000400 30000C00 30001800 18003000
10440C006000 0C00C000 06018000 060F0000 03FC0000 00F00000 00000000
104500000000 >getsymb
104678< 000000000000 000000000000 1E0380000000 3F07E0000000 631C38000000
104781B81C000000 00F00C000000 00E006000000 00C002000000 00C003000000
104800C003000000 01C003000000 018003000000 018003000000 030003000000
1049030003000000 030003800000 030001800000 030001800400 030001800800
1050030001801800 060001803000 060000806000 0C0000C0C000 0C0000C0C000
10510C0000C18000 0C0000C30000 0C0000C60000 0000007C0000 000000380000
1052000000000000 000000000000 >getsymb
105377< 000000000000 000000000000 070180000000 1F83C0000000 7186600F0000
1054E0C6703F8000 00C43030C000 00CC1860C000 00CC18606000 00C808C06000
105500F80CC02000 00F006803000 00F007803000 00E007803000 00E003803000
105600E003003000 00E003003000 00E003006000 00E003006000 00E003006060
105700E0030060C0 00E0030060C0 00E003006180 00E003006180 00E003006100
105800E003006300 00C001006200 00C001006600 00C001003C00 00C001001800
1059000000000000 000000000000 >getsymb
106076< 00000000 00000000 00300000 00780000 004C0000 00CC0000 00CC0000
106100CC0000 00CC0000 00D80000 00F00000 00E00000 01C00000 03C00000
10620EC00000 38C00000 60C00000 C0C00000 00C00000 00C00300 00C00600
106300C00C00 00C00C00 00C01800 0FE01800 1FF03000 31B83000 331C6000
10641E07C000 0C038000 00000000 00000000 >getsymb
106575< 00000000 00000000 18300060 3C7800C0 664C0300 43CC0600 838C1C00
1066010C3800 000C6000 000CC000 000F8000 000F0000 00098000 0018C000
106700186000 00186000 00183000 00183000 00183018 00301830 00301830
106800201860 00600C60 20C00CC0 218004C0 330006C0 1E000380 0C000300
106900000000 00000000 >getsymb
107074< 00000000 00000000 00040000 180E0000 3E1B0000 23198000 63318000
1071C1B18000 C1E18000 80C18000 80018000 00030000 00030000 00060000
107200060000 00060000 00060000 00062000 00066000 0006C000 00078000
107300070000 00060000 000C0000 001C0000 003C0000 006C0000 00CC0000
1074018C0000 030C0000 060C0000 0C0C0000 0C0C0000 0C0C0000 0C0C0000
10750C180000 0C180000 06180000 03980000 03F80000 00F00000 00000000
107600000000 >getsymb
107773< 00000000 00000000 000C0000 1C3C0000 36660000 63C60000 41860000
107880060000 80060000 00060000 00060000 000C0000 000C0000 000C0000
1079000C0000 000C0000 000C0000 00180000 00183000 00186000 00186000
10800018C000 80198000 801F0000 C03C0000 60700000 3FC00000 1F800000
108100000000 00000000 >getsymb
108272< 000000000000 000000000000 000001800000 000007C00000 1C100C600000
10833E3808600000 67D818600000 439818600000 801818400000 801818C00000
1084001818800000 001819800000 00181F000000 00181C000000 001878000000
1085001BF0000000 007E30000000 00F830000000 019830000000 031860030000
1086061860060000 0618600C0000 0C18600C0000 181860180000 181860180000
1087181060300000 183030300000 186030600000 0FC018600000 070008C00000
108800000F800000 000007000000 000000000000 000000000000 >getsymb
108971< 00000000 00000000 00180000 00FF0000 03C78000 0600E000 0C003000
109018001000 30000000 30000000 60000000 E0000000 C0000000 C0000000
1091C0000000 C0000000 C0000000 60008000 60018000 30038030 30078060
1092180F80C0 081D8380 0C310700 07E31C00 03C37000 0003C000 001F8000
1093007F0000 01E30000 03830000 07030000 06060000 0C060000 0C040000
10940C0C0000 0C180000 0C100000 06300000 03E00000 01C00000 00000000
109500000000 >getsymb
109670< 00000000 00000000 0801FC00 0C0FF800 3FFE0000 FFF00000 8C000000
10970C000000 0C000000 04000000 06000000 06000000 03000000 0303F000
109803FF8000 03FC0000 03000000 02000000 06000000 06000600 04000C00
10990C001800 0C003000 0C00E000 18078000 180F0000 1FF80000 3FE00000
110000000000 00000000 >getsymb
110169< 00000000 00000000 03FC0000 07FF0000 1C038000 3C01C000 3000C000
110230004000 30000000 38000000 1E000000 0E000000 03F00000 01F80000
110303800000 0E000000 18000000 30000000 60000000 60000300 C0000600
1104C0000600 C0000C00 C0000C00 C0001800 70003000 3800E000 1E01C000
110507FF0000 01FC0000 00000000 00000000 >getsymb
110668< 00000000 00000000 07FE0000 1FFF8000 3060C000 30C06000 30C03000
110719801800 19800800 0D000C00 07000400 07000600 03000300 03800300
110806C00300 06600300 06300300 061C0300 0C06030C 0C038318 1C01C670
110918007FC0 30003F00 3E001800 3B803000 71F0E000 C03FC000 C01F8000
111000000000 00000000 >getsymb
111167< 00000000 00000000 007F8000 01FFE000 07007000 0C003000 18001800
111238001800 30001800 60003000 60006000 6011C000 C01F0000 C0060000
1113C0000000 C0000000 C0000000 C0000000 C0000000 C0000000 C00000C0
1114C0000180 C0000180 60000300 60000300 60000600 30000C00 38003800
11151E00E000 0F03C000 01FF0000 00FE0000 00000000 00000000 >getsymb
111666< 00000000 00000000 03FC0000 0FFF0000 1B818000 2300C000 0300C000
11170300C000 0300C000 06018000 06038000 060F0000 041C0000 04700000
11180CF00000 0C1C0000 0C0F0000 0C078000 0C00C000 0C00600C 0C003018
11190C003818 0C001C30 0C000C30 0C000CE0 0C000DC0 18001F00 18001E00
112030003800 30007000 F800C000 7F018000 47FF0000 00FE0000 00000000
112100000000 >getsymb
112265< 00000000 00000000 001E0400 007F0C00 01C1C800 0300E800 06003800
11230C003000 18003000 10003000 30003000 60006000 60006000 60006000
1124C0006000 C0006000 C000C000 C000C030 C000C060 C000C0C0 4000C180
11256000C300 2001C300 3001C600 3803C600 1802CC00 0C06CC00 06046C00
1126039C7800 00F83000 00000000 00000000 >getsymb
112764< 00000000 00000000 001F0000 00FFE000 07C0F000 0F001800 1C000C00
112818000C00 30000700 70000300 60000180 60000180 400E0180 401F8180
1129C030C180 C070C180 C0C04180 C1C0C180 C180C180 8300C180 C301C180
1130C3018100 43018300 61018300 2186EE00 30CE7C00 107C0000 18000000
11310C000000 06000000 0300E000 01FFC000 007E0000 00000000 00000000
1132>getsymb
113363< 0000 0000 1E00 3F00 6180 C0C0 8060 8020 C030 6030 1030 0020 0060
113400C0 0180 0300 0200 0400 0C00 0800 1800 1000 3000 3000 1800 0000 0000
11350000 1800 1C00 0000 0000 >getsymb
113662< 00000000 00000000 C0000000 60000000 30000000 18000000 0C000000
113706000000 03000000 01800000 00C00000 00600000 00380000 001C0000
113800060000 00030000 00070000 001C0000 00700000 01C00000 07000000
11390E000000 38000000 60000000 C0000000 80000000 00000000 00000000
1140>getsymb
114161< 00000000 00000000 FFE00000 FFFFF000 001FF000 00000000 00000000
114200000000 00000000 00000000 00000000 FFFFC000 FFFFC000 00000000
114300000000 >getsymb
114460< 00000000 00000000 00018000 000F0000 00380000 00E00000 03800000
114506000000 0C000000 10000000 30000000 E0000000 60000000 20000000
114630000000 18000000 0C000000 06000000 03000000 01800000 00E00000
114700380000 000E0000 00038000 00000000 00000000 >getsymb
114859< 0000 0000 1800 3800 3000 2000 0000 0000 0000 0000 0000 0000 0000
11490000 0000 0000 0C00 0600 0600 0600 0600 1C00 3000 E000 8000 0000 0000
1150>getsymb
115158< 0000 0000 6000 F000 C000 C000 0000 0000 0000 0000 0000 0000 0000
11520000 0000 0000 0000 8000 F000 E000 0000 0000 >getsymb
115357< 00000000 00000000 03F00000 0FFC0000 180E0000 38060000 60020000
1154C0030000 C0030000 C0030000 C0030000 C0030000 C0020000 40060000
115560060000 601E0000 30340000 18640000 0FEC0000 078C0000 00080000
115600080000 00180000 00180000 00100000 80300000 C0300000 70600000
11571FC00000 0F000000 00000000 00000000 >getsymb
115856< 00000000 00000000 007C0000 00C60000 01820000 03030000 03010000
115903010000 03010000 03030000 01030000 01030000 03860000 0F8E0000
116018F80000 30700000 60100000 60180000 60080000 C0080000 C0080000
1161C0180000 40180000 60300000 3FE00000 0FC00000 00000000 00000000
1162>getsymb
116355< 0000 0000 0008 3078 78F8 CC98 8798 0710 0030 0030 0020 0060 0040
116400C0 0080 3980 0FE0 03F8 0300 0300 0600 0600 0600 0C00 0800 1800 3000
11656000 6000 4000 4000 0000 0000 >getsymb
116654< 00000000 00000000 00040000 001C0000 00300000 00E00000 01800000
116703000000 06000000 0C000000 08000000 18F00000 33F80000 360E0000
11686C070000 78010000 60018000 60018000 C000C000 C000C000 C000C000
1169C0008000 C0018000 60010000 30030000 18060000 1C0C0000 0F180000
117003F00000 00000000 00000000 >getsymb
117153< 00000000 00000000 01FF0000 03FF0000 03000000 03000000 06000000
117206000000 06000000 06000000 06000000 03C00000 00F80000 001C0000
1173000E0000 00030000 00030000 00030000 000E0000 E01C0000 70300000
11743FE00000 0F800000 00000000 00000000 >getsymb
117552< 0000 0000 8018 8018 C018 C018 C018 C018 C018 FF18 3FF8 01F8 0030
11760030 0070 0060 0060 0060 00E0 00C0 00C0 0080 0080 0000 0000 >getsymb
117751< 00000000 00000000 01E00000 07F00000 0E180000 0C0C0000 000C0000
1178000C0000 00180000 00300000 00600000 00C00000 00780000 001E0000
117900070000 00018000 0001C000 0000C000 8000C000 C0018000 C0070000
11807C0E0000 3FF80000 03F00000 00000000 00000000 >getsymb
118150< 00000000 00000000 07800000 1FC00000 38600000 70300000 C0300000
118280100000 00100000 00100000 00300000 00300000 00200000 00600000
118300C00000 01800000 01000000 03000000 06000000 06000000 0F004000
11841DC08000 307F8000 303E0000 00000000 00000000 >getsymb
118549< 0000 0000 3000 7800 9800 1800 1800 1800 1800 1800 1800 1800 1800
11863000 3000 3000 3000 3000 3000 3000 3000 3000 0000 0000 >getsymb
118748< 00000000 00000000 00E00000 03F80000 0E180000 180C0000 30060000
118830060000 60020000 E0030000 C0030000 C0030000 C0030000 C0030000
1189C0030000 C0030000 C0020000 60060000 60060000 20040000 300C0000
119018180000 0C180000 07F00000 01E00000 00000000 00000000 >getsymb
119147< 00000000 00000000 00040000 00060000 000C0000 000C0000 00180000
119200180000 00180000 00300000 00300000 00200000 00600000 00600000
119300C00000 00C00000 01800000 01800000 03000000 03000000 06000000
119406000000 0C000000 0C000000 18000000 18000000 38000000 30000000
119560000000 60000000 60000000 C0000000 80000000 00000000 00000000
1196>getsymb
119746< 0000 0000 8000 C000 E000 C000 0000 0000 >getsymb
119845< 0000 0000 F000 7FF0 07F0 0000 0000 >getsymb
119944< 0000 0000 1000 1800 0C00 0C00 0C00 0C00 0800 1800 3000 6000 8000
12000000 0000 >getsymb
120143< 00000000 00000000 00100000 00100000 00300000 00300000 00300000
120200300000 00300000 0033E000 3FFFC000 FFFC0000 00300000 00300000
120300300000 00300000 00300000 00300000 00600000 00600000 00400000
120400400000 00000000 00000000 >getsymb
120542< 00000000 00000000 30180000 18300000 0C600000 04C00000 0FFE0000
12063FF80000 EC600000 86200000 06300000 03180000 03000000 01000000
120700000000 00000000 >getsymb
120841< 0000 0000 6000 F000 1C00 0E00 0300 0180 0080 00C0 00C0 00C0 00C0
120900C0 0060 0060 0060 0060 0060 0060 0060 00C0 00C0 00C0 00C0 00C0 0080
12100180 0380 0300 0600 0C00 1800 7000 0000 0000 >getsymb
121140< 0000 0000 0700 0E00 1800 3000 2000 6000 6000 6000 6000 6000 C000
1212C000 C000 C000 C000 C000 C000 C000 6000 6000 6000 6000 3000 3000 1800
12131800 0C00 0600 0700 0380 0000 0000 >getsymb
121439< 0000 0000 2000 3000 1800 1800 0C00 0C00 0C00 1800 3000 3000 6000
12154000 8000 0000 0000 >getsymb
121638< 00000000 00000000 0F000000 1F800000 30C00000 20600000 20300000
121730300000 18200000 18400000 0CC00000 05800000 0F000000 1F000000
121819820000 30C20000 60660000 602C0000 C0380000 C0300000 C0300000
1219C0780000 60680000 61CC0000 3F0C0000 1E040000 00060000 00000000
122000000000 >getsymb
122137< 00000000 00000000 0E03C000 3FDF8000 61F30000 60C70000 C0C60000
1222C0CC0000 618C0000 630C0000 3E180000 0C300000 00300000 00600000
122300600000 00C00000 01C00000 03800000 0307C000 060FE000 0C3C2000
122418F03000 31E03000 37603000 6CC03000 78C06000 E0F0C000 C07FC000
1225000F0000 00000000 00000000 >getsymb
122636< 00000000 00000000 01040000 03040000 030C0000 030C0000 030C0000
1227037C0000 03DE0000 0F0F0000 0E0D8000 1A0C8000 360C0000 260C0000
1228260C0000 1E0C0000 1FCC0000 07FC0000 043C0000 040E0000 8C0F8000
1229CC0FC000 7C0C4000 1C0C6000 0E0CE000 0FFFC000 0CFE0000 0C180000
12300C180000 0C180000 0C180000 0C180000 0C100000 08100000 08100000
123108100000 00100000 00000000 00000000 >getsymb
123235< 00000000 00000000 00430000 00430000 00C30000 00C30000 00C30000
123300C30000 00C3F000 00FFF000 1FFF0000 3F870000 018C0000 018C0000
1234018C0000 018C0000 030C0000 030FC000 7FFFC000 FFF80000 06180000
123506180000 06180000 0C180000 0C180000 0C100000 00000000 00000000
1236>getsymb
123734< 0000 0000 8300 6180 30C0 10C0 10C0 10C0 3180 6300 C000 8000 0000
12380000 >getsymb
123933< 0000 0000 4000 6000 6000 6000 6000 6000 6000 6000 6000 6000 6000
12406000 6000 6000 6000 6000 E000 C000 C000 C000 C000 C000 C000 8000 0000
12410000 0000 C000 C000 4000 0000 0000 >getsymb
1242Hwfdict begin
1243 /BuildChar
1244 Chread
1245end
1246/Joepie Hwfdict definefont
1247%%EndFont Joepie\n\n"))
1248
1249;;Sets page numbering off
1250(defun handwrite-set-pagenumber-off ()
1251 (setq handwrite-pagenumbering nil)
43f36b80
RS
1252 (message "page numbering off"))
1253
1254;;Sets page numbering on
1255(defun handwrite-set-pagenumber-on ()
1256 (setq handwrite-pagenumbering t)
43f36b80
RS
1257 (message "page numbering on" ))
1258
1259
1260;; Key bindings
1261
b016851c
SM
1262;; I'd rather not fill up the menu bar menus with
1263;; lots of random miscellaneous features. -- rms.
a2b80428
RS
1264;;;(define-key-after
1265;;; (lookup-key global-map [menu-bar edit])
1266;;; [handwrite]
1267;;; '("Write by hand" . menu-bar-handwrite-map)
1268;;; 'spell)
43f36b80 1269
43f36b80
RS
1270(provide 'handwrite)
1271
1272
1273;;; handwrite.el ends here