70
|
1 %!PS
|
|
2 %% PostScript Header for use by m2ps Ver.1.0
|
|
3 %% Copyright (C) 1992 Free Software Foundation, Inc.
|
|
4 %%
|
|
5 %% This file is part of Mule (MULtilingual Enhancement of GNU Emacs).
|
|
6 %%
|
|
7 %% Mule is free software distributed in the form of patches to GNU Emacs.
|
|
8 %% You can redistribute it and/or modify
|
|
9 %% it under the terms of the GNU General Public License as published by
|
|
10 %% the Free Software Foundation; either version 1, or (at your option)
|
|
11 %% any later version.
|
|
12 %%
|
|
13 %% Mule is distributed in the hope that it will be useful,
|
|
14 %% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 %% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16 %% GNU General Public License for more details.
|
|
17 %%
|
|
18 %% You should have received a copy of the GNU General Public License
|
|
19 %% along with GNU Emacs; see the file COPYING. If not, write to
|
|
20 %% the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
21 %%
|
|
22 %% 92.10.8 written by K.Handa <handa@etl.go.jp>
|
|
23 %% 92.12.15 modified by K.Handa <handa@etl.go.jp>
|
|
24 %% Support composite character.
|
|
25
|
|
26 /Mydict 200 dict def % define a working dictionary
|
|
27 Mydict begin % start using it.
|
|
28
|
|
29 %%%% Font Manipulation
|
|
30
|
|
31 /imagemaskmatrix [0 0 0 0 0 0] def
|
|
32
|
|
33 /BuildGlyphDefault { % fontdict charname BuildGlyphDefault -
|
|
34 0 begin
|
|
35 1 index /CharData get exch get /ch exch def
|
|
36 /FontSize get /fs exch def
|
|
37 ch 0 get fs div 0 ch 1 4 getinterval { fs div } forall setcachedevice
|
|
38 ch 5 get ch 6 get 2 copy
|
|
39 0 gt exch 0 gt and
|
|
40 { %if
|
|
41 true
|
|
42 imagemaskmatrix
|
|
43 dup 0 fs put dup 3 fs neg put
|
|
44 dup 4 ch 7 get put dup 5 ch 8 get put
|
|
45 ch 9 1 getinterval cvx
|
|
46 imagemask
|
|
47 } if
|
|
48 end
|
|
49 } bind def
|
|
50
|
|
51 /BuildGlyphNoCache { % fontdict charname BuildGlyphNoCache -
|
|
52 0 begin
|
|
53 1 index /CharData get exch get /ch exch def
|
|
54 /FontSize get /fs exch def
|
|
55 ch 0 get fs div 0 setcharwidth
|
|
56 ch 5 get ch 6 get 2 copy
|
|
57 0 gt exch 0 gt and
|
|
58 { %if
|
|
59 true
|
|
60 imagemaskmatrix
|
|
61 dup 0 fs put dup 3 fs neg put
|
|
62 dup 4 ch 7 get put dup 5 ch 8 get put
|
|
63 ch 9 1 getinterval cvx
|
|
64 imagemask
|
|
65 } if
|
|
66 end
|
|
67 } bind def
|
|
68
|
|
69 /BuildGlyphDefault load 0 6 dict put
|
|
70 /BuildGlyphNoCache load 0 6 dict put
|
|
71
|
|
72 /work 4 string def
|
|
73
|
|
74 /nf { % font fontname fsize bbox rel cache nf - % NEWFONT
|
|
75 13 dict begin
|
|
76 /FontType 3 def
|
|
77 %ifelse
|
|
78 { /BuildGlyph { BuildGlyphDefault } def }
|
|
79 { /BuildGlyph { BuildGlyphNoCache } def }
|
|
80 ifelse
|
|
81 /Relative exch def
|
|
82 /FontBBox exch def
|
|
83 /FontSize exch def
|
|
84 /FontMatrix [1 0 0 1 0 0] def
|
|
85 /Encoding 256 array %def
|
|
86 dup 0 1 255 {
|
|
87 dup (XXX) cvs
|
|
88 (CXXX) work copy pop
|
|
89 work exch 1 exch putinterval
|
|
90 work cvn
|
|
91 put dup
|
|
92 } for pop
|
|
93 def
|
|
94 /CharData 256 dict def
|
|
95 /BuildChar {
|
|
96 1 index /Encoding get exch get
|
|
97 1 index /BuildGlyph get exec
|
|
98 } def
|
|
99 dup currentdict
|
|
100 end
|
|
101 definefont pop
|
|
102 findfont FontScale scalefont def
|
|
103 } bind def
|
|
104
|
|
105 /g { % charname chardata g - % NEWGLYPH
|
|
106 currentfont begin
|
|
107 CharData begin def end
|
|
108 end
|
|
109 } bind def
|
|
110
|
|
111 /f { % font f - % SETFONT
|
|
112 setfont
|
|
113 } bind def
|
|
114
|
|
115 %%%% Page Control
|
|
116 /bp { % - bp - % BEGIN OF PAGE
|
|
117 ShortMemory { save /SaveImage exch def } if
|
|
118 erasepage
|
|
119 /y TopMargin def
|
|
120 LeftMargin y moveto
|
|
121 } bind def
|
|
122
|
|
123 /ep { % - ep - % END OF PAGE
|
|
124 copypage
|
|
125 ShortMemory { SaveImage restore } if
|
|
126 } bind def
|
|
127
|
|
128 %%%% Miscellaneous Routines for reducing traffic
|
|
129
|
|
130 /r { % x r - % MOVE RIGHT
|
|
131 0 rmoveto
|
|
132 } bind def
|
|
133
|
|
134 /n { % - n - % NEWLINE
|
|
135 /y y LinePitch sub def LeftMargin y moveto
|
|
136 } bind def
|
|
137
|
|
138 /s { % string s - % SHOW STRING
|
|
139 show
|
|
140 } bind def
|
|
141
|
|
142 /cs1 { % string cs1 - % SHOW COMP-CHAR
|
|
143 dup 0 get /ch exch def
|
|
144 currentfont /CharData get currentfont /Encoding get ch get get
|
|
145 dup 2 get /lly exch def
|
|
146 4 get /ury exch def
|
|
147 currentfont /Relative get /rel exch def
|
|
148 ury rel lt { /ury rel def } if
|
|
149 lly 0 gt { /lly 0 def } if
|
|
150 currentpoint /yy exch def /xx exch def
|
|
151 show
|
|
152 } bind def
|
|
153
|
|
154 /cs2 { % string cs2 - % SHOW COMP-CHAR
|
|
155 gsave
|
|
156 dup 0 get /ch exch def
|
|
157 currentfont /FontSize get /fs exch def
|
|
158 currentfont /CharData get currentfont /Encoding get ch get get
|
|
159 dup 2 get /llyy exch def
|
|
160 4 get /uryy exch def
|
|
161 xx yy moveto
|
|
162 llyy rel ge {
|
|
163 0 ury llyy sub 1 add fs div FontScale mul rmoveto
|
|
164 /ury ury llyy sub uryy add 1 add def
|
|
165 } { uryy 0 le {
|
|
166 0 lly uryy sub 1 sub fs div FontScale mul rmoveto
|
|
167 /lly lly uryy sub llyy add 1 sub def
|
|
168 } {
|
|
169 uryy ury gt { /ury uryy def } if
|
|
170 llyy lly lt { /lly llyy def } if
|
|
171 } ifelse } ifelse
|
|
172 show
|
|
173 grestore
|
|
174 } bind def
|
|
175
|
|
176 /cs3 { % string cs3 - % SHOW COMP-CHAR
|
|
177 gsave
|
|
178 xx yy moveto show
|
|
179 grestore
|
|
180 } bind def
|
|
181
|
|
182 end % end of Mydict
|
|
183 Mydict begin
|
|
184 /DPI 300 def
|
|
185 /FontScale 10 def
|
|
186 /LinePitch 14 def
|
|
187 /TopMargin 800 def
|
|
188 /LeftMargin 30 def
|
|
189 /ShortMemory false def
|
|
190 bp
|
|
191 /F00 /FF00 24 [0 -5 12 19] 0 true nf
|
|
192 F00 f
|
|
193 /C89X [ 12 0 0 12 14 12 14 0 14 <6060606030c030c019801f800f000600060006000600060006000600> ] g
|
|
194 /C111 [ 12 0 0 12 10 12 10 0 10 <0f801fc038e0306030603060306038e01fc00f80> ] g
|
|
195 /C117 [ 12 0 0 12 10 12 10 0 10 <30603060306030603060306030e039e01f600e60> ] g
|
|
196 /C32X [ 12 0 19 12 19 12 0 0 19 <> ] g
|
|
197 /C110 [ 12 0 0 12 10 12 10 0 10 <338037c03c603860306030603060306030603060> ] g
|
|
198 /C101 [ 12 0 0 12 10 12 10 0 10 <0f801fc0386030603fe03fe0300030601fe00fc0> ] g
|
|
199 /C100 [ 12 0 0 12 14 12 14 0 14 <00600060006000600f601fe038e030603060306030e031e01f600e60> ] g
|
|
200 /C109 [ 12 0 0 12 11 12 11 0 11 <60006dc07fe066606660666066606660666066606660> ] g
|
|
201 /C97X [ 12 0 0 12 11 12 11 0 11 <07800fc01860006007e01fe0306030e031e03f601e60> ] g
|
|
202 /C121 [ 12 0 -5 12 10 12 15 0 10 <306030603060306030603060306030e01fe00f600060006000601fc00f80> ] g
|
|
203 /C102 [ 12 0 0 12 14 12 14 0 14 <038007800600060006001f801f800600060006000600060006000600> ] g
|
|
204 /C116 [ 12 0 0 12 13 12 13 0 13 <0600060006001f801f8006000600060006000600060007800380> ] g
|
|
205 /C115 [ 12 0 0 12 10 12 10 0 10 <1fc03fe0302030001f800fc0006030603fe01fc0> ] g
|
|
206 /C114 [ 12 0 0 12 10 12 10 0 10 <338037c03c603860300030003000300030003000> ] g
|
|
207 /C108 [ 12 0 0 12 14 12 14 0 14 <06000600060006000600060006000600060006000600060007800380> ] g
|
|
208 /C46X [ 12 0 0 12 4 12 4 0 4 <06000f000f000600> ] g
|
|
209 (You need many fonts to read all.) s n
|
|
210 /C80X [ 12 0 0 12 14 12 14 0 14 <3f803fc030e03060306030e03fc03f80300030003000300030003000> ] g
|
|
211 /C99X [ 12 0 0 12 10 12 10 0 10 <0fc01fc03860306030003000300038601fe00fc0> ] g
|
|
212 /C104 [ 12 0 0 12 14 12 14 0 14 <3000300030003000338037c03ce03860306030603060306030603060> ] g
|
|
213 /C105 [ 12 0 0 12 14 12 14 0 14 <06000600000000000600060006000600060006000600060006000600> ] g
|
|
214 /C112 [ 12 0 -4 12 10 12 14 0 10 <338037c03ce038603060306038603ce037c033803000300030003000> ] g
|
|
215 /C33X [ 12 0 -1 12 14 12 15 0 14 <06000600060006000600060006000600060006000000000006000f000600> ] g
|
|
216 (Please correct this incomplete list and add more!) s n
|
|
217 n
|
|
218 /C45X [ 12 0 5 12 7 12 2 0 7 <7fe07fe0> ] g
|
|
219 (---------------------------------------------------------) s n
|
|
220 /C65X [ 12 0 0 12 14 12 14 0 14 <0f801fc038e03060306030603fe03fe0306030603060306030603060> ] g
|
|
221 (Amharic) s ( ) s ( ) s ( ) s /Ff5 /FFf5 16 [0 -1 16 15] 0 false nf
|
|
222 Ff5 f
|
|
223 /C0XX [ 16 0 -1 16 11 16 12 0 11 <01000100038007c00c600c600c600c600c600c600c600c60> ] g
|
|
224 /C1XX [ 16 0 -1 16 11 16 12 0 11 <03000300078007c00ee00c600c600c600c60006000600060> ] g
|
|
225 /C2XX [ 16 0 -1 16 12 16 13 0 12 <3fe03ff065104510451045f07ce03c0004000c00180030002000> ] g
|
|
226 (\000\001\002) s n
|
|
227 F00 f
|
|
228 /C98X [ 12 0 0 12 14 12 14 0 14 <3000300030003000338037c03ce038603060306038603ce037c03380> ] g
|
|
229 (Arabic) s ( ) s ( ) s ( ) s /Fa5 /FFa5 24 [0 -15 12 21] 0 true nf
|
|
230 Fa5 f
|
|
231 /C215 [ 12 0 -13 12 7 12 20 0 7 <03000f801fc03ce07ef077f067f06380600060006000600060006000600060006000600020002000> ] g
|
|
232 (\327) s /Fe0 /FFe0 24 [0 -15 24 21] 0 true nf
|
|
233 Fe0 f
|
|
234 /C215 [ 24 0 0 24 17 24 17 0 17 <0001c00007c0001f00007c0001f00003c00003000003800001c00000e000007000003800003c00007e00ffefffffc7ffff81ff> ] g
|
|
235 (\327) s Fa5 f
|
|
236 /C225 [ 12 0 -8 12 7 12 15 0 7 <0200060006000f00fff0fbf0f1f0000000000000108039c07fe039c01080> ] g
|
|
237 /C211 [ 12 0 0 12 17 12 17 0 17 <04000c000c000c000c000c000c000c000c000c000c000c000e001f00fff0fbf0f1f0> ] g
|
|
238 /C202 [ 12 0 0 12 10 12 10 0 10 <07800fc01c40180018001c000e00ffe0ffc0ff80> ] g
|
|
239 /C161 [ 12 0 20 12 20 12 0 0 20 <> ] g
|
|
240 /C212 [ 12 0 -13 12 7 12 20 0 7 <0f001f8031c001c00fc01fc03f003000700060006000600060006000600060006000600020002000> ] g
|
|
241 (\341\323\312\241\324) s Fe0 f
|
|
242 /C228 [ 24 0 0 24 16 24 16 0 16 <1808001c0c001e0c000f0c00078c00038c0001cc0001ec0000ec00006c00006c00003c00003e0007ffff1ff3ff1fc1ff> ] g
|
|
243 /C183 [ 24 0 0 24 6 24 6 0 6 <020820061860061860fffffffffffff9e79f> ] g
|
|
244 (\344\267) s Fa5 f
|
|
245 /C210 [ 12 0 0 12 17 12 17 0 17 <03000380038003000300030003000300030003000300030003000700ff00fe00fc00> ] g
|
|
246 /C184 [ 12 0 -2 12 16 12 18 0 16 <020002000600060006000600060006000600060006000600060006000600060004000400> ] g
|
|
247 (\322\270) s n
|
|
248 F00 f
|
|
249 /C68X [ 12 0 0 12 14 12 14 0 14 <3f803fc030e03060306030603060306030603060306030e03fc03f80> ] g
|
|
250 /C40X [ 12 0 0 12 14 12 14 0 14 <01800300070006000e000c000c000c000c000e000600070003000180> ] g
|
|
251 /C107 [ 12 0 0 12 13 12 13 0 13 <3000300030c031c0338037003e003c003e003700338031c030c0> ] g
|
|
252 /C41X [ 12 0 0 12 14 12 14 0 14 <18000c000e00060007000300030003000300070006000e000c001800> ] g
|
|
253 (Danish \(Dansk\)) s ( ) s ( ) s /C72X [ 12 0 0 12 14 12 14 0 14 <3060306030603060306030603fe03fe0306030603060306030603060> ] g
|
|
254 /C106 [ 12 0 -4 12 14 12 18 0 14 <06000600000000000600060006000600060006000600060006000600060006003e003800> ] g
|
|
255 /C44X [ 12 0 -3 12 4 12 7 0 4 <06000f000f000300030006000c00> ] g
|
|
256 /C71X [ 12 0 0 12 14 12 14 0 14 <0f801fc038e0306030003000300031e031e03060306038e01fc00f80> ] g
|
|
257 /C103 [ 12 0 -5 12 10 12 15 0 10 <0e601f6039e030e030603060306038e01fe00f600060006000600fc00780> ] g
|
|
258 (Hej, Goddag) s n
|
|
259 /C69X [ 12 0 0 12 14 12 14 0 14 <3fe03fe030003000300030003f803f8030003000300030003fe03fe0> ] g
|
|
260 (English) s ( ) s ( ) s ( ) s (Hello) s n
|
|
261 (Esperanto) s ( ) s ( ) s /C83X [ 12 0 0 12 14 12 14 0 14 <0f801fc030e03060300038001f800fc000e00060306030e03fc01f80> ] g
|
|
262 (Saluton) s n
|
|
263 (Estonian) s ( ) s ( ) s /C84X [ 12 0 0 12 14 12 14 0 14 <7fe07fe0060006000600060006000600060006000600060006000600> ] g
|
|
264 /C118 [ 12 0 0 12 10 12 10 0 10 <6060606030c030c0198019800f000f0006000600> ] g
|
|
265 (Tere, Tervist) s n
|
|
266 /C70X [ 12 0 0 12 14 12 14 0 14 <3fe03fe030003000300030003f803f80300030003000300030003000> ] g
|
|
267 /C79X [ 12 0 0 12 14 12 14 0 14 <0f801fc038e03060306030603060306030603060306038e01fc00f80> ] g
|
|
268 /C82X [ 12 0 0 12 14 12 14 0 14 <3f803fc030e03060306030e03fc03f803180318030c030c030603060> ] g
|
|
269 /C78X [ 12 0 0 12 14 12 14 0 14 <3060386038603c603c60366036603360336031e031e030e030e03060> ] g
|
|
270 (FORTRAN) s ( ) s ( ) s ( ) s /C77X [ 12 0 0 12 14 12 14 0 14 <306038e038e03de03fe0376037603260306030603060306030603060> ] g
|
|
271 (PROGRAM) s n
|
|
272 (Finnish \(Suomi\)) s ( ) s ( ) s (Hei) s n
|
|
273 (French \(Fran) s /F81 /FF81 24 [0 -5 12 19] 0 true nf
|
|
274 F81 f
|
|
275 /C231 [ 12 0 -5 12 10 12 15 0 10 <07c01fc03860306030003000300038601fe00fc00600070001800f800f00> ] g
|
|
276 (\347) s F00 f
|
|
277 (ais\)) s ( ) s /C66X [ 12 0 0 12 14 12 14 0 14 <3f003f8031c030c030c031803f803fc030c03060306030e03fc03f80> ] g
|
|
278 (Bonjour, Salut) s n
|
|
279 (German \(Deutsch Nord\)) s ( ) s (Guten Tag) s n
|
|
280 (German \(Deutsch S) s F81 f
|
|
281 /C252 [ 12 0 0 12 14 12 14 0 14 <18c018c00000000030603060306030603060306030e039e01f600e60> ] g
|
|
282 (\374) s F00 f
|
|
283 (d\)) s ( ) s (Gr) s F81 f
|
|
284 /C223 [ 12 0 0 12 14 12 14 0 14 <0f801fc038e03060306030e033c033e030e03060306030e033c03380> ] g
|
|
285 (\374\337) s F00 f
|
|
286 ( Gott) s n
|
|
287 (Greek \() s /F86 /FF86 24 [0 -5 12 19] 0 true nf
|
|
288 F86 f
|
|
289 /C199 [ 12 0 0 12 14 12 14 0 14 <3060306030603060306030603fe03fe0306030603060306030603060> ] g
|
|
290 /C235 [ 12 0 0 12 14 12 14 0 14 <1c001c000600060003000300078007800d800cc018c018c030603060> ] g
|
|
291 /C221 [ 12 0 0 12 16 12 16 0 16 <0600060006000600000000000f801fc0300030003f803f80300030001fc00f80> ] g
|
|
292 /C237 [ 12 0 0 12 10 12 10 0 10 <306030603060306030e030c031c037803f003c00> ] g
|
|
293 /C233 [ 12 0 0 12 10 12 10 0 10 <0600060006000600060006000600060007800380> ] g
|
|
294 /C234 [ 12 0 0 12 10 12 10 0 10 <30c031c0338037003e003e003700338031c030c0> ] g
|
|
295 /C225 [ 12 0 0 12 10 12 10 0 10 <1c603e60634061c06180618061c063403e601c60> ] g
|
|
296 (\307\353\353\335\355\351\352\341) s F00 f
|
|
297 (\)) s ( ) s F86 f
|
|
298 /C195 [ 12 0 0 12 14 12 14 0 14 <3fe03fe0300030003000300030003000300030003000300030003000> ] g
|
|
299 /C229 [ 12 0 0 12 10 12 10 0 10 <0f801fc0380030003f803f80300038001fc00f80> ] g
|
|
300 /C220 [ 12 0 0 12 16 12 16 0 16 <0600060006000600000000001c603e60634061c06180618061c063403e601c60> ] g
|
|
301 (\303\345\351\334) s F00 f
|
|
302 ( ) s F86 f
|
|
303 /C243 [ 12 0 0 12 10 12 10 0 10 <1fe03fe07300618061806180618073803f001e00> ] g
|
|
304 /C242 [ 12 0 -3 12 10 12 13 0 10 <0fc01fe0386030003000300038001c000fc007e000601fe01fc0> ] g
|
|
305 (\363\341\362) s n
|
|
306 F00 f
|
|
307 /C119 [ 12 0 0 12 10 12 10 0 10 <30603060306030603260376037603de038e03060> ] g
|
|
308 (Hebrew) s ( ) s ( ) s ( ) s /F88 /FF88 24 [0 -5 12 19] 0 true nf
|
|
309 F88 f
|
|
310 /C237 [ 12 0 0 12 12 12 12 0 12 <3fc03fe00c601c601860186018601860186018601fe00fc0> ] g
|
|
311 /C229 [ 12 0 0 12 12 12 12 0 12 <1e001f000300030003000300030003000300030003000300> ] g
|
|
312 /C236 [ 12 0 0 12 15 12 15 0 15 <0c001c0030003fc03fe000600060006000e001c003800300060006000600> ] g
|
|
313 /C249 [ 12 0 0 12 12 12 12 0 12 <66606660666066606660666066606c607cc071c07f807e00> ] g
|
|
314 (\355\345\354\371) s n
|
|
315 F00 f
|
|
316 /C73X [ 12 0 0 12 14 12 14 0 14 <1f801f8006000600060006000600060006000600060006001f801f80> ] g
|
|
317 (Italiano) s ( ) s ( ) s /C67X [ 12 0 0 12 14 12 14 0 14 <0f801fc038e03060300030003000300030003000306038e01fc00f80> ] g
|
|
318 (Ciao, Buon giorno) s n
|
|
319 (Maltese) s ( ) s ( ) s ( ) s (Ciao) s n
|
|
320 /C86X [ 12 0 0 12 14 12 14 0 14 <60606060606030c030c030c019801980198009000f000f0006000600> ] g
|
|
321 (Nederlands, Vlaams) s ( ) s (Hallo, Dag) s n
|
|
322 (Norwegian \(Norsk\)) s ( ) s (Hei, God dag) s n
|
|
323 (Polish) s ( ) s ( ) s ( ) s (Gen Dobr) s F81 f
|
|
324 /C233 [ 12 0 0 12 15 12 15 0 15 <030007000c00000000000f801fc0386030603fe03fe0300030601fe00fc0> ] g
|
|
325 (\351) s n
|
|
326 F00 f
|
|
327 (Russian \() s /F8c /FF8c 24 [0 -5 12 19] 0 true nf
|
|
328 F8c f
|
|
329 /C192 [ 12 0 0 12 14 12 14 0 14 <3f803fc030e03060306030e03fc03f80300030003000300030003000> ] g
|
|
330 /C227 [ 12 0 -5 12 10 12 15 0 10 <30603060306038e018c01dc00d800f800700070006000e000c001c001800> ] g
|
|
331 /C225 [ 12 0 0 12 10 12 10 0 10 <07c01fc03860306030003000300038601fe00fc0> ] g
|
|
332 /C218 [ 12 0 0 12 10 12 10 0 10 <30e031e0338037003e003f00338031c030e03060> ] g
|
|
333 /C216 [ 12 0 0 12 10 12 10 0 10 <3060306030e031e0336036603c60386030603060> ] g
|
|
334 /C217 [ 12 0 0 12 15 12 15 0 15 <18c018c00f80000000003060306030e031e0336036603c60386030603060> ] g
|
|
335 (\300\343\341\341\332\330\331) s F00 f
|
|
336 (\)) s ( ) s F8c f
|
|
337 /C183 [ 12 0 0 12 14 12 14 0 14 <0f801fc030603060006000c00780078000c00060306030601fc00f80> ] g
|
|
338 /C212 [ 12 0 0 12 10 12 10 0 10 <07e007e00c600c6018601860306030603fe03fe0> ] g
|
|
339 /C224 [ 12 0 -4 12 10 12 14 0 10 <338037c03ce038603060306038603ce037c033803000300030003000> ] g
|
|
340 /C208 [ 12 0 0 12 10 12 10 0 10 <07800fc01860006007e01fe0306030e03fe01f60> ] g
|
|
341 /C210 [ 12 0 0 12 10 12 10 0 10 <3f003f8030c030c03f803fc030e030603fc03f80> ] g
|
|
342 /C226 [ 12 0 0 12 10 12 10 0 10 <7fe07fe006000600060006000600060006000600> ] g
|
|
343 /C213 [ 12 0 0 12 10 12 10 0 10 <0f801fc0386030603fe03fe0300030601fe00fc0> ] g
|
|
344 (\267\324\340\320\322\341\342\322\343\331\342\325) s F00 f
|
|
345 (!) s n
|
|
346 (Spanish \(Espa) s F81 f
|
|
347 /C241 [ 12 0 0 12 15 12 15 0 15 <1c20366023c000000000338037c03c603860306030603060306030603060> ] g
|
|
348 (\361) s F00 f
|
|
349 (ol\)) s ( ) s F81 f
|
|
350 /C161 [ 12 0 0 12 15 12 15 0 15 <06000f000600000000000600060006000600060006000600060006000600> ] g
|
|
351 (\241) s F00 f
|
|
352 (Hola!) s n
|
|
353 (Swedish \(Svenska\)) s ( ) s (Hej, Goddag) s n
|
|
354 (Thai \() s /F85 /FF85 24 [0 -5 12 24] 14 true nf
|
|
355 F85 f
|
|
356 /C192 [ 12 0 0 12 13 12 13 0 13 <1f803fc071c018c030c030c030c030c030c030c050c050c020c0> ] g
|
|
357 /C210 [ 12 0 0 12 13 12 13 0 13 <1f803fc031c000c000c000c000c000c000c000c000c000c000c0> ] g
|
|
358 /C201 [ 12 0 0 12 13 12 13 0 13 <30c048c078c038c018c032e035e033c030c030c030c03fc01f80> ] g
|
|
359 /C228 [ 12 0 0 12 16 12 16 0 16 <73807f800d8001800180018001800180018001800180018001c001a001a000c0> ] g
|
|
360 /C183 [ 12 0 0 12 13 12 13 0 13 <3bc04ee03c600c60186018601860186018601860186018601860> ] g
|
|
361 /C194 [ 12 0 0 12 13 12 13 0 13 <38c064c078c060c07ec01ec038c070c060c060c060c07fc07fc0> ] g
|
|
362 (\300\322\311\322\344\267\302) s F00 f
|
|
363 (\)) s ( ) s ( ) s F85 f
|
|
364 /C202 [ 12 0 0 12 15 12 15 0 15 <006001e01f003f8071c060c003c00fc01cc030c060c060c070c048c030c0> ] g
|
|
365 (\312) s /C199 [ 12 0 0 12 13 12 13 0 13 <1f003f8071c060c000c000c000c000c000c008c015c017800f00> ] g
|
|
366 (\307) cs1 /C209 [ 12 0 15 12 19 12 4 0 19 <103028702fe01f80> ] g
|
|
367 (\321) cs2 (\312) s /C180 [ 12 0 0 12 13 12 13 0 13 <1f803fc070e060606660696067606360636066606c6078607060> ] g
|
|
368 (\264) cs1 /C213 [ 12 0 14 12 19 12 5 0 19 <00600fe018603fe03fe0> ] g
|
|
369 (\325) cs2 /C164 [ 12 0 0 12 13 12 13 0 13 <1f803fc070e0606066606d606d607e6078607860706070607060> ] g
|
|
370 (\244) s /C195 [ 12 0 0 12 13 12 13 0 13 <3f0071c060007f8071c000c000c000c000c008c015c017c00f80> ] g
|
|
371 (\303) cs1 (\321) cs2 /C186 [ 12 0 0 12 13 12 13 0 13 <30c058c058c038c018c030c030c030c030c030c030c03fc01f80> ] g
|
|
372 (\272) s F00 f
|
|
373 (, ) s F85 f
|
|
374 (\312) s (\307) cs1 (\321) cs2 (\312) s (\264) cs1 (\325) cs2 (\244) cs1 /C232 [ 12 0 20 12 23 12 3 0 23 <018001800180> ] g
|
|
375 (\350) cs2 /C208 [ 12 0 3 12 10 12 7 0 10 <198027801f000000198027801f00> ] g
|
|
376 (\320) s n
|
|
377 F00 f
|
|
378 (Turkish \(T) s F81 f
|
|
379 (\374) s F00 f
|
|
380 (rk) s F81 f
|
|
381 (\347) s F00 f
|
|
382 (e\)) s ( ) s (Merhaba) s n
|
|
383 (Vietnamese \(Ti) s /Fa2 /FFa2 24 [0 -5 12 19] 0 true nf
|
|
384 Fa2 f
|
|
385 /C170 [ 12 0 0 12 16 12 16 0 16 <06000c0012000f8018c020200f801fc0386030603fe03fe0300030601fe00fc0> ] g
|
|
386 (\252) s F00 f
|
|
387 (ng Vi) s Fa2 f
|
|
388 /C174 [ 12 0 -3 12 14 12 17 0 14 <02000f8018c020200f801fc0386030603fe03fe0300030601fe00fc0000003000300> ] g
|
|
389 (\256) s F00 f
|
|
390 (t\)) s ( ) s (Ch) s Fa2 f
|
|
391 /C224 [ 12 0 0 12 15 12 15 0 15 <060003000080000007800fc01860006007e01fe0306030e031e03f601e60> ] g
|
|
392 (\340) s F00 f
|
|
393 (o b) s Fa2 f
|
|
394 /C213 [ 12 0 -3 12 11 12 14 0 11 <07800fc01860006007e01fe0306030e031e03f601e60000003000300> ] g
|
|
395 (\325) s F00 f
|
|
396 (n) s n
|
|
397 (Yoguslavian) s ( ) s ( ) s /C90X [ 12 0 0 12 14 12 14 0 14 <7fe07fe0006000e001c0038007000e001c003800700060007fe07fe0> ] g
|
|
398 (Zdravo) s n
|
|
399 n
|
|
400 /C74X [ 12 0 0 12 14 12 14 0 14 <0060006000600060006000600060006000600060306030e01fc00f80> ] g
|
|
401 (Japanese \() s /F92 /FF92 24 [0 -5 24 19] 0 false nf
|
|
402 F92 f
|
|
403 /C0XX [ 24 0 -5 24 18 24 23 0 18 <0800300FFFF80C00300C00300C00300C00300C00300C00300C00300C00300FFFF00C00300C00300C00300C00300C00300C00300C00300C00300C00300FFFF00C00300C0030> ] g
|
|
404 /C1XX [ 24 0 -5 24 19 24 24 0 19 <001C00001800001800001800001800001806FFFFFF007A00007A0000D90000D9000198800198C00318600618700C183C18181F33FFCEC01806001800001800001800001800001800> ] g
|
|
405 /C2XX [ 24 0 -5 24 19 24 24 0 19 <03000C7F9FFE000180000180018180FFC198001FFC0003180303187F831800031800031A033FFF7F800000000000080C418FFE7FCC0C618C0C618C0C618C0C618C0C7F8FFC618C0C> ] g
|
|
406 (\000\001\002) s F00 f
|
|
407 (\)) s ( ) s ( ) s F92 f
|
|
408 /C3XX [ 24 0 -3 24 17 24 20 0 17 <02000001F000007FC00007C0001C000060000000000000000000000000000000000000000800001000001000001000001000000C000007FFF001FFF0> ] g
|
|
409 /C4XX [ 24 0 -4 24 18 24 22 0 18 <001800000C00001C0000180000380000300000600000600000C0000080000180000300000270000798000E18000C1802181806180C0C300C18700C70600FE0600780> ] g
|
|
410 /C5XX [ 24 0 -4 24 18 24 22 0 18 <0800000C00000C00000C01E00C0FF818303C1800601800801800001000003000003000003100003100003210003220003220001430001C1FFE1C07FC0C0000080000> ] g
|
|
411 /C6XX [ 24 0 -4 24 19 24 23 0 19 <01800000C00000C00000800001860021BF003FE0001980000100000100000300000303C0021C3002701802C00C07000C07000C0600180000380000700000E0000380001C00> ] g
|
|
412 /C7XX [ 24 0 -4 24 18 24 22 0 18 <3001801800601C006018006018004018004030204E301FFC300C403000402000406000406400406400606400606C0060680FE028307038407C3840EE183FC6100F00> ] g
|
|
413 (\003\004\005\006\007) s F00 f
|
|
414 (, ) s /F89 /FF89 24 [0 -5 12 19] 0 true nf
|
|
415 F89 f
|
|
416 /C186 [ 12 0 0 12 15 12 15 0 15 <60403fe03fe0004000400040004000400040004000c000c000c07fc03fc0> ] g
|
|
417 /C221 [ 12 0 -4 12 15 12 19 0 15 <6000200030001000182018201860004000c0008001800100030006000e002c00380038003000> ] g
|
|
418 /C198 [ 12 0 -1 12 12 12 13 0 12 <3fc03f80000000000000000000000000000000004ff07ff07000> ] g
|
|
419 /C193 [ 12 0 -4 12 16 12 20 0 16 <00c00fc03f007a0002000200020003e05fe07e00660006000600060004000c000800180030003000> ] g
|
|
420 /C202 [ 12 0 -3 12 16 12 19 0 16 <02001b000d000d80088008c018c01840186010601020302030202020202060304030c0008000> ] g
|
|
421 (\272\335\306\301\312) s F00 f
|
|
422 (, ) s F92 f
|
|
423 /C8XX [ 24 0 -5 24 19 24 24 0 19 <40639C7FF31862031862031A620FFF7FE3186203186203186203F87FE3186203186203186263F87FF31860631800631855631A556FFF506000C06210C0E30800C60C07CC06019006> ] g
|
|
424 (\010) s /F94 /FF94 24 [1 -4 25 20] 0 false nf
|
|
425 F94 f
|
|
426 /C0XX [ 24 1 -3 23 19 22 22 1 19 <0403007e12104812604802484cfffc7e0680480a404812206e22385ee228483e204824284947f87f6a2001ea200d1a206d0bfc6d12206d1020a12020814020028020> ] g
|
|
427 (\000) s n
|
|
428 F00 f
|
|
429 (Chinese \() s /F91 /FF91 24 [0 -5 24 19] 0 false nf
|
|
430 F91 f
|
|
431 /C0XX [ 24 0 -5 24 19 24 24 0 19 <001000001c000018000018000018001018181ffffc1818181818181818181818181818181818181ffff8181818101810001800001800001800001800001800001800001800001000> ] g
|
|
432 /C1XX [ 24 0 -4 24 19 24 23 0 19 <003000001800001c0000080000080c7ffffe01018001018001018000818000818000c300004300006600002600001c00001c0000360000638000c1e00300fe0c0030300000> ] g
|
|
433 (\000\001) s F00 f
|
|
434 (,) s F91 f
|
|
435 /C2XX [ 24 0 -5 24 19 24 24 0 19 <0200800180c000c1800082187ffffc00c30010c3200cc33006c36002c34000c30c7ffffe00000004006007fff006006006006007ffe006006006006006006007ffe0060060040040> ] g
|
|
436 /C3XX [ 24 0 -4 24 18 24 22 0 18 <00000818fffc0c0030060c60060780044218007ffc0063180c6318fe63180c7ff80c63180c63180c63180c7ff80c63180c63180c63780c421012000071fffe207ff8> ] g
|
|
437 /C4XX [ 24 0 -4 24 18 24 22 0 18 <1800380c01fc0e7fc006030004030000030000030c1cfffefe03000c03000c03000c23180c3ffc0c30180c30180c30180cb0180f30180e30181c3ff8083018002010> ] g
|
|
438 (\002\003\004) s F00 f
|
|
439 (,) s F91 f
|
|
440 /C5XX [ 24 0 -4 24 18 24 22 0 18 <3000001800300cfff80820300120300120606120603210601a10601210c00408c0040980080d80180700780700180700180d801818c018307018603c18801f0b0008> ] g
|
|
441 /C6XX [ 24 0 -4 24 18 24 22 0 18 <1800180cfffc0e0c00060c00040c6000fff00018600c1860fe18600c186c0dfffe0c00000c20300c3ff80c30300cb0300d30300e30300e30301c3ff0083030002020> ] g
|
|
442 (\005\006) s F00 f
|
|
443 (\)) s ( ) s F91 f
|
|
444 /C7XX [ 24 0 -5 24 19 24 24 0 19 <020800038e00030c0007180006180006300c0c3ffe0e620c1c63903cc3002c83004d23008c3b600c33300c63180c630c0c430c0cc3060c83060d03040c03000c3f000c0e00080400> ] g
|
|
445 /C8XX [ 24 0 -5 24 19 24 24 0 19 <0800000e00000c00080c0ffc0c00180cc0107fe0a018c0c018c0c018c0c018c0c018c0cc30dffe30c0c03180c01980c00700c00380c006c0c00c60c01820c0200fc0c00380000100> ] g
|
|
446 (\007\010) s n
|
|
447 F00 f
|
|
448 (Cantonese \() s /F98 /FF98 24 [0 -5 24 19] 0 false nf
|
|
449 F98 f
|
|
450 /C0XX [ 24 0 -5 24 19 24 24 0 19 <00e0000980100ffff80c02380c0f300c78300d19300c9a300dffb00c3c300c5a300c99300c00300ffff0000002ffffff0600000600080ffffc0c001c0000180000300007f00001e0> ] g
|
|
451 /C1XX [ 24 0 -5 24 19 24 24 0 19 <00000c703ffe380180180180098180ffc184001ffe00030e01030c7f830c0006180006197f3fff0000000000004110047f9ffe63980e63180c63180c63180c63180c7f1ffc63180c> ] g
|
|
452 (\000\001) s F00 f
|
|
453 (,) s F98 f
|
|
454 /C2XX [ 24 0 -5 24 19 24 24 0 19 <001c004018067fffff60000060c1806ffffe60c18060c18060ff806000067fffff60180060180067fff866183866183047fff0461830c6183087fff080c00081c3e0878078b8001c> ] g
|
|
455 /C3XX [ 24 0 -5 24 19 24 24 0 19 <001c00001800001806ffffff0018001018081ffffc18181c1818181818181ffff81818181818181818181ffff8187c18007a0000db000199800318e006187818181fe01806001800> ] g
|
|
456 /C4XX [ 24 0 -5 24 19 24 24 0 19 <00001c38007e1c03c00c1d8004c180ffe180000180000186013fff7f81800001800001807f8180001184001ffe40980e7fd80c61980c61980c61980c61980c61980c7f9ffc61980c> ] g
|
|
457 (\002\003\004) s F00 f
|
|
458 (\)) s ( ) s ( ) s F98 f
|
|
459 /C5XX [ 24 0 -5 24 19 24 24 0 19 <1000081ffffc18001c1800181800181ffff81800181800181800181800181ffff818181800180000180000180400180effffff001800001800001800001800001800001800001800> ] g
|
|
460 /C6XX [ 24 0 -5 24 19 24 24 0 19 <0800080ffffc0c001c0c00180ffff80c00180c00180ffff80000011fffff18000018000019fff81800001800031fffff31820831831c2181b06180e0418360419c3881f01f80c006> ] g
|
|
461 (\005\006) s F00 f
|
|
462 (, ) s F98 f
|
|
463 /C7XX [ 24 0 -5 24 19 24 24 0 19 <061c000618000618000c30000c30020c3fff1860c31840c618c0c83c80c03d00c06c00c04c0ed0cc0cc88c0ccc0c18c40c18c60c30c60c20c70c60c30c40c30c80c00c0fc00c0380> ] g
|
|
464 /C8XX [ 24 0 -5 24 19 24 24 0 19 <0e00000c00040c3ffe0c00070c400cffe01818e0a018c0c018c0c030c0c030c0c631bfff6180c06180c07b00c06700c00300c00780c00cc0c00c60c01840c03000c0400fc0800380> ] g
|
|
465 (\007\010) s n
|
|
466 F00 f
|
|
467 (Hangul \() s /F93 /FF93 24 [0 -5 24 19] 0 false nf
|
|
468 F93 f
|
|
469 /C0XX [ 24 0 -3 24 18 24 21 0 18 <0003000801c007c0c00000c04018c03ffcc01000c00380cc0c60fe1830c01830c01830c00c60c00380c00000c00000800700000180000180000180c000ffe0> ] g
|
|
470 /C1XX [ 24 0 -3 24 18 24 21 0 18 <0400c003ffe00100c00000c00000c000018000010040010c3ffffe10000000000000000004018003ffc000018000010007ffc001800001800001818000ffc0> ] g
|
|
471 (\000\001) s F00 f
|
|
472 (\)) s ( ) s ( ) s ( ) s F93 f
|
|
473 /C2XX [ 24 0 -3 24 18 24 21 0 18 <0003000001c00000c00700c018c0c03060c03060c03060cc3060fe3060c018c0c00700c00000c00000c00000800700000180000180000180000180c000ffe0> ] g
|
|
474 /C3XX [ 24 0 -4 24 18 24 22 0 18 <0001800000e0000060600060384060183fe0180060184060183fe0180060180e601ff0600f0060000e40003b800060c000c06000c06000c0600060c0003b80000e00> ] g
|
|
475 /C4XX [ 24 0 -4 24 18 24 22 0 18 <0003000001c00800c007c0c00000c04018c03ffcc01000c00000c00380cc0c60fe1830c01830c01830c01830c00c60c00380c00000c00000c00000c00000c0000080> ] g
|
|
476 /C5XX [ 24 0 -4 24 18 24 22 0 18 <0001800000e0001860000e60030660018660018660030660030660067e600626600d066018866010c66020c660400660000660000660000660000460000060000040> ] g
|
|
477 /C6XX [ 24 0 -1 24 16 24 17 0 16 <003c0000e7000181800300c00300c00300c001818000e700003c0000000000060001830000c30000c30040c30c3ffffe100000> ] g
|
|
478 (\002\003\004\005\006) s F00 f
|
|
479 (, ) s F93 f
|
|
480 /C7XX [ 24 0 -4 24 18 24 22 0 18 <0001800000e000c06000606000c06000c0600180600300600680600c60601838606018600000400001800300e001c06000ffe000c06000c06000c06000ffe0008040> ] g
|
|
481 /C8XX [ 24 0 -4 24 18 24 22 0 18 <0001800000e00000600000600000606000603800601800601800601800601800601806601878601fc0600e0060000060000060000060000060000060000060000040> ] g
|
|
482 /C9XX [ 24 0 -4 24 18 24 22 0 18 <0003000001c00000c00000c0218cc01ffec0098cc0018cc00308c00218cc0610fe0430c00820c01040c04080c00100c00000c00000c00000c00000c00000c0000080> ] g
|
|
483 (\002\003\004\007\010\011) s n
|
|
484 n
|
|
485 F00 f
|
|
486 /C75X [ 12 0 0 12 14 12 14 0 14 <306030c03180330036003c0038003c0036003300318030c030603020> ] g
|
|
487 /C53X [ 12 0 0 12 14 12 14 0 14 <3fc03fc03000300030003f803fc000e000600060306030e01fc00f80> ] g
|
|
488 /C58X [ 12 0 0 12 11 12 11 0 11 <06000f000f00060000000000000006000f000f000600> ] g
|
|
489 (Difference among chinese characters in GB, JIS, KSC, BIG5:) s n
|
|
490 ( ) s (GB -- ) s F91 f
|
|
491 /C9XX [ 24 0 -4 24 18 24 22 0 18 <0000600ffff000000000000000000000000000000c7ffffe00c60000c60000c60000c60000c60000c60000c60400c6040186040186040306060607fe1803fc600000> ] g
|
|
492 /C10X [ 24 0 -4 24 19 24 23 0 19 <01000001c00001800003001803fffc0600000c00c01bffe01000002000004001801fffc00001800001800001800001800001800001840000c40000c400006400003e00001e> ] g
|
|
493 (\011\012) s F00 f
|
|
494 ( ) s F91 f
|
|
495 /C11X [ 24 0 -5 24 17 24 22 0 17 <0000183ffffc00c18000c18000c18000c18000c18000c18000c18c7ffffe00c18000c1800181800181800181800301800301800601800c0180180180600180000100> ] g
|
|
496 /C12X [ 24 0 -5 24 19 24 24 0 19 <0020000439800730c00c30e00c306018602018600c3ffffe10c00000c00000c06000fff001a0c001a0c0031180031180060f00040600080f001019802030e040c07e070018180000> ] g
|
|
497 (\013\014) s F00 f
|
|
498 ( ) s n
|
|
499 ( ) s (JIS -- ) s F92 f
|
|
500 /C9XX [ 24 0 -5 24 18 24 23 0 18 <0000301FFFF8000000000000000000000000000006FFFFFF0186000186000186000186000186000186000306000306000306020606020606020C06031807FF3003FEC00000> ] g
|
|
501 /C10X [ 24 0 -5 24 19 24 24 0 19 <0400000700000600180FFFFC0C000018000033FFF02000004000008000603FFFF0000060001060181C6006186003B06000E06200F03201B832031C1A060C1E1C0C0E300007C00003> ] g
|
|
502 (\011\012) s F00 f
|
|
503 ( ) s F92 f
|
|
504 /C11X [ 24 0 -5 24 19 24 24 0 19 <4064067FF7FF6066066066067FE7FE6066066066067FE7FE6066066000066000C667FFE660C60660C60660C6666FFFF660C60660C60660C60660860661860661060666063E60000C> ] g
|
|
505 /C12X [ 24 0 -5 24 19 24 24 0 19 <0018403FF8600034C000650810620C0CC3180581A00300C00600600FFFF818C31F30C30EC0C30600C3003FFFFC00C30000C3000183000183020303020203020403031803FF6001FE> ] g
|
|
506 (\013\014) s n
|
|
507 F00 f
|
|
508 ( ) s (KSC -- ) s F93 f
|
|
509 /C10X [ 24 0 -4 24 17 24 21 0 17 <0000600ffff000000000000000000000000000000c7ffffe00c30000c30000c30000c30000c3000183000183040303040303040603040c03061803fe6001fc> ] g
|
|
510 /C11X [ 24 0 -4 24 18 24 22 0 18 <0700000600300ffff80c000018006013fff02000004000601ffff000c06010c66008c4600cc86000d3603fffe001e06003d06406cc340cc63418c33630c31e40c00c> ] g
|
|
511 (\012\013) s F00 f
|
|
512 ( ) s F93 f
|
|
513 /C12X [ 24 0 -4 24 18 24 22 0 18 <20640c3ff7fe30660c30660c3fe7fc30660c30660c3fe7fc30660c30004c33ffec30630c30630c30632c37fffc30630c30c30c30c30c31830c33030c34037c300018> ] g
|
|
514 /C13X [ 24 0 -4 24 18 24 22 0 18 <0018c01ffd80001a180431300361c001c0c00180700e68de77ffec006cc0086cc40fecfc0c18781830101ffff81864300062600061c00061c000c3700fcc1e033004> ] g
|
|
515 (\014\015) s n
|
|
516 F00 f
|
|
517 ( ) s (BIG5 -- ) s F98 f
|
|
518 /C9XX [ 24 0 -5 24 18 24 23 0 18 <0000301ffff800000000000000000000000000000000000400000effffff0186000186000186000186000306000306020306020606020606020c06021806033007ffc003fe> ] g
|
|
519 /C10X [ 24 0 -5 24 19 24 24 0 19 <0700000600060fffff0c00001800001ffffc3000006000005ffff88000380072301867300c64300c6830006330ffffb001e0310378310666190c63993061cdc0608d006007006002> ] g
|
|
520 (\011\012) s F00 f
|
|
521 ( ) s F98 f
|
|
522 /C11X [ 24 0 -5 24 19 24 24 0 19 <4044027fe7ff60e60760c6067fc7fe60c60660c6067fc7fe60000660000667ffc660c60660c60660c60660c6466fffe660c60660c60661860661860663060666060668067e60001c> ] g
|
|
523 /C12X [ 24 0 -5 24 19 24 24 0 19 <0048607fe4c000c68610c30c0d81900700e00600780c001f3fcfc6c1ccc0018cc4218cc43f98fe30107c6020006000007fdff861c4300184600182c00183800383c03f0c7f06700e> ] g
|
|
524 (\013\014) s n
|
|
525 ep
|
|
526 end
|