THE ARBITER THE ARBITER THE ARBITER 1 1 1 THE ARBITER Ed McCreight and Lissy Bland Dragon-88-01 January 1988 c Copyright 1988 Xerox Corporation. All rights reserved. Keywords: abiter, Dragon, DynaBus access, serial access, Device Request Ports, DBus controller, OR functions Maintained by: Bland.pa XEROX Xerox Corporation Palo Alto Research Center 3333 Coyote Hill Road Palo Alto, California 94304 For Internal Xerox Use Only THE ARBITER 1.0 Brief Description The Arbiter serializes accessses to the Dynabus among 64 potential requesting devices. It is designed to work with up to 7 other identical chips; together they implement a distributed arbiter function. The arbitration system follows rules of priority and precedence in making grants to requesting devices. There are are 6 discrete priority levels, with 0 being the most urgent and 6 the least urgent. Priorities 2 and 7 are illegal. Access is always granted to the requester at the most urgent priority. The rule of precedence assures that when there are multiple outstanding requests at the same highest priority level, the arbiter approximates a round-robin order in granting requests. Because there is one arbiter chip on each Dragon board and because the arbiter has available pins, it also implements 2 other functions: First, it acts as a DBus controller for its board. And second, it performs the OR function for the Owner, Shared, and Synchronous Stop bits. 2.0 Pin-Out 3.0 Block Diagram of the Chip 4.0 Detailed Description of Each of the Functional Blocks There is one arbiter chip on each board, located near the board-to-backpanel interface. Devices always communicate with the arbiter on their board. 4.1 Requesting Device - Arbiter Communication 4.1.1 The Device Request Ports Each arbiter chip has 8 Device Request Ports. Each requesting device is connected to a particular Device Request Port. During system initialization, the Device Request Ports are loaded with a 9-bit record that describes their requesting device. This 9-bit record, pictured in Figures 1a and 1b, contains the type of the requesting device, and values for request priorities and lengths. Requesting devices are of 2 types, the normal type and the memory type. Normal devices can make requests at 2 priority levels, high and low. All high priority requests for a device are exhausted before any of its low priority requests are granted. Memory type devices always make requests at the same priority level; however, requests may be of two different lengths: 2 or 5 cycles. The arbitration system guarantees to grant these requests in the order received. Requesting devices communicate to their arbiter over 2 wires, nRequestOut[0..1]. The 4, bit combinations for nRequestOut[0..1] have the following meanings: Normal Device 0 (HH): Release this device's demand for system-wide hold, if any 1 (HL): Demand system-wide hold 2 (LH): Add a Low priority request 3 (LL): Add a High priority request Memory Type Device 0 (HH): Release this device's demand for system-wide hold, if any 1 (HL): Demand system-wide hold 2 (LH): Add a request for a 2-cycle packet 3 (LL): Add a request for a 5-cycle packet Depending on the type of the requesting device and the bit pattern that the requesting device has sent, the arbiter determines the priority and length of the request. For example, if a Normal Type Device sends a 3 (High priority request) to its Device Request Port, the arbiter looks in the High portion of the Device Request Record to learn exactly what a high priority request for that requesting device means as well as the length of the request. (The reason for this indirection is to keep the number of pins that requesting devices must reserve for communication with the arbiter to an absolute minimum.) Note: If one or more of the arbiter's Device Request Ports is not connected to a requesting device, the extraneous Device Request Port or Ports think that they are constantly receiving a 0 (clear system-wide hold) from their (non-existant) requesting devices. Figure 1a: The information encoded by the 9-bit Device Request Record for Normal Devices. (ArbDBus.sch shows the loading of the this information from the DBus as the DPriority wires. InputFSM.sch shows the interpretation of the Device Request Record wires from the DevPriority wires. Figure 1b: The information encoded by the 9-bit Device Request Record for Memory Type Devices. The 3, high-order bits are not used. Each Device Request Port has two counters, each of which can count up to 6 outstanding requests. One counter is for high priority requests (ICtrFIFO.icon in the InputFSM.sch); the other is for low priority requests (InputCtr.icon in the InputFSM.sch). If the Device Request Port is connected to a Memory Type Device, only the counter for low priority requests is used. This means that Normal Devices can accumulate up to 12 requests while Memory Type Devices can accumulate only 6 requests. (Note that the arbiter actually computes the MIN of the number of outstanding requests and the number 6 to determine the number of outstanding requests.) Application Note: The arbiter's counters, that only note up to 6 outstanding requests, may or may not require requesting devices to implement additional logic. For example, a processor that simply stops processing information until it receives a reply to its single outstanding request, need not implement any special logic to avoid building up a queue that contains more than 6 outstanding requests. However, other requesting devices, including the display and memory controllers, will need to carefully control their queues of outstanding requests. The arbiter uses two mechanisms to help requesting devices control the number of outstanding requests. First, replies are assigned high priority levels (0-1), and queries are assigned lower priority levels (3-6), so that eliminating the queue is higher priority than filling it. And, second, if any device queue is filling up, the device can assert Hold. While Hold is asserted, no new queries can be registered; however, replies can go out. Thus, the Hold mechanism permits slower devices, like memory controllers, to limit the number of new requests that can accumulate while waiting for the information needed for earlier requests to become available. 4.1.2 The Best Local Request The logic in ComPipe2.sch selects the best local request among the devices connected to a particular arbiter. PE-8-3-Hold.icon (PE = Priority Encoder) finds the minimum priority level among the abiter's 8 requesting devices. AmongBest.icon identifies all devices that have a request pending at this minimum priority level. The arbiter sends this priority level to the other arbiters as ArbReqOut[0..2]. In addition, the arbiter remembers to which requesting device at that minimum priority level it would give the grant if it were allowed to make a grant. If more than 1 device is requesting at the minimum priority level, the arbiter follows a clockwise round-robin order in making grants. 4.1.3 The Grant When an arbiter has permission to make a grant, it notifies a particular requesting device over its nGrant wire. There is one nGrant wire for each device request port, for a total of 8 nGrant wires. These wires are named nGrant[i] where i is the number of the Device Request Port. nGrant[i] is asserted during every grant cycle to Device Request Port[i]. An arbiter can make back-to-back grants to the same requester, but the current arbiter implementation will not be able to follow a 2-cycle grant immediately with another grant to any device attached to the same arbiter because that arbiter needs a cycle to update itself before making another grant. In addition, there are circumstances that require 1 dead cycle on the DynaBus following a 2-cycle grant as the following scenario explains: 1. Arbiter A received a 2-cycle grant at prioirity 0 or 1. 2. While Arbiter A has the DynaBus, the other arbiters look for another priority 0 or 1 request. If they find a priority 0 or 1 request, that request can be granted if nBusyIn is not asserted during the 3rd cycle following the previous grant. However, if the other arbiters cannot find a priority 0 or 1 request, they must delay making a grant for one cycle while Arbiter A updates its ArbReqOut wires to reflect its new minimum priority. This is true because it is possible that Arbiter A's next best priority is 2 (Set Hold). If Arbiter A were not allowed to assert this Hold, it is possible that a request coming from another arbiter to one of Arbiter A's requesting devices would overflow that requesting device's queue. Each arbiter communicates additional information to its requesting devices about the grant that it would make (if it were allowed to make a grant) one cycle before the grant would be made. This information is sent over 2 wires. The requesting devices may choose to utilize or ignore this information. 1. nHiPGrant is an Output wire that is asserted one cycle before the first cycle of a grant iff the arbiter is responding to a high-type request from the requesting device. At all other times the state of DHiP is undefined. 2. DLongGrant is an Output wire that is asserted one cycle before the first cycle of a grant iff the arbiter is responding to a long-packet (5-cycle) request from the requesting device. At all other times the state of DLongGrant is undefined. After making the grant, the arbiter updates its local precedence pointer for requests of that priority. Finally, it decrements the appropriate request counter. 4.2 Inter-Arbiter Communication There can be at most eight arbiters in a Dragon system. These arbiters exchange priority information across the system backpanel. In the maximal configuration, an arbiter drives one 3-bit, Input/Output port, ArbReqOut and receives information from the other seven arbiters over the OtherArbInT[7 x 3] wires. Together, ArbReqOut[1 x 3] and OtherArbInT[7 x 3] are known on the backpanel as InterArb[8 x 3]. If no device is requesting service from particular arbiter j, the value of InterArb[j] is 7, NoRequest. If any of the arbiter's requesters is asserting Hold, it is as if that arbiter is instead making a request at priority value 2, Hold. 4.2.1 The Best Global Request The logic in ArbPipe4.sch finds the best global request. Each arbiter has two precedence pointers for each priority level, one local and one global. These precedence pointers are initialized over the DBus during startup. Every time a request is granted at a particular priority level, each arbiter updates its global precedence pointer for that priority level, and if the grant was to one of its requesting devices, it updates the local precedence pointer as well. The updating of the global precedence pointers takes advantage of the configuration of the arbiters. It is as if the 8 arbiters are in a circle. Each arbiter knows which other arbiters is its nearest clockwise neighbor (one hop away), which is next nearest (two hops clockwise), etc. When the precedence pointer for each priority level is initialized during startup, each arbiter learns that the precedence pointer is x hops away clockwise, where x = 0 means that that arbiter holds the precedence pointer. The arbiters must be numbered so that the arbiter that is one counter-clockwise hop from the arbiter holding the precedence pointer is arbiter 1, etc. (See Figure 4). After initialization, it is responsibility of each arbiter to keep track of the precedence pointer as it moves around the circle. Figure 4: The numbering and configuration of the arbiters. 4.2.2 The Grantee Because the minimum length grant is 2 cycles, all arbiters know that for at least 2 cycles after a grant is made, no further arbitration may take place. If the arbiter that received the grant needs the bus for more than 2 cycles, it asserts nBusyOut until it is nearly finished. nBusyOut is received by all arbiters as nBusyIn. This implementation of nBusyIn means if future arbiters have other packet lengths greater than 2 cycles, the current arbiters should work correctly with them. 4.3 DBus Functions 4.3.1 Initialization of the Arbiters System initialization takes place over the DBus. The DBus is used to initialize the configuration of the arbiters. The DBus address to access the arbiter DBus registers is bbbb 0000 0000 0ppp where bbbb is the slot number (equivalent to SlotNo[0..3]) and ppp is the Path Number. The Path Number specifies a path to a particular shift register on the specified device. Data is transferred serially to the specified shift register over the DBus's DSerialIn wire; the most significant bits are loaded first. For the arbiter the following values for the Path Number are defined: 000: Chip Identification register (ChipID), Read Only, 16 bits. (Type 1, currently version 1) 001: Device Request Ports Configuration register (DRPC), Read/Write. There are 8 ports. Each is 9 bits wide, for a total of 72 bits. The most significant 9 bits are are for port 0. The least significant 9 bits are for port 7. (Figure 1 illustrates how the information the Device Request Port Record is encoded.) 010: Arbiter Configuration Register (ArbCnf), Read/Write, 4 bits. The least significant bit, (HySelDec), controls the hybrid selection logic (c.f. Section 1.3.2). The 3 most signficant bits specify the number of the arbiter (ArbNo). Note that all arbiters in a system must be loaded with different numbers and that the numbers must correspond to the wiring pattern of ArbReq. 011: Board Identification Register (BoardID), Read Only, 2 bits. This register is loaded from the BdVersion pins whenever an arbiter configuration register is not accessed. It may be read to recover the board version. The connection pattern between BdVersion wires and nDHybridSel wires plus Vdd and Gnd is used to encode information additional information about the board including: revision number and board type. (See BdVersion[0..1] in 5.0) 4.3.2 Address Interpretation for Hybrids The arbiter performs part of the address decoding for the DBus on a board. Whenever a DBus address of the form bbbb xxxx xxxx xxxx is transmitted on the DBus (bbbb is the board slot number) the arbiter drives its DHybridSel[i] lines according to the following algorithm: HySelDec=L: =bbbb hhhh hxxx xxxx => DHybridSel[i] = (hhhhh & 24-i) n= 0. HySelDec=H: =bbbb hhhh xxxx xxxx => DHybridSel[i] = ((hhhh MOD 16) = i + 1) & nDAddress. If xxxx is 0000, the all the DHybridSel lines are forced to 0. If HySelDec is low the final stage of decoding must be done in external logic, but more decoded values are possible. 4.4 OR Functions The arbiter performs the OR function for the Synchronous Stop, Shared, and Owner bits. The algorithm used in performing this 64-way OR is illustrated in Figure 5. Shared.sch contains this logic. Here are the 5 steps. Figure 5: The algorithm used for computing the OR function. (1). Each arbiter computes the 8-way OR of the Shared (nSharedOut) and Synchronous Stop (nSStopOut) wires from its own requesting devices. Each arbiter notes whether Owner (nOwnerOut) has been asserted by one of its requesting devices. (2). Each arbiter sends the results of (1) to all the arbiters (itself included) as nBSharedOut, nBStopOut and nBOwnerOut. (3). Each arbiter receives the 8 values for nBSharedOut and nBStopOut on its 8 nBSharedIn and nBStopIn wires. It notes whether owner has been asserted on its nBOwnerIn wire. (4). Each arbiter communicates the result of the 64-way OR to its requesting devices over its atomic nSStopIn, nSharedIn and nOwnerIn wires. Because these are atomic wires, requesting devices are notified sequentially. (5) . Finally, in the case of Synchronous Stop, each arbiter tells itself to stop by sending nSStopIn to itself as nStopAct. 4.5 Starting the Arbiter The arbiter system starts by using the interaction between Reset and Synchronous Stop. Here are the rules: (1). Assert Reset This takes about 10 cycles. (2). Assert Reset and Synchronous Stop simultaneously. The arbiters begin listening for requests but nobody is making any requests. (3). Release Reset but hold Synchronous Stop. At this point all other devices in the system begin making requests. (4). Release Synchronous Stop. At this point the arbiters start making grants. 5.0 Detailed Description of Each Pin Pin Name I/O Pin Description nRequestOut[0..1] I These 8 x 2 wires are used by requesting devices to communicate to their arbiter. See Section 4.1.1 for a complete explanation of their use. nGrant O The arbiter uses these 8 x 1 nGrant wires to respond to requesting devices. nGrant is 1 during every grant cycle to its particular port and 0 otherwise. nSStopOut I These 8 x 1 wires are used by requesting devices to initiate a Synchronous Stop. nSharedOut I The 8 x 1 nSharedOut wires are used by requesting devices to communicate to their arbiter whether they think that a particular real DBus address refers to data present in multiple caches. nOwnerOut I nOwnerOut is asserted by a requesting device if it is the owner of a particular address. nHiPGrant O This wire is asserted one cycle before the first cycle of a grant if the arbiter is responding to a high-type request from the requesting device. At other times the state of nHiPGrant is undefined. nLongGrant O This wire is asserted one cycle before the first cycle of a grant iff the arbiter is responding to a long-packet (5-cycle) request from the requesting device. At other times the state of nLongGrant is undefined. nSStopIn O nSStopIn is the OR of all 8 nBSStopIn wires, delayed by a pipeline stage. nSharedIn O nSharedIn is the result of ORing the 8 nBSharedIn wires, delayed by a pipeline stage. Each arbiter uses nBSharedIn to tell its requesting devices whether a particular real address is or isn't shared data. nOwnerIn O The arbiter transfers the value of nBOwnerIn to nOwnerIn and distributes it to each of its requesting devices. Note that for Synchronous Stop and Shared the arbiter performs the Or function and provides a intermediate storage in the pipeline. For Owner, the wires themselves perform the OR, so that the arbiter's role is reduced to that of providing intermediate storage in the pipeline. DSerialOut O When DSelect is asserted, DSerialOut sends information from a specified register on the arbiter to the DBus. (This is a Tri-state wire.) DSerialIn I The arbiter's internal registers receive input from the DBus via the DSerialIn pin. nDReset O When nDReset is asserted in conjunction with nSynchronous Stop for 10 clock cycles the arbiter resets to ready if for operation. nDFreeze O unused DExecute O DExecute asks the arbiter to perform an execute cycle instead of a a data/address transfer on the next positive edge of DShiftCK. DAddress O DAddress indicates that the DShiftCK cycle is transferring address bits. Components are implicitly deselected when DAddress is asserted. DShiftCK O DShiftCK is the Shift clock for the currently selected scan path. Data is transferred on the positive edge of this signal. If the DAddress line is active, the DShiftCK is used to transfer component address bits instead of data bits. The implication is that DSerialIn, DExecute and DAddress are guaranteed stable by the DBus controller for many nanoseconds after the rising edge of DShiftCK. nDHybridSel[0..4] O These 5 bits are used to select a particular hybrid on a board. They are used in one of two ways depending upon the value of the HySelDec bit of the arbiter configuration register . If HySelDec is True, nDHybridSel is used in decoded form; that is, if a wire is high, it selects the corresponding hybrid on the board. If HySelDec is False, nDHybridSel is used as a 5-bit binary number that an external decoder uses to determine the which hybrid on the board is selected. In addition, nDHybridSel is used in combination with BdVersion to encode the type of the board. (c.f. BdVersion) DBdSel O The value of DBdSel is computed by the following equation: DBdSel = ((SlotNo = the 4 high-order bits of the internal DAddress register) & n DAddress). When true, DBdSel indicates that communications from the DBus are intended for this board. SlotNo[0..3] I An integer from 0..15, that is communicated tfrom the Backpanel that uniquely encodes the position of the arbiter in the machine. BdVersion[0..1] I A number from 0..3. The connection pattern between BdVersion wires and nDHybridSel wires plus Vdd and Gnd is used to encode information additional information about the board including: revision number and board type. Note that there are 49 (72) possible connection patterns most of which have no meaning at this time. CKOut O CKOut is used in the clock skew elimination scheme that is implemented by the clock generator. Clock I This is the DynaBus clock. RecAdj I RecAdj is an approximately 3V analog signal that sets the threshold on 2V external logic receivers. ArbReqOut[0..2] O This is a three-bit field that carries the minimum (best) priority level at which a particular arbiter has any device requesting. OtherArbInT[0..20] I These 7 x 3 wires are used to communicate the highest priority request that is pending with each of the other arbiters in the system. Each group of 3 wires corresponds to ArbReqOut wires for one of the other 7 arbiters in the system. nBusyOut O nBusyOut is asserted by the arbiter holding the grant until it is nearly finished. It is connected to the nBusyIn wire. (nBusyOut is needed because the length of grants, 2 or 5 cycles, is not known.) nBusyIn I nBusyIn is connected to nBusyOut. When it is not asserted, the arbiters are free to make another grant. nBSStopOut O nBSStopOut is the OR of all 8 nSStopOut wires. When a device requests a Synchronous Stop, its arbiter sends nBSStopOut to all 8 arbiters (including itself). nBSStopIn[0..7] I The 8 nBSStopIn wires receive values from the 8 nBSStopOut wires (one from each arbiter). The OR of these 8 wires determines whether a Synchronous Stop should occur. Note that Synchronous Stop can be asserted anywhere in the machine. Very shortly after it is asserted the arbitration system stops making grants, but will continue to accumulate requests. When Synchronous Stop is released, the accumulated requests will be granted. Synchronous Stop can be used to help debug the machine by stepping the machine 1 transaction at a time. This is done by asserting Synchronous Stop, then releasing Synchronous Stop for 1 cycle before reasserting it. N.B. This will be true when the bus in the first implementation is fixed. The fix is contained in [Indigo]Arbiter25>ArbSysTests.mesa. nBSharedOut O nBSharedOut is the OR of the 8 nSharedOut wires. Each arbiter sends nBSharedOut to all 8 arbiters (including itself), in order to determine the number of cached copies that exist for a particular real address in memory. nBSharedIn I The 8 x 1 nBSharedIn wires are connected to the 8 nBSharedOut wires (one from each arbiter). The OR of these 8 wires determines whether a particular real address is shared data. Each arbiter is able to send out a nBSharedOut for one transaction and compute the OR of the 8 nBSharedIn for the transaction that is one stage further in the pipeline during the same cycle. (See Figure XX ) nBOwnerOut O One cycle after a requesting device asserts nOwnerOut to its arbiter, that arbiter asserts nBOwnerOut to all the arbiters (including itself) in the system. nBOwnerIn I nBOwnerIn receives its value from the nBOwnerOut wire. Note that a single arbiter can receive a value for nBOwnerOut for one transaction and receive a value for nBOwnerIn for a transaction one stage further in the pipeline during the same cycle. nStartGrant O nStartGrant is asserted by an arbiter during the first cycle of a grant. The combined nStartGrant wire for all 8 arbiters performs an OR of the nStartGrant wires for the individual arbiters so that it is low if it is the first cycle of a grant for any of the arbiters. Having the nStartGrant wire low during the first first cycle of any grant is not necessary for the correct functioning of the system; however, it is useful for debugging because it makes it easy to determine when grants are being made. nStopAct I When asserted (at all arbiters synchronously), nStopAct causes the arbiters to postpone all grants. TInv[0..1] I/O TInv (Test inverter) is an inverter that was included in the design solely for testing purposes. TInv[0] is the input; TInv[1] is the output. TRec2v[0..2] I/O TRec2v (Test Receiver 2 Volts) is included in the design solely for testing purposes. TRec2v[0] is the input wire to an inverter. TRec2v[1] is an analog input signal. TRec2v[2] is the output of the inverter. TIOBus O TIOBus (Test IO Bus) is an experiment intended to generate a Receive/Adjust signal automatically. (It can be ignored.) 6.0 DC Characteristics Note that for the 2 volt logic, signals are active low off chip and active high on chip. The 2 volt bus transceivers invert to accomplish this transformation. Pin Name or Type Signal Type Voltage Current Group A 2V input L 0.65 .035 ma Group B 2V open drain(output) L 0.2 92 ma Group C 5V input L 1.0 0 H 4.0 0 Group D 5V output L 0.5 2 ma H 4.0 0 DSerialOut 5V Tri-state L 0.5 2 ma H 4.5 2 ma RecAdj analog input 2-4.5 V 0.1 ma Test Signals unspecified Pin Type Pin Name Group A nRequestOut nSStopOut[0..7] nSharedOut[0..7] nOwnerOut nHIPGrant nLongGrant nSStopIn nSharedIn nOwnerIn OtherArbInT[3 x 7] nBusyIn nBStopIn[1 x 8] nBSharedIn[1 x 8] nBOwnerIn[1 x 8] nStopAct Group B nGrant ArbReqOut nBusyOut nBSStopOut nBSharedOut nBOwnerOut nStartGrant Group C DSerialIn nDReset nDFreeze DExecute DAddress DShiftCk SlotNo BdVersion Clock Group D nDHybridSel DBdSel CkOut 7.0 AC Characteristics A. Definitions The timing characteristic of each port are described in this section. It is generally assumed that the charcteristics of all the wires connecting a chip to a particular component are the same, so that Dynabus signals, DBug Bus signals, Backpanel signals, (etc.) may be characterized as a group. Figure 6: 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 7: 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 35ns 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 Schematic of the Circuit Figure 8: The full arbiter configuration. 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 6 nSStopIn 39 nSharedOut.1 77 Ckout 112 OtherArbIn.1.0 7 nRequestOut.0.1 40 nSharedOut.2 78 Clock 113 OtherArbIn.2.0 8 nGrant.1 41 nSharedOut.3 80 nDHybridSel.0 114 OtherArbIn.3.0 9 nRequestOut.1.0 42 nSharedOut.4 81 nDHybridSel.1 115 OtherArbIn.4.0 10 nRequestOut.1.1 43 nSharedOut.5 82 nDHybridSel.2 116 OtherArbIn.5.0 11 nGrant.2 44 nSharedOut.6 83 nDHybridSel.3 117 OtherArbIn.6.0 12 nRequestOut.2.0 45 nSharedOut.7 84 nDHybridSel.4 119 ArbReqOut.1 13 nOwnerIn 46 nSStopOut.0 85 DBdSel 120 OtherArbIn.0.1 14 nRequestOut.2.1 47 nSStopOut.1 86 SlotNo.0 121 OtherArbIn.1.1 15 nGrant.3 48 nSStopOut.2 87 SlotNo.1 122 OtherArbIn.2.1 16 nRequestOut.3.0 49 nSStopOut.3 88 SlotNo.2 123 OtherArbIn.3.1 17 nSharedIn 50 nSStopOut.4 89 SlotNo.3 124 OtherArbIn.4.1 18 nRequestOut.3.1 51 nSStopOut.5 90 BdVersion.0 125 OtherArbIn.5.1 19 nGrant.4 52 nSStopOut.6 91 BdVersion.1 126 OtherArbIn.6.1 20 nRequestOut.4.0 53 nSStopOut.7 92 nBSStopIn.0 127 ArbReqOut.2 21 nLongGrant 54 DBus.0 93 nBSStopIn.1 128 OtherArbIn.0.2 22 nRequestOut.4.1 55 DBus.1 94 nBSStopIn.2 129 OtherArbIn.1.2 23 nGrant.5 56 DBus.2 95 nBSStopIn.3 130 OtherArbIn.2.2 24 nRequestOut.5.0 57 DBus.3 96 nBSStopIn.4 131 OtherArbIn.3.2 25 nRequestOut.5.1 58 DBus.4 97 nBSStopIn.5 132 nStartGrant 26 nGrant.6 59 DBus.5 98 nBSStopIn.6 133 OtherArbIn.4.2 27 nRequestOut.6.0 60 DBus.6 99 nBSStopIn.7 134 nBOwnerOut 28 nRequestOut.6.1 61 TInv.0 100 nBSSharedIn.0 135 OtherArbIn.5.2 29 nGrant.7 62 TInv.1 101 nBSSharedIn.1 136 nBSharedOut 30 nRequestOut.7.0 63 TRec2v.0 102 nBSSharedIn.2 137 OtherArbIn.6.2 31 nHiPGrant 64 TRec2v.1 103 nBSSharedIn.3 138 nBSStopOut 32 nRequestOut.7.1 65 TRec2v.2 104 nBSSharedIn.4 139 nStopAct 66 RecAdj 105 nBSSharedIn.5 140 nBusyOut 67 TIOBus.0 106 nBSSharedIn.6 141 nBusyIn 68 TIOBus.1 107 nBSSharedIn.7 69 TIOBus.2 108 nBOwnerIn 70 TIOBus.3 71 TIOBus.4 72 TIOBus.5 t [Artwork node; type 'Artwork on' to command tool] Figure 1: The Logical Pin-Out of the Arbiter. [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] [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] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] ÊΖ.8 in footerMargin–"dragondoc" style˜Iblock•Mark centerHeaderšÏs ˜ K–centerRectoHeaderš ˜ K–centerVersoHeaderš ˜ K– centerFooter˜K– centerFooter–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–centerRectoFooter˜K–centerVersoFooter–e"XeroxLogotypes" family 48 pt size 48 pt leading 48 pt topLeading 40 pt topIndent 24 pt bottomLeading˜K–centerVersoFooter˜Ititleš ˜ Isubtitle˜Iauthors˜Iabstractš˜O˜OšÐms8ž˜:O˜OšÏb œc˜lOšŸœ ˜O˜I boilerplateš ÏqœÏoœ¡œ¡œ¡Ñbox˜ŽL–3centered lineFormatting centered lastLineFormattingš ˜ Ihead˜ ˜IbodyšœôÏiœ£ œ(£œ‚˜¶Ršœ˜˜˜I pagebreak–centered lastLineFormatting˜— ˜  artworkFigure• InterpressÚœInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  Ò–¡£ðX ¢ ¨ r jÄ ¤ÄùÄw ¢ ¥ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈĈ ¢ ¨ÄÊ• ¤ ¨:¢ ¢ ¨ ž°€¡£ x j¡¡¨    ¡¹  |¡¹||¡¹|  ¡¹ k¡¡¨ x jŸ¡ ¦Ê ‚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ Ĥ¡š¬ ¤¡š¬ Ȥ¡šœ È°¤¡š x jª º ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ ÈĤ¡š x jŸ ¤n ê ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL ØĤ¡š ؤ¡š x jŸ¡ ¦” „ ¢ ¥ ¨Ÿ¡ ¦x  ¢ ¥ ¨ÄÈs„ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á TRec2V[2]– k˜  ¤|¡š x jª ê ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ øĤ¡šœ ø°¤¡š x jŸ¡ ¦Œ ô ¢ ¥ ¨Ÿ¡ ¦x  ¢ ¥ ¨Ä^¯ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á TRec2V[0]– k x jŸ¡ ¦Ê 2 ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ @Ĥ¡š x jªâ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ðĤ¡š x jŸ¡ ¦Œ < ¢ ¥ ¨Ÿ¡ ¦8  ¢ ¥ ¨ÄV‚µ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁTInv[1]– k¬ @¤¡šœ @°¤¡š¬ð¤¡šÌ¨è¤¡šÌ€è¤¡š x jŸ¡ ¦”Ô ¢ ¥ ¨Ÿ¡ ¦|  ¢ ¥ ¨Ä™’ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á ArbReqOut– kÀ°ð¤¡šÀH𤡚Àx𤡚À¨ð¤¡šÀ€ð¤¡šÀ𤡚À 𤡚 x j\, ¢ ¨  ŠÅxeroxÅ pressfontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁArbiter– kp¸°¤¡š x jˆ¬ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nLongGrant– k x jŸ¡ ¦ˆ ¢ ¥ ¨Ÿ¡ ¦   ¢ ¥ ¨Ä/#’ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nStartGrant– k˜ °¤¡š x jŸ¡ ¦Æ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¤ Ĥ¡šÌ(Ȥ¡š x jª ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨(Ĥ¡š x jŸ¡ ¦” ¢ ¥ ¨Ÿ¡ ¦œ  ¢ ¥ ¨Ä‹ëÞ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á OtherArbInT– kœ(°¤¡š x jŸ¡ ¦  ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– kè(Ĥ¡šó:¢¢¡šô8¢¢¡šõ6¢¢¡šö4¢¢¡š÷2¢¢¡šø0¢¢¡šù.¢¢¡šú,¢¢¡šû*¢¢¡šü(¢¢¡šý&¢¢¡šþ$¢¢¡šÿ"¢¢¡š ¢¢¡š¢¢¡š¢¢¡š¢¢¡š¢¢¡š x j,ª ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k ÈĤ¡š7Ú¢¢¡š6Ø¢¢¡š5Ö¢¢¡š4Ô¢¢¡š3Ò¢¢¡š2Т¢¡š1΢¢¡š0Ì¢¢¡š/Ê¢¢¡š.È¢¢¡š-Æ¢¢¡š,Ä¢¢¡š+¢¢¡š*À¢¢¡š)¾¢¢¡š(¼¢¢¡š'º¢¢¡š&¸¢¢¡šp °¤¡š è¤¡š x jˆœ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnGrant– k x jŸ¡ ¦rº ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPÈĤ¡š x jˆ¼ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nRequestOut– kpÈ°¤¡šPÈÀ¤¡š x j¡Ÿ ¦R² ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP Ä¤¡šÈ褡šÌxȤ¡š x jªj ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨xĤ¡š x jŸ¡ ¦”l ¢ ¥ ¨Ÿ¡ ¦œ  ¢ ¥ ¨Ä‹ëÞ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á OtherArbInT– kœx°¤¡š x jŸ¡ ¦Z ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– kèxĤ¡šóŠ¢¢¡šôˆ¢¢¡šõ†¢¢¡šö„¢¢¡š÷‚¢¢¡šø€¢¢¡šù~¢¢¡šú|¢¢¡šûz¢¢¡šüx¢¢¡šýv¢¢¡šþt¢¢¡šÿr¢¢¡šp¢¢¡šn¢¢¡šl¢¢¡šj¢¢¡šh¢¢¡šÌPȤ¡š x jªB ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨PĤ¡š x jŸ¡ ¦”D ¢ ¥ ¨Ÿ¡ ¦œ  ¢ ¥ ¨Ä‹ëÞ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á OtherArbInT– kœP°¤¡š x jŸ¡ ¦2 ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– kèPĤ¡šób¢¢¡šô`¢¢¡šõ^¢¢¡šö\¢¢¡š÷Z¢¢¡šøX¢¢¡šùV¢¢¡šúT¢¢¡šûR¢¢¡šüP¢¢¡šýN¢¢¡šþL¢¢¡šÿJ¢¢¡šH¢¢¡šF¢¢¡šD¢¢¡šB¢¢¡š@¢¢¡šÌȤ¡š x jªò ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨Ä¤¡š x jŸ¡ ¦”ô ¢ ¥ ¨Ÿ¡ ¦œ  ¢ ¥ ¨Ä‹ëÞ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á OtherArbInT– kœ°¤¡š x jŸ¡ ¦â ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– kèĤ¡šó¢¢¡šô¢¢¡šõ¢¢¡šö ¢¢¡š÷ ¢¢¡šø¢¢¡šù¢¢¡šú¢¢¡šû¢¢¡šü¢¢¡šýþ¢¢¡šþü¢¢¡šÿú¢¢¡šø¢¢¡šö¢¢¡šô¢¢¡šò¢¢¡šð¢¢¡šÌØȤ¡š x jªÊ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ØĤ¡š x jŸ¡ ¦”Ì ¢ ¥ ¨Ÿ¡ ¦œ  ¢ ¥ ¨Ä‹ëÞ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á OtherArbInT– kœØ°¤¡š x jŸ¡ ¦º ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– kèØĤ¡šóꢢ¡šô袢¡šõ梢¡šö䢢¡š÷⢢¡šøࢢ¡šùÞ¢¢¡šúÜ¢¢¡šûÚ¢¢¡šüØ¢¢¡šýÖ¢¢¡šþÔ¢¢¡šÿÒ¢¢¡šÐ¢¢¡šÎ¢¢¡šÌ¢¢¡šÊ¢¢¡šÈ¢¢¡šÌ°È¤¡š x jª¢ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨°Ä¤¡š x jŸ¡ ¦”¤ ¢ ¥ ¨Ÿ¡ ¦œ  ¢ ¥ ¨Ä‹ëÞ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á OtherArbInT– kœ°°¤¡š x jŸ¡ ¦’ ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– kè°Ä¤¡šó¢¢¡šôÀ¢¢¡šõ¾¢¢¡šö¼¢¢¡š÷º¢¢¡šø¸¢¢¡šù¶¢¢¡šú´¢¢¡šû²¢¢¡šü°¢¢¡šý®¢¢¡šþ¬¢¢¡šÿª¢¢¡š¨¢¢¡š¦¢¢¡š¤¢¢¡š¢¢¢¡š ¢¢¡šÌˆÈ¤¡š x jªz ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ˆÄ¤¡š x jŸ¡ ¦”| ¢ ¥ ¨Ÿ¡ ¦œ  ¢ ¥ ¨Ä‹ëÞ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á OtherArbInT– kœˆ°¤¡š x jŸ¡ ¦j ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– kèˆÄ¤¡šóš¢¢¡šô˜¢¢¡šõ–¢¢¡šö”¢¢¡š÷’¢¢¡šø¢¢¡šùŽ¢¢¡šúŒ¢¢¡šûŠ¢¢¡šüˆ¢¢¡šý†¢¢¡šþ„¢¢¡šÿ‚¢¢¡š€¢¢¡š~¢¢¡š|¢¢¡šz¢¢¡šx¢¢¡š x jŸ¡ ¦ ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– kðàĤ¡šûò¢¢¡šü𢢡šý¡šþ좢¡šÿꢢ¡šè¢¢¡šæ¢¢¡šä¢¢¡šâ¢¢¡šà¢¢¡šÞ¢¢¡šÜ¢¢¡šÚ¢¢¡šØ¢¢¡š Ö¢¢¡š Ô¢¢¡š Ò¢¢¡š Т¢¡š x jŒL ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nSharedIn– k x jŸ¡ ¦<| ¢ ¥ ¨Ÿ¡ ¦T  ¢ ¥ ¨Ä>T_ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnSStopIn– k x j,  ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k (Ĥ¡š7:¢¢¡š68¢¢¡š56¢¢¡š44¢¢¡š32¢¢¡š20¢¢¡š1.¢¢¡š0,¢¢¡š/*¢¢¡š.(¢¢¡š-&¢¢¡š,$¢¢¡š+"¢¢¡š* ¢¢¡š)¢¢¡š(¢¢¡š'¢¢¡š&¢¢¡šp°¤¡šè¤¡š x jˆü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnGrant– k x jŸ¡ ¦r ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP(Ĥ¡š x jˆ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nRequestOut– kp(°¤¡šP(À¤¡š x j¡Ÿ ¦R ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPĤ¡š(褡š x j,J ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k hĤ¡š7z¢¢¡š6x¢¢¡š5v¢¢¡š4t¢¢¡š3r¢¢¡š2p¢¢¡š1n¢¢¡š0l¢¢¡š/j¢¢¡š.h¢¢¡š-f¢¢¡š,d¢¢¡š+b¢¢¡š*`¢¢¡š)^¢¢¡š(\¢¢¡š'Z¢¢¡š&X¢¢¡šp@°¤¡š@褡š x jˆ< ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnGrant– k x jŸ¡ ¦rZ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPhĤ¡š x jˆ\ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nRequestOut– kph°¤¡šPhÀ¤¡š x j¡Ÿ ¦RR ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP@Ĥ¡šh褡š x j,ê ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k Ĥ¡š7¢¢¡š6¢¢¡š5¢¢¡š4¢¢¡š3¢¢¡š2¢¢¡š1¢¢¡š0 ¢¢¡š/ ¢¢¡š.¢¢¡š-¢¢¡š,¢¢¡š+¢¢¡š*¢¢¡š)þ¢¢¡š(ü¢¢¡š'ú¢¢¡š&ø¢¢¡špà°¤¡šà褡š x jˆÜ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnGrant– k x jŸ¡ ¦rú ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPĤ¡š x jˆü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nRequestOut– kp°¤¡šPÀ¤¡š x j¡Ÿ ¦Rò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPàĤ¡šè¤¡š x j,Š ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k ¨Ä¤¡š7º¢¢¡š6¸¢¢¡š5¶¢¢¡š4´¢¢¡š3²¢¢¡š2°¢¢¡š1®¢¢¡š0¬¢¢¡š/ª¢¢¡š.¨¢¢¡š-¦¢¢¡š,¤¢¢¡š+¢¢¢¡š* ¢¢¡š)ž¢¢¡š(œ¢¢¡š'š¢¢¡š&˜¢¢¡šp€°¤¡š€è¤¡š x jˆ| ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnGrant– k x jŸ¡ ¦rš ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP¨Ä¤¡š x jˆœ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nRequestOut– kp¨°¤¡šP¨À¤¡š x j¡Ÿ ¦R’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP€Ä¤¡š¨è¤¡š x j,* ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k HĤ¡š7Z¢¢¡š6X¢¢¡š5V¢¢¡š4T¢¢¡š3R¢¢¡š2P¢¢¡š1N¢¢¡š0L¢¢¡š/J¢¢¡š.H¢¢¡š-F¢¢¡š,D¢¢¡š+B¢¢¡š*@¢¢¡š)>¢¢¡š(<¢¢¡š':¢¢¡š&8¢¢¡šp °¤¡š 褡š x jˆ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnGrant– k x jŸ¡ ¦r: ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPHĤ¡š x jˆ< ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nRequestOut– kpH°¤¡šPHÀ¤¡š x j¡Ÿ ¦R2 ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP Ĥ¡šH褡š x j,Ê ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k èĤ¡š7ú¢¢¡š6ø¢¢¡š5ö¢¢¡š4ô¢¢¡š3ò¢¢¡š2𢢡š1¡š0좢¡š/ꢢ¡š.袢¡š-梢¡š,䢢¡š+⢢¡š*ࢢ¡š)Þ¢¢¡š(Ü¢¢¡š'Ú¢¢¡š&Ø¢¢¡špÀ°¤¡šÀ褡š x jˆ¼ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnGrant– k x jŸ¡ ¦rÚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPèĤ¡š x jˆÜ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nRequestOut– kpè°¤¡šPèÀ¤¡š x j¡Ÿ ¦RÒ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPÀĤ¡šè褡š x j,j ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k ˆÄ¤¡š7š¢¢¡š6˜¢¢¡š5–¢¢¡š4”¢¢¡š3’¢¢¡š2¢¢¡š1Ž¢¢¡š0Œ¢¢¡š/Š¢¢¡š.ˆ¢¢¡š-†¢¢¡š,„¢¢¡š+‚¢¢¡š*€¢¢¡š)~¢¢¡š(|¢¢¡š'z¢¢¡š&x¢¢¡šp`°¤¡š`褡š x jˆ\ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnGrant– k x jŸ¡ ¦rz ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPˆÄ¤¡š x jˆ| ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nRequestOut– kpˆ°¤¡šPˆÀ¤¡š x j¡Ÿ ¦Rr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP`Ĥ¡šˆè¤¡š x jˆ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnOwnerIn– k x jJz ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHˆÄ¤¡šˆ¤¡špˆ°¤¡š x j¡Ÿ ¦Rj ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPXĤ¡štX°¤¡š x jäú ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á8– kØĤ¡šï*¢¢¡šî(¢¢¡ší&¢¢¡šì$¢¢¡šë"¢¢¡šê ¢¢¡šé¢¢¡šè¢¢¡šç¢¢¡šæ¢¢¡šå¢¢¡šä¢¢¡šã¢¢¡šâ¢¢¡šá¢¢¡šà ¢¢¡šß ¢¢¡šÞ¢¢¡š x j¡Ÿ ¦ª* ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨Ä¤¡š x jŸ¡ ¦  ¢ ¥ ¨Ÿ¡ ¦ˆ  ¢ ¥ ¨ÄeY¼ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nBSharedIn– k˜°¤¡š x jŸ¡ ¦t ¢ ¥ ¨Ÿ¡ ¦p  ¢ ¥ ¨Ä&•À ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nBSStopIn– k x j¡Ÿ ¦ªŠ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨xĤ¡š x jŸ ¤n  ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL Ĥ¡š ¤¡š x j¡Ÿ ¦N ò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL àĤ¡š x jŸ¡ ¦4 b ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Ä ´= ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k €Ä¤¡š' ’¢¢¡š( ¢¢¡š) Ž¢¢¡š* Œ¢¢¡š+ Š¢¢¡š, ˆ¢¢¡š- †¢¢¡š. „¢¢¡š/ ‚¢¢¡š0 €¢¢¡š1 ~¢¢¡š2 |¢¢¡š3 z¢¢¡š4 x¢¢¡š5 v¢¢¡š6 t¢¢¡š7 r¢¢¡š8 p¢¢¡š x jŸ ¤n  ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL °Ä¤¡š x jŸ¡ ¦4 ’ ¢ ¥ ¨Ÿ¡ ¦¸  ¢ ¥ ¨ÄåOE ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á4– k °Ä¤¡š' ¢¢¡š( À¢¢¡š) ¾¢¢¡š* ¼¢¢¡š+ º¢¢¡š, ¸¢¢¡š- ¶¢¢¡š. ´¢¢¡š/ ²¢¢¡š0 °¢¢¡š1 ®¢¢¡š2 ¬¢¢¡š3 ª¢¢¡š4 ¨¢¢¡š5 ¦¢¢¡š6 ¤¢¢¡š7 ¢¢¢¡š8  ¢¢¡š x j¡Ÿ ¦ª’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨€Ä¤¡š 褡š x j¡Ÿ ¦N " ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL Ĥ¡š x jŸ¡ ¦4 ò ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Ä3 ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á5– k Ĥ¡š' "¢¢¡š( ¢¢¡š) ¢¢¡š* ¢¢¡š+ ¢¢¡š, ¢¢¡š- ¢¢¡š. ¢¢¡š/ ¢¢¡š0 ¢¢¡š1 ¢¢¡š2 ¢¢¡š3 ¢¢¡š4 ¢¢¡š5 ¢¢¡š6 ¢¢¡š7 ¢¢¡š8 ¢¢¡š x j¡Ÿ ¦N: ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL(Ĥ¡š x jŸ ¤rÊ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP¸Ä¤¡št¸°¤¡š x jŸ ¤Êº ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨¨Ä¤¡š x jäZ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á8– kØxĤ¡šïŠ¢¢¡šîˆ¢¢¡ší†¢¢¡šì„¢¢¡šë‚¢¢¡šê€¢¢¡šé~¢¢¡šè|¢¢¡šçz¢¢¡šæx¢¢¡šåv¢¢¡šät¢¢¡šãr¢¢¡šâp¢¢¡šán¢¢¡šàl¢¢¡šßj¢¢¡šÞh¢¢¡š˜¨°¤¡š x jŸ¡ ¦¤ ¢ ¥ ¨Ÿ¡ ¦˜  ¢ ¥ ¨Äd0“ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nBSStopOut– k˜x°¤¡š x j¡Ÿ ¦ª’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨€Ä¤¡š x jŸ¡ ¦Ê¢ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨°Ä¤¡šÌ°è¤¡š x jŸ¡ ¦¤ ¢ ¥ ¨Ÿ¡ ¦¤  ¢ ¥ ¨Ä'à— ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nBOwnerOut– k˜€°¤¡š x jŸ¡ ¦t ¢ ¥ ¨Ÿ¡ ¦|  ¢ ¥ ¨Ä ?• ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nBOwnerIn– kp(°¤¡šp@°¤¡š x jˆ4 ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nOwnerOut– k x jŸ¡ ¦< ¢ ¥ ¨Ÿ¡ ¦°  ¢ ¥ ¨Ä.§ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nBSharedOut– kœ€°¤¡šœà°¤¡š˜°°¤¡š˜H°¤¡š x jˆ ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁClock– kœ°°¤¡š x jŸ¡ ¦” < ¢ ¥ ¨Ÿ¡ ¦,  ¢ ¥ ¨Ä8§ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁTIOBus– kœ H°¤¡š x jˆ t ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á BdVersion– kp €°¤¡š x jˆ ¤ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁSlotNo– kp °°¤¡š x jˆ Ô ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁDBdSel– kp à°¤¡š x jˆ  ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nDHybridSel– kp °¤¡šp °¤¡š x jˆ , ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁCKOut– kp 8°¤¡š€x¼¤¡špè°¤¡š x jRÚ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPèĤ¡š¸è¤¡šÌàȤ¡š x jŸ¡ ¦ÊÒ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨àĤ¡š x jRª ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP¸Ä¤¡šè褡š˜H°¤¡š x jŸ ¤ÊZ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨HĤ¡š x jŸ ¤Ê ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨°Ä¤¡š˜°°¤¡šp@°¤¡š x jŸ ¤nR ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL@Ĥ¡š x jŸ¡ ¦8š ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Ä'b ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á8– k ¸Ä¤¡š+Ê¢¢¡š,È¢¢¡š-Æ¢¢¡š.Ä¢¢¡š/¢¢¡š0À¢¢¡š1¾¢¢¡š2¼¢¢¡š3º¢¢¡š4¸¢¢¡š5¶¢¢¡š6´¢¢¡š7²¢¢¡š8°¢¢¡š9®¢¢¡š:¬¢¢¡š;ª¢¢¡š<¨¢¢¡š à褡š °è¤¡š €è¤¡š x jŸ ¤n ’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL €Ä¤¡š x j¡Ÿ ¦N J ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL 8Ĥ¡š x jŸ¡ ¦8Ê ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Ä'b ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á8– k èĤ¡š+ú¢¢¡š,ø¢¢¡š-ö¢¢¡š.ô¢¢¡š/ò¢¢¡š0𢢡š1¡š2좢¡š3ꢢ¡š4袢¡š5梢¡š6䢢¡š7⢢¡š8ࢢ¡š9Þ¢¢¡š:Ü¢¢¡š;Ú¢¢¡š<Ø¢¢¡š x j„Ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nSStopOut– k x j„¬ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nSharedOut– ktè°¤¡š x jŸ ¤rú ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPèĤ¡š¸ô¤¡šèô¤¡šXô¤¡š(𤡚 ð𤡚 ô¤¡š€ô¤¡š x jŸ ¤r r ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP `Ĥ¡š À褡š 褡š x jŸ¡ ¦r ² ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP ÀĤ¡šp À°¤¡šp °¤¡šp 𰤡št€°¤¡št °¤¡špP°¤¡š x jŸ¡ ¦rB ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kPPĤ¡š `¤¡šp `°¤¡šP¤¡š x jŒ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnDReset– k x jŸ ¤n ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kL ðĤ¡š x jˆ ä ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnDFreeze– k x jˆ ´ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁDExecute– k x jˆ „ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁDAddress– k x jˆ T ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁDShiftCK– k x jŒD ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á DSerialIn– k x jŸ¡ ¦lt ¢ ¥ ¨Ÿ¡ ¦€  ¢ ¥ ¨ÄRS ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á DSerialOut– k@𤡚 x jˆÜ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á nHiPGrant– k€  ¼¤¡šÌ È¤¡š x jª’ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ Ä¤¡š x jŸ¡ ¦”” ¢ ¥ ¨Ÿ¡ ¦œ  ¢ ¥ ¨Ä‹ëÞ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á OtherArbInT– kœ °¤¡š x jŸ¡ ¦‚ ¢ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– kè Ä¤¡šó²¢¢¡šô°¢¢¡šõ®¢¢¡šö¬¢¢¡š÷ª¢¢¡šø¨¢¢¡šù¦¢¢¡šú¤¢¢¡šû¢¢¢¡šü ¢¢¡šýž¢¢¡šþœ¢¢¡šÿš¢¢¡š˜¢¢¡š–¢¢¡š”¢¢¡š’¢¢¡š¢¢¡šÌx褡šÌH褡šÌ褡šÌ°è¤¡šÌ€è¤¡šÌ 褡šÌˆè¤¡šÌ°è¤¡šÌØ褡šÌ褡šÌ(褡šÌP褡šÌx褡šÌ è¤¡š x jŸ¡ ¦”ä ¢ ¥ ¨Ÿ¡ ¦\  ¢ ¥ ¨Ä! § ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnStopAct– kœð°¤¡š x jŸ¡ ¦”t ¢ ¥ ¨Ÿ¡ ¦<  ¢ ¥ ¨Ä|ã@ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnBusyIn– k x jŸ¡ ¦”¤ ¢ ¥ ¨Ÿ¡ ¦d  ¢ ¥ ¨ÄÕK ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁnBusyOut– k¬ p¤¡šœ p°¤¡š x jŸ¡ ¦Œ l ¢ ¥ ¨Ÿ¡ ¦8  ¢ ¥ ¨ÄÚK ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁTInv[0]– k x jª b ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ pĤ¡šœ °¤¡šœ °¤¡š x jŸ¡ ¦” ¼ ¢ ¥ ¨Ÿ¡ ¦x  ¢ ¥ ¨ÄÈs„ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á TRec2V[1]– k¬ ø¤¡š€  ¤|¡šp Ø°¤¡š x jˆ Ì ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁRecAdj– k 8¤¡š  H¤¡š x jÜ * ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á6– kÐ HĤ¡šç Z¢¢¡šæ X¢¢¡šå V¢¢¡šä T¢¢¡šã R¢¢¡šâ P¢¢¡šá N¢¢¡šà L¢¢¡šß J¢¢¡šÞ H¢¢¡šÝ F¢¢¡šÜ D¢¢¡šÛ B¢¢¡šÚ @¢¢¡šÙ >¢¢¡šØ <¢¢¡š× :¢¢¡šÖ 8¢¢¡š x jŸ¡ ¦Ê : ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨ HĤ¡š x jŸ ¤r2 ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP Ĥ¡š x jŸ¡ ¦r ‚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP Ĥ¡š x j¡Ÿ ¦R’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kP€Ä¤¡š k é k é k g•Artwork Interpress•Bounds80.0 mm xmin 0.0 mm ymin 107.95 mm xmax 177.0944 mm ymax –Ô179.9167 mm topLeading 179.9167 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šÏn3™3IartworkCaption˜UšÐbtÏt&™.S–centered lastLineFormattingš¦™—— ˜T•GGFileáòGargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/ArbBlockDiagram.gargoyle at January 21, 1988 9:43:45 am PST Produced by version 8710.19 Scripts: ///Users/bland.pa/gargoyle/bland880112-09-19-43.script, ///Users/bland.pa/gargoyle/bland880112-10-15-44.script, ///Users/bland.pa/gargoyle/bland880112-10-45-11.script, ///Users/bland.pa/gargoyle/bland880112-10-56-15.script, ///Users/bland.pa/gargoyle/bland880112-11-01-09.script, ///Users/bland.pa/gargoyle/bland880112-11-09-30.script, ///Users/bland.pa/gargoyle/bland880112-11-15-57.script, ///Users/bland.pa/gargoyle/bland880112-11-32-37.script, ///Users/bland.pa/gargoyle/bland880112-11-38-07.script, ///Users/bland.pa/gargoyle/bland880112-11-57-58.script, ///Users/bland.pa/gargoyle/bland880112-12-05-05.script, ///Users/bland.pa/gargoyle/bland880112-12-11-56.script, ///Users/bland.pa/gargoyle/bland880112-14-00-46.script, ///Users/bland.pa/gargoyle/bland880112-14-01-09.script, ///Users/bland.pa/gargoyle/bland880114-09-21-10.script, ///Users/bland.pa/gargoyle/bland880114-09-27-29.script, ///Users/bland.pa/gargoyle/bland880114-09-32-06.script, ///Users/bland.pa/gargoyle/bland880114-09-38-05.script, ///Users/bland.pa/gargoyle/bland880114-09-43-46.script, ///Users/bland.pa/gargoyle/bland880114-09-47-49.script, ///Users/bland.pa/gargoyle/bland880114-14-30-12.script, ///Users/bland.pa/gargoyle/bland880114-14-35-02.script, ///Users/bland.pa/gargoyle/bland880121-09-24-31.script, ///Users/bland.pa/gargoyle/bland880121-09-29-59.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.33 0.33] [F 0.25 0.25] [F 0.24 0.24] [F 0.2 0.2] [F 0.15 0.15] [F 0.12 0.12] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: F GravityExtent: 0.1736111 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [7.5 7.5] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: T [404.0,493.0] Entities: [160]: Text T "DBus Functions" xerox/pressfonts/Helvetica [0.0 -6.754093 317.3951 6.754093 0.0 382.0653][] F 1.0 props: ( F ) Box [-169.0,221.0] [-51.0,292.0] [0.0 -0.4824351 567.5498 0.4824351 0.0 486.4673] strokeWidths: ( 2.0 2.0 2.0 2.0 ) strokeEnds: ( round round round round ) strokeColors: ( [1 1.0] [1 1.0] [1 1.0] [1 1.0] ) fillColor: [] dashes: ( F F F F ) props: ( ( F ) ( F ) ( F ) ( 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 [443.8053,378.8843] (Line ) [443.8053,404.9357] Text T "Counters " xerox/pressfonts/Helvetica [0.0 -6.754093 449.8357 6.754093 0.0 336.6586][] F 1.0 props: ( F ) Text T "Identify Best" xerox/pressfonts/Helvetica [0.0 -6.754093 443.5207 6.754093 0.0 414.2252][] F 1.0 props: ( F ) Text T "Local Request" xerox/pressfonts/Helvetica [0.0 -6.754093 450.0212 6.754093 0.0 410.9227][] F 1.0 props: ( F ) Text T "Best Global" xerox/pressfonts/Helvetica [0.0 -6.754093 396.4733 6.754093 0.0 531.7716][] F 1.0 props: ( F ) Text T "Request" xerox/pressfonts/Helvetica [0.0 -6.754093 403.0395 6.754093 0.0 536.6406][] F 1.0 props: ( F ) Box [-169.0,221.0] [-51.0,292.0] [0.0 -0.4824351 518.8238 0.4824351 0.0 602.2518] strokeWidths: ( 2.0 2.0 2.0 2.0 ) strokeEnds: ( round round round round ) strokeColors: ( [1 1.0] [1 1.0] [1 1.0] [1 1.0] ) fillColor: [] dashes: ( F F F F ) props: ( ( F ) ( F ) ( F ) ( F ) ) Box [-169.0,221.0] [-51.0,292.0] [0.0 -0.4824351 567.5498 0.4824351 0.0 403.9709] strokeWidths: ( 2.0 2.0 2.0 2.0 ) strokeEnds: ( round round round round ) strokeColors: ( [1 1.0] [1 1.0] [1 1.0] [1 1.0] ) fillColor: [] dashes: ( F F F F ) props: ( ( F ) ( F ) ( F ) ( F ) ) Text T "Device Request" xerox/pressfonts/Helvetica [0.0 -6.754093 442.8403 6.754093 0.0 325.9421][] F 1.0 props: ( F ) Box [-169.0,221.0] [-51.0,292.0] [0.0 -0.4824351 438.7832 0.4824351 0.0 459.7983] strokeWidths: ( 2.0 2.0 2.0 2.0 ) strokeEnds: ( round round round round ) strokeColors: ( [1 1.0] [1 1.0] [1 1.0] [1 1.0] ) fillColor: [] dashes: ( F F F F ) props: ( ( F ) ( F ) ( F ) ( F ) ) Box [-169.0,221.0] [-51.0,292.0] [0.0 -0.4824351 518.8238 0.4824351 0.0 446.1742] strokeWidths: ( 2.0 2.0 2.0 2.0 ) strokeEnds: ( round round round round ) strokeColors: ( [1 1.0] [1 1.0] [1 1.0] [1 1.0] ) fillColor: [] dashes: ( F F F F ) props: ( ( F ) ( F ) ( F ) ( F ) ) Box [-169.0,253.3594] [-51.0,325.128] [0.0 -0.4824351 534.2619 0.4824351 0.0 685.7128] strokeWidths: ( 2.0 2.0 2.0 2.0 ) strokeEnds: ( round round round round ) strokeColors: ( [1 1.0] [1 1.0] [1 1.0] [1 1.0] ) fillColor: [] dashes: ( F F F F ) props: ( ( F ) ( F ) ( F ) ( F ) ) Box [-169.0,221.0] [-51.0,292.0] [0.0 -0.4824351 567.5498 0.4824351 0.0 642.9114] strokeWidths: ( 2.0 2.0 2.0 2.0 ) strokeEnds: ( round round round round ) strokeColors: ( [1 1.0] [1 1.0] [1 1.0] [1 1.0] ) fillColor: [] dashes: ( F F F F ) props: ( ( F ) ( F ) ( F ) ( 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 [377.4704,604.1815] (Line ) [393.0939,604.1815] Text T "Identify" xerox/pressfonts/Helvetica [0.0 -6.754093 390.0137 6.754093 0.0 538.5703][] F 1.0 props: ( F ) Text T "Make Local" xerox/pressfonts/Helvetica [0.0 -6.754093 393.8732 6.754093 0.0 374.2915][] F 1.0 props: ( F ) Text T "Grant" xerox/pressfonts/Helvetica [0.0 -6.754093 401.5922 6.754093 0.0 384.905][] F 1.0 props: ( F ) Text T "Update" xerox/pressfonts/Helvetica [0.0 -6.754093 440.187 6.754093 0.0 579.2299][] F 1.0 props: ( F ) Text T "Precedence" xerox/pressfonts/Helvetica [0.0 -6.754093 446.1982 6.754093 0.0 572.2425][] F 1.0 props: ( F ) Text T "Information" xerox/pressfonts/Helvetica [0.0 -6.754093 452.3182 6.754093 0.0 573.1889][] F 1.0 props: ( F ) Box [-169.0,221.0] [-51.0,292.0] [0.0 -0.4824351 661.878 0.4824351 0.0 458.9685] strokeWidths: ( 2.0 2.0 2.0 2.0 ) strokeEnds: ( round round round round ) strokeColors: ( [1 1.0] [1 1.0] [1 1.0] [1 1.0] ) fillColor: [] dashes: ( F F F F ) props: ( ( F ) ( F ) ( F ) ( F ) ) Text T "OR Functions" xerox/pressfonts/Helvetica [0.0 -6.754093 540.2922 6.754093 0.0 383.9942][] 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 [538.242,377.0751] (Line ) [538.242,338.7215] Text T "Shared" xerox/pressfonts/Helvetica [0.0 -6.754093 536.9151 6.754093 0.0 341.421][] 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 [548.8676,377.3163] (Line ) [548.8676,338.9627] Text T "Owner" xerox/pressfonts/Helvetica [0.0 -6.754093 547.2876 6.754093 0.0 341.0592][] 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 [528.0023,377.437] (Line ) [528.0023,339.0834] Text T "SStop" xerox/pressfonts/Helvetica [0.0 -6.754093 526.4872 6.754093 0.0 341.4068][] 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 [407.555,520.7202] (Line ) [407.555,497.5633] 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 [403.3869,520.7202] (Line ) [403.3869,497.5633] 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 [398.7652,520.7202] (Line ) [398.7652,497.5633] 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 [411.7233,520.7202] (Line ) [411.7233,497.5633] 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 [390.4286,520.7202] (Line ) [390.4286,497.5633] 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 [386.2604,520.7202] (Line ) [386.2604,497.5633] 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 [381.6387,520.7202] (Line ) [381.6387,497.5633] 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 [442.7847,682.471] (Line ) [442.7847,618.3071] 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 [306.7021,378.2668] (Line ) [306.7021,305.9015] 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 [323.375,357.522] (Line ) [323.375,361.0342] 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 [306.7021,435.1942] (Line ) [306.7021,740.2281] 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 [395.0793,577.165] (Line ) [395.0793,603.2166] 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 [323.375,435.1942] (Line ) [323.375,458.4186] 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 [377.9528,550.1485] (Line ) [361.7912,550.1485] (Line ) [362.0325,392.9477] (Line ) [378.1941,392.9477] 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 [426.6788,589.8436] (Line ) [426.6788,589.8436] 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 [426.6788,589.8436] (Line ) [426.6788,589.8436] 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 [426.6788,589.8436] (Line ) [426.6788,589.8436] 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 [426.6788,589.8436] (Line ) [422.0957,589.8436] (Line ) [422.0957,458.4186] (Line ) [323.375,458.4186] 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 [394.7205,661.1088] (Line ) [394.7205,682.471] (Line ) [442.7847,682.471] 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 [323.375,378.2668] (Line ) [323.375,336.43] (Line ) [426.6788,336.43] 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 [443.8053,561.3798] (Line ) [443.8053,549.1838] (Line ) [412.2058,549.1838] 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 [393.8732,364.6428] (Line ) [393.8732,350.903] (Line ) [426.6788,350.903] 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 [350.6952,380.757] (Line ) [350.6952,740.2281] 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 [425.9551,302.6595] (CubicSpline Type: BSpline 1 [414.1355,301.6947] ) [410.7584,305.7953] Text T "inputs from" xerox/pressfonts/Helvetica [0.0 -4.824351 406.0753 4.824351 0.0 307.4085][] F 1.0 props: ( F ) Text T "8 requesting " xerox/pressfonts/Helvetica [0.0 -4.824351 410.8222 4.824351 0.0 307.1672][] F 1.0 props: ( F ) Text T "DPriority" xerox/pressfonts/Helvetica [0.0 -4.824351 320.7843 4.824351 0.0 341.2544][] F 1.0 props: ( F ) Text T "ArbNo" xerox/pressfonts/Helvetica [0.0 -4.824351 320.7843 4.824351 0.0 439.6711][] 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 [395.0793,520.7202] (Line ) [395.0793,497.5633] 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 [443.8053,461.8631] (Line ) [443.8053,478.7484] (Line ) [395.0793,478.7484] (Line ) [395.0793,497.5633] 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 [414.6179,501.664] (CubicSpline Type: BSpline 1 [426.4375,500.6991] ) [429.8146,504.7998] Text T "best request" xerox/pressfonts/Helvetica [0.0 -4.824351 428.1261 4.824351 0.0 506.4883][] F 1.0 props: ( F ) Text T "from each of" xerox/pressfonts/Helvetica [0.0 -4.824351 432.8728 4.824351 0.0 506.2472][] F 1.0 props: ( F ) Text T "the 8 arbiters" xerox/pressfonts/Helvetica [0.0 -4.824351 437.456 4.824351 0.0 506.217][] F 1.0 props: ( F ) Text T "DBus" xerox/pressfonts/Helvetica [0.0 -4.824351 304.3815 4.824351 0.0 342.2192][] F 1.0 props: ( F ) Text T "nDHybridSel" xerox/pressfonts/Helvetica [0.0 -4.824351 304.3815 4.824351 0.0 440.636][] F 1.0 props: ( F ) Text T "nBusyOut" xerox/pressfonts/Helvetica [0.0 -4.824351 348.8779 4.824351 0.0 463.377][] 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 [528.0023,474.8889] (Line ) [528.0023,434.3643] 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 [538.1336,474.8889] (Line ) [538.1336,434.3643] 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 [548.747,474.8889] (Line ) [548.747,434.3643] 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 [300.7632,336.0681] (Line ) [311.8592,328.3493] Text T "7" xerox/pressfonts/Helvetica [0.0 -6.754093 304.8952 6.754093 0.0 327.4144][] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [348.5955,417.2649] (Line Tools ) [350.4146,424.791] (Line Tools ) [352.2336,417.2649] (Line Tools ) [350.4146,418.1333] (Line Tools ) [348.5955,417.2649] 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 [407.8447,411.9156] (Line Tools ) [407.8447,411.9156] 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 [407.8447,423.0116] (Line Tools ) [407.8447,423.0116] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [306.9044,483.4762] (Line Tools ) [305.0854,482.6079] (Line Tools ) [306.9044,490.1338] (Line Tools ) [308.7234,482.6079] (Line Tools ) [306.9044,483.4762] 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 [361.6948,501.9824] (Line ) [364.5848,507.7623] (Line ) [361.6948,506.3173] (Line ) [358.8047,507.7623] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [447.4476,473.9143] (Line ) [446.3187,473.9143] (Line ) [446.3187,463.7542] (Line ) [447.4476,463.7542] 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 [361.9868,418.4504] (Line ) [364.8768,424.2305] (Line ) [361.9868,422.7854] (Line ) [359.0967,424.2305] (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 [394.1144,355.2519] (Line ) [397.0044,361.0319] (Line ) [394.1144,359.5869] (Line ) [391.2244,361.0319] (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 [357.4532,380.757] (Line ) [363.2332,383.6469] (Line ) [361.7882,380.757] (Line ) [363.2332,377.867] (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 [459.1982,392.9477] (Line ) [453.4182,395.8376] (Line ) [454.8632,392.9477] (Line ) [453.4182,390.0577] (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.6972,509.547] (Line ) [309.5872,503.767] (Line ) [306.6972,505.212] (Line ) [303.8072,503.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 [381.7158,517.9896] (Line ) [384.6058,512.2097] (Line ) [381.7158,513.6546] (Line ) [378.8258,512.2097] (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 [386.0577,518.5926] (Line ) [388.9477,512.8127] (Line ) [386.0577,514.2577] (Line ) [383.1678,512.8127] (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 [390.5203,518.472] (Line ) [393.4103,512.6921] (Line ) [390.5203,514.137] (Line ) [387.6303,512.6921] (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 [394.7416,518.7132] (Line ) [397.6315,512.9333] (Line ) [394.7416,514.3783] (Line ) [391.8516,512.9333] (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 [398.601,518.7132] (Line ) [401.491,512.9333] (Line ) [398.601,514.3783] (Line ) [395.7111,512.9333] (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.1843,518.472] (Line ) [406.0742,512.6921] (Line ) [403.1843,514.137] (Line ) [400.2943,512.6921] (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.2849,518.7132] (Line ) [410.1749,512.9333] (Line ) [407.2849,514.3783] (Line ) [404.3949,512.9333] (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.6268,518.472] (Line ) [414.5168,512.6921] (Line ) [411.6268,514.137] (Line ) [408.7368,512.6921] (Line ) 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 [455.3161,322.4393] (Line ) [455.3161,299.2824] 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 [451.1479,322.4393] (Line ) [451.1479,299.2824] 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 [446.5261,322.4393] (Line ) [446.5261,299.2824] 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 [459.4843,322.4393] (Line ) [459.4843,299.2824] 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 [438.1897,322.4393] (Line ) [438.1897,299.2824] 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 [434.0214,322.4393] (Line ) [434.0214,299.2824] 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 [429.3997,322.4393] (Line ) [429.3997,299.2824] 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 [442.8403,322.4393] (Line ) [442.8403,299.2824] 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 [429.4769,319.7088] (Line ) [432.3668,313.9288] (Line ) [429.4769,315.3738] (Line ) [426.587,313.9288] (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 [433.8189,320.3118] (Line ) [436.7089,314.5318] (Line ) [433.8189,315.9768] (Line ) [430.9288,314.5318] (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 [438.2813,320.1912] (Line ) [441.1713,314.4113] (Line ) [438.2813,315.8562] (Line ) [435.3914,314.4113] (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 [442.5026,320.4324] (Line ) [445.3927,314.6525] (Line ) [442.5026,316.0974] (Line ) [439.6126,314.6525] (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 [446.362,320.4324] (Line ) [449.2522,314.6525] (Line ) [446.362,316.0974] (Line ) [443.4721,314.6525] (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 [450.9452,320.1912] (Line ) [453.8353,314.4113] (Line ) [450.9452,315.8562] (Line ) [448.0553,314.4113] (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 [455.046,320.4324] (Line ) [457.936,314.6525] (Line ) [455.046,316.0974] (Line ) [452.156,314.6525] (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 [459.3878,320.1912] (Line ) [462.2778,314.4113] (Line ) [459.3878,315.8562] (Line ) [456.4979,314.4113] (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 [444.0682,402.2194] (Line ) [446.9582,396.4395] (Line ) [444.0682,397.8844] (Line ) [441.1782,396.4395] (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 [443.7088,473.6056] (Line ) [446.5987,467.8256] (Line ) [443.7088,469.2707] (Line ) [440.8188,467.8256] (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.1471,478.7484] (Line ) [412.927,481.6383] (Line ) [411.4821,478.7484] (Line ) [412.927,475.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 [428.3743,549.1838] (Line ) [434.1543,552.0739] (Line ) [432.7092,549.1838] (Line ) [434.1543,546.294] (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 [394.9828,592.2846] (Line ) [397.8727,586.5047] (Line ) [394.9828,587.9496] (Line ) [392.0928,586.5047] (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 [394.621,675.2635] (Line ) [397.511,669.4836] (Line ) [394.621,670.9286] (Line ) [391.731,669.4836] (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 [343.9342,458.486] (Line ) [338.1543,461.376] (Line ) [339.5992,458.486] (Line ) [338.1543,455.596] (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 [343.4518,336.43] (Line ) [337.6718,339.3199] (Line ) [339.1168,336.43] (Line ) [337.6718,333.5399] (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.5988,508.5822] (Line ) [353.4887,502.8021] (Line ) [350.5988,504.2472] (Line ) [347.7088,502.8021] (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 [424.9833,682.4566] (Line ) [419.2034,685.3466] (Line ) [420.6483,682.4566] (Line ) [419.2034,679.5666] (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 [442.7946,639.5264] (Line ) [445.6846,645.3062] (Line ) [442.7946,643.8613] (Line ) [439.9046,645.3062] (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.7479,354.5278] (Line ) [309.6379,360.3078] (Line ) [306.7479,358.8628] (Line ) [303.8579,360.3078] (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.6972,369.6408] (Line ) [309.5872,363.8608] (Line ) [306.6972,365.306] (Line ) [303.8072,363.8608] (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 [527.8742,375.7392] (Line ) [530.7643,369.9593] (Line ) [527.8742,371.4042] (Line ) [524.9842,369.9593] (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 [538.126,375.1361] (Line ) [541.016,369.3562] (Line ) [538.126,370.8012] (Line ) [535.236,369.3562] (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 [548.8601,375.1361] (Line ) [551.75,369.3562] (Line ) [548.8601,370.8012] (Line ) [545.9702,369.3562] (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 [527.8742,442.1946] (Line ) [530.7643,436.4146] (Line ) [527.8742,437.8596] (Line ) [524.9842,436.4146] (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 [538.0053,442.677] (Line ) [540.8952,436.8971] (Line ) [538.0053,438.342] (Line ) [535.1154,436.8971] (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 [548.6189,442.9183] (Line ) [551.5089,437.1383] (Line ) [548.6189,438.5832] (Line ) [545.729,437.1383] (Line ) Text T "devices" xerox/pressfonts/Helvetica [0.0 -4.824351 415.3416 4.824351 0.0 307.0014][] 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 [1 1.0] d: T F [462.8919,693.5943] (Bezier [461.2148,703.8979] [423.763,693.638] Tools ) [417.2713,700.186] (Bezier [410.7797,693.638] [373.3281,703.8979] Tools ) [371.6507,693.5943] (Bezier [373.3281,701.9725] [410.7797,692.4478] Tools ) [417.2713,699.4721] (Bezier [423.7631,692.4478] [461.2146,701.9726] Tools ) Text T "Inter-" xerox/pressfonts/Helvetica [0.0 -6.754093 410.5172 6.754093 0.0 709.3524][] F 1.0 props: ( F ) Text T "Arbiter" xerox/pressfonts/Helvetica [0.0 -6.754093 419.1889 6.754093 0.0 708.87][] 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 [1 1.0] d: T F [463.3743,288.5066] (Bezier [461.6972,278.2031] [424.2454,288.4631] Tools ) [417.7537,281.9148] (Bezier [411.2622,288.4631] [373.8105,278.2032] Tools ) [372.1332,288.5067] (Bezier [373.8105,280.1284] [411.2622,289.6532] Tools ) [417.7537,282.6289] (Bezier [424.2454,289.6531] [461.6971,280.1282] Tools ) Text T "Requesting" xerox/pressfonts/Helvetica [0.0 -6.754093 411.47 6.754093 0.0 230.7766][] F 1.0 props: ( F ) Text T "Communication" xerox/pressfonts/Helvetica [0.0 -6.754093 426.4375 6.754093 0.0 230.7766][] F 1.0 props: ( F ) Text T "Device - Arbiter" xerox/pressfonts/Helvetica [0.0 -6.754093 419.1889 6.754093 0.0 230.2942][] F 1.0 props: ( F ) Text T "Communication" xerox/pressfonts/Helvetica [0.0 -6.754093 427.3364 6.754093 0.0 709.1123][] 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 [377.9528,380.757] (Line ) [350.6952,380.757] Text T "z" xerox/pressfonts/Helvetica [0.0 -6.754093 362.0325 6.754093 0.0 392.9477][] F 1.0 props: ( F ) Text T " z" xerox/pressfonts/Helvetica [0.0 -6.754093 362.0325 6.754093 0.0 392.9477][] F 1.0 props: ( F ) Text T "z" xerox/pressfonts/Helvetica [0.0 -6.754093 362.0325 6.754093 0.0 392.9477][] F 1.0 props: ( F ) Text T " " xerox/pressfonts/Helvetica [0.0 -6.754093 362.0325 6.754093 0.0 392.9477][] F 1.0 props: ( F ) Text T "nLG (nLocalGrant)" xerox/pressfonts/Helvetica [0.0 -4.824352 359.9703 4.824352 0.0 462.9944][] F 1.0 props: ( F ) Text T "Identify" xerox/pressfonts/Helvetica [0.0 -6.754093 393.4082 6.754093 0.0 620.9669][] F 1.0 props: ( F ) Text T "Grantee" xerox/pressfonts/Helvetica [0.0 -6.754093 401.0632 6.754093 0.0 620.158][] F 1.0 props: ( F ) 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 [412.2057,392.9477] (Line ) [474.1156,392.9477] (Line ) [474.1156,325.677] 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 [474.1596,322.8163] (Line ) [477.0496,328.5962] (Line ) [474.1596,327.1513] (Line ) [471.2696,328.5962] (Line ) Text T "grants to devices" xerox/pressfonts/Helvetica [0.0 -4.824352 471.4382 4.824352 0.0 336.3869][] F 1.0 props: ( F ) Text T "4.1" xerox/pressfonts/helvetica [0.0 -5.7375 458.4332 5.7375 0.0 325.677][] F 1.0 props: ( F ) Text T "4.1.3" xerox/pressfonts/helvetica [0.0 -5.7375 410.3604 5.7375 0.0 367.0348][] F 1.0 props: ( F ) Text T "4.1.2" xerox/pressfonts/helvetica [0.0 -5.7375 458.9146 5.7375 0.0 407.1973][] F 1.0 props: ( F ) Text T "4.2.1" xerox/pressfonts/helvetica [0.0 -5.7375 409.4732 5.7375 0.0 523.812][] F 1.0 props: ( F ) Text T "4.2.2" xerox/pressfonts/helvetica [0.0 -5.7375 409.8556 5.7375 0.0 607.962][] F 1.0 props: ( F ) Text T "4.3" xerox/pressfonts/helvetica [0.0 -5.7375 329.9132 5.7375 0.0 380.757][] F 1.0 props: ( F ) Text T "4.4" xerox/pressfonts/helvetica [0.0 -5.7375 552.9107 5.7375 0.0 380.757][] F 1.0 props: ( F ) Text T "4.2" xerox/pressfonts/helvetica [0.0 -5.7375 434.4346 5.7375 0.0 709.1153][] F 1.0 props: ( F ) Text T "4.1" xerox/pressfonts/helvetica [0.0 -5.7375 433.5707 5.7375 0.0 231.1994][] F 1.0 props: ( F ) Text T "4.2.1" xerox/pressfonts/helvetica [0.0 -5.7375 459.1982 5.7375 0.0 563.9743][] 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 [468.7632,389.0681] (Line ) [479.8592,381.3493] Text T "8" xerox/pressfonts/Helvetica [0.0 -6.754093 472.8952 6.754093 0.0 380.4144][] F 1.0 props: ( F ) Text T "Figure 3: " xerox/pressfonts/Helvetica-b [0.0 -6.754095 591.5 8.754095 0.0 429.5][] F 1.0 props: ( F ) Text T "Functional Diagram of the Arbiter. " xerox/pressfonts/Helvetica [0.0 -6.754095 591.5 8.754095 0.0 472.5144][] F 1.0 props: ( F ) –Ô191.9825 mm topLeading 191.9825 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 106.8386 mm xmax 189.1603 mm ymax – Interpress–÷oInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jľ9Äý­¡ ¢ ¨ x jÄR/ + ¤ú £ÄdmQÄD§. ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDBus Functions– k x j¢¯“¢°“¡¡¨ÄO9,ĬjmĥĬjm¡¹¢¯“¢°“¡¡¨Ä¥Ä¬jmĥă´I¡¹¢¯“¢°“¡¡¨Ä¥Äƒ´IÄO9,ă´I¡¹¢¯“¢°“¡¡¨ÄO9,ă´IÄO9,Ĭjm¡¹ k¢¯“¢°“¢·“¡¡¨Ä…}Mijy™ÄÝsŒ˜ x jÄR/ + ¤ú £Äu»CÄ5ë) ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Counters – k x jÄR/ + ¤ú £ÄS)0Ä@¹( ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Identify Best– k x jÄR/ + ¤ú £ÄRŸ/Ä7g ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Local Request– k x jÄR/ + ¤ú £ÄÊâƒÄH´# ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Best Global– k x jÄR/ + ¤ú £Äw§LĆ)@ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁRequest– k x j¢¯“¢°“¡¡¨Ä¬JkÄ"ßÄœjÄ"ß¡¹¢¯“¢°“¡¡¨ÄœjÄ"ßÄœjÄÆ‘X¡¹¢¯“¢°“¡¡¨ÄœjÄÆ‘XĬJkÄÆ‘X¡¹¢¯“¢°“¡¡¨Ä¬JkÄÆ‘XĬJkÄ"ß¡¹ k x j¢¯“¢°“¡¡¨ÄO9,ÄS!BÄ¥ÄS!B¡¹¢¯“¢°“¡¡¨Ä¥ÄS!BÄ¥Ä,u¡¹¢¯“¢°“¡¡¨Ä¥Ä,uÄO9,Ä,u¡¹¢¯“¢°“¡¡¨ÄO9,Ä,uÄO9,ÄS!B¡¹ k x jÄR/ + ¤ú £ÄÍÚwÄWÚE ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDevice Request– k x j¢¯“¢°“¡¡¨Ä}ÜaÄ*ÄBU9Ä*¡¹¢¯“¢°“¡¡¨ÄBU9Ä*ÄBU9ÄqæC¡¹¢¯“¢°“¡¡¨ÄBU9ÄqæCÄ}ÜaÄqæC¡¹¢¯“¢°“¡¡¨Ä}ÜaÄqæCÄ}ÜaÄ*¡¹ k x j¢¯“¢°“¡¡¨Ä¬JkÄ%wÄœjÄ%w¡¹¢¯“¢°“¡¡¨ÄœjÄ%wÄœjĤ­d¡¹¢¯“¢°“¡¡¨ÄœjĤ­dĬJkĤ­d¡¹¢¯“¢°“¡¡¨Ä¬JkĤ­dĬJkÄ%w¡¹ k x j¢¯“¢°“¡¡¨Ä1åÄy Ä‰]Äy ¡¹¢¯“¢°“¡¡¨Ä‰]Äy Ä‰]ÄvË.¡¹¢¯“¢°“¡¡¨Ä‰]ÄvË.Ä1åÄvË.¡¹¢¯“¢°“¡¡¨Ä1åÄvË.Ä1åÄy ¡¹ k x j¢¯“¢°“¡¡¨ÄO9,Ä­=Oĥĭ=O¡¹¢¯“¢°“¡¡¨Ä¥Ä­=OÄ¥Äq‰™¡¹¢¯“¢°“¡¡¨Ä¥Äq‰™ÄO9,Äq‰™¡¹¢¯“¢°“¡¡¨ÄO9,Äq‰™ÄO9,Ä­=O¡¹ k¢¯“¢°“¢·“¡¡¨ÄÀ?0ÄË/™Ä˜ x jÄR/ + ¤ú £Äo7IÄ I€ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁIdentify– k x jÄR/ + ¤ú £Äm=GÄ# ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Make Local– k x jÄR/ + ¤ú £Äw9LÄ,µÈ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁGrant– k x jÄR/ + ¤ú £ÄÓ{ħoJ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁUpdate– k x jÄR/ + ¤ú £ÄÁxoÄIÄ! ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Precedence– k x jÄR/ + ¤ú £Ä&ßÄv«5 ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Information– k x j¢¯“¢°“¡¡¨Äls2įswÄ#įsw¡¹¢¯“¢°“¡¡¨Ä#įswÄ#ÄÚ᡹¢¯“¢°“¡¡¨Ä#ÄÚáÄls2ÄÚ᡹¢¯“¢°“¡¡¨Äls2ÄÚáÄls2įsw¡¹ k x jÄR/ + ¤ú £Ä‰/AÄÿ¬ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á OR Functions– k¢¯“¢°“¢·“¡¡¨Ä‚[>Ä:ë(™Äh‡O˜ x jÄR/ + ¤ú £Ä{¾;ÄW ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁShared– k¢¯“¢°“¢·“¡¡¨Ä‘ËDÄqb™Ä±m†˜ x jÄR/ + ¤ú £ÄœIÄʘ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁOwner– k¢¯“¢°“¢·“¡¡¨Äxñ¯Ä¯sw™Äå ˜ x jÄR/ + ¤ú £ÄP5'ÄN¯; ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSStop– k¢¯“¢°“¢·“¡¡¨Ä0¿ÄU¹¨™Ä‰ÿG˜¢¯“¢°“¢·“¡¡¨Ä×à‰ÄU¹¨™Ä‰ÿG˜¢¯“¢°“¢·“¡¡¨Ä³"sÄU¹¨™Ä‰ÿG˜¢¯“¢°“¢·“¡¡¨ÄK—/ÄU¹¨™Ä‰ÿG˜¢¯“¢°“¢·“¡¡¨Ä ­ÄU¹¨™Ä‰ÿG˜¢¯“¢°“¢·“¡¡¨ÄÙ`ÄU¹¨™Ä‰ÿG˜¢¯“¢°“¢·“¡¡¨Ä±gwÄU¹¨™Ä‰ÿG˜¢¯“¢°“¢·“¡¡¨ÄpmAÄo劙Ä2½˜¢¯“¢°“¢·“¡¡¨Ä8O/Ä“¾™ÄT×G˜¢¯“¢°“¢·“¡¡¨Ä ÄÞŸ™Ä¥u˜¢¯“¢°“¢·“¡¡¨Ä8O/įg™Ä¤Ñ9˜¢¯“¢°“¢·“¡¡¨Äa:?ÄÚ±a™Äa<˜¢¯“¢°“¢·“¡¡¨Ä įg™ÄM+˜¢¯“¢°“¢·“¡¡¨ÄœjÄŸJ™Ä€›[ŽÄ­ò{ÄêÙ™—ÄbûCŽ˜¢¯“¢°“¢·“¡¡¨ÄäW‰ÄI» ™ÄäW‰Ž˜¢¯“¢°“¢·“¡¡¨ÄäW‰ÄI» ™ÄäW‰Ž˜¢¯“¢°“¢·“¡¡¨ÄäW‰ÄI» ™ÄäW‰Ž˜¢¯“¢°“¢·“¡¡¨ÄäW‰ÄI» ™Äšý^ŽÄM+Ä Ž˜¢¯“¢°“¢·“¡¡¨ÄhÙDÄvË.™ÄoåŠÄpmAŽ˜¢¯“¢°“¢·“¡¡¨Ä Ä“¾™ÄƒkdÄäW‰Ž˜¢¯“¢°“¢·“¡¡¨Ä…}MÄ­=O™Äi1Ä6¿"Ž˜¢¯“¢°“¢·“¡¡¨Äm=GÄñ™Ä·­†ÄäW‰Ž˜¢¯“¢°“¢·“¡¡¨ÄpURÄŸ%k™Ä¤Ñ9˜¢¯“¢°“¢·“¡¡¨Äo{CÄ7‘/™Äo{CÄ7‘/Äo{CÄ7‘/Än÷CÄ˨…¡’ÄlÍBÄWeJÄVŽ5ÄG÷=Ę•^ĵÿš¡’ĤfÄLóAÄoEÄSÄ ¥Äªo¡’Äï•Ä—´Äï•Ä—´Äï•Ä—´¡’˜ x jÄ qõ ¤ú £Ä“…]ÄUBG ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á inputs from– k x jÄ qõ ¤ú £ÄH7-Ämö1 ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á 8 requesting – k x jÄ qõ ¤ú £Ä?è3ÄIQ7 ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á DPriority– k x jÄ qõ ¤ú £Ä?è3Ä‚‡L ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁArbNo– k¢¯“¢°“¢·“¡¡¨Äa:?ÄU¹¨™Ä‰ÿG˜¢¯“¢°“¢·“¡¡¨Ä…}Mă´I™Ä!Þ›Äa:?ŽÄ‰ÿG˜¢¯“¢°“¢·“¡¡¨Ä%YÄôô}™Ä%YÄôô}Ä%YÄôô}ÄÕ-ƒÄ/¥›¡’ÄU4ÄŽöIÄ\;ÓÄ]ñ0ÄGÅÄZ.¡’Ä‘NWIJx[ÄK[-ăÂCÄé‹ÄT­+¡’Äý†—Ä ÜÄý†—Ä ÜÄý†—Ä Ü¡’˜ x jÄ qõ ¤ú £Ä¹¢oÄU+ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á best request– k x jÄ qõ ¤ú £Ä]7Ä°Y ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á from each of– k x jÄ qõ ¤ú £Äag9ÄÑ›j ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Áthe 8 arbiters– k x jÄ qõ ¤ú £ÄZ]LÄa–I ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDBus– k x jÄ qõ ¤ú £ÄZ]LÄ›`ï ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á nDHybridSel– k x jÄ qõ ¤ú £Äêg¬Änj= ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnBusyOut– k¢¯“¢°“¢·“¡¡¨Äxñ¯Ä² ™ÄÚᘢ¯“¢°“¢·“¡¡¨Ä…W3IJ ™ÄÚᘢ¯“¢°“¢·“¡¡¨Ä±êSIJ ™ÄÚᘢ¯“¢°“¢·“¡¡¨Ä,¥&Ä9Ã,™ÄV~GÄPÎ?—˜ x jÄR/ + ¤ú £Ä}iÄY‡F ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á7– k¡¡¨ÄS\;ÄoÅ9™ÄK{5ÄÈTe—ÄS\;Äͱh—ÄyðWÄÈTe—ÄS\;ÄoÅ9—¡¡¡¡™¡¡¨ÄkwLĵpo™Ä\¥AÄÓQ—ÄkwLÄi®Û—Ä+|ÄÓQ—ÄkwLĵpo—¡¡¡¡™¡¡¨Ä5â#ĵʃ™Ä`ãÄ„‘^—Ä5â#Ä@.—ÄJâ1Ä„‘^—Ä5â#ĵʃ—¡¡¡¡™¡¡¨ÄY]@ÄŸ%k™ÄçG£ÄEw„—Äx UÄŸ%k—ÄçG£Ä¼—ÄY]@ÄŸ%k—¡¡¡¡™¡¡¨ÄÇoÄêÙ™™Äaj7Ä{³P—ĨÌ_ÄêÙ™—Äaj7ÄO;4—ÄÇoÄêÙ™—¡¡¡¡™¡¡¨Ä‚–mÄc@™ÄL0?ħI—Ä‚–mÄA !—Äb€SħI—Ä‚–mÄc@—¡¡¡¡™¡¡¨Äƒ7XÄÂ?`™Äœ?hÄ| >—ă7XÄn[7—ÄÃU„Ä| >—ă7XÄÂ?`—¡¡¡¡™¡¡¨ÄNk4Ä6²™Äèu™Ä —ÄNk4Ä„•B—ÄÖ Ä —ÄNk4Ä6²—¡¡¡¡™¡¡¨Ä»¢{ÄHé$™Ä;ï'Ä —Ä»¢{Ä’œI—ÄE§.Ä —Ä»¢{ÄHé$—¡¡¡¡™¡¡¨Ä‰<YÄb™ÄƒÄ—ĉ<YÄJX%—ÄÃí€Ä—ĉ<YÄb—¡¡¡¡™¡¡¨Ä,‚ÁÄb™ÄVB7Ä—Ä,‚ÁÄJX%—ÄE-Ä—Ä,‚ÁÄb—¡¡¡¡™¡¡¨Ä;Ù&ÄHé$™Ä*ÔÄ —Ä;Ù&Ä’œI—ÄÓˆ+Ä —Ä;Ù&ÄHé$—¡¡¡¡™¡¡¨Ä¥¬Äb™Ä@(Ä—Ä¥¬ÄJX%—ÄøÄ—Ä¥¬Äb—¡¡¡¡™¡¡¨Äk»CÄHé$™ÄYÄ —Äk»CÄ’œI—ÄVÄ —Äk»CÄHé$—¡¡¡¡™¢¯“¢°“¢·“¡¡¨Ä®›ÄS!B™Äc_U˜¢¯“¢°“¢·“¡¡¨Äú?ŽÄS!B™Äc_U˜¢¯“¢°“¢·“¡¡¨Ä!$ÄS!B™Äc_U˜¢¯“¢°“¢·“¡¡¨Ärß@ÄS!B™Äc_U˜¢¯“¢°“¢·“¡¡¨ÄcG:ÄS!B™Äc_U˜¢¯“¢°“¢·“¡¡¨ÄO¯/ÄS!B™Äc_U˜¢¯“¢°“¢·“¡¡¨Ä.%~ÄS!B™Äc_U˜¢¯“¢°“¢·“¡¡¨ÄÍÚwÄS!B™Äc_U˜¡¡¨Äm AÄb©O™Ä2«Äzì5—Äm AÄyöc—ÄL§.Äzì5—Äm AÄb©O—¡¡¡¡™¡¡¨ÄÄ“tÄ`XM™Ä†ÄOÄÔŽ­—ÄÄ“tÄ5+—Ä%5ÄÔŽ­—ÄÄ“tÄ`XM—¡¡¡¡™¡¡¨Ä6É ÄU D™Ä7ìµÄ˜K|—Ä6É Ä´#’—Ä'ĘK|—Ä6É ÄU D—¡¡¡¡™¡¡¨ÄJ&¿Ä.P%™Ä0·Ä‘ v—ÄJ&¿Ä¾'š—ĉaPÄ‘ v—ÄJ&¿Ä.P%—¡¡¡¡™¡¡¨Äe!:Ä.P%™ÄÂËoÄ‘ v—Äe!:ľ'š—Ä>]$Ä‘ v—Äe!:Ä.P%—¡¡¡¡™¡¡¨Ä€—IÄU D™ÄŒ OĘK|—Ä€—IÄ´#’—Ä\KÇĘK|—Ä€—IÄU D—¡¡¡¡™¡¡¨Äš¥WÄ.P%™ÄT/Ä‘ v—Äš¥Wľ'š—ÄÀ…mÄ‘ v—Äš¥WÄ.P%—¡¡¡¡™¡¡¨ÄWî1ÄU D™Ä ĘK|—ÄWî1Ä´#’—ĦžíĘK|—ÄWî1ÄU D—¡¡¡¡™¡¡¨ÄLS,Ä@k)™Ä)çÄf5B—ÄLS,Ä â­—Ä}ÎIÄf5B—ÄLS,Ä@k)—¡¡¡¡™¡¡¨ÄˆíOăZG™Ä +˜Ä)V—ĈíOÄWý0—Ä’•Ä)V—ĈíOăZG—¡¡¡¡™¡¡¨Ä6"Ä!Þ›™ÄB")ÄXm/—ÄZ8Ä!Þ›—ÄB")Äßx—Ä6"Ä!Þ›—¡¡¡¡™¡¡¨Ä$«Äi1™Ä½¢Ä::—Ä\÷7Äi1—Ľ¢Ä$G—Ä$«Äi1—¡¡¡¡™¡¡¨ÄY}:Ä“{™ÄU{7Äði—ÄY}:ÄNw—Ä”‘aÄði—ÄY}:Ä“{—¡¡¡¡™¡¡¨Ä’q_Ćc”™ÄEà-Äíû[—Ä’q_Ä$±—Ī«Äíû[—Ä’q_Ćc”—¡¡¡¡™¡¡¨ÄfLÄ€óH™ÄÕý¢ÄÒÝu—ÄAòÄ€óH—ÄÕý¢Ä\‹4—ÄfLÄ€óH—¡¡¡¡™¡¡¨ÄÞµ¦Äƒkd™ÄTk@Ä!#—ÄfMăkd—ÄTk@ÄA%2—ÄÞµ¦Äƒkd—¡¡¡¡™¡¡¨Ä䶧Ä…C™ÄyƒXIJ»[—Ä䶧įNY—ÄkMOIJ»[—Ä䶧Ä…C—¡¡¡¡™¡¡¨Äc›<Äz¡.™Ä`;ÄÈÉK—ÄX»6Äz¡.—Ä`;ÄO£—Äc›<Äz¡.—¡¡¡¡™¡¡¨Ä~DIÄ/w™ÄâS‚Ä{„1—Ä~DIÄZ‹$—Ä$Ä{„1—Ä~DIÄ/w—¡¡¡¡™¡¡¨ÄŽ—wÄ1Û$™ÄF':ÄL —ÄŽ—wÄG~3—ÄÙ6·ÄL —ÄŽ—wÄ1Û$—¡¡¡¡™¡¡¨Ä‚–mÄ”¹g™ÄL0?ÄpIO—Ä‚–mÄEì1—Äb€SÄpIO—Ä‚–mÄ”¹g—¡¡¡¡™¡¡¨Ä7]—Ä!™Äÿ{ÄFÐ1—Ä7]—ÄD0/—Ä2?ÄFÐ1—Ä7]—Ä!—¡¡¡¡™¡¡¨Ä öÄ÷¦©™Äƒ>ÄiSI—Ä öÄé3¡—Ä–‰HÄiSI—Ä öÄ÷¦©—¡¡¡¡™¡¡¨Äk32Ä÷¦©™ÄŸÄiSI—Äk32Äé3¡—ÄŽäCÄiSI—Äk32Ä÷¦©—¡¡¡¡™¡¡¨Ä7]—Ä_•™Äÿ{ÄEå)—Ä7]—Äa~9—Ä2?ÄEå)—Ä7]—Ä_•—¡¡¡¡™¡¡¨Ä‹¼ÄpfA™ÄµµVÄt D—Ä‹¼ÄA&—Ä6YÄt D—Ä‹¼ÄpfA—¡¡¡¡™¡¡¨Ä-ÄTÇ1™ÄzÌ9Ä ƒ^—Ä-Ä —ÄfS0Ä ƒ^—Ä-ÄTÇ1—¡¡¡¡™ x jÄ qõ ¤ú £ÄB…)ÄUÙÈ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ádevices– k¡¡¨ÄBç%ĺòE™Äó8‡Ä†»1Äßx‡Ä':Ä`+;Äuœ+¡’Ä^¬;Ä':Ä]U@Ć»1Ä[v?ĺòE¡’Ä]U@Ä*ãmÄ^¬;ĵ:CÄ`+;Äb]$¡’Ä>ç&ĵ:CÄŠŽÛÄÈ,IÄBç%ĺòE¡’¡¡¡¡™ x jÄR/ + ¤ú £Ä.Ä"òi ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁInter-– k x jÄR/ + ¤ú £Ä“_ZÄçd ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁArbiter– k¡¡¨Ä5…«ÄT†K™ÄÄ•mÄE@ÄWÕ5Äk _Äp™EÄÁÑ°¡’Äaÿ=Äk _ÄT±:ÄE@Än)¬ÄT†K¡’ÄT±:ÄwFmÄaÿ=ÄŒM|Äp™EÄDs>¡’ÄWÕ5Ä7q1Äw!ÐÄ*­'Ä5…«ÄT†K¡’¡¡¡¡™ x jÄR/ + ¤ú £Ä »dÄT½^ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Requesting– k x jÄR/ + ¤ú £Ä§ÄT½^ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Communication– k x jÄR/ + ¤ú £Ä“_ZÄ]l¡ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDevice - Arbiter– k x jÄR/ + ¤ú £Ä²kÄö‡Y ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Communication– k¢¯“¢°“¢·“¡¡¨ÄœjÄŸ%k™ÄpURŽ˜ x jÄR/ + ¤ú £Ä­ò{ÄêÙ™ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Áz– k x jÄR/ + ¤ú £Ä­ò{ÄêÙ™ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á z– k x jÄR/ + ¤ú £Ä­ò{ÄêÙ™ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Áz– k x jÄR/ + ¤ú £Ä­ò{ÄêÙ™ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á – k x jÄ qõ ¤ú £ÄŽeÄC¼³ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnLG (nLocalGrant)– k x jÄR/ + ¤ú £ÄKM1ÄHÅ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁIdentify– k x jÄR/ + ¤ú £Ä{ÄOÄ. ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁGrantee– k¢¯“¢°“¢·“¡¡¨Äã ÄêÙ™™Ä@f­ŽÄR±A˜¡¡¨Ä®^Ä=Ê1™Äá{yÄB¿4—Ä®^Ęw—Ä£×YÄB¿4—Ä®^Ä=Ê1—¡¡¡¡™ x jÄ qõ ¤ú £Ä£æYÄ´‰ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ágrants to devices– k x jÄËP ¤ú £Ä5¹ÄR±A ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.1– k x jÄËP ¤ú £Ä‰ÛVÄ{MV ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.1.3– k x jÄËP ¤ú £Ä’ÿRÄpïG ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.1.2– k x jÄËP ¤ú £Ä”Á]Äïfu ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.2.1– k x jÄËP ¤ú £ÄZÄ»O ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.2.2– k x jÄËP ¤ú £Ä7ßòÄŸ%k ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.3– k x jÄËP ¤ú £Äxó8ÄŸ%k ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.4– k x jÄËP ¤ú £Ä'ÄH ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.2– k x jÄËP ¤ú £ÄOWÆÄ*ïK ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.1– k x jÄËP ¤ú £ÄÇoÄUë' ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á4.2.1– k¢¯“¢°“¢·“¡¡¨ÄE•&ÄBß,™Ä…GÄ]Ù?—˜ x jÄR/ + ¤ú £ÄÁöiÄhF ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á8– k x jÄ=Ä‚wQ ¦ú £ÄŸÄ[ ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-brr£¡ “ •  —¡¡¨  Š¡²“Á Figure 3: – k x jÄ=Ä‚wQ ¦ú £ÄŸÄ@š# ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á#Functional Diagram of the Arbiter. – k k k gš¤3™3S–centered lastLineFormatting˜— š¡9˜9R˜•— ˜- ˜Ršœ†˜†Ršœ'£œ £œ“˜ÕRšœ˜Ihead3šœ ˜ IitemšÏfœ;˜AWš§œ˜Wš§œ˜"Wš§œ˜#Všœ˜Wš§œ<˜BWš§œ˜$Wš§œ%˜+Wš§œ&˜,Kšœã˜ã šœ„˜„T–·NGargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/packet.gargoyle at January 21, 1988 10:04:11 am PST Produced by version 8710.19 Scripts: ///Users/bland.pa/gargoyle/bland871231-13-23-59.script, ///Users/bland.pa/gargoyle/bland871231-13-41-50.script, ///Users/bland.pa/gargoyle/bland871231-13-45-48.script, ///Users/bland.pa/gargoyle/bland871231-13-55-30.script, ///Users/bland.pa/gargoyle/bland871231-14-06-14.script, ///Users/bland.pa/gargoyle/bland871231-14-16-33.script, ///Users/bland.pa/gargoyle/bland871231-14-51-35.script, ///Users/bland.pa/gargoyle/bland880108-09-21-16.script, ///Users/bland.pa/gargoyle/bland880108-09-22-58.script, ///Users/bland.pa/gargoyle/bland880121-10-02-32.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 0.5] [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] [F 1.388889e-2 0.01] 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 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: T GravityExtent: 0.1736111 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/Helvetica-mrr [r1: 0.0 s: [15.0 15.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 [74.0,66.0] Entities: [49]: Text T "Priorities 0 - 7" xerox/pressfonts/Helvetica [10.5 0.0 -81.10074 0.0 10.5 123.9189][] F 1.0 props: ( F ) Text T "0=2cycles" xerox/pressfonts/helvetica [7.0 0.0 15.683 0.0 7.0 128.0626][] F 1.0 props: ( F ) Text T "1=5cycles" xerox/pressfonts/helvetica [7.0 0.0 15.33125 0.0 7.0 120.3626][] F 1.0 props: ( F ) Text T "0=2cycles" xerox/pressfonts/helvetica [7.0 0.0 182.283 0.0 7.0 127.3626][] F 1.0 props: ( F ) Text T "1=5cycles" xerox/pressfonts/helvetica [7.0 0.0 182.2812 0.0 7.0 120.7126][] F 1.0 props: ( F ) Text T "0=MCtrl" xerox/pressfonts/helvetica [7.0 0.0 227.0848 0.0 7.0 127.9175][] F 1.0 props: ( F ) Text T "1=Cache" xerox/pressfonts/helvetica [7.0 0.0 226.0339 0.0 7.0 120.7126][] 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 [1 1.0] d: T F [-106.683,105.94] (Bezier [-103.8445,88.50227] [-40.46054,105.8664] Tools ) [-29.474,94.784] (Bezier [-18.4877,105.8663] [44.89622,88.50246] Tools ) [47.73496,105.9401] (Bezier [44.89614,91.76056] [-18.4877,107.8805] Tools ) [-29.474,95.99248] (Bezier [-40.4607,107.8804] [-103.8444,91.76035] Tools ) 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 [61.89096,106.1036] (Bezier [64.72945,88.6658] [128.1134,106.0299] Tools ) [139.1,94.94753] (Bezier [150.0863,106.0298] [213.4702,88.66597] Tools ) [216.309,106.1036] (Bezier [213.4701,91.92407] [150.0863,108.044] Tools ) [139.1,96.15601] (Bezier [128.1133,108.044] [64.72956,91.92394] 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 [-71.12401,119.3176] (Line ) [-71.12401,108.8848] 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 [-112.8552,119.3176] (Line ) [-112.8552,108.8848] 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 [54.0696,119.3176] (Line ) [54.0696,108.8848] 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 [137.532,119.3176] (Line ) [137.532,108.8848] 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 [95.8008,119.3176] (Line ) [95.8008,108.8848] 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 [153.8525,108.8848] (Line ) [262.7256,108.8848] 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 [137.532,108.8848] (Line ) [137.532,108.8848] 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 [137.532,108.8848] (Line ) [-112.9,108.7] (Line ) [262.7256,108.8848] 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 [179.2632,119.3176] (Line ) [179.2632,108.8848] 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 [220.9944,119.3176] (Line ) [220.9944,108.8848] 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 [12.3384,119.3176] (Line ) [12.3384,108.8848] 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 [-29.39281,119.3176] (Line ) [-29.39281,108.8848] 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 [262.7256,119.3176] (Line ) [262.7256,108.8848] 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 [-29.39281,148.2976] (Line ) [153.8525,148.2976] (Line ) [-112.8552,148.2976] 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 [-71.12401,137.8648] (Line ) [-71.12401,148.2976] 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 [54.0696,137.8648] (Line ) [54.0696,148.2976] 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 [137.532,137.8648] (Line ) [137.532,148.2976] 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 [95.8008,137.8648] (Line ) [95.8008,148.2976] 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 [153.8525,148.2976] (Line ) [262.7256,148.2976] 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 [137.532,148.2976] (Line ) [137.532,148.2976] (Line ) [179.2632,148.2976] 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 [137.532,148.2976] (Line ) [132.3156,148.2976] (Line ) [262.7256,148.2976] 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 [179.2632,137.8648] (Line ) [179.2632,148.2976] 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 [220.9944,137.8648] (Line ) [220.9944,148.2976] 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 [12.3384,137.8648] (Line ) [12.3384,148.2976] 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 [-29.39281,137.8648] (Line ) [-29.39281,148.2976] 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 [262.7256,119.3176] (Line ) [262.7256,148.2976] 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 [220.9944,119.3176] (Line ) [220.9944,108.8848] 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 [179.2632,119.3176] (Line ) [179.2632,108.8848] 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 [220.9944,137.8648] (Line ) [220.9944,148.2976] 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 [179.2632,137.8648] (Line ) [179.2632,148.2976] 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 [-112.8552,148.2976] (Line ) [-112.8552,108.8848] 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 [-24.7,77.2] (Bezier [-15.28102,86.70131] [39.06048,71.81459] Tools ) [41.49424,86.76457] (Bezier [39.06041,74.6079] [-15.28102,88.42815] Tools ) [-24.7,78.23607] (Bezier [-34.11932,88.42807] [-88.46069,74.60772] Tools ) [-90.8943,86.76451] 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 [63.46956,136.969] (Bezier [74.7,148.2976] [139.4925,130.5478] Tools ) [142.3943,148.373] Text T "High" xerox/pressfonts/Helvetica [10.5 0.0 -41.03275 0.0 10.5 75.8][] F 1.0 props: ( F ) Text T "Low" xerox/pressfonts/Helvetica [10.5 0.0 128.2268 0.0 10.5 74.91892][] F 1.0 props: ( F ) Text T "Priorities 0 - 7" xerox/pressfonts/Helvetica [10.5 0.0 84.09926 0.0 10.5 123.9189][] 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 [-45.37241,95.77771] (Line Tools ) [-45.37241,95.77771] 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 [-29.27241,95.77771] (Line Tools ) [-29.27241,95.77771] Text T "0" xerox/pressfonts/Helvetica [10.5 0.0 -112.3505 0.0 10.5 150.5189][] F 1.0 props: ( F ) Text T "8" xerox/pressfonts/Helvetica [10.5 0.0 220.8468 0.0 10.5 149.8189][] F 1.0 props: ( F ) –Ô35.80173 mm topLeading 35.80173 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–90.0 mm xmin 0.0 mm ymin 134.4352 mm xmax 32.9795 mm ymax – Interpress–‘Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄ,aÄ¡/` ¢ ¨ x jÄ ¤ÄÓ÷‹Äé% ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁPriorities 0 - 7– k x j§ ¤Ä¿2Äßœ¿ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á 0=2cycles– k x j§ ¤Ä • Ä*É[ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á 1=5cycles– k x j§ ¤Ä%½5Ä-F[ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á 0=2cycles– k x j§ ¤ÄÉ Ä)W ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á 1=5cycles– k x j§ ¤Ä4V;Ä0xa ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á0=MCtrl– k x j§ ¤Ä4;Ä)W ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á1=Cache– k¡¡¨Ä¢§àı2™Ä4ÄK¶Ûđ׹Ä_ñèÄì­Ä.H}¡’ÄîaôÄMU»Ä—jÄF.ËÄS¹ÁÄE§¡’Ä;QÄsGÄîaôÄCŸÄì­Ä1ß…¡’ÄÓ¿Ä&Å\Äí¿-Ä+_yÄ¢§àı2¡’¡¡¡¡™¡¡¨ÄM›AÄt ™ÄIÕ$Ä„§Ä0‹aÄE+§Äo Äx+D¡’ÄsÅÄÀCÄ}ê—ĤÝÜÄgî{ÄOþÁ¡’ÄauÄ^OÄsÅÄCŸÄo Ä4ö¡’Äe—ËÄ&h[Ä(4ŸÄ! \ÄM›AÄt ¡’¡¡¡¡™¢¯“¢°“¢·“¡¡¨ÄÜ)Ä'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨ÄÞLÄ'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä!_žÄ'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä†OúÄ'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä]îûÄ'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä$©=ÄQ=¿™ÄsøqŽ˜¢¯“¢°“¢·“¡¡¨Ä†OúÄQ=¿™Ä†OúŽ˜¢¯“¢°“¢·“¡¡¨Ä†OúÄQ=¿™Äû— Ä? —ÄsøqÄQ=¿—˜¢¯“¢°“¢·“¡¡¨Ä NÄ'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä™©²Ä'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä ­Ä'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä°4·Ä'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨ÄsøqÄ'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä°4·Ä0©T™Ä$©=ŽÄÞLŽ˜¢¯“¢°“¢·“¡¡¨ÄÜ)Ä¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨Ä!_žÄ¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨Ä†OúÄ¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨Ä]îûÄ¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨Ä$©=Ä0©T™ÄsøqŽ˜¢¯“¢°“¢·“¡¡¨Ä†OúÄ0©T™Ä†OúŽÄ NŽ˜¢¯“¢°“¢·“¡¡¨Ä†OúÄ0©T™Ä‡ïŽÄsøqŽ˜¢¯“¢°“¢·“¡¡¨Ä NÄ¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨Ä™©²Ä¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨Ä ­Ä¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨Ä°4·Ä¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨ÄsøqÄ'žU™Ä0©T˜¢¯“¢°“¢·“¡¡¨Ä™©²Ä'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä NÄ'žU™ÄQ=¿˜¢¯“¢°“¢·“¡¡¨Ä™©²Ä¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨Ä NÄ¿.c™Ä0©T˜¢¯“¢°“¢·“¡¡¨ÄÞLÄ0©T™ÄQ=¿˜ x jÄ ¤ÄÊ%PÄ{ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁHigh– k x jÄ ¤Ä0–aÄ Ô% ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLow– k x jÄ ¤Ä+ ƒÄé% ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁPriorities 0 - 7– k x jÄ ¤ÄÕnaÄ>Sj ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ ¤Ä_ÂoÄCãt ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á8– k k k gš¤4™4KšŸ œ”˜žT–ÑJGargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/packet.gargoyle at January 21, 1988 10:04:45 am PST Produced by version 8710.19 Scripts: ///Users/bland.pa/gargoyle/bland871231-13-23-59.script, ///Users/bland.pa/gargoyle/bland871231-13-41-50.script, ///Users/bland.pa/gargoyle/bland871231-13-45-48.script, ///Users/bland.pa/gargoyle/bland871231-13-55-30.script, ///Users/bland.pa/gargoyle/bland871231-14-06-14.script, ///Users/bland.pa/gargoyle/bland871231-14-16-33.script, ///Users/bland.pa/gargoyle/bland871231-14-51-35.script, ///Users/bland.pa/gargoyle/bland880108-09-21-16.script, ///Users/bland.pa/gargoyle/bland880108-09-22-58.script, ///Users/bland.pa/gargoyle/bland880121-10-02-32.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 0.5] [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] [F 1.388889e-2 0.01] 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 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: T GravityExtent: 0.1736111 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/Helvetica-mrr [r1: 0.0 s: [15.0 15.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 [74.0,66.0] Entities: [47]: 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 [-106.683,-8.344767] (Bezier [-103.8445,-25.78253] [-40.46054,-8.418404] Tools ) [-29.474,-19.5008] (Bezier [-18.4877,-8.418478] [44.89622,-25.78235] Tools ) [47.73496,-8.344698] (Bezier [44.89614,-22.52425] [-18.4877,-6.404295] Tools ) [-29.474,-18.29233] (Bezier [-40.4607,-6.404365] [-103.8444,-22.52446] Tools ) 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 [61.89096,-8.181244] (Bezier [64.72945,-25.619] [128.1134,-8.254884] Tools ) [139.1,-19.33728] (Bezier [150.0863,-8.254956] [213.4702,-25.61883] Tools ) [216.309,-8.181175] (Bezier [213.4701,-22.36072] [150.0863,-6.240778] Tools ) [139.1,-18.1288] (Bezier [128.1133,-6.240847] [64.72956,-22.36086] 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 [-71.12401,5.032794] (Line ) [-71.12401,-5.400005] 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 [-112.8552,5.032794] (Line ) [-112.8552,-5.400005] 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 [54.0696,5.032794] (Line ) [54.0696,-5.400005] 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 [137.532,5.032794] (Line ) [137.532,-5.400005] 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 [95.8008,5.032794] (Line ) [95.8008,-5.400005] 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 [153.8525,-5.400005] (Line ) [262.7256,-5.400005] 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 [137.532,-5.400005] (Line ) [137.532,-5.400005] 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 [137.532,-5.400005] (Line ) [-112.9,-5.584806] (Line ) [262.7256,-5.400005] 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 [179.2632,5.032794] (Line ) [179.2632,-5.400005] 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 [220.9944,5.032794] (Line ) [220.9944,-5.400005] 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 [12.3384,5.032794] (Line ) [12.3384,-5.400005] 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 [-29.39281,5.032794] (Line ) [-29.39281,-5.400005] 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 [262.7256,5.032794] (Line ) [262.7256,-5.400005] 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 [-29.39281,34.01279] (Line ) [153.8525,34.01279] (Line ) [-112.8552,34.01279] 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 [-71.12401,23.58] (Line ) [-71.12401,34.01279] 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 [54.0696,23.58] (Line ) [54.0696,34.01279] 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 [137.532,23.58] (Line ) [137.532,34.01279] 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 [95.8008,23.58] (Line ) [95.8008,34.01279] 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 [153.8525,34.01279] (Line ) [262.7256,34.01279] 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 [137.532,34.01279] (Line ) [137.532,34.01279] (Line ) [179.2632,34.01279] 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 [137.532,34.01279] (Line ) [132.3156,34.01279] (Line ) [262.7256,34.01279] 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 [179.2632,23.58] (Line ) [179.2632,34.01279] 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 [220.9944,23.58] (Line ) [220.9944,34.01279] 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 [12.3384,23.58] (Line ) [12.3384,34.01279] 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 [-29.39281,23.58] (Line ) [-29.39281,34.01279] 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 [262.7256,5.032794] (Line ) [262.7256,34.01279] 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 [220.9944,5.032794] (Line ) [220.9944,-5.400005] 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 [179.2632,5.032794] (Line ) [179.2632,-5.400005] 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 [220.9944,23.58] (Line ) [220.9944,34.01279] 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 [179.2632,23.58] (Line ) [179.2632,34.01279] 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 [-112.8552,34.01279] (Line ) [-112.8552,-5.400005] 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 [63.46956,22.6842] (Bezier [74.7,34.01279] [139.4925,16.26303] Tools ) [142.3943,34.08819] Text T "Unused" xerox/pressfonts/Helvetica [10.5 0.0 -46.89918 0.0 10.5 -36.2][] F 1.0 props: ( F ) Text T "Low" xerox/pressfonts/Helvetica [10.5 0.0 131.7268 0.0 10.5 -32.88108][] F 1.0 props: ( F ) Text T "Priorities 0 - 7" xerox/pressfonts/Helvetica [10.5 0.0 84.09926 0.0 10.5 9.634106][] 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 [-45.37241,-18.50709] (Line Tools ) [-45.37241,-18.50709] 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 [-29.27241,-18.50709] (Line Tools ) [-29.27241,-18.50709] Text T "0" xerox/pressfonts/Helvetica [10.5 0.0 -112.3505 0.0 10.5 36.23411][] F 1.0 props: ( F ) Text T "8" xerox/pressfonts/Helvetica [10.5 0.0 220.8468 0.0 10.5 35.5341][] F 1.0 props: ( F ) Text T "X" xerox/pressfonts/Helvetica [14.0 0.0 -96.09999 0.0 14.0 7.42523][] F 1.0 props: ( F ) Text T "X" xerox/pressfonts/Helvetica [14.0 0.0 -54.8 0.0 14.0 7.42523][] F 1.0 props: ( F ) Text T "1" xerox/pressfonts/Helvetica [14.0 0.0 28.7625 0.0 14.0 7.42523][] F 1.0 props: ( F ) Text T "X" xerox/pressfonts/Helvetica [14.0 0.0 -13.892 0.0 14.0 7.42523][] F 1.0 props: ( F ) Text T "1" xerox/pressfonts/Helvetica [14.0 0.0 194.6625 0.0 14.0 7.42523][] F 1.0 props: ( F ) Text T "0" xerox/pressfonts/Helvetica [14.0 0.0 238.0625 0.0 14.0 7.42523][] F 1.0 props: ( F ) –Ô34.68487 mm topLeading 34.68487 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 134.4352 mm xmax 31.86265 mm ymax – Interpress–Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄ,aÄi‚ ¢ ¨¡¡¨Ä¢§àÄíñ*™Ä4ÄÇ€1đ׹Äí@Äì­Äвm¡’ÄîaôÄùó¸Ä—jÄîáªÄS¹ÁÄ÷e¡’Ä;QÄâ÷JÄîaôÄó1Äì­ÄÉûô¡’ÄÓ¿Äìƒ Äí¿-ÄߟpÄ¢§àÄíñ*¡’¡¡¡¡™¡¡¨ÄM›AÄᬵ™ÄIÕ$ÄžÓÄ0‹aÄÛ±fÄo Äó<©¡’ÄsÅÄôžaÄ}ê—Äé¯ßÄgî{Äòk©¡’ÄauÄìßÛÄsÅÄórÄo Äáë¡’Äe—ËÄóYÄ(4ŸÄëéæÄM›AÄᬵ¡’¡¡¡¡™¢¯“¢°“¢·“¡¡¨ÄÜ)Ä,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨ÄÞLÄ,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä!_žÄ,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä†OúÄ,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä]îûÄ,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä$©=Äüê’G™ÄsøqŽ˜¢¯“¢°“¢·“¡¡¨Ä†OúÄüê’G™Ä†OúŽ˜¢¯“¢°“¢·“¡¡¨Ä†OúÄüê’G™Äû— Äó§6—ÄsøqÄüê’G—˜¢¯“¢°“¢·“¡¡¨Ä NÄ,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä™©²Ä,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä ­Ä,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä°4·Ä,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨ÄsøqÄ,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä°4·Ä)–9™Ä$©=ŽÄÞLŽ˜¢¯“¢°“¢·“¡¡¨ÄÜ)Ä›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨Ä!_žÄ›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨Ä†OúÄ›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨Ä]îûÄ›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨Ä$©=Ä)–9™ÄsøqŽ˜¢¯“¢°“¢·“¡¡¨Ä†OúÄ)–9™Ä†OúŽÄ NŽ˜¢¯“¢°“¢·“¡¡¨Ä†OúÄ)–9™Ä‡ïŽÄsøqŽ˜¢¯“¢°“¢·“¡¡¨Ä NÄ›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨Ä™©²Ä›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨Ä ­Ä›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨Ä°4·Ä›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨ÄsøqÄ,öï™Ä)–9˜¢¯“¢°“¢·“¡¡¨Ä™©²Ä,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä NÄ,öï™Äüê’G˜¢¯“¢°“¢·“¡¡¨Ä™©²Ä›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨Ä NÄ›2™Ä)–9˜¢¯“¢°“¢·“¡¡¨ÄÞLÄ)–9™Äüê’G˜ x jÄ ¤Ä¼ÄoÄÿK ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁUnused– k x jÄ ¤ÄcÓÂÄè=¹ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLow– k x jÄ ¤Ä+ ƒÄ03 ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁPriorities 0 - 7– k x jÄ ¤ÄÕnaÄ*R+ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ ¤Ä_ÂoÄ 7X ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á8– k x j® ¤Äü? Ä"¸­ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁX– k x j® ¤ÄþîÄ"¸­ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁX– k x j® ¤ÄýPÄ"¸­ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á1– k x j® ¤ÄòoúÄ"¸­ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁX– k x j® ¤Ä<ÕPÄ"¸­ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á1– k x j® ¤ÄáÄ"¸­ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á0– k k k gš¤3™3KšŸ œ|˜†——˜ šœšÏkœi˜†Ršª˜ª——Ršœ“˜“ ˜Ršœ¹˜¹— ˜Ršœï£œ¢˜’R˜W˜:˜bW˜”Wšœç˜ç—Ršœ®˜®Wšœá˜áWšœô˜ôRšœ ˜ —— ˜Ršœˆ˜ˆ ˜RšœÔ˜ÔRšœ¥£œ†˜¬ šœ˜U˜T–ª2Gargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/config.gargoyle at January 15, 1988 4:46:25 pm PST Produced by version 8710.19 Scripts: ///Users/bland.pa/gargoyle/bland880114-16-40-17.script, ///Users/bland.pa/gargoyle/bland880114-16-42-26.script, ///Users/bland.pa/gargoyle/bland880115-16-30-02.script, ///Users/bland.pa/gargoyle/bland880115-16-42-21.script Slope: [T 0.0] [T 22.50032] [F 30.0] [T 45.0] [F 59.63837] [F 60.0] [T 67.49969] [F 68.34514] [T 90.0] [T 112.5001] [F 120.0] [T 135.0] [F 150.0] [T 157.4997] [F 163.488] 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: [T 4.0 4] [T 2.5 2.5] [T 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: 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: [16.0 16.0] r2: 0.0] 1.0 1.0 Defaults: [] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: T [184.0,362.5] Entities: [32]: Circle [36.0 0.0 285.8245 0.0 36.0 463.8245] strokeWidth: 2.0 strokeColor: [1 1.0] fillColor: [] dashes: ( F ) props: ( F ) Circle [36.0 0.0 184.0 0.0 36.0 506.0022] strokeWidth: 2.0 strokeColor: [1 1.0] fillColor: [] dashes: ( F ) props: ( F ) Circle [36.0 0.0 82.1755 0.0 36.0 463.8245] strokeWidth: 2.0 strokeColor: [1 1.0] fillColor: [] dashes: ( F ) props: ( F ) Circle [36.0 0.0 39.99999 0.0 36.0 362.0022] strokeWidth: 2.0 strokeColor: [1 1.0] fillColor: [] dashes: ( F ) props: ( F ) Circle [36.0 0.0 82.1755 0.0 36.0 260.18] strokeWidth: 2.0 strokeColor: [1 1.0] fillColor: [] dashes: ( F ) props: ( F ) Circle [36.0 0.0 184.0 0.0 36.0 218.0022] strokeWidth: 2.0 strokeColor: [1 1.0] fillColor: [] dashes: ( F ) props: ( F ) Circle [36.0 0.0 285.8245 0.0 36.0 260.18] strokeWidth: 2.0 strokeColor: [1 1.0] fillColor: [] dashes: ( F ) props: ( F ) Circle [36.0 0.0 328.0 0.0 36.0 362.0022] strokeWidth: 2.0 strokeColor: [1 1.0] fillColor: [] dashes: ( F ) props: ( F ) Outline fillColor: [] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [44.49946,397.7199] (Arc [50.96184,417.112] ) [60.1035,435.3914] Outline fillColor: [] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [110.6123,485.9005] (Arc [128.8932,495.0429] ) [148.2821,501.5042] Outline fillColor: [] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [219.7179,501.5043] (Arc [239.1068,495.0429] ) [257.387,485.9009] Outline fillColor: [] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [309.2383,435.9424] (Arc [319.0,418.0] ) [324.838,398.2816] Outline fillColor: [] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [323.4995,326.2846] (Arc [317.0381,306.8968] ) [307.8975,288.6191] Outline fillColor: [] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [257.3854,238.1069] (Arc [239.1068,228.9659] ) [219.7181,222.5045] Outline fillColor: [] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [148.2826,222.5043] (Arc [128.8932,228.9659] ) [110.6146,238.1069] Outline fillColor: [] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [60.10248,288.6191] (Arc [48.36005,305.8192] ) [39.99999,326.0022] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [57.66803,432.956] (Line ) [60.10351,435.3914] (Line ) [63.54767,427.0764] (Line ) [60.10351,435.3914] (Line ) [51.7886,431.9472] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [147.0,503.5] (Line ) [148.0,501.5] (Line ) [144.1624,493.3592] (Line ) [148.0,501.5] (Line ) [139.8592,505.3376] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [257.5,488.5] (Line ) [257.0,487.5] (Line ) [248.7169,483.98] (Line ) [257.0,487.5] (Line ) [253.4801,495.7831] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [323.0,399.5] (Line ) [325.0,398.5] (Line ) [316.6337,401.8174] (Line ) [325.0,398.5] (Line ) [328.3174,406.8663] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [306.4711,292.0631] (Line ) [307.8976,288.619] (Line ) [304.4535,296.9339] (Line ) [307.8976,288.619] (Line ) [316.2125,292.0631] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [223.1622,222.5045] (Line ) [219.7181,222.5045] (Line ) [223.1622,230.8194] (Line ) [219.7181,222.5045] (Line ) [228.033,219.0604] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [114.0588,238.1069] (Line ) [110.6146,238.1069] (Line ) [118.9295,241.551] (Line ) [110.6146,238.1069] (Line ) [114.0588,229.792] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [39.99992,326.0024] (Line ) [39.99999,326.0022] (Line ) [48.3149,322.5581] (Line ) [39.99999,326.0022] (Line ) [36.55584,317.6874] Text T "0" xerox/pressfonts/helvetica [16.0 0.0 35.50399 0.0 16.0 357.4596][] F 1.0 props: ( F ) Text T "7" xerox/pressfonts/helvetica [16.0 0.0 77.6755 0.0 16.0 459.2819][] F 1.0 props: ( F ) Text T "6" xerox/pressfonts/helvetica [16.0 0.0 179.5 0.0 16.0 501.4596][] F 1.0 props: ( F ) Text T "5" xerox/pressfonts/helvetica [16.0 0.0 281.3245 0.0 16.0 459.2819][] F 1.0 props: ( F ) Text T "4" xerox/pressfonts/helvetica [16.0 0.0 323.5 0.0 16.0 357.4596][] F 1.0 props: ( F ) Text T "3" xerox/pressfonts/helvetica [16.0 0.0 281.3245 0.0 16.0 255.6374][] F 1.0 props: ( F ) Text T "2" xerox/pressfonts/helvetica [16.0 0.0 181.0 0.0 16.0 212.9574][] F 1.0 props: ( F ) Text T "1" xerox/pressfonts/helvetica [16.0 0.0 77.0 0.0 16.0 254.4574][] F 1.0 props: ( F ) –Ô132.6444 mm topLeading 132.6444 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 129.8222 mm xmax 129.8222 mm ymax – Interpress–ÄInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄÄþáÇ ¢ ¨ x j¡¡¨ r j Äÿÿÿ€Š ªÄ6¼9Ä^^9ðð¡£¢¯“¢°“¢·“Ä7 9ÄgF9™Ä7 9Ä_B9Ä?¤9Ä_B9ÄÙ J¡”ÄG¨9Ä_B9ÄG¨9ÄgF9ÄÙ J¡”ÄG¨9ÄoJ9Ä?¤9ÄoJ9ÄÙ J¡”Ä7 9ÄoJ9Ä7 9ÄgF9ÄÙ J¡”¡¸ k é k x j¡¡¨ r jÄžõÄ uÅŠ ªÄ6¼9Ä^^9ðð¡£¢¯“¢°“¢·“Ä7 9ÄgF9™Ä7 9Ä_B9Ä?¤9Ä_B9ÄÙ J¡”ÄG¨9Ä_B9ÄG¨9ÄgF9ÄÙ J¡”ÄG¨9ÄoJ9Ä?¤9ÄoJ9ÄÙ J¡”Ä7 9ÄoJ9Ä7 9ÄgF9ÄÙ J¡”¡¸ k é k x j¡¡¨ r jĵ9^Äÿÿÿ€Š ªÄ6¼9Ä^^9ðð¡£¢¯“¢°“¢·“Ä7 9ÄgF9™Ä7 9Ä_B9Ä?¤9Ä_B9ÄÙ J¡”ÄG¨9Ä_B9ÄG¨9ÄgF9ÄÙ J¡”ÄG¨9ÄoJ9Ä?¤9ÄoJ9ÄÙ J¡”Ä7 9ÄoJ9Ä7 9ÄgF9ÄÙ J¡”¡¸ k é k x j¡¡¨ r jÄÉD9ı¥ÅŠ ªÄ6¼9Ä^^9ðð¡£¢¯“¢°“¢·“Ä7 9ÄgF9™Ä7 9Ä_B9Ä?¤9Ä_B9ÄÙ J¡”ÄG¨9Ä_B9ÄG¨9ÄgF9ÄÙ J¡”ÄG¨9ÄoJ9Ä?¤9ÄoJ9ÄÙ J¡”Ä7 9ÄoJ9Ä7 9ÄgF9ÄÙ J¡”¡¸ k é k x j¡¡¨ r jĵ9^ÄÜ4-Š ªÄ6¼9Ä^^9ðð¡£¢¯“¢°“¢·“Ä7 9ÄgF9™Ä7 9Ä_B9Ä?¤9Ä_B9ÄÙ J¡”ÄG¨9Ä_B9ÄG¨9ÄgF9ÄÙ J¡”ÄG¨9ÄoJ9Ä?¤9ÄoJ9ÄÙ J¡”Ä7 9ÄoJ9Ä7 9ÄgF9ÄÙ J¡”¡¸ k é k x j¡¡¨ r jÄžõÄÿBÕÅŠ ªÄ6¼9Ä^^9ðð¡£¢¯“¢°“¢·“Ä7 9ÄgF9™Ä7 9Ä_B9Ä?¤9Ä_B9ÄÙ J¡”ÄG¨9Ä_B9ÄG¨9ÄgF9ÄÙ J¡”ÄG¨9ÄoJ9Ä?¤9ÄoJ9ÄÙ J¡”Ä7 9ÄoJ9Ä7 9ÄgF9ÄÙ J¡”¡¸ k é k x j¡¡¨ r j ÄÜ4-Š ªÄ6¼9Ä^^9ðð¡£¢¯“¢°“¢·“Ä7 9ÄgF9™Ä7 9Ä_B9Ä?¤9Ä_B9ÄÙ J¡”ÄG¨9Ä_B9ÄG¨9ÄgF9ÄÙ J¡”ÄG¨9ÄoJ9Ä?¤9ÄoJ9ÄÙ J¡”Ä7 9ÄoJ9Ä7 9ÄgF9ÄÙ J¡”¡¸ k é k x j¡¡¨ r jÄ(]õı¥ÅŠ ªÄ6¼9Ä^^9ðð¡£¢¯“¢°“¢·“Ä7 9ÄgF9™Ä7 9Ä_B9Ä?¤9Ä_B9ÄÙ J¡”ÄG¨9Ä_B9ÄG¨9ÄgF9ÄÙ J¡”ÄG¨9ÄoJ9Ä?¤9ÄoJ9ÄÙ J¡”Ä7 9ÄoJ9Ä7 9ÄgF9ÄÙ J¡”¡¸ k é k¢¯“¢°“¢·“¡¡¨Ä q›Ä&יăÄË«}Äš@‘Ä'¡“˜¢¯“¢°“¢·“¡¡¨Ä¡™vÄj‡¿™Ä3Ügć]FÄ—'Äå4u¡“˜¢¯“¢°“¢·“¡¡¨Ä!y'ÄáIs™Ä`4gć]FÄ%•$Ä¿´e¡“˜¢¯“¢°“¢·“¡¡¨ÄÖÄX4™ßBÄ´/ŽÄnvG¡“˜¢¯“¢°“¢·“¡¡¨Ä ¼ÿÄœÅ{™ÄaÖOÄ— ~Ä.è'Ä­¡“˜¢¯“¢°“¢·“¡¡¨Ä`…`Äy؃™Ä`4gÄNµXÄâ•Ä`zo¡“˜¢¯“¢°“¢·“¡¡¨Ä¥.Äcôs™Ä3ÜgÄNµXÄ){`Äy؃¡“˜¢¯“¢°“¢·“¡¡¨ÄBqÄ­™Ä”{Äc'SÈÄCkÇ¡“˜¢¯“¢°“¢·“¡¡¨Ä6÷ôÄsD™Äx5Ä'—ÄoôÃÄë—Äx5Ä'—Äâ{Ä —˜¢¯“¢°“¢·“¡¡¨3Äï™4Äë—ÄAãuÄK)'—4Äë—Ä&ÊGÄ—ÿM—˜¢¯“¢°“¢·“¡¡¨ÄÄÑ™¡ÄÏ—Ä3~5Ä^‡2—¡ÄÏ—ÄuJyÄ ¾S—˜¢¯“¢°“¢·“¡¡¨ãÄ™åÄ—ÄWÑGÄ£=h—åÄ—ÄPÌ?Äù†—˜¢¯“¢°“¢·“¡¡¨ÄÛyÄlb_™Ä˜¿Ä­—ÄfGVÄzój—Ę¿Ä­—ÄbÑPÄlb_—˜¢¯“¢°“¢·“¡¡¨Ä A%Ä`zo™Äâ•Ä^½m—Ä A%Ä@ëH—Äâ•Ä^½m—ÄQ[ÄcCt—˜¢¯“¢°“¢·“¡¡¨Äs•BÄy؃™Ä){`ŽÄ üGÄ.<1—Ä){`Äy؃—Äs•BÄp4}—˜¢¯“¢°“¢·“¡¡¨Ä34Ä×™™ÈÄ:À—Ä")µÄ6.+—ÈÄ:À—Ä8CŠÄô“—˜ x j° ¤ÄV}ÄyÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x j° ¤Ä-Ñ—ÄEø' ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k x j° ¤ÄgÄHz% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á6– k x j° ¤Ä¥ð—ÄEø' ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á5– k x j° ¤Ä‡ÄyÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á4– k x j° ¤Ä¥ð—ÄOãP ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á3– k x j° ¤UÄ'/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á2– k x j° ¤íÄ]o^ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k k k gš¤3™3UšŸœ3˜;—— ˜Ršœé˜é—— ˜ ˜%Ršœ­§œ§œ5§œÀ˜Ä—˜Wš§œ˜WšœY˜YWš§œ˜Wšœ.Ðktœ‡˜¹Wš§˜Wšœô˜ôWš§œ˜WšœØÐrt3œ ª‡œªœ˜»—head2šœ)˜) šœ>£œ0§œ§œk˜ŽRš œ §œÐbf§Ïm§Ðfu§¬§˜HRš œ §œ«œ§œ¨œ¬œ¬œ ˜X—Ršœ§œ§œ-§œ˜@Ršœt˜t—— ˜RšœÛ˜ÛR˜R˜ –ö[Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  ~f¡£^q ¢ ¨ r j  » ¢ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈĪW ¢ ¨ÄSæ ¤ ¨Úf ¢ ¨fÚæÜ¡£¡¡¨ x jÈð ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “¸ ¤ ” •  —ÁInter-Arbiter Communication– k x j”$ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “¸ ¤ ” •  —Á2– k x j Ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “¸ ¤ ” •  —Á3– k x jؤ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “¸ ¤ ” •  —Á1– kÜ–¤¤¡šÙĤ¤¡šÖĤ¤¡šé¤¤¡šÜĤ¤¡šÆ¡¤¤¡šÅ¤¤¤¡šÈž¤¤¡šÌš¤¤¡šÊœ¤¤¡šÄ¨¤¤¡šÙ–¤¤¡šÖ–¤¤¡šÒ—¤¤¡šÏ˜¤¤¡šæ—¤¤¡šâ–¤¤¡šß–¤¤¡šô¨¤¤¡šîœ¤¤¡šìš¤¤¡šðž¤¤¡šó¤¤¤¡šò¡¤¤¡šò¹¤¤¡šó¶¤¤¡šð¼¤¤¡šìÀ¤¤¡šî¾¤¤¡šô²¤¤¡šßĤ¤¡šâĤ¤¡šæ䤡šÏ¤¤¡šÒ䤡šÄ²¤¤¡šÊ¾¤¤¡šÌÀ¤¤¡šÈ¼¤¤¡šÅ¶¤¤¡šÆ¹¤¤¡šô¬¤¤¡šô®¤¤¡šÄ¬¤¤¡šÄ®¤¤¡šé˜¤¤¡š x jú £Šr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kxp¤Ä¡š x jJ2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kH@Ĥ¡š`¨¼¤¡š x j$œ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k x j¤Ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k €`¤¡š `¤¡š d¤¡š0@¤à¡š @¤à¡š@¤à¡šÐ@¤à¡šà@¤à¡šð@¤à¡š@¤à¡š@@¤à¡šÀ¤À¡š €¤0¡š`€¤0¡š°0¤¡š°0¤¡šHȤءš x jú £ZÊ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHȤġšÀ,¤¡š x jŸ¡ ¦ú £ÂÒ ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k°°¤Ä¡š°¤à¡šx@¤¡š`¨¸¤¡š¸@`¤¡š x j|  ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “¸ ¤ ” •  —Á5– k x jˆ\ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “¸ ¤ ” •  —Á4– k x jØä ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “¸ ¤ ” •  —ÁDevices– kœ¤¤¡š™@¤¤¡š–@¤¤¡š©>¤¤¡šœ@¤¤¡š†¤¤¡š… ¤¤¡šˆ¤¤¡šŒ¤¤¡šŠ¤¤¡š„$¤¤¡š™¤¤¡š–¤¤¡š’¤¤¡š¤¤¡š¦¤¤¡š¢¤¤¡šŸ¤¤¡š´$¤¤¡š®¤¤¡š¬¤¤¡š°¤¤¡š³ ¤¤¡š²¤¤¡š²5¤¤¡š³2¤¤¡š°8¤¤¡š¬<¤¤¡š®:¤¤¡š´.¤¤¡šŸ@¤¤¡š¢@¤¤¡š¦?¤¤¡š>¤¤¡š’?¤¤¡š„.¤¤¡šŠ:¤¤¡šŒ<¤¤¡šˆ8¤¤¡š…2¤¤¡š†5¤¤¡š´(¤¤¡š´*¤¤¡š„(¤¤¡š„*¤¤¡š©¤¤¡š(ʤ¤¡š%ø¤¤¡š"ø¤¤¡š5ö¤¤¡š(ø¤¤¡šÕ¤¤¡šØ¤¤¡šÒ¤¤¡šÎ¤¤¡šÐ¤¤¡šÜ¤¤¡š%ʤ¤¡š"ʤ¤¡šË¤¤¡šÌ¤¤¡š2ˤ¤¡š.ʤ¤¡š+ʤ¤¡š@ܤ¤¡š:Ф¤¡š8Τ¤¡š<Ò¤¤¡š?ؤ¤¡š>Õ¤¤¡š>í¤¤¡š?ꤤ¡š<𤤡š8ô¤¤¡š:ò¤¤¡š@椤¡š+ø¤¤¡š.ø¤¤¡š2÷¤¤¡šö¤¤¡š÷¤¤¡šæ¤¤¡šò¤¤¡šô¤¤¡šð¤¤¡šê¤¤¡ší¤¤¡š@त¡š@⤤¡šà¤¤¡šâ¤¤¡š5̤¤¡š€ú¤¤¡š}(¤¤¡šz(¤¤¡š&¤¤¡š€(¤¤¡šj¤¤¡ši¤¤¡šl¤¤¡špþ¤¤¡šn¤¤¡šh ¤¤¡š}ú¤¤¡šzú¤¤¡švû¤¤¡šsü¤¤¡šŠû¤¤¡š†ú¤¤¡šƒú¤¤¡š˜ ¤¤¡š’¤¤¡šþ¤¤¡š”¤¤¡š—¤¤¡š–¤¤¡š–¤¤¡š—¤¤¡š” ¤¤¡š$¤¤¡š’"¤¤¡š˜¤¤¡šƒ(¤¤¡š†(¤¤¡šŠ'¤¤¡šs&¤¤¡šv'¤¤¡šh¤¤¡šn"¤¤¡šp$¤¤¡šl ¤¤¡ši¤¤¡šj¤¤¡š˜¤¤¡š˜¤¤¡šh¤¤¡šh¤¤¡šü¤¤¡š x j¨  ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “¸ ¤ ” •  —Á To nStopAct– kH ¤°¡š 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 j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k˜¸Ä¤¡š x jŸ¡ ¦êª ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kȸĤ¡š x jŸ¡ ¦êz ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kȈĤ¡š x jšz ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k˜ˆÄ¤¡š x jšJ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k˜XĤ¡š ¤À¡š x jú £šr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kˆp¤Ä¡š x jZ2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kX@Ĥ¡šp¨¼¤¡š x j4œ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k x j´Ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k°€`¤¡š°`¤¡š°d¤¡š@@¤à¡š0@¤à¡š @¤à¡šà@¤à¡šð@¤à¡š@¤à¡š@¤à¡šP@¤à¡šÐ¤À¡š°€¤0¡šp€¤0¡šÀ0¤¡šÀ0¤¡šXȤءš x jú £jÊ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kXȤġšÐ,¤¡š x jŸ¡ ¦ú £ÒÒ ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÀ°¤Ä¡šÀ¤à¡šˆ@¤¡šp¨¸¤¡šÈ@`¤¡šÐ0Ĥ¡š@€@¤¡š`€¤¡¡šà0¤ð¡š0P°¤¡šP¤à¡š@P´¤¡š@¤ä¡š@¤à¡š ¤°¡š ¤°¡š ¤°¡š ¤°¡š ¤°¡š ¤°¡š@¤°¡šÀ $¤¡š@¤°¡š¤x¡š¤x¡š¤x¡š¤x¡š¤x¡š¤x¡š0¤x¡š0ؤ°¡šèP¤¡šÀ(¤0¡š¤H¡š¤H¡š¤H¡š¤H¡š¤H¡š¸ ¤¡šð¤¡šð¤¡šÀ0¤ø¡š¤¡š¤¡šÀ0¤Ì¡šÀ0¤È¡šÐ¤À¡šÐ¤À¡šÐ¤À¡šÐ¤À¡šÐ¤À¡šà¤À¡š x jú £Šr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kxp¤Ä¡š x jJ2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kH@Ĥ¡š`¨¼¤¡š x j$œ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k x j¤Ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k €`¤¡š `¤¡š d¤¡š0@¤à¡š @¤à¡š@¤à¡šÐ@¤à¡šà@¤à¡šð@¤à¡š@¤à¡š@@¤à¡šÀ¤À¡š €¤0¡š`€¤0¡š°0¤¡š°0¤¡šHȤءš x jú £ZÊ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHȤġšÀ,¤¡š x jŸ¡ ¦ú £ÂÒ ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k°°¤Ä¡š°¤à¡šx@¤¡š`¨¸¤¡š¸@`¤¡š x jú £Šr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kxp¤Ä¡š x jJ2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kH@Ĥ¡š`¨¼¤¡š x j$œ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k x j¤Ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k €`¤¡š `¤¡š d¤¡š0@¤à¡š @¤à¡š@¤à¡šÐ@¤à¡šà@¤à¡šð@¤à¡š@¤à¡š@@¤à¡šÀ¤À¡š €¤0¡š`€¤0¡š°0¤¡š°0¤¡šHȤءš x jú £ZÊ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHȤġšÀ,¤¡š x jŸ¡ ¦ú £ÂÒ ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k°°¤Ä¡š°¤à¡šx@¤¡š`¨¸¤¡š¸@`¤¡š x jú £Šr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kxp¤Ä¡š x jJ2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kH@Ĥ¡š`¨¼¤¡š x j$œ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k x j¤Ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k €`¤¡š `¤¡š d¤¡š0@¤à¡š @¤à¡š@¤à¡šÐ@¤à¡šà@¤à¡šð@¤à¡š@¤à¡š@@¤à¡šÀ¤À¡š €¤0¡š`€¤0¡š°0¤¡š°0¤¡šHȤءš x jú £ZÊ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHȤġšÀ,¤¡š x jŸ¡ ¦ú £ÂÒ ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k°°¤Ä¡š°¤à¡šx@¤¡š`¨¸¤¡š¸@`¤¡šÀ0°¤¡šÀ0´¤¡šÐ¤À¡šð¤À¡šà¤è¡šà¤è¡šà¤è¡šà¤è¡šà¤è¡šð¤è¡š¤è¡šð¤¡šð¤¡šðˆÄ¤¡šðˆ¬¤¡šð¤¡šð¤¡šð¤¡š¤H¡š¤L¡š¸Ä¤¡š ¤H¡š¤H¡šÀ0¤\¡šÀ褡š x jú £ªr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k˜p¤Ä¡š x jj2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kh@Ĥ¡š€¨¼¤¡š x jDœ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k x jÄÜ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– kÀ€`¤¡šÀ`¤¡šÀd¤¡šP@¤à¡š@@¤à¡š0@¤à¡šð@¤à¡š@¤à¡š@¤à¡š @¤à¡š`@¤à¡šà¤À¡šÀ€¤0¡š€€¤0¡šÐ0¤¡šÐ0¤¡šhȤءš x jú £zÊ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é khȤġšà,¤¡š x jŸ¡ ¦ú £âÒ ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kа¤Ä¡šÐ¤à¡š˜@¤¡š€¨¸¤¡šØ@`¤¡š0¤p¡šÀ0¤”¡š  @¤¡š  @¤¡šP¤à¡š@¤à¡š0¤à¡š0¤à¡š0¤à¡š0¤à¡š0¤à¡š0¤à¡š`¤¡šà€$¤¡š`¤¡šP¤¡š@¤¡š@¤¡š@¤¡š@¤¡š@¤¡š@¤¡šÐ0¤À¡š,¤°¡š x jú £Šr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kxp¤Ä¡š x jJ2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kH@Ĥ¡š`¨¼¤¡š x j$œ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k x j¤Ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k €`¤¡š `¤¡š d¤¡š0@¤à¡š @¤à¡š@¤à¡šÐ@¤à¡šà@¤à¡šð@¤à¡š@¤à¡š@@¤à¡šÀ¤À¡š €¤0¡š`€¤0¡š°0¤¡š°0¤¡šHȤءš x jú £ZÊ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHȤġšÀ,¤¡š x jŸ¡ ¦ú £ÂÒ ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k°°¤Ä¡š°¤à¡šx@¤¡š`¨¸¤¡š¸@`¤¡š x jŸ¡ ¦êJ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÈXĤ¡šÀX䤡šà¤è¡šàXȤ¡š x jªB ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¨PĤ¡š x jŸ¡ ¦ r ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kè€Ä¤¡š x jºr ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¸€Ä¤¡š x jŸ¡ ¦ú £Ò2 ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÀ¤Ä¡š x jŸ¡ ¦ú £Ò2 ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÀ¤Ä¡š x jŸ¡ ¦ú £Ò2 ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÀ¤Ä¡š x jŸ¡ ¦ú £Ò2 ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÀ¤Ä¡š x jŸ¡ ¦ú £Ò2 ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÀ¤Ä¡š x jŸ¡ ¦ú £Ò2 ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÀ¤Ä¡š x jŸ¡ ¦ú £Ò2 ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÀ¤Ä¡š x jŸ¡ ¦ú £Ò2 ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÀ¤Ä¡š x jú £Šr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kxp¤Ä¡š x jJ2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kH@Ĥ¡š`¨¼¤¡š x j$œ ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k x j¤Ü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁOR– k €`¤¡š `¤¡š d¤¡š0@¤à¡š @¤à¡š@¤à¡šÐ@¤à¡šà@¤à¡šð@¤à¡š@¤à¡š@@¤à¡šÀ¤À¡š €¤0¡š`€¤0¡š°0¤¡š°0¤¡šHȤءš x jú £ZÊ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kHȤġšÀ,¤¡š x jŸ¡ ¦ú £ÂÒ ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k°°¤Ä¡š°¤à¡šx@¤¡š`¨¸¤¡š¸@`¤¡šÈ $¤¡šÈ ¤°¡š@˜¤Сš@˜¤Ô¡š@ÈĤ¡š`˜¤СšJ¤¤¡šx¤¤¡šŠx¤¤¡šv¤¤¡šx¤¤¡šzU¤¤¡šyX¤¤¡š|R¤¤¡š€N¤¤¡š~P¤¤¡šx\¤¤¡šJ¤¤¡šŠJ¤¤¡š†K¤¤¡šƒL¤¤¡ššK¤¤¡š–J¤¤¡š“J¤¤¡š¨\¤¤¡š¢P¤¤¡š N¤¤¡š¤R¤¤¡š§X¤¤¡š¦U¤¤¡š¦m¤¤¡š§j¤¤¡š¤p¤¤¡š t¤¤¡š¢r¤¤¡š¨f¤¤¡š“x¤¤¡š–x¤¤¡ššw¤¤¡šƒv¤¤¡š†w¤¤¡šxf¤¤¡š~r¤¤¡š€t¤¤¡š|p¤¤¡šyj¤¤¡šzm¤¤¡š¨`¤¤¡š¨b¤¤¡šx`¤¤¡šxb¤¤¡šL¤¤¡š x jÈü ¢ ¨  ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “¸ ¤ ” •  —Á Requesting– k k é k é k g– Interpress–70.0 mm xmin 0.0 mm ymin 168.6278 mm xmax 69.85 mm ymax –Ô72.67222 mm topLeading 72.67222 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š¤3™3UšŸœ5˜=Ušœ˜—Wšœí˜íW˜zW˜®W˜ÛWšœ}˜}X˜R˜kW˜0W˜„W˜sW˜PR˜S˜— ˜$unleaded–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 3.5 in restIndentšÐbz˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ¤˜¤Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ£˜£Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜^Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÊ˜ÊY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœd˜dY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÒ˜ÒY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœâ˜âY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšªœªœªœ ª$˜TY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšª˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÚ˜ÚY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœy˜yY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœœ˜œY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ–˜–Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ_˜_Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ7¬œR˜ŠY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ3£œ£œ'˜ŒY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ~£œ ˜“Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ£œý˜’Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœî˜îY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœs˜sY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentš œK¨œE¬œ¬œ ¨œ^˜ýY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ“˜“Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentš ªœªœªHœ ª‡ŸªÑrtuªK˜ÓY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœfª˜gY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ"˜"Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜lY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ•˜•Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ€˜€Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÔ˜ÔY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœr˜rY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœª˜ªY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ¹˜¹Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœªÇœ.ª˜øY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœë˜ëY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ”˜”Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ¨˜¨Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ†˜†Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜‰Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ ª/œª,˜nY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœŸ˜ŸY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜äY–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜ –Ò26.8111 mm topLeading 26.8111 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 83.60833 mm xmax 23.98888 mm ymax – Interpress–ÇInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  ä¡£ { ¢ ¨ r jÄ  ¤ú £Ä÷Ä™ ¢ ¥ ¥ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈĈ ¢ ¨Ä N  ¤ ¨Â¯0Ú ¢ ¨`‚ÂÞÆœ¡£¡¡¨`¤ÂßH¤À¡š`¤Â߸¤´¡š`ˆÂßhडš x jú £`¨Âßh ¢ ¥ ¨ r j  Š ª  äÄ¡£¤¯“ °“¢·“¢Â⢡¹ k é k x j¡Ÿ ¦ú £`¤Âßh ¢ ¥ ¥ ¨ r j  Š ª  äÄ¡£¤¯“ °“¢·“¢Â⢡¹ k é k`œÂß°´¤¡š`œÂ߸´¤¡š`œÂß°¤¨¡š`¬Âß°¤¨¡ša¼ÂÞȤ˜¡š x j¡Ÿ ¦ú £aÂÂß" ¢ ¥ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– k x j¡Ÿ ¦ú £ažÂß" ¢ ¥ ¥ ¨Ÿ¡ ¦°  ¢ ¥ ¨ÄC ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á1– ka¹Âß#¬¡¡ša¸Â߬¡¡šaÄÂß¡¬¡ša¸Âß¡¬¡ša¬Âß ¬¤¡ša¼Âߤġš x j¡Ÿ ¦ú £aÂÂÞâ ¢ ¥ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– k x j¡Ÿ ¦ú £ažÂÞâ ¢ ¥ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨ÄTe ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á0– ka¹ÂÞ㬡¡ša¸ÂÞج¡¡šaÄÂÞØ¡¬¡ša¸ÂÞØ¡¬¡ša¬ÂÞତ¡ša¼ÂÞФġš`üÂß0¤0¡š x j¡Ÿ ¦ú £aÂßÚ ¢ ¥ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Ä ´= ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k x j¡Ÿ ¦ú £`ÞÂßÚ ¢ ¥ ¥ ¨Ÿ¡ ¦°  ¢ ¥ ¨ÄC ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á1– k`ùÂßÛ¬¡¡š`øÂßЬ¡¡šaÂßС¬¡š`øÂßС¬¡š`ìÂßج¤¡š`üÂßȤġš x jú £`ôÂà0 ¢ ¥ ¨Ÿ ¤ø¸ ¢ ¥ ¨Ä Ù} ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁTInv– k x j¡Ÿ ¦ú £aÂßB ¢ ¥ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Ä ´= ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– k x j¡Ÿ ¦ú £`ÞÂßB ¢ ¥ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨ÄTe ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á0– k`ùÂßC¬¡¡š`øÂß8¬¡¡šaÂß8¡¬¡š`øÂß8¡¬¡š`ìÂß@¬¤¡š`üÂß0¤Ä¡š x jú £a´Âßè ¢ ¥ ¨Ÿ ¤8¸ ¢ ¥ ¨Ä< ‡ ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —ÁTRec2v– k`¤ÂßÀ¤¼¡š`¨ÂßØ𤡚`¤Âß@ô¤¡š`¤Âß@¤¸¡š x j¡Ÿ ¦ú £aÂÂߺ ¢ ¥ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Äù) ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á3– k x j¡Ÿ ¦ú £ažÂߺ ¢ ¥ ¥ ¨Ÿ¡ ¦´  ¢ ¥ ¨Ä ´= ŠÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “À ¤ ” •  —Á2– ka¹Âß»¬¡¡ša¸Âß°¬¡¡šaÄÂß°¡¬¡ša¸Âß°¡¬¡ša¬Â߸¬¤¡ša¼Âߨ¤Ä¡šaTÂÞàü¤¡šaTÂÞà¤È¡šaˆÂß Ð¤¡šaTÂߘ¤Ä¡šaXÂ߸ø¤¡ša\ÂߤÀ¡ša8Âß@डš x jú £aXÂß@ ¢ ¥ ¨ r j  Š ª  äÄ¡£¤¯“ °“¢·“¢Â⢡¹ k é k x j¡Ÿ ¦ú £aTÂß@ ¢ ¥ ¥ ¨ r j  Š ª  äÄ¡£¤¯“ °“¢·“¢Â⢡¹ k é kaLÂ߈´¤¡šaLÂß´¤¡šaLÂ߈¤¨¡ša\Â߈¤¨¡šaTÂߤ´¡šaTÂߤ࡚a`Âß Ø¤¡š k é k é k gš¤3™3U˜—Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜Y–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜z—S–centered lastLineFormatting˜— –RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜R˜ŸR˜Itight–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 4.9 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 4.9 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 4.9 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 4.9 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 4.9 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 4.9 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 4.9 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šœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndent˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentš˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜ Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ ˜Z–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšœ˜–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˜ –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–« 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– Interpress–:0.0 mm xmin 0.0 mm ymin 67.14067 mm xmax 52.20062 mm ymax –Ô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–à"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] š¤3™3K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndent˜Iartworkcaption–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œ\§˜_K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentš±²œ[˜]—Iindent–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndent˜T–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– Interpress–:0.0 mm xmin 0.0 mm ymin 73.93658 mm xmax 59.42711 mm ymax –Ô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–°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] š¤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˜K–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š° ˜ –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 šœÏdœª˜K–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop š œ´!œ´ œ´0œ´&œ˜¬K–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop š ªœªœªœªœªœªœª˜S–centered lastLineFormatting˜—— ˜) –Ô186.2667 mm topLeading 186.2667 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 158.3972 mm xmax 183.4445 mm ymax – Interpress–Ô³Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  a¨¡£[g ¢ ¨ r jÄ ¤ÄoÄû¿ ¢ ¥ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈÄ{Cj ¢ ¨Ä nŠ ¤ ¨Âë* ¢ ¨$v ~ø¡£ x j¡¡¨$x €-Ì €¡¹-Ì €-Ìð¡¹-Ìð$xð¡¹$xð$x €¡¹ k¡¡¨%X°¤à¡š%(¤À¡š x jŸ¡ ¦%â ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$øðĤ¡š$ØÐô¤¡š%(t¤¡š x j$ê ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èÐĤ¡š x j' â ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'ðĤ¡š x j%(È ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁCk– k x jŸ¡ ¦&è ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä…Æ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerOut– k x jŸ¡ ¦&ìè ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä9)T ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerIn– k x j$Úâ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ØðĤ¡š&øðü¤¡š&ø¤À¡š x jŸ¡ ¦'* ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'Ĥ¡š&øü¤¡š$Øðô¤¡š$Øô¤¡š x j$ê ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èĤ¡š x j%( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁnGrant– k$Ø0ô¤¡š x jŸ¡ ¦% " ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è0Ĥ¡š x j%(( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nRequestOut– k x jŸ¡ ¦&èh ¢ ¥ ¨Ÿ¡ ¦À  ¢ ¥ ¨Ä(Ï“ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁInterArbComm[5x8]– k x j' b ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'pĤ¡š&øpü¤¡š x jŸ¡ ¦'Jb ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'(pĤ¡š x j%¬¨ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “¸ ¤ ” •  —Á ArbWith8Req– k x j¡Ÿ ¦ú £%PP ¢ ¥ ¥ ¨Ÿ¡ ¦  ¢ ¥ ¨Ä2(G ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁSlotNo– k%(°p¤¡š x jú £%j ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k%XÀ¤Ä¡š x j%(è ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁDBus[7]– k x jŸ¡ ¦-Ì ¢ ¥ ¨Ÿ¡ ¦|  ¢ ¥ ¨ÄK¯l ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁOtherArbInT[3]– k x jŸ¡ ¦-ÌB ¢ ¥ ¨Ÿ¡ ¦|  ¢ ¥ ¨ÄK¯l ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁOtherArbInT[3]– k x jŸ¡ ¦-Ä" ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä”½ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSStopIn– k x jŸ¡ ¦-Ì ¢ ¥ ¨Ÿ¡ ¦|  ¢ ¥ ¨ÄK¯l ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁOtherArbInT[3]– k x jŸ¡ ¦-ÌB ¢ ¥ ¨Ÿ¡ ¦|  ¢ ¥ ¨ÄK¯l ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁOtherArbInT[3]– k x jŸ¡ ¦-Ä" ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä”½ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSStopIn– k x jŸ¡ ¦-Ì ¢ ¥ ¨Ÿ¡ ¦|  ¢ ¥ ¨ÄK¯l ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁOtherArbInT[3]– k x jŸ¡ ¦-Ì Â ¢ ¥ ¨Ÿ¡ ¦|  ¢ ¥ ¨ÄK¯l ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁOtherArbInT[3]– k x jŸ¡ ¦-ÌB ¢ ¥ ¨Ÿ¡ ¦|  ¢ ¥ ¨ÄK¯l ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁOtherArbInT[3]– k%X  ¤à¡š%( €¤À¡š x jŸ¡ ¦% Ò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ø àĤ¡š$Ø Àô¤¡š%( €t¤¡š x j$ê ² ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è ÀĤ¡š x j' Ò ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' àĤ¡š x j%( ¸ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁCk– k x jŸ¡ ¦&è ø ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä…Æ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerOut– k x jŸ¡ ¦&ì Ø ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä9)T ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerIn– k x j$Ú Ò ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$Ø àĤ¡š&ø àü¤¡š&ø €¤À¡š x jŸ¡ ¦'* ò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' Ĥ¡š&ø ü¤¡š$Ø àô¤¡š$Ø ô¤¡š x j$ê ò ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è Ĥ¡š x j%( ø ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁnGrant– k$Ø ô¤¡š x jŸ¡ ¦%  ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è Ĥ¡š x j%(  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nRequestOut– k x jŸ¡ ¦&è X ¢ ¥ ¨Ÿ¡ ¦À  ¢ ¥ ¨Ä(Ï“ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁInterArbComm[5x8]– k x j' R ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' `Ĥ¡š&ø `ü¤¡š x jŸ¡ ¦'J R ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'( `Ĥ¡š x j%¬ ˜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “¸ ¤ ” •  —Á ArbWith8Req– k x j¡Ÿ ¦ú £%P @ ¢ ¥ ¥ ¨Ÿ¡ ¦  ¢ ¥ ¨Ä2(G ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁSlotNo– k%(  p¤¡š x jú £%j ² ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k%X °¤Ä¡š x j%( Ø ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁDBus[7]– k x j%¸ ¸ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁarbNo. 7– k x j%¸ ( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁarbNo. 6– k x j%¸ ˜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁarbNo. 5– k x j%À ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁArbNo. 4– k%Xð¤à¡š%(ФÀ¡š x jŸ¡ ¦%" ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ø0Ĥ¡š$Øô¤¡š%(Ðt¤¡š x j$ê ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èĤ¡š x j' " ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'0Ĥ¡š x j%( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁCk– k x jŸ¡ ¦&èH ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä…Æ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerOut– k x jŸ¡ ¦&ì( ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä9)T ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerIn– k x j$Ú" ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$Ø0Ĥ¡š&ø0ü¤¡š&øФÀ¡š x jŸ¡ ¦'*B ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'PĤ¡š&øPü¤¡š$Ø0ô¤¡š$ØPô¤¡š x j$êB ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èPĤ¡š x j%(H ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁnGrant– k$Øpô¤¡š x jŸ¡ ¦% b ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èpĤ¡š x j%(h ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nRequestOut– k x jŸ¡ ¦&訠¢ ¥ ¨Ÿ¡ ¦À  ¢ ¥ ¨Ä(Ï“ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁInterArbComm[5x8]– k x j' ¢ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'°Ä¤¡š&ø°ü¤¡š x jŸ¡ ¦'J¢ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'(°Ä¤¡š x j%¬è ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “¸ ¤ ” •  —Á ArbWith8Req– k x j¡Ÿ ¦ú £%P ¢ ¥ ¥ ¨Ÿ¡ ¦  ¢ ¥ ¨Ä2(G ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁSlotNo– k%(ðp¤¡š x jú £%j ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k%X¤Ä¡š x j%(( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁDBus[7]– k x j%¸x ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁarbNo. 3– k%X`¤à¡š%(@¤À¡š x jŸ¡ ¦%’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ø Ä¤¡š$Ø€ô¤¡š%(@t¤¡š x j$êr ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è€Ä¤¡š x j' ’ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' Ä¤¡š x j%(x ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁCk– k x jŸ¡ ¦&踠¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä…Æ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerOut– k x jŸ¡ ¦&옠¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä9)T ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerIn– k x j$Ú’ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ؠĤ¡š&ø ü¤¡š&ø@¤À¡š x jŸ¡ ¦'*² ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'ÀĤ¡š&øÀü¤¡š$Ø ô¤¡š$ØÀô¤¡š x j$ê² ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èÀĤ¡š x j%(¸ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁnGrant– k$Øàô¤¡š x jŸ¡ ¦% Ò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èàĤ¡š x j%(Ø ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nRequestOut– k x jŸ¡ ¦&è ¢ ¥ ¨Ÿ¡ ¦À  ¢ ¥ ¨Ä(Ï“ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁInterArbComm[5x8]– k x j'  ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' Ĥ¡š&ø ü¤¡š x jŸ¡ ¦'J ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'( Ĥ¡š x j%¬X ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “¸ ¤ ” •  —Á ArbWith8Req– k x j¡Ÿ ¦ú £%P ¢ ¥ ¥ ¨Ÿ¡ ¦  ¢ ¥ ¨Ä2(G ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁSlotNo– k%(`p¤¡š x jú £%jr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k%Xp¤Ä¡š x j%(˜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁDBus[7]– k x j+˜ t ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁArbiterConfiguration– k x j%¸è ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁarbNo. 2– k x j(R n ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(R L ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á1– k(S e¡¬¡š(H d¡¬¡š(H p¬¡¡š(H d¬¡¡š(P X¤¬¡š(@ hĤ¡š x j'ò n ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j'ò L ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k'ó e¡¬¡š'è d¡¬¡š'è p¬¡¡š'è d¬¡¡š'ð X¤¬¡š'à hĤ¡š x j*’ n ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j*’ L ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á7– k*“ e¡¬¡š*ˆ d¡¬¡š*ˆ p¬¡¡š*ˆ d¬¡¡š* X¤¬¡š*€ hĤ¡š x j*2 n ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j*2 L ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k*3 e¡¬¡š*( d¡¬¡š*( p¬¡¡š*( d¬¡¡š*0 X¤¬¡š* hĤ¡š x j)Ò n ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)Ò L ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)Ó e¡¬¡š)È d¡¬¡š)È p¬¡¡š)È d¬¡¡š)Ð X¤¬¡š)À hĤ¡š x j)r n ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)r L ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k)s e¡¬¡š)h d¡¬¡š)h p¬¡¡š)h d¬¡¡š)p X¤¬¡š)` hĤ¡š x j) n ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j) L ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á3– k) e¡¬¡š) d¡¬¡š) p¬¡¡š) d¬¡¡š) X¤¬¡š) hĤ¡š x j(² n ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(² L ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k(³ e¡¬¡š(¨ d¡¬¡š(¨ p¬¡¡š(¨ d¬¡¡š(° X¤¬¡š(  hĤ¡š x jF £'Ú ª ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'è ˆ¤Ä¡š*ˆ `¤P¡š)È `¤ ¡š*( `¤8¡š) `¤¡š(  ¤@¡š'è `¤l¡š)h `¤¡š(¨ `¤ð¡š(H `¤à¡š*ˆ (¤H¡š*( ¤`¡š(H °¤¡š(  ì¤¡š x j(ª Ö ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(ª ´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k(« Í¡¬¡š(  Ì¡¬¡š(  ج¡¡š(  ̬¡¡š(¨ À¤¬¡š(˜ ÐĤ¡š x j) Ö ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j) ´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á3– k) Í¡¬¡š) Ì¡¬¡š) ج¡¡š) ̬¡¡š) À¤¬¡š(ø ÐĤ¡š x j)j Ö ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)j ´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k)k Í¡¬¡š)` Ì¡¬¡š)` ج¡¡š)` ̬¡¡š)h À¤¬¡š)X ÐĤ¡š x j)Ê Ö ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)Ê ´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)Ë Í¡¬¡š)À Ì¡¬¡š)À ج¡¡š)À ̬¡¡š)È À¤¬¡š)¸ ÐĤ¡š x j** Ö ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j** ´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k*+ Í¡¬¡š* Ì¡¬¡š* ج¡¡š* ̬¡¡š*( À¤¬¡š* ÐĤ¡š x j*Š Ö ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j*Š ´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á7– k*‹ Í¡¬¡š*€ Ì¡¬¡š*€ ج¡¡š*€ ̬¡¡š*ˆ À¤¬¡š*x ÐĤ¡š x j'ê Ö ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j'ê ´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k'ë Í¡¬¡š'à Ì¡¬¡š'à ج¡¡š'à ̬¡¡š'è À¤¬¡š'Ø ÐĤ¡š(  è¤¡š(H °¤¡š(H °¤À¡š(¨ À¤¡š(¨ À¤¡š) Ф¡š) Ф¡š) Ф ¡š)h डš(¨ À¤°¡š)È ø¤x¡š x j(J Ö ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(J ´ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á1– k(K Í¡¬¡š(@ Ì¡¬¡š(@ ج¡¡š(@ ̬¡¡š(H À¤¬¡š(8 ÐĤ¡š'è (@¤¡š*( ¤¡š)È ø¤¡š)h डš'è @¼¤¡š'è @¤(¡š x jú £'ú ’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'è ¤Ä¡š x jŸ¡ ¦,¢ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k, °Ä¤¡š x jŸ¡ ¦,Â" ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k, 0Ĥ¡š x jŸ¡ ¦,¢ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k, °Ä¤¡š x jŸ¡ ¦,¢ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k, °Ä¤¡š x jŸ¡ ¦,Â" ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k, 0Ĥ¡š x jŸ¡ ¦, ¢ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k,  °Ä¤¡š'P `¬¡š'P Ь¡š'P@¬¡š'P°¬¡š'P ¬¡š'P¬¡š x jF £'Új ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'èH¤Ä¡š*ˆ ¤P¡š)È ¤ ¡š*( ¤8¡š) ¤¡š(`¤@¡š'è ¤l¡š)h ¤¡š(¨ ¤ð¡š(H ¤à¡š*ˆè¤H¡š*(Ф`¡š(Hp¤¡š(`줡š x j(ª– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(ªt ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k(«¡¬¡š( Œ¡¬¡š( ˜¬¡¡š( Œ¬¡¡š(¨€¤¬¡š(˜Ä¤¡š x j) – ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j) t ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á3– k) ¡¬¡š)Œ¡¬¡š)˜¬¡¡š)Œ¬¡¡š)€¤¬¡š(øĤ¡š x j)j– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)jt ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k)k¡¬¡š)`Œ¡¬¡š)`˜¬¡¡š)`Œ¬¡¡š)h€¤¬¡š)XĤ¡š x j)Ê– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)Êt ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)Ë¡¬¡š)ÀŒ¡¬¡š)À˜¬¡¡š)ÀŒ¬¡¡š)È€¤¬¡š)¸Ä¤¡š x j**– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j**t ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k*+¡¬¡š* Œ¡¬¡š* ˜¬¡¡š* Œ¬¡¡š*(€¤¬¡š*Ĥ¡š x j*Š– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j*Št ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á7– k*‹¡¬¡š*€Œ¡¬¡š*€˜¬¡¡š*€Œ¬¡¡š*ˆ€¤¬¡š*xĤ¡š x j'ê– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j'êt ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k'롬¡š'àŒ¡¬¡š'à˜¬¡¡š'àŒ¬¡¡š'耤¬¡š'ØĤ¡š(`褡š(Hp¤¡š(Hp¤À¡š(¨€¤¡š(¨€¤¡š)¤¡š)¤¡š)¤ ¡š)h ¤¡š(¨€¤°¡š)ȸ¤x¡š x j(J– ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(Jt ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á1– k(K¡¬¡š(@Œ¡¬¡š(@˜¬¡¡š(@Œ¬¡¡š(H€¤¬¡š(8Ĥ¡š'èè@¤¡š*(Ф¡š)ȸ¤¡š)h ¤¡š'輤¡š'è¤(¡š x jú £'úR ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'èP¤Ä¡š x jF £'Úú ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'èؤġš*ˆ°¤P¡š)È°¤ ¡š*(°¤8¡š)°¤¡š(ð¤@¡š'è°¤l¡š)h°¤¡š(¨°¤ð¡š(H°¤à¡š*ˆx¤H¡š*(`¤`¡š(H¤¡š(ð줡š x j(ª& ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(ª ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k(«¡¬¡š( ¡¬¡š( (¬¡¡š( ¬¡¡š(¨¤¬¡š(˜ Ĥ¡š x j) & ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á3– k) ¡¬¡š)¡¬¡š)(¬¡¡š)¬¡¡š)¤¬¡š(ø Ĥ¡š x j)j& ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)j ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k)k¡¬¡š)`¡¬¡š)`(¬¡¡š)`¬¡¡š)h¤¬¡š)X Ĥ¡š x j)Ê& ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)Ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)Ë¡¬¡š)À¡¬¡š)À(¬¡¡š)À¬¡¡š)Ȥ¬¡š)¸ Ĥ¡š x j**& ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j** ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k*+¡¬¡š* ¡¬¡š* (¬¡¡š* ¬¡¡š*(¤¬¡š* Ĥ¡š x j*Š& ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j*Š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á7– k*‹¡¬¡š*€¡¬¡š*€(¬¡¡š*€¬¡¡š*ˆ¤¬¡š*x Ĥ¡š x j'ê& ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j'ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k'롬¡š'࡬¡š'à(¬¡¡š'ଡ¡š'褬¡š'Ø Ä¤¡š(ð褡š(H¤¡š(H¤À¡š(¨¤¡š(¨¤¡š) ¤¡š) ¤¡š) ¤ ¡š)h0¤¡š(¨¤°¡š)ÈH¤x¡š x j(J& ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(J ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á1– k(K¡¬¡š(@¡¬¡š(@(¬¡¡š(@¬¡¡š(H¤¬¡š(8 Ĥ¡š'èx@¤¡š*(`¤¡š)ÈH¤¡š)h0¤¡š'輤¡š'è¤(¡š x jú £'úâ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'èà¤Ä¡š x jF £'ÚÚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'踤ġš*ˆ¤P¡š)Ȥ ¡š*(¤8¡š)¤¡š(Ф@¡š'è¤l¡š)h¤¡š(¨¤ð¡š(H¤à¡š*ˆX¤H¡š*(@¤`¡š(Hडš(Ð줡š x j(ª ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(ªä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k(«ý¡¬¡š( ü¡¬¡š( ¬¡¡š( ü¬¡¡š(¨ð¤¬¡š(˜Ä¤¡š x j)  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j) ä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á3– k) ý¡¬¡š)ü¡¬¡š)¬¡¡š)ü¬¡¡š)𤬡š(øĤ¡š x j)j ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)jä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k)ký¡¬¡š)`ü¡¬¡š)`¬¡¡š)`ü¬¡¡š)h𤬡š)XĤ¡š x j)Ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)Êä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)Ëý¡¬¡š)Àü¡¬¡š)À¬¡¡š)Àü¬¡¡š)È𤬡š)¸Ä¤¡š x j** ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j**ä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k*+ý¡¬¡š* ü¡¬¡š* ¬¡¡š* ü¬¡¡š*(𤬡š*Ĥ¡š x j*Š ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j*Šä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á7– k*‹ý¡¬¡š*€ü¡¬¡š*€¬¡¡š*€ü¬¡¡š*ˆð¤¬¡š*xĤ¡š x j'ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j'êä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k'ëý¡¬¡š'àü¡¬¡š'ଡ¡š'àü¬¡¡š'è𤬡š'ØĤ¡š(Ð褡š(Hडš(Hà¤À¡š(¨ð¤¡š(¨ð¤¡š)¤¡š)¤¡š)¤ ¡š)h¤¡š(¨ð¤°¡š)È(¤x¡š x j(J ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(Jä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á1– k(Ký¡¬¡š(@ü¡¬¡š(@¬¡¡š(@ü¬¡¡š(H𤬡š(8Ĥ¡š'èX@¤¡š*(@¤¡š)È(¤¡š)h¤¡š'èp¼¤¡š'èp¤(¡š x jú £'ú ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'èÀ¤Ä¡š x jF £'ÚŠ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'èh¤Ä¡š*ˆ@¤P¡š)È@¤ ¡š*(@¤8¡š)@¤¡š(€¤@¡š'è@¤l¡š)h@¤¡š(¨@¤ð¡š(H@¤à¡š*ˆ¤H¡š*(ð¤`¡š(H¤¡š(€ì¤¡š x j(ª¶ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(ª” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k(«­¡¬¡š( ¬¡¬¡š( ¸¬¡¡š( ¬¬¡¡š(¨ ¤¬¡š(˜°Ä¤¡š x j) ¶ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j) ” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á3– k) ­¡¬¡š)¬¡¬¡š)¸¬¡¡š)¬¬¡¡š) ¤¬¡š(ø°Ä¤¡š x j)j¶ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)j” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k)k­¡¬¡š)`¬¡¬¡š)`¸¬¡¡š)`¬¬¡¡š)h ¤¬¡š)X°Ä¤¡š x j)ʶ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)Ê” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)Ë­¡¬¡š)À¬¡¬¡š)À¸¬¡¡š)À¬¬¡¡š)È ¤¬¡š)¸°Ä¤¡š x j**¶ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j**” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k*+­¡¬¡š* ¬¡¬¡š* ¸¬¡¡š* ¬¬¡¡š*( ¤¬¡š*°Ä¤¡š x j*Š¶ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j*Š” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á7– k*‹­¡¬¡š*€¬¡¬¡š*€¸¬¡¡š*€¬¬¡¡š*ˆ ¤¬¡š*x°Ä¤¡š x j'궠¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j'ê” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k'ë­¡¬¡š'ଡ¬¡š'ฬ¡¡š'ବ¡¡š'è ¤¬¡š'ذĤ¡š(€è¤¡š(H¤¡š(H¤À¡š(¨ ¤¡š(¨ ¤¡š)°¤¡š)°¤¡š)°¤ ¡š)hÀ¤¡š(¨ ¤°¡š)Èؤx¡š x j(J¶ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(J” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á1– k(K­¡¬¡š(@¬¡¬¡š(@¸¬¡¡š(@¬¬¡¡š(H ¤¬¡š(8°Ä¤¡š'è@¤¡š*(𤡚)Èؤ¡š)hÀ¤¡š'è ¼¤¡š'è ¤(¡š x jú £'úr ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'èp¤Ä¡š x jF £'Ú  ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'è ø¤Ä¡š*ˆ ФP¡š)È Ð¤ ¡š*( Ф8¡š) Ф¡š( ¤@¡š'è Фl¡š)h Ф¡š(¨ Фð¡š(H Ф࡚*ˆ ˜¤H¡š*( €¤`¡š(H ¤¡š( 줡š x j(ªF ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(ª$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k(«=¡¬¡š( <¡¬¡š( H¬¡¡š( <¬¡¡š(¨0¤¬¡š(˜@Ĥ¡š x j) F ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j) $ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á3– k) =¡¬¡š)<¡¬¡š)H¬¡¡š)<¬¡¡š)0¤¬¡š(ø@Ĥ¡š x j)jF ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)j$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k)k=¡¬¡š)`<¡¬¡š)`H¬¡¡š)`<¬¡¡š)h0¤¬¡š)X@Ĥ¡š x j)ÊF ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)Ê$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)Ë=¡¬¡š)À<¡¬¡š)ÀH¬¡¡š)À<¬¡¡š)È0¤¬¡š)¸@Ĥ¡š x j**F ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j**$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k*+=¡¬¡š* <¡¬¡š* H¬¡¡š* <¬¡¡š*(0¤¬¡š*@Ĥ¡š x j*ŠF ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j*Š$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á7– k*‹=¡¬¡š*€<¡¬¡š*€H¬¡¡š*€<¬¡¡š*ˆ0¤¬¡š*x@Ĥ¡š x j'êF ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j'ê$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k'ë=¡¬¡š'à<¡¬¡š'àH¬¡¡š'à<¬¡¡š'è0¤¬¡š'Ø@Ĥ¡š( 褡š(H ¤¡š(H ¤À¡š(¨ 0¤¡š(¨ 0¤¡š) @¤¡š) @¤¡š) @¤ ¡š)h P¤¡š(¨ 0¤°¡š)È h¤x¡š x j(JF ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(J$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á1– k(K=¡¬¡š(@<¡¬¡š(@H¬¡¡š(@<¬¡¡š(H0¤¬¡š(8@Ĥ¡š'è ˜@¤¡š*( €¤¡š)È h¤¡š)h P¤¡š'è °¼¤¡š'è °¤(¡š x jú £'ú ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'è¤Ä¡š x jF £'ÚB ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'è ¤Ä¡š x jF £*   ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k*(¤Ä¡š*:¢¢¡š*8¢¢¡š*6¢¢¡š*4¢¢¡š*2¢¢¡š*0¢¢¡š*.¢¢¡š*,¢¢¡š**¢¢¡š*(¢¢¡š*&¢¢¡š*$¢¢¡š*"¢¢¡š*  ¢¢¡š*!¢¢¡š*"¢¢¡š*#¢¢¡š*$¢¢¡š x jF £)ª  ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)Ȥġš)Ú¢¢¡š)Ø¢¢¡š)Ö¢¢¡š)Ô¢¢¡š)Ò¢¢¡š)Т¢¡š)΢¢¡š)Ì¢¢¡š)Ê¢¢¡š)È¢¢¡š)Æ¢¢¡š)Ä¢¢¡š)¢¢¡š)À ¢¢¡š)¾!¢¢¡š)¼"¢¢¡š)º#¢¢¡š)¸$¢¢¡š x jF £)J  ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)h¤Ä¡š)z¢¢¡š)x¢¢¡š)v¢¢¡š)t¢¢¡š)r¢¢¡š)p¢¢¡š)n¢¢¡š)l¢¢¡š)j¢¢¡š)h¢¢¡š)f¢¢¡š)d¢¢¡š)b¢¢¡š)` ¢¢¡š)^!¢¢¡š)\"¢¢¡š)Z#¢¢¡š)X$¢¢¡š x jF £(*  ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k(H¤Ä¡š(Z¢¢¡š(X¢¢¡š(V¢¢¡š(T¢¢¡š(R¢¢¡š(P¢¢¡š(N¢¢¡š(L¢¢¡š(J¢¢¡š(H¢¢¡š(F¢¢¡š(D¢¢¡š(B¢¢¡š(@ ¢¢¡š(>!¢¢¡š(<"¢¢¡š(:#¢¢¡š(8$¢¢¡š'˜ €¤(¡š*ˆ¤P¡š)Ȥ ¡š*(¤8¡š)¤¡š(@¤@¡š'è¤l¡š)h¤¡š(¨¤ð¡š(H¤à¡š*ˆÈ¤H¡š*(°¤`¡š(HP¤¡š(@줡š x j%hŒ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k x j%hl ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á3– k x j%h¼ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k*È° ¤¡š x jŸ¡ ¦-Ä¢ ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä”½ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSStopIn– k x jŸ¡ ¦-Ä‚ ¢ ¥ ¨Ÿ¡ ¦<  ¢ ¥ ¨Ä@]~ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSharedIn– k x jŸ¡ ¦-Ä ¢ ¥ ¨Ÿ¡ ¦<  ¢ ¥ ¨Ä@]~ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSharedIn– k x jŸ¡ ¦-Ä¢ ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä”½ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSStopIn– k x jŸ¡ ¦-Ä‚ ¢ ¥ ¨Ÿ¡ ¦<  ¢ ¥ ¨Ä@]~ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSharedIn– k x jŸ¡ ¦-Ä ¢ ¥ ¨Ÿ¡ ¦<  ¢ ¥ ¨Ä@]~ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSharedIn– k x jŸ¡ ¦-Ä¢ ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä”½ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSStopIn– k x jŸ¡ ¦-Ä‚ ¢ ¥ ¨Ÿ¡ ¦<  ¢ ¥ ¨Ä@]~ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSharedIn– k x jŸ¡ ¦-Ä" ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä”½ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSStopIn– k x jŸ¡ ¦-Ä ¢ ¥ ¨Ÿ¡ ¦<  ¢ ¥ ¨Ä@]~ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSharedIn– k x jŸ¡ ¦-Ä ‚ ¢ ¥ ¨Ÿ¡ ¦<  ¢ ¥ ¨Ä@]~ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSharedIn– k x jŸ¡ ¦-ÄB ¢ ¥ ¨Ÿ¡ ¦l  ¢ ¥ ¨Ä+ Ù ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á ArbReqOut[3]– k x jŸ¡ ¦-Ä" ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä$Ùú ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSStopOut– k$x À¤¡š$x डš$x ¤¡š$x ¤¡š$x 0¤¡š$x P¤¡š$x p¤¡š$x ¤¡š'H ÀФ¡š'x À¤À¡š'H àÔ¤¡š'x ÐÀ¤¡š$x¤¡š$x0¤¡š$xP¤¡š$xp¤¡š'H Ð¤¡š'x ¤À¡š'HÀÔ¤¡š'x°À¤¡š'H€Ð¤¡š'x€¤À¡š'H Ô¤¡š'xÀ¤¡š$x𤡚$x¤¡š$x0¤¡š$xP¤¡š$xФ¡š$x𤡚$x¤¡š$x0¤¡š x j(ªv ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(ªT ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k(«m¡¬¡š( l¡¬¡š( x¬¡¡š( l¬¡¡š(¨`¤¬¡š(˜pĤ¡š x j) v ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j) T ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á3– k) m¡¬¡š)l¡¬¡š)x¬¡¡š)l¬¡¡š)`¤¬¡š(øpĤ¡š x j)jv ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)jT ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k)km¡¬¡š)`l¡¬¡š)`x¬¡¡š)`l¬¡¡š)h`¤¬¡š)XpĤ¡š x j)Êv ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j)ÊT ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)Ëm¡¬¡š)Àl¡¬¡š)Àx¬¡¡š)Àl¬¡¡š)È`¤¬¡š)¸pĤ¡š x j**v ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j**T ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k*+m¡¬¡š* l¡¬¡š* x¬¡¡š* l¬¡¡š*(`¤¬¡š*pĤ¡š x j*Šv ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j*ŠT ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á7– k*‹m¡¬¡š*€l¡¬¡š*€x¬¡¡š*€l¬¡¡š*ˆ`¤¬¡š*xpĤ¡š'H° ¤¡š'HФ¡š$xÀ¤¡š$x ¤¡š$x€¤¡š$x`¤¡š'xÀ¤¡š'HÔ¤¡š'xð¤À¡š'HðФ¡š'x À¤¡š'H0Ô¤¡š'x¤À¡š'HФ¡š$xडš$xÀ¤¡š$x ¤¡š$x€¤¡š'x@À¤¡š'HPÔ¤¡š'x0¤À¡š'H0Ф¡š$x¤¡š$x डš$x À¤¡š$x  ¤¡š'x `À¤¡š'H pÔ¤¡š'x P¤À¡š'H PФ¡š'x ðÀ¤¡š'H Ô¤¡š'x à¤À¡š'H àФ¡š x jŸ¡ ¦-Ä ¢ ¥ ¨Ÿ¡ ¦X  ¢ ¥ ¨Ä} ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSharedOut– k,˜ €¤œ¡š,È à°¤¡š,È €°¤¡š,È €¤¡š,˜ °Ð¤¡š,È`°¤¡š,È°¤¡š,Ȥ¡š,˜0Ф¡š,Èà°¤¡š,È€°¤¡š,È€¤¡š,˜°Ð¤¡š,È`°¤¡š,È°¤¡š,Ȥ¡š,˜0Ф¡š,Èà°¤¡š,È€°¤¡š,È€¤¡š,˜°Ð¤¡š,È`°¤¡š,È°¤¡š,Ȥ¡š,Èà°¤¡š,È€°¤¡š,È€¤¡š,˜°Ð¤¡š,È`°¤¡š,È°¤¡š,Ȥ¡š,˜0Ф¡š x j+(Ì ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á[5 x 8]– k x j%hL ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á1– k x j%hÜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k x j%hü ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k x j%h  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k x j%h ¬ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á7– k(@褡š(HP¤¡š(HP¤À¡š(¨`¤¡š(¨`¤¡š)p¤¡š)p¤¡š)p¤ ¡š)h€¤¡š(¨`¤°¡š)Ș¤x¡š x j(Jv ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j(JT ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á1– k(Km¡¬¡š(@l¡¬¡š(@x¬¡¡š(@l¬¡¡š(H`¤¬¡š(8pĤ¡š'èÈ@¤¡š*(°¤¡š)Ș¤¡š)h€¤¡š'èà¤(¡š'è༤¡š'P¬¡š x jú £'ú2 ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'è0¤Ä¡š x jF £'Ê  ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k'è¤Ä¡š'ú¢¢¡š'ø¢¢¡š'ö¢¢¡š'ô¢¢¡š'ò¢¢¡š'𢢡š'¡š'좢¡š'ꢢ¡š'袢¡š'梢¡š'䢢¡š'⢢¡š'à ¢¢¡š'Þ!¢¢¡š'Ü"¢¢¡š'Ú#¢¢¡š'Ø$¢¢¡š x jF £(Š  ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k(¨¤Ä¡š(º¢¢¡š(¸¢¢¡š(¶¢¢¡š(´¢¢¡š(²¢¢¡š(°¢¢¡š(®¢¢¡š(¬¢¢¡š(ª¢¢¡š(¨¢¢¡š(¦¢¢¡š(¤¢¢¡š(¢¢¢¡š(  ¢¢¡š(ž!¢¢¡š(œ"¢¢¡š(š#¢¢¡š(˜$¢¢¡š x jF £(ê  ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k)¤Ä¡š)¢¢¡š)¢¢¡š)¢¢¡š)¢¢¡š)¢¢¡š)¢¢¡š)¢¢¡š) ¢¢¡š) ¢¢¡š)¢¢¡š)¢¢¡š)¢¢¡š)¢¢¡š) ¢¢¡š(þ!¢¢¡š(ü"¢¢¡š(ú#¢¢¡š(ø$¢¢¡š x j'êv ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á8– k x j'êT ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k'ëm¡¬¡š'àl¡¬¡š'àx¬¡¡š'àl¬¡¡š'è`¤¬¡š'ØpĤ¡š'Pp¬¡š x jF £*j  ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– k*ˆ¤Ä¡š*š¢¢¡š*˜¢¢¡š*–¢¢¡š*”¢¢¡š*’¢¢¡š*¢¢¡š*Ž¢¢¡š*Œ¢¢¡š*Š¢¢¡š*ˆ¢¢¡š*†¢¢¡š*„¢¢¡š*‚¢¢¡š*€ ¢¢¡š*~!¢¢¡š*|"¢¢¡š*z#¢¢¡š*x$¢¢¡š x j,¢" ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k, 0Ĥ¡š,˜0Ф¡š x jŸ¡ ¦,Â" ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k, 0Ĥ¡š x j%¸È ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁarbNo. 0– k%P@¤à¡š%  ¤À¡š x jŸ¡ ¦%r ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ð€Ä¤¡š$Ð`ô¤¡š%  t¤¡š x j$âR ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$à`Ĥ¡š x j'r ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'€Ä¤¡š x j% X ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁCk– k x jŸ¡ ¦&à˜ ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä…Æ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerOut– k x jŸ¡ ¦&äx ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä9)T ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerIn– k x j$Òr ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ЀĤ¡š&ð€ü¤¡š&ð ¤À¡š x jŸ¡ ¦'"’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' Ä¤¡š&ð ü¤¡š$Ѐô¤¡š$Рô¤¡š x j$â’ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$à Ä¤¡š x j% ˜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁnGrant– k$ÐÀô¤¡š x jŸ¡ ¦%² ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$àÀĤ¡š x j% ¸ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nRequestOut– k x jŸ¡ ¦&àø ¢ ¥ ¨Ÿ¡ ¦À  ¢ ¥ ¨Ä(Ï“ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁInterArbComm[5x8]– k x j'ò ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'Ĥ¡š&ðü¤¡š x jŸ¡ ¦'Bò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' Ĥ¡š x j%¤8 ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “¸ ¤ ” •  —Á ArbWith8Req– k x j¡Ÿ ¦ú £%Hà ¢ ¥ ¥ ¨Ÿ¡ ¦  ¢ ¥ ¨Ä2(G ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁSlotNo– k% @p¤¡š x jú £%bR ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k%PP¤Ä¡š x j% x ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁDBus[7]– k%XФ࡚%(°¤À¡š x jŸ¡ ¦% ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$øĤ¡š$Øðô¤¡š%(°t¤¡š x j$êâ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èðĤ¡š x j'  ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'Ĥ¡š x j%(è ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁCk– k x jŸ¡ ¦&è( ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä…Æ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerOut– k x jŸ¡ ¦&ì ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä9)T ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerIn– k x j$Ú ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ØĤ¡š&øü¤¡š&ø°¤À¡š x jŸ¡ ¦'*" ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'0Ĥ¡š&ø0ü¤¡š$Øô¤¡š$Ø0ô¤¡š x j$ê" ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è0Ĥ¡š x j%(( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁnGrant– k$ØPô¤¡š x jŸ¡ ¦% B ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èPĤ¡š x j%(H ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nRequestOut– k x jŸ¡ ¦&舠¢ ¥ ¨Ÿ¡ ¦À  ¢ ¥ ¨Ä(Ï“ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁInterArbComm[5x8]– k x j' ‚ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'Ĥ¡š&øü¤¡š x jŸ¡ ¦'J‚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'(Ĥ¡š x j%¬È ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “¸ ¤ ” •  —Á ArbWith8Req– k x j¡Ÿ ¦ú £%Pp ¢ ¥ ¥ ¨Ÿ¡ ¦  ¢ ¥ ¨Ä2(G ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁSlotNo– k%(Ðp¤¡š x jú £%jâ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k%Xà¤Ä¡š x j%( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁDBus[7]– k%X€¤à¡š%( `¤À¡š x jŸ¡ ¦% ² ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ø ÀĤ¡š$Ø  ô¤¡š%( `t¤¡š x j$ê ’ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è  Ä¤¡š x j' ² ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' ÀĤ¡š x j%( ˜ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁCk– k x jŸ¡ ¦&è Ø ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä…Æ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerOut– k x jŸ¡ ¦&ì ¸ ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä9)T ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerIn– k x j$Ú ² ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$Ø ÀĤ¡š&ø Àü¤¡š&ø `¤À¡š x jŸ¡ ¦'* Ò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' àĤ¡š&ø àü¤¡š$Ø Àô¤¡š$Ø àô¤¡š x j$ê Ò ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è àĤ¡š x j%( Ø ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁnGrant– k$Øô¤¡š x jŸ¡ ¦% ò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$èĤ¡š x j%( ø ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nRequestOut– k x jŸ¡ ¦&è8 ¢ ¥ ¨Ÿ¡ ¦À  ¢ ¥ ¨Ä(Ï“ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁInterArbComm[5x8]– k x j' 2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'@Ĥ¡š&ø@ü¤¡š x jŸ¡ ¦'J2 ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'(@Ĥ¡š x j%¬ x ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “¸ ¤ ” •  —Á ArbWith8Req– k x j¡Ÿ ¦ú £%P  ¢ ¥ ¥ ¨Ÿ¡ ¦  ¢ ¥ ¨Ä2(G ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁSlotNo– k%(€p¤¡š x jú £%j’ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k%X¤Ä¡š x j%( ¸ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁDBus[7]– k%X ¤à¡š%( ð¤À¡š x jŸ¡ ¦% B ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$ø PĤ¡š$Ø 0ô¤¡š%( ðt¤¡š x j$ê " ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è 0Ĥ¡š x j' B ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' PĤ¡š x j%( ( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁCk– k x jŸ¡ ¦&è h ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä…Æ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerOut– k x jŸ¡ ¦&ì H ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä9)T ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBOwnerIn– k x j$Ú B ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$Ø PĤ¡š&ø Pü¤¡š&ø ð¤À¡š x jŸ¡ ¦'* b ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' pĤ¡š&ø pü¤¡š$Ø Pô¤¡š$Ø pô¤¡š x j$ê b ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è pĤ¡š x j%( h ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁnGrant– k$Ø ô¤¡š x jŸ¡ ¦% ‚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k$è Ĥ¡š x j%( ˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nRequestOut– k x jŸ¡ ¦&è È ¢ ¥ ¨Ÿ¡ ¦À  ¢ ¥ ¨Ä(Ï“ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁInterArbComm[5x8]– k x j'  ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k' ÐĤ¡š&ø Ðü¤¡š x jŸ¡ ¦'J  ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k'( ÐĤ¡š x j%¬  ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “¸ ¤ ” •  —Á ArbWith8Req– k x j¡Ÿ ¦ú £%P ° ¢ ¥ ¥ ¨Ÿ¡ ¦  ¢ ¥ ¨Ä2(G ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁSlotNo– k%( p¤¡š x jú £%j " ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k%X ¤Ä¡š x j%( H ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁDBus[7]– k x j%°X ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —ÁarbNo. 1– k x jŸ¡ ¦-Ä ¢ ¢ ¥ ¨Ÿ¡ ¦4  ¢ ¥ ¨Ä”½ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¸ ¤ ” •  —Á nBSStopIn– k k é k é k gš¤3™3U˜Uš¥¦"˜*—S–centered lastLineFormatting˜— ˜%Iragged–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–ŒßInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄÃÑÄö… ¢ ¨ x jÄ€ ¤Ä[%ÁÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä1ç9Ä‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Äs1vÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä©Ä‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄrÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä>§1Ä‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä±Ä‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄzÜSÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /Ä‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄ‹8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄzÜSÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä±ÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä>§1ÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄrÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä©ÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Äs1vÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä1ç9ÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄC߈ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä1ç9ÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Äs1vÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä©ÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄrÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä>§1ÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä±ÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄzÜSÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄB°/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄzÜSÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä>§1ÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä©ÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä1ç9ÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄDœ! ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄDœ! ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄDœ! ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄDœ! ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄM'' ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄM'' ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄM'' ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁħY ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeħY ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhħY ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uħY ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄn'> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄn'> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄn'> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄgç> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄgç> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄgç> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄgç> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄCº+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄCº+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄCº+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄbÆC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄbÆC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄbÆC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄbÆC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄDœ! ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄDœ! ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄDœ! ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄDœ! ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄM'' ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄM'' ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄM'' ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄn'> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄn'> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /Än'> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGħY ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ħY ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rħY ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáħY ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄgç> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄgç> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /Ägç> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄgç> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄCº+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄCº+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄCº+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄbÆC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄbÆC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄbÆC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄbÆC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä1ç9Ä5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Äs1vÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä©Ä5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄrÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä>§1Ä5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä±Ä5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄzÜSÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /Ä5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄ5 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄzÜSÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä±ÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä>§1ÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄrÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä©ÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Äs1vÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä1ç9ÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄE#; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä1ç9ÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Äs1vÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä©ÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄrÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä>§1ÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä±ÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄzÜSÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄÑÇn ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä‰òáÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄË9rÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄO /ÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄzÜSÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä>§1ÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä©ÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä1ç9ÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄFhÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä9áeÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä[%ÁÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k¡¡¨Ä!Ô)Äh/™ÄN3ŽÄeó.Ä!Ô)ŽÄh/¡¡¡¡™¡¡¨ÄN3Äb1A™ÄH/ŽÄl˜1ÄN3ŽÄb1A¡¡¡¡™¡¡¨Ä!Ô)ÄqK™ÄH/ŽÄb1AÄ!Ô)ŽÄqK¡¡¡¡™¡¡¨Ä!Ô)ÄqK™ÄŠR§ŽÄl˜1Ä!Ô)ŽÄqK¡¡¡¡™¡¡¨ÄzÜSÄ‘S™ÄíY ŽÄ …ÄzÜSŽÄ‘S¡¡¡¡™¡¡¨Ä1ç9Ä{O™ÄíY ŽÄ‘SÄ1ç9ŽÄ{O¡¡¡¡™¡¡¨Ä1ç9Ä{O™Ä‚ ”ŽÄùsÄ1ç9ŽÄ{O¡¡¡¡™¡¡¨Ä<¿Ä!¤K ̙ĆNEŽÄ€ù1Ä<¿ŽÄ!¤K Ì¡¡¡¡™¡¡¨Ä†NEÄ3u/™Ä[¢/ŽÄLTĆNEŽÄ3u/¡¡¡¡™¡¡¨Ä<¿Ä{[q™Ä[¢/ŽÄ3u/Ä<¿ŽÄ{[q¡¡¡¡™¡¡¨Ä<¿Ä{[q™ÄùfŽÄLTÄ<¿ŽÄ{[q¡¡¡¡™ x jÄ€ ¤Äƒ<—Än53 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä"*Än53 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤ÄLW<Än53 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä†![Än53 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä"¥Äž¡M ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä"¥Ä?L ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä"¥ÄQ01 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä"¥ÄªGu ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä†![Ä?ª/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤ÄLW<Ä?ª/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä"*Ä?ª/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Äƒ<—Ä?ª/ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä¢!ÓĪGu ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä¢!ÓÄQ01 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä¢!ÓÄ?L ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä¢!ÓÄž¡M ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Ä@CÄ9 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄXC[ÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Äu'dÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZÇáÄ9 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄpÄ9 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄYAAÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä"¥ÄxE½ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄpAGÄM'' ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄn'> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä"¥Ä}?F ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤Ä"¥ÄÖT‡ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄpAGÄCº+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpAGÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄpÄCê1 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄYAAÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Äu'dÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZÇáÄCê1 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤Ä@CÄCê1 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄXC[ÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄGk4 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä¢!ÓÄÖT‡ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄZ£uÄCº+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤ÄZ£uÄn'> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÄ€ ¤Ä¢!ÓÄ}?F ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤Ä¢!ÓÄxE½ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄZ£uÄM'' ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k¡¡¨Ä)­9Äùs™Ä^xcŽÄl˜1Ä)­9ŽÄùs¡¡¡¡™¡¡¨Ä@CÄùs™Ä¡u§ŽÄl˜1Ä@CŽÄùs¡¡¡¡™¡¡¨Äs1vÄùs™Ä­Z±ŽÄl˜1Äs1vŽÄùs¡¡¡¡™¡¡¨Ä}–Äùs™Ä‘Õ“ŽÄl˜1Ä}–ŽÄùs¡¡¡¡™¡¡¨ÄIIÄùs™Ä¼ß¼ŽÄl˜1ÄIIŽÄùs¡¡¡¡™¡¡¨ÄM´IÄùs™ÄÒRÅŽÄl˜1ÄM´IŽÄùs¡¡¡¡™¡¡¨Ä{Äùs™ÄF°CŽÄl˜1Ä{ŽÄùs¡¡¡¡™¡¡¨Ä°­ªÄùs™Ä·y°ŽÄl˜1Ä°­ªŽÄùs¡¡¡¡™¡¡¨ÄQOÄùs™ÄUySŽÄl˜1ÄQOŽÄùs¡¡¡¡™¡¡¨ÄegdÄùs™Ä ŽÄl˜1ÄegdŽÄùs¡¡¡¡™¡¡¨Ä©Äùs™Ä£—ŽÄl˜1Ä©ŽÄùs¡¡¡¡™¡¡¨Ä•I‰Äùs™ÄFÄ+ŽÄl˜1Ä•I‰ŽÄùs¡¡¡¡™¡¡¨Ä½Äùs™Ä˜ŠŽÄl˜1ĽŽÄùs¡¡¡¡™¡¡¨Ä@©:Äùs™Ä­K›ŽÄl˜1Ä@©:ŽÄùs¡¡¡¡™¡¡¨ÄC¥<Äùs™Ä–ŽÄl˜1ÄC¥<ŽÄùs¡¡¡¡™¡¡¨ÄF=;Äùs™ÄÚq·ŽÄl˜1ÄF=;ŽÄùs¡¡¡¡™¡¡¨ÄrÄùs™ÄénŽÄl˜1ÄrŽÄùs¡¡¡¡™¡¡¨ÄZÇáÄùs™Ä2>+ŽÄl˜1ÄZÇáŽÄùs¡¡¡¡™¡¡¨Ä‚@qÄùs™ÄYMŽÄl˜1Ä‚@qŽÄùs¡¡¡¡™¡¡¨Ä@ü9Äùs™Ä{ylŽÄl˜1Ä@ü9ŽÄùs¡¡¡¡™¡¡¨ÄFû;Äùs™Ä€Ë?ŽÄl˜1ÄFû;ŽÄùs¡¡¡¡™¡¡¨ÄMÍ@Äùs™Ä>)3ŽÄl˜1ÄMÍ@ŽÄùs¡¡¡¡™¡¡¨ÄÈ3£Äùs™Ä•yŽÄl˜1ÄÈ3£ŽÄùs¡¡¡¡™¡¡¨Ä „uÄùs™Ä±çŽÄl˜1Ä „uŽÄùs¡¡¡¡™¡¡¨Ä7',Äùs™Ä.%ŽÄl˜1Ä7',ŽÄùs¡¡¡¡™¡¡¨Ä†GfÄùs™ÄZŽÄl˜1ĆGfŽÄùs¡¡¡¡™¡¡¨ÄÝ7nÄùs™Ä+"!ŽÄl˜1ÄÝ7nŽÄùs¡¡¡¡™¡¡¨ÄR£@Äùs™ÄõホÄl˜1ÄR£@ŽÄùs¡¡¡¡™¡¡¨Ä>§1Äùs™ÄùŽÄl˜1Ä>§1ŽÄùs¡¡¡¡™¡¡¨Ä;/Äùs™Ä«»QŽÄl˜1Ä;/ŽÄùs¡¡¡¡™¡¡¨Äs WÄùs™ÄálŽÄl˜1Äs WŽÄùs¡¡¡¡™¡¡¨ÄÕÄùs™ÄÕU]ŽÄl˜1ÄÕŽÄùs¡¡¡¡™¡¡¨ÄšcrÄùs™ÄGò5ŽÄl˜1ÄšcrŽÄùs¡¡¡¡™¡¡¨ÄpÄùs™ÄttUŽÄl˜1ÄpŽÄùs¡¡¡¡™¡¡¨Ä±Äùs™Ä¤ˆwŽÄl˜1ıŽÄùs¡¡¡¡™¡¡¨ÄI 4Äùs™ÄX²?ŽÄl˜1ÄI 4ŽÄùs¡¡¡¡™¡¡¨Ä¡ytÄùs™ÄIò5ŽÄl˜1Ä¡ytŽÄùs¡¡¡¡™¡¡¨ÄI 4ÄO»5™ÄX²?ŽÄ‘SÄI 4ŽÄO»5¡¡¡¡™¡¡¨ÄÕÄb1A™ÄÕU]ŽÄ‘SÄÕŽÄb1A¡¡¡¡™¡¡¨ÄšcrÄb1A™ÄGò5ŽÄ‘SÄšcrŽÄb1A¡¡¡¡™¡¡¨ÄpÄb1A™ÄttUŽÄ‘SÄpŽÄb1A¡¡¡¡™¡¡¨Ä±Äb1A™Ä¤ˆwŽÄ‘SıŽÄb1A¡¡¡¡™¡¡¨Ä¡ytÄb1A™ÄIò5ŽÄ‘SÄ¡ytŽÄb1A¡¡¡¡™¡¡¨Äs WÄb1A™ÄálŽÄ‘SÄs WŽÄb1A¡¡¡¡™¡¡¨Ä†GfÄb1A™ÄZŽÄ‘SĆGfŽÄb1A¡¡¡¡™¡¡¨ÄÝ7nÄb1A™Ä+"!ŽÄ‘SÄÝ7nŽÄb1A¡¡¡¡™¡¡¨ÄR£@Äb1A™ÄõホÄ‘SÄR£@ŽÄb1A¡¡¡¡™¡¡¨Ä>§1Äb1A™ÄùŽÄ‘SÄ>§1ŽÄb1A¡¡¡¡™¡¡¨ÄMÍ@Äb1A™Ä>)3ŽÄ‘SÄMÍ@ŽÄb1A¡¡¡¡™¡¡¨ÄÈ3£Äb1A™Ä•yŽÄ‘SÄÈ3£ŽÄb1A¡¡¡¡™¡¡¨Ä „uÄb1A™Ä±çŽÄ‘SÄ „uŽÄb1A¡¡¡¡™¡¡¨Ä7',Äb1A™Ä.%ŽÄ‘SÄ7',ŽÄb1A¡¡¡¡™¡¡¨Ä;/Äb1A™Ä«»QŽÄ‘SÄ;/ŽÄb1A¡¡¡¡™¡¡¨ÄFû;Äb1A™Ä€Ë?ŽÄ‘SÄFû;ŽÄb1A¡¡¡¡™¡¡¨ÄF=;Äb1A™ÄÚq·ŽÄ‘SÄF=;ŽÄb1A¡¡¡¡™¡¡¨ÄrÄb1A™ÄénŽÄ‘SÄrŽÄb1A¡¡¡¡™¡¡¨ÄZÇáÄb1A™Ä2>+ŽÄ‘SÄZÇáŽÄb1A¡¡¡¡™¡¡¨Ä‚@qÄb1A™ÄYMŽÄ‘SÄ‚@qŽÄb1A¡¡¡¡™¡¡¨Ä•I‰Äb1A™ÄFÄ+ŽÄ‘SÄ•I‰ŽÄb1A¡¡¡¡™¡¡¨Ä½Äb1A™Ä˜ŠŽÄ‘SĽŽÄb1A¡¡¡¡™¡¡¨Ä@©:Äb1A™Ä­K›ŽÄ‘SÄ@©:ŽÄb1A¡¡¡¡™¡¡¨ÄC¥<Äb1A™Ä–ŽÄ‘SÄC¥<ŽÄb1A¡¡¡¡™¡¡¨Ä@ü9Äb1A™Ä{ylŽÄ‘SÄ@ü9ŽÄb1A¡¡¡¡™¡¡¨Ä©Äb1A™Ä£—ŽÄ‘SÄ©ŽÄb1A¡¡¡¡™¡¡¨ÄM´IÄb1A™ÄÒRÅŽÄ‘SÄM´IŽÄb1A¡¡¡¡™¡¡¨Ä{Äb1A™ÄF°CŽÄ‘SÄ{ŽÄb1A¡¡¡¡™¡¡¨Ä°­ªÄb1A™Ä·y°ŽÄ‘SÄ°­ªŽÄb1A¡¡¡¡™¡¡¨ÄQOÄb1A™ÄUySŽÄ‘SÄQOŽÄb1A¡¡¡¡™¡¡¨Ä@CÄb1A™Ä¡u§ŽÄ‘SÄ@CŽÄb1A¡¡¡¡™¡¡¨Äs1vÄb1A™Ä­Z±ŽÄ‘SÄs1vŽÄb1A¡¡¡¡™¡¡¨Ä}–Äb1A™Ä‘Õ“ŽÄ‘SÄ}–ŽÄb1A¡¡¡¡™¡¡¨ÄIIÄb1A™Ä¼ß¼ŽÄ‘SÄIIŽÄb1A¡¡¡¡™¡¡¨ÄegdÄb1A™Ä ŽÄ‘SÄegdŽÄb1A¡¡¡¡™¡¡¨Ä)­9Äb1A™Ä^xcŽÄ‘SÄ)­9ŽÄb1A¡¡¡¡™¡¡¨ÄzÜSÄ}9<™ÄN3ŽÄç ÄzÜSŽÄ}9<¡¡¡¡™¡¡¨ÄzÜSÄ‚±?™ÄN3ŽÄHEžÄzÜSŽÄ‚±?¡¡¡¡™¡¡¨ÄzÜSÄi(3™ÄN3ŽÄa/ÄzÜSŽÄi(3¡¡¡¡™¡¡¨ÄzÜSÄÛ„™ÄN3ŽÄÂ4aÄzÜSŽÄÛ„¡¡¡¡™¡¡¨ÄzÜSÄ+¨™ÄN3ŽÄ¡œUÄzÜSŽÄ+¨¡¡¡¡™¡¡¨ÄzÜSÄ©™ÄN3ŽÄãÀwÄzÜSŽÄ©¡¡¡¡™¡¡¨ÄzÜSÄßt™ÄN3ŽÄf5ÄzÜSŽÄßt¡¡¡¡™¡¡¨ÄzÜSă£D™ÄN3ŽÄrg;ÄzÜSŽÄƒ£D¡¡¡¡™¡¡¨ÄzÜSÄ_z1™ÄN3ŽÄ_¢1ÄzÜSŽÄ_z1¡¡¡¡™¡¡¨ÄzÜSÄ ÏR™ÄN3ŽÄBÉ"ÄzÜSŽÄ ÏR¡¡¡¡™¡¡¨ÄzÜSÄ’ J™ÄN3ŽÄQ )ÄzÜSŽÄ’ J¡¡¡¡™¡¡¨ÄzÜSÄA™ÄN3ŽÄsc:ÄzÜSŽÄA¡¡¡¡™¡¡¨ÄzÜSÄ«“[™ÄN3ŽÄEá%ÄzÜSŽÄ«“[¡¡¡¡™¡¡¨ÄzÜSÄ%u™ÄN3ŽÄŽ½]ÄzÜSŽÄ%u¡¡¡¡™¡¡¨ÄzÜSÄ¡ØW™ÄN3ŽÄÉAlÄzÜSŽÄ¡ØW¡¡¡¡™¡¡¨ÄzÜSļwf™ÄN3ŽÄ*’ÄzÜSŽÄ¼wf¡¡¡¡™¡¡¨ÄzÜSĽg™ÄN3ŽÄ ÄzÜSŽÄ½g¡¡¡¡™¡¡¨ÄzÜSÄt£@™ÄN3ŽÄnôÉÄzÜSŽÄt£@¡¡¡¡™¡¡¨ÄzÜSÄX¯1™ÄN3ŽÄ ±ÄzÜSŽÄX¯1¡¡¡¡™¡¡¨ÄzÜSÄTy/™ÄN3ŽÄ^ÃQÄzÜSŽÄTy/¡¡¡¡™¡¡¨ÄzÜSÄ÷ ™ÄN3ŽÄI+ÄzÜSŽÄ÷ ¡¡¡¡™¡¡¨ÄzÜSÄ*º™ÄN3ŽÄ·6kÄzÜSŽÄ*º¡¡¡¡™¡¡¨ÄzÜSÄV2™ÄN3ŽÄ¶ÕjÄzÜSŽÄV2¡¡¡¡™¡¡¨ÄzÜSį(e™ÄN3ŽÄ²ôgÄzÜSŽÄ¯(e¡¡¡¡™¡¡¨ÄzÜSÄoÍ@™ÄN3ŽÄYA3ÄzÜSŽÄoÍ@¡¡¡¡™¡¡¨ÄzÜSÄñ ‰™ÄN3ŽÄÕHyÄzÜSŽÄñ ‰¡¡¡¡™¡¡¨ÄzÜSÄËÉs™ÄN3ŽÄXÃ2ÄzÜSŽÄËÉs¡¡¡¡™¡¡¨ÄzÜSÄ'C™ÄN3ŽÄ,²ÄzÜSŽÄ'C¡¡¡¡™¡¡¨ÄzÜSÄèaŠ™ÄN3ŽÄèMÄzÜSŽÄèaŠ¡¡¡¡™¡¡¨ÄzÜSÄQä1™ÄN3ŽÄR 1ÄzÜSŽÄQä1¡¡¡¡™¡¡¨ÄzÜSÄc…<™ÄN3ŽÄÓÄzÜSŽÄc…<¡¡¡¡™¡¡¨ÄzÜSÄ_y:™ÄN3ŽÄM„/ÄzÜSŽÄ_y:¡¡¡¡™¡¡¨ÄzÜSÄÅ™ÄN3ŽÄáÝŠÄzÜSŽÄÅ¡¡¡¡™¡¡¨Ä!Ô)ÄÅ™Ä1ç9ŽÄáÝŠÄ!Ô)ŽÄÅ¡¡¡¡™¡¡¨Ä!Ô)Ä_y:™Ä1ç9ŽÄM„/Ä!Ô)ŽÄ_y:¡¡¡¡™¡¡¨Ä!Ô)Äc…<™Ä1ç9ŽÄÓÄ!Ô)ŽÄc…<¡¡¡¡™¡¡¨Ä!Ô)ÄQä1™Ä1ç9ŽÄR 1Ä!Ô)ŽÄQä1¡¡¡¡™¡¡¨Ä!Ô)ÄèaŠ™Ä1ç9ŽÄèMÄ!Ô)ŽÄèaŠ¡¡¡¡™¡¡¨Ä!Ô)Ä'C™Ä1ç9ŽÄ,²Ä!Ô)ŽÄ'C¡¡¡¡™¡¡¨Ä!Ô)ÄËÉs™Ä1ç9ŽÄXÃ2Ä!Ô)ŽÄËÉs¡¡¡¡™¡¡¨Ä!Ô)Äñ ‰™Ä1ç9ŽÄÕHyÄ!Ô)ŽÄñ ‰¡¡¡¡™¡¡¨Ä!Ô)ÄoÍ@™Ä1ç9ŽÄYA3Ä!Ô)ŽÄoÍ@¡¡¡¡™¡¡¨Ä!Ô)į(e™Ä1ç9ŽÄ²ôgÄ!Ô)ŽÄ¯(e¡¡¡¡™¡¡¨Ä!Ô)ÄV2™Ä1ç9ŽÄ¶ÕjÄ!Ô)ŽÄV2¡¡¡¡™¡¡¨Ä!Ô)Ä*º™Ä1ç9ŽÄ·6kÄ!Ô)ŽÄ*º¡¡¡¡™¡¡¨Ä!Ô)Ä÷ ™Ä1ç9ŽÄI+Ä!Ô)ŽÄ÷ ¡¡¡¡™¡¡¨Ä!Ô)ÄTy/™Ä1ç9ŽÄ^ÃQÄ!Ô)ŽÄTy/¡¡¡¡™¡¡¨Ä!Ô)ÄX¯1™Ä1ç9ŽÄ ±Ä!Ô)ŽÄX¯1¡¡¡¡™¡¡¨Ä!Ô)Ät£@™Ä1ç9ŽÄnôÉÄ!Ô)ŽÄt£@¡¡¡¡™¡¡¨Ä!Ô)Ľg™Ä1ç9ŽÄ Ä!Ô)ŽÄ½g¡¡¡¡™¡¡¨Ä!Ô)ļwf™Ä1ç9ŽÄ*’Ä!Ô)ŽÄ¼wf¡¡¡¡™¡¡¨Ä!Ô)Ä¡ØW™Ä1ç9ŽÄÉAlÄ!Ô)ŽÄ¡ØW¡¡¡¡™¡¡¨Ä!Ô)Ä%u™Ä1ç9ŽÄŽ½]Ä!Ô)ŽÄ%u¡¡¡¡™¡¡¨Ä!Ô)Ä«“[™Ä1ç9ŽÄEá%Ä!Ô)ŽÄ«“[¡¡¡¡™¡¡¨Ä!Ô)ÄA™Ä1ç9ŽÄsc:Ä!Ô)ŽÄA¡¡¡¡™¡¡¨Ä!Ô)Ä’ J™Ä1ç9ŽÄQ )Ä!Ô)ŽÄ’ J¡¡¡¡™¡¡¨Ä!Ô)Ä ÏR™Ä1ç9ŽÄBÉ"Ä!Ô)ŽÄ ÏR¡¡¡¡™¡¡¨Ä!Ô)Ä_z1™Ä1ç9ŽÄ_¢1Ä!Ô)ŽÄ_z1¡¡¡¡™¡¡¨Ä!Ô)ă£D™Ä1ç9ŽÄrg;Ä!Ô)ŽÄƒ£D¡¡¡¡™¡¡¨Ä!Ô)Äßt™Ä1ç9ŽÄf5Ä!Ô)ŽÄßt¡¡¡¡™¡¡¨Ä!Ô)Ä©™Ä1ç9ŽÄãÀwÄ!Ô)ŽÄ©¡¡¡¡™¡¡¨Ä!Ô)Ä+¨™Ä1ç9ŽÄ¡œUÄ!Ô)ŽÄ+¨¡¡¡¡™¡¡¨Ä!Ô)ÄÛ„™Ä1ç9ŽÄÂ4aÄ!Ô)ŽÄÛ„¡¡¡¡™¡¡¨Ä!Ô)Äd“2™Ä1ç9ŽÄRš)Ä!Ô)ŽÄd“2¡¡¡¡™¡¡¨Ä!Ô)Ä2š™Ä1ç9ŽÄ¬QUÄ!Ô)ŽÄ2š¡¡¡¡™¡¡¨Ä!Ô)ÄeÕ2™Ä1ç9ŽÄr;8Ä!Ô)ŽÄeÕ2¡¡¡¡™¡¡¨Ä!Ô)Ī²G™Ä1ç9ŽÄ¡ Ä!Ô)ŽÄª²G¡¡¡¡™¡¡¨Ä!Ô)Äi(3™Ä1ç9ŽÄa/Ä!Ô)ŽÄi(3¡¡¡¡™¡¡¨Ä!Ô)Ä‚±?™Ä1ç9ŽÄHEžÄ!Ô)ŽÄ‚±?¡¡¡¡™¡¡¨Ä!Ô)Ä}9<™Ä1ç9ŽÄç Ä!Ô)ŽÄ}9<¡¡¡¡™ x j¨ ¤Ä@ÁEÄ#ø‰ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k x j¨ ¤Ä¡ytÄ#ø‰ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á36– k x j¨ ¤Äj½JÄeõ1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á37– k x j¨ ¤Äj½JÄ6å" ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á72– k x j¨ ¤Ä¡ytij¿r ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á73– k x j¨ ¤Ä@ÁEij¿r ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á108– k x j¨ ¤Ä˜¿¬ÄJÙ. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á109– k x j¨ ¤Ä˜¿¬Äeõ1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á144– k x j¨ ¤Ä9áeÄš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k x j¨ ¤ÄFhÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á2– k x j¨ ¤ÄFhÄš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á3– k x j¨ ¤ÄZ£uĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á4– k x j¨ ¤ÄZ£uÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á5– k x j¨ ¤ÄZ£uÄš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á6– k x j¨ ¤Ä1ç9ĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k x j¨ ¤Ä1ç9ÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á8– k x j¨ ¤Ä1ç9Äš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á9– k x j¨ ¤ÄXC[ĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á10– k x j¨ ¤ÄXC[ÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á11– k x j¨ ¤ÄXC[Äš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á12– k x j¨ ¤Ä"*ĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á13– k x j¨ ¤Ä"*ÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á14– k x j¨ ¤Ä"*Äš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á15– k x j¨ ¤Äu'dÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á17– k x j¨ ¤ÄYAAÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á23– k x j¨ ¤Äu'dĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á18– k x j¨ ¤Äu'dÄš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á16– k x j¨ ¤ÄLW<Äš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á19– k x j¨ ¤ÄLW<ÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á21– k x j¨ ¤ÄLW<ĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á24– k x j¨ ¤ÄYAAÄš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á20– k x j¨ ¤ÄYAAĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á27– k x j¨ ¤Ä†![Äš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á22– k x j¨ ¤Ä†![ÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á26– k x j¨ ¤Ä†![ĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á30– k x j¨ ¤Ä"¥Äš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á25– k x j¨ ¤Ä"¥ÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á29– k x j¨ ¤Ä"¥Ä¸JO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á33– k x j¨ ¤ÄCbÁÄš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á28– k x j¨ ¤ÄCbÁÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á32– k x j¨ ¤Ä¶'§Äš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á31– k x j¨ ¤Ä¶'§ÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á35– k x j¨ ¤Ät—Äš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á34– k x j¨ ¤Ät—ÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á37– k x j¨ ¤Ä¶'§Ä¸JO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á38– k x j¨ ¤Ät—ĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á39– k x j¨ ¤ÄCbÁĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á36– k x j¨ ¤ÄCbÁÄ…ë< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á40– k x j¨ ¤Ä¶'§Ä…ë< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á41– k x j¨ ¤Ät—Ä…ë< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á42– k x j¨ ¤ÄCbÁÄ#ø‰ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á43– k x j¨ ¤Ä¶'§Ä#ø‰ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á44– k x j¨ ¤Ät—Ä#ø‰ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á45– k x j¨ ¤ÄCbÁÄ–?J ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á46– k x j¨ ¤Ä¶'§Ä–?J ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á47– k x j¨ ¤Ät—Ä–?J ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á48– k x j¨ ¤ÄCbÁÄj 7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á49– k x j¨ ¤Ä¶'§Äj 7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á50– k x j¨ ¤Ät—Äj 7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á51– k x j¨ ¤ÄCbÁÄ]D3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á54– k x j¨ ¤Ä¶'§Ä]D3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á53– k x j¨ ¤Ät—Ä]D3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á52– k x j¨ ¤ÄCbÁÄTgÅ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á60– k x j¨ ¤Ä¶'§ÄTgÅ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á57– k x j¨ ¤Ät—ÄTgÅ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á55– k x j¨ ¤ÄCbÁÄJÙ. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á63– k x j¨ ¤Ä¶'§ÄJÙ. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á59– k x j¨ ¤Ät—ÄJÙ. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á56– k x j¨ ¤ÄCbÁÄž¿h ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á66– k x j¨ ¤Ä¶'§Äž¿h ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á62– k x j¨ ¤Ät—Äž¿h ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á58– k x j¨ ¤ÄCbÁÄ[=@ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á69– k x j¨ ¤Ä¶'§Ä[=@ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á65– k x j¨ ¤Ät—Ä[=@ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á61– k x j¨ ¤ÄCbÁÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á72– k x j¨ ¤Ä¶'§ÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á68– k x j¨ ¤Ät—ÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á64– k x j¨ ¤ÄCbÁÄ~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á74– k x j¨ ¤Ä¶'§Ä~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á71– k x j¨ ¤Ät—Ä~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á67– k x j¨ ¤ÄCbÁÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á75– k x j¨ ¤Ä¶'§ÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á73– k x j¨ ¤Ät—ÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á70– k x j¨ ¤Ä0DiÄš™= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á142– k x j¨ ¤Ä0DiÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á139– k x j¨ ¤ÄAÄÆ›$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á143– k x j¨ ¤Ä0DiĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á136– k x j¨ ¤ÄAĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á140– k x j¨ ¤ÄlR'ĸJO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á144– k x j¨ ¤Ä0DiÄ…ë< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á133– k x j¨ ¤ÄAÄ…ë< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á137– k x j¨ ¤ÄlR'Ä…ë< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á141– k x j¨ ¤Ä0DiÄ#ø‰ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á130– k x j¨ ¤ÄAÄ#ø‰ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á134– k x j¨ ¤ÄlR'Ä#ø‰ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á138– k x j¨ ¤Ä0DiÄ–?J ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á128– k x j¨ ¤ÄAÄ–?J ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á131– k x j¨ ¤ÄlR'Ä–?J ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á135– k x j¨ ¤Ä0DiÄj 7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á127– k x j¨ ¤ÄAÄj 7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á129– k x j¨ ¤ÄlR'Äj 7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á132– k x j¨ ¤Ä0DiÄ]D3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á124– k x j¨ ¤ÄAÄ]D3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á125– k x j¨ ¤ÄlR'Ä]D3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á126– k x j¨ ¤Ä0DiÄTgÅ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á123– k x j¨ ¤ÄAÄTgÅ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á122– k x j¨ ¤ÄlR'ÄTgÅ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á121– k x j¨ ¤Ä0DiÄJÙ. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á120– k x j¨ ¤ÄAÄJÙ. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á119– k x j¨ ¤ÄlR'ÄJÙ. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á118– k x j¨ ¤Ä0DiÄž¿h ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á117– k x j¨ ¤ÄAÄž¿h ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á116– k x j¨ ¤ÄlR'Äž¿h ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á115– k x j¨ ¤Ä0DiÄ[=@ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á114– k x j¨ ¤ÄAÄ[=@ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á113– k x j¨ ¤ÄlR'Ä[=@ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á112– k x j¨ ¤Ä0DiÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á111– k x j¨ ¤ÄAÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á110– k x j¨ ¤ÄlR'ÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á108– k x j¨ ¤ÄSmÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á105– k x j¨ ¤Ä’ÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á102– k x j¨ ¤Ä0DiÄ~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á109– k x j¨ ¤ÄAÄ~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á107– k x j¨ ¤ÄlR'Ä~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á104– k x j¨ ¤ÄSmÄ~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á101– k x j¨ ¤Ä0DiÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á106– k x j¨ ¤ÄAÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á103– k x j¨ ¤ÄlR'ÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á100– k x j¨ ¤ÄXC[ÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á99– k x j¨ ¤Äƒ<—Ä~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á98– k x j¨ ¤Ä¢!ÓÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á97– k x j¨ ¤Äƒ<—ÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á94– k x j¨ ¤ÄXC[Ä~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á95– k x j¨ ¤ÄXC[ÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á92– k x j¨ ¤Ä"*ÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á96– k x j¨ ¤Ä"*Ä~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á93– k x j¨ ¤Ä"*ÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á91– k x j¨ ¤Äu'dÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á90– k x j¨ ¤Äu'dÄ~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á89– k x j¨ ¤Äu'dÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á88– k x j¨ ¤ÄLW<ÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á85– k x j¨ ¤ÄLW<Ä~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á86– k x j¨ ¤ÄLW<ÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á87– k x j¨ ¤ÄYAAÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á82– k x j¨ ¤ÄYAAÄ~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á83– k x j¨ ¤ÄYAAÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á84– k x j¨ ¤Ä†![ÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á79– k x j¨ ¤Ä†![Ä~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á80– k x j¨ ¤Ä†![ÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á81– k x j¨ ¤Ä"¥ÄOÆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á76– k x j¨ ¤Ä"¥Ä~g ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á77– k x j¨ ¤Ä"¥ÄÙ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á78– k x j¨ ¤Ä6ÜyÄO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁLegend:– k x j¨ ¤ÄlR'Ä}‹ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁVcc– k x jÄ€ ¤Äa+tÄK£W ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Án– k x jÄ€ ¤Äa+tÄ]úq ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÄ€ ¤ÄºƒÝÄ3š? ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k¡¡¨ÄzÜSĪ²G™ÄN3ŽÄ¡ ÄzÜSŽÄª²G¡¡¡¡™¡¡¨ÄzÜSÄeÕ2™ÄN3ŽÄr;8ÄzÜSŽÄeÕ2¡¡¡¡™¡¡¨ÄzÜSÄ2š™ÄN3ŽÄ¬QUÄzÜSŽÄ2š¡¡¡¡™¡¡¨ÄzÜSÄd“2™ÄN3ŽÄRš)ÄzÜSŽÄd“2¡¡¡¡™ x j¨ ¤Ä}–Ä`0[ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁView from top of Package– k¡¡¨Ä1ç9Ä+A™ÄvmPŽÄ …Ä1ç9ŽÄ+A¡¡¡¡™ x jÄ€ ¤ÄZ£uÄRÕ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k¡¡¨ÄI)XÄ2¨;™Ä1ç9ŽÄ·ÄI)XŽÄ2¨;¡¡¡¡™¡¡¨Ä1ç9Ä.÷9™Ä‚ ”ŽÄ·Ä1ç9ŽÄ.÷9¡¡¡¡™¡¡¨ÄI)XÄOa™Äm(ÃŽÄ.÷9ÄI)XŽÄOa¡¡¡¡™¡¡¨ÄI)XÄOa™Ä^NqŽÄ°¥ÍÄI)XŽÄOa¡¡¡¡™¡¡¨Ä¤¿ÚÄ‚/:™ÄYvŽÄÿùpĤ¿ÚŽÄ‚/:¡¡¡¡™¡¡¨Ä¤¿ÚÄ‚/:™Ä§ÐÑŽÄpc2Ĥ¿ÚŽÄ‚/:¡¡¡¡™¡¡¨Ä[ûsÄpc2™ÄM`ŽÄ›kDÄ[ûsŽÄpc2¡¡¡¡™¡¡¨Ä¤¿ÚÄfU™Ä[ûsŽÄ›kDĤ¿ÚŽÄfU¡¡¡¡™¡¡¨Ä=ËÄfU™ÄE+ŽÄ›kDÄ=ËŽÄfU¡¡¡¡™¡¡¨ÄxwKÄpc2™Äúõ;ŽÄ›kDÄxwKŽÄpc2¡¡¡¡™¡¡¨Ä=ËÄ‚/:™Äúõ;ŽÄpc2Ä=ËŽÄ‚/:¡¡¡¡™¡¡¨Ä=ËÄ‚/:™Ä†ŸVŽÄÿùpÄ=ËŽÄ‚/:¡¡¡¡™¡¡¨Ä=ËÄkÝK™Ä†ŸVŽÄ•Ä=ËŽÄkÝK¡¡¡¡™¡¡¨Ä=ËÄkÝK™Äúõ;ŽÄŠ_`Ä=ËŽÄkÝK¡¡¡¡™¡¡¨ÄxwKă([™Äúõ;ŽÄ•ÄxwKŽÄƒ([¡¡¡¡™¡¡¨Ä=ËÄ}¼™ÄE+ŽÄQ[7Ä=ËŽÄ}¼¡¡¡¡™¡¡¨Ä¤¿ÚÄ}¼™Ä[ûsŽÄQ[7Ĥ¿ÚŽÄ}¼¡¡¡¡™¡¡¨Ä[ûsă([™ÄM`ŽÄ•Ä[ûsŽÄƒ([¡¡¡¡™¡¡¨Ä¤¿ÚÄkÝK™Ä§ÐÑŽÄŠ_`Ĥ¿ÚŽÄkÝK¡¡¡¡™¡¡¨Ä¤¿ÚÄkÝK™ÄYvŽÄ•Ä¤¿ÚŽÄkÝK¡¡¡¡™ x jÄ€ ¤ÄRyaÄS)n ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-MRR£¡ “ •  —¡¡¨  Š¡²“Ái– k x j¨ ¤ÄlR'ÄO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁGround– k x j¨ ¤Ä6Ë<Ä]Ñq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á"Independent pins with heavy traces– k¡¡¨Ä<¿Ä›w<™Ä0DiŽÄ™åžÄ<¿ŽÄ›w<¡¡¡¡™¡¡¨Ä0DiÄ›w<™Ä]öËŽÄLTÄ0DiŽÄ›w<¡¡¡¡™ k k g– Interpress–:0.0 mm xmin 0.0 mm ymin 138.6816 mm xmax 171.4886 mm ymax –Ô174.3108 mm topLeading 174.3108 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–×ïGargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/pga176pin.gargoyle at December 17, 1987 5:13:21 pm PST Produced by version 8710.19 Scripts: ///Users/bland.pa/gargoyle/bland871217-15-34-25.script, ///Users/bland.pa/gargoyle/bland871217-15-51-34.script, ///Users/bland.pa/gargoyle/bland871217-15-54-29.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: 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 [298.0,474.0] Entities: [547]: Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 224.1228 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 249.9068 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 275.7134 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 301.52 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 327.3266 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 353.1332 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 378.9398 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 635.4463][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 378.9398 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 353.1332 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 327.3266 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 301.52 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 275.7134 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 249.9068 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 224.1228 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 609.6397][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 224.1228 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 249.9068 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 275.7134 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 301.52 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 327.3266 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 353.1332 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 378.9398 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 583.8332][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 378.9398 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 327.3266 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 275.7134 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 224.1228 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 532.2426][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 532.2426][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 532.2426][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 532.2426][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 506.436][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 506.436][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 506.436][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 480.6293][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 480.6293][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 480.6293][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 480.6293][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 454.8227][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 454.8227][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 454.8227][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 429.0161][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 429.0161][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 429.0161][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 429.0161][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 403.2095][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 403.2095][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 403.2095][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 377.4028][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 377.4028][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 377.4028][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 377.4028][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 532.2426][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 532.2426][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 532.2426][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 532.2426][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 506.436][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 506.436][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 506.436][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 454.8227][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 454.8227][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 454.8227][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 480.6293][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 480.6293][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 480.6293][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 480.6293][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 429.0161][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 429.0161][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 429.0161][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 429.0161][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 403.2095][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 403.2095][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 403.2095][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 377.4028][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 377.4028][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 377.4028][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 377.4028][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 224.1228 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 249.9068 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 275.7134 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 301.52 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 327.3266 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 353.1332 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 378.9398 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 274.1764][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 378.9398 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 353.1332 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 327.3266 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 301.52 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 275.7134 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 249.9068 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 224.1228 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 299.983][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 224.1228 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 249.9068 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 275.7134 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 301.52 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 327.3266 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 353.1332 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 378.9398 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 325.7896][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 482.1663 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 456.3597 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 430.5531 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 378.9398 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 327.3266 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 275.7134 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 224.1228 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 172.5096 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 146.703 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 120.8964 0.0 25.6 351.5962][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 [211.2195,566.5531] (Line ) [391.8431,566.5531] (Line ) [391.8431,567.3695] (Line ) [211.2195,567.3695] (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.8431,386.7232] (Line ) [392.6596,386.7232] (Line ) [392.6596,567.3468] (Line ) [391.8431,567.3468] (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 [211.2195,385.9068] (Line ) [392.6596,385.9068] (Line ) [392.6596,386.7232] (Line ) [211.2195,386.7232] (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 [211.2195,385.9068] (Line ) [212.0359,385.9068] (Line ) [212.0359,567.3468] (Line ) [211.2195,567.3468] (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 [378.9398,399.6265] (Line ) [379.7562,399.6265] (Line ) [379.7562,554.4662] (Line ) [378.9398,554.4662] (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 [224.1228,398.8101] (Line ) [379.7562,398.8101] (Line ) [379.7562,399.6265] (Line ) [224.1228,399.6265] (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 [224.1228,398.8101] (Line ) [224.9392,398.8101] (Line ) [224.9392,554.4435] (Line ) [224.1228,554.4435] (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 [107.9931,672.9997] (Line ) [498.2898,672.9997] (Line ) [498.2898,673.8161] (Line ) [107.9931,673.8161] (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 [498.2898,280.2765] (Line ) [499.1062,280.2765] (Line ) [499.1062,673.7934] (Line ) [498.2898,673.7934] (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 [107.9931,279.4602] (Line ) [499.1062,279.4602] (Line ) [499.1062,280.2765] (Line ) [107.9931,280.2765] (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 [107.9931,279.4602] (Line ) [108.8094,279.4602] (Line ) [108.8094,673.7934] (Line ) [107.9931,673.7934] (Line ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 222.4901 0.0 25.6 553.1962][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 274.1033 0.0 25.6 553.1962][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 325.7165 0.0 25.6 553.1962][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 377.3298 0.0 25.6 553.1962][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 403.1364 0.0 25.6 527.3897][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 403.1364 0.0 25.6 475.7764][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 403.1364 0.0 25.6 424.1631][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 403.1364 0.0 25.6 372.5726][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 377.3298 0.0 25.6 346.766][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 325.7165 0.0 25.6 346.766][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 274.1033 0.0 25.6 346.766][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 222.4901 0.0 25.6 346.766][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 196.7061 0.0 25.6 372.5726][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 196.7061 0.0 25.6 424.1631][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 196.7061 0.0 25.6 475.7764][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 196.7061 0.0 25.6 527.3897][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 246.6866 0.0 25.6 561.2693][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 248.2967 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 299.9099 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 298.2999 0.0 25.6 561.2693][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 349.9131 0.0 25.6 561.2693][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 351.5232 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 558.0265][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 403.1364 0.0 25.6 509.6561][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 506.436][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 454.8227][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 403.1364 0.0 25.6 458.0428][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 403.1364 0.0 25.6 406.4296][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 403.2095][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 404.7465 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 349.9131 0.0 25.6 354.8164][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 351.5232 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 299.9099 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 298.2999 0.0 25.6 354.8164][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 246.6866 0.0 25.6 354.8164][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 248.2967 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 351.5962][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 196.7061 0.0 25.6 406.4296][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 403.2095][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 454.8227][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 196.7061 0.0 25.6 458.0428][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 196.7061 0.0 25.6 509.6561][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 506.436][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 [243.4665,554.4435] (Line ) [244.2828,554.4435] (Line ) [244.2828,567.3468] (Line ) [243.4665,567.3468] (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 [246.6866,554.4435] (Line ) [247.503,554.4435] (Line ) [247.503,567.3468] (Line ) [246.6866,567.3468] (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.9068,554.4435] (Line ) [250.7232,554.4435] (Line ) [250.7232,567.3468] (Line ) [249.9068,567.3468] (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 [253.1496,554.4435] (Line ) [253.966,554.4435] (Line ) [253.966,567.3468] (Line ) [253.1496,567.3468] (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 [256.3697,554.4435] (Line ) [257.1862,554.4435] (Line ) [257.1862,567.3468] (Line ) [256.3697,567.3468] (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 [272.4932,554.4435] (Line ) [273.3096,554.4435] (Line ) [273.3096,567.3468] (Line ) [272.4932,567.3468] (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 [269.2731,554.4435] (Line ) [270.0894,554.4435] (Line ) [270.0894,567.3468] (Line ) [269.2731,567.3468] (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.0529,554.4435] (Line ) [266.8693,554.4435] (Line ) [266.8693,567.3468] (Line ) [266.0529,567.3468] (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.8101,554.4435] (Line ) [263.6265,554.4435] (Line ) [263.6265,567.3468] (Line ) [262.8101,567.3468] (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 [259.5899,554.4435] (Line ) [260.4063,554.4435] (Line ) [260.4063,567.3468] (Line ) [259.5899,567.3468] (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 [275.7134,554.4435] (Line ) [276.5298,554.4435] (Line ) [276.5298,567.3468] (Line ) [275.7134,567.3468] (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.9562,554.4435] (Line ) [279.7726,554.4435] (Line ) [279.7726,567.3468] (Line ) [278.9562,567.3468] (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.1764,554.4435] (Line ) [282.9928,554.4435] (Line ) [282.9928,567.3468] (Line ) [282.1764,567.3468] (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 [285.3965,554.4435] (Line ) [286.2129,554.4435] (Line ) [286.2129,567.3468] (Line ) [285.3965,567.3468] (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 [288.6167,554.4435] (Line ) [289.4331,554.4435] (Line ) [289.4331,567.3468] (Line ) [288.6167,567.3468] (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 [304.7628,554.4435] (Line ) [305.5792,554.4435] (Line ) [305.5792,567.3468] (Line ) [304.7628,567.3468] (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 [301.52,554.4435] (Line ) [302.3364,554.4435] (Line ) [302.3364,567.3468] (Line ) [301.52,567.3468] (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.2999,554.4435] (Line ) [299.1162,554.4435] (Line ) [299.1162,567.3468] (Line ) [298.2999,567.3468] (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 [295.0797,554.4435] (Line ) [295.896,554.4435] (Line ) [295.896,567.3468] (Line ) [295.0797,567.3468] (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 [291.8596,554.4435] (Line ) [292.6759,554.4435] (Line ) [292.6759,567.3468] (Line ) [291.8596,567.3468] (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 [307.983,554.4435] (Line ) [308.7994,554.4435] (Line ) [308.7994,567.3468] (Line ) [307.983,567.3468] (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 [311.2031,554.4435] (Line ) [312.0195,554.4435] (Line ) [312.0195,567.3468] (Line ) [311.2031,567.3468] (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.4233,554.4435] (Line ) [315.2397,554.4435] (Line ) [315.2397,567.3468] (Line ) [314.4233,567.3468] (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 [317.6661,554.4435] (Line ) [318.4825,554.4435] (Line ) [318.4825,567.3468] (Line ) [317.6661,567.3468] (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 [320.8863,554.4435] (Line ) [321.7027,554.4435] (Line ) [321.7027,567.3468] (Line ) [320.8863,567.3468] (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 [337.0098,554.4435] (Line ) [337.8262,554.4435] (Line ) [337.8262,567.3468] (Line ) [337.0098,567.3468] (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 [333.7896,554.4435] (Line ) [334.606,554.4435] (Line ) [334.606,567.3468] (Line ) [333.7896,567.3468] (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.5468,554.4435] (Line ) [331.3632,554.4435] (Line ) [331.3632,567.3468] (Line ) [330.5468,567.3468] (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 [327.3266,554.4435] (Line ) [328.143,554.4435] (Line ) [328.143,567.3468] (Line ) [327.3266,567.3468] (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 [324.1064,554.4435] (Line ) [324.9228,554.4435] (Line ) [324.9228,567.3468] (Line ) [324.1064,567.3468] (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 [340.2299,554.4435] (Line ) [341.0463,554.4435] (Line ) [341.0463,567.3468] (Line ) [340.2299,567.3468] (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 [343.4501,554.4435] (Line ) [344.2665,554.4435] (Line ) [344.2665,567.3468] (Line ) [343.4501,567.3468] (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.6929,554.4435] (Line ) [347.5093,554.4435] (Line ) [347.5093,567.3468] (Line ) [346.6929,567.3468] (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 [349.9131,554.4435] (Line ) [350.7295,554.4435] (Line ) [350.7295,567.3468] (Line ) [349.9131,567.3468] (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 [353.1332,554.4435] (Line ) [353.9496,554.4435] (Line ) [353.9496,567.3468] (Line ) [353.1332,567.3468] (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 [359.5963,554.4435] (Line ) [360.4126,554.4435] (Line ) [360.4126,567.3468] (Line ) [359.5963,567.3468] (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 [356.3534,554.4435] (Line ) [357.1698,554.4435] (Line ) [357.1698,567.3468] (Line ) [356.3534,567.3468] (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 [359.5963,385.1131] (Line ) [360.4126,385.1131] (Line ) [360.4126,399.6265] (Line ) [359.5963,399.6265] (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 [343.4501,386.7232] (Line ) [344.2665,386.7232] (Line ) [344.2665,399.6265] (Line ) [343.4501,399.6265] (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.6929,386.7232] (Line ) [347.5093,386.7232] (Line ) [347.5093,399.6265] (Line ) [346.6929,399.6265] (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 [349.9131,386.7232] (Line ) [350.7295,386.7232] (Line ) [350.7295,399.6265] (Line ) [349.9131,399.6265] (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 [353.1332,386.7232] (Line ) [353.9496,386.7232] (Line ) [353.9496,399.6265] (Line ) [353.1332,399.6265] (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 [356.3534,386.7232] (Line ) [357.1698,386.7232] (Line ) [357.1698,399.6265] (Line ) [356.3534,399.6265] (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 [340.2299,386.7232] (Line ) [341.0463,386.7232] (Line ) [341.0463,399.6265] (Line ) [340.2299,399.6265] (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 [337.0098,386.7232] (Line ) [337.8262,386.7232] (Line ) [337.8262,399.6265] (Line ) [337.0098,399.6265] (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 [333.7896,386.7232] (Line ) [334.606,386.7232] (Line ) [334.606,399.6265] (Line ) [333.7896,399.6265] (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.5468,386.7232] (Line ) [331.3632,386.7232] (Line ) [331.3632,399.6265] (Line ) [330.5468,399.6265] (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 [327.3266,386.7232] (Line ) [328.143,386.7232] (Line ) [328.143,399.6265] (Line ) [327.3266,399.6265] (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 [311.2031,386.7232] (Line ) [312.0195,386.7232] (Line ) [312.0195,399.6265] (Line ) [311.2031,399.6265] (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.4233,386.7232] (Line ) [315.2397,386.7232] (Line ) [315.2397,399.6265] (Line ) [314.4233,399.6265] (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 [317.6661,386.7232] (Line ) [318.4825,386.7232] (Line ) [318.4825,399.6265] (Line ) [317.6661,399.6265] (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 [320.8863,386.7232] (Line ) [321.7027,386.7232] (Line ) [321.7027,399.6265] (Line ) [320.8863,399.6265] (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 [324.1064,386.7232] (Line ) [324.9228,386.7232] (Line ) [324.9228,399.6265] (Line ) [324.1064,399.6265] (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 [307.983,386.7232] (Line ) [308.7994,386.7232] (Line ) [308.7994,399.6265] (Line ) [307.983,399.6265] (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 [304.7628,386.7232] (Line ) [305.5792,386.7232] (Line ) [305.5792,399.6265] (Line ) [304.7628,399.6265] (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 [301.52,386.7232] (Line ) [302.3364,386.7232] (Line ) [302.3364,399.6265] (Line ) [301.52,399.6265] (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.2999,386.7232] (Line ) [299.1162,386.7232] (Line ) [299.1162,399.6265] (Line ) [298.2999,399.6265] (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 [295.0797,386.7232] (Line ) [295.896,386.7232] (Line ) [295.896,399.6265] (Line ) [295.0797,399.6265] (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.9562,386.7232] (Line ) [279.7726,386.7232] (Line ) [279.7726,399.6265] (Line ) [278.9562,399.6265] (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.1764,386.7232] (Line ) [282.9928,386.7232] (Line ) [282.9928,399.6265] (Line ) [282.1764,399.6265] (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 [285.3965,386.7232] (Line ) [286.2129,386.7232] (Line ) [286.2129,399.6265] (Line ) [285.3965,399.6265] (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 [288.6167,386.7232] (Line ) [289.4331,386.7232] (Line ) [289.4331,399.6265] (Line ) [288.6167,399.6265] (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 [291.8596,386.7232] (Line ) [292.6759,386.7232] (Line ) [292.6759,399.6265] (Line ) [291.8596,399.6265] (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 [275.7134,386.7232] (Line ) [276.5298,386.7232] (Line ) [276.5298,399.6265] (Line ) [275.7134,399.6265] (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 [272.4932,386.7232] (Line ) [273.3096,386.7232] (Line ) [273.3096,399.6265] (Line ) [272.4932,399.6265] (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 [269.2731,386.7232] (Line ) [270.0894,386.7232] (Line ) [270.0894,399.6265] (Line ) [269.2731,399.6265] (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.0529,386.7232] (Line ) [266.8693,386.7232] (Line ) [266.8693,399.6265] (Line ) [266.0529,399.6265] (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.8101,386.7232] (Line ) [263.6265,386.7232] (Line ) [263.6265,399.6265] (Line ) [262.8101,399.6265] (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 [246.6866,386.7232] (Line ) [247.503,386.7232] (Line ) [247.503,399.6265] (Line ) [246.6866,399.6265] (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.9068,386.7232] (Line ) [250.7232,386.7232] (Line ) [250.7232,399.6265] (Line ) [249.9068,399.6265] (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 [253.1496,386.7232] (Line ) [253.966,386.7232] (Line ) [253.966,399.6265] (Line ) [253.1496,399.6265] (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 [256.3697,386.7232] (Line ) [257.1862,386.7232] (Line ) [257.1862,399.6265] (Line ) [256.3697,399.6265] (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 [259.5899,386.7232] (Line ) [260.4063,386.7232] (Line ) [260.4063,399.6265] (Line ) [259.5899,399.6265] (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 [243.4665,386.7232] (Line ) [244.2828,386.7232] (Line ) [244.2828,399.6265] (Line ) [243.4665,399.6265] (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 [378.9398,534.2835] (Line ) [391.8431,534.2835] (Line ) [391.8431,535.0998] (Line ) [378.9398,535.0998] (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 [378.9398,531.0634] (Line ) [391.8431,531.0634] (Line ) [391.8431,531.8798] (Line ) [378.9398,531.8798] (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 [378.9398,527.8431] (Line ) [391.8431,527.8431] (Line ) [391.8431,528.6596] (Line ) [378.9398,528.6596] (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 [378.9398,511.7197] (Line ) [391.8431,511.7197] (Line ) [391.8431,512.536] (Line ) [378.9398,512.536] (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 [378.9398,485.9131] (Line ) [391.8431,485.9131] (Line ) [391.8431,486.7295] (Line ) [378.9398,486.7295] (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 [378.9398,489.1332] (Line ) [391.8431,489.1332] (Line ) [391.8431,489.9496] (Line ) [378.9398,489.9496] (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 [378.9398,492.3534] (Line ) [391.8431,492.3534] (Line ) [391.8431,493.1698] (Line ) [378.9398,493.1698] (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 [378.9398,495.5735] (Line ) [391.8431,495.5735] (Line ) [391.8431,496.3899] (Line ) [378.9398,496.3899] (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 [378.9398,498.8164] (Line ) [391.8431,498.8164] (Line ) [391.8431,499.6328] (Line ) [378.9398,499.6328] (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 [378.9398,502.0366] (Line ) [391.8431,502.0366] (Line ) [391.8431,502.853] (Line ) [378.9398,502.853] (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 [378.9398,505.2567] (Line ) [391.8431,505.2567] (Line ) [391.8431,506.0731] (Line ) [378.9398,506.0731] (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 [378.9398,508.4768] (Line ) [391.8431,508.4768] (Line ) [391.8431,509.2932] (Line ) [378.9398,509.2932] (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 [378.9398,482.6703] (Line ) [391.8431,482.6703] (Line ) [391.8431,483.4866] (Line ) [378.9398,483.4866] (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 [378.9398,479.4501] (Line ) [391.8431,479.4501] (Line ) [391.8431,480.2665] (Line ) [378.9398,480.2665] (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 [378.9398,476.23] (Line ) [391.8431,476.23] (Line ) [391.8431,477.0463] (Line ) [378.9398,477.0463] (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 [378.9398,473.0098] (Line ) [391.8431,473.0098] (Line ) [391.8431,473.8262] (Line ) [378.9398,473.8262] (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 [378.9398,469.767] (Line ) [391.8431,469.767] (Line ) [391.8431,470.5833] (Line ) [378.9398,470.5833] (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 [378.9398,466.5468] (Line ) [391.8431,466.5468] (Line ) [391.8431,467.3632] (Line ) [378.9398,467.3632] (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 [378.9398,463.3266] (Line ) [391.8431,463.3266] (Line ) [391.8431,464.143] (Line ) [378.9398,464.143] (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 [378.9398,460.1065] (Line ) [391.8431,460.1065] (Line ) [391.8431,460.9228] (Line ) [378.9398,460.9228] (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 [378.9398,434.2998] (Line ) [391.8431,434.2998] (Line ) [391.8431,435.1163] (Line ) [378.9398,435.1163] (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 [378.9398,437.52] (Line ) [391.8431,437.52] (Line ) [391.8431,438.3364] (Line ) [378.9398,438.3364] (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 [378.9398,440.7402] (Line ) [391.8431,440.7402] (Line ) [391.8431,441.5565] (Line ) [378.9398,441.5565] (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 [378.9398,443.9603] (Line ) [391.8431,443.9603] (Line ) [391.8431,444.7767] (Line ) [378.9398,444.7767] (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 [378.9398,447.2032] (Line ) [391.8431,447.2032] (Line ) [391.8431,448.0196] (Line ) [378.9398,448.0196] (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 [378.9398,450.4233] (Line ) [391.8431,450.4233] (Line ) [391.8431,451.2397] (Line ) [378.9398,451.2397] (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 [378.9398,453.6435] (Line ) [391.8431,453.6435] (Line ) [391.8431,454.4599] (Line ) [378.9398,454.4599] (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 [378.9398,456.8636] (Line ) [391.8431,456.8636] (Line ) [391.8431,457.68] (Line ) [378.9398,457.68] (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 [378.9398,431.0797] (Line ) [391.8431,431.0797] (Line ) [391.8431,431.8961] (Line ) [378.9398,431.8961] (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 [378.9398,427.8369] (Line ) [391.8431,427.8369] (Line ) [391.8431,428.6532] (Line ) [378.9398,428.6532] (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 [378.9398,424.6167] (Line ) [391.8431,424.6167] (Line ) [391.8431,425.433] (Line ) [378.9398,425.433] (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 [378.9398,421.3965] (Line ) [391.8431,421.3965] (Line ) [391.8431,422.2129] (Line ) [378.9398,422.2129] (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 [378.9398,418.1764] (Line ) [391.8431,418.1764] (Line ) [391.8431,418.9928] (Line ) [378.9398,418.9928] (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 [211.2195,418.1764] (Line ) [224.1228,418.1764] (Line ) [224.1228,418.9928] (Line ) [211.2195,418.9928] (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 [211.2195,421.3965] (Line ) [224.1228,421.3965] (Line ) [224.1228,422.2129] (Line ) [211.2195,422.2129] (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 [211.2195,424.6167] (Line ) [224.1228,424.6167] (Line ) [224.1228,425.433] (Line ) [211.2195,425.433] (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 [211.2195,427.8369] (Line ) [224.1228,427.8369] (Line ) [224.1228,428.6532] (Line ) [211.2195,428.6532] (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 [211.2195,431.0797] (Line ) [224.1228,431.0797] (Line ) [224.1228,431.8961] (Line ) [211.2195,431.8961] (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 [211.2195,456.8636] (Line ) [224.1228,456.8636] (Line ) [224.1228,457.68] (Line ) [211.2195,457.68] (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 [211.2195,453.6435] (Line ) [224.1228,453.6435] (Line ) [224.1228,454.4599] (Line ) [211.2195,454.4599] (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 [211.2195,450.4233] (Line ) [224.1228,450.4233] (Line ) [224.1228,451.2397] (Line ) [211.2195,451.2397] (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 [211.2195,447.2032] (Line ) [224.1228,447.2032] (Line ) [224.1228,448.0196] (Line ) [211.2195,448.0196] (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 [211.2195,443.9603] (Line ) [224.1228,443.9603] (Line ) [224.1228,444.7767] (Line ) [211.2195,444.7767] (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 [211.2195,440.7402] (Line ) [224.1228,440.7402] (Line ) [224.1228,441.5565] (Line ) [211.2195,441.5565] (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 [211.2195,437.52] (Line ) [224.1228,437.52] (Line ) [224.1228,438.3364] (Line ) [211.2195,438.3364] (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 [211.2195,434.2998] (Line ) [224.1228,434.2998] (Line ) [224.1228,435.1163] (Line ) [211.2195,435.1163] (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 [211.2195,460.1065] (Line ) [224.1228,460.1065] (Line ) [224.1228,460.9228] (Line ) [211.2195,460.9228] (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 [211.2195,463.3266] (Line ) [224.1228,463.3266] (Line ) [224.1228,464.143] (Line ) [211.2195,464.143] (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 [211.2195,466.5468] (Line ) [224.1228,466.5468] (Line ) [224.1228,467.3632] (Line ) [211.2195,467.3632] (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 [211.2195,469.767] (Line ) [224.1228,469.767] (Line ) [224.1228,470.5833] (Line ) [211.2195,470.5833] (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 [211.2195,473.0098] (Line ) [224.1228,473.0098] (Line ) [224.1228,473.8262] (Line ) [211.2195,473.8262] (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 [211.2195,476.23] (Line ) [224.1228,476.23] (Line ) [224.1228,477.0463] (Line ) [211.2195,477.0463] (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 [211.2195,479.4501] (Line ) [224.1228,479.4501] (Line ) [224.1228,480.2665] (Line ) [211.2195,480.2665] (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 [211.2195,482.6703] (Line ) [224.1228,482.6703] (Line ) [224.1228,483.4866] (Line ) [211.2195,483.4866] (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 [211.2195,508.4768] (Line ) [224.1228,508.4768] (Line ) [224.1228,509.2932] (Line ) [211.2195,509.2932] (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 [211.2195,505.2567] (Line ) [224.1228,505.2567] (Line ) [224.1228,506.0731] (Line ) [211.2195,506.0731] (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 [211.2195,502.0366] (Line ) [224.1228,502.0366] (Line ) [224.1228,502.853] (Line ) [211.2195,502.853] (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 [211.2195,498.8164] (Line ) [224.1228,498.8164] (Line ) [224.1228,499.6328] (Line ) [211.2195,499.6328] (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 [211.2195,495.5735] (Line ) [224.1228,495.5735] (Line ) [224.1228,496.3899] (Line ) [211.2195,496.3899] (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 [211.2195,492.3534] (Line ) [224.1228,492.3534] (Line ) [224.1228,493.1698] (Line ) [211.2195,493.1698] (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 [211.2195,489.1332] (Line ) [224.1228,489.1332] (Line ) [224.1228,489.9496] (Line ) [211.2195,489.9496] (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 [211.2195,485.9131] (Line ) [224.1228,485.9131] (Line ) [224.1228,486.7295] (Line ) [211.2195,486.7295] (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 [211.2195,511.7197] (Line ) [224.1228,511.7197] (Line ) [224.1228,512.536] (Line ) [211.2195,512.536] (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 [211.2195,514.9399] (Line ) [224.1228,514.9399] (Line ) [224.1228,515.7562] (Line ) [211.2195,515.7562] (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 [211.2195,518.16] (Line ) [224.1228,518.16] (Line ) [224.1228,518.9764] (Line ) [211.2195,518.9764] (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 [211.2195,521.3801] (Line ) [224.1228,521.3801] (Line ) [224.1228,522.1965] (Line ) [211.2195,522.1965] (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 [211.2195,524.6004] (Line ) [224.1228,524.6004] (Line ) [224.1228,525.4167] (Line ) [211.2195,525.4167] (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 [211.2195,527.8431] (Line ) [224.1228,527.8431] (Line ) [224.1228,528.6596] (Line ) [211.2195,528.6596] (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 [211.2195,531.0634] (Line ) [224.1228,531.0634] (Line ) [224.1228,531.8798] (Line ) [211.2195,531.8798] (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 [211.2195,534.2835] (Line ) [224.1228,534.2835] (Line ) [224.1228,535.0998] (Line ) [211.2195,535.0998] (Line ) Text T "1" Xerox/PressFonts/Helvetica [8.0 0.0 240.2463 0.0 8.0 545.5766][1 1.0] F 1.0 props: ( F ) Text T "36" Xerox/PressFonts/Helvetica [8.0 0.0 356.3534 0.0 8.0 545.5766][1 1.0] F 1.0 props: ( F ) Text T "37" Xerox/PressFonts/Helvetica [8.0 0.0 369.2567 0.0 8.0 532.6733][1 1.0] F 1.0 props: ( F ) Text T "72" Xerox/PressFonts/Helvetica [8.0 0.0 369.2567 0.0 8.0 413.3235][1 1.0] F 1.0 props: ( F ) Text T "73" Xerox/PressFonts/Helvetica [8.0 0.0 356.3534 0.0 8.0 403.6403][1 1.0] F 1.0 props: ( F ) Text T "108" Xerox/PressFonts/Helvetica [8.0 0.0 240.2463 0.0 8.0 403.6403][1 1.0] F 1.0 props: ( F ) Text T "109" Xerox/PressFonts/Helvetica [8.0 0.0 227.343 0.0 8.0 416.5436][1 1.0] F 1.0 props: ( F ) Text T "144" Xerox/PressFonts/Helvetica [8.0 0.0 227.343 0.0 8.0 532.6733][1 1.0] F 1.0 props: ( F ) Text T "1" Xerox/PressFonts/Helvetica [8.0 0.0 146.703 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "2" Xerox/PressFonts/Helvetica [8.0 0.0 172.5096 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "3" Xerox/PressFonts/Helvetica [8.0 0.0 172.5096 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "4" Xerox/PressFonts/Helvetica [8.0 0.0 198.3162 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "5" Xerox/PressFonts/Helvetica [8.0 0.0 198.3162 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "6" Xerox/PressFonts/Helvetica [8.0 0.0 198.3162 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "7" Xerox/PressFonts/Helvetica [8.0 0.0 224.1228 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "8" Xerox/PressFonts/Helvetica [8.0 0.0 224.1228 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "9" Xerox/PressFonts/Helvetica [8.0 0.0 224.1228 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "10" Xerox/PressFonts/Helvetica [8.0 0.0 248.2967 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "11" Xerox/PressFonts/Helvetica [8.0 0.0 248.2967 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "12" Xerox/PressFonts/Helvetica [8.0 0.0 248.2967 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "13" Xerox/PressFonts/Helvetica [8.0 0.0 274.1033 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "14" Xerox/PressFonts/Helvetica [8.0 0.0 274.1033 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "15" Xerox/PressFonts/Helvetica [8.0 0.0 274.1033 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "17" Xerox/PressFonts/Helvetica [8.0 0.0 299.9099 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "23" Xerox/PressFonts/Helvetica [8.0 0.0 351.5232 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "18" Xerox/PressFonts/Helvetica [8.0 0.0 299.9099 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "16" Xerox/PressFonts/Helvetica [8.0 0.0 299.9099 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "19" Xerox/PressFonts/Helvetica [8.0 0.0 325.7165 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "21" Xerox/PressFonts/Helvetica [8.0 0.0 325.7165 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "24" Xerox/PressFonts/Helvetica [8.0 0.0 325.7165 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "20" Xerox/PressFonts/Helvetica [8.0 0.0 351.5232 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "27" Xerox/PressFonts/Helvetica [8.0 0.0 351.5232 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "22" Xerox/PressFonts/Helvetica [8.0 0.0 377.3298 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "26" Xerox/PressFonts/Helvetica [8.0 0.0 377.3298 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "30" Xerox/PressFonts/Helvetica [8.0 0.0 377.3298 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "25" Xerox/PressFonts/Helvetica [8.0 0.0 403.1364 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "29" Xerox/PressFonts/Helvetica [8.0 0.0 403.1364 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "33" Xerox/PressFonts/Helvetica [8.0 0.0 403.1364 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "28" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "32" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "31" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "35" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "34" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "37" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "38" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "39" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "36" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "40" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 571.3833][1 1.0] F 1.0 props: ( F ) Text T "41" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 571.3833][1 1.0] F 1.0 props: ( F ) Text T "42" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 571.3833][1 1.0] F 1.0 props: ( F ) Text T "43" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 545.5766][1 1.0] F 1.0 props: ( F ) Text T "44" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 545.5766][1 1.0] F 1.0 props: ( F ) Text T "45" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 545.5766][1 1.0] F 1.0 props: ( F ) Text T "46" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 519.7701][1 1.0] F 1.0 props: ( F ) Text T "47" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 519.7701][1 1.0] F 1.0 props: ( F ) Text T "48" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 519.7701][1 1.0] F 1.0 props: ( F ) Text T "49" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 493.9635][1 1.0] F 1.0 props: ( F ) Text T "50" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 493.9635][1 1.0] F 1.0 props: ( F ) Text T "51" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 493.9635][1 1.0] F 1.0 props: ( F ) Text T "54" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 468.1569][1 1.0] F 1.0 props: ( F ) Text T "53" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 468.1569][1 1.0] F 1.0 props: ( F ) Text T "52" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 468.1569][1 1.0] F 1.0 props: ( F ) Text T "60" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 442.3502][1 1.0] F 1.0 props: ( F ) Text T "57" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 442.3502][1 1.0] F 1.0 props: ( F ) Text T "55" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 442.3502][1 1.0] F 1.0 props: ( F ) Text T "63" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 416.5436][1 1.0] F 1.0 props: ( F ) Text T "59" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 416.5436][1 1.0] F 1.0 props: ( F ) Text T "56" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 416.5436][1 1.0] F 1.0 props: ( F ) Text T "66" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 390.7597][1 1.0] F 1.0 props: ( F ) Text T "62" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 390.7597][1 1.0] F 1.0 props: ( F ) Text T "58" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 390.7597][1 1.0] F 1.0 props: ( F ) Text T "69" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 364.9531][1 1.0] F 1.0 props: ( F ) Text T "65" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 364.9531][1 1.0] F 1.0 props: ( F ) Text T "61" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 364.9531][1 1.0] F 1.0 props: ( F ) Text T "72" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "68" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "64" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "74" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "71" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "67" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "75" Xerox/PressFonts/Helvetica [8.0 0.0 428.943 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "73" Xerox/PressFonts/Helvetica [8.0 0.0 454.7496 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "70" Xerox/PressFonts/Helvetica [8.0 0.0 480.5563 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "142" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 648.8031][1 1.0] F 1.0 props: ( F ) Text T "139" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "143" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 622.9966][1 1.0] F 1.0 props: ( F ) Text T "136" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "140" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "144" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 597.19][1 1.0] F 1.0 props: ( F ) Text T "133" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 571.3833][1 1.0] F 1.0 props: ( F ) Text T "137" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 571.3833][1 1.0] F 1.0 props: ( F ) Text T "141" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 571.3833][1 1.0] F 1.0 props: ( F ) Text T "130" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 545.5766][1 1.0] F 1.0 props: ( F ) Text T "134" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 545.5766][1 1.0] F 1.0 props: ( F ) Text T "138" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 545.5766][1 1.0] F 1.0 props: ( F ) Text T "128" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 519.7701][1 1.0] F 1.0 props: ( F ) Text T "131" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 519.7701][1 1.0] F 1.0 props: ( F ) Text T "135" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 519.7701][1 1.0] F 1.0 props: ( F ) Text T "127" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 493.9635][1 1.0] F 1.0 props: ( F ) Text T "129" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 493.9635][1 1.0] F 1.0 props: ( F ) Text T "132" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 493.9635][1 1.0] F 1.0 props: ( F ) Text T "124" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 468.1569][1 1.0] F 1.0 props: ( F ) Text T "125" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 468.1569][1 1.0] F 1.0 props: ( F ) Text T "126" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 468.1569][1 1.0] F 1.0 props: ( F ) Text T "123" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 442.3502][1 1.0] F 1.0 props: ( F ) Text T "122" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 442.3502][1 1.0] F 1.0 props: ( F ) Text T "121" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 442.3502][1 1.0] F 1.0 props: ( F ) Text T "120" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 416.5436][1 1.0] F 1.0 props: ( F ) Text T "119" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 416.5436][1 1.0] F 1.0 props: ( F ) Text T "118" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 416.5436][1 1.0] F 1.0 props: ( F ) Text T "117" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 390.7597][1 1.0] F 1.0 props: ( F ) Text T "116" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 390.7597][1 1.0] F 1.0 props: ( F ) Text T "115" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 390.7597][1 1.0] F 1.0 props: ( F ) Text T "114" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 364.9531][1 1.0] F 1.0 props: ( F ) Text T "113" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 364.9531][1 1.0] F 1.0 props: ( F ) Text T "112" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 364.9531][1 1.0] F 1.0 props: ( F ) Text T "111" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "110" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "108" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "105" Xerox/PressFonts/Helvetica [8.0 0.0 195.0734 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "102" Xerox/PressFonts/Helvetica [8.0 0.0 220.88 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "109" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "107" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "104" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "101" Xerox/PressFonts/Helvetica [8.0 0.0 195.0734 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "106" Xerox/PressFonts/Helvetica [8.0 0.0 117.6762 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "103" Xerox/PressFonts/Helvetica [8.0 0.0 143.4828 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "100" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "99" Xerox/PressFonts/Helvetica [8.0 0.0 248.2967 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "98" Xerox/PressFonts/Helvetica [8.0 0.0 222.4901 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "97" Xerox/PressFonts/Helvetica [8.0 0.0 196.7061 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "94" Xerox/PressFonts/Helvetica [8.0 0.0 222.4901 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "95" Xerox/PressFonts/Helvetica [8.0 0.0 248.2967 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "92" Xerox/PressFonts/Helvetica [8.0 0.0 248.2967 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "96" Xerox/PressFonts/Helvetica [8.0 0.0 274.1033 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "93" Xerox/PressFonts/Helvetica [8.0 0.0 274.1033 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "91" Xerox/PressFonts/Helvetica [8.0 0.0 274.1033 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "90" Xerox/PressFonts/Helvetica [8.0 0.0 299.9099 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "89" Xerox/PressFonts/Helvetica [8.0 0.0 299.9099 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "88" Xerox/PressFonts/Helvetica [8.0 0.0 299.9099 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "85" Xerox/PressFonts/Helvetica [8.0 0.0 325.7165 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "86" Xerox/PressFonts/Helvetica [8.0 0.0 325.7165 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "87" Xerox/PressFonts/Helvetica [8.0 0.0 325.7165 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "82" Xerox/PressFonts/Helvetica [8.0 0.0 351.5232 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "83" Xerox/PressFonts/Helvetica [8.0 0.0 351.5232 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "84" Xerox/PressFonts/Helvetica [8.0 0.0 351.5232 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "79" Xerox/PressFonts/Helvetica [8.0 0.0 377.3298 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "80" Xerox/PressFonts/Helvetica [8.0 0.0 377.3298 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "81" Xerox/PressFonts/Helvetica [8.0 0.0 377.3298 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "76" Xerox/PressFonts/Helvetica [8.0 0.0 403.1364 0.0 8.0 339.1465][1 1.0] F 1.0 props: ( F ) Text T "77" Xerox/PressFonts/Helvetica [8.0 0.0 403.1364 0.0 8.0 313.3398][1 1.0] F 1.0 props: ( F ) Text T "78" Xerox/PressFonts/Helvetica [8.0 0.0 403.1364 0.0 8.0 287.5332][1 1.0] F 1.0 props: ( F ) Text T "Legend:" Xerox/PressFonts/Helvetica [8.0 0.0 116.0661 0.0 8.0 241.5666][1 1.0] F 1.0 props: ( F ) Text T "Vcc" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 230.2734][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [25.6 0.0 214.4397 0.0 25.6 222.5631][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [25.6 0.0 214.4397 0.0 25.6 212.9027][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 216.0498 0.0 25.6 209.6825][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 [378.9398,524.6004] (Line ) [391.8431,524.6004] (Line ) [391.8431,525.4167] (Line ) [378.9398,525.4167] (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 [378.9398,521.3801] (Line ) [391.8431,521.3801] (Line ) [391.8431,522.1965] (Line ) [378.9398,522.1965] (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 [378.9398,518.16] (Line ) [391.8431,518.16] (Line ) [391.8431,518.9764] (Line ) [378.9398,518.9764] (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 [378.9398,514.9399] (Line ) [391.8431,514.9399] (Line ) [391.8431,515.7562] (Line ) [378.9398,515.7562] (Line ) Text T "View from top of Package" Xerox/PressFonts/Helvetica [8.0 0.0 253.1496 0.0 8.0 270.5934][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 [224.1228,553.6498] (Line ) [378.9625,553.6498] (Line ) [378.9625,554.4662] (Line ) [224.1228,554.4662] (Line ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 198.3162 0.0 25.6 558.0265][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 [212.8296,219.7965] (Line ) [224.1228,219.7965] (Line ) [224.1228,220.6129] (Line ) [212.8296,220.6129] (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 [224.1228,210.9298] (Line ) [224.9392,210.9298] (Line ) [224.9392,220.6129] (Line ) [224.1228,220.6129] (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 [212.8296,210.1134] (Line ) [224.9165,210.1134] (Line ) [224.9165,210.9298] (Line ) [212.8296,210.9298] (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 [212.8296,210.1134] (Line ) [213.646,210.1134] (Line ) [213.646,220.5902] (Line ) [212.8296,220.5902] (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 [193.4633,574.6035] (Line ) [194.2797,574.6035] (Line ) [194.2797,585.0803] (Line ) [193.4633,585.0803] (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 [193.4633,574.6035] (Line ) [205.5502,574.6035] (Line ) [205.5502,575.4198] (Line ) [193.4633,575.4198] (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 [204.7565,575.4198] (Line ) [205.5729,575.4198] (Line ) [205.5729,585.103] (Line ) [204.7565,585.103] (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 [193.4633,584.2866] (Line ) [204.7565,584.2866] (Line ) [204.7565,585.103] (Line ) [193.4633,585.103] (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.9163,584.2866] (Line ) [411.2095,584.2866] (Line ) [411.2095,585.103] (Line ) [399.9163,585.103] (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.1868,575.4198] (Line ) [412.0032,575.4198] (Line ) [412.0032,585.103] (Line ) [411.1868,585.103] (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.9163,574.6035] (Line ) [412.0032,574.6035] (Line ) [412.0032,575.4198] (Line ) [399.9163,575.4198] (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.9163,574.6035] (Line ) [400.7326,574.6035] (Line ) [400.7326,585.0803] (Line ) [399.9163,585.0803] (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.9163,368.1732] (Line ) [400.7326,368.1732] (Line ) [400.7326,378.6501] (Line ) [399.9163,378.6501] (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.9163,368.1732] (Line ) [412.0032,368.1732] (Line ) [412.0032,368.9896] (Line ) [399.9163,368.9896] (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.1868,368.967] (Line ) [412.0032,368.967] (Line ) [412.0032,378.6501] (Line ) [411.1868,378.6501] (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.9163,377.8564] (Line ) [411.2095,377.8564] (Line ) [411.2095,378.6728] (Line ) [399.9163,378.6728] (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 [193.4633,377.8564] (Line ) [204.7565,377.8564] (Line ) [204.7565,378.6728] (Line ) [193.4633,378.6728] (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 [204.7565,368.967] (Line ) [205.5729,368.967] (Line ) [205.5729,378.6501] (Line ) [204.7565,378.6501] (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 [193.4633,368.1732] (Line ) [205.5502,368.1732] (Line ) [205.5502,368.9896] (Line ) [193.4633,368.9896] (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 [193.4633,368.1732] (Line ) [194.2797,368.1732] (Line ) [194.2797,378.6501] (Line ) [193.4633,378.6501] (Line ) Text T "i" Xerox/Pressfonts/Gates [25.6 0.0 217.6599 0.0 25.6 193.5364][1 1.0] F 1.0 props: ( F ) Text T "Ground" Xerox/PressFonts/Helvetica [8.0 0.0 169.2668 0.0 8.0 241.5666][1 1.0] F 1.0 props: ( F ) Text T "Independent pins with heavy traces" Xerox/PressFonts/Helvetica [8.0 0.0 233.7833 0.0 8.0 212.5398][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 [107.9931,663.3165] (Line ) [117.6762,663.3165] (Line ) [117.6762,664.133] (Line ) [107.9931,664.133] (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 [117.6762,663.3165] (Line ) [118.4926,663.3165] (Line ) [118.4926,673.7934] (Line ) [117.6762,673.7934] (Line ) š¤3™3U˜table˜^˜——J˜—…—r®C'