summaryrefslogtreecommitdiff
path: root/fpcdocs/pics/ide/codetemp.eps
blob: f55a62dbeb1220140c4feddd843b6bf13cc730e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (codetemp.eps)
%%CreationDate: (Tue Nov 28 23:50:39 2000)
%%BoundingBox: 0 0 365 237
%%DocumentData: Clean7Bit
%%LanguageLevel: 1
%%Pages: 0
%%EndComments

%%BeginDefaults
%%PageOrientation: Portrait
%%EndDefaults

%%BeginProlog
%
% Display a color image.  The image is displayed in color on
% Postscript viewers or printers that support color, otherwise
% it is displayed as grayscale.
%
/buffer 512 string def
/byte 1 string def
/color_packet 3 string def
/pixels 768 string def

/DirectClassPacket
{
  %
  % Get a DirectClass packet.
  %
  % Parameters:
  %   red.
  %   green.
  %   blue.
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile color_packet readhexstring pop pop
  compression 0 gt
  {
    /number_pixels 3 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add 3 mul def
  } ifelse
  0 3 number_pixels 1 sub
  {
    pixels exch color_packet putinterval
  } for
  pixels 0 number_pixels getinterval
} bind def

/DirectClassImage
{
  %
  % Display a DirectClass image.
  %
  systemdict /colorimage known
  {
    columns rows 8
    [
      columns 0 0
      rows neg 0 rows
    ]
    { DirectClassPacket } false 3 colorimage
  }
  {
    %
    % No colorimage operator;  convert to grayscale.
    %
    columns rows 8
    [
      columns 0 0
      rows neg 0 rows
    ]
    { GrayDirectClassPacket } image
  } ifelse
} bind def

/GrayDirectClassPacket
{
  %
  % Get a DirectClass packet;  convert to grayscale.
  %
  % Parameters:
  %   red
  %   green
  %   blue
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile color_packet readhexstring pop pop
  color_packet 0 get 0.299 mul
  color_packet 1 get 0.587 mul add
  color_packet 2 get 0.114 mul add
  cvi
  /gray_packet exch def
  compression 0 gt
  {
    /number_pixels 1 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add def
  } ifelse
  0 1 number_pixels 1 sub
  {
    pixels exch gray_packet put
  } for
  pixels 0 number_pixels getinterval
} bind def

/GrayPseudoClassPacket
{
  %
  % Get a PseudoClass packet;  convert to grayscale.
  %
  % Parameters:
  %   index: index into the colormap.
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile byte readhexstring pop 0 get
  /offset exch 3 mul def
  /color_packet colormap offset 3 getinterval def
  color_packet 0 get 0.299 mul
  color_packet 1 get 0.587 mul add
  color_packet 2 get 0.114 mul add
  cvi
  /gray_packet exch def
  compression 0 gt
  {
    /number_pixels 1 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add def
  } ifelse
  0 1 number_pixels 1 sub
  {
    pixels exch gray_packet put
  } for
  pixels 0 number_pixels getinterval
} bind def

/PseudoClassPacket
{
  %
  % Get a PseudoClass packet.
  %
  % Parameters:
  %   index: index into the colormap.
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile byte readhexstring pop 0 get
  /offset exch 3 mul def
  /color_packet colormap offset 3 getinterval def
  compression 0 gt
  {
    /number_pixels 3 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add 3 mul def
  } ifelse
  0 3 number_pixels 1 sub
  {
    pixels exch color_packet putinterval
  } for
  pixels 0 number_pixels getinterval
} bind def

/PseudoClassImage
{
  %
  % Display a PseudoClass image.
  %
  % Parameters:
  %   class: 0-PseudoClass or 1-Grayscale.
  %
  currentfile buffer readline pop
  token pop /class exch def pop
  class 0 gt
  {
    currentfile buffer readline pop
    token pop /depth exch def pop
    /grays columns 8 add depth sub depth mul 8 idiv string def
    columns rows depth
    [
      columns 0 0
      rows neg 0 rows
    ]
    { currentfile grays readhexstring pop } image
  }
  {
    %
    % Parameters:
    %   colors: number of colors in the colormap.
    %   colormap: red, green, blue color packets.
    %
    currentfile buffer readline pop
    token pop /colors exch def pop
    /colors colors 3 mul def
    /colormap colors string def
    currentfile colormap readhexstring pop pop
    systemdict /colorimage known
    {
      columns rows 8
      [
        columns 0 0
        rows neg 0 rows
      ]
      { PseudoClassPacket } false 3 colorimage
    }
    {
      %
      % No colorimage operator;  convert to grayscale.
      %
      columns rows 8
      [
        columns 0 0
        rows neg 0 rows
      ]
      { GrayPseudoClassPacket } image
    } ifelse
  } ifelse
} bind def

/DisplayImage
{
  %
  % Display a DirectClass or PseudoClass image.
  %
  % Parameters:
  %   x & y translation.
  %   x & y scale.
  %   label pointsize.
  %   image label.
  %   image columns & rows.
  %   class: 0-DirectClass or 1-PseudoClass.
  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
  %   hex color packets.
  %
  gsave
  currentfile buffer readline pop
  token pop /x exch def
  token pop /y exch def pop
  x y translate
  currentfile buffer readline pop
  token pop /x exch def
  token pop /y exch def pop
  currentfile buffer readline pop
  token pop /pointsize exch def pop
  /Helvetica findfont pointsize scalefont setfont
  x y scale
  currentfile buffer readline pop
  token pop /columns exch def
  token pop /rows exch def pop
  currentfile buffer readline pop
  token pop /class exch def pop
  currentfile buffer readline pop
  token pop /compression exch def pop
  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
  grestore
} bind def
%%EndProlog
%%Page:  1 1
%%PageBoundingBox: 0 0 366 238
userdict begin
%%BeginData:
DisplayImage
0 0
366 238
12.000000
366 238
1
0
0
9
c0c0c0
f8fcf8
00fc00
f8fc00
008000
000080
000000
008080
00fcf8
00ff006d00120103000b0103005b0103000c010200090105001a010300a7001201010005
020300050101005a010100010101000c0101000901000000010100000100001c0101000c
010000990012010100050203000501010059010100020101000c0101000b0101001e0101
000b010100990001010e0001010100050203000501010001014f00070101000601030003
010400020103000401010004010300020105000101010000010200040101000301030002
01050002010300030103000a017c00010101000e01010005020300050101005901010005
010100010101000101010001010100010101000101010003010100030101000101010001
010100000100000001010001010100010101000301010006010100020101000401010001
01010001010100010101008600010101000e010100050203000501010059010100050101
000101010001010100010101000101050003010100030105000101010000010000000101
000101010001010100030101000301040002010100040105000201010089000101010001
010a0001010100050203000501010001014f000701010002010100000101000101010001
010100010101000101010007010100030101000501010000010000000101000101010001
0101000301010002010100010101000201010004010100080101000a017a000100010101
00010101000a01010005020300050101005a010100010101000001010001010100010101
000101010001010100010101000301010003010100010101000101010000010000000101
000101010001010100030101000201010001010100020101000001010001010100010101
00010101000101010082010100010001010100010101000a01030003020300030103005b
010300020103000301020000010100010103000301030003010300020101000201010001
010400020105000101020000010100020102000301030003010300830101000100010101
0001010100b1010100ad01010001000101010001010100b0010300ac0101000100010101
0001010100ff006101010001000101010001010100ff0061010100010001010100010101
00ff006101010001000101010001010100ff006101010001000101010001010100ff0061
01010001000101010001010100ff006101010001000101010001010100ff006101010001
000101010001010100ff006101010001000101010001010100ff00610101000100010101
0001010100ff006101010001000101010001010100ff0061010100010001010100010101
00ff006101010001000101010001010100ff006101010001000101010001010100100305
001a010300ff002b010100010001010100010101001003000000030100000300001c0101
000c010000ff001d01010001000101010001010100120301001e0101000b010100ff001d
010100010001010100010101001203010004010300020105000101010000010200040101
0003010300020105000201030003010300ff000b01010001000101010001010100120301
000301010001010100010101000001000000010100010101000101010003010100060101
000201010004010100010101000101010001010100ff000a010100010001010100010101
001203010003010500010101000001000000010100010101000101010003010100030104
00020101000401050002010100ff000d0101000100010101000101010012030100030101
000501010000010000000101000101010001010100030101000201010001010100020101
000401010008010100ff000b010100010001010100010101001203010003010100010101
000101010000010000000101000101010001010100030101000201010001010100020101
000001010001010100010101000101010001010100ff000a010100010001010100010101
001103030003010300020101000201010001010400020105000101020000010100020102
000301030003010300ff000b0101000100010101000101010029010100ff003501010001
00010101000101010028010300ff0034010100010001010100010101001004df0507000f
043f00180101000100010101000101010010040a010104040102040a010204bc0507000f
041906020402030204010301041800180101000100010101000101010010040a01010403
010104000101040301000405010104bc050207000503000f041806010400060104020301
0401030104180018010100010001010100010101001004100101040501010405010104bc
050207000503000f04170601040206010401030104000301041900180101000100010101
0001010100100408010304030101040401050402010104000101040201030402010404aa
050107020502000f04170601040206010401030104000301041900180101000100010101
000101010010040a01010402010404030101040501020400010104000101040101010401
01010401010104a9050107020502000f041706010402060104010303041a001801010001
00010101000101010010040a010104030101040501010405010104010101040001050401
01010401010104a9050007040501000f0417060104020601040103010400030104190607
00100101000100010101000101010010040a010104030101040501010405010104010101
04000101040501010401010104a9050007040501000f0417060104020601040103010400
03010419060700100101000100010101000101010010040a010104030101040501010400
010104020101040101010400010104010101040101010401010104a907060500000f0418
060104000601040203010401030104180607001001010001000101010001010100100408
01050400010304050102040201020401010104010103040201010401010104a907060500
000f041906020402030204010301041806070010010100010001010100010101001004df
0507000f043f06070010010100010001010100010101001004df0507000f043f06070010
010100010001010100010101001007df0500070105000701050007000017063f00100101
00010001010100010101001007e105000701050007010017063f00100101000100010101
00010101001007e0050007010500070105000017063f0010010100010001010100010101
001007df0500070105000701050007000017063f00100101000100010101000101010010
07e105000701050007010017063f0010010100010001010100010101001007e005000701
0500070105000017063f0010010100010001010100010101001007df0500070105000701
050007000068010100010001010100010101001007e10500070105000701006801010001
0001010100010101001007e0050007010500070105000068010100010001010100010101
001007df0500070105000701050007000068010100010001010100010101001007e10500
0701050007010068010100010001010100010101001007e0050007010500070105000068
010100010001010100010101001007df050007010500070105000700000f043f00180101
00010001010100010101001007e10500070105000701000f040f03060403080204040801
041a0018010100010001010100010101001007e005000701050007010500000f04100301
0402030004040801040408010404080004140018010100010001010100010101001007df
050007010500070105000700000f0410030104080801040a080104140018010100010001
010100010101001007e10500070105000701000f04100301040103000402080404020803
0402080504110018010100010001010100010101001007e005000701050007010500000f
041003040401080104010801040408010403080104140018010100010001010100010101
001007df050007010500070105000700000f041003010401030004010801040108010404
080104030801041406070010010100010001010100010101001007e10500070105000701
000f04100301040408010401080104040801040308010414060700100101000100010101
00010101001007e005000701050007010500000f04100301040203000400080104010801
040408010403080104000801041106070010010100010001010100010101001007df0500
07010500070105000700000f040f03060401080204000801040108050402080204120607
0010010100010001010100010101001007e10500070105000701000f043f060700100101
00010001010100010101001007e005000701050007010500000f043f0607001001010001
0001010100010101001007df0500070105000701050007000017063f0010010100010001
010100010101001007e105000701050007010017063f0010010100010001010100010101
001007e0050007010500070105000017063f0010010100010001010100010101001007df
0500070105000701050007000017063f0010010100010001010100010101001007e10500
0701050007010017063f0010010100010001010100010101001007e00500070105000701
05000017063f0010010100010001010100010101001007df050007010500070105000700
0068010100010001010100010101001007e1050007010500070100680101000100010101
00010101001007e0050007010500070105000068010100010001010100010101001007df
0500070105000701050007000068010100010001010100010101001007e1050007010500
07010068010100010001010100010101001007e005000701050007010500006801010001
0001010100010101001007df050007010500070105000700000f043f0018010100010001
010100010101001007e10500070105000701000f040f0301040203010428001801010001
0001010100010101001007e005000701050007010500000f040f03010402030104280018
010100010001010100010101001007df050007010500070105000700000f040f03020401
030104280018010100010001010100010101001007e10500070105000701000f040f0303
0400030104010603040206010402060104180018010100010001010100010101001007e0
05000701050007010500000f040f03060400060104010601040106010402060104180018
010100010001010100010101001007df050007010500070105000700000f040f03010400
030304000605040106010400060004000601041806070010010100010001010100010101
001007e10500070105000701000f040f0301040103020400060104050601040006000400
0601041806070010010100010001010100010101001007e005000701050007010500000f
040f03010402030104000601040106010402060104000601041906070010010100010001
010100010101001007df050007010500070105000700000f040f03010402030104010603
0403060104000601041906070010010100010001010100010101001007e1050007010500
0701000f043f06070010010100010001010100010101001007e005000701050007010500
000f043f06070010010100010001010100010101001007df050007010500070105000700
0017063f0010010100010001010100010101001007e105000701050007010017063f0010
010100010001010100010101001007e0050007010500070105000017063f001001010001
0001010100010101001007df0500070105000701050007000017063f0010010100010001
010100010101001007e105000701050007010017063f0010010100010001010100010101
001007e0050007010500070105000017063f0010010100010001010100010101001007df
0500070105000701050007000068010100010001010100010101001007e1050007010500
07010068010100010001010100010101001007e005000701050007010500006801010001
0001010100010101001007df050007010500070105000700006801010001000101010001
0101001007e105000701050007010068010100010001010100010101001007e005000701
0500070105000068010100010001010100010101001007df050007010500070105000700
000f043f0018010100010001010100010101001007e10500070105000701000f04070304
040b060304220018010100010001010100010101001007e005000701050007010500000f
0408030104000301040c0601040c060004140018010100010001010100010101001007df
050007010500070105000700000f0408030104010301040b0601040b0601041400180101
00010001010100010101001007e10500070105000701000f040803010401030104010603
04050601040306030402060504020603040a0018010100010001010100010101001007e0
05000701050007010500000f040803010401030104000601040106010404060104020601
0401060104020601040406010401060104090018010100010001010100010101001007df
050007010500070105000700000f04080301040103010400060504040601040206050402
060104040605040906070010010100010001010100010101001007e10500070105000701
000f04080301040103010400060104080601040206010406060104040601040d06070010
010100010001010100010101001007e005000701050007010500000f0408030104000301
040106010401060104040601040206010401060104020601040006010401060104010601
040906070010010100010001010100010101001007df050007010500070105000700000f
040703040403060304030605040106030404060204030603040a06070010010100010001
010100010101001007e10500070105000701000f043f0607001001010001000101010001
0101001007e005000701050007010500000f043f06070010010100010001010100010101
001007df0500070105000701050007000017063f00100101000100010101000101010010
07e105000701050007010017063f0010010100010001010100010101001007e005000701
0500070105000017063f0010010100010001010100010101001007df0500070105000701
050007000017063f0010010100010001010100010101001007e105000701050007010017
063f0010010100010001010100010101001007e0050007010500070105000017063f0010
010100010001010100010101001007df0500070105000701050007000068010100010001
010100010101001007e105000701050007010068010100010001010100010101001007e0
050007010500070105000068010100010001010100010101001007df0500070105000701
050007000068010100010001010100010101001007e10500070105000701006801010001
0001010100010101001007e0050007010500070105000068010100010001010100010101
001007df050007010500070105000700000f043f00180101000100010101000101010010
07e10500070105000701000f0409060304220603040a0018010100010001010100010101
001007e005000701050007010500000f040806010401060104230601040a001801010001
0001010100010101001007df050007010500070105000700000f04070601040206010423
0601040a0018010100010001010100010101001007e10500070105000701000f04070601
0406060304020604040306030403060304050601040a0018010100010001010100010101
001007e005000701050007010500000f0407060104090601040106010401060104010601
04010601040106010401060104040601040a0018010100010001010100010101001007df
050007010500070105000700000f04070601040606040401060104010601040106010405
060504040601040a06070010010100010001010100010101001007e10500070105000701
000f04070601040206010400060104010601040106010401060104010601040506010408
0601040a06070010010100010001010100010101001007e005000701050007010500000f
040806010401060104000601040106010401060104010601040106010401060104010601
0401060104040601040a06070010010100010001010100010101001007df050007010500
070105000700000f04090603040206020400060104000601040106010402060304030603
04030605040806070010010100010001010100010101001007e10500070105000701000f
043f06070010010100010001010100010101001007e005000701050007010500000f043f
06070010010100010001010100010101001007df05070017063f00100101000100010101
00010101001007df05070017063f0010010100010001010100010101001007e605000017
063f0010010100010001010100010101001007e605000017063f00100101000100010101
00010101001007df0500070405010017063f0010010100010001010100010101001007df
0500070405010017063f0010010100010001010100010101001007df0501070205020068
010100010001010100010101001007df0501070205020068010100010001010100010101
001007df0502070005030068010100010001010100010101001007df0502070005030068
010100010001010100010101001007df05070068010100010001010100010101001007df
0507006801010001000101010001010100ff006101010001000101010001010100ff0061
01010001000101010001010100ff006101010001000101010001010100ff006101010001
000101010001010100ff006101010001000101010001010100ff00610101000100010101
0001010100ff006101010001000101010001010100ff0061010100010001010100010101
00ff006101010001000101010001010100ff006101010001000101010001010100ff0061
01010001000101010001010100ff0061010100010001010100010101000807ff074f0507
000001010001000101010001010100080702030107040302070d06010712030207ff071c
050700000101000100010101000101010008070203010703030107000301070c0601070c
03000705030107ff071c0502070005030000010100010001010100010101000807080301
070f0601070b03010705030107ff071c0502070005030000010100010001010100010101
00080700030307030301070f0601070a03050702030107000301070203030702030407ff
070a050107020502000001010001000101010001010100080702030107020304071b0301
07050302070003010700030107010301070103010701030107ff07090501070205020000
01010001000101010001010100080702030107030301070f0601070b0301070503010701
030107000305070103010701030107ff0709050007040501000001010001000101010001
010100080702030107030301070f0601070b030107050301070103010700030107050301
0701030107ff070905000704050100000101000100010101000101010008070203010703
0301070f0601070b03010700030107020301070103010700030107010301070103010701
030107ff07100500000001010001000101010001010100080700030507000303070e0601
070c0302070203020701030107010303070203010701030107ff07100500000001010001
0001010100010101000807ff074f05070000010100010001010100010101000807ff074f
05070000010100010001010100010101000807ff074f0500070105000701050007000000
01010001000101010001010100080708030307ff07440500070105000701000001010001
00010101000101010008070a030107ff0743050007010500070105000000010100010001
0101000101010008070a030107ff07420500070105000701050007000000010100010001
01010001010100080700030307050301070303030703030307ff07340500070105000701
000001010001000101010001010100080301070103010704030107020301070103010701
03010701030107ff07320500070105000701050000000101000100010101000101010008
030507040301070303010704030507ff0731050007010500070105000700000001010001
00010101000101010008030107080301070503010702030107ff07370500070105000701
000001010001000101010001010100080301070103010704030107020301070103010701
03010701030107ff07320500070105000701050000000101000100010101000101010008
0700030307030305070103030703030307ff073205000701050007010500070000000101
00010001010100010101000807ff07510500070105000701000001010001000101010001
0101000807ff0750050007010500070105000000010100010001010100010101000807ff
074f0500070105000701050007000000010100010001010100010101000807ff07510500
0701050007010000010100010001010100010101000807ff075005000701050007010500
0000010100010001010100010101000807ff074f05000701050007010500070000000101
00010001010100010101000807ff07510500070105000701000001010001000101010001
0101000807ff0750050007010500070105000000010100010001010100010101000807ff
074f0500070105000701050007000000010100010001010100010101000807ff07510500
0701050007010000010100010001010100010101000807ff075005000701050007010500
0000010100010001010100010101000807ff074f05000701050007010500070000000101
00010001010100010101000807ff07510500070105000701000001010001000101010001
0101000807ff0750050007010500070105000000010100010001010100010101000807ff
074f05070000010100010001010100010101000807ff074f050700000101000100010101
00010101000807ff075605000000010100010001010100010101000807ff075605000000
010100010001010100010101000807ff074f050007040501000001010001000101010001
0101000807ff074f0500070405010000010100010001010100010101000807ff074f0501
070205020000010100010001010100010101000807ff074f050107020502000001010001
0001010100010101000807ff074f05020700050300000101000100010101000101010008
07ff074f0502070005030000010100010001010100010101000807ff074f050700000101
00010001010100010101000807ff074f0507000001010001000101010001010100ff0061
01010001000101010001010100ff006101010001000101010001010100ff006101010001
000101010001010100ff006101010001000101010001010100ff00610101000100010101
0001010100ff006101010001000101010001010100ff0061010100010001010100010101
00ff006101010001000101010001010100ff006101010001000101010001010100ff0061
01010001000101010001010100ff006101010001000101010001010100ff006101010001
000101010001010100ff006101010001000101010001010100ff00610101000100010101
0001010100ff006101010001000101010001010100ff00610101000100010101000101ff
016500010001010100ff00690001010100ff0069000101ff016b00ff006d00ff006d
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 0 365 237
%%EOF