diff --git a/demo/default-frame-top-level.lisp b/demo/default-frame-top-level.lisp
new file mode 100644
index 0000000000000000000000000000000000000000..f75344723c482730fa6348e25c00d79042f94a66
--- /dev/null
+++ b/demo/default-frame-top-level.lisp
@@ -0,0 +1,82 @@
+;; -*- mode: common-lisp; package: clim-internals -*-
+;;
+;;				-[]-
+;; 
+;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA  All rights reserved.
+;; copyright (c) 1986-1992 Franz Inc, Berkeley, CA  All rights reserved.
+;;
+;; The software, data and information contained herein are proprietary
+;; to, and comprise valuable trade secrets of, Franz, Inc.  They are
+;; given in confidence by Franz, Inc. pursuant to a written license
+;; agreement, and may be stored and used only in accordance with the terms
+;; of such license.
+;;
+;; Restricted Rights Legend
+;; ------------------------
+;; Use, duplication, and disclosure of the software, data and information
+;; contained herein by any agency, department or entity of the U.S.
+;; Government are subject to restrictions of Restricted Rights for
+;; Commercial Software developed at private expense as specified in FAR
+;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as
+;; applicable.
+;;
+
+(in-package :clim-internals)
+
+(defmethod default-frame-top-level ((frame standard-application-frame)
+				    &key command-parser command-unparser
+					 partial-command-parser
+					 (prompt "Command: "))
+  ;; Enable the frame now
+  (unless (eq (frame-state frame) :enabled)
+    (enable-frame frame))
+  (loop
+    (let* ((*standard-output*
+	     (or (frame-standard-output frame) *standard-output*))
+	   (*standard-input* 
+	     (or (frame-standard-input frame) *standard-output*))
+	   (*query-io* 
+	     (or (frame-query-io frame) *standard-input*))
+	   (*error-output* 
+	     (or (frame-error-output frame) *standard-output*))
+	   (*pointer-documentation-output*
+	     (frame-pointer-documentation-output frame))
+	   (interactor
+	     (not (null (find-frame-pane-of-type frame 'interactor-pane))))
+	   (*command-parser*
+	     (or command-parser
+		 (if interactor
+		     #'command-line-command-parser
+		     #'menu-command-parser)))
+	   (*command-unparser*
+	     (or command-unparser 
+		 #'command-line-command-unparser))
+	   (*partial-command-parser* 
+	     (or partial-command-parser
+		 (if interactor
+		     #'command-line-read-remaining-arguments-for-partial-command
+		     #'menu-read-remaining-arguments-for-partial-command)))
+	   (command-stream
+	     ;;--- We have to ask the frame since we do not want to
+	     ;;--- just pick up a stream from the dynamic environment
+	     (let ((si (or (frame-standard-input frame)
+			   (frame-standard-output frame))))
+	       (typecase si
+		 (output-protocol-mixin si)
+		 (t (frame-top-level-sheet frame))))))
+      ;; The read-eval-print loop for applications...
+      (loop
+	;; Redisplay all the panes
+	(catch-abort-gestures ("Return to ~A command level" (frame-pretty-name frame))
+	  (redisplay-frame-panes frame)
+	  (when interactor
+	    (fresh-line *standard-input*)
+	    (if (stringp prompt)
+		(write-string prompt *standard-input*)
+		(funcall prompt *standard-input* frame)))
+	  (let ((command (read-frame-command frame :stream command-stream)))
+	    (when interactor
+	      (terpri *standard-input*))
+	    ;; Need this check in case the user aborted out of a command menu
+	    (when command
+	      (execute-frame-command frame command))))))))
diff --git a/demo/plot.lisp b/demo/plot.lisp
index 3df5db3eb4e022f6759bcaf0819bcef49e5aa727..f707c72ae8f28ce365bb1434bd247230ad21c5b7 100644
--- a/demo/plot.lisp
+++ b/demo/plot.lisp
@@ -21,7 +21,7 @@
 ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as
 ;; applicable.
 ;;
-;; $fiHeader: plot.lisp,v 1.21 92/12/14 15:02:44 cer Exp $
+;; $fiHeader: plot.lisp,v 1.22 93/03/19 09:44:14 cer Exp $
 
 (in-package :clim-demo)
 
@@ -523,30 +523,25 @@
 			     :default graph-type 
 			     :stream stream
 			     :prompt "Graph type"))
-    (terpri stream)
     (unless (eq graph-type :pie)
       (unless (eq graph-type :bar)
 	(setf x-min (accept '(null-or-type number)
 			    :default x-min
 			    :stream stream
-			    :prompt "Min X"))
-	(terpri stream))
+			    :prompt "Min X")))
       (setf y-min (accept '(null-or-type number)
 			  :default y-min
 			  :stream stream
 			  :prompt "Min Y"))
-      (terpri stream)
       (unless (eq graph-type :bar)
 	(setf x-max (accept '(null-or-type number)
 			    :default x-max
 			    :stream stream
-			    :prompt "Max X"))
-	(terpri stream))
+			    :prompt "Max X")))
       (setf y-max (accept '(null-or-type number)
 			  :default y-max
 			  :stream stream
-			  :prompt "Max Y"))
-      (terpri stream))))
+			  :prompt "Max Y")))))
     
 (defmethod frame-standard-output ((fr plot-demo))
   (get-frame-pane fr 'command))
@@ -728,12 +723,8 @@
   (describe region))
 
 (define-plot-demo-command (com-redisplay :name t) ()
-  (redisplay-frame-pane *application-frame* 
-			(get-frame-pane *application-frame* 'graph-window)
-			:force-p t)
-  (redisplay-frame-pane *application-frame*
-			(get-frame-pane *application-frame* 'data-window)
-			:force-p t))
+  (redisplay-frame-panes *application-frame* :force-p t))
+
 
 (define-plot-demo-command (com-add-new-column :name t) ()
   (with-slots (plot-data y-labels) *application-frame*
diff --git a/misc/olsupport.c b/misc/olsupport.c
index f1127974dc05d28879e87908643f6b7485ea3974..d90930e049dfadcabb0bbae169d746a6d8133d29 100644
--- a/misc/olsupport.c
+++ b/misc/olsupport.c
@@ -17,7 +17,7 @@
  * 52.227-19 or DOD FAR Supplement 252 52.227-7013 (c) (1) (ii), as
  * applicable.
  *
- * $fiHeader: support.c,v 1.1 92/05/13 08:52:50 cer Exp $
+ * $fiHeader: olsupport.c,v 1.1 92/06/23 08:27:32 cer Exp $
  */
 
 /************************************************************************/
@@ -46,3 +46,13 @@ int token;
     (*fn)(widget, token);
 }
 
+
+
+void ol_appl_delete_item (fn, widget, token)
+int (*fn)();
+char *widget;
+int token;
+{
+    (*fn)(widget, token);
+}
+
diff --git a/postscript/laserwriter-metrics.lisp b/postscript/laserwriter-metrics.lisp
index 4d103238c0ca427143af0187320d2b7b183239b6..87df195006c4883fc797f90b595b0f24f96935ab 100644
--- a/postscript/laserwriter-metrics.lisp
+++ b/postscript/laserwriter-metrics.lisp
@@ -1,2145 +1,335 @@
 ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: POSTSCRIPT-CLIM; Base: 10; Lowercase: Yes -*-
 
-;; $fiHeader: laserwriter-metrics.lisp,v 1.2 92/02/24 13:08:01 cer Exp $
+;; $fiHeader: laserwriter-metrics.lisp,v 1.2 92/07/08 16:32:05 cer Exp $
 
 (in-package :postscript-clim)
 
-"Copyright (c) 1990, 1991, 1992 Symbolics, Inc.  All rights reserved."
-
-;;; Font Metrics for Apple Laser Writer builtin fonts
-
-;;; Note that the X values in the bounding box are incorrect.  I don't
-;;; know how this data was generated (it was inherited from the Genera
-;;; LGP2 support) but it is apparent that the font box information
-;;; (/FontBBox element of a PostScript fnt dictionary) was not scaled by
-;;; the font's matrix (/FontMatrix).  For the fonts that I tested (using
-;;; the PostScript program at the end of this file), the Y values were
-;;; correct but some of the X values were not.  Fortunately nothing uses
-;;; them.  [1/9/90 naha]
-
-(setup-laserwriter-metrics
-  '(("Times-Roman" 1000 (-167 -252 1004 904))
-    (#o040 250.0 "space")
-    (#o041 333.0 "exclam")
-    (#o042 408.0 "quotedbl")
-    (#o043 500.0 "numbersign")
-    (#o044 500.0 "dollar")
-    (#o045 833.0 "percent")
-    (#o046 778.0 "ampersand")
-    (#o047 333.0 "quoteright")
-    (#o050 333.0 "parenleft")
-    (#o051 333.0 "parenright")
-    (#o052 500.0 "asterisk")
-    (#o053 564.0 "plus")
-    (#o054 250.0 "comma")
-    (#o055 333.0 "hyphen")
-    (#o056 250.0 "period")
-    (#o057 278.0 "slash")
-    (#o060 500.0 "zero")
-    (#o061 500.0 "one")
-    (#o062 500.0 "two")
-    (#o063 500.0 "three")
-    (#o064 500.0 "four")
-    (#o065 500.0 "five")
-    (#o066 500.0 "six")
-    (#o067 500.0 "seven")
-    (#o070 500.0 "eight")
-    (#o071 500.0 "nine")
-    (#o072 278.0 "colon")
-    (#o073 278.0 "semicolon")
-    (#o074 564.0 "less")
-    (#o075 564.0 "equal")
-    (#o076 564.0 "greater")
-    (#o077 444.0 "question")
-    (#o100 921.0 "at")
-    (#o101 722.0 "A")
-    (#o102 667.0 "B")
-    (#o103 667.0 "C")
-    (#o104 722.0 "D")
-    (#o105 611.0 "E")
-    (#o106 556.0 "F")
-    (#o107 722.0 "G")
-    (#o110 722.0 "H")
-    (#o111 333.0 "I")
-    (#o112 389.0 "J")
-    (#o113 722.0 "K")
-    (#o114 611.0 "L")
-    (#o115 889.0 "M")
-    (#o116 722.0 "N")
-    (#o117 722.0 "O")
-    (#o120 556.0 "P")
-    (#o121 722.0 "Q")
-    (#o122 667.0 "R")
-    (#o123 556.0 "S")
-    (#o124 611.0 "T")
-    (#o125 722.0 "U")
-    (#o126 722.0 "V")
-    (#o127 944.0 "W")
-    (#o130 722.0 "X")
-    (#o131 722.0 "Y")
-    (#o132 611.0 "Z")
-    (#o133 333.0 "bracketleft")
-    (#o134 278.0 "backslash")
-    (#o135 333.0 "bracketright")
-    (#o136 469.0 "asciicircum")
-    (#o137 500.0 "underscore")
-    (#o140 333.0 "quoteleft")
-    (#o141 444.0 "a")
-    (#o142 500.0 "b")
-    (#o143 444.0 "c")
-    (#o144 500.0 "d")
-    (#o145 444.0 "e")
-    (#o146 333.0 "f")
-    (#o147 500.0 "g")
-    (#o150 500.0 "h")
-    (#o151 278.0 "i")
-    (#o152 278.0 "j")
-    (#o153 500.0 "k")
-    (#o154 278.0 "l")
-    (#o155 778.0 "m")
-    (#o156 500.0 "n")
-    (#o157 500.0 "o")
-    (#o160 500.0 "p")
-    (#o161 500.0 "q")
-    (#o162 333.0 "r")
-    (#o163 389.0 "s")
-    (#o164 278.0 "t")
-    (#o165 500.0 "u")
-    (#o166 500.0 "v")
-    (#o167 722.0 "w")
-    (#o170 500.0 "x")
-    (#o171 500.0 "y")
-    (#o172 444.0 "z")
-    (#o173 480.0 "braceleft")
-    (#o174 200.0 "bar")
-    (#o175 480.0 "braceright")
-    (#o176 541.0 "asciitilde")
-    (#o241 333.0 "exclamdown")
-    (#o242 500.0 "cent")
-    (#o243 500.0 "sterling")
-    (#o244 167.0 "fraction")
-    (#o245 500.0 "yen")
-    (#o246 500.0 "florin")
-    (#o247 500.0 "section")
-    (#o250 500.0 "currency")
-    (#o251 180.0 "quotesingle")
-    (#o252 444.0 "quotedblleft")
-    (#o253 500.0 "guillemotleft")
-    (#o254 333.0 "guilsinglleft")
-    (#o255 333.0 "guilsinglright")
-    (#o256 556.0 "fi")
-    (#o257 556.0 "fl")
-    (#o261 500.0 "endash")
-    (#o262 500.0 "dagger")
-    (#o263 500.0 "daggerdbl")
-    (#o264 250.0 "periodcentered")
-    (#o266 453.0 "paragraph")
-    (#o267 350.0 "bullet")
-    (#o270 333.0 "quotesinglbase")
-    (#o271 444.0 "quotedblbase")
-    (#o272 444.0 "quotedblright")
-    (#o273 500.0 "guillemotright")
-    (#o274 1000.0 "ellipsis")
-    (#o275 1000.0 "perthousand")
-    (#o277 444.0 "questiondown")
-    (#o301 333.0 "grave")
-    (#o302 333.0 "acute")
-    (#o303 333.0 "circumflex")
-    (#o304 333.0 "tilde")
-    (#o305 333.0 "macron")
-    (#o306 333.0 "breve")
-    (#o307 333.0 "dotaccent")
-    (#o310 333.0 "dieresis")
-    (#o312 333.0 "ring")
-    (#o313 333.0 "cedilla")
-    (#o315 333.0 "hungarumlaut")
-    (#o316 333.0 "ogonek")
-    (#o317 333.0 "caron")
-    (#o320 1000.0 "emdash")
-    (#o341 889.0 "AE")
-    (#o343 276.0 "ordfeminine")
-    (#o350 611.0 "Lslash")
-    (#o351 722.0 "Oslash")
-    (#o352 889.0 "OE")
-    (#o353 310.0 "ordmasculine")
-    (#o361 667.0 "ae")
-    (#o365 278.0 "dotlessi")
-    (#o370 278.0 "lslash")
-    (#o371 500.0 "oslash")
-    (#o372 722.0 "oe")
-    (#o373 500.0 "germandbls")
-    ))
-
-(setup-laserwriter-metrics
-  '(("Times-Italic" 1000 (-176 -252 998 930))
-    (#o040 250.0 "space")
-    (#o041 333.0 "exclam")
-    (#o042 420.0 "quotedbl")
-    (#o043 500.0 "numbersign")
-    (#o044 500.0 "dollar")
-    (#o045 833.0 "percent")
-    (#o046 778.0 "ampersand")
-    (#o047 333.0 "quoteright")
-    (#o050 333.0 "parenleft")
-    (#o051 333.0 "parenright")
-    (#o052 500.0 "asterisk")
-    (#o053 675.0 "plus")
-    (#o054 250.0 "comma")
-    (#o055 333.0 "hyphen")
-    (#o056 250.0 "period")
-    (#o057 278.0 "slash")
-    (#o060 500.0 "zero")
-    (#o061 500.0 "one")
-    (#o062 500.0 "two")
-    (#o063 500.0 "three")
-    (#o064 500.0 "four")
-    (#o065 500.0 "five")
-    (#o066 500.0 "six")
-    (#o067 500.0 "seven")
-    (#o070 500.0 "eight")
-    (#o071 500.0 "nine")
-    (#o072 333.0 "colon")
-    (#o073 333.0 "semicolon")
-    (#o074 675.0 "less")
-    (#o075 675.0 "equal")
-    (#o076 675.0 "greater")
-    (#o077 500.0 "question")
-    (#o100 920.0 "at")
-    (#o101 611.0 "A")
-    (#o102 611.0 "B")
-    (#o103 667.0 "C")
-    (#o104 722.0 "D")
-    (#o105 611.0 "E")
-    (#o106 611.0 "F")
-    (#o107 722.0 "G")
-    (#o110 722.0 "H")
-    (#o111 333.0 "I")
-    (#o112 444.0 "J")
-    (#o113 667.0 "K")
-    (#o114 556.0 "L")
-    (#o115 833.0 "M")
-    (#o116 667.0 "N")
-    (#o117 722.0 "O")
-    (#o120 611.0 "P")
-    (#o121 722.0 "Q")
-    (#o122 611.0 "R")
-    (#o123 500.0 "S")
-    (#o124 556.0 "T")
-    (#o125 722.0 "U")
-    (#o126 611.0 "V")
-    (#o127 833.0 "W")
-    (#o130 611.0 "X")
-    (#o131 556.0 "Y")
-    (#o132 556.0 "Z")
-    (#o133 389.0 "bracketleft")
-    (#o134 278.0 "backslash")
-    (#o135 389.0 "bracketright")
-    (#o136 422.0 "asciicircum")
-    (#o137 500.0 "underscore")
-    (#o140 333.0 "quoteleft")
-    (#o141 500.0 "a")
-    (#o142 500.0 "b")
-    (#o143 444.0 "c")
-    (#o144 500.0 "d")
-    (#o145 444.0 "e")
-    (#o146 278.0 "f")
-    (#o147 500.0 "g")
-    (#o150 500.0 "h")
-    (#o151 278.0 "i")
-    (#o152 278.0 "j")
-    (#o153 444.0 "k")
-    (#o154 278.0 "l")
-    (#o155 722.0 "m")
-    (#o156 500.0 "n")
-    (#o157 500.0 "o")
-    (#o160 500.0 "p")
-    (#o161 500.0 "q")
-    (#o162 389.0 "r")
-    (#o163 389.0 "s")
-    (#o164 278.0 "t")
-    (#o165 500.0 "u")
-    (#o166 444.0 "v")
-    (#o167 667.0 "w")
-    (#o170 444.0 "x")
-    (#o171 444.0 "y")
-    (#o172 389.0 "z")
-    (#o173 400.0 "braceleft")
-    (#o174 275.0 "bar")
-    (#o175 400.0 "braceright")
-    (#o176 541.0 "asciitilde")
-    (#o241 389.0 "exclamdown")
-    (#o242 500.0 "cent")
-    (#o243 500.0 "sterling")
-    (#o244 167.0 "fraction")
-    (#o245 500.0 "yen")
-    (#o246 500.0 "florin")
-    (#o247 500.0 "section")
-    (#o250 500.0 "currency")
-    (#o251 214.0 "quotesingle")
-    (#o252 556.0 "quotedblleft")
-    (#o253 500.0 "guillemotleft")
-    (#o254 333.0 "guilsinglleft")
-    (#o255 333.0 "guilsinglright")
-    (#o256 500.0 "fi")
-    (#o257 500.0 "fl")
-    (#o261 500.0 "endash")
-    (#o262 500.0 "dagger")
-    (#o263 500.0 "daggerdbl")
-    (#o264 250.0 "periodcentered")
-    (#o266 523.0 "paragraph")
-    (#o267 350.0 "bullet")
-    (#o270 333.0 "quotesinglbase")
-    (#o271 556.0 "quotedblbase")
-    (#o272 556.0 "quotedblright")
-    (#o273 500.0 "guillemotright")
-    (#o274 889.0 "ellipsis")
-    (#o275 1000.0 "perthousand")
-    (#o277 500.0 "questiondown")
-    (#o301 333.0 "grave")
-    (#o302 333.0 "acute")
-    (#o303 333.0 "circumflex")
-    (#o304 333.0 "tilde")
-    (#o305 333.0 "macron")
-    (#o306 333.0 "breve")
-    (#o307 333.0 "dotaccent")
-    (#o310 333.0 "dieresis")
-    (#o312 333.0 "ring")
-    (#o313 333.0 "cedilla")
-    (#o315 333.0 "hungarumlaut")
-    (#o316 333.0 "ogonek")
-    (#o317 333.0 "caron")
-    (#o320 889.0 "emdash")
-    (#o341 889.0 "AE")
-    (#o343 276.0 "ordfeminine")
-    (#o350 556.0 "Lslash")
-    (#o351 722.0 "Oslash")
-    (#o352 944.0 "OE")
-    (#o353 310.0 "ordmasculine")
-    (#o361 667.0 "ae")
-    (#o365 278.0 "dotlessi")
-    (#o370 278.0 "lslash")
-    (#o371 500.0 "oslash")
-    (#o372 667.0 "oe")
-    (#o373 500.0 "germandbls")
-    ))
-
-(setup-laserwriter-metrics
-  '(("Times-Bold" 1000 (-172 -257 1008 965))
-    (#o040 250.0 "space")
-    (#o041 333.0 "exclam")
-    (#o042 555.0 "quotedbl")
-    (#o043 500.0 "numbersign")
-    (#o044 500.0 "dollar")
-    (#o045 1000.0 "percent")
-    (#o046 833.0 "ampersand")
-    (#o047 333.0 "quoteright")
-    (#o050 333.0 "parenleft")
-    (#o051 333.0 "parenright")
-    (#o052 500.0 "asterisk")
-    (#o053 570.0 "plus")
-    (#o054 250.0 "comma")
-    (#o055 333.0 "hyphen")
-    (#o056 250.0 "period")
-    (#o057 278.0 "slash")
-    (#o060 500.0 "zero")
-    (#o061 500.0 "one")
-    (#o062 500.0 "two")
-    (#o063 500.0 "three")
-    (#o064 500.0 "four")
-    (#o065 500.0 "five")
-    (#o066 500.0 "six")
-    (#o067 500.0 "seven")
-    (#o070 500.0 "eight")
-    (#o071 500.0 "nine")
-    (#o072 333.0 "colon")
-    (#o073 333.0 "semicolon")
-    (#o074 570.0 "less")
-    (#o075 570.0 "equal")
-    (#o076 570.0 "greater")
-    (#o077 500.0 "question")
-    (#o100 930.0 "at")
-    (#o101 722.0 "A")
-    (#o102 667.0 "B")
-    (#o103 722.0 "C")
-    (#o104 722.0 "D")
-    (#o105 667.0 "E")
-    (#o106 611.0 "F")
-    (#o107 778.0 "G")
-    (#o110 778.0 "H")
-    (#o111 389.0 "I")
-    (#o112 500.0 "J")
-    (#o113 778.0 "K")
-    (#o114 667.0 "L")
-    (#o115 944.0 "M")
-    (#o116 722.0 "N")
-    (#o117 778.0 "O")
-    (#o120 611.0 "P")
-    (#o121 778.0 "Q")
-    (#o122 722.0 "R")
-    (#o123 556.0 "S")
-    (#o124 667.0 "T")
-    (#o125 722.0 "U")
-    (#o126 722.0 "V")
-    (#o127 1000.0 "W")
-    (#o130 722.0 "X")
-    (#o131 722.0 "Y")
-    (#o132 667.0 "Z")
-    (#o133 333.0 "bracketleft")
-    (#o134 278.0 "backslash")
-    (#o135 333.0 "bracketright")
-    (#o136 581.0 "asciicircum")
-    (#o137 500.0 "underscore")
-    (#o140 333.0 "quoteleft")
-    (#o141 500.0 "a")
-    (#o142 556.0 "b")
-    (#o143 444.0 "c")
-    (#o144 556.0 "d")
-    (#o145 444.0 "e")
-    (#o146 333.0 "f")
-    (#o147 500.0 "g")
-    (#o150 556.0 "h")
-    (#o151 278.0 "i")
-    (#o152 333.0 "j")
-    (#o153 556.0 "k")
-    (#o154 278.0 "l")
-    (#o155 833.0 "m")
-    (#o156 556.0 "n")
-    (#o157 500.0 "o")
-    (#o160 556.0 "p")
-    (#o161 556.0 "q")
-    (#o162 444.0 "r")
-    (#o163 389.0 "s")
-    (#o164 333.0 "t")
-    (#o165 556.0 "u")
-    (#o166 500.0 "v")
-    (#o167 722.0 "w")
-    (#o170 500.0 "x")
-    (#o171 500.0 "y")
-    (#o172 444.0 "z")
-    (#o173 394.0 "braceleft")
-    (#o174 220.0 "bar")
-    (#o175 394.0 "braceright")
-    (#o176 520.0 "asciitilde")
-    (#o241 333.0 "exclamdown")
-    (#o242 500.0 "cent")
-    (#o243 500.0 "sterling")
-    (#o244 167.0 "fraction")
-    (#o245 500.0 "yen")
-    (#o246 500.0 "florin")
-    (#o247 500.0 "section")
-    (#o250 500.0 "currency")
-    (#o251 278.0 "quotesingle")
-    (#o252 500.0 "quotedblleft")
-    (#o253 500.0 "guillemotleft")
-    (#o254 333.0 "guilsinglleft")
-    (#o255 333.0 "guilsinglright")
-    (#o256 556.0 "fi")
-    (#o257 556.0 "fl")
-    (#o261 500.0 "endash")
-    (#o262 500.0 "dagger")
-    (#o263 500.0 "daggerdbl")
-    (#o264 250.0 "periodcentered")
-    (#o266 540.0 "paragraph")
-    (#o267 350.0 "bullet")
-    (#o270 333.0 "quotesinglbase")
-    (#o271 500.0 "quotedblbase")
-    (#o272 500.0 "quotedblright")
-    (#o273 500.0 "guillemotright")
-    (#o274 1000.0 "ellipsis")
-    (#o275 1000.0 "perthousand")
-    (#o277 500.0 "questiondown")
-    (#o301 333.0 "grave")
-    (#o302 333.0 "acute")
-    (#o303 333.0 "circumflex")
-    (#o304 333.0 "tilde")
-    (#o305 333.0 "macron")
-    (#o306 333.0 "breve")
-    (#o307 333.0 "dotaccent")
-    (#o310 333.0 "dieresis")
-    (#o312 333.0 "ring")
-    (#o313 333.0 "cedilla")
-    (#o315 333.0 "hungarumlaut")
-    (#o316 333.0 "ogonek")
-    (#o317 333.0 "caron")
-    (#o320 1000.0 "emdash")
-    (#o341 1000.0 "AE")
-    (#o343 300.0 "ordfeminine")
-    (#o350 667.0 "Lslash")
-    (#o351 778.0 "Oslash")
-    (#o352 1000.0 "OE")
-    (#o353 330.0 "ordmasculine")
-    (#o361 722.0 "ae")
-    (#o365 278.0 "dotlessi")
-    (#o370 278.0 "lslash")
-    (#o371 500.0 "oslash")
-    (#o372 722.0 "oe")
-    (#o373 556.0 "germandbls")
-    ))
-
-(setup-laserwriter-metrics
-  '(("Times-BoldItalic" 1000 (-183 -250 1004 973))
-    (#o040 250.0 "space")
-    (#o041 389.0 "exclam")
-    (#o042 555.0 "quotedbl")
-    (#o043 500.0 "numbersign")
-    (#o044 500.0 "dollar")
-    (#o045 833.0 "percent")
-    (#o046 778.0 "ampersand")
-    (#o047 333.0 "quoteright")
-    (#o050 333.0 "parenleft")
-    (#o051 333.0 "parenright")
-    (#o052 500.0 "asterisk")
-    (#o053 570.0 "plus")
-    (#o054 250.0 "comma")
-    (#o055 333.0 "hyphen")
-    (#o056 250.0 "period")
-    (#o057 278.0 "slash")
-    (#o060 500.0 "zero")
-    (#o061 500.0 "one")
-    (#o062 500.0 "two")
-    (#o063 500.0 "three")
-    (#o064 500.0 "four")
-    (#o065 500.0 "five")
-    (#o066 500.0 "six")
-    (#o067 500.0 "seven")
-    (#o070 500.0 "eight")
-    (#o071 500.0 "nine")
-    (#o072 333.0 "colon")
-    (#o073 333.0 "semicolon")
-    (#o074 570.0 "less")
-    (#o075 570.0 "equal")
-    (#o076 570.0 "greater")
-    (#o077 500.0 "question")
-    (#o100 832.0 "at")
-    (#o101 667.0 "A")
-    (#o102 667.0 "B")
-    (#o103 667.0 "C")
-    (#o104 722.0 "D")
-    (#o105 667.0 "E")
-    (#o106 667.0 "F")
-    (#o107 722.0 "G")
-    (#o110 778.0 "H")
-    (#o111 389.0 "I")
-    (#o112 500.0 "J")
-    (#o113 667.0 "K")
-    (#o114 611.0 "L")
-    (#o115 889.0 "M")
-    (#o116 722.0 "N")
-    (#o117 722.0 "O")
-    (#o120 611.0 "P")
-    (#o121 722.0 "Q")
-    (#o122 667.0 "R")
-    (#o123 556.0 "S")
-    (#o124 611.0 "T")
-    (#o125 722.0 "U")
-    (#o126 667.0 "V")
-    (#o127 889.0 "W")
-    (#o130 667.0 "X")
-    (#o131 611.0 "Y")
-    (#o132 611.0 "Z")
-    (#o133 333.0 "bracketleft")
-    (#o134 278.0 "backslash")
-    (#o135 333.0 "bracketright")
-    (#o136 570.0 "asciicircum")
-    (#o137 500.0 "underscore")
-    (#o140 333.0 "quoteleft")
-    (#o141 500.0 "a")
-    (#o142 500.0 "b")
-    (#o143 444.0 "c")
-    (#o144 500.0 "d")
-    (#o145 444.0 "e")
-    (#o146 333.0 "f")
-    (#o147 500.0 "g")
-    (#o150 556.0 "h")
-    (#o151 278.0 "i")
-    (#o152 278.0 "j")
-    (#o153 500.0 "k")
-    (#o154 278.0 "l")
-    (#o155 778.0 "m")
-    (#o156 556.0 "n")
-    (#o157 500.0 "o")
-    (#o160 500.0 "p")
-    (#o161 500.0 "q")
-    (#o162 389.0 "r")
-    (#o163 389.0 "s")
-    (#o164 278.0 "t")
-    (#o165 556.0 "u")
-    (#o166 444.0 "v")
-    (#o167 667.0 "w")
-    (#o170 500.0 "x")
-    (#o171 444.0 "y")
-    (#o172 389.0 "z")
-    (#o173 348.0 "braceleft")
-    (#o174 220.0 "bar")
-    (#o175 348.0 "braceright")
-    (#o176 570.0 "asciitilde")
-    (#o241 389.0 "exclamdown")
-    (#o242 500.0 "cent")
-    (#o243 500.0 "sterling")
-    (#o244 167.0 "fraction")
-    (#o245 500.0 "yen")
-    (#o246 500.0 "florin")
-    (#o247 500.0 "section")
-    (#o250 500.0 "currency")
-    (#o251 278.0 "quotesingle")
-    (#o252 500.0 "quotedblleft")
-    (#o253 500.0 "guillemotleft")
-    (#o254 333.0 "guilsinglleft")
-    (#o255 333.0 "guilsinglright")
-    (#o256 556.0 "fi")
-    (#o257 556.0 "fl")
-    (#o261 500.0 "endash")
-    (#o262 500.0 "dagger")
-    (#o263 500.0 "daggerdbl")
-    (#o264 250.0 "periodcentered")
-    (#o266 500.0 "paragraph")
-    (#o267 350.0 "bullet")
-    (#o270 333.0 "quotesinglbase")
-    (#o271 500.0 "quotedblbase")
-    (#o272 500.0 "quotedblright")
-    (#o273 500.0 "guillemotright")
-    (#o274 1000.0 "ellipsis")
-    (#o275 1000.0 "perthousand")
-    (#o277 500.0 "questiondown")
-    (#o301 333.0 "grave")
-    (#o302 333.0 "acute")
-    (#o303 333.0 "circumflex")
-    (#o304 333.0 "tilde")
-    (#o305 333.0 "macron")
-    (#o306 333.0 "breve")
-    (#o307 333.0 "dotaccent")
-    (#o310 333.0 "dieresis")
-    (#o312 333.0 "ring")
-    (#o313 333.0 "cedilla")
-    (#o315 333.0 "hungarumlaut")
-    (#o316 333.0 "ogonek")
-    (#o317 333.0 "caron")
-    (#o320 1000.0 "emdash")
-    (#o341 944.0 "AE")
-    (#o343 266.0 "ordfeminine")
-    (#o350 611.0 "Lslash")
-    (#o351 722.0 "Oslash")
-    (#o352 944.0 "OE")
-    (#o353 300.0 "ordmasculine")
-    (#o361 722.0 "ae")
-    (#o365 278.0 "dotlessi")
-    (#o370 278.0 "lslash")
-    (#o371 500.0 "oslash")
-    (#o372 722.0 "oe")
-    (#o373 500.0 "germandbls")
-    ))
-
-
-(setup-laserwriter-metrics
-  '(("Helvetica" 1000 (-174 -234 1001 941))
-    (#o040 278.0 "space")
-    (#o041 278.0 "exclam")
-    (#o042 355.0 "quotedbl")
-    (#o043 556.0 "numbersign")
-    (#o044 556.0 "dollar")
-    (#o045 889.0 "percent")
-    (#o046 667.0 "ampersand")
-    (#o047 222.0 "quoteright")
-    (#o050 333.0 "parenleft")
-    (#o051 333.0 "parenright")
-    (#o052 389.0 "asterisk")
-    (#o053 584.0 "plus")
-    (#o054 278.0 "comma")
-    (#o055 333.0 "hyphen")
-    (#o056 278.0 "period")
-    (#o057 278.0 "slash")
-    (#o060 556.0 "zero")
-    (#o061 556.0 "one")
-    (#o062 556.0 "two")
-    (#o063 556.0 "three")
-    (#o064 556.0 "four")
-    (#o065 556.0 "five")
-    (#o066 556.0 "six")
-    (#o067 556.0 "seven")
-    (#o070 556.0 "eight")
-    (#o071 556.0 "nine")
-    (#o072 278.0 "colon")
-    (#o073 278.0 "semicolon")
-    (#o074 584.0 "less")
-    (#o075 584.0 "equal")
-    (#o076 584.0 "greater")
-    (#o077 556.0 "question")
-    (#o100 1015.0 "at")
-    (#o101 667.0 "A")
-    (#o102 667.0 "B")
-    (#o103 722.0 "C")
-    (#o104 722.0 "D")
-    (#o105 667.0 "E")
-    (#o106 611.0 "F")
-    (#o107 778.0 "G")
-    (#o110 722.0 "H")
-    (#o111 278.0 "I")
-    (#o112 500.0 "J")
-    (#o113 667.0 "K")
-    (#o114 556.0 "L")
-    (#o115 833.0 "M")
-    (#o116 722.0 "N")
-    (#o117 778.0 "O")
-    (#o120 667.0 "P")
-    (#o121 778.0 "Q")
-    (#o122 722.0 "R")
-    (#o123 667.0 "S")
-    (#o124 611.0 "T")
-    (#o125 722.0 "U")
-    (#o126 667.0 "V")
-    (#o127 944.0 "W")
-    (#o130 667.0 "X")
-    (#o131 667.0 "Y")
-    (#o132 611.0 "Z")
-    (#o133 278.0 "bracketleft")
-    (#o134 278.0 "backslash")
-    (#o135 278.0 "bracketright")
-    (#o136 469.0 "asciicircum")
-    (#o137 556.0 "underscore")
-    (#o140 222.0 "quoteleft")
-    (#o141 556.0 "a")
-    (#o142 556.0 "b")
-    (#o143 500.0 "c")
-    (#o144 556.0 "d")
-    (#o145 556.0 "e")
-    (#o146 278.0 "f")
-    (#o147 556.0 "g")
-    (#o150 556.0 "h")
-    (#o151 222.0 "i")
-    (#o152 222.0 "j")
-    (#o153 500.0 "k")
-    (#o154 222.0 "l")
-    (#o155 833.0 "m")
-    (#o156 556.0 "n")
-    (#o157 556.0 "o")
-    (#o160 556.0 "p")
-    (#o161 556.0 "q")
-    (#o162 333.0 "r")
-    (#o163 500.0 "s")
-    (#o164 278.0 "t")
-    (#o165 556.0 "u")
-    (#o166 500.0 "v")
-    (#o167 722.0 "w")
-    (#o170 500.0 "x")
-    (#o171 500.0 "y")
-    (#o172 500.0 "z")
-    (#o173 334.0 "braceleft")
-    (#o174 260.0 "bar")
-    (#o175 334.0 "braceright")
-    (#o176 584.0 "asciitilde")
-    (#o241 333.0 "exclamdown")
-    (#o242 556.0 "cent")
-    (#o243 556.0 "sterling")
-    (#o244 167.0 "fraction")
-    (#o245 556.0 "yen")
-    (#o246 556.0 "florin")
-    (#o247 556.0 "section")
-    (#o250 556.0 "currency")
-    (#o251 191.0 "quotesingle")
-    (#o252 333.0 "quotedblleft")
-    (#o253 556.0 "guillemotleft")
-    (#o254 333.0 "guilsinglleft")
-    (#o255 333.0 "guilsinglright")
-    (#o256 500.0 "fi")
-    (#o257 500.0 "fl")
-    (#o261 556.0 "endash")
-    (#o262 556.0 "dagger")
-    (#o263 556.0 "daggerdbl")
-    (#o264 278.0 "periodcentered")
-    (#o266 537.0 "paragraph")
-    (#o267 350.0 "bullet")
-    (#o270 222.0 "quotesinglbase")
-    (#o271 333.0 "quotedblbase")
-    (#o272 333.0 "quotedblright")
-    (#o273 556.0 "guillemotright")
-    (#o274 1000.0 "ellipsis")
-    (#o275 1000.0 "perthousand")
-    (#o277 611.0 "questiondown")
-    (#o301 333.0 "grave")
-    (#o302 333.0 "acute")
-    (#o303 333.0 "circumflex")
-    (#o304 333.0 "tilde")
-    (#o305 333.0 "macron")
-    (#o306 333.0 "breve")
-    (#o307 333.0 "dotaccent")
-    (#o310 333.0 "dieresis")
-    (#o312 333.0 "ring")
-    (#o313 333.0 "cedilla")
-    (#o315 333.0 "hungarumlaut")
-    (#o316 333.0 "ogonek")
-    (#o317 333.0 "caron")
-    (#o320 1000.0 "emdash")
-    (#o341 1000.0 "AE")
-    (#o343 370.0 "ordfeminine")
-    (#o350 556.0 "Lslash")
-    (#o351 778.0 "Oslash")
-    (#o352 1000.0 "OE")
-    (#o353 365.0 "ordmasculine")
-    (#o361 889.0 "ae")
-    (#o365 278.0 "dotlessi")
-    (#o370 222.0 "lslash")
-    (#o371 611.0 "oslash")
-    (#o372 944.0 "oe")
-    (#o373 611.0 "germandbls")
-    ))
-
-(setup-laserwriter-metrics
-  '(("Helvetica-Oblique" 1000 (-174 -234 1001 941))
-    (#o040 278.0 "space")
-    (#o041 278.0 "exclam")
-    (#o042 355.0 "quotedbl")
-    (#o043 556.0 "numbersign")
-    (#o044 556.0 "dollar")
-    (#o045 889.0 "percent")
-    (#o046 667.0 "ampersand")
-    (#o047 222.0 "quoteright")
-    (#o050 333.0 "parenleft")
-    (#o051 333.0 "parenright")
-    (#o052 389.0 "asterisk")
-    (#o053 584.0 "plus")
-    (#o054 278.0 "comma")
-    (#o055 333.0 "hyphen")
-    (#o056 278.0 "period")
-    (#o057 278.0 "slash")
-    (#o060 556.0 "zero")
-    (#o061 556.0 "one")
-    (#o062 556.0 "two")
-    (#o063 556.0 "three")
-    (#o064 556.0 "four")
-    (#o065 556.0 "five")
-    (#o066 556.0 "six")
-    (#o067 556.0 "seven")
-    (#o070 556.0 "eight")
-    (#o071 556.0 "nine")
-    (#o072 278.0 "colon")
-    (#o073 278.0 "semicolon")
-    (#o074 584.0 "less")
-    (#o075 584.0 "equal")
-    (#o076 584.0 "greater")
-    (#o077 556.0 "question")
-    (#o100 1015.0 "at")
-    (#o101 667.0 "A")
-    (#o102 667.0 "B")
-    (#o103 722.0 "C")
-    (#o104 722.0 "D")
-    (#o105 667.0 "E")
-    (#o106 611.0 "F")
-    (#o107 778.0 "G")
-    (#o110 722.0 "H")
-    (#o111 278.0 "I")
-    (#o112 500.0 "J")
-    (#o113 667.0 "K")
-    (#o114 556.0 "L")
-    (#o115 833.0 "M")
-    (#o116 722.0 "N")
-    (#o117 778.0 "O")
-    (#o120 667.0 "P")
-    (#o121 778.0 "Q")
-    (#o122 722.0 "R")
-    (#o123 667.0 "S")
-    (#o124 611.0 "T")
-    (#o125 722.0 "U")
-    (#o126 667.0 "V")
-    (#o127 944.0 "W")
-    (#o130 667.0 "X")
-    (#o131 667.0 "Y")
-    (#o132 611.0 "Z")
-    (#o133 278.0 "bracketleft")
-    (#o134 278.0 "backslash")
-    (#o135 278.0 "bracketright")
-    (#o136 469.0 "asciicircum")
-    (#o137 556.0 "underscore")
-    (#o140 222.0 "quoteleft")
-    (#o141 556.0 "a")
-    (#o142 556.0 "b")
-    (#o143 500.0 "c")
-    (#o144 556.0 "d")
-    (#o145 556.0 "e")
-    (#o146 278.0 "f")
-    (#o147 556.0 "g")
-    (#o150 556.0 "h")
-    (#o151 222.0 "i")
-    (#o152 222.0 "j")
-    (#o153 500.0 "k")
-    (#o154 222.0 "l")
-    (#o155 833.0 "m")
-    (#o156 556.0 "n")
-    (#o157 556.0 "o")
-    (#o160 556.0 "p")
-    (#o161 556.0 "q")
-    (#o162 333.0 "r")
-    (#o163 500.0 "s")
-    (#o164 278.0 "t")
-    (#o165 556.0 "u")
-    (#o166 500.0 "v")
-    (#o167 722.0 "w")
-    (#o170 500.0 "x")
-    (#o171 500.0 "y")
-    (#o172 500.0 "z")
-    (#o173 334.0 "braceleft")
-    (#o174 260.0 "bar")
-    (#o175 334.0 "braceright")
-    (#o176 584.0 "asciitilde")
-    (#o241 333.0 "exclamdown")
-    (#o242 556.0 "cent")
-    (#o243 556.0 "sterling")
-    (#o244 167.0 "fraction")
-    (#o245 556.0 "yen")
-    (#o246 556.0 "florin")
-    (#o247 556.0 "section")
-    (#o250 556.0 "currency")
-    (#o251 191.0 "quotesingle")
-    (#o252 333.0 "quotedblleft")
-    (#o253 556.0 "guillemotleft")
-    (#o254 333.0 "guilsinglleft")
-    (#o255 333.0 "guilsinglright")
-    (#o256 500.0 "fi")
-    (#o257 500.0 "fl")
-    (#o261 556.0 "endash")
-    (#o262 556.0 "dagger")
-    (#o263 556.0 "daggerdbl")
-    (#o264 278.0 "periodcentered")
-    (#o266 537.0 "paragraph")
-    (#o267 350.0 "bullet")
-    (#o270 222.0 "quotesinglbase")
-    (#o271 333.0 "quotedblbase")
-    (#o272 333.0 "quotedblright")
-    (#o273 556.0 "guillemotright")
-    (#o274 1000.0 "ellipsis")
-    (#o275 1000.0 "perthousand")
-    (#o277 611.0 "questiondown")
-    (#o301 333.0 "grave")
-    (#o302 333.0 "acute")
-    (#o303 333.0 "circumflex")
-    (#o304 333.0 "tilde")
-    (#o305 333.0 "macron")
-    (#o306 333.0 "breve")
-    (#o307 333.0 "dotaccent")
-    (#o310 333.0 "dieresis")
-    (#o312 333.0 "ring")
-    (#o313 333.0 "cedilla")
-    (#o315 333.0 "hungarumlaut")
-    (#o316 333.0 "ogonek")
-    (#o317 333.0 "caron")
-    (#o320 1000.0 "emdash")
-    (#o341 1000.0 "AE")
-    (#o343 370.0 "ordfeminine")
-    (#o350 556.0 "Lslash")
-    (#o351 778.0 "Oslash")
-    (#o352 1000.0 "OE")
-    (#o353 365.0 "ordmasculine")
-    (#o361 889.0 "ae")
-    (#o365 278.0 "dotlessi")
-    (#o370 222.0 "lslash")
-    (#o371 611.0 "oslash")
-    (#o372 944.0 "oe")
-    (#o373 611.0 "germandbls")
-    ))
-
-(setup-laserwriter-metrics
-  '(("Helvetica-Bold" 1000 (-173 -241 1003 936))
-    (#o040 278.0 "space")
-    (#o041 333.0 "exclam")
-    (#o042 474.0 "quotedbl")
-    (#o043 556.0 "numbersign")
-    (#o044 556.0 "dollar")
-    (#o045 889.0 "percent")
-    (#o046 722.0 "ampersand")
-    (#o047 278.0 "quoteright")
-    (#o050 333.0 "parenleft")
-    (#o051 333.0 "parenright")
-    (#o052 389.0 "asterisk")
-    (#o053 584.0 "plus")
-    (#o054 278.0 "comma")
-    (#o055 333.0 "hyphen")
-    (#o056 278.0 "period")
-    (#o057 278.0 "slash")
-    (#o060 556.0 "zero")
-    (#o061 556.0 "one")
-    (#o062 556.0 "two")
-    (#o063 556.0 "three")
-    (#o064 556.0 "four")
-    (#o065 556.0 "five")
-    (#o066 556.0 "six")
-    (#o067 556.0 "seven")
-    (#o070 556.0 "eight")
-    (#o071 556.0 "nine")
-    (#o072 333.0 "colon")
-    (#o073 333.0 "semicolon")
-    (#o074 584.0 "less")
-    (#o075 584.0 "equal")
-    (#o076 584.0 "greater")
-    (#o077 611.0 "question")
-    (#o100 975.0 "at")
-    (#o101 722.0 "A")
-    (#o102 722.0 "B")
-    (#o103 722.0 "C")
-    (#o104 722.0 "D")
-    (#o105 667.0 "E")
-    (#o106 611.0 "F")
-    (#o107 778.0 "G")
-    (#o110 722.0 "H")
-    (#o111 278.0 "I")
-    (#o112 556.0 "J")
-    (#o113 722.0 "K")
-    (#o114 611.0 "L")
-    (#o115 833.0 "M")
-    (#o116 722.0 "N")
-    (#o117 778.0 "O")
-    (#o120 667.0 "P")
-    (#o121 778.0 "Q")
-    (#o122 722.0 "R")
-    (#o123 667.0 "S")
-    (#o124 611.0 "T")
-    (#o125 722.0 "U")
-    (#o126 667.0 "V")
-    (#o127 944.0 "W")
-    (#o130 667.0 "X")
-    (#o131 667.0 "Y")
-    (#o132 611.0 "Z")
-    (#o133 333.0 "bracketleft")
-    (#o134 278.0 "backslash")
-    (#o135 333.0 "bracketright")
-    (#o136 584.0 "asciicircum")
-    (#o137 556.0 "underscore")
-    (#o140 278.0 "quoteleft")
-    (#o141 556.0 "a")
-    (#o142 611.0 "b")
-    (#o143 556.0 "c")
-    (#o144 611.0 "d")
-    (#o145 556.0 "e")
-    (#o146 333.0 "f")
-    (#o147 611.0 "g")
-    (#o150 611.0 "h")
-    (#o151 278.0 "i")
-    (#o152 278.0 "j")
-    (#o153 556.0 "k")
-    (#o154 278.0 "l")
-    (#o155 889.0 "m")
-    (#o156 611.0 "n")
-    (#o157 611.0 "o")
-    (#o160 611.0 "p")
-    (#o161 611.0 "q")
-    (#o162 389.0 "r")
-    (#o163 556.0 "s")
-    (#o164 333.0 "t")
-    (#o165 611.0 "u")
-    (#o166 556.0 "v")
-    (#o167 778.0 "w")
-    (#o170 556.0 "x")
-    (#o171 556.0 "y")
-    (#o172 500.0 "z")
-    (#o173 389.0 "braceleft")
-    (#o174 280.0 "bar")
-    (#o175 389.0 "braceright")
-    (#o176 584.0 "asciitilde")
-    (#o241 333.0 "exclamdown")
-    (#o242 556.0 "cent")
-    (#o243 556.0 "sterling")
-    (#o244 167.0 "fraction")
-    (#o245 556.0 "yen")
-    (#o246 556.0 "florin")
-    (#o247 556.0 "section")
-    (#o250 556.0 "currency")
-    (#o251 238.0 "quotesingle")
-    (#o252 500.0 "quotedblleft")
-    (#o253 556.0 "guillemotleft")
-    (#o254 333.0 "guilsinglleft")
-    (#o255 333.0 "guilsinglright")
-    (#o256 611.0 "fi")
-    (#o257 611.0 "fl")
-    (#o261 556.0 "endash")
-    (#o262 556.0 "dagger")
-    (#o263 556.0 "daggerdbl")
-    (#o264 278.0 "periodcentered")
-    (#o266 556.0 "paragraph")
-    (#o267 350.0 "bullet")
-    (#o270 278.0 "quotesinglbase")
-    (#o271 500.0 "quotedblbase")
-    (#o272 500.0 "quotedblright")
-    (#o273 556.0 "guillemotright")
-    (#o274 1000.0 "ellipsis")
-    (#o275 1000.0 "perthousand")
-    (#o277 611.0 "questiondown")
-    (#o301 333.0 "grave")
-    (#o302 333.0 "acute")
-    (#o303 333.0 "circumflex")
-    (#o304 333.0 "tilde")
-    (#o305 333.0 "macron")
-    (#o306 333.0 "breve")
-    (#o307 333.0 "dotaccent")
-    (#o310 333.0 "dieresis")
-    (#o312 333.0 "ring")
-    (#o313 333.0 "cedilla")
-    (#o315 333.0 "hungarumlaut")
-    (#o316 333.0 "ogonek")
-    (#o317 333.0 "caron")
-    (#o320 1000.0 "emdash")
-    (#o341 1000.0 "AE")
-    (#o343 370.0 "ordfeminine")
-    (#o350 611.0 "Lslash")
-    (#o351 778.0 "Oslash")
-    (#o352 1000.0 "OE")
-    (#o353 365.0 "ordmasculine")
-    (#o361 889.0 "ae")
-    (#o365 278.0 "dotlessi")
-    (#o370 278.0 "lslash")
-    (#o371 611.0 "oslash")
-    (#o372 944.0 "oe")
-    (#o373 611.0 "germandbls")
-    ))
-
-(setup-laserwriter-metrics
-  '(("Helvetica-BoldOblique" 1000 (-173 -241 1003 936))
-    (#o040 278.0 "space")
-    (#o041 333.0 "exclam")
-    (#o042 474.0 "quotedbl")
-    (#o043 556.0 "numbersign")
-    (#o044 556.0 "dollar")
-    (#o045 889.0 "percent")
-    (#o046 722.0 "ampersand")
-    (#o047 278.0 "quoteright")
-    (#o050 333.0 "parenleft")
-    (#o051 333.0 "parenright")
-    (#o052 389.0 "asterisk")
-    (#o053 584.0 "plus")
-    (#o054 278.0 "comma")
-    (#o055 333.0 "hyphen")
-    (#o056 278.0 "period")
-    (#o057 278.0 "slash")
-    (#o060 556.0 "zero")
-    (#o061 556.0 "one")
-    (#o062 556.0 "two")
-    (#o063 556.0 "three")
-    (#o064 556.0 "four")
-    (#o065 556.0 "five")
-    (#o066 556.0 "six")
-    (#o067 556.0 "seven")
-    (#o070 556.0 "eight")
-    (#o071 556.0 "nine")
-    (#o072 333.0 "colon")
-    (#o073 333.0 "semicolon")
-    (#o074 584.0 "less")
-    (#o075 584.0 "equal")
-    (#o076 584.0 "greater")
-    (#o077 611.0 "question")
-    (#o100 975.0 "at")
-    (#o101 722.0 "A")
-    (#o102 722.0 "B")
-    (#o103 722.0 "C")
-    (#o104 722.0 "D")
-    (#o105 667.0 "E")
-    (#o106 611.0 "F")
-    (#o107 778.0 "G")
-    (#o110 722.0 "H")
-    (#o111 278.0 "I")
-    (#o112 556.0 "J")
-    (#o113 722.0 "K")
-    (#o114 611.0 "L")
-    (#o115 833.0 "M")
-    (#o116 722.0 "N")
-    (#o117 778.0 "O")
-    (#o120 667.0 "P")
-    (#o121 778.0 "Q")
-    (#o122 722.0 "R")
-    (#o123 667.0 "S")
-    (#o124 611.0 "T")
-    (#o125 722.0 "U")
-    (#o126 667.0 "V")
-    (#o127 944.0 "W")
-    (#o130 667.0 "X")
-    (#o131 667.0 "Y")
-    (#o132 611.0 "Z")
-    (#o133 333.0 "bracketleft")
-    (#o134 278.0 "backslash")
-    (#o135 333.0 "bracketright")
-    (#o136 584.0 "asciicircum")
-    (#o137 556.0 "underscore")
-    (#o140 278.0 "quoteleft")
-    (#o141 556.0 "a")
-    (#o142 611.0 "b")
-    (#o143 556.0 "c")
-    (#o144 611.0 "d")
-    (#o145 556.0 "e")
-    (#o146 333.0 "f")
-    (#o147 611.0 "g")
-    (#o150 611.0 "h")
-    (#o151 278.0 "i")
-    (#o152 278.0 "j")
-    (#o153 556.0 "k")
-    (#o154 278.0 "l")
-    (#o155 889.0 "m")
-    (#o156 611.0 "n")
-    (#o157 611.0 "o")
-    (#o160 611.0 "p")
-    (#o161 611.0 "q")
-    (#o162 389.0 "r")
-    (#o163 556.0 "s")
-    (#o164 333.0 "t")
-    (#o165 611.0 "u")
-    (#o166 556.0 "v")
-    (#o167 778.0 "w")
-    (#o170 556.0 "x")
-    (#o171 556.0 "y")
-    (#o172 500.0 "z")
-    (#o173 389.0 "braceleft")
-    (#o174 280.0 "bar")
-    (#o175 389.0 "braceright")
-    (#o176 584.0 "asciitilde")
-    (#o241 333.0 "exclamdown")
-    (#o242 556.0 "cent")
-    (#o243 556.0 "sterling")
-    (#o244 167.0 "fraction")
-    (#o245 556.0 "yen")
-    (#o246 556.0 "florin")
-    (#o247 556.0 "section")
-    (#o250 556.0 "currency")
-    (#o251 238.0 "quotesingle")
-    (#o252 500.0 "quotedblleft")
-    (#o253 556.0 "guillemotleft")
-    (#o254 333.0 "guilsinglleft")
-    (#o255 333.0 "guilsinglright")
-    (#o256 611.0 "fi")
-    (#o257 611.0 "fl")
-    (#o261 556.0 "endash")
-    (#o262 556.0 "dagger")
-    (#o263 556.0 "daggerdbl")
-    (#o264 278.0 "periodcentered")
-    (#o266 556.0 "paragraph")
-    (#o267 350.0 "bullet")
-    (#o270 278.0 "quotesinglbase")
-    (#o271 500.0 "quotedblbase")
-    (#o272 500.0 "quotedblright")
-    (#o273 556.0 "guillemotright")
-    (#o274 1000.0 "ellipsis")
-    (#o275 1000.0 "perthousand")
-    (#o277 611.0 "questiondown")
-    (#o301 333.0 "grave")
-    (#o302 333.0 "acute")
-    (#o303 333.0 "circumflex")
-    (#o304 333.0 "tilde")
-    (#o305 333.0 "macron")
-    (#o306 333.0 "breve")
-    (#o307 333.0 "dotaccent")
-    (#o310 333.0 "dieresis")
-    (#o312 333.0 "ring")
-    (#o313 333.0 "cedilla")
-    (#o315 333.0 "hungarumlaut")
-    (#o316 333.0 "ogonek")
-    (#o317 333.0 "caron")
-    (#o320 1000.0 "emdash")
-    (#o341 1000.0 "AE")
-    (#o343 370.0 "ordfeminine")
-    (#o350 611.0 "Lslash")
-    (#o351 778.0 "Oslash")
-    (#o352 1000.0 "OE")
-    (#o353 365.0 "ordmasculine")
-    (#o361 889.0 "ae")
-    (#o365 278.0 "dotlessi")
-    (#o370 278.0 "lslash")
-    (#o371 611.0 "oslash")
-    (#o372 944.0 "oe")
-    (#o373 611.0 "germandbls")
-    ))
-
-
-;;; In fact, the Courier metrics never get used because they are fixed-width
-;;; fonts that get handled specially by the PostScript code itself.
-
-(setup-laserwriter-metrics
-  '(("Courier" 1000 (0 -251 600 700))
-    (#o040 600.0 "space")
-    (#o041 600.0 "exclam")
-    (#o042 600.0 "quotedbl")
-    (#o043 600.0 "numbersign")
-    (#o044 600.0 "dollar")
-    (#o045 600.0 "percent")
-    (#o046 600.0 "ampersand")
-    (#o047 600.0 "quoteright")
-    (#o050 600.0 "parenleft")
-    (#o051 600.0 "parenright")
-    (#o052 600.0 "asterisk")
-    (#o053 600.0 "plus")
-    (#o054 600.0 "comma")
-    (#o055 600.0 "hyphen")
-    (#o056 600.0 "period")
-    (#o057 600.0 "slash")
-    (#o060 600.0 "zero")
-    (#o061 600.0 "one")
-    (#o062 600.0 "two")
-    (#o063 600.0 "three")
-    (#o064 600.0 "four")
-    (#o065 600.0 "five")
-    (#o066 600.0 "six")
-    (#o067 600.0 "seven")
-    (#o070 600.0 "eight")
-    (#o071 600.0 "nine")
-    (#o072 600.0 "colon")
-    (#o073 600.0 "semicolon")
-    (#o074 600.0 "less")
-    (#o075 600.0 "equal")
-    (#o076 600.0 "greater")
-    (#o077 600.0 "question")
-    (#o100 600.0 "at")
-    (#o101 600.0 "A")
-    (#o102 600.0 "B")
-    (#o103 600.0 "C")
-    (#o104 600.0 "D")
-    (#o105 600.0 "E")
-    (#o106 600.0 "F")
-    (#o107 600.0 "G")
-    (#o110 600.0 "H")
-    (#o111 600.0 "I")
-    (#o112 600.0 "J")
-    (#o113 600.0 "K")
-    (#o114 600.0 "L")
-    (#o115 600.0 "M")
-    (#o116 600.0 "N")
-    (#o117 600.0 "O")
-    (#o120 600.0 "P")
-    (#o121 600.0 "Q")
-    (#o122 600.0 "R")
-    (#o123 600.0 "S")
-    (#o124 600.0 "T")
-    (#o125 600.0 "U")
-    (#o126 600.0 "V")
-    (#o127 600.0 "W")
-    (#o130 600.0 "X")
-    (#o131 600.0 "Y")
-    (#o132 600.0 "Z")
-    (#o133 600.0 "bracketleft")
-    (#o134 600.0 "backslash")
-    (#o135 600.0 "bracketright")
-    (#o136 600.0 "asciicircum")
-    (#o137 600.0 "underscore")
-    (#o140 600.0 "quoteleft")
-    (#o141 600.0 "a")
-    (#o142 600.0 "b")
-    (#o143 600.0 "c")
-    (#o144 600.0 "d")
-    (#o145 600.0 "e")
-    (#o146 600.0 "f")
-    (#o147 600.0 "g")
-    (#o150 600.0 "h")
-    (#o151 600.0 "i")
-    (#o152 600.0 "j")
-    (#o153 600.0 "k")
-    (#o154 600.0 "l")
-    (#o155 600.0 "m")
-    (#o156 600.0 "n")
-    (#o157 600.0 "o")
-    (#o160 600.0 "p")
-    (#o161 600.0 "q")
-    (#o162 600.0 "r")
-    (#o163 600.0 "s")
-    (#o164 600.0 "t")
-    (#o165 600.0 "u")
-    (#o166 600.0 "v")
-    (#o167 600.0 "w")
-    (#o170 600.0 "x")
-    (#o171 600.0 "y")
-    (#o172 600.0 "z")
-    (#o173 600.0 "braceleft")
-    (#o174 600.0 "bar")
-    (#o175 600.0 "braceright")
-    (#o176 600.0 "asciitilde")
-    (#o241 600.0 "exclamdown")
-    (#o242 600.0 "cent")
-    (#o243 600.0 "sterling")
-    (#o244 600.0 "fraction")
-    (#o245 600.0 "yen")
-    (#o246 600.0 "florin")
-    (#o247 600.0 "section")
-    (#o250 600.0 "currency")
-    (#o251 600.0 "quotesingle")
-    (#o252 600.0 "quotedblleft")
-    (#o253 600.0 "guillemotleft")
-    (#o254 600.0 "guilsinglleft")
-    (#o255 600.0 "guilsinglright")
-    (#o256 600.0 "fi")
-    (#o257 600.0 "fl")
-    (#o261 600.0 "endash")
-    (#o262 600.0 "dagger")
-    (#o263 600.0 "daggerdbl")
-    (#o264 600.0 "periodcentered")
-    (#o266 600.0 "paragraph")
-    (#o267 600.0 "bullet")
-    (#o270 600.0 "quotesinglbase")
-    (#o271 600.0 "quotedblbase")
-    (#o272 600.0 "quotedblright")
-    (#o273 600.0 "guillemotright")
-    (#o274 600.0 "ellipsis")
-    (#o275 600.0 "perthousand")
-    (#o277 600.0 "questiondown")
-    (#o301 600.0 "grave")
-    (#o302 600.0 "acute")
-    (#o303 600.0 "circumflex")
-    (#o304 600.0 "tilde")
-    (#o305 600.0 "macron")
-    (#o306 600.0 "breve")
-    (#o307 600.0 "dotaccent")
-    (#o310 600.0 "dieresis")
-    (#o312 600.0 "ring")
-    (#o313 600.0 "cedilla")
-    (#o315 600.0 "hungarumlaut")
-    (#o316 600.0 "ogonek")
-    (#o317 600.0 "caron")
-    (#o320 600.0 "emdash")
-    (#o341 600.0 "AE")
-    (#o343 600.0 "ordfeminine")
-    (#o350 600.0 "Lslash")
-    (#o351 600.0 "Oslash")
-    (#o352 600.0 "OE")
-    (#o353 600.0 "ordmasculine")
-    (#o361 600.0 "ae")
-    (#o365 600.0 "dotlessi")
-    (#o370 600.0 "lslash")
-    (#o371 600.0 "oslash")
-    (#o372 600.0 "oe")
-    (#o373 600.0 "germandbls")
-    ))
-
-(setup-laserwriter-metrics
-  '(("Courier-Oblique" 1000 (0 -251 600 700))
-    (#o040 600.0 "space")
-    (#o041 600.0 "exclam")
-    (#o042 600.0 "quotedbl")
-    (#o043 600.0 "numbersign")
-    (#o044 600.0 "dollar")
-    (#o045 600.0 "percent")
-    (#o046 600.0 "ampersand")
-    (#o047 600.0 "quoteright")
-    (#o050 600.0 "parenleft")
-    (#o051 600.0 "parenright")
-    (#o052 600.0 "asterisk")
-    (#o053 600.0 "plus")
-    (#o054 600.0 "comma")
-    (#o055 600.0 "hyphen")
-    (#o056 600.0 "period")
-    (#o057 600.0 "slash")
-    (#o060 600.0 "zero")
-    (#o061 600.0 "one")
-    (#o062 600.0 "two")
-    (#o063 600.0 "three")
-    (#o064 600.0 "four")
-    (#o065 600.0 "five")
-    (#o066 600.0 "six")
-    (#o067 600.0 "seven")
-    (#o070 600.0 "eight")
-    (#o071 600.0 "nine")
-    (#o072 600.0 "colon")
-    (#o073 600.0 "semicolon")
-    (#o074 600.0 "less")
-    (#o075 600.0 "equal")
-    (#o076 600.0 "greater")
-    (#o077 600.0 "question")
-    (#o100 600.0 "at")
-    (#o101 600.0 "A")
-    (#o102 600.0 "B")
-    (#o103 600.0 "C")
-    (#o104 600.0 "D")
-    (#o105 600.0 "E")
-    (#o106 600.0 "F")
-    (#o107 600.0 "G")
-    (#o110 600.0 "H")
-    (#o111 600.0 "I")
-    (#o112 600.0 "J")
-    (#o113 600.0 "K")
-    (#o114 600.0 "L")
-    (#o115 600.0 "M")
-    (#o116 600.0 "N")
-    (#o117 600.0 "O")
-    (#o120 600.0 "P")
-    (#o121 600.0 "Q")
-    (#o122 600.0 "R")
-    (#o123 600.0 "S")
-    (#o124 600.0 "T")
-    (#o125 600.0 "U")
-    (#o126 600.0 "V")
-    (#o127 600.0 "W")
-    (#o130 600.0 "X")
-    (#o131 600.0 "Y")
-    (#o132 600.0 "Z")
-    (#o133 600.0 "bracketleft")
-    (#o134 600.0 "backslash")
-    (#o135 600.0 "bracketright")
-    (#o136 600.0 "asciicircum")
-    (#o137 600.0 "underscore")
-    (#o140 600.0 "quoteleft")
-    (#o141 600.0 "a")
-    (#o142 600.0 "b")
-    (#o143 600.0 "c")
-    (#o144 600.0 "d")
-    (#o145 600.0 "e")
-    (#o146 600.0 "f")
-    (#o147 600.0 "g")
-    (#o150 600.0 "h")
-    (#o151 600.0 "i")
-    (#o152 600.0 "j")
-    (#o153 600.0 "k")
-    (#o154 600.0 "l")
-    (#o155 600.0 "m")
-    (#o156 600.0 "n")
-    (#o157 600.0 "o")
-    (#o160 600.0 "p")
-    (#o161 600.0 "q")
-    (#o162 600.0 "r")
-    (#o163 600.0 "s")
-    (#o164 600.0 "t")
-    (#o165 600.0 "u")
-    (#o166 600.0 "v")
-    (#o167 600.0 "w")
-    (#o170 600.0 "x")
-    (#o171 600.0 "y")
-    (#o172 600.0 "z")
-    (#o173 600.0 "braceleft")
-    (#o174 600.0 "bar")
-    (#o175 600.0 "braceright")
-    (#o176 600.0 "asciitilde")
-    (#o241 600.0 "exclamdown")
-    (#o242 600.0 "cent")
-    (#o243 600.0 "sterling")
-    (#o244 600.0 "fraction")
-    (#o245 600.0 "yen")
-    (#o246 600.0 "florin")
-    (#o247 600.0 "section")
-    (#o250 600.0 "currency")
-    (#o251 600.0 "quotesingle")
-    (#o252 600.0 "quotedblleft")
-    (#o253 600.0 "guillemotleft")
-    (#o254 600.0 "guilsinglleft")
-    (#o255 600.0 "guilsinglright")
-    (#o256 600.0 "fi")
-    (#o257 600.0 "fl")
-    (#o261 600.0 "endash")
-    (#o262 600.0 "dagger")
-    (#o263 600.0 "daggerdbl")
-    (#o264 600.0 "periodcentered")
-    (#o266 600.0 "paragraph")
-    (#o267 600.0 "bullet")
-    (#o270 600.0 "quotesinglbase")
-    (#o271 600.0 "quotedblbase")
-    (#o272 600.0 "quotedblright")
-    (#o273 600.0 "guillemotright")
-    (#o274 600.0 "ellipsis")
-    (#o275 600.0 "perthousand")
-    (#o277 600.0 "questiondown")
-    (#o301 600.0 "grave")
-    (#o302 600.0 "acute")
-    (#o303 600.0 "circumflex")
-    (#o304 600.0 "tilde")
-    (#o305 600.0 "macron")
-    (#o306 600.0 "breve")
-    (#o307 600.0 "dotaccent")
-    (#o310 600.0 "dieresis")
-    (#o312 600.0 "ring")
-    (#o313 600.0 "cedilla")
-    (#o315 600.0 "hungarumlaut")
-    (#o316 600.0 "ogonek")
-    (#o317 600.0 "caron")
-    (#o320 600.0 "emdash")
-    (#o341 600.0 "AE")
-    (#o343 600.0 "ordfeminine")
-    (#o350 600.0 "Lslash")
-    (#o351 600.0 "Oslash")
-    (#o352 600.0 "OE")
-    (#o353 600.0 "ordmasculine")
-    (#o361 600.0 "ae")
-    (#o365 600.0 "dotlessi")
-    (#o370 600.0 "lslash")
-    (#o371 600.0 "oslash")
-    (#o372 600.0 "oe")
-    (#o373 600.0 "germandbls")
-    ))
-
-(setup-laserwriter-metrics
-  '(("Courier-Bold" 1000 (0 -251 600 700))
-    (#o040 600.0 "space")
-    (#o041 600.0 "exclam")
-    (#o042 600.0 "quotedbl")
-    (#o043 600.0 "numbersign")
-    (#o044 600.0 "dollar")
-    (#o045 600.0 "percent")
-    (#o046 600.0 "ampersand")
-    (#o047 600.0 "quoteright")
-    (#o050 600.0 "parenleft")
-    (#o051 600.0 "parenright")
-    (#o052 600.0 "asterisk")
-    (#o053 600.0 "plus")
-    (#o054 600.0 "comma")
-    (#o055 600.0 "hyphen")
-    (#o056 600.0 "period")
-    (#o057 600.0 "slash")
-    (#o060 600.0 "zero")
-    (#o061 600.0 "one")
-    (#o062 600.0 "two")
-    (#o063 600.0 "three")
-    (#o064 600.0 "four")
-    (#o065 600.0 "five")
-    (#o066 600.0 "six")
-    (#o067 600.0 "seven")
-    (#o070 600.0 "eight")
-    (#o071 600.0 "nine")
-    (#o072 600.0 "colon")
-    (#o073 600.0 "semicolon")
-    (#o074 600.0 "less")
-    (#o075 600.0 "equal")
-    (#o076 600.0 "greater")
-    (#o077 600.0 "question")
-    (#o100 600.0 "at")
-    (#o101 600.0 "A")
-    (#o102 600.0 "B")
-    (#o103 600.0 "C")
-    (#o104 600.0 "D")
-    (#o105 600.0 "E")
-    (#o106 600.0 "F")
-    (#o107 600.0 "G")
-    (#o110 600.0 "H")
-    (#o111 600.0 "I")
-    (#o112 600.0 "J")
-    (#o113 600.0 "K")
-    (#o114 600.0 "L")
-    (#o115 600.0 "M")
-    (#o116 600.0 "N")
-    (#o117 600.0 "O")
-    (#o120 600.0 "P")
-    (#o121 600.0 "Q")
-    (#o122 600.0 "R")
-    (#o123 600.0 "S")
-    (#o124 600.0 "T")
-    (#o125 600.0 "U")
-    (#o126 600.0 "V")
-    (#o127 600.0 "W")
-    (#o130 600.0 "X")
-    (#o131 600.0 "Y")
-    (#o132 600.0 "Z")
-    (#o133 600.0 "bracketleft")
-    (#o134 600.0 "backslash")
-    (#o135 600.0 "bracketright")
-    (#o136 600.0 "asciicircum")
-    (#o137 600.0 "underscore")
-    (#o140 600.0 "quoteleft")
-    (#o141 600.0 "a")
-    (#o142 600.0 "b")
-    (#o143 600.0 "c")
-    (#o144 600.0 "d")
-    (#o145 600.0 "e")
-    (#o146 600.0 "f")
-    (#o147 600.0 "g")
-    (#o150 600.0 "h")
-    (#o151 600.0 "i")
-    (#o152 600.0 "j")
-    (#o153 600.0 "k")
-    (#o154 600.0 "l")
-    (#o155 600.0 "m")
-    (#o156 600.0 "n")
-    (#o157 600.0 "o")
-    (#o160 600.0 "p")
-    (#o161 600.0 "q")
-    (#o162 600.0 "r")
-    (#o163 600.0 "s")
-    (#o164 600.0 "t")
-    (#o165 600.0 "u")
-    (#o166 600.0 "v")
-    (#o167 600.0 "w")
-    (#o170 600.0 "x")
-    (#o171 600.0 "y")
-    (#o172 600.0 "z")
-    (#o173 600.0 "braceleft")
-    (#o174 600.0 "bar")
-    (#o175 600.0 "braceright")
-    (#o176 600.0 "asciitilde")
-    (#o241 600.0 "exclamdown")
-    (#o242 600.0 "cent")
-    (#o243 600.0 "sterling")
-    (#o244 600.0 "fraction")
-    (#o245 600.0 "yen")
-    (#o246 600.0 "florin")
-    (#o247 600.0 "section")
-    (#o250 600.0 "currency")
-    (#o251 600.0 "quotesingle")
-    (#o252 600.0 "quotedblleft")
-    (#o253 600.0 "guillemotleft")
-    (#o254 600.0 "guilsinglleft")
-    (#o255 600.0 "guilsinglright")
-    (#o256 600.0 "fi")
-    (#o257 600.0 "fl")
-    (#o261 600.0 "endash")
-    (#o262 600.0 "dagger")
-    (#o263 600.0 "daggerdbl")
-    (#o264 600.0 "periodcentered")
-    (#o266 600.0 "paragraph")
-    (#o267 600.0 "bullet")
-    (#o270 600.0 "quotesinglbase")
-    (#o271 600.0 "quotedblbase")
-    (#o272 600.0 "quotedblright")
-    (#o273 600.0 "guillemotright")
-    (#o274 600.0 "ellipsis")
-    (#o275 600.0 "perthousand")
-    (#o277 600.0 "questiondown")
-    (#o301 600.0 "grave")
-    (#o302 600.0 "acute")
-    (#o303 600.0 "circumflex")
-    (#o304 600.0 "tilde")
-    (#o305 600.0 "macron")
-    (#o306 600.0 "breve")
-    (#o307 600.0 "dotaccent")
-    (#o310 600.0 "dieresis")
-    (#o312 600.0 "ring")
-    (#o313 600.0 "cedilla")
-    (#o315 600.0 "hungarumlaut")
-    (#o316 600.0 "ogonek")
-    (#o317 600.0 "caron")
-    (#o320 600.0 "emdash")
-    (#o341 600.0 "AE")
-    (#o343 600.0 "ordfeminine")
-    (#o350 600.0 "Lslash")
-    (#o351 600.0 "Oslash")
-    (#o352 600.0 "OE")
-    (#o353 600.0 "ordmasculine")
-    (#o361 600.0 "ae")
-    (#o365 600.0 "dotlessi")
-    (#o370 600.0 "lslash")
-    (#o371 600.0 "oslash")
-    (#o372 600.0 "oe")
-    (#o373 600.0 "germandbls")
-    ))
-
-(setup-laserwriter-metrics
-  '(("Courier-BoldOblique" 1000 (0 -251 600 700))
-    (#o040 600.0 "space")
-    (#o041 600.0 "exclam")
-    (#o042 600.0 "quotedbl")
-    (#o043 600.0 "numbersign")
-    (#o044 600.0 "dollar")
-    (#o045 600.0 "percent")
-    (#o046 600.0 "ampersand")
-    (#o047 600.0 "quoteright")
-    (#o050 600.0 "parenleft")
-    (#o051 600.0 "parenright")
-    (#o052 600.0 "asterisk")
-    (#o053 600.0 "plus")
-    (#o054 600.0 "comma")
-    (#o055 600.0 "hyphen")
-    (#o056 600.0 "period")
-    (#o057 600.0 "slash")
-    (#o060 600.0 "zero")
-    (#o061 600.0 "one")
-    (#o062 600.0 "two")
-    (#o063 600.0 "three")
-    (#o064 600.0 "four")
-    (#o065 600.0 "five")
-    (#o066 600.0 "six")
-    (#o067 600.0 "seven")
-    (#o070 600.0 "eight")
-    (#o071 600.0 "nine")
-    (#o072 600.0 "colon")
-    (#o073 600.0 "semicolon")
-    (#o074 600.0 "less")
-    (#o075 600.0 "equal")
-    (#o076 600.0 "greater")
-    (#o077 600.0 "question")
-    (#o100 600.0 "at")
-    (#o101 600.0 "A")
-    (#o102 600.0 "B")
-    (#o103 600.0 "C")
-    (#o104 600.0 "D")
-    (#o105 600.0 "E")
-    (#o106 600.0 "F")
-    (#o107 600.0 "G")
-    (#o110 600.0 "H")
-    (#o111 600.0 "I")
-    (#o112 600.0 "J")
-    (#o113 600.0 "K")
-    (#o114 600.0 "L")
-    (#o115 600.0 "M")
-    (#o116 600.0 "N")
-    (#o117 600.0 "O")
-    (#o120 600.0 "P")
-    (#o121 600.0 "Q")
-    (#o122 600.0 "R")
-    (#o123 600.0 "S")
-    (#o124 600.0 "T")
-    (#o125 600.0 "U")
-    (#o126 600.0 "V")
-    (#o127 600.0 "W")
-    (#o130 600.0 "X")
-    (#o131 600.0 "Y")
-    (#o132 600.0 "Z")
-    (#o133 600.0 "bracketleft")
-    (#o134 600.0 "backslash")
-    (#o135 600.0 "bracketright")
-    (#o136 600.0 "asciicircum")
-    (#o137 600.0 "underscore")
-    (#o140 600.0 "quoteleft")
-    (#o141 600.0 "a")
-    (#o142 600.0 "b")
-    (#o143 600.0 "c")
-    (#o144 600.0 "d")
-    (#o145 600.0 "e")
-    (#o146 600.0 "f")
-    (#o147 600.0 "g")
-    (#o150 600.0 "h")
-    (#o151 600.0 "i")
-    (#o152 600.0 "j")
-    (#o153 600.0 "k")
-    (#o154 600.0 "l")
-    (#o155 600.0 "m")
-    (#o156 600.0 "n")
-    (#o157 600.0 "o")
-    (#o160 600.0 "p")
-    (#o161 600.0 "q")
-    (#o162 600.0 "r")
-    (#o163 600.0 "s")
-    (#o164 600.0 "t")
-    (#o165 600.0 "u")
-    (#o166 600.0 "v")
-    (#o167 600.0 "w")
-    (#o170 600.0 "x")
-    (#o171 600.0 "y")
-    (#o172 600.0 "z")
-    (#o173 600.0 "braceleft")
-    (#o174 600.0 "bar")
-    (#o175 600.0 "braceright")
-    (#o176 600.0 "asciitilde")
-    (#o241 600.0 "exclamdown")
-    (#o242 600.0 "cent")
-    (#o243 600.0 "sterling")
-    (#o244 600.0 "fraction")
-    (#o245 600.0 "yen")
-    (#o246 600.0 "florin")
-    (#o247 600.0 "section")
-    (#o250 600.0 "currency")
-    (#o251 600.0 "quotesingle")
-    (#o252 600.0 "quotedblleft")
-    (#o253 600.0 "guillemotleft")
-    (#o254 600.0 "guilsinglleft")
-    (#o255 600.0 "guilsinglright")
-    (#o256 600.0 "fi")
-    (#o257 600.0 "fl")
-    (#o261 600.0 "endash")
-    (#o262 600.0 "dagger")
-    (#o263 600.0 "daggerdbl")
-    (#o264 600.0 "periodcentered")
-    (#o266 600.0 "paragraph")
-    (#o267 600.0 "bullet")
-    (#o270 600.0 "quotesinglbase")
-    (#o271 600.0 "quotedblbase")
-    (#o272 600.0 "quotedblright")
-    (#o273 600.0 "guillemotright")
-    (#o274 600.0 "ellipsis")
-    (#o275 600.0 "perthousand")
-    (#o277 600.0 "questiondown")
-    (#o301 600.0 "grave")
-    (#o302 600.0 "acute")
-    (#o303 600.0 "circumflex")
-    (#o304 600.0 "tilde")
-    (#o305 600.0 "macron")
-    (#o306 600.0 "breve")
-    (#o307 600.0 "dotaccent")
-    (#o310 600.0 "dieresis")
-    (#o312 600.0 "ring")
-    (#o313 600.0 "cedilla")
-    (#o315 600.0 "hungarumlaut")
-    (#o316 600.0 "ogonek")
-    (#o317 600.0 "caron")
-    (#o320 600.0 "emdash")
-    (#o341 600.0 "AE")
-    (#o343 600.0 "ordfeminine")
-    (#o350 600.0 "Lslash")
-    (#o351 600.0 "Oslash")
-    (#o352 600.0 "OE")
-    (#o353 600.0 "ordmasculine")
-    (#o361 600.0 "ae")
-    (#o365 600.0 "dotlessi")
-    (#o370 600.0 "lslash")
-    (#o371 600.0 "oslash")
-    (#o372 600.0 "oe")
-    (#o373 600.0 "germandbls")
-    ))
-
-
-(setup-laserwriter-metrics
-  '(("Symbol" 1000 (-180 -293 1090 1010))
-    (#o040 250.0 "space")
-    (#o041 333.0 "exclam")
-    (#o042 713.0 "universal")
-    (#o043 500.0 "numbersign")
-    (#o044 549.0 "existential")
-    (#o045 833.0 "percent")
-    (#o046 778.0 "ampersand")
-    (#o047 439.0 "suchthat")
-    (#o050 333.0 "parenleft")
-    (#o051 333.0 "parenright")
-    (#o052 500.0 "asteriskmath")
-    (#o053 549.0 "plus")
-    (#o054 250.0 "comma")
-    (#o055 549.0 "minus")
-    (#o056 250.0 "period")
-    (#o057 278.0 "slash")
-    (#o060 500.0 "zero")
-    (#o061 500.0 "one")
-    (#o062 500.0 "two")
-    (#o063 500.0 "three")
-    (#o064 500.0 "four")
-    (#o065 500.0 "five")
-    (#o066 500.0 "six")
-    (#o067 500.0 "seven")
-    (#o070 500.0 "eight")
-    (#o071 500.0 "nine")
-    (#o072 278.0 "colon")
-    (#o073 278.0 "semicolon")
-    (#o074 549.0 "less")
-    (#o075 549.0 "equal")
-    (#o076 549.0 "greater")
-    (#o077 444.0 "question")
-    (#o100 549.0 "congruent")
-    (#o101 696.0 "Alpha")
-    (#o102 660.0 "Beta")
-    (#o103 710.0 "Chi")
-    (#o104 612.0 "Delta")
-    (#o105 652.0 "Epsilon")
-    (#o106 763.0 "Phi")
-    (#o107 603.0 "Gamma")
-    (#o110 765.0 "Eta")
-    (#o111 351.0 "Iota")
-    (#o112 631.0 "theta1")
-    (#o113 724.0 "Kappa")
-    (#o114 686.0 "Lambda")
-    (#o115 918.0 "Mu")
-    (#o116 739.0 "Nu")
-    (#o117 750.0 "Omicron")
-    (#o120 768.0 "Pi")
-    (#o121 741.0 "Theta")
-    (#o122 580.0 "Rho")
-    (#o123 592.0 "Sigma")
-    (#o124 632.0 "Tau")
-    (#o125 690.0 "Upsilon")
-    (#o126 439.0 "sigma1")
-    (#o127 768.0 "Omega")
-    (#o130 645.0 "Xi")
-    (#o131 795.0 "Psi")
-    (#o132 650.0 "Zeta")
-    (#o133 333.0 "bracketleft")
-    (#o134 863.0 "therefore")
-    (#o135 333.0 "bracketright")
-    (#o136 658.0 "perpendicular")
-    (#o137 500.0 "underscore")
-    (#o140 500.0 "radicalex")
-    (#o141 631.0 "alpha")
-    (#o142 549.0 "beta")
-    (#o143 549.0 "chi")
-    (#o144 494.0 "delta")
-    (#o145 439.0 "epsilon")
-    (#o146 521.0 "phi")
-    (#o147 411.0 "gamma")
-    (#o150 603.0 "eta")
-    (#o151 329.0 "iota")
-    (#o152 603.0 "phi1")
-    (#o153 549.0 "kappa")
-    (#o154 549.0 "lambda")
-    (#o155 576.0 "mu")
-    (#o156 521.0 "nu")
-    (#o157 549.0 "omicron")
-    (#o160 549.0 "pi")
-    (#o161 521.0 "theta")
-    (#o162 549.0 "rho")
-    (#o163 603.0 "sigma")
-    (#o164 439.0 "tau")
-    (#o165 576.0 "upsilon")
-    (#o166 713.0 "omega1")
-    (#o167 686.0 "omega")
-    (#o170 493.0 "xi")
-    (#o171 686.0 "psi")
-    (#o172 494.0 "zeta")
-    (#o173 480.0 "braceleft")
-    (#o174 200.0 "bar")
-    (#o175 480.0 "braceright")
-    (#o176 549.0 "similar")
-    (#o241 620.0 "Upsilon1")
-    (#o242 247.0 "minute")
-    (#o243 549.0 "lessequal")
-    (#o244 167.0 "fraction")
-    (#o245 713.0 "infinity")
-    (#o246 500.0 "florin")
-    (#o247 753.0 "club")
-    (#o250 753.0 "diamond")
-    (#o251 753.0 "heart")
-    (#o252 753.0 "spade")
-    (#o253 1042.0 "arrowboth")
-    (#o254 987.0 "arrowleft")
-    (#o255 603.0 "arrowup")
-    (#o256 987.0 "arrowright")
-    (#o257 603.0 "arrowdown")
-    (#o260 400.0 "degree")
-    (#o261 549.0 "plusminus")
-    (#o262 411.0 "second")
-    (#o263 549.0 "greaterequal")
-    (#o264 549.0 "multiply")
-    (#o265 713.0 "proportional")
-    (#o266 494.0 "partialdiff")
-    (#o267 460.0 "bullet")
-    (#o270 549.0 "divide")
-    (#o271 549.0 "notequal")
-    (#o272 549.0 "equivalence")
-    (#o273 549.0 "approxequal")
-    (#o274 1000.0 "ellipsis")
-    (#o275 603.0 "arrowvertex")
-    (#o276 1000.0 "arrowhorizex")
-    (#o277 658.0 "carriagereturn")
-    (#o300 823.0 "aleph")
-    (#o301 686.0 "Ifraktur")
-    (#o302 795.0 "Rfraktur")
-    (#o303 987.0 "weierstrass")
-    (#o304 768.0 "circlemultiply")
-    (#o305 768.0 "circleplus")
-    (#o306 823.0 "emptyset")
-    (#o307 768.0 "intersection")
-    (#o310 768.0 "union")
-    (#o311 713.0 "propersuperset")
-    (#o312 713.0 "reflexsuperset")
-    (#o313 713.0 "notsubset")
-    (#o314 713.0 "propersubset")
-    (#o315 713.0 "reflexsubset")
-    (#o316 713.0 "element")
-    (#o317 713.0 "notelement")
-    (#o320 768.0 "angle")
-    (#o321 713.0 "gradient")
-    (#o322 790.0 "registerserif")
-    (#o323 790.0 "copyrightserif")
-    (#o324 890.0 "trademarkserif")
-    (#o325 823.0 "product")
-    (#o326 549.0 "radical")
-    (#o327 250.0 "dotmath")
-    (#o330 713.0 "logicalnot")
-    (#o331 603.0 "logicaland")
-    (#o332 603.0 "logicalor")
-    (#o333 1042.0 "arrowdblboth")
-    (#o334 987.0 "arrowdblleft")
-    (#o335 603.0 "arrowdblup")
-    (#o336 987.0 "arrowdblright")
-    (#o337 603.0 "arrowdbldown")
-    (#o340 494.0 "lozenge")
-    (#o341 329.0 "angleleft")
-    (#o342 790.0 "registersans")
-    (#o343 790.0 "copyrightsans")
-    (#o344 786.0 "trademarksans")
-    (#o345 713.0 "summation")
-    (#o346 384.0 "parenlefttp")
-    (#o347 384.0 "parenleftex")
-    (#o350 384.0 "parenleftbt")
-    (#o351 384.0 "bracketlefttp")
-    (#o352 384.0 "bracketleftex")
-    (#o353 384.0 "bracketleftbt")
-    (#o354 494.0 "bracelefttp")
-    (#o355 494.0 "braceleftmid")
-    (#o356 494.0 "braceleftbt")
-    (#o357 494.0 "braceex")
-    (#o360 790.0 "apple")
-    (#o361 329.0 "angleright")
-    (#o362 274.0 "integral")
-    (#o363 686.0 "integraltp")
-    (#o364 686.0 "integralex")
-    (#o365 686.0 "integralbt")
-    (#o366 384.0 "parenrighttp")
-    (#o367 384.0 "parenrightex")
-    (#o370 384.0 "parenrightbt")
-    (#o371 384.0 "bracketrighttp")
-    (#o372 384.0 "bracketrightex")
-    (#o373 384.0 "bracketrightbt")
-    (#o374 494.0 "bracerighttp")
-    (#o375 494.0 "bracerightmid")
-    (#o376 494.0 "bracerightbt")
-    ))
-
-
-;;; If you suspect the numbers above, you can run this postscript program
-;;; (probably by copying it to a file and printing that file) and compare
-;;; the numbers that get printed with those of the corresponding fonts and
-;;; characters above.  Remember that the numbers above are scaled to be
-;;; 1000 times as big (second element of the car of the first argument of
-;;; SETUP-LASERWRITER-METRICS is the scale factor) as the widths this
-;;; program will print.
-
-#||
-%!
-% Postscript program to print out the widths of a representative set of 
-% characters in each of several fonts.
-
-% By Mark Nahabedian, 1/8/90, Symbolics Inc.
-
-% Sample set of characters toprint out widths for:
-/TheseChars (1AaMN.ilI!) def
-
-% Sample sets of fonts to print out widths of characters for:
-/TheseFonts [ /Helvetica-BoldOblique /Times-Roman ] def
-/CourierFonts [ /Courier /Courier-Bold /Courier-Oblique /Courier-BoldOblique ] def
-
-% Text 'cursor' positioning stuff:
-/StartPage { /y 700 def } def
-/NextLine { /y y 20 sub def } def
-/Space { (  ) show } def
-/Tab0 { 30 y moveto } def
-/Tab1 { 178 y moveto } def
-/Tab2 { 230 y moveto } def
-
-/stringbuf 100 string def
-
-% single character string interval
-/DoChar {
-	Tab1 scaled setfont
-	dup show
-	    Tab2 unscaled setfont
-	    stringwidth pop stringbuf cvs
-	    scaled setfont show NextLine
-} def
-
-% fontname
-/FontSetup {
-	findfont dup /unscaled exch def
-		     /scaled exch 10 scalefont def
-} def
-
-% X Y
-/ShowXandY {
-	stringbuf cvs show Space
-	stringbuf cvs show
-} def
-
-% fontdict
-/ShowFontBBox {
-	([ ) show
-	dup /FontMatrix get dup  3 -1 roll	% stack:  fontdict, FontMatrix, FontMatrix
-	/FontBBox get 	dup 0 get exch
-			dup 1 get exch
-	% stack:  BBox, BBox[1], BBox[0], FontMatrix, FontMatrix
-				4 1 roll  3 -1 roll
-				transform exch ShowXandY Space
-			dup 2 get exch
-			    3 get
-	% stack:  BBox[3], BBox[2], FontMatrix
-				3 -1 roll
-				transform exch ShowXandY Space
-	( ]) show
-} def
-
-% fontname
-/DoFont { 
-	dup FontSetup
-	    scaled setfont Tab0
-	    stringbuf cvs show Tab1
-	unscaled ShowFontBBox NextLine
-	0 1 TheseChars length 1 sub { TheseChars exch 1 getinterval DoChar } for
-} def
-
-% I tried doing this with forall but it didn't work.
-
-StartPage
-0 1 TheseFonts length 1 sub { TheseFonts exch get DoFont } for
-showpage
-
-StartPage
-0 1 CourierFonts length 1 sub { CourierFonts exch get DoFont } for
-showpage
-
-||#
+"Copyright (c) 1993 Franz, Inc.  All rights reserved."
+
+;;; New revised metrics which are generated from AFM files.
+
+(progn (setup-laserwriter-metrics
+         '(("Times-Roman" 1000 (-170 -223 1024 896)) (32 223 "space") (33 298 "exclam")
+           (34 365 "quotedbl") (35 447 "numbersign") (36 447 "dollar") (37 744 "percent")
+           (38 695 "ampersand") (39 298 "quoteright") (40 298 "parenleft") (41 298 "parenright")
+           (42 447 "asterisk") (43 504 "plus") (44 223 "comma") (45 298 "hyphen") (46 223 "period")
+           (47 248 "slash") (48 447 "zero") (49 447 "one") (50 447 "two") (51 447 "three")
+           (52 447 "four") (53 447 "five") (54 447 "six") (55 447 "seven") (56 447 "eight")
+           (57 447 "nine") (58 248 "colon") (59 248 "semicolon") (60 504 "less") (61 504 "equal")
+           (62 504 "greater") (63 397 "question") (64 823 "at") (65 645 "A") (66 596 "B") (67 596 "C")
+           (68 645 "D") (69 546 "E") (70 497 "F") (71 645 "G") (72 645 "H") (73 298 "I") (74 348 "J")
+           (75 645 "K") (76 546 "L") (77 794 "M") (78 645 "N") (79 645 "O") (80 497 "P") (81 645 "Q")
+           (82 596 "R") (83 497 "S") (84 546 "T") (85 645 "U") (86 645 "V") (87 844 "W") (88 645 "X")
+           (89 645 "Y") (90 546 "Z") (91 298 "bracketleft") (92 248 "backslash")
+           (93 298 "bracketright") (94 419 "asciicircum") (95 447 "underscore") (96 298 "quoteleft")
+           (97 397 "a") (98 447 "b") (99 397 "c") (100 447 "d") (101 397 "e") (102 298 "f")
+           (103 447 "g") (104 447 "h") (105 248 "i") (106 248 "j") (107 447 "k") (108 248 "l")
+           (109 695 "m") (110 447 "n") (111 447 "o") (112 447 "p") (113 447 "q") (114 298 "r")
+           (115 348 "s") (116 248 "t") (117 447 "u") (118 447 "v") (119 645 "w") (120 447 "x")
+           (121 447 "y") (122 397 "z") (123 429 "braceleft") (124 179 "bar") (125 429 "braceright")
+           (126 483 "asciitilde") (161 298 "exclamdown") (162 447 "cent") (163 447 "sterling")
+           (164 149 "fraction") (165 447 "yen") (166 447 "florin") (167 447 "section")
+           (168 447 "currency") (169 161 "quotesingle") (170 397 "quotedblleft")
+           (171 447 "guillemotleft") (172 298 "guilsinglleft") (173 298 "guilsinglright")
+           (174 497 "fi") (175 497 "fl") (177 447 "endash") (178 447 "dagger") (179 447 "daggerdbl")
+           (180 223 "periodcentered") (182 405 "paragraph") (183 313 "bullet")
+           (184 298 "quotesinglbase") (185 397 "quotedblbase") (186 397 "quotedblright")
+           (187 447 "guillemotright") (188 894 "ellipsis") (189 894 "perthousand")
+           (191 397 "questiondown") (193 298 "grave") (194 298 "acute") (195 298 "circumflex")
+           (196 298 "tilde") (197 298 "macron") (198 298 "breve") (199 298 "dotaccent")
+           (200 298 "dieresis") (202 298 "ring") (203 298 "cedilla") (205 298 "hungarumlaut")
+           (206 298 "ogonek") (207 298 "caron") (208 894 "emdash") (225 794 "AE")
+           (227 247 "ordfeminine") (232 546 "Lslash") (233 645 "Oslash") (234 794 "OE")
+           (235 277 "ordmasculine") (241 596 "ae") (245 248 "dotlessi") (248 248 "lslash")
+           (249 447 "oslash") (250 645 "oe") (251 447 "germandbls")))
+       (setup-laserwriter-metrics
+         '(("Times-Italic" 1000 (-176 -252 990 930)) (32 212 "space") (33 282 "exclam")
+           (34 355 "quotedbl") (35 423 "numbersign") (36 423 "dollar") (37 705 "percent")
+           (38 658 "ampersand") (39 282 "quoteright") (40 282 "parenleft") (41 282 "parenright")
+           (42 423 "asterisk") (43 571 "plus") (44 212 "comma") (45 282 "hyphen") (46 212 "period")
+           (47 235 "slash") (48 423 "zero") (49 423 "one") (50 423 "two") (51 423 "three")
+           (52 423 "four") (53 423 "five") (54 423 "six") (55 423 "seven") (56 423 "eight")
+           (57 423 "nine") (58 282 "colon") (59 282 "semicolon") (60 571 "less") (61 571 "equal")
+           (62 571 "greater") (63 423 "question") (64 778 "at") (65 517 "A") (66 517 "B") (67 564 "C")
+           (68 611 "D") (69 517 "E") (70 517 "F") (71 611 "G") (72 611 "H") (73 282 "I") (74 376 "J")
+           (75 564 "K") (76 470 "L") (77 705 "M") (78 564 "N") (79 611 "O") (80 517 "P") (81 611 "Q")
+           (82 517 "R") (83 423 "S") (84 470 "T") (85 611 "U") (86 517 "V") (87 705 "W") (88 517 "X")
+           (89 470 "Y") (90 470 "Z") (91 329 "bracketleft") (92 235 "backslash")
+           (93 329 "bracketright") (94 357 "asciicircum") (95 423 "underscore") (96 282 "quoteleft")
+           (97 423 "a") (98 423 "b") (99 376 "c") (100 423 "d") (101 376 "e") (102 235 "f")
+           (103 423 "g") (104 423 "h") (105 235 "i") (106 235 "j") (107 376 "k") (108 235 "l")
+           (109 611 "m") (110 423 "n") (111 423 "o") (112 423 "p") (113 423 "q") (114 329 "r")
+           (115 329 "s") (116 235 "t") (117 423 "u") (118 376 "v") (119 564 "w") (120 376 "x")
+           (121 376 "y") (122 329 "z") (123 338 "braceleft") (124 233 "bar") (125 338 "braceright")
+           (126 458 "asciitilde") (161 329 "exclamdown") (162 423 "cent") (163 423 "sterling")
+           (164 141 "fraction") (165 423 "yen") (166 423 "florin") (167 423 "section")
+           (168 423 "currency") (169 181 "quotesingle") (170 470 "quotedblleft")
+           (171 423 "guillemotleft") (172 282 "guilsinglleft") (173 282 "guilsinglright")
+           (174 423 "fi") (175 423 "fl") (177 423 "endash") (178 423 "dagger") (179 423 "daggerdbl")
+           (180 212 "periodcentered") (182 442 "paragraph") (183 296 "bullet")
+           (184 282 "quotesinglbase") (185 470 "quotedblbase") (186 470 "quotedblright")
+           (187 423 "guillemotright") (188 752 "ellipsis") (189 846 "perthousand")
+           (191 423 "questiondown") (193 282 "grave") (194 282 "acute") (195 282 "circumflex")
+           (196 282 "tilde") (197 282 "macron") (198 282 "breve") (199 282 "dotaccent")
+           (200 282 "dieresis") (202 282 "ring") (203 282 "cedilla") (205 282 "hungarumlaut")
+           (206 282 "ogonek") (207 282 "caron") (208 752 "emdash") (225 752 "AE")
+           (227 234 "ordfeminine") (232 470 "Lslash") (233 611 "Oslash") (234 799 "OE")
+           (235 262 "ordmasculine") (241 564 "ae") (245 235 "dotlessi") (248 235 "lslash")
+           (249 423 "oslash") (250 564 "oe") (251 423 "germandbls")))
+       (setup-laserwriter-metrics
+         '(("Times-Bold" 1000 (-172 -256 1008 965)) (32 205 "space") (33 273 "exclam")
+           (34 455 "quotedbl") (35 410 "numbersign") (36 410 "dollar") (37 819 "percent")
+           (38 682 "ampersand") (39 273 "quoteright") (40 273 "parenleft") (41 273 "parenright")
+           (42 410 "asterisk") (43 467 "plus") (44 205 "comma") (45 273 "hyphen") (46 205 "period")
+           (47 228 "slash") (48 410 "zero") (49 410 "one") (50 410 "two") (51 410 "three")
+           (52 410 "four") (53 410 "five") (54 410 "six") (55 410 "seven") (56 410 "eight")
+           (57 410 "nine") (58 273 "colon") (59 273 "semicolon") (60 467 "less") (61 467 "equal")
+           (62 467 "greater") (63 410 "question") (64 762 "at") (65 591 "A") (66 546 "B") (67 591 "C")
+           (68 591 "D") (69 546 "E") (70 500 "F") (71 637 "G") (72 637 "H") (73 319 "I") (74 410 "J")
+           (75 637 "K") (76 546 "L") (77 773 "M") (78 591 "N") (79 637 "O") (80 500 "P") (81 637 "Q")
+           (82 591 "R") (83 455 "S") (84 546 "T") (85 591 "U") (86 591 "V") (87 819 "W") (88 591 "X")
+           (89 591 "Y") (90 546 "Z") (91 273 "bracketleft") (92 228 "backslash")
+           (93 273 "bracketright") (94 476 "asciicircum") (95 410 "underscore") (96 273 "quoteleft")
+           (97 410 "a") (98 455 "b") (99 364 "c") (100 455 "d") (101 364 "e") (102 273 "f")
+           (103 410 "g") (104 455 "h") (105 228 "i") (106 273 "j") (107 455 "k") (108 228 "l")
+           (109 682 "m") (110 455 "n") (111 410 "o") (112 455 "p") (113 455 "q") (114 364 "r")
+           (115 319 "s") (116 273 "t") (117 455 "u") (118 410 "v") (119 591 "w") (120 410 "x")
+           (121 410 "y") (122 364 "z") (123 323 "braceleft") (124 180 "bar") (125 323 "braceright")
+           (126 426 "asciitilde") (161 273 "exclamdown") (162 410 "cent") (163 410 "sterling")
+           (164 137 "fraction") (165 410 "yen") (166 410 "florin") (167 410 "section")
+           (168 410 "currency") (169 228 "quotesingle") (170 410 "quotedblleft")
+           (171 410 "guillemotleft") (172 273 "guilsinglleft") (173 273 "guilsinglright")
+           (174 455 "fi") (175 455 "fl") (177 410 "endash") (178 410 "dagger") (179 410 "daggerdbl")
+           (180 205 "periodcentered") (182 442 "paragraph") (183 287 "bullet")
+           (184 273 "quotesinglbase") (185 410 "quotedblbase") (186 410 "quotedblright")
+           (187 410 "guillemotright") (188 819 "ellipsis") (189 819 "perthousand")
+           (191 410 "questiondown") (193 273 "grave") (194 273 "acute") (195 273 "circumflex")
+           (196 273 "tilde") (197 273 "macron") (198 273 "breve") (199 273 "dotaccent")
+           (200 273 "dieresis") (202 273 "ring") (203 273 "cedilla") (205 273 "hungarumlaut")
+           (206 273 "ogonek") (207 273 "caron") (208 819 "emdash") (225 819 "AE")
+           (227 246 "ordfeminine") (232 546 "Lslash") (233 637 "Oslash") (234 819 "OE")
+           (235 270 "ordmasculine") (241 591 "ae") (245 228 "dotlessi") (248 228 "lslash")
+           (249 410 "oslash") (250 591 "oe") (251 455 "germandbls")))
+       (setup-laserwriter-metrics
+         '(("Times-BoldItalic" 1000 (-168 -232 1014 894)) (32 222 "space") (33 345 "exclam")
+           (34 493 "quotedbl") (35 444 "numbersign") (36 444 "dollar") (37 740 "percent")
+           (38 691 "ampersand") (39 296 "quoteright") (40 296 "parenleft") (41 296 "parenright")
+           (42 444 "asterisk") (43 506 "plus") (44 222 "comma") (45 296 "hyphen") (46 222 "period")
+           (47 247 "slash") (48 444 "zero") (49 444 "one") (50 444 "two") (51 444 "three")
+           (52 444 "four") (53 444 "five") (54 444 "six") (55 444 "seven") (56 444 "eight")
+           (57 444 "nine") (58 296 "colon") (59 296 "semicolon") (60 506 "less") (61 506 "equal")
+           (62 506 "greater") (63 444 "question") (64 739 "at") (65 592 "A") (66 592 "B") (67 592 "C")
+           (68 641 "D") (69 592 "E") (70 592 "F") (71 641 "G") (72 691 "H") (73 345 "I") (74 444 "J")
+           (75 592 "K") (76 543 "L") (77 790 "M") (78 641 "N") (79 641 "O") (80 543 "P") (81 641 "Q")
+           (82 592 "R") (83 494 "S") (84 543 "T") (85 641 "U") (86 592 "V") (87 790 "W") (88 592 "X")
+           (89 543 "Y") (90 543 "Z") (91 296 "bracketleft") (92 247 "backslash")
+           (93 296 "bracketright") (94 506 "asciicircum") (95 444 "underscore") (96 296 "quoteleft")
+           (97 444 "a") (98 444 "b") (99 394 "c") (100 444 "d") (101 394 "e") (102 296 "f")
+           (103 444 "g") (104 494 "h") (105 247 "i") (106 247 "j") (107 444 "k") (108 247 "l")
+           (109 691 "m") (110 494 "n") (111 444 "o") (112 444 "p") (113 444 "q") (114 345 "r")
+           (115 345 "s") (116 247 "t") (117 494 "u") (118 394 "v") (119 592 "w") (120 444 "x")
+           (121 394 "y") (122 345 "z") (123 309 "braceleft") (124 195 "bar") (125 309 "braceright")
+           (126 506 "asciitilde") (161 345 "exclamdown") (162 444 "cent") (163 444 "sterling")
+           (164 148 "fraction") (165 444 "yen") (166 444 "florin") (167 444 "section")
+           (168 444 "currency") (169 247 "quotesingle") (170 444 "quotedblleft")
+           (171 444 "guillemotleft") (172 296 "guilsinglleft") (173 296 "guilsinglright")
+           (174 494 "fi") (175 494 "fl") (177 444 "endash") (178 444 "dagger") (179 444 "daggerdbl")
+           (180 222 "periodcentered") (182 444 "paragraph") (183 311 "bullet")
+           (184 296 "quotesinglbase") (185 444 "quotedblbase") (186 444 "quotedblright")
+           (187 444 "guillemotright") (188 888 "ellipsis") (189 888 "perthousand")
+           (191 444 "questiondown") (193 296 "grave") (194 296 "acute") (195 296 "circumflex")
+           (196 296 "tilde") (197 296 "macron") (198 296 "breve") (199 296 "dotaccent")
+           (200 296 "dieresis") (202 296 "ring") (203 296 "cedilla") (205 296 "hungarumlaut")
+           (206 296 "ogonek") (207 296 "caron") (208 888 "emdash") (225 838 "AE")
+           (227 236 "ordfeminine") (232 543 "Lslash") (233 641 "Oslash") (234 838 "OE")
+           (235 266 "ordmasculine") (241 641 "ae") (245 247 "dotlessi") (248 247 "lslash")
+           (249 444 "oslash") (250 641 "oe") (251 444 "germandbls")))
+       (setup-laserwriter-metrics
+         '(("Helvetica" 1000 (-174 -220 1001 944)) (32 239 "space") (33 239 "exclam")
+           (34 305 "quotedbl") (35 478 "numbersign") (36 478 "dollar") (37 764 "percent")
+           (38 573 "ampersand") (39 191 "quoteright") (40 286 "parenleft") (41 286 "parenright")
+           (42 334 "asterisk") (43 502 "plus") (44 239 "comma") (45 286 "hyphen") (46 239 "period")
+           (47 239 "slash") (48 478 "zero") (49 478 "one") (50 478 "two") (51 478 "three")
+           (52 478 "four") (53 478 "five") (54 478 "six") (55 478 "seven") (56 478 "eight")
+           (57 478 "nine") (58 239 "colon") (59 239 "semicolon") (60 502 "less") (61 502 "equal")
+           (62 502 "greater") (63 478 "question") (64 872 "at") (65 573 "A") (66 573 "B") (67 620 "C")
+           (68 620 "D") (69 573 "E") (70 525 "F") (71 668 "G") (72 620 "H") (73 239 "I") (74 430 "J")
+           (75 573 "K") (76 478 "L") (77 716 "M") (78 620 "N") (79 668 "O") (80 573 "P") (81 668 "Q")
+           (82 620 "R") (83 573 "S") (84 525 "T") (85 620 "U") (86 573 "V") (87 811 "W") (88 573 "X")
+           (89 573 "Y") (90 525 "Z") (91 239 "bracketleft") (92 239 "backslash")
+           (93 239 "bracketright") (94 403 "asciicircum") (95 478 "underscore") (96 191 "quoteleft")
+           (97 478 "a") (98 478 "b") (99 430 "c") (100 478 "d") (101 478 "e") (102 239 "f")
+           (103 478 "g") (104 478 "h") (105 191 "i") (106 191 "j") (107 430 "k") (108 191 "l")
+           (109 716 "m") (110 478 "n") (111 478 "o") (112 478 "p") (113 478 "q") (114 286 "r")
+           (115 430 "s") (116 239 "t") (117 478 "u") (118 430 "v") (119 620 "w") (120 430 "x")
+           (121 430 "y") (122 430 "z") (123 287 "braceleft") (124 223 "bar") (125 287 "braceright")
+           (126 502 "asciitilde") (161 286 "exclamdown") (162 478 "cent") (163 478 "sterling")
+           (164 143 "fraction") (165 478 "yen") (166 478 "florin") (167 478 "section")
+           (168 478 "currency") (169 164 "quotesingle") (170 286 "quotedblleft")
+           (171 478 "guillemotleft") (172 286 "guilsinglleft") (173 286 "guilsinglright")
+           (174 430 "fi") (175 430 "fl") (177 478 "endash") (178 478 "dagger") (179 478 "daggerdbl")
+           (180 239 "periodcentered") (182 461 "paragraph") (183 301 "bullet")
+           (184 191 "quotesinglbase") (185 286 "quotedblbase") (186 286 "quotedblright")
+           (187 478 "guillemotright") (188 859 "ellipsis") (189 859 "perthousand")
+           (191 525 "questiondown") (193 286 "grave") (194 286 "acute") (195 286 "circumflex")
+           (196 286 "tilde") (197 286 "macron") (198 286 "breve") (199 286 "dotaccent")
+           (200 286 "dieresis") (202 286 "ring") (203 286 "cedilla") (205 286 "hungarumlaut")
+           (206 286 "ogonek") (207 286 "caron") (208 859 "emdash") (225 859 "AE")
+           (227 318 "ordfeminine") (232 478 "Lslash") (233 668 "Oslash") (234 859 "OE")
+           (235 314 "ordmasculine") (241 764 "ae") (245 239 "dotlessi") (248 191 "lslash")
+           (249 525 "oslash") (250 811 "oe") (251 525 "germandbls")))
+       (setup-laserwriter-metrics
+         '(("Helvetica-Oblique" 1000 (-178 -220 1108 944)) (32 239 "space") (33 239 "exclam")
+           (34 305 "quotedbl") (35 478 "numbersign") (36 478 "dollar") (37 764 "percent")
+           (38 573 "ampersand") (39 191 "quoteright") (40 286 "parenleft") (41 286 "parenright")
+           (42 334 "asterisk") (43 502 "plus") (44 239 "comma") (45 286 "hyphen") (46 239 "period")
+           (47 239 "slash") (48 478 "zero") (49 478 "one") (50 478 "two") (51 478 "three")
+           (52 478 "four") (53 478 "five") (54 478 "six") (55 478 "seven") (56 478 "eight")
+           (57 478 "nine") (58 239 "colon") (59 239 "semicolon") (60 502 "less") (61 502 "equal")
+           (62 502 "greater") (63 478 "question") (64 872 "at") (65 573 "A") (66 573 "B") (67 620 "C")
+           (68 620 "D") (69 573 "E") (70 525 "F") (71 668 "G") (72 620 "H") (73 239 "I") (74 430 "J")
+           (75 573 "K") (76 478 "L") (77 716 "M") (78 620 "N") (79 668 "O") (80 573 "P") (81 668 "Q")
+           (82 620 "R") (83 573 "S") (84 525 "T") (85 620 "U") (86 573 "V") (87 811 "W") (88 573 "X")
+           (89 573 "Y") (90 525 "Z") (91 239 "bracketleft") (92 239 "backslash")
+           (93 239 "bracketright") (94 403 "asciicircum") (95 478 "underscore") (96 191 "quoteleft")
+           (97 478 "a") (98 478 "b") (99 430 "c") (100 478 "d") (101 478 "e") (102 239 "f")
+           (103 478 "g") (104 478 "h") (105 191 "i") (106 191 "j") (107 430 "k") (108 191 "l")
+           (109 716 "m") (110 478 "n") (111 478 "o") (112 478 "p") (113 478 "q") (114 286 "r")
+           (115 430 "s") (116 239 "t") (117 478 "u") (118 430 "v") (119 620 "w") (120 430 "x")
+           (121 430 "y") (122 430 "z") (123 287 "braceleft") (124 223 "bar") (125 287 "braceright")
+           (126 502 "asciitilde") (161 286 "exclamdown") (162 478 "cent") (163 478 "sterling")
+           (164 143 "fraction") (165 478 "yen") (166 478 "florin") (167 478 "section")
+           (168 478 "currency") (169 164 "quotesingle") (170 286 "quotedblleft")
+           (171 478 "guillemotleft") (172 286 "guilsinglleft") (173 286 "guilsinglright")
+           (174 430 "fi") (175 430 "fl") (177 478 "endash") (178 478 "dagger") (179 478 "daggerdbl")
+           (180 239 "periodcentered") (182 461 "paragraph") (183 301 "bullet")
+           (184 191 "quotesinglbase") (185 286 "quotedblbase") (186 286 "quotedblright")
+           (187 478 "guillemotright") (188 859 "ellipsis") (189 859 "perthousand")
+           (191 525 "questiondown") (193 286 "grave") (194 286 "acute") (195 286 "circumflex")
+           (196 286 "tilde") (197 286 "macron") (198 286 "breve") (199 286 "dotaccent")
+           (200 286 "dieresis") (202 286 "ring") (203 286 "cedilla") (205 286 "hungarumlaut")
+           (206 286 "ogonek") (207 286 "caron") (208 859 "emdash") (225 859 "AE")
+           (227 318 "ordfeminine") (232 478 "Lslash") (233 668 "Oslash") (234 859 "OE")
+           (235 314 "ordmasculine") (241 764 "ae") (245 239 "dotlessi") (248 191 "lslash")
+           (249 525 "oslash") (250 811 "oe") (251 525 "germandbls")))
+       (setup-laserwriter-metrics
+         '(("Helvetica-Bold" 1000 (-173 -221 1003 936)) (32 240 "space") (33 288 "exclam")
+           (34 410 "quotedbl") (35 481 "numbersign") (36 481 "dollar") (37 768 "percent")
+           (38 624 "ampersand") (39 240 "quoteright") (40 288 "parenleft") (41 288 "parenright")
+           (42 336 "asterisk") (43 505 "plus") (44 240 "comma") (45 288 "hyphen") (46 240 "period")
+           (47 240 "slash") (48 481 "zero") (49 481 "one") (50 481 "two") (51 481 "three")
+           (52 481 "four") (53 481 "five") (54 481 "six") (55 481 "seven") (56 481 "eight")
+           (57 481 "nine") (58 288 "colon") (59 288 "semicolon") (60 505 "less") (61 505 "equal")
+           (62 505 "greater") (63 528 "question") (64 843 "at") (65 624 "A") (66 624 "B") (67 624 "C")
+           (68 624 "D") (69 576 "E") (70 528 "F") (71 672 "G") (72 624 "H") (73 240 "I") (74 481 "J")
+           (75 624 "K") (76 528 "L") (77 720 "M") (78 624 "N") (79 672 "O") (80 576 "P") (81 672 "Q")
+           (82 624 "R") (83 576 "S") (84 528 "T") (85 624 "U") (86 576 "V") (87 816 "W") (88 576 "X")
+           (89 576 "Y") (90 528 "Z") (91 288 "bracketleft") (92 240 "backslash")
+           (93 288 "bracketright") (94 505 "asciicircum") (95 481 "underscore") (96 240 "quoteleft")
+           (97 481 "a") (98 528 "b") (99 481 "c") (100 528 "d") (101 481 "e") (102 288 "f")
+           (103 528 "g") (104 528 "h") (105 240 "i") (106 240 "j") (107 481 "k") (108 240 "l")
+           (109 768 "m") (110 528 "n") (111 528 "o") (112 528 "p") (113 528 "q") (114 336 "r")
+           (115 481 "s") (116 288 "t") (117 528 "u") (118 481 "v") (119 672 "w") (120 481 "x")
+           (121 481 "y") (122 432 "z") (123 336 "braceleft") (124 242 "bar") (125 336 "braceright")
+           (126 505 "asciitilde") (161 288 "exclamdown") (162 481 "cent") (163 481 "sterling")
+           (164 144 "fraction") (165 481 "yen") (166 481 "florin") (167 481 "section")
+           (168 481 "currency") (169 206 "quotesingle") (170 432 "quotedblleft")
+           (171 481 "guillemotleft") (172 288 "guilsinglleft") (173 288 "guilsinglright")
+           (174 528 "fi") (175 528 "fl") (177 481 "endash") (178 481 "dagger") (179 481 "daggerdbl")
+           (180 240 "periodcentered") (182 481 "paragraph") (183 303 "bullet")
+           (184 240 "quotesinglbase") (185 432 "quotedblbase") (186 432 "quotedblright")
+           (187 481 "guillemotright") (188 864 "ellipsis") (189 864 "perthousand")
+           (191 528 "questiondown") (193 288 "grave") (194 288 "acute") (195 288 "circumflex")
+           (196 288 "tilde") (197 288 "macron") (198 288 "breve") (199 288 "dotaccent")
+           (200 288 "dieresis") (202 288 "ring") (203 288 "cedilla") (205 288 "hungarumlaut")
+           (206 288 "ogonek") (207 288 "caron") (208 864 "emdash") (225 864 "AE")
+           (227 320 "ordfeminine") (232 528 "Lslash") (233 672 "Oslash") (234 864 "OE")
+           (235 315 "ordmasculine") (241 768 "ae") (245 240 "dotlessi") (248 240 "lslash")
+           (249 528 "oslash") (250 816 "oe") (251 528 "germandbls")))
+       (setup-laserwriter-metrics
+         '(("Helvetica-BoldOblique" 1000 (-177 -221 1107 936)) (32 240 "space") (33 288 "exclam")
+           (34 410 "quotedbl") (35 481 "numbersign") (36 481 "dollar") (37 768 "percent")
+           (38 624 "ampersand") (39 240 "quoteright") (40 288 "parenleft") (41 288 "parenright")
+           (42 336 "asterisk") (43 505 "plus") (44 240 "comma") (45 288 "hyphen") (46 240 "period")
+           (47 240 "slash") (48 481 "zero") (49 481 "one") (50 481 "two") (51 481 "three")
+           (52 481 "four") (53 481 "five") (54 481 "six") (55 481 "seven") (56 481 "eight")
+           (57 481 "nine") (58 288 "colon") (59 288 "semicolon") (60 505 "less") (61 505 "equal")
+           (62 505 "greater") (63 528 "question") (64 843 "at") (65 624 "A") (66 624 "B") (67 624 "C")
+           (68 624 "D") (69 576 "E") (70 528 "F") (71 672 "G") (72 624 "H") (73 240 "I") (74 481 "J")
+           (75 624 "K") (76 528 "L") (77 720 "M") (78 624 "N") (79 672 "O") (80 576 "P") (81 672 "Q")
+           (82 624 "R") (83 576 "S") (84 528 "T") (85 624 "U") (86 576 "V") (87 816 "W") (88 576 "X")
+           (89 576 "Y") (90 528 "Z") (91 288 "bracketleft") (92 240 "backslash")
+           (93 288 "bracketright") (94 505 "asciicircum") (95 481 "underscore") (96 240 "quoteleft")
+           (97 481 "a") (98 528 "b") (99 481 "c") (100 528 "d") (101 481 "e") (102 288 "f")
+           (103 528 "g") (104 528 "h") (105 240 "i") (106 240 "j") (107 481 "k") (108 240 "l")
+           (109 768 "m") (110 528 "n") (111 528 "o") (112 528 "p") (113 528 "q") (114 336 "r")
+           (115 481 "s") (116 288 "t") (117 528 "u") (118 481 "v") (119 672 "w") (120 481 "x")
+           (121 481 "y") (122 432 "z") (123 336 "braceleft") (124 242 "bar") (125 336 "braceright")
+           (126 505 "asciitilde") (161 288 "exclamdown") (162 481 "cent") (163 481 "sterling")
+           (164 144 "fraction") (165 481 "yen") (166 481 "florin") (167 481 "section")
+           (168 481 "currency") (169 206 "quotesingle") (170 432 "quotedblleft")
+           (171 481 "guillemotleft") (172 288 "guilsinglleft") (173 288 "guilsinglright")
+           (174 528 "fi") (175 528 "fl") (177 481 "endash") (178 481 "dagger") (179 481 "daggerdbl")
+           (180 240 "periodcentered") (182 481 "paragraph") (183 303 "bullet")
+           (184 240 "quotesinglbase") (185 432 "quotedblbase") (186 432 "quotedblright")
+           (187 481 "guillemotright") (188 864 "ellipsis") (189 864 "perthousand")
+           (191 528 "questiondown") (193 288 "grave") (194 288 "acute") (195 288 "circumflex")
+           (196 288 "tilde") (197 288 "macron") (198 288 "breve") (199 288 "dotaccent")
+           (200 288 "dieresis") (202 288 "ring") (203 288 "cedilla") (205 288 "hungarumlaut")
+           (206 288 "ogonek") (207 288 "caron") (208 864 "emdash") (225 864 "AE")
+           (227 320 "ordfeminine") (232 528 "Lslash") (233 672 "Oslash") (234 864 "OE")
+           (235 315 "ordmasculine") (241 768 "ae") (245 240 "dotlessi") (248 240 "lslash")
+           (249 528 "oslash") (250 816 "oe") (251 528 "germandbls")))
+       (setup-laserwriter-metrics '(("Courier" 1000 (-40 -290 640 795)) . 553))
+       (setup-laserwriter-metrics '(("Courier-Oblique" 1000 (-85 -290 759 795)) . 553))
+       (setup-laserwriter-metrics '(("Courier-Bold" 1000 (-100 -350 700 855)) . 498))
+       (setup-laserwriter-metrics '(("Courier-BoldOblique" 1000 (-145 -350 817 855)) . 498))
+       (setup-laserwriter-metrics
+         '(("Symbol" 1000 (-180 -293 1090 1010)) (32 192 "space") (33 256 "exclam")
+           (34 547 "universal") (35 384 "numbersign") (36 421 "existential") (37 639 "percent")
+           (38 597 "ampersand") (39 337 "suchthat") (40 256 "parenleft") (41 256 "parenright")
+           (42 384 "asteriskmath") (43 421 "plus") (44 192 "comma") (45 421 "minus") (46 192 "period")
+           (47 213 "slash") (48 384 "zero") (49 384 "one") (50 384 "two") (51 384 "three")
+           (52 384 "four") (53 384 "five") (54 384 "six") (55 384 "seven") (56 384 "eight")
+           (57 384 "nine") (58 213 "colon") (59 213 "semicolon") (60 421 "less") (61 421 "equal")
+           (62 421 "greater") (63 341 "question") (64 421 "congruent") (65 554 "Alpha")
+           (66 512 "Beta") (67 554 "Chi") (68 470 "Delta") (69 469 "Epsilon") (70 586 "Phi")
+           (71 463 "Gamma") (72 554 "Eta") (73 256 "Iota") (74 484 "theta1") (75 554 "Kappa")
+           (76 526 "Lambda") (77 682 "Mu") (78 554 "Nu") (79 554 "Omicron") (80 589 "Pi")
+           (81 569 "Theta") (82 427 "Rho") (83 454 "Sigma") (84 469 "Tau") (85 530 "Upsilon")
+           (86 337 "sigma1") (87 589 "Omega") (88 495 "Xi") (89 610 "Psi") (90 469 "Zeta")
+           (91 256 "bracketleft") (92 662 "therefore") (93 256 "bracketright")
+           (94 505 "perpendicular") (95 384 "underscore") (96 384 "radicalex") (97 484 "alpha")
+           (98 421 "beta") (99 421 "chi") (100 379 "delta") (101 337 "epsilon") (102 400 "phi")
+           (103 315 "gamma") (104 463 "eta") (105 252 "iota") (106 463 "phi1") (107 421 "kappa")
+           (108 421 "lambda") (109 442 "mu") (110 400 "nu") (111 421 "omicron") (112 421 "pi")
+           (113 400 "theta") (114 421 "rho") (115 463 "sigma") (116 337 "tau") (117 442 "upsilon")
+           (118 547 "omega1") (119 526 "omega") (120 378 "xi") (121 526 "psi") (122 379 "zeta")
+           (123 368 "braceleft") (124 153 "bar") (125 368 "braceright") (126 421 "similar")
+           (161 476 "Upsilon1") (162 190 "minute") (163 421 "lessequal") (164 128 "fraction")
+           (165 547 "infinity") (166 384 "florin") (167 578 "club") (168 578 "diamond")
+           (169 578 "heart") (170 578 "spade") (171 800 "arrowboth") (172 757 "arrowleft")
+           (173 463 "arrowup") (174 757 "arrowright") (175 463 "arrowdown") (176 307 "degree")
+           (177 421 "plusminus") (178 315 "second") (179 421 "greaterequal") (180 421 "multiply")
+           (181 547 "proportional") (182 379 "partialdiff") (183 353 "bullet") (184 421 "divide")
+           (185 421 "notequal") (186 421 "equivalence") (187 421 "approxequal") (188 767 "ellipsis")
+           (189 463 "arrowvertex") (190 767 "arrowhorizex") (191 505 "carriagereturn")
+           (192 632 "aleph") (193 526 "Ifraktur") (194 610 "Rfraktur") (195 757 "weierstrass")
+           (196 589 "circlemultiply") (197 589 "circleplus") (198 632 "emptyset")
+           (199 589 "intersection") (200 589 "union") (201 547 "propersuperset")
+           (202 547 "reflexsuperset") (203 547 "notsubset") (204 547 "propersubset")
+           (205 547 "reflexsubset") (206 547 "element") (207 547 "notelement") (208 589 "angle")
+           (209 547 "gradient") (210 606 "registerserif") (211 606 "copyrightserif")
+           (212 683 "trademarkserif") (213 632 "product") (214 421 "radical") (215 192 "dotmath")
+           (216 547 "logicalnot") (217 463 "logicaland") (218 463 "logicalor")
+           (219 800 "arrowdblboth") (220 757 "arrowdblleft") (221 463 "arrowdblup")
+           (222 757 "arrowdblright") (223 463 "arrowdbldown") (224 379 "lozenge")
+           (225 252 "angleleft") (226 606 "registersans") (227 606 "copyrightsans")
+           (228 603 "trademarksans") (229 547 "summation") (230 295 "parenlefttp")
+           (231 295 "parenleftex") (232 295 "parenleftbt") (233 295 "bracketlefttp")
+           (234 295 "bracketleftex") (235 295 "bracketleftbt") (236 379 "bracelefttp")
+           (237 379 "braceleftmid") (238 379 "braceleftbt") (239 379 "braceex") (241 252 "angleright")
+           (242 210 "integral") (243 526 "integraltp") (244 526 "integralex") (245 526 "integralbt")
+           (246 295 "parenrighttp") (247 295 "parenrightex") (248 295 "parenrightbt")
+           (249 295 "bracketrighttp") (250 295 "bracketrightex") (251 295 "bracketrightbt")
+           (252 379 "bracerighttp") (253 379 "bracerightmid") (254 379 "bracerightbt"))))
diff --git a/postscript/read-afm.lisp b/postscript/read-afm.lisp
new file mode 100644
index 0000000000000000000000000000000000000000..dec0c2d27891b9afe25d046c6242f260d5812b00
--- /dev/null
+++ b/postscript/read-afm.lisp
@@ -0,0 +1,138 @@
+;; -*- mode: common-lisp; package: postscript-clim -*-
+;;
+;;				-[]-
+;; 
+;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA  All rights reserved.
+;; copyright (c) 1986-1992 Franz Inc, Berkeley, CA  All rights reserved.
+;;
+;; The software, data and information contained herein are proprietary
+;; to, and comprise valuable trade secrets of, Franz, Inc.  They are
+;; given in confidence by Franz, Inc. pursuant to a written license
+;; agreement, and may be stored and used only in accordance with the terms
+;; of such license.
+;;
+;; Restricted Rights Legend
+;; ------------------------
+;; Use, duplication, and disclosure of the software, data and information
+;; contained herein by any agency, department or entity of the U.S.
+;; Government are subject to restrictions of Restricted Rights for
+;; Commercial Software developed at private expense as specified in FAR
+;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as
+;; applicable.
+;;
+;; $fiHeader$
+
+(in-package :postscript-clim)
+
+(defun read-afm-file (file)
+  (labels ((afm-whitespace-char-p (char)
+	     (or (eq char #\tab)
+		 (eq char #\space)
+		 (eq char #\newline)))
+	   (read-keyname ()
+	     (let ((chars (make-array 0 :element-type 'string-char :fill-pointer 0 :adjustable t)))
+	       (loop
+		 (let ((char (read-char)))
+		   (when (afm-whitespace-char-p char)
+		     (unread-char char)
+		     (return-from read-keyname (intern chars :keyword)))
+		   (vector-push-extend char chars))))))
+    (with-open-file (*standard-input* file :direction :input)
+      (let (font-name
+	    font-bbox
+	    character-metrics 
+	    fixed-pitch)
+	(loop
+	  (case (read-keyname)
+	    (:|FontName|
+	      (peek-char t)
+	      (setq font-name (read-keyname))
+	      (read-line))
+	    (:|IsFixedPitch|
+	      (peek-char t)
+	      (setq fixed-pitch 
+		(ecase (read-keyname)
+		  (:|true| t)
+		  (:|false| nil))))
+	    (:|CharWidth|
+	      (setq fixed-pitch (read))
+	      (read))
+	    (:|FontBBox|
+	      (setq font-bbox
+		(list (read) (read) (read) (read))))
+	    (:|StartCharMetrics|
+	      (loop 
+		(read-line)
+		(let ((key (read-keyname))
+		      code wx name bounding-box)
+		  (when (eq key :|EndCharMetrics|) (return nil))
+		  (loop 
+		    (peek-char t)
+		    (ecase key
+		      (:|L|
+			(read-keyname) (peek-char t) (read-keyname))
+		      (:|C| (setq code (read)))
+		      (:|WX| (setq wx (read)))
+		      (:|N| (peek-char t)
+			(setq name (read-keyname)))
+		      (:|B| 
+			(setq bounding-box (list (read) (read) (read) (read)))))
+		    (assert (eq (peek-char t) #\;))
+		    (read-char)
+		    (when (eq (peek-char) #\newline)
+		      (push (list code wx name bounding-box)
+			    character-metrics)
+		      (return))
+		    (peek-char t)
+		    (setq key (read-keyname)))))
+	      (return))
+	    (t (read-line))))
+	(values font-name font-bbox fixed-pitch (nreverse character-metrics))))))
+
+(defun load-metrics-from-afm-file (file)
+  (setup-laserwriter-metrics
+   (load-metrics-from-afm-file-1 file)))
+
+(defun load-metrics-from-afm-file-1 (file)
+  (multiple-value-bind (name bounding-box fixed-pitch character-metrics) (read-afm-file file)
+    (let ((height (- (fourth bounding-box) (second bounding-box))))
+      `((,(symbol-name name) 1000 ,bounding-box)
+	,@(cond ((null fixed-pitch)
+		 (mapcan #'(lambda (X)
+			     (destructuring-bind (code width name . ignore) x
+			       (declare (ignore ignore))
+			       (and (plusp code)
+				    `((,code ,(round (* 1000 (/ width height))) ,(symbol-name name))))))
+			 character-metrics))
+		((numberp fixed-pitch)
+		 (round (* 1000 (/ fixed-pitch height))))
+		(t
+		 (round (* 1000 (/ (second (car character-metrics)) height)))))))))
+
+(defmacro load-metrics-from-afm-file-macro (file)
+  `(setup-laserwriter-metrics
+    ',(load-metrics-from-afm-file-1 file)))
+
+(defmacro load-font-metrics-from-files (&rest files)
+  `(progn
+     ,@(mapcar #'(lambda (file)
+		   `(load-metrics-from-afm-file-macro
+		     ,(format nil "/src_fi/tran/sun4/sparc/lib/~A.afm" file)))
+	       files)))
+
+#+ignore
+(load-font-metrics-from-files 
+ "Times-Roman"
+ "Times-Italic"
+ "Times-Bold"
+ "Times-BoldItalic"
+ "Helvetica"
+ "Helvetica-Oblique"
+ "Helvetica-Bold"
+ "Helvetica-BoldOblique"
+ "Courier"
+ "Courier-Oblique"
+ "Courier-Bold"
+ "Courier-BoldOblique"
+ "Symbol")
+
diff --git a/postscript/sysdcl.lisp b/postscript/sysdcl.lisp
index 38616e92babe1578003c18807dc7703d67a5dfa0..e9726b7426b8e2f137fb0f5f41a8d8a9d8aabfd3 100644
--- a/postscript/sysdcl.lisp
+++ b/postscript/sysdcl.lisp
@@ -1,6 +1,6 @@
 ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER; Base: 10; Lowercase: Yes -*-
 
-;; $fiHeader: sysdcl.lisp,v 1.6 92/11/20 08:45:42 cer Exp $
+;; $fiHeader: sysdcl.lisp,v 1.7 92/12/03 10:29:08 cer Exp $
 
 (in-package #-ANSI-90 :user #+ANSI-90 :cl-user)
 
@@ -16,6 +16,7 @@
   #+Allegro ("postscript-s")
   ("postscript-port")
   ("postscript-medium")
+  ("read-afm")
   ("laserwriter-metrics"))
 
 #+Genera
diff --git a/silica/db-box.lisp b/silica/db-box.lisp
index 307e7619a3f7255a1916dd47b24213248405c1e2..c170e1693ea817dde9a8e6355989baded2b22c51 100644
--- a/silica/db-box.lisp
+++ b/silica/db-box.lisp
@@ -1,6 +1,6 @@
 ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*-
 
-;; $fiHeader: db-box.lisp,v 1.23 93/02/08 15:57:26 cer Exp $
+;; $fiHeader: db-box.lisp,v 1.24 93/03/19 09:44:31 cer Exp $
 
 (in-package :silica)
 
@@ -66,11 +66,17 @@
 			    (if (and (numberp scale) (< x +fill+)) (/ x scale) x)))
 		     (declare (dynamic-extent #'scale))
 		     (cond ((eq scale :fill)
-			    (incf major+ +fill+))
-			   (t
+			    (incf major+ +fill+)
+			    (incf major (scale (funcall fn-major space-req)))
+			    (incf major- (scale (funcall fn-major- space-req))))
+			   ((= scale 1.0)
+			    (incf major+ (scale (funcall fn-major+ space-req)))
 			    (incf major (scale (funcall fn-major space-req)))
-			    (incf major+ (scale (funcall fn-major+ space-req)))))
-		     (incf major- (scale (funcall fn-major- space-req)))
+			    (incf major- (scale (funcall fn-major- space-req))))
+			   (t
+			    (maxf major+ (scale (funcall fn-major+ space-req)))
+			    (maxf major (scale (funcall fn-major space-req)))
+			    (maxf major- (scale (funcall fn-major- space-req)))))
 		     (setq minor (max minor (funcall fn-minor space-req))) 
 		     (maxf minor-min (funcall fn-minor- space-req))
 		     (minf minor-max (funcall fn-minor+ space-req)))))))
@@ -109,7 +115,7 @@
       (flet ((compose (x)
 	       (cond ((atom x) (compose-space x :height height))
 		     ((eq (car x) :fill) :fill)
-		     (t (make-space-requirement :height 0 :width (* (car x) width))))))
+		     (t (car x) #+ignore (make-space-requirement :height 0 :width (* (car x) width))))))
 	(declare (dynamic-extent #'compose))
 	(let* ((adjust (* spacing (1- (length (sheet-children box-pane)))))
 	       (sizes 
@@ -155,7 +161,7 @@
       (flet ((compose (x)
 	       (cond ((atom x) (compose-space x :width width))
 		     ((eq (car x) :fill) :fill)
-		     (t (make-space-requirement :width 0 :height (* (car x) height))))))
+		     (t (car x) #+ignore (make-space-requirement :width 0 :height (* (car x) height))))))
 	(declare (dynamic-extent #'compose))
 	(let* ((adjust (* spacing (1- (length (sheet-children box-pane)))))
 	       (sizes 
diff --git a/silica/event.lisp b/silica/event.lisp
index 4be31b6ea0d6bbfe31461c455a86b57d9c2948b6..85e4d9daba435f9dbfc3909b5046c7346643f9cf 100644
--- a/silica/event.lisp
+++ b/silica/event.lisp
@@ -1,6 +1,6 @@
 ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*-
 
-;; $fiHeader: event.lisp,v 1.32 92/12/16 16:49:23 cer Exp $
+;; $fiHeader: event.lisp,v 1.33 93/01/21 14:59:00 cer Exp $
 
 (in-package :silica)
 
@@ -503,55 +503,63 @@
       (generate-deeply-mirrored-crossing-events port event)
       (generate-crossing-events port event)))
 
+(defmethod distribute-event-1 :around ((port basic-port) (event pointer-event))
+  (let ((sheet (port-grabbing-sheet port)))
+    (if sheet (dispatch-pointer-event-to-sheet port event sheet)
+      (call-next-method))))
+
 (defmethod distribute-event-1 ((port basic-port) (event pointer-event))
   (declare (optimize (speed 3)))
+  (let ((sheet (let ((v (port-trace-thing port)))
+		 (and (not (zerop (fill-pointer v)))
+		      (aref v (1- (fill-pointer v)))))))
+    (dispatch-pointer-event-to-sheet port event sheet)))
+
+(defun dispatch-pointer-event-to-sheet (port event sheet)
+  (declare (ignore port))
   (let ((event-type (class-name (class-of event)))
 	(x (pointer-event-native-x event))
 	(y (pointer-event-native-y event))
 	(modifiers (event-modifier-state event))
 	(pointer (pointer-event-pointer event)))
     ;; Dispatch event to the innermost sheet
-    (let ((sheet (let ((v (port-trace-thing port)))
-		   (and (not (zerop (fill-pointer v)))
-			(aref v (1- (fill-pointer v)))))))
-      ;;--- This is not quite right.  We need to transform the
-      ;;--- coordinates better.  Also it should probably override 
-      ;;--- the sheet in the trace-thing.
-      (unless sheet 
-	(setq sheet (port-grabbing-sheet port)))
-      (when (and sheet (port sheet))
-	(multiple-value-bind (tx ty)
-	    (untransform-position (sheet-device-transformation sheet) x y)
-	  ;; Update the pointer object
-	  (setf (pointer-sheet pointer) sheet
-		(pointer-x-position pointer) tx
-		(pointer-y-position pointer) ty
-		(pointer-native-x-position pointer) x
-		(pointer-native-y-position pointer) y)
-	  (setf (pointer-cursor pointer)
-		(or (sheet-pointer-cursor sheet) :default))
-	  (typecase event
-	    (pointer-button-event
-	      (dispatch-event
-		sheet
-		(allocate-event event-type
-		  :sheet sheet
-		  :native-x x :native-y y
-		  :x tx :y ty
-		  :modifier-state modifiers
-		  :button (pointer-event-button event)
-		  :pointer pointer)))
-	    (pointer-motion-event
-	      (dispatch-event
-		sheet
-		(allocate-event event-type
-		  :sheet sheet
-		  :native-x x :native-y y
-		  :x tx :y ty
-		  :modifier-state modifiers
-		  :pointer pointer)))
-	    ;; Pointer exit and enter events are handled by GENERATE-CROSSING-EVENTS
-	    )))))
+    (when (and sheet (port sheet))
+      (multiple-value-bind (tx ty)
+	  (untransform-position (sheet-device-transformation sheet) x y)
+	;; Update the pointer object
+	;;--- It might make a lot more sense for methods on
+	;;--- dispatch-event to update the pointer
+	;;--- This would enable exit events to do the right thing
+	;;--- Hence if we exit then we set the sheet to NIL??
+	(setf (pointer-sheet pointer) sheet
+	      (pointer-x-position pointer) tx
+	      (pointer-y-position pointer) ty
+	      (pointer-native-x-position pointer) x
+	      (pointer-native-y-position pointer) y)
+	(setf (pointer-cursor pointer)
+	  (or (sheet-pointer-cursor sheet) :default))
+	(typecase event
+	  (pointer-button-event
+	   (dispatch-event
+	    sheet
+	    (allocate-event event-type
+			    :sheet sheet
+			    :native-x x :native-y y
+			    :x tx :y ty
+			    :modifier-state modifiers
+			    :button (pointer-event-button event)
+			    :pointer pointer)))
+	  (pointer-motion-event
+	   (dispatch-event
+	    sheet
+	    (allocate-event event-type
+			    :sheet sheet
+			    :native-x x :native-y y
+			    :x tx :y ty
+			    :modifier-state modifiers
+			    :pointer pointer)))
+	  ;; Pointer exit and enter events are handled by GENERATE-CROSSING-EVENTS
+	  ))))
   (deallocate-event event))
 	    
 
diff --git a/tk/xm-widgets.lisp b/tk/xm-widgets.lisp
index 05a85c6cfc32d4f46202e4fb564c6d6359800624..7debb70021313356a6ff80c29777ff3d2a07b062 100644
--- a/tk/xm-widgets.lisp
+++ b/tk/xm-widgets.lisp
@@ -20,7 +20,7 @@
 ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as
 ;; applicable.
 ;;
-;; $fiHeader: xm-widgets.lisp,v 1.11 92/12/01 09:46:56 cer Exp $
+;; $fiHeader: xm-widgets.lisp,v 1.12 92/12/14 15:04:12 cer Exp $
 
 (in-package :tk)
 
@@ -131,3 +131,11 @@
 					  :original-name 
 					  (string-to-char*
 					   "scrollVertical")))
+
+(tk::add-resource-to-class (find-class 'xm-text)
+			   (make-instance 'resource
+					  :name :word-wrap
+					  :type 'tk::boolean
+					  :original-name 
+					  (string-to-char*
+					   "wordWrap")))