Google
 

Trailing-Edge - PDP-10 Archives - k20v7d - uetp/lib/sender.exe
There are 20 other files named sender.exe in the archive. Click here to see a list.
?p0`00@?h'?x
COPYRIGHT (c) DIGITAL EQUIPMENT CORPORATION 1975,1988.
ALL RIGHTS RESERVED.
+%~}3Y('%JY %n@3gtI9(+ 3 @@3 *" " $0,R, "q B" " $", 5@D H`f+`f+:`f+:, ",6 H,5+:ZHZT$ H,L.P ,o,}, $,c+: 0",Q4@ H .(,m4\"s,\,~ H`f55@@)@@(@@)@@*,
4B&\"!$&,44@4B) $,A,B( $4,' (,IO@*+ * $\&+,(+,
W 
W <4A 
W\$	3 &@ (4G $@/\"	3,4+mZ
W	+ @@
W+ J $\&K,(+ $ B
+\"3 $@\&O,($" \"3,4+ "0,m4S+O@	,,,96B,m4V+ " U$@@+ + \"X,\+\"H,\+ )6@,;@@)+ X B
\"Y $,>,4,^4,1+,>,>,>,>,>,>b B4,, 
 X B
,m4c\"	3 $(,4 c $D f &@+ +  $@/\"	3,4 V
+!$5 "s6@*,m4S+1+,,>,>,>,>,>,>,>k B D F,-4@p,>:\  @4v,^+@@
	 w*&	 F.,m4x,m4{,m4~\"},>&\(
,G,^&"t\(
,G * "
BB."B$-,%5@
+F1B+F,4=j?+E1+J,>,>,>,>,  &$ D &$ D~ F~,m4
+1+T,>,>,>,>Q",m4\"3X$Q$S&}@+ +  "3,m4+,m4",~,m4S,~  
  "Q@@*"!" B0 % B0\"& B0\"& B0,~  
"Q@@*"!"B0%B0\"&B0\"'B0,~7@*5@$'5@@5su@X.p/12(384H5X6(`(H6@H:@H<((H= @H@(`(HB @HD	@@(HF

********************************************************************


SENDER Program

FUNCTION	THIS PROGRAM IS MEANT TO BE USED BY THE BATCH
	TEST CREATOR FOR UETP COMMUNICATION.  ALL EVENT AND 
	ERROR CONDITIONS OCCURING IN THE BATCH TEST CAN BE RELAYED
	TO THE UETP VIA THIS PROGRAM.  THERE IS NO OTHER WAY
	TO COMMUNICATE WITH THE UETP.



COMMANDS

        a.      Commands which qualify the messages to be sent.  

                1.      TEST NAME <text>

                        The first 10 characters of <text>  go  into  the
                        test name field of all messages to be sent until
                        the next "TEST NAME" command.

                2.      BLABEL <text>

                        The first 10 characters of <text>  go  into  the
                        batch test  label field of all messages to be sent
                        until the next "BLABEL" command.

                3.                           /  MAJOR  \
                                            /   MINOR   \
                         TYPE  (OF MESSAGE) \   END     /
                                             \  ERROR  /
                                              \ START /


                        A code corresponding to  message  type  will  be
                        placed  into  the  message  type  field  of  all
                        messages sent until the next "TYPE"  command  is
                        given.  The message types are:


                        MAJOR   major run milestone
                        MINOR   minor run milestone
                        ERROR   errors  
                        END             end of run (a major milestone message)
                        START   start of run (a major milestone message)



        b.      Commands which relate to the message text.

                1.       EXTRACT (MESSAGES FROM) <file-spec>

                This tells "SENDER" that the messages are to  come  from
                the  named  file.   These messages will be placed in the
                ninth (text) position of  message  records.   The  first
                eight field being filled in by SENDER.

                Each message sent will also be written to  the  terminal
                assigned  to  the  job, so that in normal usage, running
                under a batch control file, the messages will show up in
                the test log file.

                All the messages in  the  file  will  be  sent  in  this
                manner.   When  "SENDER"  reaches  "end of file" it will
                return to the user  terminal  (batch  control  file)  to
                accept more commands.


                2.       SEND (MESSAGE TO UETP) <text><carraige return>

                The contents of <text> will be used for a message  which
                will  be  sent  immediately,  along  with any qualifying
                information provided via the commands a.1  through  a.6.
                The  time  stamp  will be taken from the current monitor
                time and will be labeled "origination time  stamp"  ("O"
                in position 19).


                3.      EXIT (TO MONITOR)

                This command terminates the execution of SENDER.




RESTRICTIONS

        The general conventions for running batch jobs are  intended  to
        guarantee  communication  with  the  Command  Processor  at  the
        beginning and end of each batch run.  To  accomplish  this  goal
        each  batch  job  should run the SENDER program at the beginning
        and end of each batch run.  

        SENDER  gives the batch run creator
        the  ability  to  communicate  with  UETP  which  records  all
        information in the error and  event  logs.   This  recording  is
        essential  to  the sucess of UETP.  If all batch runs follow the
        recording  conventions  then  their  flow  and  status  can   be
        monitored and reported promptly and accurately.

        The basic conventions are quite simple.  The first step  in  any
        batch  control  statement  will  be an execution of SENDER.  The
        information sent must identify the sender  and  give  the  start
        time.  The last logical step must have two components.  first, a
        %ERR::  execution of  SENDER  which  traps  unknown  errors  and
        informs UETP.  Second, a SENDER run informing UETP that this
        is a succesfull end of this run.  An  example  may  clarify  the
        convention:

                
                @RUN SENDER
                SENDER> TYPE (OF MESSAGE) START
                SENDER> TEST NAME COBOL2
                SENDER> SEND BEGINNING COBOL2 RUN
                SENDER> EXIT
                        .
                        .  ACTUAL BATCH RUN
                        .
                @GOTO NOERR
                ; We execute here if there was an unexpected error
                %ERR::@CHKPNT
                PRINT COBOL2.LOG
                @RUN SENDER
                SENDER>TYPE ERROR
                SENDER>BLABEL %ERR
                SEBDER>TEST NAME COBOL2
                SENDER>SEND UNKNOWN ERROR IN COBOL2 RUN
                SENDER>TYPE MINOR
                SENDER>EXTRACT COBOL2.LOG
                SENDER>EXIT
                ;We always pass through this next section
                NOERR::@RUN SENDER
                SENDER> TYPE END
                SENDER>TEST NAME COBOL2
                SENDER> SEND END OF COBOL2 RUN
                SENDER> EXIT
                %FIN::;In case of disatorous errors

                @CHKPNT
                @PRINT  COBOL2.LOG
                
        The basic philosophy of the convention is to guarantee that some
        message gets back to UETP about the ending status of this run.
        If the run ends with no errors then that fact will be  conveyed.
        However,  if  any unexpected errors occur then UETP will still
        receive information about the end of the test.  

HINTS

EXAMPLES

:x,~\" U &#4Y\"0  [J4_ * ` B(@@(\"(\$0@@4f " $+,%4@n,'4@vZ
 `F`,4 ( B
X B-+@
UETP-                                                                                t	sv03,
@@*+:
HsPJ0 Improper field (input file) in TAKE command\",Q+
?Cannot open TAKE command file
,\"Could not set file byte size for TAKE input file\",Q ),;+
?Cannot open output file for TAKE command
 \",\ ),;+Could not set file byte size for TAKE output file\"",Q ),; ),;+H
?Error in BLABEL command (from SENDER)
?Error when trying to parse filespec in EXTRACT command\"/,\,[+Error opening file for EXTRACT command\"7,Q+?ERROR IN OPEN FOR EXTRACT (FROM SENDER)\"=,+?ERROR IN SIN IN EXTRACT (FROM SENDER) 
W
`d+s\"C,+H
?ERROR IN TEST NAME COMMAND (FROM SENDER)?Error in SEND command (from SENDER)0 
ERROR?SENDER started illegally.  BATCH control error1:},^,^,^,^,^,~^H	30@@1:},^,^,^,^,^,^,~f
?Error parsing TEXT field of current command\"k,\,[+ERROR WITH SOUT JSYS AT STTXT:\"r,+A
	H
	0H
r{H
{Can't send message to UETP because  0{g:(gtI91:~,^,^,^,~:H t  
t ~ 
t ~1:~,^,^,^,~
?SENDER error:   0
?Jsys error message:   0
?GALAXY error:    0{?{UETPCMDLOGTake command illegal within a take file..command ignoredBLABEL
XzEXIT|EXTRACTAKE
8TESTXTYPEcurrent label of BATCH control fileto MONITORmessages fromfile to extract messages fromwith SENDERmessage to the UETPcommands from filefile to take commands fromlogging output onfile to log output inname of testof messageEND  LOG  MAJORMINORSTARTxUnexpected error in GETJI at GPID:\"V,Q,@Unexpected error in NOUT at GPID:\"[,Q,)`Error in SOUT Jsys attempting to write UETP's PID\"a,Q,Unable to send message to INFO becase  g0{g9kgtI9,4mFailure in receiving INFO message:   o0{g9sgtI9,4uCan't get UETP's PID  (probably not running in this directory) w00 z~gtI9++++++++	+
++
+++++++	+	+
+
+++
+
+++ +!+"+#+$+%+&+'+(+)+*+++,+-+.+/+0+1+2+3+4+5+6+7+8+9+:+;+<+=+>+?+@+A+B +C +D!+E!+F"+G"+H#+I#+J$+K$+L%+M%+N&+O&+P'+Q'+R(+S(+T)+U)+V*+W*+X++Y++Z,+[,+\-+]-+^.+.+`/+a/+b0+c0+d1+e1+f2+g2+h3+i3+j4+k4+l5+m5+n6+o6+p7+q7+r8+s8+t9+u9+v:+w:+x;+y;+z<+{<+|=+}=+~>+>+?+?+@+@+A+A+B+B+C+	C+
D+D+
E+F+F+G+G+H+H+I+I+J+J+K+K+L+L+M+M+N+N+ O+!O+"P+#P+$Q+%Q+&R+'R+(S+)S+*T++T+,U+-U+.V+/V+0W+1W+2X+3X+4Y+5Y+6Z+7Z+8[+9[+:\+;\+<]+=]+>^+?^+@+A+B`+C`+Da+Eayz,>,>,a5@X,[6@+X@@.B.$6 +V,^,^Q",57@.+] Q,f5@a R,f5@a\"z<+`,~ 4BQ"4dadg\ ,~  "B,> Q"A` 4@k@+i @5@l!" +xlQ" @4x "BZd (D{ DTD&,^B \ +y  ,^,~DSK:SYS:? GLXINI - Unable to obtain run-time system
  +eHFGLXLIB.EXEHx@@,,,7@-5!$Z,"(D ",Z-Z,.R,X"h BO@,[-[,."  D-5O@7\"\ B:\"@ B; B: "  B| "  B} " B9@@< "@ B;\" B< "@ B= "@ B=@@w "9 Bs@@s@@t u: Bt,~,0B0b+`O@84"$@@8SX$u*$u0B+a7@7,,,-7Bv "\,9 u: Dt7@86@856@++b5,,4@6@H,6Zt ; B* "9,'  F54@jSX(s*(r`f+af+=[,F4@j df+e " $s,5@,6@5,* 56&t0f,4j y Bu " $s,IZt,M4@F  " $s, 4@N t sZt,C5@L0F1F7+SZ  Z`4BS:XBt+,!(bHz+R7@ $k!(GHz B75BHz+ yA" 
y6@(+[ B(Q&A`X&@Zy:Q(A`B5BYZ" A"QB( yA$/"QCy!"@cBz+`!"GB( " B(@*z6@4l" B4 J5!"BB9,c\"@ B; "@ B; "@ B6 " $456@8+u7@}+o,y4@o,{5@p+q,* 5,+s, $o5!"GBzO@{ $s5`f+o!"@GBz $vO@{5[9
ad55 {,;4@ |0B,;4@5 "  B| "  B}@@4@@}!"BBz,~!"BB9`f+6!"GBzO@{ $z Dx,c 
y6@v+6Bw+
,Jw+w6@{+!&A`X&Y Fr &} Fr,m4~ $Y@*zl"  B4 D6 J5 "@ B6 " $4@@{5? r5Br5@@87@}7Bw+&  F9Q(A`X(@@@3B+,,>
4L"L9
 L J8 J<\"@ B; B:,~!&6@}GFzS|X} F96@+,~@@<\"@ B:,~,A 
+#7Jv+2 Jy[(: F(.&( Fy,~6Jw+8,b By & F.& Fy &XF,~ Jy@@w,~,> D: D)@6@9; F.5RhdidQ$A`X,~ " 4
 " 4
  
<&G,7B+E@B 5TgT\[\xmmxxpgx XGy &QGy:y ZtZ,C7@[ Gy:y,~ 7 

 y\"  
`Z$*yZ`/"QB  0XB  
@@@*"G 0	+,~ XIy (QIy:y  Iy:yZ   Iy:y,~ XGy &QGy:y,~ y.(Q(A` *2F;+t@
+w
3F;+wJ+tJ+| y.(Q(A`S&A`X&
J5JzZ(  /yQIy XIy*y F@,~ XIy (QIy:y  Iy:y,~Zaf+x\y." (,4Z$ 
/yQEy  XEy*
y5Z  ,>* y.(Q(A`5z5x y .& Fy,~,O!"@BBz 
@@@*"G u:&0F+,C:XBt+,Zt B*,J4@$  " $s, 5@$7@ $!(GHz B75 *Z5B5 
Z( (,Mab+4Z(/&SfX&U*&X "U,=!&BFSVX&IZ	V0h
,4%*& I &I FV 
(Z(/
 (0I &IGO@H5@@HG[ ? 5.0d2d,4)QF4F?Q$*$'@@ 5!"GBU+>,@@~ **" " B~ "
 B " $K4O[@: 8,& D8 $8Q8 "~/4O2N+G "~ +/4O5 $,5Z91F ,m43+S y >Z
 0J+}  Fy.& Q&A` F1 F2/y.( $( H1 9 F0!& F0 &5 F3@@2 & F/ "/,44@~!"bB05e!"bB05q5@"$ ;/$```BB "?/; B<\"@ B: B; "@ B;!"GBzZ91F ,m475@b1 ; B3 y:,m4; "B3Z1." /yQEy $XEy*y $XEy $QEy:y5 $>5 $B5X91F ,m4K+qB35 @HN@@(HP `

*R*0T(@@5 
@@@*"G!" B@  BA\"T BB\"U BC\"V BA,~7@},~ " $V5O@}!&BFz6@/GFz 
y0."0,o,}4@,0B5,,GBz @@,Q4@.5,4@/0B+*O@450B+/@@45 $[+0 $]+0 $a+0 $d+0@@}@@45 @Hh4( (Hh6 @Hm8(; 
y 0."0,o,}4@G0B5G,
4@G 
1b7`5H,< 7` "0b "$"t;+ 5 $n5 $p5,, 
 !"
 Bu\"v 

4 	4 "u@@5Q,  B~ D} "C B " $~,44@ B{O@} $,A4@ B|l"	+k | v+k7 B|7`}+v " B~ " $},64@k B| $,A4@k B}l"	+j } x+j7 B} { |5 },; "*{,; {@@{@@|@@}5 B(@@(5 (57B(5 B(5 ( @([(.@(5 (Z5s (Z5,w0B55s,w0B55s,w0B5 5s,w0B5 5s,w0B55~,w0B55~,w0B55~,w0B55~,w0B1B
755s,w0B5+,w0B5+,w0B5 ([5s,w0B5 ([5s,w0B	55,w0B5 abp5sQ&A`X& y@@4B#1b=1"07/"/"`hpB+ 5s,w0B55,
4@ 
,4@+,
4@  5 " 5,w0B5[ (5s,w0B5[ (5s,w0B5[ (5s,w0B	5[ (5s,w0B
5[7(5s!"@GBz5/"7@,4~Z[3D5./5,=4@1d56B55,=4@1d56B55,=4@1d56B55,=4@1d56B556@}55-,+4@"!+[5;3B:6@<+[4&@`F;@B<\"@+B;,",4C-57@,5,]5,l.$Z,D+!"X"Z,)4b5,m457D+5!"X"Z,)4g@@+5,6@.+u7@,,~7@+,~@@+\-,+7@,~O@.S"X,/!"X"=!"X"l&>[9 $&,~@@. "0,} &@ F; B<\"@ B; -,+ ", C-O@+,~Q$A`X$@@@4F9~,n51+,>,>,>,>,>,>	,@@@p@@p BphdidQ$A` Dp "C Bp " $p,44@	 BpO@,B Bp p @0F1F+1f+@F+6@ @F,6@@@6@,m4
\$p,)6@`bl,`bl,5p,70D1D,~d,@,~?gp+VDp,~,>,>,m4T"'ABpS"ODp,^,^+TPARSER>Invalid parser block size $]5@@u9#6$@@+&b1F,+XFt+,INVALID FUNCTION CODE FROM COMMAND fSiC9Action routine error aborted commandError closing TAKE command fileEnd of file during TAKE commandEnd of string during incore parseInterrupt during command parse: ""0x }0 ~?{Rescan JSYS failed,  0C9,4	$$@HAError releasing command file JFN $
 TOO SMALL FOR TABLE OF SIZE  p pgS"_C9TABLE DELETE ERROR &i((_C9O`~*%0Cannot obtain the cluster node namesEnter text and terminate with ^Zn 0n)0@`0 Bad argument in message  -  expected confirmError during text input%  Message truncated - text exceeded buffer capacityn Er`k Ecommands frominput filespecDISPLAY@
NODISPLAY@
SYSTEMCMDDSKTAKE command is illegal in a command fileInvalid TAKE commandNo input file specified in TAKE commandCan't open TAKE command fileInvalid argument in TAKE commandforNumber of seconds to wait between 1 and 60secondsInvalid WAIT commandWait time must be a positive number between 1 and 60 " B| B}+hHInvalid PDB Header in Parse Block ySC}_C9
?Timer Setup Failed for  01:},^,^,^,^,^,~ $O@p+Hp
7@ +P%Help file "" not foundl,+#`l +(+.,6+$,?+$,5+$0p`%No help available for "?Error reading help file "l,5HpHp66`WR[W\3WrWWW
WWWWW
WwWvOvA*WD"%WCfOn
IOmgOQiOPf^OPS@OPE=OPE6OPB:OP;:OP9MOOqh WwZsWj;$W`ZPI=Wh	WWNWW;&Oq|PimOO
2OO
	OO>	OO#OO=ONyiONs3ONm&ONdiON`}
ON`wON_{ON@^ON@FON-mON-GON-@ON-?ON JON|ON+ONONqONMON
s
ON
]ON
VWD~wWDpWDJGWD9_WD9O@EPHho@PHhjPHgPHgPHg
PHg
W/u[W/tWP2uW/s_W/sP2pW/rtW/rtP2n P2nPPk/PGpPGjWuQWuPLWuPK
WuP5AWLoPdP7PtW4SW0"W.IdW+|.W+|+W+e=W(Y1WPC3WPC%[_C9WPBiW1n}spW1Qt*pPPG5W1$K5@W1$D4@PP@5PKM;,~W-F6l}W+C)pW+Cp
W+ADpW+A
pW+@PpW( 
~W(PuP2Z#,W'M+rpW'M+rp,V~C,V}|;,V{mH,V{mG,V%B,V%?,V$2,UDp8,UD\6,UDH4's='R'N'L'FUqQwx
ex#"Iexdc;@}c;F.c;E-c;E,;c;'c;tc;%*c;fc:86
c:86
c:85c:85>'$PZPZPYPYUV`CxL}x+?!MPzG]MP}%bMPb9MPd%;MLF  MLEt@
pK7EwK7EtK/>K*=TK!:Ki[K
wgK	{Ku]TKjIKW\KI|K9CxK:E|K:EzPEPEM[/_;M[,0M[lu>M[k&>M[K^	8L=M>@PG@De 7;L	U6w_.5G5E*0A5[55E4~:*8M4_(gM4^uLM4^EcM4^CG]V
KTU
)wvU
)woU
)vzU
)ukU
)uWU
)uRU
)u/U
)u,
v.
@)
2([S5UavUaUa9Ua9UUY	dUXq7UXHfUX8UX/tuE"IMth-tkGutkGstkFqtkFptkEoMta|-ta+yt\s,t6tVB4Uus~UusvUusrUus3Uuq/P
P
P	P	Ugd@Ud	mU\f|URxUK)<UK' UI57@UH^UG?& UFc\UBc
sM:Vw
*v|<#?0Ll[eV~Pm&XTCf3	TCeGxL8a}{8HY&>T+#R(Q)L}(Q#,|T$9.xP
Xw5@P
Xp4@KzK
$'on
^~e[^}/{S^~6h^\RW^\T,^\T(^\T&^\T#^\T"^\T E$qQ5E$\m3E$PH7E$>G?E$+hE$&AE$&BE$%_8E$%\@E$6E$EE$
LE$	G@z@z+0@z*.@z*)@z)$@z&@z%@z%S+@.+?.B@(Ug~(T|wS(T}&q(T}%n(T}%e(Tpe+(T](TWe#(TWe(TWd(T0
Nt(T%e(TE(TE~(TD}(T
KQSO.S
2~S
1gS
14
CBzSPSSP/QSPwSOc\SO^ SO^@SOW[HtH	%$H	%Se&SBp@SB1VRd=^Rz^Rx^O
w^Kd^O]{]{F]{F]{E
REs\!0gsq&4l&z;_sCBHdRS(_* GJSzps@P^{(P^o&*P^n)P^l^*RO
RO:RO^ROI@RO7M
*8RMqvRMq.RMo/RMoJM@:@L? }L?#~
L$GK
KRM;sKR.-KR1F8KR1E4KR1E2KRL|KR,{KQ~YKQ}wrKQ{srKQjB9RK,@H&=t@JL  JLRLOK!o&{KvGc
K~
KggHY\yRT5s+@R:eP^'R8H.@8v:@
2Na@2NcO2NcG
+sU)R.@
#NIA/u
u
tB7yRmxxGb,rT*>PXk@Xk9Z?f*:3*o[j+j+j*
aA>#sI["SX;X0X.
X.	X-X-
G
@
?J/Q~T2O[mTzIHjbWPC3S:HWPC%[O3ETWPBiPPG5W1$K5@W1$D4@PP@5PKM;,~PbbAZZFn%Tfn)yn)xn)ln)kn)i;sP`u6)n
B(.&H*[S5M
j}P
u,I
Ial$c
IaZ[
IaU-W
Ia)%Q
IZ8PS
IP%R
IP${U
IP$vT
IL.$b
ILZ
IJ5"Y
ID/&X
I@ZMV
I@IPT+#R
1.>7
1,)O
1)<
1)7
1$C
1 53
1
1*{
1}O~
1h
10z
1O|
1oN}
1TB
1
|!4
{bB9
z2
z	3
yc5
w0
q~x<
`;
Xl(:
XI6
Wnn8P
Xw5@P
Xp4@^hO%X^hO%VK^hHK^gnK^gg||wy
h6:hb6
~e
`g}rH 
@`g|hg|Zg|Yg|Yg|Rgz$sgtmKl <K1y=S,;:
O2Bl[@P	xLny7=
/G<>
/G8C
/G7;
/<B?hz46h*K8h)t:]44]LA\NK7\Mt9!'BVdESM7<
.owDQq@MN45
}*2gi+|QR_lD.HY.BaHY1%e
UQgC+
UQ#G%
UOn{#E7(
UO't&
UKM-
UE0,
UBC*
U>f$
U2GC)
U0Y'INt:B[t=%at=%],Ii`zoxWR^WR[W\3WrWWWWWWWWW
~3udSGyOOrc PI=O9RHOi),O(h,O(hO(hO(hnE%~OQVOKiO/gOXO{O/L`cuhiMKOOwON_}ONK]ON@ION?)ON36ON-ONkWDpWD9_~WePHhoPHhjPHgPHgPHg
PHg
W/u[W/tWP2uW/s_W/sP2pW/rtW/rtP2nP2n/PPk/PGpPGjWuVhWuVXWuPKWuPKuWuP6TWuP6JWuP5,WuP5WLoPdP7PtW4SW0"W.IdW+|.W+|+W+e=W(Y1WPC%[gtI9WPBiW1UK ~PPG5W1$K5@W1$D4@PP@5PKM;,~W.	{~W+PP2Z#,{z3V7
z.@7
t3=xi=xig	cz=w=w=w^t=zP@VVKV;/PbK=}-
0~:aC
XUqR$.@qQS(qQ;tsqQ9N3UqRX;pUqRV?UqRUl`UqRUfUqRUnK';
nJqn5@FW3
h0GG;F3;F3
e-!
c;r%c;1A(c;+,)c;z&c;@*>#9f>#9^c;n>'cPZPZPYPYe5UT9<H9sRp@,\	ERpQ8(UPK	UP9@@9EI4y?VMD:K?UJuSvUJuSmUJuS/UJuRzUJuRdPEPEM[+EM[+vM[+nI c8Q5tQ+P*&1;+*[34z-xw)U
)ukU
)uWU
)u/
=w![S5%B3PWx`$c	sUTuNUTmxxUTTfUTI@uADK:uC<Uus~Uus3u~h"u}C$P
P
P	P	Ugd@URxHUK'UG?&PD@Pm&XQut
SC?2
	C>9t	3P>.@;
:
T:"zT:"hT:QIT+#R(P~s	P
Xw5@P
Xp4@Sb` 3@&E+iS`'uKK`+	g`|>qPeSvSWbxSWbBSWbSWaI@0E$X,0
l

k[LK1+G\ "?CP
XVK+mK+lu_K+l>@
Nv#
NtY#&
[SO.K5kbK "jS
2~S
1gS
14Se&SB1V	Wcwm6kL
W6M\sRd=_	LR`=3_sGR^C3
	KHY4}*2'gs	L_Q	
u?
RO:ROI@M^$G
RMo/L>G
KRY"uKRBJKQ(TsJL=AJLzU JLmf`K!?<
#ll	HX|JQD89w+R8H.@8v:s,d6	,d
+t[~(z3g$PKPJPJMD9zYp0\B:/\>X\>5'\7N+\2g'r'I(\)8*\)7\	\	)\+,\6.\.,[rO.O[mNO[mO[m	O[l|[l{&O[l+O[kO[kO[j]O[jRO[i%r%H([Z[X%[Qgr%0[Ms/[M"-[M	+[L,[FG[@v*r#eOD^w'lw]!+{0