]> 4ch.mooo.com Git - 16.git/blob - 16/PCGPE10/MIDI.TXT
reverted my open watcom to 1.9 an recompiled everything~
[16.git] / 16 / PCGPE10 / MIDI.TXT
1 \r
2                            Standard MIDI File Format\r
3                                 Dustin Caldwell\r
4 \r
5       The standard MIDI file format is a very strange beast. When viewed as a\r
6 whole, it can be quite overwhelming. Of course, no matter how you look at it,\r
7 describing a piece of music in enough detail to be able to reproduce it\r
8 accurately is no small task. So, while complicated, the structure of the midi\r
9 file format is fairly intuitive when understood. \r
10       I must insert a disclaimer here that I am by no means an expert with\r
11 midi nor midi files. I recently obtained a Gravis UltraSound board for my PC,\r
12 and upon hearing a few midi files (.MID) thought, "Gee, I'd like to be able to\r
13 make my own .MID files." Well, many aggravating hours later, I discovered that\r
14 this was no trivial task. But, I couldn't let a stupid file format stop me.\r
15 (besides, I once told my wife that computers aren't really that hard to use,\r
16 and I'd hate to be a hypocrite) So if any errors are found in this\r
17 information, please let me know and I will fix it. Also, this document's scope\r
18 does not extend to EVERY type of midi command and EVERY possible file\r
19 configuration. It is a basic guide that should enable the reader (with a\r
20 moderate investment in time) to generate a quality midi file.\r
21 \r
22 1. Overview\r
23 \r
24       A midi (.MID) file contains basically 2 things, Header chunks and Track\r
25 chunks. Section 2 explains the header chunks, and Section 3 explains the track\r
26 chunks. A midi file contains ONE header chunk describing the file format,\r
27 etc., and any number of track chunks. A track may be thought of in the same\r
28 way as a track on a multi-track tape deck. You may assign one track to each\r
29 voice, each staff, each instrument or whatever you want. \r
30 \r
31 2. Header Chunk\r
32 \r
33       The header chunk appears at the beginning of the file, and describes the\r
34 file in three ways. The header chunk always looks like:\r
35 \r
36 4D 54 68 64 00 00 00 06 ff ff nn nn dd dd\r
37 \r
38 The ascii equivalent of the first 4 bytes is MThd. After MThd comes the 4-byte\r
39 size of the header. This will always be 00 00 00 06, because the actual header\r
40 information will always be 6 bytes. \r
41 \r
42 ff ff is the file format. There are 3 formats:\r
43 \r
44 0 - single-track \r
45 1 - multiple tracks, synchronous\r
46 2 - multiple tracks, asynchronous\r
47 \r
48 Single track is fairly self-explanatory - one track only. Synchronous multiple\r
49 tracks means that the tracks will all be vertically synchronous, or in other\r
50 words, they all start at the same time, and so can represent different parts\r
51 in one song. Asynchronous multiple tracks do not necessarily start at the same\r
52 time, and can be completely asynchronous. \r
53 \r
54 nn nn is the number of tracks in the midi file.\r
55 \r
56 dd dd is the number of delta-time ticks per quarter note. (More about this\r
57 later)\r
58 \r
59 \r
60 3. Track Chunks\r
61 \r
62 The remainder of the file after the header chunk consists of track chunks.\r
63 Each track has one header and may contain as many midi commands as you like.\r
64 The header for a track is very similar to the one for the file:\r
65 \r
66 4D 54 72 6B xx xx xx xx\r
67 \r
68 As with the header, the first 4 bytes has an ascii equivalent. This one is\r
69 MTrk. The 4 bytes after MTrk give the length of the track (not including the\r
70 track header) in bytes. \r
71       Following the header are midi events. These events are identical to the\r
72 actual data sent and received by MIDI ports on a synth with one addition. A\r
73 midi event is preceded by a delta-time. A delta time is the number of ticks\r
74 after which the midi event is to be executed. The number of ticks per quarter\r
75 note was defined previously in the file header chunk. This delta-time is a\r
76 variable-length encoded value. This format, while confusing, allows large\r
77 numbers to use as many bytes as they need, without requiring small numbers to\r
78 waste bytes by filling with zeros. The number is converted into 7-bit bytes,\r
79 and the most-significant bit of each byte is 1 except for the last byte of the\r
80 number, which has a msb of 0. This allows the number to be read one byte at a\r
81 time, and when you see a msb of 0, you know that it was the last (least\r
82 significant) byte of the number. According to the MIDI spec, the entire delta-\r
83 time should be at most 4 bytes long. \r
84       Following the delta-time is a midi event. Each midi event (except a\r
85 running midi event) has a command byte which will always have a msb of 1 (the\r
86 value will be >= 128). A list of most of these commands is in appendix A. Each\r
87 command has different parameters and lengths, but the data that follows the\r
88 command will have a msb of 0 (less than 128). The exception to this is a meta-\r
89 event, which may contain data with a msb of 1. However, meta-events require a\r
90 length parameter which alleviates confusion. \r
91       One subtlety which can cause confusion is running mode. This is where\r
92 the actual midi command is omitted, and the last midi command issued is\r
93 assumed. This means that the midi event will consist of a delta-time and the\r
94 parameters that would go to the command if it were included. \r
95 \r
96 4. Conclusion\r
97 \r
98       If this explanation has only served to confuse the issue more, the\r
99 appendices contain examples which may help clarify the issue. Also, 2\r
100 utilities and a graphic file should have been included with this document: \r
101 \r
102 DEC.EXE - This utility converts a binary file (like .MID) to a tab-delimited\r
103 text file containing the decimal equivalents of each byte.\r
104 \r
105 REC.EXE - This utility converts a tab-delimited text file of decimal values\r
106 into a binary file in which each byte corresponds to one of the decimal\r
107 values.\r
108 \r
109 MIDINOTE.PS - This is the postscript form of a page showing note numbers with\r
110 a keyboard and with the standard grand staff.\r
111                                        \f                                  Appendix A\r
112 \r
113 1. MIDI Event Commands\r
114 \r
115 Each command byte has 2 parts. The left nybble (4 bits) contains the actual\r
116 command, and the right nybble contains the midi channel number on which the\r
117 command will be executed. There are 16 midi channels, and 8 midi commands (the\r
118 command nybble must have a msb of 1).\r
119 In the following table, x indicates the midi channel number. Note that all\r
120 data bytes will be <128 (msb set to 0).\r
121 \r
122 Hex      Binary       Data          Description\r
123 8x       1000xxxx     nn vv         Note off (key is released)\r
124                                     nn=note number\r
125                                     vv=velocity\r
126 \r
127 9x       1001xxxx     nn vv         Note on (key is pressed)\r
128                                     nn=note number\r
129                                     vv=velocity\r
130 \r
131 Ax       1010xxxx     nn vv         Key after-touch\r
132                                     nn=note number\r
133                                     vv=velocity\r
134 \r
135 Bx       1011xxxx     cc vv         Control Change\r
136                                     cc=controller number\r
137                                     vv=new value\r
138 \r
139 Cx       1100xxxx     pp            Program (patch) change\r
140                                     pp=new program number\r
141 \r
142 Dx       1101xxxx     cc            Channel after-touch\r
143                                     cc=channel number\r
144 \r
145 Ex       1110xxxx     bb tt         Pitch wheel change (2000H is normal or no\r
146                                     change)\r
147                                     bb=bottom (least sig) 7 bits of value\r
148                                     tt=top (most sig) 7 bits of value\r
149 \fThe following table lists meta-events which have no midi channel number. They\r
150 are of the format:\r
151 \r
152 FF xx nn dd\r
153 \r
154 All meta-events start with FF followed by the command (xx), the length, or\r
155 number of bytes that will contain data (nn), and the actual data (dd).\r
156 \r
157 Hex      Binary       Data          Description\r
158 00       00000000     nn ssss       Sets the track's sequence number.\r
159                                     nn=02 (length of 2-byte sequence number)\r
160                                     ssss=sequence number\r
161 \r
162 01       00000001     nn tt ..      Text event- any text you want.\r
163                                     nn=length in bytes of text\r
164                                     tt=text characters\r
165 \r
166 02       00000010     nn tt ..      Same as text event, but used for\r
167                                     copyright info.\r
168                                     nn tt=same as text event\r
169 \r
170 03       00000011     nn tt ..      Sequence or Track name\r
171                                     nn tt=same as text event\r
172 \r
173 04       00000100     nn tt ..      Track instrument name\r
174                                     nn tt=same as text event\r
175 \r
176 05       00000101     nn tt ..      Lyric\r
177                                     nn tt=same as text event\r
178 \r
179 06       00000110     nn tt ..      Marker\r
180                                     nn tt=same as text event\r
181 \r
182 07       00000111     nn tt ..      Cue point\r
183                                     nn tt=same as text event\r
184 \r
185 2F       00101111     00            This event must come at the end of each\r
186                                     track\r
187 \r
188 51       01010001     03 tttttt     Set tempo\r
189                                     tttttt=microseconds/quarter note\r
190 \r
191 58       01011000     04 nn dd ccbb Time Signature\r
192                                     nn=numerator of time sig.\r
193                                     dd=denominator of time sig. 2=quarter\r
194                                     3=eighth, etc.\r
195                                     cc=number of ticks in metronome click\r
196                                     bb=number of 32nd notes to the quarter\r
197                                     note\r
198 \r
199 59       01011001     02 sf mi      Key signature\r
200                                     sf=sharps/flats (-7=7 flats, 0=key of C,\r
201                                     7=7 sharps)\r
202                                     mi=major/minor (0=major, 1=minor)\r
203 \r
204 7F       01111111     xx dd ..      Sequencer specific information\r
205                                     xx=number of bytes to be sent\r
206                                     dd=data\f\r
207 The following table lists system messages which control the entire system.\r
208 These have no midi channel number. (these will generally only apply to\r
209 controlling a midi keyboard, etc.)\r
210 \r
211 Hex      Binary       Data          Description\r
212 F8       11111000                   Timing clock used when synchronization is\r
213                                     required.\r
214 \r
215 FA       11111010                   Start current sequence\r
216 \r
217 FB       11111011                   Continue a stopped sequence where left\r
218                                     off\r
219 \r
220 FC       11111100                   Stop a sequence\r
221 \r
222 \r
223 The following table lists the numbers corresponding to notes for use in note \r
224 on and note off commands.\r
225 \r
226 \r
227 Octave||                     Note Numbers\r
228    #  ||\r
229       || C   | C#  | D   | D#  | E   | F   | F#  | G   | G#  | A   | A#  | B\r
230 -----------------------------------------------------------------------------\r
231    0  ||   0 |   1 |   2 |   3 |   4 |   5 |   6 |   7 |   8 |   9 |  10 | 11\r
232    1  ||  12 |  13 |  14 |  15 |  16 |  17 |  18 |  19 |  20 |  21 |  22 | 23\r
233    2  ||  24 |  25 |  26 |  27 |  28 |  29 |  30 |  31 |  32 |  33 |  34 | 35\r
234    3  ||  36 |  37 |  38 |  39 |  40 |  41 |  42 |  43 |  44 |  45 |  46 | 47\r
235    4  ||  48 |  49 |  50 |  51 |  52 |  53 |  54 |  55 |  56 |  57 |  58 | 59\r
236    5  ||  60 |  61 |  62 |  63 |  64 |  65 |  66 |  67 |  68 |  69 |  70 | 71\r
237    6  ||  72 |  73 |  74 |  75 |  76 |  77 |  78 |  79 |  80 |  81 |  82 | 83\r
238    7  ||  84 |  85 |  86 |  87 |  88 |  89 |  90 |  91 |  92 |  93 |  94 | 95\r
239    8  ||  96 |  97 |  98 |  99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107\r
240    9  || 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119\r
241   10  || 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 |\r
242 \r
243 \r
244                                 BIBLIOGRAPHY\r
245 \r
246   "MIDI Systems and Control" Francis Rumsey  1990 Focal Press\r
247 \r
248   "MIDI and Sound Book for the Atari ST" Bernd Enders and Wolfgang Klemme\r
249           1989 M&T Publishing, Inc.\r
250 \r
251   MIDI file specs and general MIDI specs were also obtained by sending e-mail\r
252          to LISTSERV@AUVM.AMERICAN.EDU with the phrase GET MIDISPEC PACKAGE\r
253          in the message.\r
254 \r
255 \r
256 ------------------------------- DEC.CPP ------------------------------------\r
257 \r
258 /*  file  dec.cpp\r
259 \r
260 by  Dustin Caldwell    (dustin@gse.utah.edu)\r
261 \r
262 */\r
263 \r
264 \r
265 #include <dos.h>\r
266 #include <stdio.h>\r
267 #include <stdlib.h>\r
268 \r
269 void helpdoc();\r
270 \r
271 main()\r
272 {\r
273         FILE *fp;\r
274 \r
275         unsigned char ch, c;\r
276 \r
277         if((fp=fopen(_argv[1], "rb"))==NULL)            /* open file to read */\r
278         {\r
279                 printf("cannot open file %s\n",_argv[1]);\r
280                 helpdoc();\r
281                 exit(-1);\r
282         }\r
283 \r
284         c=0;\r
285         ch=fgetc(fp);\r
286 \r
287         while(!feof(fp))                        /* loop for whole file */\r
288         {\r
289                 printf("%u\t", ch);             /* print every byte's decimal equiv. */\r
290                 c++;\r
291                 if(c>8)                                 /* print 8 numbers to a line */\r
292                 {\r
293                         c=0;\r
294                         printf("\n");\r
295                 }\r
296 \r
297                 ch=fgetc(fp);\r
298         }\r
299 \r
300         fclose(fp);                     /* close up */\r
301 }\r
302 \r
303 void helpdoc()                  /* print help message */\r
304 {\r
305         printf("\n   Binary File Decoder\n\n");\r
306 \r
307         printf("\n Syntax:  dec binary_file_name\n\n");\r
308 \r
309         printf("by Dustin Caldwell  (dustin@gse.utah.edu)\n\n");\r
310         printf("This is a filter program that reads a binary file\n");\r
311         printf("and prints the decimal equivalent of each byte\n");\r
312         printf("tab-separated. This is mostly useful when piped \n");\r
313         printf("into another file to be edited manually.  eg:\n\n");\r
314         printf("c:\>dec sonata3.mid > son3.txt\n\n");\r
315         printf("This will create a file called son3.txt which can\n");\r
316         printf("be edited with any ascii editor. \n\n");\r
317         printf("(rec.exe may also be useful, as it reencodes the \n");\r
318         printf("ascii text file).\n\n");\r
319         printf("Have Fun!!\n");\r
320 }\r
321 \r
322 ---------------------------- REC.CPP ----------------------------------\r
323 \r
324 /*  File  rec.cpp\r
325         by Dustin Caldwell   (dustin@gse.utah.edu)\r
326 */\r
327 \r
328 #include <dos.h>\r
329 #include <stdio.h>\r
330 #include <ctype.h>\r
331 #include <stdlib.h>\r
332 \r
333 void helpdoc();\r
334 \r
335 main()\r
336 {\r
337         FILE *rfp, *wfp;\r
338 \r
339         unsigned char ch, c;\r
340         char s[20];\r
341 \r
342         if((rfp=fopen(_argv[1], "r"))==NULL)                    /* open the read file */\r
343         {\r
344                 printf("cannot open file %s \n",_argv[1]);\r
345                 helpdoc();\r
346                 exit(-1);\r
347         }\r
348 \r
349         if((wfp=fopen(_argv[2], "wb"))==NULL)                   /* open the write file */\r
350         {\r
351                 printf("cannot open file %s \n",_argv[1]);\r
352                 helpdoc();\r
353                 exit(-1);\r
354         }\r
355 \r
356         c=0;\r
357 \r
358         ch=fgetc(rfp);\r
359 \r
360         while(!feof(rfp))                       /* loop for whole file */\r
361         {\r
362 \r
363                 if(isalnum(ch))                 /* only 'see' valid ascii chars */\r
364                 {\r
365                         c=0;\r
366                         while(isdigit(ch))      /* only use decimal digits (0-9) */\r
367                         {\r
368                                 s[c]=ch;        /* build a string containing the number */\r
369                                 c++;\r
370                                 ch=fgetc(rfp);\r
371                         }\r
372                         s[c]=NULL;                      /* must have NULL terminator */\r
373 \r
374                         fputc(atoi(s), wfp);/* write the binary equivalent to file */\r
375 \r
376                 }\r
377 \r
378                 ch=fgetc(rfp);                  /* loop until next number starts */\r
379 \r
380 \r
381         }\r
382 \r
383         fclose(rfp);                    /* close up */\r
384         fclose(wfp);\r
385 }\r
386 \r
387 \r
388 void helpdoc()          /* print help message */\r
389 {\r
390         printf("\n   Text File Encoder\n\n");\r
391 \r
392         printf("\n Syntax:  rec text_file_name binary_file_name\n\n");\r
393 \r
394         printf("by Dustin Caldwell  (dustin@gse.utah.edu)\n\n");\r
395         printf("This is a program that reads an ascii tab-\n");\r
396         printf("delimited file and builds a binary file where\n");\r
397         printf("each byte of the binary file is one of the decimal\n");\r
398         printf("digits in the text file.\n");\r
399         printf(" eg:\n\n");\r
400         printf("c:\>rec son3.txt son3.mid\n\n");\r
401         printf("(This will create a file called son3.mid which is\n");\r
402         printf("a valid binary file)\n\n");\r
403         printf("(dec.exe may also be useful, as it decodes binary files)\n\n");\r
404         printf("Have Fun!!\n");\r
405 }\r
406 \r
407 ----------------------------- MIDIFILE.PS ---------------------------------\r
408 \e%-12345X@PJL ENTER LANGUAGE = POSTSCRIPT\r
409 %!PS-Adobe\r
410 /wpdict 120 dict def\r
411 wpdict  begin\r
412 /bdef   {bind def} bind def\r
413 \r
414 /bflg   false def\r
415 /Bfont  0 def\r
416 /bon    false def\r
417 \r
418 /psz    0 def\r
419 /_S     /show load def\r
420 /_t     {0 rmoveto} bdef\r
421 \r
422 /_pixelsnap\r
423         {transform .25 sub round .25 add\r
424          exch .25 sub round .25 add exch itransform\r
425         } bdef\r
426 /_pixeldsnap\r
427         { dtransform round exch round exch idtransform } bdef\r
428 \r
429 /_lt    {_pixelsnap lineto} bdef\r
430 /_rlt   {_pixeldsnap rlineto} bdef\r
431 /_mt    {_pixelsnap moveto} bdef\r
432 /_rmt   {_pixeldsnap rmoveto} bdef\r
433 \r
434 /bshow  {gsave psz 30 div 0 _rmt dup show grestore show} bdef\r
435 \r
436 /DUx    0 def\r
437 /DUy    0 def\r
438 /hscl   0 def\r
439 \r
440 /M      {_mt\r
441          2 mul -2 2\r
442          { -2 roll 0 _rmt _S } for\r
443         } bdef\r
444 \r
445 /makeoutl\r
446         { dup /OutlineFlag known not\r
447           { dup dup length 2 add dict begin\r
448             {1 index /FID ne { def }{ pop pop } ifelse } forall\r
449             /UniqueID known {/UniqueID UniqueID 10000 add def} if\r
450             /PaintType PaintType 0 eq { 2 }{ PaintType } ifelse def\r
451             /StrokeWidth 15 def\r
452             /OutlineFlag true def\r
453             /OutlineFont currentdict end definefont\r
454           } if\r
455         } bdef\r
456 \r
457 /nbuff  50 string def\r
458 /orntsv 0 def\r
459 /plen   0 def\r
460 /pwid   0 def\r
461 /picstr 1 string def\r
462 \r
463 /WPencoding StandardEncoding 256 array copy def 0\r
464  [ 127/Aacute/Acircumflex/Adieresis/Agrave/Aring/Atilde/Ccedilla\r
465   /Delta/Eacute/Ecircumflex/Edieresis/Egrave/Eth/Gamma/Iacute\r
466   /Icircumflex/Idieresis/Igrave/Lambda/Ntilde/Oacute\r
467   /Ocircumflex/Odieresis/Ograve/Omega/Otilde/Phi/Pi/Psi\r
468   /Scaron/Sigma/TeXtext32/Theta/Thorn\r
469   209/Uacute/Ucircumflex/Udieresis/Ugrave/Upsilon/Xi/Yacute\r
470   /Ydieresis/Zcaron/aacute/acircumflex/adieresis/agrave\r
471   /aring/atilde/brokenbar\r
472   228/ccedilla/copyright/degree/divide\r
473   236/dotlessj/eacute/ecircumflex/edieresis/egrave\r
474   242/eth/ff/ffi\r
475   246/ffl/iacute\r
476   252/icircumflex/idieresis/igrave/logicalnot\r
477   1/minus/mu/multiply/ntilde/oacute/ocircumflex/odieresis\r
478   /ograve/onehalf/onequarter/onesuperior/otilde/plusminus\r
479   /registered/scaron/thorn/threequarters/threesuperior\r
480   /trademark/twosuperior/uacute/ucircumflex/udieresis\r
481   /ugrave/yacute/ydieresis/zcaron\r
482 ]\r
483 { dup type /nametype eq\r
484   { WPencoding 2 index 2 index put pop 1 add }\r
485   { exch pop } ifelse\r
486 } forall pop\r
487 \r
488 /reencode\r
489 { dup FontDirectory exch known\r
490    { findfont }\r
491    {  dup nbuff cvs dup length 1 sub get 82 eq\r
492    {dup nbuff cvs dup length 1 sub 0 exch getinterval\r
493    findfont begin\r
494    currentdict dup length dict begin\r
495 { 1 index /FID ne {def} {pop pop} ifelse } forall\r
496 /FontName exch def\r
497 \r
498 /Encoding WPencoding def\r
499 currentdict dup end end\r
500 /FontName get exch definefont\r
501      }\r
502      { findfont } ifelse\r
503   } ifelse\r
504 } bdef\r
505 \r
506 /WPDLencoding StandardEncoding 256 array copy def 0\r
507 [ 127     /SA420000/SD630000/SF010000/SF020000/SF030000\r
508 /SF040000/SF050000/SF060000/SF070000/SF080000/SF090000\r
509 /SF100000/SF110000/SF140000/SF150000/SF160000/SF190000\r
510 /SF200000/SF210000/SF220000/SF230000/SF240000/SF250000/SF260000\r
511 /SF270000/SF280000/SF360000/SF370000/SF380000/SF390000/SF400000\r
512 /SF410000/SF420000/SF430000\r
513 209 /SF440000/SF450000/SF460000/SF470000/SF480000\r
514 /SF490000/SF500000/SF510000/SF520000/SF530000/SF540000\r
515 /SF570000/SF580000/SF590000/SF600000/SF610000\r
516 228 /SM570001/SM590000/SM600000/SM630000\r
517 236 /SM680000/SM690000/SM700000/SM750000/SM750002\r
518 242 /SM770000/SM790000/SP320000\r
519 246 /SS000000/SS010000\r
520 252 /SS260000/SS270000/SV040000/apostrophereverse\r
521 1/arrowboth/arrowdown/arrowleft/arrowright/arrowup/club\r
522 /deutschmark/diamond/diamondopen/exclamdbl/female\r
523 /fiveeighths/franc/heart/male/musicalnote/musicalnotedbl\r
524 /napostrophe/nsuperior/oneeighths/seveneighths/spade\r
525 /threeeights/underscoredbl/SM760000\r
526 ]\r
527 { dup type /nametype eq\r
528   { WPDLencoding 2 index 2 index put pop 1 add }\r
529   { exch pop } ifelse\r
530 } forall pop\r
531 \r
532 /reencodeL\r
533     { dup FontDirectory exch known\r
534       { findfont }\r
535       {  dup nbuff cvs dup length 1 sub get 76 eq\r
536          {    dup nbuff cvs dup length 1 sub 0 exch getinterval\r
537          findfont begin\r
538          currentdict dup length dict begin\r
539          { 1 index /FID ne {def} {pop pop} ifelse } forall\r
540          /FontName exch def\r
541          /Encoding WPDLencoding def\r
542          currentdict dup end end\r
543          /FontName get exch definefont\r
544          }\r
545          { findfont } ifelse\r
546       } ifelse\r
547     } bdef\r
548 \r
549 /ron    false def\r
550 /sflg   false def\r
551 /slan   0 def\r
552 /sp     32 def\r
553 \r
554 /sshow\r
555         { save exch\r
556            gsave\r
557             psz 20 div dup neg _rmt dup show\r
558            grestore\r
559            dup\r
560            save exch\r
561             Bfont setfont\r
562             1 setgray show\r
563            restore\r
564            currentfont makeoutl setfont show\r
565            currentpoint 3 -1 roll\r
566           restore _mt\r
567         } bdef\r
568 \r
569 /Sx     0 def\r
570 /Sy     0 def\r
571 /Ux     0 def\r
572 /Uy     0 def\r
573 /W      /widthshow load def\r
574 \r
575 /_B     {/bflg true def\r
576          sflg not {/_S /bshow load def /bon true def} if\r
577         } bdef\r
578 /_b     {/bflg false def\r
579          bon {/_S /show load def /bon false def} if\r
580         } bdef\r
581 /_bd    {save} bdef\r
582 /_bp    {save 2 setmiterlimit .06 .06 scale 0 0 _mt} bdef\r
583 /_ccprocs\r
584         {/proc2 exch cvlit def\r
585          /proc1 exch cvlit def\r
586          /newproc proc1 length proc2 length add\r
587          array def\r
588          newproc 0 proc1 putinterval\r
589          newproc proc1 length proc2 putinterval\r
590          newproc cvx\r
591         } def\r
592 /_clr   {3 {255 div 3 1 roll} repeat\r
593          ron {6 3 roll pop pop pop} {setrgbcolor} ifelse\r
594         } bdef\r
595 /_cp    /closepath load def\r
596 /_cw    {stroke initclip _mt 0 2 index\r
597          _rlt 0 _rlt 0 exch neg\r
598          _rlt clip newpath\r
599         } bdef\r
600 /_d     /setdash load def\r
601 /_DU    {currentpoint /DUy exch def /DUx exch def} bdef\r
602 /_du    {gsave\r
603           save\r
604           8 setlinewidth\r
605       currentpoint -30 add _mt\r
606       DUx DUy -30 add _lt stroke\r
607           restore\r
608           8 setlinewidth\r
609           currentpoint -50 add _mt\r
610           DUx DUy -50 add _lt stroke\r
611          grestore\r
612         } bdef\r
613 /_ed    {restore} bdef\r
614 /_ep    {restore showpage 0 0 _mt} bdef\r
615 /_f     /eofill load def\r
616 /_ff    { exch reencode exch\r
617           3 div dup /psz exch def\r
618           scalefont dup /Bfont exch def setfont\r
619         } bdef\r
620 /_ffs   { /slan exch 10 div def /hscl exch 1000 div def\r
621           /psz exch 3 div def\r
622           [ psz hscl mul 0 slan dup sin exch cos div psz mul psz 0 0 ]\r
623           exch reencode exch makefont dup /Bfont exch def setfont\r
624         } bdef\r
625 /_g     /setgray load def\r
626 /_gs    {neg 100 add 100 div setgray} bdef\r
627 /_i     {gsave\r
628           dup /picstr exch 7 add 8 idiv string def\r
629           3 1 roll translate dup 1 scale\r
630           dup 1 1 [5 -1 roll 0 0 1 0 0]\r
631           {currentfile picstr readhexstring pop} image\r
632          grestore\r
633         } bdef\r
634 /_is    {save 4 1 roll\r
635           dup /picstr exch 7 add 8 idiv string def\r
636           3 1 roll translate dup 1 scale\r
637           dup 1 1 [5 -1 roll 0 0 1 0 0]\r
638           {currentfile picstr readhexstring pop} image\r
639          restore\r
640         } bdef\r
641 /_ie    {1 eq { {1 exch sub} currenttransfer _ccprocs settransfer} if\r
642          /_isx exch def /_isy exch def\r
643          _isx mul exch _isy mul translate\r
644          add 2 div /_txc exch def\r
645          add 2 div /_tyc exch def\r
646          _txc _isx mul _tyc _isy mul translate\r
647          360 exch sub rotate\r
648          1 eq { _isx neg _isy scale }\r
649          { _isx _isy scale }\r
650          ifelse _txc neg _tyc neg translate\r
651         } bdef\r
652 /_irms  {save\r
653           12 1 roll\r
654           1 eq {{1 exch sub} currenttransfer _ccprocs settransfer} if\r
655           /picstr exch string def translate\r
656           2 index 6 index sub 2 div 2 index 6 index sub 2 div neg\r
657           translate\r
658           5 index 5 index 2 div neg exch 2 div exch\r
659           2 copy neg exch neg exch 5 2 roll translate\r
660           360 exch sub rotate\r
661           3 index 3 index 7 index div exch 8 index div exch scale\r
662           translate pop pop 2 index 2 index scale\r
663           3 index 0 eq\r
664           { [ 3 index 0 0 5 index neg 0 0 ] }\r
665           { 3 index 1 eq\r
666       { [ 3 index 0 0 5 index 0 7 index ] }\r
667       { 3 index 128 eq\r
668           { [ 3 index neg 0 0 5 index neg 7 index 0 ] }\r
669           { [ 3 index neg 0 0 5 index 7 index 7 index ] } ifelse\r
670             } ifelse\r
671           } ifelse\r
672           {currentfile picstr readhexstring pop} image\r
673           pop\r
674          restore\r
675         } bdef\r
676 \r
677 /_l     {_lt} bdef\r
678 /_lr    {_rlt} bdef\r
679 /_m     {_mt} bdef\r
680 /_O     {currentfont makeoutl setfont} bdef\r
681 /_o     {Bfont setfont} bdef\r
682 /_ornt  {/pwid exch def /plen exch def\r
683          orntsv 1 eq {0 pwid translate -90 rotate} if\r
684          orntsv 2 eq {pwid plen translate 180 rotate} if\r
685          orntsv 3 eq {plen 0 translate 90 rotate} if\r
686          dup 1 eq {pwid 0 translate 90 rotate} if\r
687          dup 2 eq {pwid plen translate 180 rotate} if\r
688          dup 3 eq {0 plen translate -90 rotate} if\r
689          /orntsv exch def\r
690         } bdef\r
691 /_lod1  {currentpoint orntsv plen pwid 6 -1 roll restore save} bdef\r
692 /_lod2  {_bp 7 2 roll _ornt _mt} bdef\r
693 /_unlod {currentpoint orntsv plen pwid 7 -2 roll restore restore\r
694          _bp 6 1 roll _ornt _mt\r
695         } bdef\r
696 /_p     {2 copy _mt 1 0 _rlt _mt} bdef\r
697 /_pl    {{_lt} repeat} bdef\r
698 /_R      { /ron true def /_S /_rshow load def /_t /_red load def} bdef\r
699 /_rshow  { save exch\r
700            currentpoint\r
701            /RSy exch def /RSx exch def\r
702            ron {\r
703                  sflg\r
704                  {      currentpoint\r
705                         /Ry exch def /Rx exch def\r
706                         dup stringwidth pop Rx Ry psz 4 div add _mt\r
707                         Rx psz 15 add setlinewidth .95 setgray 0 setlinecap\r
708                         add Ry psz 4 div add _lt stroke Rx Ry _mt 0 0 0 setrgbcolor\r
709                         dup show Rx Ry _mt\r
710                         sshow\r
711                  }\r
712                  { _redshow\r
713                  }ifelse\r
714            }\r
715            {     sflg {sshow} if\r
716            }ifelse\r
717            currentpoint 3 -1 roll\r
718            restore _mt\r
719          } bdef\r
720 /_red   { gsave dup\r
721          currentpoint /Ry exch def /Rx exch def\r
722          Rx Ry psz 4 div add _mt\r
723          Rx psz 15 add setlinewidth .95 setgray 0 setlinecap\r
724          add Ry psz 4 div add _lt stroke\r
725          Rx Ry _mt\r
726          grestore\r
727          0 rmoveto\r
728     }bdef\r
729 /_redshow {currentpoint\r
730          /Ry exch def /Rx exch def\r
731          dup stringwidth pop Rx Ry psz 4 div add _mt\r
732          Rx psz 15 add setlinewidth .95 setgray 0 setlinecap\r
733          add Ry psz 4 div add _lt stroke Rx Ry _mt 0 0 0 setrgbcolor\r
734          show currentpoint _mt\r
735     }bdef\r
736 /_rmxy  {_rmt} bdef\r
737 /_s     /stroke load def\r
738 /_SH    bon {/bon false def} if\r
739         {/sflg true def /_S /_rshow load def\r
740         } bdef\r
741 /_sh    { ron   {/sflg false def bflg {_B} if}\r
742                 {/_S /show load def /sflg false def bflg {_B} if}ifelse\r
743         }bdef\r
744 /_sp    { gsave stroke grestore } bdef\r
745 /_ST    {currentpoint /Sy exch def /Sx exch def} bdef\r
746 /_st    {gsave\r
747           currentpoint pop\r
748           Sx dup Sy _mt sub\r
749           (\320) stringwidth pop div\r
750           dup floor cvi dup\r
751       dup 0 gt {{(\320) show} repeat}{pop} ifelse sub\r
752           dup 0 gt {1 scale (\320) show}{pop} ifelse\r
753          grestore\r
754         } bdef\r
755 /_U     {currentpoint /Uy exch def /Ux exch def} bdef\r
756 /_u     {gsave\r
757           currentpoint\r
758           -30 add _mt\r
759           Ux Uy -30 add _lt\r
760           12 setlinewidth\r
761           stroke\r
762          grestore\r
763         } bdef\r
764 /_w     /setlinewidth load def\r
765 end\r
766 /#copies 1 def /wpdict2 100 dict def\r
767 wpdict begin wpdict2 begin\r
768 \r
769 _bd\r
770 /_rhs{readhexstring}bdef/_tr{translate}bdef\r
771 /_ix{index}bdef/_mx{matrix}bdef\r
772 /ife{ifelse}bdef/_x{exch}bdef\r
773 /_is{save 4 1 roll\r
774 dup/picstr _x 7 add 8 idiv string def\r
775 3 1 roll _tr dup 1 scale\r
776 dup 1 1[5 -1 roll 0 0 1 0 0]\r
777 {currentfile picstr _rhs pop}image restore}bdef\r
778 /_epsi{1 eq{{1 _x sub}currenttransfer _ccprocs settransfer}if\r
779 /yp _x def/xp _x def/dhgt _x def/dwid _x def\r
780 4 copy sub/swid _x def\r
781 sub/shgt _x def\r
782 add 2 div/icx _x def add 2 div/icy _x def\r
783 xp dwid 2 div add icx sub yp dhgt 2 div sub\r
784 icy sub _tr icx icy _tr\r
785 360 _x sub rotate\r
786 dwid swid div/xsc _x def _x\r
787 dhgt shgt div/ysc _x def _x\r
788 dup 1 eq{xsc neg/xsc _x def pop}\r
789 {dup 2 eq{ysc neg /ysc _x def pop}\r
790 {3 eq{ysc neg/ysc _x def xsc neg/xsc _x def}\r
791 {}ife}ife}ife\r
792 xsc ysc scale\r
793 100 div _x 100 div _x scale\r
794 icx neg icy neg _tr}bdef\r
795 /_c{3{255 div 3 1 roll}repeat setrgbcolor}bdef\r
796 /eq3{3 copy 2 _ix eq{eq{true}{false}ife}{pop\r
797 pop false}ife}bdef\r
798 /g{255 div setgray}bdef\r
799 /_clr{ron{6 3 roll pop pop pop}{eq3{pop\r
800 pop g}{_c}ife}ife}bdef\r
801 /_r{/ron false def eq3{1 sub neg g pop\r
802 pop}{setrgbcolor}ife}bdef\r
803 /_ircms{save 15 1 roll\r
804 1 eq{{1 exch sub}currenttransfer _ccprocs settransfer}if\r
805 /pstr _x string def _tr\r
806 /Cli _x def/USy _x def/USx _x def/Rot _x def/HTd _x def\r
807 /WDd _x def/Bdep _x def/HTs _x def/WDs _x def/MIR _x def\r
808 USx 100 div USy 100 div scale\r
809 WDd WDs sub 2 div HTd HTs sub 2 div neg _tr\r
810 WDs HTs 2 div neg _x 2 div _x _tr\r
811 Rot 360 _x sub rotate WDd HTd HTs div _x WDs div _x scale\r
812 WDs 2 div neg HTs 2 div _tr\r
813 WDs HTs scale WDs HTs Bdep MIR 0\r
814 eq{[WDs 0 0 HTs neg 0 0]}{MIR 1 eq{[WDs 0 0 HTs 0 HTs]}\r
815 {MIR 128 eq{[WDs neg 0 0 HTs neg WDs 0]}\r
816 {[WDs neg 0 0 HTs WDs HTs]}ife}ife}ife\r
817 {currentfile pstr _rhs pop}Cli\r
818 0 eq{image}{false 3 colorimage}ife\r
819 restore}bdef\r
820 /_bp{save 2 setlinecap 2 setmiterlimit\r
821 .06 .06 scale 0 0 moveto}bdef\r
822 /tctm _mx def/trot _mx def/tscale _mx def/rmtx _mx def\r
823 /fr{72 0 rmtx defaultmatrix dtransform\r
824 /yres _x def/xres _x def\r
825 xres dup mul yres dup mul add sqrt}bdef\r
826 /sus{/spotf _x def/sang _x def/csz _x def\r
827 /m tctm currentmatrix def/rm sang trot rotate def\r
828 /sm csz dup tscale scale def\r
829 sm rm m m concatmatrix m concatmatrix pop\r
830 1 0 m dtransform /y1 _x def/x1 _x def\r
831 /veclength x1 dup mul y1 dup mul add sqrt def\r
832 /frcy fr veclength div def /nsang y1 x1 atan def\r
833 frcy nsang/spotf load setscreen}bdef\r
834 /bitis{/ybit _x def /xbit _x def\r
835 /bval bstring ybit bwidth mul xbit 8 idiv add get def\r
836 /mask 1 7 xbit 8 mod sub bitshift def\r
837 bval mask and 0 ne}bdef\r
838 /bps{/y _x def /x _x def\r
839 /xndx x 1 add 2 div bpside mul cvi def\r
840 /yndx y 1 add 2 div bpside mul cvi def\r
841 xndx yndx bitis\r
842 {/onb onb 1 add def 1}{/ofb ofb 1 add def 0}ife}bdef\r
843 /stpatt{/csz _x def /angle _x def /bwidth _x def\r
844 /bpside _x def /bstring _x def\r
845 /onb 0 def /ofb 0 def\r
846 csz angle /bps load\r
847 sus{}settransfer\r
848 ofb ofb onb add div _g}bdef\r
849 /_fp{8 1 0 cpi stpatt}bdef\r
850 /_pf{gsave eofill grestore}bdef\r
851 /_np{newpath}bdef/_lc{setlinecap}bdef\r
852 /_sr{/cpi _x def}bdef\r
853 /nbuff 50 string def\r
854 letter _bp 0 13200 10200 _ornt /NewCenturySchlbk-RomanR 500 _ff\r
855 0 13200 10200 _ornt \r
856 /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}\r
857          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse\r
858      }bdef\r
859 8907 11870 _m\r
860 (1)_S 3462 11439 _m\r
861 /NewCenturySchlbk-RomanR 750 _ff\r
862 (Standard)_S 83 _t\r
863 (MIDI)_S 83 _t\r
864 (File)_S 83 _t\r
865 (Format)_S /NewCenturySchlbk-RomanR 500 _ff\r
866 4469 11220 _m\r
867 (Dustin)_S 56 _t\r
868 (Caldwell)_S 1800 10820 _m\r
869 (The)_S 56 _t\r
870 (standard)_S 56 _t\r
871 (MIDI)_S 56 _t\r
872 (file)_S 56 _t\r
873 (format)_S 56 _t\r
874 (is)_S 56 _t\r
875 (a)_S 56 _t\r
876 (very)_S 56 _t\r
877 (strange)_S 56 _t\r
878 (beast.)_S 56 _t\r
879 (When)_S 56 _t\r
880 (viewed)_S 56 _t\r
881 (as)_S 56 _t\r
882 (a)_S 56 _t\r
883 (whole,)_S 56 _t\r
884 (it)_S 56 _t\r
885 (can)_S 56 _t\r
886 (be)_S 1200 10620 _m\r
887 (quite)_S 56 _t\r
888 (overwhelming.)_S 56 _t\r
889 (Of)_S 56 _t\r
890 (course,)_S 56 _t\r
891 (no)_S 56 _t\r
892 (matter)_S 56 _t\r
893 (how)_S 56 _t\r
894 (you)_S 56 _t\r
895 (look)_S 56 _t\r
896 (at)_S 56 _t\r
897 (it,)_S 56 _t\r
898 (describing)_S 56 _t\r
899 (a)_S 56 _t\r
900 (piece)_S 56 _t\r
901 (of)_S 56 _t\r
902 (music)_S 56 _t\r
903 (in)_S 56 _t\r
904 (enough)_S 1200 10420 _m\r
905 (detail)_S 56 _t\r
906 (to)_S 56 _t\r
907 (be)_S 56 _t\r
908 (able)_S 56 _t\r
909 (to)_S 56 _t\r
910 (reproduce)_S 56 _t\r
911 (it)_S 56 _t\r
912 (accurately)_S 56 _t\r
913 (is)_S 56 _t\r
914 (no)_S 56 _t\r
915 (small)_S 56 _t\r
916 (task.)_S 56 _t\r
917 (So,)_S 56 _t\r
918 (while)_S 56 _t\r
919 (complicated,)_S 56 _t\r
920 (the)_S 56 _t\r
921 (structure)_S 56 _t\r
922 (of)_S 1200 10220 _m\r
923 (the)_S 56 _t\r
924 (midi)_S 56 _t\r
925 (file)_S 56 _t\r
926 (format)_S 56 _t\r
927 (is)_S 56 _t\r
928 (fairly)_S 56 _t\r
929 (intuitive)_S 56 _t\r
930 (when)_S 56 _t\r
931 (understood.)_S 56 _t\r
932 1800 10020 _m\r
933 (I)_S 56 _t\r
934 (must)_S 56 _t\r
935 (insert)_S 56 _t\r
936 (a)_S 56 _t\r
937 (disclaimer)_S 56 _t\r
938 (here)_S 56 _t\r
939 (that)_S 56 _t\r
940 (I)_S 56 _t\r
941 (am)_S 56 _t\r
942 (by)_S 56 _t\r
943 (no)_S 56 _t\r
944 (means)_S 56 _t\r
945 (an)_S 56 _t\r
946 (expert)_S 56 _t\r
947 (with)_S 56 _t\r
948 (midi)_S 56 _t\r
949 (nor)_S 56 _t\r
950 (midi)_S 56 _t\r
951 (files.)_S 56 _t\r
952 (I)_S 1200 9820 _m\r
953 (recently)_S 56 _t\r
954 (obtained)_S 56 _t\r
955 (a)_S 56 _t\r
956 (Gravis)_S 56 _t\r
957 (UltraSound)_S 56 _t\r
958 (board)_S 56 _t\r
959 (for)_S 56 _t\r
960 (my)_S 56 _t\r
961 (PC,)_S 56 _t\r
962 (and)_S 56 _t\r
963 (upon)_S 56 _t\r
964 (hearing)_S 56 _t\r
965 (a)_S 56 _t\r
966 (few)_S 56 _t\r
967 (midi)_S 56 _t\r
968 (files)_S 56 _t\r
969 (\(.MID\))_S 1200 9620 _m\r
970 (thought,)_S 56 _t\r
971 ("Gee,)_S 56 _t\r
972 (I'd)_S 56 _t\r
973 (like)_S 56 _t\r
974 (to)_S 56 _t\r
975 (be)_S 56 _t\r
976 (able)_S 56 _t\r
977 (to)_S 56 _t\r
978 (make)_S 56 _t\r
979 (my)_S 56 _t\r
980 (own)_S 56 _t\r
981 (.MID)_S 56 _t\r
982 (files.")_S 56 _t\r
983 (Well,)_S 56 _t\r
984 (many)_S 56 _t\r
985 (aggravating)_S 56 _t\r
986 (hours)_S 56 _t\r
987 (later,)_S 1200 9420 _m\r
988 (I)_S 56 _t\r
989 (discovered)_S 56 _t\r
990 (that)_S 56 _t\r
991 (this)_S 56 _t\r
992 (was)_S 56 _t\r
993 (no)_S 56 _t\r
994 (trivial)_S 56 _t\r
995 (task.)_S 56 _t\r
996 (But,)_S 56 _t\r
997 (I)_S 56 _t\r
998 (couldn't)_S 56 _t\r
999 (let)_S 56 _t\r
1000 (a)_S 56 _t\r
1001 (stupid)_S 56 _t\r
1002 (file)_S 56 _t\r
1003 (format)_S 56 _t\r
1004 (stop)_S 56 _t\r
1005 (me.)_S 56 _t\r
1006 (\(besides,)_S 56 _t\r
1007 (I)_S 1200 9220 _m\r
1008 (once)_S 56 _t\r
1009 (told)_S 56 _t\r
1010 (my)_S 56 _t\r
1011 (wife)_S 56 _t\r
1012 (that)_S 56 _t\r
1013 (computers)_S 56 _t\r
1014 (aren't)_S 56 _t\r
1015 (really)_S 56 _t\r
1016 (that)_S 56 _t\r
1017 (hard)_S 56 _t\r
1018 (to)_S 56 _t\r
1019 (use,)_S 56 _t\r
1020 (and)_S 56 _t\r
1021 (I'd)_S 56 _t\r
1022 (hate)_S 56 _t\r
1023 (to)_S 56 _t\r
1024 (be)_S 56 _t\r
1025 (a)_S 56 _t\r
1026 (hypocrite\))_S 56 _t\r
1027 (So)_S 1200 9020 _m\r
1028 (if)_S 56 _t\r
1029 (any)_S 56 _t\r
1030 (errors)_S 56 _t\r
1031 (are)_S 56 _t\r
1032 (found)_S 56 _t\r
1033 (in)_S 56 _t\r
1034 (this)_S 56 _t\r
1035 (information,)_S 56 _t\r
1036 (please)_S 56 _t\r
1037 (let)_S 56 _t\r
1038 (me)_S 56 _t\r
1039 (know)_S 56 _t\r
1040 (and)_S 56 _t\r
1041 (I)_S 56 _t\r
1042 (will)_S 56 _t\r
1043 (fix)_S 56 _t\r
1044 (it.)_S 56 _t\r
1045 (Also,)_S 56 _t\r
1046 (this)_S 1200 8820 _m\r
1047 (document's)_S 56 _t\r
1048 (scope)_S 56 _t\r
1049 (does)_S 56 _t\r
1050 (not)_S 56 _t\r
1051 (extend)_S 56 _t\r
1052 (to)_S 56 _t\r
1053 (EVERY)_S 56 _t\r
1054 (type)_S 56 _t\r
1055 (of)_S 56 _t\r
1056 (midi)_S 56 _t\r
1057 (command)_S 56 _t\r
1058 (and)_S 56 _t\r
1059 (EVERY)_S 56 _t\r
1060 (possible)_S 56 _t\r
1061 (file)_S 1200 8620 _m\r
1062 (configuration.)_S 56 _t\r
1063 (It)_S 56 _t\r
1064 (is)_S 56 _t\r
1065 (a)_S 56 _t\r
1066 (basic)_S 56 _t\r
1067 (guide)_S 56 _t\r
1068 (that)_S 56 _t\r
1069 (should)_S 56 _t\r
1070 (enable)_S 56 _t\r
1071 (the)_S 56 _t\r
1072 (reader)_S 56 _t\r
1073 (\(with)_S 56 _t\r
1074 (a)_S 56 _t\r
1075 (moderate)_S 56 _t\r
1076 (investment)_S 56 _t\r
1077 (in)_S 1200 8420 _m\r
1078 (time\))_S 56 _t\r
1079 (to)_S 56 _t\r
1080 (generate)_S 56 _t\r
1081 (a)_S 56 _t\r
1082 (quality)_S 56 _t\r
1083 (midi)_S 56 _t\r
1084 (file.)_S 1200 8020 _m\r
1085 (1.)_S 56 _t\r
1086 (Overview)_S 1800 7620 _m\r
1087 (A)_S 56 _t\r
1088 (midi)_S 56 _t\r
1089 (\(.MID\))_S 56 _t\r
1090 (file)_S 56 _t\r
1091 (contains)_S 56 _t\r
1092 (basically)_S 56 _t\r
1093 (2)_S 56 _t\r
1094 (things,)_S 56 _t\r
1095 (Header)_S 56 _t\r
1096 (chunks)_S 56 _t\r
1097 (and)_S 56 _t\r
1098 (Track)_S 56 _t\r
1099 (chunks.)_S 56 _t\r
1100 (Section)_S 56 _t\r
1101 (2)_S 1200 7420 _m\r
1102 (explains)_S 56 _t\r
1103 (the)_S 56 _t\r
1104 (header)_S 56 _t\r
1105 (chunks,)_S 56 _t\r
1106 (and)_S 56 _t\r
1107 (Section)_S 56 _t\r
1108 (3)_S 56 _t\r
1109 (explains)_S 56 _t\r
1110 (the)_S 56 _t\r
1111 (track)_S 56 _t\r
1112 (chunks.)_S 56 _t\r
1113 (A)_S 56 _t\r
1114 (midi)_S 56 _t\r
1115 (file)_S 56 _t\r
1116 (contains)_S 56 _t\r
1117 (ONE)_S 1200 7220 _m\r
1118 (header)_S 56 _t\r
1119 (chunk)_S 56 _t\r
1120 (describing)_S 56 _t\r
1121 (the)_S 56 _t\r
1122 (file)_S 56 _t\r
1123 (format,)_S 56 _t\r
1124 (etc.,)_S 56 _t\r
1125 (and)_S 56 _t\r
1126 (any)_S 56 _t\r
1127 (number)_S 56 _t\r
1128 (of)_S 56 _t\r
1129 (track)_S 56 _t\r
1130 (chunks.)_S 56 _t\r
1131 (A)_S 56 _t\r
1132 (track)_S 56 _t\r
1133 (may)_S 56 _t\r
1134 (be)_S 1200 7020 _m\r
1135 (thought)_S 56 _t\r
1136 (of)_S 56 _t\r
1137 (in)_S 56 _t\r
1138 (the)_S 56 _t\r
1139 (same)_S 56 _t\r
1140 (way)_S 56 _t\r
1141 (as)_S 56 _t\r
1142 (a)_S 56 _t\r
1143 (track)_S 56 _t\r
1144 (on)_S 56 _t\r
1145 (a)_S 56 _t\r
1146 (multi-track)_S 56 _t\r
1147 (tape)_S 56 _t\r
1148 (deck.)_S 56 _t\r
1149 (You)_S 56 _t\r
1150 (may)_S 56 _t\r
1151 (assign)_S 56 _t\r
1152 (one)_S 56 _t\r
1153 (track)_S 56 _t\r
1154 (to)_S 1200 6820 _m\r
1155 (each)_S 56 _t\r
1156 (voice,)_S 56 _t\r
1157 (each)_S 56 _t\r
1158 (staff,)_S 56 _t\r
1159 (each)_S 56 _t\r
1160 (instrument)_S 56 _t\r
1161 (or)_S 56 _t\r
1162 (whatever)_S 56 _t\r
1163 (you)_S 56 _t\r
1164 (want.)_S 56 _t\r
1165 1200 6420 _m\r
1166 (2.)_S 56 _t\r
1167 (Header)_S 56 _t\r
1168 (Chunk)_S 1800 6020 _m\r
1169 (The)_S 56 _t\r
1170 (header)_S 56 _t\r
1171 (chunk)_S 56 _t\r
1172 (appears)_S 56 _t\r
1173 (at)_S 56 _t\r
1174 (the)_S 56 _t\r
1175 (beginning)_S 56 _t\r
1176 (of)_S 56 _t\r
1177 (the)_S 56 _t\r
1178 (file,)_S 56 _t\r
1179 (and)_S 56 _t\r
1180 (describes)_S 56 _t\r
1181 (the)_S 56 _t\r
1182 (file)_S 56 _t\r
1183 (in)_S 56 _t\r
1184 (three)_S 56 _t\r
1185 (ways.)_S 1200 5820 _m\r
1186 (The)_S 56 _t\r
1187 (header)_S 56 _t\r
1188 (chunk)_S 56 _t\r
1189 (always)_S 56 _t\r
1190 (looks)_S 56 _t\r
1191 (like:)_S 1200 5420 _m\r
1192 (4D)_S 56 _t\r
1193 (54)_S 56 _t\r
1194 (68)_S 56 _t\r
1195 (64)_S 56 _t\r
1196 (00)_S 56 _t\r
1197 (00)_S 56 _t\r
1198 (00)_S 56 _t\r
1199 (06)_S 56 _t\r
1200 (ff)_S 56 _t\r
1201 (ff)_S 56 _t\r
1202 (nn)_S 56 _t\r
1203 (nn)_S 56 _t\r
1204 (dd)_S 56 _t\r
1205 (dd)_S 1200 5020 _m\r
1206 (The)_S 56 _t\r
1207 (ascii)_S 56 _t\r
1208 (equivalent)_S 56 _t\r
1209 (of)_S 56 _t\r
1210 (the)_S 56 _t\r
1211 (first)_S 56 _t\r
1212 (4)_S 56 _t\r
1213 (bytes)_S 56 _t\r
1214 (is)_S 56 _t\r
1215 (MThd.)_S 56 _t\r
1216 (After)_S 56 _t\r
1217 (MThd)_S 56 _t\r
1218 (comes)_S 56 _t\r
1219 (the)_S 56 _t\r
1220 (4-byte)_S 56 _t\r
1221 (size)_S 56 _t\r
1222 (of)_S 56 _t\r
1223 (the)_S 56 _t\r
1224 (header.)_S 1200 4820 _m\r
1225 (This)_S 56 _t\r
1226 (will)_S 56 _t\r
1227 (always)_S 56 _t\r
1228 (be)_S 56 _t\r
1229 (00)_S 56 _t\r
1230 (00)_S 56 _t\r
1231 (00)_S 56 _t\r
1232 (06,)_S 56 _t\r
1233 (because)_S 56 _t\r
1234 (the)_S 56 _t\r
1235 (actual)_S 56 _t\r
1236 (header)_S 56 _t\r
1237 (information)_S 56 _t\r
1238 (will)_S 56 _t\r
1239 (always)_S 56 _t\r
1240 (be)_S 56 _t\r
1241 (6)_S 56 _t\r
1242 (bytes.)_S 56 _t\r
1243 1200 4420 _m\r
1244 (ff)_S 56 _t\r
1245 (ff)_S 56 _t\r
1246 (is)_S 56 _t\r
1247 (the)_S 56 _t\r
1248 (file)_S 56 _t\r
1249 (format.)_S 56 _t\r
1250 (There)_S 56 _t\r
1251 (are)_S 56 _t\r
1252 (3)_S 56 _t\r
1253 (formats:)_S 1200 4020 _m\r
1254 (0)_S 56 _t\r
1255 (-)_S 56 _t\r
1256 (single-track)_S 56 _t\r
1257 1200 3820 _m\r
1258 (1)_S 56 _t\r
1259 (-)_S 56 _t\r
1260 (multiple)_S 56 _t\r
1261 (tracks,)_S 56 _t\r
1262 (synchronous)_S 1200 3620 _m\r
1263 (2)_S 56 _t\r
1264 (-)_S 56 _t\r
1265 (multiple)_S 56 _t\r
1266 (tracks,)_S 56 _t\r
1267 (asynchronous)_S 1200 3220 _m\r
1268 (Single)_S 56 _t\r
1269 (track)_S 56 _t\r
1270 (is)_S 56 _t\r
1271 (fairly)_S 56 _t\r
1272 (self-explanatory)_S 56 _t\r
1273 (-)_S 56 _t\r
1274 (one)_S 56 _t\r
1275 (track)_S 56 _t\r
1276 (only.)_S 56 _t\r
1277 (Synchronous)_S 56 _t\r
1278 (multiple)_S 56 _t\r
1279 (tracks)_S 56 _t\r
1280 (means)_S 56 _t\r
1281 (that)_S 56 _t\r
1282 (the)_S 1200 3020 _m\r
1283 (tracks)_S 56 _t\r
1284 (will)_S 56 _t\r
1285 (all)_S 56 _t\r
1286 (be)_S 56 _t\r
1287 (vertically)_S 56 _t\r
1288 (synchronous,)_S 56 _t\r
1289 (or)_S 56 _t\r
1290 (in)_S 56 _t\r
1291 (other)_S 56 _t\r
1292 (words,)_S 56 _t\r
1293 (they)_S 56 _t\r
1294 (all)_S 56 _t\r
1295 (start)_S 56 _t\r
1296 (at)_S 56 _t\r
1297 (the)_S 56 _t\r
1298 (same)_S 56 _t\r
1299 (time,)_S 56 _t\r
1300 (and)_S 56 _t\r
1301 (so)_S 1200 2820 _m\r
1302 (can)_S 56 _t\r
1303 (represent)_S 56 _t\r
1304 (different)_S 56 _t\r
1305 (parts)_S 56 _t\r
1306 (in)_S 56 _t\r
1307 (one)_S 56 _t\r
1308 (song.)_S 56 _t\r
1309 (Asynchronous)_S 56 _t\r
1310 (multiple)_S 56 _t\r
1311 (tracks)_S 56 _t\r
1312 (do)_S 56 _t\r
1313 (not)_S 56 _t\r
1314 (necessarily)_S 56 _t\r
1315 (start)_S 56 _t\r
1316 (at)_S 1200 2620 _m\r
1317 (the)_S 56 _t\r
1318 (same)_S 56 _t\r
1319 (time,)_S 56 _t\r
1320 (and)_S 56 _t\r
1321 (can)_S 56 _t\r
1322 (be)_S 56 _t\r
1323 (completely)_S 56 _t\r
1324 (asynchronous.)_S 56 _t\r
1325 1200 2220 _m\r
1326 (nn)_S 56 _t\r
1327 (nn)_S 56 _t\r
1328 (is)_S 56 _t\r
1329 (the)_S 56 _t\r
1330 (number)_S 56 _t\r
1331 (of)_S 56 _t\r
1332 (tracks)_S 56 _t\r
1333 (in)_S 56 _t\r
1334 (the)_S 56 _t\r
1335 (midi)_S 56 _t\r
1336 (file.)_S 1200 1820 _m\r
1337 (dd)_S 56 _t\r
1338 (dd)_S 56 _t\r
1339 (is)_S 56 _t\r
1340 (the)_S 56 _t\r
1341 (number)_S 56 _t\r
1342 (of)_S 56 _t\r
1343 (delta-time)_S 56 _t\r
1344 (ticks)_S 56 _t\r
1345 (per)_S 56 _t\r
1346 (quarter)_S 56 _t\r
1347 (note.)_S 56 _t\r
1348 (\(More)_S 56 _t\r
1349 (about)_S 56 _t\r
1350 (this)_S 56 _t\r
1351 (later\))_S _ep\r
1352 _bp /NewCenturySchlbk-RomanR 500 _ff\r
1353 0 13200 10200 _ornt \r
1354 /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}\r
1355          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse\r
1356      }bdef\r
1357 8907 11870 _m\r
1358 (2)_S 1200 11503 _m\r
1359 (3.)_S 56 _t\r
1360 (Track)_S 56 _t\r
1361 (Chunks)_S 1200 11103 _m\r
1362 (The)_S 56 _t\r
1363 (remainder)_S 56 _t\r
1364 (of)_S 56 _t\r
1365 (the)_S 56 _t\r
1366 (file)_S 56 _t\r
1367 (after)_S 56 _t\r
1368 (the)_S 56 _t\r
1369 (header)_S 56 _t\r
1370 (chunk)_S 56 _t\r
1371 (consists)_S 56 _t\r
1372 (of)_S 56 _t\r
1373 (track)_S 56 _t\r
1374 (chunks.)_S 56 _t\r
1375 (Each)_S 56 _t\r
1376 (track)_S 56 _t\r
1377 (has)_S 56 _t\r
1378 (one)_S 1200 10903 _m\r
1379 (header)_S 56 _t\r
1380 (and)_S 56 _t\r
1381 (may)_S 56 _t\r
1382 (contain)_S 56 _t\r
1383 (as)_S 56 _t\r
1384 (many)_S 56 _t\r
1385 (midi)_S 56 _t\r
1386 (commands)_S 56 _t\r
1387 (as)_S 56 _t\r
1388 (you)_S 56 _t\r
1389 (like.)_S 56 _t\r
1390 (The)_S 56 _t\r
1391 (header)_S 56 _t\r
1392 (for)_S 56 _t\r
1393 (a)_S 56 _t\r
1394 (track)_S 56 _t\r
1395 (is)_S 56 _t\r
1396 (very)_S 1200 10703 _m\r
1397 (similar)_S 56 _t\r
1398 (to)_S 56 _t\r
1399 (the)_S 56 _t\r
1400 (one)_S 56 _t\r
1401 (for)_S 56 _t\r
1402 (the)_S 56 _t\r
1403 (file:)_S 1200 10303 _m\r
1404 (4D)_S 56 _t\r
1405 (54)_S 56 _t\r
1406 (72)_S 56 _t\r
1407 (6B)_S 56 _t\r
1408 (xx)_S 56 _t\r
1409 (xx)_S 56 _t\r
1410 (xx)_S 56 _t\r
1411 (xx)_S 1200 9903 _m\r
1412 (As)_S 56 _t\r
1413 (with)_S 56 _t\r
1414 (the)_S 56 _t\r
1415 (header,)_S 56 _t\r
1416 (the)_S 56 _t\r
1417 (first)_S 56 _t\r
1418 (4)_S 56 _t\r
1419 (bytes)_S 56 _t\r
1420 (has)_S 56 _t\r
1421 (an)_S 56 _t\r
1422 (ascii)_S 56 _t\r
1423 (equivalent.)_S 56 _t\r
1424 (This)_S 56 _t\r
1425 (one)_S 56 _t\r
1426 (is)_S 56 _t\r
1427 (MTrk.)_S 56 _t\r
1428 (The)_S 56 _t\r
1429 (4)_S 56 _t\r
1430 (bytes)_S 56 _t\r
1431 (after)_S 1200 9703 _m\r
1432 (MTrk)_S 56 _t\r
1433 (give)_S 56 _t\r
1434 (the)_S 56 _t\r
1435 (length)_S 56 _t\r
1436 (of)_S 56 _t\r
1437 (the)_S 56 _t\r
1438 (track)_S 56 _t\r
1439 (\(not)_S 56 _t\r
1440 (including)_S 56 _t\r
1441 (the)_S 56 _t\r
1442 (track)_S 56 _t\r
1443 (header\))_S 56 _t\r
1444 (in)_S 56 _t\r
1445 (bytes.)_S 56 _t\r
1446 1800 9503 _m\r
1447 (Following)_S 56 _t\r
1448 (the)_S 56 _t\r
1449 (header)_S 56 _t\r
1450 (are)_S 56 _t\r
1451 (midi)_S 56 _t\r
1452 (events.)_S 56 _t\r
1453 (These)_S 56 _t\r
1454 (events)_S 56 _t\r
1455 (are)_S 56 _t\r
1456 (identical)_S 56 _t\r
1457 (to)_S 56 _t\r
1458 (the)_S 56 _t\r
1459 (actual)_S 56 _t\r
1460 (data)_S 56 _t\r
1461 (sent)_S 1200 9303 _m\r
1462 (and)_S 56 _t\r
1463 (received)_S 56 _t\r
1464 (by)_S 56 _t\r
1465 (MIDI)_S 56 _t\r
1466 (ports)_S 56 _t\r
1467 (on)_S 56 _t\r
1468 (a)_S 56 _t\r
1469 (synth)_S 56 _t\r
1470 (with)_S 56 _t\r
1471 (one)_S 56 _t\r
1472 (addition.)_S 56 _t\r
1473 (A)_S 56 _t\r
1474 (midi)_S 56 _t\r
1475 (event)_S 56 _t\r
1476 (is)_S 56 _t\r
1477 (preceded)_S 56 _t\r
1478 (by)_S 56 _t\r
1479 (a)_S 56 _t\r
1480 (delta-time.)_S 1200 9103 _m\r
1481 (A)_S 56 _t\r
1482 (delta)_S 56 _t\r
1483 (time)_S 56 _t\r
1484 (is)_S 56 _t\r
1485 (the)_S 56 _t\r
1486 (number)_S 56 _t\r
1487 (of)_S 56 _t\r
1488 (ticks)_S 56 _t\r
1489 (after)_S 56 _t\r
1490 (which)_S 56 _t\r
1491 (the)_S 56 _t\r
1492 (midi)_S 56 _t\r
1493 (event)_S 56 _t\r
1494 (is)_S 56 _t\r
1495 (to)_S 56 _t\r
1496 (be)_S 56 _t\r
1497 (executed.)_S 56 _t\r
1498 (The)_S 56 _t\r
1499 (number)_S 56 _t\r
1500 (of)_S 1200 8903 _m\r
1501 (ticks)_S 56 _t\r
1502 (per)_S 56 _t\r
1503 (quarter)_S 56 _t\r
1504 (note)_S 56 _t\r
1505 (was)_S 56 _t\r
1506 (defined)_S 56 _t\r
1507 (previously)_S 56 _t\r
1508 (in)_S 56 _t\r
1509 (the)_S 56 _t\r
1510 (file)_S 56 _t\r
1511 (header)_S 56 _t\r
1512 (chunk.)_S 56 _t\r
1513 (This)_S 56 _t\r
1514 (delta-time)_S 56 _t\r
1515 (is)_S 56 _t\r
1516 (a)_S 1200 8703 _m\r
1517 (variable-length)_S 56 _t\r
1518 (encoded)_S 56 _t\r
1519 (value.)_S 56 _t\r
1520 (This)_S 56 _t\r
1521 (format,)_S 56 _t\r
1522 (while)_S 56 _t\r
1523 (confusing,)_S 56 _t\r
1524 (allows)_S 56 _t\r
1525 (large)_S 56 _t\r
1526 (numbers)_S 56 _t\r
1527 (to)_S 56 _t\r
1528 (use)_S 56 _t\r
1529 (as)_S 56 _t\r
1530 (many)_S 1200 8503 _m\r
1531 (bytes)_S 56 _t\r
1532 (as)_S 56 _t\r
1533 (they)_S 56 _t\r
1534 (need,)_S 56 _t\r
1535 (without)_S 56 _t\r
1536 (requiring)_S 56 _t\r
1537 (small)_S 56 _t\r
1538 (numbers)_S 56 _t\r
1539 (to)_S 56 _t\r
1540 (waste)_S 56 _t\r
1541 (bytes)_S 56 _t\r
1542 (by)_S 56 _t\r
1543 (filling)_S 56 _t\r
1544 (with)_S 56 _t\r
1545 (zeros.)_S 56 _t\r
1546 (The)_S 1200 8303 _m\r
1547 (number)_S 56 _t\r
1548 (is)_S 56 _t\r
1549 (converted)_S 56 _t\r
1550 (into)_S 56 _t\r
1551 (7-bit)_S 56 _t\r
1552 (bytes,)_S 56 _t\r
1553 (and)_S 56 _t\r
1554 (the)_S 56 _t\r
1555 (most-significant)_S 56 _t\r
1556 (bit)_S 56 _t\r
1557 (of)_S 56 _t\r
1558 (each)_S 56 _t\r
1559 (byte)_S 56 _t\r
1560 (is)_S 56 _t\r
1561 (1)_S 56 _t\r
1562 (except)_S 56 _t\r
1563 (for)_S 56 _t\r
1564 (the)_S 1200 8103 _m\r
1565 (last)_S 56 _t\r
1566 (byte)_S 56 _t\r
1567 (of)_S 56 _t\r
1568 (the)_S 56 _t\r
1569 (number,)_S 56 _t\r
1570 (which)_S 56 _t\r
1571 (has)_S 56 _t\r
1572 (a)_S 56 _t\r
1573 (msb)_S 56 _t\r
1574 (of)_S 56 _t\r
1575 (0.)_S 56 _t\r
1576 (This)_S 56 _t\r
1577 (allows)_S 56 _t\r
1578 (the)_S 56 _t\r
1579 (number)_S 56 _t\r
1580 (to)_S 56 _t\r
1581 (be)_S 56 _t\r
1582 (read)_S 56 _t\r
1583 (one)_S 56 _t\r
1584 (byte)_S 56 _t\r
1585 (at)_S 56 _t\r
1586 (a)_S 1200 7903 _m\r
1587 (time,)_S 56 _t\r
1588 (and)_S 56 _t\r
1589 (when)_S 56 _t\r
1590 (you)_S 56 _t\r
1591 (see)_S 56 _t\r
1592 (a)_S 56 _t\r
1593 (msb)_S 56 _t\r
1594 (of)_S 56 _t\r
1595 (0,)_S 56 _t\r
1596 (you)_S 56 _t\r
1597 (know)_S 56 _t\r
1598 (that)_S 56 _t\r
1599 (it)_S 56 _t\r
1600 (was)_S 56 _t\r
1601 (the)_S 56 _t\r
1602 (last)_S 56 _t\r
1603 (\(least)_S 56 _t\r
1604 (significant\))_S 56 _t\r
1605 (byte)_S 56 _t\r
1606 (of)_S 56 _t\r
1607 (the)_S 1200 7703 _m\r
1608 (number.)_S 56 _t\r
1609 (According)_S 56 _t\r
1610 (to)_S 56 _t\r
1611 (the)_S 56 _t\r
1612 (MIDI)_S 56 _t\r
1613 (spec,)_S 56 _t\r
1614 (the)_S 56 _t\r
1615 (entire)_S 56 _t\r
1616 (delta-time)_S 56 _t\r
1617 (should)_S 56 _t\r
1618 (be)_S 56 _t\r
1619 (at)_S 56 _t\r
1620 (most)_S 56 _t\r
1621 (4)_S 56 _t\r
1622 (bytes)_S 56 _t\r
1623 (long.)_S 56 _t\r
1624 1800 7503 _m\r
1625 (Following)_S 56 _t\r
1626 (the)_S 56 _t\r
1627 (delta-time)_S 56 _t\r
1628 (is)_S 56 _t\r
1629 (a)_S 56 _t\r
1630 (midi)_S 56 _t\r
1631 (event.)_S 56 _t\r
1632 (Each)_S 56 _t\r
1633 (midi)_S 56 _t\r
1634 (event)_S 56 _t\r
1635 (\(except)_S 56 _t\r
1636 (a)_S 56 _t\r
1637 (running)_S 56 _t\r
1638 (midi)_S 56 _t\r
1639 (event\))_S 1200 7303 _m\r
1640 (has)_S 56 _t\r
1641 (a)_S 56 _t\r
1642 (command)_S 56 _t\r
1643 (byte)_S 56 _t\r
1644 (which)_S 56 _t\r
1645 (will)_S 56 _t\r
1646 (always)_S 56 _t\r
1647 (have)_S 56 _t\r
1648 (a)_S 56 _t\r
1649 (msb)_S 56 _t\r
1650 (of)_S 56 _t\r
1651 (1)_S 56 _t\r
1652 (\(the)_S 56 _t\r
1653 (value)_S 56 _t\r
1654 (will)_S 56 _t\r
1655 (be)_S 56 _t\r
1656 (>=)_S 56 _t\r
1657 (128\).)_S 56 _t\r
1658 (A)_S 56 _t\r
1659 (list)_S 56 _t\r
1660 (of)_S 56 _t\r
1661 (most)_S 56 _t\r
1662 (of)_S 1200 7103 _m\r
1663 (these)_S 56 _t\r
1664 (commands)_S 56 _t\r
1665 (is)_S 56 _t\r
1666 (in)_S 56 _t\r
1667 (appendix)_S 56 _t\r
1668 (A.)_S 56 _t\r
1669 (Each)_S 56 _t\r
1670 (command)_S 56 _t\r
1671 (has)_S 56 _t\r
1672 (different)_S 56 _t\r
1673 (parameters)_S 56 _t\r
1674 (and)_S 56 _t\r
1675 (lengths,)_S 56 _t\r
1676 (but)_S 56 _t\r
1677 (the)_S 1200 6903 _m\r
1678 (data)_S 56 _t\r
1679 (that)_S 56 _t\r
1680 (follows)_S 56 _t\r
1681 (the)_S 56 _t\r
1682 (command)_S 56 _t\r
1683 (will)_S 56 _t\r
1684 (have)_S 56 _t\r
1685 (a)_S 56 _t\r
1686 (msb)_S 56 _t\r
1687 (of)_S 56 _t\r
1688 (0)_S 56 _t\r
1689 (\(less)_S 56 _t\r
1690 (than)_S 56 _t\r
1691 (128\).)_S 56 _t\r
1692 (The)_S 56 _t\r
1693 (exception)_S 56 _t\r
1694 (to)_S 56 _t\r
1695 (this)_S 56 _t\r
1696 (is)_S 56 _t\r
1697 (a)_S 1200 6703 _m\r
1698 (meta-event,)_S 56 _t\r
1699 (which)_S 56 _t\r
1700 (may)_S 56 _t\r
1701 (contain)_S 56 _t\r
1702 (data)_S 56 _t\r
1703 (with)_S 56 _t\r
1704 (a)_S 56 _t\r
1705 (msb)_S 56 _t\r
1706 (of)_S 56 _t\r
1707 (1.)_S 56 _t\r
1708 (However,)_S 56 _t\r
1709 (meta-events)_S 56 _t\r
1710 (require)_S 56 _t\r
1711 (a)_S 56 _t\r
1712 (length)_S 1200 6503 _m\r
1713 (parameter)_S 56 _t\r
1714 (which)_S 56 _t\r
1715 (alleviates)_S 56 _t\r
1716 (confusion.)_S 56 _t\r
1717 1800 6303 _m\r
1718 (One)_S 56 _t\r
1719 (subtlety)_S 56 _t\r
1720 (which)_S 56 _t\r
1721 (can)_S 56 _t\r
1722 (cause)_S 56 _t\r
1723 (confusion)_S 56 _t\r
1724 (is)_S 56 _t\r
1725 (running)_S 56 _t\r
1726 (mode.)_S 56 _t\r
1727 (This)_S 56 _t\r
1728 (is)_S 56 _t\r
1729 (where)_S 56 _t\r
1730 (the)_S 56 _t\r
1731 (actual)_S 56 _t\r
1732 (midi)_S 1200 6103 _m\r
1733 (command)_S 56 _t\r
1734 (is)_S 56 _t\r
1735 (omitted,)_S 56 _t\r
1736 (and)_S 56 _t\r
1737 (the)_S 56 _t\r
1738 (last)_S 56 _t\r
1739 (midi)_S 56 _t\r
1740 (command)_S 56 _t\r
1741 (issued)_S 56 _t\r
1742 (is)_S 56 _t\r
1743 (assumed.)_S 56 _t\r
1744 (This)_S 56 _t\r
1745 (means)_S 56 _t\r
1746 (that)_S 56 _t\r
1747 (the)_S 56 _t\r
1748 (midi)_S 1200 5903 _m\r
1749 (event)_S 56 _t\r
1750 (will)_S 56 _t\r
1751 (consist)_S 56 _t\r
1752 (of)_S 56 _t\r
1753 (a)_S 56 _t\r
1754 (delta-time)_S 56 _t\r
1755 (and)_S 56 _t\r
1756 (the)_S 56 _t\r
1757 (parameters)_S 56 _t\r
1758 (that)_S 56 _t\r
1759 (would)_S 56 _t\r
1760 (go)_S 56 _t\r
1761 (to)_S 56 _t\r
1762 (the)_S 56 _t\r
1763 (command)_S 56 _t\r
1764 (if)_S 56 _t\r
1765 (it)_S 56 _t\r
1766 (were)_S 1200 5703 _m\r
1767 (included.)_S 56 _t\r
1768 1200 5303 _m\r
1769 (4.)_S 56 _t\r
1770 (Conclusion)_S 1800 4903 _m\r
1771 (If)_S 56 _t\r
1772 (this)_S 56 _t\r
1773 (explanation)_S 56 _t\r
1774 (has)_S 56 _t\r
1775 (only)_S 56 _t\r
1776 (served)_S 56 _t\r
1777 (to)_S 56 _t\r
1778 (confuse)_S 56 _t\r
1779 (the)_S 56 _t\r
1780 (issue)_S 56 _t\r
1781 (more,)_S 56 _t\r
1782 (the)_S 56 _t\r
1783 (appendices)_S 56 _t\r
1784 (contain)_S 1200 4703 _m\r
1785 (examples)_S 56 _t\r
1786 (which)_S 56 _t\r
1787 (may)_S 56 _t\r
1788 (help)_S 56 _t\r
1789 (clarify)_S 56 _t\r
1790 (the)_S 56 _t\r
1791 (issue.)_S 56 _t\r
1792 (Also,)_S 56 _t\r
1793 (2)_S 56 _t\r
1794 (utilities)_S 56 _t\r
1795 (and)_S 56 _t\r
1796 (a)_S 56 _t\r
1797 (graphic)_S 56 _t\r
1798 (file)_S 56 _t\r
1799 (should)_S 56 _t\r
1800 (have)_S 56 _t\r
1801 (been)_S 1200 4503 _m\r
1802 (included)_S 56 _t\r
1803 (with)_S 56 _t\r
1804 (this)_S 56 _t\r
1805 (document:)_S 56 _t\r
1806 1200 4103 _m\r
1807 (DEC.EXE)_S 56 _t\r
1808 (-)_S 56 _t\r
1809 (This)_S 56 _t\r
1810 (utility)_S 56 _t\r
1811 (converts)_S 56 _t\r
1812 (a)_S 56 _t\r
1813 (binary)_S 56 _t\r
1814 (file)_S 56 _t\r
1815 (\(like)_S 56 _t\r
1816 (.MID\))_S 56 _t\r
1817 (to)_S 56 _t\r
1818 (a)_S 56 _t\r
1819 (tab-delimited)_S 56 _t\r
1820 (text)_S 56 _t\r
1821 (file)_S 56 _t\r
1822 (containing)_S 56 _t\r
1823 (the)_S 1200 3903 _m\r
1824 (decimal)_S 56 _t\r
1825 (equivalents)_S 56 _t\r
1826 (of)_S 56 _t\r
1827 (each)_S 56 _t\r
1828 (byte.)_S 1200 3503 _m\r
1829 (REC.EXE)_S 56 _t\r
1830 (-)_S 56 _t\r
1831 (This)_S 56 _t\r
1832 (utility)_S 56 _t\r
1833 (converts)_S 56 _t\r
1834 (a)_S 56 _t\r
1835 (tab-delimited)_S 56 _t\r
1836 (text)_S 56 _t\r
1837 (file)_S 56 _t\r
1838 (of)_S 56 _t\r
1839 (decimal)_S 56 _t\r
1840 (values)_S 56 _t\r
1841 (into)_S 56 _t\r
1842 (a)_S 56 _t\r
1843 (binary)_S 56 _t\r
1844 (file)_S 56 _t\r
1845 (in)_S 1200 3303 _m\r
1846 (which)_S 56 _t\r
1847 (each)_S 56 _t\r
1848 (byte)_S 56 _t\r
1849 (corresponds)_S 56 _t\r
1850 (to)_S 56 _t\r
1851 (one)_S 56 _t\r
1852 (of)_S 56 _t\r
1853 (the)_S 56 _t\r
1854 (decimal)_S 56 _t\r
1855 (values.)_S 1200 2903 _m\r
1856 (MIDINOTE.PS)_S 56 _t\r
1857 (-)_S 56 _t\r
1858 (This)_S 56 _t\r
1859 (is)_S 56 _t\r
1860 (the)_S 56 _t\r
1861 (postscript)_S 56 _t\r
1862 (form)_S 56 _t\r
1863 (of)_S 56 _t\r
1864 (a)_S 56 _t\r
1865 (page)_S 56 _t\r
1866 (showing)_S 56 _t\r
1867 (note)_S 56 _t\r
1868 (numbers)_S 56 _t\r
1869 (with)_S 56 _t\r
1870 (a)_S 56 _t\r
1871 (keyboard)_S 56 _t\r
1872 (and)_S 1200 2703 _m\r
1873 (with)_S 56 _t\r
1874 (the)_S 56 _t\r
1875 (standard)_S 56 _t\r
1876 (grand)_S 56 _t\r
1877 (staff.)_S _ep\r
1878 _bp /NewCenturySchlbk-RomanR 500 _ff\r
1879 0 13200 10200 _ornt \r
1880 /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}\r
1881          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse\r
1882      }bdef\r
1883 8907 11870 _m\r
1884 (3)_S 4645 11503 _m\r
1885 (Appendix)_S 56 _t\r
1886 (A)_S 1200 11103 _m\r
1887 (1.)_S 56 _t\r
1888 (MIDI)_S 56 _t\r
1889 (Event)_S 56 _t\r
1890 (Commands)_S 1200 10703 _m\r
1891 (Each)_S 56 _t\r
1892 (command)_S 56 _t\r
1893 (byte)_S 56 _t\r
1894 (has)_S 56 _t\r
1895 (2)_S 56 _t\r
1896 (parts.)_S 56 _t\r
1897 (The)_S 56 _t\r
1898 (left)_S 56 _t\r
1899 (nybble)_S 56 _t\r
1900 (\(4)_S 56 _t\r
1901 (bits\))_S 56 _t\r
1902 (contains)_S 56 _t\r
1903 (the)_S 56 _t\r
1904 (actual)_S 56 _t\r
1905 (command,)_S 56 _t\r
1906 (and)_S 56 _t\r
1907 (the)_S 1200 10503 _m\r
1908 (right)_S 56 _t\r
1909 (nybble)_S 56 _t\r
1910 (contains)_S 56 _t\r
1911 (the)_S 56 _t\r
1912 (midi)_S 56 _t\r
1913 (channel)_S 56 _t\r
1914 (number)_S 56 _t\r
1915 (on)_S 56 _t\r
1916 (which)_S 56 _t\r
1917 (the)_S 56 _t\r
1918 (command)_S 56 _t\r
1919 (will)_S 56 _t\r
1920 (be)_S 56 _t\r
1921 (executed.)_S 56 _t\r
1922 (There)_S 56 _t\r
1923 (are)_S 1200 10303 _m\r
1924 (16)_S 56 _t\r
1925 (midi)_S 56 _t\r
1926 (channels,)_S 56 _t\r
1927 (and)_S 56 _t\r
1928 (8)_S 56 _t\r
1929 (midi)_S 56 _t\r
1930 (commands)_S 56 _t\r
1931 (\(the)_S 56 _t\r
1932 (command)_S 56 _t\r
1933 (nybble)_S 56 _t\r
1934 (must)_S 56 _t\r
1935 (have)_S 56 _t\r
1936 (a)_S 56 _t\r
1937 (msb)_S 56 _t\r
1938 (of)_S 56 _t\r
1939 (1\).)_S 1200 10103 _m\r
1940 (In)_S 56 _t\r
1941 (the)_S 56 _t\r
1942 (following)_S 56 _t\r
1943 (table,)_S 56 _t\r
1944 (x)_S 56 _t\r
1945 (indicates)_S 56 _t\r
1946 (the)_S 56 _t\r
1947 (midi)_S 56 _t\r
1948 (channel)_S 56 _t\r
1949 (number.)_S 56 _t\r
1950 (Note)_S 56 _t\r
1951 (that)_S 56 _t\r
1952 (all)_S 56 _t\r
1953 (data)_S 56 _t\r
1954 (bytes)_S 56 _t\r
1955 (will)_S 56 _t\r
1956 (be)_S 56 _t\r
1957 (<128)_S 1200 9903 _m\r
1958 (\(msb)_S 56 _t\r
1959 (set)_S 56 _t\r
1960 (to)_S 56 _t\r
1961 (0\).)_S 1200 9503 _m\r
1962 _U (Hex)_S 2109 9503 _m\r
1963 (Binary)_S 3422 9503 _m\r
1964 (Data)_S 4836 9503 _m\r
1965 (Description)_S _u 1200 9303 _m\r
1966 (8x)_S 2109 9303 _m\r
1967 (1000xxxx)_S 3422 9303 _m\r
1968 (nn)_S 56 _t\r
1969 (vv)_S 4836 9303 _m\r
1970 (Note)_S 56 _t\r
1971 (off)_S 56 _t\r
1972 (\(key)_S 56 _t\r
1973 (is)_S 56 _t\r
1974 (released\))_S 4836 9103 _m\r
1975 (nn=note)_S 56 _t\r
1976 (number)_S 4836 8903 _m\r
1977 (vv=velocity)_S 1200 8503 _m\r
1978 (9x)_S 2109 8503 _m\r
1979 (1001xxxx)_S 3422 8503 _m\r
1980 (nn)_S 56 _t\r
1981 (vv)_S 4836 8503 _m\r
1982 (Note)_S 56 _t\r
1983 (on)_S 56 _t\r
1984 (\(key)_S 56 _t\r
1985 (is)_S 56 _t\r
1986 (pressed\))_S 4836 8303 _m\r
1987 (nn=note)_S 56 _t\r
1988 (number)_S 4836 8103 _m\r
1989 (vv=velocity)_S 1200 7703 _m\r
1990 (Ax)_S 2109 7703 _m\r
1991 (1010xxxx)_S 3422 7703 _m\r
1992 (nn)_S 56 _t\r
1993 (vv)_S 4836 7703 _m\r
1994 (Key)_S 56 _t\r
1995 (after-touch)_S 4836 7503 _m\r
1996 (nn=note)_S 56 _t\r
1997 (number)_S 4836 7303 _m\r
1998 (vv=velocity)_S 1200 6903 _m\r
1999 (Bx)_S 2109 6903 _m\r
2000 (1011xxxx)_S 3422 6903 _m\r
2001 (cc)_S 56 _t\r
2002 (vv)_S 4836 6903 _m\r
2003 (Control)_S 56 _t\r
2004 (Change)_S 4836 6703 _m\r
2005 (cc=controller)_S 56 _t\r
2006 (number)_S 4836 6503 _m\r
2007 (vv=new)_S 56 _t\r
2008 (value)_S 1200 6103 _m\r
2009 (Cx)_S 2109 6103 _m\r
2010 (1100xxxx)_S 3422 6103 _m\r
2011 (pp)_S 4836 6103 _m\r
2012 (Program)_S 56 _t\r
2013 (\(patch\))_S 56 _t\r
2014 (change)_S 4836 5903 _m\r
2015 (pp=new)_S 56 _t\r
2016 (program)_S 56 _t\r
2017 (number)_S 1200 5503 _m\r
2018 (Dx)_S 2109 5503 _m\r
2019 (1101xxxx)_S 3422 5503 _m\r
2020 (cc)_S 4836 5503 _m\r
2021 (Channel)_S 56 _t\r
2022 (after-touch)_S 4836 5303 _m\r
2023 (cc=channel)_S 56 _t\r
2024 (number)_S 1200 4903 _m\r
2025 (Ex)_S 2109 4903 _m\r
2026 (1110xxxx)_S 3422 4903 _m\r
2027 (bb)_S 56 _t\r
2028 (tt)_S 4836 4903 _m\r
2029 (Pitch)_S 56 _t\r
2030 (wheel)_S 56 _t\r
2031 (change)_S 56 _t\r
2032 (\(2000H)_S 56 _t\r
2033 (is)_S 56 _t\r
2034 (normal)_S 56 _t\r
2035 (or)_S 56 _t\r
2036 (no)_S 56 _t\r
2037 (change\))_S 4836 4703 _m\r
2038 (bb=bottom)_S 56 _t\r
2039 (\(least)_S 56 _t\r
2040 (sig\))_S 56 _t\r
2041 (7)_S 56 _t\r
2042 (bits)_S 56 _t\r
2043 (of)_S 56 _t\r
2044 (value)_S 4836 4503 _m\r
2045 (tt=top)_S 56 _t\r
2046 (\(most)_S 56 _t\r
2047 (sig\))_S 56 _t\r
2048 (7)_S 56 _t\r
2049 (bits)_S 56 _t\r
2050 (of)_S 56 _t\r
2051 (value)_S _ep\r
2052 _bp /NewCenturySchlbk-RomanR 500 _ff\r
2053 0 13200 10200 _ornt \r
2054 /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}\r
2055          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse\r
2056      }bdef\r
2057 8907 11870 _m\r
2058 (4)_S 1200 11503 _m\r
2059 (The)_S 56 _t\r
2060 (following)_S 56 _t\r
2061 (table)_S 56 _t\r
2062 (lists)_S 56 _t\r
2063 (meta-events)_S 56 _t\r
2064 (which)_S 56 _t\r
2065 (have)_S 56 _t\r
2066 (no)_S 56 _t\r
2067 (midi)_S 56 _t\r
2068 (channel)_S 56 _t\r
2069 (number.)_S 56 _t\r
2070 (They)_S 56 _t\r
2071 (are)_S 56 _t\r
2072 (of)_S 56 _t\r
2073 (the)_S 56 _t\r
2074 (format:)_S 1200 11103 _m\r
2075 (FF)_S 56 _t\r
2076 (xx)_S 56 _t\r
2077 (nn)_S 56 _t\r
2078 (dd)_S 1200 10703 _m\r
2079 (All)_S 56 _t\r
2080 (meta-events)_S 56 _t\r
2081 (start)_S 56 _t\r
2082 (with)_S 56 _t\r
2083 (FF)_S 56 _t\r
2084 (followed)_S 56 _t\r
2085 (by)_S 56 _t\r
2086 (the)_S 56 _t\r
2087 (command)_S 56 _t\r
2088 (\(xx\),)_S 56 _t\r
2089 (the)_S 56 _t\r
2090 (length,)_S 56 _t\r
2091 (or)_S 56 _t\r
2092 (number)_S 56 _t\r
2093 (of)_S 56 _t\r
2094 (bytes)_S 56 _t\r
2095 (that)_S 1200 10503 _m\r
2096 (will)_S 56 _t\r
2097 (contain)_S 56 _t\r
2098 (data)_S 56 _t\r
2099 (\(nn\),)_S 56 _t\r
2100 (and)_S 56 _t\r
2101 (the)_S 56 _t\r
2102 (actual)_S 56 _t\r
2103 (data)_S 56 _t\r
2104 (\(dd\).)_S 1200 10103 _m\r
2105 _U (Hex)_S 2109 10103 _m\r
2106 (Binary)_S 3422 10103 _m\r
2107 (Data)_S 4836 10103 _m\r
2108 (Description)_S _u 1200 9903 _m\r
2109 (00)_S 2109 9903 _m\r
2110 (00000000)_S 3422 9903 _m\r
2111 (nn)_S 56 _t\r
2112 (ssss)_S 4836 9903 _m\r
2113 (Sets)_S 56 _t\r
2114 (the)_S 56 _t\r
2115 (track's)_S 56 _t\r
2116 (sequence)_S 56 _t\r
2117 (number.)_S 4836 9703 _m\r
2118 (nn=02)_S 56 _t\r
2119 (\(length)_S 56 _t\r
2120 (of)_S 56 _t\r
2121 (2-byte)_S 56 _t\r
2122 (sequence)_S 56 _t\r
2123 (number\))_S 4836 9503 _m\r
2124 (ssss=sequence)_S 56 _t\r
2125 (number)_S 1200 9103 _m\r
2126 (01)_S 2109 9103 _m\r
2127 (00000001)_S 3422 9103 _m\r
2128 (nn)_S 56 _t\r
2129 (tt)_S 56 _t\r
2130 (..)_S 4836 9103 _m\r
2131 (Text)_S 56 _t\r
2132 (event-)_S 56 _t\r
2133 (any)_S 56 _t\r
2134 (text)_S 56 _t\r
2135 (you)_S 56 _t\r
2136 (want.)_S 4836 8903 _m\r
2137 (nn=length)_S 56 _t\r
2138 (in)_S 56 _t\r
2139 (bytes)_S 56 _t\r
2140 (of)_S 56 _t\r
2141 (text)_S 4836 8703 _m\r
2142 (tt=text)_S 56 _t\r
2143 (characters)_S 1200 8303 _m\r
2144 (02)_S 2109 8303 _m\r
2145 (00000010)_S 3422 8303 _m\r
2146 (nn)_S 56 _t\r
2147 (tt)_S 56 _t\r
2148 (..)_S 4836 8303 _m\r
2149 (Same)_S 56 _t\r
2150 (as)_S 56 _t\r
2151 (text)_S 56 _t\r
2152 (event,)_S 56 _t\r
2153 (but)_S 56 _t\r
2154 (used)_S 56 _t\r
2155 (for)_S 56 _t\r
2156 (copyright)_S 56 _t\r
2157 (info.)_S 4836 8103 _m\r
2158 (nn)_S 56 _t\r
2159 (tt=same)_S 56 _t\r
2160 (as)_S 56 _t\r
2161 (text)_S 56 _t\r
2162 (event)_S 1200 7703 _m\r
2163 (03)_S 2109 7703 _m\r
2164 (00000011)_S 3422 7703 _m\r
2165 (nn)_S 56 _t\r
2166 (tt)_S 56 _t\r
2167 (..)_S 4836 7703 _m\r
2168 (Sequence)_S 56 _t\r
2169 (or)_S 56 _t\r
2170 (Track)_S 56 _t\r
2171 (name)_S 4836 7503 _m\r
2172 (nn)_S 56 _t\r
2173 (tt=same)_S 56 _t\r
2174 (as)_S 56 _t\r
2175 (text)_S 56 _t\r
2176 (event)_S 1200 7103 _m\r
2177 (04)_S 2109 7103 _m\r
2178 (00000100)_S 3422 7103 _m\r
2179 (nn)_S 56 _t\r
2180 (tt)_S 56 _t\r
2181 (..)_S 4836 7103 _m\r
2182 (Track)_S 56 _t\r
2183 (instrument)_S 56 _t\r
2184 (name)_S 4836 6903 _m\r
2185 (nn)_S 56 _t\r
2186 (tt=same)_S 56 _t\r
2187 (as)_S 56 _t\r
2188 (text)_S 56 _t\r
2189 (event)_S 1200 6503 _m\r
2190 (05)_S 2109 6503 _m\r
2191 (00000101)_S 3422 6503 _m\r
2192 (nn)_S 56 _t\r
2193 (tt)_S 56 _t\r
2194 (..)_S 4836 6503 _m\r
2195 (Lyric)_S 4836 6303 _m\r
2196 (nn)_S 56 _t\r
2197 (tt=same)_S 56 _t\r
2198 (as)_S 56 _t\r
2199 (text)_S 56 _t\r
2200 (event)_S 1200 5903 _m\r
2201 (06)_S 2109 5903 _m\r
2202 (00000110)_S 3422 5903 _m\r
2203 (nn)_S 56 _t\r
2204 (tt)_S 56 _t\r
2205 (..)_S 4836 5903 _m\r
2206 (Marker)_S 4836 5703 _m\r
2207 (nn)_S 56 _t\r
2208 (tt=same)_S 56 _t\r
2209 (as)_S 56 _t\r
2210 (text)_S 56 _t\r
2211 (event)_S 1200 5303 _m\r
2212 (07)_S 2109 5303 _m\r
2213 (00000111)_S 3422 5303 _m\r
2214 (nn)_S 56 _t\r
2215 (tt)_S 56 _t\r
2216 (..)_S 4836 5303 _m\r
2217 (Cue)_S 56 _t\r
2218 (point)_S 4836 5103 _m\r
2219 (nn)_S 56 _t\r
2220 (tt=same)_S 56 _t\r
2221 (as)_S 56 _t\r
2222 (text)_S 56 _t\r
2223 (event)_S 1200 4703 _m\r
2224 (2F)_S 56 _t\r
2225 2109 4703 _m\r
2226 (00101111)_S 3422 4703 _m\r
2227 (00)_S 4836 4703 _m\r
2228 (This)_S 56 _t\r
2229 (event)_S 56 _t\r
2230 (must)_S 56 _t\r
2231 (come)_S 56 _t\r
2232 (at)_S 56 _t\r
2233 (the)_S 56 _t\r
2234 (end)_S 56 _t\r
2235 (of)_S 56 _t\r
2236 (each)_S 56 _t\r
2237 (track)_S 1200 4303 _m\r
2238 (51)_S 2109 4303 _m\r
2239 (01010001)_S 3422 4303 _m\r
2240 (03)_S 56 _t\r
2241 (tttttt)_S 4836 4303 _m\r
2242 (Set)_S 56 _t\r
2243 (tempo)_S 4836 4103 _m\r
2244 (tttttt=microseconds/quarter)_S 56 _t\r
2245 (note)_S 1200 3703 _m\r
2246 (58)_S 2109 3703 _m\r
2247 (01011000)_S 3422 3703 _m\r
2248 (04)_S 56 _t\r
2249 (nn)_S 56 _t\r
2250 (dd)_S 56 _t\r
2251 (cc)_S 56 _t\r
2252 (bb)_S 4836 3703 _m\r
2253 (Time)_S 56 _t\r
2254 (Signature)_S 4836 3503 _m\r
2255 (nn=numerator)_S 56 _t\r
2256 (of)_S 56 _t\r
2257 (time)_S 56 _t\r
2258 (sig.)_S 4836 3303 _m\r
2259 (dd=denominator)_S 56 _t\r
2260 (of)_S 56 _t\r
2261 (time)_S 56 _t\r
2262 (sig.)_S 56 _t\r
2263 (2=quarter)_S 56 _t\r
2264 (3=eighth,)_S 56 _t\r
2265 (etc.)_S 4836 3103 _m\r
2266 (cc=number)_S 56 _t\r
2267 (of)_S 56 _t\r
2268 (ticks)_S 56 _t\r
2269 (in)_S 56 _t\r
2270 (metronome)_S 56 _t\r
2271 (click)_S 4836 2903 _m\r
2272 (bb=number)_S 56 _t\r
2273 (of)_S 56 _t\r
2274 (32nd)_S 56 _t\r
2275 (notes)_S 56 _t\r
2276 (to)_S 56 _t\r
2277 (the)_S 56 _t\r
2278 (quarter)_S 56 _t\r
2279 (note)_S 1200 2503 _m\r
2280 (59)_S 2109 2503 _m\r
2281 (01011001)_S 3422 2503 _m\r
2282 (02)_S 56 _t\r
2283 (sf)_S 56 _t\r
2284 (mi)_S 4836 2503 _m\r
2285 (Key)_S 56 _t\r
2286 (signature)_S 4836 2303 _m\r
2287 (sf=sharps/flats)_S 56 _t\r
2288 (\(-7=7)_S 56 _t\r
2289 (flats,)_S 56 _t\r
2290 (0=key)_S 56 _t\r
2291 (of)_S 56 _t\r
2292 (C,)_S 56 _t\r
2293 (7=7)_S 56 _t\r
2294 (sharps\))_S 4836 2103 _m\r
2295 (mi=major/minor)_S 56 _t\r
2296 (\(0=major,)_S 56 _t\r
2297 (1=minor\))_S 1200 1703 _m\r
2298 (7F)_S 2109 1703 _m\r
2299 (01111111)_S 3422 1703 _m\r
2300 (xx)_S 56 _t\r
2301 (dd)_S 56 _t\r
2302 (..)_S 4836 1703 _m\r
2303 (Sequencer)_S 56 _t\r
2304 (specific)_S 56 _t\r
2305 (information)_S 4836 1503 _m\r
2306 (xx=number)_S 56 _t\r
2307 (of)_S 56 _t\r
2308 (bytes)_S 56 _t\r
2309 (to)_S 56 _t\r
2310 (be)_S 56 _t\r
2311 (sent)_S 4836 1303 _m\r
2312 (dd=data)_S _ep\r
2313 _bp /NewCenturySchlbk-RomanR 500 _ff\r
2314 0 13200 10200 _ornt \r
2315 /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}\r
2316          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse\r
2317      }bdef\r
2318 8907 11870 _m\r
2319 (5)_S 1200 11303 _m\r
2320 (The)_S 56 _t\r
2321 (following)_S 56 _t\r
2322 (table)_S 56 _t\r
2323 (lists)_S 56 _t\r
2324 (system)_S 56 _t\r
2325 (messages)_S 56 _t\r
2326 (which)_S 56 _t\r
2327 (control)_S 56 _t\r
2328 (the)_S 56 _t\r
2329 (entire)_S 56 _t\r
2330 (system.)_S 56 _t\r
2331 (These)_S 56 _t\r
2332 (have)_S 56 _t\r
2333 (no)_S 56 _t\r
2334 (midi)_S 1200 11103 _m\r
2335 (channel)_S 56 _t\r
2336 (number.)_S 56 _t\r
2337 (\(these)_S 56 _t\r
2338 (will)_S 56 _t\r
2339 (generally)_S 56 _t\r
2340 (only)_S 56 _t\r
2341 (apply)_S 56 _t\r
2342 (to)_S 56 _t\r
2343 (controlling)_S 56 _t\r
2344 (a)_S 56 _t\r
2345 (midi)_S 56 _t\r
2346 (keyboard,)_S 56 _t\r
2347 (etc.\))_S 1200 10703 _m\r
2348 _U (Hex)_S 2109 10703 _m\r
2349 (Binary)_S 3422 10703 _m\r
2350 (Data)_S 4836 10703 _m\r
2351 (Description)_S _u 1200 10503 _m\r
2352 (F8)_S 2109 10503 _m\r
2353 (11111000)_S 4836 10503 _m\r
2354 (Timing)_S 56 _t\r
2355 (clock)_S 56 _t\r
2356 (used)_S 56 _t\r
2357 (when)_S 56 _t\r
2358 (synchronization)_S 56 _t\r
2359 (is)_S 56 _t\r
2360 (required.)_S 1200 10103 _m\r
2361 (FA)_S 2109 10103 _m\r
2362 (11111010)_S 4836 10103 _m\r
2363 (Start)_S 56 _t\r
2364 (current)_S 56 _t\r
2365 (sequence)_S 1200 9703 _m\r
2366 (FB)_S 2109 9703 _m\r
2367 (11111011)_S 4836 9703 _m\r
2368 (Continue)_S 56 _t\r
2369 (a)_S 56 _t\r
2370 (stopped)_S 56 _t\r
2371 (sequence)_S 56 _t\r
2372 (where)_S 56 _t\r
2373 (left)_S 56 _t\r
2374 (off)_S 1200 9303 _m\r
2375 (FC)_S 2109 9303 _m\r
2376 (11111100)_S 4836 9303 _m\r
2377 (Stop)_S 56 _t\r
2378 (a)_S 56 _t\r
2379 (sequence)_S 1200 8703 _m\r
2380 (The)_S 56 _t\r
2381 (following)_S 56 _t\r
2382 (table)_S 56 _t\r
2383 (lists)_S 56 _t\r
2384 (the)_S 56 _t\r
2385 (numbers)_S 56 _t\r
2386 (corresponding)_S 56 _t\r
2387 (to)_S 56 _t\r
2388 (notes)_S 56 _t\r
2389 (for)_S 56 _t\r
2390 (use)_S 56 _t\r
2391 (in)_S 56 _t\r
2392 (note)_S 56 _t\r
2393 1200 8503 _m\r
2394 (on)_S 56 _t\r
2395 (and)_S 56 _t\r
2396 (note)_S 56 _t\r
2397 (off)_S 56 _t\r
2398 (commands.)_S /CourierR 500 _ff\r
2399 1200 7952 _m\r
2400 (Octave||)_S 2100 _t\r
2401 (Note)_S 100 _t\r
2402 (Numbers)_S 1200 7785 _m\r
2403 100 _t\r
2404 100 _t\r
2405 100 _t\r
2406 (#)_S 200 _t\r
2407 (||)_S 1200 7618 _m\r
2408 100 _t\r
2409 100 _t\r
2410 100 _t\r
2411 100 _t\r
2412 100 _t\r
2413 100 _t\r
2414 (||)_S 100 _t\r
2415 (C)_S 300 _t\r
2416 (|)_S 100 _t\r
2417 (C#)_S 200 _t\r
2418 (|)_S 100 _t\r
2419 (D)_S 300 _t\r
2420 (|)_S 100 _t\r
2421 (D#)_S 200 _t\r
2422 (|)_S 100 _t\r
2423 (E)_S 300 _t\r
2424 (|)_S 100 _t\r
2425 (F)_S 300 _t\r
2426 (|)_S 100 _t\r
2427 (F#)_S 200 _t\r
2428 (|)_S 100 _t\r
2429 (G)_S 300 _t\r
2430 (|)_S 100 _t\r
2431 (G#)_S 200 _t\r
2432 (|)_S 100 _t\r
2433 (A)_S 300 _t\r
2434 (|)_S 100 _t\r
2435 (A#)_S 200 _t\r
2436 (|)_S 100 _t\r
2437 (B)_S 1200 7451 _m\r
2438 (-----------------------------------------------------------------------------)_S 1200 7284 _m\r
2439 100 _t\r
2440 100 _t\r
2441 100 _t\r
2442 (0)_S 200 _t\r
2443 (||)_S 300 _t\r
2444 (0)_S 100 _t\r
2445 (|)_S 300 _t\r
2446 (1)_S 100 _t\r
2447 (|)_S 300 _t\r
2448 (2)_S 100 _t\r
2449 (|)_S 300 _t\r
2450 (3)_S 100 _t\r
2451 (|)_S 300 _t\r
2452 (4)_S 100 _t\r
2453 (|)_S 300 _t\r
2454 (5)_S 100 _t\r
2455 (|)_S 300 _t\r
2456 (6)_S 100 _t\r
2457 (|)_S 300 _t\r
2458 (7)_S 100 _t\r
2459 (|)_S 300 _t\r
2460 (8)_S 100 _t\r
2461 (|)_S 300 _t\r
2462 (9)_S 100 _t\r
2463 (|)_S 200 _t\r
2464 (10)_S 100 _t\r
2465 (|)_S 100 _t\r
2466 (11)_S 1200 7117 _m\r
2467 100 _t\r
2468 100 _t\r
2469 100 _t\r
2470 (1)_S 200 _t\r
2471 (||)_S 200 _t\r
2472 (12)_S 100 _t\r
2473 (|)_S 200 _t\r
2474 (13)_S 100 _t\r
2475 (|)_S 200 _t\r
2476 (14)_S 100 _t\r
2477 (|)_S 200 _t\r
2478 (15)_S 100 _t\r
2479 (|)_S 200 _t\r
2480 (16)_S 100 _t\r
2481 (|)_S 200 _t\r
2482 (17)_S 100 _t\r
2483 (|)_S 200 _t\r
2484 (18)_S 100 _t\r
2485 (|)_S 200 _t\r
2486 (19)_S 100 _t\r
2487 (|)_S 200 _t\r
2488 (20)_S 100 _t\r
2489 (|)_S 200 _t\r
2490 (21)_S 100 _t\r
2491 (|)_S 200 _t\r
2492 (22)_S 100 _t\r
2493 (|)_S 100 _t\r
2494 (23)_S 1200 6950 _m\r
2495 100 _t\r
2496 100 _t\r
2497 100 _t\r
2498 (2)_S 200 _t\r
2499 (||)_S 200 _t\r
2500 (24)_S 100 _t\r
2501 (|)_S 200 _t\r
2502 (25)_S 100 _t\r
2503 (|)_S 200 _t\r
2504 (26)_S 100 _t\r
2505 (|)_S 200 _t\r
2506 (27)_S 100 _t\r
2507 (|)_S 200 _t\r
2508 (28)_S 100 _t\r
2509 (|)_S 200 _t\r
2510 (29)_S 100 _t\r
2511 (|)_S 200 _t\r
2512 (30)_S 100 _t\r
2513 (|)_S 200 _t\r
2514 (31)_S 100 _t\r
2515 (|)_S 200 _t\r
2516 (32)_S 100 _t\r
2517 (|)_S 200 _t\r
2518 (33)_S 100 _t\r
2519 (|)_S 200 _t\r
2520 (34)_S 100 _t\r
2521 (|)_S 100 _t\r
2522 (35)_S 1200 6783 _m\r
2523 100 _t\r
2524 100 _t\r
2525 100 _t\r
2526 (3)_S 200 _t\r
2527 (||)_S 200 _t\r
2528 (36)_S 100 _t\r
2529 (|)_S 200 _t\r
2530 (37)_S 100 _t\r
2531 (|)_S 200 _t\r
2532 (38)_S 100 _t\r
2533 (|)_S 200 _t\r
2534 (39)_S 100 _t\r
2535 (|)_S 200 _t\r
2536 (40)_S 100 _t\r
2537 (|)_S 200 _t\r
2538 (41)_S 100 _t\r
2539 (|)_S 200 _t\r
2540 (42)_S 100 _t\r
2541 (|)_S 200 _t\r
2542 (43)_S 100 _t\r
2543 (|)_S 200 _t\r
2544 (44)_S 100 _t\r
2545 (|)_S 200 _t\r
2546 (45)_S 100 _t\r
2547 (|)_S 200 _t\r
2548 (46)_S 100 _t\r
2549 (|)_S 100 _t\r
2550 (47)_S 1200 6616 _m\r
2551 100 _t\r
2552 100 _t\r
2553 100 _t\r
2554 (4)_S 200 _t\r
2555 (||)_S 200 _t\r
2556 (48)_S 100 _t\r
2557 (|)_S 200 _t\r
2558 (49)_S 100 _t\r
2559 (|)_S 200 _t\r
2560 (50)_S 100 _t\r
2561 (|)_S 200 _t\r
2562 (51)_S 100 _t\r
2563 (|)_S 200 _t\r
2564 (52)_S 100 _t\r
2565 (|)_S 200 _t\r
2566 (53)_S 100 _t\r
2567 (|)_S 200 _t\r
2568 (54)_S 100 _t\r
2569 (|)_S 200 _t\r
2570 (55)_S 100 _t\r
2571 (|)_S 200 _t\r
2572 (56)_S 100 _t\r
2573 (|)_S 200 _t\r
2574 (57)_S 100 _t\r
2575 (|)_S 200 _t\r
2576 (58)_S 100 _t\r
2577 (|)_S 100 _t\r
2578 (59)_S 1200 6449 _m\r
2579 100 _t\r
2580 100 _t\r
2581 100 _t\r
2582 (5)_S 200 _t\r
2583 (||)_S 200 _t\r
2584 (60)_S 100 _t\r
2585 (|)_S 200 _t\r
2586 (61)_S 100 _t\r
2587 (|)_S 200 _t\r
2588 (62)_S 100 _t\r
2589 (|)_S 200 _t\r
2590 (63)_S 100 _t\r
2591 (|)_S 200 _t\r
2592 (64)_S 100 _t\r
2593 (|)_S 200 _t\r
2594 (65)_S 100 _t\r
2595 (|)_S 200 _t\r
2596 (66)_S 100 _t\r
2597 (|)_S 200 _t\r
2598 (67)_S 100 _t\r
2599 (|)_S 200 _t\r
2600 (68)_S 100 _t\r
2601 (|)_S 200 _t\r
2602 (69)_S 100 _t\r
2603 (|)_S 200 _t\r
2604 (70)_S 100 _t\r
2605 (|)_S 100 _t\r
2606 (71)_S 1200 6282 _m\r
2607 100 _t\r
2608 100 _t\r
2609 100 _t\r
2610 (6)_S 200 _t\r
2611 (||)_S 200 _t\r
2612 (72)_S 100 _t\r
2613 (|)_S 200 _t\r
2614 (73)_S 100 _t\r
2615 (|)_S 200 _t\r
2616 (74)_S 100 _t\r
2617 (|)_S 200 _t\r
2618 (75)_S 100 _t\r
2619 (|)_S 200 _t\r
2620 (76)_S 100 _t\r
2621 (|)_S 200 _t\r
2622 (77)_S 100 _t\r
2623 (|)_S 200 _t\r
2624 (78)_S 100 _t\r
2625 (|)_S 200 _t\r
2626 (79)_S 100 _t\r
2627 (|)_S 200 _t\r
2628 (80)_S 100 _t\r
2629 (|)_S 200 _t\r
2630 (81)_S 100 _t\r
2631 (|)_S 200 _t\r
2632 (82)_S 100 _t\r
2633 (|)_S 100 _t\r
2634 (83)_S 1200 6115 _m\r
2635 100 _t\r
2636 100 _t\r
2637 100 _t\r
2638 (7)_S 200 _t\r
2639 (||)_S 200 _t\r
2640 (84)_S 100 _t\r
2641 (|)_S 200 _t\r
2642 (85)_S 100 _t\r
2643 (|)_S 200 _t\r
2644 (86)_S 100 _t\r
2645 (|)_S 200 _t\r
2646 (87)_S 100 _t\r
2647 (|)_S 200 _t\r
2648 (88)_S 100 _t\r
2649 (|)_S 200 _t\r
2650 (89)_S 100 _t\r
2651 (|)_S 200 _t\r
2652 (90)_S 100 _t\r
2653 (|)_S 200 _t\r
2654 (91)_S 100 _t\r
2655 (|)_S 200 _t\r
2656 (92)_S 100 _t\r
2657 (|)_S 200 _t\r
2658 (93)_S 100 _t\r
2659 (|)_S 200 _t\r
2660 (94)_S 100 _t\r
2661 (|)_S 100 _t\r
2662 (95)_S 1200 5948 _m\r
2663 100 _t\r
2664 100 _t\r
2665 100 _t\r
2666 (8)_S 200 _t\r
2667 (||)_S 200 _t\r
2668 (96)_S 100 _t\r
2669 (|)_S 200 _t\r
2670 (97)_S 100 _t\r
2671 (|)_S 200 _t\r
2672 (98)_S 100 _t\r
2673 (|)_S 200 _t\r
2674 (99)_S 100 _t\r
2675 (|)_S 100 _t\r
2676 (100)_S 100 _t\r
2677 (|)_S 100 _t\r
2678 (101)_S 100 _t\r
2679 (|)_S 100 _t\r
2680 (102)_S 100 _t\r
2681 (|)_S 100 _t\r
2682 (103)_S 100 _t\r
2683 (|)_S 100 _t\r
2684 (104)_S 100 _t\r
2685 (|)_S 100 _t\r
2686 (105)_S 100 _t\r
2687 (|)_S 100 _t\r
2688 (106)_S 100 _t\r
2689 (|)_S 100 _t\r
2690 (107)_S 1200 5781 _m\r
2691 100 _t\r
2692 100 _t\r
2693 100 _t\r
2694 (9)_S 200 _t\r
2695 (||)_S 100 _t\r
2696 (108)_S 100 _t\r
2697 (|)_S 100 _t\r
2698 (109)_S 100 _t\r
2699 (|)_S 100 _t\r
2700 (110)_S 100 _t\r
2701 (|)_S 100 _t\r
2702 (111)_S 100 _t\r
2703 (|)_S 100 _t\r
2704 (112)_S 100 _t\r
2705 (|)_S 100 _t\r
2706 (113)_S 100 _t\r
2707 (|)_S 100 _t\r
2708 (114)_S 100 _t\r
2709 (|)_S 100 _t\r
2710 (115)_S 100 _t\r
2711 (|)_S 100 _t\r
2712 (116)_S 100 _t\r
2713 (|)_S 100 _t\r
2714 (117)_S 100 _t\r
2715 (|)_S 100 _t\r
2716 (118)_S 100 _t\r
2717 (|)_S 100 _t\r
2718 (119)_S 1200 5614 _m\r
2719 100 _t\r
2720 100 _t\r
2721 (10)_S 200 _t\r
2722 (||)_S 100 _t\r
2723 (120)_S 100 _t\r
2724 (|)_S 100 _t\r
2725 (121)_S 100 _t\r
2726 (|)_S 100 _t\r
2727 (122)_S 100 _t\r
2728 (|)_S 100 _t\r
2729 (123)_S 100 _t\r
2730 (|)_S 100 _t\r
2731 (124)_S 100 _t\r
2732 (|)_S 100 _t\r
2733 (125)_S 100 _t\r
2734 (|)_S 100 _t\r
2735 (126)_S 100 _t\r
2736 (|)_S 100 _t\r
2737 (127)_S 100 _t\r
2738 (|)_S 1200 5113 _m\r
2739 100 _t\r
2740 100 _t\r
2741 100 _t\r
2742 100 _t\r
2743 100 _t\r
2744 100 _t\r
2745 100 _t\r
2746 100 _t\r
2747 100 _t\r
2748 100 _t\r
2749 100 _t\r
2750 100 _t\r
2751 100 _t\r
2752 100 _t\r
2753 100 _t\r
2754 100 _t\r
2755 100 _t\r
2756 100 _t\r
2757 100 _t\r
2758 100 _t\r
2759 100 _t\r
2760 100 _t\r
2761 100 _t\r
2762 100 _t\r
2763 100 _t\r
2764 100 _t\r
2765 100 _t\r
2766 100 _t\r
2767 100 _t\r
2768 100 _t\r
2769 100 _t\r
2770 100 _t\r
2771 (BIBLIOGRAPHY)_S 1200 4779 _m\r
2772 100 _t\r
2773 100 _t\r
2774 ("MIDI)_S 100 _t\r
2775 (Systems)_S 100 _t\r
2776 (and)_S 100 _t\r
2777 (Control")_S 100 _t\r
2778 (Francis)_S 100 _t\r
2779 (Rumsey)_S 200 _t\r
2780 (1990)_S 100 _t\r
2781 (Focal)_S 100 _t\r
2782 (Press)_S 1200 4445 _m\r
2783 100 _t\r
2784 100 _t\r
2785 ("MIDI)_S 100 _t\r
2786 (and)_S 100 _t\r
2787 (Sound)_S 100 _t\r
2788 (Book)_S 100 _t\r
2789 (for)_S 100 _t\r
2790 (the)_S 100 _t\r
2791 (Atari)_S 100 _t\r
2792 (ST")_S 100 _t\r
2793 (Bernd)_S 100 _t\r
2794 (Enders)_S 100 _t\r
2795 (and)_S 100 _t\r
2796 (Wolfgang)_S 100 _t\r
2797 (Klemme)_S 2109 4278 _m\r
2798 100 _t\r
2799 (1989)_S 100 _t\r
2800 (M&T)_S 100 _t\r
2801 (Publishing,)_S 100 _t\r
2802 (Inc.)_S 1200 3944 _m\r
2803 100 _t\r
2804 100 _t\r
2805 (MIDI)_S 100 _t\r
2806 (file)_S 100 _t\r
2807 (specs)_S 100 _t\r
2808 (and)_S 100 _t\r
2809 (general)_S 100 _t\r
2810 (MIDI)_S 100 _t\r
2811 (specs)_S 100 _t\r
2812 (were)_S 100 _t\r
2813 (also)_S 100 _t\r
2814 (obtained)_S 100 _t\r
2815 (by)_S 100 _t\r
2816 (sending)_S 100 _t\r
2817 (e-mail)_S 1200 3777 _m\r
2818 (to)_S 2109 3777 _m\r
2819 100 _t\r
2820 (LISTSERV@AUVM.AMERICAN.EDU)_S 100 _t\r
2821 (with)_S 100 _t\r
2822 (the)_S 100 _t\r
2823 (phrase)_S 100 _t\r
2824 (GET)_S 100 _t\r
2825 (MIDISPEC)_S 100 _t\r
2826 (PACKAGE)_S 100 _t\r
2827 (in)_S 1200 3610 _m\r
2828 (the)_S 100 _t\r
2829 (message.)_S 1200 3276 _m\r
2830 100 _t\r
2831 100 _t\r
2832 _ep\r
2833 _ed end end\r
2834 \ 4\e%-12345X\r
2835 \r
2836 ---------------------------- MIDINOTE.PS ----------------------------------\r
2837 \r
2838 %!PS-Adobe-3.0 EPSF-2.0\r
2839 %%Creator: Windows PSCRIPT\r
2840 %%Title: KEYS.CDR from CorelDRAW!\r
2841 %%BoundingBox: 19 17 594 776\r
2842 %%DocumentNeededResources: (atend)\r
2843 %%DocumentSuppliedResources: (atend)\r
2844 %%Pages: 0\r
2845 %%BeginResource: procset Win35Dict 3 1\r
2846 /Win35Dict 60 dict def Win35Dict begin/bd{bind def}bind def/in{72\r
2847 mul}bd/ed{exch def}bd/ld{load def}bd/tr/translate ld/gs/gsave ld/gr\r
2848 /grestore ld/fPP false def/SS{fPP{/SV save def}{gs}ifelse}bd/RS{fPP{SV\r
2849 restore}{gr}ifelse}bd/EJ{gsave showpage grestore}bd/#C{userdict begin\r
2850 /#copies ed end}bd/FEbuf 2 string def/FEglyph(G  )def/FE{1 exch{dup\r
2851 16 FEbuf cvrs FEglyph exch 1 exch putinterval 1 index exch FEglyph\r
2852 cvn put}for}bd/SM{/iRes ed/cyP ed/cxPg ed/cyM ed/cxM ed 0 ne{0 cyP\r
2853 72 mul 100 div tr -90 rotate}if pop}bd/CB{moveto/dy ed/dx ed dx 0 rlineto\r
2854 0 dy rlineto dx neg 0 rlineto closepath clip newpath}bd end\r
2855 %%EndResource\r
2856 /SVDoc save def\r
2857 %%EndProlog\r
2858 %%BeginSetup\r
2859 Win35Dict begin\r
2860 %%EndSetup\r
2861 SS\r
2862 0 0 26 22 799 1100 300 SM\r
2863 2397 3162 0 0 CB\r
2864 %%BeginSetup\r
2865 /AutoFlatness false def\r
2866 % Options: Emulsion Up\r
2867 % Options: Print Positive Output\r
2868 /SepsColor false def\r
2869 /ATraps false def\r
2870 %%EndSetup\r
2871 %%BeginProlog\r
2872 %%BeginResource: procset wCorel4Dict\r
2873 %Copyright (c)1992, 1993 Corel Corporation.  All rights reserved. v4.00.00\r
2874 /wCorel4Dict 300 dict def wCorel4Dict begin\r
2875 /bd{bind def}bind def/ld{load def}bd/xd{exch def}bd\r
2876 /_ null def/rp{{pop}repeat}bd/@cp/closepath ld\r
2877 /@gs/gsave ld/@gr/grestore ld/@np/newpath ld\r
2878 /Tl/translate ld/$sv 0 def/@sv{/$sv save def}bd\r
2879 /@rs{$sv restore}bd/spg/showpage ld/showpage{}bd\r
2880 currentscreen/@dsp xd/$dsp/@dsp def/$dsa xd\r
2881 /$dsf xd/$sdf false def/$SDF false def/$Scra 0 def\r
2882 /SetScr/setscreen ld/setscreen{3 rp}bd/@ss{2 index 0 eq{$dsf 3 1 roll\r
2883 4 -1 roll pop}if exch $Scra add exch load SetScr}bd\r
2884 /$c 0 def/$m 0 def/$y 0 def/$k 0 def/$t 1 def\r
2885 /$n _ def/$o 0 def/$fil 0 def/$C 0 def/$M 0 def\r
2886 /$Y 0 def/$K 0 def/$T 1 def/$N _ def/$O 0 def\r
2887 /$PF false def/s1c 0 def/s1m 0 def/s1y 0 def\r
2888 /s1k 0 def/s1t 0 def/s1n _ def/$bkg false def\r
2889 /SK 0 def/SM 0 def/SY 0 def/SC 0 def/SepMode 0 def\r
2890 /CurrentInkName (Composite) def/$ink -1 def\r
2891 /$op false def matrix currentmatrix/$ctm xd\r
2892 /$ptm matrix def/$ttm matrix def/$stm matrix def\r
2893 /$fst 128 def/$pad 0 def/$rox 0 def/$roy 0 def\r
2894 /CorelDrawReencodeVect [ 16#0/grave 16#5/breve 16#6/dotaccent 16#8/ring 16#A/hungarumlaut 16#B/ogonek 16#C/caron 16#D/dotlessi\r
2895 16#82/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl\r
2896 16#88/circumflex/perthousand/Scaron/guilsinglleft/OE\r
2897 16#91/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash\r
2898 16#98/tilde/trademark/scaron/guilsinglright/oe\r
2899 16#9F/Ydieresis 16#A1/exclamdown/cent/sterling/currency/yen/brokenbar/section\r
2900 16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/minus/registered/macron\r
2901 16#b0/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered\r
2902 16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown\r
2903 16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla\r
2904 16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis\r
2905 16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply\r
2906 16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls\r
2907 16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla\r
2908 16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis\r
2909 16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide\r
2910 16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis\r
2911 ] def AutoFlatness{/@ifl{dup currentflat exch sub 10 gt{\r
2912 ([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n)\r
2913 print flush newpath exit}{currentflat 2 add setflat}ifelse}bd\r
2914 /@fill/fill ld/fill{currentflat{{@fill}stopped{@ifl}{exit}ifelse\r
2915 }bind loop setflat}bd/@eofill/eofill ld/eofill{currentflat{\r
2916 {@eofill}stopped{@ifl}{exit}ifelse}bind loop\r
2917 setflat}bd/@clip/clip ld/clip{currentflat{{@clip}stopped{@ifl}{exit}\r
2918 ifelse}bind loop setflat}bd/@eoclip/eoclip ld\r
2919 /eoclip{currentflat{{@eoclip}stopped{@ifl}{exit}ifelse}bind loop\r
2920 setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke}stopped{@ifl}\r
2921 {exit}ifelse}bind loop setflat}bd}if/d/setdash ld\r
2922 /j/setlinejoin ld/J/setlinecap ld/M/setmiterlimit ld\r
2923 /w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd\r
2924 /W/eoclip ld/c/curveto ld/C/c ld/l/lineto ld\r
2925 /L/l ld/rl/rlineto ld/m/moveto ld/n/newpath ld\r
2926 /N/newpath ld/P{11 rp}bd/u{}bd/U{}bd/A{pop}bd\r
2927 /q/@gs ld/Q/@gr ld/`{}bd/~{}bd/@{}bd/&{}bd\r
2928 /@j{@sv @np}bd/@J{@rs}bd/g{1 exch sub/$k xd\r
2929 /$c 0 def/$m 0 def/$y 0 def/$t 1 def/$n _ def/$fil 0 def}bd\r
2930 /G{1 sub neg/$K xd _ 1 0 0 0/$C xd/$M xd/$Y xd/$T xd\r
2931 /$N xd}bd/k{1 index type/stringtype eq{/$t xd\r
2932 /$n xd}{/$t 0 def/$n _ def}ifelse/$k xd/$y xd\r
2933 /$m xd/$c xd/$fil 0 def}bd/K{1 index type\r
2934 /stringtype eq{/$T xd/$N xd}{/$T 0 def/$N _ def}ifelse\r
2935 /$K xd/$Y xd/$M xd/$C xd}bd/sf{1 index type\r
2936 /stringtype eq{/s1t xd/s1n xd}{/s1t 0 def\r
2937 /s1n _ def}ifelse/s1k xd/s1y xd/s1m xd/s1c xd}bd\r
2938 /i{dup 0 ne{setflat}{pop}ifelse}bd/v{4 -2 roll\r
2939 2 copy 6 -2 roll c}bd/V/v ld/y{2 copy c}bd\r
2940 /Y/y ld/@w{matrix rotate/$ptm xd matrix scale\r
2941 $ptm dup concatmatrix/$ptm xd 1 eq{$ptm exch dup concatmatrix\r
2942 /$ptm xd}if 1 w}bd/@g{1 eq dup/$sdf xd{/$scp xd\r
2943 /$sca xd/$scf xd}if}bd/@G{1 eq dup/$SDF xd{/$SCP xd\r
2944 /$SCA xd/$SCF xd}if}bd/@D{2 index 0 eq{$dsf 3 1 roll\r
2945 4 -1 roll pop}if 3 copy exch $Scra add exch load\r
2946 SetScr/$dsp xd/$dsa xd/$dsf xd}bd/$ngx{$SDF{$SCF\r
2947 SepMode 0 eq{$SCA}{$dsa}ifelse $SCP @ss}if}bd\r
2948 /p{/$pm xd 7{pop}repeat/$pyf xd/$pxf xd/$pn xd\r
2949 /$fil 1 def}bd/@MN{2 copy le{pop}{exch pop}ifelse}bd\r
2950 /@MX{2 copy ge{pop}{exch pop}ifelse}bd/InRange{3 -1 roll\r
2951 @MN @MX}bd/wDstChck{2 1 roll dup 3 -1 roll\r
2952 eq{1 add}if}bd/@dot{dup mul exch dup mul add\r
2953 1 exch sub}bd/@lin{exch pop abs 1 exch sub}bd\r
2954 /SetRgb/setrgbcolor ld/SetHsb/sethsbcolor ld\r
2955 /GetRgb/currentrgbcolor ld/GetHsb/currenthsbcolor ld\r
2956 /SetGry/setgray ld/GetGry/currentgray ld/cmyk2rgb{3{dup 5 -1 roll\r
2957 add 1 exch sub dup 0 lt{pop 0}if exch}repeat\r
2958 pop}bd/rgb2cmyk{3{1 exch sub 3 1 roll}repeat\r
2959 3 copy @MN @MN 3{dup 5 -1 roll sub neg exch}repeat}bd\r
2960 /rgb2hsb{SetRgb GetHsb}bd/hsb2rgb{3 -1 roll\r
2961 dup floor sub 3 1 roll SetHsb GetRgb}bd/rgb2g{2 index .299 mul\r
2962 2 index .587 mul add 1 index .114 mul add 4 1 roll\r
2963 3 rp}bd/WaldoColor where{pop}{/setcmykcolor where{pop\r
2964 /SetCmyk/setcmykcolor ld}{/SetCmyk{cmyk2rgb\r
2965 SetRgb}bd}ifelse/currentcmykcolor where{pop\r
2966 /GetCmyk/currentcmykcolor ld}{/GetCmyk{GetRgb\r
2967 rgb2cmyk}bd}ifelse/setoverprint where{pop}{/setoverprint{/$op xd}bd\r
2968 }ifelse/currentoverprint where{pop}{/currentoverprint{$op}bd}ifelse\r
2969 /colorimage where{pop/ColorImage/colorimage ld}{/ColorImage{\r
2970 /ncolors exch def pop/dataaq exch def{dataaq\r
2971 ncolors dup 3 eq{/$dat exch def 0 1 $dat length\r
2972 3 div 1 sub{dup 3 mul $dat 1 index get 255 div\r
2973 $dat 2 index 1 add get 255 div $dat 3 index 2 add get\r
2974 255 div rgb2g 255 mul cvi exch pop $dat 3 1 roll put}for\r
2975 $dat 0 $dat length 3 idiv getinterval pop}{4 eq{/$dat exch def\r
2976 0 1 $dat length 4 div 1 sub{dup 4 mul $dat 1 index get\r
2977 255 div $dat 2 index 1 add get 255 div $dat 3 index 2 add get\r
2978 255 div $dat 4 index 3 add get 255 div cmyk2rgb rgb2g 255 mul\r
2979 cvi exch pop $dat 3 1 roll put}for $dat 0 $dat length\r
2980 ncolors idiv getinterval}if}ifelse}image}bd}ifelse\r
2981 /@tc{5 -1 roll dup 1 ge{pop}{4{dup 6 -1 roll\r
2982 mul exch}repeat pop}ifelse}bd/@scc{1 eq setoverprint\r
2983 dup _ eq{pop SepMode 0 eq{SetCmyk 0}{0 4 $ink sub index\r
2984 exch pop 5 1 roll 4 rp SepsColor true eq{$ink 3 gt{1 sub neg dup SetGry\r
2985 exch}{dup 0 0 0 4 $ink roll SetCmyk}ifelse}{1 sub neg dup SetGry}ifelse\r
2986 }ifelse exch pop}{SepMode 0 eq{pop @tc SetCmyk 0}{CurrentInkName eq{\r
2987 4 index}{0}ifelse 6 1 roll 5 rp 1 sub neg dup SetGry}ifelse}ifelse\r
2988 SepMode 0 eq{pop true}{1 eq currentoverprint and not}ifelse}bd\r
2989 /setcmykcolor{1 5 1 roll _ currentoverprint @scc\r
2990 pop}bd/currentcmykcolor{0 0 0 0}bd/setrgbcolor{rgb2cmyk\r
2991 setcmykcolor}bd/currentrgbcolor{currentcmykcolor\r
2992 cmyk2rgb}bd/sethsbcolor{hsb2rgb setrgbcolor}bd\r
2993 /currenthsbcolor{currentrgbcolor rgb2hsb}bd\r
2994 /setgray{dup dup setrgbcolor}bd/currentgray{currentrgbcolor\r
2995 rgb2g}bd}ifelse/WaldoColor true def/@sft{$tllx $pxf add dup $tllx gt\r
2996 {$pwid sub}if/$tx xd $tury $pyf sub dup $tury lt{$phei add}if\r
2997 /$ty xd}bd/@stb{pathbbox/$ury xd/$urx xd/$lly xd/$llx xd}bd\r
2998 /@ep{{cvx exec}forall}bd/@tp{@sv/$in true def\r
2999 2 copy dup $lly le{/$in false def}if $phei sub $ury ge{/$in false def}if\r
3000 dup $urx ge{/$in false def}if $pwid add $llx le{/$in false def}if\r
3001 $in{@np 2 copy m $pwid 0 rl 0 $phei neg rl $pwid neg 0 rl\r
3002 0 $phei rl clip @np $pn cvlit load aload pop\r
3003 7 -1 roll 5 index sub 7 -1 roll 3 index sub Tl\r
3004 matrix currentmatrix/$ctm xd @ep 4 rp}{2 rp}ifelse\r
3005 @rs}bd/@th{@sft 0 1 $tly 1 sub{dup $psx mul $tx add{dup $llx gt\r
3006 {$pwid sub}{exit}ifelse}loop exch $phei mul\r
3007 $ty exch sub 0 1 $tlx 1 sub{$pwid mul 3 copy\r
3008 3 -1 roll add exch @tp pop}for 2 rp}for}bd/@tv{@sft\r
3009 0 1 $tlx 1 sub{dup $pwid mul $tx add exch $psy mul $ty exch sub{\r
3010 dup $ury lt{$phei add}{exit}ifelse}loop 0 1 $tly 1 sub{$phei mul\r
3011 3 copy sub @tp pop}for 2 rp}for}bd/@pf{@gs $ctm setmatrix\r
3012 $pm concat @stb eoclip Bburx Bbury $pm itransform\r
3013 /$tury xd/$turx xd Bbllx Bblly $pm itransform\r
3014 /$tlly xd/$tllx xd/$wid $turx $tllx sub def\r
3015 /$hei $tury $tlly sub def @gs $vectpat{1 0 0 0 0 _ $o @scc{eofill}if}{\r
3016 $t $c $m $y $k $n $o @scc{SepMode 0 eq $pfrg or{$tllx $tlly Tl\r
3017 $wid $hei scale <00> 8 1 false [ 8 0 0 1 0 0 ]{}imagemask}{\r
3018 /$bkg true def}ifelse}if}ifelse @gr $wid 0 gt $hei 0 gt and{\r
3019 $pn cvlit load aload pop/$pd xd 3 -1 roll sub/$phei xd\r
3020 exch sub/$pwid xd $wid $pwid div ceiling 1 add/$tlx xd\r
3021 $hei $phei div ceiling 1 add/$tly xd $psx 0 eq{@tv}{@th}ifelse}if\r
3022 @gr @np/$bkg false def}bd/@dlt{$fse $fss sub/nff xd\r
3023 $frb dup 1 eq exch 2 eq or{$frt dup $frc $frm $fry $frk\r
3024 @tc 4 copy cmyk2rgb rgb2hsb 3 copy/myb xd/mys xd\r
3025 /myh xd $tot $toc $tom $toy $tok @tc cmyk2rgb\r
3026 rgb2hsb 3 1 roll 4 1 roll 5 1 roll sub neg nff div/kdb xd\r
3027 sub neg nff div/kds xd sub neg dup 0 eq{pop\r
3028 $frb 2 eq{.99}{-.99}ifelse}if dup $frb 2 eq\r
3029 exch 0 lt and{1 add}if dup $frb 1 eq exch 0 gt and{1 sub}if\r
3030 nff div/kdh xd}{$frt dup $frc $frm $fry $frk\r
3031 @tc 5 copy $tot dup $toc $tom $toy $tok @tc 5 1 roll\r
3032 6 1 roll 7 1 roll 8 1 roll 9 1 roll sub neg nff div/$dk xd\r
3033 sub neg nff div/$dy xd sub neg nff div/$dm xd\r
3034 sub neg nff div/$dc xd sub neg nff div/$dt xd}ifelse}bd\r
3035 /ffcol{5 copy $fsit 0 eq{setcmykcolor pop}{SepMode 0 ne{\r
3036 4 index 1 sub neg SetGry 5 rp}{setcmykcolor pop}ifelse}ifelse}bd\r
3037 /@ftl{1 index 4 index sub dup $pad mul dup/$pdw xd\r
3038 2 mul sub $fst div/$wid xd 2 index sub/$hei xd\r
3039 pop Tl @dlt $fss 0 eq{ffcol 0 0 m 0 $hei l $pdw $hei l\r
3040 $pdw 0 l @cp fill $pdw 0 Tl}if $fss $wid mul 0 Tl\r
3041 nff{ffcol 0 0 m 0 $hei l $wid $hei l $wid 0 l\r
3042 @cp fill $wid 0 Tl $frb dup 1 eq exch 2 eq or{4 rp\r
3043 myh mys myb kdb add 3 1 roll kds add 3 1 roll\r
3044 kdh add 3 1 roll 3 copy/myb xd/mys xd/myh xd\r
3045 hsb2rgb rgb2cmyk}{$dk add 5 1 roll $dy add 5 1 roll\r
3046 $dm add 5 1 roll $dc add 5 1 roll $dt add 5 1 roll}ifelse}repeat\r
3047 5 rp $tot dup $toc $tom $toy $tok @tc ffcol 0 0 m\r
3048 0 $hei l $pdw $hei l $pdw 0 l @cp fill 5 rp}bd\r
3049 /@ftr{1 index 4 index sub dup $rox mul/$row xd\r
3050 2 div 1 index 4 index sub dup $roy mul/$roh xd\r
3051 2 div 2 copy dup mul exch dup mul add sqrt $row dup mul\r
3052 $roh dup mul add sqrt add dup/$hei xd $fst div/$wid xd\r
3053 4 index add $roh add exch 5 index add $row add\r
3054 exch Tl 4 rp @dlt $fss 0 eq{ffcol fill 1.0 $pad 2 mul sub\r
3055 dup scale}if $hei $fss $wid mul sub/$hei xd\r
3056 nff{ffcol $wid 0 m 0 0 $hei 0 360 arc fill/$hei $hei $wid sub def\r
3057 $frb dup 1 eq exch 2 eq or{4 rp myh mys myb\r
3058 kdb add 3 1 roll kds add 3 1 roll kdh add 3 1 roll\r
3059 3 copy/myb xd/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 roll\r
3060 $dy add 5 1 roll $dm add 5 1 roll $dc add 5 1 roll\r
3061 $dt add 5 1 roll}ifelse}repeat 5 rp}bd/@ftc{1 index 4 index sub\r
3062 dup $rox mul/$row xd 2 div 1 index 4 index sub\r
3063 dup $roy mul/$roh xd 2 div 2 copy dup mul exch dup mul add sqrt\r
3064 $row dup mul $roh dup mul add sqrt add dup/$hei xd\r
3065 $fst div/$wid xd 4 index add $roh add exch 5 index add $row add\r
3066 exch Tl 4 rp @dlt $fss 0 eq{ffcol fill}{n}ifelse\r
3067 /$dang 180 $fst 1 sub div def/$sang $dang -2 div 180 add def\r
3068 /$eang $dang 2 div 180 add def/$sang $sang $dang $fss mul add def\r
3069 /$eang $eang $dang $fss mul add def/$sang $eang $dang sub def\r
3070 nff{ffcol $wid 0 m 0 0 $hei $sang $fan add $eang $fan add arc fill\r
3071 $wid 0 m 0 0 $hei $eang neg $fan add $sang neg $fan add arc fill\r
3072 /$sang $eang def/$eang $eang $dang add def\r
3073 $frb dup 1 eq exch 2 eq or{4 rp myh mys myb\r
3074 kdb add 3 1 roll kds add 3 1 roll kdh add 3 1 roll\r
3075 3 copy/myb xd/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 roll\r
3076 $dy add 5 1 roll $dm add 5 1 roll $dc add 5 1 roll\r
3077 $dt add 5 1 roll}ifelse}repeat 5 rp}bd/@ff{/$fss 0 def\r
3078 1 1 $fsc 1 sub{dup 1 sub $fsit 0 eq{$fsa exch 5 mul\r
3079 5 getinterval aload 2 rp/$frk xd/$fry xd/$frm xd/$frc xd\r
3080 /$frn _ def/$frt 1 def $fsa exch 5 mul 5 getinterval aload pop\r
3081 $fss add/$fse xd/$tok xd/$toy xd/$tom xd/$toc xd\r
3082 /$ton _ def/$tot 1 def}{$fsa exch 7 mul 7 getinterval aload 2 rp\r
3083 /$frt xd/$frn xd/$frk xd/$fry xd/$frm xd/$frc xd\r
3084 $fsa exch 7 mul 7 getinterval aload pop $fss add/$fse xd\r
3085 /$tot xd/$ton xd/$tok xd/$toy xd/$tom xd/$toc xd}ifelse\r
3086 $fsit 0 eq SepMode 0 eq or dup not CurrentInkName $frn eq\r
3087 and or{@sv eoclip currentflat dup 5 mul setflat\r
3088 Bbllx Bblly Bburx Bbury $fty 2 eq{@ftc}{$fty 1 eq{1 index 3 index m\r
3089 2 copy l 3 index 1 index l 3 index 3 index l\r
3090 @cp @ftr}{1 index 3 index m 2 copy l 3 index 1 index l\r
3091 3 index 3 index l @cp 4 rp $fan rotate pathbbox\r
3092 @ftl}ifelse}ifelse setflat @rs/$fss $fse def}if}for\r
3093 @np}bd/@Pf{@sv SepMode 0 eq $ink 3 eq or{0 J 0 j [] 0 d\r
3094 $t $c $m $y $k $n $o @scc pop $ctm setmatrix\r
3095 72 1000 div dup matrix scale dup concat dup Bburx exch Bbury exch\r
3096 itransform ceiling cvi/Bbury xd ceiling cvi/Bburx xd\r
3097 Bbllx exch Bblly exch itransform floor cvi/Bblly xd\r
3098 floor cvi/Bbllx xd $Prm aload pop $Psn load exec}{1 SetGry eofill}ifelse\r
3099 @rs @np}bd/F{matrix currentmatrix $sdf{$scf $sca $scp @ss}if\r
3100 $fil 1 eq{@pf}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{$t $c $m $y $k $n $o\r
3101 @scc{eofill}{@np}ifelse}ifelse}ifelse}ifelse\r
3102 $sdf{$dsf $dsa $dsp @ss}if setmatrix}bd/f{@cp F}bd\r
3103 /S{matrix currentmatrix $ctm setmatrix $SDF{$SCF $SCA $SCP @ss}if\r
3104 $T $C $M $Y $K $N $O @scc{matrix currentmatrix\r
3105 $ptm concat stroke setmatrix}{@np}ifelse $SDF{$dsf $dsa $dsp @ss}if\r
3106 setmatrix}bd/s{@cp S}bd/B{@gs F @gr S}bd/b{@cp B}bd\r
3107 /E{5 array astore exch cvlit exch def}bd/@cc{\r
3108 currentfile $dat readhexstring pop}bd/@sm{/$ctm $ctm currentmatrix def\r
3109 }bd/@E{/Bbury xd/Bburx xd/Bblly xd/Bbllx xd}bd\r
3110 /@c{@cp}bd/@p{/$fil 1 def 1 eq dup/$vectpat xd{/$pfrg true def}{@gs\r
3111 $t $c $m $y $k $n $o @scc/$pfrg xd @gr}ifelse\r
3112 /$pm xd/$psy xd/$psx xd/$pyf xd/$pxf xd/$pn xd}bd\r
3113 /@P{/$fil 3 def/$Psn xd array astore/$Prm xd}bd\r
3114 /@k{/$fil 2 def/$roy xd/$rox xd/$pad xd/$fty xd/$fan xd\r
3115 $fty 1 eq{/$fan 0 def}if/$frb xd/$fst xd/$fsc xd\r
3116 /$fsa xd/$fsit 0 def}bd/@x{/$fil 2 def/$roy xd/$rox xd/$pad xd\r
3117 /$fty xd/$fan xd $fty 1 eq{/$fan 0 def}if/$frb xd\r
3118 /$fst xd/$fsc xd/$fsa xd/$fsit 1 def}bd/@ii{concat\r
3119 3 index 3 index m 3 index 1 index l 2 copy l\r
3120 1 index 3 index l 3 index 3 index l clip 4 rp}bd\r
3121 /tcc{@cc}def/@i{@sm @gs @ii 6 index 1 ne{/$frg true def\r
3122 2 rp}{1 eq{s1t s1c s1m s1y s1k s1n $o @scc\r
3123 /$frg xd}{/$frg false def}ifelse 1 eq{@gs $ctm setmatrix\r
3124 F @gr}if}ifelse @np/$ury xd/$urx xd/$lly xd/$llx xd\r
3125 /$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div ceiling cvi string def\r
3126 $bkg $frg or{$SDF{$SCF $SCA $SCP @ss}if $llx $lly Tl\r
3127 $urx $llx sub $ury $lly sub scale $bkg{$t $c $m $y $k $n $o @scc pop}if\r
3128 $wid $hei abs $bts 1 eq{$bkg}{$bts}ifelse [ $wid 0 0\r
3129 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]/tcc load\r
3130 $bts 1 eq{imagemask}{image}ifelse $SDF{$dsf $dsa $dsp @ss}if}{\r
3131 $hei abs{tcc pop}repeat}ifelse @gr $ctm setmatrix}bind def\r
3132 /@M{@sv}bd/@N{/@cc{}def 1 eq{12 -1 roll neg 12 1 roll\r
3133 @I}{13 -1 roll neg 13 1 roll @i}ifelse @rs}bd\r
3134 /@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd/$llx xd\r
3135 /$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def\r
3136 $ngx $llx $lly Tl $urx $llx sub $ury $lly sub scale\r
3137 $wid $hei abs $bts [ $wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]\r
3138 /@cc load false $ncl ColorImage $SDF{$dsf $dsa $dsp @ss}if\r
3139 @gr $ctm setmatrix}bd/z{exch findfont exch scalefont setfont}bd\r
3140 /ZB{9 dict dup begin 4 1 roll/FontType 3 def\r
3141 /FontMatrix xd/FontBBox xd/Encoding 256 array def\r
3142 0 1 255{Encoding exch/.notdef put}for/CharStrings 256 dict def\r
3143 CharStrings/.notdef{}put/Metrics 256 dict def\r
3144 Metrics/.notdef 3 -1 roll put/BuildChar{exch\r
3145 dup/$char exch/Encoding get 3 index get def\r
3146 dup/Metrics get $char get aload pop setcachedevice\r
3147 begin Encoding exch get CharStrings exch get\r
3148 end exec}def end definefont pop}bd/ZBAddChar{findfont begin\r
3149 dup 4 1 roll dup 6 1 roll Encoding 3 1 roll put\r
3150 CharStrings 3 1 roll put Metrics 3 1 roll put\r
3151 end}bd/Z{findfont dup maxlength 2 add dict exch\r
3152 dup{1 index/FID ne{3 index 3 1 roll put}{2 rp}ifelse}forall\r
3153 pop dup dup/Encoding get 256 array copy dup/$fe xd\r
3154 /Encoding exch put dup/Fontname 3 index put\r
3155 3 -1 roll dup length 0 ne{0 exch{dup type 0 type eq{exch pop}{\r
3156 $fe exch 2 index exch put 1 add}ifelse}forall\r
3157 pop}if dup 256 dict dup/$met xd/Metrics exch put\r
3158 dup/FontMatrix get 0 get 1000 mul 1 exch div\r
3159 3 index length 256 eq{0 1 255{dup $fe exch get\r
3160 dup/.notdef eq{2 rp}{5 index 3 -1 roll get\r
3161 2 index mul $met 3 1 roll put}ifelse}for}if\r
3162 pop definefont pop pop}bd/@ftx{{currentpoint 3 -1 roll\r
3163 (0) dup 3 -1 roll 0 exch put dup @gs true charpath\r
3164 $ctm setmatrix @@txt @gr @np stringwidth pop 3 -1 roll add exch moveto\r
3165 }forall}bd/@ft{matrix currentmatrix exch $sdf{$scf $sca $scp @ss}if\r
3166 $fil 1 eq{/@@txt/@pf ld @ftx}{$fil 2 eq{/@@txt/@ff ld @ftx}{$fil 3 eq\r
3167 {/@@txt/@Pf ld @ftx}{$t $c $m $y $k $n $o @scc{show}{pop}ifelse}ifelse\r
3168 }ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if setmatrix}bd\r
3169 /@st{matrix currentmatrix exch $SDF{$SCF $SCA $SCP @ss}if\r
3170 $T $C $M $Y $K $N $O @scc{{currentpoint 3 -1 roll\r
3171 (0) dup 3 -1 roll 0 exch put dup @gs true charpath\r
3172 $ctm setmatrix $ptm concat stroke @gr @np stringwidth pop 3 -1 roll add exch moveto\r
3173 }forall}{pop}ifelse $SDF{$dsf $dsa $dsp @ss}if\r
3174 setmatrix}bd/@te{@ft}bd/@tr{@st}bd/@ta{dup\r
3175 @gs @ft @gr @st}bd/@t@a{dup @gs @st @gr @ft}bd\r
3176 /@tm{@sm concat}bd/e{/t{@te}def}bd/r{/t{@tr}def}bd\r
3177 /o{/t{pop}def}bd/a{/t{@ta}def}bd/@a{/t{@t@a}def}bd\r
3178 /t{@te}def/T{@np $ctm setmatrix/$ttm matrix def}bd\r
3179 /ddt{t}def/@t{/$stm $stm currentmatrix def\r
3180 3 1 roll moveto $ttm concat ddt $stm setmatrix}bd\r
3181 /@n{/$ttm exch matrix rotate def}bd/@s{}bd\r
3182 /@l{}bd/@B{@gs S @gr F}bd/@b{@cp @B}bd/@sep{\r
3183 CurrentInkName (Composite) eq{/$ink -1 def}{CurrentInkName (Cyan) eq\r
3184 {/$ink 0 def}{CurrentInkName (Magenta) eq{/$ink 1 def}{\r
3185 CurrentInkName (Yellow) eq{/$ink 2 def}{CurrentInkName (Black) eq\r
3186 {/$ink 3 def}{/$ink 4 def}ifelse}ifelse}ifelse}ifelse}ifelse}bd\r
3187 /@whi{@gs -72000 dup moveto -72000 72000 lineto\r
3188 72000 dup lineto 72000 -72000 lineto closepath 1 SetGry fill\r
3189 @gr}bd/@neg{ [{1 exch sub}/exec cvx currenttransfer/exec cvx] cvx settransfer\r
3190 @whi}bd/currentscale{1 0 dtransform matrix defaultmatrix idtransform\r
3191 dup mul exch dup mul add sqrt 0 1 dtransform\r
3192 matrix defaultmatrix idtransform dup mul exch dup mul add sqrt}bd\r
3193 /@unscale{currentscale 1 exch div exch 1 exch div exch scale}bd\r
3194 /@square{dup 0 rlineto dup 0 exch rlineto neg 0 rlineto\r
3195 closepath}bd/corelsym{gsave newpath Tl -90 rotate\r
3196 7{45 rotate -.75 2 moveto 1.5 @square fill}repeat\r
3197 grestore}bd/@reg{gsave newpath Tl -6 -6 moveto 12 @square\r
3198 gsave 1 GetGry sub SetGry fill grestore 4{90 rotate\r
3199 0 4 m 0 4 rl}repeat stroke 0 0 corelsym grestore}bd\r
3200 /$corelmeter [1 .95 .75 .50 .25 .05 0] def\r
3201 /@colormeter{@gs newpath 0 SetGry 0.3 setlinewidth\r
3202 /Courier findfont 5 scalefont setfont/y exch def\r
3203 /x exch def 0 1 6{x 20 sub y m 20 @square @gs $corelmeter exch get dup SetGry fill @gr\r
3204 stroke x 2 add y 8 add moveto 100 mul 100 exch sub cvi 20 string cvs show\r
3205 /y y 20 add def}for @gr}bd/@crop{gsave .3 setlinewidth\r
3206 0 SetGry Tl rotate 0 0 m 0 -24 rl -4 -24 m 8 @square\r
3207 -4 -20 m 8 0 rl stroke grestore}bd/@colorbox{gsave\r
3208 newpath Tl 100 exch sub 100 div SetGry -8 -8 moveto 16 @square fill\r
3209 0 SetGry 10 -2 moveto show grestore}bd/deflevel 0 def\r
3210 /@sax{/deflevel deflevel 1 add def}bd/@eax{\r
3211 /deflevel deflevel dup 0 gt{1 sub}if def deflevel 0 gt{/eax load}{eax}\r
3212 ifelse}bd/eax{{exec}forall}bd/@rax{deflevel 0 eq{@rs @sv}if}bd\r
3213 /@daq{dup type/arraytype eq{{}forall}if}bd\r
3214 /@BMP{/@cc xd 12 index 1 eq{12 -1 roll pop\r
3215 @i}{7 -2 roll 2 rp @I}ifelse}bd end\r
3216 %%EndResource\r
3217 \r
3218 %%EndProlog\r
3219 /#copies 1 def\r
3220 wCorel4Dict begin\r
3221 0.00 0.00 Tl\r
3222 1.0000 1.0000 scale\r
3223 %%BeginSetup\r
3224 11.4737 setmiterlimit\r
3225 0 45 /@dot @D\r
3226 1.00 setflat\r
3227 /$fst 128 def\r
3228 %%EndSetup\r
3229 [ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 \r
3230 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 \r
3231 278 355 556 556 889 667 191 333 333 389 584 278 333 278 278 556 \r
3232 556 556 556 556 556 556 556 556 556 278 278 584 584 584 556 1015 \r
3233 667 667 722 722 667 611 778 722 278 500 667 556 833 722 778 667 \r
3234 778 722 667 611 722 667 944 667 667 611 278 278 278 469 556 333 \r
3235 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556 \r
3236 556 333 500 278 556 500 722 500 500 500 334 260 334 584 750 750 \r
3237 750 222 556 333 1000 556 556 333 1000 667 333 1000 750 750 750 750 \r
3238 222 222 333 333 350 556 1000 333 1000 500 333 944 750 750 667 278 \r
3239 333 556 556 556 556 260 556 333 737 370 556 584 333 737 552 400 \r
3240 549 333 333 333 576 537 278 333 333 365 556 834 834 834 611 667 \r
3241 667 667 667 667 667 1000 722 667 667 667 667 278 278 278 278 722 \r
3242 722 778 778 778 778 778 584 778 722 722 722 722 667 667 611 556 \r
3243 556 556 556 556 556 889 500 556 556 556 556 278 278 278 278 556 \r
3244 556 556 556 556 556 556 549 611 556 556 556 556 500 556 500 ]\r
3245 CorelDrawReencodeVect /_R1-Helvetica /Helvetica Z\r
3246 \r
3247 %StartPage\r
3248 @sv\r
3249 /$ctm matrix currentmatrix def\r
3250 @sv\r
3251 %StartColorLayer (COMPOSITE)\r
3252 %StartTile\r
3253 /$ctm matrix currentmatrix def\r
3254 @sv @sv\r
3255 @rs 0 0 Tl 1.000000 1.000000 scale \r
3256 0.000000 0.000000 Tl /$ctm matrix currentmatrix def @sv\r
3257 @rax %%Note: Object\r
3258 132.34 700.99 187.20 709.20 @E\r
3259 0 J 0 j [] 0 d 0 R 0 @G\r
3260 1.00 1.00 1.00 0.21 K\r
3261 0 0.22 0.22 0.00 @w\r
3262 132.34 700.99 m\r
3263 132.34 709.20 L\r
3264 187.20 709.20 L\r
3265 187.20 700.99 L\r
3266 132.34 700.99 L\r
3267 @c\r
3268 S\r
3269 \r
3270 @rax %%Note: Object\r
3271 132.41 270.43 168.05 275.90 @E\r
3272  0 O 0 @g\r
3273 1.00 1.00 1.00 0.21 k\r
3274 0 J 0 j [] 0 d 0 R 0 @G\r
3275 1.00 1.00 1.00 0.21 K\r
3276 0 0.22 0.22 0.00 @w\r
3277 132.41 270.43 m\r
3278 132.41 275.90 L\r
3279 168.05 275.90 L\r
3280 168.05 270.43 L\r
3281 132.41 270.43 L\r
3282 @c\r
3283 B\r
3284 \r
3285 @rax %%Note: Object\r
3286 132.41 311.54 168.05 317.02 @E\r
3287  0 O 0 @g\r
3288 1.00 1.00 1.00 0.21 k\r
3289 0 J 0 j [] 0 d 0 R 0 @G\r
3290 1.00 1.00 1.00 0.21 K\r
3291 0 0.22 0.22 0.00 @w\r
3292 132.41 311.54 m\r
3293 132.41 317.02 L\r
3294 168.05 317.02 L\r
3295 168.05 311.54 L\r
3296 132.41 311.54 L\r
3297 @c\r
3298 B\r
3299 \r
3300 @rax %%Note: Object\r
3301 132.41 303.34 168.05 308.81 @E\r
3302  0 O 0 @g\r
3303 1.00 1.00 1.00 0.21 k\r
3304 0 J 0 j [] 0 d 0 R 0 @G\r
3305 1.00 1.00 1.00 0.21 K\r
3306 0 0.22 0.22 0.00 @w\r
3307 132.41 303.34 m\r
3308 132.41 308.81 L\r
3309 168.05 308.81 L\r
3310 168.05 303.34 L\r
3311 132.41 303.34 L\r
3312 @c\r
3313 B\r
3314 \r
3315 @rax %%Note: Object\r
3316 132.41 295.06 168.05 300.60 @E\r
3317  0 O 0 @g\r
3318 1.00 1.00 1.00 0.21 k\r
3319 0 J 0 j [] 0 d 0 R 0 @G\r
3320 1.00 1.00 1.00 0.21 K\r
3321 0 0.22 0.22 0.00 @w\r
3322 132.41 295.06 m\r
3323 132.41 300.60 L\r
3324 168.05 300.60 L\r
3325 168.05 295.06 L\r
3326 132.41 295.06 L\r
3327 @c\r
3328 B\r
3329 \r
3330 @rax %%Note: Object\r
3331 132.41 264.89 187.27 273.17 @E\r
3332 0 J 0 j [] 0 d 0 R 0 @G\r
3333 1.00 1.00 1.00 0.21 K\r
3334 0 0.22 0.22 0.00 @w\r
3335 132.41 264.89 m\r
3336 132.41 273.17 L\r
3337 187.27 273.17 L\r
3338 187.27 264.89 L\r
3339 132.41 264.89 L\r
3340 @c\r
3341 S\r
3342 \r
3343 @rax %%Note: Object\r
3344 132.41 314.28 187.27 322.49 @E\r
3345 0 J 0 j [] 0 d 0 R 0 @G\r
3346 1.00 1.00 1.00 0.21 K\r
3347 0 0.22 0.22 0.00 @w\r
3348 132.41 314.28 m\r
3349 132.41 322.49 L\r
3350 187.27 322.49 L\r
3351 187.27 314.28 L\r
3352 132.41 314.28 L\r
3353 @c\r
3354 S\r
3355 \r
3356 @rax %%Note: Object\r
3357 132.41 306.07 187.27 314.28 @E\r
3358 0 J 0 j [] 0 d 0 R 0 @G\r
3359 1.00 1.00 1.00 0.21 K\r
3360 0 0.22 0.22 0.00 @w\r
3361 132.41 306.07 m\r
3362 132.41 314.28 L\r
3363 187.27 314.28 L\r
3364 187.27 306.07 L\r
3365 132.41 306.07 L\r
3366 @c\r
3367 S\r
3368 \r
3369 @rax %%Note: Object\r
3370 132.41 297.86 187.27 306.07 @E\r
3371 0 J 0 j [] 0 d 0 R 0 @G\r
3372 1.00 1.00 1.00 0.21 K\r
3373 0 0.22 0.22 0.00 @w\r
3374 132.41 297.86 m\r
3375 132.41 306.07 L\r
3376 187.27 306.07 L\r
3377 187.27 297.86 L\r
3378 132.41 297.86 L\r
3379 @c\r
3380 S\r
3381 \r
3382 @rax %%Note: Object\r
3383 132.41 273.17 187.27 281.38 @E\r
3384 0 J 0 j [] 0 d 0 R 0 @G\r
3385 1.00 1.00 1.00 0.21 K\r
3386 0 0.22 0.22 0.00 @w\r
3387 132.41 273.17 m\r
3388 132.41 281.38 L\r
3389 187.27 281.38 L\r
3390 187.27 273.17 L\r
3391 132.41 273.17 L\r
3392 @c\r
3393 S\r
3394 \r
3395 @rax %%Note: Object\r
3396 132.41 289.58 187.27 297.86 @E\r
3397 0 J 0 j [] 0 d 0 R 0 @G\r
3398 1.00 1.00 1.00 0.21 K\r
3399 0 0.22 0.22 0.00 @w\r
3400 132.41 289.58 m\r
3401 132.41 297.86 L\r
3402 187.27 297.86 L\r
3403 187.27 289.58 L\r
3404 132.41 289.58 L\r
3405 @c\r
3406 S\r
3407 \r
3408 @rax %%Note: Object\r
3409 132.41 281.38 187.27 289.58 @E\r
3410 0 J 0 j [] 0 d 0 R 0 @G\r
3411 1.00 1.00 1.00 0.21 K\r
3412 0 0.22 0.22 0.00 @w\r
3413 132.41 281.38 m\r
3414 132.41 289.58 L\r
3415 187.27 289.58 L\r
3416 187.27 281.38 L\r
3417 132.41 281.38 L\r
3418 @c\r
3419 S\r
3420 \r
3421 @rax %%Note: Object\r
3422 132.41 278.64 168.05 284.11 @E\r
3423  0 O 0 @g\r
3424 1.00 1.00 1.00 0.21 k\r
3425 0 J 0 j [] 0 d 0 R 0 @G\r
3426 1.00 1.00 1.00 0.21 K\r
3427 0 0.22 0.22 0.00 @w\r
3428 132.41 278.64 m\r
3429 132.41 284.11 L\r
3430 168.05 284.11 L\r
3431 168.05 278.64 L\r
3432 132.41 278.64 L\r
3433 @c\r
3434 B\r
3435 \r
3436 @rax %%Note: Object\r
3437 132.41 97.70 168.05 103.18 @E\r
3438  0 O 0 @g\r
3439 1.00 1.00 1.00 0.21 k\r
3440 0 J 0 j [] 0 d 0 R 0 @G\r
3441 1.00 1.00 1.00 0.21 K\r
3442 0 0.22 0.22 0.00 @w\r
3443 132.41 97.70 m\r
3444 132.41 103.18 L\r
3445 168.05 103.18 L\r
3446 168.05 97.70 L\r
3447 132.41 97.70 L\r
3448 @c\r
3449 B\r
3450 \r
3451 @rax %%Note: Object\r
3452 132.41 138.82 168.05 144.29 @E\r
3453  0 O 0 @g\r
3454 1.00 1.00 1.00 0.21 k\r
3455 0 J 0 j [] 0 d 0 R 0 @G\r
3456 1.00 1.00 1.00 0.21 K\r
3457 0 0.22 0.22 0.00 @w\r
3458 132.41 138.82 m\r
3459 132.41 144.29 L\r
3460 168.05 144.29 L\r
3461 168.05 138.82 L\r
3462 132.41 138.82 L\r
3463 @c\r
3464 B\r
3465 \r
3466 @rax %%Note: Object\r
3467 132.41 130.61 168.05 136.08 @E\r
3468  0 O 0 @g\r
3469 1.00 1.00 1.00 0.21 k\r
3470 0 J 0 j [] 0 d 0 R 0 @G\r
3471 1.00 1.00 1.00 0.21 K\r
3472 0 0.22 0.22 0.00 @w\r
3473 132.41 130.61 m\r
3474 132.41 136.08 L\r
3475 168.05 136.08 L\r
3476 168.05 130.61 L\r
3477 132.41 130.61 L\r
3478 @c\r
3479 B\r
3480 \r
3481 @rax %%Note: Object\r
3482 132.41 122.33 168.05 127.87 @E\r
3483  0 O 0 @g\r
3484 1.00 1.00 1.00 0.21 k\r
3485 0 J 0 j [] 0 d 0 R 0 @G\r
3486 1.00 1.00 1.00 0.21 K\r
3487 0 0.22 0.22 0.00 @w\r
3488 132.41 122.33 m\r
3489 132.41 127.87 L\r
3490 168.05 127.87 L\r
3491 168.05 122.33 L\r
3492 132.41 122.33 L\r
3493 @c\r
3494 B\r
3495 \r
3496 @rax %%Note: Object\r
3497 132.41 92.16 187.27 100.44 @E\r
3498 0 J 0 j [] 0 d 0 R 0 @G\r
3499 1.00 1.00 1.00 0.21 K\r
3500 0 0.22 0.22 0.00 @w\r
3501 132.41 92.16 m\r
3502 132.41 100.44 L\r
3503 187.27 100.44 L\r
3504 187.27 92.16 L\r
3505 132.41 92.16 L\r
3506 @c\r
3507 S\r
3508 \r
3509 @rax %%Note: Object\r
3510 132.41 141.55 187.27 149.76 @E\r
3511 0 J 0 j [] 0 d 0 R 0 @G\r
3512 1.00 1.00 1.00 0.21 K\r
3513 0 0.22 0.22 0.00 @w\r
3514 132.41 141.55 m\r
3515 132.41 149.76 L\r
3516 187.27 149.76 L\r
3517 187.27 141.55 L\r
3518 132.41 141.55 L\r
3519 @c\r
3520 S\r
3521 \r
3522 @rax %%Note: Object\r
3523 132.41 133.34 187.27 141.55 @E\r
3524 0 J 0 j [] 0 d 0 R 0 @G\r
3525 1.00 1.00 1.00 0.21 K\r
3526 0 0.22 0.22 0.00 @w\r
3527 132.41 133.34 m\r
3528 132.41 141.55 L\r
3529 187.27 141.55 L\r
3530 187.27 133.34 L\r
3531 132.41 133.34 L\r
3532 @c\r
3533 S\r
3534 \r
3535 @rax %%Note: Object\r
3536 132.41 125.14 187.27 133.34 @E\r
3537 0 J 0 j [] 0 d 0 R 0 @G\r
3538 1.00 1.00 1.00 0.21 K\r
3539 0 0.22 0.22 0.00 @w\r
3540 132.41 125.14 m\r
3541 132.41 133.34 L\r
3542 187.27 133.34 L\r
3543 187.27 125.14 L\r
3544 132.41 125.14 L\r
3545 @c\r
3546 S\r
3547 \r
3548 @rax %%Note: Object\r
3549 132.41 100.44 187.27 108.65 @E\r
3550 0 J 0 j [] 0 d 0 R 0 @G\r
3551 1.00 1.00 1.00 0.21 K\r
3552 0 0.22 0.22 0.00 @w\r
3553 132.41 100.44 m\r
3554 132.41 108.65 L\r
3555 187.27 108.65 L\r
3556 187.27 100.44 L\r
3557 132.41 100.44 L\r
3558 @c\r
3559 S\r
3560 \r
3561 @rax %%Note: Object\r
3562 132.41 116.86 187.27 125.14 @E\r
3563 0 J 0 j [] 0 d 0 R 0 @G\r
3564 1.00 1.00 1.00 0.21 K\r
3565 0 0.22 0.22 0.00 @w\r
3566 132.41 116.86 m\r
3567 132.41 125.14 L\r
3568 187.27 125.14 L\r
3569 187.27 116.86 L\r
3570 132.41 116.86 L\r
3571 @c\r
3572 S\r
3573 \r
3574 @rax %%Note: Object\r
3575 132.41 108.65 187.27 116.86 @E\r
3576 0 J 0 j [] 0 d 0 R 0 @G\r
3577 1.00 1.00 1.00 0.21 K\r
3578 0 0.22 0.22 0.00 @w\r
3579 132.41 108.65 m\r
3580 132.41 116.86 L\r
3581 187.27 116.86 L\r
3582 187.27 108.65 L\r
3583 132.41 108.65 L\r
3584 @c\r
3585 S\r
3586 \r
3587 @rax %%Note: Object\r
3588 132.41 105.91 168.05 111.38 @E\r
3589  0 O 0 @g\r
3590 1.00 1.00 1.00 0.21 k\r
3591 0 J 0 j [] 0 d 0 R 0 @G\r
3592 1.00 1.00 1.00 0.21 K\r
3593 0 0.22 0.22 0.00 @w\r
3594 132.41 105.91 m\r
3595 132.41 111.38 L\r
3596 168.05 111.38 L\r
3597 168.05 105.91 L\r
3598 132.41 105.91 L\r
3599 @c\r
3600 B\r
3601 \r
3602 @rax %%Note: Object\r
3603 132.41 155.23 168.05 160.70 @E\r
3604  0 O 0 @g\r
3605 1.00 1.00 1.00 0.21 k\r
3606 0 J 0 j [] 0 d 0 R 0 @G\r
3607 1.00 1.00 1.00 0.21 K\r
3608 0 0.22 0.22 0.00 @w\r
3609 132.41 155.23 m\r
3610 132.41 160.70 L\r
3611 168.05 160.70 L\r
3612 168.05 155.23 L\r
3613 132.41 155.23 L\r
3614 @c\r
3615 B\r
3616 \r
3617 @rax %%Note: Object\r
3618 132.41 196.34 168.05 201.82 @E\r
3619  0 O 0 @g\r
3620 1.00 1.00 1.00 0.21 k\r
3621 0 J 0 j [] 0 d 0 R 0 @G\r
3622 1.00 1.00 1.00 0.21 K\r
3623 0 0.22 0.22 0.00 @w\r
3624 132.41 196.34 m\r
3625 132.41 201.82 L\r
3626 168.05 201.82 L\r
3627 168.05 196.34 L\r
3628 132.41 196.34 L\r
3629 @c\r
3630 B\r
3631 \r
3632 @rax %%Note: Object\r
3633 132.41 188.14 168.05 193.61 @E\r
3634  0 O 0 @g\r
3635 1.00 1.00 1.00 0.21 k\r
3636 0 J 0 j [] 0 d 0 R 0 @G\r
3637 1.00 1.00 1.00 0.21 K\r
3638 0 0.22 0.22 0.00 @w\r
3639 132.41 188.14 m\r
3640 132.41 193.61 L\r
3641 168.05 193.61 L\r
3642 168.05 188.14 L\r
3643 132.41 188.14 L\r
3644 @c\r
3645 B\r
3646 \r
3647 @rax %%Note: Object\r
3648 132.41 179.86 168.05 185.40 @E\r
3649  0 O 0 @g\r
3650 1.00 1.00 1.00 0.21 k\r
3651 0 J 0 j [] 0 d 0 R 0 @G\r
3652 1.00 1.00 1.00 0.21 K\r
3653 0 0.22 0.22 0.00 @w\r
3654 132.41 179.86 m\r
3655 132.41 185.40 L\r
3656 168.05 185.40 L\r
3657 168.05 179.86 L\r
3658 132.41 179.86 L\r
3659 @c\r
3660 B\r
3661 \r
3662 @rax %%Note: Object\r
3663 132.41 149.69 187.27 157.97 @E\r
3664 0 J 0 j [] 0 d 0 R 0 @G\r
3665 1.00 1.00 1.00 0.21 K\r
3666 0 0.22 0.22 0.00 @w\r
3667 132.41 149.69 m\r
3668 132.41 157.97 L\r
3669 187.27 157.97 L\r
3670 187.27 149.69 L\r
3671 132.41 149.69 L\r
3672 @c\r
3673 S\r
3674 \r
3675 @rax %%Note: Object\r
3676 132.41 199.08 187.27 207.29 @E\r
3677 0 J 0 j [] 0 d 0 R 0 @G\r
3678 1.00 1.00 1.00 0.21 K\r
3679 0 0.22 0.22 0.00 @w\r
3680 132.41 199.08 m\r
3681 132.41 207.29 L\r
3682 187.27 207.29 L\r
3683 187.27 199.08 L\r
3684 132.41 199.08 L\r
3685 @c\r
3686 S\r
3687 \r
3688 @rax %%Note: Object\r
3689 132.41 190.87 187.27 199.08 @E\r
3690 0 J 0 j [] 0 d 0 R 0 @G\r
3691 1.00 1.00 1.00 0.21 K\r
3692 0 0.22 0.22 0.00 @w\r
3693 132.41 190.87 m\r
3694 132.41 199.08 L\r
3695 187.27 199.08 L\r
3696 187.27 190.87 L\r
3697 132.41 190.87 L\r
3698 @c\r
3699 S\r
3700 \r
3701 @rax %%Note: Object\r
3702 132.41 182.66 187.27 190.87 @E\r
3703 0 J 0 j [] 0 d 0 R 0 @G\r
3704 1.00 1.00 1.00 0.21 K\r
3705 0 0.22 0.22 0.00 @w\r
3706 132.41 182.66 m\r
3707 132.41 190.87 L\r
3708 187.27 190.87 L\r
3709 187.27 182.66 L\r
3710 132.41 182.66 L\r
3711 @c\r
3712 S\r
3713 \r
3714 @rax %%Note: Object\r
3715 132.41 157.97 187.27 166.18 @E\r
3716 0 J 0 j [] 0 d 0 R 0 @G\r
3717 1.00 1.00 1.00 0.21 K\r
3718 0 0.22 0.22 0.00 @w\r
3719 132.41 157.97 m\r
3720 132.41 166.18 L\r
3721 187.27 166.18 L\r
3722 187.27 157.97 L\r
3723 132.41 157.97 L\r
3724 @c\r
3725 S\r
3726 \r
3727 @rax %%Note: Object\r
3728 132.41 174.38 187.27 182.66 @E\r
3729 0 J 0 j [] 0 d 0 R 0 @G\r
3730 1.00 1.00 1.00 0.21 K\r
3731 0 0.22 0.22 0.00 @w\r
3732 132.41 174.38 m\r
3733 132.41 182.66 L\r
3734 187.27 182.66 L\r
3735 187.27 174.38 L\r
3736 132.41 174.38 L\r
3737 @c\r
3738 S\r
3739 \r
3740 @rax %%Note: Object\r
3741 132.41 166.18 187.27 174.38 @E\r
3742 0 J 0 j [] 0 d 0 R 0 @G\r
3743 1.00 1.00 1.00 0.21 K\r
3744 0 0.22 0.22 0.00 @w\r
3745 132.41 166.18 m\r
3746 132.41 174.38 L\r
3747 187.27 174.38 L\r
3748 187.27 166.18 L\r
3749 132.41 166.18 L\r
3750 @c\r
3751 S\r
3752 \r
3753 @rax %%Note: Object\r
3754 132.41 163.44 168.05 168.91 @E\r
3755  0 O 0 @g\r
3756 1.00 1.00 1.00 0.21 k\r
3757 0 J 0 j [] 0 d 0 R 0 @G\r
3758 1.00 1.00 1.00 0.21 K\r
3759 0 0.22 0.22 0.00 @w\r
3760 132.41 163.44 m\r
3761 132.41 168.91 L\r
3762 168.05 168.91 L\r
3763 168.05 163.44 L\r
3764 132.41 163.44 L\r
3765 @c\r
3766 B\r
3767 \r
3768 @rax %%Note: Object\r
3769 132.34 673.56 167.98 679.03 @E\r
3770  0 O 0 @g\r
3771 1.00 1.00 1.00 0.21 k\r
3772 0 J 0 j [] 0 d 0 R 0 @G\r
3773 1.00 1.00 1.00 0.21 K\r
3774 0 0.22 0.22 0.00 @w\r
3775 132.34 673.56 m\r
3776 132.34 679.03 L\r
3777 167.98 679.03 L\r
3778 167.98 673.56 L\r
3779 132.34 673.56 L\r
3780 @c\r
3781 B\r
3782 \r
3783 @rax %%Note: Object\r
3784 132.34 698.26 167.98 703.73 @E\r
3785  0 O 0 @g\r
3786 1.00 1.00 1.00 0.21 k\r
3787 0 J 0 j [] 0 d 0 R 0 @G\r
3788 1.00 1.00 1.00 0.21 K\r
3789 0 0.22 0.22 0.00 @w\r
3790 132.34 698.26 m\r
3791 132.34 703.73 L\r
3792 167.98 703.73 L\r
3793 167.98 698.26 L\r
3794 132.34 698.26 L\r
3795 @c\r
3796 B\r
3797 \r
3798 @rax %%Note: Object\r
3799 132.34 668.09 187.20 676.30 @E\r
3800 0 J 0 j [] 0 d 0 R 0 @G\r
3801 1.00 1.00 1.00 0.21 K\r
3802 0 0.22 0.22 0.00 @w\r
3803 132.34 668.09 m\r
3804 132.34 676.30 L\r
3805 187.20 676.30 L\r
3806 187.20 668.09 L\r
3807 132.34 668.09 L\r
3808 @c\r
3809 S\r
3810 \r
3811 @rax %%Note: Object\r
3812 132.34 676.30 187.20 684.50 @E\r
3813 0 J 0 j [] 0 d 0 R 0 @G\r
3814 1.00 1.00 1.00 0.21 K\r
3815 0 0.22 0.22 0.00 @w\r
3816 132.34 676.30 m\r
3817 132.34 684.50 L\r
3818 187.20 684.50 L\r
3819 187.20 676.30 L\r
3820 132.34 676.30 L\r
3821 @c\r
3822 S\r
3823 \r
3824 @rax %%Note: Object\r
3825 132.34 692.78 187.20 700.99 @E\r
3826 0 J 0 j [] 0 d 0 R 0 @G\r
3827 1.00 1.00 1.00 0.21 K\r
3828 0 0.22 0.22 0.00 @w\r
3829 132.34 692.78 m\r
3830 132.34 700.99 L\r
3831 187.20 700.99 L\r
3832 187.20 692.78 L\r
3833 132.34 692.78 L\r
3834 @c\r
3835 S\r
3836 \r
3837 @rax %%Note: Object\r
3838 132.34 684.58 187.20 692.78 @E\r
3839 0 J 0 j [] 0 d 0 R 0 @G\r
3840 1.00 1.00 1.00 0.21 K\r
3841 0 0.22 0.22 0.00 @w\r
3842 132.34 684.58 m\r
3843 132.34 692.78 L\r
3844 187.20 692.78 L\r
3845 187.20 684.58 L\r
3846 132.34 684.58 L\r
3847 @c\r
3848 S\r
3849 \r
3850 @rax %%Note: Object\r
3851 132.34 681.77 167.98 687.24 @E\r
3852  0 O 0 @g\r
3853 1.00 1.00 1.00 0.21 k\r
3854 0 J 0 j [] 0 d 0 R 0 @G\r
3855 1.00 1.00 1.00 0.21 K\r
3856 0 0.22 0.22 0.00 @w\r
3857 132.34 681.77 m\r
3858 132.34 687.24 L\r
3859 167.98 687.24 L\r
3860 167.98 681.77 L\r
3861 132.34 681.77 L\r
3862 @c\r
3863 B\r
3864 \r
3865 @rax %%Note: Object\r
3866 132.41 500.90 168.05 506.38 @E\r
3867  0 O 0 @g\r
3868 1.00 1.00 1.00 0.21 k\r
3869 0 J 0 j [] 0 d 0 R 0 @G\r
3870 1.00 1.00 1.00 0.21 K\r
3871 0 0.22 0.22 0.00 @w\r
3872 132.41 500.90 m\r
3873 132.41 506.38 L\r
3874 168.05 506.38 L\r
3875 168.05 500.90 L\r
3876 132.41 500.90 L\r
3877 @c\r
3878 B\r
3879 \r
3880 @rax %%Note: Object\r
3881 132.41 542.02 168.05 547.49 @E\r
3882  0 O 0 @g\r
3883 1.00 1.00 1.00 0.21 k\r
3884 0 J 0 j [] 0 d 0 R 0 @G\r
3885 1.00 1.00 1.00 0.21 K\r
3886 0 0.22 0.22 0.00 @w\r
3887 132.41 542.02 m\r
3888 132.41 547.49 L\r
3889 168.05 547.49 L\r
3890 168.05 542.02 L\r
3891 132.41 542.02 L\r
3892 @c\r
3893 B\r
3894 \r
3895 @rax %%Note: Object\r
3896 132.41 533.81 168.05 539.28 @E\r
3897  0 O 0 @g\r
3898 1.00 1.00 1.00 0.21 k\r
3899 0 J 0 j [] 0 d 0 R 0 @G\r
3900 1.00 1.00 1.00 0.21 K\r
3901 0 0.22 0.22 0.00 @w\r
3902 132.41 533.81 m\r
3903 132.41 539.28 L\r
3904 168.05 539.28 L\r
3905 168.05 533.81 L\r
3906 132.41 533.81 L\r
3907 @c\r
3908 B\r
3909 \r
3910 @rax %%Note: Object\r
3911 132.41 525.53 168.05 531.07 @E\r
3912  0 O 0 @g\r
3913 1.00 1.00 1.00 0.21 k\r
3914 0 J 0 j [] 0 d 0 R 0 @G\r
3915 1.00 1.00 1.00 0.21 K\r
3916 0 0.22 0.22 0.00 @w\r
3917 132.41 525.53 m\r
3918 132.41 531.07 L\r
3919 168.05 531.07 L\r
3920 168.05 525.53 L\r
3921 132.41 525.53 L\r
3922 @c\r
3923 B\r
3924 \r
3925 @rax %%Note: Object\r
3926 132.41 495.36 187.27 503.64 @E\r
3927 0 J 0 j [] 0 d 0 R 0 @G\r
3928 1.00 1.00 1.00 0.21 K\r
3929 0 0.22 0.22 0.00 @w\r
3930 132.41 495.36 m\r
3931 132.41 503.64 L\r
3932 187.27 503.64 L\r
3933 187.27 495.36 L\r
3934 132.41 495.36 L\r
3935 @c\r
3936 S\r
3937 \r
3938 @rax %%Note: Object\r
3939 132.41 544.75 187.27 552.96 @E\r
3940 0 J 0 j [] 0 d 0 R 0 @G\r
3941 1.00 1.00 1.00 0.21 K\r
3942 0 0.22 0.22 0.00 @w\r
3943 132.41 544.75 m\r
3944 132.41 552.96 L\r
3945 187.27 552.96 L\r
3946 187.27 544.75 L\r
3947 132.41 544.75 L\r
3948 @c\r
3949 S\r
3950 \r
3951 @rax %%Note: Object\r
3952 132.41 536.54 187.27 544.75 @E\r
3953 0 J 0 j [] 0 d 0 R 0 @G\r
3954 1.00 1.00 1.00 0.21 K\r
3955 0 0.22 0.22 0.00 @w\r
3956 132.41 536.54 m\r
3957 132.41 544.75 L\r
3958 187.27 544.75 L\r
3959 187.27 536.54 L\r
3960 132.41 536.54 L\r
3961 @c\r
3962 S\r
3963 \r
3964 @rax %%Note: Object\r
3965 132.41 528.34 187.27 536.54 @E\r
3966 0 J 0 j [] 0 d 0 R 0 @G\r
3967 1.00 1.00 1.00 0.21 K\r
3968 0 0.22 0.22 0.00 @w\r
3969 132.41 528.34 m\r
3970 132.41 536.54 L\r
3971 187.27 536.54 L\r
3972 187.27 528.34 L\r
3973 132.41 528.34 L\r
3974 @c\r
3975 S\r
3976 \r
3977 @rax %%Note: Object\r
3978 132.41 503.64 187.27 511.85 @E\r
3979 0 J 0 j [] 0 d 0 R 0 @G\r
3980 1.00 1.00 1.00 0.21 K\r
3981 0 0.22 0.22 0.00 @w\r
3982 132.41 503.64 m\r
3983 132.41 511.85 L\r
3984 187.27 511.85 L\r
3985 187.27 503.64 L\r
3986 132.41 503.64 L\r
3987 @c\r
3988 S\r
3989 \r
3990 @rax %%Note: Object\r
3991 132.41 520.06 187.27 528.34 @E\r
3992 0 J 0 j [] 0 d 0 R 0 @G\r
3993 1.00 1.00 1.00 0.21 K\r
3994 0 0.22 0.22 0.00 @w\r
3995 132.41 520.06 m\r
3996 132.41 528.34 L\r
3997 187.27 528.34 L\r
3998 187.27 520.06 L\r
3999 132.41 520.06 L\r
4000 @c\r
4001 S\r
4002 \r
4003 @rax %%Note: Object\r
4004 132.41 511.85 187.27 520.06 @E\r
4005 0 J 0 j [] 0 d 0 R 0 @G\r
4006 1.00 1.00 1.00 0.21 K\r
4007 0 0.22 0.22 0.00 @w\r
4008 132.41 511.85 m\r
4009 132.41 520.06 L\r
4010 187.27 520.06 L\r
4011 187.27 511.85 L\r
4012 132.41 511.85 L\r
4013 @c\r
4014 S\r
4015 \r
4016 @rax %%Note: Object\r
4017 132.41 509.11 168.05 514.58 @E\r
4018  0 O 0 @g\r
4019 1.00 1.00 1.00 0.21 k\r
4020 0 J 0 j [] 0 d 0 R 0 @G\r
4021 1.00 1.00 1.00 0.21 K\r
4022 0 0.22 0.22 0.00 @w\r
4023 132.41 509.11 m\r
4024 132.41 514.58 L\r
4025 168.05 514.58 L\r
4026 168.05 509.11 L\r
4027 132.41 509.11 L\r
4028 @c\r
4029 B\r
4030 \r
4031 @rax %%Note: Object\r
4032 132.41 558.50 168.05 563.98 @E\r
4033  0 O 0 @g\r
4034 1.00 1.00 1.00 0.21 k\r
4035 0 J 0 j [] 0 d 0 R 0 @G\r
4036 1.00 1.00 1.00 0.21 K\r
4037 0 0.22 0.22 0.00 @w\r
4038 132.41 558.50 m\r
4039 132.41 563.98 L\r
4040 168.05 563.98 L\r
4041 168.05 558.50 L\r
4042 132.41 558.50 L\r
4043 @c\r
4044 B\r
4045 \r
4046 @rax %%Note: Object\r
4047 132.41 599.62 168.05 605.09 @E\r
4048  0 O 0 @g\r
4049 1.00 1.00 1.00 0.21 k\r
4050 0 J 0 j [] 0 d 0 R 0 @G\r
4051 1.00 1.00 1.00 0.21 K\r
4052 0 0.22 0.22 0.00 @w\r
4053 132.41 599.62 m\r
4054 132.41 605.09 L\r
4055 168.05 605.09 L\r
4056 168.05 599.62 L\r
4057 132.41 599.62 L\r
4058 @c\r
4059 B\r
4060 \r
4061 @rax %%Note: Object\r
4062 132.41 591.41 168.05 596.88 @E\r
4063  0 O 0 @g\r
4064 1.00 1.00 1.00 0.21 k\r
4065 0 J 0 j [] 0 d 0 R 0 @G\r
4066 1.00 1.00 1.00 0.21 K\r
4067 0 0.22 0.22 0.00 @w\r
4068 132.41 591.41 m\r
4069 132.41 596.88 L\r
4070 168.05 596.88 L\r
4071 168.05 591.41 L\r
4072 132.41 591.41 L\r
4073 @c\r
4074 B\r
4075 \r
4076 @rax %%Note: Object\r
4077 132.41 583.13 168.05 588.67 @E\r
4078  0 O 0 @g\r
4079 1.00 1.00 1.00 0.21 k\r
4080 0 J 0 j [] 0 d 0 R 0 @G\r
4081 1.00 1.00 1.00 0.21 K\r
4082 0 0.22 0.22 0.00 @w\r
4083 132.41 583.13 m\r
4084 132.41 588.67 L\r
4085 168.05 588.67 L\r
4086 168.05 583.13 L\r
4087 132.41 583.13 L\r
4088 @c\r
4089 B\r
4090 \r
4091 @rax %%Note: Object\r
4092 132.41 552.96 187.27 561.24 @E\r
4093 0 J 0 j [] 0 d 0 R 0 @G\r
4094 1.00 1.00 1.00 0.21 K\r
4095 0 0.22 0.22 0.00 @w\r
4096 132.41 552.96 m\r
4097 132.41 561.24 L\r
4098 187.27 561.24 L\r
4099 187.27 552.96 L\r
4100 132.41 552.96 L\r
4101 @c\r
4102 S\r
4103 \r
4104 @rax %%Note: Object\r
4105 132.41 602.35 187.27 610.56 @E\r
4106 0 J 0 j [] 0 d 0 R 0 @G\r
4107 1.00 1.00 1.00 0.21 K\r
4108 0 0.22 0.22 0.00 @w\r
4109 132.41 602.35 m\r
4110 132.41 610.56 L\r
4111 187.27 610.56 L\r
4112 187.27 602.35 L\r
4113 132.41 602.35 L\r
4114 @c\r
4115 S\r
4116 \r
4117 @rax %%Note: Object\r
4118 132.41 594.14 187.27 602.35 @E\r
4119 0 J 0 j [] 0 d 0 R 0 @G\r
4120 1.00 1.00 1.00 0.21 K\r
4121 0 0.22 0.22 0.00 @w\r
4122 132.41 594.14 m\r
4123 132.41 602.35 L\r
4124 187.27 602.35 L\r
4125 187.27 594.14 L\r
4126 132.41 594.14 L\r
4127 @c\r
4128 S\r
4129 \r
4130 @rax %%Note: Object\r
4131 132.41 585.94 187.27 594.14 @E\r
4132 0 J 0 j [] 0 d 0 R 0 @G\r
4133 1.00 1.00 1.00 0.21 K\r
4134 0 0.22 0.22 0.00 @w\r
4135 132.41 585.94 m\r
4136 132.41 594.14 L\r
4137 187.27 594.14 L\r
4138 187.27 585.94 L\r
4139 132.41 585.94 L\r
4140 @c\r
4141 S\r
4142 \r
4143 @rax %%Note: Object\r
4144 132.41 561.24 187.27 569.45 @E\r
4145 0 J 0 j [] 0 d 0 R 0 @G\r
4146 1.00 1.00 1.00 0.21 K\r
4147 0 0.22 0.22 0.00 @w\r
4148 132.41 561.24 m\r
4149 132.41 569.45 L\r
4150 187.27 569.45 L\r
4151 187.27 561.24 L\r
4152 132.41 561.24 L\r
4153 @c\r
4154 S\r
4155 \r
4156 @rax %%Note: Object\r
4157 132.41 577.66 187.27 585.94 @E\r
4158 0 J 0 j [] 0 d 0 R 0 @G\r
4159 1.00 1.00 1.00 0.21 K\r
4160 0 0.22 0.22 0.00 @w\r
4161 132.41 577.66 m\r
4162 132.41 585.94 L\r
4163 187.27 585.94 L\r
4164 187.27 577.66 L\r
4165 132.41 577.66 L\r
4166 @c\r
4167 S\r
4168 \r
4169 @rax %%Note: Object\r
4170 132.41 569.45 187.27 577.66 @E\r
4171 0 J 0 j [] 0 d 0 R 0 @G\r
4172 1.00 1.00 1.00 0.21 K\r
4173 0 0.22 0.22 0.00 @w\r
4174 132.41 569.45 m\r
4175 132.41 577.66 L\r
4176 187.27 577.66 L\r
4177 187.27 569.45 L\r
4178 132.41 569.45 L\r
4179 @c\r
4180 S\r
4181 \r
4182 @rax %%Note: Object\r
4183 132.41 566.71 168.05 572.18 @E\r
4184  0 O 0 @g\r
4185 1.00 1.00 1.00 0.21 k\r
4186 0 J 0 j [] 0 d 0 R 0 @G\r
4187 1.00 1.00 1.00 0.21 K\r
4188 0 0.22 0.22 0.00 @w\r
4189 132.41 566.71 m\r
4190 132.41 572.18 L\r
4191 168.05 572.18 L\r
4192 168.05 566.71 L\r
4193 132.41 566.71 L\r
4194 @c\r
4195 B\r
4196 \r
4197 @rax %%Note: Object\r
4198 132.41 616.03 168.05 621.50 @E\r
4199  0 O 0 @g\r
4200 1.00 1.00 1.00 0.21 k\r
4201 0 J 0 j [] 0 d 0 R 0 @G\r
4202 1.00 1.00 1.00 0.21 K\r
4203 0 0.22 0.22 0.00 @w\r
4204 132.41 616.03 m\r
4205 132.41 621.50 L\r
4206 168.05 621.50 L\r
4207 168.05 616.03 L\r
4208 132.41 616.03 L\r
4209 @c\r
4210 B\r
4211 \r
4212 @rax %%Note: Object\r
4213 132.41 657.14 168.05 662.62 @E\r
4214  0 O 0 @g\r
4215 1.00 1.00 1.00 0.21 k\r
4216 0 J 0 j [] 0 d 0 R 0 @G\r
4217 1.00 1.00 1.00 0.21 K\r
4218 0 0.22 0.22 0.00 @w\r
4219 132.41 657.14 m\r
4220 132.41 662.62 L\r
4221 168.05 662.62 L\r
4222 168.05 657.14 L\r
4223 132.41 657.14 L\r
4224 @c\r
4225 B\r
4226 \r
4227 @rax %%Note: Object\r
4228 132.41 648.94 168.05 654.41 @E\r
4229  0 O 0 @g\r
4230 1.00 1.00 1.00 0.21 k\r
4231 0 J 0 j [] 0 d 0 R 0 @G\r
4232 1.00 1.00 1.00 0.21 K\r
4233 0 0.22 0.22 0.00 @w\r
4234 132.41 648.94 m\r
4235 132.41 654.41 L\r
4236 168.05 654.41 L\r
4237 168.05 648.94 L\r
4238 132.41 648.94 L\r
4239 @c\r
4240 B\r
4241 \r
4242 @rax %%Note: Object\r
4243 132.41 640.66 168.05 646.20 @E\r
4244  0 O 0 @g\r
4245 1.00 1.00 1.00 0.21 k\r
4246 0 J 0 j [] 0 d 0 R 0 @G\r
4247 1.00 1.00 1.00 0.21 K\r
4248 0 0.22 0.22 0.00 @w\r
4249 132.41 640.66 m\r
4250 132.41 646.20 L\r
4251 168.05 646.20 L\r
4252 168.05 640.66 L\r
4253 132.41 640.66 L\r
4254 @c\r
4255 B\r
4256 \r
4257 @rax %%Note: Object\r
4258 132.41 610.49 187.27 618.77 @E\r
4259 0 J 0 j [] 0 d 0 R 0 @G\r
4260 1.00 1.00 1.00 0.21 K\r
4261 0 0.22 0.22 0.00 @w\r
4262 132.41 610.49 m\r
4263 132.41 618.77 L\r
4264 187.27 618.77 L\r
4265 187.27 610.49 L\r
4266 132.41 610.49 L\r
4267 @c\r
4268 S\r
4269 \r
4270 @rax %%Note: Object\r
4271 132.41 659.88 187.27 668.09 @E\r
4272 0 J 0 j [] 0 d 0 R 0 @G\r
4273 1.00 1.00 1.00 0.21 K\r
4274 0 0.22 0.22 0.00 @w\r
4275 132.41 659.88 m\r
4276 132.41 668.09 L\r
4277 187.27 668.09 L\r
4278 187.27 659.88 L\r
4279 132.41 659.88 L\r
4280 @c\r
4281 S\r
4282 \r
4283 @rax %%Note: Object\r
4284 132.41 651.67 187.27 659.88 @E\r
4285 0 J 0 j [] 0 d 0 R 0 @G\r
4286 1.00 1.00 1.00 0.21 K\r
4287 0 0.22 0.22 0.00 @w\r
4288 132.41 651.67 m\r
4289 132.41 659.88 L\r
4290 187.27 659.88 L\r
4291 187.27 651.67 L\r
4292 132.41 651.67 L\r
4293 @c\r
4294 S\r
4295 \r
4296 @rax %%Note: Object\r
4297 132.41 643.46 187.27 651.67 @E\r
4298 0 J 0 j [] 0 d 0 R 0 @G\r
4299 1.00 1.00 1.00 0.21 K\r
4300 0 0.22 0.22 0.00 @w\r
4301 132.41 643.46 m\r
4302 132.41 651.67 L\r
4303 187.27 651.67 L\r
4304 187.27 643.46 L\r
4305 132.41 643.46 L\r
4306 @c\r
4307 S\r
4308 \r
4309 @rax %%Note: Object\r
4310 132.41 618.77 187.27 626.98 @E\r
4311 0 J 0 j [] 0 d 0 R 0 @G\r
4312 1.00 1.00 1.00 0.21 K\r
4313 0 0.22 0.22 0.00 @w\r
4314 132.41 618.77 m\r
4315 132.41 626.98 L\r
4316 187.27 626.98 L\r
4317 187.27 618.77 L\r
4318 132.41 618.77 L\r
4319 @c\r
4320 S\r
4321 \r
4322 @rax %%Note: Object\r
4323 132.41 635.18 187.27 643.46 @E\r
4324 0 J 0 j [] 0 d 0 R 0 @G\r
4325 1.00 1.00 1.00 0.21 K\r
4326 0 0.22 0.22 0.00 @w\r
4327 132.41 635.18 m\r
4328 132.41 643.46 L\r
4329 187.27 643.46 L\r
4330 187.27 635.18 L\r
4331 132.41 635.18 L\r
4332 @c\r
4333 S\r
4334 \r
4335 @rax %%Note: Object\r
4336 132.41 626.98 187.27 635.18 @E\r
4337 0 J 0 j [] 0 d 0 R 0 @G\r
4338 1.00 1.00 1.00 0.21 K\r
4339 0 0.22 0.22 0.00 @w\r
4340 132.41 626.98 m\r
4341 132.41 635.18 L\r
4342 187.27 635.18 L\r
4343 187.27 626.98 L\r
4344 132.41 626.98 L\r
4345 @c\r
4346 S\r
4347 \r
4348 @rax %%Note: Object\r
4349 132.41 624.24 168.05 629.71 @E\r
4350  0 O 0 @g\r
4351 1.00 1.00 1.00 0.21 k\r
4352 0 J 0 j [] 0 d 0 R 0 @G\r
4353 1.00 1.00 1.00 0.21 K\r
4354 0 0.22 0.22 0.00 @w\r
4355 132.41 624.24 m\r
4356 132.41 629.71 L\r
4357 168.05 629.71 L\r
4358 168.05 624.24 L\r
4359 132.41 624.24 L\r
4360 @c\r
4361 B\r
4362 \r
4363 @rax %%Note: Object\r
4364 132.41 385.63 168.05 391.10 @E\r
4365  0 O 0 @g\r
4366 1.00 1.00 1.00 0.21 k\r
4367 0 J 0 j [] 0 d 0 R 0 @G\r
4368 1.00 1.00 1.00 0.21 K\r
4369 0 0.22 0.22 0.00 @w\r
4370 132.41 385.63 m\r
4371 132.41 391.10 L\r
4372 168.05 391.10 L\r
4373 168.05 385.63 L\r
4374 132.41 385.63 L\r
4375 @c\r
4376 B\r
4377 \r
4378 @rax %%Note: Object\r
4379 132.41 426.74 168.05 432.22 @E\r
4380  0 O 0 @g\r
4381 1.00 1.00 1.00 0.21 k\r
4382 0 J 0 j [] 0 d 0 R 0 @G\r
4383 1.00 1.00 1.00 0.21 K\r
4384 0 0.22 0.22 0.00 @w\r
4385 132.41 426.74 m\r
4386 132.41 432.22 L\r
4387 168.05 432.22 L\r
4388 168.05 426.74 L\r
4389 132.41 426.74 L\r
4390 @c\r
4391 B\r
4392 \r
4393 @rax %%Note: Object\r
4394 132.41 418.54 168.05 424.01 @E\r
4395  0 O 0 @g\r
4396 1.00 1.00 1.00 0.21 k\r
4397 0 J 0 j [] 0 d 0 R 0 @G\r
4398 1.00 1.00 1.00 0.21 K\r
4399 0 0.22 0.22 0.00 @w\r
4400 132.41 418.54 m\r
4401 132.41 424.01 L\r
4402 168.05 424.01 L\r
4403 168.05 418.54 L\r
4404 132.41 418.54 L\r
4405 @c\r
4406 B\r
4407 \r
4408 @rax %%Note: Object\r
4409 132.41 410.26 168.05 415.80 @E\r
4410  0 O 0 @g\r
4411 1.00 1.00 1.00 0.21 k\r
4412 0 J 0 j [] 0 d 0 R 0 @G\r
4413 1.00 1.00 1.00 0.21 K\r
4414 0 0.22 0.22 0.00 @w\r
4415 132.41 410.26 m\r
4416 132.41 415.80 L\r
4417 168.05 415.80 L\r
4418 168.05 410.26 L\r
4419 132.41 410.26 L\r
4420 @c\r
4421 B\r
4422 \r
4423 @rax %%Note: Object\r
4424 132.41 380.09 187.27 388.37 @E\r
4425 0 J 0 j [] 0 d 0 R 0 @G\r
4426 1.00 1.00 1.00 0.21 K\r
4427 0 0.22 0.22 0.00 @w\r
4428 132.41 380.09 m\r
4429 132.41 388.37 L\r
4430 187.27 388.37 L\r
4431 187.27 380.09 L\r
4432 132.41 380.09 L\r
4433 @c\r
4434 S\r
4435 \r
4436 @rax %%Note: Object\r
4437 132.41 429.48 187.27 437.69 @E\r
4438 0 J 0 j [] 0 d 0 R 0 @G\r
4439 1.00 1.00 1.00 0.21 K\r
4440 0 0.22 0.22 0.00 @w\r
4441 132.41 429.48 m\r
4442 132.41 437.69 L\r
4443 187.27 437.69 L\r
4444 187.27 429.48 L\r
4445 132.41 429.48 L\r
4446 @c\r
4447 S\r
4448 \r
4449 @rax %%Note: Object\r
4450 132.41 421.27 187.27 429.48 @E\r
4451 0 J 0 j [] 0 d 0 R 0 @G\r
4452 1.00 1.00 1.00 0.21 K\r
4453 0 0.22 0.22 0.00 @w\r
4454 132.41 421.27 m\r
4455 132.41 429.48 L\r
4456 187.27 429.48 L\r
4457 187.27 421.27 L\r
4458 132.41 421.27 L\r
4459 @c\r
4460 S\r
4461 \r
4462 @rax %%Note: Object\r
4463 132.41 413.06 187.27 421.27 @E\r
4464 0 J 0 j [] 0 d 0 R 0 @G\r
4465 1.00 1.00 1.00 0.21 K\r
4466 0 0.22 0.22 0.00 @w\r
4467 132.41 413.06 m\r
4468 132.41 421.27 L\r
4469 187.27 421.27 L\r
4470 187.27 413.06 L\r
4471 132.41 413.06 L\r
4472 @c\r
4473 S\r
4474 \r
4475 @rax %%Note: Object\r
4476 132.41 388.37 187.27 396.58 @E\r
4477 0 J 0 j [] 0 d 0 R 0 @G\r
4478 1.00 1.00 1.00 0.21 K\r
4479 0 0.22 0.22 0.00 @w\r
4480 132.41 388.37 m\r
4481 132.41 396.58 L\r
4482 187.27 396.58 L\r
4483 187.27 388.37 L\r
4484 132.41 388.37 L\r
4485 @c\r
4486 S\r
4487 \r
4488 @rax %%Note: Object\r
4489 132.41 404.78 187.27 413.06 @E\r
4490 0 J 0 j [] 0 d 0 R 0 @G\r
4491 1.00 1.00 1.00 0.21 K\r
4492 0 0.22 0.22 0.00 @w\r
4493 132.41 404.78 m\r
4494 132.41 413.06 L\r
4495 187.27 413.06 L\r
4496 187.27 404.78 L\r
4497 132.41 404.78 L\r
4498 @c\r
4499 S\r
4500 \r
4501 @rax %%Note: Object\r
4502 132.41 396.58 187.27 404.78 @E\r
4503 0 J 0 j [] 0 d 0 R 0 @G\r
4504 1.00 1.00 1.00 0.21 K\r
4505 0 0.22 0.22 0.00 @w\r
4506 132.41 396.58 m\r
4507 132.41 404.78 L\r
4508 187.27 404.78 L\r
4509 187.27 396.58 L\r
4510 132.41 396.58 L\r
4511 @c\r
4512 S\r
4513 \r
4514 @rax %%Note: Object\r
4515 132.41 393.84 168.05 399.31 @E\r
4516  0 O 0 @g\r
4517 1.00 1.00 1.00 0.21 k\r
4518 0 J 0 j [] 0 d 0 R 0 @G\r
4519 1.00 1.00 1.00 0.21 K\r
4520 0 0.22 0.22 0.00 @w\r
4521 132.41 393.84 m\r
4522 132.41 399.31 L\r
4523 168.05 399.31 L\r
4524 168.05 393.84 L\r
4525 132.41 393.84 L\r
4526 @c\r
4527 B\r
4528 \r
4529 @rax %%Note: Object\r
4530 132.41 212.90 168.05 218.38 @E\r
4531  0 O 0 @g\r
4532 1.00 1.00 1.00 0.21 k\r
4533 0 J 0 j [] 0 d 0 R 0 @G\r
4534 1.00 1.00 1.00 0.21 K\r
4535 0 0.22 0.22 0.00 @w\r
4536 132.41 212.90 m\r
4537 132.41 218.38 L\r
4538 168.05 218.38 L\r
4539 168.05 212.90 L\r
4540 132.41 212.90 L\r
4541 @c\r
4542 B\r
4543 \r
4544 @rax %%Note: Object\r
4545 132.41 254.02 168.05 259.49 @E\r
4546  0 O 0 @g\r
4547 1.00 1.00 1.00 0.21 k\r
4548 0 J 0 j [] 0 d 0 R 0 @G\r
4549 1.00 1.00 1.00 0.21 K\r
4550 0 0.22 0.22 0.00 @w\r
4551 132.41 254.02 m\r
4552 132.41 259.49 L\r
4553 168.05 259.49 L\r
4554 168.05 254.02 L\r
4555 132.41 254.02 L\r
4556 @c\r
4557 B\r
4558 \r
4559 @rax %%Note: Object\r
4560 132.41 245.81 168.05 251.28 @E\r
4561  0 O 0 @g\r
4562 1.00 1.00 1.00 0.21 k\r
4563 0 J 0 j [] 0 d 0 R 0 @G\r
4564 1.00 1.00 1.00 0.21 K\r
4565 0 0.22 0.22 0.00 @w\r
4566 132.41 245.81 m\r
4567 132.41 251.28 L\r
4568 168.05 251.28 L\r
4569 168.05 245.81 L\r
4570 132.41 245.81 L\r
4571 @c\r
4572 B\r
4573 \r
4574 @rax %%Note: Object\r
4575 132.41 237.53 168.05 243.07 @E\r
4576  0 O 0 @g\r
4577 1.00 1.00 1.00 0.21 k\r
4578 0 J 0 j [] 0 d 0 R 0 @G\r
4579 1.00 1.00 1.00 0.21 K\r
4580 0 0.22 0.22 0.00 @w\r
4581 132.41 237.53 m\r
4582 132.41 243.07 L\r
4583 168.05 243.07 L\r
4584 168.05 237.53 L\r
4585 132.41 237.53 L\r
4586 @c\r
4587 B\r
4588 \r
4589 @rax %%Note: Object\r
4590 132.41 207.36 187.27 215.64 @E\r
4591 0 J 0 j [] 0 d 0 R 0 @G\r
4592 1.00 1.00 1.00 0.21 K\r
4593 0 0.22 0.22 0.00 @w\r
4594 132.41 207.36 m\r
4595 132.41 215.64 L\r
4596 187.27 215.64 L\r
4597 187.27 207.36 L\r
4598 132.41 207.36 L\r
4599 @c\r
4600 S\r
4601 \r
4602 @rax %%Note: Object\r
4603 132.41 256.75 187.27 264.96 @E\r
4604 0 J 0 j [] 0 d 0 R 0 @G\r
4605 1.00 1.00 1.00 0.21 K\r
4606 0 0.22 0.22 0.00 @w\r
4607 132.41 256.75 m\r
4608 132.41 264.96 L\r
4609 187.27 264.96 L\r
4610 187.27 256.75 L\r
4611 132.41 256.75 L\r
4612 @c\r
4613 S\r
4614 \r
4615 @rax %%Note: Object\r
4616 132.41 248.54 187.27 256.75 @E\r
4617 0 J 0 j [] 0 d 0 R 0 @G\r
4618 1.00 1.00 1.00 0.21 K\r
4619 0 0.22 0.22 0.00 @w\r
4620 132.41 248.54 m\r
4621 132.41 256.75 L\r
4622 187.27 256.75 L\r
4623 187.27 248.54 L\r
4624 132.41 248.54 L\r
4625 @c\r
4626 S\r
4627 \r
4628 @rax %%Note: Object\r
4629 132.41 240.34 187.27 248.54 @E\r
4630 0 J 0 j [] 0 d 0 R 0 @G\r
4631 1.00 1.00 1.00 0.21 K\r
4632 0 0.22 0.22 0.00 @w\r
4633 132.41 240.34 m\r
4634 132.41 248.54 L\r
4635 187.27 248.54 L\r
4636 187.27 240.34 L\r
4637 132.41 240.34 L\r
4638 @c\r
4639 S\r
4640 \r
4641 @rax %%Note: Object\r
4642 132.41 215.64 187.27 223.85 @E\r
4643 0 J 0 j [] 0 d 0 R 0 @G\r
4644 1.00 1.00 1.00 0.21 K\r
4645 0 0.22 0.22 0.00 @w\r
4646 132.41 215.64 m\r
4647 132.41 223.85 L\r
4648 187.27 223.85 L\r
4649 187.27 215.64 L\r
4650 132.41 215.64 L\r
4651 @c\r
4652 S\r
4653 \r
4654 @rax %%Note: Object\r
4655 132.41 232.06 187.27 240.34 @E\r
4656 0 J 0 j [] 0 d 0 R 0 @G\r
4657 1.00 1.00 1.00 0.21 K\r
4658 0 0.22 0.22 0.00 @w\r
4659 132.41 232.06 m\r
4660 132.41 240.34 L\r
4661 187.27 240.34 L\r
4662 187.27 232.06 L\r
4663 132.41 232.06 L\r
4664 @c\r
4665 S\r
4666 \r
4667 @rax %%Note: Object\r
4668 132.41 223.85 187.27 232.06 @E\r
4669 0 J 0 j [] 0 d 0 R 0 @G\r
4670 1.00 1.00 1.00 0.21 K\r
4671 0 0.22 0.22 0.00 @w\r
4672 132.41 223.85 m\r
4673 132.41 232.06 L\r
4674 187.27 232.06 L\r
4675 187.27 223.85 L\r
4676 132.41 223.85 L\r
4677 @c\r
4678 S\r
4679 \r
4680 @rax %%Note: Object\r
4681 132.41 221.11 168.05 226.58 @E\r
4682  0 O 0 @g\r
4683 1.00 1.00 1.00 0.21 k\r
4684 0 J 0 j [] 0 d 0 R 0 @G\r
4685 1.00 1.00 1.00 0.21 K\r
4686 0 0.22 0.22 0.00 @w\r
4687 132.41 221.11 m\r
4688 132.41 226.58 L\r
4689 168.05 226.58 L\r
4690 168.05 221.11 L\r
4691 132.41 221.11 L\r
4692 @c\r
4693 B\r
4694 \r
4695 @rax %%Note: Object\r
4696 132.41 328.03 168.05 333.50 @E\r
4697  0 O 0 @g\r
4698 1.00 1.00 1.00 0.21 k\r
4699 0 J 0 j [] 0 d 0 R 0 @G\r
4700 1.00 1.00 1.00 0.21 K\r
4701 0 0.22 0.22 0.00 @w\r
4702 132.41 328.03 m\r
4703 132.41 333.50 L\r
4704 168.05 333.50 L\r
4705 168.05 328.03 L\r
4706 132.41 328.03 L\r
4707 @c\r
4708 B\r
4709 \r
4710 @rax %%Note: Object\r
4711 132.41 369.14 168.05 374.62 @E\r
4712  0 O 0 @g\r
4713 1.00 1.00 1.00 0.21 k\r
4714 0 J 0 j [] 0 d 0 R 0 @G\r
4715 1.00 1.00 1.00 0.21 K\r
4716 0 0.22 0.22 0.00 @w\r
4717 132.41 369.14 m\r
4718 132.41 374.62 L\r
4719 168.05 374.62 L\r
4720 168.05 369.14 L\r
4721 132.41 369.14 L\r
4722 @c\r
4723 B\r
4724 \r
4725 @rax %%Note: Object\r
4726 132.41 360.94 168.05 366.41 @E\r
4727  0 O 0 @g\r
4728 1.00 1.00 1.00 0.21 k\r
4729 0 J 0 j [] 0 d 0 R 0 @G\r
4730 1.00 1.00 1.00 0.21 K\r
4731 0 0.22 0.22 0.00 @w\r
4732 132.41 360.94 m\r
4733 132.41 366.41 L\r
4734 168.05 366.41 L\r
4735 168.05 360.94 L\r
4736 132.41 360.94 L\r
4737 @c\r
4738 B\r
4739 \r
4740 @rax %%Note: Object\r
4741 132.41 352.66 168.05 358.20 @E\r
4742  0 O 0 @g\r
4743 1.00 1.00 1.00 0.21 k\r
4744 0 J 0 j [] 0 d 0 R 0 @G\r
4745 1.00 1.00 1.00 0.21 K\r
4746 0 0.22 0.22 0.00 @w\r
4747 132.41 352.66 m\r
4748 132.41 358.20 L\r
4749 168.05 358.20 L\r
4750 168.05 352.66 L\r
4751 132.41 352.66 L\r
4752 @c\r
4753 B\r
4754 \r
4755 @rax %%Note: Object\r
4756 132.41 322.49 187.27 330.77 @E\r
4757 0 J 0 j [] 0 d 0 R 0 @G\r
4758 1.00 1.00 1.00 0.21 K\r
4759 0 0.22 0.22 0.00 @w\r
4760 132.41 322.49 m\r
4761 132.41 330.77 L\r
4762 187.27 330.77 L\r
4763 187.27 322.49 L\r
4764 132.41 322.49 L\r
4765 @c\r
4766 S\r
4767 \r
4768 @rax %%Note: Object\r
4769 132.41 371.88 187.27 380.09 @E\r
4770 0 J 0 j [] 0 d 0 R 0 @G\r
4771 1.00 1.00 1.00 0.21 K\r
4772 0 0.22 0.22 0.00 @w\r
4773 132.41 371.88 m\r
4774 132.41 380.09 L\r
4775 187.27 380.09 L\r
4776 187.27 371.88 L\r
4777 132.41 371.88 L\r
4778 @c\r
4779 S\r
4780 \r
4781 @rax %%Note: Object\r
4782 132.41 363.67 187.27 371.88 @E\r
4783 0 J 0 j [] 0 d 0 R 0 @G\r
4784 1.00 1.00 1.00 0.21 K\r
4785 0 0.22 0.22 0.00 @w\r
4786 132.41 363.67 m\r
4787 132.41 371.88 L\r
4788 187.27 371.88 L\r
4789 187.27 363.67 L\r
4790 132.41 363.67 L\r
4791 @c\r
4792 S\r
4793 \r
4794 @rax %%Note: Object\r
4795 132.41 355.46 187.27 363.67 @E\r
4796 0 J 0 j [] 0 d 0 R 0 @G\r
4797 1.00 1.00 1.00 0.21 K\r
4798 0 0.22 0.22 0.00 @w\r
4799 132.41 355.46 m\r
4800 132.41 363.67 L\r
4801 187.27 363.67 L\r
4802 187.27 355.46 L\r
4803 132.41 355.46 L\r
4804 @c\r
4805 S\r
4806 \r
4807 @rax %%Note: Object\r
4808 132.41 330.77 187.27 338.98 @E\r
4809 0 J 0 j [] 0 d 0 R 0 @G\r
4810 1.00 1.00 1.00 0.21 K\r
4811 0 0.22 0.22 0.00 @w\r
4812 132.41 330.77 m\r
4813 132.41 338.98 L\r
4814 187.27 338.98 L\r
4815 187.27 330.77 L\r
4816 132.41 330.77 L\r
4817 @c\r
4818 S\r
4819 \r
4820 @rax %%Note: Object\r
4821 132.41 347.18 187.27 355.46 @E\r
4822 0 J 0 j [] 0 d 0 R 0 @G\r
4823 1.00 1.00 1.00 0.21 K\r
4824 0 0.22 0.22 0.00 @w\r
4825 132.41 347.18 m\r
4826 132.41 355.46 L\r
4827 187.27 355.46 L\r
4828 187.27 347.18 L\r
4829 132.41 347.18 L\r
4830 @c\r
4831 S\r
4832 \r
4833 @rax %%Note: Object\r
4834 132.41 338.98 187.27 347.18 @E\r
4835 0 J 0 j [] 0 d 0 R 0 @G\r
4836 1.00 1.00 1.00 0.21 K\r
4837 0 0.22 0.22 0.00 @w\r
4838 132.41 338.98 m\r
4839 132.41 347.18 L\r
4840 187.27 347.18 L\r
4841 187.27 338.98 L\r
4842 132.41 338.98 L\r
4843 @c\r
4844 S\r
4845 \r
4846 @rax %%Note: Object\r
4847 132.41 336.24 168.05 341.71 @E\r
4848  0 O 0 @g\r
4849 1.00 1.00 1.00 0.21 k\r
4850 0 J 0 j [] 0 d 0 R 0 @G\r
4851 1.00 1.00 1.00 0.21 K\r
4852 0 0.22 0.22 0.00 @w\r
4853 132.41 336.24 m\r
4854 132.41 341.71 L\r
4855 168.05 341.71 L\r
4856 168.05 336.24 L\r
4857 132.41 336.24 L\r
4858 @c\r
4859 B\r
4860 \r
4861 @rax %%Note: Object\r
4862 132.34 443.23 167.98 448.70 @E\r
4863  0 O 0 @g\r
4864 1.00 1.00 1.00 0.21 k\r
4865 0 J 0 j [] 0 d 0 R 0 @G\r
4866 1.00 1.00 1.00 0.21 K\r
4867 0 0.22 0.22 0.00 @w\r
4868 132.34 443.23 m\r
4869 132.34 448.70 L\r
4870 167.98 448.70 L\r
4871 167.98 443.23 L\r
4872 132.34 443.23 L\r
4873 @c\r
4874 B\r
4875 \r
4876 @rax %%Note: Object\r
4877 132.34 484.34 167.98 489.82 @E\r
4878  0 O 0 @g\r
4879 1.00 1.00 1.00 0.21 k\r
4880 0 J 0 j [] 0 d 0 R 0 @G\r
4881 1.00 1.00 1.00 0.21 K\r
4882 0 0.22 0.22 0.00 @w\r
4883 132.34 484.34 m\r
4884 132.34 489.82 L\r
4885 167.98 489.82 L\r
4886 167.98 484.34 L\r
4887 132.34 484.34 L\r
4888 @c\r
4889 B\r
4890 \r
4891 @rax %%Note: Object\r
4892 132.34 476.14 167.98 481.61 @E\r
4893  0 O 0 @g\r
4894 1.00 1.00 1.00 0.21 k\r
4895 0 J 0 j [] 0 d 0 R 0 @G\r
4896 1.00 1.00 1.00 0.21 K\r
4897 0 0.22 0.22 0.00 @w\r
4898 132.34 476.14 m\r
4899 132.34 481.61 L\r
4900 167.98 481.61 L\r
4901 167.98 476.14 L\r
4902 132.34 476.14 L\r
4903 @c\r
4904 B\r
4905 \r
4906 @rax %%Note: Object\r
4907 132.34 467.86 167.98 473.40 @E\r
4908  0 O 0 @g\r
4909 1.00 1.00 1.00 0.21 k\r
4910 0 J 0 j [] 0 d 0 R 0 @G\r
4911 1.00 1.00 1.00 0.21 K\r
4912 0 0.22 0.22 0.00 @w\r
4913 132.34 467.86 m\r
4914 132.34 473.40 L\r
4915 167.98 473.40 L\r
4916 167.98 467.86 L\r
4917 132.34 467.86 L\r
4918 @c\r
4919 B\r
4920 \r
4921 @rax %%Note: Object\r
4922 132.34 437.69 187.20 445.97 @E\r
4923 0 J 0 j [] 0 d 0 R 0 @G\r
4924 1.00 1.00 1.00 0.21 K\r
4925 0 0.22 0.22 0.00 @w\r
4926 132.34 437.69 m\r
4927 132.34 445.97 L\r
4928 187.20 445.97 L\r
4929 187.20 437.69 L\r
4930 132.34 437.69 L\r
4931 @c\r
4932 S\r
4933 \r
4934 @rax %%Note: Object\r
4935 132.34 487.08 187.20 495.29 @E\r
4936 0 J 0 j [] 0 d 0 R 0 @G\r
4937 1.00 1.00 1.00 0.21 K\r
4938 0 0.22 0.22 0.00 @w\r
4939 132.34 487.08 m\r
4940 132.34 495.29 L\r
4941 187.20 495.29 L\r
4942 187.20 487.08 L\r
4943 132.34 487.08 L\r
4944 @c\r
4945 S\r
4946 \r
4947 @rax %%Note: Object\r
4948 132.34 478.87 187.20 487.08 @E\r
4949 0 J 0 j [] 0 d 0 R 0 @G\r
4950 1.00 1.00 1.00 0.21 K\r
4951 0 0.22 0.22 0.00 @w\r
4952 132.34 478.87 m\r
4953 132.34 487.08 L\r
4954 187.20 487.08 L\r
4955 187.20 478.87 L\r
4956 132.34 478.87 L\r
4957 @c\r
4958 S\r
4959 \r
4960 @rax %%Note: Object\r
4961 132.34 470.66 187.20 478.87 @E\r
4962 0 J 0 j [] 0 d 0 R 0 @G\r
4963 1.00 1.00 1.00 0.21 K\r
4964 0 0.22 0.22 0.00 @w\r
4965 132.34 470.66 m\r
4966 132.34 478.87 L\r
4967 187.20 478.87 L\r
4968 187.20 470.66 L\r
4969 132.34 470.66 L\r
4970 @c\r
4971 S\r
4972 \r
4973 @rax %%Note: Object\r
4974 132.34 445.97 187.20 454.18 @E\r
4975 0 J 0 j [] 0 d 0 R 0 @G\r
4976 1.00 1.00 1.00 0.21 K\r
4977 0 0.22 0.22 0.00 @w\r
4978 132.34 445.97 m\r
4979 132.34 454.18 L\r
4980 187.20 454.18 L\r
4981 187.20 445.97 L\r
4982 132.34 445.97 L\r
4983 @c\r
4984 S\r
4985 \r
4986 @rax %%Note: Object\r
4987 132.34 462.38 187.20 470.66 @E\r
4988 0 J 0 j [] 0 d 0 R 0 @G\r
4989 1.00 1.00 1.00 0.21 K\r
4990 0 0.22 0.22 0.00 @w\r
4991 132.34 462.38 m\r
4992 132.34 470.66 L\r
4993 187.20 470.66 L\r
4994 187.20 462.38 L\r
4995 132.34 462.38 L\r
4996 @c\r
4997 S\r
4998 \r
4999 @rax %%Note: Object\r
5000 132.34 454.18 187.20 462.38 @E\r
5001 0 J 0 j [] 0 d 0 R 0 @G\r
5002 1.00 1.00 1.00 0.21 K\r
5003 0 0.22 0.22 0.00 @w\r
5004 132.34 454.18 m\r
5005 132.34 462.38 L\r
5006 187.20 462.38 L\r
5007 187.20 454.18 L\r
5008 132.34 454.18 L\r
5009 @c\r
5010 S\r
5011 \r
5012 @rax %%Note: Object\r
5013 132.34 451.44 167.98 456.91 @E\r
5014  0 O 0 @g\r
5015 1.00 1.00 1.00 0.21 k\r
5016 0 J 0 j [] 0 d 0 R 0 @G\r
5017 1.00 1.00 1.00 0.21 K\r
5018 0 0.22 0.22 0.00 @w\r
5019 132.34 451.44 m\r
5020 132.34 456.91 L\r
5021 167.98 456.91 L\r
5022 167.98 451.44 L\r
5023 132.34 451.44 L\r
5024 @c\r
5025 B\r
5026 \r
5027 @rax 174.17 95.54 177.19 99.94 @E\r
5028 [0.07199 0.00000 0.00000 0.07199 174.16800 95.61600] @tm\r
5029  0 O 0 @g\r
5030 1.00 1.00 1.00 0.21 k\r
5031 e\r
5032 /_R1-Helvetica 83.00 z\r
5033 0 0 (0) @t\r
5034 T\r
5035 @rax 174.17 153.22 180.50 157.54 @E\r
5036 [0.07199 0.00000 0.00000 0.07199 174.16800 153.21599] @tm\r
5037  0 O 0 @g\r
5038 1.00 1.00 1.00 0.21 k\r
5039 e\r
5040 /_R1-Helvetica 83.00 z\r
5041 0 0 (12) @t\r
5042 T\r
5043 @rax 174.17 210.82 180.50 215.14 @E\r
5044 [0.07199 0.00000 0.00000 0.07199 174.16800 210.81599] @tm\r
5045  0 O 0 @g\r
5046 1.00 1.00 1.00 0.21 k\r
5047 e\r
5048 /_R1-Helvetica 83.00 z\r
5049 0 0 (24) @t\r
5050 T\r
5051 @rax 174.17 268.34 180.50 272.74 @E\r
5052 [0.07199 0.00000 0.00000 0.07199 174.16800 268.41599] @tm\r
5053  0 O 0 @g\r
5054 1.00 1.00 1.00 0.21 k\r
5055 e\r
5056 /_R1-Helvetica 83.00 z\r
5057 0 0 (36) @t\r
5058 T\r
5059 @rax 174.17 325.94 180.50 330.34 @E\r
5060 [0.07199 0.00000 0.00000 0.07199 174.16800 326.01599] @tm\r
5061  0 O 0 @g\r
5062 1.00 1.00 1.00 0.21 k\r
5063 e\r
5064 /_R1-Helvetica 83.00 z\r
5065 0 0 (48) @t\r
5066 T\r
5067 @rax 174.17 383.54 180.50 387.94 @E\r
5068 [0.07199 0.00000 0.00000 0.07199 174.16800 383.61600] @tm\r
5069  0 O 0 @g\r
5070 1.00 1.00 1.00 0.21 k\r
5071 e\r
5072 /_R1-Helvetica 83.00 z\r
5073 0 0 (60) @t\r
5074 T\r
5075 @rax 174.17 441.22 180.50 445.54 @E\r
5076 [0.07199 0.00000 0.00000 0.07199 174.16800 441.21597] @tm\r
5077  0 O 0 @g\r
5078 1.00 1.00 1.00 0.21 k\r
5079 e\r
5080 /_R1-Helvetica 83.00 z\r
5081 0 0 (72) @t\r
5082 T\r
5083 @rax 174.17 498.74 180.50 503.14 @E\r
5084 [0.07199 0.00000 0.00000 0.07199 174.16800 498.81598] @tm\r
5085  0 O 0 @g\r
5086 1.00 1.00 1.00 0.21 k\r
5087 e\r
5088 /_R1-Helvetica 83.00 z\r
5089 0 0 (84) @t\r
5090 T\r
5091 @rax 174.17 556.34 180.50 560.74 @E\r
5092 [0.07199 0.00000 0.00000 0.07199 174.16800 556.41595] @tm\r
5093  0 O 0 @g\r
5094 1.00 1.00 1.00 0.21 k\r
5095 e\r
5096 /_R1-Helvetica 83.00 z\r
5097 0 0 (96) @t\r
5098 T\r
5099 @rax 174.17 613.94 183.82 618.34 @E\r
5100 [0.07199 0.00000 0.00000 0.07199 174.16800 614.01599] @tm\r
5101  0 O 0 @g\r
5102 1.00 1.00 1.00 0.21 k\r
5103 e\r
5104 /_R1-Helvetica 83.00 z\r
5105 0 0 (108) @t\r
5106 T\r
5107 @rax 174.17 671.54 183.82 675.94 @E\r
5108 [0.07199 0.00000 0.00000 0.07199 174.16800 671.61597] @tm\r
5109  0 O 0 @g\r
5110 1.00 1.00 1.00 0.21 k\r
5111 e\r
5112 /_R1-Helvetica 83.00 z\r
5113 0 0 (120) @t\r
5114 T\r
5115 @rax 174.17 695.52 183.82 699.91 @E\r
5116 [0.07199 0.00000 0.00000 0.07199 174.16800 695.59198] @tm\r
5117  0 O 0 @g\r
5118 1.00 1.00 1.00 0.21 k\r
5119 e\r
5120 /_R1-Helvetica 83.00 z\r
5121 0 0 (125) @t\r
5122 T\r
5123 @rax 174.17 637.92 183.38 642.31 @E\r
5124 [0.07199 0.00000 0.00000 0.07199 174.16800 637.99194] @tm\r
5125  0 O 0 @g\r
5126 1.00 1.00 1.00 0.21 k\r
5127 e\r
5128 /_R1-Helvetica 83.00 z\r
5129 0 0 (113) @t\r
5130 T\r
5131 @rax 174.17 580.32 182.95 584.71 @E\r
5132 [0.07199 0.00000 0.00000 0.07199 174.16800 580.39197] @tm\r
5133  0 O 0 @g\r
5134 1.00 1.00 1.00 0.21 k\r
5135 e\r
5136 /_R1-Helvetica 83.00 z\r
5137 0 0 (101) @t\r
5138 T\r
5139 @rax 174.17 522.72 180.50 527.11 @E\r
5140 [0.07199 0.00000 0.00000 0.07199 174.16800 522.79199] @tm\r
5141  0 O 0 @g\r
5142 1.00 1.00 1.00 0.21 k\r
5143 e\r
5144 /_R1-Helvetica 83.00 z\r
5145 0 0 (89) @t\r
5146 T\r
5147 @rax 174.17 465.19 180.50 469.44 @E\r
5148 [0.07199 0.00000 0.00000 0.07199 174.16800 465.19199] @tm\r
5149  0 O 0 @g\r
5150 1.00 1.00 1.00 0.21 k\r
5151 e\r
5152 /_R1-Helvetica 83.00 z\r
5153 0 0 (77) @t\r
5154 T\r
5155 @rax 174.17 407.52 180.50 411.91 @E\r
5156 [0.07199 0.00000 0.00000 0.07199 174.16800 407.59198] @tm\r
5157  0 O 0 @g\r
5158 1.00 1.00 1.00 0.21 k\r
5159 e\r
5160 /_R1-Helvetica 83.00 z\r
5161 0 0 (65) @t\r
5162 T\r
5163 @rax 174.17 349.92 180.50 354.31 @E\r
5164 [0.07199 0.00000 0.00000 0.07199 174.16800 349.99197] @tm\r
5165  0 O 0 @g\r
5166 1.00 1.00 1.00 0.21 k\r
5167 e\r
5168 /_R1-Helvetica 83.00 z\r
5169 0 0 (53) @t\r
5170 T\r
5171 @rax 174.17 292.39 179.64 296.71 @E\r
5172 [0.07199 0.00000 0.00000 0.07199 174.16800 292.39200] @tm\r
5173  0 O 0 @g\r
5174 1.00 1.00 1.00 0.21 k\r
5175 e\r
5176 /_R1-Helvetica 83.00 z\r
5177 0 0 (41) @t\r
5178 T\r
5179 @rax 174.17 234.72 180.50 239.11 @E\r
5180 [0.07199 0.00000 0.00000 0.07199 174.16800 234.79199] @tm\r
5181  0 O 0 @g\r
5182 1.00 1.00 1.00 0.21 k\r
5183 e\r
5184 /_R1-Helvetica 83.00 z\r
5185 0 0 (29) @t\r
5186 T\r
5187 @rax 174.17 177.19 180.50 181.51 @E\r
5188 [0.07199 0.00000 0.00000 0.07199 174.16800 177.19199] @tm\r
5189  0 O 0 @g\r
5190 1.00 1.00 1.00 0.21 k\r
5191 e\r
5192 /_R1-Helvetica 83.00 z\r
5193 0 0 (17) @t\r
5194 T\r
5195 @rax 174.17 119.52 177.19 123.84 @E\r
5196 [0.07199 0.00000 0.00000 0.07199 174.16800 119.59200] @tm\r
5197  0 O 0 @g\r
5198 1.00 1.00 1.00 0.21 k\r
5199 e\r
5200 /_R1-Helvetica 83.00 z\r
5201 0 0 (5) @t\r
5202 T\r
5203 @rax 194.40 745.06 392.04 755.21 @E\r
5204 [0.07199 0.00000 0.00000 0.07199 194.39999 745.19995] @tm\r
5205  0 O 0 @g\r
5206 1.00 1.00 1.00 0.21 k\r
5207 e\r
5208 /_R1-Helvetica 194.00 z\r
5209 0 0 (MIDI File Format Note Numbers) @t\r
5210 T\r
5211 @rax %%Note: Object\r
5212 288.00 691.27 301.03 705.67 @E\r
5213  0 O 0 @g\r
5214 1.00 1.00 1.00 0.21 k\r
5215 0 J 0 j [] 0 d 0 R 0 @G\r
5216 1.00 1.00 1.00 0.21 K\r
5217 0 0.22 0.22 0.00 @w\r
5218 295.78 691.27 m\r
5219 291.67 691.27 288.29 696.38 288.14 700.56 C\r
5220 288.00 704.30 289.66 705.67 293.40 705.67 C\r
5221 297.43 705.60 301.03 700.34 301.03 696.31 C\r
5222 301.03 692.78 299.74 691.27 295.78 691.27 C\r
5223 @c\r
5224 293.33 696.10 m\r
5225 294.34 694.58 296.57 692.64 298.01 692.71 C\r
5226 300.82 693.00 297.36 698.69 296.35 699.98 c\r
5227 294.55 702.36 292.54 704.30 290.95 704.09 C\r
5228 288.14 703.37 292.32 697.46 293.33 696.10 c\r
5229 @c\r
5230 B\r
5231 \r
5232 @rax %%Note: Object\r
5233 302.40 655.27 315.43 669.67 @E\r
5234  0 O 0 @g\r
5235 1.00 1.00 1.00 0.21 k\r
5236 0 J 0 j [] 0 d 0 R 0 @G\r
5237 1.00 1.00 1.00 0.21 K\r
5238 0 0.22 0.22 0.00 @w\r
5239 310.18 655.27 m\r
5240 306.07 655.27 302.69 660.38 302.54 664.56 C\r
5241 302.40 668.30 304.06 669.67 307.80 669.67 C\r
5242 311.83 669.60 315.43 664.34 315.43 660.31 C\r
5243 315.43 656.78 314.14 655.27 310.18 655.27 C\r
5244 @c\r
5245 307.73 660.10 m\r
5246 308.74 658.58 310.97 656.64 312.41 656.71 C\r
5247 315.22 657.00 311.76 662.69 310.75 663.98 c\r
5248 308.95 666.36 306.94 668.30 305.35 668.09 C\r
5249 302.54 667.37 306.72 661.46 307.73 660.10 c\r
5250 @c\r
5251 B\r
5252 \r
5253 @rax %%Note: Object\r
5254 318.24 619.27 331.27 633.67 @E\r
5255  0 O 0 @g\r
5256 1.00 1.00 1.00 0.21 k\r
5257 0 J 0 j [] 0 d 0 R 0 @G\r
5258 1.00 1.00 1.00 0.21 K\r
5259 0 0.22 0.22 0.00 @w\r
5260 326.02 619.27 m\r
5261 321.91 619.27 318.53 624.38 318.38 628.56 C\r
5262 318.24 632.30 319.90 633.67 323.64 633.67 C\r
5263 327.67 633.60 331.27 628.34 331.27 624.31 C\r
5264 331.27 620.78 329.98 619.27 326.02 619.27 C\r
5265 @c\r
5266 323.57 624.10 m\r
5267 324.58 622.58 326.81 620.64 328.25 620.71 C\r
5268 331.06 621.00 327.60 626.69 326.59 627.98 c\r
5269 324.79 630.36 322.78 632.30 321.19 632.09 C\r
5270 318.38 631.37 322.56 625.46 323.57 624.10 c\r
5271 @c\r
5272 B\r
5273 \r
5274 @rax %%Note: Object\r
5275 331.20 590.47 344.23 604.87 @E\r
5276  0 O 0 @g\r
5277 1.00 1.00 1.00 0.21 k\r
5278 0 J 0 j [] 0 d 0 R 0 @G\r
5279 1.00 1.00 1.00 0.21 K\r
5280 0 0.22 0.22 0.00 @w\r
5281 338.98 590.47 m\r
5282 334.87 590.47 331.49 595.58 331.34 599.76 C\r
5283 331.20 603.50 332.86 604.87 336.60 604.87 C\r
5284 340.63 604.80 344.23 599.54 344.23 595.51 C\r
5285 344.23 591.98 342.94 590.47 338.98 590.47 C\r
5286 @c\r
5287 336.53 595.30 m\r
5288 337.54 593.78 339.77 591.84 341.21 591.91 C\r
5289 344.02 592.20 340.56 597.89 339.55 599.18 c\r
5290 337.75 601.56 335.74 603.50 334.15 603.29 C\r
5291 331.34 602.57 335.52 596.66 336.53 595.30 c\r
5292 @c\r
5293 B\r
5294 \r
5295 @rax %%Note: Object\r
5296 347.04 554.47 360.07 568.87 @E\r
5297  0 O 0 @g\r
5298 1.00 1.00 1.00 0.21 k\r
5299 0 J 0 j [] 0 d 0 R 0 @G\r
5300 1.00 1.00 1.00 0.21 K\r
5301 0 0.22 0.22 0.00 @w\r
5302 354.82 554.47 m\r
5303 350.71 554.47 347.33 559.58 347.18 563.76 C\r
5304 347.04 567.50 348.70 568.87 352.44 568.87 C\r
5305 356.47 568.80 360.07 563.54 360.07 559.51 C\r
5306 360.07 555.98 358.78 554.47 354.82 554.47 C\r
5307 @c\r
5308 352.37 559.30 m\r
5309 353.38 557.78 355.61 555.84 357.05 555.91 C\r
5310 359.86 556.20 356.40 561.89 355.39 563.18 c\r
5311 353.59 565.56 351.58 567.50 349.99 567.29 C\r
5312 347.18 566.57 351.36 560.66 352.37 559.30 c\r
5313 @c\r
5314 B\r
5315 \r
5316 @rax %%Note: Object\r
5317 361.44 518.47 374.47 532.87 @E\r
5318  0 O 0 @g\r
5319 1.00 1.00 1.00 0.21 k\r
5320 0 J 0 j [] 0 d 0 R 0 @G\r
5321 1.00 1.00 1.00 0.21 K\r
5322 0 0.22 0.22 0.00 @w\r
5323 369.22 518.47 m\r
5324 365.11 518.47 361.73 523.58 361.58 527.76 C\r
5325 361.44 531.50 363.10 532.87 366.84 532.87 C\r
5326 370.87 532.80 374.47 527.54 374.47 523.51 C\r
5327 374.47 519.98 373.18 518.47 369.22 518.47 C\r
5328 @c\r
5329 366.77 523.30 m\r
5330 367.78 521.78 370.01 519.84 371.45 519.91 C\r
5331 374.26 520.20 370.80 525.89 369.79 527.18 c\r
5332 367.99 529.56 365.98 531.50 364.39 531.29 C\r
5333 361.58 530.57 365.76 524.66 366.77 523.30 c\r
5334 @c\r
5335 B\r
5336 \r
5337 @rax %%Note: Object\r
5338 375.84 482.47 388.87 496.87 @E\r
5339  0 O 0 @g\r
5340 1.00 1.00 1.00 0.21 k\r
5341 0 J 0 j [] 0 d 0 R 0 @G\r
5342 1.00 1.00 1.00 0.21 K\r
5343 0 0.22 0.22 0.00 @w\r
5344 383.62 482.47 m\r
5345 379.51 482.47 376.13 487.58 375.98 491.76 C\r
5346 375.84 495.50 377.50 496.87 381.24 496.87 C\r
5347 385.27 496.80 388.87 491.54 388.87 487.51 C\r
5348 388.87 483.98 387.58 482.47 383.62 482.47 C\r
5349 @c\r
5350 381.17 487.30 m\r
5351 382.18 485.78 384.41 483.84 385.85 483.91 C\r
5352 388.66 484.20 385.20 489.89 384.19 491.18 c\r
5353 382.39 493.56 380.38 495.50 378.79 495.29 C\r
5354 375.98 494.57 380.16 488.66 381.17 487.30 c\r
5355 @c\r
5356 B\r
5357 \r
5358 @rax %%Note: Object\r
5359 388.80 446.47 401.83 460.87 @E\r
5360  0 O 0 @g\r
5361 1.00 1.00 1.00 0.21 k\r
5362 0 J 0 j [] 0 d 0 R 0 @G\r
5363 1.00 1.00 1.00 0.21 K\r
5364 0 0.22 0.22 0.00 @w\r
5365 396.58 446.47 m\r
5366 392.47 446.47 389.09 451.58 388.94 455.76 C\r
5367 388.80 459.50 390.46 460.87 394.20 460.87 C\r
5368 398.23 460.80 401.83 455.54 401.83 451.51 C\r
5369 401.83 447.98 400.54 446.47 396.58 446.47 C\r
5370 @c\r
5371 394.13 451.30 m\r
5372 395.14 449.78 397.37 447.84 398.81 447.91 C\r
5373 401.62 448.20 398.16 453.89 397.15 455.18 c\r
5374 395.35 457.56 393.34 459.50 391.75 459.29 C\r
5375 388.94 458.57 393.12 452.66 394.13 451.30 c\r
5376 @c\r
5377 B\r
5378 \r
5379 @rax %%Note: Object\r
5380 419.04 410.47 432.07 424.87 @E\r
5381  0 O 0 @g\r
5382 1.00 1.00 1.00 0.21 k\r
5383 0 J 0 j [] 0 d 0 R 0 @G\r
5384 1.00 1.00 1.00 0.21 K\r
5385 0 0.22 0.22 0.00 @w\r
5386 426.82 410.47 m\r
5387 422.71 410.47 419.33 415.58 419.18 419.76 C\r
5388 419.04 423.50 420.70 424.87 424.44 424.87 C\r
5389 428.47 424.80 432.07 419.54 432.07 415.51 C\r
5390 432.07 411.98 430.78 410.47 426.82 410.47 C\r
5391 @c\r
5392 424.37 415.30 m\r
5393 425.38 413.78 427.61 411.84 429.05 411.91 C\r
5394 431.86 412.20 428.40 417.89 427.39 419.18 c\r
5395 425.59 421.56 423.58 423.50 421.99 423.29 C\r
5396 419.18 422.57 423.36 416.66 424.37 415.30 c\r
5397 @c\r
5398 B\r
5399 \r
5400 @rax %%Note: Object\r
5401 433.44 374.47 446.47 388.87 @E\r
5402  0 O 0 @g\r
5403 1.00 1.00 1.00 0.21 k\r
5404 0 J 0 j [] 0 d 0 R 0 @G\r
5405 1.00 1.00 1.00 0.21 K\r
5406 0 0.22 0.22 0.00 @w\r
5407 441.22 374.47 m\r
5408 437.11 374.47 433.73 379.58 433.58 383.76 C\r
5409 433.44 387.50 435.10 388.87 438.84 388.87 C\r
5410 442.87 388.80 446.47 383.54 446.47 379.51 C\r
5411 446.47 375.98 445.18 374.47 441.22 374.47 C\r
5412 @c\r
5413 438.77 379.30 m\r
5414 439.78 377.78 442.01 375.84 443.45 375.91 C\r
5415 446.26 376.20 442.80 381.89 441.79 383.18 c\r
5416 439.99 385.56 437.98 387.50 436.39 387.29 C\r
5417 433.58 386.57 437.76 380.66 438.77 379.30 c\r
5418 @c\r
5419 B\r
5420 \r
5421 @rax %%Note: Object\r
5422 447.84 338.47 460.87 352.87 @E\r
5423  0 O 0 @g\r
5424 1.00 1.00 1.00 0.21 k\r
5425 0 J 0 j [] 0 d 0 R 0 @G\r
5426 1.00 1.00 1.00 0.21 K\r
5427 0 0.22 0.22 0.00 @w\r
5428 455.62 338.47 m\r
5429 451.51 338.47 448.13 343.58 447.98 347.76 C\r
5430 447.84 351.50 449.50 352.87 453.24 352.87 C\r
5431 457.27 352.80 460.87 347.54 460.87 343.51 C\r
5432 460.87 339.98 459.58 338.47 455.62 338.47 C\r
5433 @c\r
5434 453.17 343.30 m\r
5435 454.18 341.78 456.41 339.84 457.85 339.91 C\r
5436 460.66 340.20 457.20 345.89 456.19 347.18 c\r
5437 454.39 349.56 452.38 351.50 450.79 351.29 C\r
5438 447.98 350.57 452.16 344.66 453.17 343.30 c\r
5439 @c\r
5440 B\r
5441 \r
5442 @rax %%Note: Object\r
5443 462.24 302.47 475.27 316.87 @E\r
5444  0 O 0 @g\r
5445 1.00 1.00 1.00 0.21 k\r
5446 0 J 0 j [] 0 d 0 R 0 @G\r
5447 1.00 1.00 1.00 0.21 K\r
5448 0 0.22 0.22 0.00 @w\r
5449 470.02 302.47 m\r
5450 465.91 302.47 462.53 307.58 462.38 311.76 C\r
5451 462.24 315.50 463.90 316.87 467.64 316.87 C\r
5452 471.67 316.80 475.27 311.54 475.27 307.51 C\r
5453 475.27 303.98 473.98 302.47 470.02 302.47 C\r
5454 @c\r
5455 467.57 307.30 m\r
5456 468.58 305.78 470.81 303.84 472.25 303.91 C\r
5457 475.06 304.20 471.60 309.89 470.59 311.18 c\r
5458 468.79 313.56 466.78 315.50 465.19 315.29 C\r
5459 462.38 314.57 466.56 308.66 467.57 307.30 c\r
5460 @c\r
5461 B\r
5462 \r
5463 @rax %%Note: Object\r
5464 476.64 266.47 489.67 280.87 @E\r
5465  0 O 0 @g\r
5466 1.00 1.00 1.00 0.21 k\r
5467 0 J 0 j [] 0 d 0 R 0 @G\r
5468 1.00 1.00 1.00 0.21 K\r
5469 0 0.22 0.22 0.00 @w\r
5470 484.42 266.47 m\r
5471 480.31 266.47 476.93 271.58 476.78 275.76 C\r
5472 476.64 279.50 478.30 280.87 482.04 280.87 C\r
5473 486.07 280.80 489.67 275.54 489.67 271.51 C\r
5474 489.67 267.98 488.38 266.47 484.42 266.47 C\r
5475 @c\r
5476 481.97 271.30 m\r
5477 482.98 269.78 485.21 267.84 486.65 267.91 C\r
5478 489.46 268.20 486.00 273.89 484.99 275.18 c\r
5479 483.19 277.56 481.18 279.50 479.59 279.29 C\r
5480 476.78 278.57 480.96 272.66 481.97 271.30 c\r
5481 @c\r
5482 B\r
5483 \r
5484 @rax %%Note: Object\r
5485 489.60 230.47 502.63 244.87 @E\r
5486  0 O 0 @g\r
5487 1.00 1.00 1.00 0.21 k\r
5488 0 J 0 j [] 0 d 0 R 0 @G\r
5489 1.00 1.00 1.00 0.21 K\r
5490 0 0.22 0.22 0.00 @w\r
5491 497.38 230.47 m\r
5492 493.27 230.47 489.89 235.58 489.74 239.76 C\r
5493 489.60 243.50 491.26 244.87 495.00 244.87 C\r
5494 499.03 244.80 502.63 239.54 502.63 235.51 C\r
5495 502.63 231.98 501.34 230.47 497.38 230.47 C\r
5496 @c\r
5497 494.93 235.30 m\r
5498 495.94 233.78 498.17 231.84 499.61 231.91 C\r
5499 502.42 232.20 498.96 237.89 497.95 239.18 c\r
5500 496.15 241.56 494.14 243.50 492.55 243.29 C\r
5501 489.74 242.57 493.92 236.66 494.93 235.30 c\r
5502 @c\r
5503 B\r
5504 \r
5505 @rax %%Note: Object\r
5506 512.64 151.20 525.67 165.60 @E\r
5507  0 O 0 @g\r
5508 1.00 1.00 1.00 0.21 k\r
5509 0 J 0 j [] 0 d 0 R 0 @G\r
5510 1.00 1.00 1.00 0.21 K\r
5511 0 0.22 0.22 0.00 @w\r
5512 520.42 151.20 m\r
5513 516.31 151.20 512.93 156.31 512.78 160.49 C\r
5514 512.64 164.23 514.30 165.60 518.04 165.60 C\r
5515 522.07 165.53 525.67 160.27 525.67 156.24 C\r
5516 525.67 152.71 524.38 151.20 520.42 151.20 C\r
5517 @c\r
5518 517.97 156.02 m\r
5519 518.98 154.51 521.21 152.57 522.65 152.64 C\r
5520 525.46 152.93 522.00 158.62 520.99 159.91 c\r
5521 519.19 162.29 517.18 164.23 515.59 164.02 C\r
5522 512.78 163.30 516.96 157.39 517.97 156.02 c\r
5523 @c\r
5524 B\r
5525 \r
5526 @rax %%Note: Object\r
5527 330.91 72.00 331.20 720.00 @E\r
5528 0 J 0 j [] 0 d 0 R 0 @G\r
5529 1.00 1.00 1.00 0.21 K\r
5530 0 0.22 0.22 0.00 @w\r
5531 331.06 72.00 m\r
5532 331.06 720.00 L\r
5533 S\r
5534 \r
5535 @rax %%Note: Object\r
5536 345.31 72.00 345.60 720.00 @E\r
5537 0 J 0 j [] 0 d 0 R 0 @G\r
5538 1.00 1.00 1.00 0.21 K\r
5539 0 0.22 0.22 0.00 @w\r
5540 345.46 72.00 m\r
5541 345.46 720.00 L\r
5542 S\r
5543 \r
5544 @rax %%Note: Object\r
5545 359.71 72.00 360.00 720.00 @E\r
5546 0 J 0 j [] 0 d 0 R 0 @G\r
5547 1.00 1.00 1.00 0.21 K\r
5548 0 0.22 0.22 0.00 @w\r
5549 359.86 720.00 m\r
5550 359.86 72.00 L\r
5551 S\r
5552 \r
5553 @rax %%Note: Object\r
5554 374.11 72.00 374.40 720.00 @E\r
5555 0 J 0 j [] 0 d 0 R 0 @G\r
5556 1.00 1.00 1.00 0.21 K\r
5557 0 0.22 0.22 0.00 @w\r
5558 374.26 72.00 m\r
5559 374.26 720.00 L\r
5560 S\r
5561 \r
5562 @rax %%Note: Object\r
5563 388.51 72.00 388.80 720.00 @E\r
5564 0 J 0 j [] 0 d 0 R 0 @G\r
5565 1.00 1.00 1.00 0.21 K\r
5566 0 0.22 0.22 0.00 @w\r
5567 388.66 720.00 m\r
5568 388.66 72.00 L\r
5569 S\r
5570 \r
5571 @rax %%Note: Object\r
5572 431.71 72.00 432.00 720.00 @E\r
5573 0 J 0 j [] 0 d 0 R 0 @G\r
5574 1.00 1.00 1.00 0.21 K\r
5575 0 0.22 0.22 0.00 @w\r
5576 431.86 72.00 m\r
5577 431.86 720.00 L\r
5578 S\r
5579 \r
5580 @rax %%Note: Object\r
5581 446.11 72.00 446.40 720.00 @E\r
5582 0 J 0 j [] 0 d 0 R 0 @G\r
5583 1.00 1.00 1.00 0.21 K\r
5584 0 0.22 0.22 0.00 @w\r
5585 446.26 720.00 m\r
5586 446.26 72.00 L\r
5587 S\r
5588 \r
5589 @rax %%Note: Object\r
5590 460.51 72.00 460.80 720.00 @E\r
5591 0 J 0 j [] 0 d 0 R 0 @G\r
5592 1.00 1.00 1.00 0.21 K\r
5593 0 0.22 0.22 0.00 @w\r
5594 460.66 72.00 m\r
5595 460.66 720.00 L\r
5596 S\r
5597 \r
5598 @rax %%Note: Object\r
5599 474.91 72.00 475.20 720.00 @E\r
5600 0 J 0 j [] 0 d 0 R 0 @G\r
5601 1.00 1.00 1.00 0.21 K\r
5602 0 0.22 0.22 0.00 @w\r
5603 475.06 720.00 m\r
5604 475.06 72.00 L\r
5605 S\r
5606 \r
5607 @rax %%Note: Object\r
5608 489.31 72.00 489.60 720.00 @E\r
5609 0 J 0 j [] 0 d 0 R 0 @G\r
5610 1.00 1.00 1.00 0.21 K\r
5611 0 0.22 0.22 0.00 @w\r
5612 489.46 72.00 m\r
5613 489.46 720.00 L\r
5614 S\r
5615 \r
5616 @rax %%Note: Object\r
5617 504.00 194.47 517.03 208.87 @E\r
5618  0 O 0 @g\r
5619 1.00 1.00 1.00 0.21 k\r
5620 0 J 0 j [] 0 d 0 R 0 @G\r
5621 1.00 1.00 1.00 0.21 K\r
5622 0 0.22 0.22 0.00 @w\r
5623 511.78 194.47 m\r
5624 507.67 194.47 504.29 199.58 504.14 203.76 C\r
5625 504.00 207.50 505.66 208.87 509.40 208.87 C\r
5626 513.43 208.80 517.03 203.54 517.03 199.51 C\r
5627 517.03 195.98 515.74 194.47 511.78 194.47 C\r
5628 @c\r
5629 509.33 199.30 m\r
5630 510.34 197.78 512.57 195.84 514.01 195.91 C\r
5631 516.82 196.20 513.36 201.89 512.35 203.18 c\r
5632 510.55 205.56 508.54 207.50 506.95 207.29 C\r
5633 504.14 206.57 508.32 200.66 509.33 199.30 c\r
5634 @c\r
5635 B\r
5636 \r
5637 @rax %%Note: Object\r
5638 518.26 144.00 518.54 172.80 @E\r
5639 0 J 0 j [] 0 d 0 R 0 @G\r
5640 1.00 1.00 1.00 0.21 K\r
5641 0 0.22 0.22 0.00 @w\r
5642 518.40 144.00 m\r
5643 518.40 172.80 L\r
5644 S\r
5645 \r
5646 @rax %%Note: Object\r
5647 503.86 144.00 504.14 172.80 @E\r
5648 0 J 0 j [] 0 d 0 R 0 @G\r
5649 1.00 1.00 1.00 0.21 K\r
5650 0 0.22 0.22 0.00 @w\r
5651 504.00 144.00 m\r
5652 504.00 172.80 L\r
5653 S\r
5654 \r
5655 @rax %%Note: Object\r
5656 302.26 684.00 302.54 712.80 @E\r
5657 0 J 0 j [] 0 d 0 R 0 @G\r
5658 1.00 1.00 1.00 0.21 K\r
5659 0 0.22 0.22 0.00 @w\r
5660 302.40 684.00 m\r
5661 302.40 712.80 L\r
5662 S\r
5663 \r
5664 @rax %%Note: Object\r
5665 316.66 648.00 316.94 676.80 @E\r
5666 0 J 0 j [] 0 d 0 R 0 @G\r
5667 1.00 1.00 1.00 0.21 K\r
5668 0 0.22 0.22 0.00 @w\r
5669 316.80 648.00 m\r
5670 316.80 676.80 L\r
5671 S\r
5672 \r
5673 @rax %%Note: Object\r
5674 316.66 684.00 316.94 712.80 @E\r
5675 0 J 0 j [] 0 d 0 R 0 @G\r
5676 1.00 1.00 1.00 0.21 K\r
5677 0 0.22 0.22 0.00 @w\r
5678 316.80 684.00 m\r
5679 316.80 712.80 L\r
5680 S\r
5681 \r
5682 @rax %%Note: Object\r
5683 331.20 71.93 395.06 101.38 @E\r
5684  0 O 0 @g\r
5685 1.00 1.00 1.00 0.21 k\r
5686 0 J 0 j [] 0 d 0 R 0 @G\r
5687 1.00 1.00 1.00 0.21 K\r
5688 0 0.22 0.22 0.00 @w\r
5689 366.12 87.55 m\r
5690 366.62 85.82 368.57 83.88 370.80 83.88 c\r
5691 371.95 83.88 374.11 84.53 374.98 86.54 c\r
5692 375.26 87.34 376.13 87.05 375.19 85.39 c\r
5693 373.54 82.01 369.22 80.42 365.26 83.09 c\r
5694 364.10 83.66 362.66 85.32 362.09 86.76 C\r
5695 356.62 85.68 L\r
5696 358.06 84.02 359.42 82.58 361.51 80.86 c\r
5697 365.47 77.47 371.66 75.89 375.98 80.14 c\r
5698 378.86 83.09 379.08 87.12 378.22 90.00 C\r
5699 366.12 87.55 L\r
5700 @c\r
5701 365.98 88.70 m\r
5702 377.86 91.08 L\r
5703 376.78 93.82 374.11 94.90 371.59 94.68 c\r
5704 368.42 94.32 365.98 92.09 365.98 88.70 C\r
5705 @c\r
5706 349.92 85.54 m\r
5707 348.55 87.77 342.36 91.80 338.69 90.94 c\r
5708 336.46 90.65 336.46 88.20 338.69 86.83 c\r
5709 341.57 85.10 346.54 84.10 349.92 85.54 C\r
5710 @c\r
5711 350.86 84.53 m\r
5712 342.58 82.22 334.80 83.88 332.28 87.19 c\r
5713 331.20 88.63 331.34 88.92 332.42 89.78 c\r
5714 339.34 94.68 349.99 92.95 355.68 86.69 C\r
5715 361.80 87.91 L\r
5716 360.07 97.34 375.19 101.38 378.94 91.37 C\r
5717 384.48 92.23 389.66 94.97 392.83 90.65 c\r
5718 395.06 87.55 394.42 83.52 392.40 81.43 c\r
5719 391.03 79.99 388.51 79.13 386.06 80.86 c\r
5720 382.75 83.45 385.49 87.70 389.16 86.98 c\r
5721 391.25 86.54 391.75 84.53 391.61 83.45 C\r
5722 394.42 85.39 392.62 90.43 389.81 91.30 c\r
5723 386.64 92.45 383.26 91.01 379.44 90.14 C\r
5724 381.89 79.92 370.73 71.93 361.08 76.32 c\r
5725 357.55 77.98 354.02 81.29 350.86 84.53 C\r
5726 @c\r
5727 B\r
5728 \r
5729 @rax %%Note: Object\r
5730 439.13 72.00 482.40 100.80 @E\r
5731  0 O 0 @g\r
5732 1.00 1.00 1.00 0.21 k\r
5733 0 J 0 j [] 0 d 0 R 0 @G\r
5734 1.00 1.00 1.00 0.21 K\r
5735 0 0.22 0.22 0.00 @w\r
5736 481.25 72.00 m\r
5737 478.51 75.24 476.28 77.98 473.62 80.42 c\r
5738 471.02 82.58 468.29 84.53 465.12 85.82 c\r
5739 461.81 87.34 457.13 88.70 452.81 88.78 c\r
5740 449.64 88.78 446.98 88.49 444.96 87.41 c\r
5741 443.09 86.33 441.58 84.67 441.58 82.44 c\r
5742 441.58 79.99 442.66 76.75 446.33 75.60 c\r
5743 447.62 75.24 448.13 76.10 448.13 76.61 c\r
5744 448.27 77.04 447.70 77.83 447.70 78.70 c\r
5745 447.70 79.70 448.27 80.57 448.92 81.29 c\r
5746 449.71 81.86 450.94 82.30 451.94 82.30 c\r
5747 454.54 82.30 456.77 80.42 456.77 77.98 c\r
5748 456.77 76.61 456.19 75.53 455.26 74.66 c\r
5749 454.32 73.73 452.74 73.01 450.79 73.01 c\r
5750 447.84 73.01 444.74 74.45 442.87 76.39 c\r
5751 441.86 77.40 441.29 78.70 440.71 79.85 c\r
5752 439.13 84.24 440.06 87.84 443.38 90.86 c\r
5753 445.61 93.02 448.78 94.54 453.46 94.54 c\r
5754 457.92 94.54 463.32 92.81 468.50 89.21 c\r
5755 470.74 87.62 472.82 85.46 474.84 82.87 c\r
5756 477.50 79.78 479.88 76.10 482.40 72.14 C\r
5757 481.25 72.00 L\r
5758 @c\r
5759 446.90 96.26 m\r
5760 446.04 96.26 445.25 96.48 444.74 96.98 c\r
5761 444.31 97.34 444.02 97.85 444.02 98.57 c\r
5762 444.02 99.14 444.31 99.72 444.89 100.01 c\r
5763 445.25 100.44 446.04 100.80 446.98 100.80 c\r
5764 447.91 100.80 448.56 100.44 449.14 99.94 c\r
5765 449.64 99.65 449.86 99.07 449.86 98.42 c\r
5766 449.86 97.92 449.50 97.34 449.14 96.98 c\r
5767 448.56 96.55 447.84 96.26 446.90 96.26 c\r
5768 @c\r
5769 458.57 96.26 m\r
5770 457.56 96.26 456.98 96.55 456.41 96.98 c\r
5771 455.90 97.34 455.69 97.85 455.69 98.57 c\r
5772 455.69 99.14 455.98 99.79 456.55 100.15 c\r
5773 457.06 100.44 457.70 100.80 458.57 100.80 c\r
5774 459.50 100.80 460.37 100.44 460.80 99.94 c\r
5775 461.30 99.65 461.52 99.07 461.52 98.57 c\r
5776 461.52 97.92 461.30 97.34 460.80 96.98 c\r
5777 460.22 96.55 459.50 96.26 458.57 96.26 c\r
5778 @c\r
5779 B\r
5780 \r
5781 @rax 513.36 129.60 522.07 142.42 @E\r
5782 [0.00001 0.07199 -0.07199 0.00001 522.00000 129.59999] @tm\r
5783  0 O 0 @g\r
5784 1.00 1.00 1.00 0.21 k\r
5785 e\r
5786 /_R1-Helvetica 167.00 z\r
5787 0 0 (36) @t\r
5788 T\r
5789 @rax 506.16 180.00 514.87 192.82 @E\r
5790 [0.00001 0.07199 -0.07199 0.00001 514.79999 179.99998] @tm\r
5791  0 O 0 @g\r
5792 1.00 1.00 1.00 0.21 k\r
5793 e\r
5794 /_R1-Helvetica 167.00 z\r
5795 0 0 (38) @t\r
5796 T\r
5797 @rax 491.76 216.00 500.40 227.09 @E\r
5798 [0.00001 0.07199 -0.07199 0.00001 500.39996 215.99998] @tm\r
5799  0 O 0 @g\r
5800 1.00 1.00 1.00 0.21 k\r
5801 e\r
5802 /_R1-Helvetica 167.00 z\r
5803 0 0 (41) @t\r
5804 T\r
5805 @rax 477.43 252.00 486.07 264.82 @E\r
5806 [0.00001 0.07199 -0.07199 0.00001 485.99997 251.99998] @tm\r
5807  0 O 0 @g\r
5808 1.00 1.00 1.00 0.21 k\r
5809 e\r
5810 /_R1-Helvetica 167.00 z\r
5811 0 0 (45) @t\r
5812 T\r
5813 @rax 462.96 288.00 471.67 300.82 @E\r
5814 [0.00001 0.07199 -0.07199 0.00001 471.59998 288.00000] @tm\r
5815  0 O 0 @g\r
5816 1.00 1.00 1.00 0.21 k\r
5817 e\r
5818 /_R1-Helvetica 167.00 z\r
5819 0 0 (48) @t\r
5820 T\r
5821 @rax 448.56 324.00 457.27 336.74 @E\r
5822 [0.00001 0.07199 -0.07199 0.00001 457.19998 324.00000] @tm\r
5823  0 O 0 @g\r
5824 1.00 1.00 1.00 0.21 k\r
5825 e\r
5826 /_R1-Helvetica 167.00 z\r
5827 0 0 (52) @t\r
5828 T\r
5829 @rax 434.23 360.00 442.87 372.82 @E\r
5830 [0.00001 0.07199 -0.07199 0.00001 442.79999 359.99997] @tm\r
5831  0 O 0 @g\r
5832 1.00 1.00 1.00 0.21 k\r
5833 e\r
5834 /_R1-Helvetica 167.00 z\r
5835 0 0 (55) @t\r
5836 T\r
5837 @rax 419.76 396.00 428.47 408.82 @E\r
5838 [0.00001 0.07199 -0.07199 0.00001 428.39999 395.99997] @tm\r
5839  0 O 0 @g\r
5840 1.00 1.00 1.00 0.21 k\r
5841 e\r
5842 /_R1-Helvetica 167.00 z\r
5843 0 0 (59) @t\r
5844 T\r
5845 @rax 390.96 432.00 399.67 444.74 @E\r
5846 [0.00001 0.07199 -0.07199 0.00001 399.59998 431.99997] @tm\r
5847  0 O 0 @g\r
5848 1.00 1.00 1.00 0.21 k\r
5849 e\r
5850 /_R1-Helvetica 167.00 z\r
5851 0 0 (62) @t\r
5852 T\r
5853 @rax 376.56 468.00 385.27 480.82 @E\r
5854 [0.00001 0.07199 -0.07199 0.00001 385.19998 467.99997] @tm\r
5855  0 O 0 @g\r
5856 1.00 1.00 1.00 0.21 k\r
5857 e\r
5858 /_R1-Helvetica 167.00 z\r
5859 0 0 (65) @t\r
5860 T\r
5861 @rax 362.16 504.00 370.87 516.82 @E\r
5862 [0.00001 0.07199 -0.07199 0.00001 370.79999 503.99997] @tm\r
5863  0 O 0 @g\r
5864 1.00 1.00 1.00 0.21 k\r
5865 e\r
5866 /_R1-Helvetica 167.00 z\r
5867 0 0 (69) @t\r
5868 T\r
5869 @rax 347.76 540.00 356.40 552.74 @E\r
5870 [0.00001 0.07199 -0.07199 0.00001 356.39999 540.00000] @tm\r
5871  0 O 0 @g\r
5872 1.00 1.00 1.00 0.21 k\r
5873 e\r
5874 /_R1-Helvetica 167.00 z\r
5875 0 0 (72) @t\r
5876 T\r
5877 @rax 333.36 576.00 342.07 588.82 @E\r
5878 [0.00001 0.07199 -0.07199 0.00001 342.00000 576.00000] @tm\r
5879  0 O 0 @g\r
5880 1.00 1.00 1.00 0.21 k\r
5881 e\r
5882 /_R1-Helvetica 167.00 z\r
5883 0 0 (76) @t\r
5884 T\r
5885 @rax 318.96 604.80 327.67 617.62 @E\r
5886 [0.00001 0.07199 -0.07199 0.00001 327.59998 604.79999] @tm\r
5887  0 O 0 @g\r
5888 1.00 1.00 1.00 0.21 k\r
5889 e\r
5890 /_R1-Helvetica 167.00 z\r
5891 0 0 (79) @t\r
5892 T\r
5893 @rax 304.56 640.80 313.27 653.62 @E\r
5894 [0.00001 0.07199 -0.07199 0.00001 313.19998 640.79999] @tm\r
5895  0 O 0 @g\r
5896 1.00 1.00 1.00 0.21 k\r
5897 e\r
5898 /_R1-Helvetica 167.00 z\r
5899 0 0 (83) @t\r
5900 T\r
5901 @rax 290.16 676.80 298.87 689.62 @E\r
5902 [0.00001 0.07199 -0.07199 0.00001 298.79999 676.79999] @tm\r
5903  0 O 0 @g\r
5904 1.00 1.00 1.00 0.21 k\r
5905 e\r
5906 /_R1-Helvetica 167.00 z\r
5907 0 0 (86) @t\r
5908 T\r
5909 @rax 187.20 381.53 226.15 388.87 @E\r
5910 [0.07199 0.00000 0.00000 0.07199 187.20000 381.59998] @tm\r
5911  0 O 0 @g\r
5912 1.00 1.00 1.00 0.21 k\r
5913 e\r
5914 /_R1-Helvetica 139.00 z\r
5915 0 0 (Middle C) @t\r
5916 T\r
5917 @rs @rs\r
5918 /$ctm matrix currentmatrix def\r
5919 %EndTile\r
5920 %EndColorLayer\r
5921 @rs\r
5922 @rs\r
5923 %EndPage\r
5924 %%Trailer\r
5925 end\r
5926 %%DocumentProcessColors: Cyan Magenta Yellow Black \r
5927 %%DocumentFonts: Helvetica \r
5928 %%DocumentSuppliedResources: procset wCorel4Dict\r
5929 EJ RS\r
5930 %%PageTrailer\r
5931 2397 3162 0 0 CB\r
5932 %%Trailer\r
5933 SVDoc restore\r
5934 end\r
5935 %%DocumentSuppliedResources: procset Win35Dict 3 1\r
5936 \r
5937 %%DocumentNeededResources: \r
5938 %%EOF\r
5939 \r