DISPLAYCONTROLLERDATASHEETDOC DISPLAYCONTROLLERDATASHEETDOC DISPLAYCONTROLLERDATASHEETDOC 1 1 1 Display Controller Data Sheet Lissy Bland and Jeff Hoel Dragon-88-06 March 1988 c Copyright 1988 Xerox Corporation. All rights reserved. Keywords: display controller, color monitor, color maps, color, Dragon, DynaBus, DBus; Maintained by: Bland.pa, Hoel.pa XEROX Xerox Corporation Palo Alto Research Center 3333 Coyote Hill Road Palo Alto, California 94304 For Internal Xerox Use Only Display Controller Data Sheet 1.0 Brief Description The Dragon Display Controller displays an image stored in main memory on the screen. A processor can communicate with the Display Controller over the DynaBus, using IOWrite and IORead commands, to initialize the Display Controller, change images, move the cursor, or read status registers. Once the Display Controller is initialized, it acts autonomously to fetch the image, using ReadBlock commands to display the image on the screen. The output of the Display Controller serves as input to an industry standard colormap/DAC chip, which converts digital pixels into analog red, green, and blue signals for a color monitor. In a typical application, the Display Controller might fetch more than 100 Megabytes of image data per second, consuming more than half the bandwidth of the DynaBus. To achieve this throughput, the Display Controller must be able to make a new request before being granted the previous request. There can be up to six such outstanding requests. To minimize the impact of this traffic on the latency of other bus requests, Display Controller requests are normally made at lowest priority, so that the requests of other devices can be granted first. The Display Controller has an on-chip FIFO, making it possible to output pixels to the screen at a predictible rate even though they are being fetched at a highly variable rate. If the FIFO becomes dangerously close to empty, the Display Controller issues requests at high priority until that condition no longer exists. The format of the screen is determined by a microprogrammed sequencer within the Display Controller; both interlaced and non-interlaced formats can be supported. Pixels can be 1, 2, 4, or 8 bits. A three-color, 16 x 16-pixel cursor is also supported. It is interesting to note that the Display Controller does not participate in any way in creating the image to be displayed. That is the job of the processors. 2.0 Pin-Out 3.0 Block Diagram of the Chip 4.0 Detailed Description of Each of the Functional Blocks 4.1 DynaBus Transactions Involving the Display Controller Command Generator The Command Generator initiates transactions on the DynaBus for two reasons: 1) to fill its Video Data FIFO using the ReadBlockRequest (RBRqst) command; and, 2) to interrupt a processor, using either the IOWriteRequest (IOWRqst) or BIOWriteRequest (BIOWRqst) command, depending upon the contents of the Control Parameters register (see Section 4.5). These commands are paired with replies that are named ReadBlockReply (RBRply), IOWriteReply (IOWRply) and BIOWriteReply (BIOWRply), respectively. Command Decoder The Command Decoder accepts two commands: IOReadRequest (IORRqst) and IOWriteRequest (IOWRqst). The commands are paired with a replies, named IOReadReply (IORRply) and IOWriteReply (IOWRply), respectively. These commands are used to read and write the Display Controller's internal registers, to write its internal memories, and to download information to an external colormap/DAC chip. (For a detailed description of the internal registers and memories, see Section 4.3. The colormap/DAC interface is described in Section 4.5.) The Display Controller can process at most one IO command at a time. It must not receive a new IO request before it has issued a reply to the previously received IO request, if any. System software must assure that this restriction is observed. Dynabus Commands All DynaBus requests interpreted by the Display Controller are two cycles long. The first cycle contains 32 bits of header information and a 32-bit address. (See Figure 1). The use of the second is command dependent. Replies to these DynaBus commands may be two or five cycles long. Note that bits 0-4 and 7-63 of the reply's first cycle are identical to those bits in the request packet. All requests generated by the Display Controller are in kernel mode (Mode/Fault=0), and the Display Controller expects all requests it receives to be in kernel mode, as well. If the Display Controller receives an IOWRqst or IORRqst in user mode (Mode/Fault = 1), the reply indicates an error by setting the Mode/Fault bit of the header cycle to 1, and setting the FaultCode to 1, IOAccessFault. (See the DynaBusLogicalSpecifications, Appendix C for more information about the Fault Codes.) If the Display Controller receives an IOWRply, BIOWRply, or RBRply with Mode/Fault=1 (fault), the FaultCode is ignored. Here are the specifications for the DynaBus commands that the Display Controller generates or decodes: 4.1.1 ReadBlockRequest (RBRqst) 4.1.2 ReadBlockReply (RBRply) If there is no error, the second through fifth cycles contain data. When the ReadBlockRequest results in an error, the FaultCode is always IOAccessFault, 001. 4.1.3 IOReadRequest (IORRqst) 4.1.4 IOReadReply (IORRply) No Error: On Error: 4.1.5 IOWriteRequest (IOWRqst) 4.1.6 IOWriteReply (IOWRply) No Error: On Error: 4.1.7 BIOWriteRequest (BIOWRqst) 4.2 The Display Controller IO Address Space The Display Controller is considered a small DynaBus device, so it is allocated an IO address space of 1024 words. This address space is subdivided as follows: Offset (hex) Use 000-1FF Colormap/DAC; see Section 4.2.2. 200-23F Cursor Shape Memory; see Section 4.2.3. 240-27F Microcode Memory; see Section 4.2.4. 280-288 Registers; see Section 4.2.1. 289-3FF Unused 4.2.1 The Display Controller Registers The following table describes the nine internal registers of the Display Controller. The Offset, in HEX, is relative to the base address in the IO address space. Offset Reg Name R/W Description 280 FramePtrBase R/W 32 bits. The FramePtrBase contains the beginning block address for the information to be displayed on the screen. The image is always aligned on a block boundary, where a block is 8, 32-bit words. Because the FramePtrBase uses byte addresses, the 3 least significant bits are always zero, and actually are not stored. 281 FramePtrLimit R/W 32 bits. Contains the the block address of the last block of image data to be displayed. The 3 least significant bits are always zero, and actually are not stored. 282 InterruptStatus R/W 6 bits. The 3, high-order bits represent the 3 Interrupts. The 3 low-order bits are a mask. A one in the mask enables the corresponding interrupt (3/0, 4/1, 5/2) to occur. A Read reads all 6 bits of the register and has the side effect of clearing the top 3 bits. A write writes only the lower 3 bits of the register. 283 BitsPerPixel R/W 2 bits. Allows the number of bits/pixel to be set as follows: Value Meaning 0 1 bit/pixel 1 2 bits/pixel 2 4 bits/pixel 3 8 bits/pixel 284 CursorX R/W 12 bits. The x-coordinate of the cursor. Represents non-negative value. The precise mapping from value to screen position is dependent on the microcode to some extent, but a smaller value is to the left of a larger value and the units are pixels. 285 CursorY R/W 12 bits. The y-coordinate of the cursor. Represents non-negative value. The precise mapping from value to screen position is dependent on the microcode to some extent, but a smaller value is above a larger value and the units are normally scan lines. 286 RBRqstEn R/W 1 bit. Normally, RBRqst is asserted during system initialization of the Display Controller and remains asserted thereafter. 287 VGenEn R/W 1 bit. (Video Generator Enable). This bit is used during system initialization. When VGenEn=0, the microcode's NextAddr register is reset to zero. When VGenEn=1, the NextAddr register is allowed to operate normally. 288 IntOffset R/W 10 bits. These are the 10 least significant bits, Offset, of the IOAddress of an interrupt request (IOWRqst or BIOWRqst). (The 12 most significant bits, DevType, are always 001H; the 10 remaining bits, DevNum, are supplied from DBus register 2, bits 6-15. 4.2.2 The Brooktree Bt458 An external Brooktree Bt458 colormap/DAC chip occupies address range 000-1FF. This address space is subdivided as follows: Offset (hex) Use 000-0FF Pixel Colormap 100-103 Overlay Colormap 104 Read Mask register 105 Blink register 106 Command register 107-1FF Unused Figure 2 illustrates the format of the 32-bit data word that serves as input to the Pixel Colormap and Overlay Colormap. Only the least significant 8 bits of the 32-bit data word are used when loading the Read Mask, Blink, and Command registers. Figure 2: The 32-bit data word 4.2.3 The Cursor Shape Memory The cursor occupies a 16 x 16 pixel area on the screen. Two bits are used to describe each pixel, so that the cursor requires 512 bits of memory. The 512 bits are stored as 64, 8-bit words, occupying address range 200-23F. Words are stored in left-to-right (fast) and top-to-bottom (slow) order. Because two bits are stored per pixel, four values are possible. Values 1, 2, and 3 are used to specify colors, while the value 0 makes the pixel transparent. The cursor is displayed using the color/overlay facility of the Brooktree Bt458. 4.2.4 The Microcode Memory The Display Controller contains a microprogrammed sequencer for controlling the screen format. The sequencer has an IterationCounter for setting the number of cycles each microinstruction will take and a LoopCounter which permits one level of programmed loop. Each microinstruction has a NextAddr field that specifies the next microinstruction; this field can be modified by various conditional jump mechanisms to be described below. Each microinstruction also contains a CountData field, used to load either the IterationCounter or the LoopCounter; two internal control bits; and eight control bits that control things outside the sequencer itself. The microprogrammed sequencer operates at a rate which is 1/4th the pixel rate. For this reason, there are certain limits placed on the screen format. For example, the number of pixels in a scan line must be divisible by four. The width of the border in pixels must also be divisible by four. The microcode memory consists of 64 words that are 28 bits wide. It occupies address range 240-27F. One IOWRqst instruction can download one word of microcode memory to the Display Controller. Figure 3 gives the format for the 28-bit microcode word. Figure 3: The format of the 28-bit microcode word. The following table lists the fields of the microcode word and their meanings: Field Meaning NextAddr first 6 bits. Points to the next microcode word. CounterData next 12 bits. CounterData is used to load either the IterationCounter or the LoopCounter, depending on the value of LoadLoop in the previous microcode instruction. The value is a negative number, represented in two's complement. Subsequently the counter is incremented until it reaches a value of FFF. LoadLoop bit 18. If LoadLoop = 1, then on the next microde instruction LoopCounter _ CountData and IterationCounter _ FFF. If LoadLoop = 0, then on the next microcode instruction IterationCounter _ CountData. CondJump bit 19. Normally the address of the next microinstruction is specified by the NextAddr field of the current microinstruction. However, under certain conditions to be discussed in detail below, this address can be forced to be odd. This feature provides a kind of conditional jump capability. Here are the conditions that will force the address to be odd: CondJump = 1 AND LoopCounter = FFF CondJump=0 AND T0=1 AND (NextAddr=38 OR NextAddr = 3A) CondJump=0 AND T1=1 AND (NextAddr=3C OR NextAddr = 3E) nHSync bit 20. Holds value of the nHSync bit. nBlank bit 21. Holds value of the nBlank bit. VideoData bit 22. If VideoData = 1, pixels are fetched from the FIFO and sent to the PixOut outputs. CursorData bit 23. If CursorData = 1, the logic that controls the cursor display is instructed to provide cursor pixels, which are sent to the COut outputs. Border bit 24. If Border = 1, the COut outputs are forced to 3's, regardless of the cursor. If desired, this feature can be used to display a border around the portion of the screen that contains ``real'' data. NewLine bit 25. If NewLine = 1, LoopCounter is incremented (unless it is loaded with the contents of CountData, as specified by LoadLoop bit of the previous microinstruction). Typically, this corresponds to starting a new scan line. nVSync bit 26. Holds value of the vHSync bit. ProgInt bit 27. If ProgInt = 1, an interrupt request bit will be set and an interrupt will occur on the DynaBus as soon as the corresponding interrupt mask bit is set. There are 2 microcode interrupts: Interrupt 0: If NextAddr < 20H, then bit 0 of the InterruptStatus register is set. Also, as a side effect, FramePtr, the internal register that points to the next block of image data to be fetched from main memory, is initialized to the contents of FramePtrBase. Interrupt 1: If NextAddr > 20H, then bit 1 of the InterruptStatus register is set. 4.2.4.1 An Example of Microcode The following microcode demonstrates all the functionality that would be required for a toy display with 20 visible scan lines containing pixel data and 8 scan lines during vertical retrace. Each scan line takes 16 cycles. Each visible scan line contains 32 data pixels and 8 border pixels on each side. Adr NextAddr Assert Ctrl Bits Counters/Timers 00 Start: Jump ScnE1 IT_-1 Vertical Retrace Interval: 02 VR1S1: Jump VR1S2 nHSync nBlank IT_-2 34 VR1S2: CJmp VR1S1,VR1E1 nBlank NewLine IT_-14 03 VR1E1: Jump VR1E2 nHSync nBlank LoadLoop IT_-1 05 VR1E2: Jump VSyI1 nHSync nBlank V.Timer_-2 06 VSyI1: Jump VSyI2 nBlank IT_-8 07 VSyI2: Jump VSyS1 nBlank nVSync IT_-6 08 VSyS1: Jump VSyS2 nHSync nBlank nVSync IT_-2 0A VSyS2: CJmp VSyS1,VSyE1 nBlank nVSync NewLine IT_-14 09 VSyE1: Jump VSyE2 nHSync nBlank nVSync LoadLoop IT_-1 0B VSyE2: Jump VSyO1 nHSync nBlank nVSync V.Timer_-2 0C VSyO1: Jump VSyO2 nBlank nVSync IT_-7 0D VSyO2: Jump VR2S1 nBlank IT_-7 0E VR2S1: Jump VR2S2 nHSync nBlank IT_-2 10 VR2S2: CJmp VR2S1,VR2E1 nBlank NewLine IT_-14 0F VR2E1: Jump VR2E2 nHSync nBlank LoadLoop IT_-1 11 VR2E2: Jump ScnS1 nHSync nBlank V.Timer_-20 Scan Line: 20 ScnS1: Jump ScnS2 nHSync nBlank IT_-2 22 ScnS2: Jump ScnS3 nBlank IT_-1 23 ScnS3: Jump ScnS4 nBlank CursorData Border IT_-1 24 ScnS4: Jump ScnS5 VideoData CursorData Border IT_-1 25 ScnS5: Jump ScnS6 VideoData CursorData IT_-6 26 ScnS6: Jump ScnS7 VideoData IT_-1 27 ScnS7: Jump ScnS8 IT_-1 28 ScnS8: Jump ScnS9 Border IT_-2 29 ScnS9: CJmp ScnS1,ScnE1 Border NewLine IT_-1 21 ScnE1: Jump ScnE2 nHSync nBlank LoadLoop IT_-1 1A ScnE2: Jump VR1S2 nHSync nBlank ProgInt V.Timer_-2 Here is the binary encoding of the above microcode: Hex Binary Equivalent divided into fields Next Addr Counter Booleans 87FFC00 100001 111111111111 0000000000 13FF8C0 000100 111111111110 0011000000 0BFC944 000010 111111110010 0101000100 17FFEC0 000101 111111111111 1011000000 1BFF8C0 000110 111111111110 0011000000 1FFE040 000111 111111111000 0000100000 23FE842 001000 111111111010 0001000010 2BFF8C2 001010 111111111110 0011000010 23FC946 001000 111111110010 0101000110 2FFFEC2 001011 111111111111 1011000010 33FF8C2 001100 111111111110 0011000010 37FE442 001101 111111111001 0000100010 3BFE440 001110 111111111001 0001000000 43FF8C0 001000 111111111110 0011000000 3BFC944 001110 111111110010 0101000100 47FFEC0 001001 111111111111 1011000000 8BFB0C0 100010 111111101100 0011000000 8BFF8C0 100010 111111111110 0011000000 8FFFC40 100011 111111111111 0001000000 93FFC58 100100 111111111111 0001011000 97FFC38 100101 111111111111 0000111000 9BFE830 100110 111111111010 0000110000 9FFFC20 100111 111111111111 0000100000 A3FFC00 101000 111111111111 0000000000 A7FF808 101001 111111111110 0000001000 83FFD0C 100000 111111111111 0100001100 6BFFEC0 011010 111111111111 1011000000 13FF8C1 000100 111111111110 0011000001 4.3 The DBus Interface The Display Controller has 4 registers that can be initialized and/or read over the DBus. Their addresses (path numbers) are as follows: Addr 0: Chip Identification 16 bits, RO. Indicates the type and version of the Display Controller. The 16 bits are broken down into 3 fields: a 4-bit header, a 6-bit chip type, and a 6-bit version number. The current Chip Identification Number for the Display Controller is: 0101 0010 0000 0000. Addr 1: DynaBus DeviceID 10 bits, R/W. Specifies the DynaBus Device ID for the DisplayController. This is a unique identifier loaded during system initialization. Addr 2: Control Parameters 34 bits, R/W. The 7 fields of this register are as follows: 1. InterruptReason (5 bits): InterruptReason specifies the data that will be sent with an interrupt request, as follows: data = 2 (31-InterruptReason). (The processor examines InterruptStatus for further details.) 2. Broadcast (1 bit): Broadcast is set to 1 for broadcast interrupts and to 0 for directed interrupts. 3. DynaBus DeviceID (10 bits): If Broadcast=0, DynaBus DeviceID is the DeviceID of the cache that will receive all interrupt requests from this Display Controller. If Broadcast=1, all caches receive these interrupt requests, and this field is ignored. 4. CriticalMask (7 bits): The CriticalMask permits software to set the level at which the FIFO is considered critically empty. For example, if the CriticalMask is set to 1100000, the FIFO is considered critically empty when it is less than 1/4 full, and the Display Controller will start making requests at high priority when the FIFO is less than 1/4 full. The following table gives the correspondence between masks and the level at which FIFO is considered empty. Mask Level at which FIFO is considered critical 0000000 full 1000000 1/2 full 1100000 1/4 full 1110000 1/8 full 1111000 1/16 full 1111100 1/32 full 1111110 1/64 full 1111111 1/128 full 5. MaxHPR (3 bits) Specifies the maximum number of outstanding high priority arbitration requests. If this limit is reached, no more arbitration requests for RBRqst packets will be generated at high priority until a high priority grant is received. Since the arbiter has a hard limit of 6 such outstanding requests, and since Display Controller should be free to issue an arbitration request at any time for a reply packet or interrupt packet, it is recommended that MaxOARHP always be programmed to be < 4. 6. MaxLPR (3 bits) Specifies the maximum number of outstanding low priority arbitration requests. If this limit is reached, no more arbitration requests for RBRqst packets will be generated at low priority until a low priority grant is received. Since the arbiter has a hard limit of 6 outstanding requests, it is recommended that MaxOARLP always be programmed to be < 6. 7. MaxORBR (5 bits) Specifies the maximum number of outstanding RBRqst packets. If this limit is reached, no more RBRqst packets will be sent until a RBRply is received. The intent is to keep the Display Controller from making more requests if it is clear that the memory is not responding, but Max ORBR can be used to some extent for performance tuning. The constant represents a two's complement number; only positive numbers make sense. Addr 3: Fault Status (2 bits), R). These bits get set by fault conditions and cleared by the DBus's nDReset signal. When a fault bit is asserted, SStopOut is also asserted. bit 0 IOWRplyFault. Asserted when the reply packet to an interrupt request packet has its fault bit asserted. bit 1 RBRplyFault. Asserted when the reply packet to a RBRqst packet has its fault bit asserted. 4.4 The Video Data FIFO The Video Data FIFO stores pixels to be displayed on the screen. Whenever all of the conditions listed below are true, the Display Controller will issue arbitration requests for ReadBlockRequests to fill the FIFO: 1. RBRqstEn=1 Normally, RBRqst is asserted during system initialization of the Display Controller and remains asserted thereafter. 2. FIFO not nearly Full Whenever the number of blocks in the FIFO plus the number of outstanding RBRqsts equals 120 or more, further arbitration requests for RBRqsts are temporarily inhibited until the FIFO becomes less full. Normally, RBRqst is asserted during system initialization of the Display Controller and remains asserted thereafter. 3. FramePtr < FramePtrLimit FramePtr is an internal counter that points to the next block of data to be requested. At the beginning of each frame, it is initialized to FramePtrBase. After each RBRqst, FramePtr is incremented until it goes beyond FramePtrLimit. Note that the data received from RBRqsts do not necessarily arrive in the order requested, but because data is stored in the FIFO by address, the order in which it arrives is not crucial. When FramePtr > FramePtrLimit, RBRqsts are also inhibited. Under certain conditions the Display Controller will make arbitration requests for a few more RBRqsts per frame than it can actually use. When the arbiter grants such an ``excess'' RBRqst, the Display Controller does not assert HeaderCycleOut, so no RBRqst is sent. The DynaBus cycles are not used. 4. (Critical AND (HPR < MaxHPR)) OR (~Critical AND (LPR < MaxLPR)) The arbitration system on the DynaBus permits up to 6 high priority requests and 6 low priority requests to be pending from any single device. Limits lower than these may be imposed on the Display Controller via the MaxHPR and MaxLPR registers. A high priority request for a RBRqst will not be made if HPR, the internal counter that contains the number of pending high priority requests, is equal to MaxHPR. Likewise, a low priority request will not be made if LPR, the internal counter that contains the number of pending low priority requests, is equal to MaxLPR. Critical is an internal signal that reports whether the FIFO is critically close to empty; it determines whether an arbitration request for RBRqst should be made at high or low priority. Requests are normally made at low priority; however, if the FIFO becomes critically close to empty, requests are made at high priority until that condition is corrected. 5. ORBR < MaxORBR ORBR is an internal counter that contains the number of outstanding RBRqsts, that is to say, the number of RBRqsts issued by the Display Controller minus the number of RBRply's received. If this number gets too large, further RBRqsts will be inhibited. The primary reason for providing such a feature is to prevent useless bus activity when it is clear that the memory is not responding. MaxORBR could also be used for performance tuning, but that's not the main reason it's there. 4.5 Brooktree Bt458 Interface: Digital to Analog Signal Conversion The Display Controller outputs information to the Brooktree Bt4581. The Brooktree Bt458 converts this digital information into analog voltages to be displayed on the screen. The Display Controller also loads values for the Bt458's Color and Overlay Palettes. These tables are loaded using the IOWrite commands so that the color palettes may be changed without re-initializing the system. The following table shows the connections between output wires of the Display Controller and Input wires of the Bt458. Note the following: 1. The Bt458 allows a 40-bit bus for pixels to be displayed on the screen, P0-P7(A-E), and a 10-bit bus for the cursor overlay, OL0-OL1(A-E), but that the Display Controller only uses the A-D wires of these busses. The E wires should be connected to ground. 2. Numbering conventions for the two devices are reversed: For the Display Controller, 0 is the most significant bit. For the Bt458, 0 is the least significant bit. 3. For mapping the Display Controller's one-dimensional PixOut to Brooktree's two dimensional P, Brooktree's letter dimension is the slow dimension. Thus, for example, PixOut[1] = P6A, PixOut[2] = P5A, etc. The same mapping is used for COut and OL.  1"Bt451/458 125 MHz Monolithic CMOS 256 X 12/24 Color Palette RAMDACTM," Brooktree Product Databook 1988 (SanDiego, 1987), pp. 5-19 to 5-44. Display Controller Bt458 DACData[0..7] D7-D0 nCE CE* R/W (always R = low) R/W C0, C1 C0, C1 PixOut P7-P0(A-D) Cout OL0-OL1(A-D) nHSync or nVSync nHSync nBlank BLANK* VCK LD* 4.6 The Brooktree Bt438: Pixel and Clock Control The Brooktree Bt4382 is a clock generator for the Bt458. Its CLOCK and CLOCK* connect directly with the corresponding signals of the Bt458. The Bt438's LDD clock signal is hardwired to generate a clock that runs at 1/4 the rate that pixels are displayed on the screen. The LDD clock is connected to the LD* wire of the Bt458 and the VCK clock signal of the Display Controller.  2"Bt438 250 MHz Clock Generator Chip for CMOS RAMDACsTM," Brooktree Product Databook 1988 (SanDiego, 1987), pp. 6-53 to 6-64. 5.0 Detailed Description of Each Pin 5.1 DynaBus Pins The following table describes the DynaBus pins of the Display Controller: Pin Name I/O Pin Description RequestOut O 2 bits, indicates arbiter request code. The following values are used: 00: no request (rescind bus hold) 01: unused by DDC (bus hold) 10: low priority, two-cycle request 11: high priority, two-cycle request SpareOut O 2 bits, driven to 0 when DataOut is driven, floated otherwise. Present only for compatibility SStopOut O DynaBus synchronous stop request (stops arbitration). Driven when a reply packet is received with a fault indicated. SharedOut O Always driven to 0. Present only for compatibility OwnerOut O Always driven to 0. Present only for compatibility HeaderCycleOut O Driven high when the header cycle of a packet is emitted on DataOut, driven low when data cycles are emitted on DataOut, floated when DataOut is floated. ParityOut O Parity of DataOut. Not yet implemented, always driven to 0. DataOut O 64-bit wide DynaBus data output. Floated except when Grant is assserted (with 1 cycle of pipeline delay) Grant I Packet grant from the arbiter. All grants received by DDC are for two-cycle packets. Data emission on DataOut starts on the next cycle. HiPGrant I Indication by arbiter that packet granted on the next cycle will be a high priority request. Valid only on the cycle preceding the beginning of a new Grant. LongGrant I Ignored, present only for compatibility SpareIn I 2 bits, ignored, present only for compatibility SStopIn I Synchronous stop line from DynaBus. Ignored , present only for compatibility SharedIn I Ignored, present only for compatibility OwnerIn I Ignored, present only for compatibility HeaderCycleIn I Asserted (high) on header cycles coming from the DynaBus ParityIn I Parity on DataIn. Not yet implemented. DataIn I 64-bit wide DynaBus data input. Clock I DynaBus clock input. This is one of three clocks used inside the Display Controller. The other clocks are VCK, for the circuitry that must be in step with the pixel clock, and DShiftCK, the DBus clock. CkOut O Clock feedback output. Used to adjust the clock skew based on internal clock buffering delay. TestEn I 1 bit. This signal is used to reduce the number of pins that need to be contacted for testing purposes. It relates only to the operation of the DynaBus data lines. When TestEn is de-asserted, the DataIn and DataOut pins are completely independent of each other. When TestEn is asserted, the DataOut signals are connected internally to the DataIn pins, so that when a DynaBus request is granted, the DataIn pins are driven with the DataOut signals. 5.2 DBus Pins The following table describes the DBus pins of the Display Controller. The reader is referred to the DBus specification for details. Pin Name I/O Pin Description DSelect I DBus selection. This line is asserted (high) when the Display Controller should perform a non-address operation on the DBus. DSerialOut O Data emitted serially on the DBus by the Display Controller. This line is floated except when DSelect is asserted. DSerialIn I DBus serial input data and address nDReset I System reset (active low) nDFreeze I Ignored by Display Controller DExecute I Used to load the Fault Status Register before scanning it out. DAddress I When high, address bits are presented serially on DSerialIn. The last three bits presented specify the DBus internal register selected. DShiftCK I DBus shift clock 5.3 Video Interface Refer to the Bt458 documentation for more details about these pins. Pin Name I/O Pin Description DACData[0..7] O Data path that downloads information from the Display Controller to the Bt458 Digital Analog Converter (DAC). For each IOWRqst received, the Display Controller downloads four bytes of information to the Bt458: address, red data, green data, and blue data. nCE O Chip Enable. This output is asserted once for each byte downloaded to the Bt458. C0 and C1 O Command control outputs that are decoded as follows: C0 C1 Function 0 0 load address 0 1 load pixel palette 1 0 load misc regs 1 1 load overlay color palette R/W O Read/Write control output. In the current implementation of the Display Controller, it is always low which specifies a write. To write, nCE must also be asserted. PixOut O 32 bits. PixOut (Pixels out) is the main output data path of the Display Controller. It represents four 8-bit pixels. COut O 8 bits. Cursor Out. It represents an overlay of four 2-bit pixels, for displaying the cursor and border. nHSync O 1 bit. nHSync is a microprogrammed output typically used for synchronizing the video monitor. It could be connected to the Bt458's SYNC* input to provide sync-on-green synchronization, in which case both horizontal and vertical synchronization must be provided. Alternatively, it could be connected directly to the horizontal sync input of a suitable video monitor. nVSync O 1 bit. nVSync is a microprogrammed output which can be used to provide a vertical synchronization signal to a video monitor that requires independent horizontal and vertical sync signals. nBlank O 1 bit. nBlank is a microprogrammed output typically used to blank the video output during horizontal retrace and vertical retrace intervals. It is typically connected to the Bt458's BLANK* input. T0 I 1 bit. Sampled by microcode which may do a conditional jump based upon its value. T0 may also be used to synchronize the Display Controller with an external event, such as a laser printer's start-of-scan-line signal, or to synchronize multiple Display Controller's. T1 I 1 bit. Sampled by microcode which may do a conditional jump based upon its value. T1 may be used to synchronize the Display Controller with another external event, such as a laser printer's start-of-page signal. VCK I One of the three main clocks for the Display Controller. It runs at 1/4 the rate that pixels are being displayed on the screen. 6.0 DC Characteristics Pin Name Signal Type Voltage Current Group Out 5V output L 0.5 2 mA H 4.0 0 Group TSOut 5V tri-state output L 0.5 2 mA H 4.0 0 Group In 5V input L 0.5 2 mA H 4.5 2 mA Pin Type Pin Name Group Out CkOut, Cout, C0, C1, DACData, nBlank, nCE, nHSync, nVSync, OwnerOut, PixOut, RequestOut, R/W, SharedOut, SpareOut, SStopOut Group TSOut DataOut, DSerialOut, DBusOut, HeaderCycleOut, ParityOut Group In DAddress, DataIn, DExecute, DSelect, DSerialIn, DShiftCK, Grant, HeaderCycleIn, HiPGrant, LongGrant, nDFreeze, nDReset, OwnerIn, ParityIn, SharedIn, SpareIn, SStopIn, TestEn, T0, T1, VCK 7.0. AC Characteristics A. Definitions Figure 4: Input Signal Characteristics Ts (setup time) = the mimimum time a signal must be stable before the rising edge of the clock. Th (hold time) = the mimimum time a signal must be stable after the rising edge of the clock. Figure 5: Output Signal Characteristics Tcycle = the time interval between successive rising edges of the clock Tpd (propagation delay) = the waiting time after the clock is high until an output becomes valid. Tm (maintenance of old data) = the time after rising edge of next clock cycle that old data remains valid. B. Values Qualififed Pin Name Tmin Ttypical Tmax Tcycle 20ns 25ns 27ns Ts.DynaBus In (setup.DynaBus In) 3ns Th.DynaBus In (hold.DynaBus In) 1ns Tpd.DynaBus Out (propagation delay.DynaBus Out) 5ns Tm.DynaBus Out (maintain.DynaBus Out) 2ns         8.0 Application Schematics of the Circuit 9.0 Physical Pin-Out For Each Package No Name No Name No Name No Name 4 nGrant.0 37 nOwnerOut 73 TIOvdd 110 ArbReqOut.0 5 nRequestOut.0.0 38 nSharedOut.0 74 TIOgnd 111 OtherArbIn.0.0                         Ž [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] Figure 1: Encoding of Header Cycle [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] [Nectarine figure; type 'Artwork on' to a CommandTool] [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] Ê™j –"dragondoc" style–.8 in footerMargin˜Iblock•Mark centerHeaderš œÏsœ œœœ˜K–centerRectoHeaderš œœ œœœ˜K–centerVersoHeaderš œœ œœœ˜K–e"XeroxLogotypes" family 48 pt size 48 pt leading 48 pt topLeading 40 pt topIndent 24 pt bottomLeading– centerFooteršœ˜K–centerRectoFooter–e"XeroxLogotypes" family 48 pt size 48 pt leading 48 pt topLeading 40 pt topIndent 24 pt bottomLeadingšœ˜K–e"XeroxLogotypes" family 48 pt size 48 pt leading 48 pt topLeading 40 pt topIndent 24 pt bottomLeading–centerVersoFooteršœ˜K–e"XeroxLogotypes" family 48 pt size 48 pt leading 48 pt topLeading 40 pt topIndent 24 pt bottomLeading˜Ititle˜Isubtitle˜Iauthorsšœ˜IabstractšÐst˜O˜OšÐms8Ÿ˜:O˜OšÏb œÏtKœ˜VOš œ˜ O˜I boilerplateš ÏqœÏoœ£œ£œ£Ñbox˜ŽL–3centered lineFormatting centered lastLineFormattingšœ˜Ihead˜ ˜Ibodyšœô˜ôRšœé˜éRšœž˜žI pagebreak–centered lastLineFormatting˜— šœ ˜ K˜I artworkFigure–ç174.625 mm bigger topLeading 174.625 mm bigger topIndent 1.411111 mm bigger bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff•Bounds90.0 mm xmin 0.0 mm ymin 161.925 mm xmax 171.8028 mm ymax •Artwork Interpress• Interpressì_Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  k‡¡£_ ¢ ¨ r jÄçÄÿC ¢ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈĿ⠢ ¨ÄìÊ ¤ ¨ ²2 ¢ ¨Ž´l¡£¡¡¨$ˆ¤¡š x jŸ ¤” ¢ ¥ ¨Ÿ ¤ð¸ ¢ ¥ ¨Ä8Õ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁVCK– k x jÜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁTest– k x jÌ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁControl– k x jü ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁMonitor– k x j¡Ÿ ¦à” ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁClock– k x jà ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁDisplay– k x jŸ ¤L^ ¢ ¥ ¨Ÿ ¤´¸ ¢ ¥ ¨Ä ´= ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k4<Ĥ¡š?,¢¢¡š@.¢¢¡šA0¢¢¡šB2¢¢¡šC4¢¢¡šD6¢¢¡šE8¢¢¡šF:¢¢¡šG<¢¢¡šH>¢¢¡šI@¢¢¡šJB¢¢¡šKD¢¢¡šLF¢¢¡šMH¢¢¡šNJ¢¢¡šOL¢¢¡šPN¢¢¡š x jŸ ¤Ln ¢ ¥ ¨Ÿ ¤´¸ ¢ ¥ ¨Ä ´= ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k4LĤ¡š?<¢¢¡š@>¢¢¡šA@¢¢¡šBB¢¢¡šCD¢¢¡šDF¢¢¡šEH¢¢¡šFJ¢¢¡šGL¢¢¡šHN¢¢¡šIP¢¢¡šJR¢¢¡šKT¢¢¡šLV¢¢¡šMX¢¢¡šNZ¢¢¡šO\¢¢¡šP^¢¢¡š x jœØ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “à ¤ ” •  —ÁDisplay Controller– k x jŸ¡ ¦Œ ¢ ¥ ¨Ÿ¡ ¦(  ¢ ¥ ¨ÄŒ ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Ácursor– k x jø” ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁMap– k x jðÄ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁColor – k x jŸ¡ ¦bz ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k@ˆÄ¤¡š x jè| ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁC0– k$ˆ¤¡šL䤡š$À¤¡šÐ°¤¡šà¤¡š4डšÐ ¤8¡šÐP¤€¡š,डš x jðL ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁC1– k x jÐÜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnCE– k$褡š$¤¡š$¸¤¡š x jŸ¡ ¦jª ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kH¸Ä¤¡š x jŸ¡ ¦jâ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHðĤ¡š$𤡚 x jŸ¡ ¦j² ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHÀĤ¡š x jŸ¡ ¦j" ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kH0Ĥ¡š$0¤¡š x jBº ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k@ÈĤ¡š$Ȥ¡š x jBê ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k@øĤ¡š$ø¤¡š$𤡚$ ¤¡š x jŸ ¤ ü ¢ ¥ ¨Ÿ ¤8¸ ¢ ¥ ¨Ä&Çþ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnVSync– k x j„ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnHSync– k x jŸ¡ ¦b  ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k@Ĥ¡š x jŸ ¤ < ¢ ¥ ¨Ÿ ¤,¸ ¢ ¥ ¨Ä%ƒì ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPixOut– k x jŸ¡ ¦j ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kH Ĥ¡š x jJz ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHˆÄ¤¡š x j¡Ÿ ¦¬| ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á DSerialOut– k x jŸ ¤~b ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\PĤ¡š x jŸ ¤~’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\€Ä¤¡š x jŸ ¤~ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\°Ä¤¡š x jŸ ¤~ò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\àĤ¡š x jŸ ¤~" ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\Ĥ¡š x jŸ ¤~R ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\@Ĥ¡š x j¬Ô ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnDFreeze– k$¤¡š x j¬ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnDReset– kÜ0¤4¡šè´à¤¡šäD䤡šÜÀ褡šäô¤T¡š x jŸ ¤~ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\ðĤ¡š x j¡Ÿ ¦¨h ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á ParityOut– k x j¡Ÿ ¦¨Ø ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁGrant– k x j¡Ÿ ¦¨X ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSpareOut– k x j¡Ÿ ¦¨( ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSStopOut– k x j¡Ÿ ¦¨˜ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁHeaderCycleOut– k x j¡Ÿ ¦¨È ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁOwnerOut– k x j¡Ÿ ¦¨ø ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á SharedOut– k x j¡Ÿ ¦¨H ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSpareIn– k x j¡Ÿ ¦¨ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDataIn– k x jŸ ¤`. ¢ ¥ ¨Ÿ ¤Ð¸ ¢ ¥ ¨ÄÉk$ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á64– kH Ĥ¡šSü¢¢¡šTþ¢¢¡šU¢¢¡šV¢¢¡šW¢¢¡šX¢¢¡šY¢¢¡šZ ¢¢¡š[ ¢¢¡š\¢¢¡š]¢¢¡š^¢¢¡š_¢¢¡š`¢¢¡ša¢¢¡šb¢¢¡šc¢¢¡šd¢¢¡š x jŸ ¤Š ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kh Ĥ¡š( ¤¡š x j¡Ÿ ¦¬x ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á LongGrant– k(ܤ¡š x j¡Ÿ ¦¨ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSStopIn– k(¬¤¡š x j¡Ÿ ¦¨ˆ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á RequestOut– k x j¨ˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁClock– k x j¡Ÿ ¦¨h ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁCkOut– k(l¤¡š(|¤¡š(¤¡š x jŸ ¤†~ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdlĤ¡š x jf ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdĤ¡š x jfn ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kd|Ĥ¡š x jfN ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kd\Ĥ¡š x jf~ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdŒÄ¤¡š x jŸ ¤†^ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdLĤ¡š x jŸ ¤†Ž ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kd|Ĥ¡š x jŸ ¤† ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kd Ĥ¡š x jf ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdĤ¡š x j^b ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\pĤ¡š x jŸ ¤†¦ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kd”Ĥ¡š x jŸ ¤†® ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdœÄ¤¡š(¤¡š(œ¤¡š( ¤¡š(\¤¡š(Œ¤¡š(|¤¡š(L¤¡š(\¤¡š(”¤¡š x jfN ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kd\Ĥ¡š x jŸ ¤~² ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\ Ä¤¡š x jŸ ¤†î ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdÜĤ¡š x jŸ ¤†¾ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kd¬Ä¤¡š(줡š(¼¤¡š x jfÞ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdìĤ¡š x jf® ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kd¼Ä¤¡š(<¤¡š x jŸ ¤†N ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kd<Ĥ¡š(L¤¡š x jf> ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdLĤ¡š(̤¡š x jŸ ¤†Þ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kdÌĤ¡šäô䤡šäD¤¡š x j\¼ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á<8>– k x j\ì ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁSlave– k x jŸ ¤¼4 ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨Ä „} ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁDBus– kœ¤h¡š x j¡Ÿ ¦¬¬ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDSelect– k$p¤¡š x j¬4 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á DSerialIn– k x j¬¤ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDExecute– k x j¬t ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDAddress– k x j¬D ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDShiftCk– k$P¤¡š$€¤¡š$°¤¡š$डš$@¤¡š$ ¤¡šÜ0䤡š x jŸ ¤Ð„ ¢ ¥ ¨Ÿ ¤l¸ ¢ ¥ ¨Ä˜ ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á Clock <2>– k x j¡Ÿ ¦¨è ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSharedIn– k x j¡Ÿ ¦¨¸ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁOwnerIn– k x j¡Ÿ ¦¨¨ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁHiPGrant– k x j¡Ÿ ¦¨ˆ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á HeaderCycleIn– k x j¡Ÿ ¦¬X ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁParityIn– k x j¡Ÿ ¦¤( ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDataOut– kœÔ(¤¡šœ,¤¡š x jŸ ¤`> ¢ ¥ ¨Ÿ ¤Ð¸ ¢ ¥ ¨ÄÉk$ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á64– kHĤ¡šS ¢¢¡šT¢¢¡šU¢¢¡šV¢¢¡šW¢¢¡šX¢¢¡šY¢¢¡šZ¢¢¡š[¢¢¡š\¢¢¡š] ¢¢¡š^"¢¢¡š_$¢¢¡š`&¢¢¡ša(¢¢¡šb*¢¢¡šc,¢¢¡šd.¢¢¡šÒ¢¢¡š€Ð¢¢¡šÎ¢¢¡š~Ì¢¢¡š}Ê¢¢¡š|È¢¢¡š{Æ¢¢¡šzÄ¢¢¡šy¢¢¡šxÀ¢¢¡šw¾¢¢¡šv¼¢¢¡šuº¢¢¡št¸¢¢¡šs¶¢¢¡šr´¢¢¡šq²¢¢¡šp°¢¢¡špÀ´¤¡š x jŸ ¤Ô ¢ ¥ ¨Ÿ ¤Ì¸ ¢ ¥ ¨Ä7w ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁT1– k x j¬è ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁTestEn– k x j`Ô ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k$¤h¡š x jŸ¡ ¦ì ¢ ¥ ¨Ÿ¡ ¦Ð  ¢ ¥ ¨Ä#Ý[ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁT0– k x jŸ ¤$ ¢ ¥ ¨Ÿ ¤X¸ ¢ ¥ ¨ÄntS ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDACData– k x jh, ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x jXD ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á32– k$X¤¡š x jŸ¡ ¦bÚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k@èĤ¡š x jŸ¡ ¦bJ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k@XĤ¡šè¤à¤¡šÈ¨¤h¡šˆ¤ä¤¡š x jøä ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁData– k x jŸ¡ ¦¬ ¢ ¥ ¨Ÿ¡ ¦(  ¢ ¥ ¨Ä&7( ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnBlank– kB¢¢¡š€@¢¢¡š>¢¢¡š~<¢¢¡š}:¢¢¡š|8¢¢¡š{6¢¢¡šz4¢¢¡šy2¢¢¡šx0¢¢¡šw.¢¢¡šv,¢¢¡šu*¢¢¡št(¢¢¡šs&¢¢¡šr$¢¢¡šq"¢¢¡šp ¢¢¡šp0´¤¡š‰*¢¢¡šˆ(¢¢¡š‡&¢¢¡š†$¢¢¡š…"¢¢¡š„ ¢¢¡šƒ¢¢¡š‚¢¢¡š¢¢¡š€¢¢¡š¢¢¡š~¢¢¡š}¢¢¡š|¢¢¡š{¢¢¡šz ¢¢¡šy ¢¢¡šx¢¢¡šx´¤¡šˆlडšœä¤¡š¬ä¤¡š$¸¤¡š x jÀ¬ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁR/W– k x jŸ¡ ¦bª ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k@¸Ä¤¡š x jŸ ¤Ì ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨ÄG ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁCOut– k x jŸ ¤Lž ¢ ¥ ¨Ÿ ¤´¸ ¢ ¥ ¨Ä ´= ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k4|Ĥ¡š?l¢¢¡š@n¢¢¡šAp¢¢¡šBr¢¢¡šCt¢¢¡šDv¢¢¡šEx¢¢¡šFz¢¢¡šG|¢¢¡šH~¢¢¡šI€¢¢¡šJ‚¢¢¡šK„¢¢¡šL†¢¢¡šMˆ¢¢¡šNŠ¢¢¡šOŒ¢¢¡šPŽ¢¢¡šÈT¤¡šˆT䤡šˆÄडš x jô´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á<40>– k x jôd ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á<12>– k x j$œ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á<3>– k x j ´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á<2>– k x jŸ ¤Ì´ ¢ ¥ ¨Ÿ ¤à¸ ¢ ¥ ¨Ä+œ} ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á DynaBus <147>– k k é k é k gšÏn3™3S–centered lastLineFormatting˜— ˜K˜T–à{Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄ›˜Ä©µ} ¢ ¨ x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Ä(9"ÄIy^ ¢ ¥ ¥ ¨  Š¡²“ÁBIOWRply– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄÚ}ïÄIy^ ¢ ¥ ¥ ¨  Š¡²“ÁBIOWRqst– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Ä&Ú7Äa÷ˆ ¢ ¥ ¥ ¨  Š¡²“ÁDynaBus– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Äª}ˆÄIy^ ¢ ¥ ¥ ¨  Š¡²“ÁIORRqst– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Ä½›ÄIy^ ¢ ¥ ¥ ¨  Š¡²“ÁIOWRqst– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄfÄIy^ ¢ ¥ ¥ ¨  Š¡²“ÁRBRqst– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄøÄIy^ ¢ ¥ ¥ ¨  Š¡²“ÁRBRply– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Ä’gÄIy^ ¢ ¥ ¥ ¨  Š¡²“ÁIOWRply– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Ä@sDÄIy^ ¢ ¥ ¥ ¨  Š¡²“ÁIOWRply– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄQ±,Ķ; ¢ ¥ ¥ ¨  Š¡²“ÁMonitor– k x jÄ'"¯“ °“¢·“¡¡¨Ä~GDÄ%™ÄzŸDÄtF—˜ k x jÄ'"¯“ °“¢·“¡¡¨Ä~GDÄR~™ÄzŸDÄF‰„—˜ k x jÄ'"¯“ °“¢·“¡¡¨Ä"«ÄR~™ÄŸB[ÄF‰„—˜ k x jÄ'"¯“ °“¢·“¡¡¨Ä"«Ä%™ÄŸB[ÄtF—˜ k¡¡¨Ä¿ÈqÄ¥¨g™Ä9—"ŽÄyRÄ¿ÈqŽÄ¥¨g¡¡¡¡™ x j k¡¡¨Äó£‡Ä†1„™Ä´YgŽÄr¯EÄ󣇎Ć1„¡¡¡¡™ x j k¡¡¨Äó£‡ÄýçS™Ä´YgŽÄâž—Ä󣇎ÄýçS¡¡¡¡™ x j k¡¡¨Ä’ÒOÄ¥¨g™Ä?"ŽÄyRÄ’ÒOŽÄ¥¨g¡¡¡¡™ x j k¡¡¨ÄtÄÊüO™ÄmWhŽÄW?"ÄtŽÄÊüO¡¡¡¡™ x j k¡¡¨ÄnÅIÄö[™Ä¶“Ä~ O—ÄW¤9Äö[—Ķ“ÄrI—ÄnÅIÄö[—¡¡ ¡™ x j k¡¡¨ÄHÄñ™Ä‰î[ŽÄ1¢ÄHŽÄñ¡¡¡¡™ x j k¡¡¨Ä9—"ÄJŸ)™ÄiAŽÄHѵÄ9—"ŽÄJŸ)¡¡¡¡™ x j k¡¡¨Ä9—"Ä犙ÄŽÄ€UDÄ9—"ŽÄ犡¡¡¡™ x j k¡¡¨Ä_™Ä‡ŽÄW#2ÄŽ_¡¡¡¡™ x j k¡¡¨ÄÄ犙ĸ3ˆŽÄW#2ÄŽÄ犡¡¡¡™ x j k¡¡¨Ä)[:Ä£±^™ÄslAÄy»G—Ä)[:Äï —ÄR2/Äy»G—Ä)[:Ä£±^—¡¡ ¡™ x j k¡¡¨ÄÎouÄW#2™ÄðŽÄtsDÄÎouŽÄW#2¡¡¡¡™ x j k¡¡¨Än'DÄJŸ)™ÄiAŽÄ1¢Än'DŽÄJŸ)¡¡¡¡™ x j k¡¡¨Än'DÄñ™ÄlSDŽÄ1¢Än'DŽÄñ¡¡¡¡™ x j k¡¡¨Ä‡Äá£n™Ä%{"ŽÄ;-ćŽÄá£n¡¡¡¡™ x j k¡¡¨Ä‡Ä8†%™ÄlcVŽÄ;-ćŽÄ8†%¡¡¡¡™ x j k¡¡¨Ä‡Är0™™Ä%{"ŽÄ8†%ćŽÄr0™¡¡¡¡™ x j k¡¡¨Ä%{"Är0™™Ä—ÄÈ'’ÄUý+—Ä=-Ä ’—¡¡ ¡™ x j k¡¡¨ÄÄD "™Ä¸3ˆŽÄ1HÄŽÄD "¡¡¡¡™ x j k¡¡¨Ä²YÄ-™Ä¬Äx`=—ÄžõcÄ-—ĬÄ[|/—IJYÄ-—¡¡ ¡™ x j k¡¡¨Ä§Ä!W™ÄÙˆŽÄ'¡—ħŽÄ!W¡¡¡¡™ x j k¡¡¨Ä²YÄ®ã[™Ä¬Ä˜ãO—ÄžõcÄ®ã[—ĬċPI—IJYÄ®ã[—¡¡ ¡™ x j k¡¡¨Ä§ÄZp/™ÄÙˆŽÄAO"ħŽÄZp/¡¡¡¡™ x j k¡¡¨Ä²YÄ+v™Ä¬Ät=—ÄžõcÄ+v—ĬÄX./—IJYÄ+v—¡¡ ¡™ x j k¡¡¨Ä§Ä犙ÄÙˆŽÄ€UDħŽÄ犡¡¡¡™ x j k¡¡¨Ä²YĨ}[™Ä¬Ä“UO—ÄžõcĨ}[—ĬĆ.I—IJYĨ}[—¡¡ ¡™ x j k¡¡¨Ä§Äƒ™ÄÙˆŽÄåo|ħŽÄƒ¡¡¡¡™ x j k¡¡¨ÄÜöŸÄ*M’™Äì·¬ÄY+—ÄÜöŸÄí>—Ä|áYÄY+—ÄÜöŸÄ*M’—¡¡ ¡™ x j k¡¡¨Ä^DÄ¡ŸN™Ä¼ÅˆŽÄ"¶Ä^DŽÄ¡ŸN¡¡¡¡™ x j k¡¡¨ÄÜöŸÄ I™Äì·¬Äîi—ÄÜöŸÄLå,—Ä|áYÄîi—ÄÜöŸÄ I—¡¡ ¡™ x j k¡¡¨Ä^DÄO¢-™Ä¼ÅˆŽÄ¡Ã]Ä^DŽÄO¢-¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Ä)#"Ä"A ¢ ¥ ¥ ¨  Š¡²“ÁOverlay– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄOýDÄŸ¶O ¢ ¥ ¥ ¨  Š¡²“ÁCursor– k¡¡¨Ä^DÄ(§™Ä‡ŽÄêbÄ^DŽÄ(§¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄkûYÄ| ¢ ¥ ¥ ¨  Š¡²“Á Video Display– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄOýDÄÍ Y ¢ ¥ ¥ ¨  Š¡²“Á Microcode for– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄŸA‡Äm–Q ¢ ¥ ¥ ¨  Š¡²“Á Video Data– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Ä)#"Ä ¢ ¥ ¥ ¨  Š¡²“ÁDecoder– k¡¡¨Ä‡Ä¼Ñ´™Ä%{"ŽÄc§bćŽÄ¼Ñ´¡¡¡¡™ x j k¡¡¨Ä‡Ä™Ä%{"ŽÄ ÛćŽÄ¡¡¡¡™ x j k¡¡¨Ä%{"ęėÄÜûÄVÿ+—Ä{¶Ä#u’—¡¡ ¡™ x j k¡¡¨Äu‡Ä´:Y™Äñ¿‘ŽÄ‡¥DÄu‡ŽÄ´:Y¡¡¡¡™ x j k¡¡¨ÄÄOï"™Ä`W[ŽÄ¶'¢ÄŽÄOï"¡¡¡¡™ x j k¡¡¨ÄJDÄnµ™Äk›eŽÄ)/ÄJDŽÄnµ¡¡¡¡™ x j k¡¡¨Ä%{"Änµ™Ä`W[ŽÄ)/Ä%{"ŽÄnµ¡¡¡¡™ x j k¡¡¨ÄuæsÄÑY™Ä*ËÄ]¸G—Ä;–9ÄÑY—Ä*ËÄ~›^—ÄuæsÄÑY—¡¡ ¡™ x j k¡¡¨Ä)$'ÄZ¹D™ÄE­DŽÄÎF›Ä)$'ŽÄZ¹D¡¡¡¡™ x j k¡¡¨ÄÚ}ïÄsóW™Ä@«GŽÄ ÛÄÚ}ïŽÄsóW¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Ä)#"Ī?e ¢ ¥ ¥ ¨  Š¡²“Á Interface– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Ä˜öuÄÅÕŠ ¢ ¥ ¥ ¨  Š¡²“ÁPixOut– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄY!DÄw1D ¢ ¥ ¥ ¨  Š¡²“ÁDACData– k¡¡¨Ä9—"ÄZp/™ÄŽÄAO"Ä9—"ŽÄZp/¡¡¡¡™ x j k¡¡¨ÄÄ#+™Ä‡ŽÄÔ»gÄŽÄ#+¡¡¡¡™ x j k¡¡¨ÄÄ#+™Ä¸3ˆŽÄAO"ÄŽÄ#+¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄqÕW² ¢ ¥ ¥ ¨  Š¡²“ÁCOut– k¡¡¨ÄÎouÄ?Dz™ÄðŽÄr¯EÄÎouŽÄ?Dz¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £Äðø£ÄJû/ ¢ ¥ ¥ ¨  Š¡²“ÁVCK– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨ÄĤf÷ ¤ú £ÄÎouÄ]w> ¢ ¥ ¥ ¨  Š¡²“Á & Clock Ctrl– k¡¡¨ÄÿÄ g"™ÄY}}ŽÄ’?šÄÿŽÄ g"¡¡¡¡™ x j k¡¡¨ÄtÄ g"™ÄY}}ŽÄ’?šÄtŽÄ g"¡¡¡¡™ x j k¡¡¨ÄtÄÊüO™Ä {ŽÄ’?šÄtŽÄÊüO¡¡¡¡™ x j k¡¡¨ÄY}}ÄW?"™ÄmWhŽÄ’?šÄY}}ŽÄW?"¡¡¡¡™ x j k¡¡¨Ä9—"Äñ™ÄtŽÄ1¢Ä9—"ŽÄñ¡¡¡¡™ x j k¡¡¨ÄŸZÄ6G’™Ä—]VÄ<Ø——ÄŸZÄ\Ÿ,—Ä‚rIÄ<Ø——ÄŸZÄ6G’—¡¡ ¡™ x j k¡¡¨Ä/ŽÄ# Ä/ŽÄn;5ÄÄF] —Ä^8Ä``)—Äz[Iĉq;—ĉBÄãB—¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä‰BÄãB™ÄhÁ>ÄF] —Ä^8Ä``)—Äz[Iĉq;—ĉBÄãB—¡¸ kˆˆˆ£¡ ” ç­“Ä^8Ä``)™Ä ‘ŸÄ%Y—ÄÍÄnŸ§—ÄfÁ8Ä…ë9—Ä^8Ä``)—¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä^8Ä``)™Ä ‘ŸÄ%Y—ÄÍÄnŸ§—ÄfÁ8Ä…ë9—Ä^8Ä``)—¡¸ kÄ¡¨ÄÐÄ‘oB™Äæñ|Ä“C—Äfm8ÄœûC—Ä^c8Äš·B—ÄÐÄ‘oB—¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨ÄÐÄ‘oB™Äæñ|Ä“C—Äfm8ÄœûC—Ä^c8Äš·B—ÄÐÄ‘oB—¡¸ kˆˆˆ£¡ ” ç­“ĉBÄãB™Ärí>Ä´ÁS—ÄÍÄnŸ§—Ä ‘ŸÄ%Y—ĉBÄãB—¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä‰BÄãB™Ärí>Ä´ÁS—ÄÍÄnŸ§—Ä ‘ŸÄ%Y—ĉBÄãB—¡¸ kˆˆˆ£¡ ” ç­“ÄŒÿRÄ€™;™Äü¡Ä²ÏS—ÄzŸDÄI5"—Ä XĶùT—ÄŒÿRÄ€™;—¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨ÄŒÿRÄ€™;™Äü¡Ä²ÏS—ÄzŸDÄI5"—Ä XĶùT—ÄŒÿRÄ€™;—¡¸ kˆˆˆ£¡ ” ç­“Äü¡Ä²ÏS™ÄoëAĬ0O—Ä ~Ä„÷=—Äü¡Ä²ÏS—¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Äü¡Ä²ÏS™ÄoëAĬ0O—Ä ~Ä„÷=—Äü¡Ä²ÏS—¡¸ kÄ¡¨ÄO·,Äy[8™Äk';ÄhÀ§—ÄCj%ŽÄM*ÄD†•—Ä XĶùT—ÄO·,Äy[8—¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨ÄO·,Äy[8™Äk';ÄhÀ§—ÄCj%ŽÄM*ÄD†•—Ä XĶùT—ÄO·,Äy[8—¡¸ kÄ¡¨Äº¢ÿÄ!™ÄoM;ÄGM —ÄùÓ†Ä×b]—ÄøA†Äÿn—ÄXç»Ä¿šS—ĺ¢ÿÄ!—¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Äº¢ÿÄ!™ÄoM;ÄGM —ÄùÓ†Ä×b]—ÄøA†Äÿn—ÄXç»Ä¿šS—ĺ¢ÿÄ!—¡¸ kˆˆˆ£¡ ” ç­“Äi{>ÄLÇ!™Äœ±\Ä58ÄP#/ÄÙ[_Ä‘UÄ|Å7¡’Ät+DÄÈ4YÄuúEÄq¿3Ä|ìIÄì˜k¡’ĆUIÄF½ —ÄÀÙiÄvF5ÄØOvÄp¡2ļZgÄó9k¡’Äh9Äyl5Ä/SÄ­#KÄá!|Ä„•9¡’Äi{>ÄLÇ!—¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Äi{>ÄLÇ!™Äœ±\Ä58ÄP#/ÄÙ[_Ä‘UÄ|Å7¡’Ät+DÄÈ4YÄuúEÄq¿3Ä|ìIÄì˜k¡’ĆUIÄF½ —ÄÀÙiÄvF5ÄØOvÄp¡2ļZgÄó9k¡’Äh9Äyl5Ä/SÄ­#KÄá!|Ä„•9¡’Äi{>ÄLÇ!—¡¸ k¡¡¨Ä뫺Äto^™Ä‡ŽÄ¼Ñ´Ä뫺ŽÄto^¡¡ ¡™ x j k¡¡¨ ¡ ¡™ x j k¡¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä^DÄnµ™Ä‡Ž˜ k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £Ä¡£Ä‡eP ¢ ¥ ¥ ¨  Š¡²“ÁPixel– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £Äœ§WÄ0ì ¢ ¥ ¥ ¨  Š¡²“ÁClock– k¡¡¨ ¡ ¡™ x j k¡¡¨ÄNW/ħI\™Äd =ÄNÄ+—ÄF ÆħI\—Äd =ă’—ÄNW/ħI\—¡¡ ¡™ x j k¡¡¨Ä8³"Ä=å"™ÄjnAŽÄvAÄ8³"ŽÄ=å"¡¡ ¡™ x j k¡¡¨Ä¯3lÄ]^™ÄGq=ÄDÂG—į3lÄg#—Ä8O/ÄDÂG—į3lÄ]^—¡¡ ¡™ x j k¡¡¨Ä(K"Ä;!<™Ä»åŸŽÄºÄ(K"ŽÄ;!<¡¡ ¡™ x j k¡¡¨Ä‘|ŸÄa´e™ÄŸ±¬Ä`qa—Ä‘|ŸÄL M—ÄP=YÄ`qa—Ä‘|ŸÄa´e—¡¡ ¡™ x j k¡¡¨ÄŒÄ Ó"™ÄS‡[ŽÄu}vÄŒŽÄ Ó"¡¡ ¡™ x j kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä@«GÄsóW™Ä`W[ÄU—˜ k¡¡¨ÄaFYÄjœK™ÄK±GĹó4—ÄfïÄjœK—ÄK±GÄfÉI—ÄaFYÄjœK—¡¡ ¡™ x j k¡¡¨Ä•ìÄ'™Ä—ŽÄKz5Ä•ìŽÄ'¡¡ ¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £ÄU÷WÄ°« ¢ ¥ ¥ ¨  Š¡²“Á4.1– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £ÄmWÄÍXÇ ¢ ¥ ¥ ¨  Š¡²“Á4.1– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £ÄmWÄJ18 ¢ ¥ ¥ ¨  Š¡²“Á4.4– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £ÄF ¢ ¥ ¥ ¨  Š¡²“Á4.5– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £ÄÌ £ÄÊHg ¢ ¥ ¥ ¨  Š¡²“Á4.2.3– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £àÄ— ¢ ¥ ¥ ¨  Š¡²“Á4.2.4– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £yÄ! ¢ ¥ ¥ ¨  Š¡²“Á4.6– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £Ä±Ä¡ ¢ ¥ ¥ ¨  Š¡²“Á4.5– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £Äéú ¢ ¥ ¥ ¨  Š¡²“ÁFull– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¡•¡ —¡¡¨ÄĤf÷ ¤ú £Ä§Ùªú ¢ ¥ ¥ ¨  Š¡²“ÁCritical– k k k g– Interpress–90.0 mm xmin 0.0 mm ymin 110.941 mm xmax 170.0545 mm ymax –é172.8767 mm bigger topLeading 172.8767 mm bigger topIndent 1.411111 mm bigger bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff•GGFile¶¼Gargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/displaycontrollerBlockDiagram.gargoyle at May 16, 1988 10:46:17 am PDT Produced by version 8803.24 Scripts: Slope: [F 150.0] [F 135.0] [F 120.0] [T 90.0] [F 60.0] [F 45.0] [F 30.0] [T 0.0] Angle: [F 90.0] [F 60.0] [F 45.0] [F 30.0] [F 0.0] [F -30.0] [F -45.0] [F -60.0] [F -90.0] Radius: [F 5.555556e-2 0.06] [F 0.1111111 0.11] [F 0.125 0.13] [F 0.25 0.25] [F 0.3333333 0.33] [F 0.5 0.5] [F 0.6666667 0.67] [F 0.75 0.75] [F 1.0 1] [F 2.0 2] [F 4.0 4] LineDistance: [F 0.0 0] [F 5.555556e-2 0.06] [F 0.1111111 0.11] [F 0.5 0.5] [F 1.0 1] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: F GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: Xerox/PressFonts/Helvetica-mrr [r1: 0.0 s: [6.882355 6.882355] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: T [307.5,424.0] PaletteForFillColor: F PaletteForStrokeColor: F Entities: [181]: Text T "BIOWRply" Xerox/PressFonts/Helvetica [0.0 -6.882355 302.8529 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "BIOWRqst" Xerox/PressFonts/Helvetica [0.0 -6.882355 234.0293 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DynaBus" Xerox/PressFonts/Helvetica [0.0 -6.882355 180.8363 6.882355 0.0 184.4044][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "IORRqst" Xerox/PressFonts/Helvetica [0.0 -6.882355 320.9191 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "IOWRqst" Xerox/PressFonts/Helvetica [0.0 -6.882355 312.3161 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "RBRqst" Xerox/PressFonts/Helvetica [0.0 -6.882355 216.8235 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "RBRply" Xerox/PressFonts/Helvetica [0.0 -6.882355 285.647 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "IOWRply" Xerox/PressFonts/Helvetica [0.0 -6.882355 295.1103 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "IOWRply" Xerox/PressFonts/Helvetica [0.0 -6.882355 242.6323 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Monitor" Xerox/PressFonts/Helvetica [0.0 -6.882355 475.2956 6.882355 0.0 562.8135][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 1.147059 c: T [1 1.0] d: T F [475.397,412.4781] (Line ) [461.6323,426.2428] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 1.147059 c: T [1 1.0] d: T F [475.397,398.1178] (Line ) [461.6323,384.3531] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 1.147059 c: T [1 1.0] d: T F [434.2573,398.1178] (Line ) [448.022,384.3531] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 1.147059 c: T [1 1.0] d: T F [434.2573,412.4781] (Line ) [448.022,426.2428] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [434.4779,411.7281] (Line ) [433.6177,411.7281] (Line ) [433.6177,397.9634] (Line ) [434.4779,397.9634] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [462.0074,426.3531] (Line ) [448.2427,426.3531] (Line ) [448.2427,425.4928] (Line ) [462.0074,425.4928] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [462.0074,385.059] (Line ) [448.2427,385.059] (Line ) [448.2427,384.1987] (Line ) [462.0074,384.1987] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [475.7721,411.7281] (Line ) [474.9117,411.7281] (Line ) [474.9117,397.9634] (Line ) [475.7721,397.9634] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [368.2353,657.7722] (Line ) [182.4117,657.7722] (Line ) [182.4117,656.912] (Line ) [368.2353,656.912] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [388.4521,404.9891] (Line ) [395.3345,408.4303] (Line ) [393.6139,404.9891] (Line ) [395.3345,401.5479] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.7647,405.706] (Line ) [388.022,405.706] (Line ) [388.022,404.8457] (Line ) [395.7647,404.8457] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [433.6177,465.9267] (Line ) [413.8309,465.9267] (Line ) [413.8309,465.0663] (Line ) [433.6177,465.0663] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [433.6177,483.9928] (Line ) [347.5882,483.9928] (Line ) [347.5882,483.1325] (Line ) [433.6177,483.1325] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [347.5882,447.0001] (Line ) [323.5,447.0001] (Line ) [323.5,446.1399] (Line ) [347.5882,446.1399] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [347.5882,483.9928] (Line ) [346.7279,483.9928] (Line ) [346.7279,446.1399] (Line ) [347.5882,446.1399] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.1433,445.7979] (Line ) [454.5845,438.9156] (Line ) [451.1433,440.6362] (Line ) [447.7022,438.9156] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.6838,446.1399] (Line ) [450.8235,446.1399] (Line ) [450.8235,438.3972] (Line ) [451.6838,438.3972] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [414.6912,465.9267] (Line ) [413.8309,465.9267] (Line ) [413.8309,404.8457] (Line ) [414.6912,404.8457] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [414.6912,405.706] (Line ) [407.8088,405.706] (Line ) [407.8088,404.8457] (Line ) [414.6912,404.8457] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,336.8825] (Line ) [282.2058,336.8825] (Line ) [282.2058,336.0222] (Line ) [323.5,336.0222] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,391.081] (Line ) [322.6396,391.081] (Line ) [322.6396,336.0222] (Line ) [323.5,336.0222] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,391.9413] (Line ) [282.2058,391.9413] (Line ) [282.2058,391.081] (Line ) [323.5,391.081] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,391.9413] (Line ) [281.3455,391.9413] (Line ) [281.3455,336.0222] (Line ) [282.2058,336.0222] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [304.5735,178.5883] (Line ) [302.8529,178.5883] (Line ) [302.8529,177.728] (Line ) [304.5735,177.728] (Line ) fwd: T Text T "Interrupt Condition" Xerox/PressFonts/Helvetica [0.0 -6.882355 217.6837 6.882355 0.0 428.934][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,601.8531] (Line ) [271.8823,601.8531] (Line ) [271.8823,600.9928] (Line ) [282.2058,600.9928] (Line ) fwd: T Text T "Analog Conv." Xerox/PressFonts/Helvetica [0.0 -6.882355 455.4265 6.882355 0.0 466.0663][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [433.6177,515.8237] (Line ) [432.7573,515.8237] (Line ) [432.7573,459.9045] (Line ) [433.6177,459.9045] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [474.9117,514.9634] (Line ) [474.0514,514.9634] (Line ) [474.0514,459.9045] (Line ) [474.9117,459.9045] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [474.9117,460.7649] (Line ) [433.6177,460.7649] (Line ) [433.6177,459.9045] (Line ) [474.9117,459.9045] (Line ) fwd: T Text T "ColorMap" Xerox/PressFonts/Helvetica [0.0 -6.882355 439.9412 6.882355 0.0 471.2281][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 1.147059 c: T [1 1.0] d: T F [474.7794,515.228] (Line ) [454.1323,532.434] fwd: T Text T "& Digital to" Xerox/PressFonts/Helvetica [0.0 -6.882355 447.6838 6.882355 0.0 468.6472][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 1.147059 c: T [1 1.0] d: T F [433.375,515.228] (Line ) [454.022,532.434] fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [271.761,429.2979] (Line ) [268.3198,422.4156] (Line ) [271.761,424.1362] (Line ) [275.2022,422.4156] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [271.8823,429.7943] (Line ) [271.022,429.7943] (Line ) [271.022,422.0516] (Line ) [271.8823,422.0516] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [281.2022,601.489] (Line ) [274.3198,604.9303] (Line ) [276.0404,601.489] (Line ) [274.3198,598.0479] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [281.3455,601.8531] (Line ) [273.6029,601.8531] (Line ) [273.6029,600.9928] (Line ) [281.3455,600.9928] (Line ) fwd: T Text T "nBlank" Xerox/PressFonts/Helvetica [0.0 -6.882355 346.5 6.882355 0.0 612.922][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "nVSync" Xerox/PressFonts/Helvetica [0.0 -6.882355 339.1967 6.882355 0.0 613.0292][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [347.5111,505.0479] (Line ) [344.0698,511.9303] (Line ) [347.5111,510.2097] (Line ) [350.9521,511.9303] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [347.5882,512.3825] (Line ) [346.7279,512.3825] (Line ) [346.7279,504.6399] (Line ) [347.5882,504.6399] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.2022,501.7391] (Line ) [409.3198,505.1803] (Line ) [411.0404,501.7391] (Line ) [409.3198,498.2979] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.4117,502.059] (Line ) [408.6691,502.059] (Line ) [408.6691,501.1987] (Line ) [416.4117,501.1987] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.2022,491.9891] (Line ) [409.3198,495.4303] (Line ) [411.0404,491.9891] (Line ) [409.3198,488.5479] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.4117,492.5957] (Line ) [408.6691,492.5957] (Line ) [408.6691,491.7355] (Line ) [416.4117,491.7355] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.2022,483.7391] (Line ) [409.3198,487.1803] (Line ) [411.0404,483.7391] (Line ) [409.3198,480.2979] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.4117,483.9928] (Line ) [408.6691,483.9928] (Line ) [408.6691,483.1325] (Line ) [416.4117,483.1325] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.2022,473.9891] (Line ) [409.3198,477.4303] (Line ) [411.0404,473.9891] (Line ) [409.3198,470.5479] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.4117,474.5295] (Line ) [408.6691,474.5295] (Line ) [408.6691,473.6693] (Line ) [416.4117,473.6693] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [355.761,523.0479] (Line ) [352.3198,529.9303] (Line ) [355.761,528.2097] (Line ) [359.2022,529.9303] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [356.1912,530.4487] (Line ) [355.3309,530.4487] (Line ) [355.3309,522.7061] (Line ) [356.1912,522.7061] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [355.761,452.5479] (Line ) [352.3198,445.6655] (Line ) [355.761,447.3862] (Line ) [359.2022,445.6655] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [356.1912,453.0222] (Line ) [355.3309,453.0222] (Line ) [355.3309,445.2796] (Line ) [356.1912,445.2796] (Line ) fwd: T Text T "Overlay" Xerox/PressFonts/Helvetica [0.0 -6.882355 309.7353 6.882355 0.0 515.8237][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Cursor" Xerox/PressFonts/Helvetica [0.0 -6.882355 301.1323 6.882355 0.0 517.5443][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [356.1912,612.1767] (Line ) [323.5,612.1767] (Line ) [323.5,611.3163] (Line ) [356.1912,611.3163] (Line ) fwd: T Text T "Video Display" Xerox/PressFonts/Helvetica [0.0 -6.882355 310.5955 6.882355 0.0 590.6693][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Microcode for" Xerox/PressFonts/Helvetica [0.0 -6.882355 301.1323 6.882355 0.0 589.809][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Video Data" Xerox/PressFonts/Helvetica [0.0 -6.882355 301.9926 6.882355 0.0 346.3457][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Decoder" Xerox/PressFonts/Helvetica [0.0 -6.882355 309.7353 6.882355 0.0 271.5001][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,261.1766] (Line ) [282.2058,261.1766] (Line ) [282.2058,260.3163] (Line ) [323.5,260.3163] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,316.2354] (Line ) [282.2058,316.2354] (Line ) [282.2058,315.3751] (Line ) [323.5,315.3751] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,316.2354] (Line ) [281.3455,316.2354] (Line ) [281.3455,260.3163] (Line ) [282.2058,260.3163] (Line ) fwd: T Text T "Command " Xerox/PressFonts/Helvetica [0.0 -6.882355 301.9926 6.882355 0.0 268.9192][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,288.706] (Line ) [271.022,288.706] (Line ) [271.022,287.8457] (Line ) [282.2058,287.8457] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.8896,260.3163] (Line ) [234.0293,260.3163] (Line ) [234.0293,177.728] (Line ) [234.8896,177.728] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.7132,260.3163] (Line ) [302.8529,260.3163] (Line ) [302.8529,177.728] (Line ) [303.7132,177.728] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,584.6473] (Line ) [282.2058,584.6473] (Line ) [282.2058,583.787] (Line ) [323.5,583.787] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,638.8458] (Line ) [322.6396,638.8458] (Line ) [322.6396,583.787] (Line ) [323.5,583.787] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,639.706] (Line ) [282.2058,639.706] (Line ) [282.2058,638.8458] (Line ) [323.5,638.8458] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,639.706] (Line ) [281.3455,639.706] (Line ) [281.3455,583.787] (Line ) [282.2058,583.787] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,447.0001] (Line ) [271.022,447.0001] (Line ) [271.022,446.1399] (Line ) [282.2058,446.1399] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,529.5884] (Line ) [271.022,529.5884] (Line ) [271.022,528.7281] (Line ) [282.2058,528.7281] (Line ) fwd: T Text T "Command " Xerox/PressFonts/Helvetica [0.0 -6.882355 234.8896 6.882355 0.0 271.5001][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [256.397,261.1766] (Line ) [215.1029,261.1766] (Line ) [215.1029,260.3163] (Line ) [256.397,260.3163] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [256.397,315.3751] (Line ) [255.5367,315.3751] (Line ) [255.5367,260.3163] (Line ) [256.397,260.3163] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [256.397,316.2354] (Line ) [215.1029,316.2354] (Line ) [215.1029,315.3751] (Line ) [256.397,315.3751] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [215.1029,316.2354] (Line ) [214.2426,316.2354] (Line ) [214.2426,260.3163] (Line ) [215.1029,260.3163] (Line ) fwd: T Text T "Generator" Xerox/PressFonts/Helvetica [0.0 -6.882355 242.454 6.882355 0.0 271.5094][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "FIFO" Xerox/PressFonts/Helvetica [0.0 -6.882355 309.7353 6.882355 0.0 354.0884][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Color Map" Xerox/PressFonts/Helvetica [0.0 -6.882355 301.1323 6.882355 0.0 429.7943][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Brooktree Bt458" Xerox/PressFonts/Helvetica [0.0 -6.882355 464.454 6.882355 0.0 463.0802][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,419.4707] (Line ) [282.2058,419.4707] (Line ) [282.2058,418.6104] (Line ) [323.5,418.6104] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,473.6693] (Line ) [322.6396,473.6693] (Line ) [322.6396,418.6104] (Line ) [323.5,418.6104] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,474.5295] (Line ) [282.2058,474.5295] (Line ) [282.2058,473.6693] (Line ) [323.5,473.6693] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,474.5295] (Line ) [281.3455,474.5295] (Line ) [281.3455,418.6104] (Line ) [282.2058,418.6104] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [356.1912,473.6693] (Line ) [355.3309,473.6693] (Line ) [355.3309,363.5516] (Line ) [356.1912,363.5516] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [356.1912,611.3163] (Line ) [355.3309,611.3163] (Line ) [355.3309,501.1987] (Line ) [356.1912,501.1987] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [433.6177,474.5295] (Line ) [356.1912,474.5295] (Line ) [356.1912,473.6693] (Line ) [433.6177,473.6693] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [433.6177,502.059] (Line ) [356.1912,502.059] (Line ) [356.1912,501.1987] (Line ) [433.6177,501.1987] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [347.5111,470.5479] (Line ) [344.0698,463.6655] (Line ) [347.5111,465.3862] (Line ) [350.9521,463.6655] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [347.5882,471.0884] (Line ) [346.7279,471.0884] (Line ) [346.7279,463.3457] (Line ) [347.5882,463.3457] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,501.1987] (Line ) [282.2058,501.1987] (Line ) [282.2058,500.3384] (Line ) [323.5,500.3384] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,555.3972] (Line ) [322.6396,555.3972] (Line ) [322.6396,500.3384] (Line ) [323.5,500.3384] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [323.5,556.2576] (Line ) [282.2058,556.2576] (Line ) [282.2058,555.3972] (Line ) [323.5,555.3972] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,556.2576] (Line ) [281.3455,556.2576] (Line ) [281.3455,500.3384] (Line ) [282.2058,500.3384] (Line ) fwd: T Text T "nHSync" Xerox/PressFonts/Helvetica [0.0 -6.882355 331.454 6.882355 0.0 613.0292][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [281.2022,529.489] (Line ) [274.3198,532.9303] (Line ) [276.0404,529.489] (Line ) [274.3198,526.0479] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [281.3455,529.5884] (Line ) [273.6029,529.5884] (Line ) [273.6029,528.7281] (Line ) [281.3455,528.7281] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [281.2022,446.2391] (Line ) [274.3198,449.6803] (Line ) [276.0404,446.2391] (Line ) [274.3198,442.7979] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [281.3455,447.0001] (Line ) [273.6029,447.0001] (Line ) [273.6029,446.1399] (Line ) [281.3455,446.1399] (Line ) fwd: T Text T "Pixel" Xerox/PressFonts/Helvetica [0.0 -6.882355 443.9412 6.882355 0.0 397.1031][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Brooktree" Xerox/PressFonts/Helvetica [0.0 -6.882355 459.0716 6.882355 0.0 390.3677][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Bt438" Xerox/PressFonts/Helvetica [0.0 -6.882355 465.954 6.882355 0.0 397.2501][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,619.059] (Line ) [235.7499,619.059] (Line ) [235.7499,618.1987] (Line ) [282.2058,618.1987] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,619.059] (Line ) [221.1249,619.059] (Line ) [221.1249,618.1987] (Line ) [282.2058,618.1987] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [221.9852,618.1987] (Line ) [221.1249,618.1987] (Line ) [221.1249,315.3751] (Line ) [221.9852,315.3751] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [221.511,511.0479] (Line ) [218.0698,517.9303] (Line ) [221.511,516.2097] (Line ) [224.9522,517.9303] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [221.9852,518.4045] (Line ) [221.1249,518.4045] (Line ) [221.1249,510.6619] (Line ) [221.9852,510.6619] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [271.8823,601.8531] (Line ) [271.022,601.8531] (Line ) [271.022,287.8457] (Line ) [271.8823,287.8457] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [280.4853,364.4119] (Line ) [272.7426,364.4119] (Line ) [272.7426,363.5516] (Line ) [280.4853,363.5516] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2058,364.4119] (Line ) [271.022,364.4119] (Line ) [271.022,363.5516] (Line ) [282.2058,363.5516] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [262.4522,341.3567] (Line ) [269.3345,337.9156] (Line ) [267.614,341.3567] (Line ) [269.3345,344.7979] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [270.0514,341.5442] (Line ) [262.3088,341.5442] (Line ) [262.3088,340.6839] (Line ) [270.0514,340.6839] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.0293,341.1839] (Line ) [233.1691,341.1839] (Line ) [233.1691,315.3751] (Line ) [234.0293,315.3751] (Line ) fwd: T Text T "Interface" Xerox/PressFonts/Helvetica [0.0 -6.882355 309.7353 6.882355 0.0 431.5149][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "PixOut" Xerox/PressFonts/Helvetica [0.0 -6.882355 334.6838 6.882355 0.0 366.9928][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DACData" Xerox/PressFonts/Helvetica [0.0 -6.882355 335.5441 6.882355 0.0 448.7207][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [433.6177,492.5957] (Line ) [347.5882,492.5957] (Line ) [347.5882,491.7355] (Line ) [433.6177,491.7355] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [347.5882,529.5884] (Line ) [323.5,529.5884] (Line ) [323.5,528.7281] (Line ) [347.5882,528.7281] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [347.5882,529.5884] (Line ) [346.7279,529.5884] (Line ) [346.7279,491.7355] (Line ) [347.5882,491.7355] (Line ) fwd: T Text T "COut" Xerox/PressFonts/Helvetica [0.0 -6.882355 334.954 6.882355 0.0 530.0][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.6838,459.9045] (Line ) [450.8235,459.9045] (Line ) [450.8235,425.4928] (Line ) [451.6838,425.4928] (Line ) fwd: T Text T "VCK" Xerox/PressFonts/Helvetica [0.0 -6.882355 378.454 6.882355 0.0 408.4043][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "& Clock Ctrl" Xerox/PressFonts/Helvetica [0.0 -6.882355 451.6838 6.882355 0.0 385.9193][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [361.3529,243.9707] (Line ) [183.272,243.9707] (Line ) [183.272,243.1104] (Line ) [361.3529,243.1104] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [368.2353,243.9707] (Line ) [183.272,243.9707] (Line ) [183.272,243.1104] (Line ) [368.2353,243.1104] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [368.2353,657.7722] (Line ) [367.375,657.7722] (Line ) [367.375,243.1104] (Line ) [368.2353,243.1104] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [183.272,656.912] (Line ) [182.4117,656.912] (Line ) [182.4117,243.1104] (Line ) [183.272,243.1104] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [433.6177,405.706] (Line ) [368.2353,405.706] (Line ) [368.2353,404.8457] (Line ) [433.6177,404.8457] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [454.0111,544.0479] (Line ) [450.5698,537.1656] (Line ) [454.0111,538.8862] (Line ) [457.4521,537.1656] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [454.2647,544.2134] (Line ) [453.4044,544.2134] (Line ) [453.4044,536.4707] (Line ) [454.2647,536.4707] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [454.2647,551.0957] (Line ) [453.4044,551.0957] (Line ) [453.4044,532.434] (Line ) [454.2647,532.434] (Line ) fwd: T Text T "IOWRqst" Xerox/PressFonts/Helvetica [0.0 -6.882355 225.4264 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "IORRply" Xerox/PressFonts/Helvetica [0.0 -6.882355 251.2352 6.882355 0.0 200.0957][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [458.5,178.5883] (Line ) [172.8823,178.5883] (Line ) [172.8823,177.728] (Line ) [458.5,177.728] (Line ) fwd: T Outline fillColor: [0 1.0 1.0 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [431.3323,558.106] (Line ) [432.5323,562.906] (Line ) [429.9823,601.7559] (Line ) [429.0823,596.3559] (Line ) fwd: F Outline fillColor: [0 1.0 1.0 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [429.9823,601.7559] (Line ) [432.4088,562.412] (Line ) [478.8823,562.006] (Line ) [469.7323,601.456] (Line ) fwd: F Outline fillColor: [1 0.5] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [433.8823,564.106] (Line ) [476.7823,563.806] (Line ) [468.2323,599.806] (Line ) [431.4823,600.106] (Line ) fwd: F Outline fillColor: [0 1.0 1.0 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [431.3323,558.106] (Line ) [474.5323,557.506] (Line ) [478.8823,562.006] (Line ) [432.4088,562.412] (Line ) fwd: F Outline fillColor: [0 1.0 1.0 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [440.1828,557.983] (Line ) [438.8323,551.506] (Line ) [461.6323,551.206] (Line ) [465.534,557.631] (Line ) fwd: F Outline fillColor: [0 1.0 1.0 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [2] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [438.8323,551.506] (Line ) [440.7846,557.9747] (Line ) [437.7893,558.0162] (Line ) fwd: F Outline fillColor: [1 0.5] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [4] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [463.7953,554.7677] (Line ) [464.9323,553.006] (Line ) [466.4323,553.006] (Line ) [469.8811,557.5705] (Line ) [465.534,557.631] (Line ) fwd: F Outline fillColor: [1 0.5] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [4] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [478.2505,564.7332] (Line ) [482.9323,570.406] (Line ) [477.2761,592.8818] (Line ) [474.2761,593.4818] (Line ) [472.1658,590.9638] (Line ) fwd: F Outline fillColor: [0 1.0 1.0 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [435.5323,595.6059] (CubicSpline Type: Natural 1 [436.9176,580.7455] ) [438.0823,566.056] (Line ) [471.0823,565.906] (CubicSpline Type: Natural 1 [468.136,581.9159] ) [464.7823,595.456] (Line ) fwd: F Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [324.3602,317.0957] (Line ) [323.5,317.0957] (Line ) [323.5,261.1766] (Line ) [324.3602,261.1766] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [356.1912,364.4119] (Line ) [323.5,364.4119] fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [356.1912,364.4119] (Line ) [323.5,364.4119] fwd: T Text T "Pixel" Xerox/PressFonts/Helvetica [0.0 -6.882355 445.454 6.882355 0.0 433.2625][] F 1.0 props: ( F ) ls: 1.2 Text T "Clock" Xerox/PressFonts/Helvetica [0.0 -6.882355 460.954 6.882355 0.0 431.862][] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (open) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [419.1691,475.4928] (Line ) [419.1691,474.6325] (Line ) [426.9117,474.6325] (Line ) [426.9117,475.4928] fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [426.7022,465.4891] (Line ) [419.8198,468.9303] (Line ) [421.5404,465.4891] (Line ) [419.8198,462.0479] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [426.9117,466.0295] (Line ) [419.1691,466.0295] (Line ) [419.1691,465.1693] (Line ) [426.9117,465.1693] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.261,254.7979] (Line ) [299.8198,247.9156] (Line ) [303.261,249.6362] (Line ) [306.7022,247.9156] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.3823,255.2943] (Line ) [302.522,255.2943] (Line ) [302.522,247.5516] (Line ) [303.3823,247.5516] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.239,247.6435] (Line ) [237.6802,254.5258] (Line ) [234.239,252.8052] (Line ) [230.7978,254.5258] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.1177,247.1471] (Line ) [234.978,247.1471] (Line ) [234.978,254.8898] (Line ) [234.1177,254.8898] (Line ) fwd: T Outline fillColor: [1 0.5] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [233.1691,341.1839] (Line ) [271.022,341.25] fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [279.7978,363.8933] (Line ) [272.9155,367.3344] (Line ) [274.636,363.8933] (Line ) [272.9155,360.4521] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [272.1986,363.7058] (Line ) [279.9412,363.7058] (Line ) [279.9412,364.5661] (Line ) [272.1986,364.5661] (Line ) fwd: T Text T "4.1" Xerox/PressFonts/Helvetica [0.0 -6.882355 252.954 6.882355 0.0 263.6608][] F 1.0 props: ( F ) ls: 1.2 Text T "4.1" Xerox/PressFonts/Helvetica [0.0 -6.882355 320.954 6.882355 0.0 264.1608][] F 1.0 props: ( F ) ls: 1.2 Text T "4.4" Xerox/PressFonts/Helvetica [0.0 -6.882355 320.954 6.882355 0.0 339.1608][] F 1.0 props: ( F ) ls: 1.2 Text T "4.5" Xerox/PressFonts/Helvetica [0.0 -6.882355 320.5 6.882355 0.0 422.0][] F 1.0 props: ( F ) ls: 1.2 Text T "4.2.3" Xerox/PressFonts/Helvetica [0.0 -6.882355 320.454 6.882355 0.0 502.7573][] F 1.0 props: ( F ) ls: 1.2 Text T "4.2.4" Xerox/PressFonts/Helvetica [0.0 -6.882355 320.0 6.882355 0.0 587.5][] F 1.0 props: ( F ) ls: 1.2 Text T "4.6" Xerox/PressFonts/Helvetica [0.0 -6.882355 473.0 6.882355 0.0 400.5][] F 1.0 props: ( F ) ls: 1.2 Text T "4.5" Xerox/PressFonts/Helvetica [0.0 -6.882355 472.5 6.882355 0.0 464.5][] F 1.0 props: ( F ) ls: 1.2 Text T "Full" Xerox/PressFonts/Helvetica [0.0 -6.882355 244.5 6.882355 0.0 346.0][] F 1.0 props: ( F ) ls: 1.2 Text T "Critical" Xerox/PressFonts/Helvetica [0.0 -6.882355 252.7588 6.882355 0.0 346.0][] F 1.0 props: ( F ) ls: 1.2 š¥3™3S–centered lastLineFormatting ˜— ˜: ˜:head3˜Ršœñ ˜ó— ˜RšœÎœÅ˜•R˜ö— ˜RšœÛ˜ÛartworkCaption™T–à Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  ”¡£u ¢ ¨ r jÄç 3 ¢ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“Ĉĵ S ¢ ¨ÄF! ¤ ¨‚ ¢ ¨¾&–H¡£¡¡¨ x jÐ: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á Mode/Fault– k x jØ* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á000000000000000– k x j˜Œ ¢ ¨ r j  Š ª  ÔÔ¡£¤¯“ °“¢·“¢ÒÒ¢¡¹ k é k x j؆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á RplyShared– kpŒ¤8¡š x j0* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁAddress– k x jˆ– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x jd– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k`ô¤8¡š xô¨¤¡šð¤è¤¡š x j!p– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k x j– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k€ô¨¤¡š x j`– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k¨ô¤8¡š¨ô¤8¡š!¨ô¤8¡šÀŒˆ¤¡š x jÀ” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– kÀô¤8¡šø¤ô¤¡š x j@– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j°– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j¸– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x jH” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– kؤ ¤¡šè¤ð¤¡š x jØ( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁCmd– k„ô¤8¡šô¤8¡š x jpD ¢ ¨ r j  Š ª  ìì¡£¤¯“ °“¢·“¢êꢡ¹ k é k˜¼¤¡šÀôˆ¤¡š x jÀ* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k k é k é k g– Interpress–:0.0 mm xmin 0.0 mm ymin 176.3889 mm xmax 35.98333 mm ymax –é38.80555 mm bigger topLeading 38.80555 mm bigger topIndent 1.411111 mm bigger bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoffš¥3™3—Vš  œ™"R˜Ršœ˜˜˜Ršœf˜f— šœ˜T•FitTRUE–¿ Interpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¢• k j¡¥“Äè ¤ ¨ªª ¢ ¨Äy) ¤ ¨Â∠𠢠¨-Pªx¡£ ¥“ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§£•£”­“-Pªx¡šÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¤•¤”­“.Pø𤡚/@ø ¤¡š2`øô¤¡š.(Hˆ¤¡š.(H¤8¡š.(àˆ¤¡š6H¤8¡š.ÈH¤8¡š/H¤8¡š0H¤8¡š1ðH¤8¡š1èH¨¤¡š0Xø褡š- à ¤¡š. H¤¬¡š- H¤<¡š- H ¤¡š- X ¤¡š- X¤<¡š. X¤¬¡š- 𠤡š.Xü¤¡š.(Xˆ¤¡š.(X¤8¡š.(ðˆ¤¡š6X¤8¡š1èX¨¤¡š¢°“¢·“ x j¤”­“¢ —1°è ¢ ¨  ŠÁ31–ÂÝð X ¢ ¨0 ê ¢ ¨  ŠÁ17–Â߀ V ¢ ¨/ê ¢ ¨  ŠÁ7–Âàˆ V ¢ ¨.ðê ¢ ¨  ŠÁ6–Âà° V ¢ ¨.Ðê ¢ ¨  ŠÁ5–ÂàÐ V ¢ ¨.¨ê ¢ ¨  ŠÁ4–Âàø V ¢ ¨.(è ¢ ¨  ŠÁ0–Âáx X ¢ ¨/Èê ¢ ¨  ŠÁ16–ÂßØ V ¢ ¨1øê ¢ ¨  ŠÁ32–Âݨ V ¢ ¨5Øê ¢ ¨  ŠÁ63–ÂÙÈ V ¢ ¨.8z ¢ ¨  ŠÁ00000–Âáh Æ ¢ ¨.Ðz ¢ ¨  ŠÁ0X–ÂàÐ Æ ¢ ¨/(z ¢ ¨  ŠÁDeviceID–Âàx Æ ¢ ¨00z ¢ ¨  ŠÁ000000000000000–Âßp Æ ¢ ¨3€z ¢ ¨  ŠÁAddress–ÂÜ Æ ¢ ¨-P| ¢ ¨  ŠÁHeader–ÂâP Ä ¢ ¨-`Œ ¢ ¨  ŠÁData–Ââ@ ´ ¢ ¨.(ø ¢ ¨  ŠÁ0–Âáx H ¢ ¨5Øú ¢ ¨  ŠÁ63–ÂÙÈ F ¢ ¨1¨’ ¢ ¨  ŠÁAll XXX–ÂÝø ® ¢ ¨ k k g– Interpress–810.0 mm xmin 10.0 mm ymin 205.9 mm xmax 49.95886 mm ymax–†0.2039758 the lineLength .mul 2.811678 .add topLeading 0.2039758 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeadingš¥;™;— šœ˜KšœC˜CT–TRUE–ÊInterpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Ä Ý ¤ ¨Â×È  ¢ ¨7Ø8¢ˆ¡£ ¥“®”­“7Ø8¢ˆ¡š¨”­“7à@ ¤¡š7à@¤<¡š8à@¤¬¡š7àØ ¤¡š< @¤8¡š9ðô¤¡š< @¨¤¡š@È@¤8¡š8à؈¤¡š8à@¤8¡š8à@ˆ¤¡š=ð$¤¡š7àØ ¤¡š8à@¤¬¡š7à@¤<¡š7à@ ¤¡š9ð𤡚9ø𠤡š=ðô¤¡š8à@ˆ¤¡š8à@¤8¡š8à؈¤¡š@È@¤8¡š9€@¤8¡š9È@¤8¡š:È@¤8¡š<¨@¤8¡š< @¨¤¡š;ð褡š¢°“¢·“ x j¨”­“¿ —8 t ¢ ¨  ŠÁData–Â×€ Ì ¢ ¨@â ¢ ¨  ŠÁ63–ÂÏ ^ ¢ ¨<°â ¢ ¨  ŠÁ32–ÂÒð ^ ¢ ¨8àà ¢ ¨  ŠÁ0–ÂÖÀ ` ¢ ¨xz ¢ ¨  ŠÁData–ÂÑ( Æ ¢ ¨8t ¢ ¨  ŠÁHeader–Â× Ì ¢ ¨>0z ¢ ¨  ŠÁAddress–ÂÑp Æ ¢ ¨PÒ@Ò¡¹=Ò=ÐÒ¡¹9Ò8Z ¢ ¨  ŠÁAddress–ÂÑh æ ¢ ¨ ¢ ¨  ŠÁ42–ÂÑ ~ ¢ ¨<èB ¢ ¨  ŠÁDeviceID–ÂÒ¸ þ ¢ ¨<èr ¢ ¨  ŠÁDynaBus–ÂÒ¸ Π¢ ¨@€R ¢ ¨  ŠÁ001–ÂÏ î ¢ ¨>R ¢ ¨  ŠÁXXXXXXXXXXXXXXXXXXX–Âј î ¢ ¨ k k g– Interpress–810.0 mm xmin 10.0 mm ymin 205.9 mm xmax 50.10033 mm ymax–’0.204698 the lineLength .mul 2.811678 .add topLeading 0.204698 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeading 0.0 0.2 0.90 backgroundColor the topLeading 6 pt .sub backgroundAscent 1 pt backgroundDescent 2 pt outlineBoxThickness 1 pt outlineBoxBearoffšÐnx6™6—V™U˜ šœ˜T–TRUE– Interpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Ä Ý ¤ ¨Âí¨Р¢ ¨!øp¢Ø¡£ ¥“®”­“!øp¢Ø¡š¨”­“#0(ü¤¡š#xˆ¤¡š#x¤8¡š#ˆ¤¡š*èx¤8¡š&Àx¨¤¡š" ¤¡š"x¤<¡š"x ¤¡š(˜(X¤¡š'(ˆ¤¡š)ð(P¤¡š(Hx¤0¡š)¸x¨¤¡š%0(褡š&Àx¨¤¡š&Èx¤0¡š$èx¤0¡š#èx¤0¡š# x¤0¡š*èx¤0¡š#ˆ¤¡š#x¤0¡š#xˆ¤¡š'8Pô¤¡š$( ¤¡š#((𤡚) x¤0¡š"x ¤¡š"x¤<¡š#x¤¬¡š" ¤¡š¢°“¢·“ x j¨”­“¿ —# ¢ ¨  ŠÁ0–Âì ( ¢ ¨*° ¢ ¨  ŠÁ63–Âäð& ¢ ¨&€² ¢ ¨  ŠÁAll XXX–Âé Ž ¢ ¨"0¬ ¢ ¨  ŠÁHeader–Âíp” ¢ ¨(P ¢ ¨  ŠÁ44–ÂçP& ¢ ¨)° ¢ ¨  ŠÁ54–Âåð& ¢ ¨)` ¢ ¨  ŠÁ53–Âæ@& ¢ ¨( ¢ ¨  ŠÁ43–Âç˜& ¢ ¨&Р¢ ¨  ŠÁ32–ÂèÐ& ¢ ¨(pj ¢ ¨  ŠÁ IOAddress–Âç0Ö ¢ ¨#¨ª ¢ ¨  ŠÁ0X–Âëø– ¢ ¨)ø¬ ¢ ¨  ŠÁOffset–Â娔 ¢ ¨'ª ¢ ¨  ŠÁDevType–Â舖 ¢ ¨(ˆª ¢ ¨  ŠÁDevNum–Âç– ¢ ¨$  ¢ ¨  ŠÁ16–Âë& ¢ ¨# ¢ ¨  ŠÁ0–Âì ( ¢ ¨#ª ¢ ¨  ŠÁ10000–Âì– ¢ ¨#€ ¢ ¨  ŠÁ4–Âì & ¢ ¨#¨ ¢ ¨  ŠÁ5–Âëø& ¢ ¨#È ¢ ¨  ŠÁ6–ÂëØ& ¢ ¨#ð ¢ ¨  ŠÁ7–Âë°& ¢ ¨$ø ¢ ¨  ŠÁ17–Âê¨& ¢ ¨&ˆ ¢ ¨  ŠÁ31–Âé( ¢ ¨%ª ¢ ¨  ŠÁ000000000000000–Âê– ¢ ¨&ÐB ¢ ¨  ŠÁ32–ÂèÐþ ¢ ¨*°B ¢ ¨  ŠÁ63–Âäðþ ¢ ¨*° ¢ ¨  ŠÁ63–Âäð& ¢ ¨$ª ¢ ¨  ŠÁDeviceID–Âë – ¢ ¨"@¬ ¢ ¨  ŠÁData–Âí`” ¢ ¨ k k g– Interpress–710.0 mm xmin 10.0 mm ymin 205.9 mm xmax 58.2529 mm ymax–„0.246314 the lineLength .mul 2.811678 .add topLeading 0.246314 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeadingš¥;™;— šœ˜UšÏi ˜ T–TRUE–öInterpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Äy) ¤ ¨Ââˆ8 ¢ ¨-ªè¡£ ¥“®”­“-ªè¡š¨”­“2HÀ$¤¡š.(ˆ¤¡š.(¤8¡š.(¨ˆ¤¡š6¤8¡š1訤¡š.PÀô¤¡š1è¤8¡š-  ¤¡š- ¤<¡š- ¨ ¤¡š-   ¤¡š- ¤<¡š-  ¤¡š4ð¸x¤¡š3¨¸P¤¡š20¸ˆ¤¡š0P¸è¤¡š1ਤ¡š1è¤8¡š0¤8¡š/¤8¡š.À¤8¡š6¤8¡š.  ˆ¤¡š. ¤8¡š. ˆ¤¡š/8¸ ¤¡š.H¸ð¤¡š3`¤8¡š4 ¤8¡š2Xðô¤¡š¢°“¢·“ x j¨”­“¿ —3ÀJ ¢ ¨  ŠÁData–ÂÛà ö ¢ ¨1°° ¢ ¨  ŠÁ31–ÂÝð  ¢ ¨.(° ¢ ¨  ŠÁ0–Âáx  ¢ ¨1ø² ¢ ¨  ŠÁ32–Âݨ Ž ¢ ¨5ز ¢ ¨  ŠÁ63–ÂÙÈ Ž ¢ ¨/ÀJ ¢ ¨  ŠÁAll XXX–Âßà ö ¢ ¨-`D ¢ ¨  ŠÁData–Ââ@ ü ¢ ¨-P< ¢ ¨  ŠÁHeader–ÂâP  ¢ ¨5Ъ ¢ ¨  ŠÁ63–ÂÙÐ – ¢ ¨4¨ª ¢ ¨  ŠÁ54–ÂÚø – ¢ ¨4`ª ¢ ¨  ŠÁ53–ÂÛ@ – ¢ ¨3hª ¢ ¨  ŠÁ44–ÂÜ8 – ¢ ¨3 ª ¢ ¨  ŠÁ43–ÂÜ€ – ¢ ¨1𪠢 ¨  ŠÁ32–ÂÝ° – ¢ ¨00: ¢ ¨  ŠÁ000000000000000–Âßp  ¢ ¨5: ¢ ¨  ŠÁOffset–ÂÚ  ¢ ¨28: ¢ ¨  ŠÁDevType–ÂÝh  ¢ ¨3˜: ¢ ¨  ŠÁDevNum–ÂÜ  ¢ ¨/Àª ¢ ¨  ŠÁ16–Âßà – ¢ ¨. ¨ ¢ ¨  ŠÁ0–Âဠ˜ ¢ ¨. ª ¢ ¨  ŠÁ4–Âá – ¢ ¨.Ȫ ¢ ¨  ŠÁ5–ÂàØ – ¢ ¨.誠¢ ¨  ŠÁ6–Âภ– ¢ ¨/ª ¢ ¨  ŠÁ7–Âà – ¢ ¨0ª ¢ ¨  ŠÁ17–Â߈ – ¢ ¨1¨¨ ¢ ¨  ŠÁ31–ÂÝø ˜ ¢ ¨.0: ¢ ¨  ŠÁ10001–Âáp  ¢ ¨.È: ¢ ¨  ŠÁ0X–ÂàØ  ¢ ¨/ : ¢ ¨  ŠÁDeviceID–Âà€  ¢ ¨1ðâ ¢ ¨  ŠÁ32–ÂÝ° ^ ¢ ¨3ˆ ¢ ¨  ŠÁ IOAddress–ÂÜ . ¢ ¨5Ðâ ¢ ¨  ŠÁ63–ÂÙÐ ^ ¢ ¨ k k g– Interpress–810.0 mm xmin 10.0 mm ymin 205.9 mm xmax 59.44063 mm ymax–†0.2523768 the lineLength .mul 2.811678 .add topLeading 0.2523768 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeadingš¥;™;Iindent˜U˜ T–†0.2009885 the lineLength .mul 2.811678 .add topLeading 0.2009885 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeading–610.0 mm xmin 10.0 mm ymin 198 mm xmax 50.10033 mm ymax– Interpress–ëInterpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Ä·A ¤ ¨ÂíÀ¨ ¢ ¨!à˜ˆ¡£ ¥“®”­“!à˜ˆ¡š¨”­“#H𤡚$H ¤¡š'(Hô¤¡š"𘈤¡š"ð˜¤8¡š"ð0ˆ¤¡š*ؘ¤8¡š#˜¤8¡š#ؘ¤8¡š$ؘ¤8¡š&¸˜¤8¡š&°˜¨¤¡š% H褡š!è  ¤¡š!è ¤<¡š!è8 ¤¡š!è0 ¤¡š!蘤<¡š!蘠¤¡š(HPh¤¡š*h ¤8¡š&° ¤8¡š&° ¨¤¡š*Ø ¤8¡š"à8˜¤¡š"à ¤8¡š"à ˜¤¡š#P¤¡š'ð ¤8¡š&øPp¤¡š¢°“¢·“ x j¨”­“¿ —%Ê ¢ ¨  ŠÁ000000000000000–Âê v ¢ ¨#ðÊ ¢ ¨  ŠÁDeviceID–Âë°v ¢ ¨#˜Ê ¢ ¨  ŠÁ1X–Âìv ¢ ¨#Ê ¢ ¨  ŠÁ10001–Âì v ¢ ¨'Ì ¢ ¨  ŠÁaddress–Âèˆt ¢ ¨&x8 ¢ ¨  ŠÁ31–Âé( ¢ ¨$è: ¢ ¨  ŠÁ17–Â긠¢ ¨#à: ¢ ¨  ŠÁ7–ÂëÀ ¢ ¨#¸: ¢ ¨  ŠÁ6–Âëè ¢ ¨#˜: ¢ ¨  ŠÁ5–Âì ¢ ¨#p: ¢ ¨  ŠÁ4–Âì0 ¢ ¨"ð8 ¢ ¨  ŠÁ0–Âì° ¢ ¨$: ¢ ¨  ŠÁ16–Âë ¢ ¨&À: ¢ ¨  ŠÁ32–Âèà ¢ ¨* : ¢ ¨  ŠÁ63–Âå ¢ ¨(Ì ¢ ¨  ŠÁ(same addr as the IORead)–Âç t ¢ ¨"(Ô ¢ ¨  ŠÁData–Âíxl ¢ ¨"Ì ¢ ¨  ŠÁHeader–Âíˆt ¢ ¨* B ¢ ¨  ŠÁ60–Âå€þ ¢ ¨*hB ¢ ¨  ŠÁ61–Âå8þ ¢ ¨$XÚ ¢ ¨  ŠÁ all XXX's–ÂëHf ¢ ¨* B ¢ ¨  ŠÁ63–Âåþ ¢ ¨"ð@ ¢ ¨  ŠÁ0–Âì° ¢ ¨&xB ¢ ¨  ŠÁ31–Âé(þ ¢ ¨&¸B ¢ ¨  ŠÁ32–Âèèþ ¢ ¨'ÈB ¢ ¨  ŠÁ41–ÂçØþ ¢ ¨(B ¢ ¨  ŠÁ42–Âç˜þ ¢ ¨&à ¢ ¨  ŠÁDeviceID–ÂèÀ~ ¢ ¨&àò ¢ ¨  ŠÁDynaBus–ÂèÀN ¢ ¨*xÒ ¢ ¨  ŠÁ001–Âå(n ¢ ¨(Ò ¢ ¨  ŠÁXXXXXXXXXXXXXXXXXXX–Âç n ¢ ¨ k k g–TRUEš¥;™;Wšœ˜— šœ˜T–TRUE–€Interpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Ä Ý ¤ ¨Âí¨ð ¢ ¨!øP¢ð¡£ ¥“®”­“!øP¢ð¡š¨”­“"X ¤¡š"X¤<¡š"𠤡š#(ô¤¡š&ÀX¨¤¡š*èX¤8¡š#ðˆ¤¡š#X¤8¡š#Xˆ¤¡š' $¤¡š&ÈX¤8¡š"ø ¤¡š"`¤<¡š"` ¤¡š)Ðp¤¡š(ˆH¤¡š'€¤¡š'¤¨¡š%0褡š&À`¨¤¡š&È`¤8¡š$è`¤8¡š#è`¤8¡š# `¤8¡š*è`¤8¡š#øˆ¤¡š#`¤8¡š#`ˆ¤¡š$ ¤¡š#(𤡚(@`¤8¡š)€`¤8¡š'H$¤¡š¢°“¢·“ x j¨”­“¿ —"@Œ ¢ ¨  ŠÁData–Âí`´ ¢ ¨$˜’ ¢ ¨  ŠÁAll XXX–Âë® ¢ ¨*°ú ¢ ¨  ŠÁ63–ÂäðF ¢ ¨&Ðú ¢ ¨  ŠÁ32–ÂèÐF ¢ ¨#ø ¢ ¨  ŠÁ0–Âì H ¢ ¨&ˆø ¢ ¨  ŠÁ31–ÂéH ¢ ¨(˜’ ¢ ¨  ŠÁData–Âç® ¢ ¨"0” ¢ ¨  ŠÁHeader–Âíp ¬ ¢ ¨)ˆ ¢ ¨  ŠÁ54–Âæ > ¢ ¨)@ ¢ ¨  ŠÁ53–Âæ` > ¢ ¨*° ¢ ¨  ŠÁ63–Âäð > ¢ ¨&Р¢ ¨  ŠÁ32–ÂèÐ > ¢ ¨)à’ ¢ ¨  ŠÁOffset–ÂåÀ ® ¢ ¨%’ ¢ ¨  ŠÁ000000000000000–Âêˆ ® ¢ ¨(x’ ¢ ¨  ŠÁDevNum–Âç( ® ¢ ¨$  ¢ ¨  ŠÁ16–Âë > ¢ ¨# ¢ ¨  ŠÁ0–Âì  @ ¢ ¨#€ ¢ ¨  ŠÁ4–Âì > ¢ ¨#¨ ¢ ¨  ŠÁ5–Âëø > ¢ ¨#È ¢ ¨  ŠÁ6–ÂëØ > ¢ ¨#ð ¢ ¨  ŠÁ7–Âë° > ¢ ¨$ø ¢ ¨  ŠÁ17–Âê¨ > ¢ ¨&ˆ ¢ ¨  ŠÁ31–Âé @ ¢ ¨#’ ¢ ¨  ŠÁ10010–Âì ® ¢ ¨'’ ¢ ¨  ŠÁDevType–Âè ® ¢ ¨#¨’ ¢ ¨  ŠÁ0X–Âëø ® ¢ ¨$’ ¢ ¨  ŠÁDeviceID–Âë  ® ¢ ¨&Ð: ¢ ¨  ŠÁ32–ÂèÐ  ¢ ¨*°: ¢ ¨  ŠÁ63–Âäð  ¢ ¨( ¢ ¨  ŠÁ43–Âç  > ¢ ¨(H ¢ ¨  ŠÁ44–ÂçX > ¢ ¨(`b ¢ ¨  ŠÁ IOAddress–Âç@ Þ ¢ ¨ k k g– Interpress–810.0 mm xmin 10.0 mm ymin 205.9 mm xmax 60.29176 mm ymax–†0.2567216 the lineLength .mul 2.811678 .add topLeading 0.2567216 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeadingš¥;™;— šœ˜U˜ T–TRUE––Interpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Äy) ¤ ¨Âí°h ¢ ¨!ð تࡣ ¥“®”­“!ð ت࡚¨”­“#(ü¤¡š"ø àˆ¤¡š"ø à¤8¡š"øxˆ¤¡š*à à¤8¡š&¸ ਤ¡š!ø à ¤¡š!ø à¤<¡š!øx ¤¡š!øp ¤¡š!øؤ<¡š!øØ ¤¡š'À$¤¡š)€Ø¤8¡š(@ؤ8¡š#(ˆð¤¡š$ˆ ¤¡š#؈¤¡š#ؤ8¡š#pˆ¤¡š*èؤ8¡š# Ø¤8¡š#èؤ8¡š$èؤ8¡š&Èؤ8¡š&Àب¤¡š%0ˆè¤¡š'ˆ¤¨¡š'ˆ€¤¡š(ˆˆH¤¡š)Јp¤¡š¢°“¢·“ x j¨”­“¿ —"ø€ ¢ ¨  ŠÁ0–Âì¨À ¢ ¨*¨‚ ¢ ¨  ŠÁ63–Âäø¾ ¢ ¨&x ¢ ¨  ŠÁAll XXX–Âé(& ¢ ¨"8 ¢ ¨  ŠÁData–Âíh, ¢ ¨"(  ¢ ¨  ŠÁHeader–Âíx4 ¢ ¨(`Ú ¢ ¨  ŠÁ IOAddress–Âç@f ¢ ¨(Hz ¢ ¨  ŠÁ44–ÂçXÆ ¢ ¨(z ¢ ¨  ŠÁ43–Âç Æ ¢ ¨*°² ¢ ¨  ŠÁ63–ÂäðŽ ¢ ¨&в ¢ ¨  ŠÁ32–ÂèÐŽ ¢ ¨$  ¢ ¨  ŠÁDeviceID–Âë 6 ¢ ¨'  ¢ ¨  ŠÁDevType–Âè6 ¢ ¨&ˆx ¢ ¨  ŠÁ31–ÂéÈ ¢ ¨$øz ¢ ¨  ŠÁ17–Âê¨Æ ¢ ¨#ðz ¢ ¨  ŠÁ7–Âë°Æ ¢ ¨#Èz ¢ ¨  ŠÁ6–ÂëØÆ ¢ ¨#¨z ¢ ¨  ŠÁ5–ÂëøÆ ¢ ¨#€z ¢ ¨  ŠÁ4–Âì Æ ¢ ¨#x ¢ ¨  ŠÁ0–Âì È ¢ ¨$ z ¢ ¨  ŠÁ16–ÂëÆ ¢ ¨(x  ¢ ¨  ŠÁDevNum–Âç(6 ¢ ¨%  ¢ ¨  ŠÁ000000000000000–Âêˆ6 ¢ ¨)à  ¢ ¨  ŠÁOffset–ÂåÀ6 ¢ ¨&Ðz ¢ ¨  ŠÁ32–ÂèÐÆ ¢ ¨*°z ¢ ¨  ŠÁ63–ÂäðÆ ¢ ¨)@z ¢ ¨  ŠÁ53–Âæ`Æ ¢ ¨)ˆz ¢ ¨  ŠÁ54–ÂæÆ ¢ ¨#  ¢ ¨  ŠÁ10011–Âì6 ¢ ¨#¨  ¢ ¨  ŠÁ0X–Âëø6 ¢ ¨ k k g– Interpress–810.0 mm xmin 10.0 mm ymin 205.9 mm xmax 58.76335 mm ymax–†0.2489196 the lineLength .mul 2.811678 .add topLeading 0.2489196 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeadingš¥;™;U˜ T–TRUE–ÿInterpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Äœ… ¤ ¨ÂíÐ8 ¢ ¨!Ð èà¡£ ¥“®”­“!Ð èà¡š¨”­“&ø ð$¤¡š)` ¤8¡š( ¤8¡š# ¸ð¤¡š#ø ¸ ¤¡š"à ˆ¤¡š"à ¤8¡š"à  ˆ¤¡š*È ¤8¡š#€ ¤8¡š#È ¤8¡š$È ¤8¡š&¨ ¤8¡š&  ¨¤¡š% ¸è¤¡š&ø ¸¤¨¡š&𠸀¤¡š(h ¸H¤¡š)° ¸p¤¡š(@ Àh¤¡š*` ¤8¡š&¨ ¤8¡š&¨ ¨¤¡š*Ð ¤8¡š"Ø ¨˜¤¡š"Ø ¤8¡š"Ø ˜¤¡š# À¤¡š'è ¤8¡š&ð Àp¤¡š!à  ¤¡š!à ¤<¡š!à ¨ ¤¡š!Ø   ¤¡š!Ø ¤<¡š!Ø  ¤¡š¢°“¢·“ x j¨”­“¿ —(@  ¢ ¨  ŠÁ IOAddress–Âç`6 ¢ ¨(( ª ¢ ¨  ŠÁ44–Âçx– ¢ ¨'à ª ¢ ¨  ŠÁ43–ÂçÀ– ¢ ¨* â ¢ ¨  ŠÁ63–Âå^ ¢ ¨&° â ¢ ¨  ŠÁ32–Âèð^ ¢ ¨#à : ¢ ¨  ŠÁDeviceID–ÂëÀ ¢ ¨&ð : ¢ ¨  ŠÁDevType–Âè° ¢ ¨&h ¨ ¢ ¨  ŠÁ31–Âé8˜ ¢ ¨$Ø ª ¢ ¨  ŠÁ17–ÂêÈ– ¢ ¨#Ð ª ¢ ¨  ŠÁ7–ÂëЖ ¢ ¨#¨ ª ¢ ¨  ŠÁ6–Âëø– ¢ ¨#ˆ ª ¢ ¨  ŠÁ5–Âì– ¢ ¨#` ª ¢ ¨  ŠÁ4–Âì@– ¢ ¨"à ¨ ¢ ¨  ŠÁ0–ÂìÀ˜ ¢ ¨$€ ª ¢ ¨  ŠÁ16–Âë – ¢ ¨(X : ¢ ¨  ŠÁDevNum–ÂçH ¢ ¨$ø : ¢ ¨  ŠÁ000000000000000–Âꨠ¢ ¨)À : ¢ ¨  ŠÁOffset–Âåà ¢ ¨&° ª ¢ ¨  ŠÁ32–Âèð– ¢ ¨* ª ¢ ¨  ŠÁ63–Âå– ¢ ¨) ª ¢ ¨  ŠÁ53–Â怖 ¢ ¨)h ª ¢ ¨  ŠÁ54–Âæ8– ¢ ¨"ð : ¢ ¨  ŠÁ10011–Âì° ¢ ¨#ˆ : ¢ ¨  ŠÁ1X–Âì ¢ ¨* ² ¢ ¨  ŠÁ60–Â刎 ¢ ¨*` ² ¢ ¨  ŠÁ61–Âå@Ž ¢ ¨$P J ¢ ¨  ŠÁ all XXX's–ÂëPö ¢ ¨*˜ ² ¢ ¨  ŠÁ63–Â厠¢ ¨"è ° ¢ ¨  ŠÁ0–Â츠¢ ¨&p ² ¢ ¨  ŠÁ31–Âé0Ž ¢ ¨&° ² ¢ ¨  ŠÁ32–ÂèðŽ ¢ ¨'À ² ¢ ¨  ŠÁ41–ÂçàŽ ¢ ¨( ² ¢ ¨  ŠÁ42–Âç Ž ¢ ¨&Ø 2 ¢ ¨  ŠÁDeviceID–ÂèÈ ¢ ¨&Ø b ¢ ¨  ŠÁDynaBus–ÂèÈÞ ¢ ¨*p B ¢ ¨  ŠÁ001–Âå0þ ¢ ¨'ø B ¢ ¨  ŠÁXXXXXXXXXXXXXXXXXXX–Âç¨þ ¢ ¨" D ¢ ¨  ŠÁData–Âí€ü ¢ ¨" < ¢ ¨  ŠÁHeader–Â혠¢ ¨ k k g– Interpress–610.0 mm xmin 10.0 mm ymin 200 mm xmax 50.10033 mm ymax–†0.2424243 the lineLength .mul 2.811678 .add topLeading 0.2424243 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeadingš¥;™;— šœ ˜ T–TRUE–§Interpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Ä Ý ¤ ¨Ââh  ¢ ¨-8 ¢Ø¡£ ¥“®”­“-8 ¢Ø¡š¨”­“.hØô¤¡š2(¨¤¡š6((¤8¡š.@Àˆ¤¡š.@(¤8¡š.@(ˆ¤¡š2`Ø$¤¡š2(¤8¡š-@( ¤¡š-@(¤<¡š-@À ¤¡š5Ðx¤¡š3¸Ð`¤¡š2PÐx¤¡š2PФ¨¡š4À ¤8¡š0pÐ褡š2 ¨¤¡š2 ¤8¡š0( ¤8¡š/( ¤8¡š.à ¤8¡š6( ¤8¡š.@¸ˆ¤¡š.@ ¤8¡š.@ ˆ¤¡š/XÐ ¤¡š.hÐ𤡚3€ ¤8¡š2X¤¡š-@¸ ¤¡š-@ ¤<¡š-@  ¤¡š¢°“¢·“ x j¨”­“¿ —/Øb ¢ ¨  ŠÁAll XXX–ÂßÈÞ ¢ ¨5ðÊ ¢ ¨  ŠÁ63–ÂÙ°v ¢ ¨2Ê ¢ ¨  ŠÁ32–ÂÝv ¢ ¨.@È ¢ ¨  ŠÁ0–Âá`x ¢ ¨1ÈÈ ¢ ¨  ŠÁ31–ÂÝØx ¢ ¨3Øb ¢ ¨  ŠÁData–ÂÛÈÞ ¢ ¨-€\ ¢ ¨  ŠÁData–Ââ ä ¢ ¨4È ¢ ¨  ŠÁ54–ÂÚØ~ ¢ ¨4€ ¢ ¨  ŠÁ53–ÂÛ ~ ¢ ¨3€ ¢ ¨  ŠÁ44–ÂÜ ~ ¢ ¨38 ¢ ¨  ŠÁ43–ÂÜh~ ¢ ¨3  ¢ ¨  ŠÁ IOAddress–ÂÜ& ¢ ¨.èR ¢ ¨  ŠÁ0X–Âà¸î ¢ ¨2PZ ¢ ¨  ŠÁDevType–ÂÝPæ ¢ ¨4ðR ¢ ¨  ŠÁ IOAddress–ÂÚ°î ¢ ¨3°R ¢ ¨  ŠÁDevNum–ÂÛðî ¢ ¨.PR ¢ ¨  ŠÁ10100–ÂáPî ¢ ¨/à ¢ ¨  ŠÁ16–ÂßÀ~ ¢ ¨/0: ¢ ¨  ŠÁ (of sender)–Âàp ¢ ¨.@À ¢ ¨  ŠÁ0–Âá`€ ¢ ¨.À ¢ ¨  ŠÁ4–Âàà~ ¢ ¨.è ¢ ¨  ŠÁ5–Âà¸~ ¢ ¨/ ¢ ¨  ŠÁ6–Âà˜~ ¢ ¨/0 ¢ ¨  ŠÁ7–Âàp~ ¢ ¨08 ¢ ¨  ŠÁ17–Âßh~ ¢ ¨1ÈÀ ¢ ¨  ŠÁ31–ÂÝØ€ ¢ ¨/@r ¢ ¨  ŠÁDeviceID–Âà`Π¢ ¨0`R ¢ ¨  ŠÁ00000000000000–Âß@î ¢ ¨2ú ¢ ¨  ŠÁ32–ÂÝF ¢ ¨2 ¢ ¨  ŠÁ32–ÂÝ~ ¢ ¨5ðú ¢ ¨  ŠÁ63–ÂÙ°F ¢ ¨5ð ¢ ¨  ŠÁ63–ÂÙ°~ ¢ ¨-pT ¢ ¨  ŠÁHeader–Ââ0ì ¢ ¨ k k g– Interpress–710.0 mm xmin 10.0 mm ymin 205.9 mm xmax 58.2529 mm ymax–„0.246314 the lineLength .mul 2.811678 .add topLeading 0.246314 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeadingš¥;™;K˜—— ˜+ ˜ Itable2šÏz˜X˜(X˜/X˜,X˜%X˜— ˜& šœeÏkœ:˜¢Iragged–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentš¨b˜bY–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœØ˜ØY–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ»˜»Y–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœÞ˜ÞY–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœS˜SY–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ¨˜Itight–„clearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.75 flushLeft tabStop 3.75 in restIndentšœ˜Z–„clearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.75 flushLeft tabStop 3.75 in restIndentšœ˜Z–„clearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.75 flushLeft tabStop 3.75 in restIndentšœ˜Z–„clearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.75 flushLeft tabStop 3.75 in restIndentšœ˜Y–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœˆ˜ˆY–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœŒ˜ŒY–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndent˜ŒY–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ¨œ¨œ¨œÀ˜éY–mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndent˜”—— ˜ šœ{˜{Xš¨˜X˜X˜X˜X˜X˜X˜—R˜K˜ö— –å22.225 mm bigger topLeading 22.225 mm bigger topIndent 1.411111 mm bigger bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–:0.0 mm xmin 0.0 mm ymin 173.2139 mm xmax 19.40278 mm ymax – Interpress–¼AInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  ‹ס£pd ¢ ¨ r jÄçÄþm ¢ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈÄ=  ¢ ¨Äóï ¤ ¨Âì²â ¢ ¨"î ^®d¡£¡¡¨ x j)¸ š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁBlue– k%P ¤¡š)X डš x j(¨  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á23– k&È `¨¤¡š*ð `¤8¡š# øˆ¤¡š x j#  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k# `¤8¡š# `ˆ¤¡š% `¤8¡š(ð `¤8¡š' `¤8¡š x j#h ” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁXXXXXXXX– k x j$Ø  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k#8 (¤¡š x j*¸  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j)  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á24– k x j%  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á8– k x j'  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k'X डš x j&È  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á15– k x j%à š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁRed– k x j'° š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁGreen– k x j)ಠ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁOffset– k x j%² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á000000000000000– k x j(x² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevNum– k%00褡š x j*°" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k x j&Ð" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k&À€¨¤¡š&È€¤8¡š x j$ " ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k x j#ðš ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k$耤8¡š#耤8¡š# €¤8¡š*耤8¡š#ˆ¤¡š x j#  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k#€¤8¡š#€ˆ¤¡š'80ô¤¡š x j#€" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j#¨" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k x j#È" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j#ð" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j$ø" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j&ˆ  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k$0 ¤¡š#(0𤡚 x j$Ò ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k(@€¤8¡š)€€¤8¡š x j#² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á10010– k x j'² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevType– k x j#¨² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0X– k x j%z ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á00000000000000– k(8H¤8¡š x j#øš ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k# ø𤡚$ø ¤¡š x j&€è ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j$ðê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j#èê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j#Àê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j# ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k x j#xê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k'0øô¤¡š"øHˆ¤¡š"øH¤8¡š x j"øè ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k"øàˆ¤¡š*àH¤8¡š#˜H¤8¡š#àH¤8¡š$àH¤8¡š x j#èb ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k x j$˜ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k&ÀH¤8¡š&¸H¨¤¡š x j&Èê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k x j*¨ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k%(ø褡š x j#z ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á10100– k)xH¤8¡š x j(hz ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevNum– k x j)¨z ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á IOAddress– k x j'‚ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevType– k x j# z ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0X– k x j)È ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁOffset– k x j% ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á000000000000000– k(0Ф8¡š x j# ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á10011– k x j#ð" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k#€ð¤¡š$€ ¤¡š x j&xp ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j$èr ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j#àr ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j#¸r ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j#˜r ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k x j#pr ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k'(€ô¤¡š"ðЈ¤¡š"ðФ8¡š x j"ðp ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k"ðhˆ¤¡š*ØФ8¡š#Ф8¡š#ØФ8¡š$ØФ8¡š x j#àê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k x j$r ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k&¸Ð¤8¡š&°Ð¨¤¡š x j&Àr ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k x j* r ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k% €è¤¡š((Ш¤¡š)hФ8¡š x j(h ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevNum– k x j' ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevType– k x j#˜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á1X– k x j#, ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁIOWriteReplyNoError.format– k x j#Œ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁIOWriteRequest.format– k x j#Ä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁIOWriteReplyError.format– k x j)ðL ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁOffset– k x j%R ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á000000000000000– k)˜ ¤@¡š x j#R ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á10011– k x j#ør ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k# Ð𤡚$Ð ¤¡š x j&€À ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j$ð ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j#è ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j#À ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j#  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k x j#x ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k'0Ðô¤¡š"ø ˆ¤¡š"ø ¤8¡š x j"øÀ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k"ø¸ˆ¤¡š*à ¤8¡š#˜ ¤8¡š#à ¤8¡š$à ¤8¡š x j#è: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k x j$˜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k&¸ ¨¤¡š x j&È ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k x j*¨ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k%(Ð褡š&À ¤8¡š(P ¤8¡š x j(ˆR ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevNum– k x j'R ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevType– k x j# R ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0X– k x j$ˆ ¢ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áall XXX– k'($¤¡š x j& ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k# hˆ¤¡š# h¤8¡š x j# ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k#ˆ¤¡š*ð h¤8¡š&È h¨¤¡š x j&Ø  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k x j*¸  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k#0ô¤¡š x j(  ¢ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ádata– k&È h¤8¡š k é k é k gš¥3™3IartworkcaptionšÐbt ¡˜— ˜Ršœž˜ž— ˜R˜ŒR˜© šœû¥˜ü[˜T–Œ`Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  #Ô¡£aÈ ¢ ¨ r jÄçÄüw ¢ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈĈ ¢ ¨Ä$”5 ¤ ¨Âãªv ¢ ¨+ö Ê®ò¡£¡¡¨ x j1`º ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áaddress– k x j-Ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k,0(𤡚- ( ¤¡š x j/ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j. ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j,ø ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j,Р¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j,° ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k x j,ˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k0@(ô¤¡š,xˆ¤¡š,x¤8¡š x j, ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k,ˆ¤¡š3ðx¤8¡š,¨x¤8¡š,ðx¤8¡š-ðx¤8¡š x j,ø’ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k x j-¨ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k/Ðx¤8¡š/Èx¨¤¡š x j/Ø ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k x j3¸ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k.8(褡š x j,ª ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á00000– k x j,°ª ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0X– k x j.² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á000000000000000– k x j- Þ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á Mode/Fault– k x j. Π¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á000000000000000– k x j,Ø 0 ¢ ¨ r j  Š ª  ÔÔ¡£¤¯“ °“¢·“¢ÒÒ¢¡¹ k é k x j- * ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á RplyShared– k,° 0¤8¡š x j1p Ò ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁAddress– k x j,È: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j,¤: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k,  ˜¤8¡š2¸ ˜¨¤¡š.0H褡š x j3°: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k x j/Ð: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k/À ˜¨¤¡š x j- : ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k x j,ð ² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k-è ˜¤8¡š,è ˜¤8¡š3è ˜¤8¡š,0ˆ¤¡š x j,8 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k, ˜¤8¡š, ˜ˆ¤¡š08Hô¤¡š x j,€: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j,ð: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j-ø: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j/ˆ8 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k-H ¤¡š,(H𤡚 x j- ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k x j, Ì ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁCmd– k,Ä ˜¤8¡š/Ð ˜¤8¡š x j,° è ¢ ¨ r j  Š ª  ìì¡£¤¯“ °“¢·“¢êꢡ¹ k é k,Ø `¤¡š x j,0t ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁReadBlockReplynoError.format– k x j,@ì ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁReadBlockReplyError.format– k,0ô¤¡š x j3°  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k x j/Ð  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k/Àh¨¤¡š/Èh¤8¡š3èh¤8¡š,ˆ¤¡š x j, ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k,h¤8¡š,hˆ¤¡š x j/ˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j-€š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁAll XXX– k08ô¤¡š x j10š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á Fault Code– k x j,( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁIOReadReply, no error/error:– k x j0˜â ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á18– k x j2àâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á27– k x j1â ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á20– k x j1dâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á21– k x j2â ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á24– k x j2\â ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á25– k x j2œâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á26– k x j1Üâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á23– k x j1œâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á22– k x j0Øâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á19– k1˜@¤8¡š x j0Xâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k0@¤8¡š-Àð8¤¡š,@ðؤ¡š x j- â ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j-€ä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k-˜@¤8¡š,@¤8¡š x j,à ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k/Ø@¨¤¡š0Ø@¤8¡š1@¤8¡š1X@¤8¡š1Ø@¤8¡š2@¤8¡š2X@¤8¡š2˜@¤8¡š2Ø@¤8¡š3@¤8¡š,Ø ¤¡š,@ ¤¡š x j,`z ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á Next Addr– k x j.8z ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁIteration Counter– k,(pü¤¡š+øÀˆ¤¡š+øÀ¤8¡š x j+ø` ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k+øXˆ¤¡š3àÀ¤8¡š/¸À¨¤¡š x j3¨b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k x j/xú ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁAll XXX– k x j1X¢ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áaddress– k x j-º ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k,0𤡚-  ¤¡š x j/ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j.  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j,ø  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j,Ð  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j,°  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k x j,ˆ  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k0@ô¤¡š,hˆ¤¡š,h¤8¡š x j, ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k,ˆ¤¡š3ðh¤8¡š,¨h¤8¡š,ðh¤8¡š-ðh¤8¡š x j,ø‚ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k x j-¨  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k/Ðh¤8¡š/Èh¨¤¡š x j/Ø  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k x j3¸  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k.8褡š x j,š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á00001– k x j,°š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0X– k x j.š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á000000000000000– k x j1h" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áaddress– k x j,¸ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á1X– k x j,  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á00001– k x j-: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k,8˜ð¤¡š-(˜ ¤¡š x j/˜ˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j.Š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j-Š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j,ØŠ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j,¸Š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k x j,Š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k0H˜ô¤¡š,舤¡š,è¤8¡š x j,ˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k,€ˆ¤¡š3øè¤8¡š,°è¤8¡š,øè¤8¡š-øè¤8¡š x j- ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k x j-°Š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k/Øè¤8¡š/Ð訤¡š x j/àŠ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k x j3ÀŠ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k.@˜è¤¡š x j.  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á000000000000000– k x j-ð" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á00000 0 0 0 0 0 00000– k x j0" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevType– k x j,¨" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á10– k2 ð¤8¡š x j-B ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k,( ð¤¡š-  ¤¡š x j/ˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j-ø’ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j,ð’ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j,È’ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j,¨’ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k x j,€’ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k08 ô¤¡š,ðˆ¤¡š,ð¤8¡š x j, ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k,ˆˆ¤¡š3èð¤8¡š, ð¤8¡š,èð¤8¡š-èð¤8¡š x j,ð  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k x j- ’ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k/Èð¤8¡š/À𨤡š x j/Ð’ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k x j3°’ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k.0 è¤¡š2¸ð¨¤¡š1Hð¤8¡š x j1ˆ" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevNum– k x j," ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á10001– k x j2è$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁOffset– k x j- " ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ádata– k0˜$¤¡š x j/€ˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k+ø舤¡š+øè¤8¡š x j+øˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k+ø€ˆ¤¡š3àè¤8¡š/¸è¨¤¡š x j/ÈŠ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k x j3¨Š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k, ˜ô¤¡š x j1" ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ádata– k/¸è¤8¡š x j.B ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á000000000000000– k x j2ðB ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁOffset– k x j0B ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevType– k x j,ø* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á (of sender)– k x j1xB ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDevNum– k.0À褡š x j3°² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á63– k x j/в ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á32– k/À¨¤¡š/Ȥ8¡š x j- ² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á16– k-è¤8¡š,è¤8¡š, ¤8¡š3è¤8¡š,¨ˆ¤¡š x j,° ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k,¤8¡š,ˆ¤¡š08Àô¤¡š x j,€² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j,¨² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á5– k x j,Ȳ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á6– k x j,ð² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á7– k x j-ø² ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á17– k x j/ˆ° ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k-À ¤¡š,(À𤡚 x j,B ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á10001– k1@¤8¡š2€¤8¡š x j-j ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —ÁDeviceID– k x j,¨B ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0X– k k é k é k g– Interpress–90.0 mm xmin 0.0 mm ymin 136.525 mm xmax 18.34444 mm ymax –é21.16666 mm bigger topLeading 21.16666 mm bigger topIndent 1.411111 mm bigger bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoffš¥3™3[š  œ*˜3S–centered lastLineFormatting˜RšœN˜NY–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentš¨r˜rY–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜:Y–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœ‘Ïeœ¤˜½Y–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœ1«œg«œ4˜ÔY–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜ðK–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœ©œ˜#K–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœ ©œ©œ©œ˜7K–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœ ©œ©œ©œ˜7Y–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜.Y–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜.Y–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜eY–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜Y–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜ÔY–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœ•«œM˜êY–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜.Y–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜ËY–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœ ˜ Iitem–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœÏdœé˜ûY–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜ \–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœ Ïmœ¬œ4˜FY–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜—Q–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndentšœ˜R˜³Q–:clearTabStops 1.75 in flushLeft tabStop 1.75 in restIndent˜Z–jclearTabStops .68 in flushLeft tabStop 2.2 in flushLeft tabStop 4.0 in flushLeft tabStop 4.0 in restIndentšÑbfz-˜-Icode–RclearTabStops 2.1 in flushLeft tabStop 3.75 in flushLeft tabStop 4.0 in restIndent˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentšÐfs˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš›L ˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndent˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯)˜)Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯1˜1Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯4˜4Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯2˜2Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndent˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯&˜&Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯-˜-Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndent˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯4˜4Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯9˜9Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯;˜;Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯9˜9Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndent˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯-˜-Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯&˜&Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndent˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯-˜-Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯2˜2Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯4˜4Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯.˜.Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndent˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš›D€ ˜ Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndent˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯*˜*Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯!˜!Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯3˜3Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯6˜6Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯/˜/Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯$˜$Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯˜Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯!˜!Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯0˜0Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯2˜2Z–SclearTabStops 2.2 in flushLeft tabStop 4.75 in flushLeft tabStop 4.75 in restIndentš¯9˜9R–RclearTabStops 2.1 in flushLeft tabStop 3.75 in flushLeft tabStop 4.0 in restIndent˜R–RclearTabStops 2.1 in flushLeft tabStop 3.75 in flushLeft tabStop 4.0 in restIndent˜4Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentšÐbf)˜)Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš®˜Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&Z–jclearTabStops 1.6 in flushLeft tabStop 2.5 in flushLeft tabStop 3.8 in flushLeft tabStop 4.0 in restIndentš¯&˜&—— –mclearTabStops .75 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ˜RšœŒ˜Œ šœ˜\šœ˜— ˜\šœŒ˜Œ— ˜\˜ –.25 in bigger leftIndent˜.T–†0.1882353 the lineLength .mul 2.811678 .add topLeading 0.1882353 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeading–710.0 mm xmin 10.0 mm ymin 205.9 mm xmax 46.8753 mm ymax– Interpress–„ Interpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¢• k j¡¥“Äè ¤ ¨ªª ¢ ¨ÄgS‚ ¤ ¨ÂìÐX ¢ ¨"ÐèB@¡£ ¥“ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§£•£”­“"ÐèB@¡šÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¤•¤”­“#8¤¡š$@ø¤¨¡š$PH¤8¡š$0¤0¡š' ø̤¡š&ÐH¤8¡š+HH¤8¡š*H¤8¡š)XH¤8¡š$hĤ¡š$0褡š#øh¤¡š(˜H¤8¡š"ØH¤¡š"ØH¤8¡š'PH¨¤¡š$H¤8¡š$€ø ¤¡š(ðøÀ¤¡š)¨øÀ¤¡š*hø4¤¡š"Øडš¢°“¢·“ x j¤”­“¢ —(À¢ ¢ ¨  ŠÁMax-–Âæàž ¢ ¨&ˆê ¢ ¨  ŠÁ15–ÂéV ¢ ¨"à( ¢ ¨  ŠÁ0–ÂìÀ ¢ ¨'‚ ¢ ¨  ŠÁ CriticalMask–Â舾 ¢ ¨+ê ¢ ¨  ŠÁ33–Âä˜V ¢ ¨)xb ¢ ¨  ŠÁLPR–Âæ(Þ ¢ ¨(Àb ¢ ¨  ŠÁHPR–ÂæàÞ ¢ ¨Ÿ¡ ¦$Šú ¢ ¥ ¨ ¯“ °™ÀÀ—¸°—À —¡¡ ¡™Ÿ¡ ¦$ŠF ¢ ¥ ¨#8j ¢ ¨  ŠÁreason–ÂìhÖ ¢ ¨#èê ¢ ¨  ŠÁ4–Âë¸V ¢ ¨$ ¢ ¨  ŠÁ Broadcast–Âë> ¢ ¨&Øê ¢ ¨  ŠÁ16–ÂèÈV ¢ ¨(Pè ¢ ¨  ŠÁ22–ÂçPX ¢ ¨(¨ê ¢ ¨  ŠÁ23–ÂæøV ¢ ¨)ê ¢ ¨  ŠÁ25–ÂæˆV ¢ ¨)hê ¢ ¨  ŠÁ26–Âæ8V ¢ ¨)Øê ¢ ¨  ŠÁ28–ÂåÈV ¢ ¨* ê ¢ ¨  ŠÁ29–Âå€V ¢ ¨$ ê ¢ ¨  ŠÁ5–Âë€V ¢ ¨$Xê ¢ ¨  ŠÁ6–ÂëHV ¢ ¨"àè ¢ ¨  ŠÁ0–ÂìÀX ¢ ¨&ˆ* ¢ ¨  ŠÁ15–Âé ¢ ¨$HJ ¢ ¨  ŠÁ IntAction–ÂëXö ¢ ¨%‚ ¢ ¨  ŠÁDeviceID–Âê¾ ¢ ¨)x¢ ¢ ¨  ŠÁMax-–Âæ(ž ¢ ¨*8‚ ¢ ¨  ŠÁMaxORBR–Âåh¾ ¢ ¨#(” ¢ ¨  ŠÁ Interrupt-–Âìx¬ ¢ ¨ k k g–TRUEš¥;™;\–.25 in bigger leftIndentšœ˜\–.25 in bigger leftIndentšœhÏuœF˜Â\–.25 in bigger leftIndent˜\–.25 in bigger leftIndentšœQ˜Q\–.25 in bigger leftIndentšœ˜\–.25 in bigger leftIndentšœÞ˜Þ\–.25 in bigger leftIndent˜–.25 in bigger leftIndentšœº˜º\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .25 bigger leftIndentš¨/˜/\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .25 bigger leftIndentšœ ˜ \–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .25 bigger leftIndentšœ˜\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .25 bigger leftIndentšœ˜\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .25 bigger leftIndentšœ˜\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .25 bigger leftIndentšœ˜\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .25 bigger leftIndentšœ˜\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .25 bigger leftIndentšœ˜\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .25 bigger leftIndentšœ˜—\–.25 in bigger leftIndent˜\–.25 in bigger leftIndentš œ¨œ¨œ¨œ¨œŸ­œ˜ë\–.25 in bigger leftIndent˜\–.25 in bigger leftIndentš œ-¨œ¨œ¨œ™­œ˜ä\–.25 in bigger leftIndent˜\–.25 in bigger leftIndentšœ¨œ¨œ ¨œø˜¨—— ˜\–.25 in bigger leftIndentšœ˜\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .75 bigger leftIndent˜n\–LclearTabStops 1 in flushLeft tabStop 1.0 in restIndent .75 bigger leftIndentšœb˜b—— ˜RšœK«œ‰˜×šœ ˜ \šœv˜v—šœ˜\šœÀ˜À—šœ ­œ˜\˜¨\˜é—š œ ©œ©œ©œ ©œ˜B\˜º\˜æ—šœ˜\˜å—— ˜BRšœA³œÑ˜“\šœ‚˜‚\˜§\˜üK– footSeparator–1 fill topIndentStretch˜%Ifootnote•Insertfootš³œC³œ¨œ$˜Œšœ˜Iunleaded–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndentš¨)˜)_–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndent˜_–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndent˜_–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndent˜_–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndent˜ _–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndent˜_–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndent˜_–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndent˜_–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndent˜ _–8clearTabStops 2.5 in flushLeft tabStop 2.5 in restIndent˜—— ˜0Ršœ³œç˜ûK– footSeparator–1 fill topIndentStretch˜%^– footš³œ4³œ¨œ$˜}S–centered lastLineFormattingšœ˜—— ˜% šœ˜ šœJ˜J_–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentš¨˜–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœT˜T_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜$_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜&_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜'—_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœh˜h_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ>˜>_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ=˜=_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ¬˜¬_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœG˜G_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœr˜r_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ¨˜¨_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ3˜3_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ9˜9_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœV˜V_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ2˜2_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ1˜1_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœH˜H_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ1˜1_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ(˜(_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÒ˜Ò_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœe˜e_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÌ˜Ì—— šœ˜ šœ‡˜‡_–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentš¨˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ†˜†_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ.˜._–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ#˜#_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ(˜(_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœI˜I_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ“˜“_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜—— –RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜R–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜D— –RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentš¨˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜‘_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜W_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜@_–clearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 3.0 in flushLeft tabStop 3.5 in flushLeft tabStop 4.0 restIndentšœ¨˜_–clearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 3.0 in flushLeft tabStop 3.5 in flushLeft tabStop 4.0 restIndent˜_–clearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 3.0 in flushLeft tabStop 3.5 in flushLeft tabStop 4.0 restIndent˜_–clearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 3.0 in flushLeft tabStop 3.5 in flushLeft tabStop 4.0 restIndent˜_–clearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 3.0 in flushLeft tabStop 3.5 in flushLeft tabStop 4.0 restIndent˜ _–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜¬_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜ƒ_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜s_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜ù_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Å_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Î_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜‘_–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Û–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜†Itablešœ˜S–centered lastLineFormatting˜——— ˜–YclearTabStops 3.00 in flushLeft tabStop 3.3 in flushLeft tabStop 5.0 in flushLeft tabStop˜Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopšÐbz%˜%Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš˜Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš ˜ Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš*˜*Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš ˜ Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš˜Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš ˜ Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStop˜Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 4.9 in flushLeft tabStopš´˜Z–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStop˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentš…˜…Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšC˜CZ–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšÃ˜ÃZ–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndent˜S–centered lastLineFormatting˜—— –rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopšœ˜–YclearTabStops 3.00 in flushLeft tabStop 3.3 in flushLeft tabStop 5.0 in flushLeft tabStopšÐbl˜R–YclearTabStops 3.00 in flushLeft tabStop 3.3 in flushLeft tabStop 5.0 in flushLeft tabStop˜ –YclearTabStops 3.00 in flushLeft tabStop 3.3 in flushLeft tabStop 5.0 in flushLeft tabStop˜K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndent˜T–à"Gargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/timing.gargoyle at December 18, 1987 9:40:40 am PST Produced by version 8710.19 Scripts: ///Users/bland.pa/gargoyle/bland871215-09-58-30.script, ///Users/bland.pa/gargoyle/bland871217-14-54-57.script, ///Users/bland.pa/gargoyle/bland871217-15-00-27.script Slope: [T 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 4.0 4] [F 2.0 2] [F 1.0 1] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.125 1/8] [F 0.1111111 1/9] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 1.970643e-2 0.02] [F 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: F GravityExtent: 4.340278e-2 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [16.0 16.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: T [-61.0,-30.0] Entities: [22]: Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-111.176,13.52] (Line ) [-111.176,31.952] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-111.176,31.952] (Line ) [-74.312,31.952] (Line ) [-74.312,13.52] (Line ) [-37.448,13.52] (Line ) [-37.448,31.952] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-37.448,31.952] (Line ) [-0.5840006,31.952] (Line ) [-0.5840006,13.52] (Line ) [36.28,13.52] (Line ) [36.28,31.952] Text T "Clock" xerox/pressfonts/helvetica [8.192 0.0 -148.04 0.0 8.192 13.52][] F 1.0 props: ( F ) Text T "DynabusIn" xerox/pressfonts/helvetica [8.192 0.0 -148.04 0.0 8.192 -41.776][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-57.16,-31.536] (Line ) [-62.024,-40.752] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-62.024,-40.752] (Line ) [-57.16,-49.1767] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-57.16,-31.536] (Line ) [-19.016,-31.536] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-56.70314,-49.968] (Line ) [-19.016,-49.968] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-62.024,-40.752] (Line ) [-82.86563,-40.752] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-19.016,-31.536] (Line ) [-13.69514,-40.752] (Line ) [-19.016,-49.968] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-13.69514,-40.752] (Line ) [0.4399996,-40.752] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-57.16,13.52] (Line ) [-57.16,-77.104] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-37.448,13.52] (Line ) [-37.448,-77.104] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-19.016,13.52] (Line ) [-19.016,-77.104] Text T "{" xerox/pressfonts/helvetica [0.0 -16.384 -42.26839 16.384 0.0 -85.29601][] F 1.0 props: ( F ) Text T "{" xerox/pressfonts/helvetica [0.0 -16.384 -23.06839 16.384 0.0 -85.29601][] F 1.0 props: ( F ) Text T "T" xerox/pressfonts/helvetica [8.32 0.0 -49.48 0.0 8.32 -96.816][] F 1.0 props: ( F ) Text T "T" xerox/pressfonts/helvetica [8.32 0.0 -30.7961 0.0 8.32 -96.96584][] F 1.0 props: ( F ) Text T "s" xerox/pressfonts/helvetica [8.32 0.0 -44.488 0.0 8.32 -100.016][] F 1.0 props: ( F ) Text T "h" xerox/pressfonts/helvetica [8.32 0.0 -26.184 0.0 8.32 -99.888][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [] d: T F [-59.72,40.4] (Line ) [-46.28,40.4] –Ô55.02285 mm topLeading 55.02285 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–:0.0 mm xmin 0.0 mm ymin 67.14067 mm xmax 52.20062 mm ymax – Interpress–« Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄÙÄ1æy ¢ ¨¢¯“¢°“¢·“¡¡¨ÄÉ·}ÄR™Äš}˜¢¯“¢°“¢·“¡¡¨ÄÉ·}Äš}™ÄÛ·}ŽÄRÄí·}ŽÄš}˜¢¯“¢°“¢·“¡¡¨Äí·}Äš}™Äá„43ŽÄRÄ‹ŽÄš}˜ x jÄ} ¤Äñ‹ÄR ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁClock– k x jÄ} ¤Äñ‹Äëš} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á DynabusIn– k¢¯“¢°“¢·“¡¡¨ÄúkÄðš}™Äá·}Äì}—˜¢¯“¢°“¢·“¡¡¨Äá·}Äì}™ÄúkÄÐ+ù—˜¢¯“¢°“¢·“¡¡¨ÄúkÄðš}™Äö·}Ž˜¢¯“¢°“¢·“¡¡¨ÄñÓ@Äçš}™Äö·}Ž˜¢¯“¢°“¢·“¡¡¨Äá·}Äì}™Ä˜k@Ž˜¢¯“¢°“¢·“¡¡¨Äö·}Äðš}™ÄÛ­§Äì}—Äö·}Äçš}—˜¢¯“¢°“¢·“¡¡¨ÄÛ­§Äì}™Ä§"{ÙŽ˜¡¯“¢°“¢·“¡¡¨ÄúkÄR™ÄÚZ}¤¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨Äí·}ÄR™ÄÚZ}¤¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨Äö·}ÄR™ÄÚZ}¤¨¢¡¢ ¡º x jÄ} ¤ú £ÄÙÜçÄÖZ} ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á{– k x jÄ} ¤ú £Äº*ÄÖZ} ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á{– k x jÄР¤Äû+Äк} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤ÄÈ‹ÍÄÓ¯u ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤ÄêG}ÄÏ*} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ás– k x jÄР¤Äó7}ÄÏ:} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Áh– k¢¯“¡¡¨ x j¡¯“ °“¢·“Äñ'ÄÎy™ÄÔĽŽÄÎyÄñ'Ž¡¸ k k k gš¥3™3K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndent˜[–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentš œ˜'K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentšÐflÐdfœ\Ïf˜_K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentš¶·œ[˜]—W–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndent˜T–°9Gargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/timing2.gargoyle at December 18, 1987 9:41:37 am PST Produced by version 8710.19 Scripts: ///Users/bland.pa/gargoyle/bland871215-09-58-30.script, ///Users/bland.pa/gargoyle/bland871215-11-07-46.script, ///Users/bland.pa/gargoyle/bland871215-11-24-01.script, ///Users/bland.pa/gargoyle/bland871217-14-30-08.script, ///Users/bland.pa/gargoyle/bland871217-14-31-14.script, ///Users/bland.pa/gargoyle/bland871217-15-06-01.script, ///Users/bland.pa/gargoyle/bland871217-15-11-19.script, ///Users/bland.pa/gargoyle/bland871218-09-27-42.script Slope: [T 0.0] [F 15.0] [F 30.0] [F 45.0] [F 60.0] [T 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 6.5 6.5] [F 4.0 4] [F 3.5 3.5] [F 3.0 3] [F 2.361783 2.36] [F 2.0 2] [F 1.75 1.75] [F 1.0 1] [F 0.8 0.8] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.2 0.2] [F 0.1574802 0.16] [F 0.15 0.15] [F 0.125 1/8] [F 0.1111111 1/9] [F 0.0625 0.06] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.25 0.25] [F 0.2 0.2] [F 0.15 0.15] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 1.970643e-2 0.02] [F 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: T GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [16.0 16.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: T [-68.0,13.0] Entities: [33]: Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [3] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-68.0,46.3696] (Line ) [-68.0,31.624] (Line ) [-32.29178,31.63612] (Line ) [-32.29178,46.38173] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [40.608,31.63612] (Line ) [40.608,46.38173] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [4.828222,46.38173] (Line ) [4.828222,31.63612] Text T "Clock" xerox/pressfonts/helvetica [8.32 0.0 -162.976 0.0 8.32 31.81135][] F 1.0 props: ( F ) Text T "Dynabus Out" xerox/pressfonts/helvetica [8.32 0.0 -162.976 0.0 8.32 -11.19665][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-81.5168,-4.408679] (Line ) [-85.408,-11.78149] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-85.408,-11.78149] (Line ) [-81.5168,-18.77724] (Line ) [-27.09118,-18.77724] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-85.408,-11.78149] (Line ) [-104.6706,-11.78149] Text T "T" xerox/pressfonts/helvetica [8.32 0.0 -96.0704 0.0 8.32 -58.47549][] F 1.0 props: ( F ) Text T "pd" xerox/pressfonts/helvetica [8.32 0.0 -92.0768 0.0 8.32 -61.03549][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-27.0912,-4.408679] (Line ) [-25.248,-11.78149] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-25.248,-11.78149] (Line ) [-17.64857,-11.78149] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-105.12,31.624] (Line ) [-105.12,-44.56159] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-81.5168,31.624] (Line ) [-81.5168,-44.56159] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-32.29178,46.38173] (Line ) [-32.29178,75.87296] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [40.16001,46.15133] (Line ) [40.16001,75.64256] Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [39.21415,77.32309] (Bezier [37.9242,93.69912] [9.120668,77.39237] Tools ) [4.128004,87.8] (Bezier [-0.8644638,77.39237] [-29.66808,93.69912] Tools ) [-30.95809,77.32309] (Bezier [-29.66808,90.63944] [-0.8645372,75.50093] Tools ) [4.128004,86.66504] (Bezier [9.120741,75.50093] [37.92413,90.63944] Tools ) Text T "T" xerox/pressfonts/helvetica [8.32 0.0 2.323842 0.0 8.32 91.58646][] F 1.0 props: ( F ) Text T "cycle" xerox/pressfonts/helvetica [8.32 0.0 6.73249 0.0 8.32 90.50477][] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [1.311623,64.28531] (Line Tools ) [1.311623,64.28531] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [3] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [-55.95212,60.62901] (Line Tools ) [-62.67264,60.62901] (Line Tools ) [-59.31239,66.60276] (Line Tools ) [-55.95212,60.62901] Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [-80.69272,-44.36752] (Bezier [-81.15791,-50.27233] [-91.54376,-44.39249] Tools ) [-93.34399,-48.14522] (Bezier [-95.14416,-44.39249] [-105.5301,-50.27233] Tools ) [-105.9953,-44.36752] (Bezier [-105.5301,-49.16906] [-95.14416,-43.71046] Tools ) [-93.34399,-47.736] (Bezier [-91.54376,-43.71046] [-81.15791,-49.16906] Tools ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-105.12,31.624] (Line ) [-105.12,46.3696] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-105.12,46.3696] (Line ) [-68.0,46.3696] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-27.09118,-18.52123] (Line ) [-25.248,-11.78149] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-32.29178,32.648] (Line ) [-32.29178,-43.5376] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-27.7312,32.52] (Line ) [-27.7312,-43.6656] Text T "T" xerox/pressfonts/helvetica [8.32 0.0 -31.90536 0.0 8.32 -58.25902][] F 1.0 props: ( F ) Text T "m" xerox/pressfonts/helvetica [8.32 0.0 -28.1536 0.0 8.32 -60.66401][] F 1.0 props: ( F ) Text T "{" xerox/pressfonts/Laurel [0.0 -8.192 -27.01818 8.192 0.0 -48.76][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-81.4016,-4.505922] (Line ) [-26.97598,-4.505922] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-32.29178,46.38173] (Line ) [4.828222,46.38173] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [4.828222,31.63612] (Line ) [40.608,31.63612] –Ô62.24934 mm topLeading 62.24934 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–:0.0 mm xmin 0.0 mm ymin 73.93658 mm xmax 59.42711 mm ymax – Interpress–Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄQˆ}Ä %' ¢ ¨¢¯“¢°“¢·“¡¡¨\ÄhàC™Äq}ÄÓyaÄ-Ùs—Ä!³º˜¢¯“¢°“¢·“¡¡¨ÄÔ}Ä-Ùs™Ä!³º˜¢¯“¢°“¢·“¡¡¨Ä£Ä!³º™Ä-Ùs˜ x jÄР¤Ä°l}ÄJoW ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁClock– k x jÄР¤Ä°l}ÄõŒï ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Dynabus Out– k¢¯“¢°“¢·“¡¡¨ÄÐŽ•Äöz)™ÄÖL}Äî…—˜¢¯“¢°“¢·“¡¡¨ÄÖL}Äî…™ÄÐŽ•Äáµ—ÄÝ/IŽ˜¢¯“¢°“¢·“¡¡¨ÄÖL}Äî…™ÄÝ?UŽ˜ x jÄР¤Äå[GÄÑgÌ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤Äÿ#ádÄÞb ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ápd– k¢¯“¢°“¢·“¡¡¨ÄÞY>Äöz)™Äó¬}Äî…—˜¢¯“¢°“¢·“¡¡¨Äó¬}Äî…™Äçß^Ž˜¡¯“¢°“¢·“¡¡¨Äõ¼Äq}™Äܪˤ¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨ÄÐŽ•Äq}™Äܪˤ¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨ÄÓyaÄ!³º™ÄHQô¤¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨Ä)í ËÄg˜™ÄEp뤨¢¡¢ ¡º¡¡¨ÄMøýÄ¢A™Ä2ÐWÄ)\qÄÁ ÄnóoÄÝzÄ·¡’ÄúþËÄnóoÄäÄëÄ)\qÄëΧÄ¢A¡’ÄäÄëÄ4 “ÄüïŒÄž`ÄÝzÄD¹Ë¡’Ä ‚CÄž`Ä{‘Ä4 “ÄMøýÄ¢A¡’¡¡¡¡™ x jÄР¤Ä\ 1Ä/•… ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤ÄègÄ%i ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ácycle– k¡¡¨ÄÇ”³Äë¹u™ÄùúÄÔàÄÆÉ Äß¿ºÄÒl}ÄÒ­ñ¡’ÄÖ¿oÄß¿ºÄÝÉSÄÔàĨ£ÓÄë¹u¡’ÄÝÉSÄÊ›ÄÖ¿oÄÀPuÄÒl}Äè±}¡’ÄÆÉ ÄÀPuÄùúÄÊ›ÄÇ”³Äë¹u¡’¡¡¡¡™¢¯“¢°“¢·“¡¡¨Äõ¼Äq}™ÄhàC˜¢¯“¢°“¢·“¡¡¨Äõ¼ÄhàC™\Ž˜¢¯“¢°“¢·“¡¡¨ÄÝ/IÄíC™Äó¬}Äî…—˜¡¯“¢°“¢·“¡¡¨ÄÓyaÄñ}™ÄÒà ¤¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨Ä²9ÎÄ-™ÄÊô7¤¨¢¡¢ ¡º x jÄР¤ÄØ~=ÄÚ9¦ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤ÄÞY2Äâa} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ám– k x jÄ} ¤ú £Äú27Äû= ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ Laurel-mrr£¡ “ •  —¡¡¨  Š¡²“Á{– k¢¯“¢°“¢·“¡¡¨ÄמÄõ™O™ÄÜéMŽ˜¢¯“¢°“¢·“¡¡¨ÄÓyaÄ!³º™Ä£Ž˜¢¯“¢°“¢·“¡¡¨Ä£Ä-Ùs™ÄÔ}Ž˜¢¯“¡¡¨ x j¡¯“ °“¢·“Ä®x}ÄõÛ'™Ä@Ü£ÄÎ}ŽÄõÛ'Ä®x}Ž¡¸ k k k gš¥3™3[–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentš œ ˜(K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentš¶·œ@˜GK–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentš¶·œ^˜aK–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentš¶·œg˜j—S–centered lastLineFormatting˜K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndent˜–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentšµ ˜ K–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop š´Ñbdz´¹´¹˜'K–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop š œ¬œÐrtœ¬!œ¬ œ¬0œ¬&œ˜ÂK–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop š ºœºœºœºœºœºœº˜S–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop ˜—— ˜) ˜T–ƤInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄÎ[¹ÄñË ¢ ¨ x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¯ÖÄBy' ¢ ¥ ¨  Š¡²“ÁD0– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¯ÖÄa1 ¢ ¥ ¨  Š¡²“ÁD1– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¯ÖĉõE ¢ ¥ ¨  Š¡²“ÁD2– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¯ÖÄ¡}P ¢ ¥ ¨  Š¡²“ÁD3– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¯ÖÄë‚ ¢ ¥ ¨  Š¡²“ÁD4– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¯ÖÄÁ]^ ¢ ¥ ¨  Š¡²“ÁD5– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¯ÖÄ‘WF ¢ ¥ ¨  Š¡²“ÁD6– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¯Öăƒ ¢ ¥ ¨  Š¡²“ÁD7– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄoMLÄ7’ ¢ ¥ ¨  Š¡²“ÁVREF– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄDa/Ä5A ¢ ¥ ¨  Š¡²“ÁCOMP– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä Ä1< ¢ ¥ ¨  Š¡²“Á FS ADJUST– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä6©%Ķ¶c ¢ ¥ ¨  Š¡²“ÁIOR– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä6©%Ä4h ¢ ¥ ¨  Š¡²“ÁIOB– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä6©%ÄkÁ; ¢ ¥ ¨  Š¡²“ÁIOG– k¡¡¨Ä\D=ÄU(™Ä+XÁŽÄ¤ÏMÄ\D=ŽÄU(¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄSK9Ä^  ¢ ¥ ¨  Š¡²“ÁAGND– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¦6qÄ+y ¢ ¥ ¨  Š¡²“ÁVAA– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄÛá©Ä~9 ¢ ¥ ¨  Š¡²“ÁLD*– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄÛá©Ä^  ¢ ¥ ¨  Š¡²“ÁCLOCK*– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄÛá©Ä+y ¢ ¥ ¨  Š¡²“ÁCLOCK– k¡¡¨ÄI\;ÄÆ]X™Ä7™Ä7¡¡¡¡™ x j k¡¡¨Ä\D=ÄàAg™Ä+XÁŽÄ»aVÄ\D=ŽÄàAg¡¡¡¡™ x j k¡¡¨Ä\D=Ä·nU™Ä+XÁŽÄÄ\D=ŽÄ·nU¡¡¡¡™ x j k¡¡¨ÄI\;ÄZ•/™Äk™Äk¡¡¡¡™ x j k¡¡¨ÄI\;ÄÔ‰ê™Ä=ÄI\;ŽÄBS(¡¡¡¡™ x j k¡¡¨ÄI\;ÄM/™Ä‹(ÄI\;ŽÄ8eÈ¡¡¡¡™ x j k¡¡¨ÄI\;ćÃX™Ä™Ä¡¡¡¡™ x j k¡¡¨ÄI\;ÄSýD™Ä ¢ ¥ ¨  Š¡²“ÁA12– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄF.Ä"‘ ¢ ¥ ¨  Š¡²“ÁB10– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄF.Äz 9 ¢ ¥ ¨  Š¡²“ÁC10– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄI\;Äõ@ ¢ ¥ ¨  Š¡²“ÁM9– k¡¡¨ÄQÄqÆ£ ¢ ¥ ¨  Š¡²“ÁRQ– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄKÄ+y ¢ ¥ ¨  Š¡²“ÁDATAOUT– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä€1µÄ^  ¢ ¥ ¨  Š¡²“Á ParityOut– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä€1µÄ~9 ¢ ¥ ¨  Š¡²“Á HeaderOut– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä*g8ÄÞ9n ¢ ¥ ¨  Š¡²“ÁnCE– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä&k6Ä7’ ¢ ¥ ¨  Š¡²“ÁDACData2– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä&k6ÄkÚ3 ¢ ¥ ¨  Š¡²“ÁDACData3– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä&k6ăƒ ¢ ¥ ¨  Š¡²“ÁDACData4– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä&k6Ä‘WF ¢ ¥ ¨  Š¡²“ÁDACData5– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä&k6ÄÁ]^ ¢ ¥ ¨  Š¡²“ÁDACData6– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä&k6Äë‚ ¢ ¥ ¨  Š¡²“ÁDACData7– k¡¡¨ÄPëeÄ`/™Ä¢ ÁŽÄQÅ(ÄPëeŽÄ`/¡¡¡¡™ x j k¡¡¨ÄPëeÄe1™Ä¢ ÁŽÄ§$QÄPëeŽÄe1¡¡¡¡™ x j k¡¡¨ÄPëeĬ»S™Ä¢ ÁŽÄ‡`AÄPëeŽÄ¬»S¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä&k6Ä1< ¢ ¥ ¨  Š¡²“ÁDACData1– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä&k6Ä5A ¢ ¥ ¨  Š¡²“ÁDACData0– k¡¡¨Ä1ß>ÄM™Ä¢ ÁŽÄ‡­CÄ1ß>ŽÄM¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%Ä>J ¢ ¥ ¨  Š¡²“ÁParityIn– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä€Q¶Ä4Ä= ¢ ¥ ¨  Š¡²“Á SharedOut– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä€Q¶ÄTã` ¢ ¥ ¨  Š¡²“ÁOwnerOut– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%Ä4Ä= ¢ ¥ ¨  Š¡²“ÁSharedIn– k¡¡¨ÄPëeÄÔ‰ê™Ä¢ ÁŽÄ2 7ÄPëeŽÄԉꡡ¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä€Q¶ÄØ ¢ ¥ ¨  Š¡²“Á SpareOut1– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%ÄTã` ¢ ¥ ¨  Š¡²“ÁOwnerIn– k¡¡¨ÄS†ÄR±%™Ä „9ŽÄz!ŽÄS†ŽÄR±%¡¡¡¡™ x j k¡¡¨ÄPëeÄ…ˆ?™Ä¢ ÁŽÄŸKÄPëeŽÄ…ˆ?¡¡¡¡™ x j k¡¡¨ÄPëeÄU(™Ä¢ ÁŽÄ¤ÏMÄPëeŽÄU(¡¡¡¡™ x j k¡¡¨ÄPëeÄb·/™Ä¢ ÁŽÄ ÄPëeŽÄb·/¡¡¡¡™ x j k¡¡¨ÄPëeÄàAg™Ä¢ ÁŽÄ»aVÄPëeŽÄàAg¡¡¡¡™ x j k¡¡¨ÄPëeÄ·nU™Ä¢ ÁŽÄÄPëeŽÄ·nU¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ®¹• ¢ ¥ ¨  Š¡²“Á VDataOut31– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄáC½ ¢ ¥ ¨  Š¡²“Á VDataOut30– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ9¬ ¢ ¥ ¨  Š¡²“Á VDataOut29– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ|Ce ¢ ¥ ¨  Š¡²“Á VDataOut28– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄeæ ¢ ¥ ¨  Š¡²“Á VDataOut27– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄnbW ¢ ¥ ¨  Š¡²“Á VDataOut26– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikĤ݀ ¢ ¥ ¨  Š¡²“Á VDataOut25– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ0^% ¢ ¥ ¨  Š¡²“Á VDataOut24– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄØ6£ ¢ ¥ ¨  Š¡²“Á VDataOut23– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ\ÚE ¢ ¥ ¨  Š¡²“Á VDataOut22– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ7ö) ¢ ¥ ¨  Š¡²“Á VDataOut21– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikć¥b ¢ ¥ ¨  Š¡²“Á VDataOut20– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄQe: ¢ ¥ ¨  Š¡²“Á VDataOut19– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄvS ¢ ¥ ¨  Š¡²“Á VDataOut18– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ8;' ¢ ¥ ¨  Š¡²“Á VDataOut17– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄvXQ ¢ ¥ ¨  Š¡²“Á VDataOut16– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄRå8 ¢ ¥ ¨  Š¡²“Á VDataOut15– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄÍn‰ ¢ ¥ ¨  Š¡²“Á VDataOut14– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄAN+ ¢ ¥ ¨  Š¡²“Á VDataOut13– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ{ P ¢ ¥ ¨  Š¡²“Á VDataOut12– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄPù4 ¢ ¥ ¨  Š¡²“Á VDataOut11– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikĘéa ¢ ¥ ¨  Š¡²“Á VDataOut10– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ  ¢ ¥ ¨  Š¡²“Á VDataOut5– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikĦA^ ¢ ¥ ¨  Š¡²“Á VDataOut0– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ`87 ¢ ¥ ¨  Š¡²“Á VDataOut1– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ™ýY ¢ ¥ ¨  Š¡²“Á VDataOut2– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ¢‹_ ¢ ¥ ¨  Š¡²“Á VDataOut3– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ…¦O ¢ ¥ ¨  Š¡²“Á VDataOut4– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ2¨ ¢ ¥ ¨  Š¡²“Á VDataOut7– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄJf- ¢ ¥ ¨  Š¡²“Á VDataOut6– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄG ¢ ¥ ¨  Š¡²“Á VDataOut8– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄJikÄ(ɺ ¢ ¥ ¨  Š¡²“Á VDataOut9– k¡¡¨ÄPëeÄ/(™Ä¢ ÁŽÄd8UÄPëeŽÄ/(¡¡¡¡™ x j k¡¡¨ÄPëeÄV)H™Ä¢ ÁŽÄ{lgÄPëeŽÄV)H¡¡¡¡™ x j k¡¡¨ÄPëeÄÏ뫙Ģ ÁŽÄ@‡5ÄPëeŽÄÏë«¡¡¡¡™ x j k¡¡¨ÄPëeÄSýD™Ä¢ ÁŽÄ½8™ÄPëeŽÄSýD¡¡¡¡™ x j k¡¡¨ÄPëeÄMÅ>™Ä¢ ÁŽÄQ£AÄPëeŽÄMÅ>¡¡¡¡™ x j k¡¡¨ÄPëeÄH˜9™Ä¢ ÁŽÄ£9€ÄPëeŽÄH˜9¡¡¡¡™ x j k¡¡¨ÄPëeÄx;]™Ä¢ ÁŽÄ¥¯€ÄPëeŽÄx;]¡¡¡¡™ x j k¡¡¨ÄPëeÄwe[™Ä¢ ÁŽÄžóyÄPëeŽÄwe[¡¡¡¡™ x j k¡¡¨ÄPëeÄ •É™Ä¢ ÁŽÄ^¢GÄPëeŽÄ •É¡¡¡¡™ x j k¡¡¨ÄPëeÄWÈA™Ä¢ ÁŽÄHÄPëeŽÄWÈA¡¡¡¡™ x j k¡¡¨ÄPëeÄç{©™Ä¢ ÁŽÄÆבÄPëeŽÄç{©¡¡¡¡™ x j k¡¡¨ÄPëeÄ]C™Ä¢ ÁŽÄ=/,ÄPëeŽÄ]C¡¡¡¡™ x j k¡¡¨ÄPëeÄÀ뉙Ä¢ ÁŽÄ§ÃwÄPëeŽÄÀ뉡¡¡¡™ x j k¡¡¨ÄPëeÄ€wZ™Ä¢ ÁŽÄ(ÄPëeŽÄ€wZ¡¡¡¡™ x j k¡¡¨ÄPëeÄÉU™Ä¢ ÁŽÄk+JÄPëeŽÄÉU¡¡¡¡™ x j k¡¡¨ÄPëeħb™Ä¢ ÁŽÄg†õÄPëeŽÄ§b¡¡¡¡™ x j k¡¡¨ÄPëeÄŽ‘`™Ä¢ ÁŽÄ]©?ÄPëeŽÄŽ‘`¡¡¡¡™ x j k¡¡¨ÄPëeÄ—ïe™Ä¢ ÁŽÄOÐ5ÄPëeŽÄ—ïe¡¡¡¡™ x j k¡¡¨ÄPëeÄI!0™Ä¢ ÁŽÄMÈ3ÄPëeŽÄI!0¡¡¡¡™ x j k¡¡¨ÄPëećÃX™Ä¢ ÁŽÄ秖ÄPëeŽÄ‡ÃX¡¡¡¡™ x j k¡¡¨ÄPëeÄ8eșĢ ÁŽÄ>‹(ÄPëeŽÄ8eÈ¡¡¡¡™ x j k¡¡¨ÄPëeÄJQ/™Ä¢ ÁŽÄpaGÄPëeŽÄJQ/¡¡¡¡™ x j k¡¡¨ÄPëeÄX7™Ä¢ ÁŽÄCI*ÄPëeŽÄX7¡¡¡¡™ x j k¡¡¨ÄPëeĦÓg™Ä¢ ÁŽÄvZIÄPëeŽÄ¦Óg¡¡¡¡™ x j k¡¡¨ÄPëeÄM/™Ä¢ ÁŽÄ,KÄPëeŽÄM/¡¡¡¡™ x j k¡¡¨ÄPëeÄBS(™Ä¢ ÁŽÄe>=ÄPëeŽÄBS(¡¡¡¡™ x j k¡¡¨ÄPëeÄrD™Ä¢ ÁŽÄ_³9ÄPëeŽÄrD¡¡¡¡™ x j k¡¡¨ÄPëeÄO½/™Ä¢ ÁŽÄQƒ0ÄPëeŽÄO½/¡¡¡¡™ x j k¡¡¨ÄPëeÄŽiS™Ä¢ ÁŽÄIÙ+ÄPëeŽÄŽiS¡¡¡¡™ x j k¡¡¨ÄPëeÄU1™Ä¢ ÁŽÄ‚?KÄPëeŽÄU1¡¡¡¡™ x j k¡¡¨ÄPëeÄRs/™Ä¢ ÁŽÄ±WeÄPëeŽÄRs/¡¡¡¡™ x j k¡¡¨ÄPëeĦڣ™Ä¢ ÁŽÄdybÄPëeŽÄ¦Ú£¡¡¡¡™ x j k¡¡¨ÄPëeÄluh™Ä¢ ÁŽÄ‘.‹ÄPëeŽÄluh¡¡¡¡™ x j k¡¡¨ÄPëeÄ‹"ƒ™Ä¢ ÁŽÄ¤ß›ÄPëeŽÄ‹"ƒ¡¡¡¡™ x j k¡¡¨ÄPëeÄc{\™Ä¢ ÁŽÄLãGÄPëeŽÄc{\¡¡¡¡™ x j k¡¡¨ÄPëeÄgàG™Ä¢ ÁŽÄ%y"ÄPëeŽÄgàG¡¡¡¡™ x j k¡¡¨ÄPëeÄÈp³™Ä¢ ÁŽÄqBeÄPëeŽÄÈp³¡¡¡¡™ x j k¡¡¨ÄPëeÄTIJ™Ä¢ ÁŽÄ€ãqÄPëeŽÄTIJ¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%ÄØ ¢ ¥ ¨  Š¡²“ÁSpareIn1– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä€Q¶ÄØÕë ¢ ¥ ¨  Š¡²“Á SpareOut0– k¡¡¨ÄS†Ä%W*™Ä „9ŽÄ¤Å¹ÄS†ŽÄ%W*¡¡¡¡™ x j k¡¡¨ÄS†ÄÔ‰ê™Ä „9ŽÄ2 7ÄS†ŽÄԉꡡ¡¡™ x j k¡¡¨ÄPëeÄk~-™Ä¢ ÁŽÄZÕ&ÄPëeŽÄk~-¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄKćâ9 ¢ ¥ ¨  Š¡²“ÁSStopOut– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%ÄQk# ¢ ¥ ¨  Š¡²“ÁHeaderIn– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%Ä7 ¢ ¥ ¨  Š¡²“ÁDATAIN– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%ćâ9 ¢ ¥ ¨  Š¡²“ÁSStopIn– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%Ä+y ¢ ¥ ¨  Š¡²“Á GPriority– k¡¡¨Ä[{pÄ¢ÑH™Ä~º›ŽÄS³%Ä[{pŽÄ¢ÑH¡¡¡¡™ x j k¡¡¨Ä¹RãÄa4+™ÄèŽÄ¢ÑHĹRãŽÄa4+¡¡¡¡™ x j k¡¡¨ÄjåƒÄ’âA™Ä[{pŽÄa4+Äj僎Ä’âA¡¡¡¡™ x j k¡¡¨ÄU£iÄ´·P™Ä¹RãŽÄ’âAÄU£iŽÄ´·P¡¡¡¡™ x j k¡¡¨ÄXÛmĤØI™Äj僎Ä´·PÄXÛmŽÄ¤ØI¡¡¡¡™ x j k¡¡¨Ä{٘Ā«9™ÄU£iŽÄ¤ØIÄ{Ù˜ŽÄ€«9¡¡¡¡™ x j k¡¡¨Ä¾‘êĉ¦=™ÄXÛmŽÄ€«9ľ‘êŽÄ‰¦=¡¡¡¡™ x j k¡¡¨ÄJã\ÄÞ7Ô™Ä{Ù˜ŽÄ‰¦=ÄJã\ŽÄÞ7Ô¡¡¡¡™ x j k¡¡¨Ä¥Ä^µ*™Ä¾‘êŽÄÞ7ÔÄ¥ŽÄ^µ*¡¡¡¡™ x j k¡¡¨ÄNáaÄÆ]X™ÄJã\ŽÄ^µ*ÄNáaŽÄÆ]X¡¡¡¡™ x j k¡¡¨Ä,´7Ä<יĥŽÄÆ]XÄ,´7ŽÄ<ס¡¡¡™ x j k¡¡¨Ä6nCÄx,§™ÄNáaŽÄ<×Ä6nCŽÄx,§¡¡¡¡™ x j k¡¡¨Ä77DÄ`Ó+™Ä,´7ŽÄx,§Ä77DŽÄ`Ó+¡¡¡¡™ x j k¡¡¨Äk!„Ä{Í7™Ä6nCŽÄ`Ó+Äk!„ŽÄ{Í7¡¡¡¡™ x j k¡¡¨Ä@åPÄH ™Ä77DŽÄ{Í7Ä@åPŽÄH ¡¡¡¡™ x j k¡¡¨ÄEÄ+y™Äk!„ŽÄH ÄEŽÄ+y¡¡¡¡™ x j k¡¡¨ÄL-^Ä”gB™Ä@åPŽÄ+yÄL-^ŽÄ”gB¡¡¡¡™ x j k¡¡¨Ä¡ÿÈÄ ¸é™ÄEŽÄ”gBÄ¡ÿÈŽÄ ¸é¡¡¡¡™ x j k¡¡¨Ä:ôIÄÆ]X™ÄY™mŽÄÞ7ÔÄ:ôIŽÄÆ]X¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä6nCÄt—4 ¢ ¥ ¨  Š¡²“Á64– k¡¡¨ÄPëeÄc>k™Ä¢ ÁŽÄCÓIÄPëeŽÄc>k¡¡¡¡™ x j k¡¡¨ÄS†Äc>k™Ä „9ŽÄCÓIÄS†ŽÄc>k¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%ÄR , ¢ ¥ ¨  Š¡²“Á nDExecute– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%Ę›Q ¢ ¥ ¨  Š¡²“ÁnDFreeze– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%Ä· ¢ ¥ ¨  Š¡²“Á DSerialIn– k¡¡¨ÄPëeÄh#/™Ä¢ ÁŽÄ‡A=ÄPëeŽÄh#/¡¡¡¡™ x j k¡¡¨Ä1ß>Ä7>7™Ä¢ ÁŽÄCgCÄ1ß>ŽÄ7>7¡¡¡¡™ x j k¡¡¨ÄS†Äk~-™Ä „9ŽÄZÕ&ÄS†ŽÄk~-¡¡¡¡™ x j k¡¡¨ÄS†ÄK>™Ä „9ŽÄiã•ÄS†ŽÄK>¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä[¼}ÄMsO ¢ ¥ ¨  Š¡²“ÁnVSync– k¡¡¨Ä1ß>Ä&l'™Ä¢ ÁŽÄŸo¥Ä1ß>ŽÄ&l'¡¡¡¡™ x j k¡¡¨Ä1ß>Äm'q™Ä¢ ÁŽÄH‘KÄ1ß>ŽÄm'q¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä‘ÖÅÄ€u ¢ ¥ ¨  Š¡²“ÁnBlank– k¡¡¨ÄS†Äm0™Ä „9ŽÄ{ë§ÄS†ŽÄm0¡¡¡¡™ x j k¡¡¨ÄS†Ääqb™Ä „9ŽÄ‡K:ÄS†ŽÄäqb¡¡¡¡™ x j k¡¡¨ÄPëeÄÆ]X™Ä¢ ÁŽÄÞ7ÔÄPëeŽÄÆ]X¡¡¡¡™ x j k¡¡¨ÄPëeÄm0™Ä¢ ÁŽÄ{ë§ÄPëeŽÄm0¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%ÄqÆ£ ¢ ¥ ¨  Š¡²“ÁGrant– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä)GFÄ[+ù ¢ ¥ ¨  Š¡²“ÁClock– k¡¡¨ÄS†Ä f«™Ä „9ŽÄ“ ÄS†ŽÄ f«¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä[¼}Äý ¢ ¥ ¨  Š¡²“ÁnHSync– k¡¡¨Ä4T_Ä[ñ'™ÄxAÚŽÄ[ù'Ä4T_ŽÄ[ñ'¡¡¡¡™ x j k¡¡¨Ä/ãWÄ£ ™Ä\›¨ŽÄ[ñ'Ä/ãWŽÄ£ ¡¡¡¡™ x j k¡¡¨ÄQô•Ä[á'™Ä4T_ŽÄ£ ÄQô•ŽÄ[á'¡¡¡¡™ x j k¡¡¨ÄKÙŠÄ[Ù'™Ä/ãWŽÄ[á'ÄKÙŠŽÄ[Ù'¡¡¡¡™ x j k¡¡¨ÄÄíÄ› ™ÄQô•ŽÄ[Ù'ÄÄíŽÄ› ¡¡¡¡™ x j k¡¡¨Ä|•ãÄ[É'™ÄKÙŠŽÄ› Ä|•ãŽÄ[É'¡¡¡¡™ x j k¡¡¨Äé©Ä[Á'™ÄÄíŽÄ[É'Äé©ŽÄ[Á'¡¡¡¡™ x j k¡¡¨Äx)Ä“ ™Ä|•ãŽÄ[Á'Äx)ŽÄ“ ¡¡¡¡™ x j k¡¡¨ÄYC£Ä[±'™Äé©ŽÄ“ ÄYC£ŽÄ[±'¡¡¡¡™ x j k¡¡¨ÄJø‰Ä f«™Äx)ŽÄ[±'ÄJø‰ŽÄ f«¡¡¡¡™ x j k¡¡¨Ä$£CÄÎØÅ™ÄYC£ŽÄ f«Ä$£CŽÄÎØÅ¡¡¡¡™ x j k¡¡¨Ä}­æÄ­ÍJ™ÄJø‰ŽÄÎØÅÄ}­æŽÄ­ÍJ¡¡¡¡™ x j k¡¡¨ÄM2Ĉ-:™Ä$£CŽÄ­ÍJÄM2ŽÄˆ-:¡¡¡¡™ x j k¡¡¨ÄÉUqÄAŒ‰™Ä}­æŽÄˆ-:ÄÉUqŽÄAŒ‰¡¡¡¡™ x j k¡¡¨Ä†«÷Ä|Z5™ÄM2ŽÄAŒ‰Ä†«÷ŽÄ|Z5¡¡¡¡™ x j k¡¡¨ÄE1Ä7™ÄÉUqŽÄ|Z5ÄE1ŽÄ7¡¡¡¡™ x j k¡¡¨Ä'¾IÄ´y™Ä†«÷ŽÄ7Ä'¾IŽÄ´y¡¡¡¡™ x j k¡¡¨Ä6òeÄY&™ÄE1ŽÄ´yÄ6òeŽÄY&¡¡¡¡™ x j k¡¡¨Ä5Í<Ä f«™ÄlmÃŽÄ“ Ä5Í<ŽÄ f«¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä}­æÄ3q ¢ ¥ ¨  Š¡²“Á64– k¡¡¨Ä[{pÄþ9™Ä~º›ŽÄ˜ÚCÄ[{pŽÄþ9¡¡¡¡™ x j k¡¡¨Ä¹RãÄ¡ÝG™ÄèŽÄþ9ĹRãŽÄ¡ÝG¡¡¡¡™ x j k¡¡¨ÄjåƒÄ]p)™Ä[{pŽÄ¡ÝGÄj僎Ä]p)¡¡¡¡™ x j k¡¡¨ÄU£iÄaö+™Ä¹RãŽÄ]p)ÄU£iŽÄaö+¡¡¡¡™ x j k¡¡¨ÄXÛmÄöã™Äj僎Äaö+ÄXÛmŽÄöã¡¡¡¡™ x j k¡¡¨Ä{٘đí!™ÄU£iŽÄöãÄ{Ù˜ŽÄ‘í!¡¡¡¡™ x j k¡¡¨Ä¾‘êÄE™ÄXÛmŽÄ‘í!ľ‘êŽÄE¡¡¡¡™ x j k¡¡¨ÄJã\Ä{맙Ä{Ù˜ŽÄEÄJã\ŽÄ{맡¡¡¡™ x j k¡¡¨Ä¥ÄVk&™Ä¾‘êŽÄ{ë§Ä¥ŽÄVk&¡¡¡¡™ x j k¡¡¨ÄNáaÄm0™ÄJã\ŽÄVk&ÄNáaŽÄm0¡¡¡¡™ x j k¡¡¨Ä,´7ÄFs™Ä¥ŽÄm0Ä,´7ŽÄFs¡¡¡¡™ x j k¡¡¨Ä6nCÄsÜ3™ÄNáaŽÄFsÄ6nCŽÄsÜ3¡¡¡¡™ x j k¡¡¨Ä77DÄû ™Ä,´7ŽÄsÜ3Ä77DŽÄû ¡¡¡¡™ x j k¡¡¨Äk!„Ä?™Ä6nCŽÄû Äk!„ŽÄ?¡¡¡¡™ x j k¡¡¨Ä@åPÄa•+™Ä77DŽÄ?Ä@åPŽÄa•+¡¡¡¡™ x j k¡¡¨ÄEÄqÆ£™Äk!„ŽÄa•+ÄEŽÄqÆ£¡¡¡¡™ x j k¡¡¨ÄL-^ÄhQ.™Ä@åPŽÄqÆ£ÄL-^ŽÄhQ.¡¡¡¡™ x j k¡¡¨Ä¡ÿÈÄ“ZA™ÄEŽÄhQ.Ä¡ÿÈŽÄ“ZA¡¡¡¡™ x j k¡¡¨Ä:ôIÄm0™ÄY™mŽÄ{ë§Ä:ôIŽÄm0¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä6nCÄ¢ÑH ¢ ¥ ¨  Š¡²“Á2– k¡¡¨ÄS†ÄÆ]X™Ä „9ŽÄÞ7ÔÄS†ŽÄÆ]X¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄDžuÄqm; ¢ ¥ ¨  Š¡²“ÁDShiftCK– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%Ķ¶c ¢ ¥ ¨  Š¡²“ÁDSelect– k¡¡¨ÄPëeÄK>™Ä¢ ÁŽÄiã•ÄPëeŽÄK>¡¡¡¡™ x j k¡¡¨ÄPëeij†›™Ä¢ ÁŽÄ­ù–ÄPëeŽÄ³†›¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä,¡BÄ5  ¢ ¥ ¨  Š¡²“Á VOvlDataOut0– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä,¡BÄWUM ¢ ¥ ¨  Š¡²“Á VOvlDataOut1– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä,¡BÄΠ¢ ¥ ¨  Š¡²“Á VOvlDataOut2– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä,¡BÄR.K ¢ ¥ ¨  Š¡²“Á VOvlDataOut3– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä,¡BÄEùA ¢ ¥ ¨  Š¡²“Á VOvlDataOut4– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä,¡BÄT•P ¢ ¥ ¨  Š¡²“Á VOvlDataOut5– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä,¡BĤž ¢ ¥ ¨  Š¡²“Á VOvlDataOut6– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä,¡BÄÛ × ¢ ¥ ¨  Š¡²“Á VOvlDataOut7– k¡¡¨ÄPëeÄøIŒ™Ä¢ ÁŽÄ —ÄPëeŽÄøIŒ¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%ÄØÕë ¢ ¥ ¨  Š¡²“ÁSpareIn0– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄlŸJÄ[+ù ¢ ¥ ¨  Š¡²“ÁCkOut– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄX%Ä^  ¢ ¥ ¨  Š¡²“ÁTestEn– k¡¡¨ÄPëeÄ%W*™Ä¢ ÁŽÄ¤Å¹ÄPëeŽÄ%W*¡¡¡¡™ x j k¡¡¨ÄPëeÄ-;4™Ä¢ ÁŽÄ5‰ÄPëeŽÄ-;4¡¡¡¡™ x j k¡¡¨ÄS†Ä-;4™Ä „9ŽÄ5‰ÄS†ŽÄ-;4¡¡¡¡™ x j k¡¡¨ÄPëeÄR±%™Ä¢ ÁŽÄz!ŽÄPëeŽÄR±%¡¡¡¡™ x j k¡¡¨ÄS†ÄÝï`™Ä „9ŽÄEgÄS†ŽÄÝï`¡¡¡¡™ x j k¡¡¨ÄPëeÄ+™Ä¢ ÁŽÄÈ«fÄPëeŽÄ+¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä€Q¶Ä· ¢ ¥ ¨  Š¡²“Á DSerialOut– k¡¡¨ÄPëeÄ ™Ä¢ ÁŽÄ;3ÄPëeŽÄ ¡¡¡¡™ x j k¡¡¨ÄS†ÄŽiS™Ä „9ŽÄIÙ+ÄS†ŽÄŽiS¡¡¡¡™ x j k¡¡¨Ä „9Äþzo™ÄPëeŽÄg=-Ä „9ŽÄþzo¡¡¡¡™ x j k¡¡¨Ä „9Ä.÷©™ÄPëeŽÄiÝ;Ä „9ŽÄ.÷©¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄF'ÄAÕ%™Ä]¢Ä{cÖ—ÄF'ÄDä'—˜ k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨Ä w ¤ÄË8Ä´ÉÜ ¢ ¥ ¨  Š¡²“ÁDDC– k¡¡¨Ä „9Ä®_Í™ÄPëeŽÄØuþÄ „9ŽÄ®_Í¡¡¡¡™ x j k¡¡¨Ä1ß>Äi¥™ÄD‚UŽÄcýeÄ1ß>ŽÄi¥¡¡¡¡™ x j k¡¡¨Ä‚Ú£Äi¥™ÄD‚UŽÄ&\'Ä‚Ú£ŽÄi¥¡¡¡¡™ x j k¡¡¨ÄPëeÄNO™Ä1ß>ŽÄcýeÄPëeŽÄNO¡¡¡¡™ x j k¡¡¨ÄPëeÄi¥™Ä‚Ú£ŽÄcýeÄPëeŽÄi¥¡¡¡¡™ x j k¡¡¨Ä „9ÄrØ;™ÄPëeŽÄO¬Ä „9ŽÄrØ;¡¡¡¡™ x j k¡¡¨Ä1ß>Ä@C™ÄD‚UŽÄiÐmÄ1ß>ŽÄ@C¡¡¡¡™ x j k¡¡¨Ä‚Ú£Ä@C™ÄD‚UŽÄ<Á?Ä‚Ú£ŽÄ@C¡¡¡¡™ x j k¡¡¨ÄPëeÄ™Ä1ß>ŽÄiÐmÄPëeŽÄ¡¡¡¡™ x j k¡¡¨ÄPëeÄ@C™Ä‚Ú£ŽÄiÐmÄPëeŽÄ@C¡¡¡¡™ x j k¡¡¨Ä „9IJәÄN_‰ŽÄ›'Ä „9ŽÄ²Ó¡¡¡¡™ x j k¡¡¨Ä–µÄ²Ó™ÄN_‰ŽÄºfÄ–µŽÄ²Ó¡¡¡¡™ x j k¡¡¨Ä\v£Äl:;™Ä „9ŽÄ›'Ä\v£ŽÄl:;¡¡¡¡™ x j k¡¡¨Ä\v£Ä²Ó™Ä–µŽÄ›'Ä\v£ŽÄ²Ó¡¡¡¡™ x j k¡¡¨Ä „9Än;™ÄN_‰ŽÄn—;Ä „9ŽÄn;¡¡¡¡™ x j k¡¡¨Ä–µÄn;™ÄN_‰ŽÄ6,Ä–µŽÄn;¡¡¡¡™ x j k¡¡¨Ä\v£Ät°Ç™Ä „9ŽÄn—;Ä\v£ŽÄt°Ç¡¡¡¡™ x j k¡¡¨Ä\v£Än;™Ä–µŽÄn—;Ä\v£ŽÄn;¡¡¡¡™ x j k¡¡¨Ä „9ÄÄSe¨™ÄD‚UŽÄ¾§^Ä1ß>ŽÄSe¨¡¡¡¡™ x j k¡¡¨Ä‚Ú£ÄSe¨™ÄD‚UŽÄIŽ£Ä‚Ú£ŽÄSe¨¡¡¡¡™ x j k¡¡¨ÄPëeĸl[™Ä1ß>ŽÄ¾§^ÄPëeŽÄ¸l[¡¡¡¡™ x j k¡¡¨ÄPëeÄSe¨™Ä‚Ú£ŽÄ¾§^ÄPëeŽÄSe¨¡¡¡¡™ x j k¡¡¨ÄPëeÄNÇa™Ä‚Ú£ŽÄŸAÄPëeŽÄNÇa¡¡¡¡™ x j k¡¡¨Ä „9ÄNÇa™ÄN_‰ŽÄŸAÄ „9ŽÄNÇa¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄF'ÄZ%™Ä]¢Ä'gã—ÄF'Ä^|'—˜ k¡¡¨Ä „9ÄŸA™Ä‚Ú£ŽÄ…sÄ „9ŽÄŸA¡¡¡¡™ x j k¡¡¨Ä „9ĬùI™ÄPëeŽÄ {ÿÄ „9ŽÄ¬ùI¡¡¡¡™ x j k¡¡¨Ä „9ÄxÎ7™ÄPëeŽÄ©@MÄ „9ŽÄxÎ7¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄF'ÄG%™Ä]¢ÄœÓÖ—ÄF'ÄJü'—˜ k¡¡¨Ä1ß>ÄKK™ÄD‚UŽÄ|"{Ä1ß>ŽÄKK¡¡¡¡™ x j k¡¡¨Ä‚Ú£ÄKK™ÄD‚UŽÄ5&5Ä‚Ú£ŽÄKK¡¡¡¡™ x j k¡¡¨ÄPëeÄlÁj™Ä1ß>ŽÄ|"{ÄPëeŽÄlÁj¡¡¡¡™ x j k¡¡¨ÄPëeÄKK™Ä‚Ú£ŽÄ|"{ÄPëeŽÄKK¡¡¡¡™ x j k¡¡¨Ä „9Ä"$™ÄPëeŽÄoçvÄ „9ŽÄ"$¡¡¡¡™ x j k¡¡¨Ä „9ÄNÇa™ÄPëeŽÄ3D?Ä „9ŽÄNÇa¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä3 ÄŒtG ¢ ¥ ¨  Š¡²“ÁC0– k¡¡¨ÄPëeÄ]K/™Ä¢ ÁŽÄ¸À]ÄPëeŽÄ]K/¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Äs·™Ä‰õE ¢ ¥ ¨  Š¡²“ÁRnW– k¡¡¨ÄšX-ÄR±%™ÄS†ŽÄ#á1ÄšX-ŽÄR±%¡¡¡¡™ x j k¡¡¨ÄšX-ÄÝï`™ÄS†ŽÄÍ÷YÄšX-ŽÄÝï`¡¡¡¡™ x j k¡¡¨ÄšX-Ä%W*™ÄS†ŽÄ¤Å¹ÄšX-ŽÄ%W*¡¡¡¡™ x j k¡¡¨ÄšX-Äc>k™ÄS†ŽÄCÓIÄšX-ŽÄc>k¡¡¡¡™ x j k¡¡¨Ä#Ô+Äm'q™Ä©—½ŽÄ{ó€Ä#Ô+ŽÄm'q¡¡¡¡™ x j k¡¡¨Ä#Ô+Ä7>7™ÄLýTŽÄBsBÄ#Ô+ŽÄ7>7¡¡¡¡™ x j k¡¡¨Ä#Ô+Ħڣ™ÄOŠUŽÄ¥ŒÄ#Ô+ŽÄ¦Ú£¡¡¡¡™ x j k¡¡¨Ä#Ô+Äluh™Ä&3(ŽÄ©U¢Ä#Ô+ŽÄluh¡¡¡¡™ x j k¡¡¨Ä#Ô+Ä‹"ƒ™ÄB?DŽÄ@ï=Ä#Ô+ŽÄ‹"ƒ¡¡¡¡™ x j k¡¡¨ÄX©jÄc{\™Äs=tŽÄUOÄX©jŽÄc{\¡¡¡¡™ x j k¡¡¨ÄX©jÄgàG™ÄT SŽÄaXÄX©jŽÄgàG¡¡¡¡™ x j k¡¡¨ÄX©jÄÈp³™Ä^ï\ŽÄ¸ ¤ÄX©jŽÄÈp³¡¡¡¡™ x j k¡¡¨ÄX©jÄTIJ™Ä Ò™ŽÄz!kÄX©jŽÄTIJ¡¡¡¡™ x j k¡¡¨Ä#Ô+ij†›™Ä™ŽÄX5LÄ#Ô+ŽÄ³†›¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄ ™Ä]ÊmŽÄÈ™iÄ¢ ÁŽÄ ¡¡¡¡™ x j k¡¡¨Äa˜ÄèG™ÄNb]ŽÄAzKÄa˜ŽÄèG¡¡¡¡™ x j k¡¡¨Äa˜Ä™‡­™ÄNb]ŽÄD´MÄa˜ŽÄ™‡­¡¡¡¡™ x j k¡¡¨Äa˜Ävƃ™ÄNb]ŽÄHëPÄa˜ŽÄvƃ¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä7­"ÄU, ¢ ¥ ¨  Š¡²“ÁAGND– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¥øSÄÁ.c ¢ ¥ ¨  Š¡²“ÁJ3– k¡¡¨Äa0ÄZ•/™ÄƒEŽÄhÝIÄa0ŽÄZ•/¡¡¡¡™ x j k¡¡¨ÄŸ Ä;%w™ÄCÇ<ŽÄ~Ä/ÄŸ ŽÄ;%w¡¡¡¡™ x j k¡¡¨Ä§/Ä;%w™ÄF ;ŽÄ ßÄħ/ŽÄ;%w¡¡¡¡™ x j k¡¡¨ÄƒïcÄ3;™Ärû\ŽÄn¦)ăïcŽÄ3;¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄsIÄQ ¢ ¥ ¨  Š¡²“ÁVCK– k¡¡¨ÄS3Äk~-™Ä^ƒ:ŽÄx.+ÄS3ŽÄk~-¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄE”;Äp_” ¢ ¥ ¨  Š¡²“ÁLow– k¡¡¨Ä6Ó/Äzú£™Ä9‰/ŽÄ; NÄ6Ó/ŽÄzú£¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Äb/ÏÄ]=m ¢ ¥ ¨  Š¡²“ÁLow– k¡¡¨ÄfÚÄ®_͙ĚX-ŽÄV'eÄfÚŽÄ®_Í¡¡¡¡™ x j k¡¡¨ÄwŽÃÄünŸ™Äjñ6ŽÄ“ß]ÄwŽÃŽÄünŸ¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä3ÀŸÄ}ÍO ¢ ¥ ¨  Š¡²“ÁHigh– k¡¡¨ÄA³"Äy"S™Äjñ6ŽÄl-JÄA³"ŽÄy"S¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄO})ÄgöG ¢ ¥ ¨  Š¡²“ÁLow– k¡¡¨Ä\õ1Äy"S™Ä–¡OŽÄvXQÄ\õ1ŽÄy"S¡¡¡¡™ x j k¡¡¨Ä–¡OÄMÜ5™Äb3ŽÄ3y#Ä–¡OŽÄMÜ5¡¡¡¡™ x j k¡¡¨ÄRŠ+Ä1ƒ"™Ä*E›ŽÄwƒQÄRŠ+ŽÄ1ƒ"¡¡¡¡™ x j k¡¡¨Ä–¡OÄ1ƒ"™Ätš=ŽÄwƒQÄ–¡OŽÄ1ƒ"¡¡¡¡™ x j k¡¡¨Äb3Äy"S™ÄA³"ŽÄvXQÄb3ŽÄy"S¡¡¡¡™ x j k¡¡¨ÄA«Äy"S™ÄøðƒŽÄl-JÄA«ŽÄy"S¡¡¡¡™ x j k¡¡¨ÄA«ÄünŸ™Ät=ŽÄ“ß]ÄA«ŽÄünŸ¡¡¡¡™ x j k¡¡¨Äšo`ÄÝï`™Ä–«ŽÄEgÄšo`ŽÄÝï`¡¡¡¡™ x j k¡¡¨Ä§/Äk~-™ÄS3ŽÄã(_ħ/ŽÄk~-¡¡¡¡™ x j k¡¡¨Ä9‰/Ä¡UC™ÄG™-ŽÄÈSÄ9‰/ŽÄ¡UC¡¡¡¡™ x j k¡¡¨Ä©åÄK>™ÄK_0ŽÄ¢ÈCÄ©åŽÄK>¡¡¡¡™ x j k¡¡¨Äb/ÏÄ™–7™ÄS3ŽÄx.+Äb/ÏŽÄ™–7¡¡¡¡™ x j k¡¡¨Ä]WIÄäqb™ÄÛá©ŽÄ:VÄ]WIŽÄäqb¡¡¡¡™ x j k¡¡¨ÄÛá©Ä7-™ÄŠjŽÄ:VÄÛá©ŽÄ7-¡¡¡¡™ x j k¡¡¨Ä]WIÄÝï`™ÄÛá©ŽÄÍ÷YÄ]WIŽÄÝï`¡¡¡¡™ x j k¡¡¨ÄD¢;ÄÝï`™ÄI\;ŽÄÍ÷YÄD¢;ŽÄÝï`¡¡¡¡™ x j k¡¡¨ÄD¢;Ääqb™ÄI\;ŽÄ:VÄD¢;ŽÄäqb¡¡¡¡™ x j k¡¡¨Äšo`ÄRy™ÄÖ+…ŽÄLV}Äšo`ŽÄRy¡¡¡¡™ x j k¡¡¨Ä¤[Ä0­™ÄG™-ŽÄ1§Ä¤[ŽÄ0­¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä‚¯ÂĸÕS ¢ ¥ ¨  Š¡²“ÁL1– k¡¡¨Äa0ÄÆ]X™ÄƒEŽÄ‰¦=Äa0ŽÄÆ]X¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄD8'Ä•üO™ÄtõÖÄIë'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä‰óOĦ ™ÄCú'ÄJ'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä‰ïOÄe ™ÄD8'ÄI?'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄD8'Ä”mO™ÄtõÖÄIf'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄD8'Ä”ÀO™ÄtõÖÄIO'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄD8'Ä•^O™ÄtõÖÄI'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄD8'Ä• O™ÄtõÖÄI´'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄD8'Ä•ZO™ÄtõÖÄIÛ'—˜ k¡¡¨ÄqPA†™Ä“ŽÄp{;ÄqPAŽ†¡¡¡¡™ x j k¡¡¨ÄqPAÄn;™Ä“ŽÄ\—BÄqPAŽÄn;¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄAï'Ä•üO™ÄhkÖÄIë'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä…¡OĦ ™ÄAØ'ÄJ'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä…NOÄe ™ÄAï'ÄI?'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄAï'Ä”mO™ÄhkÖÄIf'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄAï'Ä”ÀO™ÄhkÖÄIO'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄAï'Ä•^O™ÄhkÖÄI'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄAï'Ä• O™ÄhkÖÄI´'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄAï'Ä•ZO™ÄhkÖÄIÛ'—˜ k¡¡¨ÄKÚ-†™Ä@&ŽÄp{;ÄKÚ-Ž†¡¡¡¡™ x j k¡¡¨ÄKÚ-Än;™Ä@&ŽÄ\—BÄKÚ-ŽÄn;¡¡¡¡™ x j k¡¡¨ÄqPAÄyé@™Ä“ŽÄ ÇÄqPAŽÄyé@¡¡¡¡™ x j k¡¡¨ÄKÚ-Äyé@™Ä@&ŽÄ ÇÄKÚ-ŽÄyé@¡¡¡¡™ x j k¡¡¨ÄS3Äyé@™Ä^ƒ:ŽÄ ÇÄS3ŽÄyé@¡¡¡¡™ x j k¡¡¨ÄA«ÄÉU™Ä’™NŽÄ"žÄA«ŽÄÉU¡¡¡¡™ x j k¡¡¨ÄA«Ä‡ÃX™Ä’™NŽÄ”ê]ÄA«ŽÄ‡ÃX¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄBs$ÄCŸ- ¢ ¥ ¨  Š¡²“ÁC23– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä—ÄCŸ- ¢ ¥ ¨  Š¡²“ÁC22– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄˆÐãÄCŸ- ¢ ¥ ¨  Š¡²“ÁC21– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Äf =ÄCŸ- ¢ ¥ ¨  Š¡²“ÁC20– k¡¡¨ÄA«Ä¹ ™Ä’™NŽÄk+JÄA«ŽÄ¹ ¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄI'ÄqáO™ÄX Ä8'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä”OÄ7ñ'™ÄI?'Ä4UÖ—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä”mOÄ7ñ'™ÄIf'Ä4UÖ—˜ k¡¡¨Ä }Ĺ ™ÄºÜcŽÄ8;'Ä }ŽÄ¹ ¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä”¼OÄ7ñ'™ÄI'Ä4UÖ—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä”mOÄ7ñ'™ÄIf'Ä4UÖ—˜ k¡¡¨Ä¥^aħb™ÄA«ŽÄOI6Ä¥^aŽÄ§b¡¡¡¡™ x j k¡¡¨Är >ÄZ•/™ÄD%ŽÄ¥ýOÄr >ŽÄZ•/¡¡¡¡™ x j k¡¡¨Ä§}]ÄZ•/™Äs]@ŽÄ¥ýOħ}]ŽÄZ•/¡¡¡¡™ x j k¡¡¨ÄbCÉÄZ•/™Ä™zWŽÄ¥ýOÄbCÉŽÄZ•/¡¡¡¡™ x j k¡¡¨Ä#]©ÄZ•/™ÄãÉ„ŽÄ¥ýOÄ#]©ŽÄZ•/¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄŠLÄd½0 ¢ ¥ ¨  Š¡²“ÁC5– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä!æ£Äd½0 ¢ ¥ ¨  Š¡²“ÁC4– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄP .Äd½0 ¢ ¥ ¨  Š¡²“ÁC3– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Äˆ!PÄd½0 ¢ ¥ ¨  Š¡²“ÁC2– k¡¡¨Ä°GÄë o™Ä™ÞSŽÄ ¿Ä°GŽÄë o¡¡¡¡™ x j k¡¡¨Ä°GÄ0­™Ä™ÞSŽÄx¹9Ä°GŽÄ0­¡¡¡¡™ x j k¡¡¨Är >Äb·/™ÄD%ŽÄ0­Är >ŽÄb·/¡¡¡¡™ x j k¡¡¨Är >Äë o™ÄD%ŽÄ¤ÏMÄr >ŽÄë o¡¡¡¡™ x j k¡¡¨Ä—Äë o™Ät/@ŽÄ ¿Ä—ŽÄë o¡¡¡¡™ x j k¡¡¨Ä—Ä0­™Ät/@ŽÄx¹9Ä—ŽÄ0­¡¡¡¡™ x j k¡¡¨Ä§}]Äb·/™Äs]@ŽÄ0­Ä§}]ŽÄb·/¡¡¡¡™ x j k¡¡¨Ä§}]Äë o™Äs]@ŽÄ¤ÏMħ}]ŽÄë o¡¡¡¡™ x j k¡¡¨Ä”¹UÄë o™Ä·IŽÄ ¿Ä”¹UŽÄë o¡¡¡¡™ x j k¡¡¨Ä”¹UÄ0­™Ä·IŽÄx¹9Ä”¹UŽÄ0­¡¡¡¡™ x j k¡¡¨ÄbCÉÄb·/™Ä™zWŽÄ0­ÄbCÉŽÄb·/¡¡¡¡™ x j k¡¡¨ÄbCÉÄë o™Ä™zWŽÄ¤ÏMÄbCÉŽÄë o¡¡¡¡™ x j k¡¡¨Ät]DÄë o™ÄJÁ+ŽÄ ¿Ät]DŽÄë o¡¡¡¡™ x j k¡¡¨Ät]DÄ0­™ÄJÁ+ŽÄx¹9Ät]DŽÄ0­¡¡¡¡™ x j k¡¡¨Ä#]©Äb·/™ÄãÉ„ŽÄ0­Ä#]©ŽÄb·/¡¡¡¡™ x j k¡¡¨Ä#]©Äë o™ÄãÉ„ŽÄ¤ÏMÄ#]©ŽÄë o¡¡¡¡™ x j k¡¡¨Är >ÄU(™ÄD%ŽÄ^µ*Är >ŽÄU(¡¡¡¡™ x j k¡¡¨Ä§}]ÄU(™Äs]@ŽÄ^µ*ħ}]ŽÄU(¡¡¡¡™ x j k¡¡¨ÄbCÉÄU(™Ä™zWŽÄ^µ*ÄbCÉŽÄU(¡¡¡¡™ x j k¡¡¨Ä#]©ÄU(™ÄãÉ„ŽÄ^µ*Ä#]©ŽÄU(¡¡¡¡™ x j k¡¡¨ÄÑìgÄë o™ÄÀ]ŽÄ ¿ÄÑìgŽÄë o¡¡¡¡™ x j k¡¡¨ÄÑìgÄ0­™ÄÀ]ŽÄx¹9ÄÑìgŽÄ0­¡¡¡¡™ x j k¡¡¨ÄƒEÄb·/™ÄT')ŽÄ0­ÄƒEŽÄb·/¡¡¡¡™ x j k¡¡¨ÄƒEÄë o™ÄT')ŽÄ¤ÏMăEŽÄë o¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä,&'ÄОO™ÄðáÖÄfÝ'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄY€OÄ"Y ™Ä,'Äg'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄY-OÄ" ™Ä,&'Äf1'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä,&'ÄÏO™ÄðáÖÄfX'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä,&'ÄϱO™ÄðáÖÄfh'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä,&'ÄÐO™ÄðáÖÄf'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä,&'ÄÏ­O™ÄðáÖÄf¦'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä,&'ÄÏüO™ÄðáÖÄfÍ'—˜ k¡¡¨ÄŸ ÄlQ)™ÄCÇ<ŽÄ2YÄŸ ŽÄlQ)¡¡¡¡™ x j k¡¡¨ÄŸ ÄÎ-O™ÄCÇ<ŽÄ¯œCÄŸ ŽÄÎ-O¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä.o'ÄОO™ÄýkÖÄfÝ'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä^!OÄ"Y ™Ä.X'Äg'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä]ÎOÄ" ™Ä.o'Äf1'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä.o'ÄÏO™ÄýkÖÄfX'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä.o'ÄϱO™ÄýkÖÄfh'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä.o'ÄÐO™ÄýkÖÄf'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä.o'ÄÏ­O™ÄýkÖÄf¦'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä.o'ÄÏüO™ÄýkÖÄfÍ'—˜ k¡¡¨Ä§/ÄlQ)™ÄF ;ŽÄ2Yħ/ŽÄlQ)¡¡¡¡™ x j k¡¡¨Ä§/ÄÎ-O™ÄF ;ŽÄ¯œCħ/ŽÄÎ-O¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä[ZOÄZÔ'™Ä,ù'Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄØRÄ·êO™Ä-7'ÄZë'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄÄ+Rĸ=O™Ä,M'ÄZÔ'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄYËOÄZÔ'™Ä,t'Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄZmOÄZÔ'™Ä,„'Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄZ¼OÄZÔ'™Ä,«'Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄZiOÄZÔ'™Ä,Â'Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄZ¸OÄZÔ'™Ä,é'Äã—˜ k¡¡¨Ä~mÄäqb™Ä!ȎćK:Ä~mŽÄäqb¡¡¡¡™ x j k¡¡¨Ä¦y”Ääqb™Äî‘ҎćK:Ħy”ŽÄäqb¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä[ZOÄZ'™Ä,ù'Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄØRĶ_O™Ä-7'ÄZ('—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄÄ+RĶ²O™Ä,M'ÄZ'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄYËOÄZ'™Ä,t'Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄZmOÄZ'™Ä,„'Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄZ¼OÄZ'™Ä,«'Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄZiOÄZ'™Ä,Â'Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄZ¸OÄZ'™Ä,é'Ä °ã—˜ k¡¡¨Ä~mÄÝï`™Ä!ÈŽÄEgÄ~mŽÄÝï`¡¡¡¡™ x j k¡¡¨Ä¦y”ÄÝï`™Äî‘ÒŽÄEgĦy”ŽÄÝï`¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄdMOÄZÔ'™Ä1d'Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä† Ä·êO™Ä1¢'ÄZë'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄE ĸ=O™Ä0ß'ÄZÔ'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Äc OÄZÔ'™Ä1'Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨Äc`OÄZÔ'™Ä0ï'Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄcþOÄZÔ'™Ä1='Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨Äc\OÄZÔ'™Ä1-'Äã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄcúOÄZÔ'™Ä1{'Äã—˜ k¡¡¨ÄŸ}Ääqb™ÄŽoŽÄ‡K:ÄŸ}ŽÄäqb¡¡¡¡™ x j k¡¡¨ÄxLaÄäqb™ÄIÕ;ŽÄ‡K:ÄxLaŽÄäqb¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄdMOÄZ'™Ä1d'Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä† Ķ_O™Ä1¢'ÄZ('—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄE Ķ²O™Ä0ß'ÄZ'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Äc OÄZ'™Ä1'Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨Äc`OÄZ'™Ä0ï'Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄcþOÄZ'™Ä1='Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨Äc\OÄZ'™Ä1-'Ä °ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄcúOÄZ'™Ä1{'Ä °ã—˜ k¡¡¨ÄŸ}ÄÝï`™ÄŽoŽÄEgÄŸ}ŽÄÝï`¡¡¡¡™ x j k¡¡¨ÄxLaÄÝï`™ÄIÕ;ŽÄEgÄxLaŽÄÝï`¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä>ã'ĺfO™ÄW³ÖÄ[å'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄuOÄHyd™Ä>Ì'Ä\#'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä"OÄ@!d™Ä>ã'Ä[9'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä>ã'ĸ×O™ÄW³ÖÄ[`'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä>ã'ĹyO™ÄW³ÖÄ[p'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä>ã'ĹÈO™ÄW³ÖÄ[—'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä>ã'ĹuO™ÄW³ÖÄ[®'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä>ã'ĹÄO™ÄW³ÖÄ[Õ'—˜ k¡¡¨Äšo`Ä\ '™ÄÖ+…ŽÄBMÄšo`ŽÄ\ '¡¡¡¡™ x j k¡¡¨Äšo`Ä{`5™ÄÖ+…ŽÄr1Äšo`ŽÄ{`5¡¡¡¡™ x j k¡¡¨ÄrgFÄñ>™ÄX5ŽÄ~7ÄrgFŽÄñ>¡¡¡¡™ x j k¡¡¨ÄrgFÄŒ =™ÄX5ŽÄŒ$=ÄrgFŽÄŒ =¡¡¡¡™ x j k¡¡¨Ä–«ÄŒ$=™Äo ŽÄEgÄ–«ŽÄŒ$=¡¡¡¡™ x j k¡¡¨Ä–«Äm0™Äo ŽÄ~7Ä–«ŽÄm0¡¡¡¡™ x j k¡¡¨ÄrgFÄB‘™ÄX5ŽÄÃgXÄrgFŽÄB‘¡¡¡¡™ x j k¡¡¨ÄrgFÄì¼k™ÄX5ŽÄ3GÄrgFŽÄì¼k¡¡¡¡™ x j k¡¡¨Ä–«ÄxÎ7™Äo ŽÄì¼kÄ–«ŽÄxÎ7¡¡¡¡™ x j k¡¡¨Ä–«ÄB‘™Äo ŽÄz!ŽÄ–«ŽÄB‘¡¡¡¡™ x j k¡¡¨Ä–«ÄàAg™Äo ŽÄxÎ7Ä–«ŽÄàAg¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä> 'Ħ¦O™ÄS…ÖÄR%'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä}êOÄïyd™Ä> 'ÄRc'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä}—OÄç!d™Ä> 'ÄQy'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä> 'Ä¥O™ÄS…ÖÄQ '—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä> 'Ä¥¹O™ÄS…ÖÄQ°'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä> 'ĦO™ÄS…ÖÄQ×'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä> 'Ä¥µO™ÄS…ÖÄQî'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä> 'ĦO™ÄS…ÖÄR'—˜ k¡¡¨Ä¤[Ä‚·™ÄG™-ŽÄx¹9Ĥ[ŽÄ‚·¡¡¡¡™ x j k¡¡¨Ä¤[ÄeÑ1™ÄG™-ŽÄT†£Ä¤[ŽÄeÑ1¡¡¡¡™ x j k¡¡¨ÄËJmÄë o™ÄU'-ŽÄ ¿ÄËJmŽÄë o¡¡¡¡™ x j k¡¡¨ÄËJmÄ0­™ÄU'-ŽÄx¹9ÄËJmŽÄ0­¡¡¡¡™ x j k¡¡¨ÄA«Äb·/™Ä’™NŽÄ0­ÄA«ŽÄb·/¡¡¡¡™ x j k¡¡¨ÄA«Äë o™Ä’™NŽÄ¤ÏMÄA«ŽÄë o¡¡¡¡™ x j k¡¡¨ÄÏ{mÄë o™Äº#åŽÄ ¿ÄÏ{mŽÄë o¡¡¡¡™ x j k¡¡¨ÄÏ{mÄ0­™Äº#åŽÄx¹9ÄÏ{mŽÄ0­¡¡¡¡™ x j k¡¡¨ÄL§(Äb·/™Ä€€CŽÄ0­ÄL§(ŽÄb·/¡¡¡¡™ x j k¡¡¨ÄL§(Äë o™Ä€€CŽÄ¤ÏMÄL§(ŽÄë o¡¡¡¡™ x j k¡¡¨Ä›[PÄë o™Ä/AšŽÄ ¿Ä›[PŽÄë o¡¡¡¡™ x j k¡¡¨Ä›[PÄ0­™Ä/AšŽÄx¹9Ä›[PŽÄ0­¡¡¡¡™ x j k¡¡¨Ä§JÄb·/™Ä”¯LŽÄ0­Ä§JŽÄb·/¡¡¡¡™ x j k¡¡¨Ä§JÄë o™Ä”¯LŽÄ¤ÏMħJŽÄë o¡¡¡¡™ x j k¡¡¨ÄVÛ,ÄÆ]X™ÄÀAaŽÄÞ7ÔÄVÛ,ŽÄÆ]X¡¡¡¡™ x j k¡¡¨Ä­ŸVÄÆ]X™Ä´dYŽÄÞ7ÔÄ­ŸVŽÄÆ]X¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄMƒ'Äþã™ÄœÂOÄþãħóÖı¾OħóÖÄWß'¡’˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä« ÖÄWß'™Ä« Öı¾OÄdOÄþãÄM“'Äþã¡’˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄMø'Äþã™Ä¯OÄþãĪuÖı¾OĪuÖÄWß'¡’˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄÇ£ãÄWß'™ÄÇ£ãı¾OÄžQOÄþãÄN'Äþã¡’˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄN”'Äþã™ÄžëOÄþãÄÇéãı¾OÄÇéãÄWß'¡’˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄÊLãÄWß'™ÄÊLãı¾OÄŸ>OÄþãÄN}'Äþã¡’˜ k¡¡¨Äjñ6Ä™%D™ÄÀAaŽÄ؃`Äjñ6ŽÄ™%D¡¡¡¡™ x j k¡¡¨Ä­ŸVÄ™%D™Äø„{ŽÄ؃`Ä­ŸVŽÄ™%D¡¡¡¡™ x j k¡¡¨Ä+XÁÄU)/™ÄR<'ŽÄBó²Ä+XÁŽÄU)/¡¡¡¡™ x j k¡¡¨Ä+XÁÄ1™ÄR<'ŽÄ›ÚUÄ+XÁŽÄ1¡¡¡¡™ x j k¡¡¨Ä+XÁÄm,;™ÄR<'ŽÄ5»Ä+XÁŽÄm,;¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄŽÄiÝ; ¢ ¥ ¨  Š¡²“ÁPB– k¡¡¨Ä3ÀŸÄã±}™ÄSL+ŽÄ ÇÄ3ÀŸŽÄã±}¡¡¡¡™ x j k¡¡¨Ä\õ1ÄV„/™Ä´`_ŽÄ ÇÄ\õ1ŽÄV„/¡¡¡¡™ x j k¡¡¨ÄƒEÄyé@™ÄT')ŽÄšñQăEŽÄyé@¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨ÄOÌ'Ä–šO™Ä×ÕdÄJ9'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä¡²OÄJ'™ÄOó'Ä—ÏÖ—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä¢OÄJ'™ÄP'Ä—ÏÖ—˜ k¡¡¨Ä­ÈUÄyé@™Äd÷1ŽÄp{;Ä­ÈUŽÄyé@¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä¢POÄJ'™ÄPA'Ä—ÏÖ—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä¢POÄJ'™ÄPA'Ä—ÏÖ—˜ k¡¡¨ÄƒEÄU(™ÄT')ŽÄVk&ăEŽÄU(¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄækpÄd½0 ¢ ¥ ¨  Š¡²“ÁC1– k¡¡¨ÄL§(ÄU(™Ä€€CŽÄ^µ*ÄL§(ŽÄU(¡¡¡¡™ x j k¡¡¨ÄL§(ÄZ•/™Ä€€CŽÄ¥ýOÄL§(ŽÄZ•/¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä­éãÄd½0 ¢ ¥ ¨  Š¡²“ÁC7– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄƒfCÄd½0 ¢ ¥ ¨  Š¡²“ÁC10– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¡lWÄd½0 ¢ ¥ ¨  Š¡²“ÁC6– k¡¡¨ÄqPAÄU)/™Ä“ŽÄˆŠIÄqPAŽÄU)/¡¡¡¡™ x j k¡¡¨ÄKÚ-Ä1™Ä@&ŽÄˆŠIÄKÚ-ŽÄ1¡¡¡¡™ x j k¡¡¨Ä+XÁÄU(™ÄÖ+…ŽÄ¤ÏMÄ+XÁŽÄU(¡¡¡¡™ x j k¡¡¨Ä¤[Äe1™ÄG™-ŽÄ¬»SĤ[ŽÄe1¡¡¡¡™ x j k¡¡¨ÄK_0Äe1™Ä¤[ŽÄ§$QÄK_0ŽÄe1¡¡¡¡™ x j k¡¡¨Ä+XÁÄ·nU™ÄG™-ŽÄ"‘Ä+XÁŽÄ·nU¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Äy¥IÄ~9 ¢ ¥ ¨  Š¡²“ÁC8– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Äy¥IÄÉSX ¢ ¥ ¨  Š¡²“ÁC9– k¡¡¨Ä>Y&ÄÆ]X™ÄyÅJŽÄÞ7ÔÄ>Y&ŽÄÆ]X¡¡¡¡™ x j k¡¡¨Ä–«Ä ¸é™Äo ŽÄx,§Ä–«ŽÄ ¸é¡¡¡¡™ x j k¡¡¨ÄyÅJÄx,§™Ä@]'ŽÄ€«9ÄyÅJŽÄx,§¡¡¡¡™ x j k¡¡¨Ä@]'ÄÆ]X™Ä@'ŽÄÞ7ÔÄ@]'ŽÄÆ]X¡¡¡¡™ x j k¡¡¨Ä–«Ä€«9™Äo ŽÄS³%Ä–«ŽÄ€«9¡¡¡¡™ x j k¡¡¨Ä–«ÄÆ]X™Äo ŽÄm0Ä–«ŽÄÆ]X¡¡¡¡™ x j k¡¡¨Ä+XÁÄàAg™Äo ŽÄ‡#>Ä+XÁŽÄàAg¡¡¡¡™ x j k¡¡¨Ä9‰/ÄįJ™ÄI\;ŽÄM&Ä9‰/ŽÄįJ¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄB¾;Ä~7 ¢ ¥ ¨  Š¡²“ÁR14– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Äû\—ÄÉoV ¢ ¥ ¨  Š¡²“ÁR13– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄB¾;ÄÉoV ¢ ¥ ¨  Š¡²“ÁR12– k¡¡¨Ä4/ÄÝï`™Ä{AoŽÄ[±'Ä4/ŽÄÝï`¡¡¡¡™ x j k¡¡¨Ä4/ÄY&™Ä{AoŽÄ\ 'Ä4/ŽÄY&¡¡¡¡™ x j k¡¡¨ÄëéÖÄ\ '™Ä8õ3ŽÄÑ6ÅÄëéÖŽÄ\ '¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨Ä u ¤F £Ä×GÃÄ43 ¢ ¥ ¥ ¨  Š¡²“Á+– k¡¡¨Ä9‰/ÄaEu™ÄI\;ŽÄš.Ä9‰/ŽÄaEu¡¡¡¡™ x j k¡¡¨Ä9‰/Ä®_Í™ÄI\;ŽÄV'eÄ9‰/ŽÄ®_Í¡¡¡¡™ x j k¡¡¨Ä9‰/Ħڣ™ÄI\;ŽÄ¥ŒÄ9‰/ŽÄ¦Ú£¡¡¡¡™ x j k¡¡¨Ä9‰/Äluh™ÄI\;ŽÄ©U¢Ä9‰/ŽÄluh¡¡¡¡™ x j k¡¡¨Ä9‰/Ä‹"ƒ™ÄI\;ŽÄ@ï=Ä9‰/ŽÄ‹"ƒ¡¡¡¡™ x j k¡¡¨Ä9‰/Äc{\™ÄI\;ŽÄUOÄ9‰/ŽÄc{\¡¡¡¡™ x j k¡¡¨Ä9‰/ÄgàG™ÄI\;ŽÄaXÄ9‰/ŽÄgàG¡¡¡¡™ x j k¡¡¨Ä9‰/ÄÈp³™ÄI\;ŽÄ¸ ¤Ä9‰/ŽÄÈp³¡¡¡¡™ x j k¡¡¨Ä9‰/ÄTIJ™ÄI\;ŽÄz!kÄ9‰/ŽÄTIJ¡¡¡¡™ x j k¡¡¨Ä9‰/ij†›™ÄI\;ŽÄX5LÄ9‰/ŽÄ³†›¡¡¡¡™ x j k¡¡¨Ä&3(Äh#/™Ä:Z=ŽÄTž!Ä&3(ŽÄh#/¡¡¡¡™ x j k¡¡¨Ä9ŸÄ†Á5™ÄOŠUŽÄA³ãÄ9ŸŽÄ†Á5¡¡¡¡™ x j k¡¡¨ÄOŠUÄÆ]X™Ä{ˆŽÄA³ãÄOŠUŽÄÆ]X¡¡¡¡™ x j k¡¡¨Ä9ŸÄÔ9™ÄLýTŽÄ~I2Ä9ŸŽÄÔ9¡¡¡¡™ x j k¡¡¨ÄLýTÄm0™ÄCIŽÄ~I2ÄLýTŽÄm0¡¡¡¡™ x j k¡¡¨Ä9ŸÄèá]™Ä©—½ŽÄÆOÄ9ŸŽÄèá]¡¡¡¡™ x j k¡¡¨Ä©—½Äk~-™Ä‡¼—ŽÄÆOÄ©—½ŽÄk~-¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄk~-™Ä‡¼—ŽÄã(_Ä¢ ÁŽÄk~-¡¡¡¡™ x j k¡¡¨Ä9ŸÄ:™Ä^ÕlŽÄƒÓ5Ä9ŸŽÄ:¡¡¡¡™ x j k¡¡¨Ä^ÕlÄK>™Ä>uGŽÄƒÓ5Ä^ÕlŽÄK>¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄK>™Ä>uGŽÄ¢ÈCÄ¢ ÁŽÄK>¡¡¡¡™ x j k¡¡¨Ä9ŸÄK>™ÄS†ŽÄ¢ÈCÄ9ŸŽÄK>¡¡¡¡™ x j k¡¡¨Ä9ŸÄk~-™ÄS†ŽÄã(_Ä9ŸŽÄk~-¡¡¡¡™ x j k¡¡¨Ä9ŸÄ f«™ÄS†ŽÄ[Á'Ä9ŸŽÄ f«¡¡¡¡™ x j k¡¡¨Ä9ŸÄäqb™ÄS†ŽÄ:VÄ9ŸŽÄäqb¡¡¡¡™ x j k¡¡¨Ä9ŸÄm0™ÄS†ŽÄEÄ9ŸŽÄm0¡¡¡¡™ x j k¡¡¨Ä9ŸÄÆ]X™ÄS†ŽÄ‰¦=Ä9ŸŽÄÆ]X¡¡¡¡™ x j k¡¡¨Ä9ŸÄU)/™ÄS†ŽÄBó²Ä9ŸŽÄU)/¡¡¡¡™ x j k¡¡¨Ä9ŸÄ1™ÄS†ŽÄ›ÚUÄ9ŸŽÄ1¡¡¡¡™ x j k¡¡¨Ä9ŸÄm,;™ÄS†ŽÄ5»Ä9ŸŽÄm,;¡¡¡¡™ x j k¡¡¨Ä9ŸÄWß/™ÄS†ŽÄhÕ8Ä9ŸŽÄWß/¡¡¡¡™ x j k¡¡¨Ä9ŸÄ S™ÄS†ŽÄ2a¢Ä9ŸŽÄ S¡¡¡¡™ x j k¡¡¨Ä9ŸÄ ™ÄS†ŽÄÈ™iÄ9ŸŽÄ ¡¡¡¡™ x j k¡¡¨Ä9ŸÄrØ;™ÄIE¡ŽÄne¼Ä9ŸŽÄrØ;¡¡¡¡™ x j k¡¡¨Ä9‰/ÄC™ÄI\;ŽÄÉqNÄ9‰/ŽÄC¡¡¡¡™ x j k¡¡¨Ä9‰/Ä®3D™ÄI\;ŽÄTž!Ä9‰/ŽÄ®3D¡¡¡¡™ x j k¡¡¨ÄQÅÚÄUÁ!™ÄX—9ŽÄò]ÄQÅÚŽÄUÁ!¡¡¡¡™ x j k¡¡¨ÄQÅÚÄzç”™ÄX—9ŽÄŸ>ÄQÅÚŽÄz甡¡¡¡™ x j k¡¡¨Äb/ÏÄøIŒ™ÄS†ŽÄOê-Äb/ÏŽÄøIŒ¡¡¡¡™ x j k¡¡¨Ä§/Äh#/™ÄF ;ŽÄã(_ħ/ŽÄh#/¡¡¡¡™ x j k¡¡¨Ä§/Äh#/™Ärû\ŽÄõ@ħ/ŽÄh#/¡¡¡¡™ x j k¡¡¨Ä©åÄR±%™ÄŸC„ŽÄ¢ÈCÄ©åŽÄR±%¡¡¡¡™ x j k¡¡¨Ä©åÄR±%™Ärû\ŽÄ#á1Ä©åŽÄR±%¡¡¡¡™ x j k¡¡¨Ä9‰/ÄÆ]X™Ä#ŒŽÄÈSÄ9‰/ŽÄÆ]X¡¡¡¡™ x j k¡¡¨Ä¤[Ä¡UC™ÄG™-ŽÄ~Ä/Ĥ[ŽÄ¡UC¡¡¡¡™ x j k¡¡¨Ä+XÁÄ3;™ÄG™-ŽÄn¦)Ä+XÁŽÄ3;¡¡¡¡™ x j k¡¡¨ÄK_0ÄK>™Ä“öŽÄ ßÄÄK_0ŽÄK>¡¡¡¡™ x j k¡¡¨Ä+XÁÄuË,™Ä“öŽÄ¶5DÄ+XÁŽÄuË,¡¡¡¡™ x j k¡¡¨Ä+XÁÄhÇ(™ÄS3ŽÄ«\£Ä+XÁŽÄhÇ(¡¡¡¡™ x j k¡¡¨ÄLýTÄ S™ÄCIŽÄ%eÄLýTŽÄ S¡¡¡¡™ x j k¡¡¨Äs=tÄ+™Ä:ä/ŽÄ%eÄs=tŽÄ+¡¡¡¡™ x j k¡¡¨ÄB?DÄrØ;™Ä:ä/ŽÄne¼ÄB?DŽÄrØ;¡¡¡¡™ x j k¡¡¨ÄOŠUÄ ™Ä$nŽÄÈ™iÄOŠUŽÄ ¡¡¡¡™ x j k¡¡¨ÄLýTÄ S™Ä$nŽÄ2a¢ÄLýTŽÄ S¡¡¡¡™ x j k¡¡¨ÄOŠUÄ ™Ä{ˆŽÄÒ©jÄOŠUŽÄ ¡¡¡¡™ x j k¡¡¨ÄB?DÄrØ;™ÄPþSŽÄ•éJÄB?DŽÄrØ;¡¡¡¡™ x j k¡¡¨Äs=tÄ+™Ä/Ã0ŽÄ†ùBÄs=tŽÄ+¡¡¡¡™ x j k¡¡¨Äa˜Ä&\'™ÄNb]ŽÄNOÄa˜ŽÄ&\'¡¡¡¡™ x j k¡¡¨Ä©—½Ä5 C™Ärû\ŽÄ?¡Ä©—½ŽÄ5 C¡¡¡¡™ x j k¡¡¨ÄLýTÄNÇa™Ärû\ŽÄZjoÄLýTŽÄNÇa¡¡¡¡™ x j k¡¡¨ÄLýTÄNÇa™ÄCIŽÄBsBÄLýTŽÄNÇa¡¡¡¡™ x j k¡¡¨ÄOŠUÄ-;4™Ä{ˆŽÄ¥ŒÄOŠUŽÄ-;4¡¡¡¡™ x j k¡¡¨ÄOŠUÄ-;4™Ärû\ŽÄ`ÑoÄOŠUŽÄ-;4¡¡¡¡™ x j k¡¡¨Ä&3(Ä%W*™Ä:Z=ŽÄ©U¢Ä&3(ŽÄ%W*¡¡¡¡™ x j k¡¡¨Ä&3(Ä%W*™Ärû\ŽÄy§Ä&3(ŽÄ%W*¡¡¡¡™ x j k¡¡¨ÄB?DÄÔ‰ê™ÄPþSŽÄ@ï=ÄB?DŽÄԉꡡ¡¡™ x j k¡¡¨ÄB?DÄÔ‰ê™Ärû\ŽÄ=íDÄB?DŽÄԉꡡ¡¡™ x j k¡¡¨Äs=tÄc>k™Ä/Ã0ŽÄUOÄs=tŽÄc>k¡¡¡¡™ x j k¡¡¨Äs=tÄc>k™Äû\—ŽÄU\Äs=tŽÄc>k¡¡¡¡™ x j k¡¡¨ÄT SÄ"$™Ä++ŽÄaXÄT SŽÄ"$¡¡¡¡™ x j k¡¡¨ÄT SÄ"$™Äû\—ŽÄÈDÓÄT SŽÄ"$¡¡¡¡™ x j k¡¡¨Ä^ï\Äm'q™Äû\—ŽÄ{ó€Ä^ï\ŽÄm'q¡¡¡¡™ x j k¡¡¨Ä^ï\Äm'q™ÄT¿RŽÄ¸ ¤Ä^ï\ŽÄm'q¡¡¡¡™ x j k¡¡¨Ä™Ä7>7™Ä¡Ý—ŽÄX5LÄ™ŽÄ7>7¡¡¡¡™ x j k¡¡¨Ä™Ä7>7™ÄI\;ŽÄBsBÄ™ŽÄ7>7¡¡¡¡™ x j k¡¡¨ÄX©jħb™Ärû\ŽÄOI6ÄX©jŽÄ§b¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄV)H™Ä:ä/ŽÄŸz…Ä¢ ÁŽÄV)H¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄBS(™Ä:ä/ŽÄïÄ¢ ÁŽÄBS(¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄM/™Ä:ä/ŽÄ¯žkÄ¢ ÁŽÄM/¡¡¡¡™ x j k¡¡¨Ä¢ ÁćÃX™Ä:ä/ŽÄBq+Ä¢ ÁŽÄ‡ÃX¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄI!0™Ä:ä/ŽÄÉ Ä¢ ÁŽÄI!0¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄŽ‘`™Ä:ä/ŽÄr‰MÄ¢ ÁŽÄŽ‘`¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄ—ïe™Ä:ä/ŽÄ ŒÄ¢ ÁŽÄ—ïe¡¡¡¡™ x j k¡¡¨ÄX©jÄ8eÈ™Ärû\ŽÄ<ÊÄX©jŽÄ8eÈ¡¡¡¡™ x j k¡¡¨ÄX©jÄJQ/™Ärû\ŽÄÛRÄX©jŽÄJQ/¡¡¡¡™ x j k¡¡¨ÄX©jÄX7™Ärû\ŽÄ#·¶ÄX©jŽÄX7¡¡¡¡™ x j k¡¡¨ÄX©jĦÓg™Ärû\ŽÄoìEÄX©jŽÄ¦Óg¡¡¡¡™ x j k¡¡¨ÄX©jÄ •É™Ärû\ŽÄ&½ÝÄX©jŽÄ •É¡¡¡¡™ x j k¡¡¨ÄX©jÄwe[™Ärû\ŽÄtüYÄX©jŽÄwe[¡¡¡¡™ x j k¡¡¨ÄX©jÄx;]™Ärû\ŽÄÍðŸÄX©jŽÄx;]¡¡¡¡™ x j k¡¡¨ÄX©jÄH˜9™Ärû\ŽÄœò{ÄX©jŽÄH˜9¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄÏë«™Ä:ä/ŽÄ“jyÄ¢ ÁŽÄÏë«¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄSýD™Ä:ä/ŽÄ&]Ä¢ ÁŽÄSýD¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄMÅ>™Ä:ä/ŽÄeÌQÄ¢ ÁŽÄMÅ>¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄÀ뉙Ä:ä/ŽÄCµ0Ä¢ ÁŽÄÀ뉡¡¡¡™ x j k¡¡¨Ä¢ ÁÄ]C™Ä:ä/ŽÄÍë”Ä¢ ÁŽÄ]C¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄWÈA™Ä:ä/ŽÄWðAÄ¢ ÁŽÄWÈA¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄç{©™Ä:ä/ŽÄd*IÄ¢ ÁŽÄç{©¡¡¡¡™ x j k¡¡¨ÄX©jÄ€wZ™Ärû\ŽÄ6U&ÄX©jŽÄ€wZ¡¡¡¡™ x j k¡¡¨ÄX©jÄÉU™Ärû\ŽÄT :ÄX©jŽÄÉU¡¡¡¡™ x j k¡¡¨ÄX©jÄŽ‘`™Ärû\ŽÄr‰MÄX©jŽÄŽ‘`¡¡¡¡™ x j k¡¡¨ÄX©jÄ/(™Ärû\ŽÄ’M|ÄX©jŽÄ/(¡¡¡¡™ x j k¡¡¨Ä Ò™Ä&l'™Äû\—ŽÄWåYÄ Ò™ŽÄ&l'¡¡¡¡™ x j k¡¡¨Ä Ò™Ä&l'™ÄlngŽÄz!kÄ Ò™ŽÄ&l'¡¡¡¡™ x j k¡¡¨Ä©—½Ä5 C™Ä‡¼—ŽÄ{ó€Ä©—½ŽÄ5 C¡¡¡¡™ x j k¡¡¨Ä4/Ĭ»S™Ä{AoŽÄ"‘Ä4/ŽÄ¬»S¡¡¡¡™ x j k¡¡¨Ä4/Ĭ»S™Ärû\ŽÄtò³Ä4/ŽÄ¬»S¡¡¡¡™ x j k¡¡¨ÄŸ Äb·/™Äû\—ŽÄ?˜ÄŸ ŽÄb·/¡¡¡¡™ x j k¡¡¨ÄŸ Äb·/™ÄCÇ<ŽÄ‡#>ÄŸ ŽÄb·/¡¡¡¡™ x j k¡¡¨Ä¸#©Äe1™Äº—«ŽÄz 9ĸ#©ŽÄe1¡¡¡¡™ x j k¡¡¨Ä¸#©Äe1™Ärû\ŽÄV³*ĸ#©ŽÄe1¡¡¡¡™ x j k¡¡¨Ä™Ä`/™Ärû\ŽÄ†ùBÄ™ŽÄ`/¡¡¡¡™ x j k¡¡¨Ä™Ä`/™Ä¡Ý—ŽÄtµ7Ä™ŽÄ`/¡¡¡¡™ x j k¡¡¨Ä Ò™ÄM™Ärû\ŽÄ•éJÄ Ò™ŽÄM¡¡¡¡™ x j k¡¡¨Ä Ò™ÄM™ÄlngŽÄ?˜Ä Ò™ŽÄM¡¡¡¡™ x j k¡¡¨Ä^ï\Ä6¦›™Ä:ä/ŽÄfV3Ä^ï\ŽÄ6¦›¡¡¡¡™ x j k¡¡¨Ä^ï\Ä6¦›™ÄT¿RŽÄtò³Ä^ï\ŽÄ6¦›¡¡¡¡™ x j k¡¡¨ÄT SÄ]K/™Ä:ä/ŽÄÒ©jÄT SŽÄ]K/¡¡¡¡™ x j k¡¡¨ÄT SÄ]K/™Ä++ŽÄV³*ÄT SŽÄ]K/¡¡¡¡™ x j k¡¡¨Ä9‰/ÄÆ]X™Ärû\ŽÄ‰¦=Ä9‰/ŽÄÆ]X¡¡¡¡™ x j k¡¡¨ÄQÅÚÄ¥)A™ÄX—9ŽÄh`)ÄQÅÚŽÄ¥)A¡¡¡¡™ x j k¡¡¨ÄQÅÚÄBÇ€™ÄX—9ŽÄU‡ÄQÅÚŽÄBÇ€¡¡¡¡™ x j k¡¡¨ÄQÅÚĈµ5™ÄX—9ŽÄÉ‘NÄQÅڎĈµ5¡¡¡¡™ x j k¡¡¨Ä9‰/Äi1™ÄI\;ŽÄ‘¿8Ä9‰/ŽÄi1¡¡¡¡™ x j k¡¡¨ÄIE¡ÄÖ￙ċþ£ŽÄ¬ÃFÄIE¡ŽÄÖï¿¡¡¡¡™ x j k¡¡¨Ä9ŸÄZ•/™ÄS†ŽÄhÝIÄ9ŸŽÄZ•/¡¡¡¡™ x j k¡¡¨Ä9ŸÄ®3D™Ä&3(ŽÄTž!Ä9ŸŽÄ®3D¡¡¡¡™ x j k¡¡¨Ä+XÁÄR±%™Ä“öŽÄz!ŽÄ+XÁŽÄR±%¡¡¡¡™ x j k¡¡¨ÄK_0ÄZ•/™Ä“öŽÄoÉ2ÄK_0ŽÄZ•/¡¡¡¡™ x j k¡¡¨ÄP_BÄäqb™Ä³·“ŽÄ‡K:ÄP_BŽÄäqb¡¡¡¡™ x j k¡¡¨Ä9‰/Äo•0™Ä#ŒŽÄ,¼ïÄ9‰/ŽÄo•0¡¡¡¡™ x j k¡¡¨Ä³·“Ä,¼ï™ÄHj;ŽÄ5°Ä³·“ŽÄ,¼ï¡¡¡¡™ x j k¡¡¨ÄHj;Ääqb™ÄAN5ŽÄ‡K:ÄHj;ŽÄäqb¡¡¡¡™ x j k¡¡¨Ä9‰/Ä5°™Ä#ŒŽÄr1Ä9‰/ŽÄ5°¡¡¡¡™ x j k¡¡¨Äj«YÄÝï`™ÄFÿ;ŽÄEgÄj«YŽÄÝï`¡¡¡¡™ x j k¡¡¨Ä©åÄnŸ™ÄŸC„ŽÄjE.Ä©åŽÄnŸ¡¡¡¡™ x j k¡¡¨ÄFÿ;ÄjE.™Ä&© ŽÄkuÄFÿ;ŽÄjE.¡¡¡¡™ x j k¡¡¨Ä&© ÄÝï`™Äš ŽÄEgÄ&© ŽÄÝï`¡¡¡¡™ x j k¡¡¨Ä©åÄku™ÄŸC„ŽÄÜb_Ä©åŽÄku¡¡¡¡™ x j k¡¡¨ÄÛá©Äþzo™ÄŠjŽÄ¾óSÄÛá©ŽÄþzo¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä2Œ'ĵ'O™ÄÔ ÄYN'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄfrOÄY''™Ä2³'Ä^ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄfÁOÄY''™Ä2Ú'Ä^ã—˜ k¡¡¨ÄfGOÄþzo™Ä ËŽÄg=-ÄfGOŽÄþzo¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Äg_OÄY''™Ä3('Ä^ã—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄgOÄY''™Ä3'Ä^ã—˜ k¡¡¨Ä4/ÄÝï`™ÄŸ ŽÄÍ÷YÄ4/ŽÄÝï`¡¡¡¡™ x j k¡¡¨Ä4/Ääqb™ÄŸ ŽÄ:VÄ4/ŽÄäqb¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Äû\—Ä~7 ¢ ¥ ¨  Š¡²“ÁR15– k¡¡¨Ä§/ÄÒQ™ÄF ;ŽÄpe+ħ/ŽÄÒQ¡¡¡¡™ x j k¡¡¨Ä§/ÄÒQ™ÄF ;ŽÄJnħ/ŽÄÒQ¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä.!'ÄÌêO™ÄìRÄe '—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä]OÄdâ'™Ä.H'Ä!¶ —˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä]OÄdâ'™Ä.H'Ä!¶ —˜ k¡¡¨ÄE”;ÄÒQ™ÒŽÄtË-ÄE”;ŽÄÒQ¡¡¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä^OÄdâ'™Ä.–'Ä!¶ —˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä]ÎOÄdâ'™Ä.o'Ä!¶ —˜ k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄC°;ÄÖP³ ¢ ¥ ¨  Š¡²“ÁR11– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä¸#©ÄÖP³ ¢ ¥ ¨  Š¡²“ÁR10– k¡¡¨Ä+XÁÄįJ™ÄÖ+…ŽÄM&Ä+XÁŽÄįJ¡¡¡¡™ x j k¡¡¨Äšo`ÄU(™ÄÖ+…ŽÄ.£Äšo`ŽÄU(¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄK_0Ä7 ¢ ¥ ¨  Š¡²“ÁR20– k¡¡¨Ä–«ÄR±%™Äo ŽÄÆ]XÄ–«ŽÄR±%¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä\¿:ăƒ ¢ ¥ ¨  Š¡²“ÁRSET– k¡¡¨ÄS3Äm,;™Ä^ƒ:ŽÄˆŠIÄS3ŽÄm,;¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä\¿:Ę›Q ¢ ¥ ¨  Š¡²“ÁR1– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä@'Ę›Q ¢ ¥ ¨  Š¡²“ÁR2– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Äq'BĘ›Q ¢ ¥ ¨  Š¡²“ÁR3– k¡¡¨ÄA«ÄU(™Ä’™NŽÄ^µ*ÄA«ŽÄU(¡¡¡¡™ x j k¡¡¨ÄA«ÄZ•/™Ä’™NŽÄ¥ýOÄA«ŽÄZ•/¡¡¡¡™ x j k¡¡¨Ä§JÄU(™Ä”¯LŽÄ^µ*ħJŽÄU(¡¡¡¡™ x j k¡¡¨Ä§JÄZ•/™Ä”¯LŽÄ¥ýOħJŽÄZ•/¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄƒfCÄ÷+t ¢ ¥ ¨  Š¡²“Á+– k¡¡¨ÄƒEÄ~Å8™ÄT')ŽÄ¡ÝGăEŽÄ~Å8¡¡¡¡™ x j k¡¡¨Ä­ÈUÄ¡ÝG™Ä!ŠŽÄ˜ÚCÄ­ÈUŽÄ¡ÝG¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨Ä u ¤F £Äý·|Äþzo ¢ ¥ ¥ ¨  Š¡²“Á+– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄÜï|Ä´·P ¢ ¥ ¨  Š¡²“ÁVAA– k¡¡¨Ä¥kYÄʽm™Ä‡ÌIŽÄ ÇÄ¥kYŽÄʽm¡¡¡¡™ x j k¡¡¨Ä¡lWÄ4æG™Ä.²£ŽÄ³ÌaÄ¡lWŽÄ4æG¡¡¡¡™ x j k¡¡¨Ä¡lWijÌa™Ä¥´YŽÄ®c^Ä¡lWŽÄ³Ìa¡¡¡¡™ x j k¡¡¨Ä¥´YÄ4æG™ÄŸLŽÄ®c^Ä¥´YŽÄ4æG¡¡¡¡™ x j k¡¡¨Ä¡lWÄ4æG™ÄŸLŽÄ=ý¬Ä¡lWŽÄ4æG¡¡¡¡™ x j k¡¡¨Ä*‡ÄV„/™Ä.¿ŽÄRè-Ä*‡ŽÄV„/¡¡¡¡™ x j k¡¡¨ÄºÓdÄV„/™Ä.¿ŽÄbª5ĺÓdŽÄV„/¡¡¡¡™ x j k¡¡¨Ä*‡Äʽm™ÄºÓdŽÄbª5Ä*‡ŽÄʽm¡¡¡¡™ x j k¡¡¨Ä*‡ÄV„/™Är½>ŽÄʽmÄ*‡ŽÄV„/¡¡¡¡™ x j k¡¡¨Ä­éãIJәĄ¯FŽÄl:;Ä­éãŽÄ²Ó¡¡¡¡™ x j k¡¡¨Ä­éãÄl:;™ÄøðƒŽÄ›'Ä­éãŽÄl:;¡¡¡¡™ x j k¡¡¨ÄøðƒÄ²Ó™Är<ŽÄ›'ÄøðƒŽÄ²Ó¡¡¡¡™ x j k¡¡¨Ä­éãIJәÄr<ŽÄºfÄ­éãŽÄ²Ó¡¡¡¡™ x j k¡¡¨ÄºÜcÄã±}™Ä´‘ŽÄ ÑĺÜcŽÄã±}¡¡¡¡™ x j k¡¡¨Ä–¡OÄã±}™Ä´‘ŽÄRè-Ä–¡OŽÄã±}¡¡¡¡™ x j k¡¡¨ÄºÜcÄV„/™Ä–¡OŽÄRè-ĺÜcŽÄV„/¡¡¡¡™ x j k¡¡¨ÄºÜcÄã±}™Ä¯¯]ŽÄV„/ĺÜcŽÄã±}¡¡¡¡™ x j k¡¡¨ÄA³"Äu‘A™Ä,{ŽÄFÄA³"ŽÄu‘A¡¡¡¡™ x j k¡¡¨ÄA³"ÄF™ÄO})ŽÄY1ÄA³"ŽÄF¡¡¡¡™ x j k¡¡¨ÄO})Äu‘A™ÄX ŽÄY1ÄO})ŽÄu‘A¡¡¡¡™ x j k¡¡¨ÄA³"Äu‘A™ÄX ŽÄ¨\]ÄA³"ŽÄu‘A¡¡¡¡™ x j k¡¡¨ÄwŽÃÄjV;™ÄóX}ŽÄÌv©ÄwŽÃŽÄjV;¡¡¡¡™ x j k¡¡¨ÄŠGÄjV;™ÄóX}ŽÄ ÑÄŠGŽÄjV;¡¡¡¡™ x j k¡¡¨ÄwŽÃÄã±}™ÄŠGŽÄ ÑÄwŽÃŽÄã±}¡¡¡¡™ x j k¡¡¨ÄwŽÃÄjV;™Ä}JAŽÄã±}ÄwŽÃŽÄjV;¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄËJmÄ6, ¢ ¥ ¨  Š¡²“ÁPR– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄA«Ä|E ¢ ¥ ¨  Š¡²“ÁPG– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä8ãÄ®c^ ¢ ¥ ¨  Š¡²“ÁRed– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä8ãÄ›' ¢ ¥ ¨  Š¡²“ÁGreen– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä8ãÄY1 ¢ ¥ ¨  Š¡²“ÁBlue– k¡¡¨ÄšX-Ä-;4™ÄS†ŽÄ5‰ÄšX-ŽÄ-;4¡¡¡¡™ x j k¡¡¨Ä¥^aćÃX™ÄW3ŽÄʀĥ^aŽÄ‡ÃX¡¡¡¡™ x j k¡¡¨ÄbCÉćÃX™Ä™zWŽÄÊ€ÄbCɎćÃX¡¡¡¡™ x j k¡¡¨ÄgÀ9ćÃX™Ä“ŽÄÊ€ÄgÀ9ŽÄ‡ÃX¡¡¡¡™ x j k¡¡¨Ä7Ö!Ä`/?™ÄY‘ÉŽÄÿ;§Ä7Ö!ŽÄ`/?¡¡¡¡™ x j k¡¡¨Ä7Ö!Ĩ+™ÄY‘ÉŽÄþ)§Ä7Ö!ŽÄ¨+¡¡¡¡™ x j k¡¡¨Ä¥^aÄ—ïe™ÄW3ŽÄ¨+Ä¥^aŽÄ—ïe¡¡¡¡™ x j k¡¡¨Ä¥^aÄ`/?™ÄW3ŽÄ秖Ä¥^aŽÄ`/?¡¡¡¡™ x j k¡¡¨Ä”¹UÄ`/?™Ä·IŽÄÿ;§Ä”¹UŽÄ`/?¡¡¡¡™ x j k¡¡¨Ä”¹UĨ+™Ä·IŽÄþ)§Ä”¹UŽÄ¨+¡¡¡¡™ x j k¡¡¨ÄbCÉÄ—ïe™Ä™zWŽÄ¨+ÄbCÉŽÄ—ïe¡¡¡¡™ x j k¡¡¨ÄbCÉÄ`/?™Ä™zWŽÄ秖ÄbCÉŽÄ`/?¡¡¡¡™ x j k¡¡¨ÄŽÈOÄ`/?™Äe¿ÃŽÄÿ;§ÄŽÈOŽÄ`/?¡¡¡¡™ x j k¡¡¨ÄŽÈOĨ+™Äe¿ÃŽÄþ)§ÄŽÈOŽÄ¨+¡¡¡¡™ x j k¡¡¨ÄgÀ9Ä—ïe™Ä“ŽÄ¨+ÄgÀ9ŽÄ—ïe¡¡¡¡™ x j k¡¡¨ÄgÀ9Ä`/?™Ä“ŽÄ秖ÄgÀ9ŽÄ`/?¡¡¡¡™ x j k¡¡¨ÄËJmÄ`/?™ÄU'-ŽÄÿ;§ÄËJmŽÄ`/?¡¡¡¡™ x j k¡¡¨ÄËJmĨ+™ÄU'-ŽÄþ)§ÄËJmŽÄ¨+¡¡¡¡™ x j k¡¡¨ÄA«Ä—ïe™Ä’™NŽÄ¨+ÄA«ŽÄ—ïe¡¡¡¡™ x j k¡¡¨ÄA«Ä`/?™Ä’™NŽÄ秖ÄA«ŽÄ`/?¡¡¡¡™ x j k¡¡¨Ä¥^aħb™ÄW3ŽÄ"žÄ¥^aŽÄ§b¡¡¡¡™ x j k¡¡¨ÄbCÉħb™Ä™zWŽÄ"žÄbCɎħb¡¡¡¡™ x j k¡¡¨ÄgÀ9ħb™Ä“ŽÄ"žÄgÀ9ŽÄ§b¡¡¡¡™ x j k¡¡¨ÄA«ÄX7™Ä’™NŽÄ;Ï%ÄA«ŽÄX7¡¡¡¡™ x j k¡¡¨Ä }Ä;Ï%™Äg¹7ŽÄ‹'VÄ }ŽÄ;Ï%¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨Ä u ¤F £Ä 6+ëÄ{ÓL ¢ ¥ ¥ ¨  Š¡²“Á+– k¡¡¨Ä¥^aÄJQ/™ÄA«ŽÄÛRÄ¥^aŽÄJQ/¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨Ä w ¤F £Ä¨•BÄ¡Î? ¢ ¥ ¥ ¨  Š¡²“ÁStandard DynaBus Interface– k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨Ä w ¤F £Ä¨•BÄ´3\ ¢ ¥ ¥ ¨  Š¡²“ÁStandard DBus Interface– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä–¡OÄ>‹( ¢ ¥ ¨  Š¡²“ÁJ1– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä–¡OÄJÐß ¢ ¥ ¨  Š¡²“ÁJ2– k¡¡¨ÄMiBĆÁ5™Ä9‰/ŽÄA³ãÄMiBŽÄ†Á5¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä§/ÄóGÄ ¢ ¥ ¨  Š¡²“ÁLow– k¡¡¨Ä9‰/ÄhÇ(™ÄI\;ŽÄ«\£Ä9‰/ŽÄhÇ(¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “ •  —¡¡¨Ä u ¤Ä!U°ÄëQZ ¢ ¥ ¨  Š¡²“ÁDivide-by-four– k¡¡¨Ä9‰/ĆÁ5™Ä#ŒŽÄÛü·Ä9‰/ŽÄ†Á5¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄHj;Ä4 ¢ ¥ ¨  Š¡²“ÁHigh– k¡¡¨Ä9‰/Ä–—7™Ä²ŽÄ¡¯;Ä9‰/ŽÄ–—7¡¡¡¡™ x j k¡¡¨Ä9‰/ÄhÇ(™Ä#ŒŽÄº=DÄ9‰/ŽÄhÇ(¡¡¡¡™ x j k¡¡¨Äx;oÄuË,™ÄI\;ŽÄ¶5DÄx;oŽÄuË,¡¡¡¡™ x j k¡¡¨ÄŸ ÄHo~™ÄCÇ<ŽÄŸe=ÄŸ ŽÄHo~¡¡¡¡™ x j k¡¡¨ÄŸ ÄHo~™Ä§/ŽÄ³ ÄŸ ŽÄHo~¡¡¡¡™ x j k¡¡¨Ä\õ1ÄünŸ™Ä–¡OŽÄ:Í%Ä\õ1ŽÄünŸ¡¡¡¡™ x j k¡¡¨Ä–¡Oij'Q™Äb3ŽÄ{MÄ–¡OŽÄ³'Q¡¡¡¡™ x j k¡¡¨ÄRŠ+ÄÕ凙Ä*E›ŽÄCÄRŠ+ŽÄÕ凡¡¡¡™ x j k¡¡¨Ä–¡OÄÕ凙Ätš=ŽÄCÄ–¡OŽÄÕ凡¡¡¡™ x j k¡¡¨Äb3ÄünŸ™ÄA³"ŽÄ:Í%Äb3ŽÄünŸ¡¡¡¡™ x j k¡¡¨ÄƒEÄ ™ÄT')ŽÄ¥ýOăEŽÄ ¡¡¡¡™ x j k¡¡¨Äyd=ÄZ•/™Ä¥øSŽÄ7ðÄyd=ŽÄZ•/¡¡¡¡™ x j k¡¡¨Ä¥øSÄÓm™ÄƒÀŽÄr_;Ä¥øSŽÄÓm¡¡¡¡™ x j k¡¡¨Ä\'­Ä~äǙăAŽÄ@!!Ä\'­ŽÄ~äÇ¡¡¡¡™ x j k¡¡¨Ä¥øSÄ~äÇ™ÄÂnaŽÄ@!!Ä¥øSŽÄ~äÇ¡¡¡¡™ x j k¡¡¨ÄƒÀÄZ•/™Ä \…ŽÄ7ðăÀŽÄZ•/¡¡¡¡™ x j k¡¡¨Ä™ÄuË,™ÄƒïcŽÄ¥·ýÄ™ŽÄuË,¡¡¡¡™ x j k¡¡¨Ä™Ä3;™ÄƒïcŽÄŒK4Ä™ŽÄ3;¡¡¡¡™ x j k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä^ÁXÄÊ–K ¢ ¥ ¨  Š¡²“Á8– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä^ÁXÄÆ ¢ ¥ ¨  Š¡²“Á1– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä·²Ä[Ÿ" ¢ ¥ ¨  Š¡²“ÁOut– k¡¡¨Ä™ÄhÇ(™Ä¡Ý—ŽÄùÕ\Ä™ŽÄhÇ(¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄhÇ(™Ä·cÚŽÄùÕ\Ä¢ ÁŽÄhÇ(¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄįJ™Ä™ŽÄm )Ä¢ ÁŽÄįJ¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄhÇ(™Ä™ŽÄ¯œCÄ¢ ÁŽÄhÇ(¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄùÕ\™Ä¡Ý—ŽÄÖ¨OÄ¢ ÁŽÄùÕ\¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨Ä w ¤ÄJÂQĪÖA ¢ ¥ ¨  Š¡²“ÁOSC– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄOóTÄtË- ¢ ¥ ¨  Š¡²“ÁGND: 7– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä·²Ä:e ¢ ¥ ¨  Š¡²“ÁOut*– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä‹þ£ÄtË- ¢ ¥ ¨  Š¡²“ÁVDD: 14– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄO#7ÄSp ¢ ¥ ¨  Š¡²“ÁCLOCK– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤ÄO#7ÄSb ¢ ¥ ¨  Š¡²“ÁCLOCK*– k¡¡¨Ä\D=ÄC™Ä+XÁŽÄÉqNÄ\D=ŽÄC¡¡¡¡™ x j k¡¡¨Ä\D=Äi1™Ä+XÁŽÄJnÄ\D=ŽÄi1¡¡¡¡™ x j k¡¡¨Ä\D=ÄhÇ(™Ä+XÁŽÄ¯œCÄ\D=ŽÄhÇ(¡¡¡¡™ x j k¡¡¨Ä\D=ÄÔ9™Ä+XÁŽÄ3Ä\D=ŽÄÔ9¡¡¡¡™ x j k¡¡¨Ä\D=ĆÁ5™Ä+XÁŽÄ^"%Ä\D=ŽÄ†Á5¡¡¡¡™ x j k¡¡¨Ä\D=Ä®3D™Ä+XÁŽÄR Ä\D=ŽÄ®3D¡¡¡¡™ x j k¡¡¨ÄI\;Ä®3D™ÄÄX©jŽÄàAg¡¡¡¡™ x j k¡¡¨Äa˜ÄYU(™ÄNb]ŽÄ•ôCÄa˜ŽÄYU(¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄh#/™Ä:Z=ŽÄõ@Ä¢ ÁŽÄh#/¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄm0™ÄCIŽÄEÄ¢ ÁŽÄm0¡¡¡¡™ x j k¡¡¨Ä¢ ÁÄÆ]X™Ä{ˆŽÄ‰¦=Ä¢ ÁŽÄÆ]X¡¡¡¡™ x j k¡¡¨ÄšX-ÄÔ‰ê™ÄS†ŽÄ2 7ÄšX-ŽÄԉꡡ¡¡™ x j k x jÄÔu¯“ °“¢·“¡¡¨Ä?¦'Ä•üO™Ä[áÖÄIë'—˜ k x jÄÔu¯“ °“¢·“¡¡¨ÄOĦ ™Ä?'ÄJ'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä€­OÄe ™Ä?¦'ÄI?'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä?¦'Ä”mO™Ä[áÖÄIf'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä?¦'Ä”ÀO™Ä[áÖÄIO'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä?¦'Ä•^O™Ä[áÖÄI'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä?¦'Ä• O™Ä[áÖÄI´'—˜ k x jÄÔu¯“ °“¢·“¡¡¨Ä?¦'Ä•ZO™Ä[áÖÄIÛ'—˜ k¡¡¨ÄS3†™Ä^ƒ:ŽÄp{;ÄS3Ž†¡¡¡¡™ x j k¡¡¨ÄS3Än;™Ä^ƒ:ŽÄ\—BÄS3ŽÄn;¡¡¡¡™ x j k¡¡¨ÄšX-Ä®_Í™ÄÍ<ŽÄ¤2GÄšX-ŽÄ®_Í¡¡¡¡™ x j k¡¡¨Ä&3(ÄZ•/™Ä:ä/ŽÄhÝIÄ&3(ŽÄZ•/¡¡¡¡™ x j k¡¡¨Ä9‰/Äzú£™Ä#ŒŽÄÑÄ9‰/ŽÄzú£¡¡¡¡™ x j k¡¡¨Ä+XÁÄÆ]X™ÄVÛ,ŽÄ‰¦=Ä+XÁŽÄÆ]X¡¡¡¡™ x j k¡¡¨ÄK_0ÄZ•/™Äõ ŽÄhÝIÄK_0ŽÄZ•/¡¡¡¡™ x j k¡¡¨Ä^qÄU1™Äê5¼ŽÄpUÔÄ^qŽÄU1¡¡¡¡™ x j k¡¡¨Ä^qÄRs/™Äê5¼ŽÄ‘ Ä^qŽÄRs/¡¡¡¡™ x j k¡¡¨Ä9QßÄŽiS™Ä6Õ,ŽÄúÛ’Ä9QߎÄŽiS¡¡¡¡™ x j k¡¡¨Ä^qÄO½/™Äê5¼ŽÄg£=Ä^qŽÄO½/¡¡¡¡™ x j k¡¡¨Ä9QßÄrD™Ä6Õ,ŽÄˆQÄ9QߎÄrD¡¡¡¡™ x j k x jÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “ •  —¡¡¨Ä w ¤ÄjÄy샠¢ ¥ ¨  Š¡²“ÁDisplay Controller– k x jÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨¦ ¤Ä3 Äb+µ ¢ ¥ ¨  Š¡²“ÁC1– k k k g– Interpress–:0.0 mm xmin 0.0 mm ymin 168.0668 mm xmax 195.0554 mm ymax –é197.8776 mm bigger topLeading 197.8776 mm bigger topIndent 1.411111 mm bigger bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–ðÊGargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/DisplayControllerApplSch.gargoyle at May 16, 1988 4:08:19 pm PDT Produced by version 8803.24 Scripts: Slope: [F 150.0] [F 135.0] [F 120.0] [F 90.0] [F 60.0] [F 45.0] [F 30.0] [F 0.0] Angle: [F 90.0] [F 60.0] [F 45.0] [F 30.0] [F 0.0] [F -30.0] [F -45.0] [F -60.0] [F -90.0] Radius: [F 5.555556e-2 1/18] [F 0.1111111 1/9] [F 0.125 1/8] [F 0.25 1/4] [F 0.3333333 1/3] [F 0.5 1/2] [F 0.6666667 2/3] [F 0.75 3/4] [F 1.0 1] [F 2.0 2] [F 4.0 4] LineDistance: [F 0.0 0] [F 5.555556e-2 1/18] [F 0.1111111 1/9] [F 0.5 1/2] [F 1.0 1] Midpoints: F Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: F GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/Helvetica-brr [r1: 0.0 s: [6.0 6.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: F PaletteForFillColor: F PaletteForStrokeColor: F Entities: [1199]: Text T "D0" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 501.9966][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D1" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 506.9185][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D2" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 511.8406][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D3" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 516.7625][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D4" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 521.6846][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D5" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 526.6064][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D6" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 531.5286][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D7" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 536.4504][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VREF" xerox/pressfonts/Helvetica-B [6.0 0.0 374.908 0.0 6.0 546.2945][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "COMP" xerox/pressfonts/Helvetica-B [6.0 0.0 372.447 0.0 6.0 556.1384][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "FS ADJUST" xerox/pressfonts/Helvetica-B [6.0 0.0 361.7827 0.0 6.0 551.2166][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "IOR" xerox/pressfonts/Helvetica-B [6.0 0.0 378.1893 0.0 6.0 472.4646][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "IOB" xerox/pressfonts/Helvetica-B [6.0 0.0 378.1893 0.0 6.0 462.6206][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "IOG" xerox/pressfonts/Helvetica-B [6.0 0.0 378.1893 0.0 6.0 467.5425][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,547.5249] (Line ) [397.057,547.5249] (Line ) [397.057,547.935] (Line ) [387.213,547.935] (Line ) fwd: T Text T "AGND" xerox/pressfonts/Helvetica-B [6.0 0.0 374.0876 0.0 6.0 570.9044][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VAA" xerox/pressfonts/Helvetica-B [6.0 0.0 376.5486 0.0 6.0 575.8264][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "LD*" xerox/pressfonts/Helvetica-B [6.0 0.0 333.071 0.0 6.0 565.9824][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "CLOCK*" xerox/pressfonts/Helvetica-B [6.0 0.0 333.071 0.0 6.0 570.9044][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "CLOCK" xerox/pressfonts/Helvetica-B [6.0 0.0 333.071 0.0 6.0 575.8264][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,577.0569] (Line ) [328.149,577.0569] (Line ) [328.149,577.467] (Line ) [318.305,577.467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,567.2129] (Line ) [328.149,567.2129] (Line ) [328.149,567.623] (Line ) [318.305,567.623] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,498.305] (Line ) [327.3287,498.305] (Line ) [327.3287,498.7151] (Line ) [318.305,498.7151] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,483.539] (Line ) [328.149,483.539] (Line ) [328.149,483.9492] (Line ) [318.305,483.9492] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,532.759] (Line ) [328.149,532.759] (Line ) [328.149,533.1692] (Line ) [318.305,533.1692] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,537.6809] (Line ) [328.149,537.6809] (Line ) [328.149,538.091] (Line ) [318.305,538.091] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,257.1272] (Line ) [328.149,257.1272] (Line ) [328.149,257.5374] (Line ) [318.305,257.5374] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,557.3689] (Line ) [397.057,557.3689] (Line ) [397.057,557.779] (Line ) [387.213,557.779] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,552.447] (Line ) [397.057,552.447] (Line ) [397.057,552.8572] (Line ) [387.213,552.8572] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,493.383] (Line ) [328.149,493.383] (Line ) [328.149,493.7932] (Line ) [318.305,493.7932] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,252.2051] (Line ) [328.149,252.2051] (Line ) [328.149,252.6152] (Line ) [318.305,252.6152] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,247.2832] (Line ) [328.149,247.2832] (Line ) [328.149,247.6934] (Line ) [318.305,247.6934] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,242.3611] (Line ) [328.149,242.3611] (Line ) [328.149,242.7712] (Line ) [318.305,242.7712] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,237.4392] (Line ) [328.149,237.4392] (Line ) [328.149,237.8494] (Line ) [318.305,237.8494] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,232.5171] (Line ) [328.149,232.5171] (Line ) [328.149,232.9272] (Line ) [318.305,232.9272] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,227.5952] (Line ) [328.149,227.5952] (Line ) [328.149,228.0054] (Line ) [318.305,228.0054] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,222.6731] (Line ) [328.149,222.6731] (Line ) [328.149,223.0832] (Line ) [318.305,223.0832] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,449.085] (Line ) [328.149,449.085] (Line ) [328.149,449.4951] (Line ) [318.305,449.4951] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,444.1631] (Line ) [328.149,444.1631] (Line ) [328.149,444.5732] (Line ) [318.305,444.5732] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,439.241] (Line ) [328.149,439.241] (Line ) [328.149,439.6511] (Line ) [318.305,439.6511] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,434.3191] (Line ) [328.149,434.3191] (Line ) [328.149,434.7292] (Line ) [318.305,434.7292] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,429.397] (Line ) [328.149,429.397] (Line ) [328.149,429.8071] (Line ) [318.305,429.8071] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,424.4751] (Line ) [328.149,424.4751] (Line ) [328.149,424.8852] (Line ) [318.305,424.8852] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,419.553] (Line ) [328.149,419.553] (Line ) [328.149,419.9631] (Line ) [318.305,419.9631] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,414.6311] (Line ) [328.149,414.6311] (Line ) [328.149,415.0412] (Line ) [318.305,415.0412] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,409.709] (Line ) [328.149,409.709] (Line ) [328.149,410.1191] (Line ) [318.305,410.1191] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,404.7871] (Line ) [328.149,404.7871] (Line ) [328.149,405.1973] (Line ) [318.305,405.1973] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,399.865] (Line ) [328.149,399.865] (Line ) [328.149,400.2751] (Line ) [318.305,400.2751] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,394.9431] (Line ) [328.149,394.9431] (Line ) [328.149,395.3533] (Line ) [318.305,395.3533] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,390.021] (Line ) [328.149,390.021] (Line ) [328.149,390.4312] (Line ) [318.305,390.4312] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,385.0991] (Line ) [328.149,385.0991] (Line ) [328.149,385.5093] (Line ) [318.305,385.5093] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,380.177] (Line ) [328.149,380.177] (Line ) [328.149,380.5872] (Line ) [318.305,380.5872] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,375.2551] (Line ) [328.149,375.2551] (Line ) [328.149,375.6653] (Line ) [318.305,375.6653] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,370.333] (Line ) [328.149,370.333] (Line ) [328.149,370.7432] (Line ) [318.305,370.7432] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,365.4111] (Line ) [328.149,365.4111] (Line ) [328.149,365.8213] (Line ) [318.305,365.8213] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,360.489] (Line ) [328.149,360.489] (Line ) [328.149,360.8992] (Line ) [318.305,360.8992] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,355.5671] (Line ) [328.149,355.5671] (Line ) [328.149,355.9773] (Line ) [318.305,355.9773] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,350.645] (Line ) [328.149,350.645] (Line ) [328.149,351.0552] (Line ) [318.305,351.0552] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,345.7231] (Line ) [328.149,345.7231] (Line ) [328.149,346.1333] (Line ) [318.305,346.1333] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,340.801] (Line ) [328.149,340.801] (Line ) [328.149,341.2112] (Line ) [318.305,341.2112] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,335.8791] (Line ) [328.149,335.8791] (Line ) [328.149,336.2893] (Line ) [318.305,336.2893] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,330.957] (Line ) [328.149,330.957] (Line ) [328.149,331.3672] (Line ) [318.305,331.3672] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,326.0352] (Line ) [328.149,326.0352] (Line ) [328.149,326.4453] (Line ) [318.305,326.4453] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,321.113] (Line ) [328.149,321.113] (Line ) [328.149,321.5232] (Line ) [318.305,321.5232] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,316.1912] (Line ) [328.149,316.1912] (Line ) [328.149,316.6013] (Line ) [318.305,316.6013] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,311.269] (Line ) [328.149,311.269] (Line ) [328.149,311.6792] (Line ) [318.305,311.6792] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,306.3472] (Line ) [328.149,306.3472] (Line ) [328.149,306.7573] (Line ) [318.305,306.7573] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,301.425] (Line ) [328.149,301.425] (Line ) [328.149,301.8352] (Line ) [318.305,301.8352] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,522.915] (Line ) [328.149,522.915] (Line ) [328.149,523.3252] (Line ) [318.305,523.3252] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,527.8369] (Line ) [328.149,527.8369] (Line ) [328.149,528.247] (Line ) [318.305,528.247] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,508.149] (Line ) [328.149,508.149] (Line ) [328.149,508.5591] (Line ) [318.305,508.5591] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,503.227] (Line ) [328.149,503.227] (Line ) [328.149,503.6372] (Line ) [318.305,503.6372] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,517.9929] (Line ) [328.149,517.9929] (Line ) [328.149,518.4031] (Line ) [318.305,518.4031] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,513.071] (Line ) [328.149,513.071] (Line ) [328.149,513.4812] (Line ) [318.305,513.4812] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,488.461] (Line ) [328.149,488.461] (Line ) [328.149,488.8711] (Line ) [318.305,488.8711] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,454.0071] (Line ) [328.149,454.0071] (Line ) [328.149,454.4172] (Line ) [318.305,454.4172] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,262.0491] (Line ) [328.149,262.0491] (Line ) [328.149,262.4592] (Line ) [318.305,262.4592] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,266.9712] (Line ) [328.149,266.9712] (Line ) [328.149,267.3813] (Line ) [318.305,267.3813] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,271.8931] (Line ) [328.149,271.8931] (Line ) [328.149,272.3032] (Line ) [318.305,272.3032] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,276.8152] (Line ) [328.149,276.8152] (Line ) [328.149,277.2253] (Line ) [318.305,277.2253] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,281.737] (Line ) [328.149,281.737] (Line ) [328.149,282.1472] (Line ) [318.305,282.1472] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,286.6592] (Line ) [328.149,286.6592] (Line ) [328.149,287.0693] (Line ) [318.305,287.0693] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,291.581] (Line ) [328.149,291.581] (Line ) [328.149,291.9912] (Line ) [318.305,291.9912] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,296.5032] (Line ) [328.149,296.5032] (Line ) [328.149,296.9133] (Line ) [318.305,296.9133] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,212.8291] (Line ) [328.149,212.8291] (Line ) [328.149,213.2393] (Line ) [318.305,213.2393] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,217.7512] (Line ) [328.149,217.7512] (Line ) [328.149,218.1614] (Line ) [318.305,218.1614] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,207.9072] (Line ) [327.3287,207.9072] (Line ) [327.3287,208.3174] (Line ) [318.305,208.3174] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,202.9851] (Line ) [327.3287,202.9851] (Line ) [327.3287,203.3953] (Line ) [318.305,203.3953] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,577.0569] (Line ) [397.057,577.0569] (Line ) [397.057,577.467] (Line ) [387.213,577.467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,572.135] (Line ) [397.057,572.135] (Line ) [397.057,572.5452] (Line ) [387.213,572.5452] (Line ) fwd: T Text T "CE*" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 497.0745][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "R/W" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 492.1526][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C0" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 487.2305][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C1" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 482.3086][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,468.773] (Line ) [397.057,468.773] (Line ) [397.057,469.1831] (Line ) [387.213,469.1831] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,473.695] (Line ) [397.057,473.695] (Line ) [397.057,474.1052] (Line ) [387.213,474.1052] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,463.851] (Line ) [397.057,463.851] (Line ) [397.057,464.2612] (Line ) [387.213,464.2612] (Line ) fwd: T Text T "SYNC*" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 206.6765][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "BLANK*" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 201.7546][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,572.135] (Line ) [327.3287,572.135] (Line ) [327.3287,572.5452] (Line ) [318.305,572.5452] (Line ) fwd: T Text T "VAA: C12, C11, A9, L7, M7, A7" xerox/pressfonts/Helvetica-B [6.0 0.0 328.149 0.0 6.0 183.9124][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "AGND: B12, B11, M6, B6, A6" xerox/pressfonts/Helvetica-B [6.0 0.0 328.149 0.0 6.0 178.9905][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "A12" xerox/pressfonts/Helvetica-B [6.0 0.0 389.674 0.0 6.0 557.984][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "B10" xerox/pressfonts/Helvetica-B [6.0 0.0 389.674 0.0 6.0 553.0623][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C10" xerox/pressfonts/Helvetica-B [6.0 0.0 389.674 0.0 6.0 548.1402][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "M9" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 567.8281][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,497.4846] (Line ) [328.5591,497.4846] (Line ) [328.5591,499.5354] (Line ) [328.149,499.5354] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.7388,497.4846] (Line ) [328.5591,497.4846] (Line ) [328.5591,497.8948] (Line ) [327.7388,497.8948] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,499.1252] (Line ) [328.149,499.1252] (Line ) [328.149,499.5354] (Line ) [327.3287,499.5354] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,497.4846] (Line ) [327.7388,497.4846] (Line ) [327.7388,499.5354] (Line ) [327.3287,499.5354] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,188.2192] (Line ) [387.213,188.2192] (Line ) [387.213,188.6294] (Line ) [328.149,188.6294] (Line ) fwd: T Text T "A11" xerox/pressfonts/Helvetica-B [6.0 0.0 389.674 0.0 6.0 464.4663][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "A10" xerox/pressfonts/Helvetica-B [6.0 0.0 389.674 0.0 6.0 469.3882][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "B9" xerox/pressfonts/Helvetica-B [6.0 0.0 389.674 0.0 6.0 474.3103][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L9" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 203.6003][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "M10" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 208.5225][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "A8" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 484.1543][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "B7" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 489.0762][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "B8" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 493.9983][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "A5" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 498.9202][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,188.2192] (Line ) [387.6231,188.2192] (Line ) [387.6231,581.979] (Line ) [387.213,581.979] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,188.2192] (Line ) [328.5591,188.2192] (Line ) [328.5591,581.979] (Line ) [328.149,581.979] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [328.2051,578.4864] (Line ) [329.8458,576.8458] (Line ) [328.2051,575.2051] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,562.291] (Line ) [387.213,562.291] (Line ) [387.213,562.7012] (Line ) [328.149,562.7012] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [328.2051,573.4864] (Line ) [329.8458,571.8458] (Line ) [328.2051,570.2051] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,542.603] (Line ) [387.213,542.603] (Line ) [387.213,543.0132] (Line ) [328.149,543.0132] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,581.979] (Line ) [387.6231,581.979] (Line ) [387.6231,582.3892] (Line ) [328.149,582.3892] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,207.0867] (Line ) [328.5591,207.0867] (Line ) [328.5591,209.1377] (Line ) [328.149,209.1377] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.7388,207.0867] (Line ) [328.5591,207.0867] (Line ) [328.5591,207.4968] (Line ) [327.7388,207.4968] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,208.7275] (Line ) [328.149,208.7275] (Line ) [328.149,209.1377] (Line ) [327.3287,209.1377] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,207.0867] (Line ) [327.7388,207.0867] (Line ) [327.7388,209.1377] (Line ) [327.3287,209.1377] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,202.1648] (Line ) [328.5591,202.1648] (Line ) [328.5591,204.2156] (Line ) [328.149,204.2156] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.7388,202.1648] (Line ) [328.5591,202.1648] (Line ) [328.5591,202.575] (Line ) [327.7388,202.575] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,203.8054] (Line ) [328.149,203.8054] (Line ) [328.149,204.2156] (Line ) [327.3287,204.2156] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,202.1648] (Line ) [327.7388,202.1648] (Line ) [327.7388,204.2156] (Line ) [327.3287,204.2156] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,478.617] (Line ) [387.213,478.617] (Line ) [387.213,479.0271] (Line ) [328.149,479.0271] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [328.2051,569.4864] (Line ) [329.8458,567.8458] (Line ) [328.2051,566.2051] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,458.929] (Line ) [387.213,458.929] (Line ) [387.213,459.3391] (Line ) [328.149,459.3391] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,198.0632] (Line ) [387.213,198.0632] (Line ) [387.213,198.4734] (Line ) [328.149,198.4734] (Line ) fwd: T Text T "Bt458" Xerox/PressFonts/Helvetica [6.562664 0.0 345.376 0.0 6.562664 190.6802][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,571.3147] (Line ) [328.5591,571.3147] (Line ) [328.5591,573.3655] (Line ) [328.149,573.3655] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.7388,571.3147] (Line ) [328.5591,571.3147] (Line ) [328.5591,571.7249] (Line ) [327.7388,571.7249] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,572.9553] (Line ) [328.149,572.9553] (Line ) [328.149,573.3655] (Line ) [327.3287,573.3655] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,571.3147] (Line ) [327.7388,571.3147] (Line ) [327.7388,573.3655] (Line ) [327.3287,573.3655] (Line ) fwd: T Text T "M8" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 572.7503][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L8" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 577.6721][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "B5" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 538.2961][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C3" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 503.8423][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "A4" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 533.3743][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "B2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 508.7642][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "B4" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 528.4522][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "B3" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 513.6863][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "A3" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 523.5303][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "A2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 518.6082][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "F11" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 454.6223][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "G1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 420.1682][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "H11" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 449.7002][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "J2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 425.0903][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "K11" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 444.7783][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "K3" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 430.0122][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "M11" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 439.8562][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L4" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 434.9343][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "E12" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 415.2463][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "G2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 380.7922][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "H12" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 410.3242][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "K1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 385.7144][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L12" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 405.4023][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "M1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 390.6362][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L10" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 400.4802][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "M4" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 395.5583][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "E11" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 375.8704][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "H1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 341.4163][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "G12" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 370.9483][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 346.3384][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "K12" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 366.0264][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L3" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 351.2603][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L11" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 361.1043][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L5" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 356.1824][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D12" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 336.4944][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "H2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 302.0403][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "G11" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 331.5723][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "K2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 306.9624][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "J11" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 326.6504][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "M2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 311.8843][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "K10" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 321.7283][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "M5" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 316.8064][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D11" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 297.1184][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "J1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 262.6643][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "F12" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 292.1963][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 267.5864][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "J12" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 287.2744][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "M3" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 272.5083][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "M12" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 282.3523][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "L6" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 277.4304][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 257.7424][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "A1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 252.8203][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "E2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 247.8984][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 242.9763][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "E1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 238.0544][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "B1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 233.1323][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "F1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 228.2104][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C1" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 223.2883][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "F2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 218.3664][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "D2" xerox/pressfonts/Helvetica-B [6.0 0.0 318.305 0.0 6.0 213.4443][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P7A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 452.7766][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P6A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 447.8545][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P5A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 442.9326][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P4A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 438.0105][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P3A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 433.0886][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P2A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 428.1665][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P1A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 423.2446][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P0A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 418.3225][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P7B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 413.4006][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P6B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 408.4785][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P5B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 403.5566][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P4B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 398.6345][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P3B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 393.7126][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P2B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 388.7905][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P1B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 383.8686][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P0B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 378.9465][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P7C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 374.0247][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P6C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 369.1025][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P5C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 364.1807][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P4C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 359.2586][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P3C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 354.3367][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P2C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 349.4146][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P1C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 344.4927][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P0C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 339.5706][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P7D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 334.6487][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P6D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 329.7266][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P5D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 324.8047][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P4D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 319.8826][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P3D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 314.9604][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P2D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 310.0386][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P1D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 305.1164][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P0D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 300.1946][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P7E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 295.2724][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P6E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 290.3506][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P5E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 285.4285][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P4E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 280.5066][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P3E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 275.5845][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P2E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 270.6626][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P1E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 265.7405][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "P0E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 260.8186][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL1A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 255.8965][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL0A" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 250.9746][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL1B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 246.0525][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL0B" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 241.1306][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL1C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 236.2085][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL0C" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 231.2866][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL1D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 226.3645][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL0D" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 221.4426][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL1E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 216.5205][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OL0E" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 211.5986][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.5074,454.0071] (Line ) [319.3304,454.0071] (Line ) [319.3304,454.6223] (Line ) [213.5074,454.6223] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [131.2691,439.241] (Line ) [136.1911,439.241] (Line ) [136.1911,439.8562] (Line ) [131.2691,439.8562] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [131.2691,444.1631] (Line ) [136.1911,444.1631] (Line ) [136.1911,444.7783] (Line ) [131.2691,444.7783] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,513.071] (Line ) [244.475,513.071] (Line ) [244.475,513.6863] (Line ) [214.943,513.6863] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [244.475,493.383] (Line ) [244.8852,493.383] (Line ) [244.8852,513.6863] (Line ) [244.475,513.6863] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,513.071] (Line ) [214.943,513.071] (Line ) [214.943,513.4812] (Line ) [205.099,513.4812] (Line ) fwd: T Text T "T1" xerox/pressfonts/Helvetica-B [6.0 0.0 150.9571 0.0 6.0 438.0105][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "T0" xerox/pressfonts/Helvetica-B [6.0 0.0 150.9571 0.0 6.0 442.9326][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,444.1631] (Line ) [146.0351,444.1631] (Line ) [146.0351,444.5732] (Line ) [136.1911,444.5732] (Line ) fwd: T Text T "vCK" xerox/pressfonts/Helvetica-B [6.0 0.0 150.9571 0.0 6.0 452.7766][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,454.0071] (Line ) [146.0351,454.0071] (Line ) [146.0351,454.4172] (Line ) [136.1911,454.4172] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,463.851] (Line ) [146.0351,463.851] (Line ) [146.0351,464.2612] (Line ) [136.1911,464.2612] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,468.773] (Line ) [145.2147,468.773] (Line ) [145.2147,469.1831] (Line ) [136.1911,469.1831] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,473.695] (Line ) [146.0351,473.695] (Line ) [146.0351,474.1052] (Line ) [136.1911,474.1052] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,478.617] (Line ) [145.2147,478.617] (Line ) [145.2147,479.0271] (Line ) [136.1911,479.0271] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,483.539] (Line ) [145.2147,483.539] (Line ) [145.2147,483.9492] (Line ) [136.1911,483.9492] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,488.461] (Line ) [146.0351,488.461] (Line ) [146.0351,488.8711] (Line ) [136.1911,488.8711] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,493.383] (Line ) [146.0351,493.383] (Line ) [146.0351,493.7932] (Line ) [136.1911,493.7932] (Line ) fwd: T Text T "nDReset" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 467.5425][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DAddress" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 462.6206][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "RQ" xerox/pressfonts/Helvetica-B [6.0 0.0 197.716 0.0 6.0 580.7485][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DATAOUT" xerox/pressfonts/Helvetica-B [6.0 0.0 182.95 0.0 6.0 575.8264][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "ParityOut" xerox/pressfonts/Helvetica-B [6.0 0.0 181.3094 0.0 6.0 570.9044][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "HeaderOut" xerox/pressfonts/Helvetica-B [6.0 0.0 181.3094 0.0 6.0 565.9824][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "nCE" xerox/pressfonts/Helvetica-B [6.0 0.0 193.8393 0.0 6.0 517.1727][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DACData2" xerox/pressfonts/Helvetica-B [6.0 0.0 182.1297 0.0 6.0 546.2945][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DACData3" xerox/pressfonts/Helvetica-B [6.0 0.0 182.1297 0.0 6.0 541.3725][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DACData4" xerox/pressfonts/Helvetica-B [6.0 0.0 182.1297 0.0 6.0 536.4504][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DACData5" xerox/pressfonts/Helvetica-B [6.0 0.0 182.1297 0.0 6.0 531.5286][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DACData6" xerox/pressfonts/Helvetica-B [6.0 0.0 182.1297 0.0 6.0 526.6064][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DACData7" xerox/pressfonts/Helvetica-B [6.0 0.0 182.1297 0.0 6.0 521.6846][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,522.915] (Line ) [214.943,522.915] (Line ) [214.943,523.3252] (Line ) [205.099,523.3252] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,527.8369] (Line ) [214.943,527.8369] (Line ) [214.943,528.247] (Line ) [205.099,528.247] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,532.759] (Line ) [214.943,532.759] (Line ) [214.943,533.1692] (Line ) [205.099,533.1692] (Line ) fwd: T Text T "DACData1" xerox/pressfonts/Helvetica-B [6.0 0.0 182.1297 0.0 6.0 551.2166][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DACData0" xerox/pressfonts/Helvetica-B [6.0 0.0 182.1297 0.0 6.0 556.1384][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.9194,517.9929] (Line ) [214.943,517.9929] (Line ) [214.943,518.4031] (Line ) [205.9194,518.4031] (Line ) fwd: T Text T "ParityIn" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 590.5925][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "SharedOut" xerox/pressfonts/Helvetica-B [6.0 0.0 180.489 0.0 6.0 221.4426][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OwnerOut" xerox/pressfonts/Helvetica-B [6.0 0.0 180.489 0.0 6.0 226.3645][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "SharedIn" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 221.4426][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,232.5171] (Line ) [214.943,232.5171] (Line ) [214.943,232.9272] (Line ) [205.099,232.9272] (Line ) fwd: T Text T "SpareOut1" xerox/pressfonts/Helvetica-B [6.0 0.0 180.489 0.0 6.0 231.2866][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OwnerIn" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 226.3645][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,572.135] (Line ) [146.0351,572.135] (Line ) [146.0351,572.5452] (Line ) [136.1911,572.5452] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,542.603] (Line ) [214.943,542.603] (Line ) [214.943,543.0132] (Line ) [205.099,543.0132] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,547.5249] (Line ) [214.943,547.5249] (Line ) [214.943,547.935] (Line ) [205.099,547.935] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,537.6809] (Line ) [214.943,537.6809] (Line ) [214.943,538.091] (Line ) [205.099,538.091] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,557.3689] (Line ) [214.943,557.3689] (Line ) [214.943,557.779] (Line ) [205.099,557.779] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,552.447] (Line ) [214.943,552.447] (Line ) [214.943,552.8572] (Line ) [205.099,552.8572] (Line ) fwd: T Text T "VDataOut31" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 300.1946][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut30" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 305.1164][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut29" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 310.0386][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut28" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 314.9604][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut27" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 319.8826][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut26" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 324.8047][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut25" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 329.7266][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut24" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 334.6487][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut23" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 339.5706][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut22" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 344.4927][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut21" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 349.4146][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut20" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 354.3367][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut19" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 359.2586][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut18" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 364.1807][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut17" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 369.1025][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut16" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 374.0247][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut15" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 378.9465][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut14" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 383.8686][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut13" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 388.7905][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut12" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 393.7126][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut11" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 398.6345][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut10" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 403.5566][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut5" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 428.1665][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut0" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 452.7766][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut1" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 447.8545][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut2" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 442.9326][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut3" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 438.0105][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut4" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 433.0886][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut7" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 418.3225][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut6" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 423.2446][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut8" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 413.4006][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDataOut9" xerox/pressfonts/Helvetica-B [6.0 0.0 178.028 0.0 6.0 408.4785][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,301.425] (Line ) [214.943,301.425] (Line ) [214.943,301.8352] (Line ) [205.099,301.8352] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,306.3472] (Line ) [214.943,306.3472] (Line ) [214.943,306.7573] (Line ) [205.099,306.7573] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,311.269] (Line ) [214.943,311.269] (Line ) [214.943,311.6792] (Line ) [205.099,311.6792] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,316.1912] (Line ) [214.943,316.1912] (Line ) [214.943,316.6013] (Line ) [205.099,316.6013] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,321.113] (Line ) [214.943,321.113] (Line ) [214.943,321.5232] (Line ) [205.099,321.5232] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,326.0352] (Line ) [214.943,326.0352] (Line ) [214.943,326.4453] (Line ) [205.099,326.4453] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,330.957] (Line ) [214.943,330.957] (Line ) [214.943,331.3672] (Line ) [205.099,331.3672] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,335.8791] (Line ) [214.943,335.8791] (Line ) [214.943,336.2893] (Line ) [205.099,336.2893] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,340.801] (Line ) [214.943,340.801] (Line ) [214.943,341.2112] (Line ) [205.099,341.2112] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,345.7231] (Line ) [214.943,345.7231] (Line ) [214.943,346.1333] (Line ) [205.099,346.1333] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,350.645] (Line ) [214.943,350.645] (Line ) [214.943,351.0552] (Line ) [205.099,351.0552] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,355.5671] (Line ) [214.943,355.5671] (Line ) [214.943,355.9773] (Line ) [205.099,355.9773] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,360.489] (Line ) [214.943,360.489] (Line ) [214.943,360.8992] (Line ) [205.099,360.8992] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,365.4111] (Line ) [214.943,365.4111] (Line ) [214.943,365.8213] (Line ) [205.099,365.8213] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,370.333] (Line ) [214.943,370.333] (Line ) [214.943,370.7432] (Line ) [205.099,370.7432] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,375.2551] (Line ) [214.943,375.2551] (Line ) [214.943,375.6653] (Line ) [205.099,375.6653] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,380.177] (Line ) [214.943,380.177] (Line ) [214.943,380.5872] (Line ) [205.099,380.5872] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,385.0991] (Line ) [214.943,385.0991] (Line ) [214.943,385.5093] (Line ) [205.099,385.5093] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,390.021] (Line ) [214.943,390.021] (Line ) [214.943,390.4312] (Line ) [205.099,390.4312] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,394.9431] (Line ) [214.943,394.9431] (Line ) [214.943,395.3533] (Line ) [205.099,395.3533] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,399.865] (Line ) [214.943,399.865] (Line ) [214.943,400.2751] (Line ) [205.099,400.2751] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,404.7871] (Line ) [214.943,404.7871] (Line ) [214.943,405.1973] (Line ) [205.099,405.1973] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,409.709] (Line ) [214.943,409.709] (Line ) [214.943,410.1191] (Line ) [205.099,410.1191] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,414.6311] (Line ) [214.943,414.6311] (Line ) [214.943,415.0412] (Line ) [205.099,415.0412] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,419.553] (Line ) [214.943,419.553] (Line ) [214.943,419.9631] (Line ) [205.099,419.9631] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,424.4751] (Line ) [214.943,424.4751] (Line ) [214.943,424.8852] (Line ) [205.099,424.8852] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,429.397] (Line ) [214.943,429.397] (Line ) [214.943,429.8071] (Line ) [205.099,429.8071] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,434.3191] (Line ) [214.943,434.3191] (Line ) [214.943,434.7292] (Line ) [205.099,434.7292] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,439.241] (Line ) [214.943,439.241] (Line ) [214.943,439.6511] (Line ) [205.099,439.6511] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,444.1631] (Line ) [214.943,444.1631] (Line ) [214.943,444.5732] (Line ) [205.099,444.5732] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,449.085] (Line ) [214.943,449.085] (Line ) [214.943,449.4951] (Line ) [205.099,449.4951] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,262.0491] (Line ) [214.943,262.0491] (Line ) [214.943,262.4592] (Line ) [205.099,262.4592] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,266.9712] (Line ) [214.943,266.9712] (Line ) [214.943,267.3813] (Line ) [205.099,267.3813] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,271.8931] (Line ) [214.943,271.8931] (Line ) [214.943,272.3032] (Line ) [205.099,272.3032] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,276.8152] (Line ) [214.943,276.8152] (Line ) [214.943,277.2253] (Line ) [205.099,277.2253] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,281.737] (Line ) [214.943,281.737] (Line ) [214.943,282.1472] (Line ) [205.099,282.1472] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,286.6592] (Line ) [214.943,286.6592] (Line ) [214.943,287.0693] (Line ) [205.099,287.0693] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,291.581] (Line ) [214.943,291.581] (Line ) [214.943,291.9912] (Line ) [205.099,291.9912] (Line ) fwd: T Text T "SpareIn1" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 231.2866][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "SpareOut0" xerox/pressfonts/Helvetica-B [6.0 0.0 180.489 0.0 6.0 236.2085][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,227.5952] (Line ) [146.0351,227.5952] (Line ) [146.0351,228.0054] (Line ) [136.1911,228.0054] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,232.5171] (Line ) [146.0351,232.5171] (Line ) [146.0351,232.9272] (Line ) [136.1911,232.9272] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,611.511] (Line ) [214.943,611.511] (Line ) [214.943,611.9212] (Line ) [205.099,611.9212] (Line ) fwd: T Text T "SStopOut" xerox/pressfonts/Helvetica-B [6.0 0.0 182.95 0.0 6.0 610.2805][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "HeaderIn" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 595.5144][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DATAIN" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 600.4365][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "SStopIn" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 610.2805][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "GPriority" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 575.8264][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.0982,578.9028] (Line ) [209.3032,578.9028] (Line ) [209.3032,579.1079] (Line ) [209.0982,579.1079] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.9956,578.6975] (Line ) [209.2007,578.6975] (Line ) [209.2007,578.9028] (Line ) [208.9956,578.9028] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.8931,578.4924] (Line ) [209.0982,578.4924] (Line ) [209.0982,578.6975] (Line ) [208.8931,578.6975] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.7905,578.2874] (Line ) [208.9956,578.2874] (Line ) [208.9956,578.4924] (Line ) [208.7905,578.4924] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.688,578.0823] (Line ) [208.8931,578.0823] (Line ) [208.8931,578.2874] (Line ) [208.688,578.2874] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.5855,577.8772] (Line ) [208.7905,577.8772] (Line ) [208.7905,578.0823] (Line ) [208.5855,578.0823] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.4829,577.6721] (Line ) [208.688,577.6721] (Line ) [208.688,577.8772] (Line ) [208.4829,577.8772] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.3804,577.467] (Line ) [208.5855,577.467] (Line ) [208.5855,577.6721] (Line ) [208.3804,577.6721] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.2778,577.262] (Line ) [208.4829,577.262] (Line ) [208.4829,577.467] (Line ) [208.2778,577.467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.1753,577.0569] (Line ) [208.3804,577.0569] (Line ) [208.3804,577.262] (Line ) [208.1753,577.262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.0727,576.8518] (Line ) [208.2778,576.8518] (Line ) [208.2778,577.0569] (Line ) [208.0727,577.0569] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.9702,576.6467] (Line ) [208.1753,576.6467] (Line ) [208.1753,576.8518] (Line ) [207.9702,576.8518] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.8677,576.4417] (Line ) [208.0727,576.4417] (Line ) [208.0727,576.6467] (Line ) [207.8677,576.6467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.7651,576.2365] (Line ) [207.9702,576.2365] (Line ) [207.9702,576.4417] (Line ) [207.7651,576.4417] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.6626,576.0315] (Line ) [207.8677,576.0315] (Line ) [207.8677,576.2365] (Line ) [207.6626,576.2365] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.56,575.8264] (Line ) [207.7651,575.8264] (Line ) [207.7651,576.0315] (Line ) [207.56,576.0315] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.4575,575.6212] (Line ) [207.6626,575.6212] (Line ) [207.6626,575.8264] (Line ) [207.4575,575.8264] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.355,575.4163] (Line ) [207.56,575.4163] (Line ) [207.56,575.6212] (Line ) [207.355,575.6212] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [206.7397,577.0569] (Line ) [210.4312,577.0569] (Line ) [210.4312,577.467] (Line ) [206.7397,577.467] (Line ) fwd: T Text T "64" xerox/pressfonts/Helvetica-B [6.0 0.0 207.9702 0.0 6.0 573.9807][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,237.4392] (Line ) [214.943,237.4392] (Line ) [214.943,237.8494] (Line ) [205.099,237.8494] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,237.4392] (Line ) [146.0351,237.4392] (Line ) [146.0351,237.8494] (Line ) [136.1911,237.8494] (Line ) fwd: T Text T "nDExecute" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 477.3865][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "nDFreeze" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 482.3086][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DSerialIn" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 487.2305][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,567.2129] (Line ) [214.943,567.2129] (Line ) [214.943,567.623] (Line ) [205.099,567.623] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.9194,257.1272] (Line ) [214.943,257.1272] (Line ) [214.943,257.5374] (Line ) [205.9194,257.5374] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,611.511] (Line ) [146.0351,611.511] (Line ) [146.0351,611.9212] (Line ) [136.1911,611.9212] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,621.355] (Line ) [146.0351,621.355] (Line ) [146.0351,621.7651] (Line ) [136.1911,621.7651] (Line ) fwd: T Text T "nVSync" xerox/pressfonts/Helvetica-B [6.0 0.0 187.872 0.0 6.0 250.9746][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.9194,252.2051] (Line ) [214.943,252.2051] (Line ) [214.943,252.6152] (Line ) [205.9194,252.6152] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.9194,247.2832] (Line ) [214.943,247.2832] (Line ) [214.943,247.6934] (Line ) [205.9194,247.6934] (Line ) fwd: T Text T "nBlank" xerox/pressfonts/Helvetica-B [6.0 0.0 189.5127 0.0 6.0 246.0525][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,581.979] (Line ) [146.0351,581.979] (Line ) [146.0351,582.3892] (Line ) [136.1911,582.3892] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,596.7449] (Line ) [146.0351,596.7449] (Line ) [146.0351,597.155] (Line ) [136.1911,597.155] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,577.0569] (Line ) [214.943,577.0569] (Line ) [214.943,577.467] (Line ) [205.099,577.467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,581.979] (Line ) [214.943,581.979] (Line ) [214.943,582.3892] (Line ) [205.099,582.3892] (Line ) fwd: T Text T "Grant" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 580.7485][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Clock" xerox/pressfonts/Helvetica-B [6.0 0.0 150.9571 0.0 6.0 620.1245][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,601.667] (Line ) [146.0351,601.667] (Line ) [146.0351,602.0771] (Line ) [136.1911,602.0771] (Line ) fwd: T Text T "nHSync" xerox/pressfonts/Helvetica-B [6.0 0.0 187.872 0.0 6.0 255.8965][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [141.0105,603.5127] (Line ) [141.2156,603.5127] (Line ) [141.2156,603.7178] (Line ) [141.0105,603.7178] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [140.908,603.3076] (Line ) [141.1131,603.3076] (Line ) [141.1131,603.5127] (Line ) [140.908,603.5127] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [140.8054,603.1025] (Line ) [141.0105,603.1025] (Line ) [141.0105,603.3076] (Line ) [140.8054,603.3076] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [140.7029,602.8975] (Line ) [140.908,602.8975] (Line ) [140.908,603.1025] (Line ) [140.7029,603.1025] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [140.6004,602.6924] (Line ) [140.8054,602.6924] (Line ) [140.8054,602.8975] (Line ) [140.6004,602.8975] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [140.4978,602.4873] (Line ) [140.7029,602.4873] (Line ) [140.7029,602.6924] (Line ) [140.4978,602.6924] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [140.3953,602.2822] (Line ) [140.6004,602.2822] (Line ) [140.6004,602.4873] (Line ) [140.3953,602.4873] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [140.2927,602.0771] (Line ) [140.4978,602.0771] (Line ) [140.4978,602.2822] (Line ) [140.2927,602.2822] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [140.1902,601.872] (Line ) [140.3953,601.872] (Line ) [140.3953,602.0771] (Line ) [140.1902,602.0771] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [140.0876,601.667] (Line ) [140.2927,601.667] (Line ) [140.2927,601.872] (Line ) [140.0876,601.872] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [139.9851,601.4619] (Line ) [140.1902,601.4619] (Line ) [140.1902,601.667] (Line ) [139.9851,601.667] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [139.8826,601.2568] (Line ) [140.0876,601.2568] (Line ) [140.0876,601.4619] (Line ) [139.8826,601.4619] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [139.78,601.0518] (Line ) [139.9851,601.0518] (Line ) [139.9851,601.2568] (Line ) [139.78,601.2568] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [139.6775,600.8467] (Line ) [139.8826,600.8467] (Line ) [139.8826,601.0518] (Line ) [139.6775,601.0518] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [139.5749,600.6416] (Line ) [139.78,600.6416] (Line ) [139.78,600.8467] (Line ) [139.5749,600.8467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [139.4724,600.4365] (Line ) [139.6775,600.4365] (Line ) [139.6775,600.6416] (Line ) [139.4724,600.6416] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [139.3699,600.2314] (Line ) [139.5749,600.2314] (Line ) [139.5749,600.4365] (Line ) [139.3699,600.4365] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [139.2673,600.0264] (Line ) [139.4724,600.0264] (Line ) [139.4724,600.2314] (Line ) [139.2673,600.2314] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [138.6521,601.667] (Line ) [142.3436,601.667] (Line ) [142.3436,602.0771] (Line ) [138.6521,602.0771] (Line ) fwd: T Text T "64" xerox/pressfonts/Helvetica-B [6.0 0.0 139.8826 0.0 6.0 598.5908][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.0982,583.8247] (Line ) [209.3032,583.8247] (Line ) [209.3032,584.0298] (Line ) [209.0982,584.0298] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.9956,583.6196] (Line ) [209.2007,583.6196] (Line ) [209.2007,583.8247] (Line ) [208.9956,583.8247] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.8931,583.4145] (Line ) [209.0982,583.4145] (Line ) [209.0982,583.6196] (Line ) [208.8931,583.6196] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.7905,583.2095] (Line ) [208.9956,583.2095] (Line ) [208.9956,583.4145] (Line ) [208.7905,583.4145] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.688,583.0044] (Line ) [208.8931,583.0044] (Line ) [208.8931,583.2095] (Line ) [208.688,583.2095] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.5855,582.7993] (Line ) [208.7905,582.7993] (Line ) [208.7905,583.0044] (Line ) [208.5855,583.0044] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.4829,582.5942] (Line ) [208.688,582.5942] (Line ) [208.688,582.7993] (Line ) [208.4829,582.7993] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.3804,582.3892] (Line ) [208.5855,582.3892] (Line ) [208.5855,582.5942] (Line ) [208.3804,582.5942] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.2778,582.1841] (Line ) [208.4829,582.1841] (Line ) [208.4829,582.3892] (Line ) [208.2778,582.3892] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.1753,581.979] (Line ) [208.3804,581.979] (Line ) [208.3804,582.1841] (Line ) [208.1753,582.1841] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [208.0727,581.774] (Line ) [208.2778,581.774] (Line ) [208.2778,581.979] (Line ) [208.0727,581.979] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.9702,581.5688] (Line ) [208.1753,581.5688] (Line ) [208.1753,581.774] (Line ) [207.9702,581.774] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.8677,581.3638] (Line ) [208.0727,581.3638] (Line ) [208.0727,581.5688] (Line ) [207.8677,581.5688] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.7651,581.1587] (Line ) [207.9702,581.1587] (Line ) [207.9702,581.3638] (Line ) [207.7651,581.3638] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.6626,580.9536] (Line ) [207.8677,580.9536] (Line ) [207.8677,581.1587] (Line ) [207.6626,581.1587] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.56,580.7485] (Line ) [207.7651,580.7485] (Line ) [207.7651,580.9536] (Line ) [207.56,580.9536] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.4575,580.5435] (Line ) [207.6626,580.5435] (Line ) [207.6626,580.7485] (Line ) [207.4575,580.7485] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [207.355,580.3384] (Line ) [207.56,580.3384] (Line ) [207.56,580.5435] (Line ) [207.355,580.5435] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [206.7397,581.979] (Line ) [210.4312,581.979] (Line ) [210.4312,582.3892] (Line ) [206.7397,582.3892] (Line ) fwd: T Text T "2" xerox/pressfonts/Helvetica-B [6.0 0.0 207.9702 0.0 6.0 578.9028][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,577.0569] (Line ) [146.0351,577.0569] (Line ) [146.0351,577.467] (Line ) [136.1911,577.467] (Line ) fwd: T Text T "DShiftCK" xerox/pressfonts/Helvetica-B [6.0 0.0 150.1367 0.0 6.0 492.1526][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "DSelect" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 472.4646][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,621.355] (Line ) [214.943,621.355] (Line ) [214.943,621.7651] (Line ) [205.099,621.7651] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,296.5032] (Line ) [214.943,296.5032] (Line ) [214.943,296.9133] (Line ) [205.099,296.9133] (Line ) fwd: T Text T "VOvlDataOut0" xerox/pressfonts/Helvetica-B [6.0 0.0 173.106 0.0 6.0 295.2724][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VOvlDataOut1" xerox/pressfonts/Helvetica-B [6.0 0.0 173.106 0.0 6.0 290.3506][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VOvlDataOut2" xerox/pressfonts/Helvetica-B [6.0 0.0 173.106 0.0 6.0 285.4285][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VOvlDataOut3" xerox/pressfonts/Helvetica-B [6.0 0.0 173.106 0.0 6.0 280.5066][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VOvlDataOut4" xerox/pressfonts/Helvetica-B [6.0 0.0 173.106 0.0 6.0 275.5845][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VOvlDataOut5" xerox/pressfonts/Helvetica-B [6.0 0.0 173.106 0.0 6.0 270.6626][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VOvlDataOut6" xerox/pressfonts/Helvetica-B [6.0 0.0 173.106 0.0 6.0 265.7405][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VOvlDataOut7" xerox/pressfonts/Helvetica-B [6.0 0.0 173.106 0.0 6.0 260.8186][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,454.0071] (Line ) [214.943,454.0071] (Line ) [214.943,454.4172] (Line ) [205.099,454.4172] (Line ) fwd: T Text T "SpareIn0" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 236.2085][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "CkOut" xerox/pressfonts/Helvetica-B [6.0 0.0 188.6924 0.0 6.0 620.1245][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "TestEn" xerox/pressfonts/Helvetica-B [6.0 0.0 147.6757 0.0 6.0 570.9044][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,227.5952] (Line ) [214.943,227.5952] (Line ) [214.943,228.0054] (Line ) [205.099,228.0054] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,222.6731] (Line ) [214.943,222.6731] (Line ) [214.943,223.0832] (Line ) [205.099,223.0832] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,222.6731] (Line ) [146.0351,222.6731] (Line ) [146.0351,223.0832] (Line ) [136.1911,223.0832] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,572.135] (Line ) [214.943,572.135] (Line ) [214.943,572.5452] (Line ) [205.099,572.5452] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,591.823] (Line ) [146.0351,591.823] (Line ) [146.0351,592.2332] (Line ) [136.1911,592.2332] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,503.227] (Line ) [214.943,503.227] (Line ) [214.943,503.6372] (Line ) [205.099,503.6372] (Line ) fwd: T Text T "DSerialOut" xerox/pressfonts/Helvetica-B [6.0 0.0 180.489 0.0 6.0 487.2305][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,488.461] (Line ) [214.943,488.461] (Line ) [214.943,488.8711] (Line ) [205.099,488.8711] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [136.1911,439.241] (Line ) [146.0351,439.241] (Line ) [146.0351,439.6511] (Line ) [136.1911,439.6511] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,586.9009] (Line ) [205.099,586.9009] (Line ) [205.099,587.311] (Line ) [146.0351,587.311] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,458.929] (Line ) [205.099,458.929] (Line ) [205.099,459.3391] (Line ) [146.0351,459.3391] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [146.2051,455.4864] (Line ) [147.8457,453.8458] (Line ) [146.2051,452.2051] fwd: T Text T "DDC" Xerox/PressFonts/Helvetica [6.562664 0.0 167.3637 0.0 6.562664 210.3682][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,217.7512] (Line ) [205.099,217.7512] (Line ) [205.099,218.1614] (Line ) [146.0351,218.1614] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.9194,251.3848] (Line ) [206.3295,251.3848] (Line ) [206.3295,253.4356] (Line ) [205.9194,253.4356] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.5092,251.3848] (Line ) [206.3295,251.3848] (Line ) [206.3295,251.7949] (Line ) [205.5092,251.7949] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,253.0254] (Line ) [205.9194,253.0254] (Line ) [205.9194,253.4356] (Line ) [205.099,253.4356] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,251.3848] (Line ) [205.5092,251.3848] (Line ) [205.5092,253.4356] (Line ) [205.099,253.4356] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,498.305] (Line ) [205.099,498.305] (Line ) [205.099,498.7151] (Line ) [146.0351,498.7151] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.9194,246.4626] (Line ) [206.3295,246.4626] (Line ) [206.3295,248.5137] (Line ) [205.9194,248.5137] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.5092,246.4626] (Line ) [206.3295,246.4626] (Line ) [206.3295,246.873] (Line ) [205.5092,246.873] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,248.1035] (Line ) [205.9194,248.1035] (Line ) [205.9194,248.5137] (Line ) [205.099,248.5137] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,246.4626] (Line ) [205.5092,246.4626] (Line ) [205.5092,248.5137] (Line ) [205.099,248.5137] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,467.9526] (Line ) [146.4452,467.9526] (Line ) [146.4452,470.0034] (Line ) [146.0351,470.0034] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [145.6249,467.9526] (Line ) [146.4452,467.9526] (Line ) [146.4452,468.3628] (Line ) [145.6249,468.3628] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [145.2147,469.5932] (Line ) [146.0351,469.5932] (Line ) [146.0351,470.0034] (Line ) [145.2147,470.0034] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [145.2147,467.9526] (Line ) [145.6249,467.9526] (Line ) [145.6249,470.0034] (Line ) [145.2147,470.0034] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,477.7966] (Line ) [146.4452,477.7966] (Line ) [146.4452,479.8474] (Line ) [146.0351,479.8474] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [145.6249,477.7966] (Line ) [146.4452,477.7966] (Line ) [146.4452,478.2068] (Line ) [145.6249,478.2068] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [145.2147,479.4372] (Line ) [146.0351,479.4372] (Line ) [146.0351,479.8474] (Line ) [145.2147,479.8474] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [145.2147,477.7966] (Line ) [145.6249,477.7966] (Line ) [145.6249,479.8474] (Line ) [145.2147,479.8474] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,482.7188] (Line ) [146.4452,482.7188] (Line ) [146.4452,484.7695] (Line ) [146.0351,484.7695] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [145.6249,482.7188] (Line ) [146.4452,482.7188] (Line ) [146.4452,483.1289] (Line ) [145.6249,483.1289] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [145.2147,484.3594] (Line ) [146.0351,484.3594] (Line ) [146.0351,484.7695] (Line ) [145.2147,484.7695] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [145.2147,482.7188] (Line ) [145.6249,482.7188] (Line ) [145.6249,484.7695] (Line ) [145.2147,484.7695] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.9194,517.1726] (Line ) [206.3295,517.1726] (Line ) [206.3295,519.2234] (Line ) [205.9194,519.2234] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.5092,517.1726] (Line ) [206.3295,517.1726] (Line ) [206.3295,517.5828] (Line ) [205.5092,517.5828] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,518.8132] (Line ) [205.9194,518.8132] (Line ) [205.9194,519.2234] (Line ) [205.099,519.2234] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,517.1726] (Line ) [205.5092,517.1726] (Line ) [205.5092,519.2234] (Line ) [205.099,519.2234] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,207.9072] (Line ) [205.5092,207.9072] (Line ) [205.5092,626.2769] (Line ) [205.099,626.2769] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,207.9072] (Line ) [146.4452,207.9072] (Line ) [146.4452,626.2769] (Line ) [146.0351,626.2769] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [146.2051,623.4864] (Line ) [147.8457,621.8458] (Line ) [146.2051,620.2051] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,626.2769] (Line ) [205.5092,626.2769] (Line ) [205.5092,626.687] (Line ) [146.0351,626.687] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,606.589] (Line ) [205.099,606.589] (Line ) [205.099,606.999] (Line ) [146.0351,606.999] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,562.291] (Line ) [205.099,562.291] (Line ) [205.099,562.7012] (Line ) [146.0351,562.7012] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [146.2051,495.4864] (Line ) [147.8457,493.8458] (Line ) [146.2051,492.2051] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.9194,256.3066] (Line ) [206.3295,256.3066] (Line ) [206.3295,258.3577] (Line ) [205.9194,258.3577] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.5092,256.3066] (Line ) [206.3295,256.3066] (Line ) [206.3295,256.717] (Line ) [205.5092,256.717] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,257.9475] (Line ) [205.9194,257.9475] (Line ) [205.9194,258.3577] (Line ) [205.099,258.3577] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,256.3066] (Line ) [205.5092,256.3066] (Line ) [205.5092,258.3577] (Line ) [205.099,258.3577] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,242.3611] (Line ) [205.099,242.3611] (Line ) [205.099,242.7712] (Line ) [146.0351,242.7712] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [146.0351,207.9072] (Line ) [205.099,207.9072] (Line ) [205.099,208.3174] (Line ) [146.0351,208.3174] (Line ) fwd: T Text T "C0" xerox/pressfonts/Helvetica-B [6.0 0.0 193.5937 0.0 6.0 506.4227][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.099,508.149] (Line ) [214.943,508.149] (Line ) [214.943,508.5591] (Line ) [205.099,508.5591] (Line ) fwd: T Text T "RnW" xerox/pressfonts/Helvetica-B [6.0 0.0 193.6144 0.0 6.0 511.8406][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [131.2691,572.135] (Line ) [136.1911,572.135] (Line ) [136.1911,572.7503] (Line ) [131.2691,572.7503] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [131.2691,591.823] (Line ) [136.1911,591.823] (Line ) [136.1911,592.4381] (Line ) [131.2691,592.4381] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [131.2691,227.5952] (Line ) [136.1911,227.5952] (Line ) [136.1911,228.0054] (Line ) [131.2691,228.0054] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [131.2691,237.4392] (Line ) [136.1911,237.4392] (Line ) [136.1911,237.8494] (Line ) [131.2691,237.8494] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.3024,247.2832] (Line ) [229.709,247.2832] (Line ) [229.709,247.8984] (Line ) [213.3024,247.8984] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.3024,257.1272] (Line ) [234.631,257.1272] (Line ) [234.631,257.7424] (Line ) [213.3024,257.7424] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.3024,262.0491] (Line ) [239.553,262.0491] (Line ) [239.553,262.6643] (Line ) [213.3024,262.6643] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.3024,266.9712] (Line ) [244.475,266.9712] (Line ) [244.475,267.5864] (Line ) [213.3024,267.5864] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.3024,271.8931] (Line ) [249.397,271.8931] (Line ) [249.397,272.5083] (Line ) [213.3024,272.5083] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,276.8152] (Line ) [254.319,276.8152] (Line ) [254.319,277.4304] (Line ) [214.1227,277.4304] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,281.737] (Line ) [259.241,281.737] (Line ) [259.241,282.3523] (Line ) [214.1227,282.3523] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,286.6592] (Line ) [264.163,286.6592] (Line ) [264.163,287.2744] (Line ) [214.1227,287.2744] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,291.581] (Line ) [269.085,291.581] (Line ) [269.085,292.1963] (Line ) [214.1227,292.1963] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.3024,296.5032] (Line ) [274.007,296.5032] (Line ) [274.007,297.1184] (Line ) [213.3024,297.1184] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,488.461] (Line ) [220.2752,488.461] (Line ) [220.2752,489.0762] (Line ) [214.943,489.0762] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.5329,222.263] (Line ) [215.7634,222.263] (Line ) [215.7634,223.4934] (Line ) [214.5329,223.4934] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.5329,227.185] (Line ) [215.7634,227.185] (Line ) [215.7634,228.4155] (Line ) [214.5329,228.4155] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.5329,232.1069] (Line ) [215.7634,232.1069] (Line ) [215.7634,233.3374] (Line ) [214.5329,233.3374] (Line ) fwd: T Text T "AGND" xerox/pressfonts/Helvetica-B [6.0 0.0 419.206 0.0 6.0 494.6135][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "J3" xerox/pressfonts/Helvetica-B [6.0 0.0 511.9036 0.0 6.0 499.5354][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [517.6459,493.383] (Line ) [525.029,493.383] (Line ) [525.029,493.9983] (Line ) [517.6459,493.9983] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [288.773,677.958] (Line ) [289.1832,677.958] (Line ) [289.1832,690.468] (Line ) [288.773,690.468] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.539,677.958] (Line ) [303.9492,677.958] (Line ) [303.9492,685.5459] (Line ) [303.539,685.5459] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [279.7493,690.263] (Line ) [319.9457,690.263] (Line ) [319.9457,690.8781] (Line ) [279.7493,690.8781] (Line ) fwd: T Text T "VCK" xerox/pressfonts/Helvetica-B [6.0 0.0 405.2603 0.0 6.0 716.1035][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.745,611.511] (Line ) [417.1551,611.511] (Line ) [417.1551,715.4883] (Line ) [416.745,715.4883] (Line ) fwd: T Text T "Low" xerox/pressfonts/Helvetica-B [6.0 0.0 301.8983 0.0 6.0 194.3716][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [298.617,193.1411] (Line ) [313.383,193.1411] (Line ) [313.383,193.7564] (Line ) [298.617,193.7564] (Line ) fwd: T Text T "Low" xerox/pressfonts/Helvetica-B [6.0 0.0 121.4251 0.0 6.0 218.9817][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [119.7844,217.7512] (Line ) [131.2691,217.7512] (Line ) [131.2691,218.3664] (Line ) [119.7844,218.3664] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [493.0359,406.4277] (Line ) [506.9816,406.4277] (Line ) [506.9816,407.043] (Line ) [493.0359,407.043] (Line ) fwd: T Text T "High" xerox/pressfonts/Helvetica-B [6.0 0.0 495.4969 0.0 6.0 407.6582][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [494.6766,373.6145] (Line ) [506.9816,373.6145] (Line ) [506.9816,374.2297] (Line ) [494.6766,374.2297] (Line ) fwd: T Text T "Low" xerox/pressfonts/Helvetica-B [6.0 0.0 496.3172 0.0 6.0 374.845][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [485.6529,373.6145] (Line ) [488.1139,373.6145] (Line ) [488.1139,374.0247] (Line ) [485.6529,374.0247] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [488.1139,376.0754] (Line ) [492.2156,376.0754] (Line ) [492.2156,376.4856] (Line ) [488.1139,376.4856] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [491.3953,372.794] (Line ) [492.6258,372.794] (Line ) [492.6258,377.7161] (Line ) [491.3953,377.7161] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [488.1139,372.794] (Line ) [489.3444,372.794] (Line ) [489.3444,377.7161] (Line ) [488.1139,377.7161] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [492.2156,373.6145] (Line ) [494.6766,373.6145] (Line ) [494.6766,374.0247] (Line ) [492.2156,374.0247] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,373.6145] (Line ) [486.4733,373.6145] (Line ) [486.4733,374.2297] (Line ) [480.731,374.2297] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,406.4277] (Line ) [488.9343,406.4277] (Line ) [488.9343,407.043] (Line ) [480.731,407.043] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.8229,591.823] (Line ) [421.667,591.823] (Line ) [421.667,592.2332] (Line ) [411.8229,592.2332] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.539,611.511] (Line ) [416.745,611.511] (Line ) [416.745,612.1262] (Line ) [303.539,612.1262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,616.4328] (Line ) [407.3111,616.4328] (Line ) [407.3111,617.0481] (Line ) [313.383,617.0481] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [308.461,621.355] (Line ) [401.979,621.355] (Line ) [401.979,621.9702] (Line ) [308.461,621.9702] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [121.4251,714.8728] (Line ) [416.745,714.8728] (Line ) [416.745,715.4883] (Line ) [121.4251,715.4883] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,596.7449] (Line ) [333.071,596.7449] (Line ) [333.071,597.3601] (Line ) [327.3287,597.3601] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [333.071,588.5418] (Line ) [333.4812,588.5418] (Line ) [333.4812,597.3601] (Line ) [333.071,597.3601] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,591.823] (Line ) [333.071,591.823] (Line ) [333.071,592.4381] (Line ) [327.3287,592.4381] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [297.7967,591.823] (Line ) [318.305,591.823] (Line ) [318.305,592.4381] (Line ) [297.7967,592.4381] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [297.7967,596.7449] (Line ) [318.305,596.7449] (Line ) [318.305,597.3601] (Line ) [297.7967,597.3601] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.8229,605.7686] (Line ) [412.2331,605.7686] (Line ) [412.2331,680.624] (Line ) [411.8229,680.624] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [406.901,541.7827] (Line ) [407.3111,541.7827] (Line ) [407.3111,552.6521] (Line ) [406.901,552.6521] (Line ) fwd: T Text T "L1" xerox/pressfonts/Helvetica-B [6.0 0.0 510.2629 0.0 6.0 570.0842][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [517.6459,577.0569] (Line ) [525.029,577.0569] (Line ) [525.029,577.6721] (Line ) [517.6459,577.6721] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [447.7949,486.0254] (Line ) [446.1542,485.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [447.0254,485.3847] (Line ) [446.2051,485.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [446.9746,480.3847] (Line ) [447.7949,480.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [447.7949,480.9746] (Line ) [446.1542,481.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [447.7949,482.0254] (Line ) [446.1542,481.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [447.7949,484.0254] (Line ) [446.1542,483.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [447.7949,482.9746] (Line ) [446.1542,483.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [447.7949,483.9746] (Line ) [446.1542,484.7949] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [446.277,486.0] (Line ) [446.6871,486.0] (Line ) [446.6871,488.0508] (Line ) [446.277,488.0508] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [446.277,477.7966] (Line ) [446.6871,477.7966] (Line ) [446.6871,480.6677] (Line ) [446.277,480.6677] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [432.7949,486.0254] (Line ) [431.1542,485.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [433.0254,485.3847] (Line ) [432.2051,485.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [431.9746,480.3847] (Line ) [432.7949,480.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [432.7949,480.9746] (Line ) [431.1542,481.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [432.7949,482.0254] (Line ) [431.1542,481.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [432.7949,484.0254] (Line ) [431.1542,483.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [432.7949,482.9746] (Line ) [431.1542,483.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [432.7949,483.9746] (Line ) [431.1542,484.7949] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [431.511,486.0] (Line ) [431.9211,486.0] (Line ) [431.9211,488.0508] (Line ) [431.511,488.0508] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [431.511,477.7966] (Line ) [431.9211,477.7966] (Line ) [431.9211,480.6677] (Line ) [431.511,480.6677] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [446.277,487.6406] (Line ) [446.6871,487.6406] (Line ) [446.6871,493.5881] (Line ) [446.277,493.5881] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [431.511,487.6406] (Line ) [431.9211,487.6406] (Line ) [431.9211,493.5881] (Line ) [431.511,493.5881] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.745,487.6406] (Line ) [417.1551,487.6406] (Line ) [417.1551,493.5881] (Line ) [416.745,493.5881] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,370.333] (Line ) [481.1411,370.333] (Line ) [481.1411,385.3042] (Line ) [480.731,385.3042] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,394.9431] (Line ) [481.1411,394.9431] (Line ) [481.1411,409.914] (Line ) [480.731,409.914] (Line ) fwd: T Text T "C23" xerox/pressfonts/Helvetica-B [6.0 0.0 472.5276 0.0 6.0 384.689][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C22" xerox/pressfonts/Helvetica-B [6.0 0.0 457.7616 0.0 6.0 384.689][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C21" xerox/pressfonts/Helvetica-B [6.0 0.0 442.9956 0.0 6.0 384.689][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C20" xerox/pressfonts/Helvetica-B [6.0 0.0 428.2296 0.0 6.0 384.689][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,368.6924] (Line ) [481.1411,368.6924] (Line ) [481.1411,370.7432] (Line ) [480.731,370.7432] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [479.7949,369.0254] (Line ) [479.3847,368.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [479.9746,367.2051] (Line ) [480.7949,368.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [480.9746,367.2051] (Line ) [481.7949,368.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [479.0903,368.6924] (Line ) [483.192,368.6924] (Line ) [483.192,369.1025] (Line ) [479.0903,369.1025] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [481.9746,367.2051] (Line ) [482.7949,368.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [480.9746,367.2051] (Line ) [481.7949,368.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [436.433,375.2551] (Line ) [480.731,375.2551] (Line ) [480.731,375.8704] (Line ) [436.433,375.8704] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [470.887,493.383] (Line ) [471.2971,493.383] (Line ) [471.2971,537.886] (Line ) [470.887,537.886] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [461.043,493.383] (Line ) [461.4531,493.383] (Line ) [461.4531,537.886] (Line ) [461.043,537.886] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.199,493.383] (Line ) [451.6091,493.383] (Line ) [451.6091,537.886] (Line ) [451.199,537.886] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [441.355,493.383] (Line ) [441.7651,493.383] (Line ) [441.7651,537.886] (Line ) [441.355,537.886] (Line ) fwd: T Text T "C5" xerox/pressfonts/Helvetica-B [6.0 0.0 465.1446 0.0 6.0 537.2707][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C4" xerox/pressfonts/Helvetica-B [6.0 0.0 455.3006 0.0 6.0 537.2707][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C3" xerox/pressfonts/Helvetica-B [6.0 0.0 445.4566 0.0 6.0 537.2707][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C2" xerox/pressfonts/Helvetica-B [6.0 0.0 435.6126 0.0 6.0 537.2707][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [467.6056,543.4234] (Line ) [474.5784,543.4234] (Line ) [474.5784,543.8335] (Line ) [467.6056,543.8335] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [467.6056,541.7827] (Line ) [474.5784,541.7827] (Line ) [474.5784,542.1929] (Line ) [467.6056,542.1929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [470.887,537.6809] (Line ) [471.2971,537.6809] (Line ) [471.2971,541.7827] (Line ) [470.887,541.7827] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [470.887,543.4234] (Line ) [471.2971,543.4234] (Line ) [471.2971,547.935] (Line ) [470.887,547.935] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [457.7616,543.4234] (Line ) [464.7344,543.4234] (Line ) [464.7344,543.8335] (Line ) [457.7616,543.8335] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [457.7616,541.7827] (Line ) [464.7344,541.7827] (Line ) [464.7344,542.1929] (Line ) [457.7616,542.1929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [461.043,537.6809] (Line ) [461.4531,537.6809] (Line ) [461.4531,541.7827] (Line ) [461.043,541.7827] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [461.043,543.4234] (Line ) [461.4531,543.4234] (Line ) [461.4531,547.935] (Line ) [461.043,547.935] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [447.9176,543.4234] (Line ) [454.8904,543.4234] (Line ) [454.8904,543.8335] (Line ) [447.9176,543.8335] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [447.9176,541.7827] (Line ) [454.8904,541.7827] (Line ) [454.8904,542.1929] (Line ) [447.9176,542.1929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.199,537.6809] (Line ) [451.6091,537.6809] (Line ) [451.6091,541.7827] (Line ) [451.199,541.7827] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.199,543.4234] (Line ) [451.6091,543.4234] (Line ) [451.6091,547.935] (Line ) [451.199,547.935] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [438.0736,543.4234] (Line ) [445.0464,543.4234] (Line ) [445.0464,543.8335] (Line ) [438.0736,543.8335] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [438.0736,541.7827] (Line ) [445.0464,541.7827] (Line ) [445.0464,542.1929] (Line ) [438.0736,542.1929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [441.355,537.6809] (Line ) [441.7651,537.6809] (Line ) [441.7651,541.7827] (Line ) [441.355,541.7827] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [441.355,543.4234] (Line ) [441.7651,543.4234] (Line ) [441.7651,547.935] (Line ) [441.355,547.935] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [470.887,547.5249] (Line ) [471.2971,547.5249] (Line ) [471.2971,577.262] (Line ) [470.887,577.262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [461.043,547.5249] (Line ) [461.4531,547.5249] (Line ) [461.4531,577.262] (Line ) [461.043,577.262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.199,547.5249] (Line ) [451.6091,547.5249] (Line ) [451.6091,577.262] (Line ) [451.199,577.262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [441.355,547.5249] (Line ) [441.7651,547.5249] (Line ) [441.7651,577.262] (Line ) [441.355,577.262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [521.7476,543.4234] (Line ) [528.7204,543.4234] (Line ) [528.7204,543.8335] (Line ) [521.7476,543.8335] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [521.7476,541.7827] (Line ) [528.7204,541.7827] (Line ) [528.7204,542.1929] (Line ) [521.7476,542.1929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [525.029,537.6809] (Line ) [525.4391,537.6809] (Line ) [525.4391,541.7827] (Line ) [525.029,541.7827] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [525.029,543.4234] (Line ) [525.4391,543.4234] (Line ) [525.4391,547.935] (Line ) [525.029,547.935] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [289.7949,676.0254] (Line ) [288.1542,675.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [290.0254,676.3848] (Line ) [289.2051,676.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [288.9746,670.3848] (Line ) [289.7949,670.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [289.7949,670.9746] (Line ) [288.1542,671.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [289.7949,673.0254] (Line ) [288.1542,672.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [289.7949,674.0254] (Line ) [288.1542,673.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [289.7949,672.9746] (Line ) [288.1542,673.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [289.7949,673.9746] (Line ) [288.1542,674.7949] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [288.773,676.3171] (Line ) [289.1832,676.3171] (Line ) [289.1832,678.3683] (Line ) [288.773,678.3683] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [288.773,668.114] (Line ) [289.1832,668.114] (Line ) [289.1832,670.9851] (Line ) [288.773,670.9851] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [304.7949,676.0254] (Line ) [303.1542,675.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [305.0254,676.3848] (Line ) [304.2051,676.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [303.9746,670.3848] (Line ) [304.7949,670.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [304.7949,670.9746] (Line ) [303.1542,671.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [304.7949,673.0254] (Line ) [303.1542,672.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [304.7949,674.0254] (Line ) [303.1542,673.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [304.7949,672.9746] (Line ) [303.1542,673.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [304.7949,673.9746] (Line ) [303.1542,674.7949] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.539,676.3171] (Line ) [303.9492,676.3171] (Line ) [303.9492,678.3683] (Line ) [303.539,678.3683] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.539,668.114] (Line ) [303.9492,668.114] (Line ) [303.9492,670.9851] (Line ) [303.539,670.9851] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [296.0254,596.2051] (Line ) [295.2051,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [296.3847,595.9746] (Line ) [296.7949,596.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [290.3847,597.0254] (Line ) [290.7949,596.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [290.9746,596.2051] (Line ) [291.7949,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [293.0254,596.2051] (Line ) [292.2051,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [294.0254,596.2051] (Line ) [293.2051,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [292.9746,596.2051] (Line ) [293.7949,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [293.9746,596.2051] (Line ) [294.7949,597.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [296.156,596.7449] (Line ) [298.2068,596.7449] (Line ) [298.2068,597.155] (Line ) [296.156,597.155] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [287.9527,596.7449] (Line ) [290.8238,596.7449] (Line ) [290.8238,597.155] (Line ) [287.9527,597.155] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [296.0254,591.2051] (Line ) [295.2051,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [296.3847,590.9746] (Line ) [296.7949,591.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [290.3847,592.0254] (Line ) [290.7949,591.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [290.9746,591.2051] (Line ) [291.7949,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [293.0254,591.2051] (Line ) [292.2051,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [294.0254,591.2051] (Line ) [293.2051,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [292.9746,591.2051] (Line ) [293.7949,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [293.9746,591.2051] (Line ) [294.7949,592.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [296.156,591.823] (Line ) [298.2068,591.823] (Line ) [298.2068,592.2332] (Line ) [296.156,592.2332] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [287.9527,591.823] (Line ) [290.8238,591.823] (Line ) [290.8238,592.2332] (Line ) [287.9527,592.2332] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [325.0254,596.2051] (Line ) [324.2051,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [325.3847,595.9746] (Line ) [325.7949,596.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [320.3847,597.0254] (Line ) [320.7949,596.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [320.9746,596.2051] (Line ) [321.7949,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [322.0254,596.2051] (Line ) [321.2051,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [324.0254,596.2051] (Line ) [323.2051,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [321.9746,596.2051] (Line ) [322.7949,597.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [323.9746,596.2051] (Line ) [324.7949,597.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [325.688,596.7449] (Line ) [327.7388,596.7449] (Line ) [327.7388,597.155] (Line ) [325.688,597.155] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [317.4846,596.7449] (Line ) [320.3558,596.7449] (Line ) [320.3558,597.155] (Line ) [317.4846,597.155] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [325.0254,591.2051] (Line ) [324.2051,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [325.3847,590.9746] (Line ) [325.7949,591.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [320.3847,592.0254] (Line ) [320.7949,591.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [320.9746,591.2051] (Line ) [321.7949,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [322.0254,591.2051] (Line ) [321.2051,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [324.0254,591.2051] (Line ) [323.2051,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [321.9746,591.2051] (Line ) [322.7949,592.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [323.9746,591.2051] (Line ) [324.7949,592.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [325.688,591.823] (Line ) [327.7388,591.823] (Line ) [327.7388,592.2332] (Line ) [325.688,592.2332] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [317.4846,591.823] (Line ) [320.3558,591.823] (Line ) [320.3558,592.2332] (Line ) [317.4846,592.2332] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [412.7949,604.0254] (Line ) [411.1542,603.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [413.0254,604.3848] (Line ) [412.2051,604.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [411.9746,598.3848] (Line ) [412.7949,598.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [412.7949,598.9746] (Line ) [411.1542,599.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [412.7949,601.0254] (Line ) [411.1542,600.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [412.7949,602.0254] (Line ) [411.1542,601.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [412.7949,600.9746] (Line ) [411.1542,601.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [412.7949,601.9746] (Line ) [411.1542,602.7949] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.8229,604.128] (Line ) [412.2331,604.128] (Line ) [412.2331,606.1787] (Line ) [411.8229,606.1787] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.8229,595.9245] (Line ) [412.2331,595.9245] (Line ) [412.2331,598.7959] (Line ) [411.8229,598.7959] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [418.3856,586.0806] (Line ) [425.3585,586.0806] (Line ) [425.3585,586.4908] (Line ) [418.3856,586.4908] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [418.3856,587.7212] (Line ) [425.3585,587.7212] (Line ) [425.3585,588.1313] (Line ) [418.3856,588.1313] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.667,588.1313] (Line ) [422.0771,588.1313] (Line ) [422.0771,592.2332] (Line ) [421.667,592.2332] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.667,581.979] (Line ) [422.0771,581.979] (Line ) [422.0771,586.4908] (Line ) [421.667,586.4908] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [418.3856,568.0332] (Line ) [425.3585,568.0332] (Line ) [425.3585,568.4433] (Line ) [418.3856,568.4433] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [418.3856,566.3926] (Line ) [425.3585,566.3926] (Line ) [425.3585,566.8028] (Line ) [418.3856,566.8028] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.667,562.291] (Line ) [422.0771,562.291] (Line ) [422.0771,566.3926] (Line ) [421.667,566.3926] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.667,568.0332] (Line ) [422.0771,568.0332] (Line ) [422.0771,572.5452] (Line ) [421.667,572.5452] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.667,557.3689] (Line ) [422.0771,557.3689] (Line ) [422.0771,562.291] (Line ) [421.667,562.291] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [407.7949,540.0254] (Line ) [406.1542,539.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [408.0254,540.3848] (Line ) [407.2051,540.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [406.9746,534.3848] (Line ) [407.7949,534.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [407.7949,534.9746] (Line ) [406.1542,535.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [407.7949,537.0254] (Line ) [406.1542,536.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [407.7949,538.0254] (Line ) [406.1542,537.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [407.7949,536.9746] (Line ) [406.1542,537.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [407.7949,537.9746] (Line ) [406.1542,538.7949] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [406.901,540.1421] (Line ) [407.3111,540.1421] (Line ) [407.3111,542.1929] (Line ) [406.901,542.1929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [406.901,531.9387] (Line ) [407.3111,531.9387] (Line ) [407.3111,534.8098] (Line ) [406.901,534.8098] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [477.4496,543.4234] (Line ) [484.4224,543.4234] (Line ) [484.4224,543.8335] (Line ) [477.4496,543.8335] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [477.4496,541.7827] (Line ) [484.4224,541.7827] (Line ) [484.4224,542.1929] (Line ) [477.4496,542.1929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,537.6809] (Line ) [481.1411,537.6809] (Line ) [481.1411,541.7827] (Line ) [480.731,541.7827] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,543.4234] (Line ) [481.1411,543.4234] (Line ) [481.1411,547.935] (Line ) [480.731,547.935] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [487.2936,543.4234] (Line ) [494.2664,543.4234] (Line ) [494.2664,543.8335] (Line ) [487.2936,543.8335] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [487.2936,541.7827] (Line ) [494.2664,541.7827] (Line ) [494.2664,542.1929] (Line ) [487.2936,542.1929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [490.5749,537.6809] (Line ) [490.9851,537.6809] (Line ) [490.9851,541.7827] (Line ) [490.5749,541.7827] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [490.5749,543.4234] (Line ) [490.9851,543.4234] (Line ) [490.9851,547.935] (Line ) [490.5749,547.935] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [497.1376,543.4234] (Line ) [504.1104,543.4234] (Line ) [504.1104,543.8335] (Line ) [497.1376,543.8335] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [497.1376,541.7827] (Line ) [504.1104,541.7827] (Line ) [504.1104,542.1929] (Line ) [497.1376,542.1929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [500.4189,537.6809] (Line ) [500.829,537.6809] (Line ) [500.829,541.7827] (Line ) [500.4189,541.7827] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [500.4189,543.4234] (Line ) [500.829,543.4234] (Line ) [500.829,547.935] (Line ) [500.4189,547.935] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [505.3409,577.0569] (Line ) [507.3917,577.0569] (Line ) [507.3917,577.467] (Line ) [505.3409,577.467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [516.8256,577.0569] (Line ) [518.8764,577.0569] (Line ) [518.8764,577.467] (Line ) [516.8256,577.467] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [508.7949,575.1542] (Bezier [507.9746,575.1542] [507.1542,575.9746] ) [507.1542,576.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [510.8458,576.7949] (Bezier [510.8458,575.9746] [510.0254,575.1542] ) [509.2051,575.1542] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [511.7949,575.1542] (Bezier [510.9746,575.1542] [510.1542,575.9746] ) [510.1542,576.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [513.8458,576.7949] (Bezier [513.8458,575.9746] [513.0254,575.1542] ) [512.2051,575.1542] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [515.7949,575.1542] (Bezier [514.9746,575.1542] [514.1542,575.9746] ) [514.1542,576.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [516.8458,576.7949] (Bezier [516.8458,575.9746] [516.0254,575.1542] ) [515.2051,575.1542] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [506.9816,576.5442] (Line ) [507.3917,576.5442] (Line ) [507.3917,577.3645] (Line ) [506.9816,577.3645] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [516.8256,576.5442] (Line ) [517.2357,576.5442] (Line ) [517.2357,577.3645] (Line ) [516.8256,577.3645] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,463.851] (Line ) [539.7949,463.851] (Line ) [539.7949,464.4663] (Line ) [397.057,464.4663] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,468.773] (Line ) [539.7949,468.773] (Line ) [539.7949,469.3882] (Line ) [397.057,469.3882] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,473.695] (Line ) [539.7949,473.695] (Line ) [539.7949,474.3103] (Line ) [397.057,474.3103] (Line ) fwd: T Text T "PB" xerox/pressfonts/Helvetica-B [6.0 0.0 499.5986 0.0 6.0 459.3391][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [495.4969,466.312] (Line ) [495.907,466.312] (Line ) [495.907,493.5881] (Line ) [495.4969,493.5881] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [485.6529,471.2339] (Line ) [486.0631,471.2339] (Line ) [486.0631,493.5881] (Line ) [485.6529,493.5881] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [525.029,487.6406] (Line ) [525.4391,487.6406] (Line ) [525.4391,489.6914] (Line ) [525.029,489.6914] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [523.7949,488.0254] (Line ) [523.3848,487.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [523.9746,486.2051] (Line ) [524.7949,487.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [524.9746,486.2051] (Line ) [525.7949,487.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [523.3883,487.6406] (Line ) [527.49,487.6406] (Line ) [527.49,488.0508] (Line ) [523.3883,488.0508] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [525.9746,486.2051] (Line ) [526.7949,487.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [525.9746,486.2051] (Line ) [526.7949,487.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [525.029,547.5249] (Line ) [525.4391,547.5249] (Line ) [525.4391,582.1841] (Line ) [525.029,582.1841] (Line ) fwd: T Text T "C1" xerox/pressfonts/Helvetica-B [6.0 0.0 526.6696 0.0 6.0 537.2707][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [490.5749,547.5249] (Line ) [490.9851,547.5249] (Line ) [490.9851,577.262] (Line ) [490.5749,577.262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [490.5749,493.383] (Line ) [490.9851,493.383] (Line ) [490.9851,537.886] (Line ) [490.5749,537.886] (Line ) fwd: T Text T "C7" xerox/pressfonts/Helvetica-B [6.0 0.0 484.8326 0.0 6.0 537.2707][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C10" xerox/pressfonts/Helvetica-B [6.0 0.0 502.0596 0.0 6.0 537.2707][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C6" xerox/pressfonts/Helvetica-B [6.0 0.0 474.9886 0.0 6.0 537.2707][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [446.277,463.851] (Line ) [446.6871,463.851] (Line ) [446.6871,478.822] (Line ) [446.277,478.822] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [431.511,468.773] (Line ) [431.9211,468.773] (Line ) [431.9211,478.822] (Line ) [431.511,478.822] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,547.5249] (Line ) [412.2331,547.5249] (Line ) [412.2331,547.935] (Line ) [397.057,547.935] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [406.901,527.8369] (Line ) [407.3111,527.8369] (Line ) [407.3111,532.759] (Line ) [406.901,532.759] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [401.979,527.8369] (Line ) [406.901,527.8369] (Line ) [406.901,528.247] (Line ) [401.979,528.247] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,552.447] (Line ) [407.3111,552.447] (Line ) [407.3111,553.0623] (Line ) [397.057,553.0623] (Line ) fwd: T Text T "C8" xerox/pressfonts/Helvetica-B [6.0 0.0 426.589 0.0 6.0 565.9824][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C9" xerox/pressfonts/Helvetica-B [6.0 0.0 426.589 0.0 6.0 585.6704][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [420.0263,577.0569] (Line ) [421.2568,577.0569] (Line ) [421.2568,577.467] (Line ) [420.0263,577.467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.667,575.4163] (Line ) [422.0771,575.4163] (Line ) [422.0771,576.6467] (Line ) [421.667,576.6467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.2568,576.6467] (Line ) [422.4873,576.6467] (Line ) [422.4873,577.8772] (Line ) [421.2568,577.8772] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [422.4873,577.0569] (Line ) [423.7178,577.0569] (Line ) [423.7178,577.467] (Line ) [422.4873,577.467] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.667,577.8772] (Line ) [422.0771,577.8772] (Line ) [422.0771,579.1079] (Line ) [421.667,579.1079] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.667,577.0569] (Line ) [422.0771,577.0569] (Line ) [422.0771,581.979] (Line ) [421.667,581.979] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,557.3689] (Line ) [422.0771,557.3689] (Line ) [422.0771,557.984] (Line ) [397.057,557.984] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,680.419] (Line ) [318.305,680.419] (Line ) [318.305,681.0342] (Line ) [313.383,681.0342] (Line ) fwd: T Text T "R14" xerox/pressfonts/Helvetica-B [6.0 0.0 289.5933 0.0 6.0 586.4908][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "R13" xerox/pressfonts/Helvetica-B [6.0 0.0 319.1253 0.0 6.0 599.6162][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "R12" xerox/pressfonts/Helvetica-B [6.0 0.0 289.5933 0.0 6.0 599.6162][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [283.851,591.823] (Line ) [284.2612,591.823] (Line ) [284.2612,601.872] (Line ) [283.851,601.872] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [283.851,600.0264] (Line ) [284.2612,600.0264] (Line ) [284.2612,604.128] (Line ) [283.851,604.128] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2103,604.128] (Line ) [285.9019,604.128] (Line ) [285.9019,604.5381] (Line ) [282.2103,604.5381] (Line ) fwd: T Text T "+" Xerox/PressFonts/Helvetica [0.0 3.281332 282.6205 -3.281332 0.0 607.4092][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,212.8291] (Line ) [318.305,212.8291] (Line ) [318.305,213.4443] (Line ) [313.383,213.4443] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,217.7512] (Line ) [318.305,217.7512] (Line ) [318.305,218.3664] (Line ) [313.383,218.3664] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,262.0491] (Line ) [318.305,262.0491] (Line ) [318.305,262.6643] (Line ) [313.383,262.6643] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,266.9712] (Line ) [318.305,266.9712] (Line ) [318.305,267.5864] (Line ) [313.383,267.5864] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,271.8931] (Line ) [318.305,271.8931] (Line ) [318.305,272.5083] (Line ) [313.383,272.5083] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,276.8152] (Line ) [318.305,276.8152] (Line ) [318.305,277.4304] (Line ) [313.383,277.4304] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,281.737] (Line ) [318.305,281.737] (Line ) [318.305,282.3523] (Line ) [313.383,282.3523] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,286.6592] (Line ) [318.305,286.6592] (Line ) [318.305,287.2744] (Line ) [313.383,287.2744] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,291.581] (Line ) [318.305,291.581] (Line ) [318.305,292.1963] (Line ) [313.383,292.1963] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,296.5032] (Line ) [318.305,296.5032] (Line ) [318.305,297.1184] (Line ) [313.383,297.1184] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [244.475,567.2129] (Line ) [244.8852,567.2129] (Line ) [244.8852,656.424] (Line ) [244.475,656.424] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,650.887] (Line ) [239.553,650.887] (Line ) [239.553,651.5022] (Line ) [91.89308,651.5022] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [239.553,577.0569] (Line ) [239.9632,577.0569] (Line ) [239.9632,651.5022] (Line ) [239.553,651.5022] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,645.9649] (Line ) [234.631,645.9649] (Line ) [234.631,646.5801] (Line ) [91.89308,646.5801] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.631,581.979] (Line ) [235.0412,581.979] (Line ) [235.0412,646.5801] (Line ) [234.631,646.5801] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,641.043] (Line ) [229.709,641.043] (Line ) [229.709,641.6582] (Line ) [91.89308,641.6582] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [229.709,611.511] (Line ) [230.1192,611.511] (Line ) [230.1192,641.6582] (Line ) [229.709,641.6582] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,611.511] (Line ) [230.1192,611.511] (Line ) [230.1192,612.1262] (Line ) [214.943,612.1262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,636.1208] (Line ) [224.787,636.1208] (Line ) [224.787,636.7361] (Line ) [91.89308,636.7361] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [224.787,621.355] (Line ) [225.1972,621.355] (Line ) [225.1972,636.7361] (Line ) [224.787,636.7361] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,621.355] (Line ) [225.1972,621.355] (Line ) [225.1972,621.9702] (Line ) [214.943,621.9702] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,621.355] (Line ) [136.1911,621.355] (Line ) [136.1911,621.9702] (Line ) [91.89308,621.9702] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,611.511] (Line ) [136.1911,611.511] (Line ) [136.1911,612.1262] (Line ) [91.89308,612.1262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,601.667] (Line ) [136.1911,601.667] (Line ) [136.1911,602.2822] (Line ) [91.89308,602.2822] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,596.7449] (Line ) [136.1911,596.7449] (Line ) [136.1911,597.3601] (Line ) [91.89308,597.3601] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,581.979] (Line ) [136.1911,581.979] (Line ) [136.1911,582.5942] (Line ) [91.89308,582.5942] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,577.0569] (Line ) [136.1911,577.0569] (Line ) [136.1911,577.6721] (Line ) [91.89308,577.6721] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,463.851] (Line ) [136.1911,463.851] (Line ) [136.1911,464.4663] (Line ) [91.89308,464.4663] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,468.773] (Line ) [136.1911,468.773] (Line ) [136.1911,469.3882] (Line ) [91.89308,469.3882] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,473.695] (Line ) [136.1911,473.695] (Line ) [136.1911,474.3103] (Line ) [91.89308,474.3103] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,478.617] (Line ) [136.1911,478.617] (Line ) [136.1911,479.2322] (Line ) [91.89308,479.2322] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,483.539] (Line ) [136.1911,483.539] (Line ) [136.1911,484.1543] (Line ) [91.89308,484.1543] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,488.461] (Line ) [136.1911,488.461] (Line ) [136.1911,489.0762] (Line ) [91.89308,489.0762] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,498.305] (Line ) [116.5031,498.305] (Line ) [116.5031,498.9202] (Line ) [91.89308,498.9202] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,660.731] (Line ) [318.305,660.731] (Line ) [318.305,661.1411] (Line ) [313.383,661.1411] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,655.8088] (Line ) [318.305,655.8088] (Line ) [318.305,656.424] (Line ) [313.383,656.424] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [396.6468,665.2427] (Line ) [397.8773,665.2427] (Line ) [397.8773,666.4732] (Line ) [396.6468,666.4732] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [396.6468,655.3987] (Line ) [397.8773,655.3987] (Line ) [397.8773,656.6291] (Line ) [396.6468,656.6291] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [121.4251,454.0071] (Line ) [136.1911,454.0071] (Line ) [136.1911,454.6223] (Line ) [121.4251,454.6223] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.539,567.2129] (Line ) [303.9492,567.2129] (Line ) [303.9492,612.1262] (Line ) [303.539,612.1262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.539,567.2129] (Line ) [319.9457,567.2129] (Line ) [319.9457,567.8281] (Line ) [303.539,567.8281] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [308.461,572.135] (Line ) [308.8712,572.135] (Line ) [308.8712,621.9702] (Line ) [308.461,621.9702] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [308.461,572.135] (Line ) [319.9457,572.135] (Line ) [319.9457,572.7503] (Line ) [308.461,572.7503] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,577.0569] (Line ) [313.7932,577.0569] (Line ) [313.7932,617.0481] (Line ) [313.383,617.0481] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [406.901,616.4328] (Line ) [407.3111,616.4328] (Line ) [407.3111,690.468] (Line ) [406.901,690.468] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,690.263] (Line ) [407.3111,690.263] (Line ) [407.3111,690.8781] (Line ) [397.057,690.8781] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [401.979,621.355] (Line ) [402.3891,621.355] (Line ) [402.3891,685.5459] (Line ) [401.979,685.5459] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,685.3408] (Line ) [402.3891,685.3408] (Line ) [402.3891,685.956] (Line ) [397.057,685.956] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,670.575] (Line ) [416.745,670.575] (Line ) [416.745,671.1902] (Line ) [397.057,671.1902] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.631,483.539] (Line ) [235.0412,483.539] (Line ) [235.0412,503.8423] (Line ) [234.631,503.8423] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [254.319,503.227] (Line ) [320.766,503.227] (Line ) [320.766,503.8423] (Line ) [254.319,503.8423] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [249.397,498.305] (Line ) [320.766,498.305] (Line ) [320.766,498.9202] (Line ) [249.397,498.9202] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [239.553,488.461] (Line ) [321.5863,488.461] (Line ) [321.5863,489.0762] (Line ) [239.553,489.0762] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.631,483.539] (Line ) [321.5863,483.539] (Line ) [321.5863,484.1543] (Line ) [234.631,484.1543] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [239.553,488.461] (Line ) [239.9632,488.461] (Line ) [239.9632,508.7642] (Line ) [239.553,508.7642] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [249.397,498.305] (Line ) [249.8072,498.305] (Line ) [249.8072,518.6082] (Line ) [249.397,518.6082] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [254.319,503.227] (Line ) [254.7292,503.227] (Line ) [254.7292,523.5303] (Line ) [254.319,523.5303] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.5329,251.7949] (Line ) [215.7634,251.7949] (Line ) [215.7634,253.0254] (Line ) [214.5329,253.0254] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [229.709,202.9851] (Line ) [319.9457,202.9851] (Line ) [319.9457,203.6003] (Line ) [229.709,203.6003] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.631,207.9072] (Line ) [319.9457,207.9072] (Line ) [319.9457,208.5225] (Line ) [234.631,208.5225] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.631,207.9072] (Line ) [235.0412,207.9072] (Line ) [235.0412,257.7424] (Line ) [234.631,257.7424] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [239.553,222.6731] (Line ) [239.9632,222.6731] (Line ) [239.9632,262.6643] (Line ) [239.553,262.6643] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [239.553,222.6731] (Line ) [319.9457,222.6731] (Line ) [319.9457,223.2883] (Line ) [239.553,223.2883] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [244.475,227.5952] (Line ) [244.8852,227.5952] (Line ) [244.8852,267.5864] (Line ) [244.475,267.5864] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [244.475,227.5952] (Line ) [319.9457,227.5952] (Line ) [319.9457,228.2104] (Line ) [244.475,228.2104] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [249.397,232.5171] (Line ) [249.8072,232.5171] (Line ) [249.8072,272.5083] (Line ) [249.397,272.5083] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [249.397,232.5171] (Line ) [319.9457,232.5171] (Line ) [319.9457,233.1323] (Line ) [249.397,233.1323] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [254.319,237.4392] (Line ) [254.7292,237.4392] (Line ) [254.7292,277.4304] (Line ) [254.319,277.4304] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [254.319,237.4392] (Line ) [319.1253,237.4392] (Line ) [319.1253,238.0544] (Line ) [254.319,238.0544] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [259.241,242.3611] (Line ) [259.6512,242.3611] (Line ) [259.6512,282.3523] (Line ) [259.241,282.3523] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [259.241,242.3611] (Line ) [319.1253,242.3611] (Line ) [319.1253,242.9763] (Line ) [259.241,242.9763] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [264.163,247.2832] (Line ) [319.1253,247.2832] (Line ) [319.1253,247.8984] (Line ) [264.163,247.8984] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [264.163,247.2832] (Line ) [264.5732,247.2832] (Line ) [264.5732,287.2744] (Line ) [264.163,287.2744] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.007,257.1272] (Line ) [274.4172,257.1272] (Line ) [274.4172,297.1184] (Line ) [274.007,297.1184] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.007,257.1272] (Line ) [318.305,257.1272] (Line ) [318.305,257.7424] (Line ) [274.007,257.7424] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,375.2551] (Line ) [319.9457,375.2551] (Line ) [319.9457,375.8704] (Line ) [214.1227,375.8704] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,306.3472] (Line ) [320.766,306.3472] (Line ) [320.766,306.9624] (Line ) [214.943,306.9624] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,424.4751] (Line ) [320.766,424.4751] (Line ) [320.766,425.0903] (Line ) [214.943,425.0903] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,419.553] (Line ) [320.766,419.553] (Line ) [320.766,420.1682] (Line ) [214.943,420.1682] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,394.9431] (Line ) [320.766,394.9431] (Line ) [320.766,395.5583] (Line ) [214.943,395.5583] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,390.021] (Line ) [320.766,390.021] (Line ) [320.766,390.6362] (Line ) [214.943,390.6362] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,380.177] (Line ) [320.766,380.177] (Line ) [320.766,380.7922] (Line ) [214.943,380.7922] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,385.0991] (Line ) [320.766,385.0991] (Line ) [320.766,385.7144] (Line ) [214.943,385.7144] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,399.865] (Line ) [319.9457,399.865] (Line ) [319.9457,400.4802] (Line ) [214.1227,400.4802] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,404.7871] (Line ) [319.9457,404.7871] (Line ) [319.9457,405.4023] (Line ) [214.1227,405.4023] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,409.709] (Line ) [319.9457,409.709] (Line ) [319.9457,410.3242] (Line ) [214.1227,410.3242] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,414.6311] (Line ) [319.9457,414.6311] (Line ) [319.9457,415.2463] (Line ) [214.1227,415.2463] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,340.801] (Line ) [319.9457,340.801] (Line ) [319.9457,341.4163] (Line ) [214.1227,341.4163] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,335.8791] (Line ) [319.9457,335.8791] (Line ) [319.9457,336.4944] (Line ) [214.1227,336.4944] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,330.957] (Line ) [319.9457,330.957] (Line ) [319.9457,331.5723] (Line ) [214.1227,331.5723] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,326.0352] (Line ) [319.9457,326.0352] (Line ) [319.9457,326.6504] (Line ) [214.1227,326.6504] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,311.269] (Line ) [320.766,311.269] (Line ) [320.766,311.8843] (Line ) [214.943,311.8843] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,316.1912] (Line ) [320.766,316.1912] (Line ) [320.766,316.8064] (Line ) [214.943,316.8064] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,321.113] (Line ) [320.766,321.113] (Line ) [320.766,321.7283] (Line ) [214.943,321.7283] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,360.489] (Line ) [320.766,360.489] (Line ) [320.766,361.1043] (Line ) [214.943,361.1043] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,355.5671] (Line ) [320.766,355.5671] (Line ) [320.766,356.1824] (Line ) [214.943,356.1824] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,345.7231] (Line ) [320.766,345.7231] (Line ) [320.766,346.3384] (Line ) [214.943,346.3384] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,350.645] (Line ) [320.766,350.645] (Line ) [320.766,351.2603] (Line ) [214.943,351.2603] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,365.4111] (Line ) [319.9457,365.4111] (Line ) [319.9457,366.0264] (Line ) [214.1227,366.0264] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,370.333] (Line ) [319.9457,370.333] (Line ) [319.9457,370.9483] (Line ) [214.1227,370.9483] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,380.177] (Line ) [319.9457,380.177] (Line ) [319.9457,380.7922] (Line ) [214.1227,380.7922] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,301.425] (Line ) [319.9457,301.425] (Line ) [319.9457,302.0403] (Line ) [214.1227,302.0403] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [269.085,252.2051] (Line ) [319.1253,252.2051] (Line ) [319.1253,252.8203] (Line ) [269.085,252.8203] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [269.085,252.2051] (Line ) [269.4952,252.2051] (Line ) [269.4952,292.1963] (Line ) [269.085,292.1963] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [229.709,202.9851] (Line ) [230.1192,202.9851] (Line ) [230.1192,247.8984] (Line ) [229.709,247.8984] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [283.851,532.759] (Line ) [284.2612,532.759] (Line ) [284.2612,553.0623] (Line ) [283.851,553.0623] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [283.851,532.759] (Line ) [319.9457,532.759] (Line ) [319.9457,533.3743] (Line ) [283.851,533.3743] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [288.773,537.6809] (Line ) [319.1253,537.6809] (Line ) [319.1253,538.2961] (Line ) [288.773,538.2961] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [288.773,537.6809] (Line ) [289.1832,537.6809] (Line ) [289.1832,557.984] (Line ) [288.773,557.984] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [278.929,527.8369] (Line ) [279.3392,527.8369] (Line ) [279.3392,548.1402] (Line ) [278.929,548.1402] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [278.929,527.8369] (Line ) [319.9457,527.8369] (Line ) [319.9457,528.4522] (Line ) [278.929,528.4522] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.007,522.915] (Line ) [319.9457,522.915] (Line ) [319.9457,523.5303] (Line ) [274.007,523.5303] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.007,522.915] (Line ) [274.4172,522.915] (Line ) [274.4172,543.2182] (Line ) [274.007,543.2182] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [269.085,517.9929] (Line ) [319.9457,517.9929] (Line ) [319.9457,518.6082] (Line ) [269.085,518.6082] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [269.085,517.9929] (Line ) [269.4952,517.9929] (Line ) [269.4952,538.2961] (Line ) [269.085,538.2961] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [264.163,513.071] (Line ) [320.766,513.071] (Line ) [320.766,513.6863] (Line ) [264.163,513.6863] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [264.163,513.071] (Line ) [264.5732,513.071] (Line ) [264.5732,533.3743] (Line ) [264.163,533.3743] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [259.241,508.149] (Line ) [320.766,508.149] (Line ) [320.766,508.7642] (Line ) [259.241,508.7642] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [259.241,508.149] (Line ) [259.6512,508.149] (Line ) [259.6512,528.4522] (Line ) [259.241,528.4522] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,577.0569] (Line ) [319.9457,577.0569] (Line ) [319.9457,577.6721] (Line ) [313.383,577.6721] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [396.6468,650.4768] (Line ) [397.8773,650.4768] (Line ) [397.8773,651.7073] (Line ) [396.6468,651.7073] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [396.6468,645.5547] (Line ) [397.8773,645.5547] (Line ) [397.8773,646.7852] (Line ) [396.6468,646.7852] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [396.6468,660.3208] (Line ) [397.8773,660.3208] (Line ) [397.8773,661.5514] (Line ) [396.6468,661.5514] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,665.6529] (Line ) [318.305,665.6529] (Line ) [318.305,666.268] (Line ) [313.383,666.268] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [116.5031,631.199] (Line ) [219.865,631.199] (Line ) [219.865,631.8142] (Line ) [116.5031,631.8142] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,493.383] (Line ) [136.1911,493.383] (Line ) [136.1911,493.9983] (Line ) [91.89308,493.9983] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [91.89308,655.8088] (Line ) [244.475,655.8088] (Line ) [244.475,656.424] (Line ) [91.89308,656.424] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,572.135] (Line ) [402.3891,572.135] (Line ) [402.3891,572.5452] (Line ) [397.057,572.5452] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [401.979,493.383] (Line ) [402.3891,493.383] (Line ) [402.3891,572.3401] (Line ) [401.979,572.3401] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [311.7423,596.7449] (Line ) [312.9728,596.7449] (Line ) [312.9728,597.155] (Line ) [311.7423,597.155] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,595.1043] (Line ) [313.7932,595.1043] (Line ) [313.7932,596.3347] (Line ) [313.383,596.3347] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [312.9728,596.3347] (Line ) [314.2033,596.3347] (Line ) [314.2033,597.5652] (Line ) [312.9728,597.5652] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [314.2033,596.7449] (Line ) [315.4338,596.7449] (Line ) [315.4338,597.155] (Line ) [314.2033,597.155] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,597.5652] (Line ) [313.7932,597.5652] (Line ) [313.7932,598.7959] (Line ) [313.383,598.7959] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [306.8203,591.823] (Line ) [308.0508,591.823] (Line ) [308.0508,592.2332] (Line ) [306.8203,592.2332] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [308.461,590.1824] (Line ) [308.8712,590.1824] (Line ) [308.8712,591.4129] (Line ) [308.461,591.4129] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [308.0508,591.4129] (Line ) [309.2813,591.4129] (Line ) [309.2813,592.6433] (Line ) [308.0508,592.6433] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [309.2813,591.823] (Line ) [310.5118,591.823] (Line ) [310.5118,592.2332] (Line ) [309.2813,592.2332] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [308.461,592.6433] (Line ) [308.8712,592.6433] (Line ) [308.8712,593.8738] (Line ) [308.461,593.8738] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [333.071,586.9009] (Line ) [333.4812,586.9009] (Line ) [333.4812,588.9519] (Line ) [333.071,588.9519] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [331.7949,587.0254] (Line ) [331.3847,586.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [331.9746,585.2051] (Line ) [332.7949,586.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [332.9746,585.2051] (Line ) [333.7949,586.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [331.4303,586.9009] (Line ) [335.532,586.9009] (Line ) [335.532,587.311] (Line ) [331.4303,587.311] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [334.9746,585.2051] (Line ) [335.7949,586.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [333.9746,585.2051] (Line ) [334.7949,586.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [283.851,591.823] (Line ) [288.773,591.823] (Line ) [288.773,592.4381] (Line ) [283.851,592.4381] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [283.851,596.7449] (Line ) [288.773,596.7449] (Line ) [288.773,597.3601] (Line ) [283.851,597.3601] (Line ) fwd: T Text T "R15" xerox/pressfonts/Helvetica-B [6.0 0.0 319.1253 0.0 6.0 586.4908][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.539,664.0122] (Line ) [303.9492,664.0122] (Line ) [303.9492,669.1394] (Line ) [303.539,669.1394] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.539,664.0122] (Line ) [303.9492,664.0122] (Line ) [303.9492,666.063] (Line ) [303.539,666.063] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [302.7949,664.0254] (Line ) [302.3847,663.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [302.9746,662.2051] (Line ) [303.7949,663.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [302.9746,662.2051] (Line ) [303.7949,663.8458] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [301.8983,664.0122] (Line ) [306.0,664.0122] (Line ) [306.0,664.4223] (Line ) [301.8983,664.4223] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [304.9746,662.2051] (Line ) [305.7949,663.8458] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [303.9746,662.2051] (Line ) [304.7949,663.8458] fwd: T Text T "R11" xerox/pressfonts/Helvetica-B [6.0 0.0 293.695 0.0 6.0 672.6257][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "R10" xerox/pressfonts/Helvetica-B [6.0 0.0 278.929 0.0 6.0 672.6257][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,680.419] (Line ) [412.2331,680.419] (Line ) [412.2331,681.0342] (Line ) [397.057,681.0342] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.8229,547.5249] (Line ) [412.2331,547.5249] (Line ) [412.2331,596.95] (Line ) [411.8229,596.95] (Line ) fwd: T Text T "R20" xerox/pressfonts/Helvetica-B [6.0 0.0 401.979 0.0 6.0 600.4365][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [421.667,572.135] (Line ) [422.0771,572.135] (Line ) [422.0771,577.0569] (Line ) [421.667,577.0569] (Line ) fwd: T Text T "RSET" xerox/pressfonts/Helvetica-B [6.0 0.0 409.362 0.0 6.0 536.4504][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.745,473.695] (Line ) [417.1551,473.695] (Line ) [417.1551,478.822] (Line ) [416.745,478.822] (Line ) fwd: T Text T "R1" xerox/pressfonts/Helvetica-B [6.0 0.0 409.362 0.0 6.0 482.3086][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "R2" xerox/pressfonts/Helvetica-B [6.0 0.0 424.128 0.0 6.0 482.3086][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "R3" xerox/pressfonts/Helvetica-B [6.0 0.0 438.894 0.0 6.0 482.3086][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,547.5249] (Line ) [481.1411,547.5249] (Line ) [481.1411,577.262] (Line ) [480.731,577.262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,493.383] (Line ) [481.1411,493.383] (Line ) [481.1411,537.886] (Line ) [480.731,537.886] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [500.4189,547.5249] (Line ) [500.829,547.5249] (Line ) [500.829,577.262] (Line ) [500.4189,577.262] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [500.4189,493.383] (Line ) [500.829,493.383] (Line ) [500.829,537.886] (Line ) [500.4189,537.886] (Line ) fwd: T Text T "+" xerox/pressfonts/Helvetica-B [6.0 0.0 502.0596 0.0 6.0 545.4741][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [525.029,579.518] (Line ) [525.4391,579.518] (Line ) [525.4391,583.6196] (Line ) [525.029,583.6196] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [523.3883,583.6196] (Line ) [527.0797,583.6196] (Line ) [527.0797,584.0298] (Line ) [523.3883,584.0298] (Line ) fwd: T Text T "+" Xerox/PressFonts/Helvetica [0.0 3.281332 523.7984 -3.281332 0.0 586.9009][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VAA" xerox/pressfonts/Helvetica-B [6.0 0.0 456.121 0.0 6.0 578.2874][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [475.809,476.156] (Line ) [476.2191,476.156] (Line ) [476.2191,493.5881] (Line ) [475.809,493.5881] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [474.9886,472.8748] (Line ) [475.3988,472.8748] (Line ) [475.3988,474.5154] (Line ) [474.9886,474.5154] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [474.9886,474.5154] (Line ) [476.6293,474.5154] (Line ) [476.6293,474.9255] (Line ) [474.9886,474.9255] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [476.6293,472.8748] (Line ) [477.0394,472.8748] (Line ) [477.0394,474.9255] (Line ) [476.6293,474.9255] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [474.9886,472.8748] (Line ) [477.0394,472.8748] (Line ) [477.0394,473.2849] (Line ) [474.9886,473.2849] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [473.348,471.2339] (Line ) [478.6801,471.2339] (Line ) [478.6801,471.6443] (Line ) [473.348,471.6443] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [478.27,471.2339] (Line ) [478.6801,471.2339] (Line ) [478.6801,476.5662] (Line ) [478.27,476.5662] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [473.348,476.156] (Line ) [478.27,476.156] (Line ) [478.27,476.5662] (Line ) [473.348,476.5662] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [473.348,471.2339] (Line ) [473.7581,471.2339] (Line ) [473.7581,476.156] (Line ) [473.348,476.156] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [484.8326,467.9526] (Line ) [485.2428,467.9526] (Line ) [485.2428,469.5932] (Line ) [484.8326,469.5932] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [484.8326,469.5932] (Line ) [486.4733,469.5932] (Line ) [486.4733,470.0034] (Line ) [484.8326,470.0034] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [486.4733,467.9526] (Line ) [486.8834,467.9526] (Line ) [486.8834,470.0034] (Line ) [486.4733,470.0034] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [484.8326,467.9526] (Line ) [486.8834,467.9526] (Line ) [486.8834,468.3628] (Line ) [484.8326,468.3628] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [483.192,466.312] (Line ) [488.5241,466.312] (Line ) [488.5241,466.7222] (Line ) [483.192,466.7222] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [488.1139,466.312] (Line ) [488.5241,466.312] (Line ) [488.5241,471.6443] (Line ) [488.1139,471.6443] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [483.192,471.2339] (Line ) [488.1139,471.2339] (Line ) [488.1139,471.6443] (Line ) [483.192,471.6443] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [483.192,466.312] (Line ) [483.6021,466.312] (Line ) [483.6021,471.2339] (Line ) [483.192,471.2339] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [494.6766,463.0308] (Line ) [495.0868,463.0308] (Line ) [495.0868,464.6714] (Line ) [494.6766,464.6714] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [494.6766,464.6714] (Line ) [496.3172,464.6714] (Line ) [496.3172,465.0815] (Line ) [494.6766,465.0815] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [496.3172,463.0308] (Line ) [496.7274,463.0308] (Line ) [496.7274,465.0815] (Line ) [496.3172,465.0815] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [494.6766,463.0308] (Line ) [496.7274,463.0308] (Line ) [496.7274,463.4409] (Line ) [494.6766,463.4409] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [493.0359,461.3899] (Line ) [498.368,461.3899] (Line ) [498.368,461.8003] (Line ) [493.0359,461.8003] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [497.9579,461.3899] (Line ) [498.368,461.3899] (Line ) [498.368,466.7222] (Line ) [497.9579,466.7222] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [493.0359,466.312] (Line ) [497.9579,466.312] (Line ) [497.9579,466.7222] (Line ) [493.0359,466.7222] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [493.0359,461.3899] (Line ) [493.4461,461.3899] (Line ) [493.4461,466.312] (Line ) [493.0359,466.312] (Line ) fwd: T Text T "PR" xerox/pressfonts/Helvetica-B [6.0 0.0 477.4496 0.0 6.0 478.2068][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "PG" xerox/pressfonts/Helvetica-B [6.0 0.0 480.731 0.0 6.0 460.1594][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Red" xerox/pressfonts/Helvetica-B [6.0 0.0 520.107 0.0 6.0 474.9255][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Green" xerox/pressfonts/Helvetica-B [6.0 0.0 520.107 0.0 6.0 470.0034][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Blue" xerox/pressfonts/Helvetica-B [6.0 0.0 520.107 0.0 6.0 465.0815][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [131.2691,222.6731] (Line ) [136.1911,222.6731] (Line ) [136.1911,223.0832] (Line ) [131.2691,223.0832] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [436.433,394.9431] (Line ) [436.8431,394.9431] (Line ) [436.8431,404.9922] (Line ) [436.433,404.9922] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.199,394.9431] (Line ) [451.6091,394.9431] (Line ) [451.6091,404.9922] (Line ) [451.199,404.9922] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [465.965,394.9431] (Line ) [466.3751,394.9431] (Line ) [466.3751,404.9922] (Line ) [465.965,404.9922] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [433.1516,390.8413] (Line ) [440.1244,390.8413] (Line ) [440.1244,391.2515] (Line ) [433.1516,391.2515] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [433.1516,389.2007] (Line ) [440.1244,389.2007] (Line ) [440.1244,389.6108] (Line ) [433.1516,389.6108] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [436.433,385.0991] (Line ) [436.8431,385.0991] (Line ) [436.8431,389.2007] (Line ) [436.433,389.2007] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [436.433,390.8413] (Line ) [436.8431,390.8413] (Line ) [436.8431,395.3533] (Line ) [436.433,395.3533] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [447.9176,390.8413] (Line ) [454.8904,390.8413] (Line ) [454.8904,391.2515] (Line ) [447.9176,391.2515] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [447.9176,389.2007] (Line ) [454.8904,389.2007] (Line ) [454.8904,389.6108] (Line ) [447.9176,389.6108] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.199,385.0991] (Line ) [451.6091,385.0991] (Line ) [451.6091,389.2007] (Line ) [451.199,389.2007] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.199,390.8413] (Line ) [451.6091,390.8413] (Line ) [451.6091,395.3533] (Line ) [451.199,395.3533] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [462.6836,390.8413] (Line ) [469.6564,390.8413] (Line ) [469.6564,391.2515] (Line ) [462.6836,391.2515] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [462.6836,389.2007] (Line ) [469.6564,389.2007] (Line ) [469.6564,389.6108] (Line ) [462.6836,389.6108] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [465.965,385.0991] (Line ) [466.3751,385.0991] (Line ) [466.3751,389.2007] (Line ) [465.965,389.2007] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [465.965,390.8413] (Line ) [466.3751,390.8413] (Line ) [466.3751,395.3533] (Line ) [465.965,395.3533] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [477.4496,390.8413] (Line ) [484.4224,390.8413] (Line ) [484.4224,391.2515] (Line ) [477.4496,391.2515] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [477.4496,389.2007] (Line ) [484.4224,389.2007] (Line ) [484.4224,389.6108] (Line ) [477.4496,389.6108] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,385.0991] (Line ) [481.1411,385.0991] (Line ) [481.1411,389.2007] (Line ) [480.731,389.2007] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,390.8413] (Line ) [481.1411,390.8413] (Line ) [481.1411,395.3533] (Line ) [480.731,395.3533] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [436.433,375.2551] (Line ) [436.8431,375.2551] (Line ) [436.8431,385.3042] (Line ) [436.433,385.3042] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [451.199,375.2551] (Line ) [451.6091,375.2551] (Line ) [451.6091,385.3042] (Line ) [451.199,385.3042] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [465.965,375.2551] (Line ) [466.3751,375.2551] (Line ) [466.3751,385.3042] (Line ) [465.965,385.3042] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.731,409.709] (Line ) [481.1411,409.709] (Line ) [481.1411,413.8108] (Line ) [480.731,413.8108] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [479.0903,413.8108] (Line ) [482.7818,413.8108] (Line ) [482.7818,414.221] (Line ) [479.0903,414.221] (Line ) fwd: T Text T "+" Xerox/PressFonts/Helvetica [0.0 3.281332 479.5004 -3.281332 0.0 417.092][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [436.433,404.7871] (Line ) [480.731,404.7871] (Line ) [480.731,405.4023] (Line ) [436.433,405.4023] (Line ) fwd: T Text T "Standard DynaBus Interface" Xerox/PressFonts/Helvetica [0.0 6.562664 74.66609 -6.562664 0.0 657.4922][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Standard DBus Interface" Xerox/PressFonts/Helvetica [0.0 6.562664 74.66609 -6.562664 0.0 501.4239][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "J1" xerox/pressfonts/Helvetica-B [6.0 0.0 488.1139 0.0 6.0 400.2751][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "J2" xerox/pressfonts/Helvetica-B [6.0 0.0 488.1139 0.0 6.0 379.7668][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [300.2577,650.887] (Line ) [313.383,650.887] (Line ) [313.383,651.5022] (Line ) [300.2577,651.5022] (Line ) fwd: T Text T "Low" xerox/pressfonts/Helvetica-B [6.0 0.0 303.539 0.0 6.0 652.1174][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,670.575] (Line ) [318.305,670.575] (Line ) [318.305,671.1902] (Line ) [313.383,671.1902] (Line ) fwd: T Text T "Divide-by-four" Xerox/PressFonts/HELVETICA-I [3.281332 0.0 420.8466 0.0 3.281332 669.3445][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,650.887] (Line ) [313.7932,650.887] (Line ) [313.7932,665.8579] (Line ) [313.383,665.8579] (Line ) fwd: T Text T "High" xerox/pressfonts/Helvetica-B [6.0 0.0 314.2033 0.0 6.0 702.1577][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,700.9272] (Line ) [323.227,700.9272] (Line ) [323.227,701.5425] (Line ) [313.383,701.5425] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,670.575] (Line ) [313.7932,670.575] (Line ) [313.7932,701.1324] (Line ) [313.383,701.1324] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [277.2883,685.3408] (Line ) [318.305,685.3408] (Line ) [318.305,685.956] (Line ) [277.2883,685.956] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [288.773,667.2937] (Line ) [289.1832,667.2937] (Line ) [289.1832,668.9343] (Line ) [288.773,668.9343] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [288.773,667.2937] (Line ) [303.539,667.2937] (Line ) [303.539,667.909] (Line ) [288.773,667.909] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [485.6529,406.4277] (Line ) [488.1139,406.4277] (Line ) [488.1139,406.8379] (Line ) [485.6529,406.8379] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [488.1139,408.8887] (Line ) [492.2156,408.8887] (Line ) [492.2156,409.2988] (Line ) [488.1139,409.2988] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [491.3953,405.6074] (Line ) [492.6258,405.6074] (Line ) [492.6258,410.5293] (Line ) [491.3953,410.5293] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [488.1139,405.6074] (Line ) [489.3444,405.6074] (Line ) [489.3444,410.5293] (Line ) [488.1139,410.5293] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [492.2156,406.4277] (Line ) [494.6766,406.4277] (Line ) [494.6766,406.8379] (Line ) [492.2156,406.8379] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [525.029,488.461] (Line ) [525.4391,488.461] (Line ) [525.4391,537.886] (Line ) [525.029,537.886] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [509.4426,493.383] (Line ) [511.9036,493.383] (Line ) [511.9036,493.7932] (Line ) [509.4426,493.7932] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [511.9036,495.844] (Line ) [516.0052,495.844] (Line ) [516.0052,496.2541] (Line ) [511.9036,496.2541] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [515.185,492.5628] (Line ) [516.4154,492.5628] (Line ) [516.4154,497.4846] (Line ) [515.185,497.4846] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [511.9036,492.5628] (Line ) [513.134,492.5628] (Line ) [513.134,497.4846] (Line ) [511.9036,497.4846] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [516.0052,493.383] (Line ) [518.4662,493.383] (Line ) [518.4662,493.7932] (Line ) [516.0052,493.7932] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.007,685.3408] (Line ) [279.7493,685.3408] (Line ) [279.7493,685.751] (Line ) [274.007,685.751] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.007,690.263] (Line ) [279.7493,690.263] (Line ) [279.7493,690.6731] (Line ) [274.007,690.6731] (Line ) fwd: T Text T "8" xerox/pressfonts/Helvetica-B [6.0 0.0 275.6477 0.0 6.0 691.4934][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "1" xerox/pressfonts/Helvetica-B [6.0 0.0 275.6477 0.0 6.0 686.5715][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Out" xerox/pressfonts/Helvetica-B [6.0 0.0 263.3427 0.0 6.0 689.8528][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.007,670.575] (Line ) [274.4172,670.575] (Line ) [274.4172,695.1848] (Line ) [274.007,695.1848] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,670.575] (Line ) [215.3532,670.575] (Line ) [215.3532,695.1848] (Line ) [214.943,695.1848] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,680.419] (Line ) [274.007,680.419] (Line ) [274.007,680.8291] (Line ) [214.943,680.8291] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,670.575] (Line ) [274.007,670.575] (Line ) [274.007,670.9851] (Line ) [214.943,670.9851] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,695.1848] (Line ) [274.4172,695.1848] (Line ) [274.4172,695.595] (Line ) [214.943,695.595] (Line ) fwd: T Text T "OSC" Xerox/PressFonts/Helvetica [6.562664 0.0 236.2717 0.0 6.562664 672.8308][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "GND: 7" xerox/pressfonts/Helvetica-B [6.0 0.0 243.6547 0.0 6.0 664.4223][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Out*" xerox/pressfonts/Helvetica-B [6.0 0.0 263.3427 0.0 6.0 684.9308][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "VDD: 14" xerox/pressfonts/Helvetica-B [6.0 0.0 219.865 0.0 6.0 664.4223][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "CLOCK" xerox/pressfonts/Helvetica-B [6.0 0.0 368.3453 0.0 6.0 689.0324][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "CLOCK*" xerox/pressfonts/Helvetica-B [6.0 0.0 368.3453 0.0 6.0 684.1103][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,660.731] (Line ) [397.057,660.731] (Line ) [397.057,661.1411] (Line ) [387.213,661.1411] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,665.6529] (Line ) [397.057,665.6529] (Line ) [397.057,666.063] (Line ) [387.213,666.063] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,670.575] (Line ) [397.057,670.575] (Line ) [397.057,670.9851] (Line ) [387.213,670.9851] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,645.9649] (Line ) [397.057,645.9649] (Line ) [397.057,646.375] (Line ) [387.213,646.375] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,650.887] (Line ) [397.057,650.887] (Line ) [397.057,651.2971] (Line ) [387.213,651.2971] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,655.8088] (Line ) [397.057,655.8088] (Line ) [397.057,656.219] (Line ) [387.213,656.219] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,655.8088] (Line ) [328.149,655.8088] (Line ) [328.149,656.219] (Line ) [318.305,656.219] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,690.263] (Line ) [397.057,690.263] (Line ) [397.057,690.6731] (Line ) [387.213,690.6731] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,690.263] (Line ) [328.149,690.263] (Line ) [328.149,690.6731] (Line ) [318.305,690.6731] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,680.419] (Line ) [328.149,680.419] (Line ) [328.149,680.8291] (Line ) [318.305,680.8291] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,670.575] (Line ) [328.149,670.575] (Line ) [328.149,670.9851] (Line ) [318.305,670.9851] (Line ) fwd: T Text T "DIV0" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 669.3445][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,665.6529] (Line ) [328.149,665.6529] (Line ) [328.149,666.063] (Line ) [318.305,666.063] (Line ) fwd: T Text T "DIV1" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 664.4223][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,660.731] (Line ) [328.149,660.731] (Line ) [328.149,661.1411] (Line ) [318.305,661.1411] (Line ) fwd: T Text T "ENABLE(A)" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 659.5005][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "ENABLE(S)" xerox/pressfonts/Helvetica-B [6.0 0.0 329.7897 0.0 6.0 654.5784][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "RESET*" xerox/pressfonts/Helvetica-B [6.0 0.0 333.071 0.0 6.0 679.1885][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "LDA" xerox/pressfonts/Helvetica-B [6.0 0.0 374.0876 0.0 6.0 669.3445][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "LDB" xerox/pressfonts/Helvetica-B [6.0 0.0 374.0876 0.0 6.0 664.4223][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "LDC" xerox/pressfonts/Helvetica-B [6.0 0.0 374.0876 0.0 6.0 659.5005][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "LDD" xerox/pressfonts/Helvetica-B [6.0 0.0 374.0876 0.0 6.0 654.5784][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "LD/2" xerox/pressfonts/Helvetica-B [6.0 0.0 374.0876 0.0 6.0 649.6565][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "LD/4" xerox/pressfonts/Helvetica-B [6.0 0.0 374.0876 0.0 6.0 644.7344][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,680.419] (Line ) [397.057,680.419] (Line ) [397.057,680.8291] (Line ) [387.213,680.8291] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [388.0333,685.3408] (Line ) [397.057,685.3408] (Line ) [397.057,685.751] (Line ) [388.0333,685.751] (Line ) fwd: T Text T "VREF" xerox/pressfonts/Helvetica-B [6.0 0.0 374.0876 0.0 6.0 679.1885][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OSC" xerox/pressfonts/Helvetica-B [6.0 0.0 333.071 0.0 6.0 689.0324][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "OSC*" xerox/pressfonts/Helvetica-B [6.0 0.0 333.071 0.0 6.0 684.1103][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [388.0333,684.5205] (Line ) [388.4435,684.5205] (Line ) [388.4435,686.5715] (Line ) [388.0333,686.5715] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.6231,684.5205] (Line ) [388.4435,684.5205] (Line ) [388.4435,684.9308] (Line ) [387.6231,684.9308] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,686.1612] (Line ) [388.0333,686.1612] (Line ) [388.0333,686.5715] (Line ) [387.213,686.5715] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,684.5205] (Line ) [387.6231,684.5205] (Line ) [387.6231,686.5715] (Line ) [387.213,686.5715] (Line ) fwd: T Text T "11" xerox/pressfonts/Helvetica-B [6.0 0.0 390.4943 0.0 6.0 646.5801][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "12" xerox/pressfonts/Helvetica-B [6.0 0.0 390.4943 0.0 6.0 651.5022][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "13" xerox/pressfonts/Helvetica-B [6.0 0.0 390.4943 0.0 6.0 656.424][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "14" xerox/pressfonts/Helvetica-B [6.0 0.0 390.4943 0.0 6.0 661.3462][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "17" xerox/pressfonts/Helvetica-B [6.0 0.0 390.4943 0.0 6.0 666.268][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "18" xerox/pressfonts/Helvetica-B [6.0 0.0 390.4943 0.0 6.0 671.1902][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "8" xerox/pressfonts/Helvetica-B [6.0 0.0 390.4943 0.0 6.0 685.956][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "7" xerox/pressfonts/Helvetica-B [6.0 0.0 390.4943 0.0 6.0 690.8781][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "20" xerox/pressfonts/Helvetica-B [6.0 0.0 322.4067 0.0 6.0 656.424][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "19" xerox/pressfonts/Helvetica-B [6.0 0.0 322.4067 0.0 6.0 661.3462][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "2" xerox/pressfonts/Helvetica-B [6.0 0.0 322.4067 0.0 6.0 666.268][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "1" xerox/pressfonts/Helvetica-B [6.0 0.0 322.4067 0.0 6.0 671.1902][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "4" xerox/pressfonts/Helvetica-B [6.0 0.0 322.4067 0.0 6.0 681.0342][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "10" xerox/pressfonts/Helvetica-B [6.0 0.0 322.4067 0.0 6.0 685.956][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "9" xerox/pressfonts/Helvetica-B [6.0 0.0 322.4067 0.0 6.0 690.8781][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Bt438" Xerox/PressFonts/Helvetica [6.562664 0.0 342.915 0.0 6.562664 633.4548][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [328.2051,682.4864] (Line ) [329.8458,680.8458] (Line ) [328.2051,679.2051] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.213,631.199] (Line ) [387.6231,631.199] (Line ) [387.6231,695.1848] (Line ) [387.213,695.1848] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,631.199] (Line ) [328.5591,631.199] (Line ) [328.5591,695.1848] (Line ) [328.149,695.1848] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,631.199] (Line ) [387.213,631.199] (Line ) [387.213,631.6092] (Line ) [328.149,631.6092] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [328.2051,692.4864] (Line ) [329.8458,690.8458] (Line ) [328.2051,689.2051] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,695.1848] (Line ) [387.6231,695.1848] (Line ) [387.6231,695.595] (Line ) [328.149,695.595] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,675.4968] (Line ) [387.213,675.4968] (Line ) [387.213,675.907] (Line ) [328.149,675.907] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [328.2051,687.4864] (Line ) [329.8458,685.8458] (Line ) [328.2051,684.2051] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,641.043] (Line ) [387.213,641.043] (Line ) [387.213,641.4531] (Line ) [328.149,641.4531] (Line ) fwd: T Text T "GND: 15, 16" xerox/pressfonts/Helvetica-B [6.0 0.0 357.681 0.0 6.0 625.8667][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "3" xerox/pressfonts/Helvetica-B [6.0 0.0 390.4943 0.0 6.0 681.0342][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.149,684.5205] (Line ) [328.5591,684.5205] (Line ) [328.5591,686.5715] (Line ) [328.149,686.5715] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.7388,684.5205] (Line ) [328.5591,684.5205] (Line ) [328.5591,684.9308] (Line ) [327.7388,684.9308] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,686.1612] (Line ) [328.149,686.1612] (Line ) [328.149,686.5715] (Line ) [327.3287,686.5715] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [327.3287,684.5205] (Line ) [327.7388,684.5205] (Line ) [327.7388,686.5715] (Line ) [327.3287,686.5715] (Line ) fwd: T Text T "VDD: 5, 6" xerox/pressfonts/Helvetica-B [6.0 0.0 332.2507 0.0 6.0 625.8667][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.305,685.3408] (Line ) [327.3287,685.3408] (Line ) [327.3287,685.751] (Line ) [318.305,685.751] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [116.5031,498.305] (Line ) [116.9132,498.305] (Line ) [116.9132,631.404] (Line ) [116.5031,631.404] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.5329,237.029] (Line ) [215.7634,237.029] (Line ) [215.7634,238.2595] (Line ) [214.5329,238.2595] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [121.4251,454.0071] (Line ) [121.8352,454.0071] (Line ) [121.8352,715.0779] (Line ) [121.4251,715.0779] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [219.865,488.461] (Line ) [220.2752,488.461] (Line ) [220.2752,631.8142] (Line ) [219.865,631.8142] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [210.021,503.227] (Line ) [234.631,503.227] (Line ) [234.631,503.8423] (Line ) [210.021,503.8423] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [210.021,508.149] (Line ) [239.553,508.149] (Line ) [239.553,508.7642] (Line ) [210.021,508.7642] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,517.9929] (Line ) [249.397,517.9929] (Line ) [249.397,518.6082] (Line ) [214.1227,518.6082] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,522.915] (Line ) [254.319,522.915] (Line ) [254.319,523.5303] (Line ) [214.1227,523.5303] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,527.8369] (Line ) [259.241,527.8369] (Line ) [259.241,528.4522] (Line ) [214.1227,528.4522] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,532.759] (Line ) [264.163,532.759] (Line ) [264.163,533.3743] (Line ) [214.1227,533.3743] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,537.6809] (Line ) [269.085,537.6809] (Line ) [269.085,538.2961] (Line ) [214.943,538.2961] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,542.603] (Line ) [274.007,542.603] (Line ) [274.007,543.2182] (Line ) [214.943,543.2182] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,547.5249] (Line ) [278.929,547.5249] (Line ) [278.929,548.1402] (Line ) [214.943,548.1402] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,552.447] (Line ) [283.851,552.447] (Line ) [283.851,553.0623] (Line ) [214.943,553.0623] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.1227,557.3689] (Line ) [288.773,557.3689] (Line ) [288.773,557.984] (Line ) [214.1227,557.984] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.5329,571.7249] (Line ) [215.7634,571.7249] (Line ) [215.7634,572.9553] (Line ) [214.5329,572.9553] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,567.2129] (Line ) [244.8852,567.2129] (Line ) [244.8852,567.8281] (Line ) [214.943,567.8281] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,581.979] (Line ) [235.0412,581.979] (Line ) [235.0412,582.5942] (Line ) [214.943,582.5942] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [214.943,577.0569] (Line ) [239.9632,577.0569] (Line ) [239.9632,577.6721] (Line ) [214.943,577.6721] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [131.2691,232.5171] (Line ) [136.1911,232.5171] (Line ) [136.1911,232.9272] (Line ) [131.2691,232.9272] (Line ) fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [417.7949,486.0254] (Line ) [416.1542,485.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [418.0254,485.3847] (Line ) [417.2051,485.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [416.9746,480.3847] (Line ) [417.7949,480.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [417.7949,480.9746] (Line ) [416.1542,481.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [417.7949,482.0254] (Line ) [416.1542,481.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [417.7949,484.0254] (Line ) [416.1542,483.2051] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [417.7949,482.9746] (Line ) [416.1542,483.7949] fwd: T Outline fillColor: [] ow: T fillText: T 0 Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T square w: 0.4101665 c: T [1 1.0] d: T F [417.7949,483.9746] (Line ) [416.1542,484.7949] fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.745,486.0] (Line ) [417.1551,486.0] (Line ) [417.1551,488.0508] (Line ) [416.745,488.0508] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [416.745,477.7966] (Line ) [417.1551,477.7966] (Line ) [417.1551,480.6677] (Line ) [416.745,480.6677] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [131.2691,217.7512] (Line ) [131.6792,217.7512] (Line ) [131.6792,592.0281] (Line ) [131.2691,592.0281] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [244.475,493.383] (Line ) [320.766,493.383] (Line ) [320.766,493.9983] (Line ) [244.475,493.9983] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.383,193.1411] (Line ) [313.7932,193.1411] (Line ) [313.7932,296.7083] (Line ) [313.383,296.7083] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.057,577.0569] (Line ) [505.3409,577.0569] (Line ) [505.3409,577.6721] (Line ) [397.057,577.6721] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [401.979,493.383] (Line ) [511.0833,493.383] (Line ) [511.0833,493.9983] (Line ) [401.979,493.9983] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.0973,444.1631] (Line ) [318.9202,444.1631] (Line ) [318.9202,444.7783] (Line ) [213.0973,444.7783] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.0973,449.085] (Line ) [318.9202,449.085] (Line ) [318.9202,449.7002] (Line ) [213.0973,449.7002] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.1998,439.241] (Line ) [319.0228,439.241] (Line ) [319.0228,439.8562] (Line ) [213.1998,439.8562] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.0973,434.3191] (Line ) [318.9202,434.3191] (Line ) [318.9202,434.9343] (Line ) [213.0973,434.9343] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F fillText: T 0 Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.1998,429.397] (Line ) [319.0228,429.397] (Line ) [319.0228,430.0122] (Line ) [213.1998,430.0122] (Line ) fwd: T Text T "Display Controller" Xerox/PressFonts/HELVETICA-I [6.562664 0.0 411.0026 0.0 6.562664 238.2595][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "C1" xerox/pressfonts/Helvetica-B [6.0 0.0 193.5937 0.0 6.0 500.9227][] F 1.0 props: ( F ) ls: 1.2 š¥3™3—S–centered lastLineFormatting˜— ˜% ˜Ihead2–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop ˜Y–fclearTabStops 0 6 {20 pt .add .dup flushLeft tabStop 90 pt .add .dup flushLeft tabStop}.cvx .rept .popš´ ˜ Y–fclearTabStops 0 6 {20 pt .add .dup flushLeft tabStop 90 pt .add .dup flushLeft tabStop}.cvx .rept .popšq¡¡¡¡¡¡¡¡˜ˆY–fclearTabStops 0 6 {20 pt .add .dup flushLeft tabStop 90 pt .add .dup flushLeft tabStop}.cvx .rept .popš¡¡¡¡¡¡¡¡˜–fclearTabStops 0 6 {20 pt .add .dup flushLeft tabStop 90 pt .add .dup flushLeft tabStop}.cvx .rept .popš¡¡¡¡¡¡¡¡˜S–centered lastLineFormatting˜——T–òGargoyle file for scene: stuffed from ///7.0/commands/pga300.gargoyle at February 12, 1988 10:08:51 am PST Produced by version 8710.19 Scripts: ///7.0/commands/bland880211-16-58-41.script, ///7.0/commands/bland880211-17-05-40.script, ///7.0/commands/bland880212-10-01-53.script, ///7.0/commands/bland880212-10-06-01.script Slope: [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 4.0 4] [F 2.0 2] [F 1.0 1] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.125 1/8] [F 0.1111111 1/9] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 0.0 0] Midpoints: F Heuristics: F ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: T GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [10.0 10.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: F Entities: [847]: Text T "Legend:" Xerox/PressFonts/Helvetica [10.0 0.0 92.74961 0.0 10.0 151.2][1 1.0] F 1.0 props: ( F ) Text T "Vcc" Xerox/PressFonts/Helvetica [10.0 0.0 159.2788 0.0 10.0 137.0835][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 215.7166 0.0 32.0 127.474][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 215.7166 0.0 32.0 115.3701][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 217.7292 0.0 32.0 111.3449][1 1.0] F 1.0 props: ( F ) Text T "View from top of Package" Xerox/PressFonts/Helvetica [10.0 0.0 254.0126 0.0 10.0 183.4583][1 1.0] F 1.0 props: ( F ) Text T "Ground" Xerox/PressFonts/Helvetica [10.0 0.0 159.2788 0.0 10.0 151.2][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,589.6913] (Line ) [431.433,589.6913] (Line ) [431.433,590.7119] (Line ) [189.5244,590.7119] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [431.433,348.7748] (Line ) [432.4536,348.7748] (Line ) [432.4536,590.6835] (Line ) [431.433,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,347.7544] (Line ) [432.4536,347.7544] (Line ) [432.4536,348.7748] (Line ) [189.5244,348.7748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,347.7544] (Line ) [190.5449,347.7544] (Line ) [190.5449,590.6835] (Line ) [189.5244,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,573.5622] (Line ) [415.304,573.5622] (Line ) [415.304,574.5827] (Line ) [205.6536,574.5827] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,364.904] (Line ) [416.3244,364.904] (Line ) [416.3244,574.5544] (Line ) [415.304,574.5544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,363.8835] (Line ) [416.3244,363.8835] (Line ) [416.3244,364.904] (Line ) [205.6536,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,363.8835] (Line ) [206.674,363.8835] (Line ) [206.674,574.5544] (Line ) [205.6536,574.5544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,574.5544] (Line ) [215.7166,574.5544] (Line ) [215.7166,590.6835] (Line ) [213.704,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [217.7292,574.5544] (Line ) [219.7417,574.5544] (Line ) [219.7417,590.6835] (Line ) [217.7292,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [221.7827,574.5544] (Line ) [223.7953,574.5544] (Line ) [223.7953,590.6835] (Line ) [221.7827,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [225.8079,574.5544] (Line ) [227.8205,574.5544] (Line ) [227.8205,590.6835] (Line ) [225.8079,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [229.8331,574.5544] (Line ) [231.8457,574.5544] (Line ) [231.8457,590.6835] (Line ) [229.8331,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [233.8583,574.5544] (Line ) [235.8709,574.5544] (Line ) [235.8709,590.6835] (Line ) [233.8583,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [237.8835,574.5544] (Line ) [239.8961,574.5544] (Line ) [239.8961,590.6835] (Line ) [237.8835,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [241.937,574.5544] (Line ) [243.9496,574.5544] (Line ) [243.9496,590.6835] (Line ) [241.937,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.1953,574.5544] (Line ) [276.2079,574.5544] (Line ) [276.2079,590.6835] (Line ) [274.1953,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [270.1418,574.5544] (Line ) [272.1544,574.5544] (Line ) [272.1544,590.6835] (Line ) [270.1418,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [266.1165,574.5544] (Line ) [268.1292,574.5544] (Line ) [268.1292,590.6835] (Line ) [266.1165,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [262.0913,574.5544] (Line ) [264.104,574.5544] (Line ) [264.104,590.6835] (Line ) [262.0913,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [258.0662,574.5544] (Line ) [260.0788,574.5544] (Line ) [260.0788,590.6835] (Line ) [258.0662,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [254.0126,574.5544] (Line ) [256.0252,574.5544] (Line ) [256.0252,590.6835] (Line ) [254.0126,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [249.9874,574.5544] (Line ) [252.0,574.5544] (Line ) [252.0,590.6835] (Line ) [249.9874,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [245.9622,574.5544] (Line ) [247.9748,574.5544] (Line ) [247.9748,590.6835] (Line ) [245.9622,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [278.2205,574.5544] (Line ) [280.2331,574.5544] (Line ) [280.2331,590.6835] (Line ) [278.2205,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2457,574.5544] (Line ) [284.2583,574.5544] (Line ) [284.2583,590.6835] (Line ) [282.2457,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [286.2709,574.5544] (Line ) [288.2835,574.5544] (Line ) [288.2835,590.6835] (Line ) [286.2709,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [290.3244,574.5544] (Line ) [292.337,574.5544] (Line ) [292.337,590.6835] (Line ) [290.3244,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [294.3496,574.5544] (Line ) [296.3622,574.5544] (Line ) [296.3622,590.6835] (Line ) [294.3496,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [298.3748,574.5544] (Line ) [300.3874,574.5544] (Line ) [300.3874,590.6835] (Line ) [298.3748,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [302.4,574.5544] (Line ) [304.4126,574.5544] (Line ) [304.4126,590.6835] (Line ) [302.4,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [306.4536,574.5544] (Line ) [308.4661,574.5544] (Line ) [308.4661,590.6835] (Line ) [306.4536,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [338.6835,574.5544] (Line ) [340.6961,574.5544] (Line ) [340.6961,590.6835] (Line ) [338.6835,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [334.6583,574.5544] (Line ) [336.6709,574.5544] (Line ) [336.6709,590.6835] (Line ) [334.6583,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [330.6331,574.5544] (Line ) [332.6457,574.5544] (Line ) [332.6457,590.6835] (Line ) [330.6331,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [326.6079,574.5544] (Line ) [328.6205,574.5544] (Line ) [328.6205,590.6835] (Line ) [326.6079,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [322.5827,574.5544] (Line ) [324.5953,574.5544] (Line ) [324.5953,590.6835] (Line ) [322.5827,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.5292,574.5544] (Line ) [320.5418,574.5544] (Line ) [320.5418,590.6835] (Line ) [318.5292,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [314.5039,574.5544] (Line ) [316.5165,574.5544] (Line ) [316.5165,590.6835] (Line ) [314.5039,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [310.4788,574.5544] (Line ) [312.4913,574.5544] (Line ) [312.4913,590.6835] (Line ) [310.4788,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [342.737,574.5544] (Line ) [344.7496,574.5544] (Line ) [344.7496,590.6835] (Line ) [342.737,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [346.7622,574.5544] (Line ) [348.7748,574.5544] (Line ) [348.7748,590.6835] (Line ) [346.7622,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [350.7874,574.5544] (Line ) [352.8,574.5544] (Line ) [352.8,590.6835] (Line ) [350.7874,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [354.8126,574.5544] (Line ) [356.8252,574.5544] (Line ) [356.8252,590.6835] (Line ) [354.8126,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [358.8661,574.5544] (Line ) [360.8788,574.5544] (Line ) [360.8788,590.6835] (Line ) [358.8661,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [362.8914,574.5544] (Line ) [364.904,574.5544] (Line ) [364.904,590.6835] (Line ) [362.8914,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [366.9165,574.5544] (Line ) [368.9292,574.5544] (Line ) [368.9292,590.6835] (Line ) [366.9165,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [370.9417,574.5544] (Line ) [372.9543,574.5544] (Line ) [372.9543,590.6835] (Line ) [370.9417,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [403.2,574.5544] (Line ) [405.2126,574.5544] (Line ) [405.2126,590.6835] (Line ) [403.2,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [399.1748,574.5544] (Line ) [401.1874,574.5544] (Line ) [401.1874,590.6835] (Line ) [399.1748,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,574.5544] (Line ) [397.1622,574.5544] (Line ) [397.1622,590.6835] (Line ) [395.1496,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [391.1244,574.5544] (Line ) [393.137,574.5544] (Line ) [393.137,590.6835] (Line ) [391.1244,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.0709,574.5544] (Line ) [389.0835,574.5544] (Line ) [389.0835,590.6835] (Line ) [387.0709,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [383.0457,574.5544] (Line ) [385.0583,574.5544] (Line ) [385.0583,590.6835] (Line ) [383.0457,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [379.0205,574.5544] (Line ) [381.0331,574.5544] (Line ) [381.0331,590.6835] (Line ) [379.0205,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [374.9953,574.5544] (Line ) [377.0079,574.5544] (Line ) [377.0079,590.6835] (Line ) [374.9953,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [407.2536,574.5544] (Line ) [409.2661,574.5544] (Line ) [409.2661,590.6835] (Line ) [407.2536,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [407.2536,348.7748] (Line ) [409.2661,348.7748] (Line ) [409.2661,364.904] (Line ) [407.2536,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [374.9953,348.7748] (Line ) [377.0079,348.7748] (Line ) [377.0079,364.904] (Line ) [374.9953,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [379.0205,348.7748] (Line ) [381.0331,348.7748] (Line ) [381.0331,364.904] (Line ) [379.0205,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [383.0457,348.7748] (Line ) [385.0583,348.7748] (Line ) [385.0583,364.904] (Line ) [383.0457,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.0709,348.7748] (Line ) [389.0835,348.7748] (Line ) [389.0835,364.904] (Line ) [387.0709,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [391.1244,348.7748] (Line ) [393.137,348.7748] (Line ) [393.137,364.904] (Line ) [391.1244,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,348.7748] (Line ) [397.1622,348.7748] (Line ) [397.1622,364.904] (Line ) [395.1496,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [399.1748,348.7748] (Line ) [401.1874,348.7748] (Line ) [401.1874,364.904] (Line ) [399.1748,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [403.2,348.7748] (Line ) [405.2126,348.7748] (Line ) [405.2126,364.904] (Line ) [403.2,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [370.9417,348.7748] (Line ) [372.9543,348.7748] (Line ) [372.9543,364.904] (Line ) [370.9417,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [366.9165,348.7748] (Line ) [368.9292,348.7748] (Line ) [368.9292,364.904] (Line ) [366.9165,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [362.8914,348.7748] (Line ) [364.904,348.7748] (Line ) [364.904,364.904] (Line ) [362.8914,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [358.8661,348.7748] (Line ) [360.8788,348.7748] (Line ) [360.8788,364.904] (Line ) [358.8661,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [354.8126,348.7748] (Line ) [356.8252,348.7748] (Line ) [356.8252,364.904] (Line ) [354.8126,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [350.7874,348.7748] (Line ) [352.8,348.7748] (Line ) [352.8,364.904] (Line ) [350.7874,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [346.7622,348.7748] (Line ) [348.7748,348.7748] (Line ) [348.7748,364.904] (Line ) [346.7622,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [342.737,348.7748] (Line ) [344.7496,348.7748] (Line ) [344.7496,364.904] (Line ) [342.737,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [310.4788,348.7748] (Line ) [312.4913,348.7748] (Line ) [312.4913,364.904] (Line ) [310.4788,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [314.5039,348.7748] (Line ) [316.5165,348.7748] (Line ) [316.5165,364.904] (Line ) [314.5039,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.5292,348.7748] (Line ) [320.5418,348.7748] (Line ) [320.5418,364.904] (Line ) [318.5292,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [322.5827,348.7748] (Line ) [324.5953,348.7748] (Line ) [324.5953,364.904] (Line ) [322.5827,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [326.6079,348.7748] (Line ) [328.6205,348.7748] (Line ) [328.6205,364.904] (Line ) [326.6079,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [330.6331,348.7748] (Line ) [332.6457,348.7748] (Line ) [332.6457,364.904] (Line ) [330.6331,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [334.6583,348.7748] (Line ) [336.6709,348.7748] (Line ) [336.6709,364.904] (Line ) [334.6583,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [338.6835,348.7748] (Line ) [340.6961,348.7748] (Line ) [340.6961,364.904] (Line ) [338.6835,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [306.4536,348.7748] (Line ) [308.4661,348.7748] (Line ) [308.4661,364.904] (Line ) [306.4536,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [302.4,348.7748] (Line ) [304.4126,348.7748] (Line ) [304.4126,364.904] (Line ) [302.4,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [298.3748,348.7748] (Line ) [300.3874,348.7748] (Line ) [300.3874,364.904] (Line ) [298.3748,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [294.3496,348.7748] (Line ) [296.3622,348.7748] (Line ) [296.3622,364.904] (Line ) [294.3496,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [290.3244,348.7748] (Line ) [292.337,348.7748] (Line ) [292.337,364.904] (Line ) [290.3244,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [286.2709,348.7748] (Line ) [288.2835,348.7748] (Line ) [288.2835,364.904] (Line ) [286.2709,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2457,348.7748] (Line ) [284.2583,348.7748] (Line ) [284.2583,364.904] (Line ) [282.2457,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [278.2205,348.7748] (Line ) [280.2331,348.7748] (Line ) [280.2331,364.904] (Line ) [278.2205,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [245.9622,348.7748] (Line ) [247.9748,348.7748] (Line ) [247.9748,364.904] (Line ) [245.9622,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [249.9874,348.7748] (Line ) [252.0,348.7748] (Line ) [252.0,364.904] (Line ) [249.9874,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [254.0126,348.7748] (Line ) [256.0252,348.7748] (Line ) [256.0252,364.904] (Line ) [254.0126,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [258.0662,348.7748] (Line ) [260.0788,348.7748] (Line ) [260.0788,364.904] (Line ) [258.0662,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [262.0913,348.7748] (Line ) [264.104,348.7748] (Line ) [264.104,364.904] (Line ) [262.0913,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [266.1165,348.7748] (Line ) [268.1292,348.7748] (Line ) [268.1292,364.904] (Line ) [266.1165,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [270.1418,348.7748] (Line ) [272.1544,348.7748] (Line ) [272.1544,364.904] (Line ) [270.1418,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.1953,348.7748] (Line ) [276.2079,348.7748] (Line ) [276.2079,364.904] (Line ) [274.1953,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [241.937,348.7748] (Line ) [243.9496,348.7748] (Line ) [243.9496,364.904] (Line ) [241.937,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [237.8835,348.7748] (Line ) [239.8961,348.7748] (Line ) [239.8961,364.904] (Line ) [237.8835,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [233.8583,348.7748] (Line ) [235.8709,348.7748] (Line ) [235.8709,364.904] (Line ) [233.8583,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [229.8331,348.7748] (Line ) [231.8457,348.7748] (Line ) [231.8457,364.904] (Line ) [229.8331,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [225.8079,348.7748] (Line ) [227.8205,348.7748] (Line ) [227.8205,364.904] (Line ) [225.8079,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [221.7827,348.7748] (Line ) [223.7953,348.7748] (Line ) [223.7953,364.904] (Line ) [221.7827,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [217.7292,348.7748] (Line ) [219.7417,348.7748] (Line ) [219.7417,364.904] (Line ) [217.7292,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,348.7748] (Line ) [215.7166,348.7748] (Line ) [215.7166,364.904] (Line ) [213.704,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,564.4914] (Line ) [431.433,564.4914] (Line ) [431.433,566.504] (Line ) [415.304,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,560.4378] (Line ) [431.433,560.4378] (Line ) [431.433,562.4504] (Line ) [415.304,562.4504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,556.4127] (Line ) [431.433,556.4127] (Line ) [431.433,558.4252] (Line ) [415.304,558.4252] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,552.3875] (Line ) [431.433,552.3875] (Line ) [431.433,554.4] (Line ) [415.304,554.4] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,548.3622] (Line ) [431.433,548.3622] (Line ) [431.433,550.3748] (Line ) [415.304,550.3748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,528.1796] (Line ) [431.433,528.1796] (Line ) [431.433,530.1921] (Line ) [415.304,530.1921] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,532.2331] (Line ) [431.433,532.2331] (Line ) [431.433,534.2457] (Line ) [415.304,534.2457] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,536.2583] (Line ) [431.433,536.2583] (Line ) [431.433,538.2708] (Line ) [415.304,538.2708] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,540.2835] (Line ) [431.433,540.2835] (Line ) [431.433,542.2961] (Line ) [415.304,542.2961] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,544.3087] (Line ) [431.433,544.3087] (Line ) [431.433,546.3213] (Line ) [415.304,546.3213] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,524.1544] (Line ) [431.433,524.1544] (Line ) [431.433,526.167] (Line ) [415.304,526.167] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,520.1292] (Line ) [431.433,520.1292] (Line ) [431.433,522.1418] (Line ) [415.304,522.1418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,516.104] (Line ) [431.433,516.104] (Line ) [431.433,518.1166] (Line ) [415.304,518.1166] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,512.0504] (Line ) [431.433,512.0504] (Line ) [431.433,514.063] (Line ) [415.304,514.063] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,508.0252] (Line ) [431.433,508.0252] (Line ) [431.433,510.0379] (Line ) [415.304,510.0379] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,487.8709] (Line ) [431.433,487.8709] (Line ) [431.433,489.8835] (Line ) [415.304,489.8835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,491.8961] (Line ) [431.433,491.8961] (Line ) [431.433,493.9087] (Line ) [415.304,493.9087] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,495.9496] (Line ) [431.433,495.9496] (Line ) [431.433,497.9622] (Line ) [415.304,497.9622] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,499.9748] (Line ) [431.433,499.9748] (Line ) [431.433,501.9874] (Line ) [415.304,501.9874] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,504.0] (Line ) [431.433,504.0] (Line ) [431.433,506.0126] (Line ) [415.304,506.0126] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,483.8457] (Line ) [431.433,483.8457] (Line ) [431.433,485.8583] (Line ) [415.304,485.8583] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,479.8205] (Line ) [431.433,479.8205] (Line ) [431.433,481.8331] (Line ) [415.304,481.8331] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,475.767] (Line ) [431.433,475.767] (Line ) [431.433,477.7796] (Line ) [415.304,477.7796] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,471.7418] (Line ) [431.433,471.7418] (Line ) [431.433,473.7544] (Line ) [415.304,473.7544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,467.7165] (Line ) [431.433,467.7165] (Line ) [431.433,469.7292] (Line ) [415.304,469.7292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,447.5622] (Line ) [431.433,447.5622] (Line ) [431.433,449.5748] (Line ) [415.304,449.5748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,451.5874] (Line ) [431.433,451.5874] (Line ) [431.433,453.6] (Line ) [415.304,453.6] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,455.6126] (Line ) [431.433,455.6126] (Line ) [431.433,457.6252] (Line ) [415.304,457.6252] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,459.6378] (Line ) [431.433,459.6378] (Line ) [431.433,461.6504] (Line ) [415.304,461.6504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,463.6914] (Line ) [431.433,463.6914] (Line ) [431.433,465.704] (Line ) [415.304,465.704] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,443.5087] (Line ) [431.433,443.5087] (Line ) [431.433,445.5213] (Line ) [415.304,445.5213] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,439.4835] (Line ) [431.433,439.4835] (Line ) [431.433,441.4961] (Line ) [415.304,441.4961] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,435.4583] (Line ) [431.433,435.4583] (Line ) [431.433,437.4709] (Line ) [415.304,437.4709] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,431.4331] (Line ) [431.433,431.4331] (Line ) [431.433,433.4457] (Line ) [415.304,433.4457] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,427.3796] (Line ) [431.433,427.3796] (Line ) [431.433,429.3922] (Line ) [415.304,429.3922] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,407.2252] (Line ) [431.433,407.2252] (Line ) [431.433,409.2378] (Line ) [415.304,409.2378] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,411.2504] (Line ) [431.433,411.2504] (Line ) [431.433,413.263] (Line ) [415.304,413.263] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,415.304] (Line ) [431.433,415.304] (Line ) [431.433,417.3165] (Line ) [415.304,417.3165] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,419.3292] (Line ) [431.433,419.3292] (Line ) [431.433,421.3418] (Line ) [415.304,421.3418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,423.3544] (Line ) [431.433,423.3544] (Line ) [431.433,425.367] (Line ) [415.304,425.367] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,403.2] (Line ) [431.433,403.2] (Line ) [431.433,405.2126] (Line ) [415.304,405.2126] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,399.1748] (Line ) [431.433,399.1748] (Line ) [431.433,401.1874] (Line ) [415.304,401.1874] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,395.1496] (Line ) [431.433,395.1496] (Line ) [431.433,397.1622] (Line ) [415.304,397.1622] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,391.0961] (Line ) [431.433,391.0961] (Line ) [431.433,393.1087] (Line ) [415.304,393.1087] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,387.0709] (Line ) [431.433,387.0709] (Line ) [431.433,389.0835] (Line ) [415.304,389.0835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,370.9417] (Line ) [431.433,370.9417] (Line ) [431.433,372.9543] (Line ) [415.304,372.9543] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,374.967] (Line ) [431.433,374.967] (Line ) [431.433,376.9796] (Line ) [415.304,376.9796] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,379.0205] (Line ) [431.433,379.0205] (Line ) [431.433,381.0331] (Line ) [415.304,381.0331] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,383.0457] (Line ) [431.433,383.0457] (Line ) [431.433,385.0583] (Line ) [415.304,385.0583] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,383.0457] (Line ) [205.6536,383.0457] (Line ) [205.6536,385.0583] (Line ) [189.5244,385.0583] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,379.0205] (Line ) [205.6536,379.0205] (Line ) [205.6536,381.0331] (Line ) [189.5244,381.0331] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,374.967] (Line ) [205.6536,374.967] (Line ) [205.6536,376.9796] (Line ) [189.5244,376.9796] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,370.9417] (Line ) [205.6536,370.9417] (Line ) [205.6536,372.9543] (Line ) [189.5244,372.9543] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,387.0709] (Line ) [205.6536,387.0709] (Line ) [205.6536,389.0835] (Line ) [189.5244,389.0835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,391.0961] (Line ) [205.6536,391.0961] (Line ) [205.6536,393.1087] (Line ) [189.5244,393.1087] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,395.1496] (Line ) [205.6536,395.1496] (Line ) [205.6536,397.1622] (Line ) [189.5244,397.1622] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,399.1748] (Line ) [205.6536,399.1748] (Line ) [205.6536,401.1874] (Line ) [189.5244,401.1874] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,403.2] (Line ) [205.6536,403.2] (Line ) [205.6536,405.2126] (Line ) [189.5244,405.2126] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,423.3544] (Line ) [205.6536,423.3544] (Line ) [205.6536,425.367] (Line ) [189.5244,425.367] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,419.3292] (Line ) [205.6536,419.3292] (Line ) [205.6536,421.3418] (Line ) [189.5244,421.3418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,415.304] (Line ) [205.6536,415.304] (Line ) [205.6536,417.3165] (Line ) [189.5244,417.3165] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,411.2504] (Line ) [205.6536,411.2504] (Line ) [205.6536,413.263] (Line ) [189.5244,413.263] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,407.2252] (Line ) [205.6536,407.2252] (Line ) [205.6536,409.2378] (Line ) [189.5244,409.2378] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,427.3796] (Line ) [205.6536,427.3796] (Line ) [205.6536,429.3922] (Line ) [189.5244,429.3922] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,431.4331] (Line ) [205.6536,431.4331] (Line ) [205.6536,433.4457] (Line ) [189.5244,433.4457] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,435.4583] (Line ) [205.6536,435.4583] (Line ) [205.6536,437.4709] (Line ) [189.5244,437.4709] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,439.4835] (Line ) [205.6536,439.4835] (Line ) [205.6536,441.4961] (Line ) [189.5244,441.4961] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,443.5087] (Line ) [205.6536,443.5087] (Line ) [205.6536,445.5213] (Line ) [189.5244,445.5213] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,463.6914] (Line ) [205.6536,463.6914] (Line ) [205.6536,465.704] (Line ) [189.5244,465.704] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,459.6378] (Line ) [205.6536,459.6378] (Line ) [205.6536,461.6504] (Line ) [189.5244,461.6504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,455.6126] (Line ) [205.6536,455.6126] (Line ) [205.6536,457.6252] (Line ) [189.5244,457.6252] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,451.5874] (Line ) [205.6536,451.5874] (Line ) [205.6536,453.6] (Line ) [189.5244,453.6] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,447.5622] (Line ) [205.6536,447.5622] (Line ) [205.6536,449.5748] (Line ) [189.5244,449.5748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,467.7165] (Line ) [205.6536,467.7165] (Line ) [205.6536,469.7292] (Line ) [189.5244,469.7292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,471.7418] (Line ) [205.6536,471.7418] (Line ) [205.6536,473.7544] (Line ) [189.5244,473.7544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,475.767] (Line ) [205.6536,475.767] (Line ) [205.6536,477.7796] (Line ) [189.5244,477.7796] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,479.8205] (Line ) [205.6536,479.8205] (Line ) [205.6536,481.8331] (Line ) [189.5244,481.8331] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,483.8457] (Line ) [205.6536,483.8457] (Line ) [205.6536,485.8583] (Line ) [189.5244,485.8583] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,504.0] (Line ) [205.6536,504.0] (Line ) [205.6536,506.0126] (Line ) [189.5244,506.0126] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,499.9748] (Line ) [205.6536,499.9748] (Line ) [205.6536,501.9874] (Line ) [189.5244,501.9874] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,495.9496] (Line ) [205.6536,495.9496] (Line ) [205.6536,497.9622] (Line ) [189.5244,497.9622] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,491.8961] (Line ) [205.6536,491.8961] (Line ) [205.6536,493.9087] (Line ) [189.5244,493.9087] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,487.8709] (Line ) [205.6536,487.8709] (Line ) [205.6536,489.8835] (Line ) [189.5244,489.8835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,508.0252] (Line ) [205.6536,508.0252] (Line ) [205.6536,510.0379] (Line ) [189.5244,510.0379] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,512.0504] (Line ) [205.6536,512.0504] (Line ) [205.6536,514.063] (Line ) [189.5244,514.063] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,516.104] (Line ) [205.6536,516.104] (Line ) [205.6536,518.1166] (Line ) [189.5244,518.1166] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,520.1292] (Line ) [205.6536,520.1292] (Line ) [205.6536,522.1418] (Line ) [189.5244,522.1418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,524.1544] (Line ) [205.6536,524.1544] (Line ) [205.6536,526.167] (Line ) [189.5244,526.167] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,544.3087] (Line ) [205.6536,544.3087] (Line ) [205.6536,546.3213] (Line ) [189.5244,546.3213] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,540.2835] (Line ) [205.6536,540.2835] (Line ) [205.6536,542.2961] (Line ) [189.5244,542.2961] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,536.2583] (Line ) [205.6536,536.2583] (Line ) [205.6536,538.2708] (Line ) [189.5244,538.2708] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,532.2331] (Line ) [205.6536,532.2331] (Line ) [205.6536,534.2457] (Line ) [189.5244,534.2457] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,528.1796] (Line ) [205.6536,528.1796] (Line ) [205.6536,530.1921] (Line ) [189.5244,530.1921] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,548.3622] (Line ) [205.6536,548.3622] (Line ) [205.6536,550.3748] (Line ) [189.5244,550.3748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,552.3875] (Line ) [205.6536,552.3875] (Line ) [205.6536,554.4] (Line ) [189.5244,554.4] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,556.4127] (Line ) [205.6536,556.4127] (Line ) [205.6536,558.4252] (Line ) [189.5244,558.4252] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,560.4378] (Line ) [205.6536,560.4378] (Line ) [205.6536,562.4504] (Line ) [189.5244,562.4504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,564.4914] (Line ) [205.6536,564.4914] (Line ) [205.6536,566.504] (Line ) [189.5244,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,568.5165] (Line ) [214.7244,568.5165] (Line ) [214.7244,574.5544] (Line ) [213.704,574.5544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [409.2661,567.4961] (Line ) [410.2866,567.4961] (Line ) [410.2866,572.5418] (Line ) [409.2661,572.5418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [409.2661,571.5496] (Line ) [410.2866,571.5496] (Line ) [410.2866,574.5827] (Line ) [409.2661,574.5827] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,565.4835] (Line ) [209.6788,565.4835] (Line ) [209.6788,566.504] (Line ) [205.6536,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.6788,548.3622] (Line ) [210.6992,548.3622] (Line ) [210.6992,566.504] (Line ) [209.6788,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.6788,547.3418] (Line ) [225.8079,547.3418] (Line ) [225.8079,548.3622] (Line ) [209.6788,548.3622] (Line ) Text T "268" xerox/pressfonts/helvetica [10.0 0.0 231.8457 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,567.4961] (Line ) [223.7953,567.4961] (Line ) [223.7953,568.5165] (Line ) [213.704,568.5165] (Line ) Text T "1" xerox/pressfonts/helvetica [10.0 0.0 227.8205 0.0 10.0 563.4709][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.1622,567.4961] (Line ) [410.2583,567.4961] (Line ) [410.2583,568.5165] (Line ) [397.1622,568.5165] (Line ) Text T "67" xerox/pressfonts/helvetica [10.0 0.0 383.0457 0.0 10.0 563.4709][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.2788,565.4835] (Line ) [416.3244,565.4835] (Line ) [416.3244,566.504] (Line ) [411.2788,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.2788,548.3622] (Line ) [412.2992,548.3622] (Line ) [412.2992,566.504] (Line ) [411.2788,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,547.3418] (Line ) [412.2992,547.3418] (Line ) [412.2992,548.3622] (Line ) [395.1496,548.3622] (Line ) Text T "68" xerox/pressfonts/helvetica [10.0 0.0 383.0457 0.0 10.0 545.3292][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.2788,371.9622] (Line ) [416.3244,371.9622] (Line ) [416.3244,372.9827] (Line ) [411.2788,372.9827] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.2788,371.9622] (Line ) [412.2992,371.9622] (Line ) [412.2992,391.1244] (Line ) [411.2788,391.1244] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,390.104] (Line ) [412.2992,390.104] (Line ) [412.2992,391.1244] (Line ) [395.1496,391.1244] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [407.2536,363.8835] (Line ) [408.274,363.8835] (Line ) [408.274,368.9292] (Line ) [407.2536,368.9292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,367.9087] (Line ) [408.2457,367.9087] (Line ) [408.2457,368.9292] (Line ) [395.1496,368.9292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,363.8835] (Line ) [214.7244,363.8835] (Line ) [214.7244,368.9292] (Line ) [213.704,368.9292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,367.9087] (Line ) [229.8331,367.9087] (Line ) [229.8331,368.9292] (Line ) [213.704,368.9292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,371.9622] (Line ) [209.6788,371.9622] (Line ) [209.6788,372.9827] (Line ) [205.6536,372.9827] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.6788,371.9622] (Line ) [210.6992,371.9622] (Line ) [210.6992,391.1244] (Line ) [209.6788,391.1244] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.6788,390.104] (Line ) [225.8079,390.104] (Line ) [225.8079,391.1244] (Line ) [209.6788,391.1244] (Line ) Text T "202" xerox/pressfonts/helvetica [10.0 0.0 229.8331 0.0 10.0 386.0504][1 1.0] F 1.0 props: ( F ) Text T "201" xerox/pressfonts/helvetica [10.0 0.0 231.8457 0.0 10.0 367.9087][1 1.0] F 1.0 props: ( F ) Text T "134" xerox/pressfonts/helvetica [10.0 0.0 379.0205 0.0 10.0 388.0914][1 1.0] F 1.0 props: ( F ) Text T "135" xerox/pressfonts/helvetica [10.0 0.0 379.0205 0.0 10.0 367.9087][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [52.4126,726.7748] (Line ) [564.463,726.7748] (Line ) [564.463,727.7953] (Line ) [52.4126,727.7953] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [564.4914,213.704] (Line ) [565.5119,213.704] (Line ) [565.5119,727.7953] (Line ) [564.4914,727.7953] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [52.4126,212.6835] (Line ) [565.4835,212.6835] (Line ) [565.4835,213.704] (Line ) [52.4126,213.704] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [52.4126,212.6835] (Line ) [53.43308,212.6835] (Line ) [53.43308,727.767] (Line ) [52.4126,727.767] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [52.4126,710.6457] (Line ) [68.54173,710.6457] (Line ) [68.54173,711.6662] (Line ) [52.4126,711.6662] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [68.54173,710.6457] (Line ) [69.56221,710.6457] (Line ) [69.56221,727.7953] (Line ) [68.54173,727.7953] (Line ) Text T "263" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "261" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "257" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "252" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "249" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "247" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "243" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "239" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "238" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "231" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "230" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "226" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "223" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "220" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "217" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "213" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "212" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "208" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "196" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "260" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "255" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "251" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "248" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "244" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "240" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "235" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "234" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "229" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "225" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "221" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "218" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "214" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "209" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "203" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "206" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "194" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "7" xerox/pressfonts/helvetica [10.0 0.0 100.8 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "5" xerox/pressfonts/helvetica [10.0 0.0 100.8 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "2" xerox/pressfonts/helvetica [10.0 0.0 125.0079 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "265" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "259" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "254" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "250" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "245" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "241" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "236" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "233" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "228" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "224" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "219" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "215" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "210" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "204" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "200" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "199" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "267" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "190" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "8" xerox/pressfonts/helvetica [10.0 0.0 149.1874 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "3" xerox/pressfonts/helvetica [10.0 0.0 149.1874 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "1" xerox/pressfonts/helvetica [10.0 0.0 149.1874 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "264" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "258" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "253" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "246" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "242" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "237" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "232" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "227" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "222" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "216" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "211" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "205" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "202" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "198" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "193" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "189" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "9" xerox/pressfonts/helvetica [10.0 0.0 173.3953 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "4" xerox/pressfonts/helvetica [10.0 0.0 173.3953 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "268" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "262" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "207" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "201" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "197" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "192" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "188" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "185" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "195" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "191" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "187" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "184" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "182" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "186" xerox/pressfonts/helvetica [10.0 0.0 217.7292 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "183" xerox/pressfonts/helvetica [10.0 0.0 217.7292 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "181" xerox/pressfonts/helvetica [10.0 0.0 217.7292 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "179" xerox/pressfonts/helvetica [10.0 0.0 217.7292 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "180" xerox/pressfonts/helvetica [10.0 0.0 241.937 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "178" xerox/pressfonts/helvetica [10.0 0.0 241.937 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "177" xerox/pressfonts/helvetica [10.0 0.0 241.937 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "176" xerox/pressfonts/helvetica [10.0 0.0 241.937 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "175" xerox/pressfonts/helvetica [10.0 0.0 266.1165 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "174" xerox/pressfonts/helvetica [10.0 0.0 266.1165 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "173" xerox/pressfonts/helvetica [10.0 0.0 266.1165 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "172" xerox/pressfonts/helvetica [10.0 0.0 266.1165 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "171" xerox/pressfonts/helvetica [10.0 0.0 290.3244 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "170" xerox/pressfonts/helvetica [10.0 0.0 290.3244 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "168" xerox/pressfonts/helvetica [10.0 0.0 290.3244 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "169" xerox/pressfonts/helvetica [10.0 0.0 290.3244 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "165" xerox/pressfonts/helvetica [10.0 0.0 314.5039 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "166" xerox/pressfonts/helvetica [10.0 0.0 314.5039 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "167" xerox/pressfonts/helvetica [10.0 0.0 314.5039 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "164" xerox/pressfonts/helvetica [10.0 0.0 314.5039 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "160" xerox/pressfonts/helvetica [10.0 0.0 338.6835 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "161" xerox/pressfonts/helvetica [10.0 0.0 338.6835 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "162" xerox/pressfonts/helvetica [10.0 0.0 338.6835 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "163" xerox/pressfonts/helvetica [10.0 0.0 338.6835 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "155" xerox/pressfonts/helvetica [10.0 0.0 362.8914 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "157" xerox/pressfonts/helvetica [10.0 0.0 362.8914 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "158" xerox/pressfonts/helvetica [10.0 0.0 362.8914 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "159" xerox/pressfonts/helvetica [10.0 0.0 362.8914 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "149" xerox/pressfonts/helvetica [10.0 0.0 387.0709 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "152" xerox/pressfonts/helvetica [10.0 0.0 387.0709 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "154" xerox/pressfonts/helvetica [10.0 0.0 387.0709 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "156" xerox/pressfonts/helvetica [10.0 0.0 387.0709 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "140" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "144" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "148" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "151" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "153" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "128" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "134" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "138" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "143" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "147" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "150" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "103" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "108" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "113" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "119" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "124" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "130" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "135" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "137" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "142" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "146" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "102" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "107" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "111" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "116" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "120" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "125" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "131" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "133" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "136" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "145" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "101" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "106" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "110" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "114" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "117" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "121" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "126" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "132" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "139" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "141" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "104" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "105" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "109" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "112" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "115" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "118" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "122" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "123" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "127" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "129" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "11" xerox/pressfonts/helvetica [10.0 0.0 122.9953 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "12" xerox/pressfonts/helvetica [10.0 0.0 147.1748 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "16" xerox/pressfonts/helvetica [10.0 0.0 171.3827 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "13" xerox/pressfonts/helvetica [10.0 0.0 171.3827 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "19" xerox/pressfonts/helvetica [10.0 0.0 195.5622 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "17" xerox/pressfonts/helvetica [10.0 0.0 195.5622 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "14" xerox/pressfonts/helvetica [10.0 0.0 195.5622 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "10" xerox/pressfonts/helvetica [10.0 0.0 195.5622 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "6" xerox/pressfonts/helvetica [10.0 0.0 197.5748 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "22" xerox/pressfonts/helvetica [10.0 0.0 219.7417 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "20" xerox/pressfonts/helvetica [10.0 0.0 219.7417 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "18" xerox/pressfonts/helvetica [10.0 0.0 219.7417 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "15" xerox/pressfonts/helvetica [10.0 0.0 219.7417 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "25" xerox/pressfonts/helvetica [10.0 0.0 243.9496 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "24" xerox/pressfonts/helvetica [10.0 0.0 243.9496 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "23" xerox/pressfonts/helvetica [10.0 0.0 243.9496 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "21" xerox/pressfonts/helvetica [10.0 0.0 243.9496 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "29" xerox/pressfonts/helvetica [10.0 0.0 268.1292 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "28" xerox/pressfonts/helvetica [10.0 0.0 268.1292 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "27" xerox/pressfonts/helvetica [10.0 0.0 268.1292 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "26" xerox/pressfonts/helvetica [10.0 0.0 268.1292 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "30" xerox/pressfonts/helvetica [10.0 0.0 292.337 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "33" xerox/pressfonts/helvetica [10.0 0.0 292.337 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "32" xerox/pressfonts/helvetica [10.0 0.0 292.337 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "31" xerox/pressfonts/helvetica [10.0 0.0 292.337 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "37" xerox/pressfonts/helvetica [10.0 0.0 316.5165 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "34" xerox/pressfonts/helvetica [10.0 0.0 316.5165 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "35" xerox/pressfonts/helvetica [10.0 0.0 316.5165 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "36" xerox/pressfonts/helvetica [10.0 0.0 316.5165 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "38" xerox/pressfonts/helvetica [10.0 0.0 340.7244 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "39" xerox/pressfonts/helvetica [10.0 0.0 340.7244 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "40" xerox/pressfonts/helvetica [10.0 0.0 340.7244 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "41" xerox/pressfonts/helvetica [10.0 0.0 340.7244 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "42" xerox/pressfonts/helvetica [10.0 0.0 364.904 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "43" xerox/pressfonts/helvetica [10.0 0.0 364.904 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "44" xerox/pressfonts/helvetica [10.0 0.0 364.904 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "46" xerox/pressfonts/helvetica [10.0 0.0 364.904 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "45" xerox/pressfonts/helvetica [10.0 0.0 389.0835 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "47" xerox/pressfonts/helvetica [10.0 0.0 389.0835 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "49" xerox/pressfonts/helvetica [10.0 0.0 389.0835 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "52" xerox/pressfonts/helvetica [10.0 0.0 389.0835 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "48" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "50" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "53" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "57" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "61" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "51" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "54" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "58" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "63" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "67" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "73" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "55" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "59" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "64" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "68" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "71" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "82" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "88" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "93" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "98" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "56" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "65" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "66" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "70" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "76" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "81" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "85" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "90" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "94" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "99" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "60" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "72" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "69" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "75" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "80" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "84" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "87" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "91" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "95" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "100" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "62" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "74" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "78" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "79" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "83" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "86" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "89" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "92" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "96" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "97" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 268.1292 0.0 32.0 579.0331][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 219.7417 0.0 32.0 579.0331][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 316.5165 0.0 32.0 579.0331][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 364.904 0.0 32.0 579.0331][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 530.674][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 482.2867][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 433.8992][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 385.5118][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 361.304][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 409.6914][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 458.0788][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 506.4662][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 389.0835 0.0 32.0 312.9449][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 340.7244 0.0 32.0 312.9449][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 292.337 0.0 32.0 312.9449][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 243.9496 0.0 32.0 312.9449][1 1.0] F 1.0 props: ( F ) Text T "o" Xerox/Pressfonts/Gates [32.0 0.0 296.3622 0.0 32.0 486.3118][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 243.9496 0.0 32.0 568.9701][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 292.337 0.0 32.0 568.9701][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 340.7244 0.0 32.0 568.9701][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 389.0835 0.0 32.0 568.9701][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 496.4032][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 448.0158][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 399.6284][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 351.241][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 364.904 0.0 32.0 302.8536][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 316.5165 0.0 32.0 302.8536][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 268.1292 0.0 32.0 302.8536][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 219.7417 0.0 32.0 302.8536][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 375.4205][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 423.8079][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 472.1953][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 520.5827][1 1.0] F 1.0 props: ( F ) Text T "77" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "266" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "256" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) –Ò222.422 mm topLeading 222.422 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–:0.0 mm xmin 0.0 mm ymin 181.7156 mm xmax 219.5997 mm ymax – Interpress–“ªInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄãHÄÿG5½ ¢ ¨ x jª ¤ÄçƒÄô ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁLegend:– k x jª ¤Ä@µhÄ Y÷ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁVcc– k x jÀ ¤Ä2<ÄL¯š ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä2<Ä9< ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä(Ó0ÄÈ‚Í ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jª ¤ÄNcOÄ3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁView from top of Package– k x jª ¤Ä@µhÄô ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁGround– k x jÀ ¤Ä)‰Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k¡¡¨Ä<µRÄœ£D™Ä£yaŽÄˆ$;Ä<µRŽÄœ£D¡¡¡¡™¡¡¨Ä£yaÄ—:o™Ä£ÜaŽÄŠq<Ä£yaŽÄ—:o¡¡¡¡™¡¡¨Ä<µRÄMn9™Ä£ÜaŽÄ—:oÄ<µRŽÄMn9¡¡¡¡™¡¡¨Ä<µRÄMn9™ÄtœŽÄŠq<Ä<µRŽÄMn9¡¡¡¡™¡¡¨Äzé™ÄÂVəĥyfŽÄ Äz陎ÄÂVÉ¡¡¡¡™¡¡¨Ä¥yfÄJ4™Ä<,%ŽÄÎ{\Ä¥yfŽÄJ4¡¡¡¡™¡¡¨Äzé™Ä’hg™Ä<,%ŽÄJ4Äz陎Ä’hg¡¡¡¡™¡¡¨Äzé™Ä’hg™Ä%#.ŽÄÎ{\Äz陎Ä’hg¡¡¡¡™¡¡¨ÄhY}ÄÎ{\™Ä2<ŽÄŠq<ÄhY}ŽÄÎ{\¡¡¡¡™¡¡¨Ä(Ó0ÄÎ{\™ÄgxŽÄŠq<Ä(Ó0ŽÄÎ{\¡¡¡¡™¡¡¨ÄíÄÎ{\™ÄoŽÄŠq<ÄíŽÄÎ{\¡¡¡¡™¡¡¨Äœ ±ÄÎ{\™Ä"µ'ŽÄŠq<Äœ ±ŽÄÎ{\¡¡¡¡™¡¡¨Äz¼ÃÄÎ{\™Ä’·¢ŽÄŠq<Äz¼ÃŽÄÎ{\¡¡¡¡™¡¡¨ÄmŸxÄÎ{\™ÄˆªŽÄŠq<ÄmŸxŽÄÎ{\¡¡¡¡™¡¡¨Ä_¶gÄÎ{\™ÄH(MŽÄŠq<Ä_¶gŽÄÎ{\¡¡¡¡™¡¡¨ÄhçoÄÎ{\™ÄqfwŽÄŠq<ÄhçoŽÄÎ{\¡¡¡¡™¡¡¨Ä]/WÄÎ{\™ÄSMŽÄŠq<Ä]/WŽÄÎ{\¡¡¡¡™¡¡¨Äg†ÄÎ{\™Ä•ˆŽÄŠq<Äg†ŽÄÎ{\¡¡¡¡™¡¡¨ÄkgÄÎ{\™Äºo²ŽÄŠq<ÄkgŽÄÎ{\¡¡¡¡™¡¡¨Äà6ÛÄÎ{\™Ä€õ}ŽÄŠq<Äà6ÛŽÄÎ{\¡¡¡¡™¡¡¨Ä‰ˆÄÎ{\™Ä§¡¥ŽÄŠq<ĉˆŽÄÎ{\¡¡¡¡™¡¡¨ÄNcOÄÎ{\™ÄwwŽÄŠq<ÄNcOŽÄÎ{\¡¡¡¡™¡¡¨ÄM%OÄÎ{\™œŽÄŠq<ÄM%OŽÄÎ{\¡¡¡¡™¡¡¨Ä2ì5ÄÎ{\™ÄsEwŽÄŠq<Ä2ì5ŽÄÎ{\¡¡¡¡™¡¡¨ÄIçDÄÎ{\™Ä‘—…ŽÄŠq<ÄIçDŽÄÎ{\¡¡¡¡™¡¡¨ÄÀñ¯ÄÎ{\™Ä…?xŽÄŠq<ÄÀñ¯ŽÄÎ{\¡¡¡¡™¡¡¨Ä5­0ÄÎ{\™ÄKsCŽÄŠq<Ä5­0ŽÄÎ{\¡¡¡¡™¡¡¨Ä)ö%ÄÎ{\™Äe¢YŽÄŠq<Ä)ö%ŽÄÎ{\¡¡¡¡™¡¡¨Äm{ÄÎ{\™ÄC%:ŽÄŠq<Äm{ŽÄÎ{\¡¡¡¡™¡¡¨Ä¢×CÄÎ{\™Ä]ßPŽÄŠq<Ä¢×CŽÄÎ{\¡¡¡¡™¡¡¨ÄèÄÎ{\™ÄJê?ŽÄŠq<ÄèŽÄÎ{\¡¡¡¡™¡¡¨ÄtaÄÎ{\™Ä|gŽÄŠq<ÄtaŽÄÎ{\¡¡¡¡™¡¡¨Äh„OÄÎ{\™Äi#OŽÄŠq<Äh„OŽÄÎ{\¡¡¡¡™¡¡¨ÄgFOÄÎ{\™ÄgåOŽÄŠq<ÄgFOŽÄÎ{\¡¡¡¡™¡¡¨ÄŒÇmÄÎ{\™Ä¥ŽÄŠq<ÄŒÇmŽÄÎ{\¡¡¡¡™¡¡¨ÄA3ÄÎ{\™ÄúQÃŽÄŠq<ÄA3ŽÄÎ{\¡¡¡¡™¡¡¨Ä ÄÎ{\™Ä5A*ŽÄŠq<Ä ŽÄÎ{\¡¡¡¡™¡¡¨ÄTíÄÎ{\™ÄXUŽÄŠq<ÄTíŽÄÎ{\¡¡¡¡™¡¡¨ÄœÄÎ{\™Äpƒ[ŽÄŠq<ÄœŽÄÎ{\¡¡¡¡™¡¡¨ÄVGÄÎ{\™ÄE”9ŽÄŠq<ÄVGŽÄÎ{\¡¡¡¡™¡¡¨ÄµËGÄÎ{\™ÄL^sŽÄŠq<ĵËGŽÄÎ{\¡¡¡¡™¡¡¨ÄÁ³ÄÎ{\™Ä—:oŽÄŠq<ÄÁ³ŽÄÎ{\¡¡¡¡™¡¡¨Ä@g/ÄÎ{\™ÄäŽÄŠq<Ä@g/ŽÄÎ{\¡¡¡¡™¡¡¨Ä-ÄÎ{\™Ä‘gŽÄŠq<Ä-ŽÄÎ{\¡¡¡¡™¡¡¨ÄpÄÎ{\™Ä.…!ŽÄŠq<ÄpŽÄÎ{\¡¡¡¡™¡¡¨ÄA5.ÄÎ{\™ÄJ4ŽÄŠq<ÄA5.ŽÄÎ{\¡¡¡¡™¡¡¨Ä3 ÄÎ{\™Ä¢ÙqŽÄŠq<Ä3 ŽÄÎ{\¡¡¡¡™¡¡¨Ä•?gÄÎ{\™ÄÅŽÄŠq<Ä•?gŽÄÎ{\¡¡¡¡™¡¡¨ÄàÄÎ{\™ÄJe/ŽÄŠq<ÄàŽÄÎ{\¡¡¡¡™¡¡¨Ä ›gÄÎ{\™ÄŽÄŠq<Ä ›gŽÄÎ{\¡¡¡¡™¡¡¨Ä¥)kÄÎ{\™Ä9g%ŽÄŠq<Ä¥)kŽÄÎ{\¡¡¡¡™¡¡¨Ä3ÉÄÎ{\™ÄpIŽÄŠq<Ä3ÉŽÄÎ{\¡¡¡¡™¡¡¨ÄÀÄÎ{\™Ä= ŽÄŠq<ÄÀŽÄÎ{\¡¡¡¡™¡¡¨Ä&ÄÅÄÎ{\™ÄšígŽÄŠq<Ä&ÄÅŽÄÎ{\¡¡¡¡™¡¡¨ÄHŒ1ÄÎ{\™Ä´yŽÄŠq<ÄHŒ1ŽÄÎ{\¡¡¡¡™¡¡¨Ä6‹ÔÄÎ{\™Ä¹~ŽÄŠq<Ä6‹ÔŽÄÎ{\¡¡¡¡™¡¡¨Äj–CÄÎ{\™Ä®BmŽÄŠq<Äj–CŽÄÎ{\¡¡¡¡™¡¡¨Äj–CÄ—:o™Ä®BmŽÄJ4Äj–CŽÄ—:o¡¡¡¡™¡¡¨Ä6‹ÔÄ—:o™Ä¹~ŽÄJ4Ä6‹ÔŽÄ—:o¡¡¡¡™¡¡¨ÄHŒ1Ä—:o™Ä´yŽÄJ4ÄHŒ1ŽÄ—:o¡¡¡¡™¡¡¨Ä&ÄÅÄ—:o™ÄšígŽÄJ4Ä&ÄÅŽÄ—:o¡¡¡¡™¡¡¨ÄÀÄ—:o™Ä= ŽÄJ4ÄÀŽÄ—:o¡¡¡¡™¡¡¨Ä3ÉÄ—:o™ÄpIŽÄJ4Ä3ÉŽÄ—:o¡¡¡¡™¡¡¨Ä¥)kÄ—:o™Ä9g%ŽÄJ4Ä¥)kŽÄ—:o¡¡¡¡™¡¡¨Ä ›gÄ—:o™ÄŽÄJ4Ä ›gŽÄ—:o¡¡¡¡™¡¡¨ÄàÄ—:o™ÄJe/ŽÄJ4ÄàŽÄ—:o¡¡¡¡™¡¡¨Ä•?gÄ—:o™ÄÅŽÄJ4Ä•?gŽÄ—:o¡¡¡¡™¡¡¨Ä3 Ä—:o™Ä¢ÙqŽÄJ4Ä3 ŽÄ—:o¡¡¡¡™¡¡¨ÄA5.Ä—:o™ÄJ4ŽÄJ4ÄA5.ŽÄ—:o¡¡¡¡™¡¡¨ÄpÄ—:o™Ä.…!ŽÄJ4ÄpŽÄ—:o¡¡¡¡™¡¡¨Ä-Ä—:o™Ä‘gŽÄJ4Ä-ŽÄ—:o¡¡¡¡™¡¡¨Ä@g/Ä—:o™ÄäŽÄJ4Ä@g/ŽÄ—:o¡¡¡¡™¡¡¨ÄÁ³Ä—:o™Ä—:oŽÄJ4ÄÁ³ŽÄ—:o¡¡¡¡™¡¡¨ÄµËGÄ—:o™ÄL^sŽÄJ4ĵËGŽÄ—:o¡¡¡¡™¡¡¨ÄVGÄ—:o™ÄE”9ŽÄJ4ÄVGŽÄ—:o¡¡¡¡™¡¡¨ÄœÄ—:o™Äpƒ[ŽÄJ4ÄœŽÄ—:o¡¡¡¡™¡¡¨ÄTíÄ—:o™ÄXUŽÄJ4ÄTíŽÄ—:o¡¡¡¡™¡¡¨Ä Ä—:o™Ä5A*ŽÄJ4Ä ŽÄ—:o¡¡¡¡™¡¡¨ÄA3Ä—:o™ÄúQÃŽÄJ4ÄA3ŽÄ—:o¡¡¡¡™¡¡¨ÄŒÇmÄ—:o™Ä¥ŽÄJ4ÄŒÇmŽÄ—:o¡¡¡¡™¡¡¨ÄgFOÄ—:o™ÄgåOŽÄJ4ÄgFOŽÄ—:o¡¡¡¡™¡¡¨Äh„OÄ—:o™Äi#OŽÄJ4Äh„OŽÄ—:o¡¡¡¡™¡¡¨ÄtaÄ—:o™Ä|gŽÄJ4ÄtaŽÄ—:o¡¡¡¡™¡¡¨ÄèÄ—:o™ÄJê?ŽÄJ4ÄèŽÄ—:o¡¡¡¡™¡¡¨Ä¢×CÄ—:o™Ä]ßPŽÄJ4Ä¢×CŽÄ—:o¡¡¡¡™¡¡¨Äm{Ä—:o™ÄC%:ŽÄJ4Äm{ŽÄ—:o¡¡¡¡™¡¡¨Ä)ö%Ä—:o™Äe¢YŽÄJ4Ä)ö%ŽÄ—:o¡¡¡¡™¡¡¨Ä5­0Ä—:o™ÄKsCŽÄJ4Ä5­0ŽÄ—:o¡¡¡¡™¡¡¨ÄÀñ¯Ä—:o™Ä…?xŽÄJ4ÄÀñ¯ŽÄ—:o¡¡¡¡™¡¡¨ÄIçDÄ—:o™Ä‘—…ŽÄJ4ÄIçDŽÄ—:o¡¡¡¡™¡¡¨Ä2ì5Ä—:o™ÄsEwŽÄJ4Ä2ì5ŽÄ—:o¡¡¡¡™¡¡¨ÄM%OÄ—:o™œŽÄJ4ÄM%OŽÄ—:o¡¡¡¡™¡¡¨ÄNcOÄ—:o™ÄwwŽÄJ4ÄNcOŽÄ—:o¡¡¡¡™¡¡¨Ä‰ˆÄ—:o™Ä§¡¥ŽÄJ4ĉˆŽÄ—:o¡¡¡¡™¡¡¨Äà6ÛÄ—:o™Ä€õ}ŽÄJ4Äà6ÛŽÄ—:o¡¡¡¡™¡¡¨ÄkgÄ—:o™Äºo²ŽÄJ4ÄkgŽÄ—:o¡¡¡¡™¡¡¨Äg†Ä—:o™Ä•ˆŽÄJ4Äg†ŽÄ—:o¡¡¡¡™¡¡¨Ä]/WÄ—:o™ÄSMŽÄJ4Ä]/WŽÄ—:o¡¡¡¡™¡¡¨ÄhçoÄ—:o™ÄqfwŽÄJ4ÄhçoŽÄ—:o¡¡¡¡™¡¡¨Ä_¶gÄ—:o™ÄH(MŽÄJ4Ä_¶gŽÄ—:o¡¡¡¡™¡¡¨ÄmŸxÄ—:o™ÄˆªŽÄJ4ÄmŸxŽÄ—:o¡¡¡¡™¡¡¨Äz¼ÃÄ—:o™Ä’·¢ŽÄJ4Äz¼ÃŽÄ—:o¡¡¡¡™¡¡¨Äœ ±Ä—:o™Ä"µ'ŽÄJ4Äœ ±ŽÄ—:o¡¡¡¡™¡¡¨ÄíÄ—:o™ÄoŽÄJ4ÄíŽÄ—:o¡¡¡¡™¡¡¨Ä(Ó0Ä—:o™ÄgxŽÄJ4Ä(Ó0ŽÄ—:o¡¡¡¡™¡¡¨ÄhY}Ä—:o™Ä2<ŽÄJ4ÄhY}ŽÄ—:o¡¡¡¡™¡¡¨Ä¥yfÄ‚;™Ä£yaŽÄ0{Ä¥yfŽÄ‚;¡¡¡¡™¡¡¨Ä¥yfĸəģyaŽÄуÄ¥yfŽÄ¸É¡¡¡¡™¡¡¨Ä¥yfĈî?™Ä£yaŽÄWA(Ä¥yfŽÄˆî?¡¡¡¡™¡¡¨Ä¥yfĬŸP™Ä£yaŽÄ ÔÄ¥yfŽÄ¬ŸP¡¡¡¡™¡¡¨Ä¥yfÄ|=:™Ä£yaŽÄ3Ä¥yfŽÄ|=:¡¡¡¡™¡¡¨Ä¥yfÄPw'™Ä£yaŽÄ8»—Ä¥yfŽÄPw'¡¡¡¡™¡¡¨Ä¥yfă…™Ä£yaŽÄvô9Ä¥yfŽÄƒ…¡¡¡¡™¡¡¨Ä¥yfÄ@ð™Ä£yaŽÄdí0Ä¥yfŽÄ@ð¡¡¡¡™¡¡¨Ä¥yfÄgC™Ä£yaŽÄAý˜Ä¥yfŽÄgC¡¡¡¡™¡¡¨Ä¥yfÄ•D™Ä£yaŽÄ;ÁÄ¥yfŽÄ•D¡¡¡¡™¡¡¨Ä¥yfÄû×{™Ä£yaŽÄ+ýÄ¥yfŽÄû×{¡¡¡¡™¡¡¨Ä¥yfÄi§²™Ä£yaŽÄÄ¥yfŽÄi§²¡¡¡¡™¡¡¨Ä¥yfÄ`Å0™Ä£yaŽÄyo<Ä¥yfŽÄ`Å0¡¡¡¡™¡¡¨Ä¥yfÄîw™Ä£yaŽÄÿÄ¥yfŽÄîw¡¡¡¡™¡¡¨Ä¥yfÄOa(™Ä£yaŽÄeOÄ¥yfŽÄOa(¡¡¡¡™¡¡¨Ä¥yfÄ;™Ä£yaŽÄÅgÄ¥yfŽÄ;¡¡¡¡™¡¡¨Ä¥yfÄ“ôM™Ä£yaŽÄ¦†ÛÄ¥yfŽÄ“ôM¡¡¡¡™¡¡¨Ä¥yfÄæŠw™Ä£yaŽÄg5Ä¥yfŽÄæŠw¡¡¡¡™¡¡¨Ä¥yfÄN(™Ä£yaŽÄšéOÄ¥yfŽÄN(¡¡¡¡™¡¡¨Ä¥yf˜™Ä£yaŽÄœ'OÄ¥yfŽ˜¡¡¡¡™¡¡¨Ä¥yfÄ2/¢™Ä£yaŽÄã¿xÄ¥yfŽÄ2/¢¡¡¡¡™¡¡¨Ä¥yfÄI'™Ä£yaŽÄ2°ÃÄ¥yfŽÄI'¡¡¡¡™¡¡¨Ä¥yfć«I™Ä£yaŽÄn;Ä¥yfŽÄ‡«I¡¡¡¡™¡¡¨Ä¥yfĈՙģyaŽÄi|9Ä¥yfŽÄˆÕ¡¡¡¡™¡¡¨Ä¥yfÄziC™Ä£yaŽÄX0Ä¥yfŽÄziC¡¡¡¡™¡¡¨Ä¥yfÄ_həģyaŽÄF?(Ä¥yfŽÄ_hÉ¡¡¡¡™¡¡¨Ä¥yfÄo"?™Ä£yaŽÄÜÄ¥yfŽÄo"?¡¡¡¡™¡¡¨Ä¥yfÄŽaP™Ä£yaŽÄ CÄ¥yfŽÄŽaP¡¡¡¡™¡¡¨Ä¥yfÄh#:™Ä£yaŽÄÝÏ{Ä¥yfŽÄh#:¡¡¡¡™¡¡¨Ä¥yfÄ’·Q™Ä£yaŽÄ²GbÄ¥yfŽÄ’·Q¡¡¡¡™¡¡¨Ä¥yfÄbÀ9™Ä£yaŽÄ£—^Ä¥yfŽÄbÀ9¡¡¡¡™¡¡¨Ä¥yfÄœ9[™Ä£yaŽÄÛÄ¥yfŽÄœ9[¡¡¡¡™¡¡¨Ä¥yfÄ(әģyaŽÄBú½Ä¥yfŽÄ(Ó¡¡¡¡™¡¡¨Ä¥yfÄ֙ģyaŽÄŒˆSÄ¥yfŽÄÖ¡¡¡¡™¡¡¨Ä¥yfÄ´Ml™Ä£yaŽÄU‹3Ä¥yfŽÄ´Ml¡¡¡¡™¡¡¨Ä¥yfÄ°’o™Ä£yaŽÄä™Ä¥yfŽÄ°’o¡¡¡¡™¡¡¨Ä¥yfÄï>s™Ä£yaŽÄáGÄ¥yfŽÄï>s¡¡¡¡™¡¡¨Ä¥yfÄ¥yf™Ä£yaŽÄ€ÈOÄ¥yfŽÄ¥yf¡¡¡¡™¡¡¨Ä¥yfÄgO™Ä£yaŽÄ‚OÄ¥yfŽÄgO¡¡¡¡™¡¡¨Ä¥yfÄ‚¥O™Ä£yaŽÄƒDOÄ¥yfŽÄ‚¥O¡¡¡¡™¡¡¨Ä¥yfÄà™Ä£yaŽÄJe/Ä¥yfŽÄà¡¡¡¡™¡¡¨Ä¥yfÄ ›g™Ä£yaŽÄÄ¥yfŽÄ ›g¡¡¡¡™¡¡¨Ä¥yfÄ¥)k™Ä£yaŽÄ9g%Ä¥yfŽÄ¥)k¡¡¡¡™¡¡¨Ä¥yfÄOq4™Ä£yaŽÄF£.Ä¥yfŽÄOq4¡¡¡¡™¡¡¨Ä¥yfÄÀ™Ä£yaŽÄ= Ä¥yfŽÄÀ¡¡¡¡™¡¡¨Ä¥yfÄ•?g™Ä£yaŽÄÅÄ¥yfŽÄ•?g¡¡¡¡™¡¡¨Ä¥yfÄ…J[™Ä£yaŽÄH(1Ä¥yfŽÄ…J[¡¡¡¡™¡¡¨Ä¥yfÄHŒ1™Ä£yaŽÄ´yÄ¥yfŽÄHŒ1¡¡¡¡™¡¡¨Ä¥yfÄ&ÄřģyaŽÄšígÄ¥yfŽÄ&ÄÅ¡¡¡¡™¡¡¨Ä<µRÄ&ÄÅ™Äz陎ÄšígÄ<µRŽÄ&ÄÅ¡¡¡¡™¡¡¨Ä<µRÄHŒ1™Äz陎Ä´yÄ<µRŽÄHŒ1¡¡¡¡™¡¡¨Ä<µRÄ…J[™Äz陎ÄH(1Ä<µRŽÄ…J[¡¡¡¡™¡¡¨Ä<µRÄ•?g™Äz陎ÄÅÄ<µRŽÄ•?g¡¡¡¡™¡¡¨Ä<µRÄÀ™Äz陎Ä= Ä<µRŽÄÀ¡¡¡¡™¡¡¨Ä<µRÄOq4™Äz陎ÄF£.Ä<µRŽÄOq4¡¡¡¡™¡¡¨Ä<µRÄ¥)k™Äz陎Ä9g%Ä<µRŽÄ¥)k¡¡¡¡™¡¡¨Ä<µRÄ ›g™Äz陎ÄÄ<µRŽÄ ›g¡¡¡¡™¡¡¨Ä<µRÄà™Äz陎ÄJe/Ä<µRŽÄà¡¡¡¡™¡¡¨Ä<µRÄ‚¥O™Äz陎ăDOÄ<µRŽÄ‚¥O¡¡¡¡™¡¡¨Ä<µRÄgO™Äz陎Ä‚OÄ<µRŽÄgO¡¡¡¡™¡¡¨Ä<µRÄ¥yf™Äz陎Ä€ÈOÄ<µRŽÄ¥yf¡¡¡¡™¡¡¨Ä<µRÄï>s™Äz陎ÄáGÄ<µRŽÄï>s¡¡¡¡™¡¡¨Ä<µRÄ°’o™Äz陎Ää™Ä<µRŽÄ°’o¡¡¡¡™¡¡¨Ä<µRÄ´Ml™Äz陎ÄU‹3Ä<µRŽÄ´Ml¡¡¡¡™¡¡¨Ä<µRÄÖ™Äz陎ÄŒˆSÄ<µRŽÄÖ¡¡¡¡™¡¡¨Ä<µRÄ(Ó™Äz陎ÄBú½Ä<µRŽÄ(Ó¡¡¡¡™¡¡¨Ä<µRÄœ9[™Äz陎ÄÛÄ<µRŽÄœ9[¡¡¡¡™¡¡¨Ä<µRÄbÀ9™Äz陎Ä£—^Ä<µRŽÄbÀ9¡¡¡¡™¡¡¨Ä<µRÄ’·Q™Äz陎IJGbÄ<µRŽÄ’·Q¡¡¡¡™¡¡¨Ä<µRÄh#:™Äz陎ÄÝÏ{Ä<µRŽÄh#:¡¡¡¡™¡¡¨Ä<µRÄŽaP™Äz陎Ä CÄ<µRŽÄŽaP¡¡¡¡™¡¡¨Ä<µRÄo"?™Äz陎ÄÜÄ<µRŽÄo"?¡¡¡¡™¡¡¨Ä<µRÄ_hÉ™Äz陎ÄF?(Ä<µRŽÄ_hÉ¡¡¡¡™¡¡¨Ä<µRÄziC™Äz陎ÄX0Ä<µRŽÄziC¡¡¡¡™¡¡¨Ä<µRĈՙÄz陎Äi|9Ä<µRŽÄˆÕ¡¡¡¡™¡¡¨Ä<µRć«I™Äz陎Än;Ä<µRŽÄ‡«I¡¡¡¡™¡¡¨Ä<µRÄI'™Äz陎Ä2°ÃÄ<µRŽÄI'¡¡¡¡™¡¡¨Ä<µRÄ2/¢™Äz陎Äã¿xÄ<µRŽÄ2/¢¡¡¡¡™¡¡¨Ä<µR˜™Äz陎Äœ'OÄ<µRŽ˜¡¡¡¡™¡¡¨Ä<µRÄN(™Äz陎ÄšéOÄ<µRŽÄN(¡¡¡¡™¡¡¨Ä<µRÄæŠw™Äz陎Äg5Ä<µRŽÄæŠw¡¡¡¡™¡¡¨Ä<µRÄ“ôM™Äz陎Ħ†ÛÄ<µRŽÄ“ôM¡¡¡¡™¡¡¨Ä<µRÄ;™Äz陎ÄÅgÄ<µRŽÄ;¡¡¡¡™¡¡¨Ä<µRÄOa(™Äz陎ÄeOÄ<µRŽÄOa(¡¡¡¡™¡¡¨Ä<µRÄîw™Äz陎ÄÿÄ<µRŽÄîw¡¡¡¡™¡¡¨Ä<µRÄ`Å0™Äz陎Äyo<Ä<µRŽÄ`Å0¡¡¡¡™¡¡¨Ä<µRÄi§²™Äz陎ÄÄ<µRŽÄi§²¡¡¡¡™¡¡¨Ä<µRÄû×{™Äz陎Ä+ýÄ<µRŽÄû×{¡¡¡¡™¡¡¨Ä<µRÄ•D™Äz陎Ä;ÁÄ<µRŽÄ•D¡¡¡¡™¡¡¨Ä<µRÄgC™Äz陎ÄAý˜Ä<µRŽÄgC¡¡¡¡™¡¡¨Ä<µRÄ@ð™Äz陎Ädí0Ä<µRŽÄ@ð¡¡¡¡™¡¡¨Ä<µRă…™Äz陎Ävô9Ä<µRŽÄƒ…¡¡¡¡™¡¡¨Ä<µRÄPw'™Äz陎Ä8»—Ä<µRŽÄPw'¡¡¡¡™¡¡¨Ä<µRÄ|=:™Äz陎Ä3Ä<µRŽÄ|=:¡¡¡¡™¡¡¨Ä<µRĬŸP™Äz陎Ä ÔÄ<µRŽÄ¬ŸP¡¡¡¡™¡¡¨Ä<µRĈî?™Äz陎ÄWA(Ä<µRŽÄˆî?¡¡¡¡™¡¡¨Ä<µRĸəÄz陎ÄуÄ<µRŽÄ¸É¡¡¡¡™¡¡¨Ä<µRÄ‚;™Äz陎Ä0{Ä<µRŽÄ‚;¡¡¡¡™¡¡¨ÄhY}ÄÊ[™Äj†ŽÄÎ{\ÄhY}ŽÄÊ[¡¡¡¡™¡¡¨Ä®BmĈ™ÄûŸŽÄ5­Ä®BmŽÄˆ¡¡¡¡™¡¡¨Ä®BmÄ$yƒ™ÄûŸŽÄ Ä®BmŽÄ$yƒ¡¡¡¡™¡¡¨Äzé™ÄÉ[™Äp6‰ŽÄ0{Äz陎ÄÉ[¡¡¡¡™¡¡¨Äp6‰Ä|=:™Äe<{ŽÄ0{Äp6‰ŽÄ|=:¡¡¡¡™¡¡¨Äp6‰Ä¨èO™Äœ ±ŽÄ|=:Äp6‰ŽÄ¨èO¡¡¡¡™ x jª ¤Ä’·¢ÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á268– k¡¡¨ÄhY}Ĉ™ÄoŽÄÊ[ÄhY}ŽÄˆ¡¡¡¡™ x jª ¤Ä"µ'Ä ½ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k¡¡¨Ä9g%Ĉ™ÄÀOxŽÄÊ[Ä9g%ŽÄˆ¡¡¡¡™ x jª ¤Ä&ÄÅÄ ½ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á67– k¡¡¨Äb=ÄÉ[™Ä<,%ŽÄ0{Äb=ŽÄÉ[¡¡¡¡™¡¡¨Äb=Ä|=:™Ä¼ouŽÄ0{Äb=ŽÄ|=:¡¡¡¡™¡¡¨Ä¥)kĨèO™Ä¼ouŽÄ|=:Ä¥)kŽÄ¨èO¡¡¡¡™ x jª ¤Ä&ÄÅĨIO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á68– k¡¡¨Äb=ÄM5™Ä<,%ŽÄT:Äb=ŽÄM5¡¡¡¡™¡¡¨Äb=ÄM5™Ä¼ouŽÄ3ÉÄb=ŽÄM5¡¡¡¡™¡¡¨Ä¥)kÄI%0™Ä¼ouŽÄ3ÉÄ¥)kŽÄI%0¡¡¡¡™¡¡¨Äj–CÄ’hg™ÄtlIŽÄ¢ÙqÄj–CŽÄ’hg¡¡¡¡™¡¡¨Ä¥)kÄ:¼Û™ÄZæ9ŽÄ¢ÙqÄ¥)kŽÄ:¼Û¡¡¡¡™¡¡¨ÄhY}Ä’hg™Äj†ŽÄ¢ÙqÄhY}ŽÄ’hg¡¡¡¡™¡¡¨ÄhY}Ä:¼Û™Äz¼ÃŽÄ¢ÙqÄhY}ŽÄ:¼Û¡¡¡¡™¡¡¨Äzé™ÄM5™Äp6‰ŽÄT:Äz陎ÄM5¡¡¡¡™¡¡¨Äp6‰ÄM5™Äe<{ŽÄ3ÉÄp6‰ŽÄM5¡¡¡¡™¡¡¨Äp6‰ÄI%0™Äœ ±ŽÄ3ÉÄp6‰ŽÄI%0¡¡¡¡™ x jª ¤Äz¼Ãijtw ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á202– k x jª ¤Ä’·¢Ä:¼Û ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á201– k x jª ¤ÄHŒ1Ä L¯ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á134– k x jª ¤ÄHŒ1Ä:¼Û ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á135– k¡¡¨ÄGÄq(™Äw6ŽÄ},ÄGŽÄq(¡¡¡¡™¡¡¨Ä‚;ÄhY}™Ä¹TŽÄ},Ä‚;ŽÄhY}¡¡¡¡™¡¡¨ÄGÄA¢O™ÄÉ[ŽÄhY}ÄGŽÄA¢O¡¡¡¡™¡¡¨ÄGÄA¢O™Ä‚ŽÄχIÄGŽÄA¢O¡¡¡¡™¡¡¨ÄGÄ…?0™Ä£—cŽÄµÃÆÄGŽÄ…?0¡¡¡¡™¡¡¨Ä£—cÄ…?0™Ä6žÉŽÄ},Ä£—cŽÄ…?0¡¡¡¡™ x jª ¤ÄWýÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á263– k x jª ¤ÄWýÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á261– k x jª ¤ÄWýÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á257– k x jª ¤ÄWýÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á252– k x jª ¤ÄWýĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á249– k x jª ¤Äû%Ä]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á247– k x jª ¤ÄWýÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á243– k x jª ¤ÄWýÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á239– k x jª ¤ÄWýÄ€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á238– k x jª ¤ÄWýÄ)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á231– k x jª ¤ÄWýÄ_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á230– k x jª ¤ÄWýÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á226– k x jª ¤ÄWýÄ­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á223– k x jª ¤ÄWýĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á220– k x jª ¤ÄWýÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á217– k x jª ¤ÄWýÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á213– k x jª ¤ÄWýÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á212– k x jª ¤ÄWýÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á208– k x jª ¤ÄWýÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á196– k x jª ¤Ä)öoÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á260– k x jª ¤Ä)öoÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á255– k x jª ¤Ä)öoĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á251– k x jª ¤Ä)öoÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á248– k x jª ¤Ä)öoÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á244– k x jª ¤Ä)öoÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á240– k x jª ¤Ä)öoÄ€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á235– k x jª ¤Ä)öoÄ)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á234– k x jª ¤Ä)öoÄ_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á229– k x jª ¤Ä)öoÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á225– k x jª ¤Ä)öoÄ­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á221– k x jª ¤Ä)öoĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á218– k x jª ¤Ä)öoÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á214– k x jª ¤Ä)öoÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á209– k x jª ¤Ä)öoÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á203– k x jª ¤Ä)öoÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á206– k x jª ¤Ä)öoÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á194– k x jª ¤ÄøÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k x jª ¤ÄøÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á5– k x jª ¤Ä>Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á2– k x jª ¤Äm+çÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á265– k x jª ¤Äm+çÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á259– k x jª ¤Äm+çĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á254– k x jª ¤Äm+çÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á250– k x jª ¤Äm+çÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á245– k x jª ¤Äm+çÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á241– k x jª ¤Äm+çÄ€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á236– k x jª ¤Äm+çÄ)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á233– k x jª ¤Äm+çÄ_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á228– k x jª ¤Äm+çÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á224– k x jª ¤Äm+çÄ­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á219– k x jª ¤Äm+çĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á215– k x jª ¤Äm+çÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á210– k x jª ¤Äm+çÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á204– k x jª ¤Äm+çÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á200– k x jª ¤Äm+çÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á199– k x jª ¤Äm+çÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á267– k x jª ¤Äm+çÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á190– k x jª ¤ÄLÂ;Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á8– k x jª ¤ÄLÂ;Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á3– k x jª ¤ÄLÂ;ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k x jª ¤Äû%Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á264– k x jª ¤Äû%Ĉ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á258– k x jª ¤Äû%ÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á253– k x jª ¤ÄWýÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á246– k x jª ¤Äû%ÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á242– k x jª ¤Äû%Ä€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á237– k x jª ¤Äû%Ä)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á232– k x jª ¤Äû%Ä_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á227– k x jª ¤Äû%ÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á222– k x jª ¤Äû%Ä­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á216– k x jª ¤Äû%ĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á211– k x jª ¤Äû%ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á205– k x jª ¤Äû%Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á202– k x jª ¤Äû%Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á198– k x jª ¤Äû%Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á193– k x jª ¤Äû%Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á189– k x jª ¤ÄÝ©Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á9– k x jª ¤ÄÝ©ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á4– k x jª ¤ÄOaxÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á268– k x jª ¤ÄOaxĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á262– k x jª ¤ÄOaxĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á207– k x jª ¤ÄOaxÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á201– k x jª ¤ÄOaxÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á197– k x jª ¤ÄOaxÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á192– k x jª ¤ÄOaxÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á188– k x jª ¤ÄOaxÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á185– k x jª ¤ÄSìoÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á195– k x jª ¤ÄSìoÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á191– k x jª ¤ÄSìoÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á187– k x jª ¤ÄSìoÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á184– k x jª ¤ÄSìoÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á182– k x jª ¤Ä(Ó0Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á186– k x jª ¤Ä(Ó0Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á183– k x jª ¤Ä(Ó0Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á181– k x jª ¤Ä(Ó0Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á179– k x jª ¤ÄhçoÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á180– k x jª ¤ÄhçoÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á178– k x jª ¤ÄhçoÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á177– k x jª ¤ÄhçoÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á176– k x jª ¤ÄkgÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á175– k x jª ¤ÄkgÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á174– k x jª ¤ÄkgÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á173– k x jª ¤ÄkgÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á172– k x jª ¤Ä)ö%Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á171– k x jª ¤Ä)ö%Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á170– k x jª ¤Ä)ö%Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á168– k x jª ¤Ä)ö%Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á169– k x jª ¤ÄœÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á165– k x jª ¤ÄœÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á166– k x jª ¤ÄœÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á167– k x jª ¤ÄœÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á164– k x jª ¤Äh„OÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á160– k x jª ¤Äh„OÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á161– k x jª ¤Äh„OÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á162– k x jª ¤Äh„OÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á163– k x jª ¤ÄA5.Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á155– k x jª ¤ÄA5.Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á157– k x jª ¤ÄA5.Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á158– k x jª ¤ÄA5.Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á159– k x jª ¤ÄÀÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á149– k x jª ¤ÄÀÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á152– k x jª ¤ÄÀÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á154– k x jª ¤ÄÀÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á156– k x jª ¤Äb=ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á140– k x jª ¤Äb=Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á144– k x jª ¤Äb=Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á148– k x jª ¤Äb=Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á151– k x jª ¤Äb=Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á153– k x jª ¤Ä(Óĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á128– k x jª ¤Ä(ÓÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á134– k x jª ¤Ä(ÓÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á138– k x jª ¤Ä(ÓÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á143– k x jª ¤Ä(ÓÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á147– k x jª ¤Ä(ÓÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á150– k x jª ¤ÄúÛÆÄ)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á103– k x jª ¤ÄúÛÆÄ_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á108– k x jª ¤ÄúÛÆÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á113– k x jª ¤ÄúÛÆÄ­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á119– k x jª ¤ÄúÛÆĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á124– k x jª ¤ÄúÛÆÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á130– k x jª ¤ÄúÛÆÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á135– k x jª ¤ÄúÛÆÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á137– k x jª ¤ÄúÛÆÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á142– k x jª ¤ÄúÛÆÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á146– k x jª ¤Ä2/¢Ä)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á102– k x jª ¤Ä2/¢Ä_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á107– k x jª ¤Ä2/¢ÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á111– k x jª ¤Ä2/¢Ä­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á116– k x jª ¤Ä2/¢Äµ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á120– k x jª ¤Ä2/¢ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á125– k x jª ¤Ä2/¢Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á131– k x jª ¤Ä2/¢Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á133– k x jª ¤Ä2/¢Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á136– k x jª ¤Ä2/¢Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á145– k x jª ¤Äo#8Ä)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á101– k x jª ¤Äo#8Ä_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á106– k x jª ¤Äo#8ÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á110– k x jª ¤Äo#8Ä­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á114– k x jª ¤Äo#8ĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á117– k x jª ¤Äo#8ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á121– k x jª ¤Äo#8Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á126– k x jª ¤Äo#8Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á132– k x jª ¤Äo#8Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á139– k x jª ¤Äo#8Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á141– k x jª ¤Äƒ…Ä)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á104– k x jª ¤Äƒ…Ä_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á105– k x jª ¤Äƒ…ÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á109– k x jª ¤Äƒ…Ä­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á112– k x jª ¤Äƒ…ĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á115– k x jª ¤Äƒ…ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á118– k x jª ¤Äƒ…Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á122– k x jª ¤Äƒ…Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á123– k x jª ¤Äƒ…Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á127– k x jª ¤Äƒ…Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á129– k x jª ¤ÄeÛÔÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á11– k x jª ¤ÄR6Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á12– k x jª ¤Ä6:QÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á16– k x jª ¤Ä6:QÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á13– k x jª ¤Ä™ŒÉÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á19– k x jª ¤Ä™ŒÉÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á17– k x jª ¤Ä™ŒÉÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á14– k x jª ¤Ä™ŒÉÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á10– k x jª ¤ÄC%WÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á6– k x jª ¤ÄgxÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á22– k x jª ¤ÄgxÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á20– k x jª ¤ÄgxÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á18– k x jª ¤ÄgxÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á15– k x jª ¤ÄqfwÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á25– k x jª ¤ÄqfwÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á24– k x jª ¤ÄqfwÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á23– k x jª ¤ÄqfwÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á21– k x jª ¤Äºo²Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á29– k x jª ¤Äºo²Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á28– k x jª ¤Äºo²Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á27– k x jª ¤Äºo²ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á26– k x jª ¤Äe¢YÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á30– k x jª ¤Äe¢YÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á33– k x jª ¤Äe¢YÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á32– k x jª ¤Äe¢YÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á31– k x jª ¤Äpƒ[Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á37– k x jª ¤Äpƒ[Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á34– k x jª ¤Äpƒ[Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á35– k x jª ¤Äpƒ[ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á36– k x jª ¤Ä©Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á38– k x jª ¤Ä©Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á39– k x jª ¤Ä©Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á40– k x jª ¤Ä©ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á41– k x jª ¤ÄJ4Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á42– k x jª ¤ÄJ4Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á43– k x jª ¤ÄJ4Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á44– k x jª ¤ÄJ4ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á46– k x jª ¤Ä= Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á45– k x jª ¤Ä= Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á47– k x jª ¤Ä= Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á49– k x jª ¤Ä= ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á52– k x jª ¤ÄóÇ—Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á48– k x jª ¤ÄóÇ—Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á50– k x jª ¤ÄóÇ—Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á53– k x jª ¤ÄóÇ—ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á57– k x jª ¤ÄóÇ—Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á61– k x jª ¤ÄBú½Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á51– k x jª ¤ÄBú½Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á54– k x jª ¤ÄBú½Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á58– k x jª ¤ÄBú½ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á63– k x jª ¤ÄBú½Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á67– k x jª ¤ÄBú½Äˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á73– k x jª ¤Ä÷‰Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á55– k x jª ¤Ä÷‰Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á59– k x jª ¤Ä÷‰Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á64– k x jª ¤Ä÷‰ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á68– k x jª ¤Ä÷‰Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á71– k x jª ¤Ä÷‰ÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á82– k x jª ¤Ä÷‰Ä]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á88– k x jª ¤Ä÷‰ÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á93– k x jª ¤Ä÷‰Ä€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á98– k x jª ¤Äã¿xÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á56– k x jª ¤Äã¿xÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á65– k x jª ¤Äã¿xÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á66– k x jª ¤Äã¿xÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á70– k x jª ¤Äã¿xÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á76– k x jª ¤Äã¿xĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á81– k x jª ¤Äã¿xÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á85– k x jª ¤Äã¿xÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á90– k x jª ¤Äã¿xÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á94– k x jª ¤Äã¿xÄ€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á99– k x jª ¤ÄùˆÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á60– k x jª ¤ÄùˆÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á72– k x jª ¤ÄùˆÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á69– k x jª ¤ÄùˆÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á75– k x jª ¤ÄùˆÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á80– k x jª ¤ÄùˆÄˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á84– k x jª ¤ÄùˆÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á87– k x jª ¤ÄùˆÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á91– k x jª ¤ÄùˆÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á95– k x jª ¤Äo#8Ä€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á100– k x jª ¤ÄM=Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á62– k x jª ¤ÄM=Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á74– k x jª ¤ÄM=Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á78– k x jª ¤ÄM=ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á79– k x jª ¤ÄM=Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á83– k x jª ¤ÄM=Ĉ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á86– k x jª ¤ÄM=ÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á89– k x jª ¤ÄM=Ä]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á92– k x jª ¤ÄM=ÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á96– k x jª ¤ÄM=Ä€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á97– k x jÀ ¤Äºo²ÄCÛ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄgxÄCÛ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Äpƒ[ÄCÛ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄJ4ÄCÛ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄBú½Ä_[. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄBú½Ä g ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄBú½Äɲw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄBú½Ä@Á+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä6:QÄõf ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä6:QÄ¡Q ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä6:QÄCÿ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä6:QÄ … ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä= Ä…?m ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä©Ä…?m ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Äe¢YÄ…?m ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄqfwÄ…?m ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄC%:Ä’FM ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Áo– k x jÀ ¤ÄqfwÄ”éC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Äe¢YÄ”éC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä©Ä”éC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä= Ä”éC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄBú½Äx9> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄBú½ÄnA? ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄBú½Äç ” ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄBú½ÄqáS ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄJ4Ä0) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Äpƒ[Ä0) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Äºo²Ä0) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄgxÄ0) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä6:QÄ X ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä6:QÄ%± ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä6:QÄK ) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä6:QÄB ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jª ¤Ä÷‰Äˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á77– k x jª ¤Ä)öoÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á266– k x jª ¤ÄWýÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á256– k k k gš¥3™3˜`˜———…—‚"