blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
6
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
87
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
15 values
visit_date
timestamp[us]date
2016-08-04 09:00:04
2023-09-05 17:18:33
revision_date
timestamp[us]date
1998-12-11 00:15:10
2023-09-02 05:42:40
committer_date
timestamp[us]date
2005-04-26 09:58:02
2023-09-02 05:42:40
github_id
int64
436k
586M
star_events_count
int64
0
12.3k
fork_events_count
int64
0
6.3k
gha_license_id
stringclasses
7 values
gha_event_created_at
timestamp[us]date
2012-11-16 11:45:07
2023-09-14 20:45:37
gha_created_at
timestamp[us]date
2010-03-22 23:34:58
2023-01-07 03:47:44
gha_language
stringclasses
36 values
src_encoding
stringclasses
17 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
15 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
0193b8a6f5c3ed20343b0da301006d5445b2293d
d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3
/r36/XMPL/ZTRANS.TST
b84734ed136467d290064cbf2245b155e1c7904a
[ "BSD-3-Clause" ]
permissive
reduce-algebra/reduce-historical
8220e211b116e0e01ff1a38f51917cac9db6069f
e014152729c4d62bb1ce4f5c311a027042a5495a
refs/heads/master
2023-04-10T22:54:00.796596
2021-04-16T08:52:19
2021-04-16T08:52:19
343,245,204
7
1
NOASSERTION
2021-04-16T08:53:31
2021-03-01T00:15:22
TeX
UTF-8
Scilab
false
false
7,206
tst
ZTRANS.TST
% test file for ztrans package % operator f; operator g; operator h; % Examples for Z transformation ztrans(1,n,z); ztrans(a,n,z); ztrans((-1)^n,n,z); ztrans(n,n,z); ztrans(n^2,n,z); ztrans(n^k,n,z); % should be output=input ztrans((-1)^n*n^2,n,z); ztrans(binomial(n,m),n,z); ztrans((-1)^n*binomial(n,m),n,z); ztrans(binomial(n+k,m),n,z); ztrans(a^n,n,z); ztrans(a^(n-1),n,z); ztrans(a^(n+k),n,z); ztrans((-1)^n*a^n,n,z); ztrans(1-a^n,n,z); ztrans(n*a^n,n,z); ztrans(n^3*a^n,n,z); ztrans(binomial(n,m)*a^n,n,z); ztrans(1/(n+1),n,z); ztrans(1/(n+2),n,z); ztrans((-1)^(n)/(n+1),n,z); ztrans((-1)^(n)/(n+2),n,z); ztrans(a^(n-1)/(n+1),n,z); ztrans(a^(n+k)/(n+1),n,z); ztrans(a^n/factorial(n),n,z); ztrans((n+1)*a^n/factorial(n),n,z); ztrans(1/factorial(n-1),n,z); % ERROR message o.k. ztrans((-1)^n/factorial(2*n+1),n,z); ztrans((-1)^n/factorial(2*n),n,z); ztrans(1/factorial(2*n+1),n,z); ztrans(1/factorial(2*n-1),n,z); ztrans(1/factorial(2*n+3),n,z); ztrans(1/factorial(2*n),n,z); ztrans(1/factorial(2*n+2),n,z); ztrans(a^n/factorial(2*n+1),n,z); ztrans(a^n/factorial(2*n),n,z); ztrans(e^(a*n),n,z); ztrans(e^(a*(n+k)),n,z); ztrans(sinh(a*n),n,z); ztrans(cosh(a*n),n,z); ztrans(sinh(a*n+p),n,z); ztrans(cosh(a*n+p),n,z); ztrans(a^n*sinh(a*n),n,z); ztrans(a^n*cosh(a*n),n,z); ztrans(n*sinh(a*n),n,z); ztrans(n*cosh(a*n),n,z); ztrans(n^2*a^n*sinh(b*n),n,z); ztrans(sin(b*n),n,z); ztrans(cos(b*n),n,z); ztrans(sin(b*n+p),n,z); ztrans(cos(b*n+p),n,z); ztrans(e^(a*n)*sin(b*n),n,z); ztrans(e^(a*n)*cos(b*n),n,z); ztrans((-1)^n*e^(a*n)*sin(b*n),n,z); ztrans((-1)^n*e^(a*n)*cos(b*n),n,z); ztrans(n*sin(b*n),n,z); ztrans(n*cos(b*n),n,z); ztrans(n^2*a^n*sin(b*n),n,z); ztrans(cos(b*(n+1))/(n+1),n,z); ztrans(sin(b*(n+1))/(n+1),n,z); ztrans(cos(b*(n+2))/(n+2),n,z); ztrans((-1)^(n)*cos(b*(n+1))/(n+1),n,z); ztrans((-1)^(n)*sin(b*(n+1))/(n+1),n,z); ztrans(cos(b*n)/factorial(n),n,z); ztrans(sin(b*n)/factorial(n),n,z); ztrans(a*f(n)+b*g(n)+c*h(n),n,z); ztrans(sum(f(k)*g(n-k),k,0,n),n,z); ztrans(sum(f(k),k,0,n),n,z); ztrans(sum(f(k),k,-2,n),n,z); ztrans(sum(f(k),k,3,n),n,z); ztrans(sum(f(k),k,0,n+2),n,z); ztrans(sum(f(k),k,0,n-3),n,z); ztrans(sum(f(k),k,-2,n+3),n,z); ztrans(sum(1/factorial(k),k,0,n),n,z); ztrans(sum(1/factorial(k+2),k,0,n),n,z); ztrans(n^2*sum(1/factorial(k),k,0,n),n,z); ztrans(sum(n^2/factorial(k),k,0,n),n,z); ztrans(sum(1/k,k,0,n),n,z); % ERROR o.k. ztrans(sum(1/(k+1),k,0,n),n,z); ztrans(sum(1/(k+3),k,0,n),n,z); ztrans(f(n+k),n,z); % output=input ztrans(f(n+2),n,z); ztrans(f(n-k),n,z); % output=input ztrans(f(n-3),n,z); % output=input ztrans(a^n*f(n),n,z); ztrans(n*f(n),n,z); ztrans(1/a^n,n,z); ztrans(1/a^(n+1),n,z); ztrans(1/a^(n-1),n,z); ztrans(2*n+n^2-3/4*n^3,n,x); ztrans(n^2*cos(n*x),n,z); ztrans((1+n)^2*f(n),n,z); ztrans(n^2*f(n),n,z); ztrans(n/factorial(n),n,z); ztrans(n^2/factorial(n),n,z); ztrans(a^n/factorial(n),n,z); ztrans(1/(a^n*factorial(n)),n,z); ztrans(sum(f(k)*g(n-k),k,0,n),n,z); ztrans(sum(f(k),k,0,n-1),n,z); ztrans(sum(f(k),k,0,n),n,z); ztrans(sum(1/factorial(k),k,0,n),n,z); ztrans(sum(k/factorial(k),k,0,n),n,z); ztrans(sum(a^k*k^2/factorial(k),k,0,n),n,z); ztrans(a^n*f(n),n,z); ztrans(binomial(n,k),n,z); ztrans(1/(n+1),n,z); ztrans(n/factorial(2*n+1),n,z); ztrans(a^n*sin(n*x+y),n,z); ztrans(n^3*sin(n*x+y),n,z); ztrans((n+1)/factorial(n),n,z); ztrans(factorial(n)/(factorial(k)*factorial(n-k)),n,z); % Examples for inverse Z transformation invztrans(z/(z-1),z,n); invztrans(z/(z+1),z,n); invztrans(z/(z-1)^2,z,n); invztrans(z*(z+1)/(z-1)^3,z,n); invztrans(z/(z-1)^m,z,n); % invztrans(z/(z-1)^(m+1),z,n); % not yet supported invztrans(z/(z-1)^4,z,n); invztrans((-1)^m*z/(z+1)^m,z,n); % not yet supported invztrans(z/(z+1)^4,z,n); % invztrans(z^(k+1)/(z-1)^(m+1),z,n); % not yet supported invztrans(z^4/(z-1)^m,z,n); % invztrans(z^4/(z-1)^(m+1),z,n); % not yet supported % invztrans(z^4/(z-1)^m,z,n); % not yet supported % invztrans(z^(k+1)/(z-1)^5,z,n); % not yet supported invztrans(z^3/(z-a)^4,z,n); invztrans(z/(z-a),z,n); invztrans(z/(z+a),z,n); invztrans(z*(1-a)/((z-1)*(z-a)),z,n); invztrans(z*a/(z-a)^2,z,n); invztrans(z*3/(z-3)^2,z,n); % invztrans(a^m*z/(z-a)^(m+1),z,n); % not yet supported % invztrans(a^m*z/(z-a)^m,z,n); % not yet supported % invztrans(4^m*z/(z-4)^(m+1),z,n); % not yet supported invztrans(a^3*z/(z-a)^5,z,n); invztrans(z*log(z/(z-1)),z,n); invztrans(z*log(1+1/z),z,n); invztrans(z*log(z/(z-a)),z,n); invztrans(e^(a/z),z,n); invztrans(e^(1/(a*z)),z,n); invztrans((1+a/z)*e^(a/z),z,n); invztrans(e^(a/z)*(a+z)/z,z,n); invztrans(sqrt(z)*sin(1/sqrt(z)),z,n); invztrans(cos(1/sqrt(z)),z,n); invztrans(sqrt(z)*sinh(1/sqrt(z)),z,n); invztrans(cosh(1/sqrt(z)),z,n); invztrans(sqrt(z/a)*sinh(sqrt(a/z)),z,n); invztrans(cosh(sqrt(a/z)),z,n); invztrans(z/(z-e^a),z,n); invztrans(z*sinh(a)/(z^2-2*z*cosh(a)+1),z,n); invztrans(z*(z-cosh(a))/(z^2-2*z*cosh(a)+1),z,n); invztrans(z*(z*sinh(p)+sinh(a-p))/(z^2-2*z*cosh(a)+1),z,n); % trigsimp(ws); % trigsimp(ws,combine); invztrans(z*(z*cosh(p)-cosh(a-p))/(z^2-2*z*cosh(a)+1),z,n); % trigsimp(ws); % trigsimp(ws,combine); invztrans(a*z*sinh(a)/(z^2-2*a*z*cosh(a)+a^2),z,n); invztrans(z*(z-a*cosh(a))/(z^2-2*a*z*cosh(a)+a^2),z,n); invztrans(z*(z^2-1)*sinh(a)/(z^2-2*z*cosh(a)+1)^2,z,n); % trigsimp(ws); invztrans(z*((z^2+1)*cosh(a)-2*z)/(z^2-2*z*cosh(a)+1)^2,z,n); invztrans(z*sin(b)/(z^2-2*z*cos(b)+1),z,n); invztrans(z*(z-cos(b))/(z^2-2*z*cos(b)+1),z,n); invztrans(z*(z*sin(p)+sin(b-p))/(z^2-2*z*cos(b)+1),z,n); % trigsimp(ws); % trigsimp(ws,combine); invztrans(z*(z*cos(p)-cos(b-p))/(z^2-2*z*cos(b)+1),z,n); % trigsimp(ws); % trigsimp(ws,combine); invztrans(z*e^(a)*sin(b)/(z^2-2*z*e^a*cos(b)+e^(2*a)),z,n); invztrans(z*(z-e^a*cos(b))/(z^2-2*z*e^a*cos(b)+e^(2*a)),z,n); invztrans(-z*e^a*sin(b)/(z^2+2*z*e^a*cos(b)+e^(2*a)),z,n); invztrans(z*(z+e^a*cos(b))/(z^2+2*z*e^a*cos(b)+e^(2*a)),z,n); invztrans(z*(z^2-1)*sin(b)/(z^2-2*z*cos(b)+1)^2,z,n); % trigsimp(ws,expon); % trigsimp(ws,trig); invztrans(z*((z^2+1)*cos(b)-2*z)/(z^2-2*z*cos(b)+1)^2,z,n); % trigsimp(ws,expon); % trigsimp(ws,trig); invztrans(z*log(z/sqrt(z^2-2*z*cos(b)+1)),z,n); invztrans(z*atan(sin(b)/(z-cos(b))),z,n); invztrans(z*log(sqrt(z^2+2*z*cos(b)+1)/z),z,n); invztrans(z*atan(sin(b)/(z+cos(b))),z,n); invztrans(cos(sin(b)/z)*e^(cos(b)/z),z,n); invztrans(sin(sin(b)/z)*e^(cos(b)/z),z,n); invztrans((f+a*z+b*z^2)/(c+d*z+e*z^2),z,n); % Example 1 in Bronstein/Semendjajew, p. 651 f(0):=0; f(1):=0; f(2):=9; f(3):=-2; f(4):=23; equation:=ztrans(f(n+5)-2*f(n+3)+2*f(n+2)-3*f(n+1)+2*f(n),n,z); ztransresult:=solve(equation,ztrans(f(n),n,z)); result:=invztrans(part(first(ztransresult),2),z,n); % Example 2 in Bronstein/Semendjajew, p. 651 clear(f); operator f; f(0):=0; f(1):=1; equation:=ztrans(f(n+2)-4*f(n+1)+3*f(n)-1,n,z); ztransresult:=solve(equation,ztrans(f(n),n,z)); result:=invztrans(part(first(ztransresult),2),z,n); % Other example: clear(f); operator f; f(0):=1; f(1):=1; operator tmp; equation:=ztrans((n+1)*f(n+1)-f(n),n,z); equation:=sub(ztrans(f(n),n,z)=tmp(z),equation); load(odesolve); oderesult:=odesolve(equation,tmp(z),z); preresult:=invztrans(part(first(oderesult),2),z,n); solveresult:= solve({sub(n=0,preresult)=f(0),sub(n=1,preresult)=f(1)},arbconst(1)); result:=preresult where solveresult; end;
3592c88ea9762a1636d6b906e52d62c8b3f7d51c
a5e2e29746cbbbfd0c0bd14cc542cd3ba2bf7d3f
/Sem2_Mathe/random nice shit/fakultaet1.sci
0767dfbc6bad884cdc09d2eae09d22653a14dd72
[]
no_license
DonnyAwesome/UNI
99580eabc0ff200eeecb72d866313b89cd28d0cb
c028434b672ae1962c2074fc249012d68a63db2b
refs/heads/master
2020-04-02T13:05:02.067280
2019-02-14T02:14:06
2019-02-14T02:14:06
154,466,384
0
0
null
2018-10-24T08:33:10
2018-10-24T08:33:10
null
UTF-8
Scilab
false
false
207
sci
fakultaet1.sci
function m = fakultaet1(n) if n <0 then error('no natural number! '); elseif n == 0 m = 1; else m = n*fakultaet1(n-1); end endfunction
7b6018af59baed9f66af1e0b7053e6c74e94f453
9e8eb5a9631d8770d0d0a918c1dc57e5122ae94d
/Point Processing.sce
44a5dc4cac0eb05c328483beedeacaa24639ca84
[]
no_license
vishalraj3112/Image-processing
db2948c37be6ef43c13ff120b97680bf13151d8d
160a17990e1c80da44ef0daf2d148d6f33d37c6c
refs/heads/master
2020-04-03T06:49:20.483364
2018-10-28T16:36:46
2018-10-28T16:36:46
155,085,134
0
0
null
null
null
null
UTF-8
Scilab
false
false
407
sce
Point Processing.sce
clc clear all i=imread("C:\Users\VIshal\Desktop\lena.png") im=rgb2gray(i) figure,imshow(im); s1=255*bitget(im,1); s2=255*bitget(im,2); s3=255*bitget(im,3); s4=255*bitget(im,4); s5=255*bitget(im,5); s6=255*bitget(im,6); s7=255*bitget(im,7); s8=255*bitget(im,8); figure, subplot(2,4,1),imshow(uint8(s8)); subplot(2,4,2),imshow(uint8(s7)); subplot(2,4,3),imshow(uint8(s6)); subplot(2,4,4),imshow(uint8(s5));
bd786fce99956ed8918766ff4966c65b1eebd5d1
e6d5f1d801a3fe887b5dc04b8cc0a9eabc1fd432
/Semana_11/prueba01.sce
308bab5f00e33435e50477d180deb825bdfbeb6c
[]
no_license
lordjuacs/MateIII
70def332063e56eb10fb47678a7e6130dc0dca63
164c53b61c9e35e565121f77ba2c578680a3ab56
refs/heads/master
2021-05-24T15:56:01.078904
2020-07-27T19:57:34
2020-07-27T19:57:34
253,643,962
0
0
null
null
null
null
UTF-8
Scilab
false
false
67
sce
prueba01.sce
x=[1 4 7 10 12 14] y=[5 10 15 17 16 15] save("datos.dat","x","y");
115b0b34cc7c910f8139b039e493f6ec524522c2
dc5a2fe4380e1453a12f15f5080b10f3ababb9de
/AutomationTools/bin/1.0/common/ATLAS/tools/txtfile/sh_addns_coax_2pc.tst
780e6929d6465a2137b6434cc115243fa4c34752
[]
no_license
jameshilliard/PythonCode
f72ad62bb8b8cafbc94cbe7c0d3065343fdf0f98
422543bc049f57a67d53ec0b89caef076297cdc5
refs/heads/master
2020-04-09T00:06:25.689609
2015-03-14T13:14:34
2015-03-14T13:14:34
32,722,067
3
0
null
2015-03-23T09:21:52
2015-03-23T09:21:52
null
UTF-8
Scilab
false
false
2,489
tst
sh_addns_coax_2pc.tst
-v G_USER=qaman -v G_CONFIG=1.0 -v G_TBTYPE=ads -v G_PROD_TYPE=bhr2 -v G_TST_TITLE="Advanced Dynamic DNS" -v G_HTTP_DIR=test/ -v G_FTP_DIR=/log/autotest -v G_TESTBED=tb42 -v G_FROMRCPT=hpeng@actiontec.com -v G_FTPUSR=root -v G_FTPPWD=@ctiontec123 -v U_USER=admin -v U_PWD=admin1 -v G_LIBVERSION=1.0 -v G_LOG=$SQAROOT/automation/logs -v U_COMMONLIB=$SQAROOT/lib/$G_LIBVERSION/common -v U_COMMONJSON=$SQAROOT/platform/1.0/verizon2/testcases/common/json -v U_COMMONBIN=$SQAROOT/bin/$G_LIBVERSION/common -v U_TBCFG=$SQAROOT/config/$G_LIBVERSION/testbed -v U_TBPROF=$SQAROOT/config/$G_LIBVERSION/common -v U_VERIWAVE=$SQAROOT/bin/1.0/veriwave/ -v U_MI424=$SQAROOT/bin/1.0/mi424wr/ -v U_VZBIN=$SQAROOT/bin/$G_LIBVERSION/vz_bin -v U_TESTPATH=$SQAROOT/platform/1.0/verizon/testcases/addns/json #this value used to setup dut configuration -v U_DEBUG=3 -v U_COAX=1 -v G_BUILDID=20.9.43 -v U_DUT=192.168.1.1 -v U_RUBYBIN=$SQAROOT/bin/$G_LIBVERSION/rbin #$G_PFVERSION=1.0 # Configuethe testbed. #-nc $SQAROOT/config/$G_CONFIG/common/testbedcfg_env.xml; -nc $SQAROOT/config/$G_CONFIG/common/testbedcfg.xml; -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/login_logout.xml -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/fw_upgrage_image.xml;pass=init -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/fw_upgrage_image.xml;pass=init -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/fw_upgrage_image.xml;fail=finish -label init -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/reset_dut_to_default.xml -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_dut.xml;pass=next -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_dut.xml;pass=next -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_dut.xml;fail=finish -label next -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_ping.xml;fail=finish -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/enable_tnet.xml #------------------------------ # Test cases #------------------------------ #-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/set_default_time.xml -tc $SQAROOT/platform/1.0/verizon/testcases/addns/tcases/tc_changewanip_coax_06019000010.xml -tc $SQAROOT/platform/1.0/verizon/testcases/addns/tcases/tc_changewanip_pppoe2_06019000012.xml -label finish -nc $SQAROOT/config/$G_CONFIG/common/finalresult.xml -nc $SQAROOT/config/$G_CONFIG/common/uploadlog.xml -nc $SQAROOT/config/$G_CONFIG/common/email.xml
90c6de88657f3a4109b6e290a5b07fe3697b7cfb
449d555969bfd7befe906877abab098c6e63a0e8
/3504/CH2/EX2.9/Ex2_9.sce
6f0f1d5316d74bfad18f412aeba58d8396dc37f1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
486
sce
Ex2_9.sce
//To find the voltage across the capacitor. clc; Z=[4+%i*5 -2 -(1+%i*3);-2 5-%i*2 %i*2;-(1+%i*3) %i*2 2+%i*2] D=det(Z) Z_2=[4+%i*5 5 -(1+%i*3);-2 0 %i*2;-(1+%i*3) 0 2+%i*2] D_2=det(Z_2) I_2=D_2/D //Current in loop 1 in polar form Z_3=[4+%i*5 -2 5;-2 5-%i*2 0;-(1+%i*3) %i*2 0] D_3=det(Z_3) I_3=D_3/D //Current in loop 2 in polar form V_c=(I_2-I_3)*(-%i*2) disp(V_c,'Volatge across the capacitor')
ab8361f256b1d14e6a38ef7cd1ae7e7a1189d6ce
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH7/EX7.7/7_7.sce
e44afa9cf96fc3798169c219ee1a8f4157f73f01
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
229
sce
7_7.sce
clc //initialisation of variables A= 388.5 l= 349.8 a= 0.61 m= 0.1 //M //CALCULATIONS L= A-l A1= a*A Lsp= m*A1/1000 //RESULTS printf (' equivalent conductance of the anion at infinite solution = % 2e mho cm^-2 ',Lsp)
a346b5109cb16b19e154558e8282dd4d9888ed91
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH16/EX16.5/Example16_5.sce
a01a30fa9251a63af9dea0cb94ef770ee94773d9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
396
sce
Example16_5.sce
//Given that L = 1.0 //in meter g = 9.8 //in m/s^2 //Sample Problem 16-5a printf("**Sample Problem 16-5a**\n") //(say) m = 1 I = (1/3)*m*L^2 T = 2*%pi*sqrt(I/(m*g*(L/2))) printf("The time period of SHm is %fs\n", T) //Sample Problem 16-5b printf("\n**Sample Problem 16-5b**\n") Lo = (T/(2*%pi))^2*g printf("The distance of center of oscillation from the pivot is %fcm", Lo*100)
a51a82ffd2fad2a6678c413774d9f757c2c57254
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH3/EX3.6/6.sce
f3ffa0e0c155da53b9fa4cef907e1e21c515122c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
340
sce
6.sce
clc v=0.15; //m^3 p=4; //bar x=0.8; // At 4 bar: From steam tables v_g=0.462; //m^3/kg h_f= 604.7; //kJ/kg h_fg=2133; //kJ/kg density=1/x/v_g; disp("mass of 0.15 m^3 steam, m=") m=v*density; disp(m) disp("kg") disp("Total heat of 1 m3 of steam which has a mass of 2.7056 kg, Q=") Q=density*(h_f+x*h_fg); disp(Q) disp("kJ")
acaa71bb2b8d4d75c3af33b189e733332e3021c5
449d555969bfd7befe906877abab098c6e63a0e8
/2135/CH3/EX3.17/Exa_3_17.sce
fbdef225fc4006ad7b7774de5d824cf535ffb268
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
328
sce
Exa_3_17.sce
//Exa 3.17 clc; clear; close; format('v',6); //Given Data : T1=27+273;//K T2=-23+273;//K W=1;//KW Q2=20000;//KJ/hr Q2=Q2/3600;//KJ/s ActualCOP=Q2/W; disp(ActualCOP,"Actual COP of machine : "); IdealCOP=T2/(T1-T2); disp(IdealCOP,"Ideal COP of machine : "); disp("ActualCOP>IdealCOP, Inventor claim is wrong.");
77b285f8b65e0198cc4bf5eef0c36a5ff312a5da
449d555969bfd7befe906877abab098c6e63a0e8
/3782/CH5/EX5.16/Ex5_16.sce
c2c2432329d426878e01a49a75aa33695a578def
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
457
sce
Ex5_16.sce
// // bs1=2.375,bs2=2.835,bs3=0.435, is1=1.730,is2=0.615,is3=2.070,is4=1.835,is5=1.630, is6=2.255 fs1=3.450,fs2=0.985,fs3=3.630, sbs=bs1+bs2+bs3 sis=is1+is2+is3+is4+is5+is6 sfs=fs1+fs2+fs3 r1=bs1-is1 r2=is1-is2 r3=bs2-is3 r4=is3-is4 r5=is4-fs2 sr=r1+r2+r3+r4+r5 printf("\n r1,r2,r3,r4,r5,sr") f1=bs2 f2=is5-bs3 f3=fs3-is6 f4=is6-is5 sf=f1+f2+f3+f4 printf("\n f1,f2,f4,f3,sf") k=sbs-sfs printf("\n k= %0.3f ",k) k1=sr-sf printf("\n k1= %0.3f ",k1)
e057e763d25cfc082e2697ec4ec391841a2104d2
449d555969bfd7befe906877abab098c6e63a0e8
/3311/CH13/EX13.18/Ex13_18.sce
5ee0cdf00c06abcbd2e98ebc3edb640367d778dc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
792
sce
Ex13_18.sce
// chapter 13 // example 13.18 // Determine the maximum power disspation // page-843 clear; clc; // given Cs=0.2; // in J/degree C (thermal capacity) theta=0.7; // in degree C/W (thermal resistance) T_J=40; // in degree C (junction temperature) t=0.1; // in s // calculate power_diss_per_degreeC=1/theta; // calculation of power dissipation per degree Celsius rise tou=Cs/power_diss_per_degreeC; // calculation of thermal time constant // since T_J=T_J_max*(1-exp(-t/tou)), therefore we get T_J_max=T_J/(1-exp(-t/tou)); // calculation of maximum junction temperature P_max_diss=T_J_max*power_diss_per_degreeC; // calculation of maximum power disspation printf("\nThe maximum power disspation is \t P_max_diss=%.f W",P_max_diss); // Note :The answer vary slightly due to precise calculation
c27ccfaa1ba461968545b8ef1d733d7846090b0c
52bc9d4a4a76ae754ef5ed1e1bfaa3734778e40b
/lab3/lab3.sce
1733634aa3f8c3b676b3ed9ab9ceb3a27ca92ebf
[]
no_license
DavidShagabaev/mathmod-labs
4850686841cac662c49350dad6fd1a3e2a02d4a7
8832962a354e40b0860e45c440d962727ad53871
refs/heads/main
2023-08-30T19:20:26.965258
2021-11-14T17:02:40
2021-11-14T17:02:40
427,987,455
0
0
null
null
null
null
UTF-8
Scilab
false
false
861
sce
lab3.sce
x0=25000; y0=39000; v0=[x0;y0]; c=0.55; a=0.441; function p=P(t) p=sin(2*t)+1; endfunction b=0.773; d=0.664; function q=Q(t) q=cos(2*t)+1; endfunction c_G=0.299; a_G=0.399; function p=P_G(t) p=sin(2*t)+2; endfunction b_G=0.688; d_G=0.811; function q=Q_G(t) q=cos(3*t)+1; endfunction t0=0; dt=0.05; tmax=1; t=t0:dt:tmax; function dy=f_y(t,y) dy(1)=-a*y(1)-b*y(2)+P(t); dy(2)=-c*y(1)-d*y(2)+Q(t); endfunction y=ode(v0,t0,t,f_y); function dy=f_y_G(t,y_G) dy(1)=-a_G*y_G(1)-b_G*y_G(2)+P_G(t); dy(2)=-c_G*y_G(1)*y_G(2)-d_G*y_G(2)+Q_G(t); endfunction y_G=ode(v0,t0,t,f_y_G); //Graphic plot2d(t,y(1,:),style=color('blue')); plot2d(t,y(2,:),style=color('red')); plot2d(t,y_G(1,:),style=color('green')); plot2d(t,y_G(2,:),style=color('yellow')); xtitle('Модель боевых действий','Шаг','Численность армии'); xgrid();
8eea91021cd90e219c2ade7a56089a1dc77822f6
449d555969bfd7befe906877abab098c6e63a0e8
/1757/CH6/EX6.26/EX6_26.sce
1133c4644eacad1704daa3ce2dcc713fadde67c1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
602
sce
EX6_26.sce
//Example6.26 // to calculate the output voltage of op-amp circuit clc; clear; close; Rf = 100*10^3 ; // ohm R1 = 10*10^3 ; // ohm R2 = 25*10^3 ; // ohm R3 = 50*10^3 ; // ohm // the output of op-amp A1 is // VA1 = (-Rf/R1)*V1 ; VA1 = (-Rf/R1); disp('The output of op-amp A1 is = '+string(VA1)+'V1' ); // *V1 because the output is come from 1 op-amp // the output of op-amp A2 is // Vo = -Rf*((VA1/R2)+(V2/R3)); //Vo = -100*(-0.4*V1+0.02V2); disp('The output of op-amp A2 is Vo = 40V1 - 2V2 '); disp('The output is equal to the difference between 40V1 and 2V2 ');
4359d5164a3336c793211d0faa464d7a74f45e5b
449d555969bfd7befe906877abab098c6e63a0e8
/3542/CH2/EX2.1/ExB_1.sce
40ca0f22773d52c166973d607a82d89bfaaa0cd8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
542
sce
ExB_1.sce
// Example no B.1 // To determine SNR at the detector output stage // Page no. 613 clc; clear all; // Given data SNRin=20; // SNR at the receiver antenna input terminal in dB F=6; // Noise figure in dB // SNR at the detector output stage SNRout=SNRin-F; // SNR at the detector output stage in dB // Displaying the result in command window printf('\n SNR at the detector output stage = %0.0f dB',SNRout);
52c9a9e1113cbba8002ba91a5527db09570b6d63
449d555969bfd7befe906877abab098c6e63a0e8
/1627/CH4/EX4.3/Ex4_3.sce
ae106360c9bc5794aaa6473175122672169ac419
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
539
sce
Ex4_3.sce
clc //initialisation of variables a=5//cm b=25//cm s=8.5//bars r=40//cpm T=460//F p2=77//ft p1=68//ft T1=273//F T2=273//F t=20//c d=1.01*10^5//N/m^2 q2=61024//in^3/m^3 q3=1/1728//ft^3/in^3 p=14.7//psi //CALCULATIONS Q=%pi*((a*10^-2)^2/4)*(b*10^-2)*(r)*1000//m^3/min Q2=((s*10^5+d)*Q)/d*0.001//m^3/min Q3=Q2*(t+T1)/(b+T2)//m^3/min free air Q4=Q*q2*q3*0.001//cfm Q5=(s*14.5+p)*(Q4)/p//cfm free air Q6=Q5*(p1+T)/(p2+T)//cfm free air //RESULTS printf('The air consumption in units of free air is=% f cfm free air',Q6)
e2de76073fb4875612fd993889aedddd29ea7df2
449d555969bfd7befe906877abab098c6e63a0e8
/2168/CH16/EX16.3/Chapter16_example3.sce
4a8127c548f7bf599655d445461a67211ee67f27
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
908
sce
Chapter16_example3.sce
clc clear //Input data n=4//Number of cylinders d=105//Bore in mm l=127//Stroke in mm BHP=63//Brake horse power in h.p N=1800//Speed in r.p.m t=15//Test time in min mf=2.75//Mass of fuel in kg CV=11000//Calorific value in kcal/kg af=14.8//Air fuel ratio v=0.805//Specific volume in m^3/kg nv=80//Volumetric efficiency in percent J=427//Mechanical equivalent of heat in kg.m/kcal //Calculations bth=((BHP*4500)/(J*(mf/t)*CV))*100//Brake thermal efficiency in percent Vs=((3.14/4)*(d/10)^2*(l/10))//Stroke volume in c.c Vsw=(Vs*n*(N/2)*t)//Swept volume in c.c Va=(Vsw*10^-6*(nv/100))//Volume of air sucked in m^3 wa=(Va/v)//Weight of air sucked in kg wr=(af*mf)//Weight of air reqired in kg pei=(wr/wa)*100//Percentage of air available for combustion //Output printf('Brake thermal efficiency is %3.1f percent \n The percentage of air used for combustion is %i percent',bth,pei)
de5e4b570ce5465f75508a66becf70332e28d1a6
4014300a072f0492747983563943f01f78a1b16d
/test/unit_test/reports/tst-timeperiod.tst
57e66d54fd4e8bd2618e8cb8049da595fd4311bc
[ "BSD-3-Clause" ]
permissive
eyasuashenafi/ninja
e351cc90e8c815e018447750cd40fa38796f6c51
daf739b82e48d3b60c43cf699fbb39f96d9fa27a
refs/heads/master
2020-12-03T13:50:39.324069
2012-09-28T14:23:00
2012-09-28T14:23:00
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,841
tst
tst-timeperiod.tst
description = Reports using timeperiods logfile = softstates.log # for now, these tests only work when run on CET-using machine global_vars { # mon feb 11 00:00:00 CET 2008 start_time = 1202684400 # tue feb 12 00:00:00 CET 2008 end_time = 1202770800 host_name { testhost } timeperiod { timeperiod_name = an_exclude 2008-02-11 = 22:00-23:30 } } monday lunchtime 12:00-13:00 { timeperiod { monday = 12:00-13:00 } correct { TIME_UP_UNSCHEDULED = 3600 TIME_INACTIVE = 82800 } } simple timeperiod { timeperiod { monday = 02:15-03:25 } correct { TIME_UP_UNSCHEDULED = 4200 TIME_INACTIVE = 82200 TOTAL_TIME_ACTIVE = 4200 } } slightly tricksier timeperiod { timeperiod { monday = 02:15-03:25,04:15-05:25 } correct { TIME_UP_UNSCHEDULED = 8400 TIME_INACTIVE = 78000 TOTAL_TIME_ACTIVE = 8400 } } tricksy timeperiod indeed { timeperiod { monday = 00:15-00:25,01:15-01:25,02:15-02:25,03:15-03:25,04:00-05:00 } correct { TIME_UP_UNSCHEDULED = 6000 TIME_INACTIVE = 80400 TOTAL_TIME_ACTIVE = 6000 } } timeperiod with simple exception { timeperiod { monday = 00:00-24:00 2008-02-11 = 22:00-23:30 } correct { TIME_UP_UNSCHEDULED = 3600 TIME_DOWN_UNSCHEDULED = 1800 TIME_INACTIVE = 81000 } } # ensure that exceptions are only added once timeperiod with simple exception and three days { # sun feb 10 00:00:00 CET 2008 start_time = 1202598000 # wed feb 13 00:00:00 CET 2008 end_time = 1202857200 timeperiod { monday = 00:00-24:00 2008-02-11 = 22:00-23:30 } correct { TIME_UP_UNSCHEDULED = 3600 TIME_DOWN_UNSCHEDULED = 1800 TIME_INACTIVE = 253800 } } timeperiod with simple excludes { timeperiod { monday = 00:00-24:00 excludes { 0 = an_exclude } } correct { TIME_UP_UNSCHEDULED = 79200 TIME_DOWN_UNSCHEDULED = 1800 TIME_INACTIVE = 5400 } }
689c6fdf3d0bc1e012e2217f218cc206ff5b5bac
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/DT87NVH/ATWM1_Working_Memory_MRI_DT87NVH/ATWM1_Working_Memory_MRI_Salient_Uncued_Run1.sce
860cfe57730d36aaf8bc3f8672bdb4334037bebf
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
12,235
sce
ATWM1_Working_Memory_MRI_Salient_Uncued_Run1.sce
# ATWM1 MRI Experiment scenario = "ATWM1_Working_Memory_MRI_salient_uncued_run1"; scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen #scenario_type = trials; scan_period = 2000; # TR pulses_per_scan = 1; pulse_code = 1; #pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; #write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 9400; mri_pulse = 1; code = "BaselinePre"; #port_code = 1; }; TEMPLATE "ATWM1_Working_Memory_MRI.tem" { trigger_volume_encoding trigger_volume_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 6 12 292 292 399 125 11543 2992 14342 fixation_cross gabor_166 gabor_081 gabor_149 gabor_124 gabor_166 gabor_081 gabor_149_alt gabor_124_alt "1_1_Encoding_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_166_081_149_124_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_013_framed gabor_circ blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 21 27 292 292 399 125 11543 2992 14342 fixation_cross gabor_044 gabor_149 gabor_167 gabor_014 gabor_044 gabor_149_alt gabor_167 gabor_014_alt "1_2_Encoding_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_044_149_167_014_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_014_framed blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 36 42 292 292 399 125 11543 2992 12342 fixation_cross gabor_126 gabor_110 gabor_050 gabor_172 gabor_126_alt gabor_110 gabor_050_alt gabor_172 "1_3_Encoding_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_126_110_050_172_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_003_framed gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 50 56 292 292 399 125 11543 2992 12342 fixation_cross gabor_050 gabor_139 gabor_175 gabor_160 gabor_050 gabor_139 gabor_175_alt gabor_160_alt "1_4_Encoding_Working_Memory_MRI_P1_LR_Salient_NoChange_UncuedRetriev_300_300_399_11601_3000_12400_gabor_patch_orientation_050_139_175_160_target_position_3_4_retrieval_position_1" gabor_050_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MRI_P1_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_050_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 64 70 292 292 399 125 11543 2992 12342 fixation_cross gabor_138 gabor_102 gabor_078 gabor_159 gabor_138 gabor_102 gabor_078_alt gabor_159_alt "1_5_Encoding_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_138_102_078_159_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_159_framed blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 78 83 292 292 399 125 9543 2992 14342 fixation_cross gabor_053 gabor_092 gabor_139 gabor_158 gabor_053_alt gabor_092 gabor_139_alt gabor_158 "1_6_Encoding_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_053_092_139_158_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_002_framed gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 92 97 292 292 399 125 9543 2992 14342 fixation_cross gabor_086 gabor_031 gabor_148 gabor_172 gabor_086 gabor_031 gabor_148_alt gabor_172_alt "1_7_Encoding_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_086_031_148_172_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_148_framed gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 106 111 292 292 399 125 9543 2992 14342 fixation_cross gabor_025 gabor_069 gabor_002 gabor_176 gabor_025 gabor_069_alt gabor_002 gabor_176_alt "1_8_Encoding_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_025_069_002_176_target_position_2_4_retrieval_position_2" gabor_circ gabor_069_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_069_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 120 125 292 292 399 125 9543 2992 14342 fixation_cross gabor_120 gabor_143 gabor_006 gabor_095 gabor_120_alt gabor_143 gabor_006_alt gabor_095 "1_9_Encoding_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_120_143_006_095_target_position_1_3_retrieval_position_1" gabor_073_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 134 139 292 292 399 125 9543 2992 12342 fixation_cross gabor_104 gabor_147 gabor_036 gabor_168 gabor_104_alt gabor_147 gabor_036 gabor_168_alt "1_10_Encoding_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_104_147_036_168_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 147 152 292 292 399 125 9543 2992 12342 fixation_cross gabor_073 gabor_042 gabor_058 gabor_018 gabor_073_alt gabor_042 gabor_058_alt gabor_018 "1_11_Encoding_Working_Memory_MRI_P1_LR_Salient_DoChange_UncuedRetriev_300_300_399_9601_3000_12400_gabor_patch_orientation_073_042_058_018_target_position_1_3_retrieval_position_2" gabor_circ gabor_092_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MRI_P1_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_092_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 160 166 292 292 399 125 11543 2992 12342 fixation_cross gabor_006 gabor_162 gabor_078 gabor_144 gabor_006 gabor_162_alt gabor_078 gabor_144_alt "1_12_Encoding_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_006_162_078_144_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_094_framed blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MRI_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 174 179 292 292 399 125 9543 2992 12342 fixation_cross gabor_071 gabor_147 gabor_003 gabor_041 gabor_071_alt gabor_147_alt gabor_003 gabor_041 "1_13_Encoding_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_071_147_003_041_target_position_1_2_retrieval_position_1" gabor_071_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 187 193 292 292 399 125 11543 2992 14342 fixation_cross gabor_151 gabor_135 gabor_022 gabor_094 gabor_151 gabor_135 gabor_022_alt gabor_094_alt "1_14_Encoding_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_151_135_022_094_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_022_framed gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MRI_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 202 207 292 292 399 125 9543 2992 14342 fixation_cross gabor_155 gabor_137 gabor_078 gabor_101 gabor_155 gabor_137_alt gabor_078 gabor_101_alt "1_15_Encoding_Working_Memory_MRI_P1_LR_Salient_NoChange_UncuedRetriev_300_300_399_9601_3000_14400_gabor_patch_orientation_155_137_078_101_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_078_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MRI_P1_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_078_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 20600; code = "BaselinePost"; #port_code = 2; };
56dabf9fc9b542f7f82a0d6c50672b9da2161323
449d555969bfd7befe906877abab098c6e63a0e8
/848/CH4/EX4.7/Example4_7.sce
c18c4de7c251b76550f379298cc0d2ff73fd41ca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
689
sce
Example4_7.sce
//clear// //Caption:Program to find Lasing Threshold gain //Example4.7 //page156 clear; clc; L = 500e-06; //Laser diode length in meters R1 = 0.32//reflection coefficient value of one end; R2 = 0.32//reflection coefficient value of another end; alpha_bar =10/1e-02; //absorption coefficient; alpha_end = (1/(2*L))*log(1/(R1*R2));//mirror loss in the lasing cavity alpha_threshold = alpha_bar+alpha_end;//total loss disp(alpha_threshold,"The Threshold Gain per metre") alpha_threshold_cm = alpha_threshold/100 disp(alpha_threshold_cm ,"The Threshold Gain per centimetre"); //Result //The Threshold Gain per metre 3278.8686 //The Threshold Gain per centimetre 32.788686
61e5dab4ca2ab249433a0de91b2d62ea6c7f2ffe
449d555969bfd7befe906877abab098c6e63a0e8
/506/CH9/EX9.2/Example9_2.sce
fe980b5750d873f6c76872f7a9feec67a780ba41
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
685
sce
Example9_2.sce
clear; clc; //Caption:To find resistances in 2N335 transistor //Given Data Rc=4;//in K Vcc=20;//in V Vce=10;//in V Ic=2;//in mA //Ic varies from 1.75 to 2.25 and B(beta) varies from 36 to 90 Re = (Vcc-Vce)/Ic - Rc; //S=delta Ic/delta B Ic2=2.25;//in mA Ic1=1.75;//in mA B2=90; B1=36; S=(Ic2-Ic1)/(B2-B1); S2=(S*36*(1+90))/1.75; disp(S2,'S2=','K',Re,'Re=','B2=90'); //S2=(1+B)*(1+(Rb/Re))/(1+B+(Rb/Re)) Rb=(S2-1)*(1+B2)*Re/(1+B2-S2); disp('K',Rb,'Rb='); Vbe=0.65;//in V disp('V',Vbe,'We know that Vbe = '); V = Vbe + ((Rb+Re*(1+B1))*Ic1/B1); disp('Volts',V,'V = '); R1=Rb*Vcc/V; R2=R1*V/(Vcc-V); disp('K',R1,'R1='); disp('K',R2,'R2='); //end
a2d571a8674f7be1dc4c6901e6f205d9034bf676
6e51f2fdd036612dc2b51c405904fed97d2ae8b0
/src/test_meta_2_a.tst
0d1078e7030780399f36ddbd70298857bce2b532
[ "MIT", "Zlib", "BSD-3-Clause", "OML" ]
permissive
joe-nano/ciyam
92c6ccb58029a1b2a641a7e00417ab524cb9f957
a92c296b911b29620a7bb3b758eb55339e040219
refs/heads/master
2022-04-16T14:39:55.822434
2020-03-27T06:39:13
2020-03-27T06:39:13
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,893
tst
test_meta_2_a.tst
> storage_backup ciyam Processing DDL and row data for T_Meta_User... Processing DDL and row data for T_Meta_Workgroup... Processing DDL and row data for T_Meta_Type... Processing DDL and row data for T_Meta_Enum... Processing DDL and row data for T_Meta_Enum_Item... Processing DDL and row data for T_Meta_Model... Processing DDL and row data for T_Meta_Class... Processing DDL and row data for T_Meta_Field... Processing DDL and row data for T_Meta_Index... Processing DDL and row data for T_Meta_Modifier... Processing DDL and row data for T_Meta_Modifier_Affect... Processing DDL and row data for T_Meta_Procedure... Processing DDL and row data for T_Meta_Procedure_Arg... Processing DDL and row data for T_Meta_Relationship... Processing DDL and row data for T_Meta_Specification_Type... Processing DDL and row data for T_Meta_Specification... Processing DDL and row data for T_Meta_Permission... Processing DDL and row data for T_Meta_View_Type... Processing DDL and row data for T_Meta_View... Processing DDL and row data for T_Meta_View_Field_Type... Processing DDL and row data for T_Meta_View_Field... Processing DDL and row data for T_Meta_List_Type... Processing DDL and row data for T_Meta_List... Processing DDL and row data for T_Meta_List_Field_Type... Processing DDL and row data for T_Meta_List_Field... Processing DDL and row data for T_Meta_Auto_Code... Processing DDL and row data for T_Meta_Module... Processing DDL and row data for T_Meta_Application... Processing DDL and row data for T_Meta_Specification_Field_Action... Processing DDL and row data for T_Meta_Initial_Record... Processing DDL and row data for T_Meta_Initial_Record_Value... Processing DDL and row data for T_Meta_Package_Type... Processing DDL and row data for T_Meta_Package... Processing DDL and row data for T_Meta_Package_Option... Processing DDL and row data for T_Meta_Application_Script... >
39927f740be45fbcd1c407826317c473fab41e46
a5f0fbcba032f945a9ee629716f6487647cafd5f
/Machine_Learning/demos/1 hot encode_Demo.sce
17db0dc7f98167019354b5abe73981a59f69989c
[ "BSD-2-Clause" ]
permissive
SoumitraAgarwal/Scilab-gsoc
692c00e3fb7a5faf65082e6c23765620f4ecdf35
678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f
refs/heads/master
2021-04-15T17:55:48.334164
2018-08-07T13:43:26
2018-08-07T13:43:26
126,500,126
1
1
null
null
null
null
UTF-8
Scilab
false
false
332
sce
1 hot encode_Demo.sce
// Demo script for 1 hot encoding getd('../macros/') // Data preparation M = read_csv('Datasets/titanic.csv') x = M(:, 12); x = stripblanks(x) x(or(isnan(x),'c'),:) = [] l = size(x) y = [] for i = 1:l(1) if(strcmp(x(i), '') ~= 0) y = [y;x(i)]; end end x = y [categories, encode] = hotEncode(x); disp(categories); disp(encode)
fc3a2f41482411be797ec965f7ae65fe783844a4
449d555969bfd7befe906877abab098c6e63a0e8
/68/CH14/EX14.2/ex2.sce
a7beb29bc600bffd63741acc6621aec406fc2d54
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,179
sce
ex2.sce
// Example 14.2 To determine quiescent current and power // Consider Class AB Amplifier V_CC=15; // (V) R_L=100; // (ohm) v_O=-10:10:10; // Amplitude of sinusoidal output voltage (V) I_S=10^-13; // (A) V_T=25*10^-3; // (V) B=50; // Beta value i_Lmax=10/(0.1*10^3); // Maximum current through Q_N (A) // Implies max base curent in Q_N is approximately 2mA I_BIAS=3*10^-3; // We select I_BIAS=3mA in order to maintain a minimum of 1mA through the diodes I_Q=9*10^-3; // The area ratio of 3 yeilds quiescent current of 9mA P_DQ=2*V_CC*I_Q; disp(P_DQ,"Quiescent power dissipation (W)") //For v_O=0V base current of Q_N is 9/51=0.18 mA // Leaves a current of 3-0.18=2.83mA to flow through the diodes I_S= (10^-13)/3; // Diodes have I_S = (1*10^-13)/3 V_BB=2*V_T*log((2.83*10^-3)/I_S); disp(V_BB,"V_BB (V) for v_O = 0V") // For v_O=+10V, current through the diodes will decrease to 1mA V_BB=2*V_T*log((1*10^-3)/I_S); disp(V_BB,"V_BB (V) for v_O = +10V") // For v_O=-10V , Q_N will conduct very small current thus base current is negligible // All of the I_BIAS(3mA) flows through the diodes V_BB=2*V_T*log((3*10^-3)/I_S); disp(V_BB,"V_BB (V) for v_O = -10V")
c6ed7e6b97c14670fcb773bf8f2e1d5b91536163
449d555969bfd7befe906877abab098c6e63a0e8
/572/CH6/EX6.3/c6_3.sce
b27c2c402ab6013f36e57bf79cfde38be160a4e1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
842
sce
c6_3.sce
//(6.3) Refrigerant 134a is compressed adiabatically in a piston–cylinder assembly from saturated vapor at 0C to a final pressure of 0.7 MPa. Determine the minimum theoretical work input required per unit mass of refrigerant, in kJ/kg. //solution //variable initialization T1 = 273 //initial temperature of saturated vapor in kelvin P2 = .7*10^6 //final pressure in pascal //from table A-10, u1 = 227.06 //in kj/kg //minimum theoretical work corresponds to state of isentropic compression //from table A-12, u2s = 244.32 //in kj/kg Wmin = u2s-u1 printf('the minimum theoretical work input required per unit mass of refrigerant in kj/kg is:\n\t Wmin = %f',Wmin)
adef8a7575ac62fa2713b678a444dc9461554a4c
7b503af090f6fd5872c7e48f10021ac81672d605
/TerrainMaker/water_mesh.sce
0477f5887efb4d7423f0574d1433a68290cc54ba
[]
no_license
eduardoaguacate/POVRay-Project
7dfe7b3dff0422a2c8592347ac7f12895d1213b5
e877339ff9f40713a322e7e99e9aa12bd828fd64
refs/heads/master
2022-02-22T19:46:25.566968
2017-11-02T00:13:59
2017-11-02T00:13:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,822
sce
water_mesh.sce
//Author: Eduardo Jesus Serna Leal //A01196007 //Homework 9 // This function interpolates a matrix given its four corners function make_interpolation(n, mid_x,mid_y,top_left,top_right,bottom_left,bottom_right) global mat A = 20 H = 2.0 R = rand() * 2 - 1 noise = A * R * 2^( -1 * H * n) // Interpolate the first and last row mat(top_left.i,mid_y) = (1 / 2.0) * (mat(top_left.i,top_left.j) + mat(top_right.i,top_right.j)) + noise mat(bottom_left.i,mid_y) = (1 / 2.0) * (mat(bottom_left.i,bottom_left.j) + mat(bottom_right.i,bottom_right.j)) + noise // Interpolate the first and last column mat(mid_x,top_left.j) = (1 / 2.0) * (mat(top_left.i,top_left.j) + mat(bottom_left.i,bottom_left.j)) + noise mat(mid_x,top_right.j) = (1 / 2.0) * (mat(top_right.i,top_right.j) + mat(bottom_right.i,bottom_right.j)) + noise //Interpolate center mat(mid_x,mid_y) = (1 / 4.0) * (mat(top_left.i,mid_y) + mat(bottom_left.i,mid_y) + mat(mid_x,top_left.j) + mat(mid_x,top_right.j)) + noise endfunction function interpolate(n, top_left,top_right,bottom_left,bottom_right) if n <= 2 then return else begin = top_left.i last = top_right.j // These variables gives the respective middles from the current matrix mid_x = (top_left.i + bottom_left.i) / 2 mid_y = (top_left.j + top_right.j) / 2 // Interpolate the four current corners of the matrix make_interpolation(n, mid_x,mid_y,top_left,top_right,bottom_left,bottom_right) n = n / 2 // We will now interpolate the n / 2 size matrix. If we were to interpolate a 6 by 6 matrix, we would now interpolate a 3 by 3 matrix // Interpolate the top left matrix interpolate(n,struct('i',top_left.i,'j',top_left.j), struct('i',top_left.i,'j',mid_y), struct('i',mid_x,'j',top_left.j), struct('i',mid_x,'j',mid_y)) // Interpolate the top right matrix interpolate(n,struct('i',top_right.i,'j',mid_y), struct('i',top_right.i,'j',top_right.j), struct('i',mid_x,'j',mid_y), struct('i',mid_x,'j',bottom_right.j)) // Interpolate the bottom left matrix interpolate(n,struct('i',mid_x,'j',top_left.j), struct('i',mid_x,'j',mid_y), struct('i',bottom_left.i,'j',bottom_left.j), struct('i',bottom_left.i,'j',mid_y)) // Interpolate the bottom right matrix interpolate(n,struct('i',mid_x,'j',mid_y), struct('i',mid_x,'j',bottom_right.j), struct('i',bottom_right.i,'j',mid_y), struct('i',bottom_right.i,'j',bottom_right.j)) end endfunction clf() global mat n = 5 begin = 1 last = 2^n + 1 mat = zeros(last,last) mat(begin,begin) = 40 mat(begin,last) = 0 mat(last,begin) = 40 mat(last,last) = 0 top_left = struct('i',begin,'j',begin) top_right = struct('i',begin,'j',last) bottom_left = struct('i',last,'j',begin) bottom_right = struct('i',last,'j',last) mid_x = (top_left.i + bottom_left.i) / 2 mid_y = (top_left.j + top_right.j) / 2 top_middle = struct('i',begin,'j',mid_y) bottom_middle = struct('i',last,'j',mid_y) mat(begin, mid_y) = 60 mat(last, mid_y) = 60 middle_left = struct('i',mid_x,'j',begin) middle_right = struct('i',mid_x,'j',last) mat(mid_x, begin) = 40 mat(mid_x, last) = 0 middle_middle = struct('i',mid_x,'j',mid_y) mat(mid_x, mid_y) = 60 // Call recursive function //interpolate(last + 1, top_left,top_right,bottom_left,bottom_right) interpolate(last, top_left,top_middle,middle_left,middle_middle) interpolate(last, top_middle,top_right,middle_middle,middle_right) interpolate(last, middle_left,middle_middle,bottom_left,bottom_middle) interpolate(last, middle_middle,middle_right,bottom_middle,bottom_right) surf(mat,'facecol','red','edgecol','blu') disp(mat) disp(TMPDIR) fprintfMat(TMPDIR + "/Mat", mat, "%5.2f");
5b5c1582c8818ae2efe34dc42e77c72d8d193ac4
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/PT5.prev.tst
35354b4d9e5c01d984e4f2e60fca326e6ab7a95e
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
60
tst
PT5.prev.tst
a^3 + 2*b^3 + 3*c^3 - d^3 can be transposed in 0 ways: {}
18c9e963ac75b3ec44ca4b2f2888776a8feb31d3
449d555969bfd7befe906877abab098c6e63a0e8
/2048/CH13/EX13.8/lqg_as1.sce
438669db947e91af8a7904814f59bd09a1d5c0d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
830
sce
lqg_as1.sce
// LQG control design for the problem discussed in Example 13.6 on page 474. // 13.8 // Solves Example 3.1 of Ahlen and Sternad in Hunt's book exec('lqg1.sci',-1); exec('specfac.sci',-1); exec('flip.sci',-1); exec('polmul.sci',-1); exec('polsize.sci',-1); exec('poladd.sci',-1); exec('polyno.sci',-1); exec('putin.sci',-1); exec('clcoef.sci',-1); exec('xdync.sci',-1); exec('rowjoin.sci',-1); exec('left_prm.sci',-1); exec('t1calc.sci',-1); exec('indep.sci',-1); exec('seshft.sci',-1); exec('makezero.sci',-1); exec('move_sci.sci',-1); exec('colsplit.sci',-1); exec('cindep.sci',-1); exec('ext.sci',-1); A = [1 -0.9]; dA = 1; B = [0.1 0.08]; dB = 1; k = 2; rho = 0.1; C = 1; dC = 0; V = 1; dV = 0; F = 1; dF = 0; W = [1 -1]; dW = 1; [R1,dR1,Sc,dSc] = ... lqg1(A,dA,B,dB,C,dC,k,rho,V,dV,W,dW,F,dF)
9c70c690ea65b476ac01528f57b646c847c9d052
449d555969bfd7befe906877abab098c6e63a0e8
/1730/CH2/EX2.10/Exa2_10.sce
dfe79467cac2b4adcde6634832e9729e2dab3e1e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
341
sce
Exa2_10.sce
//Exa10 clc; clear; close; //given data miu_e=0.17;//in m^2/V-s miu_h=0.035;//in m^2/V-s nita_i=1.1*10^16; //in /m^3 e=1.6*10^-19;// in C (electron charge) // Intrinsic conductivity, sigma_i=(nita_i*e)*(miu_e+miu_h); IntrinsicResistivity=1/sigma_i; disp("Intrinsic resistivity is : "+string(IntrinsicResistivity)+" ohm-meter");
4b6c9434bb5843ecd83e1db2821271fe3c668e65
b3c9357cd1290921e67444ae057761959fdf24f1
/Curso de programação com Scilab/códigos/covid-19/loss1.sci
e962a0001d236d655e4a2937d0dbb5dbcc85a846
[]
no_license
joaolrneto/Scilab
91742520422426dc8a772997ef4a5d6376008b6e
f383f87e4585955cf19d0dae1b5c29f93c3f70b4
refs/heads/master
2023-02-05T20:13:03.677069
2020-12-30T14:53:09
2020-12-30T14:53:09
264,671,730
1
0
null
null
null
null
UTF-8
Scilab
false
false
102
sci
loss1.sci
function e=loss1(p, Data) e = Data(2,:) - model2(Data(1,:), p); // vertical distance endfunction
1a6cfb8ea689d6e9eba9d324b74b7861eda89022
449d555969bfd7befe906877abab098c6e63a0e8
/243/CH6/EX6.12/6_12.sce
1de1b8ff5a406ccb5ddb2559da31e734072c08d9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
652
sce
6_12.sce
//Example No. 6_12 //Fixed point method //Pg No. 162 clear ; close ; clc ; A = [ -5 0 1 ]; funcprot(0); deff('x = g(x)','x = 5/x'); x(1) = 1 ; printf('\n x0 = %f \n',x(1)); for i = 2:5 x(i) = feval(x(i-1),g); printf(' x%i = %f \n',i-1,x(i)) end //Defining g(x) in different way deff('x = g(x)','x = x^2 + x - 5'); x(1) = 0; printf('\n x0 = %f \n',x(1)); for i = 2:5 x(i) = feval(x(i-1),g); printf(' x%i = %f \n',i-1,x(i)) end //Third form of g(x) deff('x = g(x)',' x = (x + 5/x)/2 '); x(1) = 1; printf('\n x0 = %f \n',x(1)); for i = 2:7 x(i) = feval(x(i-1),g); printf(' x%i = %f \n',i-1,x(i)) end
2cdee0a339b6c814114d18c09e3fd9297a00d0c4
449d555969bfd7befe906877abab098c6e63a0e8
/3788/CH5/EX5.2.1/Ex5_2_1.sce
430068de79515ddd218dc5c08c2c78b2e11cca76
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
341
sce
Ex5_2_1.sce
//Example //Calculate the baseband SN ratio for the video signal //Variables clc clear Fmax = 4.2 RFbw = 30 CNratio = 15 P = 9 Q = 8 //Result delFpk = (RFbw/2) - Fmax Brf = 2*(delFpk + Fmax) SN = CNratio + 10*log10(RFbw/Fmax) + 20*log10(delFpk/Fmax)+ 1.5 +P + Q printf("The baseband SN ratio for the video signal is %f",SN)
fc70afd596d50776595af1f8752cb1eedc7fd0bb
449d555969bfd7befe906877abab098c6e63a0e8
/2873/CH13/EX13.3/Ex13_3.sce
23c98b6f1155c4fcbe7d58a4bf6608c29e9ba3be
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,036
sce
Ex13_3.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Engineering Thermodynamics by Onkar Singh Chapter 13 Example 3") C=300;//aircraft flying speed in m/s P=0.472*10^5;//altitude pressure in Pa rho=0.659;//density in kg/m^3 y=1.4;//expansion constant R=287;//gas constant in J/kg K disp("From bernoulli equation,Po-P=(1/2)*rho*C^2") disp("so Po=P+(1/2)*rho*C^2 in N/m^2") Po=P+(1/2)*rho*C^2 disp("speed indicator reading shall be given by mach no.s") disp("mach no.,M=C/a=C/sqrt(y*R*T)") disp("using perfect gas equation,P=rho*R*T") disp("so T=P/(rho*R)in K") T=P/(rho*R) disp("so mach no.,M") M=C/sqrt(y*R*T) M=0.947;//approx. disp("considering compressibility effect,Po/P=(1+(y-1)*M^2/2)^(y/(y-1))") disp("so stagnation pressure,Po=P*((1+(y-1)*M^2/2)^(y/(y-1)))in N/m^2") Po=P*((1+(y-1)*M^2/2)^(y/(y-1))) disp("also Po-P=(1+k)*(1/2)*rho*C^2") disp("substitution yields,k=") k=((Po-P)/((1/2)*rho*C^2))-1 disp("so compressibility correction factor,k=0.2437")
6911cf79bc48179a9775462c781ad09a35fd358b
11b48ab2e0fbc782931cc1162673a725c914a3ee
/M2/M3DA/Mecanique/Fichiers/Fichiers/InterpolationTriangle.sci
334ab69c12b419b213427f3eb8caac2dd41e1f21
[]
no_license
naitabdelaziz/M2
1fcaa366c5993e6a879af49b40d43d32d1c2387b
c88aba0ae384c804c74e136e8c831b25032c4d0a
refs/heads/master
2020-06-11T19:40:05.884042
2014-11-01T11:56:17
2014-11-01T11:56:17
26,049,488
0
1
null
null
null
null
UTF-8
Scilab
false
false
470
sci
InterpolationTriangle.sci
function [Phi1, Phi2, Phi3]=InterpolationTriangle(P1,P2,P3) P(:,1)=P1; P(:,2)=P2; P(:,3)=P3; // positions en X et Y des noeuds 1, 2 et 3 du triangle x1 = P1(1); y1 = P1(2); x2 = P2(1); y2 = P2(2); x3 = P3(1); y3 = P3(2); // matrice pour créer les fonctions d'interpolation B = [1,1,1; x1,x2,x3; y1,y2,y3]; // matrice des fonctions d'interpolation linéaire A = inv(B); Phi1 = A(1,:); Phi2 = A(2,:); Phi3 = A(3,:); endfunction
cfc286fc29acd55b90d6b91dd2f3e823208584ac
449d555969bfd7befe906877abab098c6e63a0e8
/3843/CH8/EX8.2/Ex8_2.sce
7d903f3a18cb40bc8eada9155eb0cc7e157681a4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
684
sce
Ex8_2.sce
// Example 8_2 clc;funcprot(0); // Given data P_1=10;// kPa P_2=4;// MPa T_3=400;// °C h_2=192;// kJ/kg h_3=3214;// kJ/kg s_3=6.7698;// kJ/kg.K // Calculation s_f4=0.6491;// kJ/kg.K s_fg4=7.5019;// kJ/kg.K s_4=s_3;// kJ/kg.K x_4=(s_4-s_f4)/s_fg4;// The quality of steam at state 4 q_B=h_3-h_2;// The heat input in kJ/kg h_f4=192;// kJ/kg h_fg4=2393;// kJ/kg h_4=h_f4+(x_4*h_fg4);// kJ/kg w_T=h_3-h_4;// kJ/kg n_2=w_T/q_B;// The cycle efficiency // From example 8.1 n_1=0.3232;// The power cycle efficiency at P_2=2 MPa Pi=((n_2-n_1)/n_1)*100;// The percentage increase in efficiency printf(" The percentage increase in efficiency is %1.2f percentage.",Pi);
9be654b951daf55782516a525b52c1da3a3babb3
676ffceabdfe022b6381807def2ea401302430ac
/solvers/CompressibleFlowSolver/Tests/CylinderSubsonic_NS_FRDG_LFRDG_GLL_LAGRANGE_3DHOMO1D_MVM.tst
db30ad57715813ffceb7026a27b0b11a8876c838
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
1,268
tst
CylinderSubsonic_NS_FRDG_LFRDG_GLL_LAGRANGE_3DHOMO1D_MVM.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>NS, Subsonic Cylinder, mixed bcs, FRDG advection and LFRDG diffusion, GLL_LAGRANGE</description> <executable>CompressibleFlowSolver</executable> <parameters>CylinderSubsonic_NS_FRDG_LFRDG_GLL_LAGRANGE_3DHOMO1D_MVM.xml</parameters> <files> <file description="Session File">CylinderSubsonic_NS_FRDG_LFRDG_GLL_LAGRANGE_3DHOMO1D_MVM.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="rho" tolerance="1e-12">3.89457</value> <value variable="rhou" tolerance="1e-12">1425.78</value> <value variable="rhov" tolerance="1e-12">17.3563</value> <value variable="rhow" tolerance="1e-12">17.3092</value> <value variable="E" tolerance="1e-12">4.43372e+06</value> </metric> <metric type="Linf" id="2"> <value variable="rho" tolerance="1e-12">0.297688</value> <value variable="rhou" tolerance="1e-12">86.8671</value> <value variable="rhov" tolerance="1e-12"> 15.3684</value> <value variable="rhow" tolerance="1e-12">1.00004</value> <value variable="E" tolerance="1e-12">277513</value> </metric> </metrics> </test>
dc3189c6c4c0888fdb21a04cc13c3f6c57167886
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/bow/bow.20_9.tst
44f6ca1c442f0756d0fd95f0b4c0635e10880411
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
4,994
tst
bow.20_9.tst
20 1:0.03333333333333333 2:1.0 4:0.5 17:0.3333333333333333 40:2.0 51:1.0 62:0.3333333333333333 69:0.25 76:0.3333333333333333 93:0.058823529411764705 114:1.0 142:1.0 158:0.1 170:1.0 259:2.0 298:0.5 339:1.0 395:0.5 506:1.0 1045:1.0 1118:1.0 20 10:0.1111111111111111 17:0.3333333333333333 40:1.0 51:2.0 53:0.3333333333333333 69:0.25 93:0.23529411764705882 114:1.0 444:1.0 506:2.0 718:1.0 1045:3.0 1460:1.0 20 2:1.0 4:0.5 10:0.1111111111111111 17:0.16666666666666666 57:0.5 93:0.058823529411764705 114:1.0 146:1.0 164:0.5 165:1.0 279:1.0 317:1.0 395:0.5 508:1.0 1272:1.0 20 51:1.0 93:0.058823529411764705 175:1.0 467:1.0 497:0.5 506:1.0 761:1.0 1045:1.0 20 1:0.016666666666666666 60:0.08333333333333333 76:0.3333333333333333 252:1.0 259:1.0 298:0.5 392:1.0 1601:1.0 20 2:1.0 10:0.1111111111111111 36:0.6666666666666666 76:0.3333333333333333 587:1.0 692:1.0 1442:1.0 20 9:1.0 95:0.25 128:1.0 192:0.2 193:0.5 264:1.0 404:1.0 647:0.5 692:1.0 20 2:1.0 4:0.5 93:0.058823529411764705 95:0.25 20 1:0.016666666666666666 17:0.16666666666666666 36:0.3333333333333333 45:1.0 48:0.05555555555555555 75:1.0 93:0.058823529411764705 95:0.25 148:0.25 245:1.0 258:0.5 343:0.09090909090909091 568:1.0 587:1.0 773:1.0 1541:1.0 1579:1.0 20 4:0.5 40:1.0 93:0.11764705882352941 95:0.25 148:0.25 156:1.0 243:1.0 247:1.0 343:0.18181818181818182 350:0.5 353:1.0 400:0.14285714285714285 420:1.0 582:1.0 787:1.0 1272:1.0 20 2:1.0 4:0.5 10:0.1111111111111111 17:0.16666666666666666 40:1.0 76:0.3333333333333333 93:0.11764705882352941 95:0.25 983:1.0 1182:1.0 1627:1.0 1628:1.0 20 1:0.03333333333333333 2:1.0 15:0.3333333333333333 60:0.08333333333333333 272:1.0 353:1.0 20 93:0.058823529411764705 234:1.0 235:1.0 298:0.5 343:0.09090909090909091 746:1.0 1421:0.5 1627:1.0 20 4:2.5 17:0.3333333333333333 93:0.058823529411764705 95:0.25 343:0.2727272727272727 353:1.0 368:1.0 405:1.0 420:1.0 444:1.0 512:2.0 717:1.0 900:3.0 1147:1.0 20 2:1.0 93:0.11764705882352941 95:0.5 193:0.5 228:1.0 317:1.0 353:1.0 442:1.0 485:1.0 688:1.0 20 4:0.5 17:0.16666666666666666 148:0.25 479:1.0 1163:1.0 20 1:0.016666666666666666 4:1.0 10:0.2222222222222222 15:0.3333333333333333 17:0.16666666666666666 51:1.0 62:0.3333333333333333 76:0.3333333333333333 93:0.058823529411764705 125:2.0 148:0.25 267:1.0 298:0.5 347:1.0 407:1.0 431:1.0 633:0.25 876:1.0 968:0.3333333333333333 999:1.0 1002:1.0 1005:1.0 1006:1.0 1096:1.0 1255:1.0 1354:1.0 1528:1.0 1733:1.0 20 1:0.016666666666666666 4:0.5 15:0.3333333333333333 17:0.16666666666666666 40:1.0 50:1.0 51:1.0 60:0.08333333333333333 62:0.3333333333333333 69:0.25 93:0.058823529411764705 252:1.0 405:1.0 857:1.0 927:2.0 968:0.3333333333333333 999:1.0 1002:3.0 1006:1.0 1007:1.0 1231:1.0 1449:1.0 1585:1.0 1748:1.0 20 15:0.3333333333333333 60:0.08333333333333333 69:0.25 93:0.058823529411764705 114:1.0 158:0.1 283:1.0 968:0.3333333333333333 969:2.0 1006:1.0 1586:1.0 1681:1.0 20 166:1.0 382:1.0 20 10:0.1111111111111111 17:0.16666666666666666 188:1.0 568:1.0 638:1.0 1528:1.0 1634:1.0 1733:1.0 20 10:0.1111111111111111 40:1.0 93:0.058823529411764705 243:1.0 1005:1.0 20 4:0.5 1002:1.0 1163:1.0 1442:1.0 20 4:0.5 10:0.1111111111111111 17:0.16666666666666666 40:1.0 51:2.0 93:0.058823529411764705 96:0.25 158:0.1 170:1.0 262:1.0 358:1.0 506:2.0 574:1.0 681:0.5 788:1.0 20 40:2.0 51:1.0 69:0.25 76:0.3333333333333333 93:0.058823529411764705 158:0.1 353:1.0 506:1.0 681:0.5 1231:1.0 1233:1.0 1379:1.0 1446:1.0 20 4:0.5 51:1.0 155:1.0 158:0.2 343:0.09090909090909091 470:1.0 620:1.0 1253:1.0 1434:1.0 20 50:1.0 51:1.0 62:0.3333333333333333 69:0.25 76:0.3333333333333333 93:0.11764705882352941 114:1.0 158:0.1 220:1.0 221:1.0 253:0.5 317:1.0 339:1.0 395:0.5 1175:1.0 1189:1.0 1239:1.0 1292:1.0 1442:1.0 20 10:0.1111111111111111 44:0.5 51:1.0 57:0.5 253:0.5 298:0.5 317:1.0 364:1.0 372:0.5 506:1.0 762:1.0 1056:1.0 1681:1.0 1683:1.0 1684:1.0 20 17:0.16666666666666666 36:0.3333333333333333 148:0.25 164:0.5 927:1.0 1002:3.0 1045:1.0 1231:1.0 20 69:0.25 122:1.0 158:0.1 170:1.0 192:0.2 603:1.0 937:1.0 1219:1.0 1674:1.0 20 17:0.16666666666666666 36:0.3333333333333333 44:0.5 148:0.25 958:0.5 1034:1.0 1357:1.0 20 4:0.5 164:0.5 165:1.0 937:1.0 20 36:0.3333333333333333 40:1.0 69:0.25 122:1.0 158:0.1 283:1.0 1050:1.0 1054:1.0 1055:1.0 1231:1.0 20 4:0.5 15:0.3333333333333333 36:0.6666666666666666 69:0.5 93:0.058823529411764705 208:0.3333333333333333 647:0.5 911:1.0 927:1.0 950:1.0 959:1.0 987:1.0 1034:1.0 1544:1.0 20 40:1.0 62:0.3333333333333333 69:0.25 198:0.14285714285714285 209:0.4 479:1.0 917:1.0 918:1.0 953:1.0 1002:1.0 1047:1.0 20 165:1.0 259:1.0 392:1.0 624:1.0 1276:1.0 1455:1.0 20 4:0.5 15:0.3333333333333333 93:0.058823529411764705 148:0.25 164:0.5 165:1.0 927:1.0 1004:1.0 1005:1.0 1379:1.0 20 4:0.5 15:0.3333333333333333 40:2.0 93:0.058823529411764705 148:0.25 162:1.0 339:2.0 451:1.0 506:1.0 911:1.0 927:1.0 971:1.0 1034:1.0 20 4:0.5 36:0.3333333333333333 93:0.058823529411764705 20 36:0.3333333333333333 44:0.5 57:0.5 76:0.3333333333333333 93:0.058823529411764705 164:0.5 165:1.0 445:1.0 974:3.0
80aa1dbd9ce7bc2164c959f167252d275560a94e
449d555969bfd7befe906877abab098c6e63a0e8
/1418/CH27/EX27.19/EX27_19.sce
8e53e072eb44437daa4432a612c76fc46c8a9d6e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
843
sce
EX27_19.sce
//EXAMPLE 27.19 //SHUNT GENERATORS clc; funcprot(0); //Variable Initialisation Van1=240;.........//Voltage of generator A at no load in Volts Va200=220;.............//Voltage of generator A at 200 A in Volts I1=200;.............//Current for first generator in Amperes Van2=245;.........//Voltage of generator B at no load in Volts Va220=220;.............//Voltage of generator B at 150 A in Volts I2=150;.......//Current for second generator in Amperes //Solving for current output of both the generators in Amperes A=[1,1;-((Van1-Va200)/I1),((Van2-Va220)/I2)]; B=[300;(Van2-Van1)]; y=A\B; disp(y(1),"Output current of first generator in Amperes:"); disp(y(2),"Output current of second generator in Amperes:"); Vbus=Van1-((Van1-Va200)/I1*y(1));....//Bus bar voltage in Volts disp(Vbus,"Bus bar voltage in Volts:");
09056f401c71001651b17f73897eaa9008c2960a
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH4/EX4.19/4_19.sce
6f69a8b6c111eaaf936aed9502b03b57c4d8d57e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
237
sce
4_19.sce
clc //initialisation of variables H= -68317.4 //cal S= 16.716 //cal S1= 49.003 //cal S2= 31.211 //cal T= 25 //C //CALCULATIONS H1= 2*H S3= 2*S-(S1+2*S2) G= H1-(T+273.16)*S3 //RESULTS printf (' Gibs free energy= %.1f cal',G)
dad2cd8729ef44b0d7abace067384cad328bdaab
449d555969bfd7befe906877abab098c6e63a0e8
/2240/CH28/EX27.4/EX27_4.sce
15f31e0a95f7088d7dfb29247a14f6a5c9e41390
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
809
sce
EX27_4.sce
// Grob's Basic Electronics 11e // Chapter No. 27 // Example No. 27_4 clc; clear; // If the turns ratio Np:Ns is 3:1, calculate the following: Vs, Vdc, Il, Idiode, PIV for D1, and fout. // Given data Vp = 120; // Primary voltage=120 Vac A = 3/1; // Turns ratio Np:Ns=3:1 B = 1/3; // Turns ratio Ns:Np=1:3 Rl = 100; // Load resistance=100 Ohms fi = 60; // Input frequency=60 Vs = B*Vp; disp (Vs,'The Secondary Voltage in Volts(ac)') Vspk = (Vs*1.414); C = Vspk-0.7; Vdc = 0.318*C; disp (Vdc,'The DC Voltage in Volts') Il = Vdc/Rl; disp (Il,'The Load Current in Amps'); Idiode = Il; disp (Idiode,'The DC Diode Current in Amps') PIV = Vspk; disp (PIV,'The PIV for Diode-1 in Volts') fo =fi; disp (fo,'The Output Frequency in Hertz')
801a034cd41eb5d83a8fec4c4cd13aaf8196c529
449d555969bfd7befe906877abab098c6e63a0e8
/36/DEPENDENCIES/prob9_18data.sci
26dd5f1b2afc2cd4c4bf3ef0bfc807801a4034cf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
111
sci
prob9_18data.sci
//problem 9-18 data //size of the array words=1024; //as given we are using a four module memory organization
2e23e202bfcfd84f8f2fbd8a8ff0860fef78b574
6c7a728e11a427c93b15669517131a79a0703108
/api/pdb_root/install/scripts/test_pdb_api.tst
6f046a5d2b094451db9b323b4f55be6fc87869bd
[]
no_license
ZVlad1980/adm_scripts
0b9fe4ff166213dc649d555c81e8d65b858074e4
9978a098c8140f5722b51e799969b76e2d68b42e
refs/heads/master
2020-03-31T08:45:49.405822
2019-04-30T05:04:03
2019-04-30T05:04:03
152,071,490
1
0
null
null
null
null
UTF-8
Scilab
false
false
266
tst
test_pdb_api.tst
PL/SQL Developer Test script 3.0 12 -- Created on 27.04.2018 by V.ZHURAVOV declare -- Local variables here i integer; begin -- Test statements here dbms_output.put_line( PDB_API.get_status_pdb@"c##pdbroot_tstcdb"( 'ZPDB_NODE' ) ); end; 0 0
87401e5dbe69750a8877654f921068bd47540929
449d555969bfd7befe906877abab098c6e63a0e8
/611/CH3/EX3.11/Chap3_Ex11_R1.sce
e4835b4d4c8b8b1eca2553b1319046a20c417a2c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,628
sce
Chap3_Ex11_R1.sce
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India. //Chapter-3,Example 11,Page 72 //Title:Volume using two paramter and three parameter compressibility factor correlation //================================================================================================================ clear clc //INPUT T=409.41;//temperature of n-octane in degree celsius P=4.98;//pressure in bar Tc=569.4;//critical temperature of n-octane in K Pc=24.97;//critical pressure of n-octane in bar w=0.398;//acentric factor (no unit) R=8.314;//universal gas constant in (Pa m^3)/(mol K) //CALCULATION Tr=(T+273.15)/Tc;//calculation of reduced temperature (no unit) Pr=P/Pc;//calculation of reduced pressure (no unit) z0=0.96;//value of compressibilty factor at tr and pr obtained from Fig.3.11 V1=(z0*R*(T+273.15))/(P*10^5);//calculation of volume in m^3/mol using the two parameter compressibilty factor correlation z1=0.01;//value of compressibilty factor at tr and pr obtained from Fig.3.12 z=z0+(w*z1);//calculation of compressibility factor using Eq.3.64 V2=(z*R*(T+273.15))/(P*10^5);//calculation of volume in m^3/mol using the three parameter compressibility factor correlation //OUTPUT mprintf('\n The volume occupied by n-octane obtained by the two parameter compressibilty factor correlation= %f m^3/mol\n',V1); mprintf('\n The volume occupied by n-octane obtained by the three parameter compressibility factor correlation= %f m^3/mol\n',V2); //===============================================END OF PROGRAM===================================================
0256b249f6f99842797d58ecc61bde7b7fe14cb8
449d555969bfd7befe906877abab098c6e63a0e8
/2258/CH2/EX2.9/2_9.sce
d87a1dcc6f0f49601114b25246b7048edcf47f18
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
316
sce
2_9.sce
clc(); clear; // To calculate the Fermi distribution function // given that E-Ef = kT // fermi function FpE = 1/(1+exp((E-Ef)/kT) // therefore FpE = 1/(1+exp(kT/kT)); // FpE = 1/(1+exp(1)) FpE=1/(1+exp(1)); printf("fermi function is %f",FpE); //the presence of electron at that energy level is not certain
07e5f85f1edc13f7e4d8c69685d34e127160747c
449d555969bfd7befe906877abab098c6e63a0e8
/260/CH6/EX6.4/6_4.sce
bf2edebdf5ebf9fe24d3646b0610dcdca903308f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
326
sce
6_4.sce
//Eg-6_4 //pg-284 clear clc s=[9;10;14;16;12]; n=0; m=0; for i=1:5 if s(i)<=10 then n=n+1; end end for i=1:5 if s(i)<15 then m=m+1; end end prob_10=n/5; prob_15=m/5; disp("probability of getting ash content 10 and 15% are") disp(prob_10) disp(prob_15)
3a629ba9a257a7abed38338b38b9dbe589b34511
3a031f437fdd7426aec9731b31871506b540c723
/DFT Pract 4.sce
acde7c421f7566f6d77e4d076d0b5094033a968f
[]
no_license
mohammedkesury/Digital-Image-Processing
006294df3c05100912ade8f75dcadc59f518cbba
6589dcf0f400a803862fcd2194ff4b008ceb795e
refs/heads/master
2020-04-20T05:20:20.161398
2019-04-09T16:04:04
2019-04-09T16:04:04
168,653,548
0
0
null
null
null
null
UTF-8
Scilab
false
false
365
sce
DFT Pract 4.sce
clc function [m]=dft_mtx(N) W=int(exp(-%i*2*%pi/N)) for k=0:N-1 for n=0:N-1 m(k+1,n+1)=W**(n*k) end end endfunction A=dft_mtx(4) disp(A,"DFT Matrix= ") x=input('Enter x= ') disp(x,"x= ") //DFT Transformation X=A*x*A' disp(X,"2D DFT of x= ") //Inverse DFT Transformation y=(1/16)*(A*X*A') disp(y,"Image= ")
8e1a9564e585f637e317485f97e86cce4b641c0f
449d555969bfd7befe906877abab098c6e63a0e8
/3740/CH7/EX7.3/Ex7_3.sce
41ec9c3a7d3de13d60dc12a78bbed7352d5f009b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,173
sce
Ex7_3.sce
//Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes //Example 7.3 //OS=Windows XP sp3 //Scilab version 5.5.2 clc; clear; //given A=1000e-6;//Cathode area in m^2 Phi=1.25;//Work function of the metal in eV kT_by_e=0.025;//constant term =product of Boltzmann constant with Ambient temperature divided by charge of an electron in SI Units a=1.2e6;//Constant value for pure metals in A m^-2 K^-2 T=300;//Temperature in K e=1.6e-19;//Electronic charge in C Lambda=0.5e-6;//wavelength in m eta=0.25;//Dimensionless Quantum efficiency h=6.6e-34;//Planck's constant in SI Units c=3e8;//Speed of light in air in m/s Deltaf=1;//Bandwidth in Hz iT=a*A*(T^2)*exp(-Phi/kT_by_e);//Thermionic emission current in A mprintf("\n iT = %.1e A",iT);//The answer provided in the textbook varies due to roundingoff Rlambda=eta*e*Lambda/(h*c);//Responsivity of the photomultiplier in A W^-1 mprintf("\n Rlambda = %.1f A/W",Rlambda); Wmin=sqrt(2*iT*e*Deltaf)/Rlambda;//Minimum detectable signal power in presence of dark current iT in W mprintf("\n Wmin = %.1e W",Wmin);//The answer provided in the textbook varies due to roundingoff
b11258134858641f5eb0d70d114d286b05da38f2
449d555969bfd7befe906877abab098c6e63a0e8
/1106/CH3/EX3.21/ex3_21.sce
feaee99c108cdf3fa2c90a6eb8dc4ab6806b80a1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
157
sce
ex3_21.sce
// Example 3.21, page no-147 clear clc R1=10*10^3 R2=1*10^3 R3=1*10^3 Rf=50*10^3 I=1/(R2+R3) Vi1=I*R2 Vo=Vi1*(1+ Rf/R1) printf('Vout= %d V',Vo)
03e644e17d57f8d4ddac0c2a8adddeafded8f0e1
449d555969bfd7befe906877abab098c6e63a0e8
/626/CH11/EX11.12/11_12.sce
06cd452c3ef63d78c0757cc42c0e260cdf24911c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
741
sce
11_12.sce
clear; clc; close; disp("Example 11.12") Tg=2750 //in K Ttg=Tg Tc=300 // coolant bulk temp. in K tw=0.002 //Wall thickness in m kw=43 //thermal conductivity of the wall in W/m.C hg=657 //Gas side film coefficient in W/m^2K hc=26000 //Coolant side film coefficient in W/m^2K eg=0.05 //emissivity of the gas sigma=5.67*10^(-8)//in W/m^2K Taw=Ttg rhf=eg*sigma*Tg^4/1000 disp(rhf,"(a)The radiation heat flux in kW/m^2 :") qw=(Ttg-Tc+(rhf*1000/hg))/((1/hg)+(tw/kw)+(1/hc))/1000 disp(qw,"(b)The total heat flux in kW/m^2:") qc=qw-rhf disp(qc,"(c)The convection heat in kW/m^2:") Twg=Taw-qc*1000/hg disp(Twg,"(d)Wall temp. on the gas side in K:") Twc=Tc+(qw*1000/hc) disp(Twc,"(e)Wall temp. on the coolant side in K:")
d27158ee40b0ca70ad08200f34e86aee167a3171
676ffceabdfe022b6381807def2ea401302430ac
/utilities/FieldConvert/Tests/chan3DH1D_interppointsplane_par.tst
f37cf0d40f305d8409378e9c9e712b652ecdec0d
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
1,200
tst
chan3DH1D_interppointsplane_par.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description> Interp field to a plane of points (also calculate cp and cp0)</description> <executable>FieldConvert</executable> <parameters> -f -e -m interppoints:cp=0,0.5:plane=10,9,0,0,0,1,1,0,1,1,1,0,0,1:fromxml=chan3DH1D.xml:fromfld=chan3DH1D_zVariation.fld chan3DH1D_plane.dat</parameters> <processes>3</processes> <files> <file description="Session File">chan3DH1D.xml</file> <file description="Session File">chan3DH1D_zVariation.fld</file> </files> <metrics> <metric type="L2" id="1"> <value variable="x" tolerance="1e-6"> 0.593171</value> <value variable="y" tolerance="1e-6">0.593171</value> <value variable="z" tolerance="1e-6">0.493007</value> <value variable="u" tolerance="1e-6">1.73509</value> <value variable="v" tolerance="1e-6">0</value> <value variable="w" tolerance="1e-6">0</value> <value variable="p" tolerance="1e-6">0</value> <value variable="Cp" tolerance="1e-6">0</value> <value variable="Cp0" tolerance="1e-6">3.50117</value> </metric> </metrics> </test>
cf8800d4e370d146c557a5aa08fd291a62493465
7c1f9cb43fe4f0583ce300f8d8136f76a38e71a1
/src/test_server_1_a.tst
21b85ce1a0d8b2faac3f353af4a8ccda26b105f7
[ "OML", "BSD-3-Clause", "Zlib", "MIT" ]
permissive
Aloz1/ciyam
4a1123c6a6009f0fbc2a80ac7a81a3b7acb72bf5
424b47fd73fa1f6a1a076f8908ae7086eeeeedc5
refs/heads/master
2021-01-18T03:01:14.018660
2018-01-03T16:39:56
2018-01-03T16:39:56
7,141,120
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,973
tst
test_server_1_a.tst
> version 0.1 > session_list -min 1* session_list <none> <unknown> 0:0 0:0 > encrypt -no_ssl -no_salt for_testing_password Zm9yX3Rlc3RpbmdfcGFzc3dvcmQ= > > > > X > X. > .X > X > X. > .X > XY > XY. > .XY > X.Y. > XY > .XY > XY. > X.Y. > XYZ > XYZ. > .XYZ. > X.Y.Z. > XYZ > XYZ. > .XYZ. > X.Y.Z. > crypto_keys XBT test 1Hri98tpTekszQQTBnKbBrMsecrjik4PX8 02b0dbb9b8c580f2cc7b45aaf10d8353cea7880903e1f07ce996614260c55db4a1 0f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08 > > > > addr is: 1Hri98tpTekszQQTBnKbBrMsecrjik4PX8 > pubkey is 02b0dbb9b8c580f2cc7b45aaf10d8353cea7880903e1f07ce996614260c55db4a1 > privkey is 0f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08 > > abcdefghi > > defghi > > abcdef > > def > > abc<def>ghi > > def > > > ff00000000000000 > > 00000000000000ff > > ff000000 > > 000000ff > > 4080 > > 4100 > > 4000 > > 1 > > ifdef true > > > > > > > > ifdef false > > > 1234567890 > > 31323334353637383930 > > 1234567890 > > c775e7b757ede630cd0aa1113bd102661ab38829ca52a6422ab782862f268646 > utc_to_local AEST "2013-10-05 15:00" 2013-10-06 01:00 AEST > utc_to_local AEST+ "2013-10-05 15:00" 2013-10-06 01:00 AEST > utc_from_local AEST "2013-10-06 01:00" 2013-10-05 15:00 > utc_to_local AEST "2013-10-06 16:00" 2013-10-07 02:00 AEST > utc_to_local AEST+ "2013-10-06 16:00" 2013-10-07 03:00 AEDT > utc_from_local AEST "2013-10-07 03:00" 2013-10-06 17:00 > utc_from_local AEDT "2013-10-07 03:00" 2013-10-06 16:00 > utc_to_local AEST "2014-04-05 15:00" 2014-04-06 01:00 AEST > utc_to_local AEST+ "2014-04-05 15:00" 2014-04-06 02:00 AEDT > utc_from_local AEST "2014-04-06 02:00" 2014-04-05 16:00 > utc_from_local AEDT "2014-04-06 02:00" 2014-04-05 15:00 > utc_to_local AEST "2014-04-05 16:00" 2014-04-06 02:00 AEST > utc_to_local AEST+ "2014-04-05 16:00" 2014-04-06 02:00 AEST > utc_from_local AEST "2014-04-06 02:00" 2014-04-05 16:00 >
3de1ab4f843e251b41a9dbcee8b28dc597b719ca
449d555969bfd7befe906877abab098c6e63a0e8
/275/CH4/EX4.4.80/Ch4_4_80.sce
1525c9ab25f6a4d90f0ed331b72ebac734a92f61
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
255
sce
Ch4_4_80.sce
clc disp("Example 4.80") printf("\n") disp("determine the suitable value of load resistor Rd of JFET") printf("Given\n") //voltage gain Av=10 //transconductance gm=4500*10^-6 //load resistance Rd=Av/gm printf("load resistance \n%f ohm \n",Rd)
6e9c8f55d41e1688947c79776fe0f3ae9f449a12
b0cb69cb87769eb986e96f33a70f973b57c0b020
/Ass2/source_code/test.tst
8bb78b8879feb612a8c4fc1203d9317388cfc9a9
[]
no_license
GiorgosMethe/ELPL-assignment
283d879ec42f21b2d8a9905ce3bd15960799720e
ccec28dd2a11420899f185c2ca7e9a197a47f893
refs/heads/master
2020-07-04T03:13:06.269767
2012-12-11T18:31:05
2012-12-11T18:31:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
670,232
tst
test.tst
(TOP(S(NP(DT No)(, ,)(NP(PRP it)))(VP(VBD was)(ADVP(RB n't))(NP(NNP Black)(NNP Monday)))(. .))) (TOP (POS But) (POS while) (POS the) (POS New) (POS York) (POS Stock) (POS Exchange) (POS did) (POS n't) (POS fall) (POS apart) (POS Friday) (POS as) (POS the) (POS Dow) (POS Jones) (POS Industrial) (POS Average) (POS plunged) (POS 190.58) (POS points) (POS --) (POS most) (POS of) (POS it) (POS in) (POS the) (POS final) (POS hour) (POS --) (POS it) (POS barely) (POS managed) (POS to) (POS stay) (POS this) (POS side) (POS of) (POS chaos) (POS .)) (TOP (POS Some) (POS ``) (POS circuit) (POS breakers) (POS '') (POS installed) (POS after) (POS the) (POS October) (POS 1987) (POS crash) (POS failed) (POS their) (POS first) (POS test) (POS ,) (POS traders) (POS say) (POS ,) (POS unable) (POS to) (POS cool) (POS the) (POS selling) (POS panic) (POS in) (POS both) (POS stocks) (POS and) (POS futures) (POS .)) (TOP (POS The) (POS 49) (POS stock) (POS specialist) (POS firms) (POS on) (POS the) (POS Big) (POS Board) (POS floor) (POS --) (POS the) (POS buyers) (POS and) (POS sellers) (POS of) (POS last) (POS resort) (POS who) (POS were) (POS criticized) (POS after) (POS the) (POS 1987) (POS crash) (POS --) (POS once) (POS again) (POS could) (POS n't) (POS handle) (POS the) (POS selling) (POS pressure) (POS .)) (TOP (POS Big) (POS investment) (POS banks) (POS refused) (POS to) (POS step) (POS up) (POS to) (POS the) (POS plate) (POS to) (POS support) (POS the) (POS beleaguered) (POS floor) (POS traders) (POS by) (POS buying) (POS big) (POS blocks) (POS of) (POS stock) (POS ,) (POS traders) (POS say) (POS .)) (TOP (POS Heavy) (POS selling) (POS of) (POS Standard) (POS &) (POS Poor) (POS 's) (POS 500-stock) (POS index) (POS futures) (POS in) (POS Chicago) (POS relentlessly) (POS beat) (POS stocks) (POS downward) (POS .)) (TOP (POS Seven) (POS Big) (POS Board) (POS stocks) (POS --) (POS UAL) (POS ,) (POS AMR) (POS ,) (POS BankAmerica) (POS ,) (POS Walt) (POS Disney) (POS ,) (POS Capital) (POS Cities\/ABC) (POS ,) (POS Philip) (POS Morris) (POS and) (POS Pacific) (POS Telesis) (POS Group) (POS --) (POS stopped) (POS trading) (POS and) (POS never) (POS resumed) (POS .)) (TOP(S(NP(DT The)(JJ finger-pointing))(VP(VBZ has)(ADJP(RB already)(VBN begun)))(. .))) (TOP(S(`` ``)(NP(DT The)(NN equity)(NN market))(VP(VBD was)(ADJP(JJ illiquid)))(. .))) (TOP (POS Once) (POS again) (POS -LCB-) (POS the) (POS specialists) (POS -RCB-) (POS were) (POS not) (POS able) (POS to) (POS handle) (POS the) (POS imbalances) (POS on) (POS the) (POS floor) (POS of) (POS the) (POS New) (POS York) (POS Stock) (POS Exchange) (POS ,) (POS '') (POS said) (POS Christopher) (POS Pedersen) (POS ,) (POS senior) (POS vice) (POS president) (POS at) (POS Twenty-First) (POS Securities) (POS Corp) (POS .)) (TOP (POS Countered) (POS James) (POS Maguire) (POS ,) (POS chairman) (POS of) (POS specialists) (POS Henderson) (POS Brothers) (POS Inc.) (POS :) (POS ``) (POS It) (POS is) (POS easy) (POS to) (POS say) (POS the) (POS specialist) (POS is) (POS n't) (POS doing) (POS his) (POS job) (POS .)) (TOP (POS When) (POS the) (POS dollar) (POS is) (POS in) (POS a) (POS free-fall) (POS ,) (POS even) (POS central) (POS banks) (POS ca) (POS n't) (POS stop) (POS it) (POS .)) (TOP (POS Speculators) (POS are) (POS calling) (POS for) (POS a) (POS degree) (POS of) (POS liquidity) (POS that) (POS is) (POS not) (POS there) (POS in) (POS the) (POS market) (POS .) (POS '')) (TOP (POS Many) (POS money) (POS managers) (POS and) (POS some) (POS traders) (POS had) (POS already) (POS left) (POS their) (POS offices) (POS early) (POS Friday) (POS afternoon) (POS on) (POS a) (POS warm) (POS autumn) (POS day) (POS --) (POS because) (POS the) (POS stock) (POS market) (POS was) (POS so) (POS quiet) (POS .)) (TOP (POS Then) (POS in) (POS a) (POS lightning) (POS plunge) (POS ,) (POS the) (POS Dow) (POS Jones) (POS industrials) (POS in) (POS barely) (POS an) (POS hour) (POS surrendered) (POS about) (POS a) (POS third) (POS of) (POS their) (POS gains) (POS this) (POS year) (POS ,) (POS chalking) (POS up) (POS a) (POS 190.58-point) (POS ,) (POS or) (POS 6.9) (POS %) (POS ,) (POS loss) (POS on) (POS the) (POS day) (POS in) (POS gargantuan) (POS trading) (POS volume) (POS .)) (TOP(S(NP(ADJP Final-hour)(NN trading))(VP(VBD accelerated)(PP(TO to)(NP(QP(CD 108.1)(CD million))(NNS shares)))(, ,)(NP(DT a)(NN record))(PP(IN for)(NP(DT the)(NNP Big)(NNP Board))))(. .))) (TOP(S(PP(IN At)(NP(NP(DT the)(NN end))(PP(IN of)(NP(DT the)(NN day)))))(, ,)(NP(QP(CD 251.2)(CD million))(NNS shares))(VP(VBD were)(VP(VBN traded)))(. .))) (TOP(S(NP(DT The)(NNP Dow)(NNP Jones)(NNS industrials))(VP(VBN closed)(PP(IN at)(NP(CD 2569.26))))(. .))) (TOP (POS The) (POS Dow) (POS 's) (POS decline) (POS was) (POS second) (POS in) (POS point) (POS terms) (POS only) (POS to) (POS the) (POS 508-point) (POS Black) (POS Monday) (POS crash) (POS that) (POS occurred) (POS Oct.) (POS 19) (POS ,) (POS 1987) (POS .)) (TOP (POS In) (POS percentage) (POS terms) (POS ,) (POS however) (POS ,) (POS the) (POS Dow) (POS 's) (POS dive) (POS was) (POS the) (POS 12th-worst) (POS ever) (POS and) (POS the) (POS sharpest) (POS since) (POS the) (POS market) (POS fell) (POS 156.83) (POS ,) (POS or) (POS 8) (POS %) (POS ,) (POS a) (POS week) (POS after) (POS Black) (POS Monday) (POS .)) (TOP(S(NP(DT The)(NNP Dow))(VP(VBD fell)(NP(CD 22.6)(NN %))(PP(IN on)(NP(NNP Black)(NNP Monday))))(. .))) (TOP (POS Shares) (POS of) (POS UAL) (POS ,) (POS the) (POS parent) (POS of) (POS United) (POS Airlines) (POS ,) (POS were) (POS extremely) (POS active) (POS all) (POS day) (POS Friday) (POS ,) (POS reacting) (POS to) (POS news) (POS and) (POS rumors) (POS about) (POS the) (POS proposed) (POS $) (POS 6.79) (POS billion) (POS buy-out) (POS of) (POS the) (POS airline) (POS by) (POS an) (POS employee-management) (POS group) (POS .)) (TOP (POS Wall) (POS Street) (POS 's) (POS takeover-stock) (POS speculators) (POS ,) (POS or) (POS ``) (POS risk) (POS arbitragers) (POS ,) (POS '') (POS had) (POS placed) (POS unusually) (POS large) (POS bets) (POS that) (POS a) (POS takeover) (POS would) (POS succeed) (POS and) (POS UAL) (POS stock) (POS would) (POS rise) (POS .)) (TOP (POS At) (POS 2:43) (POS p.m.) (POS EDT) (POS ,) (POS came) (POS the) (POS sickening) (POS news) (POS :) (POS The) (POS Big) (POS Board) (POS was) (POS halting) (POS trading) (POS in) (POS UAL) (POS ,) (POS ``) (POS pending) (POS news) (POS .) (POS '')) (TOP (POS On) (POS the) (POS exchange) (POS floor) (POS ,) (POS ``) (POS as) (POS soon) (POS as) (POS UAL) (POS stopped) (POS trading) (POS ,) (POS we) (POS braced) (POS for) (POS a) (POS panic) (POS ,) (POS '') (POS said) (POS one) (POS top) (POS floor) (POS trader) (POS .)) (TOP(S(NP(JJ Several)(NNS traders))(VP(MD could)(VP(VB be)(VP(VBN seen)(S(VP(VBG shaking)(NP(PRP$ their)(NNS heads))(SBAR(WHADVP(WRB when))(S(NP(DT the)(NN news))(VP(VBD flashed))(. .)))))))))) (TOP (POS For) (POS weeks) (POS ,) (POS the) (POS market) (POS had) (POS been) (POS nervous) (POS about) (POS takeovers) (POS ,) (POS after) (POS Campeau) (POS Corp.) (POS 's) (POS cash) (POS crunch) (POS spurred) (POS concern) (POS about) (POS the) (POS prospects) (POS for) (POS future) (POS highly) (POS leveraged) (POS takeovers) (POS .)) (TOP (POS And) (POS 10) (POS minutes) (POS after) (POS the) (POS UAL) (POS trading) (POS halt) (POS came) (POS news) (POS that) (POS the) (POS UAL) (POS group) (POS could) (POS n't) (POS get) (POS financing) (POS for) (POS its) (POS bid) (POS .)) (TOP(S(PP(IN At)(NP(DT this)(NN point)))(, ,)(NP(DT the)(NNP Dow))(VP(VBD was)(PRT(RP down))(PP(IN about)(NP(CD 35)(NNS points))))(. .))) (TOP(S(NP(DT The)(NN market))(VP(VBD crumbled))(. .))) (TOP (POS Arbitragers) (POS could) (POS n't) (POS dump) (POS their) (POS UAL) (POS stock) (POS --) (POS but) (POS they) (POS rid) (POS themselves) (POS of) (POS nearly) (POS every) (POS ``) (POS rumor) (POS '') (POS stock) (POS they) (POS had) (POS .)) (TOP (POS For) (POS example) (POS ,) (POS their) (POS selling) (POS caused) (POS trading) (POS halts) (POS to) (POS be) (POS declared) (POS in) (POS USAir) (POS Group) (POS ,) (POS which) (POS closed) (POS down) (POS 3) (POS 7\/8) (POS to) (POS 41) (POS 1\/2) (POS ,) (POS Delta) (POS Air) (POS Lines) (POS ,) (POS which) (POS fell) (POS 7) (POS 3\/4) (POS to) (POS 69) (POS 1\/4) (POS ,) (POS and) (POS Philips) (POS Industries) (POS ,) (POS which) (POS sank) (POS 3) (POS to) (POS 21) (POS 1\/2) (POS .)) (TOP(S(NP(DT These)(NNS stocks))(VP(ADVP(RB eventually))(VBN reopened))(. .))) (TOP (POS But) (POS as) (POS panic) (POS spread) (POS ,) (POS speculators) (POS began) (POS to) (POS sell) (POS blue-chip) (POS stocks) (POS such) (POS as) (POS Philip) (POS Morris) (POS and) (POS International) (POS Business) (POS Machines) (POS to) (POS offset) (POS their) (POS losses) (POS .)) (TOP (POS When) (POS trading) (POS was) (POS halted) (POS in) (POS Philip) (POS Morris) (POS ,) (POS the) (POS stock) (POS was) (POS trading) (POS at) (POS 41) (POS ,) (POS down) (POS 3) (POS 3\/8) (POS ,) (POS while) (POS IBM) (POS closed) (POS 5) (POS 5\/8) (POS lower) (POS at) (POS 102) (POS .)) (TOP (POS Selling) (POS snowballed) (POS because) (POS of) (POS waves) (POS of) (POS automatic) (POS ``) (POS stop-loss) (POS '') (POS orders) (POS ,) (POS which) (POS are) (POS triggered) (POS by) (POS computer) (POS when) (POS prices) (POS fall) (POS to) (POS certain) (POS levels) (POS .)) (TOP (POS Most) (POS of) (POS the) (POS stock) (POS selling) (POS pressure) (POS came) (POS from) (POS Wall) (POS Street) (POS professionals) (POS ,) (POS including) (POS computer-guided) (POS program) (POS traders) (POS .)) (TOP (POS Traders) (POS said) (POS most) (POS of) (POS their) (POS major) (POS institutional) (POS investors) (POS ,) (POS on) (POS the) (POS other) (POS hand) (POS ,) (POS sat) (POS tight) (POS .)) (TOP (POS Now) (POS ,) (POS at) (POS 3:07) (POS ,) (POS one) (POS of) (POS the) (POS market) (POS 's) (POS post-crash) (POS ``) (POS reforms) (POS '') (POS took) (POS hold) (POS as) (POS the) (POS S&P) (POS 500) (POS futures) (POS contract) (POS had) (POS plunged) (POS 12) (POS points) (POS ,) (POS equivalent) (POS to) (POS around) (POS a) (POS 100-point) (POS drop) (POS in) (POS the) (POS Dow) (POS industrials) (POS .)) (TOP (POS Under) (POS an) (POS agreement) (POS signed) (POS by) (POS the) (POS Big) (POS Board) (POS and) (POS the) (POS Chicago) (POS Mercantile) (POS Exchange) (POS ,) (POS trading) (POS was) (POS temporarily) (POS halted) (POS in) (POS Chicago) (POS .)) (TOP (POS After) (POS the) (POS trading) (POS halt) (POS in) (POS the) (POS S&P) (POS 500) (POS pit) (POS in) (POS Chicago) (POS ,) (POS waves) (POS of) (POS selling) (POS continued) (POS to) (POS hit) (POS stocks) (POS themselves) (POS on) (POS the) (POS Big) (POS Board) (POS ,) (POS and) (POS specialists) (POS continued) (POS to) (POS notch) (POS prices) (POS down) (POS .)) (TOP(S(PP(IN As)(NP(DT a)(NN result)))(, ,)(NP(NP(NP(DT the)(NN link))(PP(IN between)(NP(DT the)(NNS futures))))(CC and)(NN stock)(NNS markets))(VP(VBN ripped)(ADVP(RB apart)))(. .))) (TOP (POS Without) (POS the) (POS guidepost) (POS of) (POS stock-index) (POS futures) (POS --) (POS the) (POS barometer) (POS of) (POS where) (POS traders) (POS think) (POS the) (POS overall) (POS stock) (POS market) (POS is) (POS headed) (POS --) (POS many) (POS traders) (POS were) (POS afraid) (POS to) (POS trust) (POS stock) (POS prices) (POS quoted) (POS on) (POS the) (POS Big) (POS Board) (POS .)) (TOP(S(NP(DT The)(NNS futures))(VP(VB halt)(VP(VBD was)(RB even)(VP(VBD assailed)(PP(IN by)(NP(NP(NNP Big)(NNP Board))(NN floor)(NNS traders))))))(. .))) (TOP(SINV(`` ``)(S(NP(PRP It))(VP(VBN screwed)(NP(NNS things))(PRT(RP up))))(, ,)('' '')(VP(VBD said))(NP(CD one)(JJ major)(NN specialist))(. .))) (TOP (POS This) (POS confusion) (POS effectively) (POS halted) (POS one) (POS form) (POS of) (POS program) (POS trading) (POS ,) (POS stock) (POS index) (POS arbitrage) (POS ,) (POS that) (POS closely) (POS links) (POS the) (POS futures) (POS and) (POS stock) (POS markets) (POS ,) (POS and) (POS has) (POS been) (POS blamed) (POS by) (POS some) (POS for) (POS the) (POS market) (POS 's) (POS big) (POS swings) (POS .)) (TOP (POS -LRB-) (POS In) (POS a) (POS stock-index) (POS arbitrage) (POS sell) (POS program) (POS ,) (POS traders) (POS buy) (POS or) (POS sell) (POS big) (POS baskets) (POS of) (POS stocks) (POS and) (POS offset) (POS the) (POS trade) (POS in) (POS futures) (POS to) (POS lock) (POS in) (POS a) (POS price) (POS difference) (POS .) (POS -RRB-)) (TOP (POS ``) (POS When) (POS the) (POS airline) (POS information) (POS came) (POS through) (POS ,) (POS it) (POS cracked) (POS every) (POS model) (POS we) (POS had) (POS for) (POS the) (POS marketplace) (POS ,) (POS '') (POS said) (POS a) (POS managing) (POS director) (POS at) (POS one) (POS of) (POS the) (POS largest) (POS program-trading) (POS firms) (POS .)) (TOP (POS ``) (POS We) (POS did) (POS n't) (POS even) (POS get) (POS a) (POS chance) (POS to) (POS do) (POS the) (POS programs) (POS we) (POS wanted) (POS to) (POS do) (POS .) (POS '')) (TOP(S(CC But)(NP(NNS stocks))(VP(VBD kept)(VP(VBG falling)))(. .))) (TOP(S(NP(DT The)(NNP Dow)(NNS industrials))(VP(VBD were)(PRT(RP down))(NP(CD 55)(NNS points))(PP(IN at)(NP(NP(CD 3)(NN p.m.))(PP(IN before)(NP(DT the)(JJ futures-trading)(NN halt))))))(. .))) (TOP (POS At) (POS 3:30) (POS p.m.) (POS ,) (POS at) (POS the) (POS end) (POS of) (POS the) (POS ``) (POS cooling) (POS off) (POS '') (POS period) (POS ,) (POS the) (POS average) (POS was) (POS down) (POS 114.76) (POS points) (POS .)) (TOP (POS Meanwhile) (POS ,) (POS during) (POS the) (POS the) (POS S&P) (POS trading) (POS halt) (POS ,) (POS S&P) (POS futures) (POS sell) (POS orders) (POS began) (POS piling) (POS up) (POS ,) (POS while) (POS stocks) (POS in) (POS New) (POS York) (POS kept) (POS falling) (POS sharply) (POS .)) (TOP (POS Big) (POS Board) (POS Chairman) (POS John) (POS J.) (POS Phelan) (POS said) (POS yesterday) (POS the) (POS circuit) (POS breaker) (POS ``) (POS worked) (POS well) (POS mechanically) (POS .)) (TOP (POS I) (POS just) (POS think) (POS it) (POS 's) (POS nonproductive) (POS at) (POS this) (POS point) (POS to) (POS get) (POS into) (POS a) (POS debate) (POS if) (POS index) (POS arbitrage) (POS would) (POS have) (POS helped) (POS or) (POS hurt) (POS things) (POS .) (POS '')) (TOP (POS Under) (POS another) (POS post-crash) (POS system) (POS ,) (POS Big) (POS Board) (POS President) (POS Richard) (POS Grasso) (POS -LRB-) (POS Mr.) (POS Phelan) (POS was) (POS flying) (POS to) (POS Bangkok) (POS as) (POS the) (POS market) (POS was) (POS falling) (POS -RRB-) (POS was) (POS talking) (POS on) (POS an) (POS ``) (POS inter-exchange) (POS hot) (POS line) (POS '') (POS to) (POS the) (POS other) (POS exchanges) (POS ,) (POS the) (POS Securities) (POS and) (POS Exchange) (POS Commission) (POS and) (POS the) (POS Federal) (POS Reserve) (POS Board) (POS .)) (TOP (POS He) (POS camped) (POS out) (POS at) (POS a) (POS high-tech) (POS nerve) (POS center) (POS on) (POS the) (POS floor) (POS of) (POS the) (POS Big) (POS Board) (POS ,) (POS where) (POS he) (POS could) (POS watch) (POS updates) (POS on) (POS prices) (POS and) (POS pending) (POS stock) (POS orders) (POS .)) (TOP (POS At) (POS about) (POS 3:30) (POS p.m.) (POS EDT) (POS ,) (POS S&P) (POS futures) (POS resumed) (POS trading) (POS ,) (POS and) (POS for) (POS a) (POS brief) (POS time) (POS the) (POS futures) (POS and) (POS stock) (POS markets) (POS started) (POS to) (POS come) (POS back) (POS in) (POS line) (POS .)) (TOP(S(NP(NNS Buyers))(VP(VBD stepped)(PRT(RP in))(PP(TO to)(NP(DT the)(NNS futures)(NN pit))))(. .))) (TOP (POS But) (POS the) (POS build-up) (POS of) (POS S&P) (POS futures) (POS sell) (POS orders) (POS weighed) (POS on) (POS the) (POS market) (POS ,) (POS and) (POS the) (POS link) (POS with) (POS stocks) (POS began) (POS to) (POS fray) (POS again) (POS .)) (TOP (POS At) (POS about) (POS 3:45) (POS ,) (POS the) (POS S&P) (POS market) (POS careened) (POS to) (POS still) (POS another) (POS limit) (POS ,) (POS of) (POS 30) (POS points) (POS down) (POS ,) (POS and) (POS trading) (POS was) (POS locked) (POS again) (POS .)) (TOP (POS Futures) (POS traders) (POS say) (POS the) (POS S&P) (POS was) (POS signaling) (POS that) (POS the) (POS Dow) (POS could) (POS fall) (POS as) (POS much) (POS as) (POS 200) (POS points) (POS .)) (TOP (POS During) (POS this) (POS time) (POS ,) (POS small) (POS investors) (POS began) (POS ringing) (POS their) (POS brokers) (POS ,) (POS wondering) (POS whether) (POS another) (POS crash) (POS had) (POS begun) (POS .)) (TOP (POS At) (POS Prudential-Bache) (POS Securities) (POS Inc.) (POS ,) (POS which) (POS is) (POS trying) (POS to) (POS cater) (POS to) (POS small) (POS investors) (POS ,) (POS some) (POS demoralized) (POS brokers) (POS thought) (POS this) (POS would) (POS be) (POS the) (POS final) (POS confidence-crusher) (POS .)) (TOP (POS That) (POS 's) (POS when) (POS George) (POS L.) (POS Ball) (POS ,) (POS chairman) (POS of) (POS the) (POS Prudential) (POS Insurance) (POS Co.) (POS of) (POS America) (POS unit) (POS ,) (POS took) (POS to) (POS the) (POS internal) (POS intercom) (POS system) (POS to) (POS declare) (POS that) (POS the) (POS plunge) (POS was) (POS only) (POS ``) (POS mechanical) (POS .) (POS '')) (TOP (POS ``) (POS I) (POS have) (POS a) (POS hunch) (POS that) (POS this) (POS particular) (POS decline) (POS today) (POS is) (POS something) (POS `) (POS more) (POS ado) (POS about) (POS less) (POS .) (POS ')) (TOP (POS It) (POS would) (POS be) (POS my) (POS inclination) (POS to) (POS advise) (POS clients) (POS not) (POS to) (POS sell) (POS ,) (POS to) (POS look) (POS for) (POS an) (POS opportunity) (POS to) (POS buy) (POS ,) (POS '') (POS Mr.) (POS Ball) (POS told) (POS the) (POS brokers) (POS .)) (TOP (POS At) (POS Merrill) (POS Lynch) (POS &) (POS Co.) (POS ,) (POS the) (POS nation) (POS 's) (POS biggest) (POS brokerage) (POS firm) (POS ,) (POS a) (POS news) (POS release) (POS was) (POS prepared) (POS headlined) (POS ``) (POS Merrill) (POS Lynch) (POS Comments) (POS on) (POS Market) (POS Drop) (POS .) (POS '')) (TOP (POS The) (POS release) (POS cautioned) (POS that) (POS ``) (POS there) (POS are) (POS significant) (POS differences) (POS between) (POS the) (POS current) (POS environment) (POS and) (POS that) (POS of) (POS October) (POS 1987) (POS '') (POS and) (POS that) (POS there) (POS are) (POS still) (POS ``) (POS attractive) (POS investment) (POS opportunities) (POS '') (POS in) (POS the) (POS stock) (POS market) (POS .)) (TOP (POS However) (POS ,) (POS Jeffrey) (POS B.) (POS Lane) (POS ,) (POS president) (POS of) (POS Shearson) (POS Lehman) (POS Hutton) (POS Inc.) (POS ,) (POS said) (POS that) (POS Friday) (POS 's) (POS plunge) (POS is) (POS ``) (POS going) (POS to) (POS set) (POS back) (POS '') (POS relations) (POS with) (POS customers) (POS ,) (POS ``) (POS because) (POS it) (POS reinforces) (POS the) (POS concern) (POS of) (POS volatility) (POS .)) (TOP(S(CC And)(NP(PRP I))(VP(VBP think)(SBAR(S(NP(NP(DT a)(NN lot))(PP(IN of)(NP(NNS people))))(VP(MD will)(NP(NNP(N harp)))(PP(IN on)(NP(NN program)(NN trading)))))))(. .))) (TOP(S(S(NP(PRP It))(VP(VBZ 's)(VP(VBG going)(S(VP(TO to)(VP(VB bring)(NP(DT the)(NN debate))(ADVP(RB right)(RB back))(PP(TO to)(NP(DT the)(NN forefront)))))))))(. .)('' ''))) (TOP (POS As) (POS the) (POS Dow) (POS average) (POS ground) (POS to) (POS its) (POS final) (POS 190.58) (POS loss) (POS Friday) (POS ,) (POS the) (POS S&P) (POS pit) (POS stayed) (POS locked) (POS at) (POS its) (POS 30-point) (POS trading) (POS limit) (POS .)) (TOP (POS Jeffrey) (POS Yass) (POS of) (POS program) (POS trader) (POS Susquehanna) (POS Investment) (POS Group) (POS said) (POS 2,000) (POS S&P) (POS contracts) (POS were) (POS for) (POS sale) (POS on) (POS the) (POS close) (POS ,) (POS the) (POS equivalent) (POS of) (POS $) (POS 330) (POS million) (POS in) (POS stock) (POS .)) (TOP(S(CC But)(NP(EX there))(VP(VBD were)(NP(DT no)(NNS buyers)))(. .))) (TOP (POS While) (POS Friday) (POS 's) (POS debacle) (POS involved) (POS mainly) (POS professional) (POS traders) (POS rather) (POS than) (POS investors) (POS ,) (POS it) (POS left) (POS the) (POS market) (POS vulnerable) (POS to) (POS continued) (POS selling) (POS this) (POS morning) (POS ,) (POS traders) (POS said) (POS .)) (TOP (POS Stock-index) (POS futures) (POS contracts) (POS settled) (POS at) (POS much) (POS lower) (POS prices) (POS than) (POS indexes) (POS of) (POS the) (POS stock) (POS market) (POS itself) (POS .)) (TOP (POS At) (POS those) (POS levels) (POS ,) (POS stocks) (POS are) (POS set) (POS up) (POS to) (POS be) (POS hammered) (POS by) (POS index) (POS arbitragers) (POS ,) (POS who) (POS lock) (POS in) (POS profits) (POS by) (POS buying) (POS futures) (POS when) (POS futures) (POS prices) (POS fall) (POS ,) (POS and) (POS simultaneously) (POS sell) (POS off) (POS stocks) (POS .)) (TOP(S(CC But)(NP(NN nobody))(VP(VBZ knows)(SBAR(WHPP(IN at)(WHNP(WP what)(NN level)))(S(NP(NP(DT the)(NNS futures))(CC and)(NNS stocks))(VP(MD will)(VP(VB open)(NP(NN today)))))))(. .))) (TOP (POS The) (POS de-linkage) (POS between) (POS the) (POS stock) (POS and) (POS futures) (POS markets) (POS Friday) (POS will) (POS undoubtedly) (POS cause) (POS renewed) (POS debate) (POS about) (POS whether) (POS Wall) (POS Street) (POS is) (POS properly) (POS prepared) (POS for) (POS another) (POS crash) (POS situation) (POS .)) (TOP (POS The) (POS Big) (POS Board) (POS 's) (POS Mr.) (POS Grasso) (POS said) (POS ,) (POS ``) (POS Our) (POS systemic) (POS performance) (POS was) (POS good) (POS .) (POS '')) (TOP (POS But) (POS the) (POS exchange) (POS will) (POS ``) (POS look) (POS at) (POS the) (POS performance) (POS of) (POS all) (POS specialists) (POS in) (POS all) (POS stocks) (POS .)) (TOP (POS Obviously) (POS we) (POS 'll) (POS take) (POS a) (POS close) (POS look) (POS at) (POS any) (POS situation) (POS in) (POS which) (POS we) (POS think) (POS the) (POS dealer-community) (POS obligations) (POS were) (POS n't) (POS met) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS -LRB-) (POS See) (POS related) (POS story) (POS :) (POS ``) (POS Fed) (POS Ready) (POS to) (POS Inject) (POS Big) (POS Funds) (POS '') (POS --) (POS WSJ) (POS Oct.) (POS 16) (POS ,) (POS 1989) (POS -RRB-)) (TOP (POS But) (POS specialists) (POS complain) (POS privately) (POS that) (POS just) (POS as) (POS in) (POS the) (POS 1987) (POS crash) (POS ,) (POS the) (POS ``) (POS upstairs) (POS '') (POS firms) (POS --) (POS big) (POS investment) (POS banks) (POS that) (POS support) (POS the) (POS market) (POS by) (POS trading) (POS big) (POS blocks) (POS of) (POS stock) (POS --) (POS stayed) (POS on) (POS the) (POS sidelines) (POS during) (POS Friday) (POS 's) (POS blood-letting) (POS .)) (TOP (POS Mr.) (POS Phelan) (POS said) (POS ,) (POS ``) (POS It) (POS will) (POS take) (POS another) (POS day) (POS or) (POS two) (POS '') (POS to) (POS analyze) (POS who) (POS was) (POS buying) (POS and) (POS selling) (POS Friday) (POS .)) (TOP (POS Concerning) (POS your) (POS Sept.) (POS 21) (POS page-one) (POS article) (POS on) (POS Prince) (POS Charles) (POS and) (POS the) (POS leeches) (POS :) (POS It) (POS 's) (POS a) (POS few) (POS hundred) (POS years) (POS since) (POS England) (POS has) (POS been) (POS a) (POS kingdom) (POS .)) (TOP (POS It) (POS 's) (POS now) (POS the) (POS United) (POS Kingdom) (POS of) (POS Great) (POS Britain) (POS and) (POS Northern) (POS Ireland) (POS ,) (POS comprising) (POS Wales) (POS ,) (POS Northern) (POS Ireland) (POS ,) (POS Scotland) (POS ,) (POS and) (POS ...) (POS oh) (POS yes) (POS ,) (POS England) (POS ,) (POS too) (POS .)) (TOP(S(ADVP(RB Just))(VP(VBD thought)(SBAR(S(NP(PRP you))(VP(MD 'd)(VP(VB like)(S(VP(TO to)(VP(VB know)))))))))(. .))) (TOP(NP(NNP George)(NNP Morton))) (TOP (POS Ports) (POS of) (POS Call) (POS Inc.) (POS reached) (POS agreements) (POS to) (POS sell) (POS its) (POS remaining) (POS seven) (POS aircraft) (POS to) (POS buyers) (POS that) (POS were) (POS n't) (POS disclosed) (POS .)) (TOP (POS The) (POS agreements) (POS bring) (POS to) (POS a) (POS total) (POS of) (POS nine) (POS the) (POS number) (POS of) (POS planes) (POS the) (POS travel) (POS company) (POS has) (POS sold) (POS this) (POS year) (POS as) (POS part) (POS of) (POS a) (POS restructuring) (POS .)) (TOP (POS The) (POS company) (POS said) (POS a) (POS portion) (POS of) (POS the) (POS $) (POS 32) (POS million) (POS realized) (POS from) (POS the) (POS sales) (POS will) (POS be) (POS used) (POS to) (POS repay) (POS its) (POS bank) (POS debt) (POS and) (POS other) (POS obligations) (POS resulting) (POS from) (POS the) (POS currently) (POS suspended) (POS air-charter) (POS operations) (POS .)) (TOP (POS Earlier) (POS the) (POS company) (POS announced) (POS it) (POS would) (POS sell) (POS its) (POS aging) (POS fleet) (POS of) (POS Boeing) (POS Co.) (POS 707s) (POS because) (POS of) (POS increasing) (POS maintenance) (POS costs) (POS .)) (TOP (POS A) (POS consortium) (POS of) (POS private) (POS investors) (POS operating) (POS as) (POS LJH) (POS Funding) (POS Co.) (POS said) (POS it) (POS has) (POS made) (POS a) (POS $) (POS 409) (POS million) (POS cash) (POS bid) (POS for) (POS most) (POS of) (POS L.J.) (POS Hooker) (POS Corp.) (POS 's) (POS real-estate) (POS and) (POS shopping-center) (POS holdings) (POS .)) (TOP (POS The) (POS $) (POS 409) (POS million) (POS bid) (POS includes) (POS the) (POS assumption) (POS of) (POS an) (POS estimated) (POS $) (POS 300) (POS million) (POS in) (POS secured) (POS liabilities) (POS on) (POS those) (POS properties) (POS ,) (POS according) (POS to) (POS those) (POS making) (POS the) (POS bid) (POS .)) (TOP (POS The) (POS group) (POS is) (POS led) (POS by) (POS Jay) (POS Shidler) (POS ,) (POS chief) (POS executive) (POS officer) (POS of) (POS Shidler) (POS Investment) (POS Corp.) (POS in) (POS Honolulu) (POS ,) (POS and) (POS A.) (POS Boyd) (POS Simpson) (POS ,) (POS chief) (POS executive) (POS of) (POS the) (POS Atlanta-based) (POS Simpson) (POS Organization) (POS Inc) (POS .)) (TOP (POS Mr.) (POS Shidler) (POS 's) (POS company) (POS specializes) (POS in) (POS commercial) (POS real-estate) (POS investment) (POS and) (POS claims) (POS to) (POS have) (POS $) (POS 1) (POS billion) (POS in) (POS assets) (POS ;) (POS Mr.) (POS Simpson) (POS is) (POS a) (POS developer) (POS and) (POS a) (POS former) (POS senior) (POS executive) (POS of) (POS L.J.) (POS Hooker) (POS .)) (TOP (POS ``) (POS The) (POS assets) (POS are) (POS good) (POS ,) (POS but) (POS they) (POS require) (POS more) (POS money) (POS and) (POS management) (POS '') (POS than) (POS can) (POS be) (POS provided) (POS in) (POS L.J.) (POS Hooker) (POS 's) (POS current) (POS situation) (POS ,) (POS said) (POS Mr.) (POS Simpson) (POS in) (POS an) (POS interview) (POS .) (POS ``)) (TOP(S(NP(NP(NNP Hooker)(POS 's))(NN philosophy))(VP(VBD was)(S(VP(TO to)(VP(VB build)(CC and)(VP(VB sell))))))(. .))) (TOP(S(S(NP(PRP We))(VP(VBP want)(S(VP(TO to)(VP(VB build)(CC and)(VP(VB hold)))))))(. .)('' ''))) (TOP (POS L.J.) (POS Hooker) (POS ,) (POS based) (POS in) (POS Atlanta) (POS ,) (POS is) (POS operating) (POS with) (POS protection) (POS from) (POS its) (POS creditors) (POS under) (POS Chapter) (POS 11) (POS of) (POS the) (POS U.S.) (POS Bankruptcy) (POS Code) (POS .)) (TOP (POS Its) (POS parent) (POS company) (POS ,) (POS Hooker) (POS Corp.) (POS of) (POS Sydney) (POS ,) (POS Australia) (POS ,) (POS is) (POS currently) (POS being) (POS managed) (POS by) (POS a) (POS court-appointed) (POS provisional) (POS liquidator) (POS .)) (TOP (POS Sanford) (POS Sigoloff) (POS ,) (POS chief) (POS executive) (POS of) (POS L.J.) (POS Hooker) (POS ,) (POS said) (POS yesterday) (POS in) (POS a) (POS statement) (POS that) (POS he) (POS has) (POS not) (POS yet) (POS seen) (POS the) (POS bid) (POS but) (POS that) (POS he) (POS would) (POS review) (POS it) (POS and) (POS bring) (POS it) (POS to) (POS the) (POS attention) (POS of) (POS the) (POS creditors) (POS committee) (POS .)) (TOP (POS The) (POS $) (POS 409) (POS million) (POS bid) (POS is) (POS estimated) (POS by) (POS Mr.) (POS Simpson) (POS as) (POS representing) (POS 75) (POS %) (POS of) (POS the) (POS value) (POS of) (POS all) (POS Hooker) (POS real-estate) (POS holdings) (POS in) (POS the) (POS U.S.) (POS .)) (TOP (POS Not) (POS included) (POS in) (POS the) (POS bid) (POS are) (POS Bonwit) (POS Teller) (POS or) (POS B.) (POS Altman) (POS &) (POS Co.) (POS ,) (POS L.J.) (POS Hooker) (POS 's) (POS department-store) (POS chains) (POS .)) (TOP (POS The) (POS offer) (POS covers) (POS the) (POS massive) (POS 1.8) (POS million-square-foot) (POS Forest) (POS Fair) (POS Mall) (POS in) (POS Cincinnati) (POS ,) (POS the) (POS 800,000) (POS square-foot) (POS Richland) (POS Fashion) (POS Mall) (POS in) (POS Columbia) (POS ,) (POS S.C.) (POS ,) (POS and) (POS the) (POS 700,000) (POS square-foot) (POS Thornton) (POS Town) (POS Center) (POS mall) (POS in) (POS Thornton) (POS ,) (POS Colo) (POS .)) (TOP (POS The) (POS Thornton) (POS mall) (POS opened) (POS Sept.) (POS 19) (POS with) (POS a) (POS Bigg) (POS 's) (POS hypermarket) (POS as) (POS its) (POS anchor) (POS ;) (POS the) (POS Columbia) (POS mall) (POS is) (POS expected) (POS to) (POS open) (POS Nov.) (POS 15) (POS .)) (TOP (POS Other) (POS Hooker) (POS properties) (POS included) (POS are) (POS a) (POS 20-story) (POS office) (POS tower) (POS in) (POS midtown) (POS Atlanta) (POS ,) (POS expected) (POS to) (POS be) (POS completed) (POS next) (POS February) (POS ;) (POS vacant) (POS land) (POS sites) (POS in) (POS Florida) (POS and) (POS Ohio) (POS ;) (POS L.J.) (POS Hooker) (POS International) (POS ,) (POS the) (POS commercial) (POS real-estate) (POS brokerage) (POS company) (POS that) (POS once) (POS did) (POS business) (POS as) (POS Merrill) (POS Lynch) (POS Commercial) (POS Real) (POS Estate) (POS ,) (POS plus) (POS other) (POS shopping) (POS centers) (POS .)) (TOP (POS The) (POS consortium) (POS was) (POS put) (POS together) (POS by) (POS Hoare) (POS Govett) (POS ,) (POS the) (POS London-based) (POS investment) (POS banking) (POS company) (POS that) (POS is) (POS a) (POS subsidiary) (POS of) (POS Security) (POS Pacific) (POS Corp) (POS .)) (TOP (POS ``) (POS We) (POS do) (POS n't) (POS anticipate) (POS any) (POS problems) (POS in) (POS raising) (POS the) (POS funding) (POS for) (POS the) (POS bid) (POS ,) (POS '') (POS said) (POS Allan) (POS Campbell) (POS ,) (POS the) (POS head) (POS of) (POS mergers) (POS and) (POS acquisitions) (POS at) (POS Hoare) (POS Govett) (POS ,) (POS in) (POS an) (POS interview) (POS .)) (TOP(S(NP(NNP Hoare)(NNP Govett))(VP(VBZ is)(VP(VBG acting)(PP(IN as)(NP(NP(DT the)(NN consortium)(POS 's))(NN investment)(NNS bankers)))))(. .))) (TOP (POS According) (POS to) (POS people) (POS familiar) (POS with) (POS the) (POS consortium) (POS ,) (POS the) (POS bid) (POS was) (POS code-named) (POS Project) (POS Klute) (POS ,) (POS a) (POS reference) (POS to) (POS the) (POS film) (POS ``) (POS Klute) (POS '') (POS in) (POS which) (POS a) (POS prostitute) (POS played) (POS by) (POS actress) (POS Jane) (POS Fonda) (POS is) (POS saved) (POS from) (POS a) (POS psychotic) (POS businessman) (POS by) (POS a) (POS police) (POS officer) (POS named) (POS John) (POS Klute) (POS .)) (TOP (POS L.J.) (POS Hooker) (POS was) (POS a) (POS small) (POS home-building) (POS company) (POS based) (POS in) (POS Atlanta) (POS in) (POS 1979) (POS when) (POS Mr.) (POS Simpson) (POS was) (POS hired) (POS to) (POS push) (POS it) (POS into) (POS commercial) (POS development) (POS .)) (TOP (POS The) (POS company) (POS grew) (POS modestly) (POS until) (POS 1986) (POS ,) (POS when) (POS a) (POS majority) (POS position) (POS in) (POS Hooker) (POS Corp.) (POS was) (POS acquired) (POS by) (POS Australian) (POS developer) (POS George) (POS Herscu) (POS ,) (POS currently) (POS Hooker) (POS 's) (POS chairman) (POS .)) (TOP (POS Mr.) (POS Herscu) (POS proceeded) (POS to) (POS launch) (POS an) (POS ambitious) (POS ,) (POS but) (POS ill-fated) (POS ,) (POS $) (POS 1) (POS billion) (POS acquisition) (POS binge) (POS that) (POS included) (POS Bonwit) (POS Teller) (POS and) (POS B.) (POS Altman) (POS &) (POS Co.) (POS ,) (POS as) (POS well) (POS as) (POS majority) (POS positions) (POS in) (POS Merksamer) (POS Jewelers) (POS ,) (POS a) (POS Sacramento) (POS chain) (POS ;) (POS Sakowitz) (POS Inc.) (POS ,) (POS the) (POS Houston-based) (POS retailer) (POS ,) (POS and) (POS Parisian) (POS Inc.) (POS ,) (POS the) (POS Southeast) (POS department-store) (POS chain) (POS .)) (TOP (POS Eventually) (POS Mr.) (POS Simpson) (POS and) (POS Mr.) (POS Herscu) (POS had) (POS a) (POS falling) (POS out) (POS over) (POS the) (POS direction) (POS of) (POS the) (POS company) (POS ,) (POS and) (POS Mr.) (POS Simpson) (POS said) (POS he) (POS resigned) (POS in) (POS 1988) (POS .)) (TOP (POS Since) (POS then) (POS ,) (POS Hooker) (POS Corp.) (POS has) (POS sold) (POS its) (POS interest) (POS in) (POS the) (POS Parisian) (POS chain) (POS back) (POS to) (POS Parisian) (POS 's) (POS management) (POS and) (POS is) (POS currently) (POS attempting) (POS to) (POS sell) (POS the) (POS B.) (POS Altman) (POS &) (POS Co.) (POS chain) (POS .)) (TOP (POS In) (POS addition) (POS ,) (POS Robert) (POS Sakowitz) (POS ,) (POS chief) (POS executive) (POS of) (POS the) (POS Sakowitz) (POS chain) (POS ,) (POS is) (POS seeking) (POS funds) (POS to) (POS buy) (POS out) (POS the) (POS Hooker) (POS interest) (POS in) (POS his) (POS company) (POS .)) (TOP(S(NP(DT The)(NNP Merksamer)(NN chain))(VP(VBZ is)(RB currently)(VP(VBG being)(VP(VBN offered)(PP(IN for)(NP(NP(NN sale))(PP(IN by)(NP(NNP First)(NNP Boston)(NNP Corp))))))))(. .))) (TOP (POS Reached) (POS in) (POS Honolulu) (POS ,) (POS Mr.) (POS Shidler) (POS said) (POS that) (POS he) (POS believes) (POS the) (POS various) (POS Hooker) (POS malls) (POS can) (POS become) (POS profitable) (POS with) (POS new) (POS management) (POS .)) (TOP (POS ``) (POS These) (POS are) (POS n't) (POS mature) (POS assets) (POS ,) (POS but) (POS they) (POS have) (POS the) (POS potential) (POS to) (POS be) (POS so) (POS ,) (POS '') (POS said) (POS Mr.) (POS Shidler) (POS .)) (TOP (POS ``) (POS Managed) (POS properly) (POS ,) (POS and) (POS with) (POS a) (POS long-term) (POS outlook) (POS ,) (POS these) (POS can) (POS become) (POS investment-grade) (POS quality) (POS properties) (POS .)) (TOP (POS Canadian) (POS steel-ingot) (POS production) (POS totaled) (POS 291,890) (POS metric) (POS tons) (POS in) (POS the) (POS week) (POS ended) (POS Oct.) (POS 7) (POS ,) (POS up) (POS 14.8) (POS %) (POS from) (POS the) (POS preceding) (POS week) (POS 's) (POS total) (POS of) (POS 254,280) (POS tons) (POS ,) (POS Statistics) (POS Canada) (POS ,) (POS a) (POS federal) (POS agency) (POS ,) (POS said) (POS .)) (TOP(S(NP(DT The)(NN week)(POS 's))(VP(VBP total)(VP(VBD was)(PRT(RP up))(NP(NP(CD 6.2)(NN %))(PP(IN from)(NP(CD 274,963)(NNS tons))))(ADVP(NP(DT a)(NN year))(RBR earlier))))(. .))) (TOP (POS The) (POS year-to-date) (POS total) (POS was) (POS 12,006,883) (POS tons) (POS ,) (POS up) (POS 7.8) (POS %) (POS from) (POS 11,141,711) (POS tons) (POS a) (POS year) (POS earlier) (POS .)) (TOP (POS The) (POS Treasury) (POS plans) (POS to) (POS raise) (POS $) (POS 175) (POS million) (POS in) (POS new) (POS cash) (POS Thursday) (POS by) (POS selling) (POS about) (POS $) (POS 9.75) (POS billion) (POS of) (POS 52-week) (POS bills) (POS and) (POS redeeming) (POS $) (POS 9.58) (POS billion) (POS of) (POS maturing) (POS bills) (POS .)) (TOP(S(NP(DT The)(NNS bills))(VP(MD will)(VP(VB be)(VP(VBN dated)(NP(NNP Oct.)(CD 26))(CC and)(VP(MD will)(VP(VB mature)(NP(NP(NNP Oct.)(CD 25))(, ,)(CD 1990)))))))(. .))) (TOP(S(NP(PRP They))(VP(MD will)(VP(VB be)(ADJP(JJ available)(PP(IN in)(NP(NP(JJ minimum)(NNS denominations))(PP(IN of)(NP($ $)(CD 10,000))))))))(. .))) (TOP (POS Bids) (POS must) (POS be) (POS received) (POS by) (POS 1) (POS p.m.) (POS EDT) (POS Thursday) (POS at) (POS the) (POS Treasury) (POS or) (POS at) (POS Federal) (POS Reserve) (POS banks) (POS or) (POS branches) (POS .)) (TOP (POS As) (POS small) (POS investors) (POS peppered) (POS their) (POS mutual) (POS funds) (POS with) (POS phone) (POS calls) (POS over) (POS the) (POS weekend) (POS ,) (POS big) (POS fund) (POS managers) (POS said) (POS they) (POS have) (POS a) (POS strong) (POS defense) (POS against) (POS any) (POS wave) (POS of) (POS withdrawals) (POS :) (POS cash) (POS .)) (TOP (POS Unlike) (POS the) (POS weekend) (POS before) (POS Black) (POS Monday) (POS ,) (POS the) (POS funds) (POS were) (POS n't) (POS swamped) (POS with) (POS heavy) (POS withdrawal) (POS requests) (POS .)) (TOP (POS And) (POS many) (POS fund) (POS managers) (POS have) (POS built) (POS up) (POS cash) (POS levels) (POS and) (POS say) (POS they) (POS will) (POS be) (POS buying) (POS stock) (POS this) (POS week) (POS .)) (TOP (POS At) (POS Fidelity) (POS Investments) (POS ,) (POS the) (POS nation) (POS 's) (POS largest) (POS fund) (POS company) (POS ,) (POS telephone) (POS volume) (POS was) (POS up) (POS sharply) (POS ,) (POS but) (POS it) (POS was) (POS still) (POS at) (POS just) (POS half) (POS the) (POS level) (POS of) (POS the) (POS weekend) (POS preceding) (POS Black) (POS Monday) (POS in) (POS 1987) (POS .)) (TOP (POS The) (POS Boston) (POS firm) (POS said) (POS stock-fund) (POS redemptions) (POS were) (POS running) (POS at) (POS less) (POS than) (POS one-third) (POS the) (POS level) (POS two) (POS years) (POS ago) (POS .)) (TOP (POS As) (POS of) (POS yesterday) (POS afternoon) (POS ,) (POS the) (POS redemptions) (POS represented) (POS less) (POS than) (POS 15) (POS %) (POS of) (POS the) (POS total) (POS cash) (POS position) (POS of) (POS about) (POS $) (POS 2) (POS billion) (POS of) (POS Fidelity) (POS 's) (POS stock) (POS funds) (POS .)) (TOP (POS ``) (POS Two) (POS years) (POS ago) (POS there) (POS were) (POS massive) (POS redemption) (POS levels) (POS over) (POS the) (POS weekend) (POS and) (POS a) (POS lot) (POS of) (POS fear) (POS around) (POS ,) (POS '') (POS said) (POS C.) (POS Bruce) (POS Johnstone) (POS ,) (POS who) (POS runs) (POS Fidelity) (POS Investments) (POS ') (POS $) (POS 5) (POS billion) (POS Equity-Income) (POS Fund) (POS .)) (TOP(S(`` ``)(NP(DT This))(VP(VBZ feels)(ADJP(JJR more)(PP(IN like)(NP(DT a)(JJ one-shot)(NN deal)))))(. .))) (TOP(S(S(NP(NNS People))(VP(VBP are)(ADJP(RB n't)(VBG panicking))))(. .)('' ''))) (TOP(S(NP(DT The)(NN test))(VP(MD may)(VP(VB come)(NP(NN today))))(. .))) (TOP(S(NP(NP(NNP Friday)(POS 's))(NN stock)(NN market)(NN sell-off))(VP(VBD came)(ADJP(RB too)(JJ late))(PP(IN for)(NP(NP(JJ many)(NNS investors))(PP(TO to)(NP(NN act))))))(. .))) (TOP (POS Some) (POS shareholders) (POS have) (POS held) (POS off) (POS until) (POS today) (POS because) (POS any) (POS fund) (POS exchanges) (POS made) (POS after) (POS Friday) (POS 's) (POS close) (POS would) (POS take) (POS place) (POS at) (POS today) (POS 's) (POS closing) (POS prices) (POS .)) (TOP (POS Stock) (POS fund) (POS redemptions) (POS during) (POS the) (POS 1987) (POS debacle) (POS did) (POS n't) (POS begin) (POS to) (POS snowball) (POS until) (POS after) (POS the) (POS market) (POS opened) (POS on) (POS Black) (POS Monday) (POS .)) (TOP(S(CC But)(NP(NN fund)(NNS managers))(VP(VBP say)(SBAR(S(NP(PRP they))(VP(VBP 're)(ADJP(JJ ready))))))(. .))) (TOP (POS Many) (POS have) (POS raised) (POS cash) (POS levels) (POS ,) (POS which) (POS act) (POS as) (POS a) (POS buffer) (POS against) (POS steep) (POS market) (POS declines) (POS .)) (TOP (POS Mario) (POS Gabelli) (POS ,) (POS for) (POS instance) (POS ,) (POS holds) (POS cash) (POS positions) (POS well) (POS above) (POS 20) (POS %) (POS in) (POS several) (POS of) (POS his) (POS funds) (POS .)) (TOP (POS Windsor) (POS Fund) (POS 's) (POS John) (POS Neff) (POS and) (POS Mutual) (POS Series) (POS ') (POS Michael) (POS Price) (POS said) (POS they) (POS had) (POS raised) (POS their) (POS cash) (POS levels) (POS to) (POS more) (POS than) (POS 20) (POS %) (POS and) (POS 30) (POS %) (POS ,) (POS respectively) (POS ,) (POS this) (POS year) (POS .)) (TOP (POS Even) (POS Peter) (POS Lynch) (POS ,) (POS manager) (POS of) (POS Fidelity) (POS 's) (POS $) (POS 12.7) (POS billion) (POS Magellan) (POS Fund) (POS ,) (POS the) (POS nation) (POS 's) (POS largest) (POS stock) (POS fund) (POS ,) (POS built) (POS up) (POS cash) (POS to) (POS 7) (POS %) (POS or) (POS $) (POS 850) (POS million) (POS .)) (TOP (POS One) (POS reason) (POS is) (POS that) (POS after) (POS two) (POS years) (POS of) (POS monthly) (POS net) (POS redemptions) (POS ,) (POS the) (POS fund) (POS posted) (POS net) (POS inflows) (POS of) (POS money) (POS from) (POS investors) (POS in) (POS August) (POS and) (POS September) (POS .)) (TOP (POS ``) (POS I) (POS 've) (POS let) (POS the) (POS money) (POS build) (POS up) (POS ,) (POS '') (POS Mr.) (POS Lynch) (POS said) (POS ,) (POS who) (POS added) (POS that) (POS he) (POS has) (POS had) (POS trouble) (POS finding) (POS stocks) (POS he) (POS likes) (POS .)) (TOP(S(NP(QP(RB Not)(PDT all))(NNS funds))(VP(VBP have)(VP(VBD raised)(NP(NN cash)(NNS levels))(, ,)(PP(IN of)(NP(NN course)))))(. .))) (TOP (POS As) (POS a) (POS group) (POS ,) (POS stock) (POS funds) (POS held) (POS 10.2) (POS %) (POS of) (POS assets) (POS in) (POS cash) (POS as) (POS of) (POS August) (POS ,) (POS the) (POS latest) (POS figures) (POS available) (POS from) (POS the) (POS Investment) (POS Company) (POS Institute) (POS .)) (TOP (POS That) (POS was) (POS modestly) (POS higher) (POS than) (POS the) (POS 8.8) (POS %) (POS and) (POS 9.2) (POS %) (POS levels) (POS in) (POS August) (POS and) (POS September) (POS of) (POS 1987) (POS .)) (TOP (POS Also) (POS ,) (POS persistent) (POS redemptions) (POS would) (POS force) (POS some) (POS fund) (POS managers) (POS to) (POS dump) (POS stocks) (POS to) (POS raise) (POS cash) (POS .)) (TOP (POS But) (POS a) (POS strong) (POS level) (POS of) (POS investor) (POS withdrawals) (POS is) (POS much) (POS more) (POS unlikely) (POS this) (POS time) (POS around) (POS ,) (POS fund) (POS managers) (POS said) (POS .)) (TOP (POS A) (POS major) (POS reason) (POS is) (POS that) (POS investors) (POS already) (POS have) (POS sharply) (POS scaled) (POS back) (POS their) (POS purchases) (POS of) (POS stock) (POS funds) (POS since) (POS Black) (POS Monday) (POS .)) (TOP (POS Stock-fund) (POS sales) (POS have) (POS rebounded) (POS in) (POS recent) (POS months) (POS ,) (POS but) (POS monthly) (POS net) (POS purchases) (POS are) (POS still) (POS running) (POS at) (POS less) (POS than) (POS half) (POS 1987) (POS levels) (POS .)) (TOP (POS ``) (POS There) (POS 's) (POS not) (POS nearly) (POS as) (POS much) (POS froth) (POS ,) (POS '') (POS said) (POS John) (POS Bogle) (POS ,) (POS chairman) (POS of) (POS Vanguard) (POS Group) (POS Inc.) (POS ,) (POS a) (POS big) (POS Valley) (POS Forge) (POS ,) (POS Pa.) (POS ,) (POS fund) (POS company) (POS .)) (TOP(S(NP(JJ Many)(NN fund)(NNS managers))(VP(VBP argue)(SBAR(IN that)(S(ADVP(RB now))(VP(VBZ 's)(NP(DT the)(NN time))(S(VP(TO to)(VP(VB buy)))))(. .)))))) (TOP (POS Vincent) (POS Bajakian) (POS ,) (POS manager) (POS of) (POS the) (POS $) (POS 1.8) (POS billion) (POS Wellington) (POS Fund) (POS ,) (POS added) (POS to) (POS his) (POS positions) (POS in) (POS Bristol-Myers) (POS Squibb) (POS ,) (POS Woolworth) (POS and) (POS Dun) (POS &) (POS Bradstreet) (POS Friday) (POS .)) (TOP (POS And) (POS today) (POS he) (POS 'll) (POS be) (POS looking) (POS to) (POS buy) (POS drug) (POS stocks) (POS like) (POS Eli) (POS Lilly) (POS ,) (POS Pfizer) (POS and) (POS American) (POS Home) (POS Products) (POS whose) (POS dividend) (POS yields) (POS have) (POS been) (POS bolstered) (POS by) (POS stock) (POS declines) (POS .)) (TOP (POS Fidelity) (POS 's) (POS Mr.) (POS Lynch) (POS ,) (POS for) (POS his) (POS part) (POS ,) (POS snapped) (POS up) (POS Southern) (POS Co.) (POS shares) (POS Friday) (POS after) (POS the) (POS stock) (POS got) (POS hammered) (POS .)) (TOP (POS If) (POS the) (POS market) (POS drops) (POS further) (POS today) (POS ,) (POS he) (POS said) (POS he) (POS 'll) (POS be) (POS buying) (POS blue) (POS chips) (POS such) (POS as) (POS Bristol-Myers) (POS and) (POS Kellogg) (POS .)) (TOP (POS ``) (POS If) (POS they) (POS croak) (POS stocks) (POS like) (POS that) (POS ,) (POS '') (POS he) (POS said) (POS ,) (POS it) (POS presents) (POS an) (POS opportunity) (POS that) (POS is) (POS ``) (POS the) (POS kind) (POS of) (POS thing) (POS you) (POS dream) (POS about) (POS .) (POS '')) (TOP (POS Major) (POS mutual-fund) (POS groups) (POS said) (POS phone) (POS calls) (POS were) (POS arriving) (POS at) (POS twice) (POS the) (POS normal) (POS weekend) (POS pace) (POS yesterday) (POS .)) (TOP(S(CC But)(NP(JJS most)(NNS investors))(VP(VBD were)(S(VP(VBG seeking)(NP(NP(NN share)(NNS prices))(CC and)(JJ other)(NN information)))))(. .))) (TOP(S(NP(NN Trading)(NN volume))(VP(VBD was)(RB only)(ADJP(ADJP(RB modestly)(JJR higher))(IN than)(JJ normal)))(. .))) (TOP(S(ADVP(RB Still))(, ,)(NP(NN fund)(NNS groups))(VP(VBP are)(RB n't)(VP(VBG taking)(NP(DT any)(NNS chances))))(. .))) (TOP (POS They) (POS hope) (POS to) (POS avoid) (POS the) (POS jammed) (POS phone) (POS lines) (POS and) (POS other) (POS snags) (POS that) (POS infuriated) (POS some) (POS fund) (POS investors) (POS in) (POS October) (POS 1987) (POS .)) (TOP(S(NP(NP(NNP Fidelity))(PP(IN on)(NP(NNP Saturday))))(VP(VBD opened)(NP(PRP$ its)(CD 54)(ADJP walk-in)(NN investor)(NNS centers))(PP(IN across)(NP(DT the)(NN country))))(. .))) (TOP(S(NP(DT The)(NNS centers))(ADVP(RB normally))(VP(VBP are)(VP(VBN closed)(PP(IN through)(NP(DT the)(NN weekend)))))(. .))) (TOP (POS In) (POS addition) (POS ,) (POS East) (POS Coast) (POS centers) (POS will) (POS open) (POS at) (POS 7:30) (POS EDT) (POS this) (POS morning) (POS ,) (POS instead) (POS of) (POS the) (POS normal) (POS 8:30) (POS .)) (TOP (POS T.) (POS Rowe) (POS Price) (POS Associates) (POS Inc.) (POS increased) (POS its) (POS staff) (POS of) (POS phone) (POS representatives) (POS to) (POS handle) (POS investor) (POS requests) (POS .)) (TOP (POS The) (POS Baltimore-based) (POS group) (POS noted) (POS that) (POS some) (POS investors) (POS moved) (POS money) (POS from) (POS stock) (POS funds) (POS to) (POS money-market) (POS funds) (POS .)) (TOP (POS But) (POS most) (POS investors) (POS seemed) (POS to) (POS be) (POS ``) (POS in) (POS an) (POS information) (POS mode) (POS rather) (POS than) (POS in) (POS a) (POS transaction) (POS mode) (POS ,) (POS '') (POS said) (POS Steven) (POS Norwitz) (POS ,) (POS a) (POS vice) (POS president) (POS .)) (TOP (POS And) (POS Vanguard) (POS ,) (POS among) (POS other) (POS groups) (POS ,) (POS said) (POS it) (POS was) (POS adding) (POS more) (POS phone) (POS representatives) (POS today) (POS to) (POS help) (POS investors) (POS get) (POS through) (POS .)) (TOP (POS In) (POS an) (POS unusual) (POS move) (POS ,) (POS several) (POS funds) (POS moved) (POS to) (POS calm) (POS investors) (POS with) (POS recordings) (POS on) (POS their) (POS toll-free) (POS phone) (POS lines) (POS .)) (TOP (POS ``) (POS We) (POS view) (POS -LCB-) (POS Friday) (POS 's) (POS -RCB-) (POS market) (POS decline) (POS as) (POS offering) (POS us) (POS a) (POS buying) (POS opportunity) (POS as) (POS long-term) (POS investors) (POS ,) (POS '') (POS a) (POS recording) (POS at) (POS Gabelli) (POS &) (POS Co.) (POS funds) (POS said) (POS over) (POS the) (POS weekend) (POS .)) (TOP(S(NP(DT The)(NNP(N Janus))(NNP Group))(VP(VBD had)(NP(DT a)(JJ similar)(NN recording))(PP(IN for)(NP(NNS investors))))(. .))) (TOP(S(S(NP(JJ Several)(NN fund)(NNS managers))(VP(VB expect)(NP(DT a)(JJ rough)(NN market))))(NP(NP(DT this)(NN morning))(PP(IN before)(NP(NNS prices))))(VP(VB stabilize))(. .))) (TOP (POS Some) (POS early) (POS selling) (POS is) (POS likely) (POS to) (POS stem) (POS from) (POS investors) (POS and) (POS portfolio) (POS managers) (POS who) (POS want) (POS to) (POS lock) (POS in) (POS this) (POS year) (POS 's) (POS fat) (POS profits) (POS .)) (TOP (POS Stock) (POS funds) (POS have) (POS averaged) (POS a) (POS staggering) (POS gain) (POS of) (POS 25) (POS %) (POS through) (POS September) (POS ,) (POS according) (POS to) (POS Lipper) (POS Analytical) (POS Services) (POS Inc) (POS .)) (TOP (POS Elaine) (POS Garzarelli) (POS ,) (POS who) (POS runs) (POS Shearson) (POS Lehman) (POS Hutton) (POS Inc.) (POS 's) (POS $) (POS 335) (POS million) (POS Sector) (POS Analysis) (POS Portfolio) (POS ,) (POS predicts) (POS the) (POS market) (POS will) (POS open) (POS down) (POS at) (POS least) (POS 50) (POS points) (POS on) (POS technical) (POS factors) (POS and) (POS ``) (POS some) (POS panic) (POS selling) (POS .) (POS '')) (TOP (POS But) (POS she) (POS expects) (POS prices) (POS to) (POS rebound) (POS soon) (POS and) (POS is) (POS telling) (POS investors) (POS she) (POS expects) (POS the) (POS stock) (POS market) (POS wo) (POS n't) (POS decline) (POS more) (POS than) (POS 10) (POS %) (POS to) (POS 15) (POS %) (POS from) (POS recent) (POS highs) (POS .)) (TOP(S(`` ``)(NP(DT This)(VP(VBZ is)(ADVP(RB not))(NP(DT a)(JJ major)(NN crash)))(, ,))('' '')(NP(PRP she))(VP(VBD said))(. .))) (TOP (POS Nevertheless) (POS ,) (POS Ms.) (POS Garzarelli) (POS said) (POS she) (POS was) (POS swamped) (POS with) (POS phone) (POS calls) (POS over) (POS the) (POS weekend) (POS from) (POS nervous) (POS shareholders) (POS .)) (TOP (POS ``) (POS Half) (POS of) (POS them) (POS are) (POS really) (POS scared) (POS and) (POS want) (POS to) (POS sell) (POS ,) (POS '') (POS she) (POS said) (POS ,) (POS ``) (POS but) (POS I) (POS 'm) (POS trying) (POS to) (POS talk) (POS them) (POS out) (POS of) (POS it) (POS .) (POS '')) (TOP (POS She) (POS added) (POS ,) (POS ``) (POS If) (POS they) (POS all) (POS were) (POS bullish) (POS ,) (POS I) (POS 'd) (POS really) (POS be) (POS upset) (POS .) (POS '')) (TOP (POS The) (POS backdrop) (POS to) (POS Friday) (POS 's) (POS slide) (POS was) (POS markedly) (POS different) (POS from) (POS that) (POS of) (POS the) (POS October) (POS 1987) (POS crash) (POS ,) (POS fund) (POS managers) (POS argue) (POS .)) (TOP (POS Two) (POS years) (POS ago) (POS ,) (POS unlike) (POS today) (POS ,) (POS the) (POS dollar) (POS was) (POS weak) (POS ,) (POS interest) (POS rates) (POS were) (POS rising) (POS and) (POS the) (POS market) (POS was) (POS very) (POS overvalued) (POS ,) (POS they) (POS say) (POS .)) (TOP (POS ``) (POS From) (POS the) (POS investors) (POS ') (POS standpoint) (POS ,) (POS institutions) (POS and) (POS individuals) (POS learned) (POS a) (POS painful) (POS lesson) (POS ...) (POS by) (POS selling) (POS at) (POS the) (POS lows) (POS '') (POS on) (POS Black) (POS Monday) (POS ,) (POS said) (POS Stephen) (POS Boesel) (POS ,) (POS manager) (POS of) (POS the) (POS $) (POS 580) (POS million) (POS T.) (POS Rowe) (POS Price) (POS Growth) (POS and) (POS Income) (POS Fund) (POS .)) (TOP(S(NP(DT This)(NN time))(, ,)(`` ``)(NP(PRP I))(VP(VBP do)(RB n't)(VP(VBP think)(SBAR(S(NP(PRP we))(VP(MD 'll)(VP(VB get)(NP(DT a)(NN panic)(NN reaction))))))))(. .))) (TOP (POS Newport) (POS Corp.) (POS said) (POS it) (POS expects) (POS to) (POS report) (POS fiscal-first-quarter) (POS earnings) (POS of) (POS between) (POS 15) (POS cents) (POS and) (POS 19) (POS cents) (POS a) (POS share) (POS ,) (POS somewhat) (POS below) (POS analysts) (POS ') (POS estimates) (POS of) (POS 19) (POS cents) (POS to) (POS 23) (POS cents) (POS .)) (TOP (POS The) (POS maker) (POS of) (POS scientific) (POS instruments) (POS and) (POS laser) (POS parts) (POS said) (POS orders) (POS fell) (POS below) (POS expectations) (POS in) (POS recent) (POS months) (POS .)) (TOP (POS A) (POS spokesman) (POS added) (POS that) (POS sales) (POS in) (POS the) (POS current) (POS quarter) (POS will) (POS about) (POS equal) (POS the) (POS yearearlier) (POS quarter) (POS 's) (POS figure) (POS ,) (POS when) (POS Newport) (POS reported) (POS net) (POS income) (POS of) (POS $) (POS 1.7) (POS million) (POS ,) (POS or) (POS 21) (POS cents) (POS a) (POS share) (POS ,) (POS on) (POS $) (POS 14.1) (POS million) (POS in) (POS sales) (POS .)) (TOP (POS Ripples) (POS from) (POS the) (POS strike) (POS by) (POS 55,000) (POS Machinists) (POS union) (POS members) (POS against) (POS Boeing) (POS Co.) (POS reached) (POS air) (POS carriers) (POS Friday) (POS as) (POS America) (POS West) (POS Airlines) (POS announced) (POS it) (POS will) (POS postpone) (POS its) (POS new) (POS service) (POS out) (POS of) (POS Houston) (POS because) (POS of) (POS delays) (POS in) (POS receiving) (POS aircraft) (POS from) (POS the) (POS Seattle) (POS jet) (POS maker) (POS .)) (TOP (POS Peter) (POS Otradovec) (POS ,) (POS vice) (POS president) (POS for) (POS planning) (POS at) (POS the) (POS Phoenix) (POS ,) (POS Ariz.) (POS ,) (POS carrier) (POS ,) (POS said) (POS in) (POS an) (POS interview) (POS that) (POS the) (POS work) (POS stoppage) (POS at) (POS Boeing) (POS ,) (POS now) (POS entering) (POS its) (POS 13th) (POS day) (POS ,) (POS ``) (POS has) (POS caused) (POS some) (POS turmoil) (POS in) (POS our) (POS scheduling) (POS '') (POS and) (POS that) (POS more) (POS than) (POS 500) (POS passengers) (POS who) (POS were) (POS booked) (POS to) (POS fly) (POS out) (POS of) (POS Houston) (POS on) (POS America) (POS West) (POS would) (POS now) (POS be) (POS put) (POS on) (POS other) (POS airlines) (POS .)) (TOP (POS Mr.) (POS Otradovec) (POS said) (POS Boeing) (POS told) (POS America) (POS West) (POS that) (POS the) (POS 757) (POS it) (POS was) (POS supposed) (POS to) (POS get) (POS this) (POS Thursday) (POS would) (POS n't) (POS be) (POS delivered) (POS until) (POS Nov.) (POS 7) (POS --) (POS the) (POS day) (POS after) (POS the) (POS airline) (POS had) (POS been) (POS planning) (POS to) (POS initiate) (POS service) (POS at) (POS Houston) (POS with) (POS four) (POS daily) (POS flights) (POS ,) (POS including) (POS three) (POS nonstops) (POS to) (POS Phoenix) (POS and) (POS one) (POS nonstop) (POS to) (POS Las) (POS Vegas) (POS .)) (TOP(S(ADVP(RB Now))(, ,)(NP(DT those)(NNS routes))(VP(VBP are)(RB n't)(VP(VBN expected)(S(VP(TO to)(VP(VB begin)(PP(IN until)(NP(NNP Jan))))))))(. .))) (TOP (POS Boeing) (POS is) (POS also) (POS supposed) (POS to) (POS send) (POS to) (POS America) (POS West) (POS another) (POS 757) (POS twin-engine) (POS aircraft) (POS as) (POS well) (POS as) (POS a) (POS 737) (POS by) (POS year) (POS 's) (POS end) (POS .)) (TOP(S(NP(DT Those)(, ,)(ADVP(RB too)))(, ,)(VP(VBP are)(ADJP(RB almost)(JJ certain)(S(VP(TO to)(VP(VB arrive)(ADVP(RB late)))))))(. .))) (TOP (POS At) (POS this) (POS point) (POS ,) (POS no) (POS other) (POS America) (POS West) (POS flights) (POS --) (POS including) (POS its) (POS new) (POS service) (POS at) (POS San) (POS Antonio) (POS ,) (POS Texas) (POS ;) (POS Newark) (POS ,) (POS N.J.) (POS ;) (POS and) (POS Palmdale) (POS ,) (POS Calif.) (POS --) (POS have) (POS been) (POS affected) (POS by) (POS the) (POS delays) (POS in) (POS Boeing) (POS deliveries) (POS .)) (TOP (POS Nevertheless) (POS ,) (POS the) (POS company) (POS 's) (POS reaction) (POS underscores) (POS the) (POS domino) (POS effect) (POS that) (POS a) (POS huge) (POS manufacturer) (POS such) (POS as) (POS Boeing) (POS can) (POS have) (POS on) (POS other) (POS parts) (POS of) (POS the) (POS economy) (POS .)) (TOP(S(NP(PRP It))(ADVP(RB also))(VP(VBZ is)(ADJP(JJ sure)(S(VP(TO to)(VP(VB help)(S(NP(DT the)(NNS machinists))(VP(VB put)(VP(VBD added)(NP(NN pressure))(PP(IN on)(NP(DT the)(NN company)))))))))))(. .))) (TOP (POS ``) (POS I) (POS just) (POS do) (POS n't) (POS feel) (POS that) (POS the) (POS company) (POS can) (POS really) (POS stand) (POS or) (POS would) (POS want) (POS a) (POS prolonged) (POS walkout) (POS ,) (POS '') (POS Tom) (POS Baker) (POS ,) (POS president) (POS of) (POS Machinists) (POS ') (POS District) (POS 751) (POS ,) (POS said) (POS in) (POS an) (POS interview) (POS yesterday) (POS .)) (TOP(S(`` ``)(S(NP(PRP I))(VP(VBP do)(RB n't)(VP(VBP think)(SBAR(S(NP(PRP$ their)(NNS customers))(VP(MD would)(VP(VB like)(NP(PRP it)))))))))(ADVP(RB very)(RB much))(. .)('' ''))) (TOP (POS America) (POS West) (POS ,) (POS though) (POS ,) (POS is) (POS a) (POS smaller) (POS airline) (POS and) (POS therefore) (POS more) (POS affected) (POS by) (POS the) (POS delayed) (POS delivery) (POS of) (POS a) (POS single) (POS plane) (POS than) (POS many) (POS of) (POS its) (POS competitors) (POS would) (POS be) (POS .)) (TOP (POS ``) (POS I) (POS figure) (POS that) (POS American) (POS and) (POS United) (POS probably) (POS have) (POS such) (POS a) (POS hard) (POS time) (POS counting) (POS all) (POS the) (POS planes) (POS in) (POS their) (POS fleets) (POS ,) (POS they) (POS might) (POS not) (POS miss) (POS one) (POS at) (POS all) (POS ,) (POS '') (POS Mr.) (POS Otradovec) (POS said) (POS .)) (TOP (POS Indeed) (POS ,) (POS a) (POS random) (POS check) (POS Friday) (POS did) (POS n't) (POS seem) (POS to) (POS indicate) (POS that) (POS the) (POS strike) (POS was) (POS having) (POS much) (POS of) (POS an) (POS effect) (POS on) (POS other) (POS airline) (POS operations) (POS .)) (TOP (POS Southwest) (POS Airlines) (POS has) (POS a) (POS Boeing) (POS 737-300) (POS set) (POS for) (POS delivery) (POS at) (POS the) (POS end) (POS of) (POS this) (POS month) (POS and) (POS expects) (POS to) (POS have) (POS the) (POS plane) (POS on) (POS time) (POS .)) (TOP (POS ``) (POS It) (POS 's) (POS so) (POS close) (POS to) (POS completion) (POS ,) (POS Boeing) (POS 's) (POS told) (POS us) (POS there) (POS wo) (POS n't) (POS be) (POS a) (POS problem) (POS ,) (POS '') (POS said) (POS a) (POS Southwest) (POS spokesman) (POS .)) (TOP (POS A) (POS spokesman) (POS for) (POS AMR) (POS Corp.) (POS said) (POS Boeing) (POS has) (POS assured) (POS American) (POS Airlines) (POS it) (POS will) (POS deliver) (POS a) (POS 757) (POS on) (POS time) (POS later) (POS this) (POS month) (POS .)) (TOP (POS American) (POS is) (POS preparing) (POS to) (POS take) (POS delivery) (POS of) (POS another) (POS 757) (POS in) (POS early) (POS December) (POS and) (POS 20) (POS more) (POS next) (POS year) (POS and) (POS is) (POS n't) (POS anticipating) (POS any) (POS changes) (POS in) (POS that) (POS timetable) (POS .)) (TOP (POS In) (POS Seattle) (POS ,) (POS a) (POS Boeing) (POS spokesman) (POS explained) (POS that) (POS the) (POS company) (POS has) (POS been) (POS in) (POS constant) (POS communication) (POS with) (POS all) (POS of) (POS its) (POS customers) (POS and) (POS that) (POS it) (POS was) (POS impossible) (POS to) (POS predict) (POS what) (POS further) (POS disruptions) (POS might) (POS be) (POS triggered) (POS by) (POS the) (POS strike) (POS .)) (TOP (POS Meanwhile) (POS ,) (POS supervisors) (POS and) (POS non-striking) (POS employees) (POS have) (POS been) (POS trying) (POS to) (POS finish) (POS some) (POS 40) (POS aircraft) (POS --) (POS mostly) (POS 747) (POS and) (POS 767) (POS jumbo) (POS jets) (POS at) (POS the) (POS company) (POS 's) (POS Everett) (POS ,) (POS Wash.) (POS ,) (POS plant) (POS --) (POS that) (POS were) (POS all) (POS but) (POS completed) (POS before) (POS the) (POS walkout) (POS .)) (TOP (POS As) (POS of) (POS Friday) (POS ,) (POS four) (POS had) (POS been) (POS delivered) (POS and) (POS a) (POS fifth) (POS plane) (POS ,) (POS a) (POS 747-400) (POS ,) (POS was) (POS supposed) (POS to) (POS be) (POS flown) (POS out) (POS over) (POS the) (POS weekend) (POS to) (POS Air) (POS China) (POS .)) (TOP(S(NP(DT No)(NN date))(VP(VBZ has)(RB yet)(VP(VBN been)(VP(VBN set)(S(VP(TO to)(VP(VB get)(PRT(RP back))(PP(TO to)(NP(DT the)(NN bargaining)(NN table)))))))))(. .))) (TOP (POS ``) (POS We) (POS want) (POS to) (POS make) (POS sure) (POS they) (POS know) (POS what) (POS they) (POS want) (POS before) (POS they) (POS come) (POS back) (POS ,) (POS '') (POS said) (POS Doug) (POS Hammond) (POS ,) (POS the) (POS federal) (POS mediator) (POS who) (POS has) (POS been) (POS in) (POS contact) (POS with) (POS both) (POS sides) (POS since) (POS the) (POS strike) (POS began) (POS .)) (TOP(S(NP(DT The)(NN investment)(NN community))(, ,)(PP(IN for)(NP(CD one)))(, ,)(VP(VBZ has)(VP(VBN been)(S(VP(VBG anticipating)(NP(DT a)(JJ speedy)(NN resolution))))))(. .))) (TOP (POS Though) (POS Boeing) (POS 's) (POS stock) (POS price) (POS was) (POS battered) (POS along) (POS with) (POS the) (POS rest) (POS of) (POS the) (POS market) (POS Friday) (POS ,) (POS it) (POS actually) (POS has) (POS risen) (POS over) (POS the) (POS last) (POS two) (POS weeks) (POS on) (POS the) (POS strength) (POS of) (POS new) (POS orders) (POS .)) (TOP (POS ``) (POS The) (POS market) (POS has) (POS taken) (POS two) (POS views) (POS :) (POS that) (POS the) (POS labor) (POS situation) (POS will) (POS get) (POS settled) (POS in) (POS the) (POS short) (POS term) (POS and) (POS that) (POS things) (POS look) (POS very) (POS rosy) (POS for) (POS Boeing) (POS in) (POS the) (POS long) (POS term) (POS ,) (POS '') (POS said) (POS Howard) (POS Rubel) (POS ,) (POS an) (POS analyst) (POS at) (POS Cyrus) (POS J.) (POS Lawrence) (POS Inc) (POS .)) (TOP (POS Boeing) (POS 's) (POS shares) (POS fell) (POS $) (POS 4) (POS Friday) (POS to) (POS close) (POS at) (POS $) (POS 57.375) (POS in) (POS composite) (POS trading) (POS on) (POS the) (POS New) (POS York) (POS Stock) (POS Exchange) (POS .)) (TOP (POS But) (POS Mr.) (POS Baker) (POS said) (POS he) (POS thinks) (POS the) (POS earliest) (POS a) (POS pact) (POS could) (POS be) (POS struck) (POS would) (POS be) (POS the) (POS end) (POS of) (POS this) (POS month) (POS ,) (POS hinting) (POS that) (POS the) (POS company) (POS and) (POS union) (POS may) (POS resume) (POS negotiations) (POS as) (POS early) (POS as) (POS this) (POS week) (POS .)) (TOP (POS Still) (POS ,) (POS he) (POS said) (POS ,) (POS it) (POS 's) (POS possible) (POS that) (POS the) (POS strike) (POS could) (POS last) (POS considerably) (POS longer) (POS .)) (TOP(SINV(`` ``)(S(NP(PRP I))(VP(MD would)(RB n't)(VP(VBP expect)(NP(DT an)(JJ immediate)(NN resolution))(PP(TO to)(NP(NN anything))))))(. .)('' ''))) (TOP (POS Last) (POS week) (POS ,) (POS Boeing) (POS Chairman) (POS Frank) (POS Shrontz) (POS sent) (POS striking) (POS workers) (POS a) (POS letter) (POS ,) (POS saying) (POS that) (POS ``) (POS to) (POS my) (POS knowledge) (POS ,) (POS Boeing) (POS 's) (POS offer) (POS represents) (POS the) (POS best) (POS overall) (POS three-year) (POS contract) (POS of) (POS any) (POS major) (POS U.S.) (POS industrial) (POS firm) (POS in) (POS recent) (POS history) (POS .) (POS '')) (TOP (POS But) (POS Mr.) (POS Baker) (POS called) (POS the) (POS letter) (POS --) (POS and) (POS the) (POS company) (POS 's) (POS offer) (POS of) (POS a) (POS 10) (POS %) (POS wage) (POS increase) (POS over) (POS the) (POS life) (POS of) (POS the) (POS pact) (POS ,) (POS plus) (POS bonuses) (POS --) (POS ``) (POS very) (POS weak) (POS .) (POS '')) (TOP (POS He) (POS added) (POS that) (POS the) (POS company) (POS miscalculated) (POS the) (POS union) (POS 's) (POS resolve) (POS and) (POS the) (POS workers) (POS ') (POS disgust) (POS with) (POS being) (POS forced) (POS to) (POS work) (POS many) (POS hours) (POS overtime) (POS .)) (TOP (POS In) (POS separate) (POS developments) (POS :) (POS --) (POS Talks) (POS have) (POS broken) (POS off) (POS between) (POS Machinists) (POS representatives) (POS at) (POS Lockheed) (POS Corp.) (POS and) (POS the) (POS Calabasas) (POS ,) (POS Calif.) (POS ,) (POS aerospace) (POS company) (POS .)) (TOP(S(NP(DT The)(NN union))(VP(VBZ is)(VP(VBG continuing)(S(VP(TO to)(VP(VB work)(PP(IN through)(NP(PRP$ its)(VBN expired)(NN contract)))(, ,)(ADVP(RB however)))))))(. .))) (TOP (POS It) (POS had) (POS planned) (POS a) (POS strike) (POS vote) (POS for) (POS next) (POS Sunday) (POS ,) (POS but) (POS that) (POS has) (POS been) (POS pushed) (POS back) (POS indefinitely) (POS .)) (TOP (POS --) (POS United) (POS Auto) (POS Workers) (POS Local) (POS 1069) (POS ,) (POS which) (POS represents) (POS 3,000) (POS workers) (POS at) (POS Boeing) (POS 's) (POS helicopter) (POS unit) (POS in) (POS Delaware) (POS County) (POS ,) (POS Pa.) (POS ,) (POS said) (POS it) (POS agreed) (POS to) (POS extend) (POS its) (POS contract) (POS on) (POS a) (POS day-by-day) (POS basis) (POS ,) (POS with) (POS a) (POS 10-day) (POS notification) (POS to) (POS cancel) (POS ,) (POS while) (POS it) (POS continues) (POS bargaining) (POS .)) (TOP(S(NP(DT The)(NN accord))(VP(VBD expired)(NP(NN yesterday)))(. .))) (TOP (POS --) (POS And) (POS Boeing) (POS on) (POS Friday) (POS said) (POS it) (POS received) (POS an) (POS order) (POS from) (POS Martinair) (POS Holland) (POS for) (POS four) (POS model) (POS 767-300) (POS wide-body) (POS jetliners) (POS valued) (POS at) (POS a) (POS total) (POS of) (POS about) (POS $) (POS 326) (POS million) (POS .)) (TOP (POS The) (POS planes) (POS ,) (POS long) (POS range) (POS versions) (POS of) (POS the) (POS medium-haul) (POS twin-jet) (POS ,) (POS will) (POS be) (POS delivered) (POS with) (POS Pratt) (POS &) (POS Whitney) (POS PW4060) (POS engines) (POS .)) (TOP(S(NP(NNP Pratt)(CC &)(NNP Whitney))(VP(VBZ is)(NP(DT a)(NN unit))(PP(IN of)(NP(NNP United)(NNPS Technologies)(NNP Inc))))(. .))) (TOP(S(NP(NNP Martinair)(NNP Holland))(VP(VBZ is)(VP(VBN based)(PP(IN in)(NP(NNP Amsterdam)))))(. .))) (TOP (POS A) (POS Boeing) (POS spokeswoman) (POS said) (POS a) (POS delivery) (POS date) (POS for) (POS the) (POS planes) (POS is) (POS still) (POS being) (POS worked) (POS out) (POS ``) (POS for) (POS a) (POS variety) (POS of) (POS reasons) (POS ,) (POS but) (POS not) (POS because) (POS of) (POS the) (POS strike) (POS .) (POS '')) (TOP(S(NP(NNP Bridget)(NNP O'Brian))(VP(VBN contributed)(PP(TO to)(NP(DT this)(NN article))))(. .))) (TOP (POS Atco) (POS Ltd.) (POS said) (POS its) (POS utilities) (POS arm) (POS is) (POS considering) (POS building) (POS new) (POS electric) (POS power) (POS plants) (POS ,) (POS some) (POS valued) (POS at) (POS more) (POS than) (POS one) (POS billion) (POS Canadian) (POS dollars) (POS -LRB-) (POS US$) (POS 851) (POS million) (POS -RRB-) (POS ,) (POS in) (POS Great) (POS Britain) (POS and) (POS elsewhere) (POS .)) (TOP (POS C.S.) (POS Richardson) (POS ,) (POS Atco) (POS 's) (POS senior) (POS vice) (POS president) (POS ,) (POS finance) (POS ,) (POS said) (POS its) (POS 50.1%-owned) (POS Canadian) (POS Utilities) (POS Ltd.) (POS unit) (POS is) (POS reviewing) (POS cogeneration) (POS projects) (POS in) (POS eastern) (POS Canada) (POS ,) (POS and) (POS conventional) (POS electric) (POS power) (POS generating) (POS plants) (POS elsewhere) (POS ,) (POS including) (POS Britain) (POS ,) (POS where) (POS the) (POS British) (POS government) (POS plans) (POS to) (POS allow) (POS limited) (POS competition) (POS in) (POS electrical) (POS generation) (POS from) (POS private-sector) (POS suppliers) (POS as) (POS part) (POS of) (POS its) (POS privatization) (POS program) (POS .)) (TOP(S(`` ``)(NP(DT The)(NNS projects))(VP(VBP are)(ADJP(JJ big)))(. .))) (TOP(S(S(NP(PRP They))(VP(MD can)(VP(VB be)(NP(QP($ C$)(CD 1)(CD billion))))))(CC plus)(, ,)('' '')(NP(NNP Mr.)(NNP Richardson))(VP(VBD said))(. .))) (TOP (POS ``) (POS But) (POS we) (POS would) (POS n't) (POS go) (POS into) (POS them) (POS alone) (POS ,) (POS '') (POS and) (POS Canadian) (POS Utilities) (POS ') (POS equity) (POS stake) (POS would) (POS be) (POS small) (POS ,) (POS he) (POS said) (POS .)) (TOP (POS ``) (POS Ideally) (POS ,) (POS we) (POS 'd) (POS like) (POS to) (POS be) (POS the) (POS operator) (POS -LCB-) (POS of) (POS the) (POS project) (POS -RCB-) (POS and) (POS a) (POS modest) (POS equity) (POS investor) (POS .)) (TOP (POS Our) (POS long) (POS suit) (POS is) (POS our) (POS proven) (POS ability) (POS to) (POS operate) (POS '') (POS power) (POS plants) (POS ,) (POS he) (POS said) (POS .)) (TOP (POS Mr.) (POS Richardson) (POS would) (POS n't) (POS offer) (POS specifics) (POS regarding) (POS Atco) (POS 's) (POS proposed) (POS British) (POS project) (POS ,) (POS but) (POS he) (POS said) (POS it) (POS would) (POS compete) (POS for) (POS customers) (POS with) (POS two) (POS huge) (POS British) (POS power) (POS generating) (POS companies) (POS that) (POS would) (POS be) (POS formed) (POS under) (POS the) (POS country) (POS 's) (POS plan) (POS to) (POS privatize) (POS its) (POS massive) (POS water) (POS and) (POS electric) (POS utilities) (POS .)) (TOP (POS Britain) (POS 's) (POS government) (POS plans) (POS to) (POS raise) (POS about) (POS #) (POS 20) (POS billion) (POS -LRB-) (POS $) (POS 31.05) (POS billion) (POS -RRB-) (POS from) (POS the) (POS sale) (POS of) (POS most) (POS of) (POS its) (POS giant) (POS water) (POS and) (POS electric) (POS utilities) (POS ,) (POS beginning) (POS next) (POS month) (POS .)) (TOP (POS The) (POS planned) (POS electric) (POS utility) (POS sale) (POS ,) (POS scheduled) (POS for) (POS next) (POS year) (POS ,) (POS is) (POS alone) (POS expected) (POS to) (POS raise) (POS #) (POS 13) (POS billion) (POS ,) (POS making) (POS it) (POS the) (POS world) (POS 's) (POS largest) (POS public) (POS offering) (POS .)) (TOP (POS Under) (POS terms) (POS of) (POS the) (POS plan) (POS ,) (POS independent) (POS generators) (POS would) (POS be) (POS able) (POS to) (POS compete) (POS for) (POS 15) (POS %) (POS of) (POS customers) (POS until) (POS 1994) (POS ,) (POS and) (POS for) (POS another) (POS 10) (POS %) (POS between) (POS 1994) (POS and) (POS 1998) (POS .)) (TOP (POS Canadian) (POS Utilities) (POS had) (POS 1988) (POS revenue) (POS of) (POS C$) (POS 1.16) (POS billion) (POS ,) (POS mainly) (POS from) (POS its) (POS natural) (POS gas) (POS and) (POS electric) (POS utility) (POS businesses) (POS in) (POS Alberta) (POS ,) (POS where) (POS the) (POS company) (POS serves) (POS about) (POS 800,000) (POS customers) (POS .)) (TOP (POS ``) (POS There) (POS seems) (POS to) (POS be) (POS a) (POS move) (POS around) (POS the) (POS world) (POS to) (POS deregulate) (POS the) (POS generation) (POS of) (POS electricity) (POS ,) (POS '') (POS Mr.) (POS Richardson) (POS said) (POS ,) (POS and) (POS Canadian) (POS Utilities) (POS hopes) (POS to) (POS capitalize) (POS on) (POS it) (POS .)) (TOP (POS ``) (POS This) (POS is) (POS a) (POS real) (POS thrust) (POS on) (POS our) (POS utility) (POS side) (POS ,) (POS '') (POS he) (POS said) (POS ,) (POS adding) (POS that) (POS Canadian) (POS Utilities) (POS is) (POS also) (POS mulling) (POS projects) (POS in) (POS underdeveloped) (POS countries) (POS ,) (POS though) (POS he) (POS would) (POS be) (POS specific) (POS .)) (TOP (POS Canadian) (POS Utilities) (POS is) (POS n't) (POS alone) (POS in) (POS exploring) (POS power) (POS generation) (POS opportunities) (POS in) (POS Britain) (POS ,) (POS in) (POS anticipation) (POS of) (POS the) (POS privatization) (POS program) (POS .)) (TOP (POS ``) (POS We) (POS 're) (POS certainly) (POS looking) (POS at) (POS some) (POS power) (POS generating) (POS projects) (POS in) (POS England) (POS ,) (POS '') (POS said) (POS Bruce) (POS Stram) (POS ,) (POS vice) (POS president) (POS ,) (POS corporate) (POS strategy) (POS and) (POS corporate) (POS planning) (POS ,) (POS with) (POS Enron) (POS Corp.) (POS ,) (POS Houston) (POS ,) (POS a) (POS big) (POS natural) (POS gas) (POS producer) (POS and) (POS pipeline) (POS operator) (POS .)) (TOP (POS Mr.) (POS Stram) (POS said) (POS Enron) (POS is) (POS considering) (POS building) (POS gas-fired) (POS power) (POS plants) (POS in) (POS the) (POS U.K.) (POS capable) (POS of) (POS producing) (POS about) (POS 500) (POS megawatts) (POS of) (POS power) (POS at) (POS a) (POS cost) (POS of) (POS about) (POS $) (POS 300) (POS million) (POS to) (POS $) (POS 400) (POS million) (POS .)) (TOP (POS PSE) (POS Inc.) (POS said) (POS it) (POS expects) (POS to) (POS report) (POS third) (POS earnings) (POS of) (POS $) (POS 1.3) (POS million) (POS to) (POS $) (POS 1.7) (POS million) (POS ,) (POS or) (POS 14) (POS cents) (POS to) (POS 18) (POS cents) (POS a) (POS share) (POS .)) (TOP (POS In) (POS the) (POS year-ago) (POS quarter) (POS ,) (POS the) (POS designer) (POS and) (POS operator) (POS of) (POS cogeneration) (POS and) (POS waste) (POS heat) (POS recovery) (POS plants) (POS had) (POS net) (POS income) (POS of) (POS $) (POS 326,000) (POS ,) (POS or) (POS four) (POS cents) (POS a) (POS share) (POS ,) (POS on) (POS revenue) (POS of) (POS about) (POS $) (POS 41.4) (POS million) (POS .)) (TOP (POS The) (POS company) (POS said) (POS the) (POS improvement) (POS is) (POS related) (POS to) (POS additional) (POS cogeneration) (POS facilities) (POS that) (POS have) (POS been) (POS put) (POS into) (POS operation) (POS .)) (TOP(S(NP(NNP CONCORDE)(JJ trans-Atlantic)(NNS flights))(VP(VBP are)(NP($ $)(CD 2,400))(PP(TO to)(NP(NP(NNP Paris)(CC and)(NP($ $)(CD 3,200)))(PP(TO to)(NP(NNP London))))))(. .))) (TOP(S(PP(IN In)(NP(DT a)(NNP Centennial)(NNP Journal)(NN article)))(NP(NNP Oct.)(CD 5))(, ,)(NP(DT the)(NNS fares))(VP(VBD were)(VP(VBD reversed)))(. .))) (TOP(S(NP(NNP Diamond)(NNP Shamrock))(NP(NNP Offshore)(NNPS Partners))(VP(VBD said)(SBAR(S(NP(PRP it))(VP(VBD had)(VP(VBD discovered)(NP(NN gas))(ADVP(RB offshore))(NP(NNP Louisiana)))))))(. .))) (TOP (POS The) (POS well) (POS flowed) (POS at) (POS a) (POS rate) (POS of) (POS 2.016) (POS million) (POS cubic) (POS feet) (POS of) (POS gas) (POS a) (POS day) (POS through) (POS a) (POS 16) (POS 64-inch) (POS opening) (POS at) (POS depths) (POS between) (POS 5,782) (POS and) (POS 5,824) (POS feet) (POS .)) (TOP(S(NP(NNP Diamond)(NNP(N Shamrock)))(VP(VBZ is)(NP(DT the)(NN operator))(, ,)(PP(IN with)(NP(NP(DT a)(ADJP(CD 100)(NN %))(NN interest))(PP(IN in)(NP(DT the)(NN well))))))(. .))) (TOP (POS Diamond) (POS Shamrock) (POS Offshore) (POS 's) (POS stock) (POS rose) (POS 12.5) (POS cents) (POS Friday) (POS to) (POS close) (POS at) (POS $) (POS 8.25) (POS in) (POS New) (POS York) (POS Stock) (POS Exchange) (POS composite) (POS trading) (POS .)) (TOP (POS Kaufman) (POS &) (POS Broad) (POS Home) (POS Corp.) (POS said) (POS it) (POS formed) (POS a) (POS $) (POS 53.4) (POS million) (POS limited) (POS partnership) (POS subsidiary) (POS to) (POS buy) (POS land) (POS in) (POS California) (POS suitable) (POS for) (POS residential) (POS development) (POS .)) (TOP (POS The) (POS partnership) (POS ,) (POS Kaufman) (POS &) (POS Broad) (POS Land) (POS Development) (POS Venture) (POS Limited) (POS Partnership) (POS ,) (POS is) (POS a) (POS 50-50) (POS joint) (POS venture) (POS with) (POS a) (POS trust) (POS created) (POS by) (POS institutional) (POS clients) (POS of) (POS Heitman) (POS Advisory) (POS Corp.) (POS ,) (POS a) (POS unit) (POS of) (POS Heitman) (POS Financial) (POS Corp.) (POS ,) (POS a) (POS real) (POS estate) (POS advisory) (POS ,) (POS management) (POS and) (POS development) (POS company) (POS with) (POS offices) (POS in) (POS Chicago) (POS and) (POS Beverly) (POS Hills) (POS ,) (POS Calif) (POS .)) (TOP (POS Kaufman) (POS &) (POS Broad) (POS ,) (POS a) (POS home) (POS building) (POS company) (POS ,) (POS declined) (POS to) (POS identify) (POS the) (POS institutional) (POS investors) (POS .)) (TOP (POS The) (POS land) (POS to) (POS be) (POS purchased) (POS by) (POS the) (POS joint) (POS venture) (POS has) (POS n't) (POS yet) (POS received) (POS zoning) (POS and) (POS other) (POS approvals) (POS required) (POS for) (POS development) (POS ,) (POS and) (POS part) (POS of) (POS Kaufman) (POS &) (POS Broad) (POS 's) (POS job) (POS will) (POS be) (POS to) (POS obtain) (POS such) (POS approvals) (POS .)) (TOP (POS The) (POS partnership) (POS runs) (POS the) (POS risk) (POS that) (POS it) (POS may) (POS not) (POS get) (POS the) (POS approvals) (POS for) (POS development) (POS ,) (POS but) (POS in) (POS return) (POS ,) (POS it) (POS can) (POS buy) (POS land) (POS at) (POS wholesale) (POS rather) (POS than) (POS retail) (POS prices) (POS ,) (POS which) (POS can) (POS result) (POS in) (POS sizable) (POS savings) (POS ,) (POS said) (POS Bruce) (POS Karatz) (POS ,) (POS president) (POS and) (POS chief) (POS executive) (POS officer) (POS of) (POS Kaufman) (POS &) (POS Broad) (POS .)) (TOP (POS ``) (POS There) (POS are) (POS really) (POS very) (POS few) (POS companies) (POS that) (POS have) (POS adequate) (POS capital) (POS to) (POS buy) (POS properties) (POS in) (POS a) (POS raw) (POS state) (POS for) (POS cash) (POS .)) (TOP (POS Typically) (POS ,) (POS developers) (POS option) (POS property) (POS ,) (POS and) (POS then) (POS once) (POS they) (POS get) (POS the) (POS administrative) (POS approvals) (POS ,) (POS they) (POS buy) (POS it) (POS ,) (POS '') (POS said) (POS Mr.) (POS Karatz) (POS ,) (POS adding) (POS that) (POS he) (POS believes) (POS the) (POS joint) (POS venture) (POS is) (POS the) (POS first) (POS of) (POS its) (POS kind) (POS .)) (TOP(S(`` ``)(NP(PRP We))(ADVP(RB usually))(VP(VB operate)(SBAR(IN in)(S(NP(DT that)(JJ conservative)(NN manner))(. .)('' '')))))) (TOP (POS By) (POS setting) (POS up) (POS the) (POS joint) (POS venture) (POS ,) (POS Kaufman) (POS &) (POS Broad) (POS can) (POS take) (POS the) (POS more) (POS aggressive) (POS approach) (POS of) (POS buying) (POS raw) (POS land) (POS ,) (POS while) (POS avoiding) (POS the) (POS negative) (POS impacts) (POS to) (POS its) (POS own) (POS balance) (POS sheet) (POS ,) (POS Mr.) (POS Karatz) (POS said) (POS .)) (TOP (POS The) (POS company) (POS is) (POS putting) (POS up) (POS only) (POS 10) (POS %) (POS of) (POS the) (POS capital) (POS ,) (POS although) (POS it) (POS is) (POS responsible) (POS for) (POS providing) (POS management) (POS ,) (POS planning) (POS and) (POS processing) (POS services) (POS to) (POS the) (POS joint) (POS venture) (POS .)) (TOP (POS ``) (POS This) (POS is) (POS one) (POS of) (POS the) (POS best) (POS ways) (POS to) (POS assure) (POS a) (POS pipeline) (POS of) (POS land) (POS to) (POS fuel) (POS our) (POS growth) (POS at) (POS a) (POS minimum) (POS risk) (POS to) (POS our) (POS company) (POS ,) (POS '') (POS Mr.) (POS Karatz) (POS said) (POS .)) (TOP (POS When) (POS the) (POS price) (POS of) (POS plastics) (POS took) (POS off) (POS in) (POS 1987) (POS ,) (POS Quantum) (POS Chemical) (POS Corp.) (POS went) (POS along) (POS for) (POS the) (POS ride) (POS .)) (TOP (POS The) (POS timing) (POS of) (POS Quantum) (POS 's) (POS chief) (POS executive) (POS officer) (POS ,) (POS John) (POS Hoyt) (POS Stookey) (POS ,) (POS appeared) (POS to) (POS be) (POS nothing) (POS less) (POS than) (POS inspired) (POS ,) (POS because) (POS he) (POS had) (POS just) (POS increased) (POS Quantum) (POS 's) (POS reliance) (POS on) (POS plastics) (POS .)) (TOP (POS The) (POS company) (POS outpaced) (POS much) (POS of) (POS the) (POS chemical) (POS industry) (POS as) (POS annual) (POS profit) (POS grew) (POS fivefold) (POS in) (POS two) (POS years) (POS .)) (TOP (POS Mr.) (POS Stookey) (POS said) (POS of) (POS the) (POS boom) (POS ,) (POS ``) (POS It) (POS 's) (POS going) (POS to) (POS last) (POS a) (POS whole) (POS lot) (POS longer) (POS than) (POS anybody) (POS thinks) (POS .) (POS '')) (TOP(S(NP(QP(CC But)(RB now))(NNS prices))(VP(VBP have)(VP(VBD nose-dived)(S(CC and)(NP(NP(NNP Quantum)(POS 's))(NN profit))(VP(VBZ is)(VP(VBG plummeting)))(. .)))))) (TOP (POS Some) (POS securities) (POS analysts) (POS are) (POS looking) (POS for) (POS no) (POS better) (POS than) (POS break-even) (POS results) (POS from) (POS the) (POS company) (POS for) (POS the) (POS third) (POS quarter) (POS ,) (POS compared) (POS with) (POS year-earlier) (POS profit) (POS of) (POS $) (POS 99.8) (POS million) (POS ,) (POS or) (POS $) (POS 3.92) (POS a) (POS share) (POS ,) (POS on) (POS sales) (POS of) (POS $) (POS 724.4) (POS million) (POS .)) (TOP (POS The) (POS stock) (POS ,) (POS having) (POS lost) (POS nearly) (POS a) (POS quarter) (POS of) (POS its) (POS value) (POS since) (POS Sept.) (POS 1) (POS ,) (POS closed) (POS at) (POS $) (POS 34.375) (POS share) (POS ,) (POS down) (POS $) (POS 1.125) (POS ,) (POS in) (POS New) (POS York) (POS Stock) (POS Exchange) (POS composite) (POS trading) (POS Friday) (POS .)) (TOP (POS To) (POS a) (POS degree) (POS ,) (POS Quantum) (POS represents) (POS the) (POS new) (POS times) (POS that) (POS have) (POS arrived) (POS for) (POS producers) (POS of) (POS the) (POS so-called) (POS commodity) (POS plastics) (POS that) (POS pervade) (POS modern) (POS life) (POS .)) (TOP (POS Having) (POS just) (POS passed) (POS through) (POS one) (POS of) (POS the) (POS most) (POS profitable) (POS periods) (POS in) (POS their) (POS history) (POS ,) (POS these) (POS producers) (POS now) (POS see) (POS their) (POS prices) (POS eroding) (POS .)) (TOP(S(NP(NN Pricing)(NNS cycles))(, ,)(S(VP(TO to)(VP(VB be)(ADJP(JJ sure)))))(, ,)(VP(VBP are)(ADJP(NN nothing)(JJ new)(PP(IN for)(NP(NNS plastics)(NNS producers)))))(. .))) (TOP (POS And) (POS the) (POS financial) (POS decline) (POS of) (POS some) (POS looks) (POS steep) (POS only) (POS in) (POS comparison) (POS with) (POS the) (POS heady) (POS period) (POS that) (POS is) (POS just) (POS behind) (POS them) (POS .)) (TOP (POS ``) (POS We) (POS were) (POS all) (POS wonderful) (POS heroes) (POS last) (POS year) (POS ,) (POS '') (POS says) (POS an) (POS executive) (POS at) (POS one) (POS of) (POS Quantum) (POS 's) (POS competitors) (POS .)) (TOP(S(`` ``)(ADVP(RB Now))(S(NP(PRP we))(VP(VBP 're)(PP(IN at)(NP(DT the)(NN bottom)))(PP(IN of)(NP(DT the)(NN heap)))))(. .)('' ''))) (TOP (POS At) (POS Quantum) (POS ,) (POS which) (POS is) (POS based) (POS in) (POS New) (POS York) (POS ,) (POS the) (POS trouble) (POS is) (POS magnified) (POS by) (POS the) (POS company) (POS 's) (POS heavy) (POS dependence) (POS on) (POS plastics) (POS .)) (TOP (POS Once) (POS known) (POS as) (POS National) (POS Distillers) (POS &) (POS Chemical) (POS Corp.) (POS ,) (POS the) (POS company) (POS exited) (POS the) (POS wine) (POS and) (POS spirits) (POS business) (POS and) (POS plowed) (POS more) (POS of) (POS its) (POS resources) (POS into) (POS plastics) (POS after) (POS Mr.) (POS Stookey) (POS took) (POS the) (POS chief) (POS executive) (POS 's) (POS job) (POS in) (POS 1986) (POS .)) (TOP (POS Mr.) (POS Stookey) (POS ,) (POS 59) (POS years) (POS old) (POS ,) (POS declined) (POS to) (POS be) (POS interviewed) (POS for) (POS this) (POS article) (POS ,) (POS but) (POS he) (POS has) (POS consistently) (POS argued) (POS that) (POS over) (POS the) (POS long) (POS haul) (POS --) (POS across) (POS both) (POS the) (POS peaks) (POS and) (POS the) (POS troughs) (POS of) (POS the) (POS plastics) (POS market) (POS --) (POS Quantum) (POS will) (POS prosper) (POS through) (POS its) (POS new) (POS direction) (POS .)) (TOP (POS Quantum) (POS 's) (POS lot) (POS is) (POS mostly) (POS tied) (POS to) (POS polyethylene) (POS resin) (POS ,) (POS used) (POS to) (POS make) (POS garbage) (POS bags) (POS ,) (POS milk) (POS jugs) (POS ,) (POS housewares) (POS ,) (POS toys) (POS and) (POS meat) (POS packaging) (POS ,) (POS among) (POS other) (POS items) (POS .)) (TOP (POS In) (POS the) (POS U.S.) (POS polyethylene) (POS market) (POS ,) (POS Quantum) (POS has) (POS claimed) (POS the) (POS largest) (POS share) (POS ,) (POS about) (POS 20) (POS %) (POS .)) (TOP (POS But) (POS its) (POS competitors) (POS --) (POS including) (POS Dow) (POS Chemical) (POS Co.) (POS ,) (POS Union) (POS Carbide) (POS Corp.) (POS and) (POS several) (POS oil) (POS giants) (POS --) (POS have) (POS much) (POS broader) (POS business) (POS interests) (POS and) (POS so) (POS are) (POS better) (POS cushioned) (POS against) (POS price) (POS swings) (POS .)) (TOP (POS When) (POS the) (POS price) (POS of) (POS polyethylene) (POS moves) (POS a) (POS mere) (POS penny) (POS a) (POS pound) (POS ,) (POS Quantum) (POS 's) (POS annual) (POS profit) (POS fluctuates) (POS by) (POS about) (POS 85) (POS cents) (POS a) (POS share) (POS ,) (POS provided) (POS no) (POS other) (POS variables) (POS are) (POS changing) (POS .)) (TOP (POS In) (POS recent) (POS months) (POS the) (POS price) (POS of) (POS polyethylene) (POS ,) (POS even) (POS more) (POS than) (POS that) (POS of) (POS other) (POS commodity) (POS plastics) (POS ,) (POS has) (POS taken) (POS a) (POS dive) (POS .)) (TOP (POS Benchmark) (POS grades) (POS ,) (POS which) (POS still) (POS sold) (POS for) (POS as) (POS much) (POS as) (POS 50) (POS cents) (POS a) (POS pound) (POS last) (POS spring) (POS ,) (POS have) (POS skidded) (POS to) (POS between) (POS 35) (POS cents) (POS and) (POS 40) (POS cents) (POS .)) (TOP (POS Meanwhile) (POS ,) (POS the) (POS price) (POS of) (POS ethylene) (POS ,) (POS the) (POS chemical) (POS building) (POS block) (POS of) (POS polyethylene) (POS ,) (POS has) (POS n't) (POS dropped) (POS nearly) (POS so) (POS fast) (POS .)) (TOP (POS That) (POS discrepancy) (POS hurts) (POS Quantum) (POS badly) (POS ,) (POS because) (POS its) (POS own) (POS plants) (POS cover) (POS only) (POS about) (POS half) (POS of) (POS its) (POS ethylene) (POS needs) (POS .)) (TOP (POS By) (POS many) (POS accounts) (POS ,) (POS an) (POS early) (POS hint) (POS of) (POS a) (POS price) (POS rout) (POS in) (POS the) (POS making) (POS came) (POS at) (POS the) (POS start) (POS of) (POS this) (POS year) (POS .)) (TOP (POS China) (POS ,) (POS which) (POS had) (POS been) (POS putting) (POS in) (POS huge) (POS orders) (POS for) (POS polyethylene) (POS ,) (POS abruptly) (POS halted) (POS them) (POS .)) (TOP (POS Calculating) (POS that) (POS excess) (POS polyethylene) (POS would) (POS soon) (POS be) (POS sloshing) (POS around) (POS the) (POS world) (POS ,) (POS other) (POS buyers) (POS then) (POS bet) (POS that) (POS prices) (POS had) (POS peaked) (POS and) (POS so) (POS began) (POS to) (POS draw) (POS down) (POS inventories) (POS rather) (POS than) (POS order) (POS new) (POS product) (POS .)) (TOP (POS Kenneth) (POS Mitchell) (POS ,) (POS director) (POS of) (POS Dow) (POS 's) (POS polyethylene) (POS business) (POS ,) (POS says) (POS producers) (POS were) (POS surprised) (POS to) (POS learn) (POS how) (POS much) (POS inventories) (POS had) (POS swelled) (POS throughout) (POS the) (POS distribution) (POS chain) (POS as) (POS prices) (POS spiraled) (POS up) (POS .)) (TOP(SINV(`` ``)(S(NP(NNS People))(VP(VBD were)(ADVP(RB even))(NP(NN hoarding)(NNS bags))))(, ,)('' '')(NP(NP(PRP he))(VP(VBZ says)))(. .))) (TOP(S(ADVP(RB Now))(NP(NP(NNS producers))(NN hope)(NNS prices))(VP(VBP have)(VP(VBD hit)(ADJP(JJ bottom))))(. .))) (TOP (POS They) (POS recently) (POS announced) (POS increases) (POS of) (POS a) (POS few) (POS cents) (POS a) (POS pound) (POS to) (POS take) (POS effect) (POS in) (POS the) (POS next) (POS several) (POS weeks) (POS .)) (TOP (POS No) (POS one) (POS knows) (POS ,) (POS however) (POS ,) (POS whether) (POS the) (POS new) (POS posted) (POS prices) (POS will) (POS stick) (POS once) (POS producers) (POS and) (POS customers) (POS start) (POS to) (POS haggle) (POS .)) (TOP (POS One) (POS doubter) (POS is) (POS George) (POS Krug) (POS ,) (POS a) (POS chemical-industry) (POS analyst) (POS at) (POS Oppenheimer) (POS &) (POS Co.) (POS and) (POS a) (POS bear) (POS on) (POS plastics) (POS stocks) (POS .)) (TOP (POS Noting) (POS others) (POS ') (POS estimates) (POS of) (POS when) (POS price) (POS increases) (POS can) (POS be) (POS sustained) (POS ,) (POS he) (POS remarks) (POS ,) (POS ``) (POS Some) (POS say) (POS October) (POS .)) (TOP(S(NP(DT Some))(VP(VBP say)(NP(NNP November)))(. .))) (TOP(S(S(NP(PRP I))(VP(VBP say)(NP(CD 1992))))(. .)('' ''))) (TOP (POS He) (POS argues) (POS that) (POS efforts) (POS to) (POS firm) (POS up) (POS prices) (POS will) (POS be) (POS undermined) (POS by) (POS producers) (POS ') (POS plans) (POS to) (POS expand) (POS production) (POS capacity) (POS .)) (TOP(S(S(NP(DT A)(JJ quick)(NN turnaround))(VP(VBZ is)(ADJP(JJ crucial)(PP(TO to)(NP(NP(NNP Quantum))(PP(IN because)(NP(PRP$ its)(NN cash)(NNS requirements))))))))(VP(VBP remain)(ADJP(JJ heavy)))(. .))) (TOP (POS The) (POS company) (POS is) (POS trying) (POS to) (POS carry) (POS out) (POS a) (POS three-year) (POS ,) (POS $) (POS 1.3) (POS billion) (POS plant-expansion) (POS program) (POS started) (POS this) (POS year) (POS .)) (TOP (POS At) (POS the) (POS same) (POS time) (POS ,) (POS its) (POS annual) (POS payments) (POS on) (POS long-term) (POS debt) (POS will) (POS more) (POS than) (POS double) (POS from) (POS a) (POS year) (POS ago) (POS to) (POS about) (POS $) (POS 240) (POS million) (POS ,) (POS largely) (POS because) (POS of) (POS debt) (POS taken) (POS on) (POS to) (POS pay) (POS a) (POS $) (POS 50-a-share) (POS special) (POS dividend) (POS earlier) (POS this) (POS year) (POS .)) (TOP (POS Quantum) (POS described) (POS the) (POS payout) (POS at) (POS the) (POS time) (POS as) (POS a) (POS way) (POS for) (POS it) (POS to) (POS share) (POS the) (POS bonanza) (POS with) (POS its) (POS holders) (POS ,) (POS because) (POS its) (POS stock) (POS price) (POS was) (POS n't) (POS reflecting) (POS the) (POS huge) (POS profit) (POS increases) (POS .)) (TOP(S(NP(DT Some)(NNS analysts))(VP(VBD saw)(NP(NP(DT the)(NN payment))(PP(IN as)(NP(DT an)(NN effort))))(ADVP(RB also))(S(VP(TO to)(VP(VB dispel)(NP(NN takeover)(NN speculation))))))(. .))) (TOP (POS Whether) (POS a) (POS cash) (POS crunch) (POS might) (POS eventually) (POS force) (POS the) (POS company) (POS to) (POS cut) (POS its) (POS quarterly) (POS dividend) (POS ,) (POS raised) (POS 36) (POS %) (POS to) (POS 75) (POS cents) (POS a) (POS share) (POS only) (POS a) (POS year) (POS ago) (POS ,) (POS has) (POS become) (POS a) (POS topic) (POS of) (POS intense) (POS speculation) (POS on) (POS Wall) (POS Street) (POS since) (POS Mr.) (POS Stookey) (POS deflected) (POS dividend) (POS questions) (POS in) (POS a) (POS Sept.) (POS 29) (POS meeting) (POS with) (POS analysts) (POS .)) (TOP (POS Some) (POS viewed) (POS his) (POS response) (POS --) (POS that) (POS company) (POS directors) (POS review) (POS the) (POS dividend) (POS regularly) (POS --) (POS as) (POS nothing) (POS more) (POS than) (POS the) (POS standard) (POS line) (POS from) (POS executives) (POS .)) (TOP (POS But) (POS others) (POS came) (POS away) (POS thinking) (POS he) (POS had) (POS given) (POS something) (POS less) (POS than) (POS his) (POS usual) (POS straight-from-the-shoulder) (POS performance) (POS .)) (TOP (POS In) (POS any) (POS case) (POS ,) (POS on) (POS the) (POS day) (POS of) (POS the) (POS meeting) (POS ,) (POS Quantum) (POS 's) (POS shares) (POS slid) (POS $) (POS 2.625) (POS to) (POS $) (POS 36.625) (POS in) (POS Big) (POS Board) (POS trading) (POS .)) (TOP (POS On) (POS top) (POS of) (POS everything) (POS else) (POS ,) (POS Quantum) (POS confronts) (POS a) (POS disaster) (POS at) (POS its) (POS plant) (POS in) (POS Morris) (POS ,) (POS Ill) (POS .)) (TOP (POS After) (POS an) (POS explosion) (POS idled) (POS the) (POS plant) (POS in) (POS June) (POS ,) (POS the) (POS company) (POS progressed) (POS in) (POS September) (POS to) (POS within) (POS 12) (POS hours) (POS of) (POS completing) (POS the) (POS drawn-out) (POS process) (POS of) (POS restarting) (POS it) (POS .)) (TOP(S(ADVP(RB Then))(NP(DT a)(JJ second)(NN explosion))(VP(VBD occurred))(. .))) (TOP(S(NP(CD Two)(NNS workers))(VP(VBD died)(S(CC and)(NP(CD six))(VP(VB remain)(PP(IN in)(NP(DT the)(NN hospital))))(. .))))) (TOP (POS This) (POS human) (POS toll) (POS adds) (POS the) (POS most) (POS painful) (POS dimension) (POS yet) (POS to) (POS the) (POS sudden) (POS change) (POS in) (POS Quantum) (POS 's) (POS fortunes) (POS .)) (TOP (POS Until) (POS this) (POS year) (POS ,) (POS the) (POS company) (POS had) (POS been) (POS steadily) (POS lowering) (POS its) (POS accident) (POS rate) (POS and) (POS picking) (POS up) (POS trade-group) (POS safety) (POS awards) (POS .)) (TOP (POS A) (POS prolonged) (POS production) (POS halt) (POS at) (POS the) (POS plant) (POS could) (POS introduce) (POS another) (POS imponderable) (POS into) (POS Quantum) (POS 's) (POS financial) (POS future) (POS .)) (TOP (POS When) (POS a) (POS plant) (POS has) (POS just) (POS been) (POS running) (POS flat) (POS out) (POS to) (POS meet) (POS demand) (POS ,) (POS calculating) (POS lost) (POS profit) (POS and) (POS thus) (POS claims) (POS under) (POS business-interruption) (POS insurance) (POS is) (POS straightforward) (POS .)) (TOP (POS But) (POS the) (POS numbers) (POS become) (POS trickier) (POS --) (POS and) (POS subject) (POS to) (POS dickering) (POS between) (POS insured) (POS and) (POS insurer) (POS --) (POS when) (POS demand) (POS is) (POS shifting) (POS .)) (TOP (POS ``) (POS You) (POS say) (POS you) (POS could) (POS have) (POS sold) (POS X) (POS percent) (POS of) (POS this) (POS product) (POS and) (POS Y) (POS percent) (POS of) (POS that) (POS ,) (POS '') (POS recalls) (POS Theodore) (POS Semegran) (POS ,) (POS an) (POS analyst) (POS at) (POS Shearson) (POS Lehman) (POS Hutton) (POS who) (POS went) (POS through) (POS this) (POS exercise) (POS during) (POS his) (POS former) (POS career) (POS as) (POS a) (POS chemical) (POS engineer) (POS .)) (TOP(S(`` ``)(CC And)(ADVP(RB then))(NP(PRP you))(ADVP(RB still))(VP(VBP have)(S(VP(TO to)(VP(VB negotiate)))))(. .)('' ''))) (TOP (POS Quantum) (POS hopes) (POS the) (POS Morris) (POS plant) (POS ,) (POS where) (POS limited) (POS production) (POS got) (POS under) (POS way) (POS last) (POS week) (POS ,) (POS will) (POS resume) (POS full) (POS operation) (POS by) (POS year) (POS 's) (POS end) (POS .)) (TOP (POS The) (POS plant) (POS usually) (POS accounts) (POS for) (POS 20) (POS %) (POS to) (POS 25) (POS %) (POS of) (POS Quantum) (POS 's) (POS polyethylene) (POS production) (POS and) (POS 50) (POS %) (POS of) (POS its) (POS ethylene) (POS production) (POS .)) (TOP(S(ADVP(RB Not))(NP(NN everything))(VP(VBZ looks)(ADJP(JJ grim)(PP(IN for)(NP(NNP Quantum)))))(. .))) (TOP (POS The) (POS plant) (POS expansion) (POS should) (POS strengthen) (POS the) (POS company) (POS 's) (POS sway) (POS in) (POS the) (POS polyethylene) (POS business) (POS ,) (POS where) (POS market) (POS share) (POS is) (POS often) (POS taken) (POS through) (POS sheer) (POS capacity) (POS .)) (TOP (POS By) (POS lifting) (POS ethylene) (POS production) (POS ,) (POS the) (POS expansion) (POS will) (POS also) (POS lower) (POS the) (POS company) (POS 's) (POS raw) (POS material) (POS costs) (POS .)) (TOP (POS Quantum) (POS is) (POS also) (POS tightening) (POS its) (POS grip) (POS on) (POS its) (POS one) (POS large) (POS business) (POS outside) (POS chemicals) (POS ,) (POS propane) (POS marketing) (POS .)) (TOP (POS Through) (POS a) (POS venture) (POS with) (POS its) (POS investment) (POS banker) (POS ,) (POS First) (POS Boston) (POS Corp.) (POS ,) (POS Quantum) (POS completed) (POS in) (POS August) (POS an) (POS acquisition) (POS of) (POS Petrolane) (POS Inc.) (POS in) (POS a) (POS transaction) (POS valued) (POS at) (POS $) (POS 1.18) (POS billion) (POS .)) (TOP(S(NP(NNP Petrolane))(VP(VBZ is)(NP(DT the)(JJ second-largest)(NN propane)(NN distributor))(PP(IN in)(NP(DT the)(NNP U.S.))))(. .))) (TOP(S(NP(DT The)(JJS largest)(, ,)(NNP Suburban)(NNP Propane))(, ,)(VP(VBD was)(RB already)(VP(VBN owned)(PP(IN by)(NP(NNP Quantum)))))(. .))) (TOP(S(ADVP(RB Still))(, ,)(NP(NNP Quantum))(VP(VBZ has)(NP(DT a)(NN crisis))(S(VP(TO to)(VP(VB get)(NP(JJ past)(NN right))(ADVP(RB now))))))(. .))) (TOP(S(S(NP(DT Some)(NNS analysts))(VP(VB speculate)(NP(DT the)(NN weakening)(NN stock))))(VP(MD may)(RB yet)(VP(VB attract)(NP(DT a)(NN suitor))))(. .))) (TOP (POS The) (POS name) (POS surfacing) (POS in) (POS rumors) (POS is) (POS British) (POS Petroleum) (POS Co.) (POS ,) (POS which) (POS is) (POS looking) (POS to) (POS expand) (POS its) (POS polyethylene) (POS business) (POS in) (POS the) (POS U.S.) (POS .)) (TOP (POS Asked) (POS about) (POS a) (POS bid) (POS for) (POS Quantum) (POS ,) (POS a) (POS BP) (POS spokesman) (POS says) (POS ,) (POS ``) (POS We) (POS pretty) (POS much) (POS have) (POS a) (POS policy) (POS of) (POS not) (POS commenting) (POS on) (POS rumors) (POS ,) (POS and) (POS I) (POS think) (POS that) (POS falls) (POS in) (POS that) (POS category) (POS .)) (TOP (POS RJR) (POS Nabisco) (POS Inc.) (POS is) (POS disbanding) (POS its) (POS division) (POS responsible) (POS for) (POS buying) (POS network) (POS advertising) (POS time) (POS ,) (POS just) (POS a) (POS month) (POS after) (POS moving) (POS 11) (POS of) (POS the) (POS group) (POS 's) (POS 14) (POS employees) (POS to) (POS New) (POS York) (POS from) (POS Atlanta) (POS .)) (TOP (POS A) (POS spokesman) (POS for) (POS the) (POS New) (POS York-based) (POS food) (POS and) (POS tobacco) (POS giant) (POS ,) (POS taken) (POS private) (POS earlier) (POS this) (POS year) (POS in) (POS a) (POS $) (POS 25) (POS billion) (POS leveraged) (POS buy-out) (POS by) (POS Kohlberg) (POS Kravis) (POS Roberts) (POS &) (POS Co.) (POS ,) (POS confirmed) (POS that) (POS it) (POS is) (POS shutting) (POS down) (POS the) (POS RJR) (POS Nabisco) (POS Broadcast) (POS unit) (POS ,) (POS and) (POS dismissing) (POS its) (POS 14) (POS employees) (POS ,) (POS in) (POS a) (POS move) (POS to) (POS save) (POS money) (POS .)) (TOP (POS The) (POS spokesman) (POS said) (POS RJR) (POS is) (POS discussing) (POS its) (POS network-buying) (POS plans) (POS with) (POS its) (POS two) (POS main) (POS advertising) (POS firms) (POS ,) (POS FCB\/Leber) (POS Katz) (POS and) (POS McCann) (POS Erickson) (POS .)) (TOP (POS ``) (POS We) (POS found) (POS with) (POS the) (POS size) (POS of) (POS our) (POS media) (POS purchases) (POS that) (POS an) (POS ad) (POS agency) (POS could) (POS do) (POS just) (POS as) (POS good) (POS a) (POS job) (POS at) (POS significantly) (POS lower) (POS cost) (POS ,) (POS '') (POS said) (POS the) (POS spokesman) (POS ,) (POS who) (POS declined) (POS to) (POS specify) (POS how) (POS much) (POS RJR) (POS spends) (POS on) (POS network) (POS television) (POS time) (POS .)) (TOP (POS An) (POS executive) (POS close) (POS to) (POS the) (POS company) (POS said) (POS RJR) (POS is) (POS spending) (POS about) (POS $) (POS 140) (POS million) (POS on) (POS network) (POS television) (POS time) (POS this) (POS year) (POS ,) (POS down) (POS from) (POS roughly) (POS $) (POS 200) (POS million) (POS last) (POS year) (POS .)) (TOP (POS The) (POS spokesman) (POS said) (POS the) (POS broadcast) (POS unit) (POS will) (POS be) (POS disbanded) (POS Dec.) (POS 1) (POS ,) (POS and) (POS the) (POS move) (POS wo) (POS n't) (POS affect) (POS RJR) (POS 's) (POS print) (POS ,) (POS radio) (POS and) (POS spot-television) (POS buying) (POS practices) (POS .)) (TOP (POS The) (POS broadcast) (POS group) (POS had) (POS been) (POS based) (POS in) (POS New) (POS York) (POS until) (POS a) (POS year) (POS ago) (POS ,) (POS when) (POS RJR) (POS 's) (POS previous) (POS management) (POS moved) (POS it) (POS to) (POS Atlanta) (POS ,) (POS the) (POS company) (POS 's) (POS headquarters) (POS before) (POS this) (POS summer) (POS .)) (TOP (POS One) (POS employee) (POS with) (POS the) (POS group) (POS said) (POS RJR) (POS moved) (POS 11) (POS employees) (POS of) (POS the) (POS group) (POS back) (POS to) (POS New) (POS York) (POS in) (POS September) (POS because) (POS ``) (POS there) (POS was) (POS supposed) (POS to) (POS be) (POS a) (POS future) (POS .) (POS '')) (TOP (POS He) (POS said) (POS the) (POS company) (POS hired) (POS three) (POS more) (POS buyers) (POS for) (POS the) (POS unit) (POS within) (POS the) (POS past) (POS two) (POS weeks) (POS ,) (POS wooing) (POS them) (POS from) (POS jobs) (POS with) (POS advertising) (POS agencies) (POS .)) (TOP (POS The) (POS RJR) (POS spokesman) (POS said) (POS the) (POS company) (POS moved) (POS the) (POS 11) (POS employees) (POS to) (POS New) (POS York) (POS last) (POS month) (POS because) (POS the) (POS group) (POS had) (POS then) (POS been) (POS in) (POS the) (POS midst) (POS of) (POS purchasing) (POS ad) (POS time) (POS for) (POS the) (POS networks) (POS ') (POS upcoming) (POS season) (POS .)) (TOP (POS ``) (POS The) (POS studies) (POS -LCB-) (POS on) (POS closing) (POS the) (POS unit) (POS -RCB-) (POS could) (POS n't) (POS be) (POS completed) (POS until) (POS now) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS The) (POS group) (POS 's) (POS president) (POS ,) (POS Peter) (POS Chrisanthopoulos) (POS ,) (POS was) (POS n't) (POS in) (POS his) (POS office) (POS Friday) (POS afternoon) (POS to) (POS comment) (POS .)) (TOP (POS The) (POS U.S.) (POS ,) (POS which) (POS is) (POS finalizing) (POS its) (POS steel-import) (POS quotas) (POS ,) (POS is) (POS allocating) (POS a) (POS larger) (POS share) (POS of) (POS its) (POS steel) (POS market) (POS to) (POS developing) (POS and) (POS newly) (POS industrialized) (POS countries) (POS which) (POS have) (POS relatively) (POS unsubsidized) (POS steel) (POS industries) (POS .)) (TOP (POS Meanwhile) (POS ,) (POS the) (POS U.S.) (POS has) (POS negotiated) (POS a) (POS significant) (POS cut) (POS in) (POS Japan) (POS 's) (POS steel) (POS quota) (POS ,) (POS and) (POS made) (POS only) (POS a) (POS minor) (POS increase) (POS to) (POS the) (POS steel) (POS allotment) (POS for) (POS the) (POS European) (POS Community) (POS .)) (TOP (POS Brazil) (POS ,) (POS similar) (POS to) (POS Mexico) (POS and) (POS South) (POS Korea) (POS ,) (POS is) (POS expected) (POS to) (POS negotiate) (POS a) (POS somewhat) (POS bigger) (POS share) (POS of) (POS the) (POS U.S.) (POS market) (POS than) (POS it) (POS had) (POS under) (POS the) (POS previous) (POS five-year) (POS steel) (POS quotas) (POS ,) (POS which) (POS expired) (POS Sept.) (POS 30) (POS .)) (TOP (POS Brazil) (POS and) (POS Venezuela) (POS are) (POS the) (POS only) (POS two) (POS countries) (POS that) (POS have) (POS n't) (POS completed) (POS steel) (POS talks) (POS with) (POS the) (POS U.S.) (POS for) (POS the) (POS year) (POS ending) (POS Oct.) (POS 1) (POS ,) (POS 1990) (POS .)) (TOP (POS In) (POS recent) (POS years) (POS ,) (POS U.S.) (POS steelmakers) (POS have) (POS supplied) (POS about) (POS 80) (POS %) (POS of) (POS the) (POS 100) (POS million) (POS tons) (POS of) (POS steel) (POS used) (POS annually) (POS by) (POS the) (POS nation) (POS .)) (TOP (POS Of) (POS the) (POS remaining) (POS 20) (POS %) (POS needed) (POS ,) (POS the) (POS steel-quota) (POS negotiations) (POS allocate) (POS about) (POS 15) (POS %) (POS to) (POS foreign) (POS suppliers) (POS ,) (POS with) (POS the) (POS difference) (POS supplied) (POS mainly) (POS by) (POS Canada) (POS --) (POS which) (POS is) (POS n't) (POS included) (POS in) (POS the) (POS quota) (POS program) (POS .)) (TOP (POS Other) (POS countries) (POS that) (POS do) (POS n't) (POS have) (POS formal) (POS steel) (POS quotas) (POS with) (POS the) (POS U.S.) (POS ,) (POS such) (POS as) (POS Taiwan) (POS ,) (POS Sweden) (POS and) (POS Argentina) (POS ,) (POS also) (POS have) (POS supplied) (POS steel) (POS .)) (TOP (POS Some) (POS of) (POS these) (POS countries) (POS have) (POS in) (POS recent) (POS years) (POS made) (POS informal) (POS agreements) (POS with) (POS the) (POS U.S.) (POS that) (POS are) (POS similar) (POS to) (POS quotas) (POS .)) (TOP (POS The) (POS Bush) (POS administration) (POS earlier) (POS this) (POS year) (POS said) (POS it) (POS would) (POS extend) (POS steel) (POS quotas) (POS ,) (POS known) (POS as) (POS voluntary) (POS restraint) (POS agreements) (POS ,) (POS until) (POS March) (POS 31) (POS ,) (POS 1992) (POS .)) (TOP (POS It) (POS also) (POS said) (POS it) (POS would) (POS use) (POS that) (POS two-and-a-half) (POS year) (POS period) (POS to) (POS work) (POS toward) (POS an) (POS international) (POS consensus) (POS on) (POS freeing) (POS up) (POS the) (POS international) (POS steel) (POS trade) (POS ,) (POS which) (POS has) (POS been) (POS notoriously) (POS managed) (POS ,) (POS subsidized) (POS and) (POS protected) (POS by) (POS governments) (POS .)) (TOP (POS The) (POS U.S.) (POS termed) (POS its) (POS plan) (POS ,) (POS a) (POS ``) (POS trade) (POS liberalization) (POS program) (POS ,) (POS '') (POS despite) (POS the) (POS fact) (POS that) (POS it) (POS is) (POS merely) (POS an) (POS extension) (POS .)) (TOP (POS Mexico) (POS ,) (POS which) (POS was) (POS one) (POS of) (POS the) (POS first) (POS countries) (POS to) (POS conclude) (POS its) (POS steel) (POS talks) (POS with) (POS the) (POS U.S.) (POS ,) (POS virtually) (POS doubled) (POS its) (POS quota) (POS to) (POS 0.95) (POS %) (POS of) (POS the) (POS U.S.) (POS steel) (POS market) (POS from) (POS 0.48) (POS %) (POS under) (POS the) (POS previous) (POS quotas) (POS .)) (TOP (POS South) (POS Korea) (POS ,) (POS which) (POS had) (POS 1.9) (POS %) (POS under) (POS the) (POS previous) (POS quotas) (POS ,) (POS is) (POS set) (POS to) (POS get) (POS a) (POS small) (POS increase) (POS to) (POS about) (POS 1.95) (POS %) (POS .)) (TOP (POS That) (POS increase) (POS rises) (POS to) (POS slightly) (POS more) (POS than) (POS 2) (POS %) (POS of) (POS the) (POS U.S.) (POS market) (POS if) (POS a) (POS joint) (POS Korean-U.S.) (POS steel) (POS project) (POS is) (POS included) (POS .)) (TOP (POS Meanwhile) (POS ,) (POS Brazil) (POS is) (POS expected) (POS to) (POS increase) (POS its) (POS allowance) (POS from) (POS the) (POS 1.43) (POS %) (POS share) (POS it) (POS has) (POS had) (POS in) (POS recent) (POS years) (POS .)) (TOP (POS The) (POS EC) (POS and) (POS Japan) (POS --) (POS the) (POS U.S.) (POS 's) (POS largest) (POS steel) (POS suppliers) (POS --) (POS have) (POS n't) (POS been) (POS filling) (POS their) (POS quotas) (POS to) (POS the) (POS full) (POS extent) (POS .)) (TOP (POS The) (POS EC) (POS steel) (POS industry) (POS ,) (POS which) (POS has) (POS been) (POS coping) (POS with) (POS strong) (POS European) (POS demand) (POS ,) (POS has) (POS been) (POS supplying) (POS about) (POS 5) (POS %) (POS of) (POS the) (POS U.S.) (POS market) (POS compared) (POS with) (POS recent) (POS quotas) (POS of) (POS about) (POS 6.7) (POS %) (POS .)) (TOP (POS Japan) (POS has) (POS been) (POS shipping) (POS steel) (POS to) (POS total) (POS about) (POS 4.5) (POS %) (POS of) (POS the) (POS U.S.) (POS market) (POS compared) (POS with) (POS a) (POS quota) (POS of) (POS 5.9) (POS %) (POS .)) (TOP (POS In) (POS the) (POS recent) (POS talks) (POS ,) (POS the) (POS EC) (POS had) (POS its) (POS quota) (POS increased) (POS about) (POS 300,000) (POS tons) (POS ,) (POS to) (POS 7) (POS %) (POS of) (POS the) (POS U.S.) (POS market) (POS from) (POS 6.7) (POS %) (POS in) (POS 1988) (POS .)) (TOP(S(CC But)(NP(PRP$ its)(NN quota))(VP(VBZ has)(VP(VBN been)(PP(IN as)(NP(JJ high)(PP(IN as)(NP(CD 6.9)(NN %)))(PP(IN in)(NP(CD 1984)))))))(. .))) (TOP (POS Japan) (POS ,) (POS however) (POS ,) (POS has) (POS agreed) (POS to) (POS cut) (POS its) (POS quota) (POS to) (POS about) (POS 5) (POS %) (POS from) (POS 5.9) (POS %) (POS previously) (POS .)) (TOP (POS Japan) (POS ,) (POS the) (POS EC) (POS ,) (POS Brazil) (POS ,) (POS Mexico) (POS and) (POS South) (POS Korea) (POS provide) (POS about) (POS 80) (POS %) (POS of) (POS the) (POS steel) (POS imported) (POS to) (POS the) (POS U.S.) (POS under) (POS the) (POS quota) (POS program) (POS .)) (TOP (POS The) (POS balance) (POS is) (POS supplied) (POS by) (POS a) (POS host) (POS of) (POS smaller) (POS exporters) (POS ,) (POS such) (POS as) (POS Australia) (POS and) (POS Venezuela) (POS .)) (TOP (POS The) (POS U.S.) (POS had) (POS about) (POS an) (POS extra) (POS 2) (POS %) (POS of) (POS the) (POS domestic) (POS steel) (POS market) (POS to) (POS give) (POS to) (POS foreign) (POS suppliers) (POS in) (POS its) (POS quota) (POS talks) (POS .)) (TOP (POS That) (POS was) (POS essentially) (POS made) (POS up) (POS of) (POS a) (POS 1) (POS %) (POS increase) (POS in) (POS the) (POS overall) (POS quota) (POS program) (POS and) (POS 1) (POS %) (POS from) (POS cutting) (POS Japan) (POS 's) (POS allowance) (POS .)) (TOP (POS Negotiators) (POS from) (POS the) (POS White) (POS House) (POS trade) (POS office) (POS will) (POS repeat) (POS these) (POS quota) (POS negotiations) (POS next) (POS year) (POS when) (POS they) (POS will) (POS have) (POS another) (POS 1) (POS %) (POS of) (POS the) (POS U.S.) (POS steel) (POS market) (POS to) (POS allocate) (POS .)) (TOP (POS These) (POS optional) (POS 1%-a-year) (POS increases) (POS to) (POS the) (POS steel) (POS quota) (POS program) (POS are) (POS built) (POS into) (POS the) (POS Bush) (POS administration) (POS 's) (POS steel-quota) (POS program) (POS to) (POS give) (POS its) (POS negotiators) (POS leverage) (POS with) (POS foreign) (POS steel) (POS suppliers) (POS to) (POS try) (POS to) (POS get) (POS them) (POS to) (POS withdraw) (POS subsidies) (POS and) (POS protectionism) (POS from) (POS their) (POS own) (POS steel) (POS industries) (POS .)) (TOP (POS Elcotel) (POS Inc.) (POS expects) (POS fiscal) (POS second-quarter) (POS earnings) (POS to) (POS trail) (POS 1988) (POS results) (POS ,) (POS but) (POS anticipates) (POS that) (POS several) (POS new) (POS products) (POS will) (POS lead) (POS to) (POS a) (POS ``) (POS much) (POS stronger) (POS '') (POS performance) (POS in) (POS its) (POS second) (POS half) (POS .)) (TOP (POS Elcotel) (POS ,) (POS a) (POS telecommunications) (POS company) (POS ,) (POS had) (POS net) (POS income) (POS of) (POS $) (POS 272,000) (POS ,) (POS or) (POS five) (POS cents) (POS a) (POS share) (POS ,) (POS in) (POS its) (POS year-earlier) (POS second) (POS quarter) (POS ,) (POS ended) (POS Sept.) (POS 30) (POS .)) (TOP(S(NP(NN Revenue))(VP(VBD totaled)(NP(QP($ $)(CD 5)(CD million))))(. .))) (TOP (POS George) (POS Pierce) (POS ,) (POS chairman) (POS and) (POS chief) (POS executive) (POS officer) (POS ,) (POS said) (POS in) (POS an) (POS interview) (POS that) (POS earnings) (POS in) (POS the) (POS most) (POS recent) (POS quarter) (POS will) (POS be) (POS about) (POS two) (POS cents) (POS a) (POS share) (POS on) (POS revenue) (POS of) (POS just) (POS under) (POS $) (POS 4) (POS million) (POS .)) (TOP (POS The) (POS lower) (POS results) (POS ,) (POS Mr.) (POS Pierce) (POS said) (POS ,) (POS reflect) (POS a) (POS 12-month) (POS decline) (POS in) (POS industry) (POS sales) (POS of) (POS privately) (POS owned) (POS pay) (POS telephones) (POS ,) (POS Elcotel) (POS 's) (POS primary) (POS business) (POS .)) (TOP (POS Although) (POS Mr.) (POS Pierce) (POS expects) (POS that) (POS line) (POS of) (POS business) (POS to) (POS strengthen) (POS in) (POS the) (POS next) (POS year) (POS ,) (POS he) (POS said) (POS Elcotel) (POS will) (POS also) (POS benefit) (POS from) (POS moving) (POS into) (POS other) (POS areas) (POS .)) (TOP (POS Foremost) (POS among) (POS those) (POS is) (POS the) (POS company) (POS 's) (POS entrance) (POS into) (POS the) (POS public) (POS facsimile) (POS business) (POS ,) (POS Mr.) (POS Pierce) (POS said) (POS .)) (TOP (POS Within) (POS the) (POS next) (POS year) (POS ,) (POS Elcotel) (POS expects) (POS to) (POS place) (POS 10,000) (POS fax) (POS machines) (POS ,) (POS made) (POS by) (POS Minolta) (POS in) (POS Japan) (POS ,) (POS in) (POS hotels) (POS ,) (POS municipal) (POS buildings) (POS ,) (POS drugstores) (POS and) (POS other) (POS public) (POS settings) (POS around) (POS the) (POS country) (POS .)) (TOP (POS Elcotel) (POS will) (POS provide) (POS a) (POS credit-card) (POS reader) (POS for) (POS the) (POS machines) (POS to) (POS collect) (POS ,) (POS store) (POS and) (POS forward) (POS billing) (POS data) (POS .)) (TOP (POS Mr.) (POS Pierce) (POS said) (POS Elcotel) (POS should) (POS realize) (POS a) (POS minimum) (POS of) (POS $) (POS 10) (POS of) (POS recurring) (POS net) (POS earnings) (POS for) (POS each) (POS machine) (POS each) (POS month) (POS .)) (TOP (POS Elcotel) (POS has) (POS also) (POS developed) (POS an) (POS automatic) (POS call) (POS processor) (POS that) (POS will) (POS make) (POS further) (POS use) (POS of) (POS the) (POS company) (POS 's) (POS system) (POS for) (POS automating) (POS and) (POS handling) (POS credit-card) (POS calls) (POS and) (POS collect) (POS calls) (POS .)) (TOP (POS Automatic) (POS call) (POS processors) (POS will) (POS provide) (POS that) (POS system) (POS for) (POS virtually) (POS any) (POS telephone) (POS ,) (POS Mr.) (POS Pierce) (POS said) (POS ,) (POS not) (POS just) (POS phones) (POS produced) (POS by) (POS Elcotel) (POS .)) (TOP (POS The) (POS company) (POS will) (POS also) (POS be) (POS producing) (POS a) (POS new) (POS line) (POS of) (POS convenience) (POS telephones) (POS ,) (POS which) (POS do) (POS n't) (POS accept) (POS coins) (POS ,) (POS for) (POS use) (POS in) (POS hotel) (POS lobbies) (POS ,) (POS office) (POS lobbies) (POS ,) (POS hospitality) (POS lounges) (POS and) (POS similar) (POS settings) (POS .)) (TOP (POS Mr.) (POS Pierce) (POS estimated) (POS that) (POS the) (POS processors) (POS and) (POS convenience) (POS phones) (POS would) (POS produce) (POS about) (POS $) (POS 5) (POS of) (POS recurring) (POS net) (POS earnings) (POS for) (POS each) (POS machine) (POS each) (POS month) (POS .)) (TOP (POS Britain) (POS 's) (POS retail) (POS price) (POS index) (POS rose) (POS 0.7) (POS %) (POS in) (POS September) (POS from) (POS August) (POS and) (POS was) (POS up) (POS 7.6) (POS %) (POS for) (POS the) (POS year) (POS ,) (POS the) (POS Central) (POS Statistical) (POS Office) (POS said) (POS .)) (TOP (POS Quest) (POS Medical) (POS Inc.) (POS said) (POS it) (POS adopted) (POS a) (POS shareholders) (POS ') (POS rights) (POS plan) (POS in) (POS which) (POS rights) (POS to) (POS purchase) (POS shares) (POS of) (POS common) (POS stock) (POS will) (POS be) (POS distributed) (POS as) (POS a) (POS dividend) (POS to) (POS shareholders) (POS of) (POS record) (POS as) (POS of) (POS Oct.) (POS 23) (POS .)) (TOP (POS The) (POS company) (POS said) (POS the) (POS plan) (POS was) (POS n't) (POS adopted) (POS in) (POS response) (POS to) (POS any) (POS known) (POS offers) (POS for) (POS Quest) (POS ,) (POS a) (POS maker) (POS and) (POS marketer) (POS of) (POS hospital) (POS products) (POS .)) (TOP (POS The) (POS rights) (POS allow) (POS shareholders) (POS to) (POS purchase) (POS Quest) (POS stock) (POS at) (POS a) (POS discount) (POS if) (POS any) (POS person) (POS or) (POS group) (POS acquires) (POS more) (POS than) (POS 15) (POS %) (POS of) (POS the) (POS company) (POS 's) (POS common) (POS stock) (POS or) (POS announces) (POS a) (POS tender) (POS offer) (POS .)) (TOP(S(NP(NNP(N Measuring))(NNS cups))(VP(MD may)(RB soon)(VP(VB be)(VP(VBN replaced)(PP(IN by)(NP(NP(NNP(N tablespoons)))(PP(IN in)(NP(DT the)(NN laundry)(NN room))))))))(. .))) (TOP (POS Procter) (POS &) (POS Gamble) (POS Co.) (POS plans) (POS to) (POS begin) (POS testing) (POS next) (POS month) (POS a) (POS superconcentrated) (POS detergent) (POS that) (POS will) (POS require) (POS only) (POS a) (POS few) (POS spoonfuls) (POS per) (POS washload) (POS .)) (TOP (POS The) (POS move) (POS stems) (POS from) (POS lessons) (POS learned) (POS in) (POS Japan) (POS where) (POS local) (POS competitors) (POS have) (POS had) (POS phenomenal) (POS success) (POS with) (POS concentrated) (POS soapsuds) (POS .)) (TOP (POS It) (POS also) (POS marks) (POS P&G) (POS 's) (POS growing) (POS concern) (POS that) (POS its) (POS Japanese) (POS rivals) (POS ,) (POS such) (POS as) (POS Kao) (POS Corp.) (POS ,) (POS may) (POS bring) (POS their) (POS superconcentrates) (POS to) (POS the) (POS U.S.) (POS .)) (TOP (POS The) (POS Cincinnati) (POS consumer-products) (POS giant) (POS got) (POS clobbered) (POS two) (POS years) (POS ago) (POS in) (POS Japan) (POS when) (POS Kao) (POS introduced) (POS a) (POS powerful) (POS detergent) (POS ,) (POS called) (POS Attack) (POS ,) (POS which) (POS quickly) (POS won) (POS a) (POS 30) (POS %) (POS stake) (POS in) (POS the) (POS Japanese) (POS markets) (POS .)) (TOP (POS ``) (POS They) (POS do) (POS n't) (POS want) (POS to) (POS get) (POS caught) (POS again) (POS ,) (POS '') (POS says) (POS one) (POS industry) (POS watcher) (POS .)) (TOP (POS Retailers) (POS in) (POS Phoenix) (POS ,) (POS Ariz.) (POS ,) (POS say) (POS P&G) (POS 's) (POS new) (POS powdered) (POS detergent) (POS --) (POS to) (POS be) (POS called) (POS Cheer) (POS with) (POS Color) (POS Guard) (POS --) (POS will) (POS be) (POS on) (POS shelves) (POS in) (POS that) (POS market) (POS by) (POS early) (POS November) (POS .)) (TOP(S(NP(DT A)(NNP P&G)(NN spokeswoman))(VP(VBD confirmed)(SBAR(S(NP(NP(DT that)(NNS shipments))(PP(TO to)(NP(NNP Phoenix))))(VP(VBD started)(NP(JJ late)(JJ last)(NN month))))))(. .))) (TOP(S(NP(PRP She))(VP(VBD said)(SBAR(S(NP(DT the)(NN company))(VP(MD will)(NP(NP(NN study)(NNS results))(PP(IN from)(NP(DT this)(NN market))))(PP(IN before)(S(VP(VBG expanding)(PP(TO to)(NP(NNS others))))))))))(. .))) (TOP(S(NP(NNP(N Superconcentrates)))(VP(VBP are)(ADJP(RB n't)(RB entirely)(JJ new)(PP(IN for)(NP(NNP P&G)))))(. .))) (TOP (POS The) (POS company) (POS introduced) (POS a) (POS superconcentrated) (POS Lemon) (POS Cheer) (POS in) (POS Japan) (POS after) (POS watching) (POS the) (POS success) (POS of) (POS Attack) (POS .)) (TOP (POS When) (POS Attack) (POS hit) (POS the) (POS shelves) (POS in) (POS 1987) (POS ,) (POS P&G) (POS 's) (POS share) (POS of) (POS the) (POS Japanese) (POS market) (POS fell) (POS to) (POS about) (POS 8) (POS %) (POS from) (POS more) (POS than) (POS 20) (POS %) (POS .)) (TOP (POS With) (POS the) (POS help) (POS of) (POS Lemon) (POS Cheer) (POS ,) (POS P&G) (POS 's) (POS share) (POS is) (POS now) (POS estimated) (POS to) (POS be) (POS 12) (POS %) (POS .)) (TOP (POS While) (POS the) (POS Japanese) (POS have) (POS embraced) (POS the) (POS compact) (POS packaging) (POS and) (POS convenience) (POS of) (POS concentrated) (POS products) (POS ,) (POS the) (POS true) (POS test) (POS for) (POS P&G) (POS will) (POS be) (POS in) (POS the) (POS $) (POS 4) (POS billion) (POS U.S.) (POS detergent) (POS market) (POS ,) (POS where) (POS growth) (POS is) (POS slow) (POS and) (POS liquids) (POS have) (POS gained) (POS prominence) (POS over) (POS powders) (POS .)) (TOP (POS The) (POS company) (POS may) (POS have) (POS chosen) (POS to) (POS market) (POS the) (POS product) (POS under) (POS the) (POS Cheer) (POS name) (POS since) (POS it) (POS 's) (POS already) (POS expanded) (POS its) (POS best-selling) (POS Tide) (POS into) (POS 16) (POS different) (POS varieties) (POS ,) (POS including) (POS this) (POS year) (POS 's) (POS big) (POS hit) (POS ,) (POS Tide) (POS with) (POS Bleach) (POS .)) (TOP (POS With) (POS superconcentrates) (POS ,) (POS however) (POS ,) (POS it) (POS is) (POS n't) (POS always) (POS easy) (POS to) (POS persuade) (POS consumers) (POS that) (POS less) (POS is) (POS more) (POS ;) (POS many) (POS people) (POS tend) (POS to) (POS dump) (POS too) (POS much) (POS detergent) (POS into) (POS the) (POS washing) (POS machine) (POS ,) (POS believing) (POS that) (POS it) (POS takes) (POS a) (POS cup) (POS of) (POS powder) (POS to) (POS really) (POS clean) (POS the) (POS laundry) (POS .)) (TOP (POS In) (POS the) (POS early) (POS 1980s) (POS ,) (POS P&G) (POS tried) (POS to) (POS launch) (POS here) (POS a) (POS concentrated) (POS detergent) (POS under) (POS the) (POS Ariel) (POS brand) (POS name) (POS that) (POS it) (POS markets) (POS in) (POS Europe) (POS .)) (TOP (POS But) (POS the) (POS product) (POS ,) (POS which) (POS was) (POS n't) (POS as) (POS concentrated) (POS as) (POS the) (POS new) (POS Cheer) (POS ,) (POS bombed) (POS in) (POS a) (POS market) (POS test) (POS in) (POS Denver) (POS and) (POS was) (POS dropped) (POS .)) (TOP (POS P&G) (POS and) (POS others) (POS also) (POS have) (POS tried) (POS repeatedly) (POS to) (POS hook) (POS consumers) (POS on) (POS detergent) (POS and) (POS fabric) (POS softener) (POS combinations) (POS in) (POS pouches) (POS ,) (POS but) (POS they) (POS have) (POS n't) (POS sold) (POS well) (POS ,) (POS despite) (POS the) (POS convenience) (POS .)) (TOP (POS But) (POS P&G) (POS contends) (POS the) (POS new) (POS Cheer) (POS is) (POS a) (POS unique) (POS formula) (POS that) (POS also) (POS offers) (POS an) (POS ingredient) (POS that) (POS prevents) (POS colors) (POS from) (POS fading) (POS .)) (TOP (POS And) (POS retailers) (POS are) (POS expected) (POS to) (POS embrace) (POS the) (POS product) (POS ,) (POS in) (POS part) (POS because) (POS it) (POS will) (POS take) (POS up) (POS less) (POS shelf) (POS space) (POS .)) (TOP (POS ``) (POS When) (POS shelf) (POS space) (POS was) (POS cheap) (POS ,) (POS bigger) (POS was) (POS better) (POS ,) (POS '') (POS says) (POS Hugh) (POS Zurkuhlen) (POS ,) (POS an) (POS analyst) (POS at) (POS Salomon) (POS Bros) (POS .)) (TOP (POS But) (POS with) (POS so) (POS many) (POS brands) (POS vying) (POS for) (POS space) (POS ,) (POS that) (POS 's) (POS no) (POS longer) (POS the) (POS case) (POS .)) (TOP (POS If) (POS the) (POS new) (POS Cheer) (POS sells) (POS well) (POS ,) (POS the) (POS trend) (POS toward) (POS smaller) (POS packaging) (POS is) (POS likely) (POS to) (POS accelerate) (POS as) (POS competitors) (POS follow) (POS with) (POS their) (POS own) (POS superconcentrates) (POS .)) (TOP (POS Then) (POS retailers) (POS ``) (POS will) (POS probably) (POS push) (POS the) (POS -LCB-) (POS less-established) (POS -RCB-) (POS brands) (POS out) (POS altogether) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP (POS Competition) (POS is) (POS bound) (POS to) (POS get) (POS tougher) (POS if) (POS Kao) (POS introduces) (POS a) (POS product) (POS like) (POS Attack) (POS in) (POS the) (POS U.S.) (POS .)) (TOP (POS To) (POS be) (POS sure) (POS ,) (POS Kao) (POS would) (POS n't) (POS have) (POS an) (POS easy) (POS time) (POS taking) (POS U.S.) (POS market) (POS share) (POS away) (POS from) (POS the) (POS mighty) (POS P&G) (POS ,) (POS which) (POS has) (POS about) (POS 23) (POS %) (POS of) (POS the) (POS market) (POS .)) (TOP (POS Kao) (POS officials) (POS previously) (POS have) (POS said) (POS they) (POS are) (POS interested) (POS in) (POS selling) (POS detergents) (POS in) (POS the) (POS U.S.) (POS ,) (POS but) (POS so) (POS far) (POS the) (POS company) (POS has) (POS focused) (POS on) (POS acquisitions) (POS ,) (POS such) (POS as) (POS last) (POS year) (POS 's) (POS purchase) (POS of) (POS Andrew) (POS Jergens) (POS Co.) (POS ,) (POS a) (POS Cincinnati) (POS hand-lotion) (POS maker) (POS .)) (TOP(S(NP(PRP It))(ADVP(RB also))(VP(VBZ has)(NP(DT a)(ADJP product-testing)(NN facility))(PP(IN in)(NP(NNP California))))(. .))) (TOP (POS Some) (POS believe) (POS P&G) (POS 's) (POS interest) (POS in) (POS a) (POS superconcentrated) (POS detergent) (POS goes) (POS beyond) (POS the) (POS concern) (POS for) (POS the) (POS Japanese) (POS .)) (TOP (POS ``) (POS This) (POS is) (POS something) (POS P&G) (POS would) (POS do) (POS with) (POS or) (POS without) (POS Kao) (POS ,) (POS '') (POS says) (POS Mr.) (POS Zurkuhlen) (POS .)) (TOP (POS With) (POS economic) (POS tension) (POS between) (POS the) (POS U.S.) (POS and) (POS Japan) (POS worsening) (POS ,) (POS many) (POS Japanese) (POS had) (POS feared) (POS last) (POS week) (POS 's) (POS visit) (POS from) (POS U.S.) (POS Trade) (POS Representative) (POS Carla) (POS Hills) (POS .)) (TOP (POS They) (POS expected) (POS a) (POS new) (POS barrage) (POS of) (POS demands) (POS that) (POS Japan) (POS do) (POS something) (POS quickly) (POS to) (POS reduce) (POS its) (POS trade) (POS surplus) (POS with) (POS the) (POS U.S.) (POS .)) (TOP (POS Instead) (POS ,) (POS they) (POS got) (POS a) (POS discussion) (POS of) (POS the) (POS need) (POS for) (POS the) (POS U.S.) (POS and) (POS Japan) (POS to) (POS work) (POS together) (POS and) (POS of) (POS the) (POS importance) (POS of) (POS the) (POS long-term) (POS view) (POS .)) (TOP (POS Mrs.) (POS Hills) (POS ') (POS first) (POS trip) (POS to) (POS Japan) (POS as) (POS America) (POS 's) (POS chief) (POS trade) (POS negotiator) (POS had) (POS a) (POS completely) (POS different) (POS tone) (POS from) (POS last) (POS month) (POS 's) (POS visit) (POS by) (POS Commerce) (POS Secretary) (POS Robert) (POS A.) (POS Mosbacher) (POS .)) (TOP (POS Mr.) (POS Mosbacher) (POS called) (POS for) (POS concrete) (POS results) (POS by) (POS next) (POS spring) (POS in) (POS negotiations) (POS over) (POS fundamental) (POS Japanese) (POS business) (POS practices) (POS that) (POS supposedly) (POS inhibit) (POS free) (POS trade) (POS .)) (TOP (POS He) (POS said) (POS such) (POS results) (POS should) (POS be) (POS ``) (POS measurable) (POS in) (POS dollars) (POS and) (POS cents) (POS '') (POS in) (POS reducing) (POS the) (POS U.S.) (POS trade) (POS deficit) (POS with) (POS Japan) (POS .)) (TOP (POS But) (POS Mrs.) (POS Hills) (POS ,) (POS speaking) (POS at) (POS a) (POS breakfast) (POS meeting) (POS of) (POS the) (POS American) (POS Chamber) (POS of) (POS Commerce) (POS in) (POS Japan) (POS on) (POS Saturday) (POS ,) (POS stressed) (POS that) (POS the) (POS objective) (POS ``) (POS is) (POS not) (POS to) (POS get) (POS definitive) (POS action) (POS by) (POS spring) (POS or) (POS summer) (POS ,) (POS it) (POS is) (POS rather) (POS to) (POS have) (POS a) (POS blueprint) (POS for) (POS action) (POS .) (POS '')) (TOP (POS She) (POS added) (POS that) (POS she) (POS expected) (POS ``) (POS perhaps) (POS to) (POS have) (POS a) (POS down) (POS payment) (POS ...) (POS some) (POS small) (POS step) (POS to) (POS convince) (POS the) (POS American) (POS people) (POS and) (POS the) (POS Japanese) (POS people) (POS that) (POS we) (POS 're) (POS moving) (POS in) (POS earnest) (POS .) (POS '')) (TOP(S(SBAR(WHADVP(WRB How))(S(NP(JJ such)(NNS remarks))(VP(VB translate)(PP(IN into)(NP(NN policy))))))(VP(MD wo)(RB n't)(VP(VB become)(ADJP(JJ clear)(PP(IN for)(NP(NNS months))))))(. .))) (TOP (POS American) (POS and) (POS Japanese) (POS officials) (POS offered) (POS several) (POS theories) (POS for) (POS the) (POS difference) (POS in) (POS approach) (POS betwen) (POS Mr.) (POS Mosbacher) (POS and) (POS Mrs.) (POS Hills) (POS .)) (TOP(S(NP(JJ Many))(VP(VBD called)(SBAR(S(NP(PRP it))(VP(ADVP(RB simply))(NP(DT a)(NN contrast))(PP(IN in)(NP(NNS styles)))))))(. .))) (TOP(S(CC But)(NP(DT some))(VP(VBD saw)(NP(PRP it))(PP(IN as)(NP(DT a)(JJ classic)(VBG negotiating)(NN tactic))))(. .))) (TOP (POS Others) (POS said) (POS the) (POS Bush) (POS administration) (POS may) (POS feel) (POS the) (POS rhetoric) (POS on) (POS both) (POS sides) (POS is) (POS getting) (POS out) (POS of) (POS hand) (POS .)) (TOP (POS And) (POS some) (POS said) (POS it) (POS reflected) (POS the) (POS growing) (POS debate) (POS in) (POS Washington) (POS over) (POS pursuing) (POS free) (POS trade) (POS with) (POS Japan) (POS versus) (POS some) (POS kind) (POS of) (POS managed) (POS trade) (POS .)) (TOP (POS Asked) (POS to) (POS compare) (POS her) (POS visit) (POS to) (POS Mr.) (POS Mosbacher) (POS 's) (POS ,) (POS Mrs.) (POS Hills) (POS replied) (POS :) (POS ``) (POS I) (POS did) (POS n't) (POS hear) (POS every) (POS word) (POS he) (POS spoke) (POS ,) (POS but) (POS as) (POS a) (POS general) (POS proposition) (POS ,) (POS I) (POS think) (POS we) (POS have) (POS a) (POS very) (POS consistent) (POS trade) (POS strategy) (POS in) (POS the) (POS Bush) (POS administration) (POS .) (POS '')) (TOP (POS Yet) (POS more) (POS than) (POS one) (POS American) (POS official) (POS who) (POS sat) (POS in) (POS with) (POS her) (POS during) (POS three) (POS days) (POS of) (POS talks) (POS with) (POS Japanese) (POS officials) (POS said) (POS her) (POS tone) (POS often) (POS was) (POS surprisingly) (POS ``) (POS conciliatory) (POS .) (POS '')) (TOP (POS ``) (POS I) (POS think) (POS my) (POS line) (POS has) (POS been) (POS very) (POS consistent) (POS ,) (POS '') (POS Mrs.) (POS Hills) (POS said) (POS at) (POS a) (POS news) (POS conference) (POS Saturday) (POS afternoon) (POS .)) (TOP (POS ``) (POS I) (POS am) (POS painted) (POS sometimes) (POS as) (POS ferocious) (POS ,) (POS perhaps) (POS because) (POS I) (POS have) (POS a) (POS ferocious) (POS list) (POS of) (POS statutes) (POS to) (POS implement) (POS .)) (TOP(S(NP(PRP I))(VP(VBP do)(RB n't)(VP(VBP feel)(ADJP(RB very)(JJ ferocious))))(. .))) (TOP(S(NP(PRP I))(VP(VBP do)(RB n't)(VP(VBP feel)(ADJP(RB either)(JJ hard)(CC or)(JJ soft))))(. .))) (TOP(S(S(NP(PRP I))(VP(VBP feel)(VP(VBN committed)(PP(TO to)(NP(NP(DT the)(NN program))(PP(IN of)(NP(NP(NN opening)(NNS markets))(CC and)(VBG expanding)(NN trade))))))))(. .)('' ''))) (TOP (POS When) (POS she) (POS met) (POS the) (POS local) (POS press) (POS for) (POS the) (POS first) (POS time) (POS on) (POS Friday) (POS ,) (POS Mrs.) (POS Hills) (POS firmly) (POS reiterated) (POS the) (POS need) (POS for) (POS progress) (POS in) (POS removing) (POS barriers) (POS to) (POS trade) (POS in) (POS forest) (POS products) (POS ,) (POS satellites) (POS and) (POS supercomputers) (POS ,) (POS three) (POS areas) (POS targeted) (POS under) (POS the) (POS Super) (POS 301) (POS provision) (POS of) (POS the) (POS 1988) (POS trade) (POS bill) (POS .)) (TOP(S(NP(PRP She))(VP(VBD highlighted)(SBAR(S(NP(NP(JJ exclusionary)(NN business)(NNS practices))(PP(IN that)(NP(DT the)(NNP U.S.)(NN government))))(VP(VBZ has)(VP(VBN identified))))))(. .))) (TOP (POS But) (POS her) (POS main) (POS thrust) (POS was) (POS to) (POS promote) (POS the) (POS importance) (POS of) (POS world-wide) (POS free) (POS trade) (POS and) (POS open) (POS competition) (POS .)) (TOP (POS She) (POS said) (POS the) (POS trade) (POS imbalance) (POS was) (POS mainly) (POS due) (POS to) (POS macroeconomic) (POS factors) (POS and) (POS should) (POS n't) (POS be) (POS tackled) (POS by) (POS setting) (POS quantitative) (POS targets) (POS .)) (TOP (POS At) (POS her) (POS news) (POS conference) (POS for) (POS Japanese) (POS reporters) (POS ,) (POS one) (POS economics) (POS journalist) (POS summed) (POS up) (POS the) (POS Japanese) (POS sense) (POS of) (POS relief) (POS .)) (TOP (POS ``) (POS My) (POS impression) (POS was) (POS that) (POS you) (POS would) (POS be) (POS a) (POS scary) (POS old) (POS lady) (POS ,) (POS '') (POS he) (POS said) (POS ,) (POS drawing) (POS a) (POS few) (POS nervous) (POS chuckles) (POS from) (POS his) (POS colleagues) (POS .)) (TOP (POS ``) (POS But) (POS I) (POS am) (POS relieved) (POS to) (POS see) (POS that) (POS you) (POS are) (POS beautiful) (POS and) (POS gentle) (POS and) (POS intelligent) (POS and) (POS a) (POS person) (POS of) (POS integrity) (POS .) (POS '')) (TOP (POS Mrs.) (POS Hills) (POS ') (POS remarks) (POS did) (POS raise) (POS questions) (POS ,) (POS at) (POS least) (POS among) (POS some) (POS U.S.) (POS officials) (POS ,) (POS about) (POS what) (POS exactly) (POS her) (POS stance) (POS is) (POS on) (POS U.S.) (POS access) (POS to) (POS the) (POS Japanese) (POS semiconductor) (POS market) (POS .)) (TOP (POS The) (POS U.S.) (POS share) (POS of) (POS the) (POS Japanese) (POS market) (POS has) (POS been) (POS stuck) (POS around) (POS 10) (POS %) (POS for) (POS years) (POS .)) (TOP (POS Many) (POS Americans) (POS have) (POS interpreted) (POS a) (POS 1986) (POS agreement) (POS as) (POS assuring) (POS U.S.) (POS companies) (POS a) (POS 20) (POS %) (POS share) (POS by) (POS 1991) (POS ,) (POS but) (POS the) (POS Japanese) (POS have) (POS denied) (POS making) (POS any) (POS such) (POS promise) (POS .)) (TOP (POS At) (POS one) (POS of) (POS her) (POS news) (POS conferences) (POS ,) (POS Mrs.) (POS Hills) (POS said) (POS ,) (POS ``) (POS I) (POS believe) (POS we) (POS can) (POS do) (POS much) (POS better) (POS than) (POS 20) (POS %) (POS .) (POS '')) (TOP(S(CC But)(NP(PRP she))(VP(VBD stressed)(, ,)(`` ``)(S(NP(PRP I))(VP(VBP am)(PP(IN against)(NP(VBN managed)(NN trade))))))(. .))) (TOP (POS I) (POS will) (POS not) (POS enter) (POS into) (POS an) (POS agreement) (POS that) (POS stipulates) (POS to) (POS a) (POS percentage) (POS of) (POS the) (POS market) (POS .)) (TOP (POS Traditional) (POS Industries) (POS Inc.) (POS said) (POS it) (POS expects) (POS to) (POS report) (POS a) (POS net) (POS loss) (POS for) (POS the) (POS fourth) (POS quarter) (POS that) (POS ended) (POS June) (POS 30) (POS and) (POS is) (POS seeking) (POS new) (POS financing) (POS .)) (TOP (POS The) (POS seller) (POS of) (POS photographic) (POS products) (POS and) (POS services) (POS said) (POS it) (POS is) (POS considering) (POS a) (POS number) (POS of) (POS financing) (POS alternatives) (POS ,) (POS including) (POS seeking) (POS increases) (POS in) (POS its) (POS credit) (POS lines) (POS .)) (TOP (POS Traditional) (POS declined) (POS to) (POS estimate) (POS the) (POS amount) (POS of) (POS the) (POS loss) (POS and) (POS would) (POS n't) (POS say) (POS if) (POS it) (POS expects) (POS to) (POS show) (POS a) (POS profit) (POS for) (POS the) (POS year) (POS .)) (TOP (POS In) (POS the) (POS year) (POS ended) (POS June) (POS 30) (POS ,) (POS 1988) (POS ,) (POS Traditional) (POS reported) (POS net) (POS income) (POS of) (POS $) (POS 4.9) (POS million) (POS ,) (POS or) (POS $) (POS 1.21) (POS a) (POS share) (POS .)) (TOP(S(NP(DT The)(NN company))(VP(VBD did)(RB n't)(VP(VB break)(PRT(RP out))(NP(PRP$ its)(JJ fourth-quarter)(NNS results))))(. .))) (TOP (POS In) (POS the) (POS latest) (POS nine) (POS months) (POS net) (POS income) (POS was) (POS $) (POS 4.7) (POS million) (POS ,) (POS or) (POS $) (POS 1.31) (POS a) (POS share) (POS ,) (POS on) (POS revenue) (POS of) (POS $) (POS 44.3) (POS million) (POS .)) (TOP (POS Separately) (POS ,) (POS the) (POS company) (POS said) (POS it) (POS would) (POS file) (POS a) (POS delayed) (POS fiscal-year) (POS report) (POS with) (POS the) (POS Securities) (POS and) (POS Exchange) (POS Commission) (POS ``) (POS within) (POS approximately) (POS 45) (POS days) (POS .) (POS '')) (TOP (POS It) (POS said) (POS the) (POS delay) (POS resulted) (POS from) (POS difficulties) (POS in) (POS resolving) (POS its) (POS accounting) (POS of) (POS a) (POS settlement) (POS with) (POS the) (POS Federal) (POS Trade) (POS Commission) (POS .)) (TOP (POS Under) (POS an) (POS agreement) (POS filed) (POS in) (POS federal) (POS court) (POS in) (POS August) (POS to) (POS settle) (POS FTC) (POS objections) (POS to) (POS some) (POS Traditional) (POS sales) (POS practices) (POS ,) (POS Traditional) (POS said) (POS it) (POS would) (POS establish) (POS a) (POS $) (POS 250,000) (POS trust) (POS fund) (POS to) (POS provide) (POS refunds) (POS to) (POS certain) (POS customers) (POS .)) (TOP (POS Information) (POS International) (POS Inc.) (POS said) (POS it) (POS was) (POS sued) (POS by) (POS a) (POS buyer) (POS of) (POS its) (POS computerized) (POS newspaper-publishing) (POS system) (POS ,) (POS alleging) (POS that) (POS the) (POS company) (POS failed) (POS to) (POS correct) (POS deficiencies) (POS in) (POS the) (POS system) (POS .)) (TOP (POS A) (POS spokesman) (POS for) (POS Information) (POS International) (POS said) (POS the) (POS lawsuit) (POS by) (POS two) (POS units) (POS of) (POS Morris) (POS Communications) (POS Corp.) (POS seeks) (POS restitution) (POS of) (POS the) (POS system) (POS 's) (POS about) (POS $) (POS 3) (POS million) (POS purchase) (POS price) (POS and) (POS cancellation) (POS of) (POS a) (POS software) (POS license) (POS provided) (POS by) (POS the) (POS Morris) (POS units) (POS to) (POS Information) (POS International) (POS for) (POS alleged) (POS failure) (POS to) (POS pay) (POS royalties) (POS .)) (TOP (POS Information) (POS International) (POS said) (POS it) (POS believes) (POS that) (POS the) (POS complaints) (POS ,) (POS filed) (POS in) (POS federal) (POS court) (POS in) (POS Georgia) (POS ,) (POS are) (POS without) (POS merit) (POS .)) (TOP(S(ADVP(RB Closely))(VP(VBD held)(SBAR(S(NP(NNP Morris)(NNPS Communications))(VP(VBZ is)(VP(VBN based)(PP(IN in)(NP(NNP Augusta)(, ,)(NP(NNP Ga)))))))))(. .))) (TOP(S(NP(NP(DT The)(NNS units))(SBAR(WHNP(WDT that))(S(VP(VBD filed)(NP(DT the)(NN suit))))))(VP(VBP are)(NP(NP(NNP Southeastern)(NNS Newspapers))(NNP Corp.)(CC and)(NNP Florida)(NNP Publishing)(NNP Co)))(. .))) (TOP (POS Syms) (POS Corp.) (POS completed) (POS the) (POS sale) (POS of) (POS its) (POS A.) (POS Sulka) (POS &) (POS Co.) (POS subsidiary) (POS ,) (POS a) (POS men) (POS 's) (POS luxury) (POS haberdashery) (POS ,) (POS to) (POS Luxco) (POS Investments) (POS .)) (TOP(S(NP(NNS Terms))(VP(VBD were)(ADJP(RB n't)(VBN disclosed)))(. .))) (TOP (POS As) (POS Syms) (POS 's) (POS ``) (POS core) (POS business) (POS of) (POS off-price) (POS retailing) (POS grows) (POS ,) (POS a) (POS small) (POS subsidiary) (POS that) (POS is) (POS operationally) (POS unrelated) (POS becomes) (POS a) (POS difficult) (POS distraction) (POS ,) (POS '') (POS said) (POS Marcy) (POS Syms) (POS ,) (POS president) (POS of) (POS the) (POS parent) (POS ,) (POS in) (POS a) (POS statement) (POS .)) (TOP (POS A) (POS spokeswoman) (POS said) (POS Sulka) (POS operates) (POS a) (POS total) (POS of) (POS seven) (POS stores) (POS in) (POS the) (POS U.S.) (POS and) (POS overseas) (POS .)) (TOP(S(NP(NNP Syms))(VP(VBZ operates)(NP(CD 25)(JJ off-price)(NN apparel)(NNS stores))(PP(IN in)(NP(DT the)(NNP U.S.))))(. .))) (TOP(S(NP(NP(DT The)(NN oil))(NN industry)(POS 's))(NP(JJ middling)(NNS profits))(VP(MD could)(VP(VB persist)(PP(IN through)(NP(DT the)(NN rest)))(PP(IN of)(NP(DT the)(NN year)))))(. .))) (TOP (POS Major) (POS oil) (POS companies) (POS in) (POS the) (POS next) (POS few) (POS days) (POS are) (POS expected) (POS to) (POS report) (POS much) (POS less) (POS robust) (POS earnings) (POS than) (POS they) (POS did) (POS for) (POS the) (POS third) (POS quarter) (POS a) (POS year) (POS ago) (POS ,) (POS largely) (POS reflecting) (POS deteriorating) (POS chemical) (POS prices) (POS and) (POS gasoline) (POS profitability) (POS .)) (TOP (POS The) (POS gasoline) (POS picture) (POS may) (POS improve) (POS this) (POS quarter) (POS ,) (POS but) (POS chemicals) (POS are) (POS likely) (POS to) (POS remain) (POS weak) (POS ,) (POS industry) (POS executives) (POS and) (POS analysts) (POS say) (POS ,) (POS reducing) (POS chances) (POS that) (POS profits) (POS could) (POS equal) (POS their) (POS year-earlier) (POS performance) (POS .)) (TOP (POS The) (POS industry) (POS is) (POS ``) (POS seeing) (POS a) (POS softening) (POS somewhat) (POS in) (POS volume) (POS and) (POS certainly) (POS in) (POS price) (POS in) (POS petrochemicals) (POS ,) (POS '') (POS Glenn) (POS Cox) (POS ,) (POS president) (POS of) (POS Phillips) (POS Petroleum) (POS Co.) (POS ,) (POS said) (POS in) (POS an) (POS interview) (POS .)) (TOP (POS ``) (POS That) (POS change) (POS will) (POS obviously) (POS impact) (POS third) (POS and) (POS fourth) (POS quarter) (POS earnings) (POS '') (POS for) (POS the) (POS industry) (POS in) (POS general) (POS ,) (POS he) (POS added) (POS .)) (TOP(S(NP(PRP He))(VP(VBD did)(RB n't)(VP(VBN forecast)(NP(NP(NNP Phillips)(POS 's))(NNS results))))(. .))) (TOP (POS But) (POS securities) (POS analysts) (POS say) (POS Phillips) (POS will) (POS be) (POS among) (POS the) (POS companies) (POS hard-hit) (POS by) (POS weak) (POS chemical) (POS prices) (POS and) (POS will) (POS probably) (POS post) (POS a) (POS drop) (POS in) (POS third-quarter) (POS earnings) (POS .)) (TOP (POS So) (POS ,) (POS too) (POS ,) (POS many) (POS analysts) (POS predict) (POS ,) (POS will) (POS Exxon) (POS Corp.) (POS ,) (POS Chevron) (POS Corp.) (POS and) (POS Amoco) (POS Corp) (POS .)) (TOP (POS Typical) (POS is) (POS what) (POS happened) (POS to) (POS the) (POS price) (POS of) (POS ethylene) (POS ,) (POS a) (POS major) (POS commodity) (POS chemical) (POS produced) (POS in) (POS vast) (POS amounts) (POS by) (POS many) (POS oil) (POS companies) (POS .)) (TOP(S(NP(PRP It))(VP(VBZ has)(VP(VBD plunged)(NP(NP(NP(CD 13)(NN %))(PP(IN since)(NP(NNP July))))(PP(TO to)(NP(QP(RB around)(CD 26))(NNS cents))))(NP(DT a)(NN pound))))(. .))) (TOP (POS A) (POS year) (POS ago) (POS ethylene) (POS sold) (POS for) (POS 33) (POS cents) (POS ,) (POS peaking) (POS at) (POS about) (POS 34) (POS cents) (POS last) (POS December) (POS .)) (TOP(S(NP(NP(DT A)(JJ big)(NN reason))(PP(IN for)(NP(NP(DT the)(NN chemical))(NN price)(NN retreat))))(VP(VBZ is)(NP(NNP(N overexpansion))))(. .))) (TOP (POS Beginning) (POS in) (POS mid-1987) (POS ,) (POS prices) (POS began) (POS accelerating) (POS as) (POS a) (POS growing) (POS U.S.) (POS economy) (POS and) (POS the) (POS weak) (POS dollar) (POS spurred) (POS demand) (POS .)) (TOP(S(NP(NNS Companies))(VP(VBD added)(NP(NN capacity))(ADVP(RB furiously)))(. .))) (TOP (POS Now) (POS ,) (POS greatly) (POS increased) (POS supplies) (POS are) (POS on) (POS the) (POS market) (POS ,) (POS while) (POS the) (POS dollar) (POS is) (POS stronger) (POS ,) (POS and) (POS domestic) (POS economic) (POS growth) (POS is) (POS slower) (POS .)) (TOP(S(NP(NP(JJ Third-quarter)(NNS profits))(PP(IN from)(NP(NN gasoline))))(VP(VBD were)(ADJP(JJR weaker)))(. .))) (TOP (POS ``) (POS Refining) (POS margins) (POS were) (POS so) (POS good) (POS in) (POS the) (POS third) (POS quarter) (POS of) (POS last) (POS year) (POS and) (POS generally) (POS not) (POS very) (POS good) (POS this) (POS year) (POS ,) (POS '') (POS said) (POS William) (POS Randol) (POS ,) (POS a) (POS securities) (POS analyst) (POS at) (POS First) (POS Boston) (POS Corp) (POS .)) (TOP (POS Oil) (POS company) (POS refineries) (POS ran) (POS flat) (POS out) (POS to) (POS prepare) (POS for) (POS a) (POS robust) (POS holiday) (POS driving) (POS season) (POS in) (POS July) (POS and) (POS August) (POS that) (POS did) (POS n't) (POS materialize) (POS .)) (TOP(S(NP(DT The)(JJ excess)(NN supply))(VP(VBN pushed)(NP(NN gasoline)(NNS prices))(PRT(RP down))(PP(IN in)(NP(DT that)(NN period))))(. .))) (TOP (POS In) (POS addition) (POS ,) (POS crude) (POS oil) (POS prices) (POS were) (POS up) (POS some) (POS from) (POS a) (POS year) (POS earlier) (POS ,) (POS further) (POS pressuring) (POS profitability) (POS .)) (TOP (POS Refiners) (POS say) (POS margins) (POS picked) (POS up) (POS in) (POS September) (POS ,) (POS and) (POS many) (POS industry) (POS officials) (POS believe) (POS gasoline) (POS profits) (POS will) (POS rebound) (POS this) (POS quarter) (POS ,) (POS though) (POS still) (POS not) (POS to) (POS the) (POS level) (POS of) (POS 1988) (POS 's) (POS fourth) (POS quarter) (POS .)) (TOP(S(PP(IN During)(NP(DT the)(CD 1988)(JJ second)(NN half)))(, ,)(NP(JJ many)(NNS companies))(VP(VBD posted)(NP(NP(NN record)(NN gasoline))(CC and)(NN chemical)(NNS profits)))(. .))) (TOP (POS Crude) (POS oil) (POS production) (POS may) (POS turn) (POS out) (POS to) (POS be) (POS the) (POS most) (POS surprising) (POS element) (POS of) (POS companies) (POS ') (POS earnings) (POS this) (POS year) (POS .)) (TOP (POS Prices) (POS --) (POS averaging) (POS roughly) (POS $) (POS 2) (POS a) (POS barrel) (POS higher) (POS in) (POS the) (POS third) (POS quarter) (POS than) (POS a) (POS year) (POS earlier) (POS --) (POS have) (POS stayed) (POS well) (POS above) (POS most) (POS companies) (POS ') (POS expectations) (POS .)) (TOP (POS Demand) (POS has) (POS been) (POS much) (POS stronger) (POS than) (POS anticipated) (POS ,) (POS and) (POS it) (POS typically) (POS accelerates) (POS in) (POS the) (POS fourth) (POS quarter) (POS .)) (TOP (POS ``) (POS We) (POS could) (POS see) (POS higher) (POS oil) (POS prices) (POS this) (POS year) (POS ,) (POS '') (POS said) (POS Bryan) (POS Jacoboski) (POS ,) (POS an) (POS analyst) (POS at) (POS PaineWebber) (POS Inc) (POS .)) (TOP (POS That) (POS will) (POS translate) (POS into) (POS sharply) (POS higher) (POS production) (POS profits) (POS ,) (POS particularly) (POS compared) (POS with) (POS last) (POS year) (POS when) (POS oil) (POS prices) (POS steadily) (POS fell) (POS to) (POS below) (POS $) (POS 13) (POS a) (POS barrel) (POS in) (POS the) (POS fourth) (POS quarter) (POS .)) (TOP (POS While) (POS oil) (POS prices) (POS have) (POS been) (POS better) (POS than) (POS expected) (POS ,) (POS natural) (POS gas) (POS prices) (POS have) (POS been) (POS worse) (POS .)) (TOP (POS In) (POS the) (POS third) (POS quarter) (POS ,) (POS they) (POS averaged) (POS about) (POS 5) (POS %) (POS less) (POS than) (POS they) (POS were) (POS in) (POS 1988) (POS .)) (TOP(S(NP(DT The)(JJ main)(NN reason))(VP(VBZ remains)(NP(NN weather)))(. .))) (TOP (POS Last) (POS summer) (POS was) (POS notable) (POS for) (POS a) (POS heat) (POS wave) (POS and) (POS drought) (POS that) (POS caused) (POS utilities) (POS to) (POS burn) (POS more) (POS natural) (POS gas) (POS to) (POS feed) (POS increased) (POS electrical) (POS demand) (POS from) (POS air) (POS conditioning) (POS use) (POS .)) (TOP(S(NP(DT This)(NN summer))(, ,)(PP(IN on)(NP(DT the)(JJ other)(NN hand)))(, ,)(VP(VBD had)(SBAR(S(NP(NNP(N milder)))(VP(VB weather)(PP(IN than)(NP(JJ usual)))))))(. .))) (TOP (POS ``) (POS We) (POS 've) (POS been) (POS very) (POS disappointed) (POS in) (POS the) (POS performance) (POS of) (POS natural) (POS gas) (POS prices) (POS ,) (POS '') (POS said) (POS Mr.) (POS Cox) (POS ,) (POS Phillips) (POS 's) (POS president) (POS .)) (TOP (POS ``) (POS The) (POS lagging) (POS gas) (POS price) (POS is) (POS not) (POS going) (POS to) (POS assist) (POS fourth) (POS quarter) (POS performance) (POS as) (POS many) (POS had) (POS expected) (POS .) (POS '')) (TOP (POS Going) (POS into) (POS the) (POS fourth) (POS quarter) (POS ,) (POS natural) (POS gas) (POS prices) (POS are) (POS anywhere) (POS from) (POS 8) (POS %) (POS to) (POS 17) (POS %) (POS lower) (POS than) (POS a) (POS year) (POS earlier) (POS .)) (TOP (POS For) (POS instance) (POS ,) (POS natural) (POS gas) (POS currently) (POS produced) (POS along) (POS the) (POS Gulf) (POS Coast) (POS is) (POS selling) (POS on) (POS the) (POS spot) (POS market) (POS for) (POS around) (POS $) (POS 1.47) (POS a) (POS thousand) (POS cubic) (POS feet) (POS ,) (POS down) (POS 13) (POS %) (POS from) (POS $) (POS 1.69) (POS a) (POS thousand) (POS cubic) (POS feet) (POS a) (POS year) (POS ago) (POS .)) (TOP (POS The) (POS Bush) (POS administration) (POS ,) (POS trying) (POS to) (POS blunt) (POS growing) (POS demands) (POS from) (POS Western) (POS Europe) (POS for) (POS a) (POS relaxation) (POS of) (POS controls) (POS on) (POS exports) (POS to) (POS the) (POS Soviet) (POS bloc) (POS ,) (POS is) (POS questioning) (POS whether) (POS Italy) (POS 's) (POS Ing) (POS .) (POS C.) (POS Olivetti) (POS &) (POS Co.) (POS supplied) (POS militarily) (POS valuable) (POS technology) (POS to) (POS the) (POS Soviets) (POS .)) (TOP (POS Most) (POS of) (POS the) (POS Western) (POS European) (POS members) (POS of) (POS Coordinating) (POS Committee) (POS on) (POS Multilateral) (POS Export) (POS Controls) (POS ,) (POS the) (POS unofficial) (POS forum) (POS through) (POS which) (POS the) (POS U.S.) (POS and) (POS its) (POS allies) (POS align) (POS their) (POS export-control) (POS policies) (POS ,) (POS are) (POS expected) (POS to) (POS argue) (POS for) (POS more) (POS liberal) (POS export) (POS rules) (POS at) (POS a) (POS meeting) (POS to) (POS be) (POS held) (POS in) (POS Paris) (POS Oct.) (POS 25) (POS and) (POS 26) (POS .)) (TOP (POS They) (POS plan) (POS to) (POS press) (POS specifically) (POS for) (POS a) (POS relaxation) (POS of) (POS rules) (POS governing) (POS exports) (POS of) (POS machine) (POS tools) (POS ,) (POS computers) (POS and) (POS other) (POS high-technology) (POS products) (POS .)) (TOP (POS But) (POS the) (POS Bush) (POS administration) (POS says) (POS it) (POS wants) (POS to) (POS see) (POS evidence) (POS that) (POS all) (POS Cocom) (POS members) (POS are) (POS complying) (POS fully) (POS with) (POS existing) (POS export-control) (POS procedures) (POS before) (POS it) (POS will) (POS support) (POS further) (POS liberalization) (POS .)) (TOP (POS To) (POS make) (POS its) (POS point) (POS ,) (POS it) (POS is) (POS challenging) (POS the) (POS Italian) (POS government) (POS to) (POS explain) (POS reports) (POS that) (POS Olivetti) (POS may) (POS have) (POS supplied) (POS the) (POS Soviet) (POS Union) (POS with) (POS sophisticated) (POS computer-driven) (POS devices) (POS that) (POS could) (POS be) (POS used) (POS to) (POS build) (POS parts) (POS for) (POS combat) (POS aircraft) (POS .)) (TOP (POS The) (POS London) (POS Sunday) (POS Times) (POS ,) (POS which) (POS first) (POS reported) (POS the) (POS U.S.) (POS concerns) (POS ,) (POS cited) (POS a) (POS U.S.) (POS intelligence) (POS report) (POS as) (POS the) (POS source) (POS of) (POS the) (POS allegations) (POS that) (POS Olivetti) (POS exported) (POS $) (POS 25) (POS million) (POS in) (POS ``) (POS embargoed) (POS ,) (POS state-of-the-art) (POS ,) (POS flexible) (POS manufacturing) (POS systems) (POS to) (POS the) (POS Soviet) (POS aviation) (POS industry) (POS .) (POS '')) (TOP(S(NP(NNP Olivetti))(ADVP(RB reportedly))(VP(VBD began)(S(VP(VBG shipping)(NP(DT these)(NNS tools))(PP(IN in)(NP(CD 1984))))))(. .))) (TOP (POS A) (POS State) (POS Department) (POS spokesman) (POS acknowledged) (POS that) (POS the) (POS U.S.) (POS is) (POS discussing) (POS the) (POS allegations) (POS with) (POS the) (POS Italian) (POS government) (POS and) (POS Cocom) (POS ,) (POS but) (POS declined) (POS to) (POS confirm) (POS any) (POS details) (POS .)) (TOP(S(NP(JJ Italian)(NNP President)(NNP Francesco)(NNP Cossiga))(VP(VBD promised)(NP(DT a)(JJ quick)(NN investigation))(SBAR(IN into)(S(PP(IN whether)(NP(NNP Olivetti)))(VP(VBD broke)(NP(NNP Cocom)(NNS rules)))(. .)))))) (TOP (POS President) (POS Bush) (POS called) (POS his) (POS attention) (POS to) (POS the) (POS matter) (POS during) (POS the) (POS Italian) (POS leader) (POS 's) (POS visit) (POS here) (POS last) (POS week) (POS .)) (TOP (POS Olivetti) (POS has) (POS denied) (POS that) (POS it) (POS violated) (POS Cocom) (POS rules) (POS ,) (POS asserting) (POS that) (POS the) (POS reported) (POS shipments) (POS were) (POS properly) (POS licensed) (POS by) (POS the) (POS Italian) (POS authorities) (POS .)) (TOP (POS Although) (POS the) (POS legality) (POS of) (POS these) (POS sales) (POS is) (POS still) (POS an) (POS open) (POS question) (POS ,) (POS the) (POS disclosure) (POS could) (POS n't) (POS be) (POS better) (POS timed) (POS to) (POS support) (POS the) (POS position) (POS of) (POS export-control) (POS hawks) (POS in) (POS the) (POS Pentagon) (POS and) (POS the) (POS intelligence) (POS community) (POS .)) (TOP (POS ``) (POS It) (POS seems) (POS to) (POS me) (POS that) (POS a) (POS story) (POS like) (POS this) (POS breaks) (POS just) (POS before) (POS every) (POS important) (POS Cocom) (POS meeting) (POS ,) (POS '') (POS said) (POS a) (POS Washington) (POS lobbyist) (POS for) (POS a) (POS number) (POS of) (POS U.S.) (POS computer) (POS companies) (POS .)) (TOP (POS The) (POS Bush) (POS administration) (POS has) (POS sent) (POS conflicting) (POS signals) (POS about) (POS its) (POS export-control) (POS policies) (POS ,) (POS reflecting) (POS unhealed) (POS divisions) (POS among) (POS several) (POS competing) (POS agencies) (POS .)) (TOP (POS Last) (POS summer) (POS ,) (POS Mr.) (POS Bush) (POS moved) (POS the) (POS administration) (POS in) (POS the) (POS direction) (POS of) (POS gradual) (POS liberalization) (POS when) (POS he) (POS told) (POS a) (POS North) (POS Atlantic) (POS Treaty) (POS Organization) (POS meeting) (POS that) (POS he) (POS would) (POS allow) (POS some) (POS exceptions) (POS to) (POS the) (POS Cocom) (POS embargo) (POS of) (POS strategic) (POS goods) (POS .)) (TOP (POS But) (POS more) (POS recently) (POS ,) (POS the) (POS Pentagon) (POS and) (POS the) (POS Commerce) (POS Department) (POS openly) (POS feuded) (POS over) (POS the) (POS extent) (POS to) (POS which) (POS Cocom) (POS should) (POS liberalize) (POS exports) (POS of) (POS personal) (POS computers) (POS to) (POS the) (POS bloc) (POS .)) (TOP (POS However) (POS ,) (POS these) (POS agencies) (POS generally) (POS agree) (POS that) (POS the) (POS West) (POS should) (POS be) (POS cautious) (POS about) (POS any) (POS further) (POS liberalization) (POS .)) (TOP (POS ``) (POS There) (POS 's) (POS no) (POS evidence) (POS that) (POS the) (POS Soviet) (POS program) (POS to) (POS -LRB-) (POS illegally) (POS -RRB-) (POS acquire) (POS Western) (POS technology) (POS has) (POS diminished) (POS ,) (POS '') (POS said) (POS a) (POS State) (POS Department) (POS spokesman) (POS .)) (TOP (POS Salomon) (POS Brothers) (POS International) (POS Ltd.) (POS ,) (POS a) (POS British) (POS subsidiary) (POS of) (POS Salomon) (POS Inc.) (POS ,) (POS announced) (POS it) (POS will) (POS issue) (POS warrants) (POS on) (POS shares) (POS of) (POS Hong) (POS Kong) (POS Telecommunications) (POS Ltd) (POS .)) (TOP (POS The) (POS move) (POS closely) (POS follows) (POS a) (POS similar) (POS offer) (POS by) (POS Salomon) (POS of) (POS warrants) (POS for) (POS shares) (POS of) (POS Hongkong) (POS &) (POS Shanghai) (POS Banking) (POS Corp) (POS .)) (TOP (POS Under) (POS the) (POS latest) (POS offer) (POS ,) (POS HK$) (POS 62.5) (POS million) (POS -LRB-) (POS US$) (POS 8) (POS million) (POS -RRB-) (POS of) (POS three-year) (POS warrants) (POS will) (POS be) (POS issued) (POS in) (POS London) (POS ,) (POS each) (POS giving) (POS buyers) (POS the) (POS right) (POS to) (POS buy) (POS one) (POS Hong) (POS Kong) (POS Telecommunications) (POS share) (POS at) (POS a) (POS price) (POS to) (POS be) (POS determined) (POS Friday) (POS .)) (TOP (POS The) (POS 50) (POS million) (POS warrants) (POS will) (POS be) (POS priced) (POS at) (POS HK$) (POS 1.25) (POS each) (POS and) (POS are) (POS expected) (POS to) (POS carry) (POS a) (POS premium) (POS to) (POS the) (POS share) (POS price) (POS of) (POS about) (POS 26) (POS %) (POS .)) (TOP (POS In) (POS trading) (POS on) (POS the) (POS Stock) (POS Exchange) (POS of) (POS Hong) (POS Kong) (POS ,) (POS the) (POS shares) (POS closed) (POS Wednesday) (POS at) (POS HK$) (POS 4.80) (POS each) (POS .)) (TOP (POS At) (POS this) (POS price) (POS ,) (POS the) (POS shares) (POS would) (POS have) (POS to) (POS rise) (POS above) (POS HK$) (POS 6.05) (POS for) (POS subscribers) (POS to) (POS Salomon) (POS 's) (POS issue) (POS to) (POS profitably) (POS convert) (POS their) (POS warrants) (POS .)) (TOP (POS While) (POS Hong) (POS Kong) (POS companies) (POS have) (POS in) (POS the) (POS past) (POS issued) (POS warrants) (POS on) (POS their) (POS own) (POS shares) (POS ,) (POS Salomon) (POS 's) (POS warrants) (POS are) (POS the) (POS first) (POS here) (POS to) (POS be) (POS issued) (POS by) (POS a) (POS third) (POS party) (POS .)) (TOP (POS Salomon) (POS will) (POS ``) (POS cover) (POS '') (POS the) (POS warrants) (POS by) (POS buying) (POS sufficient) (POS shares) (POS ,) (POS or) (POS options) (POS to) (POS purchase) (POS shares) (POS ,) (POS to) (POS cover) (POS its) (POS entire) (POS position) (POS .)) (TOP (POS Bankers) (POS said) (POS warrants) (POS for) (POS Hong) (POS Kong) (POS stocks) (POS are) (POS attractive) (POS because) (POS they) (POS give) (POS foreign) (POS investors) (POS ,) (POS wary) (POS of) (POS volatility) (POS in) (POS the) (POS colony) (POS 's) (POS stock) (POS market) (POS ,) (POS an) (POS opportunity) (POS to) (POS buy) (POS shares) (POS without) (POS taking) (POS too) (POS great) (POS a) (POS risk) (POS .)) (TOP (POS The) (POS Hong) (POS Kong) (POS Telecommunications) (POS warrants) (POS should) (POS be) (POS attractive) (POS to) (POS buyers) (POS in) (POS Europe) (POS ,) (POS the) (POS bankers) (POS added) (POS ,) (POS because) (POS the) (POS group) (POS is) (POS one) (POS of) (POS a) (POS handful) (POS of) (POS blue-chip) (POS stocks) (POS on) (POS the) (POS Hong) (POS Kong) (POS market) (POS that) (POS has) (POS international) (POS appeal) (POS .)) (TOP (POS Financial) (POS Corp.) (POS of) (POS Santa) (POS Barbara) (POS filed) (POS suit) (POS against) (POS former) (POS stock) (POS speculator) (POS Ivan) (POS F.) (POS Boesky) (POS and) (POS Drexel) (POS Burnham) (POS Lambert) (POS Inc.) (POS ,) (POS charging) (POS they) (POS defrauded) (POS the) (POS thrift) (POS by) (POS concealing) (POS their) (POS relationship) (POS when) (POS persuading) (POS it) (POS to) (POS buy) (POS $) (POS 284) (POS million) (POS in) (POS high-yield) (POS ,) (POS high-risk) (POS junk) (POS bonds) (POS .)) (TOP (POS In) (POS a) (POS suit) (POS filed) (POS in) (POS federal) (POS court) (POS Thursday) (POS ,) (POS the) (POS S&L) (POS alleged) (POS that) (POS a) (POS ``) (POS disproportionate) (POS number) (POS '') (POS of) (POS the) (POS bonds) (POS it) (POS purchased) (POS in) (POS 1984) (POS declined) (POS in) (POS value) (POS .)) (TOP (POS Financial) (POS Corp.) (POS purchased) (POS the) (POS bonds) (POS ,) (POS the) (POS suit) (POS alleged) (POS ,) (POS after) (POS Mr.) (POS Boesky) (POS and) (POS Drexel) (POS negotiated) (POS an) (POS agreement) (POS for) (POS Vagabond) (POS Hotels) (POS to) (POS purchase) (POS a) (POS 51) (POS %) (POS stake) (POS in) (POS the) (POS thrift) (POS for) (POS about) (POS $) (POS 34) (POS million) (POS .)) (TOP (POS Vagabond) (POS Hotels) (POS was) (POS controlled) (POS by) (POS Mr.) (POS Boesky) (POS ,) (POS who) (POS currently) (POS is) (POS serving) (POS a) (POS prison) (POS term) (POS for) (POS securities) (POS violations) (POS .)) (TOP (POS Officials) (POS at) (POS Drexel) (POS said) (POS they) (POS had) (POS n't) (POS seen) (POS the) (POS suit) (POS and) (POS thus) (POS could) (POS n't) (POS comment) (POS .)) (TOP (POS In) (POS addition) (POS to) (POS $) (POS 33) (POS million) (POS compensatory) (POS damages) (POS ,) (POS the) (POS suit) (POS seeks) (POS $) (POS 100) (POS million) (POS in) (POS punitive) (POS damages) (POS .)) (TOP (POS Also) (POS named) (POS in) (POS the) (POS suit) (POS is) (POS Ivan) (POS F.) (POS Boesky) (POS Corp.) (POS and) (POS Northview) (POS Corp.) (POS ,) (POS the) (POS successor) (POS company) (POS to) (POS Vagabonds) (POS Hotels) (POS .)) (TOP(S(NP(NNP Northview)(NNS officials))(VP(MD could)(RB n't)(VP(VB be)(VP(VBN located))))(. .))) (TOP (POS Financial) (POS Corp.) (POS said) (POS it) (POS agreed) (POS to) (POS buy) (POS the) (POS bonds) (POS after) (POS a) (POS representative) (POS of) (POS Ivan) (POS F.) (POS Boesky) (POS Corp.) (POS visited) (POS it) (POS in) (POS November) (POS 1983) (POS and) (POS said) (POS Financial) (POS Corp.) (POS could) (POS improve) (POS its) (POS financial) (POS condition) (POS by) (POS purchasing) (POS the) (POS bonds) (POS .)) (TOP (POS Shortly) (POS before) (POS the) (POS visit) (POS ,) (POS Mr.) (POS Boesky) (POS and) (POS Drexel) (POS representives) (POS had) (POS met) (POS with) (POS Financial) (POS Corp.) (POS officials) (POS and) (POS had) (POS signed) (POS a) (POS letter) (POS of) (POS intent) (POS to) (POS acquire) (POS the) (POS 51) (POS %) (POS stake) (POS in) (POS the) (POS company) (POS .)) (TOP(S(ADVP(RB However))(, ,)(NP(DT the)(NN agreement))(VP(VBD was)(VP(VBN canceled)(PP(IN in)(NP(NNP June)(CD 1984)))))(. .))) (TOP (POS Financial) (POS Corp.) (POS purchased) (POS the) (POS bonds) (POS in) (POS at) (POS least) (POS 70) (POS different) (POS transactions) (POS in) (POS 1984) (POS and) (POS since) (POS then) (POS has) (POS realized) (POS $) (POS 11) (POS million) (POS in) (POS losses) (POS on) (POS them) (POS ,) (POS the) (POS company) (POS said) (POS .)) (TOP (POS Ideal) (POS Basic) (POS Industries) (POS Inc.) (POS said) (POS its) (POS directors) (POS reached) (POS an) (POS agreement) (POS in) (POS principle) (POS calling) (POS for) (POS HOFI) (POS North) (POS America) (POS Inc.) (POS to) (POS combine) (POS its) (POS North) (POS American) (POS cement) (POS holdings) (POS with) (POS Ideal) (POS in) (POS a) (POS transaction) (POS that) (POS will) (POS leave) (POS Ideal) (POS 's) (POS minority) (POS shareholders) (POS with) (POS 12.8) (POS %) (POS of) (POS the) (POS combined) (POS company) (POS .)) (TOP (POS HOFI) (POS ,) (POS the) (POS North) (POS American) (POS holding) (POS company) (POS of) (POS Swiss) (POS concern) (POS Holderbank) (POS Financiere) (POS Glaris) (POS Ltd.) (POS ,) (POS previously) (POS proposed) (POS combining) (POS its) (POS 100) (POS %) (POS stake) (POS in) (POS St.) (POS Lawrence) (POS Cement) (POS Inc.) (POS and) (POS its) (POS 60) (POS %) (POS stake) (POS in) (POS Dundee) (POS Cement) (POS Co.) (POS with) (POS its) (POS 67) (POS %) (POS stake) (POS in) (POS Ideal) (POS .)) (TOP (POS But) (POS HOFI) (POS 's) (POS first) (POS offer) (POS would) (POS have) (POS given) (POS Ideal) (POS 's) (POS other) (POS shareholders) (POS about) (POS 10) (POS %) (POS of) (POS the) (POS combined) (POS company) (POS .)) (TOP (POS Ideal) (POS 's) (POS directors) (POS rejected) (POS that) (POS offer) (POS ,) (POS although) (POS they) (POS said) (POS they) (POS endorsed) (POS the) (POS merger) (POS proposal) (POS .)) (TOP(S(PP(IN Under)(NP(DT the)(NN agreement)))(, ,)(NP(NNP HOFI))(VP(MD will)(VP(VB own)(NP(CD 87.2)(NN %))(PP(IN of)(NP(DT the)(JJ combined)(NN company)))))(. .))) (TOP(S(NP(NNP Ideal)(POS 's))(NP(JJ current)(NNS operations))(VP(MD will)(VP(VB represent)(PP(IN about)(NP(CD 39.2)(NN %)))(PP(IN of)(NP(DT the)(JJ combined)(NN company)))))(. .))) (TOP(S(NP(DT The)(NN transaction))(VP(VBZ is)(ADJP(JJ subject)(PP(TO to)(NP(NP(NP(DT a)(JJ definitive)(NN agreement))(CC and)(NN approval))(PP(IN by)(NP(NNP Ideal)(NNS shareholders)))))))(. .))) (TOP(S(NP(NNP Ideal))(VP(VBD said)(SBAR(S(NP(PRP it))(VP(VBZ expects)(S(VP(TO to)(VP(VB complete)(NP(NP(DT the)(NN transaction))(JJ early)(JJ next)(NN year)))))))))(. .))) (TOP (POS While) (POS corn) (POS and) (POS soybean) (POS prices) (POS have) (POS slumped) (POS well) (POS below) (POS their) (POS drought-induced) (POS peaks) (POS of) (POS 1988) (POS ,) (POS wheat) (POS prices) (POS remain) (POS stubbornly) (POS high) (POS .)) (TOP (POS And) (POS they) (POS 're) (POS likely) (POS to) (POS stay) (POS that) (POS way) (POS for) (POS months) (POS to) (POS come) (POS ,) (POS analysts) (POS say) (POS .)) (TOP (POS For) (POS one) (POS thing) (POS ,) (POS even) (POS with) (POS many) (POS farmers) (POS planting) (POS more) (POS winter) (POS wheat) (POS this) (POS year) (POS than) (POS last) (POS ,) (POS tight) (POS wheat) (POS supplies) (POS are) (POS likely) (POS to) (POS support) (POS prices) (POS well) (POS into) (POS 1990) (POS ,) (POS the) (POS analysts) (POS say) (POS .)) (TOP (POS And) (POS if) (POS rain) (POS does) (POS n't) (POS fall) (POS soon) (POS across) (POS many) (POS of) (POS the) (POS Great) (POS Plains) (POS ') (POS wheat-growing) (POS areas) (POS ,) (POS yields) (POS in) (POS the) (POS crop) (POS now) (POS being) (POS planted) (POS could) (POS be) (POS reduced) (POS ,) (POS further) (POS squeezing) (POS supplies) (POS .)) (TOP (POS Also) (POS supporting) (POS prices) (POS are) (POS expectations) (POS that) (POS the) (POS Soviet) (POS Union) (POS will) (POS place) (POS substantial) (POS buying) (POS orders) (POS over) (POS the) (POS next) (POS few) (POS months) (POS .)) (TOP (POS By) (POS next) (POS May) (POS 31) (POS ,) (POS stocks) (POS of) (POS U.S.) (POS wheat) (POS to) (POS be) (POS carried) (POS over) (POS into) (POS the) (POS next) (POS season) (POS --) (POS before) (POS the) (POS winter) (POS wheat) (POS now) (POS being) (POS planted) (POS is) (POS harvested) (POS --) (POS are) (POS projected) (POS to) (POS drop) (POS to) (POS 443) (POS million) (POS bushels) (POS .)) (TOP(S(NP(DT That))(VP(MD would)(VP(VB be)(NP(DT the)(JJS lowest)(NN level))(PP(IN since)(NP(DT the)(JJ early)(NNS 1970s)))))(. .))) (TOP(S(NP(NNS Stocks))(VP(VBD were)(NP(NP(QP(CD 698)(CD million))(NNS bushels))(PP(IN on)(NP(NNP May)(CD 31))))(PP(IN of)(NP(DT this)(NN year))))(. .))) (TOP (POS In) (POS response) (POS to) (POS dwindling) (POS domestic) (POS supplies) (POS ,) (POS Agriculture) (POS Secretary) (POS Clayton) (POS Yeutter) (POS last) (POS month) (POS said) (POS the) (POS U.S.) (POS government) (POS would) (POS slightly) (POS increase) (POS the) (POS number) (POS of) (POS acres) (POS farmers) (POS can) (POS plant) (POS in) (POS wheat) (POS for) (POS next) (POS year) (POS and) (POS still) (POS qualify) (POS for) (POS federal) (POS support) (POS payments) (POS .)) (TOP (POS The) (POS government) (POS estimates) (POS that) (POS the) (POS new) (POS plan) (POS will) (POS boost) (POS production) (POS next) (POS year) (POS by) (POS about) (POS 66) (POS million) (POS bushels) (POS .)) (TOP (POS It) (POS now) (POS estimates) (POS production) (POS for) (POS next) (POS year) (POS at) (POS just) (POS under) (POS 2.6) (POS billion) (POS bushels) (POS ,) (POS compared) (POS with) (POS this) (POS year) (POS 's) (POS estimated) (POS 2.04) (POS billion) (POS and) (POS a) (POS drought-stunted) (POS 1.81) (POS billion) (POS in) (POS 1988) (POS .)) (TOP (POS But) (POS the) (POS full) (POS effect) (POS on) (POS prices) (POS of) (POS the) (POS winter) (POS wheat) (POS now) (POS being) (POS planted) (POS wo) (POS n't) (POS be) (POS felt) (POS until) (POS the) (POS second) (POS half) (POS of) (POS next) (POS year) (POS .)) (TOP (POS Until) (POS then) (POS ,) (POS limited) (POS stocks) (POS are) (POS likely) (POS to) (POS keep) (POS prices) (POS near) (POS the) (POS $) (POS 4-a-bushel) (POS level) (POS ,) (POS analysts) (POS say) (POS .)) (TOP (POS On) (POS the) (POS Chicago) (POS Board) (POS of) (POS Trade) (POS Friday) (POS ,) (POS wheat) (POS for) (POS December) (POS delivery) (POS settled) (POS at) (POS $) (POS 4.0675) (POS a) (POS bushel) (POS ,) (POS unchanged) (POS .)) (TOP (POS In) (POS theory) (POS at) (POS least) (POS ,) (POS tight) (POS supplies) (POS next) (POS spring) (POS could) (POS leave) (POS the) (POS wheat) (POS futures) (POS market) (POS susceptible) (POS to) (POS a) (POS supply-demand) (POS squeeze) (POS ,) (POS said) (POS Daniel) (POS Basse) (POS ,) (POS a) (POS futures) (POS analyst) (POS with) (POS AgResource) (POS Co.) (POS in) (POS Chicago) (POS .)) (TOP (POS Such) (POS a) (POS situation) (POS can) (POS wreak) (POS havoc) (POS ,) (POS as) (POS was) (POS shown) (POS by) (POS the) (POS emergency) (POS that) (POS developed) (POS in) (POS soybean) (POS futures) (POS trading) (POS this) (POS summer) (POS on) (POS the) (POS Chicago) (POS Board) (POS of) (POS Trade) (POS .)) (TOP (POS In) (POS July) (POS ,) (POS the) (POS CBOT) (POS ordered) (POS Ferruzzi) (POS Finanziaria) (POS S.p) (POS .) (POS A.) (POS to) (POS liquidate) (POS futures) (POS positions) (POS equal) (POS to) (POS about) (POS 23) (POS million) (POS bushels) (POS of) (POS soybeans) (POS .)) (TOP (POS The) (POS exchange) (POS said) (POS it) (POS feared) (POS that) (POS some) (POS members) (POS would) (POS n't) (POS be) (POS able) (POS to) (POS find) (POS enough) (POS soybeans) (POS to) (POS deliver) (POS and) (POS would) (POS have) (POS to) (POS default) (POS on) (POS their) (POS contractual) (POS obligation) (POS to) (POS the) (POS Italian) (POS conglomerate) (POS ,) (POS which) (POS had) (POS refused) (POS requests) (POS to) (POS reduce) (POS its) (POS holdings) (POS .)) (TOP(S(NP(NNP Ferruzzi))(VP(VBZ has)(VP(VBD denied)(SBAR(S(NP(PRP it))(VP(VBD was)(VP(VBG trying)(S(VP(TO to)(VP(VB manipulate)(NP(NP(DT the)(NN soybean))(NNS futures)(NN market)))))))))))(. .))) (TOP (POS Unseasonably) (POS hot) (POS ,) (POS dry) (POS weather) (POS across) (POS large) (POS portions) (POS of) (POS the) (POS Great) (POS Plains) (POS and) (POS in) (POS wheat-growing) (POS areas) (POS in) (POS Washington) (POS and) (POS Oregon) (POS is) (POS threatening) (POS to) (POS reduce) (POS the) (POS yield) (POS from) (POS this) (POS season) (POS 's) (POS winter) (POS wheat) (POS crop) (POS ,) (POS said) (POS Conrad) (POS Leslie) (POS ,) (POS a) (POS futures) (POS analyst) (POS and) (POS head) (POS of) (POS Leslie) (POS Analytical) (POS in) (POS Chicago) (POS .)) (TOP (POS For) (POS example) (POS ,) (POS in) (POS the) (POS Oklahoma) (POS panhandle) (POS ,) (POS 40) (POS %) (POS or) (POS more) (POS of) (POS the) (POS topsoil) (POS is) (POS short) (POS of) (POS moisture) (POS .)) (TOP (POS That) (POS figure) (POS climbs) (POS to) (POS about) (POS 47) (POS %) (POS in) (POS wheat-growing) (POS portions) (POS of) (POS Kansas) (POS ,) (POS he) (POS said) (POS .)) (TOP (POS The) (POS Soviet) (POS Union) (POS has) (POS n't) (POS given) (POS any) (POS clear) (POS indication) (POS of) (POS its) (POS wheat) (POS purchase) (POS plans) (POS ,) (POS but) (POS many) (POS analysts) (POS expect) (POS Moscow) (POS to) (POS place) (POS sizable) (POS orders) (POS for) (POS U.S.) (POS wheat) (POS in) (POS the) (POS next) (POS few) (POS months) (POS ,) (POS further) (POS supporting) (POS prices) (POS .)) (TOP (POS ``) (POS Wheat) (POS prices) (POS will) (POS increasingly) (POS pivot) (POS off) (POS of) (POS Soviet) (POS demand) (POS '') (POS in) (POS coming) (POS weeks) (POS ,) (POS predicted) (POS Richard) (POS Feltes) (POS ,) (POS vice) (POS president) (POS ,) (POS research) (POS ,) (POS for) (POS Refco) (POS Inc.) (POS in) (POS Chicago) (POS .)) (TOP(FRAG(S(VP(VBG Looking)(ADVP(RB ahead))(PP(TO to)(NP(JJ other)(NN commodity)(NNS markets)))))(NP(DT this)(NN week))(: :))) (TOP (POS Orange) (POS Juice) (POS Traders) (POS will) (POS be) (POS watching) (POS to) (POS see) (POS how) (POS long) (POS and) (POS how) (POS far) (POS the) (POS price) (POS decline) (POS that) (POS began) (POS Friday) (POS will) (POS go) (POS .)) (TOP (POS Late) (POS Thursday) (POS ,) (POS after) (POS the) (POS close) (POS of) (POS trading) (POS ,) (POS the) (POS market) (POS received) (POS what) (POS would) (POS normally) (POS have) (POS been) (POS a) (POS bullish) (POS U.S.) (POS Department) (POS of) (POS Agriculture) (POS estimate) (POS of) (POS the) (POS 1989-90) (POS Florida) (POS orange) (POS crop) (POS .)) (TOP (POS It) (POS was) (POS near) (POS the) (POS low) (POS range) (POS of) (POS estimates) (POS ,) (POS at) (POS 130) (POS million) (POS 90-pound) (POS boxes) (POS ,) (POS compared) (POS with) (POS 146.6) (POS million) (POS boxes) (POS last) (POS season) (POS .)) (TOP (POS However) (POS ,) (POS as) (POS expected) (POS ,) (POS Brazil) (POS waited) (POS for) (POS the) (POS crop) (POS estimate) (POS to) (POS come) (POS out) (POS and) (POS then) (POS cut) (POS the) (POS export) (POS price) (POS of) (POS its) (POS juice) (POS concentrate) (POS to) (POS about) (POS $) (POS 1.34) (POS a) (POS pound) (POS from) (POS around) (POS $) (POS 1.55) (POS .)) (TOP (POS Friday) (POS 's) (POS consequent) (POS selling) (POS of) (POS futures) (POS contracts) (POS erased) (POS whatever) (POS supportive) (POS effect) (POS the) (POS U.S.) (POS report) (POS might) (POS have) (POS had) (POS and) (POS sent) (POS the) (POS November) (POS orange) (POS juice) (POS contract) (POS down) (POS as) (POS much) (POS as) (POS 6.55) (POS cents) (POS a) (POS pound) (POS at) (POS one) (POS time) (POS .)) (TOP(S(NP(PRP It))(VP(VBN settled)(PP(IN with)(NP(NP(DT a)(NN loss))(PP(IN of)(NP(NP(CD 4.95)(NNS cents))(PP(IN at)(NP(NP($ $)(CD 1.3210))(NP(DT a)(NN pound)))))))))(. .))) (TOP (POS Brazilian) (POS juice) (POS ,) (POS after) (POS a) (POS delay) (POS caused) (POS by) (POS drought) (POS at) (POS the) (POS start) (POS of) (POS its) (POS crop) (POS season) (POS ,) (POS is) (POS beginning) (POS to) (POS arrive) (POS in) (POS the) (POS U.S.) (POS in) (POS large) (POS quantities) (POS .)) (TOP (POS Brazil) (POS wants) (POS to) (POS stimulate) (POS demand) (POS for) (POS its) (POS product) (POS ,) (POS which) (POS is) (POS going) (POS to) (POS be) (POS in) (POS plentiful) (POS supply) (POS .)) (TOP (POS The) (POS price) (POS cut) (POS ,) (POS one) (POS analyst) (POS said) (POS ,) (POS appeared) (POS to) (POS be) (POS aimed) (POS even) (POS more) (POS at) (POS Europe) (POS ,) (POS where) (POS consumption) (POS of) (POS Brazilian) (POS juice) (POS has) (POS fallen) (POS .)) (TOP (POS It) (POS 's) (POS a) (POS dollar-priced) (POS product) (POS ,) (POS and) (POS the) (POS strong) (POS dollar) (POS has) (POS made) (POS it) (POS more) (POS expensive) (POS in) (POS Europe) (POS ,) (POS the) (POS analyst) (POS said) (POS .)) (TOP (POS New) (POS York) (POS futures) (POS prices) (POS have) (POS dropped) (POS significantly) (POS from) (POS more) (POS than) (POS $) (POS 2) (POS a) (POS pound) (POS at) (POS midyear) (POS .)) (TOP (POS Barring) (POS a) (POS cold) (POS snap) (POS or) (POS other) (POS crop) (POS problems) (POS in) (POS the) (POS growing) (POS areas) (POS ,) (POS downward) (POS pressure) (POS on) (POS prices) (POS is) (POS likely) (POS to) (POS continue) (POS into) (POS January) (POS ,) (POS when) (POS harvesting) (POS and) (POS processing) (POS of) (POS oranges) (POS in) (POS Florida) (POS reach) (POS their) (POS peak) (POS ,) (POS the) (POS analyst) (POS said) (POS .)) (TOP(NP(NNP Energy))) (TOP (POS Although) (POS some) (POS analysts) (POS look) (POS for) (POS profit-taking) (POS in) (POS the) (POS wake) (POS of) (POS Friday) (POS 's) (POS leap) (POS in) (POS crude) (POS oil) (POS prices) (POS ,) (POS last) (POS week) (POS 's) (POS rally) (POS is) (POS generally) (POS expected) (POS to) (POS continue) (POS this) (POS week) (POS .)) (TOP (POS ``) (POS I) (POS would) (POS continue) (POS to) (POS look) (POS for) (POS a) (POS stable) (POS crude) (POS market) (POS ,) (POS at) (POS least) (POS in) (POS futures) (POS '') (POS trading) (POS ,) (POS said) (POS William) (POS Hinton) (POS ,) (POS an) (POS energy) (POS futures) (POS broker) (POS with) (POS Stotler) (POS &) (POS Co) (POS .)) (TOP (POS Friday) (POS capped) (POS a) (POS week) (POS of) (POS steadily) (POS rising) (POS crude) (POS oil) (POS prices) (POS in) (POS both) (POS futures) (POS and) (POS spot) (POS markets) (POS .)) (TOP (POS On) (POS the) (POS New) (POS York) (POS Mercantile) (POS Exchange) (POS ,) (POS West) (POS Texas) (POS Intermediate) (POS crude) (POS for) (POS November) (POS delivery) (POS finished) (POS at) (POS $) (POS 20.89) (POS a) (POS barrel) (POS ,) (POS up) (POS 42) (POS cents) (POS on) (POS the) (POS day) (POS .)) (TOP (POS On) (POS European) (POS markets) (POS ,) (POS meanwhile) (POS ,) (POS spot) (POS prices) (POS of) (POS North) (POS Sea) (POS crudes) (POS were) (POS up) (POS 35) (POS to) (POS 75) (POS cents) (POS a) (POS barrel) (POS .)) (TOP (POS ``) (POS This) (POS market) (POS still) (POS wants) (POS to) (POS go) (POS higher) (POS ,) (POS '') (POS said) (POS Nauman) (POS Barakat) (POS ,) (POS a) (POS first) (POS vice) (POS president) (POS at) (POS Shearson) (POS Lehman) (POS Hutton) (POS Inc) (POS .)) (TOP (POS He) (POS predicted) (POS that) (POS the) (POS November) (POS contract) (POS will) (POS reach) (POS $) (POS 21.50) (POS a) (POS barrel) (POS or) (POS more) (POS on) (POS the) (POS New) (POS York) (POS Mercantile) (POS Exchange) (POS .)) (TOP (POS There) (POS has) (POS been) (POS little) (POS news) (POS to) (POS account) (POS for) (POS such) (POS buoyancy) (POS in) (POS the) (POS oil) (POS markets) (POS .)) (TOP (POS Analysts) (POS generally) (POS cite) (POS a) (POS lack) (POS of) (POS bearish) (POS developments) (POS as) (POS well) (POS as) (POS rumors) (POS of) (POS a) (POS possible) (POS tightening) (POS of) (POS supplies) (POS of) (POS some) (POS fuels) (POS and) (POS crudes) (POS .)) (TOP (POS There) (POS also) (POS are) (POS recurring) (POS reports) (POS that) (POS the) (POS Soviet) (POS Union) (POS is) (POS having) (POS difficulties) (POS with) (POS its) (POS oil) (POS exports) (POS and) (POS that) (POS Nigeria) (POS has) (POS about) (POS reached) (POS its) (POS production) (POS limit) (POS and) (POS ca) (POS n't) (POS produce) (POS as) (POS much) (POS as) (POS it) (POS could) (POS sell) (POS .)) (TOP (POS Many) (POS traders) (POS foresee) (POS a) (POS tightening) (POS of) (POS near-term) (POS supplies) (POS ,) (POS particularly) (POS of) (POS high-quality) (POS crudes) (POS such) (POS as) (POS those) (POS produced) (POS in) (POS the) (POS North) (POS Sea) (POS and) (POS in) (POS Nigeria) (POS .)) (TOP (POS If) (POS a) (POS hostile) (POS predator) (POS emerges) (POS for) (POS Saatchi) (POS &) (POS Saatchi) (POS Co.) (POS ,) (POS co-founders) (POS Charles) (POS and) (POS Maurice) (POS Saatchi) (POS will) (POS lead) (POS a) (POS management) (POS buy-out) (POS attempt) (POS ,) (POS an) (POS official) (POS close) (POS to) (POS the) (POS company) (POS said) (POS .)) (TOP (POS Financing) (POS for) (POS any) (POS takeover) (POS attempt) (POS may) (POS be) (POS problematic) (POS in) (POS the) (POS wake) (POS of) (POS Friday) (POS 's) (POS stock-market) (POS sell-off) (POS in) (POS New) (POS York) (POS and) (POS turmoil) (POS in) (POS the) (POS junk-bond) (POS market) (POS .)) (TOP (POS But) (POS the) (POS beleaguered) (POS British) (POS advertising) (POS and) (POS consulting) (POS giant) (POS ,) (POS which) (POS last) (POS week) (POS named) (POS a) (POS new) (POS chief) (POS executive) (POS officer) (POS to) (POS replace) (POS Maurice) (POS Saatchi) (POS ,) (POS has) (POS been) (POS the) (POS subject) (POS of) (POS intense) (POS takeover) (POS speculation) (POS for) (POS weeks) (POS .)) (TOP (POS Last) (POS week) (POS ,) (POS Saatchi) (POS 's) (POS largest) (POS shareholder) (POS ,) (POS Southeastern) (POS Asset) (POS Management) (POS ,) (POS said) (POS it) (POS had) (POS been) (POS approached) (POS by) (POS one) (POS or) (POS more) (POS third) (POS parties) (POS interested) (POS in) (POS a) (POS possible) (POS restructuring) (POS .)) (TOP (POS And) (POS Carl) (POS Spielvogel) (POS ,) (POS chief) (POS executive) (POS officer) (POS of) (POS Saatchi) (POS 's) (POS big) (POS Backer) (POS Spielvogel) (POS Bates) (POS advertising) (POS unit) (POS ,) (POS said) (POS he) (POS had) (POS offered) (POS to) (POS lead) (POS a) (POS management) (POS buy-out) (POS of) (POS the) (POS company) (POS ,) (POS but) (POS was) (POS rebuffed) (POS by) (POS Charles) (POS Saatchi) (POS .)) (TOP(S(NP(NNP Mr.)(NNP Spielvogel))(VP(VBD said)(SBAR(S(NP(PRP he))(VP(MD would)(RB n't)(VP(VB launch)(NP(DT a)(JJ hostile)(NN bid)))))))(. .))) (TOP (POS The) (POS executive) (POS close) (POS to) (POS Saatchi) (POS &) (POS Saatchi) (POS said) (POS that) (POS ``) (POS if) (POS a) (POS bidder) (POS came) (POS up) (POS with) (POS a) (POS ludicrously) (POS high) (POS offer) (POS ,) (POS a) (POS crazy) (POS offer) (POS which) (POS Saatchi) (POS knew) (POS it) (POS could) (POS n't) (POS beat) (POS ,) (POS it) (POS would) (POS have) (POS no) (POS choice) (POS but) (POS to) (POS recommend) (POS it) (POS to) (POS shareholders) (POS .)) (TOP (POS But) (POS -LCB-) (POS otherwise) (POS -RCB-) (POS it) (POS would) (POS undoubtedly) (POS come) (POS back) (POS '') (POS with) (POS an) (POS offer) (POS by) (POS management) (POS .)) (TOP (POS The) (POS executive) (POS said) (POS any) (POS buy-out) (POS would) (POS be) (POS led) (POS by) (POS the) (POS current) (POS board) (POS ,) (POS whose) (POS chairman) (POS is) (POS Maurice) (POS Saatchi) (POS and) (POS whose) (POS strategic) (POS guiding) (POS force) (POS is) (POS believed) (POS to) (POS be) (POS Charles) (POS Saatchi) (POS .)) (TOP (POS Mr.) (POS Spielvogel) (POS is) (POS n't) (POS part) (POS of) (POS the) (POS board) (POS ,) (POS nor) (POS are) (POS any) (POS of) (POS the) (POS other) (POS heads) (POS of) (POS Saatchi) (POS 's) (POS big) (POS U.S.-based) (POS ad) (POS agencies) (POS .)) (TOP (POS The) (POS executive) (POS did) (POS n't) (POS name) (POS any) (POS price) (POS ,) (POS but) (POS securities) (POS analysts) (POS have) (POS said) (POS Saatchi) (POS would) (POS fetch) (POS upward) (POS of) (POS $) (POS 1.3) (POS billion) (POS .)) (TOP (POS The) (POS executive) (POS denied) (POS speculation) (POS that) (POS Saatchi) (POS was) (POS bringing) (POS in) (POS the) (POS new) (POS chief) (POS executive) (POS officer) (POS only) (POS to) (POS clean) (POS up) (POS the) (POS company) (POS financially) (POS so) (POS that) (POS the) (POS brothers) (POS could) (POS lead) (POS a) (POS buy-back) (POS .)) (TOP (POS That) (POS speculation) (POS abounded) (POS Friday) (POS as) (POS industry) (POS executives) (POS analyzed) (POS the) (POS appointment) (POS of) (POS the) (POS new) (POS chief) (POS executive) (POS ,) (POS Robert) (POS Louis-Dreyfus) (POS ,) (POS who) (POS joins) (POS Saatchi) (POS and) (POS becomes) (POS a) (POS member) (POS of) (POS its) (POS board) (POS on) (POS Jan.) (POS 1) (POS .)) (TOP (POS Mr.) (POS Louis-Dreyfus) (POS ,) (POS formerly) (POS chief) (POS executive) (POS of) (POS the) (POS pharmaceutical) (POS research) (POS firm) (POS IMS) (POS International) (POS Inc.) (POS ,) (POS has) (POS a) (POS reputation) (POS as) (POS a) (POS savvy) (POS financial) (POS manager) (POS ,) (POS and) (POS will) (POS be) (POS charged) (POS largely) (POS with) (POS repairing) (POS Saatchi) (POS 's) (POS poor) (POS financial) (POS state) (POS .)) (TOP (POS Asked) (POS about) (POS the) (POS speculation) (POS that) (POS Mr.) (POS Louis-Dreyfus) (POS has) (POS been) (POS hired) (POS to) (POS pave) (POS the) (POS way) (POS for) (POS a) (POS buy-out) (POS by) (POS the) (POS brothers) (POS ,) (POS the) (POS executive) (POS replied) (POS ,) (POS ``) (POS That) (POS is) (POS n't) (POS the) (POS reason) (POS Dreyfus) (POS has) (POS been) (POS brought) (POS in) (POS .)) (TOP(S(NP(PRP He))(VP(VBD was)(VP(VBN brought)(PP(IN in)(S(VP(TO to)(VP(VB turn)(SBAR(IN around)(S(NP(DT the)(NN company))(. .)('' ''))))))))))) (TOP (POS Separately) (POS ,) (POS several) (POS Saatchi) (POS agency) (POS clients) (POS said) (POS they) (POS believe) (POS the) (POS company) (POS 's) (POS management) (POS shakeup) (POS will) (POS have) (POS little) (POS affect) (POS on) (POS them) (POS .)) (TOP (POS ``) (POS It) (POS has) (POS n't) (POS had) (POS any) (POS impact) (POS on) (POS us) (POS ,) (POS nor) (POS do) (POS we) (POS expect) (POS it) (POS to) (POS ,) (POS '') (POS said) (POS a) (POS spokeswoman) (POS for) (POS Miller) (POS Brewing) (POS Co.) (POS ,) (POS a) (POS major) (POS client) (POS of) (POS Backer) (POS Spielvogel) (POS .)) (TOP (POS John) (POS Lampe) (POS ,) (POS director) (POS of) (POS advertising) (POS at) (POS PaineWebber) (POS Inc.) (POS ,) (POS a) (POS Saatchi) (POS &) (POS Saatchi) (POS Advertising) (POS client) (POS ,) (POS said) (POS :) (POS ``) (POS We) (POS have) (POS no) (POS problem) (POS with) (POS the) (POS announcement) (POS ,) (POS because) (POS we) (POS do) (POS n't) (POS know) (POS what) (POS change) (POS it) (POS 's) (POS going) (POS to) (POS bring) (POS about) (POS .)) (TOP(S(NP(PRP We))(VP(VBP are)(RB n't)(VP(VBG going)(S(VP(TO to)(VP(VB change)(NP(NNS agencies))(SBAR(IN because)(S(PP(IN of)(NP(NP(DT a)(NN change))(PP(IN in)(NP(NNP London)))))(. .)('' '')))))))))) (TOP (POS Executives) (POS at) (POS Backer) (POS Spielvogel) (POS client) (POS Avis) (POS Inc.) (POS ,) (POS as) (POS well) (POS as) (POS at) (POS Saatchi) (POS client) (POS Philips) (POS Lighting) (POS Co.) (POS ,) (POS also) (POS said) (POS they) (POS saw) (POS no) (POS effect) (POS .)) (TOP (POS Executives) (POS at) (POS Prudential-Bache) (POS Securities) (POS Inc.) (POS ,) (POS a) (POS Backer) (POS Spielvogel) (POS client) (POS that) (POS is) (POS reviewing) (POS its) (POS account) (POS ,) (POS declined) (POS comment) (POS .)) (TOP (POS Mr.) (POS Spielvogel) (POS had) (POS said) (POS that) (POS Prudential-Bache) (POS was) (POS prepared) (POS to) (POS finance) (POS either) (POS a) (POS management) (POS buy-out) (POS and) (POS restructuring) (POS ,) (POS or) (POS a) (POS buy-out) (POS of) (POS Backer) (POS Spielvogel) (POS alone) (POS ,) (POS led) (POS by) (POS him) (POS .)) (TOP(S(NP(NN Ad)(NNS Notes))(: ...)(. .))) (TOP(INTJ(JJ NEW)(NNP ACCOUNT)(: :))) (TOP (POS California) (POS 's) (POS Glendale) (POS Federal) (POS Bank) (POS awarded) (POS its) (POS $) (POS 12) (POS million) (POS to) (POS $) (POS 15) (POS million) (POS account) (POS to) (POS the) (POS Los) (POS Angeles) (POS office) (POS of) (POS Omnicom) (POS Group) (POS 's) (POS BBDO) (POS agency) (POS .)) (TOP (POS The) (POS account) (POS was) (POS previously) (POS handled) (POS by) (POS Davis) (POS ,) (POS Ball) (POS &) (POS Colombatto) (POS Advertising) (POS Inc.) (POS ,) (POS a) (POS Los) (POS Angeles) (POS agency) (POS .)) (TOP(INTJ(NN ACCOUNT)(NNP REVIEW)(: :))) (TOP (POS Royal) (POS Crown) (POS Cola) (POS Co.) (POS has) (POS ended) (POS its) (POS relationship) (POS with) (POS the) (POS Boston) (POS office) (POS of) (POS Hill) (POS ,) (POS Holliday) (POS ,) (POS Connors) (POS ,) (POS Cosmopulos) (POS .)) (TOP (POS The) (POS account) (POS had) (POS billed) (POS about) (POS $) (POS 6) (POS million) (POS in) (POS 1988) (POS ,) (POS according) (POS to) (POS Leading) (POS National) (POS Advertisers) (POS .)) (TOP(FRAG(ADJP NOT-GUILTY)(NP(NNP PLEA))(: :))) (TOP (POS As) (POS expected) (POS ,) (POS Young) (POS &) (POS Rubicam) (POS Inc.) (POS along) (POS with) (POS two) (POS senior) (POS executives) (POS and) (POS a) (POS former) (POS employee) (POS ,) (POS pleaded) (POS not) (POS guilty) (POS in) (POS federal) (POS court) (POS in) (POS New) (POS Haven) (POS ,) (POS Conn.) (POS ,) (POS to) (POS conspiracy) (POS and) (POS racketeering) (POS charges) (POS .)) (TOP (POS The) (POS government) (POS has) (POS charged) (POS that) (POS they) (POS bribed) (POS Jamaican) (POS officials) (POS to) (POS win) (POS the) (POS Jamaica) (POS Tourist) (POS Board) (POS ad) (POS account) (POS in) (POS 1981) (POS .)) (TOP (POS A) (POS spokesman) (POS for) (POS the) (POS U.S.) (POS Attorney) (POS 's) (POS office) (POS said) (POS extradition) (POS proceedings) (POS are) (POS ``) (POS just) (POS beginning) (POS '') (POS for) (POS the) (POS other) (POS two) (POS defendants) (POS in) (POS the) (POS case) (POS ,) (POS Eric) (POS Anthony) (POS Abrahams) (POS ,) (POS former) (POS Jamaican) (POS tourism) (POS minister) (POS ,) (POS and) (POS Jamaican) (POS businessman) (POS Arnold) (POS Foote) (POS Jr) (POS .)) (TOP(NP(NNP KOREAN)(NNP AGENCY)(: :))) (TOP (POS The) (POS Samsung) (POS Group) (POS and) (POS Bozell) (POS Inc.) (POS agreed) (POS to) (POS establish) (POS a) (POS joint) (POS venture) (POS advertising) (POS agency) (POS in) (POS South) (POS Korea) (POS .)) (TOP (POS Bozell) (POS Cheil) (POS Corp.) (POS ,) (POS as) (POS the) (POS new) (POS agency) (POS will) (POS be) (POS called) (POS ,) (POS will) (POS be) (POS based) (POS in) (POS Seoul) (POS and) (POS is) (POS 70) (POS %) (POS owned) (POS by) (POS Samsung) (POS and) (POS 30) (POS %) (POS owned) (POS by) (POS Bozell) (POS .)) (TOP(S(NP(NNP Samsung))(ADVP(RB already))(VP(VBZ owns)(NP(NP(NNP Korea)(NNP First))(NNP Advertising)(NNP Co.)(, ,)(NP(NP(DT that)(NN country)(POS 's))(JJS largest)(NN agency))))(. .))) (TOP (POS Bozell) (POS joins) (POS Backer) (POS Spielvogel) (POS Bates) (POS and) (POS Ogilvy) (POS Group) (POS as) (POS U.S.) (POS agencies) (POS with) (POS interests) (POS in) (POS Korean) (POS agencies) (POS .)) (TOP (POS Citing) (POS a) (POS payment) (POS from) (POS a) (POS supplier) (POS and) (POS strong) (POS sales) (POS of) (POS certain) (POS data-storage) (POS products) (POS ,) (POS Maxtor) (POS Corp.) (POS said) (POS earnings) (POS and) (POS revenue) (POS jumped) (POS in) (POS its) (POS second) (POS quarter) (POS ended) (POS Sept.) (POS 24) (POS .)) (TOP (POS The) (POS maker) (POS of) (POS computer-data-storage) (POS products) (POS said) (POS net) (POS income) (POS rose) (POS to) (POS $) (POS 4.8) (POS million) (POS ,) (POS or) (POS 23) (POS cents) (POS a) (POS share) (POS ,) (POS from) (POS year-earlier) (POS net) (POS of) (POS $) (POS 1.1) (POS million) (POS ,) (POS or) (POS five) (POS cents) (POS a) (POS share) (POS .)) (TOP(S(NP(NN Revenue))(VP(VBD soared)(PP(TO to)(NP(QP($ $)(CD 117)(CD million))))(PP(IN from)(NP(QP($ $)(CD 81.5)(CD million)))))(. .))) (TOP (POS Maxtor) (POS said) (POS its) (POS results) (POS were) (POS boosted) (POS by) (POS $) (POS 2) (POS million) (POS in) (POS payments) (POS received) (POS from) (POS a) (POS supplier) (POS ,) (POS for) (POS a) (POS certain) (POS line) (POS of) (POS products) (POS that) (POS Maxtor) (POS is) (POS n't) (POS going) (POS to) (POS sell) (POS anymore) (POS .)) (TOP (POS Maxtor) (POS said) (POS effects) (POS from) (POS discontinuing) (POS the) (POS line) (POS may) (POS have) (POS a) (POS positive) (POS effect) (POS on) (POS future) (POS earnings) (POS and) (POS revenue) (POS .)) (TOP (POS A) (POS spokeswoman) (POS would) (POS n't) (POS elaborate) (POS ,) (POS but) (POS the) (POS company) (POS said) (POS the) (POS discontinued) (POS product) (POS has) (POS never) (POS been) (POS a) (POS major) (POS source) (POS of) (POS revenue) (POS or) (POS profit) (POS .)) (TOP (POS Operationally) (POS ,) (POS Maxtor) (POS benefited) (POS from) (POS robust) (POS sales) (POS of) (POS products) (POS that) (POS store) (POS data) (POS for) (POS high-end) (POS personal) (POS computers) (POS and) (POS computer) (POS workstations) (POS .)) (TOP (POS In) (POS the) (POS fiscal) (POS first) (POS half) (POS ,) (POS net) (POS was) (POS $) (POS 7) (POS million) (POS ,) (POS or) (POS 34) (POS cents) (POS a) (POS share) (POS ,) (POS up) (POS from) (POS the) (POS year-earlier) (POS $) (POS 3.1) (POS million) (POS ,) (POS or) (POS 15) (POS cents) (POS a) (POS share) (POS .)) (TOP(S(NP(NN Revenue))(VP(VBD rose)(PP(TO to)(NP(QP($ $)(CD 225.5)(CD million))))(PP(IN from)(NP(QP($ $)(CD 161.8)(CD million)))))(. .))) (TOP (POS Robert) (POS G.) (POS Walden) (POS ,) (POS 62) (POS years) (POS old) (POS ,) (POS was) (POS elected) (POS a) (POS director) (POS of) (POS this) (POS provider) (POS of) (POS advanced) (POS technology) (POS systems) (POS and) (POS services) (POS ,) (POS increasing) (POS the) (POS board) (POS to) (POS eight) (POS members) (POS .)) (TOP (POS He) (POS retired) (POS as) (POS senior) (POS vice) (POS president) (POS ,) (POS finance) (POS and) (POS administration) (POS ,) (POS and) (POS chief) (POS financial) (POS officer) (POS of) (POS the) (POS company) (POS Oct.) (POS 1) (POS .)) (TOP (POS Southmark) (POS Corp.) (POS said) (POS that) (POS it) (POS filed) (POS part) (POS of) (POS its) (POS 10-K) (POS report) (POS with) (POS the) (POS Securities) (POS and) (POS Exchange) (POS Commission) (POS ,) (POS but) (POS that) (POS the) (POS filing) (POS does) (POS n't) (POS include) (POS its) (POS audited) (POS financial) (POS statements) (POS and) (POS related) (POS information) (POS .)) (TOP (POS The) (POS real) (POS estate) (POS and) (POS thrift) (POS concern) (POS ,) (POS operating) (POS under) (POS bankruptcy-law) (POS proceedings) (POS ,) (POS said) (POS it) (POS told) (POS the) (POS SEC) (POS it) (POS could) (POS n't) (POS provide) (POS financial) (POS statements) (POS by) (POS the) (POS end) (POS of) (POS its) (POS first) (POS extension) (POS ``) (POS without) (POS unreasonable) (POS burden) (POS or) (POS expense) (POS .) (POS '')) (TOP (POS The) (POS company) (POS asked) (POS for) (POS a) (POS 15-day) (POS extension) (POS Sept.) (POS 30) (POS ,) (POS when) (POS the) (POS financial) (POS reports) (POS were) (POS due) (POS .)) (TOP (POS Southmark) (POS said) (POS it) (POS plans) (POS to) (POS amend) (POS its) (POS 10K) (POS to) (POS provide) (POS financial) (POS results) (POS as) (POS soon) (POS as) (POS its) (POS audit) (POS is) (POS completed) (POS .)) (TOP (POS Alan) (POS Seelenfreund) (POS ,) (POS 52) (POS years) (POS old) (POS ,) (POS was) (POS named) (POS chairman) (POS of) (POS this) (POS processor) (POS of) (POS prescription) (POS claims) (POS ,) (POS succeeding) (POS Thomas) (POS W.) (POS Field) (POS Jr.) (POS ,) (POS 55) (POS ,) (POS who) (POS resigned) (POS last) (POS month) (POS .)) (TOP (POS Mr.) (POS Field) (POS also) (POS had) (POS been) (POS chairman) (POS of) (POS McKesson) (POS Corp.) (POS ,) (POS resigning) (POS that) (POS post) (POS after) (POS a) (POS dispute) (POS with) (POS the) (POS board) (POS over) (POS corporate) (POS strategy) (POS .)) (TOP (POS Mr.) (POS Seelenfreund) (POS is) (POS executive) (POS vice) (POS president) (POS and) (POS chief) (POS financial) (POS officer) (POS of) (POS McKesson) (POS and) (POS will) (POS continue) (POS in) (POS those) (POS roles) (POS .)) (TOP (POS PCS) (POS also) (POS named) (POS Rex) (POS R.) (POS Malson) (POS ,) (POS 57) (POS ,) (POS executive) (POS vice) (POS president) (POS at) (POS McKesson) (POS ,) (POS as) (POS a) (POS director) (POS ,) (POS filling) (POS the) (POS seat) (POS vacated) (POS by) (POS Mr.) (POS Field) (POS .)) (TOP (POS Messrs.) (POS Malson) (POS and) (POS Seelenfreund) (POS are) (POS directors) (POS of) (POS McKesson) (POS ,) (POS which) (POS has) (POS an) (POS 86) (POS %) (POS stake) (POS in) (POS PCS) (POS .)) (TOP (POS MedChem) (POS Products) (POS Inc.) (POS said) (POS a) (POS U.S.) (POS District) (POS Court) (POS in) (POS Boston) (POS ruled) (POS that) (POS a) (POS challenge) (POS by) (POS MedChem) (POS to) (POS the) (POS validity) (POS of) (POS a) (POS U.S.) (POS patent) (POS held) (POS by) (POS Pharmacia) (POS Inc.) (POS was) (POS ``) (POS without) (POS merit) (POS .) (POS '')) (TOP (POS Pharmacia) (POS ,) (POS based) (POS in) (POS Upsala) (POS ,) (POS Sweden) (POS ,) (POS had) (POS charged) (POS in) (POS a) (POS lawsuit) (POS against) (POS MedChem) (POS that) (POS MedChem) (POS 's) (POS AMVISC) (POS product) (POS line) (POS infringes) (POS on) (POS the) (POS Pharmacia) (POS patent) (POS .)) (TOP (POS The) (POS patent) (POS is) (POS related) (POS to) (POS hyaluronic) (POS acid) (POS ,) (POS a) (POS rooster-comb) (POS extract) (POS used) (POS in) (POS eye) (POS surgery) (POS .)) (TOP (POS In) (POS its) (POS lawsuit) (POS ,) (POS Pharmacia) (POS is) (POS seeking) (POS unspecified) (POS damages) (POS and) (POS a) (POS preliminary) (POS injunction) (POS to) (POS block) (POS MedChem) (POS from) (POS selling) (POS the) (POS AMVISC) (POS products) (POS .)) (TOP (POS A) (POS MedChem) (POS spokesman) (POS said) (POS the) (POS products) (POS contribute) (POS about) (POS a) (POS third) (POS of) (POS MedChem) (POS 's) (POS sales) (POS and) (POS 10) (POS %) (POS to) (POS 20) (POS %) (POS of) (POS its) (POS earnings) (POS .)) (TOP (POS In) (POS the) (POS year) (POS ended) (POS Aug.) (POS 31) (POS ,) (POS 1988) (POS ,) (POS MedChem) (POS earned) (POS $) (POS 2.9) (POS million) (POS ,) (POS or) (POS 72) (POS cents) (POS a) (POS share) (POS ,) (POS on) (POS sales) (POS of) (POS $) (POS 17.4) (POS million) (POS .)) (TOP (POS MedChem) (POS said) (POS the) (POS court) (POS 's) (POS ruling) (POS was) (POS issued) (POS as) (POS part) (POS of) (POS a) (POS ``) (POS first-phase) (POS trial) (POS '') (POS in) (POS the) (POS patent-infringement) (POS proceedings) (POS and) (POS concerns) (POS only) (POS one) (POS of) (POS its) (POS defenses) (POS in) (POS the) (POS case) (POS .)) (TOP (POS It) (POS said) (POS it) (POS is) (POS considering) (POS ``) (POS all) (POS of) (POS its) (POS options) (POS in) (POS light) (POS of) (POS the) (POS decision) (POS ,) (POS including) (POS a) (POS possible) (POS appeal) (POS .) (POS '')) (TOP (POS The) (POS medical-products) (POS company) (POS added) (POS that) (POS it) (POS plans) (POS to) (POS ``) (POS assert) (POS its) (POS other) (POS defenses) (POS '') (POS against) (POS Pharmacia) (POS 's) (POS lawsuit) (POS ,) (POS including) (POS the) (POS claim) (POS that) (POS it) (POS has) (POS n't) (POS infringed) (POS on) (POS Pharmacia) (POS 's) (POS patent) (POS .)) (TOP (POS MedChem) (POS said) (POS that) (POS the) (POS court) (POS scheduled) (POS a) (POS conference) (POS for) (POS next) (POS Monday) (POS --) (POS to) (POS set) (POS a) (POS date) (POS for) (POS proceedings) (POS on) (POS Pharmacia) (POS 's) (POS motion) (POS for) (POS a) (POS preliminary) (POS injunction) (POS .)) (TOP (POS Newspaper) (POS publishers) (POS are) (POS reporting) (POS mixed) (POS third-quarter) (POS results) (POS ,) (POS aided) (POS by) (POS favorable) (POS newsprint) (POS prices) (POS and) (POS hampered) (POS by) (POS flat) (POS or) (POS declining) (POS advertising) (POS linage) (POS ,) (POS especially) (POS in) (POS the) (POS Northeast) (POS .)) (TOP (POS Adding) (POS to) (POS unsteadiness) (POS in) (POS the) (POS industry) (POS ,) (POS seasonal) (POS retail) (POS ad) (POS spending) (POS patterns) (POS in) (POS newspapers) (POS have) (POS been) (POS upset) (POS by) (POS shifts) (POS in) (POS ownership) (POS and) (POS general) (POS hardships) (POS within) (POS the) (POS retail) (POS industry) (POS .)) (TOP (POS In) (POS New) (POS York) (POS ,) (POS the) (POS Bonwit) (POS Teller) (POS and) (POS B.) (POS Altman) (POS &) (POS Co.) (POS department) (POS stores) (POS have) (POS filed) (POS for) (POS protection) (POS from) (POS creditors) (POS under) (POS Chapter) (POS 11) (POS of) (POS the) (POS federal) (POS Bankruptcy) (POS Code) (POS ,) (POS while) (POS the) (POS R.H.) (POS Macy) (POS &) (POS Co.) (POS ,) (POS Bloomingdale) (POS 's) (POS and) (POS Saks) (POS Fifth) (POS Avenue) (POS department-store) (POS chains) (POS are) (POS for) (POS sale) (POS .)) (TOP (POS Many) (POS papers) (POS throughout) (POS the) (POS country) (POS are) (POS also) (POS faced) (POS with) (POS a) (POS slowdown) (POS in) (POS classified-ad) (POS spending) (POS ,) (POS a) (POS booming) (POS category) (POS for) (POS newspapers) (POS in) (POS recent) (POS years) (POS .)) (TOP (POS Until) (POS recently) (POS ,) (POS industry) (POS analysts) (POS believed) (POS decreases) (POS in) (POS retail) (POS ad) (POS spending) (POS had) (POS bottomed) (POS out) (POS and) (POS would) (POS in) (POS fact) (POS increase) (POS in) (POS this) (POS year) (POS 's) (POS third) (POS and) (POS fourth) (POS quarters) (POS .)) (TOP (POS All) (POS bets) (POS are) (POS off) (POS ,) (POS analysts) (POS say) (POS ,) (POS because) (POS of) (POS the) (POS shifting) (POS ownership) (POS of) (POS the) (POS retail) (POS chains) (POS .)) (TOP (POS ``) (POS Improved) (POS paper) (POS prices) (POS will) (POS help) (POS offset) (POS weakness) (POS in) (POS linage) (POS ,) (POS but) (POS the) (POS retailers) (POS ') (POS problems) (POS have) (POS affected) (POS the) (POS amount) (POS of) (POS ad) (POS linage) (POS they) (POS usually) (POS run) (POS ,) (POS '') (POS said) (POS Edward) (POS J.) (POS Atorino) (POS ,) (POS industry) (POS analyst) (POS for) (POS Salomon) (POS Brothers) (POS Inc) (POS .)) (TOP(SINV(`` ``)(S(NP(NNS Retailers))(VP(VBP are)(ADVP(RB just))(PP(IN in)(NP(NN disarray)))))(. .)('' ''))) (TOP (POS For) (POS instance) (POS ,) (POS Gannett) (POS Co.) (POS posted) (POS an) (POS 11) (POS %) (POS gain) (POS in) (POS net) (POS income) (POS ,) (POS as) (POS total) (POS ad) (POS pages) (POS dropped) (POS at) (POS USA) (POS Today) (POS ,) (POS but) (POS advertising) (POS revenue) (POS rose) (POS because) (POS of) (POS a) (POS higher) (POS circulation) (POS rate) (POS base) (POS and) (POS increased) (POS rates) (POS .)) (TOP (POS Gannett) (POS 's) (POS 83) (POS daily) (POS and) (POS 35) (POS non-daily) (POS newspapers) (POS reported) (POS a) (POS 3) (POS %) (POS increase) (POS in) (POS advertising) (POS and) (POS circulation) (POS revenue) (POS .)) (TOP (POS Total) (POS advertising) (POS linage) (POS was) (POS ``) (POS modestly) (POS '') (POS lower) (POS as) (POS classified-ad) (POS volume) (POS increased) (POS ,) (POS while) (POS there) (POS was) (POS ``) (POS softer) (POS demand) (POS '') (POS for) (POS retail) (POS and) (POS national) (POS ad) (POS linage) (POS ,) (POS said) (POS John) (POS Curley) (POS ,) (POS Gannett) (POS 's) (POS chief) (POS executive) (POS officer) (POS .)) (TOP (POS At) (POS USA) (POS Today) (POS ,) (POS ad) (POS pages) (POS totaled) (POS 785) (POS for) (POS the) (POS quarter) (POS ,) (POS down) (POS 9.2) (POS %) (POS from) (POS the) (POS 1988) (POS period) (POS ,) (POS which) (POS was) (POS helped) (POS by) (POS increased) (POS ad) (POS spending) (POS from) (POS the) (POS Summer) (POS Olympics) (POS .)) (TOP (POS While) (POS USA) (POS Today) (POS 's) (POS total) (POS paid) (POS ad) (POS pages) (POS for) (POS the) (POS year) (POS to) (POS date) (POS totaled) (POS 2,735) (POS ,) (POS a) (POS decrease) (POS of) (POS 4) (POS %) (POS from) (POS last) (POS year) (POS ,) (POS the) (POS paper) (POS 's) (POS ad) (POS revenue) (POS increased) (POS 8) (POS %) (POS in) (POS the) (POS quarter) (POS and) (POS 13) (POS %) (POS in) (POS the) (POS nine) (POS months) (POS .)) (TOP (POS In) (POS the) (POS nine) (POS months) (POS ,) (POS Gannett) (POS 's) (POS net) (POS rose) (POS 9.5) (POS %) (POS to) (POS $) (POS 270) (POS million) (POS ,) (POS or) (POS $) (POS 1.68) (POS a) (POS share) (POS ,) (POS from) (POS $) (POS 247) (POS million) (POS ,) (POS or) (POS $) (POS 1.52) (POS a) (POS share) (POS .)) (TOP(S(NP(NN Revenue))(VP(VBD gained)(NP(NP(CD 6)(NN %))(PP(TO to)(NP(QP($ $)(CD 2.55)(CD billion)))))(PP(IN from)(NP(QP($ $)(CD 2.4)(CD billion)))))(. .))) (TOP (POS At) (POS Dow) (POS Jones) (POS &) (POS Co.) (POS ,) (POS third-quarter) (POS net) (POS income) (POS fell) (POS 9.9) (POS %) (POS from) (POS the) (POS year-earlier) (POS period) (POS .)) (TOP (POS Net) (POS fell) (POS to) (POS $) (POS 28.8) (POS million) (POS ,) (POS or) (POS 29) (POS cents) (POS a) (POS share) (POS ,) (POS from) (POS $) (POS 32) (POS million) (POS ,) (POS or) (POS 33) (POS cents) (POS a) (POS share) (POS .)) (TOP (POS The) (POS year-earlier) (POS period) (POS included) (POS a) (POS one-time) (POS gain) (POS of) (POS $) (POS 3.5) (POS million) (POS ,) (POS or) (POS four) (POS cents) (POS a) (POS share) (POS .)) (TOP(S(NP(NN Revenue))(VP(VBD gained)(NP(NP(CD 5.3)(NN %))(PP(TO to)(NP(QP($ $)(CD 404.1)(CD million)))))(PP(IN from)(NP(QP($ $)(CD 383.8)(CD million)))))(. .))) (TOP (POS The) (POS drop) (POS in) (POS profit) (POS reflected) (POS ,) (POS in) (POS part) (POS ,) (POS continued) (POS softness) (POS in) (POS financial) (POS advertising) (POS at) (POS The) (POS Wall) (POS Street) (POS Journal) (POS and) (POS Barron) (POS 's) (POS magazine) (POS .)) (TOP(S(NP(NP(NN Ad)(NN linage))(PP(IN at)(NP(DT the)(NNP Journal))))(VP(VBD fell)(NP(CD 6.1)(NN %))(PP(IN in)(NP(DT the)(JJ third)(NN quarter))))(. .))) (TOP(S(NP(NNP Affiliated)(NNPS Publications)(NNP Inc.))(VP(VBD reversed)(NP(NP(DT a)(JJ year-earlier)(JJ third)(NN quarter))(JJ net)(NN loss)))(. .))) (TOP (POS The) (POS publisher) (POS of) (POS the) (POS Boston) (POS Globe) (POS reported) (POS net) (POS of) (POS $) (POS 8.5) (POS million) (POS ,) (POS or) (POS 12) (POS cents) (POS a) (POS share) (POS ,) (POS compared) (POS with) (POS a) (POS loss) (POS of) (POS $) (POS 26.5) (POS million) (POS ,) (POS or) (POS 38) (POS cents) (POS a) (POS share) (POS ,) (POS for) (POS the) (POS third) (POS quarter) (POS in) (POS 1988) (POS .)) (TOP (POS William) (POS O.) (POS Taylor) (POS ,) (POS the) (POS parent) (POS 's) (POS chairman) (POS and) (POS chief) (POS executive) (POS officer) (POS ,) (POS said) (POS earnings) (POS continued) (POS to) (POS be) (POS hurt) (POS by) (POS softness) (POS in) (POS ad) (POS volume) (POS at) (POS the) (POS Boston) (POS newspaper) (POS .)) (TOP (POS Third-quarter) (POS profit) (POS estimates) (POS for) (POS several) (POS companies) (POS are) (POS being) (POS strongly) (POS affected) (POS by) (POS the) (POS price) (POS of) (POS newsprint) (POS ,) (POS which) (POS in) (POS the) (POS last) (POS two) (POS years) (POS has) (POS had) (POS several) (POS price) (POS increases) (POS .)) (TOP (POS After) (POS a) (POS supply) (POS crunch) (POS caused) (POS prices) (POS to) (POS rise) (POS 14) (POS %) (POS since) (POS 1986) (POS to) (POS $) (POS 650) (POS a) (POS metric) (POS ton) (POS ,) (POS analysts) (POS are) (POS encouraged) (POS ,) (POS because) (POS they) (POS do) (POS n't) (POS expect) (POS a) (POS price) (POS increase) (POS for) (POS the) (POS rest) (POS of) (POS this) (POS year) (POS .)) (TOP (POS Companies) (POS with) (POS daily) (POS newspapers) (POS in) (POS the) (POS Northeast) (POS will) (POS need) (POS the) (POS stable) (POS newsprint) (POS prices) (POS to) (POS ease) (POS damage) (POS from) (POS weak) (POS ad) (POS linage) (POS .)) (TOP (POS Mr.) (POS Atorino) (POS at) (POS Salomon) (POS Brothers) (POS said) (POS he) (POS estimates) (POS that) (POS Times) (POS Mirror) (POS Co.) (POS 's) (POS earnings) (POS were) (POS down) (POS for) (POS the) (POS third) (POS quarter) (POS ,) (POS because) (POS of) (POS soft) (POS advertising) (POS levels) (POS at) (POS its) (POS Long) (POS Island) (POS Newsday) (POS and) (POS Hartford) (POS Courant) (POS newspapers) (POS .)) (TOP (POS Trouble) (POS on) (POS the) (POS East) (POS Coast) (POS was) (POS likely) (POS offset) (POS by) (POS improved) (POS ad) (POS linage) (POS at) (POS the) (POS Los) (POS Angeles) (POS Times) (POS ,) (POS which) (POS this) (POS week) (POS also) (POS unveiled) (POS a) (POS redesign) (POS .)) (TOP (POS New) (POS York) (POS Times) (POS Co.) (POS is) (POS expected) (POS to) (POS report) (POS lower) (POS earnings) (POS for) (POS the) (POS third) (POS quarter) (POS because) (POS of) (POS continued) (POS weak) (POS advertising) (POS levels) (POS at) (POS its) (POS flagship) (POS New) (POS York) (POS Times) (POS and) (POS deep) (POS discounting) (POS of) (POS newsprint) (POS at) (POS its) (POS affiliate) (POS ,) (POS Forest) (POS Products) (POS Group) (POS .)) (TOP (POS ``) (POS Times) (POS Co.) (POS 's) (POS regional) (POS daily) (POS newspapers) (POS are) (POS holding) (POS up) (POS well) (POS ,) (POS but) (POS there) (POS is) (POS little) (POS sign) (POS that) (POS things) (POS will) (POS improve) (POS in) (POS the) (POS New) (POS York) (POS market) (POS ,) (POS '') (POS said) (POS Alan) (POS Kassan) (POS ,) (POS an) (POS analyst) (POS with) (POS Shearson) (POS Lehman) (POS Hutton) (POS .)) (TOP (POS Washington) (POS Post) (POS Co.) (POS is) (POS expected) (POS to) (POS report) (POS improved) (POS earnings) (POS ,) (POS largely) (POS because) (POS of) (POS increased) (POS cable) (POS revenue) (POS and) (POS publishing) (POS revenue) (POS helped) (POS by) (POS an) (POS improved) (POS retail) (POS market) (POS in) (POS the) (POS Washington) (POS area) (POS .)) (TOP(S(PP(VBG According)(PP(TO to)(NP(NNS analysts))))(, ,)(NP(NNS profits))(VP(VBD were)(RB also)(VP(VBD helped)(PP(IN by)(NP(JJ successful)(JJ cost-cutting)(NNS measures)))(PP(IN at)(NP(NNP Newsweek)))))(. .))) (TOP (POS The) (POS news-weekly) (POS has) (POS faced) (POS heightened) (POS competition) (POS from) (POS rival) (POS Time) (POS magazine) (POS and) (POS a) (POS relatively) (POS flat) (POS magazine) (POS advertising) (POS market) (POS .)) (TOP (POS Knight-Ridder) (POS Inc.) (POS is) (POS faced) (POS with) (POS continued) (POS uncertainty) (POS over) (POS the) (POS pending) (POS joint) (POS operating) (POS agreement) (POS between) (POS its) (POS Detroit) (POS Free) (POS Press) (POS and) (POS Gannett) (POS 's) (POS Detroit) (POS News) (POS ,) (POS and) (POS has) (POS told) (POS analysts) (POS that) (POS earnings) (POS were) (POS down) (POS in) (POS the) (POS third) (POS quarter) (POS .)) (TOP (POS However) (POS ,) (POS analysts) (POS point) (POS to) (POS positive) (POS advertising) (POS spending) (POS at) (POS several) (POS of) (POS its) (POS major) (POS daily) (POS newspapers) (POS ,) (POS such) (POS as) (POS the) (POS Miami) (POS Herald) (POS and) (POS San) (POS Jose) (POS Mercury) (POS News) (POS .)) (TOP (POS ``) (POS The) (POS Miami) (POS market) (POS is) (POS coming) (POS back) (POS strong) (POS after) (POS a) (POS tough) (POS couple) (POS of) (POS years) (POS '') (POS when) (POS Knight-Ridder) (POS ``) (POS was) (POS starting) (POS up) (POS a) (POS Hispanic) (POS edition) (POS and) (POS circulation) (POS was) (POS falling) (POS ,) (POS '') (POS said) (POS Bruce) (POS Thorp) (POS ,) (POS an) (POS analyst) (POS for) (POS Provident) (POS National) (POS Bank) (POS .)) (TOP (POS General) (POS Motors) (POS Corp.) (POS ,) (POS in) (POS a) (POS series) (POS of) (POS moves) (POS that) (POS angered) (POS union) (POS officials) (POS in) (POS the) (POS U.S.) (POS and) (POS Canada) (POS ,) (POS has) (POS signaled) (POS that) (POS as) (POS many) (POS as) (POS five) (POS North) (POS American) (POS assembly) (POS plants) (POS may) (POS not) (POS survive) (POS the) (POS mid-1990s) (POS as) (POS the) (POS corporation) (POS struggles) (POS to) (POS cut) (POS its) (POS excess) (POS vehicle-making) (POS capacity) (POS .)) (TOP (POS In) (POS announcements) (POS to) (POS workers) (POS late) (POS last) (POS week) (POS ,) (POS GM) (POS effectively) (POS signed) (POS death) (POS notices) (POS for) (POS two) (POS full-sized) (POS van) (POS assembly) (POS plants) (POS ,) (POS and) (POS cast) (POS serious) (POS doubt) (POS on) (POS the) (POS futures) (POS of) (POS three) (POS U.S.) (POS car) (POS factories) (POS .)) (TOP (POS GM) (POS is) (POS under) (POS intense) (POS pressure) (POS to) (POS close) (POS factories) (POS that) (POS became) (POS unprofitable) (POS as) (POS the) (POS giant) (POS auto) (POS maker) (POS 's) (POS U.S.) (POS market) (POS share) (POS skidded) (POS during) (POS the) (POS past) (POS decade) (POS .)) (TOP (POS The) (POS company) (POS ,) (POS currently) (POS using) (POS about) (POS 80) (POS %) (POS of) (POS its) (POS North) (POS American) (POS vehicle) (POS capacity) (POS ,) (POS has) (POS vowed) (POS it) (POS will) (POS run) (POS at) (POS 100) (POS %) (POS of) (POS capacity) (POS by) (POS 1992) (POS .)) (TOP (POS Just) (POS a) (POS month) (POS ago) (POS ,) (POS GM) (POS announced) (POS it) (POS would) (POS make) (POS an) (POS aging) (POS assembly) (POS plant) (POS in) (POS Lakewood) (POS ,) (POS Ga.) (POS ,) (POS the) (POS eighth) (POS U.S.) (POS assembly) (POS facility) (POS to) (POS close) (POS since) (POS 1987) (POS .)) (TOP (POS Now) (POS ,) (POS GM) (POS appears) (POS to) (POS be) (POS stepping) (POS up) (POS the) (POS pace) (POS of) (POS its) (POS factory) (POS consolidation) (POS to) (POS get) (POS in) (POS shape) (POS for) (POS the) (POS 1990s) (POS .)) (TOP (POS One) (POS reason) (POS is) (POS mounting) (POS competition) (POS from) (POS new) (POS Japanese) (POS car) (POS plants) (POS in) (POS the) (POS U.S.) (POS that) (POS are) (POS pouring) (POS out) (POS more) (POS than) (POS one) (POS million) (POS vehicles) (POS a) (POS year) (POS at) (POS costs) (POS lower) (POS than) (POS GM) (POS can) (POS match) (POS .)) (TOP (POS Another) (POS is) (POS that) (POS United) (POS Auto) (POS Workers) (POS union) (POS officials) (POS have) (POS signaled) (POS they) (POS want) (POS tighter) (POS no-layoff) (POS provisions) (POS in) (POS the) (POS new) (POS Big) (POS Three) (POS national) (POS contract) (POS that) (POS will) (POS be) (POS negotiated) (POS next) (POS year) (POS .)) (TOP (POS GM) (POS officials) (POS want) (POS to) (POS get) (POS their) (POS strategy) (POS to) (POS reduce) (POS capacity) (POS and) (POS the) (POS work) (POS force) (POS in) (POS place) (POS before) (POS those) (POS talks) (POS begin) (POS .)) (TOP (POS The) (POS problem) (POS ,) (POS however) (POS ,) (POS is) (POS that) (POS GM) (POS 's) (POS moves) (POS are) (POS coming) (POS at) (POS a) (POS time) (POS when) (POS UAW) (POS leaders) (POS are) (POS trying) (POS to) (POS silence) (POS dissidents) (POS who) (POS charge) (POS the) (POS union) (POS is) (POS too) (POS passive) (POS in) (POS the) (POS face) (POS of) (POS GM) (POS layoffs) (POS .)) (TOP (POS Against) (POS that) (POS backdrop) (POS ,) (POS UAW) (POS Vice) (POS President) (POS Stephen) (POS P.) (POS Yokich) (POS ,) (POS who) (POS recently) (POS became) (POS head) (POS of) (POS the) (POS union) (POS 's) (POS GM) (POS department) (POS ,) (POS issued) (POS a) (POS statement) (POS Friday) (POS blasting) (POS GM) (POS 's) (POS ``) (POS flagrant) (POS insensitivity) (POS '') (POS toward) (POS union) (POS members) (POS .)) (TOP (POS The) (POS auto) (POS maker) (POS 's) (POS decision) (POS to) (POS let) (POS word) (POS of) (POS the) (POS latest) (POS shutdowns) (POS and) (POS product) (POS reassignments) (POS trickle) (POS out) (POS in) (POS separate) (POS communiques) (POS to) (POS the) (POS affected) (POS plants) (POS showed) (POS ``) (POS disarray) (POS '') (POS and) (POS an) (POS ``) (POS inability) (POS or) (POS unwillingness) (POS to) (POS provide) (POS consistent) (POS information) (POS ,) (POS '') (POS Mr.) (POS Yokich) (POS said) (POS .)) (TOP (POS GM) (POS officials) (POS told) (POS workers) (POS late) (POS last) (POS week) (POS of) (POS the) (POS following) (POS moves) (POS :) (POS Production) (POS of) (POS full-sized) (POS vans) (POS will) (POS be) (POS consolidated) (POS into) (POS a) (POS single) (POS plant) (POS in) (POS Flint) (POS ,) (POS Mich) (POS .)) (TOP (POS That) (POS means) (POS two) (POS plants) (POS --) (POS one) (POS in) (POS Scarborough) (POS ,) (POS Ontario) (POS ,) (POS and) (POS the) (POS other) (POS in) (POS Lordstown) (POS ,) (POS Ohio) (POS --) (POS probably) (POS will) (POS be) (POS shut) (POS down) (POS after) (POS the) (POS end) (POS of) (POS 1991) (POS .)) (TOP (POS The) (POS shutdowns) (POS will) (POS idle) (POS about) (POS 3,000) (POS Canadian) (POS assembly) (POS workers) (POS and) (POS about) (POS 2,500) (POS workers) (POS in) (POS Ohio) (POS .)) (TOP (POS Robert) (POS White) (POS ,) (POS Canadian) (POS Auto) (POS Workers) (POS union) (POS president) (POS ,) (POS used) (POS the) (POS impending) (POS Scarborough) (POS shutdown) (POS to) (POS criticize) (POS the) (POS U.S.-Canada) (POS free) (POS trade) (POS agreement) (POS and) (POS its) (POS champion) (POS ,) (POS Prime) (POS Minister) (POS Brian) (POS Mulroney) (POS .)) (TOP (POS But) (POS Canadian) (POS auto) (POS workers) (POS may) (POS benefit) (POS from) (POS a) (POS separate) (POS GM) (POS move) (POS that) (POS affects) (POS three) (POS U.S.) (POS car) (POS plants) (POS and) (POS one) (POS in) (POS Quebec) (POS .)) (TOP (POS Workers) (POS at) (POS plants) (POS in) (POS Van) (POS Nuys) (POS ,) (POS Calif.) (POS ,) (POS Oklahoma) (POS City) (POS and) (POS Pontiac) (POS ,) (POS Mich.) (POS ,) (POS were) (POS told) (POS their) (POS facilities) (POS are) (POS no) (POS longer) (POS being) (POS considered) (POS to) (POS build) (POS the) (POS next) (POS generation) (POS of) (POS the) (POS Pontiac) (POS Firebird) (POS and) (POS Chevrolet) (POS Camaro) (POS muscle) (POS cars) (POS .)) (TOP (POS GM) (POS is) (POS studying) (POS whether) (POS it) (POS can) (POS build) (POS the) (POS new) (POS Camaro-Firebird) (POS profitably) (POS at) (POS a) (POS plant) (POS in) (POS St.) (POS Therese) (POS ,) (POS Quebec) (POS ,) (POS company) (POS and) (POS union) (POS officials) (POS said) (POS .)) (TOP (POS That) (POS announcement) (POS left) (POS union) (POS officials) (POS in) (POS Van) (POS Nuys) (POS and) (POS Oklahoma) (POS City) (POS uncertain) (POS about) (POS their) (POS futures) (POS .)) (TOP (POS The) (POS Van) (POS Nuys) (POS plant) (POS ,) (POS which) (POS employs) (POS about) (POS 3,000) (POS workers) (POS ,) (POS does) (POS n't) (POS have) (POS a) (POS product) (POS to) (POS build) (POS after) (POS 1993) (POS .)) (TOP (POS Jerry) (POS Shrieves) (POS ,) (POS UAW) (POS local) (POS president) (POS ,) (POS said) (POS the) (POS facility) (POS was) (POS asked) (POS to) (POS draw) (POS up) (POS plans) (POS to) (POS continue) (POS working) (POS as) (POS a) (POS ``) (POS flex) (POS plant) (POS ,) (POS '') (POS which) (POS could) (POS build) (POS several) (POS different) (POS types) (POS of) (POS products) (POS on) (POS short) (POS notice) (POS to) (POS satisfy) (POS demand) (POS .)) (TOP (POS At) (POS the) (POS Oklahoma) (POS City) (POS plant) (POS ,) (POS which) (POS employs) (POS about) (POS 6,000) (POS workers) (POS building) (POS the) (POS eight-year-old) (POS A-body) (POS mid-sized) (POS cars) (POS ,) (POS Steve) (POS Featherston) (POS ,) (POS UAW) (POS local) (POS vice) (POS president) (POS ,) (POS said) (POS the) (POS plant) (POS has) (POS no) (POS new) (POS product) (POS lined) (POS up) (POS ,) (POS and) (POS ``) (POS none) (POS of) (POS us) (POS knows) (POS '') (POS when) (POS the) (POS A-body) (POS cars) (POS will) (POS die) (POS .)) (TOP (POS He) (POS said) (POS he) (POS believes) (POS GM) (POS has) (POS plans) (POS to) (POS keep) (POS building) (POS A-body) (POS cars) (POS into) (POS the) (POS mid-1990s) (POS .)) (TOP (POS At) (POS Pontiac) (POS ,) (POS however) (POS ,) (POS the) (POS Camaro-Firebird) (POS decision) (POS appears) (POS to) (POS erase) (POS UAW) (POS hopes) (POS that) (POS GM) (POS would) (POS reopen) (POS the) (POS shuttered) (POS assembly) (POS plant) (POS that) (POS last) (POS built) (POS the) (POS plastic-bodied) (POS ,) (POS two-seater) (POS Pontiac) (POS Fiero) (POS model) (POS .)) (TOP (POS The) (POS Fiero) (POS plant) (POS was) (POS viewed) (POS as) (POS a) (POS model) (POS of) (POS union-management) (POS cooperation) (POS at) (POS GM) (POS before) (POS slow) (POS sales) (POS of) (POS the) (POS Fiero) (POS forced) (POS the) (POS company) (POS to) (POS close) (POS the) (POS factory) (POS last) (POS year) (POS .)) (TOP(S(NP(NNP Union)(NNS officials))(VP(VBP have)(VP(VBN taken)(NP(DT a)(NN beating))(ADVP(RB politically))(PP(IN as)(NP(DT a)(NN result)))))(. .))) (TOP (POS Dissident) (POS UAW) (POS members) (POS have) (POS used) (POS the) (POS Fiero) (POS plant) (POS as) (POS a) (POS symbol) (POS of) (POS labor-management) (POS cooperation) (POS 's) (POS failure) (POS .)) (TOP (POS Institut) (POS Merieux) (POS S.A.) (POS of) (POS France) (POS said) (POS the) (POS Canadian) (POS government) (POS raised) (POS an) (POS obstacle) (POS to) (POS its) (POS proposed) (POS acquisition) (POS of) (POS Connaught) (POS BioSciences) (POS Inc.) (POS for) (POS 942) (POS million) (POS Canadian) (POS dollars) (POS -LRB-) (POS US$) (POS 801.6) (POS million) (POS -RRB-) (POS .)) (TOP (POS Merieux) (POS said) (POS the) (POS government) (POS 's) (POS minister) (POS of) (POS industry) (POS ,) (POS science) (POS and) (POS technology) (POS told) (POS it) (POS that) (POS he) (POS was) (POS n't) (POS convinced) (POS that) (POS the) (POS purchase) (POS is) (POS likely) (POS to) (POS be) (POS of) (POS ``) (POS net) (POS benefit) (POS '') (POS to) (POS Canada) (POS .)) (TOP(S(NP(JJ Canadian)(NN investment)(NNS rules))(VP(VB require)(SBAR(IN that)(S(NP(JJ big)(JJ foreign)(NNS takeovers))(VP(VB meet)(NP(DT that)(NN standard))))))(. .))) (TOP (POS The) (POS French) (POS company) (POS said) (POS the) (POS government) (POS gave) (POS it) (POS 30) (POS days) (POS in) (POS which) (POS to) (POS submit) (POS information) (POS to) (POS further) (POS support) (POS its) (POS takeover) (POS plan) (POS .)) (TOP(S(NP(DT Both)(NNP Merieux)(CC and)(NNP Connaught))(VP(VBP are)(NP(NP(NN biotechnology)(NN research))(CC and)(NN vaccine)(NN manufacturing)(NNS concerns)))(. .))) (TOP(S(NP(NP(DT The)(NN government)(POS 's))(NN action))(VP(VBD was)(ADJP(JJ unusual)))(. .))) (TOP (POS Alan) (POS Nymark) (POS ,) (POS executive) (POS vice) (POS president) (POS of) (POS Investment) (POS Canada) (POS ,) (POS which) (POS oversees) (POS foreign) (POS takeovers) (POS ,) (POS said) (POS it) (POS marked) (POS the) (POS first) (POS time) (POS in) (POS its) (POS four-year) (POS history) (POS that) (POS the) (POS agency) (POS has) (POS made) (POS an) (POS adverse) (POS net-benefit) (POS decision) (POS about) (POS the) (POS acquisition) (POS of) (POS a) (POS publicly) (POS traded) (POS company) (POS .)) (TOP (POS He) (POS said) (POS it) (POS has) (POS reached) (POS the) (POS same) (POS conclusions) (POS about) (POS some) (POS attempts) (POS to) (POS buy) (POS closely) (POS held) (POS concerns) (POS ,) (POS but) (POS eventually) (POS allowed) (POS those) (POS acquisitions) (POS to) (POS proceed) (POS .)) (TOP (POS ``) (POS This) (POS is) (POS n't) (POS a) (POS change) (POS in) (POS government) (POS policy) (POS ;) (POS this) (POS provision) (POS has) (POS been) (POS used) (POS before) (POS ,) (POS '') (POS said) (POS Jodi) (POS Redmond) (POS ,) (POS press) (POS secretary) (POS for) (POS Harvie) (POS Andre) (POS ,) (POS Canada) (POS 's) (POS minister) (POS of) (POS industry) (POS ,) (POS science) (POS and) (POS technology) (POS .)) (TOP(S(NP(NNP Mr.)(NNP Andre))(VP(VBD issued)(SBAR(S(NP(DT the)(NN ruling))(VP(VBN based)(PP(IN on)(NP(NP(DT a)(NN recommendation))(PP(IN by)(NP(NNP Investment)(NNP Canada)))))))))(. .))) (TOP (POS Spokesmen) (POS for) (POS Merieux) (POS and) (POS Connaught) (POS said) (POS they) (POS had) (POS n't) (POS been) (POS informed) (POS of) (POS specific) (POS areas) (POS of) (POS concern) (POS by) (POS either) (POS the) (POS government) (POS or) (POS Investment) (POS Canada) (POS ,) (POS but) (POS added) (POS they) (POS hope) (POS to) (POS have) (POS more) (POS information) (POS early) (POS this) (POS week) (POS .)) (TOP(S(NP(NNP Investment)(NNP Canada))(VP(VBD declined)(S(VP(TO to)(VP(VB comment)(PP(IN on)(NP(DT the)(NNS reasons)))(PP(IN for)(NP(DT the)(NN government)(NN decision)))))))(. .))) (TOP (POS Viren) (POS Mehta) (POS ,) (POS a) (POS partner) (POS with) (POS Mehta) (POS &) (POS Isaly) (POS ,) (POS a) (POS New) (POS York-based) (POS pharmaceutical) (POS industry) (POS research) (POS firm) (POS ,) (POS said) (POS the) (POS government) (POS 's) (POS ruling) (POS was) (POS n't) (POS unexpected) (POS .)) (TOP (POS ``) (POS This) (POS has) (POS become) (POS a) (POS very) (POS politicized) (POS deal) (POS ,) (POS concerning) (POS Canada) (POS 's) (POS only) (POS large) (POS ,) (POS world-class) (POS bio-research) (POS or) (POS pharmaceutical) (POS company) (POS ,) (POS '') (POS Mr.) (POS Mehta) (POS said) (POS .)) (TOP (POS Mr.) (POS Mehta) (POS said) (POS the) (POS move) (POS that) (POS could) (POS allow) (POS the) (POS transaction) (POS to) (POS go) (POS ahead) (POS as) (POS planned) (POS could) (POS be) (POS an) (POS out-of-court) (POS settlement) (POS of) (POS Connaught) (POS 's) (POS dispute) (POS with) (POS the) (POS University) (POS of) (POS Toronto) (POS .)) (TOP (POS The) (POS University) (POS is) (POS seeking) (POS to) (POS block) (POS the) (POS acquisition) (POS of) (POS Connaught) (POS by) (POS foreign) (POS interests) (POS ,) (POS citing) (POS concerns) (POS about) (POS the) (POS amount) (POS of) (POS research) (POS that) (POS would) (POS be) (POS done) (POS in) (POS Canada) (POS .)) (TOP(S(S(NP(DT The)(NN university))(VP(VBZ is)(S(VP(VBG considering)(NP(DT a)(NN settlement)(NN proposal))))))(VP(VBN made)(PP(IN by)(NP(NNP Connaught))))(. .))) (TOP (POS While) (POS neither) (POS side) (POS will) (POS disclose) (POS its) (POS contents) (POS ,) (POS Mr.) (POS Mehta) (POS expects) (POS it) (POS to) (POS contain) (POS more) (POS specific) (POS guarantees) (POS on) (POS research) (POS and) (POS development) (POS spending) (POS levels) (POS in) (POS Canada) (POS than) (POS Merieux) (POS offered) (POS to) (POS Investment) (POS Canada) (POS .)) (TOP (POS Some) (POS analysts) (POS ,) (POS such) (POS as) (POS Murray) (POS Grossner) (POS of) (POS Toronto-based) (POS Richardson) (POS Greenshields) (POS Inc.) (POS ,) (POS believe) (POS the) (POS government) (POS ruling) (POS leaves) (POS the) (POS door) (POS open) (POS for) (POS other) (POS bidders) (POS ,) (POS such) (POS as) (POS Switzerland) (POS 's) (POS Ciba-Geigy) (POS and) (POS Chiron) (POS Corp.) (POS of) (POS Emeryville) (POS ,) (POS Calif) (POS .)) (TOP (POS Officials) (POS for) (POS the) (POS two) (POS concerns) (POS ,) (POS which) (POS are) (POS bidding) (POS C$) (POS 30) (POS a) (POS share) (POS for) (POS Connaught) (POS ,) (POS could) (POS n't) (POS be) (POS reached) (POS for) (POS comment) (POS .)) (TOP(S(NP(JJ French)(JJ state-owned)(NNP Rhone-Poulenc)(NNP S.A.))(VP(VBZ holds)(NP(CD 51)(NN %))(PP(IN of)(NP(NNP Merieux))))(. .))) (TOP (POS Weatherford) (POS International) (POS Inc.) (POS said) (POS it) (POS canceled) (POS plans) (POS for) (POS a) (POS preferred-stock) (POS swap) (POS but) (POS may) (POS resume) (POS payment) (POS of) (POS dividends) (POS on) (POS the) (POS stock) (POS ,) (POS and) (POS added) (POS that) (POS it) (POS expects) (POS to) (POS publicly) (POS offer) (POS about) (POS 10) (POS million) (POS common) (POS shares) (POS .)) (TOP (POS The) (POS company) (POS said) (POS it) (POS planned) (POS to) (POS offer) (POS an) (POS undetermined) (POS number) (POS of) (POS common) (POS shares) (POS in) (POS exchange) (POS for) (POS the) (POS 585,000) (POS shares) (POS of) (POS its) (POS preferred) (POS stock) (POS outstanding) (POS .)) (TOP(S(NP(DT The)(NN exchange)(NN ratio))(VP(VBD was)(ADJP(RB never)(VBN established)))(. .))) (TOP(S(NP(NNP Weatherford))(VP(VBD said)(SBAR(S(NP(NN market)(NNS conditions))(VP(VBN led)(PP(TO to)(NP(NP(DT the)(NN cancellation))(PP(IN of)(NP(DT the)(JJ planned)(NN exchange)))))))))(. .))) (TOP (POS The) (POS energy-services) (POS concern) (POS said) (POS ,) (POS however) (POS ,) (POS that) (POS in) (POS January) (POS 1990) (POS ,) (POS it) (POS may) (POS resume) (POS payments) (POS of) (POS dividends) (POS on) (POS the) (POS preferred) (POS stock) (POS .)) (TOP (POS Weatherford) (POS suspended) (POS its) (POS preferred-dividend) (POS payment) (POS in) (POS October) (POS 1985) (POS and) (POS said) (POS it) (POS has) (POS n't) (POS any) (POS plans) (POS to) (POS catch) (POS up) (POS on) (POS dividends) (POS in) (POS arrears) (POS about) (POS $) (POS 6) (POS million) (POS ,) (POS but) (POS will) (POS do) (POS so) (POS some) (POS time) (POS in) (POS the) (POS future) (POS .)) (TOP (POS Additionally) (POS ,) (POS the) (POS company) (POS said) (POS it) (POS filed) (POS with) (POS the) (POS Securities) (POS and) (POS Exchange) (POS Commission) (POS for) (POS the) (POS proposed) (POS offering) (POS of) (POS 10) (POS million) (POS shares) (POS of) (POS common) (POS stock) (POS ,) (POS expected) (POS to) (POS be) (POS offered) (POS in) (POS November) (POS .)) (TOP (POS The) (POS company) (POS said) (POS Salomon) (POS Brothers) (POS Inc.) (POS and) (POS Howard) (POS ,) (POS Weil) (POS ,) (POS Labouisse) (POS ,) (POS Friedrichs) (POS Inc.) (POS ,) (POS underwriters) (POS for) (POS the) (POS offering) (POS ,) (POS were) (POS granted) (POS an) (POS option) (POS to) (POS buy) (POS as) (POS much) (POS as) (POS an) (POS additional) (POS 1.5) (POS million) (POS shares) (POS to) (POS cover) (POS over-allotments) (POS .)) (TOP(S(NP(NNS Proceeds))(VP(MD will)(VP(VB be)(VP(VBN used)(S(VP(TO to)(VP(VB eliminate)(CC and)(VP(VB restructure)(NP(NN bank)(NN debt)))))))))(. .))) (TOP(S(NP(NNP Weatherford))(ADVP(RB currently))(VP(VBZ has)(ADJP(NP(NP(QP(RB approximately)(CD 11.1)(CD million)))(JJ common)(NNS shares))(JJ outstanding)))(. .))) (TOP (POS Earnings) (POS for) (POS most) (POS of) (POS the) (POS nation) (POS 's) (POS major) (POS pharmaceutical) (POS makers) (POS are) (POS believed) (POS to) (POS have) (POS moved) (POS ahead) (POS briskly) (POS in) (POS the) (POS third) (POS quarter) (POS ,) (POS as) (POS companies) (POS with) (POS newer) (POS ,) (POS big-selling) (POS prescription) (POS drugs) (POS fared) (POS especially) (POS well) (POS .)) (TOP (POS For) (POS the) (POS third) (POS consecutive) (POS quarter) (POS ,) (POS however) (POS ,) (POS most) (POS of) (POS the) (POS companies) (POS ') (POS revenues) (POS were) (POS battered) (POS by) (POS adverse) (POS foreign-currency) (POS translations) (POS as) (POS a) (POS result) (POS of) (POS the) (POS strong) (POS dollar) (POS abroad) (POS .)) (TOP (POS Analysts) (POS said) (POS that) (POS Merck) (POS &) (POS Co.) (POS ,) (POS Eli) (POS Lilly) (POS &) (POS Co.) (POS ,) (POS Warner-Lambert) (POS Co.) (POS and) (POS the) (POS Squibb) (POS Corp.) (POS unit) (POS of) (POS Bristol-Myers) (POS Squibb) (POS Co.) (POS all) (POS benefited) (POS from) (POS strong) (POS sales) (POS of) (POS relatively) (POS new) (POS ,) (POS higher-priced) (POS medicines) (POS that) (POS provide) (POS wide) (POS profit) (POS margins) (POS .)) (TOP (POS Less) (POS robust) (POS earnings) (POS at) (POS Pfizer) (POS Inc.) (POS and) (POS Upjohn) (POS Co.) (POS were) (POS attributed) (POS to) (POS those) (POS companies) (POS ') (POS older) (POS products) (POS ,) (POS many) (POS of) (POS which) (POS face) (POS stiffening) (POS competition) (POS from) (POS generic) (POS drugs) (POS and) (POS other) (POS medicines) (POS .)) (TOP (POS Joseph) (POS Riccardo) (POS ,) (POS an) (POS analyst) (POS with) (POS Bear) (POS ,) (POS Stearns) (POS &) (POS Co.) (POS ,) (POS said) (POS that) (POS over) (POS the) (POS past) (POS few) (POS years) (POS most) (POS drug) (POS makers) (POS have) (POS shed) (POS their) (POS slow-growing) (POS businesses) (POS and) (POS instituted) (POS other) (POS cost) (POS savings) (POS ,) (POS such) (POS as) (POS consolidating) (POS manufacturing) (POS plants) (POS and) (POS administrative) (POS staffs) (POS .)) (TOP (POS As) (POS a) (POS result) (POS ,) (POS ``) (POS major) (POS new) (POS products) (POS are) (POS having) (POS significant) (POS impact) (POS ,) (POS even) (POS on) (POS a) (POS company) (POS with) (POS very) (POS large) (POS revenues) (POS ,) (POS '') (POS Mr.) (POS Riccardo) (POS said) (POS .)) (TOP (POS Analysts) (POS said) (POS profit) (POS for) (POS the) (POS dozen) (POS or) (POS so) (POS big) (POS drug) (POS makers) (POS ,) (POS as) (POS a) (POS group) (POS ,) (POS is) (POS estimated) (POS to) (POS have) (POS climbed) (POS between) (POS 11) (POS %) (POS and) (POS 14) (POS %) (POS .)) (TOP (POS While) (POS that) (POS 's) (POS not) (POS spectacular) (POS ,) (POS Neil) (POS Sweig) (POS ,) (POS an) (POS analyst) (POS with) (POS Prudential) (POS Bache) (POS ,) (POS said) (POS that) (POS the) (POS rate) (POS of) (POS growth) (POS will) (POS ``) (POS look) (POS especially) (POS good) (POS as) (POS compared) (POS to) (POS other) (POS companies) (POS if) (POS the) (POS economy) (POS turns) (POS downward) (POS .) (POS '')) (TOP (POS Mr.) (POS Sweig) (POS estimated) (POS that) (POS Merck) (POS 's) (POS profit) (POS for) (POS the) (POS quarter) (POS rose) (POS by) (POS about) (POS 22) (POS %) (POS ,) (POS propelled) (POS by) (POS sales) (POS of) (POS its) (POS line-up) (POS of) (POS fast-growing) (POS prescription) (POS drugs) (POS ,) (POS including) (POS its) (POS anti-cholesterol) (POS drug) (POS ,) (POS Mevacor) (POS ;) (POS a) (POS high) (POS blood) (POS pressure) (POS medicine) (POS ,) (POS Vasotec) (POS ;) (POS Primaxin) (POS ,) (POS an) (POS antibiotic) (POS ,) (POS and) (POS Pepcid) (POS ,) (POS an) (POS anti-ulcer) (POS medication) (POS .)) (TOP (POS Profit) (POS climbed) (POS even) (POS though) (POS Merck) (POS 's) (POS sales) (POS were) (POS reduced) (POS by) (POS ``) (POS one) (POS to) (POS three) (POS percentage) (POS points) (POS '') (POS as) (POS a) (POS result) (POS of) (POS the) (POS strong) (POS dollar) (POS ,) (POS Mr.) (POS Sweig) (POS said) (POS .)) (TOP (POS In) (POS the) (POS third) (POS quarter) (POS of) (POS 1988) (POS ,) (POS Merck) (POS earned) (POS $) (POS 311.8) (POS million) (POS ,) (POS or) (POS 79) (POS cents) (POS a) (POS share) (POS .)) (TOP (POS In) (POS Rahway) (POS ,) (POS N.J.) (POS ,) (POS a) (POS Merck) (POS spokesman) (POS said) (POS the) (POS company) (POS does) (POS n't) (POS make) (POS earnings) (POS projections) (POS .)) (TOP (POS Mr.) (POS Sweig) (POS said) (POS he) (POS estimated) (POS that) (POS Lilly) (POS 's) (POS earnings) (POS for) (POS the) (POS quarter) (POS jumped) (POS about) (POS 20) (POS %) (POS ,) (POS largely) (POS because) (POS of) (POS the) (POS performance) (POS of) (POS its) (POS new) (POS anti-depressant) (POS Prozac) (POS .)) (TOP (POS The) (POS drug) (POS ,) (POS introduced) (POS last) (POS year) (POS ,) (POS is) (POS expected) (POS to) (POS generate) (POS sales) (POS of) (POS about) (POS $) (POS 300) (POS million) (POS this) (POS year) (POS .)) (TOP (POS ``) (POS It) (POS 's) (POS turning) (POS out) (POS to) (POS be) (POS a) (POS real) (POS blockbuster) (POS ,) (POS '') (POS Mr.) (POS Sweig) (POS said) (POS .)) (TOP (POS In) (POS last) (POS year) (POS 's) (POS third) (POS quarter) (POS ,) (POS Lilly) (POS earned) (POS $) (POS 171.4) (POS million) (POS ,) (POS or) (POS $) (POS 1.20) (POS a) (POS share) (POS .)) (TOP(S(PP(IN In)(NP(NNP Indianapolis)))(, ,)(NP(NNP Lilly))(VP(VBD declined)(VP(VB comment)))(. .))) (TOP (POS Several) (POS analysts) (POS said) (POS they) (POS expected) (POS Warner-Lambert) (POS 's) (POS profit) (POS also) (POS to) (POS increase) (POS by) (POS more) (POS than) (POS 20) (POS %) (POS from) (POS $) (POS 87.7) (POS million) (POS ,) (POS or) (POS $) (POS 1.25) (POS a) (POS share) (POS ,) (POS it) (POS reported) (POS in) (POS the) (POS like) (POS period) (POS last) (POS year) (POS .)) (TOP (POS The) (POS company) (POS is) (POS praised) (POS by) (POS analysts) (POS for) (POS sharply) (POS lowering) (POS its) (POS costs) (POS in) (POS recent) (POS years) (POS and) (POS shedding) (POS numerous) (POS companies) (POS with) (POS low) (POS profit) (POS margins) (POS .)) (TOP (POS The) (POS company) (POS 's) (POS lean) (POS operation) (POS ,) (POS analysts) (POS said) (POS ,) (POS allowed) (POS sharp-rising) (POS sales) (POS from) (POS its) (POS cholesterol) (POS drug) (POS ,) (POS Lopid) (POS ,) (POS to) (POS power) (POS earnings) (POS growth) (POS .)) (TOP (POS Lopid) (POS sales) (POS are) (POS expected) (POS to) (POS be) (POS about) (POS $) (POS 300) (POS million) (POS this) (POS year) (POS ,) (POS up) (POS from) (POS $) (POS 190) (POS million) (POS in) (POS 1988) (POS .)) (TOP (POS In) (POS Morris) (POS Plains) (POS ,) (POS N.J.) (POS ,) (POS a) (POS spokesman) (POS for) (POS the) (POS company) (POS said) (POS the) (POS analysts) (POS ') (POS projections) (POS are) (POS ``) (POS in) (POS the) (POS ballpark) (POS .) (POS '')) (TOP (POS Squibb) (POS 's) (POS profit) (POS ,) (POS estimated) (POS by) (POS analysts) (POS to) (POS be) (POS about) (POS 18) (POS %) (POS above) (POS the) (POS $) (POS 123) (POS million) (POS ,) (POS or) (POS $) (POS 1.25) (POS a) (POS share) (POS ,) (POS it) (POS earned) (POS in) (POS the) (POS third) (POS quarter) (POS of) (POS 1988) (POS ,) (POS was) (POS the) (POS result) (POS of) (POS especially) (POS strong) (POS sales) (POS of) (POS its) (POS Capoten) (POS drug) (POS for) (POS treating) (POS high) (POS blood) (POS pressure) (POS and) (POS other) (POS heart) (POS disease) (POS .)) (TOP(S(NP(DT The)(NN company))(VP(VBD was)(RB officially)(VP(VBD merged)(PP(IN with)(NP(NNP Bristol-Myers)(NNP Co.)))(ADVP(RB earlier))(NP(DT this)(NN month))))(. .))) (TOP(S(NP(NNP Bristol-Myers))(VP(VBD declined)(S(VP(TO to)(VP(VB comment)))))(. .))) (TOP (POS Mr.) (POS Riccardo) (POS of) (POS Bear) (POS Stearns) (POS said) (POS that) (POS Schering-Plough) (POS Corp.) (POS 's) (POS expected) (POS profit) (POS rise) (POS of) (POS about) (POS 18) (POS %) (POS to) (POS 20) (POS %) (POS ,) (POS and) (POS Bristol-Meyers) (POS 's) (POS expected) (POS profit) (POS increase) (POS of) (POS about) (POS 13) (POS %) (POS are) (POS largely) (POS because) (POS ``) (POS those) (POS companies) (POS are) (POS really) (POS managed) (POS well) (POS .) (POS '')) (TOP (POS ScheringPlough) (POS earned) (POS $) (POS 94.4) (POS million) (POS ,) (POS or) (POS 84) (POS cents) (POS a) (POS share) (POS ,) (POS while) (POS Bristol-Myers) (POS earned) (POS $) (POS 232.3) (POS million) (POS ,) (POS or) (POS 81) (POS cents) (POS a) (POS share) (POS ,) (POS in) (POS the) (POS like) (POS period) (POS a) (POS year) (POS earlier) (POS .)) (TOP (POS In) (POS Madison) (POS ,) (POS N.J.) (POS ,) (POS a) (POS spokesman) (POS for) (POS Schering-Plough) (POS said) (POS the) (POS company) (POS has) (POS ``) (POS no) (POS problems) (POS '') (POS with) (POS the) (POS average) (POS estimate) (POS by) (POS a) (POS analysts) (POS that) (POS third-quarter) (POS earnings) (POS per) (POS share) (POS rose) (POS by) (POS about) (POS 19) (POS %) (POS ,) (POS to) (POS $) (POS 1) (POS .)) (TOP (POS The) (POS company) (POS expects) (POS to) (POS achieve) (POS the) (POS 20) (POS %) (POS increase) (POS in) (POS full-year) (POS earnings) (POS per) (POS share) (POS ,) (POS as) (POS it) (POS projected) (POS in) (POS the) (POS spring) (POS ,) (POS the) (POS spokesman) (POS said) (POS .)) (TOP (POS Meanwhile) (POS ,) (POS analysts) (POS said) (POS Pfizer) (POS 's) (POS recent) (POS string) (POS of) (POS lackluster) (POS quarterly) (POS performances) (POS continued) (POS ,) (POS as) (POS earnings) (POS in) (POS the) (POS quarter) (POS were) (POS expected) (POS to) (POS decline) (POS by) (POS about) (POS 5) (POS %) (POS .)) (TOP (POS Sales) (POS of) (POS Pfizer) (POS 's) (POS important) (POS drugs) (POS ,) (POS Feldene) (POS for) (POS treating) (POS arthritis) (POS ,) (POS and) (POS Procardia) (POS ,) (POS a) (POS heart) (POS medicine) (POS ,) (POS have) (POS shrunk) (POS because) (POS of) (POS increased) (POS competition) (POS .)) (TOP (POS ``) (POS The) (POS -LRB-) (POS strong) (POS -RRB-) (POS dollar) (POS hurt) (POS Pfizer) (POS a) (POS lot) (POS ,) (POS too) (POS ,) (POS '') (POS Mr.) (POS Sweig) (POS said) (POS .)) (TOP (POS In) (POS the) (POS third) (POS quarter) (POS last) (POS year) (POS ,) (POS Pfizer) (POS earned) (POS $) (POS 216.8) (POS million) (POS ,) (POS or) (POS $) (POS 1.29) (POS a) (POS share) (POS .)) (TOP(S(PP(IN In)(NP(NNP New)(NNP York)))(, ,)(NP(DT the)(NN company))(VP(VBD declined)(VP(VB comment)))(. .))) (TOP (POS Analysts) (POS said) (POS they) (POS expected) (POS Upjohn) (POS 's) (POS profit) (POS to) (POS be) (POS flat) (POS or) (POS rise) (POS by) (POS only) (POS about) (POS 2) (POS %) (POS to) (POS 4) (POS %) (POS as) (POS compared) (POS with) (POS $) (POS 89.6) (POS million) (POS ,) (POS or) (POS 49) (POS cents) (POS a) (POS share) (POS ,) (POS it) (POS earned) (POS a) (POS year) (POS ago) (POS .)) (TOP (POS Upjohn) (POS 's) (POS biggest-selling) (POS drugs) (POS are) (POS Xanax) (POS ,) (POS a) (POS tranquilizer) (POS ,) (POS and) (POS Halcion) (POS ,) (POS a) (POS sedative) (POS .)) (TOP (POS Sales) (POS of) (POS both) (POS drugs) (POS have) (POS been) (POS hurt) (POS by) (POS new) (POS state) (POS laws) (POS restricting) (POS the) (POS prescriptions) (POS of) (POS certain) (POS tranquilizing) (POS medicines) (POS and) (POS adverse) (POS publicity) (POS about) (POS the) (POS excessive) (POS use) (POS of) (POS the) (POS drugs) (POS .)) (TOP (POS Also) (POS ,) (POS the) (POS company) (POS 's) (POS hair-growing) (POS drug) (POS ,) (POS Rogaine) (POS ,) (POS is) (POS selling) (POS well) (POS --) (POS at) (POS about) (POS $) (POS 125) (POS million) (POS for) (POS the) (POS year) (POS ,) (POS but) (POS the) (POS company) (POS 's) (POS profit) (POS from) (POS the) (POS drug) (POS has) (POS been) (POS reduced) (POS by) (POS Upjohn) (POS 's) (POS expensive) (POS print) (POS and) (POS television) (POS campaigns) (POS for) (POS advertising) (POS ,) (POS analysts) (POS said) (POS .)) (TOP(S(PP(IN In)(NP(NAC(NNP Kalamazoo)(, ,)(NNP Mich.)(, ,))(NNP Upjohn)))(VP(VBD declined)(VP(VB comment)))(. .))) (TOP (POS Amid) (POS a) (POS crowd) (POS of) (POS crashing) (POS stocks) (POS ,) (POS Relational) (POS Technology) (POS Inc.) (POS 's) (POS stock) (POS fell) (POS particularly) (POS hard) (POS Friday) (POS ,) (POS dropping) (POS 23) (POS %) (POS because) (POS its) (POS problems) (POS were) (POS compounded) (POS by) (POS disclosure) (POS of) (POS an) (POS unexpected) (POS loss) (POS for) (POS its) (POS fiscal) (POS first) (POS quarter) (POS .)) (TOP (POS The) (POS database) (POS software) (POS company) (POS said) (POS it) (POS expects) (POS a) (POS $) (POS 2) (POS million) (POS net) (POS loss) (POS for) (POS the) (POS fiscal) (POS first) (POS quarter) (POS ended) (POS Sept.) (POS 30) (POS .)) (TOP(S(NP(PRP It))(VP(VBD said)(SBAR(S(NP(NNS analysts))(VP(VBD had)(VP(VBN been)(S(VP(VBG expecting)(NP(DT a)(JJ small)(NN profit))(PP(IN for)(NP(DT the)(NN period))))))))))(. .))) (TOP (POS Revenue) (POS is) (POS expected) (POS to) (POS be) (POS ``) (POS up) (POS modestly) (POS '') (POS from) (POS the) (POS $) (POS 26.5) (POS million) (POS reported) (POS a) (POS year) (POS ago) (POS .)) (TOP (POS Relational) (POS Technology) (POS reported) (POS net) (POS income) (POS of) (POS $) (POS 1.5) (POS million) (POS ,) (POS or) (POS 12) (POS cents) (POS a) (POS share) (POS ,) (POS in) (POS the) (POS year-earlier) (POS period) (POS .)) (TOP (POS ``) (POS While) (POS our) (POS international) (POS operations) (POS showed) (POS strong) (POS growth) (POS ,) (POS our) (POS domestic) (POS business) (POS was) (POS substantially) (POS below) (POS expectations) (POS ,) (POS '') (POS said) (POS Paul) (POS Newton) (POS ,) (POS president) (POS and) (POS chief) (POS executive) (POS officer) (POS .)) (TOP (POS A) (POS spokesman) (POS said) (POS the) (POS company) (POS 's) (POS first) (POS quarter) (POS is) (POS historically) (POS soft) (POS ,) (POS and) (POS computer) (POS companies) (POS in) (POS general) (POS are) (POS experiencing) (POS slower) (POS sales) (POS .)) (TOP (POS Mr.) (POS Newton) (POS said) (POS he) (POS accepted) (POS the) (POS resignation) (POS of) (POS Thomas) (POS Wilson) (POS ,) (POS vice) (POS president) (POS of) (POS corporate) (POS sales) (POS ,) (POS and) (POS that) (POS his) (POS marketing) (POS responsibilities) (POS have) (POS been) (POS reassigned) (POS .)) (TOP(S(NP(DT The)(NN company))(VP(VBD said)(SBAR(S(NP(NP(NNP Mr.)(NNP Wilson)(POS 's))(NN resignation))(VP(VBD was)(RB n't)(VP(VBN related)(PP(TO to)(NP(DT the)(NNS sales)(NN shortfall))))))))(. .))) (TOP(S(NP(NNP Relational)(NNP Technology))(VP(VBD went)(ADJP(JJ public)(PP(IN in)(NP(NP(NNP May)(CD 1988))(PP(IN at)(NP($ $)(CD 14))))))(NP(DT a)(NN share)))(. .))) (TOP (POS It) (POS fell) (POS $) (POS 1.875) (POS a) (POS share) (POS Friday) (POS ,) (POS to) (POS $) (POS 6.25) (POS ,) (POS a) (POS new) (POS low) (POS ,) (POS in) (POS over-the-counter) (POS trading) (POS .)) (TOP(S(NP(NP(PRP$ Its)(NN high))(PP(IN for)(NP(DT the)(JJ past)(NN year))))(VP(VBD was)(NP($ $)(CD 16.375))(NP(DT a)(NN share)))(. .))) (TOP (POS In) (POS the) (POS previous) (POS quarter) (POS ,) (POS the) (POS company) (POS earned) (POS $) (POS 4.5) (POS million) (POS ,) (POS or) (POS 37) (POS cents) (POS a) (POS share) (POS ,) (POS on) (POS sales) (POS of) (POS $) (POS 47.2) (POS million) (POS .)) (TOP (POS The) (POS Bronx) (POS has) (POS a) (POS wonderful) (POS botanical) (POS garden) (POS ,) (POS a) (POS great) (POS zoo) (POS ,) (POS its) (POS own) (POS charming) (POS Little) (POS Italy) (POS -LRB-) (POS on) (POS Arthur) (POS Avenue) (POS -RRB-) (POS and) (POS ,) (POS of) (POS course) (POS ,) (POS the) (POS Yankees) (POS .)) (TOP (POS However) (POS ,) (POS most) (POS people) (POS ,) (POS having) (POS been) (POS subjected) (POS to) (POS news) (POS footage) (POS of) (POS the) (POS devastated) (POS South) (POS Bronx) (POS ,) (POS look) (POS at) (POS the) (POS borough) (POS the) (POS way) (POS Tom) (POS Wolfe) (POS 's) (POS Sherman) (POS McCoy) (POS did) (POS in) (POS ``) (POS Bonfire) (POS of) (POS the) (POS Vanities) (POS '') (POS --) (POS as) (POS a) (POS wrong) (POS turn) (POS into) (POS hell) (POS .)) (TOP (POS But) (POS Laura) (POS Cunningham) (POS 's) (POS Bronx) (POS ,) (POS her) (POS childhood) (POS Bronx) (POS of) (POS the) (POS '50s) (POS ,) (POS is) (POS something) (POS else) (POS altogether) (POS .)) (TOP (POS In) (POS a) (POS lovely) (POS ,) (POS novelistic) (POS memoir) (POS ,) (POS ``) (POS Sleeping) (POS Arrangements) (POS '') (POS -LRB-) (POS Knopf) (POS ,) (POS 195) (POS pages) (POS ,) (POS $) (POS 18.95) (POS -RRB-) (POS ,) (POS she) (POS remembers) (POS an) (POS exotic) (POS playground) (POS ,) (POS peopled) (POS mainly) (POS by) (POS Jewish) (POS eccentrics) (POS and) (POS the) (POS occasional) (POS Catholic) (POS -LRB-) (POS real) (POS oddballs) (POS like) (POS her) (POS sexpot) (POS friend) (POS ,) (POS the) (POS hell-kitten) (POS Diana) (POS ,) (POS age) (POS five) (POS -RRB-) (POS .)) (TOP (POS Ms.) (POS Cunningham) (POS ,) (POS a) (POS novelist) (POS and) (POS playwright) (POS ,) (POS has) (POS a) (POS vivid) (POS and) (POS dramatically) (POS outsized) (POS sense) (POS of) (POS recall) (POS .)) (TOP (POS She) (POS transforms) (POS her) (POS ``) (POS Bronx) (POS of) (POS the) (POS emotions) (POS ,) (POS a) (POS place) (POS where) (POS the) (POS flats) (POS of) (POS mediocrity) (POS are) (POS only) (POS relieved) (POS by) (POS steep) (POS descents) (POS into) (POS hysteria) (POS '') (POS into) (POS the) (POS ``) (POS Babylonian) (POS Bronx) (POS ,) (POS '') (POS a) (POS world) (POS simmering) (POS with) (POS sex) (POS and) (POS death) (POS and) (POS intrigue) (POS .)) (TOP (POS In) (POS the) (POS Babylonian) (POS Bronx) (POS ,) (POS Jewish) (POS working-class) (POS people) (POS lived) (POS in) (POS drab) (POS ,) (POS Soviet-style) (POS buildings) (POS ``) (POS glamorized) (POS '') (POS with) (POS names) (POS like) (POS AnaMor) (POS Towers) (POS -LRB-) (POS after) (POS owners) (POS Anna) (POS and) (POS Morris) (POS Snezak) (POS -RRB-) (POS ,) (POS whose) (POS lobbies) (POS and) (POS hallways) (POS were) (POS decorated) (POS with) (POS murals) (POS of) (POS ancient) (POS Syrians) (POS and) (POS Greeks) (POS ,) (POS friezes) (POS of) (POS Pompeii) (POS .)) (TOP (POS For) (POS Ms.) (POS Cunningham) (POS the) (POS architectural) (POS discombobulation) (POS matched) (POS the) (POS discrepancy) (POS she) (POS felt) (POS living) (POS in) (POS the) (POS AnaMor) (POS Towers) (POS as) (POS a) (POS little) (POS girl) (POS :) (POS ``) (POS ...) (POS outwardly) (POS ordinary) (POS ,) (POS inwardly) (POS ornate) (POS ,) (POS owing) (POS all) (POS inspiration) (POS to) (POS heathen) (POS cultures) (POS .) (POS '')) (TOP (POS Sharp-witted) (POS and) (POS funny) (POS but) (POS never) (POS mean) (POS ,) (POS she) (POS 's) (POS a) (POS memorialist) (POS a) (POS bit) (POS like) (POS Truman) (POS Capote) (POS ,) (POS if) (POS he) (POS 'd) (POS been) (POS Jewish) (POS and) (POS female) (POS and) (POS less) (POS bitchy) (POS .)) (TOP (POS Little) (POS Lily) (POS ,) (POS as) (POS Ms.) (POS Cunningham) (POS calls) (POS herself) (POS in) (POS the) (POS book) (POS ,) (POS really) (POS was) (POS n't) (POS ordinary) (POS .)) (TOP (POS She) (POS was) (POS raised) (POS ,) (POS for) (POS the) (POS first) (POS eight) (POS years) (POS ,) (POS by) (POS her) (POS mother) (POS ,) (POS Rosie) (POS ,) (POS whom) (POS she) (POS remembers) (POS as) (POS a) (POS loving) (POS liar) (POS ,) (POS who) (POS realigned) (POS history) (POS to) (POS explain) (POS why) (POS Lily) (POS 's) (POS father) (POS did) (POS n't) (POS live) (POS with) (POS them) (POS .)) (TOP (POS Rosie) (POS reinvented) (POS this) (POS man) (POS ,) (POS who) (POS may) (POS or) (POS may) (POS not) (POS have) (POS known) (POS about) (POS his) (POS child) (POS ,) (POS as) (POS a) (POS war) (POS hero) (POS for) (POS Lily) (POS 's) (POS benefit) (POS .)) (TOP (POS Rosie) (POS died) (POS young) (POS and) (POS Lily) (POS has) (POS remembered) (POS her) (POS as) (POS a) (POS romantic) (POS figure) (POS ,) (POS who) (POS did) (POS n't) (POS interfere) (POS much) (POS with) (POS her) (POS child) (POS 's) (POS education) (POS on) (POS the) (POS streets) (POS .)) (TOP (POS The) (POS games) (POS Bronx) (POS children) (POS played) (POS -LRB-) (POS holding) (POS kids) (POS down) (POS and) (POS stripping) (POS them) (POS ,) (POS for) (POS example) (POS -RRB-) (POS seem) (POS tame) (POS by) (POS today) (POS 's) (POS crack) (POS standards) (POS ,) (POS but) (POS Ms.) (POS Cunningham) (POS makes) (POS it) (POS all) (POS sound) (POS like) (POS a) (POS great) (POS adventure) (POS .)) (TOP (POS ``) (POS Without) (POS official) (POS knowledge) (POS of) (POS sex) (POS or) (POS death) (POS ,) (POS we) (POS flirted) (POS with) (POS both) (POS ,) (POS '') (POS she) (POS writes) (POS .)) (TOP(S(NP(PRP She))(VP(VBD analyzed)(NP(NNS families))(PP(IN by)(NP(PRP$ their)(NN sleeping)(NNS arrangements))))(. .))) (TOP (POS Her) (POS friend) (POS Susan) (POS ,) (POS whose) (POS parents) (POS kept) (POS reminding) (POS her) (POS she) (POS was) (POS unwanted) (POS ,) (POS slept) (POS on) (POS a) (POS narrow) (POS bed) (POS wedged) (POS into) (POS her) (POS parents) (POS ') (POS bedroom) (POS ,) (POS as) (POS though) (POS she) (POS were) (POS a) (POS temporary) (POS visitor) (POS .)) (TOP (POS Her) (POS friend) (POS Diana) (POS 's) (POS father) (POS was) (POS a) (POS professional) (POS thief) (POS ;) (POS they) (POS did) (POS n't) (POS seem) (POS to) (POS have) (POS any) (POS bedrooms) (POS at) (POS all) (POS .)) (TOP (POS Maybe) (POS Lily) (POS became) (POS so) (POS obsessed) (POS with) (POS where) (POS people) (POS slept) (POS and) (POS how) (POS because) (POS her) (POS own) (POS arrangements) (POS kept) (POS shifting) (POS .)) (TOP (POS When) (POS Rosie) (POS died) (POS ,) (POS her) (POS uncles) (POS moved) (POS in) (POS --) (POS and) (POS let) (POS her) (POS make) (POS the) (POS sleeping) (POS and) (POS other) (POS household) (POS arrangements) (POS .)) (TOP(S(NP(PRP They))(VP(VBN painted)(NP(DT the)(NN apartment)(NN orange))(, ,)(ADJP(JJ pink)(CC and)(JJ white))(, ,)(S(VP(VBG according)(PP(TO to)(NP(PRP$ her)(NNS instructions))))))(. .))) (TOP (POS With) (POS loving) (POS detail) (POS she) (POS recalls) (POS her) (POS Uncle) (POS Gabe) (POS ,) (POS an) (POS Orthodox) (POS Jew) (POS and) (POS song) (POS lyricist) (POS -LRB-) (POS who) (POS rhymed) (POS river) (POS with) (POS liver) (POS in) (POS a) (POS love) (POS song) (POS -RRB-) (POS ;) (POS and) (POS Uncle) (POS Len) (POS ,) (POS a) (POS mysterious) (POS part-time) (POS investigator) (POS who) (POS looked) (POS like) (POS Lincoln) (POS and) (POS carried) (POS a) (POS change) (POS of) (POS clothing) (POS in) (POS a) (POS Manila) (POS envelope) (POS ,) (POS like) (POS an) (POS ``) (POS undercover) (POS President) (POS on) (POS a) (POS good-will) (POS mission) (POS .) (POS '')) (TOP(S(NP(PRP They))(VP(VBD came)(PP(IN by)(NP(PRP$ their)(NNP(N strangeness))))(ADVP(RB honestly)))(. .))) (TOP (POS Lily) (POS 's) (POS grandmother) (POS ,) (POS no) (POS cookie) (POS baker) (POS ,) (POS excised) (POS the) (POS heads) (POS of) (POS disliked) (POS relatives) (POS from) (POS the) (POS family) (POS album) (POS ,) (POS and) (POS lugged) (POS around) (POS her) (POS perennial) (POS work-in-progress) (POS ,) (POS ``) (POS Philosophy) (POS for) (POS Women) (POS .) (POS '')) (TOP (POS The) (POS book) (POS loses) (POS some) (POS momentum) (POS toward) (POS the) (POS end) (POS ,) (POS when) (POS Lily) (POS becomes) (POS more) (POS preoccupied) (POS with) (POS dating) (POS boys) (POS and) (POS less) (POS with) (POS her) (POS delightfully) (POS weird) (POS family) (POS .)) (TOP (POS For) (POS the) (POS most) (POS part) (POS ,) (POS though) (POS ,) (POS there) (POS 's) (POS much) (POS pleasure) (POS in) (POS her) (POS saucy) (POS ,) (POS poignant) (POS probe) (POS into) (POS the) (POS mysteries) (POS of) (POS the) (POS Babylonian) (POS Bronx) (POS .)) (TOP (POS The) (POS Bronx) (POS also) (POS figures) (POS in) (POS Bruce) (POS Jay) (POS Friedman) (POS 's) (POS latest) (POS novel) (POS ,) (POS which) (POS flashes) (POS back) (POS to) (POS the) (POS New) (POS York) (POS of) (POS the) (POS '50s) (POS .)) (TOP (POS But) (POS both) (POS the) (POS past) (POS and) (POS present) (POS worlds) (POS of) (POS ``) (POS The) (POS Current) (POS Climate) (POS '') (POS -LRB-) (POS Atlantic) (POS Monthly) (POS Press) (POS ,) (POS 200) (POS pages) (POS ,) (POS $) (POS 18.95) (POS -RRB-) (POS feel) (POS cramped) (POS and) (POS static) (POS .)) (TOP (POS For) (POS his) (POS sixth) (POS novel) (POS ,) (POS Mr.) (POS Friedman) (POS tried) (POS to) (POS resuscitate) (POS the) (POS protagonist) (POS of) (POS his) (POS 1972) (POS work) (POS ,) (POS ``) (POS About) (POS Harry) (POS Towns) (POS .) (POS '')) (TOP (POS Harry) (POS is) (POS now) (POS a) (POS 57-year-old) (POS writer) (POS ,) (POS whose) (POS continuing) (POS flirtation) (POS with) (POS drugs) (POS and) (POS marginal) (POS types) (POS in) (POS Hollywood) (POS and) (POS New) (POS York) (POS seems) (POS quaintly) (POS out-of-synch) (POS .)) (TOP (POS Harry) (POS fondly) (POS remembers) (POS the) (POS ``) (POS old) (POS '') (POS days) (POS of) (POS the) (POS early) (POS '70s) (POS ,) (POS when) (POS people) (POS like) (POS his) (POS friend) (POS Travis) (POS would) (POS take) (POS a) (POS psychiatrist) (POS on) (POS a) (POS date) (POS to) (POS analyze) (POS what) (POS Travis) (POS was) (POS doing) (POS wrong) (POS .)) (TOP(S(`` ``)(NP(DT An)(NNP L.A.)(NN solution))(, ,)('' '')(VP(VBZ explains)(NP(NNP Mr.)(NNP Friedman)))(. .))) (TOP (POS Line) (POS by) (POS line) (POS Mr.) (POS Friedman) (POS 's) (POS weary) (POS cynicism) (POS can) (POS be) (POS amusing) (POS ,) (POS especially) (POS when) (POS he) (POS 's) (POS riffing) (POS on) (POS the) (POS Hollywood) (POS social) (POS scheme) (POS --) (POS the) (POS way) (POS people) (POS size) (POS each) (POS other) (POS up) (POS ,) (POS immediately) (POS canceling) (POS the) (POS desperate) (POS ones) (POS who) (POS merely) (POS almost) (POS made) (POS it) (POS .)) (TOP (POS Harry) (POS has) (POS avoided) (POS all) (POS that) (POS by) (POS living) (POS in) (POS a) (POS Long) (POS Island) (POS suburb) (POS with) (POS his) (POS wife) (POS ,) (POS who) (POS 's) (POS so) (POS addicted) (POS to) (POS soap) (POS operas) (POS and) (POS mystery) (POS novels) (POS she) (POS barely) (POS seems) (POS to) (POS notice) (POS when) (POS her) (POS husband) (POS disappears) (POS for) (POS drug-seeking) (POS forays) (POS into) (POS Manhattan) (POS .)) (TOP(S(CC But)(NP(PRP it))(VP(VBZ does)(RB n't)(VP(VB take)(ADVP(RB too))(NP(JJ many)(NNS lines))(S(VP(TO to)(VP(VB figure)(NP(NNP Harry))(PRT(RP out)))))))(. .))) (TOP(S(NP(PRP He))(VP(VBZ 's)(SBAR(S(NP(DT a))(VP(VBD bore)))))(. .))) (TOP (POS Gulf) (POS Resources) (POS &) (POS Chemical) (POS Corp.) (POS said) (POS it) (POS agreed) (POS to) (POS pay) (POS $) (POS 1.5) (POS million) (POS as) (POS part) (POS of) (POS an) (POS accord) (POS with) (POS the) (POS Environmental) (POS Protection) (POS Agency) (POS regarding) (POS an) (POS environmental) (POS cleanup) (POS of) (POS a) (POS defunct) (POS smelter) (POS the) (POS company) (POS formerly) (POS operated) (POS in) (POS Idaho) (POS .)) (TOP (POS In) (POS 1984) (POS the) (POS EPA) (POS notified) (POS Gulf) (POS Resources) (POS ,) (POS which) (POS was) (POS a) (POS part-owner) (POS of) (POS the) (POS smelter) (POS ,) (POS that) (POS it) (POS was) (POS potentially) (POS liable) (POS for) (POS sharing) (POS cleanup) (POS costs) (POS at) (POS the) (POS site) (POS under) (POS the) (POS federal) (POS Superfund) (POS program) (POS .)) (TOP(S(NP(DT The)(CD 21-square-mile)(NN area))(VP(VBZ is)(VP(VBN contaminated)(PP(IN with)(NP(JJ lead)(, ,)(NN zinc)(CC and)(NP(JJ other)(NNS metals))))))(. .))) (TOP (POS Gulf) (POS Resources) (POS earlier) (POS this) (POS year) (POS proposed) (POS a) (POS reorganization) (POS plan) (POS that) (POS would) (POS make) (POS it) (POS a) (POS unit) (POS of) (POS a) (POS Bermuda) (POS concern) (POS ,) (POS potentially) (POS exempting) (POS it) (POS from) (POS liability) (POS for) (POS the) (POS smelter) (POS 's) (POS cleanup) (POS costs) (POS .)) (TOP (POS The) (POS company) (POS said) (POS that) (POS as) (POS part) (POS of) (POS its) (POS agreement) (POS with) (POS the) (POS EPA) (POS ,) (POS it) (POS ``) (POS made) (POS certain) (POS voluntary) (POS undertakings) (POS with) (POS respect) (POS to) (POS intercorporate) (POS transactions) (POS entered) (POS into) (POS after) (POS the) (POS reorganization) (POS .) (POS '')) (TOP (POS The) (POS company) (POS ,) (POS which) (POS issued) (POS a) (POS statement) (POS on) (POS the) (POS agreement) (POS late) (POS Friday) (POS ,) (POS said) (POS that) (POS $) (POS 1) (POS million) (POS of) (POS the) (POS payment) (POS was) (POS previously) (POS provided) (POS for) (POS in) (POS its) (POS financial) (POS statements) (POS and) (POS that) (POS $) (POS 500,000) (POS will) (POS be) (POS recognized) (POS in) (POS its) (POS 1989) (POS third-quarter) (POS statement) (POS .)) (TOP(S(S(NP(NP(DT The)(NN agreement))(CC and)(NN consent)(NN decree))(VP(VBP are)(ADJP(JJ subject)(PP(TO to)(NP(NN court)(NN approval))))))(, ,)(NP(DT the)(NN company))(VP(VBD said))(. .))) (TOP (POS Gulf) (POS Resources) (POS added) (POS that) (POS it) (POS ``) (POS will) (POS seek) (POS to) (POS recover) (POS equitable) (POS contribution) (POS from) (POS others) (POS for) (POS both) (POS the) (POS amount) (POS of) (POS the) (POS settlement) (POS and) (POS any) (POS other) (POS liabilities) (POS it) (POS may) (POS incur) (POS under) (POS the) (POS Superfund) (POS law) (POS .) (POS '')) (TOP (POS Under) (POS the) (POS agreement) (POS ,) (POS Gulf) (POS must) (POS give) (POS the) (POS U.S.) (POS government) (POS 45) (POS days) (POS ') (POS advance) (POS written) (POS notice) (POS before) (POS issuing) (POS any) (POS dividends) (POS on) (POS common) (POS stock) (POS .)) (TOP (POS The) (POS company) (POS 's) (POS net) (POS worth) (POS can) (POS not) (POS fall) (POS below) (POS $) (POS 185) (POS million) (POS after) (POS the) (POS dividends) (POS are) (POS issued) (POS .)) (TOP (POS ``) (POS The) (POS terms) (POS of) (POS that) (POS agreement) (POS only) (POS become) (POS effective) (POS the) (POS date) (POS of) (POS Gulf) (POS 's) (POS reorganization) (POS ,) (POS which) (POS we) (POS anticipate) (POS will) (POS occur) (POS sometime) (POS in) (POS early) (POS 1990) (POS ,) (POS '') (POS said) (POS Lawrence) (POS R.) (POS Mehl) (POS ,) (POS Gulf) (POS 's) (POS general) (POS counsel) (POS .)) (TOP (POS In) (POS addition) (POS ,) (POS Gulf) (POS must) (POS give) (POS the) (POS government) (POS 20) (POS days) (POS ') (POS advance) (POS written) (POS notice) (POS of) (POS any) (POS loans) (POS exceeding) (POS $) (POS 50) (POS million) (POS that) (POS are) (POS made) (POS to) (POS the) (POS Bermuda-based) (POS holding) (POS company) (POS .)) (TOP(S(NP(NP(NP(NNP Gulf)(POS 's))(JJ net)(NN worth))(PP(IN after)(NP(DT those)(NN transaction))))(VP(MD must)(VP(VB be)(ADVP(IN at)(JJS least))(NP(QP($ $)(CD 150)(CD million)))))(. .))) (TOP (POS Separately) (POS ,) (POS the) (POS company) (POS said) (POS it) (POS expects) (POS to) (POS hold) (POS a) (POS special) (POS meeting) (POS for) (POS shareholders) (POS in) (POS early) (POS 1990) (POS to) (POS vote) (POS on) (POS its) (POS proposed) (POS reorganization) (POS .)) (TOP (POS Many) (POS of) (POS the) (POS nation) (POS 's) (POS highest-ranking) (POS executives) (POS saluted) (POS Friday) (POS 's) (POS market) (POS plunge) (POS as) (POS an) (POS overdue) (POS comeuppance) (POS for) (POS speculators) (POS and) (POS takeover) (POS players) (POS .)) (TOP (POS Assuming) (POS that) (POS the) (POS market) (POS does) (POS n't) (POS head) (POS into) (POS a) (POS bottomless) (POS free) (POS fall) (POS ,) (POS some) (POS executives) (POS think) (POS Friday) (POS 's) (POS action) (POS could) (POS prove) (POS a) (POS harbinger) (POS of) (POS good) (POS news) (POS --) (POS as) (POS a) (POS sign) (POS that) (POS the) (POS leveraged) (POS buy-out) (POS and) (POS takeover) (POS frenzy) (POS of) (POS recent) (POS years) (POS may) (POS be) (POS abating) (POS .)) (TOP (POS ``) (POS This) (POS is) (POS a) (POS reaction) (POS to) (POS artificial) (POS LBO) (POS valuations) (POS ,) (POS rather) (POS than) (POS to) (POS any) (POS fundamentals) (POS ,) (POS '') (POS said) (POS John) (POS Young) (POS ,) (POS chairman) (POS of) (POS Hewlett-Packard) (POS Co.) (POS ,) (POS whose) (POS shares) (POS dropped) (POS $) (POS 3.125) (POS to) (POS $) (POS 48.125) (POS .)) (TOP (POS ``) (POS If) (POS we) (POS get) (POS rid) (POS of) (POS a) (POS lot) (POS of) (POS that) (POS nonsense) (POS ,) (POS it) (POS will) (POS be) (POS a) (POS big) (POS plus) (POS .) (POS '')) (TOP (POS A) (POS few) (POS of) (POS the) (POS executives) (POS here) (POS for) (POS the) (POS fall) (POS meeting) (POS of) (POS the) (POS Business) (POS Council) (POS ,) (POS a) (POS group) (POS that) (POS meets) (POS to) (POS discuss) (POS national) (POS issues) (POS ,) (POS were) (POS only) (POS too) (POS happy) (POS to) (POS personalize) (POS their) (POS criticism) (POS .)) (TOP (POS ``) (POS People) (POS wish) (POS the) (POS government) (POS would) (POS do) (POS something) (POS about) (POS leveraged) (POS buy-outs) (POS ,) (POS do) (POS something) (POS about) (POS takeovers) (POS ,) (POS do) (POS something) (POS about) (POS Donald) (POS Trump) (POS ,) (POS '') (POS said) (POS Rand) (POS Araskog) (POS ,) (POS chairman) (POS of) (POS ITT) (POS Corp.) (POS ,) (POS whose) (POS stock) (POS dropped) (POS $) (POS 3.375) (POS .)) (TOP(SBARQ(`` ``)(WHADVP(WRB Where))(SQ(VP(VBZ 's)(NP(DT the)(NN leadership))))(. ?))) (TOP(SBARQ(WHADVP(WRB Where))(SQ(VP(VBZ 's)(NP(DT the)(NN guy))))(WHNP(WP who))(SQ(VP(MD can)(VP(VBP say)(: :)(`` `)(S(NP(NNP Enough))(VP(VBZ is)(S(ADVP(RB enough))('' ')('' '')))))))(. ?))) (TOP (POS The) (POS executives) (POS were) (POS remarkably) (POS unperturbed) (POS by) (POS the) (POS plunge) (POS even) (POS though) (POS it) (POS lopped) (POS billions) (POS of) (POS dollars) (POS off) (POS the) (POS value) (POS of) (POS their) (POS companies) (POS --) (POS and) (POS millions) (POS off) (POS their) (POS personal) (POS fortunes) (POS .)) (TOP (POS ``) (POS I) (POS 'm) (POS not) (POS going) (POS to) (POS worry) (POS about) (POS one) (POS day) (POS 's) (POS decline) (POS ,) (POS '') (POS said) (POS Kenneth) (POS Olsen) (POS ,) (POS Digital) (POS Equipment) (POS Corp.) (POS president) (POS ,) (POS who) (POS was) (POS leisurely) (POS strolling) (POS through) (POS the) (POS bright) (POS orange) (POS and) (POS yellow) (POS leaves) (POS of) (POS the) (POS mountains) (POS here) (POS after) (POS his) (POS company) (POS 's) (POS shares) (POS plunged) (POS $) (POS 5.75) (POS to) (POS close) (POS at) (POS $) (POS 86.50) (POS .)) (TOP (POS ``) (POS I) (POS did) (POS n't) (POS bother) (POS calling) (POS anybody) (POS ;) (POS I) (POS did) (POS n't) (POS even) (POS turn) (POS on) (POS TV) (POS .) (POS '')) (TOP (POS ``) (POS There) (POS has) (POS n't) (POS been) (POS any) (POS fundamental) (POS change) (POS in) (POS the) (POS economy) (POS ,) (POS '') (POS added) (POS John) (POS Smale) (POS ,) (POS whose) (POS Procter) (POS &) (POS Gamble) (POS Co.) (POS took) (POS an) (POS $) (POS 8.75) (POS slide) (POS to) (POS close) (POS at) (POS $) (POS 120.75) (POS .)) (TOP (POS ``) (POS The) (POS fact) (POS that) (POS this) (POS happened) (POS two) (POS years) (POS ago) (POS and) (POS there) (POS was) (POS a) (POS recovery) (POS gives) (POS people) (POS some) (POS comfort) (POS that) (POS this) (POS wo) (POS n't) (POS be) (POS a) (POS problem) (POS .) (POS '')) (TOP (POS Of) (POS course) (POS ,) (POS established) (POS corporate) (POS managements) (POS often) (POS tend) (POS to) (POS applaud) (POS the) (POS setbacks) (POS of) (POS stock) (POS speculators) (POS and) (POS takeover) (POS artists) (POS .)) (TOP (POS Indeed) (POS ,) (POS one) (POS chief) (POS executive) (POS who) (POS was) (POS downright) (POS delighted) (POS by) (POS Friday) (POS 's) (POS events) (POS was) (POS Robert) (POS Crandall) (POS ,) (POS chairman) (POS of) (POS AMR) (POS Corp.) (POS ,) (POS the) (POS parent) (POS of) (POS American) (POS Airlines) (POS and) (POS the) (POS target) (POS of) (POS a) (POS takeover) (POS offer) (POS by) (POS Mr.) (POS Trump) (POS .)) (TOP (POS Asked) (POS whether) (POS Friday) (POS 's) (POS action) (POS could) (POS help) (POS him) (POS avoid) (POS being) (POS Trumped) (POS by) (POS the) (POS New) (POS York) (POS real) (POS estate) (POS magnate) (POS ,) (POS Mr.) (POS Crandall) (POS smiled) (POS broadly) (POS and) (POS said) (POS :) (POS ``) (POS No) (POS comment) (POS .) (POS '')) (TOP (POS On) (POS Friday) (POS morning) (POS ,) (POS before) (POS the) (POS market) (POS 's) (POS sell-off) (POS ,) (POS the) (POS business) (POS leaders) (POS issued) (POS a) (POS report) (POS predicting) (POS the) (POS economy) (POS would) (POS grow) (POS at) (POS roughly) (POS an) (POS inflation-adjusted) (POS 2) (POS %) (POS annual) (POS rate) (POS ,) (POS through) (POS next) (POS year) (POS ,) (POS then) (POS accelerate) (POS anew) (POS in) (POS 1991) (POS .)) (TOP (POS Of) (POS the) (POS 19) (POS economists) (POS who) (POS worked) (POS on) (POS the) (POS Business) (POS Council) (POS forecast) (POS ,) (POS only) (POS two) (POS projected) (POS periods) (POS of) (POS decline) (POS in) (POS the) (POS nation) (POS 's) (POS output) (POS over) (POS the) (POS next) (POS two) (POS years) (POS ,) (POS and) (POS in) (POS ``) (POS both) (POS instances) (POS the) (POS declines) (POS are) (POS too) (POS modest) (POS to) (POS warrant) (POS the) (POS phrase) (POS recession) (POS ,) (POS '') (POS said) (POS Lewis) (POS Preston) (POS ,) (POS chairman) (POS of) (POS J.P.) (POS Morgan) (POS &) (POS Co.) (POS and) (POS vice) (POS chairman) (POS of) (POS the) (POS Business) (POS Council) (POS .)) (TOP (POS The) (POS real) (POS estate) (POS slump) (POS that) (POS 's) (POS pushing) (POS down) (POS the) (POS price) (POS of) (POS New) (POS York) (POS office) (POS space) (POS and) (POS housing) (POS is) (POS also) (POS affecting) (POS the) (POS city) (POS 's) (POS retail) (POS real) (POS estate) (POS market) (POS .)) (TOP (POS In) (POS Manhattan) (POS ,) (POS once-desirable) (POS store) (POS sites) (POS sit) (POS vacant) (POS and) (POS newly) (POS constructed) (POS space) (POS has) (POS been) (POS slow) (POS to) (POS fill) (POS .)) (TOP (POS Retail) (POS real) (POS estate) (POS brokers) (POS say) (POS tenants) (POS are) (POS reluctant) (POS to) (POS sign) (POS leases) (POS because) (POS of) (POS uncertainty) (POS about) (POS the) (POS local) (POS economy) (POS ,) (POS turmoil) (POS in) (POS their) (POS own) (POS industries) (POS and) (POS a) (POS belief) (POS that) (POS rents) (POS have) (POS not) (POS yet) (POS hit) (POS bottom) (POS .)) (TOP (POS ``) (POS There) (POS is) (POS an) (POS unbelievable) (POS amount) (POS of) (POS space) (POS available) (POS ,) (POS '') (POS says) (POS Faith) (POS Consolo) (POS ,) (POS senior) (POS vice) (POS president) (POS at) (POS Garrick-Aug) (POS Associates) (POS Store) (POS Leasing) (POS Inc) (POS .)) (TOP (POS There) (POS are) (POS about) (POS 2,000) (POS stores) (POS for) (POS rent) (POS ,) (POS up) (POS from) (POS a) (POS more) (POS typical) (POS range) (POS of) (POS 1,200) (POS to) (POS 1,500) (POS .)) (TOP(S(`` ``)(NP(DT This)(JJ further)(NNP(N confuses))(NNS retailers))(, ,)('' '')(NP(PRP she))(VP(VBZ says))(. .))) (TOP(S(`` ``)(S(NP(PRP They))(VP(VBP wonder)(VP(MD should)(NP(NP(PRP they))(VP(VB sign)(NP(DT a)(NN lease))))(PP(IN if)(NP(NNS prices))))))(VP(VBP are)(RB still)(VP(VBG coming)(PRT(RP down))))(. ?))) (TOP(S(S(VP(VBZ Is)(NP(DT this)(DT the)(JJ wrong)(NN time))))(VP(TO to)(VP(VB open)(NP(DT a)(NN store))))(. ?))) (TOP(S(SBAR(WHNP(WP Who))(S(VP(VBZ is)(VP(VBG going)(S(VP(TO to)(VP(VB be)(PP(IN in)(NP(NP(DT the)(NN space))(JJ next)(NN door))))))))))(. ?)('' ''))) (TOP (POS In) (POS addition) (POS ,) (POS Ms.) (POS Consolo) (POS says) (POS ,) (POS tenants) (POS usually) (POS can) (POS negotiate) (POS to) (POS pay) (POS rents) (POS that) (POS are) (POS about) (POS one-quarter) (POS lower) (POS than) (POS landlords) (POS ') (POS initial) (POS asking) (POS price) (POS .)) (TOP (POS A) (POS handful) (POS of) (POS hot) (POS retail) (POS locations) (POS ,) (POS such) (POS as) (POS the) (POS 57th) (POS Street) (POS and) (POS Madison) (POS and) (POS Fifth) (POS Avenue) (POS areas) (POS ,) (POS have) (POS been) (POS able) (POS to) (POS sustain) (POS what) (POS many) (POS see) (POS as) (POS astronomical) (POS rents) (POS .)) (TOP(S(CC And)(, ,)(PP(IN in)(NP(DT some)(NNS neighborhoods)))(, ,)(VP(VBZ rents)(VP(VBP have)(RB merely)(VP(VBD hit)(NP(DT a)(NN plateau)))))(. .))) (TOP (POS But) (POS on) (POS average) (POS ,) (POS Manhattan) (POS retail) (POS rents) (POS have) (POS dropped) (POS 10) (POS %) (POS to) (POS 15) (POS %) (POS in) (POS the) (POS past) (POS six) (POS months) (POS alone) (POS ,) (POS experts) (POS say) (POS .)) (TOP (POS That) (POS follows) (POS a) (POS more) (POS subtle) (POS decline) (POS in) (POS the) (POS prior) (POS six) (POS months) (POS ,) (POS after) (POS Manhattan) (POS rents) (POS had) (POS run) (POS up) (POS rapidly) (POS since) (POS 1986) (POS .)) (TOP(S(NP(NP(NP(DT The)(JJ same)(NNS factors))(VBG limiting)(NN demand))(PP(IN for)(NP(NN office)(NN space))))(VP(VB have)(NP(JJ affected)(NN retailing)))(. .))) (TOP (POS ``) (POS As) (POS businesses) (POS contract) (POS or) (POS depart) (POS ,) (POS the) (POS number) (POS of) (POS employees) (POS who) (POS might) (POS use) (POS retail) (POS services) (POS shrinks) (POS ,) (POS '') (POS says) (POS Edward) (POS A.) (POS Friedman) (POS ,) (POS senior) (POS vice) (POS president) (POS of) (POS Helmsley) (POS Spear) (POS Inc) (POS .)) (TOP (POS He) (POS says) (POS financial) (POS problems) (POS plaguing) (POS electronics) (POS ,) (POS fur) (POS and) (POS furniture) (POS companies) (POS --) (POS key) (POS categories) (POS in) (POS the) (POS local) (POS retail) (POS economy) (POS --) (POS have) (POS further) (POS deflated) (POS the) (POS market) (POS .)) (TOP (POS Hardest) (POS hit) (POS are) (POS what) (POS he) (POS calls) (POS ``) (POS secondary) (POS '') (POS sites) (POS that) (POS primarily) (POS serve) (POS neighborhood) (POS residents) (POS .)) (TOP (POS In) (POS these) (POS locations) (POS ,) (POS Mr.) (POS Friedman) (POS says) (POS ,) (POS ``) (POS Retailers) (POS are) (POS increasingly) (POS cautious) (POS about) (POS expanding) (POS and) (POS rents) (POS have) (POS remained) (POS steady) (POS or) (POS in) (POS some) (POS cases) (POS have) (POS declined) (POS .) (POS '')) (TOP (POS Weakness) (POS in) (POS the) (POS restaurant) (POS industry) (POS ,) (POS which) (POS is) (POS leaving) (POS retail) (POS space) (POS vacant) (POS ,) (POS exacerbates) (POS the) (POS problem) (POS for) (POS landlords) (POS .)) (TOP (POS It) (POS is) (POS also) (POS no) (POS comfort) (POS to) (POS landlords) (POS and) (POS small) (POS New) (POS York) (POS retailers) (POS when) (POS the) (POS future) (POS of) (POS larger) (POS department) (POS stores) (POS ,) (POS which) (POS anchor) (POS retail) (POS neighborhoods) (POS ,) (POS are) (POS in) (POS doubt) (POS .)) (TOP (POS Hooker) (POS Corp.) (POS ,) (POS parent) (POS of) (POS Bonwit) (POS Teller) (POS and) (POS B.) (POS Altman) (POS 's) (POS ,) (POS is) (POS mired) (POS in) (POS bankruptcy) (POS proceedings) (POS and) (POS Bloomingdale) (POS 's) (POS is) (POS for) (POS sale) (POS by) (POS its) (POS owner) (POS ,) (POS Campeau) (POS Corp) (POS .)) (TOP (POS The) (POS trend) (POS toward) (POS lower) (POS rents) (POS may) (POS seem) (POS surprising) (POS given) (POS that) (POS some) (POS communities) (POS in) (POS New) (POS York) (POS are) (POS bemoaning) (POS the) (POS loss) (POS of) (POS favorite) (POS local) (POS businesses) (POS to) (POS high) (POS rents) (POS .)) (TOP (POS But) (POS ,) (POS despite) (POS the) (POS recent) (POS softening) (POS ,) (POS for) (POS many) (POS of) (POS these) (POS retailers) (POS there) (POS 's) (POS still) (POS been) (POS too) (POS big) (POS a) (POS jump) (POS from) (POS the) (POS rental) (POS rates) (POS of) (POS the) (POS late) (POS 1970s) (POS ,) (POS when) (POS their) (POS leases) (POS were) (POS signed) (POS .)) (TOP(S(ADVP(RB Certainly))(, ,)(NP(NP(DT the)(JJ recent)(NN drop))(PP(IN in)(NP(NNS prices))))(VP(VBZ does)(RB n't)(VP(VBP mean)(SBAR(S(NP(NNP Manhattan))(VP(VBZ comes)(ADJP(JJ cheap)))))))(. .))) (TOP (POS New) (POS York) (POS retail) (POS rents) (POS still) (POS run) (POS well) (POS above) (POS the) (POS going) (POS rate) (POS in) (POS other) (POS U.S.) (POS cities) (POS .)) (TOP (POS Madison) (POS and) (POS Fifth) (POS Avenues) (POS and) (POS East) (POS 57th) (POS Street) (POS can) (POS command) (POS rents) (POS of) (POS up) (POS to) (POS $) (POS 500) (POS a) (POS square) (POS foot) (POS ,) (POS and) (POS $) (POS 250) (POS is) (POS not) (POS uncommon) (POS .)) (TOP (POS The) (POS thriving) (POS 34th) (POS Street) (POS area) (POS offers) (POS rents) (POS of) (POS about) (POS $) (POS 100) (POS a) (POS square) (POS foot) (POS ,) (POS as) (POS do) (POS up-and-coming) (POS locations) (POS along) (POS lower) (POS Fifth) (POS Avenue) (POS .)) (TOP (POS By) (POS contrast) (POS ,) (POS rentals) (POS in) (POS the) (POS best) (POS retail) (POS locations) (POS in) (POS Boston) (POS ,) (POS San) (POS Francisco) (POS and) (POS Chicago) (POS rarely) (POS top) (POS $) (POS 100) (POS a) (POS square) (POS foot) (POS .)) (TOP (POS And) (POS rents) (POS on) (POS Beverly) (POS Hills) (POS ') (POS Rodeo) (POS Drive) (POS generally) (POS do) (POS n't) (POS exceed) (POS about) (POS $) (POS 125) (POS a) (POS square) (POS foot) (POS .)) (TOP(S(NP(DT The)(NNP New)(NNP York))(NP(NNP Stock)(NNP Exchange))(VP(VBD said)(SBAR(S(NP(CD two)(NNS securities))(VP(MD will)(VP(VB begin)(S(VP(VBG trading)(NP(DT this)(NN week)))))))))(. .))) (TOP (POS Precision) (POS Castparts) (POS Corp.) (POS ,) (POS Portland) (POS ,) (POS Ore.) (POS ,) (POS will) (POS begin) (POS trading) (POS with) (POS the) (POS symbol) (POS PCP) (POS .)) (TOP(S(NP(PRP It))(VP(VBZ makes)(NP(NN investment))(NP(NNP(N castings)))(CC and)(VP(VBZ has)(VP(VBD traded)(ADJP(JJ over-the-counter)))))(. .))) (TOP (POS Royal) (POS Bank) (POS of) (POS Scotland) (POS Group) (POS PLC) (POS ,) (POS an) (POS Edinburgh) (POS ,) (POS Scotland) (POS ,) (POS financial) (POS services) (POS company) (POS ,) (POS will) (POS list) (POS American) (POS depositary) (POS shares) (POS ,) (POS representing) (POS preferred) (POS shares) (POS ,) (POS with) (POS the) (POS symbol) (POS RBSPr) (POS .)) (TOP(S(NP(PRP It))(VP(MD will)(VP(VB continue)(S(VP(TO to)(VP(VB trade)(PP(IN on)(NP(DT the)(NAC(NNP International)(NNP Stock)(NNP Exchange)(, ,))(NNP London))))))))(. .))) (TOP(S(NP(DT The)(NNP American)(NNP Stock)(NNP Exchange))(VP(VBN listed)(NP(NNS shares))(PP(IN of)(NP(CD two)(NNS companies))))(. .))) (TOP (POS AIM) (POS Telephones) (POS Inc.) (POS ,) (POS a) (POS Parsippany) (POS ,) (POS N.J.) (POS ,) (POS telecommunications) (POS equipment) (POS supply) (POS company) (POS ,) (POS started) (POS trading) (POS with) (POS the) (POS symbol) (POS AIM) (POS .)) (TOP(S(NP(PRP It))(VP(VBD had)(VP(VBD traded)(ADJP(JJ over-the-counter))))(. .))) (TOP(S(NP(NNP Columbia)(NNPS Laboratories)(NNP Inc.))(, ,)(NP(NNP Miami))(, ,)(VP(VBD began)(NP(NN trading))(PP(IN with)(NP(DT the)(NN symbol)(NNP COB))))(. .))) (TOP(S(NP(DT The)(NNS pharmaceuticals)(NN maker))(VP(VBD had)(VP(VBD traded)(ADJP(JJ over-the-counter))))(. .))) (TOP(S(NP(NP(DT The)(NNP National)(NNP Market)(NNP System))(PP(IN of)(NP(DT the)(NNP Nasdaq)(JJ over-the-counter)(NN market))))(VP(VBN listed)(NP(NNS shares))(PP(IN of)(NP(CD one)(NN company))))(. .))) (TOP (POS Employee) (POS Benefit) (POS Plans) (POS Inc.) (POS ,) (POS a) (POS Minneapolis) (POS health-care) (POS services) (POS company) (POS ,) (POS was) (POS listed) (POS with) (POS the) (POS symbol) (POS EBPI) (POS .)) (TOP (POS When) (POS Justice) (POS William) (POS Brennan) (POS marks) (POS the) (POS start) (POS of) (POS his) (POS 34th) (POS year) (POS on) (POS the) (POS Supreme) (POS Court) (POS today) (POS ,) (POS the) (POS occasion) (POS will) (POS differ) (POS sharply) (POS from) (POS previous) (POS anniversaries) (POS of) (POS his) (POS tenure) (POS .)) (TOP (POS For) (POS the) (POS first) (POS time) (POS ,) (POS the) (POS 83-year-old) (POS justice) (POS finds) (POS his) (POS influence) (POS almost) (POS exclusively) (POS in) (POS dissent) (POS ,) (POS rather) (POS than) (POS as) (POS a) (POS force) (POS in) (POS the) (POS high) (POS court) (POS 's) (POS majority) (POS .)) (TOP (POS This) (POS role) (POS reversal) (POS holds) (POS true) (POS ,) (POS as) (POS well) (POS ,) (POS for) (POS his) (POS three) (POS liberal) (POS and) (POS moderate) (POS allies) (POS ,) (POS Justices) (POS Thurgood) (POS Marshall) (POS ,) (POS Harry) (POS Blackmun) (POS and) (POS John) (POS Stevens) (POS .)) (TOP (POS But) (POS are) (POS these) (POS four) (POS players) (POS ,) (POS three) (POS of) (POS them) (POS in) (POS their) (POS 80s) (POS ,) (POS ready) (POS to) (POS assume) (POS a) (POS different) (POS role) (POS after) (POS 88) (POS years) (POS ,) (POS collectively) (POS ,) (POS of) (POS service) (POS on) (POS the) (POS high) (POS court) (POS ?)) (TOP (POS Every) (POS indication) (POS is) (POS that) (POS the) (POS four) (POS are) (POS prepared) (POS to) (POS accept) (POS this) (POS new) (POS role) (POS ,) (POS and) (POS the) (POS frustrations) (POS that) (POS go) (POS with) (POS it) (POS ,) (POS but) (POS in) (POS different) (POS ways) (POS .)) (TOP (POS Justices) (POS Brennan) (POS and) (POS Stevens) (POS appear) (POS philosophical) (POS about) (POS it) (POS ;) (POS Justices) (POS Marshall) (POS and) (POS Blackmun) (POS appear) (POS fighting) (POS mad) (POS .)) (TOP (POS The) (POS four) (POS justices) (POS are) (POS no) (POS newcomers) (POS to) (POS dissent) (POS ,) (POS often) (POS joining) (POS forces) (POS in) (POS the) (POS past) (POS decade) (POS to) (POS criticize) (POS the) (POS court) (POS 's) (POS conservative) (POS drift) (POS .)) (TOP (POS But) (POS always) (POS ,) (POS in) (POS years) (POS past) (POS ,) (POS they) (POS have) (POS bucked) (POS the) (POS trend) (POS and) (POS have) (POS been) (POS able) (POS to) (POS pick) (POS up) (POS a) (POS fifth) (POS vote) (POS to) (POS eke) (POS out) (POS a) (POS number) (POS of) (POS major) (POS victories) (POS in) (POS civil) (POS rights) (POS and) (POS liberties) (POS cases) (POS .)) (TOP (POS Now) (POS ,) (POS however) (POS ,) (POS as) (POS the) (POS court) (POS 's) (POS new) (POS five-member) (POS conservative) (POS majority) (POS continues) (POS to) (POS solidify) (POS ,) (POS victories) (POS for) (POS the) (POS liberals) (POS are) (POS rare) (POS .)) (TOP (POS The) (POS change) (POS is) (POS most) (POS dramatic) (POS for) (POS Justice) (POS Brennan) (POS ,) (POS the) (POS last) (POS survivor) (POS of) (POS the) (POS mid-1960s) (POS liberal) (POS majority) (POS under) (POS Chief) (POS Justice) (POS Earl) (POS Warren) (POS .)) (TOP (POS In) (POS the) (POS seven) (POS Supreme) (POS Court) (POS terms) (POS from) (POS the) (POS fall) (POS of) (POS 1962) (POS through) (POS the) (POS spring) (POS of) (POS 1967) (POS ,) (POS the) (POS height) (POS of) (POS the) (POS Warren) (POS Court) (POS 's) (POS power) (POS ,) (POS Justice) (POS Brennan) (POS cast) (POS only) (POS 25) (POS dissenting) (POS votes) (POS in) (POS 555) (POS cases) (POS decided) (POS by) (POS the) (POS court) (POS .)) (TOP (POS Last) (POS term) (POS alone) (POS he) (POS cast) (POS 52) (POS dissenting) (POS votes) (POS in) (POS 133) (POS decisions) (POS ,) (POS with) (POS the) (POS contentious) (POS flag-burning) (POS ruling) (POS as) (POS his) (POS only) (POS big) (POS victory) (POS .)) (TOP (POS But) (POS Justice) (POS Brennan) (POS foresaw) (POS his) (POS new) (POS role) (POS ,) (POS strongly) (POS defending) (POS the) (POS importance) (POS of) (POS dissents) (POS in) (POS a) (POS 1985) (POS speech) (POS .)) (TOP (POS ``) (POS Each) (POS time) (POS the) (POS court) (POS revisits) (POS an) (POS issue) (POS ,) (POS the) (POS justices) (POS will) (POS be) (POS forced) (POS by) (POS a) (POS dissent) (POS to) (POS reconsider) (POS the) (POS fundamental) (POS questions) (POS and) (POS to) (POS rethink) (POS the) (POS result) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS Moreover) (POS ,) (POS in) (POS recent) (POS months) (POS he) (POS has) (POS said) (POS that) (POS when) (POS he) (POS was) (POS on) (POS the) (POS winning) (POS side) (POS in) (POS the) (POS 1960s) (POS ,) (POS he) (POS knew) (POS that) (POS the) (POS tables) (POS might) (POS turn) (POS in) (POS the) (POS future) (POS .)) (TOP (POS He) (POS has) (POS said) (POS that) (POS he) (POS now) (POS knows) (POS how) (POS Justice) (POS John) (POS Harlan) (POS felt) (POS ,) (POS a) (POS reference) (POS to) (POS the) (POS late) (POS conservative) (POS justice) (POS who) (POS was) (POS the) (POS most) (POS frequent) (POS dissenter) (POS from) (POS the) (POS Warren) (POS Court) (POS 's) (POS opinions) (POS .)) (TOP (POS Associates) (POS of) (POS 81-year-old) (POS Justice) (POS Marshall) (POS say) (POS he) (POS was) (POS ``) (POS depressed) (POS '') (POS about) (POS the) (POS court) (POS 's) (POS direction) (POS last) (POS spring) (POS ,) (POS but) (POS is) (POS feisty) (POS about) (POS his) (POS role) (POS and) (POS determined) (POS to) (POS speak) (POS out) (POS against) (POS the) (POS court) (POS 's) (POS cutbacks) (POS in) (POS civil) (POS rights) (POS .)) (TOP (POS ``) (POS We) (POS could) (POS sweep) (POS it) (POS under) (POS the) (POS rug) (POS and) (POS hide) (POS it) (POS ,) (POS but) (POS I) (POS 'm) (POS not) (POS going) (POS to) (POS do) (POS it) (POS ,) (POS '') (POS he) (POS said) (POS in) (POS a) (POS speech) (POS last) (POS month) (POS .)) (TOP (POS He) (POS ,) (POS like) (POS Justice) (POS Brennan) (POS ,) (POS considers) (POS dissents) (POS highly) (POS important) (POS for) (POS the) (POS future) (POS ,) (POS a) (POS point) (POS that) (POS has) (POS n't) (POS escaped) (POS legal) (POS scholars) (POS .)) (TOP (POS Harvard) (POS Law) (POS School) (POS Professor) (POS Laurence) (POS Tribe) (POS says) (POS there) (POS is) (POS a) (POS ``) (POS generation-skipping) (POS '') (POS flavor) (POS to) (POS current) (POS dissents) (POS .)) (TOP (POS The) (POS dissenters) (POS in) (POS the) (POS Warren) (POS Court) (POS ,) (POS he) (POS says) (POS ,) (POS appeared) (POS to) (POS be) (POS writing) (POS for) (POS the) (POS short-term) (POS ,) (POS suggesting) (POS that) (POS the) (POS court) (POS 's) (POS direction) (POS might) (POS change) (POS soon) (POS .)) (TOP (POS ``) (POS Brennan) (POS and) (POS Marshall) (POS are) (POS speaking) (POS in) (POS their) (POS dissents) (POS to) (POS a) (POS more) (POS distant) (POS future) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP (POS Justice) (POS Blackmun) (POS ,) (POS who) (POS will) (POS turn) (POS 81) (POS next) (POS month) (POS ,) (POS also) (POS seems) (POS feisty) (POS about) (POS his) (POS new) (POS role) (POS .)) (TOP (POS Associates) (POS say) (POS he) (POS takes) (POS some) (POS defeats) (POS more) (POS personally) (POS than) (POS his) (POS colleagues) (POS ,) (POS especially) (POS attempts) (POS to) (POS curtail) (POS the) (POS right) (POS to) (POS abortion) (POS first) (POS recognized) (POS in) (POS his) (POS 1973) (POS opinion) (POS ,) (POS Roe) (POS vs.) (POS Wade) (POS .)) (TOP (POS Friends) (POS and) (POS associates) (POS who) (POS saw) (POS Justice) (POS Blackmun) (POS during) (POS the) (POS summer) (POS said) (POS he) (POS was) (POS no) (POS more) (POS discouraged) (POS about) (POS the) (POS court) (POS than) (POS in) (POS recent) (POS years) (POS .)) (TOP(S(CC And)(NP(PRP$ his)(NN outlook))(VP(VBN improved)(PP(IN after)(NP(NP(JJ successful)(NNP cataract)(NN surgery))(PP(IN in)(NP(NNP August))))))(. .))) (TOP (POS But) (POS his) (POS level) (POS of) (POS frustration) (POS showed) (POS in) (POS a) (POS recent) (POS ,) (POS impassioned) (POS speech) (POS to) (POS a) (POS group) (POS of) (POS hundreds) (POS of) (POS lawyers) (POS in) (POS Chicago) (POS .)) (TOP (POS He) (POS concluded) (POS his) (POS remarks) (POS by) (POS quoting) (POS ,) (POS emotionally) (POS and) (POS at) (POS some) (POS length) (POS ,) (POS according) (POS to) (POS those) (POS present) (POS ,) (POS the) (POS late) (POS Martin) (POS Luther) (POS King) (POS 's) (POS famous) (POS ``) (POS I) (POS Have) (POS a) (POS Dream) (POS '') (POS speech) (POS from) (POS the) (POS 1963) (POS March) (POS on) (POS Washington) (POS .)) (TOP (POS Justice) (POS Stevens) (POS ,) (POS 69) (POS ,) (POS is) (POS probably) (POS the) (POS most) (POS philosophical) (POS of) (POS the) (POS dissenters) (POS about) (POS his) (POS role) (POS ,) (POS in) (POS part) (POS because) (POS he) (POS may) (POS be) (POS the) (POS least) (POS liberal) (POS of) (POS the) (POS four) (POS ,) (POS but) (POS also) (POS because) (POS he) (POS enjoys) (POS the) (POS intellectual) (POS challenge) (POS of) (POS arguing) (POS with) (POS the) (POS majority) (POS more) (POS than) (POS the) (POS others) (POS .)) (TOP (POS If) (POS the) (POS role) (POS these) (POS four) (POS dissenters) (POS are) (POS assuming) (POS is) (POS a) (POS familiar) (POS one) (POS in) (POS modern) (POS Supreme) (POS Court) (POS history) (POS ,) (POS it) (POS also) (POS differs) (POS in) (POS an) (POS important) (POS way) (POS from) (POS recent) (POS history) (POS ,) (POS court) (POS watchers) (POS say) (POS .)) (TOP (POS ``) (POS The) (POS dissenters) (POS of) (POS the) (POS Warren) (POS Court) (POS were) (POS often) (POS defending) (POS a) (POS legal) (POS legacy) (POS that) (POS they) (POS inherited) (POS ,) (POS '') (POS says) (POS Prof.) (POS A.E.) (POS Dick) (POS Howard) (POS of) (POS the) (POS University) (POS of) (POS Virginia) (POS Law) (POS School) (POS ,) (POS ``) (POS but) (POS the) (POS dissenters) (POS today) (POS are) (POS defending) (POS a) (POS legacy) (POS that) (POS they) (POS created) (POS .)) (TOP (POS The) (POS government) (POS sold) (POS the) (POS deposits) (POS of) (POS four) (POS savings-and-loan) (POS institutions) (POS ,) (POS in) (POS its) (POS first) (POS wave) (POS of) (POS sales) (POS of) (POS big) (POS ,) (POS sick) (POS thrifts) (POS ,) (POS but) (POS low) (POS bids) (POS prevented) (POS the) (POS sale) (POS of) (POS a) (POS fifth) (POS .)) (TOP (POS The) (POS four) (POS S&Ls) (POS were) (POS sold) (POS to) (POS large) (POS banks) (POS ,) (POS as) (POS was) (POS the) (POS case) (POS with) (POS most) (POS of) (POS the) (POS 28) (POS previous) (POS transactions) (POS initiated) (POS by) (POS the) (POS Resolution) (POS Trust) (POS Corp.) (POS since) (POS it) (POS was) (POS created) (POS in) (POS the) (POS S&L) (POS bailout) (POS legislation) (POS two) (POS months) (POS ago) (POS .)) (TOP (POS Two) (POS of) (POS the) (POS four) (POS big) (POS thrifts) (POS were) (POS sold) (POS to) (POS NCNB) (POS Corp.) (POS ,) (POS Charlotte) (POS ,) (POS N.C.) (POS ,) (POS which) (POS has) (POS aggressively) (POS expanded) (POS its) (POS markets) (POS ,) (POS particularly) (POS in) (POS Texas) (POS and) (POS Florida) (POS .)) (TOP (POS A) (POS Canadian) (POS bank) (POS bought) (POS another) (POS thrift) (POS ,) (POS in) (POS the) (POS first) (POS RTC) (POS transaction) (POS with) (POS a) (POS foreign) (POS bank) (POS .)) (TOP(S(PP(IN Under)(NP(DT these)(NNS deals)))(, ,)(NP(DT the)(NNP RTC))(VP(VBZ sells)(ADVP(RB just))(NP(NP(DT the)(NNS deposits))(CC and)(NP(DT the)(JJ healthy)(NNS assets))))(. .))) (TOP (POS These) (POS ``) (POS clean-bank) (POS '') (POS transactions) (POS leave) (POS the) (POS bulk) (POS of) (POS bad) (POS assets) (POS ,) (POS mostly) (POS real) (POS estate) (POS ,) (POS with) (POS the) (POS government) (POS ,) (POS to) (POS be) (POS sold) (POS later) (POS .)) (TOP (POS In) (POS these) (POS four) (POS ,) (POS for) (POS instance) (POS ,) (POS the) (POS RTC) (POS is) (POS stuck) (POS with) (POS $) (POS 4.51) (POS billion) (POS in) (POS bad) (POS assets) (POS .)) (TOP (POS Acquirers) (POS paid) (POS premiums) (POS ranging) (POS from) (POS 1.5) (POS %) (POS to) (POS 3.7) (POS %) (POS for) (POS the) (POS deposits) (POS and) (POS branch) (POS systems) (POS ,) (POS roughly) (POS in) (POS line) (POS with) (POS what) (POS analysts) (POS were) (POS expecting) (POS .)) (TOP (POS The) (POS buyers) (POS will) (POS also) (POS be) (POS locked) (POS into) (POS deposit) (POS rates) (POS for) (POS just) (POS two) (POS weeks) (POS ,) (POS as) (POS has) (POS been) (POS the) (POS case) (POS with) (POS previous) (POS deals) (POS .)) (TOP(S(SBAR(IN After)(S(NP(DT that)(, ,)(NP(DT the)(NNS buyers)))(VP(MD may)(NP(NNP repudiate))(NP(DT the)(NNS rates)))))(VP(VBN paid)(PP(IN by)(NP(DT the)(JJ former)(NNS thrifts))))(. .))) (TOP(S(CC But)(S(NP(PRP it))(VP(VBZ 's)(ADJP(JJ uncertain)(PP(IN whether)(NP(DT these)(NNS institutions))))))(VP(MD will)(VP(VB take)(NP(DT those)(NNS steps))))(. .))) (TOP (POS NCNB) (POS ,) (POS for) (POS example) (POS ,) (POS has) (POS been) (POS one) (POS of) (POS the) (POS highest) (POS rate) (POS payers) (POS in) (POS the) (POS Texas) (POS market) (POS ,) (POS and) (POS in) (POS Florida) (POS ,) (POS rates) (POS are) (POS especially) (POS sensitive) (POS in) (POS retirement) (POS communities) (POS .)) (TOP (POS The) (POS RTC) (POS had) (POS previously) (POS targeted) (POS five) (POS thrifts) (POS for) (POS quick) (POS sales) (POS in) (POS order) (POS to) (POS spend) (POS cash) (POS by) (POS certain) (POS budgetary) (POS deadlines) (POS ,) (POS but) (POS the) (POS delays) (POS illustrate) (POS the) (POS tough) (POS chore) (POS facing) (POS the) (POS agency) (POS .)) (TOP (POS ``) (POS These) (POS thrifts) (POS are) (POS beached) (POS whales) (POS ,) (POS '') (POS said) (POS Bert) (POS Ely) (POS ,) (POS an) (POS industry) (POS consultant) (POS based) (POS in) (POS Alexandria) (POS ,) (POS Va) (POS .)) (TOP (POS For) (POS example) (POS ,) (POS the) (POS delay) (POS in) (POS selling) (POS People) (POS 's) (POS Heritage) (POS Savings) (POS ,) (POS Salina) (POS ,) (POS Kan.) (POS ,) (POS with) (POS $) (POS 1.7) (POS billion) (POS in) (POS assets) (POS ,) (POS has) (POS forced) (POS the) (POS RTC) (POS to) (POS consider) (POS selling) (POS off) (POS the) (POS thrift) (POS branch-by-branch) (POS ,) (POS instead) (POS of) (POS as) (POS a) (POS whole) (POS institution) (POS .)) (TOP(S(NP(NNP NCNB))(VP(VBD continued)(NP(PRP$ its)(NN foray))(PP(IN into)(NP(DT the)(NNP Florida)(CC and)(NNP Texas)(NNS markets))))(. .))) (TOP (POS NCNB) (POS will) (POS acquire) (POS University) (POS Federal) (POS Savings) (POS Association) (POS ,) (POS Houston) (POS ,) (POS which) (POS had) (POS assets) (POS of) (POS $) (POS 2.8) (POS billion) (POS .)) (TOP (POS NCNB) (POS Texas) (POS National) (POS Bank) (POS will) (POS pay) (POS the) (POS RTC) (POS a) (POS premium) (POS of) (POS $) (POS 129) (POS million) (POS for) (POS $) (POS 3.5) (POS billion) (POS in) (POS deposits) (POS .)) (TOP (POS As) (POS a) (POS measure) (POS of) (POS the) (POS depths) (POS to) (POS which) (POS the) (POS Texas) (POS real) (POS estate) (POS market) (POS has) (POS sunk) (POS ,) (POS the) (POS RTC) (POS will) (POS pay) (POS $) (POS 3.8) (POS billion) (POS to) (POS NCNB) (POS to) (POS take) (POS $) (POS 750) (POS million) (POS of) (POS bad) (POS assets) (POS .)) (TOP (POS NCNB) (POS also) (POS acquired) (POS Freedom) (POS Savings) (POS &) (POS Loan) (POS Association) (POS ,) (POS Tampa) (POS ,) (POS Fla.) (POS ,) (POS which) (POS had) (POS total) (POS assets) (POS of) (POS $) (POS 900) (POS million) (POS .)) (TOP (POS NCNB) (POS will) (POS pay) (POS the) (POS RTC) (POS a) (POS premium) (POS of) (POS $) (POS 40.4) (POS million) (POS for) (POS $) (POS 1.1) (POS billion) (POS in) (POS deposits) (POS .)) (TOP (POS NCNB) (POS will) (POS also) (POS acquire) (POS $) (POS 266) (POS million) (POS of) (POS Freedom) (POS 's) (POS assets) (POS from) (POS the) (POS RTC) (POS ,) (POS which) (POS will) (POS require) (POS $) (POS 875) (POS million) (POS in) (POS assistance) (POS .)) (TOP (POS Meridian) (POS Bancorp) (POS Inc.) (POS ,) (POS Reading) (POS ,) (POS Pa.) (POS ,) (POS will) (POS acquire) (POS Hill) (POS Financial) (POS Savings) (POS Association) (POS ,) (POS Red) (POS Hill) (POS ,) (POS Pa.) (POS ,) (POS which) (POS had) (POS $) (POS 2.3) (POS billion) (POS in) (POS assets) (POS .)) (TOP (POS Meridian) (POS will) (POS pay) (POS a) (POS premium) (POS of) (POS $) (POS 30.5) (POS million) (POS to) (POS assume) (POS $) (POS 2) (POS billion) (POS in) (POS deposits) (POS .)) (TOP (POS It) (POS will) (POS also) (POS purchase) (POS $) (POS 845) (POS million) (POS of) (POS the) (POS thrift) (POS 's) (POS assets) (POS ,) (POS with) (POS $) (POS 1.9) (POS billion) (POS in) (POS RTC) (POS assistance) (POS .)) (TOP (POS In) (POS the) (POS first) (POS RTC) (POS transaction) (POS with) (POS a) (POS foreign) (POS buyer) (POS ,) (POS Royal) (POS Trustco) (POS Ltd.) (POS ,) (POS Toronto) (POS ,) (POS will) (POS acquire) (POS Pacific) (POS Savings) (POS Bank) (POS ,) (POS Costa) (POS Mesa) (POS ,) (POS Calif.) (POS ,) (POS which) (POS had) (POS $) (POS 949) (POS million) (POS in) (POS assets) (POS .)) (TOP (POS Royal) (POS Trustco) (POS will) (POS pay) (POS the) (POS RTC) (POS $) (POS 25) (POS million) (POS to) (POS assume) (POS $) (POS 989) (POS million) (POS in) (POS deposits) (POS .)) (TOP (POS It) (POS will) (POS also) (POS purchase) (POS $) (POS 473) (POS million) (POS in) (POS assets) (POS ,) (POS and) (POS receive) (POS $) (POS 550) (POS million) (POS in) (POS assistance) (POS from) (POS the) (POS RTC) (POS .)) (TOP(S(NP(DT The)(JJ following)(NNS issues))(VP(VBD were)(RB recently)(VP(VBN filed)(PP(IN with)(NP(DT the)(NNPS Securities)(CC and)(NP(NNP Exchange)(NNP Commission))))))(: :))) (TOP (POS American) (POS Cyanamid) (POS Co.) (POS ,) (POS offering) (POS of) (POS 1,250,000) (POS common) (POS shares) (POS ,) (POS via) (POS Merrill) (POS Lynch) (POS Capital) (POS Markets) (POS .)) (TOP (POS Limited) (POS Inc.) (POS ,) (POS offering) (POS of) (POS up) (POS to) (POS $) (POS 300) (POS million) (POS of) (POS debt) (POS securities) (POS and) (POS warrants) (POS .)) (TOP (POS Nuveen) (POS California) (POS Performance) (POS Plus) (POS Municipal) (POS Fund) (POS Inc.) (POS ,) (POS initial) (POS offering) (POS of) (POS five) (POS million) (POS common) (POS shares) (POS ,) (POS via) (POS Alex) (POS .) (POS Brown) (POS &) (POS Sons) (POS Inc.) (POS ,) (POS John) (POS Nuveen) (POS &) (POS Co.) (POS ,) (POS Prudential-Bache) (POS Capital) (POS Funding) (POS ,) (POS and) (POS Bateman) (POS Eichler) (POS ,) (POS Hill) (POS Richards) (POS .)) (TOP (POS PacifiCare) (POS Health) (POS Systems) (POS Inc.) (POS ,) (POS proposed) (POS offering) (POS of) (POS 1.5) (POS million) (POS common) (POS shares) (POS ,) (POS of) (POS which) (POS 700,000) (POS shares) (POS will) (POS be) (POS offered) (POS by) (POS PacifiCare) (POS and) (POS 800,000) (POS shares) (POS by) (POS UniHealth) (POS America) (POS Inc) (POS .) (POS -LRB-) (POS PacifiCare) (POS 's) (POS 71) (POS %) (POS -RRB-) (POS ,) (POS via) (POS Dillon) (POS ,) (POS Read) (POS &) (POS Co.) (POS Inc.) (POS ,) (POS Goldman) (POS ,) (POS Sachs) (POS &) (POS Co.) (POS and) (POS Dean) (POS Witter) (POS Reynolds) (POS Inc) (POS .)) (TOP (POS Pricor) (POS Inc.) (POS ,) (POS offering) (POS of) (POS one) (POS million) (POS new) (POS shares) (POS of) (POS common) (POS stock) (POS and) (POS 300,000) (POS shares) (POS by) (POS holders) (POS ,) (POS via) (POS Drexel) (POS Burnham) (POS Lambert) (POS Inc.) (POS and) (POS J.C.) (POS Bradford) (POS &) (POS Co) (POS .)) (TOP (POS Trans) (POS World) (POS Airlines) (POS Inc.) (POS ,) (POS offering) (POS of) (POS $) (POS 150) (POS million) (POS senior) (POS notes) (POS ,) (POS via) (POS Drexel) (POS Burnham) (POS .)) (TOP (POS Time) (POS magazine) (POS ,) (POS in) (POS a) (POS move) (POS to) (POS reduce) (POS the) (POS costs) (POS of) (POS wooing) (POS new) (POS subscribers) (POS ,) (POS is) (POS lowering) (POS its) (POS circulation) (POS guarantee) (POS to) (POS advertisers) (POS for) (POS the) (POS second) (POS consecutive) (POS year) (POS ,) (POS increasing) (POS its) (POS subscription) (POS rates) (POS and) (POS cutting) (POS back) (POS on) (POS merchandise) (POS giveaways) (POS .)) (TOP (POS In) (POS an) (POS announcement) (POS to) (POS its) (POS staff) (POS last) (POS week) (POS ,) (POS executives) (POS at) (POS Time) (POS Warner) (POS Inc.) (POS 's) (POS weekly) (POS magazine) (POS said) (POS Time) (POS will) (POS ``) (POS dramatically) (POS de-emphasize) (POS '') (POS its) (POS use) (POS of) (POS electronic) (POS giveaways) (POS such) (POS as) (POS telephones) (POS in) (POS television) (POS subscription) (POS drives) (POS ;) (POS cut) (POS the) (POS circulation) (POS it) (POS guarantees) (POS advertisers) (POS by) (POS 300,000) (POS ,) (POS to) (POS four) (POS million) (POS ;) (POS and) (POS increase) (POS the) (POS cost) (POS of) (POS its) (POS annual) (POS subscription) (POS rate) (POS by) (POS about) (POS $) (POS 4) (POS to) (POS $) (POS 55) (POS .)) (TOP (POS In) (POS a) (POS related) (POS development) (POS ,) (POS the) (POS news-weekly) (POS ,) (POS for) (POS the) (POS fourth) (POS year) (POS in) (POS a) (POS row) (POS ,) (POS said) (POS it) (POS wo) (POS n't) (POS increase) (POS its) (POS advertising) (POS rates) (POS in) (POS 1990) (POS ;) (POS a) (POS full) (POS ,) (POS four-color) (POS page) (POS in) (POS the) (POS magazine) (POS costs) (POS about) (POS $) (POS 120,000) (POS .)) (TOP (POS However) (POS ,) (POS because) (POS the) (POS guaranteed) (POS circulation) (POS base) (POS is) (POS being) (POS lowered) (POS ,) (POS ad) (POS rates) (POS will) (POS be) (POS effectively) (POS 7.5) (POS %) (POS higher) (POS per) (POS subscriber) (POS ,) (POS according) (POS to) (POS Richard) (POS Heinemann) (POS ,) (POS Time) (POS associate) (POS publisher) (POS .)) (TOP (POS Time) (POS is) (POS following) (POS the) (POS course) (POS of) (POS some) (POS other) (POS mass-circulation) (POS magazines) (POS that) (POS in) (POS recent) (POS years) (POS have) (POS challenged) (POS the) (POS publishing) (POS myth) (POS that) (POS maintaining) (POS artificially) (POS high) (POS ,) (POS and) (POS expensive) (POS ,) (POS circulations) (POS is) (POS the) (POS way) (POS to) (POS draw) (POS advertisers) (POS .)) (TOP (POS In) (POS recent) (POS years) (POS ,) (POS Reader) (POS 's) (POS Digest) (POS ,) (POS New) (POS York) (POS Times) (POS Co.) (POS 's) (POS McCall) (POS 's) (POS ,) (POS and) (POS most) (POS recently) (POS News) (POS Corp.) (POS 's) (POS TV) (POS Guide) (POS ,) (POS have) (POS cut) (POS their) (POS massive) (POS circulation) (POS rate) (POS bases) (POS to) (POS eliminate) (POS marginal) (POS circulation) (POS and) (POS hold) (POS down) (POS rates) (POS for) (POS advertisers) (POS .)) (TOP (POS Deep) (POS discounts) (POS in) (POS subscriptions) (POS and) (POS offers) (POS of) (POS free) (POS clock) (POS radios) (POS and) (POS watches) (POS have) (POS become) (POS accepted) (POS forms) (POS of) (POS attracting) (POS new) (POS subscribers) (POS in) (POS the) (POS hyper-competitive) (POS world) (POS of) (POS magazine) (POS news-weeklies) (POS .)) (TOP (POS But) (POS Time) (POS ,) (POS as) (POS part) (POS of) (POS the) (POS more) (POS cost-conscious) (POS Time) (POS Warner) (POS ,) (POS wants) (POS to) (POS wean) (POS itself) (POS away) (POS from) (POS expensive) (POS gimmicks) (POS .)) (TOP (POS Besides) (POS ,) (POS Time) (POS executives) (POS think) (POS selling) (POS a) (POS news) (POS magazine) (POS with) (POS a) (POS clock) (POS radio) (POS is) (POS tacky) (POS .)) (TOP(S(`` ``)(NP(NNP(N Giveaways)))(ADVP(RB just))(VP(VB give)(NP(NNS people)))(NP(DT the)(JJ wrong)(NN image))(, ,)('' '')(VP(VBD said)(NP(NNP Mr.)(NNP Heinemann)))(. .))) (TOP(SINV(`` ``)(S(NP(DT That)(NN perception))(VP(VBZ takes)(NP(DT the)(NN focus))(PRT(RP off))(NP(DT the)(NN magazine))))(. .)('' ''))) (TOP (POS Time) (POS magazine) (POS executives) (POS predictably) (POS paint) (POS the) (POS circulation) (POS cut) (POS as) (POS a) (POS show) (POS of) (POS strength) (POS and) (POS actually) (POS a) (POS benefit) (POS to) (POS advertisers) (POS .)) (TOP (POS ``) (POS What) (POS we) (POS are) (POS doing) (POS is) (POS screening) (POS out) (POS the) (POS readers) (POS who) (POS are) (POS only) (POS casually) (POS related) (POS to) (POS the) (POS magazine) (POS and) (POS do) (POS n't) (POS really) (POS read) (POS it) (POS ,) (POS '') (POS said) (POS Mr.) (POS Heinemann) (POS .)) (TOP(SINV(`` ``)(S(NP(PRP We))(VP(VBP are)(VP(VBG trying)(S(VP(TO to)(VP(VB create)(UCP(NN quality)(CC and)(NN involvement))))))))(. .)('' ''))) (TOP (POS However) (POS ,) (POS Time) (POS executives) (POS used) (POS the) (POS same) (POS explanation) (POS when) (POS in) (POS October) (POS 1988) (POS the) (POS magazine) (POS cut) (POS its) (POS guaranteed) (POS circulation) (POS from) (POS 4.6) (POS million) (POS to) (POS 4.3) (POS million) (POS .)) (TOP (POS And) (POS Time) (POS 's) (POS paid) (POS circulation) (POS ,) (POS according) (POS to) (POS Audit) (POS Bureau) (POS of) (POS Circulations) (POS ,) (POS dropped) (POS 7.3) (POS %) (POS to) (POS 4,393,237) (POS in) (POS the) (POS six) (POS months) (POS ended) (POS June) (POS 30) (POS ,) (POS 1989) (POS .)) (TOP(S(ADVP(RB Still))(, ,)(NP(NNP Time)(POS 's))(VP(VB move)(VP(VBZ is)(VP(VBG being)(VP(VBD received)(ADVP(RB well))(, ,)(ADVP(RB once)(RB again))))))(. .))) (TOP (POS ``) (POS It) (POS 's) (POS terrific) (POS for) (POS advertisers) (POS to) (POS know) (POS the) (POS reader) (POS will) (POS be) (POS paying) (POS more) (POS ,) (POS '') (POS said) (POS Michael) (POS Drexler) (POS ,) (POS national) (POS media) (POS director) (POS at) (POS Bozell) (POS Inc.) (POS ad) (POS agency) (POS .)) (TOP(S(`` ``)(NP(NP(DT A)(JJ few)(NNS drops))(PP(IN in)(NP(NN circulation))))(VP(VBP are)(PP(IN of)(NP(DT no)(NN consequence))))(. .))) (TOP (POS It) (POS 's) (POS not) (POS a) (POS show) (POS of) (POS weakness) (POS ;) (POS they) (POS are) (POS improving) (POS the) (POS quality) (POS of) (POS circulation) (POS while) (POS insuring) (POS their) (POS profits) (POS .) (POS '')) (TOP (POS Mr.) (POS Heinemann) (POS said) (POS the) (POS changes) (POS represent) (POS a) (POS new) (POS focus) (POS in) (POS the) (POS magazine) (POS industry) (POS :) (POS a) (POS magazine) (POS 's) (POS net) (POS revenue) (POS per) (POS subscriber) (POS ,) (POS or) (POS the) (POS actual) (POS revenue) (POS from) (POS subscribers) (POS after) (POS discounts) (POS and) (POS the) (POS cost) (POS of) (POS premiums) (POS have) (POS been) (POS stripped) (POS away) (POS .)) (TOP (POS ``) (POS The) (POS question) (POS is) (POS how) (POS much) (POS are) (POS we) (POS getting) (POS from) (POS each) (POS reader) (POS ,) (POS '') (POS said) (POS Mr.) (POS Heinemann) (POS .)) (TOP (POS Time) (POS 's) (POS rivals) (POS news-weeklies) (POS ,) (POS Washington) (POS Post) (POS Co.) (POS 's) (POS Newsweek) (POS and) (POS U.S.) (POS News) (POS &) (POS World) (POS Report) (POS ,) (POS are) (POS less) (POS reliant) (POS on) (POS electronic) (POS giveaways) (POS ,) (POS and) (POS in) (POS recent) (POS years) (POS both) (POS have) (POS been) (POS increasing) (POS their) (POS circulation) (POS rate) (POS bases) (POS .)) (TOP (POS Both) (POS magazines) (POS are) (POS expected) (POS to) (POS announce) (POS their) (POS ad) (POS rates) (POS and) (POS circulation) (POS levels) (POS for) (POS 1990) (POS within) (POS a) (POS month) (POS .)) (TOP (POS When) (POS the) (POS news) (POS broke) (POS of) (POS an) (POS attempted) (POS coup) (POS in) (POS Panama) (POS two) (POS weeks) (POS ago) (POS ,) (POS Sen.) (POS Christopher) (POS Dodd) (POS called) (POS the) (POS State) (POS Department) (POS for) (POS a) (POS briefing) (POS .)) (TOP(SINV(`` ``)(S(NP(PRP They))(VP(VBD said)(, ,)(`` `)(VP(VB follow)(NP(NNP CNN)))))(, ,)('' ')('' '')(S(NP(PRP he))(VP(VBD told)))(NP(NNS reporters))(. .))) (TOP (POS That) (POS shows) (POS how) (POS far) (POS Ted) (POS Turner) (POS 's) (POS Cable) (POS News) (POS Network) (POS has) (POS come) (POS since) (POS its) (POS birth) (POS nine) (POS years) (POS ago) (POS ,) (POS when) (POS it) (POS was) (POS considered) (POS the) (POS laughingstock) (POS of) (POS television) (POS news) (POS .)) (TOP (POS It) (POS is) (POS bigger) (POS ,) (POS faster) (POS and) (POS more) (POS profitable) (POS than) (POS the) (POS news) (POS divisions) (POS of) (POS any) (POS of) (POS the) (POS three) (POS major) (POS broadcast) (POS networks) (POS .)) (TOP (POS Its) (POS niche) (POS as) (POS the) (POS ``) (POS network) (POS of) (POS record) (POS '') (POS during) (POS major) (POS crises) (POS draws) (POS elite) (POS audiences) (POS around) (POS the) (POS world) (POS .)) (TOP(S(CC But)(PP(IN for)(NP(DT all)(NP(PRP$ its)(NN success))(, ,)))(NP(NNP CNN))(VP(VBZ has)(VP(VBD hit)(NP(DT a)(NN plateau))))(. .))) (TOP(S(PP(IN Although)(NP(NN viewership)(NNP(N soars))(SBAR(WHADVP(WRB when))(S(NP(JJ big)(NN news))(VP(VBZ breaks))))(, ,)))(NP(PRP it))(VP(VBZ ebbs)(PP(IN during)(NP(NNS periods)))(PP(IN of)(NP(NN calm))))(. .))) (TOP (POS CNN) (POS executives) (POS worry) (POS that) (POS the) (POS network) (POS 's) (POS punchy) (POS but) (POS repetitive) (POS news) (POS format) (POS may) (POS be) (POS getting) (POS stale) (POS and) (POS wo) (POS n't) (POS keep) (POS viewers) (POS coming) (POS back) (POS as) (POS the) (POS alternatives) (POS multiply) (POS for) (POS news) (POS and) (POS information) (POS on) (POS cable-TV) (POS .)) (TOP (POS ``) (POS Just) (POS the) (POS fact) (POS we) (POS 're) (POS on) (POS 24) (POS hours) (POS is) (POS no) (POS longer) (POS bulletin) (POS ,) (POS '') (POS says) (POS Ed) (POS Turner) (POS ,) (POS CNN) (POS 's) (POS executive) (POS vice) (POS president) (POS ,) (POS news) (POS gathering) (POS -LRB-) (POS and) (POS no) (POS relation) (POS to) (POS Ted) (POS Turner) (POS -RRB-) (POS .)) (TOP(SINV(`` ``)(S(NP(PRP You))(VP(MD ca)(RB n't)(VP(VB live)(FRAG(WHPP(IN on)(WHNP(WDT that)))))))(. .)('' ''))) (TOP (POS So) (POS CNN) (POS ,) (POS a) (POS unit) (POS of) (POS Atlanta-based) (POS Turner) (POS Broadcasting) (POS System) (POS Inc.) (POS ,) (POS is) (POS trying) (POS to) (POS reposition) (POS itself) (POS as) (POS a) (POS primary) (POS channel) (POS ,) (POS or) (POS what) (POS people) (POS in) (POS the) (POS television) (POS industry) (POS call) (POS a) (POS ``) (POS top) (POS of) (POS mind) (POS '') (POS network) (POS .)) (TOP (POS Tonight) (POS ,) (POS to) (POS kick) (POS off) (POS the) (POS effort) (POS ,) (POS CNN) (POS will) (POS premiere) (POS its) (POS first) (POS prime-time) (POS newscast) (POS in) (POS years) (POS ,) (POS an) (POS hourlong) (POS show) (POS at) (POS 6) (POS p.m) (POS .) (POS Eastern) (POS time) (POS to) (POS air) (POS head-to-head) (POS against) (POS the) (POS network) (POS newscasts) (POS .)) (TOP (POS The) (POS show) (POS will) (POS be) (POS co-anchored) (POS by) (POS Bernard) (POS Shaw) (POS and) (POS Catherine) (POS Crier) (POS ,) (POS a) (POS 34-year-old) (POS former) (POS Texas) (POS judge) (POS and) (POS campus) (POS beauty) (POS queen) (POS who) (POS has) (POS never) (POS held) (POS a) (POS job) (POS in) (POS television) (POS or) (POS journalism) (POS .)) (TOP (POS The) (POS new) (POS show) (POS is) (POS perhaps) (POS the) (POS boldest) (POS in) (POS a) (POS number) (POS of) (POS steps) (POS the) (POS network) (POS is) (POS taking) (POS to) (POS build) (POS audience) (POS loyalty) (POS by) (POS shifting) (POS away) (POS from) (POS its) (POS current) (POS format) (POS toward) (POS more) (POS full-length) (POS ``) (POS signature) (POS '') (POS programming) (POS with) (POS recognizable) (POS stars) (POS .)) (TOP (POS To) (POS distinguish) (POS itself) (POS ,) (POS CNN) (POS is) (POS also) (POS expanding) (POS international) (POS coverage) (POS and) (POS adding) (POS a) (POS second) (POS global-news) (POS program) (POS .)) (TOP (POS It) (POS is) (POS paying) (POS higher) (POS salaries) (POS --) (POS after) (POS years) (POS of) (POS scrimping) (POS --) (POS to) (POS lure) (POS and) (POS keep) (POS experienced) (POS staffers) (POS .)) (TOP (POS And) (POS it) (POS is) (POS embarking) (POS on) (POS an) (POS expensive) (POS gamble) (POS to) (POS break) (POS major) (POS stories) (POS with) (POS a) (POS large) (POS investigative-reporting) (POS team) (POS .)) (TOP (POS ``) (POS The) (POS next) (POS stage) (POS is) (POS to) (POS get) (POS beyond) (POS the) (POS opinion) (POS leaders) (POS who) (POS use) (POS us) (POS as) (POS a) (POS point) (POS of) (POS reference) (POS to) (POS become) (POS a) (POS point) (POS of) (POS reference) (POS at) (POS ordinary) (POS dinner) (POS tables) (POS ,) (POS '') (POS says) (POS Jon) (POS Petrovich) (POS ,) (POS executive) (POS vice) (POS president) (POS of) (POS Headline) (POS News) (POS ,) (POS CNN) (POS 's) (POS sister) (POS network) (POS .)) (TOP(SBARQ(CC But)(WHNP(WDT that))(SQ(MD wo)(ADVP(RB n't))(VP(VB be)(ADJP(JJ easy))))(. .))) (TOP (POS Networks) (POS ,) (POS like) (POS other) (POS consumer) (POS products) (POS ,) (POS develop) (POS images) (POS in) (POS peoples) (POS ') (POS minds) (POS that) (POS are) (POS n't) (POS easy) (POS to) (POS change) (POS .)) (TOP (POS It) (POS also) (POS takes) (POS money) (POS that) (POS CNN) (POS has) (POS been) (POS reluctant) (POS to) (POS spend) (POS to) (POS make) (POS programs) (POS and) (POS hire) (POS talent) (POS that) (POS viewers) (POS will) (POS tune) (POS in) (POS specially) (POS to) (POS see) (POS .)) (TOP (POS And) (POS the) (POS cable-TV) (POS operators) (POS --) (POS CNN) (POS 's) (POS distributors) (POS and) (POS part) (POS owners) (POS --) (POS like) (POS things) (POS just) (POS the) (POS way) (POS they) (POS are) (POS .)) (TOP (POS The) (POS repositioning) (POS bid) (POS is) (POS aimed) (POS at) (POS CNN) (POS 's) (POS unsteady) (POS viewership) (POS --) (POS and) (POS what) (POS may) (POS happen) (POS to) (POS it) (POS as) (POS the) (POS cable-TV) (POS news) (POS market) (POS grows) (POS more) (POS competitive) (POS .)) (TOP (POS Already) (POS ,) (POS CNN) (POS is) (POS facing) (POS stronger) (POS competition) (POS from) (POS Financial) (POS News) (POS Network) (POS Inc.) (POS and) (POS General) (POS Electric) (POS Co.) (POS 's) (POS Consumer) (POS News) (POS and) (POS Business) (POS Channel) (POS ,) (POS both) (POS of) (POS which) (POS are) (POS likely) (POS to) (POS pursue) (POS more) (POS general) (POS news) (POS in) (POS the) (POS future) (POS .)) (TOP (POS In) (POS addition) (POS ,) (POS many) (POS cable-TV) (POS systems) (POS themselves) (POS are) (POS airing) (POS more) (POS local) (POS and) (POS regional) (POS news) (POS programs) (POS produced) (POS by) (POS local) (POS broadcast) (POS stations) (POS .)) (TOP(S(NP(NNP CNN))(VP(VBZ wants)(S(VP(TO to)(VP(VB change)(NP(NP(PRP$ its)(NNS viewers)(POS '))(NNS habits))))))(. .))) (TOP (POS Its) (POS watchers) (POS are) (POS ,) (POS on) (POS the) (POS whole) (POS ,) (POS a) (POS disloyal) (POS group) (POS of) (POS channel-zapping) (POS ``) (POS grazers) (POS '') (POS and) (POS news) (POS junkies) (POS ,) (POS who) (POS spend) (POS an) (POS average) (POS of) (POS just) (POS 26) (POS minutes) (POS a) (POS day) (POS watching) (POS CNN) (POS ,) (POS according) (POS to) (POS audience) (POS research) (POS .)) (TOP(S(SBAR(WHNP(WDT That))(S(VP(VBZ 's)(ADJP(JJR less)(PP(IN than)(NP(NN one-third)))))))(NP(NP(DT the)(NN time))(PP(IN that)(NP(NNS viewers))))(VP(VB watch)(NP(DT the)(JJ major)(NN broadcast)(NNS networks)))(. .))) (TOP (POS The) (POS brief) (POS attention) (POS viewers) (POS give) (POS CNN) (POS could) (POS put) (POS it) (POS at) (POS a) (POS disadvantage) (POS as) (POS ratings) (POS data) (POS ,) (POS and) (POS advertising) (POS ,) (POS become) (POS more) (POS important) (POS to) (POS cable-TV) (POS channels) (POS .)) (TOP(S(NP(NP(NNP CNN)(POS 's))(NN viewer)(NNS habits))(VP(VBP have)(VP(VBN been)(ADJP molded)(PP(IN by)(NP(PRP$ its)(NN format)))))(. .))) (TOP(S(NP(NP(PRP$ Its)(NN strategy))(PP(IN in)(NP(DT the)(NN past))))(VP(VBZ has)(VP(VBN been)(S(VP(TO to)(VP(VB serve)(PP(IN as)(NP(NP(DT a)(NN TV))(NN wire)(NN service))))))))(. .))) (TOP (POS It) (POS focused) (POS on) (POS building) (POS up) (POS its) (POS news) (POS bureaus) (POS around) (POS the) (POS world) (POS ,) (POS so) (POS as) (POS events) (POS took) (POS place) (POS it) (POS could) (POS go) (POS live) (POS quicker) (POS and) (POS longer) (POS than) (POS other) (POS networks) (POS .)) (TOP (POS It) (POS filled) (POS its) (POS daily) (POS schedule) (POS with) (POS newscasts) (POS called) (POS ``) (POS Daybreak) (POS ,) (POS '') (POS ``) (POS Daywatch) (POS ,) (POS '') (POS ``) (POS Newsday) (POS ,) (POS '') (POS and) (POS ``) (POS Newsnight) (POS ,) (POS '') (POS but) (POS the) (POS shows) (POS varied) (POS little) (POS in) (POS content) (POS ,) (POS personality) (POS or) (POS look) (POS .)) (TOP(S(ADVP(RB Now))(, ,)(NP(DT the)(NN push))(VP(VBZ is)(PRT(RP on))(PP(IN for)(NP(ADJP more-distinctive)(NNS shows))))(. .))) (TOP (POS ``) (POS Our) (POS goal) (POS is) (POS to) (POS create) (POS more) (POS programs) (POS with) (POS an) (POS individual) (POS identity) (POS ,) (POS '') (POS says) (POS Paul) (POS Amos) (POS ,) (POS CNN) (POS executive) (POS vice) (POS president) (POS for) (POS programming) (POS .)) (TOP (POS Accordingly) (POS ,) (POS CNN) (POS is) (POS adding) (POS a) (POS world-affairs) (POS show) (POS in) (POS the) (POS morning) (POS because) (POS surveys) (POS show) (POS its) (POS global-news) (POS hour) (POS in) (POS the) (POS afternoon) (POS is) (POS among) (POS its) (POS most) (POS ``) (POS differentiated) (POS '') (POS programs) (POS in) (POS viewers) (POS ') (POS minds) (POS ,) (POS says) (POS Mr.) (POS Amos) (POS .)) (TOP (POS And) (POS it) (POS is) (POS exploring) (POS other) (POS original) (POS programs) (POS ,) (POS similar) (POS to) (POS its) (POS ``) (POS Larry) (POS King) (POS Live) (POS '') (POS and) (POS ``) (POS Crossfire) (POS '') (POS talk) (POS shows) (POS ,) (POS which) (POS executives) (POS hope) (POS will) (POS keep) (POS people) (POS tuned) (POS in) (POS .)) (TOP (POS Then) (POS there) (POS 's) (POS ``) (POS The) (POS World) (POS Today) (POS ,) (POS '') (POS the) (POS prime-time) (POS newscast) (POS featuring) (POS Mr.) (POS Shaw) (POS and) (POS Ms.) (POS Crier) (POS .)) (TOP (POS Until) (POS now) (POS ,) (POS CNN) (POS has) (POS featured) (POS its) (POS Hollywood) (POS gossip) (POS show) (POS during) (POS the) (POS key) (POS evening) (POS period) (POS .)) (TOP (POS But) (POS 70) (POS %) (POS of) (POS the) (POS cable-television-equipped) (POS households) (POS that) (POS watch) (POS news) (POS do) (POS so) (POS between) (POS 6:30) (POS p.m.) (POS and) (POS 7) (POS p.m.) (POS ,) (POS the) (POS network) (POS discovered) (POS ,) (POS so) (POS CNN) (POS wants) (POS in) (POS .)) (TOP (POS Mr.) (POS Amos) (POS says) (POS the) (POS Shaw-Crier) (POS team) (POS will) (POS probably) (POS do) (POS two) (POS live) (POS interviews) (POS a) (POS day) (POS ,) (POS with) (POS most) (POS of) (POS the) (POS program) (POS ,) (POS at) (POS least) (POS for) (POS now) (POS ,) (POS appearing) (POS similar) (POS to) (POS CNN) (POS 's) (POS other) (POS newcasts) (POS .)) (TOP(S(NP(NP(DT Some))(PP(IN in)(NP(DT the)(NN industry))))(VP(VBP are)(ADJP(JJ skeptical)))(. .))) (TOP (POS ``) (POS I) (POS find) (POS it) (POS hard) (POS to) (POS conceive) (POS of) (POS people) (POS switching) (POS over) (POS to) (POS CNN) (POS for) (POS what) (POS ,) (POS at) (POS least) (POS in) (POS the) (POS public) (POS 's) (POS mind) (POS ,) (POS is) (POS the) (POS same) (POS news) (POS ,) (POS '') (POS says) (POS Reuven) (POS Frank) (POS ,) (POS the) (POS former) (POS two-time) (POS president) (POS of) (POS NBC) (POS News) (POS and) (POS creator) (POS of) (POS the) (POS Huntley-Brinkley) (POS Report) (POS .)) (TOP (POS The) (POS evening) (POS news) (POS is) (POS also) (POS slated) (POS as) (POS CNN) (POS 's) (POS stage) (POS for) (POS its) (POS big) (POS push) (POS into) (POS investigative) (POS journalism) (POS .)) (TOP (POS In) (POS August) (POS ,) (POS the) (POS network) (POS hired) (POS award-winning) (POS producer) (POS Pamela) (POS Hill) (POS ,) (POS the) (POS former) (POS head) (POS of) (POS news) (POS specials) (POS at) (POS ABC) (POS .)) (TOP (POS She) (POS 's) (POS assembling) (POS a) (POS staff) (POS of) (POS about) (POS 35) (POS investigative) (POS reporters) (POS who) (POS will) (POS produce) (POS weekly) (POS ,) (POS in-depth) (POS segments) (POS ,) (POS with) (POS an) (POS eye) (POS toward) (POS breaking) (POS big) (POS stories) (POS .)) (TOP (POS CNN) (POS executives) (POS hope) (POS the) (POS headlines) (POS created) (POS by) (POS such) (POS scoops) (POS will) (POS generate) (POS excitement) (POS for) (POS its) (POS ``) (POS branded) (POS '') (POS programs) (POS ,) (POS in) (POS the) (POS way) (POS ``) (POS 60) (POS Minutes) (POS '') (POS did) (POS so) (POS well) (POS for) (POS CBS) (POS .)) (TOP (POS That) (POS 's) (POS such) (POS a) (POS departure) (POS from) (POS the) (POS past) (POS that) (POS many) (POS in) (POS the) (POS industry) (POS are) (POS skeptical) (POS CNN) (POS will) (POS follow) (POS through) (POS with) (POS its) (POS investigative) (POS commitment) (POS ,) (POS especially) (POS after) (POS it) (POS sees) (POS the) (POS cost) (POS of) (POS producing) (POS in-depth) (POS pieces) (POS .)) (TOP (POS ``) (POS They) (POS 've) (POS never) (POS shown) (POS any) (POS inclination) (POS to) (POS spend) (POS money) (POS on) (POS production) (POS ,) (POS '') (POS says) (POS Michael) (POS Mosettig) (POS ,) (POS a) (POS senior) (POS producer) (POS with) (POS MacNeil-Lehrer) (POS NewsHour) (POS ,) (POS who) (POS notes) (POS that) (POS CNN) (POS is) (POS indispensable) (POS to) (POS his) (POS job) (POS .)) (TOP (POS The) (POS network) (POS 's) (POS salaries) (POS have) (POS always) (POS ranged) (POS far) (POS below) (POS industry) (POS standards) (POS ,) (POS resulting) (POS in) (POS a) (POS less-experienced) (POS work) (POS force) (POS .)) (TOP (POS CNN) (POS recently) (POS gave) (POS most) (POS employees) (POS raises) (POS of) (POS as) (POS much) (POS as) (POS 15) (POS %) (POS ,) (POS but) (POS they) (POS 're) (POS still) (POS drastically) (POS underpaid) (POS compared) (POS with) (POS the) (POS networks) (POS .)) (TOP (POS Says) (POS Mr.) (POS Mosettig) (POS :) (POS ``) (POS CNN) (POS is) (POS my) (POS wire) (POS service) (POS ;) (POS they) (POS 're) (POS on) (POS top) (POS of) (POS everything) (POS .)) (TOP (POS But) (POS to) (POS improve) (POS ,) (POS they) (POS 've) (POS really) (POS got) (POS to) (POS make) (POS the) (POS investment) (POS in) (POS people) (POS .) (POS '')) (TOP (POS In) (POS any) (POS case) (POS ,) (POS cable-TV-system) (POS operators) (POS have) (POS reason) (POS to) (POS fear) (POS any) (POS tinkering) (POS with) (POS CNN) (POS 's) (POS format) (POS .)) (TOP(S(NP(NP(NP(PRP They))(NN market)(NN cable-TV))(PP(IN on)(NP(DT the)(JJ very)(NN grazing)(NNS opportunities))))(NP(NNP CNN))(VP(VBZ seeks)(S(VP(TO to)(VP(VB discourage)))))(. .))) (TOP (POS ``) (POS We) (POS would) (POS obviously) (POS be) (POS upset) (POS if) (POS those) (POS kinds) (POS of) (POS services) (POS evolved) (POS into) (POS more) (POS general-interest) (POS ,) (POS long-format) (POS programming) (POS ,) (POS '') (POS says) (POS Robert) (POS Stengel) (POS ,) (POS senior) (POS vice) (POS president) (POS ,) (POS programming) (POS ,) (POS of) (POS Continental) (POS Cablevision) (POS Inc.) (POS ,) (POS which) (POS holds) (POS a) (POS 2) (POS %) (POS stake) (POS in) (POS Turner) (POS Broadcasting) (POS .)) (TOP (POS The) (POS Second) (POS U.S.) (POS Circuit) (POS Court) (POS of) (POS Appeals) (POS opinion) (POS in) (POS the) (POS Arcadian) (POS Phosphate) (POS case) (POS did) (POS not) (POS repudiate) (POS the) (POS position) (POS Pennzoil) (POS Co.) (POS took) (POS in) (POS its) (POS dispute) (POS with) (POS Texaco) (POS ,) (POS contrary) (POS to) (POS your) (POS Sept.) (POS 8) (POS article) (POS ``) (POS Court) (POS Backs) (POS Texaco) (POS 's) (POS View) (POS in) (POS Pennzoil) (POS Case) (POS --) (POS Too) (POS Late) (POS .) (POS '')) (TOP (POS The) (POS fundamental) (POS rule) (POS of) (POS contract) (POS law) (POS applied) (POS to) (POS both) (POS cases) (POS was) (POS that) (POS courts) (POS will) (POS not) (POS enforce) (POS agreements) (POS to) (POS which) (POS the) (POS parties) (POS did) (POS not) (POS intend) (POS to) (POS be) (POS bound) (POS .)) (TOP (POS In) (POS the) (POS Pennzoil\/Texaco) (POS litigation) (POS ,) (POS the) (POS courts) (POS found) (POS Pennzoil) (POS and) (POS Getty) (POS Oil) (POS intended) (POS to) (POS be) (POS bound) (POS ;) (POS in) (POS Arcadian) (POS Phosphates) (POS they) (POS found) (POS there) (POS was) (POS no) (POS intention) (POS to) (POS be) (POS bound) (POS .)) (TOP(S(ADVP(RB Admittedly))(, ,)(NP(NP(DT the)(NN principle))(PP(IN in)(NP(DT the)(NNS cases))))(VP(VBZ is)(NP(DT the)(JJ same)))(. .))) (TOP(S(CC But)(NP(NP(DT the)(NN outcome))(PP(IN of)(NP(DT a)(JJ legal)(NN dispute))))(ADVP(RB almost)(RB always))(VP(VBZ turns)(PP(IN on)(NP(DT the)(NNS facts))))(. .))) (TOP (POS And) (POS the) (POS facts) (POS ,) (POS as) (POS found) (POS by) (POS the) (POS various) (POS courts) (POS in) (POS these) (POS two) (POS lawsuits) (POS ,) (POS were) (POS different) (POS .)) (TOP (POS When) (POS you) (POS suggest) (POS otherwise) (POS ,) (POS you) (POS leave) (POS the) (POS realm) (POS of) (POS reporting) (POS and) (POS enter) (POS the) (POS orbit) (POS of) (POS speculation) (POS .)) (TOP(NP(NNP Charles)(NNP F.)(NNP Vihon))) (TOP (POS Valley) (POS Federal) (POS Savings) (POS &) (POS Loan) (POS Association) (POS said) (POS Imperial) (POS Corp.) (POS of) (POS America) (POS withdrew) (POS from) (POS regulators) (POS its) (POS application) (POS to) (POS buy) (POS five) (POS Valley) (POS Federal) (POS branches) (POS ,) (POS leaving) (POS the) (POS transaction) (POS in) (POS limbo) (POS .)) (TOP (POS The) (POS broken) (POS purchase) (POS appears) (POS as) (POS additional) (POS evidence) (POS of) (POS trouble) (POS at) (POS Imperial) (POS Corp.) (POS ,) (POS whose) (POS spokesman) (POS said) (POS the) (POS company) (POS withdrew) (POS its) (POS application) (POS from) (POS the) (POS federal) (POS Office) (POS of) (POS Thrift) (POS Supervision) (POS because) (POS of) (POS an) (POS informal) (POS notice) (POS that) (POS Imperial) (POS 's) (POS thrift) (POS unit) (POS failed) (POS to) (POS meet) (POS Community) (POS Reinvestment) (POS Act) (POS requirements) (POS .)) (TOP (POS The) (POS Community) (POS Reinvestment) (POS Act) (POS requires) (POS savings) (POS and) (POS loan) (POS associations) (POS to) (POS lend) (POS money) (POS in) (POS amounts) (POS related) (POS to) (POS areas) (POS where) (POS deposits) (POS are) (POS received) (POS .)) (TOP (POS The) (POS transaction) (POS ,) (POS announced) (POS in) (POS August) (POS ,) (POS included) (POS about) (POS $) (POS 146) (POS million) (POS in) (POS deposits) (POS at) (POS the) (POS five) (POS outlets) (POS in) (POS California) (POS 's) (POS San) (POS Joaquin) (POS Valley) (POS .)) (TOP (POS Terms) (POS were) (POS n't) (POS disclosed) (POS ,) (POS but) (POS Valley) (POS Federal) (POS had) (POS said) (POS it) (POS expected) (POS to) (POS post) (POS a) (POS modest) (POS pretax) (POS gain) (POS and) (POS to) (POS save) (POS about) (POS $) (POS 2) (POS million) (POS in) (POS operating) (POS costs) (POS annually) (POS .)) (TOP (POS Valley) (POS Federal) (POS said) (POS Friday) (POS that) (POS it) (POS is) (POS considering) (POS whether) (POS to) (POS seek) (POS another) (POS buyer) (POS for) (POS the) (POS branches) (POS or) (POS to) (POS pursue) (POS the) (POS transaction) (POS with) (POS Imperial) (POS Corp.) (POS ,) (POS which) (POS said) (POS it) (POS is) (POS attempting) (POS to) (POS meet) (POS Community) (POS Reinvestment) (POS Act) (POS requirements) (POS .)) (TOP (POS Valley) (POS Federal) (POS ,) (POS with) (POS assets) (POS of) (POS $) (POS 3.3) (POS billion) (POS ,) (POS is) (POS based) (POS in) (POS Van) (POS Nuys) (POS .)) (TOP (POS Imperial) (POS Corp.) (POS ,) (POS based) (POS in) (POS San) (POS Diego) (POS ,) (POS is) (POS the) (POS parent) (POS of) (POS Imperial) (POS Savings) (POS &) (POS Loan) (POS .)) (TOP (POS In) (POS the) (POS first) (POS six) (POS months) (POS of) (POS the) (POS year) (POS it) (POS posted) (POS a) (POS net) (POS loss) (POS of) (POS $) (POS 33.1) (POS million) (POS .)) (TOP(SINV(VP(VB Call)(NP(PRP it)))(S(NP(DT the)(`` ``)(NP(PRP we)))(VP(VBP 're)(RB too)(VP(VBD broke)(S(VP(TO to)(VP(VB fight)))))))('' '')(NP(NN defense))(. .))) (TOP (POS Lawyers) (POS for) (POS dozens) (POS of) (POS insolvent) (POS savings) (POS and) (POS loan) (POS associations) (POS are) (POS trying) (POS a) (POS new) (POS tack) (POS in) (POS their) (POS efforts) (POS to) (POS defuse) (POS suits) (POS filed) (POS by) (POS borrowers) (POS ,) (POS developers) (POS and) (POS creditors) (POS .)) (TOP (POS The) (POS thrifts) (POS ') (POS lawyers) (POS claim) (POS that) (POS the) (POS suits) (POS ,) (POS numbering) (POS 700) (POS to) (POS 1,000) (POS in) (POS Texas) (POS alone) (POS ,) (POS should) (POS be) (POS dismissed) (POS as) (POS moot) (POS because) (POS neither) (POS the) (POS S&Ls) (POS nor) (POS the) (POS extinct) (POS Federal) (POS Savings) (POS and) (POS Loan) (POS Insurance) (POS Corp.) (POS has) (POS the) (POS money) (POS to) (POS pay) (POS judgments) (POS .)) (TOP (POS Though) (POS the) (POS argument) (POS may) (POS have) (POS a) (POS common-sense) (POS ring) (POS to) (POS it) (POS ,) (POS even) (POS the) (POS S&L) (POS lawyers) (POS concede) (POS there) (POS 's) (POS little) (POS precedent) (POS to) (POS back) (POS their) (POS position) (POS .)) (TOP (POS Still) (POS ,) (POS one) (POS federal) (POS appeals) (POS court) (POS has) (POS signaled) (POS it) (POS 's) (POS willing) (POS to) (POS entertain) (POS the) (POS notion) (POS ,) (POS and) (POS the) (POS lawyers) (POS have) (POS renewed) (POS their) (POS arguments) (POS in) (POS Texas) (POS and) (POS eight) (POS other) (POS states) (POS where) (POS the) (POS defense) (POS is) (POS permitted) (POS under) (POS state) (POS law) (POS .)) (TOP (POS The) (POS dismissal) (POS of) (POS the) (POS pending) (POS suits) (POS could) (POS go) (POS a) (POS long) (POS way) (POS toward) (POS clearing) (POS court) (POS dockets) (POS in) (POS Texas) (POS and) (POS reducing) (POS the) (POS FSLIC) (POS 's) (POS massive) (POS legal) (POS bills) (POS ,) (POS which) (POS topped) (POS $) (POS 73) (POS million) (POS last) (POS year) (POS .)) (TOP (POS The) (POS S&L) (POS lawyers) (POS were) (POS encouraged) (POS last) (POS month) (POS by) (POS an) (POS appellate-court) (POS ruling) (POS in) (POS two) (POS cases) (POS brought) (POS against) (POS defunct) (POS Sunbelt) (POS Savings) (POS &) (POS Loan) (POS Association) (POS of) (POS Dallas) (POS by) (POS the) (POS developers) (POS of) (POS the) (POS Valley) (POS Ranch) (POS ,) (POS best) (POS known) (POS as) (POS the) (POS training) (POS center) (POS for) (POS the) (POS Dallas) (POS Cowboys) (POS football) (POS team) (POS .)) (TOP(S(NP(NNP Sunbelt))(VP(VBN foreclosed)(PP(IN on)(NP(DT the)(NN ranch))))(. .))) (TOP (POS Sunbelt) (POS and) (POS the) (POS FSLIC) (POS argued) (POS to) (POS the) (POS Fifth) (POS U.S.) (POS Circuit) (POS Court) (POS of) (POS Appeals) (POS ``) (POS that) (POS there) (POS will) (POS never) (POS be) (POS any) (POS assets) (POS with) (POS which) (POS to) (POS satisfy) (POS a) (POS judgment) (POS against) (POS Sunbelt) (POS Savings) (POS nor) (POS any) (POS means) (POS to) (POS collect) (POS from) (POS any) (POS other) (POS party) (POS ,) (POS including) (POS FSLIC) (POS .) (POS '')) (TOP (POS ``) (POS If) (POS true) (POS ,) (POS '') (POS the) (POS court) (POS wrote) (POS ,) (POS ``) (POS this) (POS contention) (POS would) (POS justify) (POS dismissal) (POS of) (POS these) (POS actions) (POS on) (POS prudential) (POS grounds) (POS .) (POS '')) (TOP (POS But) (POS the) (POS court) (POS said) (POS it) (POS lacked) (POS enough) (POS financial) (POS information) (POS about) (POS Sunbelt) (POS and) (POS the) (POS FSLIC) (POS and) (POS sent) (POS the) (POS cases) (POS back) (POS to) (POS federal) (POS district) (POS court) (POS in) (POS Dallas) (POS .)) (TOP (POS Charles) (POS Haworth) (POS ,) (POS a) (POS lawyer) (POS for) (POS Sunbelt) (POS ,) (POS says) (POS he) (POS plans) (POS to) (POS file) (POS a) (POS brief) (POS this) (POS week) (POS urging) (POS the) (POS district) (POS judge) (POS to) (POS dismiss) (POS the) (POS suits) (POS ,) (POS because) (POS Sunbelt) (POS 's) (POS liabilities) (POS exceeded) (POS its) (POS assets) (POS by) (POS about) (POS $) (POS 2) (POS billion) (POS when) (POS federal) (POS regulators) (POS closed) (POS it) (POS in) (POS August) (POS 1988) (POS .)) (TOP (POS ``) (POS This) (POS institution) (POS is) (POS just) (POS brain) (POS dead) (POS ,) (POS '') (POS says) (POS Mr.) (POS Haworth) (POS ,) (POS a) (POS partner) (POS in) (POS the) (POS Dallas) (POS office) (POS of) (POS Andrews) (POS &) (POS Kurth) (POS ,) (POS a) (POS Houston) (POS law) (POS firm) (POS .)) (TOP (POS But) (POS a) (POS lawyer) (POS for) (POS Triland) (POS Investment) (POS Group) (POS ,) (POS the) (POS developer) (POS of) (POS Valley) (POS Ranch) (POS ,) (POS dismisses) (POS such) (POS arguments) (POS as) (POS a) (POS ``) (POS defense) (POS du) (POS jour) (POS .) (POS '')) (TOP (POS Attorney) (POS Richard) (POS Jackson) (POS of) (POS Dallas) (POS says) (POS a) (POS judgment) (POS for) (POS Triland) (POS could) (POS be) (POS satisfied) (POS in) (POS ways) (POS other) (POS than) (POS a) (POS monetary) (POS award) (POS ,) (POS including) (POS the) (POS reversal) (POS of) (POS Sunbelt) (POS 's) (POS foreclosure) (POS on) (POS Valley) (POS Ranch) (POS .)) (TOP (POS ``) (POS We) (POS 're) (POS asking) (POS the) (POS court) (POS for) (POS a) (POS number) (POS of) (POS things) (POS he) (POS can) (POS grant) (POS in) (POS addition) (POS to) (POS the) (POS thrill) (POS of) (POS victory) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP (POS ``) (POS We) (POS 'd) (POS take) (POS the) (POS Valley) (POS Ranch) (POS free) (POS and) (POS clear) (POS as) (POS a) (POS booby) (POS prize) (POS .)) (TOP (POS Kenneth) (POS J.) (POS Thygerson) (POS ,) (POS who) (POS was) (POS named) (POS president) (POS of) (POS this) (POS thrift) (POS holding) (POS company) (POS in) (POS August) (POS ,) (POS resigned) (POS ,) (POS citing) (POS personal) (POS reasons) (POS .)) (TOP (POS Mr.) (POS Thygerson) (POS said) (POS he) (POS had) (POS planned) (POS to) (POS travel) (POS between) (POS the) (POS job) (POS in) (POS Denver) (POS and) (POS his) (POS San) (POS Diego) (POS home) (POS ,) (POS but) (POS has) (POS found) (POS the) (POS commute) (POS too) (POS difficult) (POS to) (POS continue) (POS .)) (TOP(S(NP(DT A)(JJ new)(NN president))(VP(VBD was)(ADJP(RB n't)(VBN named)))(. .))) (TOP(S(NP(NNP SOUTH)(NNP(N AFRICA))(NNP FREED))(NP(DT the)(NNP ANC))(VP(VBZ 's)(NP(NNP Sisulu)(CC and)(NP(CD seven)(JJ other)(JJ political)(NNS prisoners))))(. .))) (TOP (POS Thousands) (POS of) (POS supporters) (POS ,) (POS many) (POS brandishing) (POS flags) (POS of) (POS the) (POS outlawed) (POS African) (POS National) (POS Congress) (POS ,) (POS gave) (POS the) (POS anti-apartheid) (POS activists) (POS a) (POS tumultuous) (POS reception) (POS upon) (POS their) (POS return) (POS to) (POS black) (POS townships) (POS across) (POS the) (POS country) (POS .)) (TOP(S(NP(NP(JJS Most))(PP(IN of)(NP(DT those))))(VP(VBD freed)(VP(VBD had)(VP(VBD spent)(NP(QP(IN at)(JJS least)(CD 25))(NNS years))(PP(IN in)(NP(NN prison))))))(. .))) (TOP (POS The) (POS 77-year-old) (POS Sisulu) (POS ,) (POS sentenced) (POS to) (POS life) (POS in) (POS 1964) (POS along) (POS with) (POS black) (POS nationalist) (POS Nelson) (POS Mandela) (POS for) (POS plotting) (POS to) (POS overthrow) (POS the) (POS government) (POS ,) (POS said) (POS equality) (POS for) (POS blacks) (POS in) (POS South) (POS Africa) (POS was) (POS in) (POS reach) (POS .)) (TOP (POS The) (POS releases) (POS ,) (POS announced) (POS last) (POS week) (POS by) (POS President) (POS de) (POS Klerk) (POS ,) (POS were) (POS viewed) (POS as) (POS Pretoria) (POS 's) (POS tacit) (POS legalization) (POS of) (POS the) (POS ANC) (POS .)) (TOP(S(NP(NNP Mandela))(, ,)(VP(VBN considered)(NP(DT the)(ADJP(RBS most)(JJ prominent))(NN leader))(PP(IN of)(NP(DT the)(NNP ANC))))(, ,)(VP(VBZ remains)(PP(IN in)(NP(NN prison))))(. .))) (TOP(S(CC But)(NP(NP(PRP$ his)(NN release))(PP(IN within)(NP(DT the)(JJ next)(JJ few)(NNS months))))(VP(VBZ is)(ADJP(RB widely)(VBN expected)))(. .))) (TOP (POS The) (POS Soviet) (POS Union) (POS reported) (POS that) (POS thousands) (POS of) (POS tons) (POS of) (POS goods) (POS needed) (POS to) (POS ease) (POS widespread) (POS shortages) (POS across) (POS the) (POS nation) (POS were) (POS piled) (POS up) (POS at) (POS ports) (POS and) (POS rail) (POS depots) (POS ,) (POS and) (POS food) (POS shipments) (POS were) (POS rotting) (POS because) (POS of) (POS a) (POS lack) (POS of) (POS people) (POS and) (POS equipment) (POS to) (POS move) (POS the) (POS cargo) (POS .)) (TOP (POS Strikes) (POS and) (POS mismanagement) (POS were) (POS cited) (POS ,) (POS and) (POS Premier) (POS Ryzhkov) (POS warned) (POS of) (POS ``) (POS tough) (POS measures) (POS .) (POS '')) (TOP (POS Bush) (POS indicated) (POS there) (POS might) (POS be) (POS ``) (POS room) (POS for) (POS flexibility) (POS '') (POS in) (POS a) (POS bill) (POS to) (POS allow) (POS federal) (POS funding) (POS of) (POS abortions) (POS for) (POS poor) (POS women) (POS who) (POS are) (POS vicitims) (POS of) (POS rape) (POS and) (POS incest) (POS .)) (TOP(S(S(NP(PRP He))(VP(VBD reiterated)(NP(PRP$ his)(NN opposition))(PP(TO to)(NP(JJ such)(NN funding)))))(, ,)(CC but)(VP(VBD expressed)(VP(VBP hope)(PP(IN of)(NP(DT a)(NN compromise)))))(. .))) (TOP (POS The) (POS president) (POS ,) (POS at) (POS a) (POS news) (POS conference) (POS Friday) (POS ,) (POS also) (POS renewed) (POS a) (POS call) (POS for) (POS the) (POS ouster) (POS of) (POS Panama) (POS 's) (POS Noriega) (POS .)) (TOP (POS The) (POS White) (POS House) (POS said) (POS minors) (POS have) (POS n't) (POS any) (POS right) (POS to) (POS abortion) (POS without) (POS the) (POS consent) (POS of) (POS their) (POS parents) (POS .)) (TOP (POS The) (POS administration) (POS 's) (POS policy) (POS was) (POS stated) (POS in) (POS a) (POS friend-of-the-court) (POS brief) (POS urging) (POS the) (POS Supreme) (POS Court) (POS to) (POS give) (POS states) (POS more) (POS leeway) (POS to) (POS restrict) (POS abortions) (POS .)) (TOP (POS Ten) (POS of) (POS the) (POS nation) (POS 's) (POS governors) (POS ,) (POS meanwhile) (POS ,) (POS called) (POS on) (POS the) (POS justices) (POS to) (POS reject) (POS efforts) (POS to) (POS limit) (POS abortions) (POS .)) (TOP (POS The) (POS Justice) (POS Department) (POS announced) (POS that) (POS the) (POS FBI) (POS has) (POS been) (POS given) (POS the) (POS authority) (POS to) (POS seize) (POS U.S.) (POS fugitives) (POS overseas) (POS without) (POS the) (POS permission) (POS of) (POS foreign) (POS governments) (POS .)) (TOP (POS Secretary) (POS of) (POS State) (POS Baker) (POS emphasized) (POS Friday) (POS that) (POS the) (POS new) (POS policy) (POS would) (POS n't) (POS be) (POS invoked) (POS by) (POS the) (POS Bush) (POS administration) (POS without) (POS full) (POS consideration) (POS of) (POS foreign-policy) (POS implications) (POS .)) (TOP (POS NASA) (POS pronounced) (POS the) (POS space) (POS shuttle) (POS Atlantis) (POS ready) (POS for) (POS launch) (POS tomorrow) (POS following) (POS a) (POS five-day) (POS postponement) (POS of) (POS the) (POS flight) (POS because) (POS of) (POS a) (POS faulty) (POS engine) (POS computer) (POS .)) (TOP(S(NP(DT The)(NN device))(VP(VBD was)(VP(VBD replaced)))(. .))) (TOP (POS The) (POS spacecraft) (POS 's) (POS five) (POS astronauts) (POS are) (POS to) (POS dispatch) (POS the) (POS Galileo) (POS space) (POS probe) (POS on) (POS an) (POS exploration) (POS mission) (POS to) (POS Jupiter) (POS .)) (TOP (POS South) (POS Korea) (POS 's) (POS President) (POS Roh) (POS traveled) (POS to) (POS the) (POS U.S.) (POS for) (POS a) (POS five-day) (POS visit) (POS that) (POS is) (POS expected) (POS to) (POS focus) (POS on) (POS ties) (POS between) (POS Washington) (POS and) (POS Seoul) (POS .)) (TOP (POS Roh) (POS ,) (POS who) (POS is) (POS facing) (POS calls) (POS for) (POS the) (POS reduction) (POS of) (POS U.S.) (POS military) (POS forces) (POS in) (POS South) (POS Korea) (POS ,) (POS is) (POS to) (POS meet) (POS with) (POS Bush) (POS tomorrow) (POS and) (POS is) (POS to) (POS address) (POS a) (POS joint) (POS session) (POS of) (POS Congress) (POS on) (POS Wednesday) (POS .)) (TOP (POS China) (POS 's) (POS Communist) (POS leadership) (POS voted) (POS to) (POS purge) (POS the) (POS party) (POS of) (POS ``) (POS hostile) (POS and) (POS anti-party) (POS elements) (POS '') (POS and) (POS wealthy) (POS private) (POS businessmen) (POS ,) (POS whom) (POS they) (POS called) (POS exploiters) (POS .)) (TOP (POS The) (POS decision) (POS ,) (POS reported) (POS by) (POS the) (POS official) (POS Xinhua) (POS News) (POS Agency) (POS ,) (POS indicated) (POS that) (POS the) (POS crackdown) (POS prompted) (POS by) (POS student-led) (POS pro-democracy) (POS protests) (POS in) (POS June) (POS is) (POS intensifying) (POS .)) (TOP (POS Hundreds) (POS of) (POS East) (POS Germans) (POS flocked) (POS to) (POS Bonn) (POS 's) (POS Embassy) (POS in) (POS Warsaw) (POS ,) (POS bringing) (POS to) (POS more) (POS than) (POS 1,200) (POS the) (POS number) (POS of) (POS emigres) (POS expected) (POS to) (POS flee) (POS to) (POS the) (POS West) (POS beginning) (POS today) (POS .)) (TOP(S(NP(QP(JJR More)(IN than)(CD 2,100))(NNS others))(VP(VBD escaped)(PP(TO to)(NP(NP(NNP West)(NNP Germany))(PP(IN through)(NP(NNP Hungary)))))(PP(IN over)(NP(DT the)(NNP Weekend))))(. .))) (TOP(S(PP(IN In)(NP(NNP Leipzig)))(, ,)(NP(NNS activists))(VP(VBD vowed)(S(VP(TO to)(VP(VB continue)(NP(NN street)(NNS protests))(PP(TO to)(NP(NN demand)(JJ internal)(NN change)))))))(. .))) (TOP (POS Zaire) (POS 's) (POS President) (POS Mobutu) (POS met) (POS in) (POS southern) (POS France) (POS with) (POS Angolan) (POS rebel) (POS leader) (POS Savimbi) (POS and) (POS a) (POS senior) (POS U.S.) (POS envoy) (POS in) (POS a) (POS bid) (POS to) (POS revive) (POS an) (POS accord) (POS to) (POS end) (POS Angola) (POS 's) (POS civil) (POS war) (POS .)) (TOP (POS Details) (POS of) (POS the) (POS talks) (POS ,) (POS described) (POS by) (POS a) (POS Zairean) (POS official) (POS as) (POS ``) (POS very) (POS delicate) (POS ,) (POS '') (POS were) (POS n't) (POS disclosed) (POS .)) (TOP (POS PLO) (POS leader) (POS Arafat) (POS insisted) (POS on) (POS guarantees) (POS that) (POS any) (POS elections) (POS in) (POS the) (POS Israeli-occupied) (POS territories) (POS would) (POS be) (POS impartial) (POS .)) (TOP(S(NP(PRP He))(VP(VBD made)(NP(NP(PRP$ his)(NNS remarks))(PP(TO to)(NP(DT a)(NNP PLO)(NN gathering))))(PP(IN in)(NP(NNP Baghdad))))(. .))) (TOP (POS In) (POS the) (POS occupied) (POS lands) (POS ,) (POS underground) (POS leaders) (POS of) (POS the) (POS Arab) (POS uprising) (POS rejected) (POS a) (POS U.S.) (POS plan) (POS to) (POS arrange) (POS Israeli-Palestinian) (POS talks) (POS as) (POS Shamir) (POS opposed) (POS holding) (POS such) (POS discussions) (POS in) (POS Cairo) (POS .)) (TOP (POS Lebanese) (POS Christian) (POS lawmakers) (POS presented) (POS to) (POS Arab) (POS mediators) (POS at) (POS talks) (POS in) (POS Saudi) (POS Arabia) (POS proposals) (POS for) (POS a) (POS new) (POS timetable) (POS for) (POS the) (POS withdrawal) (POS of) (POS Syria) (POS 's) (POS forces) (POS from) (POS Lebanon) (POS .)) (TOP (POS A) (POS plan) (POS currently) (POS under) (POS study) (POS gives) (POS Damascus) (POS two) (POS years) (POS to) (POS pull) (POS back) (POS to) (POS eastern) (POS Lebanon) (POS ,) (POS starting) (POS from) (POS the) (POS time) (POS Beirut) (POS 's) (POS legislature) (POS increases) (POS political) (POS power) (POS for) (POS Moslems) (POS .)) (TOP (POS Hurricane) (POS Jerry) (POS threatened) (POS to) (POS combine) (POS with) (POS the) (POS highest) (POS tides) (POS of) (POS the) (POS year) (POS to) (POS swamp) (POS the) (POS Texas-Louisiana) (POS coast) (POS .)) (TOP (POS Thousands) (POS of) (POS residents) (POS of) (POS low-lying) (POS areas) (POS were) (POS ordered) (POS to) (POS evacuate) (POS as) (POS the) (POS storm) (POS headed) (POS north) (POS in) (POS the) (POS Gulf) (POS of) (POS Mexico) (POS with) (POS 80) (POS mph) (POS winds) (POS .)) (TOP (POS A) (POS group) (POS of) (POS Arby) (POS 's) (POS franchisees) (POS said) (POS they) (POS formed) (POS an) (POS association) (POS to) (POS oppose) (POS Miami) (POS Beach) (POS financier) (POS Victor) (POS Posner) (POS 's) (POS control) (POS of) (POS the) (POS restaurant) (POS chain) (POS .)) (TOP (POS The) (POS decision) (POS is) (POS the) (POS latest) (POS move) (POS in) (POS an) (POS escalating) (POS battle) (POS between) (POS the) (POS franchisees) (POS and) (POS Mr.) (POS Posner) (POS that) (POS began) (POS in) (POS August) (POS .)) (TOP (POS At) (POS the) (POS time) (POS ,) (POS a) (POS group) (POS called) (POS R.B.) (POS Partners) (POS Ltd.) (POS ,) (POS consisting) (POS of) (POS eight) (POS of) (POS Arby) (POS 's) (POS largest) (POS franchisees) (POS ,) (POS offered) (POS more) (POS than) (POS $) (POS 200) (POS million) (POS to) (POS buy) (POS Arby) (POS 's) (POS Inc.) (POS ,) (POS which) (POS is) (POS part) (POS of) (POS DWG) (POS Corp) (POS .)) (TOP(S(NP(NNP DWG))(VP(VBZ is)(SBAR(S(NP(DT a)(VBG holding)(NN company))(VP(VBN controlled)(PP(IN by)(NP(NNP Mr.)(NNP Posner)))))))(. .))) (TOP (POS One) (POS week) (POS later) (POS ,) (POS Leonard) (POS H.) (POS Roberts) (POS ,) (POS president) (POS and) (POS chief) (POS executive) (POS officer) (POS of) (POS Arby) (POS 's) (POS ,) (POS was) (POS fired) (POS in) (POS a) (POS dispute) (POS with) (POS Mr.) (POS Posner) (POS .)) (TOP (POS Friday) (POS ,) (POS 42) (POS franchisees) (POS announced) (POS the) (POS formation) (POS of) (POS an) (POS association) (POS --) (POS called) (POS A.P.) (POS Association) (POS Inc.) (POS --) (POS to) (POS ``) (POS preserve) (POS the) (POS integrity) (POS of) (POS the) (POS Arby) (POS 's) (POS system) (POS .) (POS '')) (TOP (POS The) (POS franchisees) (POS ,) (POS owners) (POS or) (POS operators) (POS of) (POS 1,000) (POS of) (POS the) (POS 1,900) (POS franchised) (POS Arby) (POS 's) (POS in) (POS the) (POS U.S.) (POS ,) (POS said) (POS :) (POS ``) (POS We) (POS have) (POS concluded) (POS that) (POS continued) (POS control) (POS of) (POS Arby) (POS 's) (POS by) (POS Victor) (POS Posner) (POS is) (POS totally) (POS unacceptable) (POS to) (POS us) (POS ,) (POS because) (POS it) (POS is) (POS extremely) (POS likely) (POS to) (POS cause) (POS irreparable) (POS damage) (POS to) (POS the) (POS Arby) (POS 's) (POS system) (POS .)) (TOP (POS We) (POS support) (POS all) (POS efforts) (POS to) (POS remove) (POS Victor) (POS Posner) (POS from) (POS control) (POS of) (POS Arby) (POS 's) (POS Inc.) (POS and) (POS the) (POS Arby) (POS 's) (POS system) (POS .) (POS '')) (TOP (POS The) (POS group) (POS said) (POS it) (POS would) (POS consider) (POS ,) (POS among) (POS other) (POS things) (POS ,) (POS withholding) (POS royalty) (POS payments) (POS and) (POS initiating) (POS a) (POS class-action) (POS lawsuit) (POS seeking) (POS court) (POS approval) (POS for) (POS the) (POS withholdings) (POS .)) (TOP (POS In) (POS Florida) (POS ,) (POS Renee) (POS Mottram) (POS ,) (POS a) (POS senior) (POS vice) (POS president) (POS at) (POS DWG) (POS ,) (POS responded) (POS :) (POS ``) (POS We) (POS do) (POS n't) (POS think) (POS any) (POS individual) (POS or) (POS group) (POS should) (POS disrupt) (POS a) (POS winning) (POS system) (POS or) (POS illegally) (POS interfere) (POS with) (POS existing) (POS contractual) (POS relationships) (POS for) (POS their) (POS own) (POS self-serving) (POS motives) (POS .)) (TOP (POS September) (POS 's) (POS steep) (POS rise) (POS in) (POS producer) (POS prices) (POS shows) (POS that) (POS inflation) (POS still) (POS persists) (POS ,) (POS and) (POS the) (POS pessimism) (POS over) (POS interest) (POS rates) (POS caused) (POS by) (POS the) (POS new) (POS price) (POS data) (POS contributed) (POS to) (POS the) (POS stock) (POS market) (POS 's) (POS plunge) (POS Friday) (POS .)) (TOP (POS After) (POS falling) (POS for) (POS three) (POS consecutive) (POS months) (POS ,) (POS the) (POS producer) (POS price) (POS index) (POS for) (POS finished) (POS goods) (POS shot) (POS up) (POS 0.9) (POS %) (POS last) (POS month) (POS ,) (POS the) (POS Labor) (POS Department) (POS reported) (POS Friday) (POS ,) (POS as) (POS energy) (POS prices) (POS jumped) (POS after) (POS tumbling) (POS through) (POS the) (POS summer) (POS .)) (TOP (POS Although) (POS the) (POS report) (POS ,) (POS which) (POS was) (POS released) (POS before) (POS the) (POS stock) (POS market) (POS opened) (POS ,) (POS did) (POS n't) (POS trigger) (POS the) (POS 190.58-point) (POS drop) (POS in) (POS the) (POS Dow) (POS Jones) (POS Industrial) (POS Average) (POS ,) (POS analysts) (POS said) (POS it) (POS did) (POS play) (POS a) (POS role) (POS in) (POS the) (POS market) (POS 's) (POS decline) (POS .)) (TOP (POS Analysts) (POS immediately) (POS viewed) (POS the) (POS price) (POS data) (POS ,) (POS the) (POS grimmest) (POS inflation) (POS news) (POS in) (POS months) (POS ,) (POS as) (POS evidence) (POS that) (POS the) (POS Federal) (POS Reserve) (POS was) (POS unlikely) (POS to) (POS allow) (POS interest) (POS rates) (POS to) (POS fall) (POS as) (POS many) (POS investors) (POS had) (POS hoped) (POS .)) (TOP (POS Further) (POS fueling) (POS the) (POS belief) (POS that) (POS pressures) (POS in) (POS the) (POS economy) (POS were) (POS sufficient) (POS to) (POS keep) (POS the) (POS Fed) (POS from) (POS easing) (POS credit) (POS ,) (POS the) (POS Commerce) (POS Department) (POS reported) (POS Friday) (POS that) (POS retail) (POS sales) (POS grew) (POS 0.5) (POS %) (POS in) (POS September) (POS ,) (POS to) (POS $) (POS 145.21) (POS billion) (POS .)) (TOP (POS That) (POS rise) (POS came) (POS on) (POS top) (POS of) (POS a) (POS 0.7) (POS %) (POS gain) (POS in) (POS August) (POS ,) (POS and) (POS suggested) (POS there) (POS is) (POS still) (POS healthy) (POS consumer) (POS demand) (POS in) (POS the) (POS economy) (POS .)) (TOP (POS ``) (POS I) (POS think) (POS the) (POS Friday) (POS report) (POS ,) (POS combined) (POS with) (POS the) (POS actions) (POS of) (POS the) (POS Fed) (POS ,) (POS weakened) (POS the) (POS belief) (POS that) (POS there) (POS was) (POS going) (POS to) (POS be) (POS an) (POS imminent) (POS easing) (POS of) (POS monetary) (POS policy) (POS ,) (POS '') (POS said) (POS Robert) (POS Dederick) (POS ,) (POS chief) (POS economist) (POS at) (POS Northern) (POS Trust) (POS Co.) (POS in) (POS Chicago) (POS .)) (TOP (POS But) (POS economists) (POS were) (POS divided) (POS over) (POS the) (POS extent) (POS of) (POS the) (POS inflation) (POS threat) (POS signaled) (POS by) (POS the) (POS new) (POS numbers) (POS .)) (TOP (POS ``) (POS The) (POS overall) (POS 0.9) (POS %) (POS increase) (POS is) (POS serious) (POS in) (POS itself) (POS ,) (POS but) (POS what) (POS is) (POS even) (POS worse) (POS is) (POS that) (POS excluding) (POS food) (POS and) (POS energy) (POS ,) (POS the) (POS producer) (POS price) (POS index) (POS still) (POS increased) (POS by) (POS 0.7) (POS %) (POS ,) (POS '') (POS said) (POS Gordon) (POS Richards) (POS ,) (POS an) (POS economist) (POS at) (POS the) (POS National) (POS Association) (POS of) (POS Manufacturers) (POS .)) (TOP (POS But) (POS Sung) (POS Won) (POS Sohn) (POS ,) (POS chief) (POS economist) (POS at) (POS Norwest) (POS Corp.) (POS in) (POS Minneapolis) (POS ,) (POS blamed) (POS rising) (POS energy) (POS prices) (POS and) (POS the) (POS annual) (POS autumn) (POS increase) (POS in) (POS car) (POS prices) (POS for) (POS most) (POS of) (POS the) (POS September) (POS jump) (POS .)) (TOP (POS ``) (POS I) (POS would) (POS say) (POS this) (POS is) (POS not) (POS bad) (POS news) (POS ;) (POS this) (POS is) (POS a) (POS blip) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP(SINV(`` ``)(S(NP(DT The)(NN core)(NN rate))(VP(VBZ is)(ADVP(RB not)(RB really))(PRT(RP out))(PP(IN of)(NP(NN line)))))(. .)('' ''))) (TOP (POS All) (POS year) (POS ,) (POS energy) (POS prices) (POS have) (POS skewed) (POS the) (POS producer) (POS price) (POS index) (POS ,) (POS which) (POS measures) (POS changes) (POS in) (POS the) (POS prices) (POS producers) (POS receive) (POS for) (POS goods) (POS .)) (TOP (POS Inflation) (POS unquestionably) (POS has) (POS fallen) (POS back) (POS from) (POS its) (POS torrid) (POS pace) (POS last) (POS winter) (POS ,) (POS when) (POS a) (POS steep) (POS run-up) (POS in) (POS world) (POS oil) (POS prices) (POS sent) (POS the) (POS index) (POS surging) (POS at) (POS double-digit) (POS annual) (POS rates) (POS .)) (TOP (POS Energy) (POS prices) (POS then) (POS plummeted) (POS through) (POS the) (POS summer) (POS ,) (POS causing) (POS the) (POS index) (POS to) (POS decline) (POS for) (POS three) (POS consecutive) (POS months) (POS .)) (TOP (POS Overall) (POS ,) (POS the) (POS index) (POS has) (POS climbed) (POS at) (POS a) (POS 5.1) (POS %) (POS compound) (POS annual) (POS rate) (POS since) (POS the) (POS start) (POS of) (POS the) (POS year) (POS ,) (POS the) (POS Labor) (POS Department) (POS said) (POS .)) (TOP (POS While) (POS far) (POS more) (POS restrained) (POS than) (POS the) (POS pace) (POS at) (POS the) (POS beginning) (POS of) (POS the) (POS year) (POS ,) (POS that) (POS is) (POS still) (POS a) (POS steeper) (POS rise) (POS than) (POS the) (POS 4.0) (POS %) (POS increase) (POS for) (POS all) (POS of) (POS 1988) (POS .)) (TOP (POS Moreover) (POS ,) (POS this) (POS year) (POS 's) (POS good) (POS inflation) (POS news) (POS may) (POS have) (POS ended) (POS last) (POS month) (POS ,) (POS when) (POS energy) (POS prices) (POS zoomed) (POS up) (POS 6.5) (POS %) (POS after) (POS plunging) (POS 7.3) (POS %) (POS in) (POS August) (POS .)) (TOP (POS Some) (POS analysts) (POS expect) (POS oil) (POS prices) (POS to) (POS remain) (POS relatively) (POS stable) (POS in) (POS the) (POS months) (POS ahead) (POS ,) (POS leaving) (POS the) (POS future) (POS pace) (POS of) (POS inflation) (POS uncertain) (POS .)) (TOP (POS Analysts) (POS had) (POS expected) (POS that) (POS the) (POS climb) (POS in) (POS oil) (POS prices) (POS last) (POS month) (POS would) (POS lead) (POS to) (POS a) (POS substantial) (POS rise) (POS in) (POS the) (POS producer) (POS price) (POS index) (POS ,) (POS but) (POS the) (POS 0.9) (POS %) (POS climb) (POS was) (POS higher) (POS than) (POS most) (POS anticipated) (POS .)) (TOP (POS ``) (POS I) (POS think) (POS the) (POS resurgence) (POS -LCB-) (POS in) (POS inflation) (POS -RCB-) (POS is) (POS going) (POS to) (POS continue) (POS for) (POS a) (POS few) (POS months) (POS ,) (POS '') (POS said) (POS John) (POS Mueller) (POS ,) (POS chief) (POS economist) (POS at) (POS Bell) (POS Mueller) (POS Cannon) (POS ,) (POS a) (POS Washington) (POS economic) (POS forecasting) (POS firm) (POS .)) (TOP (POS He) (POS predicted) (POS that) (POS inflation) (POS will) (POS moderate) (POS next) (POS year) (POS ,) (POS saying) (POS that) (POS credit) (POS conditions) (POS are) (POS fairly) (POS tight) (POS world-wide) (POS .)) (TOP (POS But) (POS Dirk) (POS Van) (POS Dongen) (POS ,) (POS president) (POS of) (POS the) (POS National) (POS Association) (POS of) (POS Wholesaler-Distributors) (POS ,) (POS said) (POS that) (POS last) (POS month) (POS 's) (POS rise) (POS ``) (POS is) (POS n't) (POS as) (POS bad) (POS an) (POS omen) (POS '') (POS as) (POS the) (POS 0.9) (POS %) (POS figure) (POS suggests) (POS .)) (TOP (POS ``) (POS If) (POS you) (POS examine) (POS the) (POS data) (POS carefully) (POS ,) (POS the) (POS increase) (POS is) (POS concentrated) (POS in) (POS energy) (POS and) (POS motor) (POS vehicle) (POS prices) (POS ,) (POS rather) (POS than) (POS being) (POS a) (POS broad-based) (POS advance) (POS in) (POS the) (POS prices) (POS of) (POS consumer) (POS and) (POS industrial) (POS goods) (POS ,) (POS '') (POS he) (POS explained) (POS .)) (TOP (POS Passenger) (POS car) (POS prices) (POS jumped) (POS 3.8) (POS %) (POS in) (POS September) (POS ,) (POS after) (POS climbing) (POS 0.5) (POS %) (POS in) (POS August) (POS and) (POS declining) (POS in) (POS the) (POS late) (POS spring) (POS and) (POS summer) (POS .)) (TOP (POS Many) (POS analysts) (POS said) (POS the) (POS September) (POS increase) (POS was) (POS a) (POS one-time) (POS event) (POS ,) (POS coming) (POS as) (POS dealers) (POS introduced) (POS their) (POS 1990) (POS models) (POS .)) (TOP (POS Although) (POS all) (POS the) (POS price) (POS data) (POS were) (POS adjusted) (POS for) (POS normal) (POS seasonal) (POS fluctuations) (POS ,) (POS car) (POS prices) (POS rose) (POS beyond) (POS the) (POS customary) (POS autumn) (POS increase) (POS .)) (TOP (POS Prices) (POS for) (POS capital) (POS equipment) (POS rose) (POS a) (POS hefty) (POS 1.1) (POS %) (POS in) (POS September) (POS ,) (POS while) (POS prices) (POS for) (POS home) (POS electronic) (POS equipment) (POS fell) (POS 1.1) (POS %) (POS .)) (TOP(S(NP(NNP Food)(NNS prices))(VP(VBD declined)(NP(CD 0.6)(NN %))(, ,)(PP(IN after)(S(VP(VBG climbing)(NP(CD 0.3)(NN %))(PP(IN in)(NP(NNP August)))))))(. .))) (TOP (POS Meanwhile) (POS ,) (POS the) (POS retail) (POS sales) (POS report) (POS showed) (POS that) (POS car) (POS sales) (POS rose) (POS 0.8) (POS %) (POS in) (POS September) (POS to) (POS $) (POS 32.82) (POS billion) (POS .)) (TOP (POS But) (POS at) (POS least) (POS part) (POS of) (POS the) (POS increase) (POS could) (POS have) (POS come) (POS from) (POS higher) (POS prices) (POS ,) (POS analysts) (POS said) (POS .)) (TOP (POS Sales) (POS at) (POS general) (POS merchandise) (POS stores) (POS rose) (POS 1.7) (POS %) (POS after) (POS declining) (POS 0.6) (POS %) (POS in) (POS August) (POS ,) (POS while) (POS sales) (POS of) (POS building) (POS materials) (POS fell) (POS 1.8) (POS %) (POS after) (POS rising) (POS 1.7) (POS %) (POS .)) (TOP (POS Producer) (POS prices) (POS for) (POS intermediate) (POS goods) (POS grew) (POS 0.4) (POS %) (POS in) (POS September) (POS ,) (POS after) (POS dropping) (POS for) (POS three) (POS consecutive) (POS months) (POS .)) (TOP (POS Prices) (POS for) (POS crude) (POS goods) (POS ,) (POS an) (POS array) (POS of) (POS raw) (POS materials) (POS ,) (POS jumped) (POS 1.1) (POS %) (POS after) (POS declining) (POS 1.9) (POS %) (POS in) (POS August) (POS and) (POS edging) (POS up) (POS 0.2) (POS %) (POS in) (POS July) (POS .)) (TOP (POS Here) (POS are) (POS the) (POS Labor) (POS Department) (POS 's) (POS producer) (POS price) (POS indexes) (POS -LRB-) (POS 1982) (POS =) (POS 100) (POS -RRB-) (POS for) (POS September) (POS ,) (POS before) (POS seasonal) (POS adjustment) (POS ,) (POS and) (POS the) (POS percentage) (POS changes) (POS from) (POS September) (POS ,) (POS 1988) (POS .)) (TOP (POS CityFed) (POS Financial) (POS Corp.) (POS said) (POS it) (POS expects) (POS to) (POS report) (POS a) (POS loss) (POS of) (POS at) (POS least) (POS $) (POS 125) (POS million) (POS to) (POS $) (POS 150) (POS million) (POS for) (POS the) (POS third) (POS quarter) (POS .)) (TOP (POS In) (POS the) (POS year-earlier) (POS period) (POS ,) (POS CityFed) (POS had) (POS net) (POS income) (POS of) (POS $) (POS 485,000) (POS ,) (POS but) (POS no) (POS per-share) (POS earnings) (POS .)) (TOP (POS CityFed) (POS 's) (POS president) (POS and) (POS chief) (POS executive) (POS officer) (POS ,) (POS John) (POS Atherton) (POS ,) (POS said) (POS the) (POS loss) (POS stems) (POS from) (POS several) (POS factors) (POS .)) (TOP (POS He) (POS said) (POS nonperforming) (POS assets) (POS rose) (POS to) (POS slightly) (POS more) (POS than) (POS $) (POS 700) (POS million) (POS from) (POS $) (POS 516) (POS million) (POS between) (POS June) (POS and) (POS September) (POS .)) (TOP(S(NP(NP(QP(RB Approximately)(CD 85))(NN %))(PP(IN of)(NP(DT the)(NN total))))(VP(VBN consisted)(PP(IN of)(NP(JJ nonperforming)(JJ commercial)(JJ real)(NN estate)(NNS assets))))(. .))) (TOP (POS Accordingly) (POS ,) (POS CityFed) (POS estimated) (POS that) (POS it) (POS will) (POS provide) (POS between) (POS $) (POS 85) (POS million) (POS and) (POS $) (POS 110) (POS million) (POS for) (POS credit) (POS losses) (POS in) (POS the) (POS third) (POS quarter) (POS .)) (TOP (POS CityFed) (POS added) (POS that) (POS significant) (POS additional) (POS loan-loss) (POS provisions) (POS may) (POS be) (POS required) (POS by) (POS federal) (POS regulators) (POS as) (POS part) (POS of) (POS the) (POS current) (POS annual) (POS examination) (POS of) (POS City) (POS Federal) (POS Savings) (POS Bank) (POS ,) (POS CityFed) (POS 's) (POS primary) (POS subsidiary) (POS ,) (POS based) (POS in) (POS Somerset) (POS ,) (POS N.J) (POS .)) (TOP(S(NP(NNP City)(NNP Federal))(VP(VBZ operates)(NP(CD 105)(NN banking)(NNS offices))(PP(IN in)(NP(NP(NNP New)(NNP Jersey))(CC and)(NNP Florida))))(. .))) (TOP (POS Mr.) (POS Atherton) (POS said) (POS CityFed) (POS will) (POS also) (POS mark) (POS its) (POS portfolio) (POS of) (POS high-yield) (POS corporate) (POS bonds) (POS to) (POS market) (POS as) (POS a) (POS result) (POS of) (POS federal) (POS legislation) (POS requiring) (POS that) (POS savings) (POS institutions) (POS divest) (POS themselves) (POS of) (POS such) (POS bonds) (POS .)) (TOP (POS That) (POS action) (POS ,) (POS CityFed) (POS said) (POS ,) (POS will) (POS result) (POS in) (POS a) (POS charge) (POS against) (POS third-quarter) (POS results) (POS of) (POS approximately) (POS $) (POS 30) (POS million) (POS .)) (TOP (POS CityFed) (POS also) (POS said) (POS it) (POS expects) (POS to) (POS shed) (POS its) (POS remaining) (POS mortgage) (POS loan) (POS origination) (POS operations) (POS outside) (POS its) (POS principal) (POS markets) (POS in) (POS New) (POS Jersey) (POS and) (POS Florida) (POS and) (POS ,) (POS as) (POS a) (POS result) (POS ,) (POS is) (POS taking) (POS a) (POS charge) (POS for) (POS discontinued) (POS operations) (POS .)) (TOP (POS All) (POS these) (POS actions) (POS ,) (POS Mr.) (POS Atherton) (POS said) (POS ,) (POS will) (POS result) (POS in) (POS a) (POS loss) (POS of) (POS $) (POS 125) (POS million) (POS to) (POS $) (POS 150) (POS million) (POS for) (POS the) (POS third) (POS quarter) (POS .)) (TOP (POS He) (POS added) (POS ,) (POS however) (POS :) (POS ``) (POS Depending) (POS on) (POS the) (POS resolution) (POS of) (POS certain) (POS accounting) (POS issues) (POS relating) (POS to) (POS mortgages) (POS servicing) (POS and) (POS the) (POS outcome) (POS of) (POS the) (POS annual) (POS examination) (POS of) (POS City) (POS Federal) (POS currently) (POS in) (POS progress) (POS with) (POS respect) (POS to) (POS the) (POS appropriate) (POS level) (POS of) (POS loan) (POS loss) (POS reserves) (POS ,) (POS the) (POS total) (POS loss) (POS for) (POS the) (POS quarter) (POS could) (POS significantly) (POS exceed) (POS this) (POS range) (POS .)) (TOP (POS CenTrust) (POS Savings) (POS Bank) (POS said) (POS federal) (POS thrift) (POS regulators) (POS ordered) (POS it) (POS to) (POS suspend) (POS dividend) (POS payments) (POS on) (POS its) (POS two) (POS classes) (POS of) (POS preferred) (POS stock) (POS ,) (POS indicating) (POS that) (POS regulators) (POS ') (POS concerns) (POS about) (POS the) (POS troubled) (POS institution) (POS have) (POS heightened) (POS .)) (TOP (POS In) (POS a) (POS statement) (POS ,) (POS Miami-based) (POS CenTrust) (POS said) (POS the) (POS regulators) (POS cited) (POS the) (POS thrift) (POS 's) (POS operating) (POS losses) (POS and) (POS ``) (POS apparent) (POS losses) (POS '') (POS in) (POS its) (POS junk-bond) (POS portfolio) (POS in) (POS ordering) (POS the) (POS suspension) (POS of) (POS the) (POS dividends) (POS .)) (TOP(S(NP(NNS Regulators))(ADVP(RB also))(VP(VBD ordered)(NP(NNP CenTrust))(S(VP(TO to)(VP(VB stop)(S(VP(VBG buying)(PRT(RP back))(NP(DT the)(JJ preferred)(NN stock))))))))(. .))) (TOP (POS David) (POS L.) (POS Paul) (POS ,) (POS chairman) (POS and) (POS chief) (POS executive) (POS officer) (POS ,) (POS criticized) (POS the) (POS federal) (POS Office) (POS of) (POS Thrift) (POS Supervision) (POS ,) (POS which) (POS issued) (POS the) (POS directive) (POS ,) (POS saying) (POS it) (POS was) (POS ``) (POS inappropriate) (POS '') (POS and) (POS based) (POS on) (POS ``) (POS insufficient) (POS '') (POS reasons) (POS .)) (TOP(S(NP(PRP He))(VP(VBD said)(SBAR(S(NP(DT the)(NN thrift))(VP(MD will)(VP(VB try)(S(VP(TO to)(VP(VB get)(NP(NNS regulators))(S(VP(TO to)(VP(VB reverse)(NP(DT the)(NN decision)))))))))))))(. .))) (TOP (POS The) (POS suspension) (POS of) (POS a) (POS preferred) (POS stock) (POS dividend) (POS is) (POS a) (POS serious) (POS step) (POS that) (POS signals) (POS that) (POS regulators) (POS have) (POS deep) (POS concerns) (POS about) (POS an) (POS institution) (POS 's) (POS health) (POS .)) (TOP (POS In) (POS March) (POS ,) (POS regulators) (POS labeled) (POS CenTrust) (POS a) (POS ``) (POS troubled) (POS institution) (POS ,) (POS '') (POS largely) (POS because) (POS of) (POS its) (POS big) (POS junk-bond) (POS holdings) (POS and) (POS its) (POS operating) (POS losses) (POS .)) (TOP (POS In) (POS the) (POS same) (POS month) (POS ,) (POS the) (POS Office) (POS of) (POS Thrift) (POS Supervision) (POS ordered) (POS the) (POS institution) (POS to) (POS stop) (POS paying) (POS common) (POS stock) (POS dividends) (POS until) (POS its) (POS operations) (POS were) (POS on) (POS track) (POS .)) (TOP (POS For) (POS the) (POS nine) (POS months) (POS ended) (POS June) (POS 30) (POS ,) (POS CenTrust) (POS had) (POS a) (POS net) (POS loss) (POS of) (POS $) (POS 21.3) (POS million) (POS ,) (POS compared) (POS with) (POS year-earlier) (POS net) (POS income) (POS of) (POS $) (POS 52.8) (POS million) (POS .)) (TOP (POS CenTrust) (POS ,) (POS which) (POS is) (POS Florida) (POS 's) (POS largest) (POS thrift) (POS ,) (POS holds) (POS one) (POS of) (POS the) (POS largest) (POS junk-bond) (POS portfolios) (POS of) (POS any) (POS thrift) (POS in) (POS the) (POS nation) (POS .)) (TOP (POS Since) (POS April) (POS ,) (POS it) (POS has) (POS pared) (POS its) (POS high-yield) (POS bond) (POS holdings) (POS to) (POS about) (POS $) (POS 890) (POS million) (POS from) (POS $) (POS 1.35) (POS billion) (POS .)) (TOP (POS Mr.) (POS Paul) (POS said) (POS only) (POS about) (POS $) (POS 150) (POS million) (POS of) (POS the) (POS current) (POS holdings) (POS are) (POS tradeable) (POS securities) (POS registered) (POS with) (POS the) (POS Securities) (POS and) (POS Exchange) (POS Commission) (POS .)) (TOP (POS The) (POS remainder) (POS ,) (POS he) (POS said) (POS ,) (POS are) (POS commercial) (POS loan) (POS participations) (POS ,) (POS or) (POS private) (POS placements) (POS ,) (POS that) (POS are) (POS n't) (POS filed) (POS with) (POS the) (POS SEC) (POS and) (POS do) (POS n't) (POS have) (POS a) (POS ready) (POS market) (POS .)) (TOP (POS CenTrust) (POS and) (POS regulators) (POS have) (POS been) (POS in) (POS a) (POS dispute) (POS over) (POS market) (POS valuations) (POS for) (POS the) (POS junk) (POS bonds) (POS .)) (TOP (POS The) (POS Office) (POS of) (POS Thrift) (POS Supervision) (POS has) (POS been) (POS hounding) (POS CenTrust) (POS to) (POS provide) (POS current) (POS market) (POS values) (POS for) (POS its) (POS holdings) (POS ,) (POS but) (POS CenTrust) (POS has) (POS said) (POS it) (POS ca) (POS n't) (POS easily) (POS obtain) (POS such) (POS values) (POS because) (POS of) (POS the) (POS relative) (POS illiquidity) (POS of) (POS the) (POS bonds) (POS and) (POS lack) (POS of) (POS a) (POS ready) (POS market) (POS .)) (TOP (POS Regulators) (POS have) (POS become) (POS increasingly) (POS antsy) (POS about) (POS CenTrust) (POS 's) (POS and) (POS other) (POS thrifts) (POS ') (POS junk-bond) (POS holdings) (POS in) (POS light) (POS of) (POS the) (POS recent) (POS federal) (POS thrift) (POS bailout) (POS legislation) (POS and) (POS the) (POS recent) (POS deep) (POS decline) (POS in) (POS the) (POS junk-bond) (POS market) (POS .)) (TOP (POS The) (POS legislation) (POS requires) (POS thrifts) (POS to) (POS divest) (POS themselves) (POS of) (POS junk) (POS bonds) (POS in) (POS the) (POS new) (POS ,) (POS somber) (POS regulatory) (POS climate) (POS .)) (TOP (POS In) (POS American) (POS Stock) (POS Exchange) (POS composite) (POS trading) (POS Friday) (POS ,) (POS CenTrust) (POS common) (POS shares) (POS closed) (POS at) (POS $) (POS 3) (POS ,) (POS down) (POS 12.5) (POS cents) (POS .)) (TOP (POS In) (POS a) (POS statement) (POS Friday) (POS ,) (POS Mr.) (POS Paul) (POS challenged) (POS the) (POS regulators) (POS ') (POS decision) (POS ,) (POS saying) (POS the) (POS thrift) (POS 's) (POS operating) (POS losses) (POS and) (POS ``) (POS apparent) (POS '') (POS junk-bond) (POS losses) (POS ``) (POS have) (POS been) (POS substantially) (POS offset) (POS by) (POS gains) (POS in) (POS other) (POS activities) (POS of) (POS the) (POS bank) (POS .) (POS '')) (TOP (POS He) (POS also) (POS said) (POS substantial) (POS reserves) (POS have) (POS been) (POS set) (POS aside) (POS for) (POS possible) (POS losses) (POS from) (POS the) (POS junk) (POS bonds) (POS .)) (TOP (POS In) (POS the) (POS third) (POS quarter) (POS ,) (POS for) (POS instance) (POS ,) (POS CenTrust) (POS added) (POS $) (POS 22.5) (POS million) (POS to) (POS its) (POS general) (POS reserves) (POS .)) (TOP (POS Mr.) (POS Paul) (POS said) (POS the) (POS regulators) (POS should) (POS instead) (POS move) (POS ahead) (POS with) (POS approving) (POS CenTrust) (POS 's) (POS request) (POS to) (POS sell) (POS 63) (POS of) (POS its) (POS 71) (POS branches) (POS to) (POS Great) (POS Western) (POS Bank) (POS ,) (POS a) (POS unit) (POS of) (POS Great) (POS Western) (POS Financial) (POS Corp.) (POS based) (POS in) (POS Beverly) (POS Hills) (POS ,) (POS Calif) (POS .)) (TOP (POS The) (POS branch) (POS sale) (POS is) (POS the) (POS centerpiece) (POS of) (POS CenTrust) (POS 's) (POS strategy) (POS to) (POS transform) (POS itself) (POS into) (POS a) (POS traditional) (POS S&L) (POS from) (POS a) (POS high-flying) (POS institution) (POS that) (POS relied) (POS heavily) (POS on) (POS securities) (POS trading) (POS for) (POS profits) (POS ,) (POS according) (POS to) (POS Mr.) (POS Paul) (POS .)) (TOP (POS Most) (POS analysts) (POS and) (POS thrift) (POS executives) (POS had) (POS expected) (POS a) (POS decision) (POS on) (POS the) (POS proposed) (POS transaction) (POS ,) (POS which) (POS was) (POS announced) (POS in) (POS July) (POS ,) (POS long) (POS before) (POS now) (POS .)) (TOP(S(S(NP(JJ Many))(VP(VB interpret)(NP(NP(DT the)(NN delay))(PP(IN as)(NP(DT an)(NN indication))))(PP(IN that)(NP(NNS regulators)))))(VP(VBP are)(ADJP(JJ skeptical)(PP(IN about)(NP(DT the)(NN proposal)))))(. .))) (TOP (POS Branches) (POS and) (POS deposits) (POS can) (POS be) (POS sold) (POS at) (POS a) (POS premium) (POS in) (POS the) (POS event) (POS federal) (POS regulators) (POS take) (POS over) (POS an) (POS institution) (POS .)) (TOP (POS CenTrust) (POS ,) (POS however) (POS ,) (POS touts) (POS the) (POS branch) (POS sale) (POS ,) (POS saying) (POS it) (POS would) (POS bring) (POS in) (POS $) (POS 150) (POS million) (POS and) (POS reduce) (POS the) (POS thrift) (POS 's) (POS assets) (POS to) (POS $) (POS 6.7) (POS billion) (POS from) (POS $) (POS 9) (POS billion) (POS .)) (TOP (POS It) (POS said) (POS the) (POS sale) (POS would) (POS give) (POS it) (POS positive) (POS tangible) (POS capital) (POS of) (POS $) (POS 82) (POS million) (POS ,) (POS or) (POS about) (POS 1.2) (POS %) (POS of) (POS assets) (POS ,) (POS from) (POS a) (POS negative) (POS $) (POS 33) (POS million) (POS as) (POS of) (POS Sept.) (POS 30) (POS ,) (POS thus) (POS bringing) (POS CenTrust) (POS close) (POS to) (POS regulatory) (POS standards) (POS .)) (TOP (POS CenTrust) (POS said) (POS the) (POS branch) (POS sale) (POS would) (POS also) (POS reduce) (POS the) (POS company) (POS 's) (POS large) (POS amount) (POS of) (POS good) (POS will) (POS by) (POS about) (POS $) (POS 180) (POS million) (POS .)) (TOP (POS Critics) (POS ,) (POS however) (POS ,) (POS say) (POS the) (POS branch) (POS sale) (POS will) (POS make) (POS CenTrust) (POS more) (POS dependent) (POS than) (POS ever) (POS on) (POS brokered) (POS deposits) (POS and) (POS junk) (POS bonds) (POS .)) (TOP (POS Mr.) (POS Paul) (POS counters) (POS that) (POS he) (POS intends) (POS to) (POS further) (POS pare) (POS the) (POS size) (POS of) (POS CenTrust) (POS by) (POS not) (POS renewing) (POS more) (POS than) (POS $) (POS 1) (POS billion) (POS of) (POS brokered) (POS certificates) (POS of) (POS deposit) (POS when) (POS they) (POS come) (POS due) (POS .)) (TOP (POS The) (POS thrift) (POS is) (POS also) (POS working) (POS to) (POS unload) (POS its) (POS junk-bond) (POS portfolio) (POS by) (POS continuing) (POS to) (POS sell) (POS off) (POS the) (POS bonds) (POS ,) (POS and) (POS it) (POS plans) (POS to) (POS eventually) (POS place) (POS some) (POS of) (POS them) (POS in) (POS a) (POS separate) (POS affiliate) (POS ,) (POS as) (POS required) (POS under) (POS the) (POS new) (POS thrift) (POS law) (POS .)) (TOP (POS On) (POS a) (POS recent) (POS Saturday) (POS night) (POS ,) (POS in) (POS the) (POS midst) (POS of) (POS West) (POS Germany) (POS 's) (POS most) (POS popular) (POS prime-time) (POS show) (POS ,) (POS a) (POS contestant) (POS bet) (POS the) (POS host) (POS that) (POS she) (POS could) (POS name) (POS any) (POS of) (POS 100) (POS different) (POS cheeses) (POS after) (POS just) (POS one) (POS nibble) (POS ,) (POS while) (POS blindfolded) (POS .)) (TOP(S(NP(DT The)(NN woman))(VP(VBD won)(NP(DT the)(NN bet)))(. .))) (TOP (POS But) (POS perhaps) (POS even) (POS more) (POS remarkable) (POS ,) (POS the) (POS three-hour-show) (POS ,) (POS ``) (POS Wetten) (POS Dass) (POS '') (POS -LRB-) (POS Make) (POS a) (POS Bet) (POS -RRB-) (POS ,) (POS regularly) (POS wins) (POS the) (POS top) (POS slot) (POS in) (POS the) (POS country) (POS 's) (POS TV) (POS ratings) (POS ,) (POS sometimes) (POS drawing) (POS as) (POS many) (POS as) (POS 50) (POS %) (POS of) (POS West) (POS German) (POS households) (POS .)) (TOP (POS As) (POS the) (POS 1992) (POS economic) (POS integration) (POS approaches) (POS ,) (POS Europe) (POS 's) (POS cultural) (POS curators) (POS have) (POS taken) (POS to) (POS the) (POS ramparts) (POS against) (POS American) (POS ``) (POS cultural) (POS imperialism) (POS ,) (POS '') (POS threatening) (POS to) (POS impose) (POS quotas) (POS against) (POS such) (POS pop) (POS invaders) (POS as) (POS ``) (POS Dallas) (POS ,) (POS '') (POS ``) (POS Miami) (POS Vice) (POS '') (POS and) (POS ``) (POS L.A.) (POS Law) (POS .) (POS '')) (TOP (POS But) (POS much) (POS of) (POS what) (POS the) (POS Europeans) (POS want) (POS to) (POS protect) (POS seems) (POS every) (POS bit) (POS as) (POS cheesy) (POS as) (POS what) (POS they) (POS are) (POS trying) (POS to) (POS keep) (POS out) (POS .)) (TOP (POS The) (POS most) (POS militant) (POS opposition) (POS to) (POS American) (POS TV) (POS imports) (POS has) (POS come) (POS from) (POS French) (POS television) (POS and) (POS movie) (POS producers) (POS ,) (POS who) (POS have) (POS demanded) (POS quotas) (POS ensuring) (POS that) (POS a) (POS full) (POS 60) (POS %) (POS of) (POS Europe) (POS 's) (POS TV) (POS shows) (POS be) (POS produced) (POS in) (POS Europe) (POS .)) (TOP(S(ADVP(RB So)(RB far))(, ,)(NP(DT the)(JJ French))(VP(VBP have)(VP(VBD failed)(S(VP(TO to)(VP(VB win)(NP(JJ enough)(JJ broad-based)(NN support))(S(VP(TO to)(VP(VB prevail)))))))))(. .))) (TOP (POS A) (POS glance) (POS through) (POS the) (POS television) (POS listings) (POS and) (POS a) (POS few) (POS twists) (POS of) (POS the) (POS European) (POS television) (POS dial) (POS suggest) (POS one) (POS reason) (POS why) (POS .)) (TOP (POS While) (POS there) (POS are) (POS some) (POS popular) (POS action) (POS and) (POS drama) (POS series) (POS ,) (POS few) (POS boast) (POS the) (POS high) (POS culture) (POS and) (POS classy) (POS production) (POS values) (POS one) (POS might) (POS expect) (POS .)) (TOP (POS More) (POS European) (POS air) (POS time) (POS is) (POS filled) (POS with) (POS low-budget) (POS game) (POS shows) (POS ,) (POS variety) (POS hours) (POS ,) (POS movies) (POS and) (POS talk) (POS shows) (POS ,) (POS many) (POS of) (POS which) (POS are) (POS authorized) (POS knock-offs) (POS of) (POS their) (POS American) (POS counterparts) (POS .)) (TOP (POS One) (POS of) (POS France) (POS 's) (POS most) (POS popular) (POS Saturday) (POS night) (POS programs) (POS features) (POS semi-celebrities) (POS seeking) (POS out) (POS their) (POS grammar-school) (POS classmates) (POS for) (POS on-air) (POS reunions) (POS .)) (TOP(S(NP(DT A)(JJ Flemish)(NN game))(VP(VBP show)(VP(VBZ has)(PP(IN as)(NP(PRP$ its)(NN host)))(NP(DT a)(JJ Belgian)(NNP(N pretending)))(S(VP(TO to)(VP(VB be)(ADJP(JJ Italian)))))))(. .))) (TOP (POS One) (POS of) (POS Italy) (POS 's) (POS favorite) (POS shows) (POS ,) (POS ``) (POS Fantastico) (POS ,) (POS '') (POS a) (POS tepid) (POS variety) (POS show) (POS ,) (POS is) (POS so) (POS popular) (POS that) (POS viewers) (POS clamored) (POS to) (POS buy) (POS a) (POS chocolate) (POS product) (POS ,) (POS ``) (POS Cacao) (POS Fantastico) (POS ,) (POS '') (POS whose) (POS praises) (POS were) (POS sung) (POS each) (POS week) (POS by) (POS dancing) (POS showgirls) (POS --) (POS even) (POS though) (POS the) (POS product) (POS did) (POS n't) (POS exist) (POS .)) (TOP (POS Topping) (POS the) (POS cheese) (POS stunt) (POS ,) (POS on) (POS another) (POS typical) (POS evening) (POS of) (POS fun) (POS on) (POS ``) (POS Wetten) (POS Dass) (POS ,) (POS '') (POS a) (POS contestant) (POS won) (POS a) (POS bet) (POS with) (POS the) (POS show) (POS 's) (POS host) (POS ,) (POS Thomas) (POS Gottschalk) (POS ,) (POS that) (POS he) (POS could) (POS identify) (POS 300) (POS German) (POS dialects) (POS over) (POS the) (POS telephone) (POS .)) (TOP (POS A) (POS celebrity) (POS guest) (POS ,) (POS U.S.) (POS Ambassador) (POS to) (POS West) (POS Germany) (POS Richard) (POS Burt) (POS ,) (POS also) (POS won) (POS a) (POS bet) (POS that) (POS someone) (POS could) (POS pile) (POS up) (POS $) (POS 150) (POS worth) (POS of) (POS quarters) (POS on) (POS a) (POS slanted) (POS coin) (POS .)) (TOP (POS Mr.) (POS Burt) (POS nonetheless) (POS paid) (POS the) (POS penalty) (POS as) (POS if) (POS he) (POS had) (POS lost) (POS ,) (POS agreeing) (POS to) (POS spend) (POS a) (POS day) (POS with) (POS West) (POS German) (POS Foreign) (POS Minister) (POS Hans-Dietrich) (POS Genscher) (POS frying) (POS and) (POS selling) (POS their) (POS combined) (POS weight) (POS in) (POS potato) (POS pancakes) (POS .)) (TOP (POS If) (POS this) (POS seems) (POS like) (POS pretty) (POS weak) (POS stuff) (POS around) (POS which) (POS to) (POS raise) (POS the) (POS protectionist) (POS barriers) (POS ,) (POS it) (POS may) (POS be) (POS because) (POS these) (POS shows) (POS need) (POS all) (POS the) (POS protection) (POS they) (POS can) (POS get) (POS .)) (TOP (POS European) (POS programs) (POS usually) (POS target) (POS only) (POS their) (POS own) (POS local) (POS audience) (POS ,) (POS and) (POS often) (POS only) (POS a) (POS small) (POS portion) (POS of) (POS that) (POS .)) (TOP (POS Mega-hits) (POS in) (POS Germany) (POS or) (POS Italy) (POS rarely) (POS make) (POS it) (POS even) (POS to) (POS France) (POS or) (POS Great) (POS Britain) (POS ,) (POS and) (POS almost) (POS never) (POS show) (POS up) (POS on) (POS U.S.) (POS screens) (POS .)) (TOP(S(NP(NP(NNP(N Attempts)))(SBAR(S(TO to)(VP(VB produce)(`` ``)(ADJP pan-European)))))('' '')(NP(NNS programs))(VP(VBP have)(RB generally)(VP(VBN resulted)(PP(IN in)(NP(NN disappointment)))))(. .))) (TOP (POS One) (POS annual) (POS co-production) (POS ,) (POS the) (POS three-hour-long) (POS ``) (POS Eurovision) (POS Song) (POS Contest) (POS ,) (POS '') (POS featuring) (POS soft-rock) (POS songs) (POS from) (POS each) (POS of) (POS 20) (POS European) (POS countries) (POS ,) (POS has) (POS been) (POS described) (POS as) (POS the) (POS world) (POS 's) (POS most) (POS boring) (POS TV) (POS show) (POS .)) (TOP (POS Another) (POS ,) (POS ``) (POS Jeux) (POS Sans) (POS Frontieres) (POS ,) (POS '') (POS where) (POS villagers) (POS from) (POS assorted) (POS European) (POS countries) (POS make) (POS fools) (POS of) (POS themselves) (POS performing) (POS pointless) (POS tasks) (POS ,) (POS is) (POS a) (POS hit) (POS in) (POS France) (POS .)) (TOP(S(NP(NP(DT A)(JJ U.S.-made)(NN imitation))(PP(IN under)(NP(DT the)(NN title))))(`` ``)(ADVP(RB Almost))(S(NP(NN Anything))(VP(VBZ Goes)))('' '')(VP(VBD flopped)(ADVP(RB fast)))(. .))) (TOP (POS For) (POS the) (POS most) (POS part) (POS ,) (POS what) (POS 's) (POS made) (POS here) (POS stays) (POS here) (POS ,) (POS and) (POS for) (POS good) (POS reason) (POS .)) (TOP (POS The) (POS cream) (POS of) (POS the) (POS British) (POS crop) (POS ,) (POS the) (POS literary) (POS dramas) (POS that) (POS are) (POS shown) (POS on) (POS U.S.) (POS public) (POS television) (POS as) (POS ``) (POS Masterpiece) (POS Theater) (POS ,) (POS '') (POS make) (POS up) (POS a) (POS relatively) (POS small) (POS part) (POS of) (POS British) (POS air) (POS time) (POS .)) (TOP(S(NP(JJS Most)(JJ British)(NN programming))(VP(VBZ is)(ADJP(JJR more)(PP(IN of)(NP(DT an)(VBN acquired)(NN taste)))))(. .))) (TOP (POS There) (POS is) (POS ,) (POS for) (POS instance) (POS ,) (POS ``) (POS One) (POS Man) (POS and) (POS His) (POS Dog) (POS ,) (POS '') (POS a) (POS herding) (POS contest) (POS among) (POS sheep) (POS dogs) (POS .)) (TOP (POS Also) (POS riveting) (POS to) (POS the) (POS British) (POS are) (POS hours) (POS of) (POS dart-throwing) (POS championships) (POS ,) (POS even) (POS more) (POS hours) (POS of) (POS lawn) (POS bowling) (POS contests) (POS and) (POS still) (POS more) (POS hours) (POS of) (POS snooker) (POS marathons) (POS .)) (TOP(S(NP(JJ European)(NN drama))(VP(VBZ has)(VP(VBD had)(ADVP(RB better))(, ,)(PP(IN though)(NP(ADJP(RB still)(JJ mixed)(, ,))(NNS fortunes)))))(. .))) (TOP(S(NP(DT The)(ADJP(RBS most)(JJ popular))(JJ such)(NNS shows))(VP(VB focus)(PP(IN on)(NP(JJ narrow)(JJ national)(NNS concerns))))(. .))) (TOP (POS A) (POS French) (POS knock-off) (POS of) (POS ``) (POS Dallas) (POS ,) (POS '') (POS called) (POS ``) (POS Chateauvallon) (POS '') (POS and) (POS set) (POS in) (POS a) (POS French) (POS vineyard) (POS ,) (POS had) (POS a) (POS good) (POS run) (POS in) (POS France) (POS ,) (POS which) (POS ended) (POS after) (POS the) (POS female) (POS lead) (POS was) (POS injured) (POS in) (POS a) (POS real-life) (POS auto) (POS accident) (POS .)) (TOP (POS ``) (POS Schwarzwaldklinik) (POS ,) (POS '') (POS -LRB-) (POS Black) (POS Forest) (POS Clinic) (POS -RRB-) (POS ,) (POS a) (POS kind) (POS of) (POS German) (POS ``) (POS St) (POS .) (POS Elsewhere) (POS '') (POS set) (POS in) (POS a) (POS health) (POS spa) (POS ,) (POS is) (POS popular) (POS in) (POS Germany) (POS ,) (POS and) (POS has) (POS spread) (POS into) (POS France) (POS .)) (TOP (POS Italy) (POS 's) (POS most) (POS popular) (POS series) (POS is) (POS a) (POS drama) (POS called) (POS ``) (POS La) (POS Piovra) (POS ,) (POS '') (POS or) (POS ``) (POS The) (POS Octopus) (POS ,) (POS '') (POS which) (POS chronicles) (POS the) (POS fight) (POS of) (POS an) (POS idealistic) (POS young) (POS investigator) (POS in) (POS Palermo) (POS against) (POS the) (POS Mafia) (POS .)) (TOP (POS It) (POS was) (POS front-page) (POS news) (POS in) (POS Italy) (POS earlier) (POS this) (POS year) (POS when) (POS the) (POS fictional) (POS inspector) (POS was) (POS gunned) (POS down) (POS in) (POS the) (POS series) (POS .)) (TOP (POS Spain) (POS 's) (POS most) (POS popular) (POS mini-series) (POS this) (POS year) (POS was) (POS ``) (POS Juncal) (POS ,) (POS '') (POS the) (POS story) (POS of) (POS an) (POS aging) (POS bullfighter) (POS .)) (TOP (POS ``) (POS The) (POS trend) (POS is) (POS pretty) (POS well) (POS established) (POS now) (POS that) (POS local) (POS programs) (POS are) (POS the) (POS most) (POS popular) (POS ,) (POS with) (POS American) (POS programs) (POS second) (POS ,) (POS '') (POS says) (POS Brian) (POS Wenham) (POS ,) (POS a) (POS former) (POS director) (POS of) (POS programs) (POS for) (POS the) (POS British) (POS Broadcasting) (POS Corp) (POS .)) (TOP(SINV(`` ``)(VP(VBN Given)(NP(DT a)(NN choice)))(, ,)(S(NP(NN everybody))(VP(MD will)(VP(VB watch)(NP(DT a)(ADJP home-produced)(NN show)))))(. .)('' ''))) (TOP(S(CC But)(ADVP(RB frequently))(NP(EX there))(VP(VBZ is)(NP(RB n't)(JJ much)(NN choice)))(. .))) (TOP (POS Thus) (POS ,) (POS Europe) (POS has) (POS begun) (POS the) (POS recent) (POS crusade) (POS to) (POS produce) (POS more) (POS worthy) (POS shows) (POS of) (POS its) (POS own) (POS ,) (POS programs) (POS with) (POS broader) (POS appeal) (POS .)) (TOP (POS ``) (POS We) (POS 've) (POS basically) (POS got) (POS to) (POS start) (POS from) (POS scratch) (POS ,) (POS to) (POS train) (POS writers) (POS and) (POS producers) (POS to) (POS make) (POS shows) (POS that) (POS other) (POS people) (POS will) (POS want) (POS to) (POS see) (POS ,) (POS '') (POS concedes) (POS Colin) (POS Young) (POS ,) (POS head) (POS of) (POS Britain) (POS 's) (POS National) (POS Film) (POS Theatre) (POS School) (POS .)) (TOP (POS While) (POS some) (POS in) (POS the) (POS U.S.) (POS contend) (POS that) (POS advertising) (POS is) (POS the) (POS bane) (POS of) (POS television) (POS ,) (POS here) (POS many) (POS believe) (POS that) (POS its) (POS absence) (POS is) (POS to) (POS blame) (POS for) (POS the) (POS European) (POS TV) (POS industry) (POS 's) (POS sluggish) (POS development) (POS .)) (TOP (POS Until) (POS recently) (POS ,) (POS national) (POS governments) (POS in) (POS Europe) (POS controlled) (POS most) (POS of) (POS the) (POS air) (POS time) (POS and) (POS allowed) (POS little) (POS or) (POS no) (POS advertising) (POS .)) (TOP (POS Since) (POS production) (POS costs) (POS were) (POS guaranteed) (POS ,) (POS it) (POS did) (POS n't) (POS matter) (POS that) (POS a) (POS program) (POS could) (POS n't) (POS be) (POS sold) (POS abroad) (POS or) (POS put) (POS into) (POS syndication) (POS ,) (POS as) (POS most) (POS American) (POS programs) (POS are) (POS .)) (TOP (POS But) (POS not) (POS much) (POS money) (POS was) (POS spent) (POS on) (POS the) (POS shows) (POS ,) (POS either) (POS ,) (POS a) (POS situation) (POS that) (POS encouraged) (POS cheap-to-make) (POS talk) (POS and) (POS game) (POS shows) (POS ,) (POS while) (POS discouraging) (POS expensive-to-produce) (POS dramas) (POS .)) (TOP (POS Now) (POS ,) (POS however) (POS ,) (POS commercial) (POS channels) (POS are) (POS coming) (POS to) (POS most) (POS European) (POS countries) (POS ,) (POS and) (POS at) (POS the) (POS same) (POS time) (POS ,) (POS satellite) (POS and) (POS cable) (POS technology) (POS is) (POS spreading) (POS rapidly) (POS .)) (TOP (POS Just) (POS last) (POS week) (POS ,) (POS Greece) (POS authorized) (POS two) (POS commercial) (POS channels) (POS for) (POS the) (POS first) (POS time) (POS ;) (POS Spain) (POS earlier) (POS began) (POS to) (POS allow) (POS commercial) (POS television) (POS alongside) (POS its) (POS state) (POS channels) (POS .)) (TOP(S(NP(DT The)(NN result))(VP(VBZ is)(NP(DT a)(JJ new)(CC and)(JJ huge)(NN appetite))(PP(IN for)(NP(NN programming))))(. .))) (TOP (POS But) (POS perhaps) (POS to) (POS the) (POS consternation) (POS of) (POS those) (POS calling) (POS for) (POS quotas) (POS ,) (POS most) (POS of) (POS this) (POS void) (POS is) (POS likely) (POS to) (POS be) (POS filled) (POS with) (POS the) (POS cheapest) (POS and) (POS most) (POS plentiful) (POS programming) (POS now) (POS available) (POS --) (POS reruns) (POS --) (POS usually) (POS of) (POS shows) (POS made) (POS in) (POS the) (POS U.S.) (POS .)) (TOP (POS Sky) (POS Channel) (POS ,) (POS a) (POS British-based) (POS venture) (POS of) (POS Australian-American) (POS press) (POS tycoon) (POS Rupert) (POS Murdoch) (POS ,) (POS offers) (POS what) (POS must) (POS be) (POS a) (POS baffling) (POS cultural) (POS mix) (POS to) (POS most) (POS of) (POS its) (POS audience) (POS .)) (TOP (POS The) (POS financially) (POS struggling) (POS station) (POS offers) (POS programs) (POS obviously) (POS made) (POS available) (POS cheaply) (POS from) (POS its) (POS boss) (POS 's) (POS other) (POS ventures) (POS .)) (TOP (POS In) (POS a) (POS Madrid) (POS hotel) (POS room) (POS recently) (POS ,) (POS a) (POS viewer) (POS caught) (POS the) (POS end) (POS of) (POS a) (POS badly) (POS acted) (POS series) (POS about) (POS a) (POS fishing) (POS boat) (POS on) (POS Australia) (POS 's) (POS Great) (POS Barrier) (POS Reef) (POS ,) (POS only) (POS to) (POS be) (POS urged) (POS by) (POS the) (POS British) (POS announcer) (POS to) (POS ``) (POS stay) (POS tuned) (POS for) (POS the) (POS further) (POS adventures) (POS of) (POS Skippy) (POS the) (POS Kangaroo) (POS .) (POS '')) (TOP (POS Lisa) (POS Grishaw-Mueller) (POS in) (POS Bonn) (POS ,) (POS Laura) (POS Colby) (POS in) (POS Milan) (POS ,) (POS Tim) (POS Carrington) (POS in) (POS London) (POS and) (POS Carlta) (POS Vitzhum) (POS in) (POS Madrid) (POS contributed) (POS to) (POS this) (POS article) (POS .)) (TOP (POS British) (POS Aerospace) (POS PLC) (POS and) (POS France) (POS 's) (POS Thomson-CSF) (POS S.A.) (POS said) (POS they) (POS are) (POS nearing) (POS an) (POS agreement) (POS to) (POS merge) (POS their) (POS guided-missile) (POS divisions) (POS ,) (POS greatly) (POS expanding) (POS collaboration) (POS between) (POS the) (POS two) (POS defense) (POS contractors) (POS .)) (TOP (POS The) (POS 50-50) (POS joint) (POS venture) (POS ,) (POS which) (POS may) (POS be) (POS dubbed) (POS Eurodynamics) (POS ,) (POS would) (POS have) (POS combined) (POS annual) (POS sales) (POS of) (POS at) (POS least) (POS #) (POS 1.4) (POS billion) (POS -LRB-) (POS $) (POS 2.17) (POS billion) (POS -RRB-) (POS and) (POS would) (POS be) (POS among) (POS the) (POS world) (POS 's) (POS largest) (POS missile) (POS makers) (POS .)) (TOP (POS After) (POS two) (POS years) (POS of) (POS talks) (POS ,) (POS plans) (POS for) (POS the) (POS venture) (POS are) (POS sufficiently) (POS advanced) (POS for) (POS the) (POS companies) (POS to) (POS seek) (POS French) (POS and) (POS British) (POS government) (POS clearance) (POS .)) (TOP(S(NP(DT The)(NNS companies))(VP(VBP hope)(PP(IN for)(NP(DT a)(JJ final)(NN agreement)))(PP(IN by)(NP(NN year-end))))(. .))) (TOP (POS The) (POS venture) (POS would) (POS strengthen) (POS the) (POS rapidly) (POS growing) (POS ties) (POS between) (POS the) (POS two) (POS companies) (POS ,) (POS and) (POS help) (POS make) (POS them) (POS a) (POS leading) (POS force) (POS in) (POS European) (POS defense) (POS contracting) (POS .)) (TOP (POS In) (POS recent) (POS months) (POS ,) (POS a) (POS string) (POS of) (POS cross-border) (POS mergers) (POS and) (POS joint) (POS ventures) (POS have) (POS reshaped) (POS the) (POS once-balkanized) (POS world) (POS of) (POS European) (POS arms) (POS manufacture) (POS .)) (TOP (POS Already) (POS ,) (POS British) (POS Aerospace) (POS and) (POS French) (POS government-controlled) (POS Thomson-CSF) (POS collaborate) (POS on) (POS a) (POS British) (POS missile) (POS contract) (POS and) (POS on) (POS an) (POS air-traffic) (POS control) (POS radar) (POS system) (POS .)) (TOP (POS Just) (POS last) (POS week) (POS they) (POS announced) (POS they) (POS may) (POS make) (POS a) (POS joint) (POS bid) (POS to) (POS buy) (POS Ferranti) (POS International) (POS Signal) (POS PLC) (POS ,) (POS a) (POS smaller) (POS British) (POS defense) (POS contractor) (POS rocked) (POS by) (POS alleged) (POS accounting) (POS fraud) (POS at) (POS a) (POS U.S.) (POS unit) (POS .)) (TOP (POS The) (POS sudden) (POS romance) (POS of) (POS British) (POS Aerospace) (POS and) (POS Thomson-CSF) (POS --) (POS traditionally) (POS bitter) (POS competitors) (POS for) (POS Middle) (POS East) (POS and) (POS Third) (POS World) (POS weapons) (POS contracts) (POS --) (POS is) (POS stirring) (POS controversy) (POS in) (POS Western) (POS Europe) (POS 's) (POS defense) (POS industry) (POS .)) (TOP (POS Most) (POS threatened) (POS by) (POS closer) (POS British) (POS Aerospace-Thomson) (POS ties) (POS would) (POS be) (POS their) (POS respective) (POS national) (POS rivals) (POS ,) (POS including) (POS Matra) (POS S.A.) (POS in) (POS France) (POS and) (POS Britain) (POS 's) (POS General) (POS Electric) (POS Co.) (POS PLC) (POS .)) (TOP (POS But) (POS neither) (POS Matra) (POS nor) (POS GEC) (POS --) (POS unrelated) (POS to) (POS Stamford) (POS ,) (POS Conn.-based) (POS General) (POS Electric) (POS Co.) (POS --) (POS are) (POS sitting) (POS quietly) (POS by) (POS as) (POS their) (POS competitors) (POS join) (POS forces) (POS .)) (TOP (POS Yesterday) (POS ,) (POS a) (POS source) (POS close) (POS to) (POS GEC) (POS confirmed) (POS that) (POS his) (POS company) (POS may) (POS join) (POS the) (POS Ferranti) (POS fight) (POS ,) (POS as) (POS part) (POS of) (POS a) (POS possible) (POS consortium) (POS that) (POS would) (POS bid) (POS against) (POS British) (POS Aerospace) (POS and) (POS Thomson-CSF) (POS .)) (TOP (POS Companies) (POS with) (POS which) (POS GEC) (POS has) (POS had) (POS talks) (POS about) (POS a) (POS possible) (POS joint) (POS Ferranti) (POS bid) (POS include) (POS Matra) (POS ,) (POS Britain) (POS 's) (POS Dowty) (POS Group) (POS PLC) (POS ,) (POS West) (POS Germany) (POS 's) (POS Daimler-Benz) (POS AG) (POS ,) (POS and) (POS France) (POS 's) (POS Dassault) (POS group) (POS .)) (TOP (POS But) (POS it) (POS may) (POS be) (POS weeks) (POS before) (POS GEC) (POS and) (POS its) (POS potential) (POS partners) (POS decide) (POS whether) (POS to) (POS bid) (POS ,) (POS the) (POS source) (POS indicated) (POS .)) (TOP (POS GEC) (POS plans) (POS first) (POS to) (POS study) (POS Ferranti) (POS 's) (POS financial) (POS accounts) (POS ,) (POS which) (POS auditors) (POS recently) (POS said) (POS included) (POS #) (POS 215) (POS million) (POS in) (POS fictitious) (POS contracts) (POS at) (POS a) (POS U.S.) (POS unit) (POS ,) (POS International) (POS Signal) (POS &) (POS Control) (POS Group) (POS ,) (POS with) (POS which) (POS Ferranti) (POS merged) (POS last) (POS year) (POS .)) (TOP (POS Also) (POS ,) (POS any) (POS GEC) (POS bid) (POS might) (POS be) (POS blocked) (POS by) (POS British) (POS antitrust) (POS regulators) (POS ;) (POS Ferranti) (POS is) (POS GEC) (POS 's) (POS main) (POS competitor) (POS on) (POS several) (POS key) (POS defense-electronics) (POS contracts) (POS ,) (POS and) (POS its) (POS purchase) (POS by) (POS GEC) (POS may) (POS heighten) (POS British) (POS Defense) (POS Ministry) (POS worries) (POS about) (POS concentration) (POS in) (POS the) (POS country) (POS 's) (POS defense) (POS industry) (POS .)) (TOP (POS A) (POS consortium) (POS bid) (POS ,) (POS however) (POS ,) (POS would) (POS diminish) (POS GEC) (POS 's) (POS direct) (POS role) (POS in) (POS Ferranti) (POS and) (POS might) (POS consequently) (POS appease) (POS ministry) (POS officials) (POS .)) (TOP (POS A) (POS British) (POS Aerospace) (POS spokeswoman) (POS appeared) (POS unperturbed) (POS by) (POS the) (POS prospect) (POS of) (POS a) (POS fight) (POS with) (POS GEC) (POS for) (POS Ferranti) (POS :) (POS ``) (POS Competition) (POS is) (POS the) (POS name) (POS of) (POS the) (POS game) (POS ,) (POS '') (POS she) (POS said) (POS .)) (TOP (POS At) (POS least) (POS one) (POS potential) (POS GEC) (POS partner) (POS ,) (POS Matra) (POS ,) (POS insists) (POS it) (POS is) (POS n't) (POS interested) (POS in) (POS Ferranti) (POS .)) (TOP (POS ``) (POS We) (POS have) (POS nothing) (POS to) (POS say) (POS about) (POS this) (POS affair) (POS ,) (POS which) (POS does) (POS n't) (POS concern) (POS us) (POS ,) (POS '') (POS a) (POS Matra) (POS official) (POS said) (POS Sunday) (POS .)) (TOP (POS The) (POS missile) (POS venture) (POS ,) (POS the) (POS British) (POS Aerospace) (POS spokeswoman) (POS said) (POS ,) (POS is) (POS a) (POS needed) (POS response) (POS to) (POS the) (POS ``) (POS new) (POS environment) (POS '') (POS in) (POS defense) (POS contracting) (POS .)) (TOP (POS For) (POS both) (POS Thomson) (POS and) (POS British) (POS Aerospace) (POS ,) (POS earnings) (POS in) (POS their) (POS home) (POS markets) (POS have) (POS come) (POS under) (POS pressure) (POS from) (POS increasingly) (POS tight-fisted) (POS defense) (POS ministries) (POS ;) (POS and) (POS Middle) (POS East) (POS sales) (POS ,) (POS a) (POS traditional) (POS mainstay) (POS for) (POS both) (POS companies) (POS ') (POS exports) (POS ,) (POS have) (POS been) (POS hurt) (POS by) (POS five) (POS years) (POS of) (POS weak) (POS oil) (POS prices) (POS .)) (TOP(S(NP(NP(NP(DT The)(NN venture)(POS 's))(NN importance))(PP(IN for)(NP(NNP Thomson))))(VP(VBZ is)(ADJP(JJ great)))(. .))) (TOP (POS Thomson) (POS feels) (POS the) (POS future) (POS of) (POS its) (POS defense) (POS business) (POS depends) (POS on) (POS building) (POS cooperation) (POS with) (POS other) (POS Europeans) (POS .)) (TOP (POS The) (POS European) (POS defense) (POS industry) (POS is) (POS consolidating) (POS ;) (POS for) (POS instance) (POS ,) (POS West) (POS Germany) (POS 's) (POS Siemens) (POS AG) (POS recently) (POS joined) (POS GEC) (POS in) (POS a) (POS takeover) (POS of) (POS Britain) (POS 's) (POS Plessey) (POS Co.) (POS ,) (POS and) (POS Daimler-Benz) (POS agreed) (POS to) (POS buy) (POS Messerschmitt-Boelkow) (POS Blohm) (POS G.m.b) (POS .) (POS H) (POS .)) (TOP (POS In) (POS missiles) (POS ,) (POS Thomson) (POS is) (POS already) (POS overshadowed) (POS by) (POS British) (POS Aerospace) (POS and) (POS by) (POS its) (POS home) (POS rival) (POS ,) (POS France) (POS 's) (POS Aerospatiale) (POS S.A.) (POS ;) (POS to) (POS better) (POS compete) (POS ,) (POS Thomson) (POS officials) (POS say) (POS ,) (POS they) (POS need) (POS a) (POS partnership) (POS .)) (TOP (POS To) (POS justify) (POS 50-50) (POS ownership) (POS of) (POS the) (POS planned) (POS venture) (POS ,) (POS Thomson) (POS would) (POS make) (POS a) (POS cash) (POS payment) (POS to) (POS British) (POS Aerospace) (POS .)) (TOP (POS Annual) (POS revenue) (POS of) (POS British) (POS Aerospace) (POS 's) (POS missile) (POS business) (POS is) (POS about) (POS #) (POS 950) (POS million) (POS ,) (POS a) (POS Thomson) (POS spokesman) (POS said) (POS .)) (TOP(S(NP(NP(JJ British)(NNP Aerospace)(POS 's))(JJ chief)(NN missile)(NNS products))(VP(VBP include)(NP(PRP$ its)(JJ 17-year-old)(NN family))(PP(IN of)(NP(NNP(N Rapier))(ADJP surface-to-air)(NNS missiles))))(. .))) (TOP (POS Thomson) (POS missile) (POS products) (POS ,) (POS with) (POS about) (POS half) (POS British) (POS Aerospace) (POS 's) (POS annual) (POS revenue) (POS ,) (POS include) (POS the) (POS Crotale) (POS surface-to-air) (POS missile) (POS family) (POS .)) (TOP (POS Interprovincial) (POS Pipe) (POS Line) (POS Co.) (POS said) (POS it) (POS will) (POS delay) (POS a) (POS proposed) (POS two-step) (POS ,) (POS 830) (POS million) (POS Canadian-dollar) (POS -LRB-) (POS US$) (POS 705.6) (POS million) (POS -RRB-) (POS expansion) (POS of) (POS its) (POS system) (POS because) (POS Canada) (POS 's) (POS output) (POS of) (POS crude) (POS oil) (POS is) (POS shrinking) (POS .)) (TOP (POS Interprovincial) (POS ,) (POS Canada) (POS 's) (POS biggest) (POS oil) (POS pipeline) (POS operator) (POS and) (POS a) (POS major) (POS transporter) (POS of) (POS crude) (POS to) (POS the) (POS U.S.) (POS ,) (POS said) (POS revised) (POS industry) (POS forecasts) (POS indicate) (POS that) (POS Canadian) (POS oil) (POS output) (POS will) (POS total) (POS about) (POS 1.64) (POS million) (POS barrels) (POS a) (POS day) (POS by) (POS 1991) (POS ,) (POS 8) (POS %) (POS lower) (POS than) (POS a) (POS previous) (POS estimate) (POS .)) (TOP (POS Canadian) (POS crude) (POS production) (POS averaged) (POS about) (POS 1.69) (POS million) (POS barrels) (POS a) (POS day) (POS during) (POS 1989) (POS 's) (POS first) (POS half) (POS ,) (POS about) (POS 1) (POS %) (POS below) (POS the) (POS 1988) (POS level) (POS .)) (TOP (POS ``) (POS The) (POS capability) (POS of) (POS existing) (POS fields) (POS to) (POS deliver) (POS oil) (POS is) (POS dropping) (POS ,) (POS '') (POS and) (POS oil) (POS exploration) (POS activity) (POS is) (POS also) (POS down) (POS dramatically) (POS ,) (POS as) (POS many) (POS producers) (POS shift) (POS their) (POS emphasis) (POS to) (POS natural) (POS gas) (POS ,) (POS said) (POS Ronald) (POS Watkins) (POS ,) (POS vice) (POS president) (POS for) (POS government) (POS and) (POS industry) (POS relations) (POS with) (POS Interprovincial) (POS 's) (POS parent) (POS ,) (POS Interhome) (POS Energy) (POS Inc) (POS .)) (TOP (POS Mr.) (POS Watkins) (POS said) (POS volume) (POS on) (POS Interprovincial) (POS 's) (POS system) (POS is) (POS down) (POS about) (POS 2) (POS %) (POS since) (POS January) (POS and) (POS is) (POS expected) (POS to) (POS fall) (POS further) (POS ,) (POS making) (POS expansion) (POS unnecessary) (POS until) (POS perhaps) (POS the) (POS mid-1990s) (POS .)) (TOP (POS ``) (POS There) (POS has) (POS been) (POS a) (POS swing) (POS of) (POS the) (POS pendulum) (POS back) (POS to) (POS the) (POS gas) (POS side) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS Many) (POS of) (POS Canada) (POS 's) (POS oil) (POS and) (POS gas) (POS producers) (POS say) (POS the) (POS outlook) (POS for) (POS natural) (POS gas) (POS is) (POS better) (POS than) (POS it) (POS is) (POS for) (POS oil) (POS ,) (POS and) (POS have) (POS shifted) (POS their) (POS exploration) (POS and) (POS development) (POS budgets) (POS accordingly) (POS .)) (TOP (POS The) (POS number) (POS of) (POS active) (POS drilling) (POS rigs) (POS in) (POS Canada) (POS is) (POS down) (POS 30) (POS %) (POS from) (POS a) (POS year) (POS ago) (POS ,) (POS and) (POS the) (POS number) (POS of) (POS completed) (POS oil) (POS wells) (POS is) (POS ``) (POS down) (POS more) (POS than) (POS that) (POS ,) (POS due) (POS to) (POS the) (POS increasing) (POS focus) (POS on) (POS gas) (POS exploration) (POS ,) (POS '') (POS said) (POS Robert) (POS Feick) (POS ,) (POS manager) (POS of) (POS crude) (POS oil) (POS with) (POS Calgary) (POS 's) (POS Independent) (POS Petroleum) (POS Association) (POS of) (POS Canada) (POS ,) (POS an) (POS industry) (POS group) (POS .)) (TOP (POS Mr.) (POS Watkins) (POS said) (POS the) (POS main) (POS reason) (POS for) (POS the) (POS production) (POS decline) (POS is) (POS shrinking) (POS output) (POS of) (POS light) (POS crude) (POS from) (POS mature) (POS ,) (POS conventional) (POS fields) (POS in) (POS western) (POS Canada) (POS .)) (TOP (POS Interprovincial) (POS transports) (POS about) (POS 75) (POS %) (POS of) (POS all) (POS crude) (POS produced) (POS in) (POS western) (POS Canada) (POS ,) (POS and) (POS almost) (POS 60) (POS %) (POS of) (POS Interprovincial) (POS 's) (POS total) (POS volume) (POS consists) (POS of) (POS light) (POS crude) (POS .)) (TOP (POS Nearly) (POS all) (POS of) (POS the) (POS crude) (POS oil) (POS that) (POS Canada) (POS exports) (POS to) (POS the) (POS U.S.) (POS is) (POS transported) (POS on) (POS Interprovincial) (POS 's) (POS system) (POS ,) (POS whose) (POS main) (POS line) (POS runs) (POS from) (POS Edmonton) (POS to) (POS major) (POS U.S.) (POS and) (POS Canadian) (POS cities) (POS in) (POS the) (POS Great) (POS Lakes) (POS region) (POS ,) (POS including) (POS Chicago) (POS ,) (POS Buffalo) (POS ,) (POS Toronto) (POS and) (POS Montreal) (POS .)) (TOP (POS Canada) (POS 's) (POS current) (POS oil) (POS exports) (POS to) (POS the) (POS U.S.) (POS total) (POS about) (POS 600,000) (POS barrels) (POS a) (POS day) (POS ,) (POS or) (POS about) (POS 9.1) (POS %) (POS of) (POS net) (POS U.S.) (POS crude) (POS imports) (POS ,) (POS said) (POS John) (POS Lichtblau) (POS ,) (POS president) (POS of) (POS the) (POS New) (POS York-based) (POS Petroleum) (POS Industry) (POS Research) (POS Foundation) (POS .)) (TOP (POS That) (POS ranks) (POS Canada) (POS as) (POS the) (POS fourth-largest) (POS source) (POS of) (POS imported) (POS crude) (POS ,) (POS behind) (POS Saudi) (POS Arabia) (POS ,) (POS Nigeria) (POS and) (POS Mexico) (POS .)) (TOP (POS Mr.) (POS Lichtblau) (POS said) (POS Canada) (POS 's) (POS declining) (POS crude) (POS output) (POS ,) (POS combined) (POS with) (POS the) (POS fast-shrinking) (POS output) (POS of) (POS U.S.) (POS crude) (POS ,) (POS will) (POS help) (POS intensify) (POS U.S.) (POS reliance) (POS on) (POS oil) (POS from) (POS overseas) (POS ,) (POS particularly) (POS the) (POS Middle) (POS East) (POS .)) (TOP(SINV(`` ``)(S(NP(PRP It))(VP(VBZ 's)(ADJP(RB very)(JJ much))))(NP(DT a)(VBG growing)(NN concern))(. .))) (TOP (POS But) (POS when) (POS something) (POS is) (POS inevitable) (POS ,) (POS you) (POS learn) (POS to) (POS live) (POS with) (POS it) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS Mr.) (POS Lichtblau) (POS stressed) (POS that) (POS the) (POS delay) (POS of) (POS Interprovincial) (POS 's) (POS proposed) (POS expansion) (POS wo) (POS n't) (POS by) (POS itself) (POS increase) (POS U.S.) (POS dependence) (POS on) (POS offshore) (POS crude) (POS ,) (POS however) (POS ,) (POS since) (POS Canadian) (POS imports) (POS are) (POS limited) (POS in) (POS any) (POS case) (POS by) (POS Canada) (POS 's) (POS falling) (POS output) (POS .)) (TOP (POS Under) (POS terms) (POS of) (POS its) (POS proposed) (POS two-step) (POS expansion) (POS ,) (POS which) (POS would) (POS have) (POS required) (POS regulatory) (POS approval) (POS ,) (POS Interprovincial) (POS intended) (POS to) (POS add) (POS 200,000) (POS barrels) (POS a) (POS day) (POS of) (POS additional) (POS capacity) (POS to) (POS its) (POS system) (POS ,) (POS beginning) (POS with) (POS a) (POS modest) (POS expansion) (POS by) (POS 1991) (POS .)) (TOP(S(NP(DT The)(NN system))(ADVP(RB currently))(VP(VBZ has)(NP(NP(DT a)(NN capacity))(PP(IN of)(NP(QP(CD 1.55)(CD million))(NNS barrels))))(NP(DT a)(NN day)))(. .))) (TOP (POS Inland) (POS Steel) (POS Industries) (POS Inc.) (POS expects) (POS to) (POS report) (POS that) (POS third-quarter) (POS earnings) (POS dropped) (POS more) (POS than) (POS 50) (POS %) (POS from) (POS the) (POS previous) (POS quarter) (POS as) (POS a) (POS result) (POS of) (POS reduced) (POS sales) (POS volume) (POS and) (POS increased) (POS costs) (POS .)) (TOP (POS In) (POS the) (POS second) (POS quarter) (POS ,) (POS the) (POS steelmaker) (POS had) (POS net) (POS income) (POS of) (POS $) (POS 45.3) (POS million) (POS or) (POS $) (POS 1.25) (POS a) (POS share) (POS ,) (POS including) (POS a) (POS pretax) (POS charge) (POS of) (POS $) (POS 17) (POS million) (POS related) (POS to) (POS the) (POS settlement) (POS of) (POS a) (POS suit) (POS ,) (POS on) (POS sales) (POS of) (POS $) (POS 1.11) (POS billion) (POS .)) (TOP (POS The) (POS company) (POS said) (POS normal) (POS seasonal) (POS softness) (POS and) (POS lost) (POS orders) (POS caused) (POS by) (POS prolonged) (POS labor) (POS talks) (POS reduced) (POS shipments) (POS by) (POS 200,000) (POS tons) (POS in) (POS the) (POS latest) (POS quarter) (POS ,) (POS compared) (POS with) (POS the) (POS second) (POS quarter) (POS .)) (TOP (POS At) (POS the) (POS same) (POS time) (POS ,) (POS the) (POS integrated-steel) (POS business) (POS was) (POS hurt) (POS by) (POS continued) (POS increases) (POS in) (POS materials) (POS costs) (POS and) (POS repair) (POS and) (POS maintenance) (POS expenses) (POS ,) (POS as) (POS well) (POS as) (POS higher) (POS labor) (POS costs) (POS under) (POS its) (POS new) (POS contract) (POS .)) (TOP (POS The) (POS service-center) (POS business) (POS was) (POS hurt) (POS by) (POS reduced) (POS margins) (POS and) (POS start-up) (POS costs) (POS associated) (POS with) (POS its) (POS Joseph) (POS T.) (POS Ryerson) (POS &) (POS Son) (POS unit) (POS .)) (TOP (POS The) (POS company) (POS said) (POS it) (POS is) (POS beginning) (POS to) (POS see) (POS some) (POS shipping-rate) (POS improvements) (POS in) (POS both) (POS the) (POS intergrated-steel) (POS and) (POS steel-service-center) (POS segments) (POS ,) (POS which) (POS should) (POS result) (POS in) (POS improved) (POS results) (POS for) (POS the) (POS fourth) (POS quarter) (POS .)) (TOP(S(NP(NNP Inland))(VP(VBD said)(SBAR(S(NP(PRP$ its)(JJ third-quarter)(NNS results))(VP(MD will)(VP(VB be)(VP(VBD announced)(ADVP(RB later))(NP(DT this)(NN week))))))))(. .))) (TOP (POS In) (POS the) (POS year-earlier) (POS third) (POS quarter) (POS ,) (POS when) (POS the) (POS industry) (POS was) (POS in) (POS the) (POS midst) (POS of) (POS a) (POS boom) (POS ,) (POS the) (POS company) (POS had) (POS net) (POS of) (POS $) (POS 61) (POS million) (POS ,) (POS or) (POS $) (POS 1.70) (POS a) (POS share) (POS ,) (POS on) (POS sales) (POS of) (POS $) (POS 1.02) (POS billion) (POS .)) (TOP(S(NP(NNP(N Predicting)))(NP(NP(DT the)(JJ financial)(NNS results))(PP(IN of)(NP(NN computer)(NNS firms))))(VP(VBZ has)(VP(VBN been)(NP(DT a)(JJ tough)(NN job))(ADVP(RB lately))))(. .))) (TOP (POS Take) (POS Microsoft) (POS Corp.) (POS ,) (POS the) (POS largest) (POS maker) (POS of) (POS personal) (POS computer) (POS software) (POS and) (POS generally) (POS considered) (POS an) (POS industry) (POS bellwether) (POS .)) (TOP (POS In) (POS July) (POS ,) (POS the) (POS company) (POS stunned) (POS Wall) (POS Street) (POS with) (POS the) (POS prediction) (POS that) (POS growth) (POS in) (POS the) (POS personal) (POS computer) (POS business) (POS overall) (POS would) (POS be) (POS only) (POS 10) (POS %) (POS in) (POS 1990) (POS ,) (POS a) (POS modest) (POS increase) (POS when) (POS compared) (POS with) (POS the) (POS sizzling) (POS expansion) (POS of) (POS years) (POS past) (POS .)) (TOP (POS Investors) (POS --) (POS taking) (POS this) (POS as) (POS a) (POS sign) (POS that) (POS a) (POS broad) (POS industry) (POS slump) (POS was) (POS in) (POS the) (POS offing) (POS --) (POS reacted) (POS by) (POS selling) (POS the) (POS company) (POS 's) (POS stock) (POS ,) (POS which) (POS lost) (POS $) (POS 3.25) (POS that) (POS day) (POS to) (POS close) (POS at) (POS $) (POS 52) (POS in) (POS national) (POS over-the-counter) (POS trading) (POS .)) (TOP(SBARQ(CC But)(WHNP(WDT that))(SQ(VP(VBD was)(NP(DT all)(PP(IN of)(NP(CD three)(NNS months)))(ADVP(RB ago)))))(. .))) (TOP (POS Last) (POS week) (POS ,) (POS Microsoft) (POS said) (POS it) (POS expects) (POS revenue) (POS for) (POS its) (POS first) (POS quarter) (POS ended) (POS Sept.) (POS 30) (POS to) (POS increase) (POS 34) (POS %) (POS .)) (TOP (POS The) (POS announcement) (POS caused) (POS the) (POS company) (POS 's) (POS stock) (POS to) (POS surge) (POS $) (POS 6.50) (POS to) (POS close) (POS at) (POS $) (POS 75.50) (POS a) (POS share) (POS .)) (TOP (POS Microsoft) (POS 's) (POS surprising) (POS strength) (POS is) (POS one) (POS example) (POS of) (POS the) (POS difficulty) (POS facing) (POS investors) (POS looking) (POS for) (POS reassurances) (POS about) (POS the) (POS financial) (POS health) (POS of) (POS the) (POS computer) (POS firms) (POS .)) (TOP (POS ``) (POS It) (POS 's) (POS hard) (POS to) (POS know) (POS what) (POS to) (POS expect) (POS at) (POS this) (POS point) (POS ,) (POS '') (POS said) (POS Peter) (POS Rogers) (POS ,) (POS an) (POS analyst) (POS at) (POS Robertson) (POS Stephens) (POS &) (POS Co) (POS .)) (TOP(S(`` ``)(NP(NP(DT The)(NN industry))(NNP(N defies))(NN characterization))(. .)('' ''))) (TOP (POS To) (POS illustrate) (POS ,) (POS Mr.) (POS Rogers) (POS said) (POS that) (POS of) (POS the) (POS 14) (POS computer-related) (POS firms) (POS he) (POS follows) (POS ,) (POS half) (POS will) (POS report) (POS for) (POS their) (POS most) (POS recent) (POS quarter) (POS earnings) (POS below) (POS last) (POS year) (POS 's) (POS results) (POS ,) (POS and) (POS half) (POS above) (POS those) (POS results) (POS .)) (TOP (POS Among) (POS those) (POS companies) (POS expected) (POS to) (POS have) (POS a) (POS down) (POS quarter) (POS are) (POS Hewlett-Packard) (POS Co.) (POS ,) (POS Amdahl) (POS Corp.) (POS and) (POS Sun) (POS Microsystems) (POS Inc.) (POS ,) (POS generally) (POS solid) (POS performers) (POS in) (POS the) (POS past) (POS .)) (TOP(S(NP(NP(NNP International)(NNP Business))(NNPS Machines)(NNP Corp.))(ADVP(RB also))(VP(VBZ is)(VP(VBN expected)(S(VP(TO to)(VP(VB report)(NP(JJ disappointing)(NNS results)))))))(. .))) (TOP (POS Apple) (POS Computer) (POS Inc.) (POS ,) (POS meanwhile) (POS ,) (POS is) (POS expected) (POS to) (POS show) (POS improved) (POS earnings) (POS for) (POS the) (POS period) (POS ended) (POS Sept) (POS .)) (TOP(S(NP(DT Another)(JJ contradictory)(NN message))(VP(VBZ comes)(PP(IN from)(NP(NP(NNP Businessland)(NNP Inc.))(, ,)(NP(DT a)(NN computer)(NN retailer)))))(. .))) (TOP (POS In) (POS July) (POS ,) (POS the) (POS company) (POS reported) (POS that) (POS booming) (POS sales) (POS of) (POS new) (POS personal) (POS computers) (POS from) (POS Apple) (POS and) (POS IBM) (POS had) (POS resulted) (POS in) (POS net) (POS income) (POS more) (POS than) (POS doubling) (POS for) (POS its) (POS fourth) (POS quarter) (POS ended) (POS June) (POS 30) (POS to) (POS $) (POS 7.4) (POS million) (POS ,) (POS or) (POS 23) (POS cents) (POS a) (POS share) (POS .)) (TOP (POS This) (POS month) (POS ,) (POS however) (POS ,) (POS Businessland) (POS warned) (POS investors) (POS that) (POS results) (POS for) (POS its) (POS first) (POS quarter) (POS ended) (POS Sept.) (POS 30) (POS had) (POS n't) (POS met) (POS expectations) (POS .)) (TOP (POS The) (POS company) (POS said) (POS it) (POS expects) (POS earnings) (POS of) (POS 14) (POS to) (POS 17) (POS cents) (POS a) (POS share) (POS ,) (POS down) (POS from) (POS 25) (POS cents) (POS a) (POS share) (POS in) (POS the) (POS year-earlier) (POS period) (POS .)) (TOP (POS While) (POS the) (POS earnings) (POS picture) (POS confuses) (POS ,) (POS observers) (POS say) (POS the) (POS major) (POS forces) (POS expected) (POS to) (POS shape) (POS the) (POS industry) (POS in) (POS the) (POS coming) (POS year) (POS are) (POS clearer) (POS .)) (TOP(S(NP(NNS Companies))(VP(MD will)(VP(VB continue)(PP(TO to)(NP(NN war)))(PP(IN over)(NP(NNS standards)))))(. .))) (TOP (POS In) (POS computer) (POS publishing) (POS ,) (POS a) (POS battle) (POS over) (POS typefaces) (POS is) (POS hurting) (POS Adobe) (POS Systems) (POS Inc.) (POS ,) (POS which) (POS sells) (POS software) (POS that) (POS controls) (POS the) (POS image) (POS produced) (POS by) (POS printers) (POS and) (POS displays) (POS .)) (TOP (POS Until) (POS recently) (POS ,) (POS Adobe) (POS had) (POS a) (POS lock) (POS on) (POS the) (POS market) (POS for) (POS image) (POS software) (POS ,) (POS but) (POS last) (POS month) (POS Apple) (POS ,) (POS Adobe) (POS 's) (POS biggest) (POS customer) (POS ,) (POS and) (POS Microsoft) (POS rebelled) (POS .)) (TOP (POS Now) (POS the) (POS two) (POS firms) (POS are) (POS collaborating) (POS on) (POS an) (POS alternative) (POS to) (POS Adobe) (POS 's) (POS approach) (POS ,) (POS and) (POS analysts) (POS say) (POS they) (POS are) (POS likely) (POS to) (POS carry) (POS IBM) (POS ,) (POS the) (POS biggest) (POS seller) (POS of) (POS personal) (POS computers) (POS ,) (POS along) (POS with) (POS them) (POS .)) (TOP(S(NP(NP(NP(DT The)(JJ short-term)(NN outlook))(PP(IN for)(NP(NNP Adobe)(POS 's))))(NN business))(, ,)(ADVP(RB however))(, ,)(VP(VBZ appears)(ADJP(JJ strong)))(. .))) (TOP (POS The) (POS company) (POS is) (POS beginning) (POS to) (POS ship) (POS a) (POS new) (POS software) (POS program) (POS that) (POS 's) (POS being) (POS heralded) (POS as) (POS a) (POS boon) (POS for) (POS owners) (POS of) (POS low-end) (POS printers) (POS sold) (POS by) (POS Apple) (POS .)) (TOP(S(NP(DT The)(NN program))(VP(VBZ is)(VP(VBN aimed)(PP(IN at)(S(VP(VBG improving)(NP(DT the)(NN quality))(PP(IN of)(NP(VBN printed)(NN material))))))))(. .))) (TOP (POS John) (POS Warnock) (POS ,) (POS Adobe) (POS 's) (POS chief) (POS executive) (POS officer) (POS ,) (POS said) (POS the) (POS Mountain) (POS View) (POS ,) (POS Calif.) (POS ,) (POS company) (POS has) (POS been) (POS receiving) (POS 1,000) (POS calls) (POS a) (POS day) (POS about) (POS the) (POS product) (POS since) (POS it) (POS was) (POS demonstrated) (POS at) (POS a) (POS computer) (POS publishing) (POS conference) (POS several) (POS weeks) (POS ago) (POS .)) (TOP (POS Meanwhile) (POS ,) (POS competition) (POS between) (POS various) (POS operating) (POS systems) (POS ,) (POS which) (POS control) (POS the) (POS basic) (POS functions) (POS of) (POS a) (POS computer) (POS ,) (POS spells) (POS trouble) (POS for) (POS software) (POS firms) (POS generally) (POS .)) (TOP (POS ``) (POS It) (POS creates) (POS uncertainty) (POS and) (POS usually) (POS slows) (POS down) (POS sales) (POS ,) (POS '') (POS said) (POS Russ) (POS Crabs) (POS ,) (POS an) (POS analyst) (POS at) (POS Soundview) (POS Financial) (POS Group) (POS .)) (TOP (POS Mr.) (POS Crabs) (POS said) (POS this) (POS probably) (POS is) (POS behind) (POS the) (POS expected) (POS weak) (POS performance) (POS of) (POS Aldus) (POS Corp.) (POS ,) (POS maker) (POS of) (POS a) (POS widely) (POS used) (POS computer) (POS publishing) (POS program) (POS .)) (TOP (POS He) (POS expects) (POS Aldus) (POS to) (POS report) (POS earnings) (POS of) (POS 21) (POS cents) (POS a) (POS share) (POS on) (POS revenues) (POS of) (POS $) (POS 19.5) (POS million) (POS for) (POS its) (POS third) (POS quarter) (POS ,) (POS compared) (POS with) (POS earnings) (POS of) (POS 30) (POS cents) (POS a) (POS share) (POS on) (POS revenue) (POS of) (POS 20.4) (POS million) (POS in) (POS the) (POS year-earlier) (POS period) (POS .)) (TOP(S(NP(NNP Aldus)(NNS officials))(VP(MD could)(RB n't)(VP(VB be)(VP(VBN reached)(PP(IN for)(NP(NN comment))))))(. .))) (TOP (POS On) (POS the) (POS other) (POS hand) (POS ,) (POS the) (POS battle) (POS of) (POS the) (POS bus) (POS is) (POS expected) (POS to) (POS grow) (POS increasingly) (POS irrelevant) (POS .)) (TOP(S(NP(DT A)(NN bus))(VP(VBZ is)(NP(DT the)(NN data)(NN highway))(PP(IN within)(NP(DT a)(NN computer))))(. .))) (TOP (POS IBM) (POS is) (POS backing) (POS one) (POS type) (POS of) (POS bus) (POS called) (POS microchannel) (POS ,) (POS while) (POS the) (POS nine) (POS other) (POS leading) (POS computer) (POS makers) (POS ,) (POS including) (POS H-P) (POS and) (POS Compaq) (POS Computer) (POS Corp.) (POS ,) (POS have) (POS chosen) (POS another) (POS method) (POS .)) (TOP (POS ``) (POS Users) (POS do) (POS n't) (POS care) (POS about) (POS the) (POS bus) (POS ,) (POS '') (POS said) (POS Daniel) (POS Benton) (POS ,) (POS an) (POS analyst) (POS at) (POS Goldman) (POS ,) (POS Sachs) (POS &) (POS Co) (POS .)) (TOP (POS He) (POS said) (POS Apple) (POS 's) (POS family) (POS of) (POS Macintosh) (POS computers) (POS ,) (POS for) (POS instance) (POS ,) (POS uses) (POS four) (POS different) (POS buses) (POS ``) (POS and) (POS no) (POS one) (POS seems) (POS to) (POS mind) (POS .) (POS '')) (TOP(S(NP(NP(NP(DT The)(NN gap))(PP(IN between)(NP(NNS winners))))(CC and)(NNP(N laggards)))(VP(MD will)(VP(VB grow)))(. .))) (TOP (POS In) (POS personal) (POS computers) (POS ,) (POS Apple) (POS ,) (POS Compaq) (POS and) (POS IBM) (POS are) (POS expected) (POS to) (POS tighten) (POS their) (POS hold) (POS on) (POS their) (POS business) (POS .)) (TOP(S(PP(IN At)(NP(DT the)(JJ same)(NN time)))(, ,)(NP(ADJP second-tier)(NNS firms))(VP(MD will)(VP(VB continue)(S(VP(TO to)(VP(VB lose)(NP(NN ground)))))))(. .))) (TOP(S(NP(DT Some)(JJ lagging)(NNS competitors))(ADVP(RB even))(VP(MD may)(VP(VB leave)(NP(DT the)(JJ personal)(NN computer)(NN business))(ADVP(RB altogether))))(. .))) (TOP (POS Wyse) (POS Technology) (POS ,) (POS for) (POS instance) (POS ,) (POS is) (POS considered) (POS a) (POS candidate) (POS to) (POS sell) (POS its) (POS troubled) (POS operation) (POS .)) (TOP (POS ``) (POS Wyse) (POS has) (POS done) (POS well) (POS establishing) (POS a) (POS distribution) (POS business) (POS ,) (POS but) (POS they) (POS have) (POS n't) (POS delivered) (POS products) (POS that) (POS sell) (POS ,) (POS '') (POS said) (POS Kimball) (POS Brown) (POS ,) (POS an) (POS analyst) (POS at) (POS Prudential-Bache) (POS Securities) (POS .)) (TOP (POS Mr.) (POS Brown) (POS estimates) (POS Wyse) (POS ,) (POS whose) (POS terminals) (POS business) (POS is) (POS strong) (POS ,) (POS will) (POS report) (POS a) (POS loss) (POS of) (POS 12) (POS cents) (POS a) (POS share) (POS for) (POS its) (POS quarter) (POS ended) (POS Sept) (POS .)) (TOP (POS Personal-computer) (POS makers) (POS will) (POS continue) (POS to) (POS eat) (POS away) (POS at) (POS the) (POS business) (POS of) (POS more) (POS traditional) (POS computer) (POS firms) (POS .)) (TOP (POS Ever-more) (POS powerful) (POS desk-top) (POS computers) (POS ,) (POS designed) (POS with) (POS one) (POS or) (POS more) (POS microprocessors) (POS as) (POS their) (POS ``) (POS brains) (POS ,) (POS '') (POS are) (POS expected) (POS to) (POS increasingly) (POS take) (POS on) (POS functions) (POS carried) (POS out) (POS by) (POS more) (POS expensive) (POS minicomputers) (POS and) (POS mainframes) (POS .)) (TOP (POS ``) (POS The) (POS guys) (POS that) (POS make) (POS traditional) (POS hardware) (POS are) (POS really) (POS being) (POS obsoleted) (POS by) (POS microprocessor-based) (POS machines) (POS ,) (POS '') (POS said) (POS Mr.) (POS Benton) (POS .)) (TOP (POS As) (POS a) (POS result) (POS of) (POS this) (POS trend) (POS ,) (POS longtime) (POS powerhouses) (POS H-P) (POS ,) (POS IBM) (POS and) (POS Digital) (POS Equipment) (POS Corp.) (POS are) (POS scrambling) (POS to) (POS counterattack) (POS with) (POS microprocessor-based) (POS systems) (POS of) (POS their) (POS own) (POS .)) (TOP(S(CC But)(NP(PRP they))(VP(MD will)(VP(VBP have)(S(VP(TO to)(VP(VB act)(ADVP(RB quickly)))))))(. .))) (TOP (POS Mr.) (POS Benton) (POS expects) (POS Compaq) (POS to) (POS unveil) (POS a) (POS family) (POS of) (POS high-end) (POS personal) (POS computers) (POS later) (POS this) (POS year) (POS that) (POS are) (POS powerful) (POS enough) (POS to) (POS serve) (POS as) (POS the) (POS hub) (POS for) (POS communications) (POS within) (POS large) (POS networks) (POS of) (POS desk-top) (POS machines) (POS .)) (TOP(S(NP(NP(DT A)(NN raft))(PP(IN of)(NP(JJ new)(NN computer)(NNS companies))))(ADVP(RB also))(VP(VBZ has)(VP(VBN targeted)(NP(DT this)(`` ``)(NNP(N server))('' '')(NN market))))(. .))) (TOP(NP(NP(NNP Population)(NNP Drain)(NNPS Ends))(PP(IN For)(NP(JJ Midwestern)(NNPS States))))) (TOP(S(NP(NNP IOWA))(VP(VBZ IS)(NP(NNP MAKING)(DT a)(NN comeback)))(. .))) (TOP(S(ADVP(RB So))(VP(VBP are)(NP(NNP Indiana)(, ,)(NNP Ohio)(CC and)(NNP Michigan)))(. .))) (TOP (POS The) (POS population) (POS of) (POS all) (POS four) (POS states) (POS is) (POS on) (POS the) (POS upswing) (POS ,) (POS according) (POS to) (POS new) (POS Census) (POS Bureau) (POS estimates) (POS ,) (POS following) (POS declines) (POS throughout) (POS the) (POS early) (POS 1980s) (POS .)) (TOP(S(NP(DT The)(NNS gains))(, ,)(S(VP(TO to)(VP(VB be)(ADJP(JJ sure)))))(, ,)(VP(VBP are)(ADJP(RB rather)(JJ small)))(. .))) (TOP (POS Iowa) (POS ,) (POS for) (POS instance) (POS ,) (POS saw) (POS its) (POS population) (POS grow) (POS by) (POS 11,000) (POS people) (POS ,) (POS or) (POS 0.4) (POS %) (POS ,) (POS between) (POS 1987) (POS and) (POS 1988) (POS ,) (POS the) (POS Census) (POS Bureau) (POS says) (POS .)) (TOP (POS Still) (POS ,) (POS even) (POS that) (POS modest) (POS increase) (POS is) (POS good) (POS news) (POS for) (POS a) (POS state) (POS that) (POS had) (POS n't) (POS grown) (POS at) (POS all) (POS since) (POS 1981) (POS .)) (TOP (POS Between) (POS 1987) (POS and) (POS 1988) (POS ,) (POS North) (POS Dakota) (POS was) (POS the) (POS only) (POS state) (POS in) (POS the) (POS Midwest) (POS to) (POS lose) (POS population) (POS ,) (POS a) (POS loss) (POS of) (POS 4,000) (POS people) (POS .)) (TOP (POS Six) (POS of) (POS the) (POS 12) (POS midwestern) (POS states) (POS have) (POS been) (POS growing) (POS steadily) (POS since) (POS 1980) (POS --) (POS Illinois) (POS ,) (POS Kansas) (POS ,) (POS Minnesota) (POS ,) (POS Missouri) (POS ,) (POS South) (POS Dakota) (POS and) (POS Wisconsin) (POS .)) (TOP(S(NP(DT The)(NN Northeast))(VP(VBZ has)(VP(VBN been)(S(VP(VBG holding)(NP(PRP$ its)(ADJP(JJ own)(PP(IN in)(NP(DT the)(NN population))))(NN race))))))(. .))) (TOP (POS Seven) (POS of) (POS nine) (POS states) (POS have) (POS grown) (POS each) (POS year) (POS since) (POS 1980) (POS ,) (POS including) (POS New) (POS York) (POS ,) (POS which) (POS lost) (POS 4) (POS %) (POS of) (POS its) (POS population) (POS during) (POS the) (POS 1970s) (POS .)) (TOP (POS And) (POS although) (POS Pennsylvania) (POS and) (POS Massachusetts) (POS suffered) (POS slight) (POS declines) (POS earlier) (POS in) (POS the) (POS decade) (POS ,) (POS they) (POS are) (POS growing) (POS again) (POS .)) (TOP (POS At) (POS the) (POS same) (POS time) (POS ,) (POS several) (POS states) (POS in) (POS the) (POS South) (POS and) (POS West) (POS have) (POS had) (POS their) (POS own) (POS population) (POS turnaround) (POS .)) (TOP (POS Seven) (POS states) (POS that) (POS grew) (POS in) (POS the) (POS early) (POS 1980s) (POS are) (POS now) (POS losing) (POS population) (POS --) (POS West) (POS Virginia) (POS ,) (POS Mississippi) (POS ,) (POS Louisiana) (POS ,) (POS Oklahoma) (POS ,) (POS Montana) (POS ,) (POS Wyoming) (POS and) (POS Alaska) (POS .)) (TOP (POS Overall) (POS ,) (POS though) (POS ,) (POS the) (POS South) (POS and) (POS West) (POS still) (POS outpace) (POS the) (POS Northeast) (POS and) (POS Midwest) (POS ,) (POS and) (POS fast-growing) (POS states) (POS like) (POS Florida) (POS and) (POS California) (POS ensure) (POS that) (POS the) (POS pattern) (POS will) (POS continue) (POS .)) (TOP (POS But) (POS the) (POS growth) (POS gap) (POS between) (POS the) (POS Sun) (POS Belt) (POS and) (POS other) (POS regions) (POS has) (POS clearly) (POS started) (POS narrowing) (POS .)) (TOP (POS More) (POS Elderly) (POS Maintain) (POS Their) (POS Independence)) (TOP(S(NP(NP(NP(NNP THANKS))(PP TO))(JJ modern)(NN medicine))(, ,)(NP(JJR more)(NNS couples))(VP(VBP are)(VP(VBG growing)(ADJP(JJ old))(ADVP(RB together))))(. .))) (TOP(S(CC And)(ADVP(RB even)(PP(IN after)(S(VP(VBG losing)(NP(DT a)(NN spouse))))))(, ,)(ADVP(RBR more)(PP(IN of)(NP(DT the)(JJ elderly))))(VP(VBP are)(VP(VBG staying)(ADJP(JJ independent))))(. .))) (TOP (POS A) (POS new) (POS Census) (POS Bureau) (POS study) (POS of) (POS the) (POS noninstitutionalized) (POS population) (POS shows) (POS that) (POS 64) (POS %) (POS of) (POS people) (POS aged) (POS 65) (POS to) (POS 74) (POS were) (POS living) (POS with) (POS a) (POS spouse) (POS in) (POS 1988) (POS ,) (POS up) (POS from) (POS 59) (POS %) (POS in) (POS 1970) (POS .)) (TOP(S(S(NP(DT This))(VP(VBZ does)(RB n't)(VP(VB mean)(NP(PRP they)))))(VP(VBP 're)(ADJP(RBR less)(JJ likely))(S(VP(TO to)(VP(VB live)(ADVP(RB alone))(, ,)(ADVP(RB however))))))(. .))) (TOP(S(NP(DT That)(NN share))(VP(VBZ has)(VP(VBD remained)(PP(IN at)(NP(QP(RB about)(CD 24))(NN %)))(PP(IN since)(NP(CD 1970)))))(. .))) (TOP (POS What) (POS has) (POS changed) (POS is) (POS that) (POS more) (POS of) (POS the) (POS young) (POS elderly) (POS are) (POS living) (POS with) (POS spouses) (POS rather) (POS than) (POS with) (POS other) (POS relatives) (POS ,) (POS such) (POS as) (POS children) (POS .)) (TOP (POS In) (POS 1988) (POS ,) (POS 10) (POS %) (POS of) (POS those) (POS aged) (POS 65) (POS to) (POS 74) (POS lived) (POS with) (POS relatives) (POS other) (POS than) (POS spouses) (POS ,) (POS down) (POS from) (POS 15) (POS %) (POS in) (POS 1970) (POS .)) (TOP(S(SBAR(IN As)(S(NP(NNS people))(VP(VB get)(ADJP(ADJP(RB even)(JJR older))(, ,)(JJ many)))))(VP(VB become)(VP(VBN widowed)))(. .))) (TOP (POS But) (POS even) (POS among) (POS those) (POS aged) (POS 75) (POS and) (POS older) (POS ,) (POS the) (POS share) (POS living) (POS with) (POS a) (POS spouse) (POS rose) (POS slightly) (POS ,) (POS to) (POS 40) (POS %) (POS in) (POS 1988) (POS from) (POS 38) (POS %) (POS in) (POS 1970) (POS .)) (TOP (POS Like) (POS their) (POS younger) (POS counterparts) (POS ,) (POS the) (POS older) (POS elderly) (POS are) (POS less) (POS likely) (POS to) (POS live) (POS with) (POS other) (POS relatives) (POS .)) (TOP (POS Only) (POS 17) (POS %) (POS of) (POS those) (POS aged) (POS 75) (POS and) (POS older) (POS lived) (POS with) (POS relatives) (POS other) (POS than) (POS spouses) (POS in) (POS 1988) (POS ,) (POS down) (POS from) (POS 26) (POS %) (POS in) (POS 1970) (POS .)) (TOP (POS The) (POS likelihood) (POS of) (POS living) (POS alone) (POS beyond) (POS the) (POS age) (POS of) (POS 75) (POS has) (POS increased) (POS to) (POS 40) (POS %) (POS from) (POS 32) (POS %) (POS .)) (TOP (POS More) (POS people) (POS are) (POS remaining) (POS independent) (POS longer) (POS presumably) (POS because) (POS they) (POS are) (POS better) (POS off) (POS physically) (POS and) (POS financially) (POS .)) (TOP(S(NP(NNP(N Careers))(NNP(N Count)))(ADJP(JJS Most)(PP(IN For)(NP(DT the)(ADJP Well-to-Do)))))) (TOP(S(NP(NNP MANY)(NNP AFFLUENT))(NP(NNS people))(VP(VB place)(NP(NP(JJ personal)(NN success))(CC and)(NN money))(PP(IN above)(NP(NN family))))(. .))) (TOP (POS At) (POS least) (POS that) (POS 's) (POS what) (POS a) (POS survey) (POS by) (POS Ernst) (POS &) (POS Young) (POS and) (POS Yankelovich) (POS ,) (POS Clancy) (POS ,) (POS Shulman) (POS indicates) (POS .)) (TOP (POS Two-thirds) (POS of) (POS respondents) (POS said) (POS they) (POS strongly) (POS felt) (POS the) (POS need) (POS to) (POS be) (POS successful) (POS in) (POS their) (POS jobs) (POS ,) (POS while) (POS fewer) (POS than) (POS half) (POS said) (POS they) (POS strongly) (POS felt) (POS the) (POS need) (POS to) (POS spend) (POS more) (POS time) (POS with) (POS their) (POS families) (POS .)) (TOP (POS Being) (POS successful) (POS in) (POS careers) (POS and) (POS spending) (POS the) (POS money) (POS they) (POS make) (POS are) (POS top) (POS priorities) (POS for) (POS this) (POS group) (POS .)) (TOP(S(PP(IN Unlike)(NP(NP(JJS most)(NNS studies))(PP(IN of)(NP(DT the)(JJ affluent)(NN market)))))(, ,)(NP(DT this)(NN survey))(VP(VBN excluded)(NP(DT the)(ADJP super-rich)))(. .))) (TOP (POS Average) (POS household) (POS income) (POS for) (POS the) (POS sample) (POS was) (POS $) (POS 194,000) (POS ,) (POS and) (POS average) (POS net) (POS assets) (POS were) (POS reported) (POS as) (POS $) (POS 775,000) (POS .)) (TOP (POS The) (POS goal) (POS was) (POS to) (POS learn) (POS about) (POS one) (POS of) (POS today) (POS 's) (POS fastest-growing) (POS income) (POS groups) (POS ,) (POS the) (POS upper-middle) (POS class) (POS .)) (TOP (POS Although) (POS they) (POS represent) (POS only) (POS 2) (POS %) (POS of) (POS the) (POS population) (POS ,) (POS they) (POS control) (POS nearly) (POS one-third) (POS of) (POS discretionary) (POS income) (POS .)) (TOP (POS Across) (POS the) (POS board) (POS ,) (POS these) (POS consumers) (POS value) (POS quality) (POS ,) (POS buy) (POS what) (POS they) (POS like) (POS rather) (POS than) (POS just) (POS what) (POS they) (POS need) (POS ,) (POS and) (POS appreciate) (POS products) (POS that) (POS are) (POS distinctive) (POS .)) (TOP (POS Despite) (POS their) (POS considerable) (POS incomes) (POS and) (POS assets) (POS ,) (POS 40) (POS %) (POS of) (POS the) (POS respondents) (POS in) (POS the) (POS study) (POS do) (POS n't) (POS feel) (POS financially) (POS secure) (POS ,) (POS and) (POS one-fourth) (POS do) (POS n't) (POS feel) (POS that) (POS they) (POS have) (POS made) (POS it) (POS .)) (TOP(S(NP(CD Twenty)(NN percent))(VP(VBP do)(ADVP(RB n't)(RB even))(VP(VBP feel)(SBAR(S(NP(PRP they))(VP(VBP are)(ADVP(RB financially))(ADVP(RB well)(RB off)))))))(. .))) (TOP(S(PP(JJ Many)(IN of)(NP(DT the)(JJ affluent)))(VP(VBP are)(ADJP(RB n't)(JJ comfortable))(PP(IN with)(NP(PRP themselves)))(, ,)(ADVP(RB either)))(. .))) (TOP(S(PP(IN About)(NP(CD 40)(NN %)))(VP(VBP do)(RB n't)(VP(VBP feel)(SBAR(S(NP(PRP they))(VP(VBP 're)(ADJP(RBR more)(JJ able))(PP(IN than)(NP(NNS others))))))))(. .))) (TOP (POS While) (POS twothirds) (POS feel) (POS some) (POS guilt) (POS about) (POS being) (POS affluent) (POS ,) (POS only) (POS 25) (POS %) (POS give) (POS $) (POS 2,500) (POS or) (POS more) (POS to) (POS charity) (POS each) (POS year) (POS .)) (TOP (POS Thirty-five) (POS percent) (POS attend) (POS religious) (POS services) (POS regularly) (POS ;) (POS at) (POS the) (POS same) (POS time) (POS ,) (POS 60) (POS %) (POS feel) (POS that) (POS in) (POS life) (POS one) (POS sometimes) (POS has) (POS to) (POS compromise) (POS one) (POS 's) (POS principles) (POS .)) (TOP(NP(NP(NNS Odds))(CC and)(NNS Ends))) (TOP (POS THE) (POS NUMBER) (POS of) (POS women) (POS and) (POS minorities) (POS who) (POS hold) (POS jobs) (POS in) (POS top) (POS management) (POS in) (POS the) (POS nation) (POS 's) (POS largest) (POS banks) (POS has) (POS more) (POS than) (POS doubled) (POS since) (POS 1978) (POS .)) (TOP (POS The) (POS American) (POS Bankers) (POS Association) (POS says) (POS that) (POS women) (POS make) (POS up) (POS 47) (POS %) (POS of) (POS officials) (POS and) (POS managers) (POS in) (POS the) (POS top) (POS 50) (POS banks) (POS ,) (POS up) (POS from) (POS 33) (POS %) (POS in) (POS 1978) (POS .)) (TOP (POS The) (POS share) (POS of) (POS minorities) (POS in) (POS those) (POS positions) (POS has) (POS risen) (POS to) (POS 16) (POS %) (POS from) (POS 12) (POS %) (POS ...) (POS .)) (TOP (POS Per-capita) (POS personal) (POS income) (POS in) (POS the) (POS U.S.) (POS grew) (POS faster) (POS than) (POS inflation) (POS last) (POS year) (POS ,) (POS according) (POS to) (POS the) (POS Bureau) (POS of) (POS Economic) (POS Analysis) (POS .)) (TOP (POS The) (POS amount) (POS of) (POS income) (POS divvied) (POS up) (POS for) (POS each) (POS man) (POS ,) (POS woman) (POS and) (POS child) (POS was) (POS $) (POS 16,489) (POS in) (POS 1988) (POS ,) (POS up) (POS 6.6) (POS %) (POS from) (POS $) (POS 15,472) (POS in) (POS 1987) (POS .)) (TOP (POS Per) (POS capita) (POS personal) (POS income) (POS ranged) (POS from) (POS $) (POS 11,116) (POS in) (POS Mississippi) (POS to) (POS $) (POS 23,059) (POS in) (POS Connecticut) (POS ...) (POS .)) (TOP (POS There) (POS are) (POS 13.1) (POS million) (POS students) (POS in) (POS college) (POS this) (POS fall) (POS ,) (POS up) (POS 2) (POS %) (POS from) (POS 1988) (POS ,) (POS the) (POS National) (POS Center) (POS for) (POS Education) (POS Statistics) (POS estimates) (POS .)) (TOP(S(PP(IN About)(NP(CD 54)(NN %)))(VP(VBP are)(SBAR(S(NP(NP(NNS women))(, ,)(CC and)(NP(CD 44)(NN %)))(VP(VBP are)(NP(JJ part-time)(NNS students))))))(. .))) (TOP(S(NP(DT This)(JJ small)(NNP Dallas)(NN suburb)(POS 's))(VP(VBD got)(NP(NN trouble)))(. .))) (TOP (POS Trouble) (POS with) (POS a) (POS capital) (POS T) (POS and) (POS that) (POS rhymes) (POS with) (POS P) (POS and) (POS that) (POS stands) (POS for) (POS pool) (POS .)) (TOP (POS More) (POS than) (POS 30) (POS years) (POS ago) (POS ,) (POS Prof.) (POS Harold) (POS Hill) (POS ,) (POS the) (POS con) (POS man) (POS in) (POS Meredith) (POS Willson) (POS 's) (POS ``) (POS The) (POS Music) (POS Man) (POS ,) (POS '') (POS warned) (POS the) (POS citizens) (POS of) (POS River) (POS City) (POS ,) (POS Iowa) (POS ,) (POS against) (POS the) (POS game) (POS .)) (TOP (POS Now) (POS kindred) (POS spirits) (POS on) (POS Addison) (POS 's) (POS town) (POS council) (POS have) (POS barred) (POS the) (POS town) (POS 's) (POS fanciest) (POS hotel) (POS ,) (POS the) (POS Grand) (POS Kempinski) (POS ,) (POS from) (POS installing) (POS three) (POS free) (POS pool) (POS tables) (POS in) (POS its) (POS new) (POS lounge) (POS .)) (TOP (POS Mayor) (POS Lynn) (POS Spruill) (POS and) (POS two) (POS members) (POS of) (POS the) (POS council) (POS said) (POS they) (POS were) (POS worried) (POS about) (POS setting) (POS a) (POS precedent) (POS that) (POS would) (POS permit) (POS pool) (POS halls) (POS along) (POS Addison) (POS 's) (POS main) (POS street) (POS .)) (TOP (POS And) (POS the) (POS mayor) (POS ,) (POS in) (POS an) (POS admonition) (POS that) (POS bears) (POS a) (POS rhythmic) (POS resemblance) (POS to) (POS Prof.) (POS Hill) (POS 's) (POS ,) (POS warned) (POS that) (POS ``) (POS alcohol) (POS leads) (POS to) (POS betting) (POS ,) (POS which) (POS leads) (POS to) (POS fights) (POS .) (POS '')) (TOP (POS The) (POS council) (POS 's) (POS action) (POS is) (POS yet) (POS another) (POS blow) (POS to) (POS a) (POS sport) (POS that) (POS its) (POS fans) (POS claim) (POS has) (POS been) (POS maligned) (POS unjustly) (POS for) (POS years) (POS .)) (TOP (POS ``) (POS Obviously) (POS they) (POS 're) (POS not) (POS in) (POS touch) (POS with) (POS what) (POS 's) (POS going) (POS on) (POS ,) (POS '') (POS says) (POS Tom) (POS Manske) (POS ,) (POS vice) (POS president) (POS of) (POS the) (POS National) (POS Pocket) (POS Billiards) (POS Association) (POS .)) (TOP (POS Pool) (POS is) (POS hot) (POS in) (POS New) (POS York) (POS and) (POS Chicago) (POS ,) (POS he) (POS insists) (POS ,) (POS where) (POS ``) (POS upscale) (POS ,) (POS suit-and-tie) (POS places) (POS '') (POS are) (POS adding) (POS tables) (POS .)) (TOP (POS With) (POS today) (POS 's) (POS tougher) (POS drunk) (POS driving) (POS laws) (POS ,) (POS he) (POS adds) (POS ,) (POS ``) (POS people) (POS do) (POS n't) (POS want) (POS to) (POS just) (POS sit) (POS around) (POS and) (POS drink) (POS .) (POS '')) (TOP (POS Besides) (POS ,) (POS rowdy) (POS behavior) (POS seems) (POS unlikely) (POS at) (POS the) (POS Grand) (POS Kempinski) (POS ,) (POS where) (POS rooms) (POS average) (POS $) (POS 200) (POS a) (POS night) (POS and) (POS the) (POS cheap) (POS mixed) (POS drinks) (POS go) (POS for) (POS $) (POS 3.50) (POS a) (POS pop) (POS .)) (TOP (POS At) (POS the) (POS lounge) (POS ,) (POS manager) (POS Elizabeth) (POS Dyer) (POS wo) (POS n't) (POS admit) (POS patrons) (POS in) (POS jeans) (POS ,) (POS T-shirts) (POS or) (POS tennis) (POS shoes) (POS .)) (TOP(S(CC But)(NP(NP(DT a)(NN majority))(PP(IN of)(NP(DT the)(NNP Addison)(NN council))))(VP(VBD did)(RB n't)(VP(VB buy)(NP(DT those)(NNS arguments))))(. .))) (TOP(S(NP(NNP(N Introducing))(NN pool))(, ,)(VP(VBD argued)(SBAR(S(NP(NNP Councilwoman)(NP(NNP Riley)(NNP(N Reinker)))(, ,))(VP(MD would)(VP(VB be)(`` ``)(ADJP(JJ dangerous)))))))(. .))) (TOP(S(S(NP(PRP It))(VP(MD would)(VP(VB open)(NP(DT a)(NN can))(PP(IN of)(NP(NNS worms))))))(. .)('' ''))) (TOP(S(NP(NNP Addison))(VP(VBZ is)(NP(NP(DT no)(NN stranger))(PP(TO to)(NP(NP(NNS cans))(PP(IN of)(NP(NNS worms))))))(, ,)(ADVP(RB either)))(. .))) (TOP (POS After) (POS its) (POS previous) (POS mayor) (POS committed) (POS suicide) (POS last) (POS year) (POS ,) (POS an) (POS investigation) (POS disclosed) (POS that) (POS town) (POS officials) (POS regularly) (POS voted) (POS on) (POS their) (POS own) (POS projects) (POS ,) (POS gave) (POS special) (POS favors) (POS to) (POS developer) (POS friends) (POS and) (POS dipped) (POS into) (POS the) (POS town) (POS 's) (POS coffers) (POS for) (POS trips) (POS and) (POS retreats) (POS .)) (TOP (POS The) (POS revelations) (POS embarrassed) (POS town) (POS officials) (POS ,) (POS although) (POS they) (POS argued) (POS that) (POS the) (POS problems) (POS were) (POS n't) (POS as) (POS severe) (POS as) (POS the) (POS media) (POS suggested) (POS .)) (TOP(S(ADVP(RB Now))(VP(VBZ comes)(NP(DT the)(NN pool)(NN flap)))(. .))) (TOP (POS ``) (POS I) (POS think) (POS there) (POS 's) (POS some) (POS people) (POS worried) (POS about) (POS something) (POS pretty) (POS ridiculous) (POS ,) (POS '') (POS Councilman) (POS John) (POS Nolan) (POS says) (POS .)) (TOP(S(`` ``)(NP(PRP I))(VP(VBD thought)(SBAR(S(NP(DT this))(VP(VBD was)(NP(DT all)(VBN taken)(NN care))(PP(IN of)(IN in)(`` `)(NP(DT The)(NNP Music)(NNP Man)))))))(. .))) (TOP (POS The) (POS only) (POS thing) (POS Robert) (POS Goldberg) (POS could) (POS praise) (POS about) (POS CBS) (POS 's) (POS new) (POS show) (POS ``) (POS Island) (POS Son) (POS '') (POS -LRB-) (POS Leisure) (POS &) (POS Arts) (POS ,) (POS Sept.) (POS 25) (POS -RRB-) (POS was) (POS the) (POS local) (POS color) (POS ;) (POS unfortunately) (POS neither) (POS he) (POS nor) (POS the) (POS producers) (POS of) (POS the) (POS show) (POS have) (POS done) (POS their) (POS homework) (POS .)) (TOP (POS For) (POS instance) (POS :) (POS ``) (POS Haole) (POS '') (POS -LRB-) (POS white) (POS -RRB-) (POS is) (POS not) (POS the) (POS ultimate) (POS insult) (POS ;) (POS ``) (POS Mainland) (POS haole) (POS '') (POS is) (POS .)) (TOP (POS Richard) (POS Chamberlain) (POS dresses) (POS as) (POS a) (POS ``) (POS Mainland) (POS haole) (POS ,) (POS '') (POS tucking) (POS in) (POS a) (POS Hawaiian) (POS shirt) (POS and) (POS rolling) (POS up) (POS its) (POS long) (POS sleeves) (POS .)) (TOP (POS And) (POS the) (POS local) (POS expression) (POS for) (POS brother) (POS is) (POS ``) (POS brah) (POS ,) (POS '') (POS not) (POS ``) (POS bruddah) (POS .) (POS '')) (TOP (POS And) (POS even) (POS if) (POS a) (POS nurse) (POS would) (POS wear) (POS flowers) (POS in) (POS her) (POS hair) (POS while) (POS on) (POS duty) (POS ,) (POS if) (POS she) (POS were) (POS engaged) (POS she) (POS would) (POS know) (POS to) (POS wear) (POS them) (POS behind) (POS her) (POS left) (POS ,) (POS not) (POS right) (POS ,) (POS ear) (POS .)) (TOP (POS Sorry) (POS ,) (POS the) (POS show) (POS does) (POS not) (POS even) (POS have) (POS the) (POS one) (POS redeeming) (POS quality) (POS of) (POS genuine) (POS local) (POS color) (POS .)) (TOP(NP(NNP Anita)(NNP Davis))) (TOP (POS Of) (POS all) (POS the) (POS ethnic) (POS tensions) (POS in) (POS America) (POS ,) (POS which) (POS is) (POS the) (POS most) (POS troublesome) (POS right) (POS now) (POS ?)) (TOP (POS A) (POS good) (POS bet) (POS would) (POS be) (POS the) (POS tension) (POS between) (POS blacks) (POS and) (POS Jews) (POS in) (POS New) (POS York) (POS City) (POS .)) (TOP (POS Or) (POS so) (POS it) (POS must) (POS seem) (POS to) (POS Jackie) (POS Mason) (POS ,) (POS the) (POS veteran) (POS Jewish) (POS comedian) (POS appearing) (POS in) (POS a) (POS new) (POS ABC) (POS sitcom) (POS airing) (POS on) (POS Tuesday) (POS nights) (POS -LRB-) (POS 9:30-10) (POS p.m.) (POS EDT) (POS -RRB-) (POS .)) (TOP (POS Not) (POS only) (POS is) (POS Mr.) (POS Mason) (POS the) (POS star) (POS of) (POS ``) (POS Chicken) (POS Soup) (POS ,) (POS '') (POS he) (POS 's) (POS also) (POS the) (POS inheritor) (POS of) (POS a) (POS comedic) (POS tradition) (POS dating) (POS back) (POS to) (POS ``) (POS Duck) (POS Soup) (POS ,) (POS '') (POS and) (POS he) (POS 's) (POS currently) (POS a) (POS man) (POS in) (POS hot) (POS water) (POS .)) (TOP (POS Here) (POS ,) (POS in) (POS neutral) (POS language) (POS ,) (POS is) (POS the) (POS gist) (POS of) (POS Mr.) (POS Mason) (POS 's) (POS remarks) (POS ,) (POS quoted) (POS first) (POS in) (POS the) (POS Village) (POS Voice) (POS while) (POS he) (POS was) (POS a) (POS paid) (POS spokesman) (POS for) (POS the) (POS Rudolph) (POS Giuliani) (POS mayoral) (POS campaign) (POS ,) (POS and) (POS then) (POS in) (POS Newsweek) (POS after) (POS he) (POS and) (POS the) (POS campaign) (POS parted) (POS company) (POS .)) (TOP (POS Mr.) (POS Mason) (POS said) (POS that) (POS many) (POS Jewish) (POS voters) (POS feel) (POS guilty) (POS toward) (POS blacks) (POS ,) (POS so) (POS they) (POS support) (POS black) (POS candidates) (POS uncritically) (POS .)) (TOP (POS He) (POS said) (POS that) (POS many) (POS black) (POS voters) (POS feel) (POS bitter) (POS about) (POS racial) (POS discrimination) (POS ,) (POS so) (POS they) (POS ,) (POS too) (POS ,) (POS support) (POS black) (POS candidates) (POS uncritically) (POS .)) (TOP (POS He) (POS said) (POS that) (POS Jews) (POS have) (POS contributed) (POS more) (POS to) (POS black) (POS causes) (POS over) (POS the) (POS years) (POS than) (POS vice) (POS versa) (POS .)) (TOP(S(PP(IN Of)(NP(NN course)))(, ,)(NP(NNP Mr.)(NNP Mason))(VP(VBD did)(RB not)(VP(VB use)(NP(JJ neutral)(NN language))))(. .))) (TOP (POS As) (POS a) (POS practitioner) (POS of) (POS ethnic) (POS humor) (POS from) (POS the) (POS old) (POS days) (POS on) (POS the) (POS Borscht) (POS Belt) (POS ,) (POS live) (POS television) (POS and) (POS the) (POS nightclub) (POS circuit) (POS ,) (POS Mr.) (POS Mason) (POS instinctively) (POS reached) (POS for) (POS the) (POS vernacular) (POS .)) (TOP (POS He) (POS said) (POS Jews) (POS were) (POS ``) (POS sick) (POS with) (POS complexes) (POS '') (POS ;) (POS and) (POS he) (POS called) (POS David) (POS Dinkins) (POS ,) (POS Mr.) (POS Giuliani) (POS 's) (POS black) (POS opponent) (POS ,) (POS ``) (POS a) (POS fancy) (POS shvartze) (POS with) (POS a) (POS mustache) (POS .) (POS '')) (TOP (POS If) (POS Mr.) (POS Mason) (POS had) (POS used) (POS less) (POS derogatory) (POS language) (POS to) (POS articulate) (POS his) (POS amateur) (POS analysis) (POS of) (POS the) (POS voting) (POS behavior) (POS of) (POS his) (POS fellow) (POS New) (POS Yorkers) (POS ,) (POS would) (POS the) (POS water) (POS be) (POS quite) (POS so) (POS hot) (POS ?)) (TOP (POS It) (POS probably) (POS would) (POS ,) (POS because) (POS few) (POS or) (POS none) (POS of) (POS the) (POS people) (POS upset) (POS by) (POS Mr.) (POS Mason) (POS 's) (POS remarks) (POS have) (POS bothered) (POS to) (POS distinguish) (POS between) (POS the) (POS substance) (POS of) (POS his) (POS comments) (POS and) (POS the) (POS fact) (POS that) (POS he) (POS used) (POS insulting) (POS language) (POS .)) (TOP (POS In) (POS addition) (POS ,) (POS some) (POS of) (POS Mr.) (POS Mason) (POS 's) (POS critics) (POS have) (POS implied) (POS that) (POS his) (POS type) (POS of) (POS ethnic) (POS humor) (POS is) (POS itself) (POS a) (POS form) (POS of) (POS racism) (POS .)) (TOP (POS For) (POS example) (POS ,) (POS the) (POS New) (POS York) (POS state) (POS counsel) (POS for) (POS the) (POS NAACP) (POS said) (POS that) (POS Mr.) (POS Mason) (POS is) (POS ``) (POS like) (POS a) (POS dinosaur) (POS .)) (TOP(S(S(NP(NNS People))(VP(VBP are)(RB fast)(VP(VBG leaving)(NP(DT the)(NN place))(SBAR(WHADVP(WRB where))(S(NP(PRP he))(VP(VBZ is)(VP(VBN stuck))))))))(. .)('' ''))) (TOP (POS These) (POS critics) (POS fail) (POS to) (POS distinguish) (POS between) (POS the) (POS type) (POS of) (POS ethnic) (POS humor) (POS that) (POS aims) (POS at) (POS disparaging) (POS another) (POS group) (POS ,) (POS such) (POS as) (POS ``) (POS Polish) (POS jokes) (POS '') (POS ;) (POS and) (POS the) (POS type) (POS that) (POS is) (POS double-edged) (POS ,) (POS aiming) (POS inward) (POS as) (POS well) (POS as) (POS outward) (POS .)) (TOP (POS The) (POS latter) (POS typically) (POS is) (POS the) (POS humor) (POS of) (POS the) (POS underdog) (POS ,) (POS and) (POS it) (POS was) (POS perfected) (POS by) (POS both) (POS blacks) (POS and) (POS Jews) (POS on) (POS the) (POS minstrel) (POS and) (POS vaudeville) (POS stage) (POS as) (POS a) (POS means) (POS of) (POS mocking) (POS their) (POS white) (POS and) (POS gentile) (POS audiences) (POS along) (POS with) (POS themselves) (POS .)) (TOP (POS In) (POS the) (POS hands) (POS of) (POS a) (POS zealot) (POS like) (POS Lenny) (POS Bruce) (POS ,) (POS this) (POS double-edged) (POS blade) (POS could) (POS cut) (POS both) (POS the) (POS self) (POS and) (POS the) (POS audience) (POS to) (POS ribbons) (POS .)) (TOP (POS But) (POS wielded) (POS by) (POS a) (POS pro) (POS like) (POS Jackie) (POS Mason) (POS ,) (POS it) (POS is) (POS a) (POS constructive) (POS form) (POS of) (POS mischief) (POS .)) (TOP(FRAG(WHADVP(WRB Why))(ADJP(JJ constructive))(. ?))) (TOP (POS Because) (POS despite) (POS all) (POS the) (POS media) (POS prattle) (POS about) (POS comedy) (POS and) (POS politics) (POS not) (POS mixing) (POS ,) (POS they) (POS are) (POS similar) (POS in) (POS one) (POS respect) (POS :) (POS Both) (POS can) (POS serve) (POS as) (POS mechanisms) (POS for) (POS easing) (POS tensions) (POS and) (POS facilitating) (POS the) (POS co-existence) (POS of) (POS groups) (POS in) (POS conflict) (POS .)) (TOP (POS That) (POS 's) (POS why) (POS it) (POS 's) (POS dangerous) (POS to) (POS have) (POS well-intentioned) (POS thought) (POS police) (POS ,) (POS on) (POS college) (POS campuses) (POS and) (POS elsewhere) (POS ,) (POS taboo) (POS all) (POS critical) (POS mention) (POS of) (POS group) (POS differences) (POS .)) (TOP (POS As) (POS Elizabeth) (POS Kristol) (POS wrote) (POS in) (POS the) (POS New) (POS York) (POS Times) (POS just) (POS before) (POS the) (POS Mason) (POS donnybrook) (POS ,) (POS ``) (POS Perhaps) (POS intolerance) (POS would) (POS not) (POS boil) (POS over) (POS with) (POS such) (POS intensity) (POS if) (POS honest) (POS differences) (POS were) (POS allowed) (POS to) (POS simmer) (POS .) (POS '')) (TOP (POS The) (POS question) (POS is) (POS ,) (POS if) (POS group) (POS conflicts) (POS still) (POS exist) (POS -LRB-) (POS as) (POS undeniably) (POS they) (POS do) (POS -RRB-) (POS ,) (POS and) (POS if) (POS Mr.) (POS Mason) (POS 's) (POS type) (POS of) (POS ethnic) (POS humor) (POS is) (POS passe) (POS ,) (POS then) (POS what) (POS other) (POS means) (POS do) (POS we) (POS have) (POS for) (POS letting) (POS off) (POS steam) (POS ?)) (TOP (POS Do) (POS n't) (POS say) (POS the) (POS TV) (POS sitcom) (POS ,) (POS because) (POS that) (POS happens) (POS to) (POS be) (POS a) (POS genre) (POS that) (POS ,) (POS in) (POS its) (POS desperate) (POS need) (POS to) (POS attract) (POS everybody) (POS and) (POS offend) (POS nobody) (POS ,) (POS resembles) (POS politics) (POS more) (POS than) (POS it) (POS does) (POS comedy) (POS .)) (TOP (POS It) (POS is) (POS true) (POS that) (POS the) (POS best) (POS sitcoms) (POS do) (POS allow) (POS group) (POS differences) (POS to) (POS simmer) (POS :) (POS yuppies) (POS vs.) (POS blue-collar) (POS Bostonians) (POS in) (POS ``) (POS Cheers) (POS '') (POS ;) (POS children) (POS vs.) (POS adults) (POS in) (POS ``) (POS The) (POS Cosby) (POS Show) (POS .) (POS '')) (TOP(S(CC But)(NP(DT these))(VP(VBP are)(ADVP(RB not))(NP(DT the)(NNS differences))(SBAR(WHNP(WDT that))(S(VP(VB make)(NP(NNS headlines))))))(. .))) (TOP (POS In) (POS ``) (POS Chicken) (POS Soup) (POS ,) (POS '') (POS Mr.) (POS Mason) (POS plays) (POS Jackie) (POS ,) (POS a) (POS Jewish) (POS bachelor) (POS courting) (POS Maddie) (POS -LRB-) (POS Lynn) (POS Redgrave) (POS -RRB-) (POS ,) (POS an) (POS Irish) (POS widow) (POS and) (POS mother) (POS of) (POS three) (POS ,) (POS against) (POS the) (POS wishes) (POS of) (POS his) (POS mother) (POS -LRB-) (POS Rita) (POS Karin) (POS -RRB-) (POS and) (POS her) (POS brother) (POS Michael) (POS -LRB-) (POS Brandon) (POS Maggart) (POS -RRB-) (POS .)) (TOP(S(NP(PRP It))(VP(VBZ 's)(ADJP(JJ worth)(S(VP(VBG noting)(SBAR(IN that)(S(NP(DT both)(NNP(N disapproving))(NNS relatives))(VP(VBP are)(NP(NNS immigrants)))(. .))))))))) (TOP (POS At) (POS least) (POS ,) (POS they) (POS both) (POS speak) (POS with) (POS strong) (POS accents) (POS ,) (POS as) (POS do) (POS Jackie) (POS and) (POS Maddie) (POS .)) (TOP (POS It) (POS could) (POS n't) (POS be) (POS more) (POS obvious) (POS that) (POS ``) (POS Chicken) (POS Soup) (POS '') (POS is) (POS being) (POS made) (POS from) (POS an) (POS old) (POS recipe) (POS .)) (TOP (POS And) (POS a) (POS safe) (POS one) (POS --) (POS imagine) (POS if) (POS the) (POS romance) (POS in) (POS question) (POS were) (POS between) (POS an) (POS Orthodox) (POS Jew) (POS and) (POS a) (POS member) (POS of) (POS the) (POS Nation) (POS of) (POS Islam) (POS .)) (TOP (POS Back) (POS in) (POS the) (POS 1920s) (POS ,) (POS the) (POS play) (POS and) (POS movie) (POS versions) (POS of) (POS ``) (POS Abie) (POS 's) (POS Irish) (POS Rose) (POS '') (POS made) (POS the) (POS theme) (POS of) (POS courtship) (POS between) (POS the) (POS assimilated) (POS offspring) (POS of) (POS Jewish) (POS and) (POS Irish) (POS immigrants) (POS so) (POS popular) (POS that) (POS its) (POS author) (POS ,) (POS Anne) (POS Nichols) (POS ,) (POS lost) (POS a) (POS plagiarism) (POS suit) (POS on) (POS the) (POS grounds) (POS that) (POS the) (POS plot) (POS has) (POS entered) (POS the) (POS public) (POS domain) (POS .)) (TOP (POS And) (POS it) (POS has) (POS remained) (POS there) (POS ,) (POS as) (POS evidenced) (POS by) (POS its) (POS reappearance) (POS in) (POS a) (POS 1972) (POS CBS) (POS sitcom) (POS called) (POS ``) (POS Bridget) (POS Loves) (POS Bernie) (POS ,) (POS '') (POS whose) (POS sole) (POS distinction) (POS was) (POS that) (POS it) (POS led) (POS to) (POS the) (POS real-life) (POS marriage) (POS of) (POS Meredith) (POS Baxter) (POS and) (POS David) (POS Birney) (POS .)) (TOP (POS Clearly) (POS ,) (POS the) (POS question) (POS with) (POS ``) (POS Chicken) (POS Soup) (POS '') (POS is) (POS not) (POS whether) (POS the) (POS pot) (POS will) (POS boil) (POS over) (POS ,) (POS but) (POS whether) (POS it) (POS will) (POS simmer) (POS at) (POS all) (POS .)) (TOP(S(ADVP(RB So)(RB far))(, ,)(NP(DT the)(NNP(N bubbles)))(VP(VBP have)(VP(VBN been)(UCP(JJ few)(CC and)(ADVP(RB far)(IN between)))))(. .))) (TOP (POS Part) (POS of) (POS the) (POS problem) (POS is) (POS the) (POS tendency) (POS of) (POS all) (POS sitcoms) (POS ,) (POS ever) (POS since) (POS the) (POS didactic) (POS days) (POS of) (POS Norman) (POS Lear) (POS ,) (POS to) (POS preach) (POS about) (POS social) (POS issues) (POS .)) (TOP (POS To) (POS some) (POS extent) (POS ,) (POS this) (POS tendency) (POS emerges) (POS whenever) (POS the) (POS show) (POS tries) (POS to) (POS enlighten) (POS us) (POS about) (POS ethnic) (POS stereotypes) (POS by) (POS reversing) (POS them) (POS .)) (TOP (POS For) (POS instance) (POS ,) (POS Michael) (POS dislikes) (POS Jackie) (POS not) (POS because) (POS he) (POS 's) (POS a) (POS shrewd) (POS Jewish) (POS businessman) (POS ,) (POS but) (POS because) (POS he) (POS quits) (POS his) (POS well-paying) (POS job) (POS as) (POS a) (POS salesman) (POS in) (POS order) (POS to) (POS become) (POS a) (POS social) (POS worker) (POS .)) (TOP (POS Even) (POS more) (POS problematic) (POS is) (POS the) (POS incompatibility) (POS between) (POS sitcom) (POS preachiness) (POS and) (POS Mr.) (POS Mason) (POS 's) (POS comic) (POS persona) (POS .)) (TOP (POS The) (POS best) (POS moments) (POS in) (POS the) (POS show) (POS occur) (POS at) (POS the) (POS beginning) (POS and) (POS the) (POS end) (POS -LRB-) (POS and) (POS occasionally) (POS in) (POS the) (POS middle) (POS -RRB-) (POS ,) (POS when) (POS Mr.) (POS Mason) (POS slips) (POS into) (POS his) (POS standup) (POS mode) (POS and) (POS starts) (POS meting) (POS out) (POS that) (POS old-fashioned) (POS Jewish) (POS mischief) (POS to) (POS other) (POS people) (POS as) (POS well) (POS as) (POS to) (POS himself) (POS .)) (TOP (POS But) (POS too) (POS often) (POS ,) (POS these) (POS routines) (POS lack) (POS spark) (POS because) (POS this) (POS sitcom) (POS ,) (POS like) (POS all) (POS sitcoms) (POS ,) (POS is) (POS timid) (POS about) (POS confronting) (POS Mr.) (POS Mason) (POS 's) (POS stock) (POS in) (POS trade) (POS -) (POS ethnic) (POS differences) (POS .)) (TOP (POS I) (POS 'm) (POS not) (POS suggesting) (POS that) (POS the) (POS producers) (POS start) (POS putting) (POS together) (POS episodes) (POS about) (POS topics) (POS like) (POS the) (POS Catholic-Jewish) (POS dispute) (POS over) (POS the) (POS Carmelite) (POS convent) (POS at) (POS Auschwitz) (POS .)) (TOP (POS That) (POS issue) (POS ,) (POS like) (POS racial) (POS tensions) (POS in) (POS New) (POS York) (POS City) (POS ,) (POS will) (POS have) (POS to) (POS cool) (POS down) (POS ,) (POS not) (POS heat) (POS up) (POS ,) (POS before) (POS it) (POS can) (POS simmer) (POS .)) (TOP (POS But) (POS I) (POS am) (POS suggesting) (POS that) (POS they) (POS stop) (POS requiring) (POS Mr.) (POS Mason) (POS to) (POS interrupt) (POS his) (POS classic) (POS shtik) (POS with) (POS some) (POS line) (POS about) (POS ``) (POS caring) (POS for) (POS other) (POS people) (POS '') (POS that) (POS would) (POS sound) (POS shmaltzy) (POS on) (POS the) (POS lips) (POS of) (POS Miss) (POS America) (POS .)) (TOP (POS At) (POS your) (POS age) (POS ,) (POS Jackie) (POS ,) (POS you) (POS ought) (POS to) (POS know) (POS that) (POS you) (POS ca) (POS n't) (POS make) (POS soup) (POS without) (POS turning) (POS up) (POS the) (POS flame) (POS .)) (TOP (POS The) (POS official) (POS White) (POS House) (POS reaction) (POS to) (POS a) (POS plunge) (POS in) (POS stock) (POS prices) (POS has) (POS a) (POS 60-year) (POS history) (POS of) (POS calm) (POS ,) (POS right) (POS up) (POS through) (POS Friday) (POS .)) (TOP (POS Treasury) (POS Secretary) (POS Nicholas) (POS Brady) (POS said) (POS in) (POS a) (POS statement) (POS Friday) (POS that) (POS the) (POS stock-market) (POS decline) (POS ``) (POS does) (POS n't) (POS signal) (POS any) (POS fundamental) (POS change) (POS in) (POS the) (POS condition) (POS of) (POS the) (POS economy) (POS .) (POS '')) (TOP (POS ``) (POS The) (POS economy) (POS ,) (POS '') (POS he) (POS added) (POS ,) (POS ``) (POS remains) (POS well-balanced) (POS and) (POS the) (POS outlook) (POS is) (POS for) (POS continued) (POS moderate) (POS growth) (POS .) (POS '')) (TOP(S(NP(NNP Sound))(VP(JJ familiar))(. ?))) (TOP (POS Here) (POS 's) (POS what) (POS Ronald) (POS Reagan) (POS said) (POS after) (POS the) (POS 1987) (POS crash) (POS :) (POS ``) (POS The) (POS underlying) (POS economy) (POS remains) (POS sound) (POS .)) (TOP(S(S(NP(EX There))(VP(VBZ is)(ADJP(NN nothing)(JJ wrong)(PP(IN with)(NP(DT the)(NN economy))))))(: ...)(NP(PDT all)(DT the))(S(NP(NNP(N indices)))(VP(VBP are)(PRT(RP up))))(. .)('' ''))) (TOP(S(VP(VBN Heard)(PP(IN that)(ADVP(RB before))))(. ?))) (TOP (POS After) (POS the) (POS 1929) (POS crash) (POS ,) (POS Herbert) (POS Hoover) (POS said) (POS :) (POS ``) (POS The) (POS fundamental) (POS business) (POS of) (POS the) (POS country) (POS ...) (POS is) (POS on) (POS a) (POS sound) (POS and) (POS prosperous) (POS basis) (POS .)) (TOP (POS James) (POS Robinson) (POS ,) (POS 57) (POS years) (POS old) (POS ,) (POS was) (POS elected) (POS president) (POS and) (POS chief) (POS executive) (POS officer) (POS of) (POS this) (POS maker) (POS of) (POS magnetic) (POS recording) (POS heads) (POS for) (POS disk) (POS drives) (POS .)) (TOP (POS He) (POS has) (POS been) (POS president) (POS and) (POS chief) (POS executive) (POS officer) (POS of) (POS Amperex) (POS Electronics) (POS Corp.) (POS ,) (POS a) (POS division) (POS of) (POS North) (POS American) (POS Philips) (POS Corp.) (POS ,) (POS itself) (POS a) (POS subsidiary) (POS of) (POS N.V) (POS .) (POS Philips) (POS of) (POS the) (POS Netherlands) (POS .)) (TOP (POS Charles) (POS J.) (POS Lawson) (POS Jr.) (POS ,) (POS 68) (POS ,) (POS who) (POS had) (POS been) (POS acting) (POS chief) (POS executive) (POS since) (POS June) (POS 14) (POS ,) (POS will) (POS continue) (POS as) (POS chairman) (POS .)) (TOP(S(NP(NP(DT The)(JJ former)(NN president))(CC and)(JJ chief)(NN executive))(, ,)(NP(NNP Eric)(NNP W.)(NNP Markrud))(, ,)(VP(VBD resigned)(PP(IN in)(NP(NNP June))))(. .))) (TOP (POS The) (POS Senate) (POS 's) (POS decision) (POS to) (POS approve) (POS a) (POS bare-bones) (POS deficit-reduction) (POS bill) (POS without) (POS a) (POS capital-gains) (POS tax) (POS cut) (POS still) (POS leaves) (POS open) (POS the) (POS possibility) (POS of) (POS enacting) (POS a) (POS gains) (POS tax) (POS reduction) (POS this) (POS year) (POS .)) (TOP (POS Late) (POS Friday) (POS night) (POS ,) (POS the) (POS Senate) (POS voted) (POS 87-7) (POS to) (POS approve) (POS an) (POS estimated) (POS $) (POS 13.5) (POS billion) (POS measure) (POS that) (POS had) (POS been) (POS stripped) (POS of) (POS hundreds) (POS of) (POS provisions) (POS that) (POS would) (POS have) (POS widened) (POS ,) (POS rather) (POS than) (POS narrowed) (POS ,) (POS the) (POS federal) (POS budget) (POS deficit) (POS .)) (TOP (POS Lawmakers) (POS drastically) (POS streamlined) (POS the) (POS bill) (POS to) (POS blunt) (POS criticism) (POS that) (POS it) (POS was) (POS bloated) (POS with) (POS special-interest) (POS tax) (POS breaks) (POS and) (POS spending) (POS increases) (POS .)) (TOP (POS ``) (POS We) (POS 're) (POS putting) (POS a) (POS deficit-reduction) (POS bill) (POS back) (POS in) (POS the) (POS category) (POS of) (POS being) (POS a) (POS deficit-reduction) (POS bill) (POS ,) (POS '') (POS said) (POS Senate) (POS Budget) (POS Committee) (POS Chairman) (POS James) (POS Sasser) (POS -LRB-) (POS D.) (POS ,) (POS Tenn) (POS .) (POS -RRB-) (POS .)) (TOP (POS But) (POS Senate) (POS supporters) (POS of) (POS the) (POS trimmer) (POS legislation) (POS said) (POS that) (POS other) (POS bills) (POS would) (POS soon) (POS be) (POS moving) (POS through) (POS Congress) (POS that) (POS could) (POS carry) (POS some) (POS of) (POS the) (POS measures) (POS that) (POS had) (POS been) (POS cast) (POS aside) (POS ,) (POS including) (POS a) (POS capital-gains) (POS tax) (POS cut) (POS .)) (TOP (POS In) (POS addition) (POS ,) (POS the) (POS companion) (POS deficit-reduction) (POS bill) (POS already) (POS passed) (POS by) (POS the) (POS House) (POS includes) (POS a) (POS capital-gains) (POS provision) (POS .)) (TOP(S(NP(JJ House-Senate)(NNS negotiations))(VP(VBP are)(ADJP(JJ likely)(S(VP(TO to)(VP(VB begin)(PP(IN at)(ADJP(JJ midweek)(CC and)(JJ last)))(PP(IN for)(NP(DT a)(NN while))))))))(. .))) (TOP (POS ``) (POS No) (POS one) (POS can) (POS predict) (POS exactly) (POS what) (POS will) (POS happen) (POS on) (POS the) (POS House) (POS side) (POS ,) (POS '') (POS said) (POS Senate) (POS Minority) (POS Leader) (POS Robert) (POS Dole) (POS -LRB-) (POS R.) (POS ,) (POS Kan) (POS .) (POS -RRB-) (POS .)) (TOP (POS But) (POS ,) (POS he) (POS added) (POS ,) (POS ``) (POS I) (POS believe) (POS Republicans) (POS and) (POS Democrats) (POS will) (POS work) (POS together) (POS to) (POS get) (POS capital-gains) (POS reform) (POS this) (POS year) (POS .) (POS '')) (TOP (POS White) (POS House) (POS Budget) (POS Director) (POS Richard) (POS Darman) (POS told) (POS reporters) (POS yesterday) (POS that) (POS the) (POS administration) (POS would) (POS n't) (POS push) (POS to) (POS keep) (POS the) (POS capital-gains) (POS cut) (POS in) (POS the) (POS final) (POS version) (POS of) (POS the) (POS bill) (POS .)) (TOP (POS ``) (POS We) (POS do) (POS n't) (POS need) (POS this) (POS as) (POS a) (POS way) (POS to) (POS get) (POS capital) (POS gains) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS House) (POS Budget) (POS Committee) (POS Chairman) (POS Leon) (POS Panetta) (POS -LRB-) (POS D.) (POS ,) (POS Calif) (POS .) (POS -RRB-) (POS said) (POS in) (POS an) (POS interview) (POS ,) (POS ``) (POS If) (POS that) (POS 's) (POS the) (POS signal) (POS that) (POS comes) (POS from) (POS the) (POS White) (POS House) (POS ,) (POS that) (POS will) (POS help) (POS a) (POS great) (POS deal) (POS .) (POS '')) (TOP (POS The) (POS Senate) (POS 's) (POS decision) (POS was) (POS a) (POS setback) (POS for) (POS President) (POS Bush) (POS and) (POS will) (POS make) (POS approval) (POS of) (POS a) (POS capital-gains) (POS tax) (POS cut) (POS less) (POS certain) (POS this) (POS year) (POS .)) (TOP(S(NP(NP(NNS Opponents))(PP(IN of)(NP(DT the)(NN cut))))(VP(VBP are)(S(VP(VBG playing)(NP(NN hardball)))))(. .))) (TOP (POS Senate) (POS Majority) (POS Leader) (POS George) (POS Mitchell) (POS -LRB-) (POS D.) (POS ,) (POS Maine) (POS -RRB-) (POS said) (POS he) (POS was) (POS ``) (POS confident) (POS '') (POS that) (POS any) (POS House-Senate) (POS agreement) (POS on) (POS the) (POS deficit-reduction) (POS legislation) (POS would) (POS n't) (POS include) (POS a) (POS capital-gains) (POS tax) (POS cut) (POS .)) (TOP (POS And) (POS a) (POS senior) (POS aide) (POS to) (POS the) (POS House) (POS Ways) (POS and) (POS Means) (POS Committee) (POS ,) (POS where) (POS tax) (POS legislation) (POS originates) (POS ,) (POS said) (POS there) (POS are) (POS n't) (POS any) (POS ``) (POS plans) (POS to) (POS produce) (POS another) (POS tax) (POS bill) (POS that) (POS could) (POS carry) (POS a) (POS gains) (POS tax) (POS cut) (POS this) (POS year) (POS .) (POS '')) (TOP (POS One) (POS obvious) (POS place) (POS to) (POS attach) (POS a) (POS capital-gains) (POS tax) (POS cut) (POS ,) (POS and) (POS perhaps) (POS other) (POS popular) (POS items) (POS stripped) (POS from) (POS the) (POS deficit-reduction) (POS bill) (POS ,) (POS is) (POS the) (POS legislation) (POS to) (POS raise) (POS the) (POS federal) (POS borrowing) (POS limit) (POS .)) (TOP(S(NP(JJ Such)(NN legislation))(VP(MD must)(VP(VB be)(VP(VBN enacted)(PP(IN by)(NP(NP(DT the)(NN end))(PP(IN of)(NP(DT the)(NN month))))))))(. .))) (TOP(S(NP(DT The)(NNP Senate)(NN bill))(VP(VBD was)(VP(VBN pared)(PRT(RP back))(PP(IN in)(NP(DT an)(NN attempt)))(S(VP(TO to)(VP(VB speed)(ADJP(JJ deficit-reduction)(PP(IN through)(NP(NNP Congress)))))))))(. .))) (TOP (POS Because) (POS the) (POS legislation) (POS has) (POS n't) (POS been) (POS completed) (POS ,) (POS President) (POS Bush) (POS has) (POS until) (POS midnight) (POS tonight) (POS to) (POS enact) (POS across-the-board) (POS spending) (POS cuts) (POS mandated) (POS by) (POS the) (POS Gramm-Rudman) (POS deficit-reduction) (POS law) (POS .)) (TOP (POS Senators) (POS hope) (POS that) (POS the) (POS need) (POS to) (POS avoid) (POS those) (POS cuts) (POS will) (POS pressure) (POS the) (POS House) (POS to) (POS agree) (POS to) (POS the) (POS streamlined) (POS bill) (POS .)) (TOP(S(NP(DT The)(NNP House))(VP(VBZ appears)(ADJP(JJ reluctant)(S(VP(TO to)(VP(VB join)(NP(DT the)(NNS senators)))))))(. .))) (TOP (POS A) (POS key) (POS is) (POS whether) (POS House) (POS Republicans) (POS are) (POS willing) (POS to) (POS acquiesce) (POS to) (POS their) (POS Senate) (POS colleagues) (POS ') (POS decision) (POS to) (POS drop) (POS many) (POS pet) (POS provisions) (POS .)) (TOP (POS ``) (POS Although) (POS I) (POS am) (POS encouraged) (POS by) (POS the) (POS Senate) (POS action) (POS ,) (POS '') (POS said) (POS Chairman) (POS Dan) (POS Rostenkowski) (POS -LRB-) (POS D.) (POS ,) (POS Ill) (POS .) (POS -RRB-) (POS of) (POS the) (POS House) (POS Ways) (POS and) (POS Means) (POS Committee) (POS ,) (POS ``) (POS it) (POS is) (POS uncertain) (POS whether) (POS a) (POS clean) (POS bill) (POS can) (POS be) (POS achieved) (POS in) (POS the) (POS upcoming) (POS conference) (POS with) (POS the) (POS Senate) (POS .) (POS '')) (TOP(S(NP(NP(DT Another)(JJ big)(NN question))(PP(VBG hovering)(PP(IN over)(NP(DT the)(NN debate)))))(VP(VBZ is)(SBAR(WHNP(WP what))(S(NP(NNP President)(NNP Bush))(VP(VBZ thinks))(. .)))))) (TOP (POS He) (POS has) (POS been) (POS resisting) (POS a) (POS stripped-down) (POS bill) (POS without) (POS a) (POS guaranteed) (POS vote) (POS on) (POS his) (POS capital-gains) (POS tax) (POS cut) (POS .)) (TOP (POS But) (POS Republican) (POS senators) (POS saw) (POS no) (POS way) (POS to) (POS overcome) (POS a) (POS procedural) (POS hurdle) (POS and) (POS garner) (POS the) (POS 60) (POS votes) (POS needed) (POS to) (POS win) (POS the) (POS capital-gains) (POS issue) (POS on) (POS the) (POS floor) (POS ,) (POS so) (POS they) (POS went) (POS ahead) (POS with) (POS the) (POS streamlined) (POS bill) (POS .)) (TOP (POS The) (POS Senate) (POS bill) (POS was) (POS stripped) (POS of) (POS many) (POS popular) (POS ,) (POS though) (POS revenue-losing) (POS ,) (POS provisions) (POS ,) (POS a) (POS number) (POS of) (POS which) (POS are) (POS included) (POS in) (POS the) (POS House-passed) (POS bill) (POS .)) (TOP (POS These) (POS include) (POS a) (POS child-care) (POS initiative) (POS and) (POS extensions) (POS of) (POS soon-to-expire) (POS tax) (POS breaks) (POS for) (POS low-income) (POS housing) (POS and) (POS research-and-development) (POS expenditures) (POS .)) (TOP (POS Also) (POS missing) (POS from) (POS the) (POS Senate) (POS bill) (POS is) (POS the) (POS House) (POS 's) (POS repeal) (POS of) (POS a) (POS law) (POS ,) (POS called) (POS Section) (POS 89) (POS ,) (POS that) (POS compels) (POS companies) (POS to) (POS give) (POS rank-and-file) (POS workers) (POS comparable) (POS health) (POS benefits) (POS to) (POS top) (POS paid) (POS executives) (POS .)) (TOP (POS One) (POS high-profile) (POS provision) (POS that) (POS was) (POS originally) (POS in) (POS the) (POS Senate) (POS bill) (POS but) (POS was) (POS cut) (POS out) (POS because) (POS it) (POS lost) (POS money) (POS was) (POS the) (POS proposal) (POS by) (POS Chairman) (POS Lloyd) (POS Bentsen) (POS -LRB-) (POS D.) (POS ,) (POS Texas) (POS -RRB-) (POS of) (POS the) (POS Senate) (POS Finance) (POS Committee) (POS to) (POS expand) (POS the) (POS deduction) (POS for) (POS individual) (POS retirement) (POS accounts) (POS .)) (TOP(S(NP(NNP Mr.)(NNP Bentsen))(VP(VBD said)(SBAR(S(NP(PRP he))(VP(VBZ hopes)(SBAR(S(NP(DT the)(NNP Senate))(VP(MD will)(VP(VB consider)(NP(DT that)(NN measure))(ADVP(RB soon))))))))))(. .))) (TOP (POS To) (POS the) (POS delight) (POS of) (POS some) (POS doctors) (POS ,) (POS the) (POS bill) (POS dropped) (POS a) (POS plan) (POS passed) (POS by) (POS the) (POS Finance) (POS Committee) (POS that) (POS would) (POS have) (POS overhauled) (POS the) (POS entire) (POS physician-reimbursement) (POS system) (POS under) (POS Medicare) (POS .)) (TOP (POS To) (POS the) (POS detriment) (POS of) (POS many) (POS low-income) (POS people) (POS ,) (POS efforts) (POS to) (POS boost) (POS Medicaid) (POS funding) (POS ,) (POS especially) (POS in) (POS rural) (POS areas) (POS ,) (POS also) (POS were) (POS stricken) (POS .)) (TOP (POS Asked) (POS why) (POS senators) (POS were) (POS giving) (POS up) (POS so) (POS much) (POS ,) (POS New) (POS Mexico) (POS Sen.) (POS Pete) (POS Domenici) (POS ,) (POS the) (POS ranking) (POS Republican) (POS on) (POS the) (POS Senate) (POS Budget) (POS Committee) (POS ,) (POS said) (POS ,) (POS ``) (POS We) (POS 're) (POS looking) (POS like) (POS idiots) (POS .)) (TOP(S(S(NP(NNS Things))(VP(VBD had)(RB just)(VP(VBN gone)(ADVP(RB too)(RB far)))))(. .)('' ''))) (TOP(S(NP(NNP Sen.)(NNP Dole))(VP(VBD said)(SBAR(IN that)(S(NP(DT the)(NN move))(VP(VBN required)(VP(VB sacrifice)(PP(IN by)(NP(DT every)(NN senator)))))(. .)))))) (TOP (POS It) (POS worked) (POS ,) (POS others) (POS said) (POS ,) (POS because) (POS there) (POS were) (POS no) (POS exceptions) (POS :) (POS all) (POS revenue-losing) (POS provisions) (POS were) (POS stricken) (POS .)) (TOP (POS The) (POS Senate) (POS also) (POS dropped) (POS a) (POS plan) (POS by) (POS its) (POS Finance) (POS Committee) (POS that) (POS would) (POS have) (POS increased) (POS the) (POS income) (POS threshold) (POS beyond) (POS which) (POS senior) (POS citizens) (POS have) (POS their) (POS Social) (POS Security) (POS benefits) (POS reduced) (POS .)) (TOP (POS In) (POS addition) (POS ,) (POS the) (POS bill) (POS dropped) (POS a) (POS plan) (POS to) (POS make) (POS permanent) (POS a) (POS 3) (POS %) (POS excise) (POS tax) (POS on) (POS long-distance) (POS telephone) (POS calls) (POS .)) (TOP (POS It) (POS no) (POS longer) (POS includes) (POS a) (POS plan) (POS that) (POS would) (POS have) (POS repealed) (POS what) (POS remains) (POS of) (POS the) (POS completed-contract) (POS method) (POS of) (POS accounting) (POS ,) (POS which) (POS is) (POS used) (POS by) (POS military) (POS contractors) (POS to) (POS reduce) (POS their) (POS tax) (POS burden) (POS .)) (TOP (POS It) (POS also) (POS drops) (POS a) (POS provision) (POS that) (POS would) (POS have) (POS permitted) (POS corporations) (POS to) (POS use) (POS excess) (POS pension) (POS funds) (POS to) (POS pay) (POS health) (POS benefits) (POS for) (POS current) (POS retirees) (POS .)) (TOP (POS Also) (POS stricken) (POS was) (POS a) (POS fivefold) (POS increase) (POS in) (POS the) (POS maximum) (POS Occupational) (POS Safety) (POS and) (POS Health) (POS Administration) (POS penalties) (POS ,) (POS which) (POS would) (POS have) (POS raised) (POS $) (POS 65) (POS million) (POS in) (POS fiscal) (POS 1990) (POS .)) (TOP (POS A) (POS provision) (POS that) (POS would) (POS have) (POS made) (POS the) (POS Social) (POS Security) (POS Administration) (POS an) (POS independent) (POS agency) (POS was) (POS excised) (POS .)) (TOP (POS The) (POS approval) (POS of) (POS the) (POS Senate) (POS bill) (POS was) (POS especially) (POS sweet) (POS for) (POS Sen.) (POS Mitchell) (POS ,) (POS who) (POS had) (POS proposed) (POS the) (POS streamlining) (POS .)) (TOP (POS Mr.) (POS Mitchell) (POS 's) (POS relations) (POS with) (POS Budget) (POS Director) (POS Darman) (POS ,) (POS who) (POS pushed) (POS for) (POS a) (POS capital-gains) (POS cut) (POS to) (POS be) (POS added) (POS to) (POS the) (POS measure) (POS ,) (POS have) (POS been) (POS strained) (POS since) (POS Mr.) (POS Darman) (POS chose) (POS to) (POS bypass) (POS the) (POS Maine) (POS Democrat) (POS and) (POS deal) (POS with) (POS other) (POS lawmakers) (POS earlier) (POS this) (POS year) (POS during) (POS a) (POS dispute) (POS over) (POS drug) (POS funding) (POS in) (POS the) (POS fiscal) (POS 1989) (POS supplemental) (POS spending) (POS bill) (POS .)) (TOP (POS The) (POS deficit) (POS reduction) (POS bill) (POS contains) (POS $) (POS 5.3) (POS billion) (POS in) (POS tax) (POS increases) (POS in) (POS fiscal) (POS 1990) (POS ,) (POS and) (POS $) (POS 26) (POS billion) (POS over) (POS five) (POS years) (POS .)) (TOP(S(NP(DT The)(JJ revenue-raising)(NNS provisions))(, ,)(SBAR(WHNP(WDT which))(S(VP(VB affect)(ADVP(RB mostly)))))(NP(NNS corporations))(, ,)(VP(MD would))(: :))) (TOP (POS --) (POS Prevent) (POS companies) (POS that) (POS have) (POS made) (POS leveraged) (POS buy-outs) (POS from) (POS getting) (POS federal) (POS tax) (POS refunds) (POS resulting) (POS from) (POS losses) (POS caused) (POS by) (POS interest) (POS payments) (POS on) (POS debt) (POS issued) (POS to) (POS finance) (POS the) (POS buy-outs) (POS ,) (POS effective) (POS Aug.) (POS 2) (POS ,) (POS 1989) (POS .)) (TOP (POS --) (POS Require) (POS mutual) (POS funds) (POS to) (POS include) (POS in) (POS their) (POS taxable) (POS income) (POS dividends) (POS paid) (POS to) (POS them) (POS on) (POS the) (POS date) (POS that) (POS the) (POS dividends) (POS are) (POS declared) (POS rather) (POS than) (POS received) (POS ,) (POS effective) (POS the) (POS day) (POS after) (POS the) (POS tax) (POS bill) (POS is) (POS enacted) (POS .)) (TOP (POS --) (POS Close) (POS a) (POS loophole) (POS regarding) (POS employee) (POS stock) (POS ownership) (POS plans) (POS ,) (POS effective) (POS June) (POS 6) (POS ,) (POS 1989) (POS ,) (POS that) (POS has) (POS been) (POS exploited) (POS by) (POS investment) (POS bankers) (POS in) (POS corporate) (POS takeovers) (POS .)) (TOP (POS The) (POS measure) (POS repeals) (POS a) (POS 50) (POS %) (POS exclusion) (POS given) (POS to) (POS banks) (POS on) (POS the) (POS interest) (POS from) (POS loans) (POS used) (POS to) (POS acquire) (POS securities) (POS for) (POS an) (POS ESOP) (POS ,) (POS if) (POS the) (POS ESOP) (POS owns) (POS less) (POS than) (POS 30) (POS %) (POS of) (POS the) (POS employer) (POS 's) (POS stock) (POS .)) (TOP (POS --) (POS Curb) (POS junk) (POS bonds) (POS by) (POS ending) (POS tax) (POS benefits) (POS for) (POS certain) (POS securities) (POS ,) (POS such) (POS as) (POS zero-coupon) (POS bonds) (POS ,) (POS that) (POS postpone) (POS cash) (POS interest) (POS payments) (POS .)) (TOP (POS --) (POS Raise) (POS $) (POS 851) (POS million) (POS by) (POS suspending) (POS for) (POS one) (POS year) (POS an) (POS automatic) (POS reduction) (POS in) (POS airport) (POS and) (POS airway) (POS taxes) (POS .)) (TOP (POS --) (POS Speed) (POS up) (POS the) (POS collection) (POS of) (POS the) (POS payroll) (POS tax) (POS from) (POS large) (POS companies) (POS ,) (POS effective) (POS August) (POS 1990) (POS .)) (TOP (POS --) (POS Impose) (POS a) (POS tax) (POS on) (POS ozone-depleting) (POS chemicals) (POS ,) (POS such) (POS as) (POS those) (POS used) (POS in) (POS air) (POS conditioners) (POS and) (POS in) (POS Styrofoam) (POS ,) (POS beginning) (POS at) (POS $) (POS 1.10) (POS a) (POS pound) (POS starting) (POS next) (POS year) (POS .)) (TOP (POS --) (POS Withhold) (POS income) (POS taxes) (POS from) (POS the) (POS paychecks) (POS of) (POS certain) (POS farm) (POS workers) (POS currently) (POS exempt) (POS from) (POS withholding) (POS .)) (TOP (POS --) (POS Change) (POS the) (POS collection) (POS of) (POS gasoline) (POS excise) (POS taxes) (POS to) (POS weekly) (POS from) (POS semimonthly) (POS ,) (POS effective) (POS next) (POS year) (POS .)) (TOP (POS --) (POS Restrict) (POS the) (POS ability) (POS of) (POS real) (POS estate) (POS owners) (POS to) (POS escape) (POS taxes) (POS by) (POS swapping) (POS one) (POS piece) (POS of) (POS property) (POS for) (POS another) (POS instead) (POS of) (POS selling) (POS it) (POS for) (POS cash) (POS .)) (TOP (POS --) (POS Increase) (POS to) (POS $) (POS 6) (POS a) (POS person) (POS from) (POS $) (POS 3) (POS the) (POS international) (POS air-passenger) (POS departure) (POS tax) (POS ,) (POS and) (POS impose) (POS a) (POS $) (POS 3-a-person) (POS tax) (POS on) (POS international) (POS departures) (POS by) (POS commercial) (POS ships) (POS .)) (TOP(S(NP(DT The)(NN measure))(ADVP(RB also))(VP(VBZ includes)(NP(NP(NN spending)(NNS cuts))(CC and)(NNS increases))(PP(IN in)(NP(JJ federal)(NNS fees))))(. .))) (TOP(PP(IN Among)(NP(PRP$ its)(NNS provisions)(: :)))) (TOP (POS --) (POS Reduction) (POS of) (POS Medicare) (POS spending) (POS in) (POS fiscal) (POS 1990) (POS by) (POS some) (POS $) (POS 2.8) (POS billion) (POS ,) (POS in) (POS part) (POS by) (POS curbing) (POS increases) (POS in) (POS reimbursements) (POS to) (POS physicians) (POS .)) (TOP(S(NP(DT The)(NN plan))(VP(MD would)(VP(VB impose)(NP(DT a)(JJ brief)(NN freeze))(PP(IN on)(NP(NP(NN physician)(NNS fees))(JJ next)(NN year)))))(. .))) (TOP (POS --) (POS Removal) (POS of) (POS the) (POS U.S.) (POS Postal) (POS Service) (POS 's) (POS operating) (POS budget) (POS from) (POS the) (POS federal) (POS budget) (POS ,) (POS reducing) (POS the) (POS deficit) (POS by) (POS $) (POS 1.77) (POS billion) (POS .)) (TOP(S(NP(DT A)(JJ similar)(NN provision))(VP(VBZ is)(PP(IN in)(NP(DT the)(NNP House)(NN version))))(. .))) (TOP (POS --) (POS Authority) (POS for) (POS the) (POS Federal) (POS Aviation) (POS Administration) (POS to) (POS raise) (POS $) (POS 239) (POS million) (POS by) (POS charging) (POS fees) (POS for) (POS commercial) (POS airline-landing) (POS rights) (POS at) (POS New) (POS York) (POS 's) (POS LaGuardia) (POS and) (POS John) (POS F.) (POS Kennedy) (POS International) (POS Airports) (POS ,) (POS O'Hare) (POS International) (POS Airport) (POS in) (POS Chicago) (POS and) (POS National) (POS Airport) (POS in) (POS Washington) (POS .)) (TOP(S(: --)(NP(NP(NP(NNP(N Increases)))(PP(IN in)(NP(NNP Nuclear)(NNP Regulatory))))(NNP Commission)(NNS fees))(VP(VBG totaling)(NP(QP($ $)(CD 54)(CD million))))(. .))) (TOP (POS --) (POS Direction) (POS to) (POS the) (POS U.S.) (POS Coast) (POS Guard) (POS to) (POS collect) (POS $) (POS 50) (POS million) (POS from) (POS users) (POS of) (POS Coast) (POS Guard) (POS services) (POS .)) (TOP (POS --) (POS Raising) (POS an) (POS additional) (POS $) (POS 43) (POS million) (POS by) (POS increasing) (POS existing) (POS Federal) (POS Communications) (POS Commission) (POS fees) (POS and) (POS penalties) (POS and) (POS establishing) (POS new) (POS fees) (POS for) (POS amateur) (POS radio) (POS operators) (POS ,) (POS ship) (POS stations) (POS and) (POS mobile) (POS radio) (POS facilities) (POS .)) (TOP(S(NP(NNP John)(NNP E.)(NNP Yang))(VP(VBN contributed)(PP(TO to)(NP(DT this)(NN article))))(. .))) (TOP (POS In) (POS response) (POS to) (POS your) (POS overly) (POS optimistic) (POS ,) (POS outdated) (POS piece) (POS on) (POS how) (POS long) (POS unemployment) (POS lasts) (POS -LRB-) (POS People) (POS Patterns) (POS ,) (POS Sept.) (POS 20) (POS -RRB-) (POS :) (POS I) (POS am) (POS in) (POS the) (POS communications) (POS field) (POS ,) (POS above) (POS entry) (POS level) (POS .)) (TOP (POS I) (POS was) (POS laid) (POS off) (POS in) (POS August) (POS 1988) (POS ,) (POS and) (POS after) (POS a) (POS thorough) (POS and) (POS exhausting) (POS job) (POS search) (POS ,) (POS was) (POS hired) (POS in) (POS August) (POS 1989) (POS .)) (TOP (POS My) (POS unemployment) (POS insurance) (POS ran) (POS out) (POS before) (POS I) (POS found) (POS a) (POS job) (POS ;) (POS I) (POS found) (POS cutbacks) (POS and) (POS layoffs) (POS in) (POS many) (POS companies) (POS .)) (TOP (POS The) (POS statistics) (POS quoted) (POS by) (POS the) (POS ``) (POS new) (POS '') (POS Census) (POS Bureau) (POS report) (POS -LRB-) (POS garnered) (POS from) (POS 1984) (POS to) (POS 1986) (POS -RRB-) (POS are) (POS out) (POS of) (POS date) (POS ,) (POS certainly) (POS as) (POS an) (POS average) (POS for) (POS the) (POS Northeast) (POS ,) (POS and) (POS possibly) (POS for) (POS the) (POS rest) (POS of) (POS the) (POS country) (POS .)) (TOP (POS I) (POS think) (POS what) (POS bothered) (POS me) (POS most) (POS about) (POS the) (POS piece) (POS was) (POS that) (POS there) (POS seemed) (POS to) (POS be) (POS an) (POS underlying) (POS attitude) (POS to) (POS tell) (POS your) (POS readers) (POS all) (POS is) (POS well) (POS --) (POS if) (POS you) (POS 're) (POS getting) (POS laid) (POS off) (POS do) (POS n't) (POS worry) (POS ,) (POS and) (POS if) (POS you) (POS 're) (POS unemployed) (POS ,) (POS it) (POS 's) (POS a) (POS seller) (POS 's) (POS market) (POS .)) (TOP (POS To) (POS top) (POS it) (POS off) (POS ,) (POS you) (POS captioned) (POS the) (POS graph) (POS showing) (POS the) (POS average) (POS number) (POS of) (POS months) (POS in) (POS a) (POS job) (POS search) (POS as) (POS ``) (POS Time) (POS Off) (POS .) (POS '')) (TOP(SINV(VP(VBP Are)(NP(PRP you)))(NP(NNP(N kidding)))(. ?))) (TOP (POS Looking) (POS for) (POS a) (POS job) (POS was) (POS one) (POS of) (POS the) (POS most) (POS anxious) (POS periods) (POS of) (POS my) (POS life) (POS --) (POS and) (POS is) (POS for) (POS most) (POS people) (POS .)) (TOP(S(NP(PRP$ Your)(NN paper))(VP(VBZ needs)(NP(DT a)(JJ serious)(NN reality)(NN check)))(. .))) (TOP(NP(NNP(N Reva))(NNP Levin))) (TOP(S(NP(NNP Cambridge))(, ,)(NP(NNP Mass))(. .))) (TOP (POS BULL) (POS HN) (POS INFORMATION) (POS SYSTEMS) (POS Inc.) (POS is) (POS a) (POS U.S.) (POS majority-owned) (POS unit) (POS of) (POS Cie.) (POS des) (POS Machines) (POS Bull) (POS .)) (TOP(S(PP(IN In)(NP(NP(NNP Friday)(POS 's))(NN edition)))(, ,)(NP(NP(DT the)(NN name))(PP(IN of)(NP(DT the)(NN unit))))(VP(VBD was)(VP(VBN misstated)))(. .))) (TOP (POS Moody) (POS 's) (POS Investors) (POS Service) (POS said) (POS it) (POS reduced) (POS its) (POS rating) (POS on) (POS $) (POS 165) (POS million) (POS of) (POS subordinated) (POS debt) (POS of) (POS this) (POS Beverly) (POS Hills) (POS ,) (POS Calif.) (POS ,) (POS thrift) (POS ,) (POS citing) (POS turmoil) (POS in) (POS the) (POS market) (POS for) (POS low-grade) (POS ,) (POS high-yield) (POS securities) (POS .)) (TOP (POS The) (POS agency) (POS said) (POS it) (POS reduced) (POS its) (POS rating) (POS on) (POS the) (POS thrift) (POS 's) (POS subordinated) (POS debt) (POS to) (POS B-2) (POS from) (POS Ba-2) (POS and) (POS will) (POS keep) (POS the) (POS debt) (POS under) (POS review) (POS for) (POS possible) (POS further) (POS downgrade) (POS .)) (TOP(S(NP(NNP Columbia)(NNP Savings))(VP(VBZ is)(NP(DT a)(JJ major)(NN holder))(PP(IN of)(NP(JJ so-called)(NN junk)(NNS bonds))))(. .))) (TOP (POS New) (POS federal) (POS legislation) (POS requires) (POS that) (POS all) (POS thrifts) (POS divest) (POS themselves) (POS of) (POS such) (POS speculative) (POS securities) (POS over) (POS a) (POS period) (POS of) (POS years) (POS .)) (TOP(S(NP(NNP Columbia)(NNP Savings))(NP(NNS officials))(VP(VBD were)(ADJP(RB n't)(JJ available))(PP(IN for)(NP(NP(NN comment))(PP(IN on)(NP(DT the)(NN downgrade))))))(. .))) (TOP(NP(NP(NNP FRANKLIN)(NNPS SAVINGS))(NNP ASSOCIATION)(PRN(-LRB- -LRB-)(NAC(NNP Ottawa)(, ,)(NNP Kan.))(-RRB- -RRB-))(: --))) (TOP (POS Moody) (POS 's) (POS Investors) (POS Service) (POS Inc.) (POS said) (POS it) (POS downgraded) (POS its) (POS rating) (POS to) (POS B-2) (POS from) (POS Ba-3) (POS on) (POS less) (POS than) (POS $) (POS 20) (POS million) (POS of) (POS this) (POS thrift) (POS 's) (POS senior) (POS subordinated) (POS notes) (POS .)) (TOP (POS The) (POS rating) (POS concern) (POS said) (POS Franklin) (POS 's) (POS ``) (POS troubled) (POS diversification) (POS record) (POS in) (POS the) (POS securities) (POS business) (POS '') (POS was) (POS one) (POS reason) (POS for) (POS the) (POS downgrade) (POS ,) (POS citing) (POS the) (POS troubles) (POS at) (POS its) (POS L.F.) (POS Rothschild) (POS subsidiary) (POS and) (POS the) (POS possible) (POS sale) (POS of) (POS other) (POS subsidiaries) (POS .)) (TOP (POS ``) (POS They) (POS perhaps) (POS had) (POS concern) (POS that) (POS we) (POS were) (POS getting) (POS out) (POS of) (POS all) (POS these) (POS ,) (POS '') (POS said) (POS Franklin) (POS President) (POS Duane) (POS H.) (POS Hall) (POS .)) (TOP(S(`` ``)(NP(PRP I))(VP(VBP think)(SBAR(S(NP(PRP it))(VP(VBD was)(NP(DT a)(JJ little)(JJ premature))(PP(IN on)(NP(PRP$ their)(NN part)))))))(. .))) (TOP (POS Just) (POS when) (POS it) (POS seemed) (POS safe) (POS to) (POS go) (POS back) (POS into) (POS stocks) (POS ,) (POS Wall) (POS Street) (POS suffered) (POS another) (POS severe) (POS attack) (POS of) (POS nerves) (POS .)) (TOP(S(S(VP(VBZ Does)(NP(DT this)(NN signal))))(NP(DT another)(NNP Black)(NNP Monday))(VP(VBZ is)(ADJP(JJ coming)))(. ?))) (TOP (POS Or) (POS is) (POS this) (POS an) (POS extraordinary) (POS buying) (POS opportunity) (POS ,) (POS just) (POS like) (POS Oct.) (POS 19) (POS ,) (POS 1987) (POS ,) (POS eventually) (POS turned) (POS out) (POS to) (POS be) (POS ?)) (TOP (POS Here) (POS 's) (POS what) (POS several) (POS leading) (POS market) (POS experts) (POS and) (POS money) (POS managers) (POS say) (POS about) (POS Friday) (POS 's) (POS action) (POS ,) (POS what) (POS happens) (POS next) (POS and) (POS what) (POS investors) (POS should) (POS do) (POS .)) (TOP(FRAG(NP(NNP Joseph)(NNP Granville))(. .))) (TOP (POS ``) (POS I) (POS 'm) (POS the) (POS only) (POS one) (POS who) (POS said) (POS there) (POS would) (POS be) (POS an) (POS October) (POS massacre) (POS ,) (POS all) (POS through) (POS late) (POS August) (POS and) (POS September) (POS ,) (POS '') (POS says) (POS Mr.) (POS Granville) (POS ,) (POS once) (POS a) (POS widely) (POS followed) (POS market) (POS guru) (POS and) (POS still) (POS a) (POS well-known) (POS newsletter) (POS writer) (POS .)) (TOP (POS ``) (POS Everyone) (POS will) (POS tell) (POS you) (POS that) (POS this) (POS time) (POS is) (POS different) (POS from) (POS 1987) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP (POS ``) (POS Well) (POS ,) (POS in) (POS some) (POS ways) (POS it) (POS is) (POS different) (POS ,) (POS but) (POS technically) (POS it) (POS is) (POS just) (POS the) (POS same) (POS .)) (TOP(S(PP(IN If)(NP(PRP you)))(VP(VBP 're)(NP(NP(DT a)(NN technician))(, ,)(NP(NP(PRP you))(NNP obey)(DT the)(NNS signals))))(. .))) (TOP(S(ADVP(RB Right)(RB now))(NP(PRP they))(VP(VBP 're)(VP(VBG telling)(NP(PRP me))(S(VP(TO to)(VP(VB get)(NP(DT the)(NN hell))(PRT(RP out))(CC and)(VP(VB stay)(PRT(RP out))))))))(. .))) (TOP(S(NP(PRP I))(VP(VB see)(NP(DT no)(JJ major)(NN support))(PP(IN until)(NP(CD 2200))))(. .))) (TOP(S(S(NP(PRP I))(VP(VB see)(NP(DT a)(NN possibility))(PP(IN of)(S(VP(VBG going)(PP(TO to)(NP(CD 2200))))))))(NP(DT this)(NN month))(. .)('' ''))) (TOP (POS Mr.) (POS Granville) (POS says) (POS he) (POS would) (POS n't) (POS even) (POS think) (POS of) (POS buying) (POS until) (POS at) (POS least) (POS 600) (POS to) (POS 700) (POS stocks) (POS have) (POS hit) (POS 52-week) (POS lows) (POS ;) (POS about) (POS 100) (POS stocks) (POS hit) (POS new) (POS lows) (POS Friday) (POS .)) (TOP (POS ``) (POS Most) (POS people) (POS ,) (POS '') (POS he) (POS says) (POS ,) (POS ``) (POS have) (POS no) (POS idea) (POS what) (POS a) (POS massacre) (POS pattern) (POS looks) (POS like) (POS .) (POS '')) (TOP(FRAG(NP(NNP Elaine)(NNP Garzarelli))(. .))) (TOP (POS A) (POS quantitative) (POS analyst) (POS with) (POS Shearson) (POS Lehman) (POS Hutton) (POS Inc.) (POS ,) (POS Ms.) (POS Garzarelli) (POS had) (POS warned) (POS clients) (POS to) (POS take) (POS their) (POS money) (POS out) (POS of) (POS the) (POS market) (POS before) (POS the) (POS 1987) (POS crash) (POS .)) (TOP(S(NP(NP(NNP Friday)(POS 's))(JJ big)(NN drop))(, ,)(NP(PRP she))(VP(VBZ says)(, ,)(`` ``)(VP(VBD was)(ADVP(RB not))(NP(DT a)(NN crash))))(. .))) (TOP(S(NP(DT This))(VP(VBD was)(NP(DT an)(NNP October)(NN massacre)('' ''))(PP(IN like)(NP(DT those)(SBAR(WHNP(WDT that))(S(VP(VBN occurred)(PP(IN in)(NP(CD 1978))))))(CC and)(CD 1979))))(. .))) (TOP(S(ADVP(RB Now))(, ,)(ADVP(RB as)(PP(IN in)(NP(DT those)(CD two)(NNS years))))(, ,)(NP(NP(PRP$ her)(NN stock))(NN market)(NNS indicators))(VP(VBP are)(ADJP(JJ positive)))(. .))) (TOP(S(PP(IN So)(NP(PRP she)))(VP(VBZ thinks)(SBAR(S(NP(DT the)(NN damage))(VP(MD will)(VP(VB be)(ADJP(JJ short-lived)(CC and)(VBN contained)))))))(. .))) (TOP (POS ``) (POS Those) (POS corrections) (POS lasted) (POS one) (POS to) (POS four) (POS weeks) (POS and) (POS took) (POS the) (POS market) (POS 10%-12) (POS %) (POS down) (POS ,) (POS '') (POS she) (POS says) (POS .)) (TOP (POS ``) (POS This) (POS is) (POS exactly) (POS the) (POS same) (POS thing) (POS ,) (POS as) (POS far) (POS as) (POS I) (POS 'm) (POS concerned) (POS .) (POS '')) (TOP (POS Thus) (POS ,) (POS she) (POS says) (POS ,) (POS if) (POS the) (POS Dow) (POS Jones) (POS Industrial) (POS Average) (POS dropped) (POS below) (POS 2450) (POS ,) (POS ``) (POS It) (POS would) (POS just) (POS be) (POS a) (POS fluke) (POS .)) (TOP(S(S(NP(PRP$ My)(NN advice))(VP(VBZ is)(S(VP(TO to)(VP(VB buy))))))(. .)('' ''))) (TOP (POS As) (POS she) (POS calculates) (POS it) (POS ,) (POS the) (POS average) (POS stock) (POS now) (POS sells) (POS for) (POS about) (POS 12.5) (POS times) (POS companies) (POS ') (POS earnings) (POS .)) (TOP (POS She) (POS says) (POS that) (POS ratio) (POS could) (POS climb) (POS to) (POS 14.5) (POS ,) (POS given) (POS current) (POS interest) (POS rates) (POS ,) (POS and) (POS still) (POS be) (POS within) (POS the) (POS range) (POS of) (POS ``) (POS fair) (POS value) (POS .) (POS '')) (TOP(FRAG(NP(NNP Ned)(NNP Davis))(. .))) (TOP (POS Friday) (POS 's) (POS fall) (POS marks) (POS the) (POS start) (POS of) (POS a) (POS bear) (POS market) (POS ,) (POS says) (POS Mr.) (POS Davis) (POS ,) (POS president) (POS of) (POS Ned) (POS Davis) (POS Research) (POS Inc) (POS .)) (TOP (POS But) (POS Mr.) (POS Davis) (POS ,) (POS whose) (POS views) (POS are) (POS widely) (POS respected) (POS by) (POS money) (POS managers) (POS ,) (POS says) (POS he) (POS expects) (POS no) (POS 1987-style) (POS crash) (POS .)) (TOP(SINV(`` ``)(S(NP(EX There))(VP(VBD was)(NP(DT a)(JJ unique)(NN combination))(PP(IN in)(NP(CD 1987)))))(, ,)('' '')(NP(NP(PRP he))(VP(VBZ says)))(. .))) (TOP(S(NP(`` ``)(NN Margin)(NN debt))(VP(VBD was)(PP(IN at)(NP(DT a)(NN record)))(ADVP(RB high)))(. .))) (TOP(S(NP(EX There))(VP(VBD was)(NP(JJ tremendous)(JJ public)(NN enthusiasm))(PP(IN for)(NP(NN stock)(JJ mutual)(NNS funds))))(. .))) (TOP (POS The) (POS main) (POS thing) (POS was) (POS portfolio) (POS insurance) (POS ,) (POS '') (POS a) (POS mechanical) (POS trading) (POS system) (POS intended) (POS to) (POS protect) (POS an) (POS investor) (POS against) (POS losses) (POS .) (POS ``)) (TOP(S(NP(NP(QP(DT A)(CD hundred)(CD billion))(NNS dollars))(PP(IN in)(NP(NN stock))))(VP(VBD was)(ADJP(JJ subject)('' '')(PP(TO to)(NP(PRP it)))))(. .))) (TOP(S(PP(IN In)(NP(CD 1987)(, ,)(JJ such)(NN selling)))(VP(VBN contributed)(PP(TO to)(NP(DT a)(NNP snowball)(NN effect))))(. .))) (TOP (POS Today) (POS could) (POS even) (POS be) (POS an) (POS up) (POS day) (POS ,) (POS Mr.) (POS Davis) (POS says) (POS ,) (POS if) (POS major) (POS brokerage) (POS firms) (POS agree) (POS to) (POS refrain) (POS from) (POS program) (POS trading) (POS .)) (TOP(S(PP(IN Over)(NP(DT the)(JJ next)(JJ several)(NNS months)))(, ,)(ADVP(RB though))(, ,)(NP(PRP he))(VP(VBZ says)(SBAR(S(NP(NNS things))(VP(VB look)(ADJP(JJ bad))))))(. .))) (TOP (POS ``) (POS I) (POS think) (POS the) (POS market) (POS will) (POS be) (POS heading) (POS down) (POS into) (POS November) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP(S(`` ``)(S(NP(PRP We))(VP(MD will)(RB probably)(VP(VB have)(NP(DT a)(JJ year-end)(NN rally)))))(, ,)(CC and)(ADVP(RB then))(VP(VB go)(PRT(RP down))(ADVP(RB again)))(. .))) (TOP(S(NP(NP(NNP Sort))(PP(IN of)(NP(DT a)(JJ two-step)(NN bear)(NN market))))(. .)('' ''))) (TOP (POS He) (POS expects) (POS the) (POS downturn) (POS to) (POS carry) (POS the) (POS Dow) (POS Jones) (POS Industrial) (POS Average) (POS down) (POS to) (POS around) (POS 2000) (POS sometime) (POS next) (POS year) (POS .)) (TOP(S(`` ``)(NP(DT That)(VP(MD would)(VP(VB be)(NP(DT a)(JJ normal)(NN bear)(NN market))))(, ,))('' '')(NP(PRP he))(VP(VBZ says))(. .))) (TOP(SINV(`` ``)(S(NP(PRP I))(VP(VBP guess)(SBAR(WHNP(WDT that))(S(VP(VBZ 's)(NP(PRP$ my)(NN forecast)))))))(. .)('' ''))) (TOP(S(NP(NNP Leon)(NNP G.))(NP(NNP Cooperman))(. .))) (TOP(S(`` ``)(NP(PRP I))(VP(VBP do)(RB n't)(VP(VBP think)(SBAR(S(NP(DT the)(NN market))(VP(VBZ is)(VP(VBG going)(PP(IN through)(NP(DT another)(NNP October)(CD '87)))))))))(. .))) (TOP (POS I) (POS do) (POS n't) (POS think) (POS that) (POS 's) (POS the) (POS case) (POS at) (POS all) (POS ,) (POS '') (POS says) (POS Mr.) (POS Cooperman) (POS ,) (POS a) (POS partner) (POS at) (POS Goldman) (POS ,) (POS Sachs) (POS &) (POS Co.) (POS and) (POS chairman) (POS of) (POS Goldman) (POS Sachs) (POS Asset) (POS Management) (POS .)) (TOP (POS Mr.) (POS Cooperman) (POS sees) (POS this) (POS as) (POS a) (POS good) (POS time) (POS to) (POS pick) (POS up) (POS bargains) (POS ,) (POS but) (POS he) (POS does) (POS n't) (POS think) (POS there) (POS 's) (POS any) (POS need) (POS to) (POS rush) (POS .)) (TOP (POS ``) (POS I) (POS expect) (POS the) (POS market) (POS to) (POS open) (POS weaker) (POS Monday) (POS ,) (POS but) (POS then) (POS it) (POS should) (POS find) (POS some) (POS stability) (POS .) (POS '')) (TOP(S(NP(PRP He))(NP(NNP(N ticks)))(VP(ADVP(RB off))(NP(NP(JJ several)(JJ major)(NNS differences))(PP(IN between)(NP(QP(RB now)(CC and)(CD two))(NNS years))))(ADVP(RB ago)))(. .))) (TOP(S(PP(IN Unlike)(NP(CD 1987)(, ,)(NN interest)(NNS rates)))(VP(VBP have)(VP(VBN been)(S(VP(VBG falling)(NP(DT this)(NN year))))))(. .))) (TOP(S(PP(IN Unlike)(NP(CD 1987)))(, ,)(NP(DT the)(NN dollar))(VP(VBZ has)(VP(VBN been)(ADJP(JJ strong))))(. .))) (TOP (POS And) (POS unlike) (POS 1987) (POS ,) (POS the) (POS economy) (POS does) (POS n't) (POS appear) (POS to) (POS be) (POS in) (POS any) (POS danger) (POS of) (POS overheating) (POS .)) (TOP (POS But) (POS the) (POS economy) (POS 's) (POS slower) (POS growth) (POS this) (POS year) (POS also) (POS means) (POS the) (POS outlook) (POS for) (POS corporate) (POS profits) (POS ``) (POS is) (POS n't) (POS good) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP(S(`` ``)(ADVP(RB So))(S(NP(PRP it))(VP(VBZ 's)(NP(DT a)(ADJP(RB very)(JJ mixed))(NN bag))))(. .)('' ''))) (TOP (POS Thus) (POS ,) (POS he) (POS concludes) (POS ,) (POS ``) (POS This) (POS is) (POS not) (POS a) (POS good) (POS environment) (POS to) (POS be) (POS fully) (POS invested) (POS '') (POS in) (POS stocks) (POS .)) (TOP (POS ``) (POS If) (POS I) (POS had) (POS come) (POS into) (POS Friday) (POS on) (POS margin) (POS or) (POS with) (POS very) (POS little) (POS cash) (POS in) (POS the) (POS portfolios) (POS ,) (POS I) (POS would) (POS not) (POS do) (POS any) (POS buying) (POS .)) (TOP (POS But) (POS we) (POS came) (POS into) (POS Friday) (POS with) (POS a) (POS conservative) (POS portfolio) (POS ,) (POS so) (POS I) (POS would) (POS look) (POS to) (POS do) (POS some) (POS modest) (POS buying) (POS '') (POS on) (POS behalf) (POS of) (POS clients) (POS .) (POS ``)) (TOP (POS We) (POS 're) (POS going) (POS to) (POS look) (POS for) (POS some) (POS of) (POS the) (POS better-known) (POS companies) (POS that) (POS got) (POS clocked) (POS '') (POS Friday) (POS .)) (TOP(S(NP(NNP John))(NP(NNP Kenneth)(NNP Galbraith))(. .))) (TOP (POS ``) (POS This) (POS is) (POS the) (POS latest) (POS manifestation) (POS of) (POS the) (POS capacity) (POS of) (POS the) (POS financial) (POS community) (POS for) (POS recurrent) (POS insanity) (POS ,) (POS '') (POS says) (POS Mr.) (POS Galbraith) (POS ,) (POS an) (POS economist) (POS .)) (TOP (POS ``) (POS I) (POS see) (POS this) (POS as) (POS a) (POS reaction) (POS to) (POS the) (POS whole) (POS junk) (POS bond) (POS explosion) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP (POS ``) (POS The) (POS explosion) (POS of) (POS junk) (POS bonds) (POS and) (POS takeovers) (POS has) (POS lodged) (POS a) (POS lot) (POS of) (POS insecure) (POS securities) (POS in) (POS the) (POS hands) (POS of) (POS investors) (POS and) (POS loaded) (POS the) (POS corporations) (POS that) (POS are) (POS the) (POS objects) (POS of) (POS takeovers) (POS or) (POS feared) (POS takeovers) (POS with) (POS huge) (POS amounts) (POS of) (POS debt) (POS rather) (POS than) (POS equity) (POS .)) (TOP(S(NP(NP(DT This)(VP(VBZ has)(NP(DT both)(VBN made)(NNS investors)))(JJ uneasy)(CC and)(NP(DT the)(NNS corporations)))(ADJP(RBR more)(JJ vulnerable)))(. .)('' ''))) (TOP(S(ADVP(RB Nevertheless))(, ,)(NP(PRP he))(VP(VBZ says)(SBAR(S(NP(DT a)(NN depression))(VP(VBZ does)(RB n't)(VP(VBP appear)(ADJP(JJ likely)))))))(. .))) (TOP (POS ``) (POS There) (POS is) (POS more) (POS resiliency) (POS in) (POS the) (POS economy) (POS at) (POS large) (POS than) (POS we) (POS commonly) (POS suppose) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP (POS ``) (POS It) (POS takes) (POS more) (POS error) (POS now) (POS to) (POS have) (POS a) (POS major) (POS depression) (POS than) (POS back) (POS in) (POS the) (POS Thirties) (POS --) (POS much) (POS as) (POS the) (POS financial) (POS community) (POS and) (POS the) (POS government) (POS may) (POS try) (POS .) (POS '')) (TOP(FRAG(NP(NNP Mario)(NNP Gabelli))(. .))) (TOP (POS New) (POS York) (POS money) (POS manager) (POS Mario) (POS Gabelli) (POS ,) (POS an) (POS expert) (POS at) (POS spotting) (POS takeover) (POS candidates) (POS ,) (POS says) (POS that) (POS takeovers) (POS are) (POS n't) (POS totally) (POS gone) (POS .)) (TOP (POS ``) (POS Companies) (POS are) (POS still) (POS going) (POS to) (POS buy) (POS companies) (POS around) (POS the) (POS world) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP(S(NP(NNS Examples))(VP(VBP are)(`` ``)(S(NP(NP(NNP Ford))(PP(VBG looking)(PP(IN at)(NP(NNP Jaguar)))))(, ,)(NP(NP(NNP BellSouth))(PP(VBG looking)(PP(IN at)(NP(NNP LIN)(NNP Broadcasting)))))(. .)('' ''))))) (TOP (POS These) (POS sorts) (POS of) (POS takeovers) (POS do) (POS n't) (POS require) (POS junk) (POS bonds) (POS or) (POS big) (POS bank) (POS loans) (POS to) (POS finance) (POS them) (POS ,) (POS so) (POS Mr.) (POS Gabelli) (POS figures) (POS they) (POS will) (POS continue) (POS .)) (TOP (POS ``) (POS The) (POS market) (POS was) (POS up) (POS 35) (POS %) (POS since) (POS -LCB-) (POS President) (POS -RCB-) (POS Bush) (POS took) (POS office) (POS ,) (POS '') (POS Mr.) (POS Gabelli) (POS says) (POS ,) (POS so) (POS a) (POS correction) (POS was) (POS to) (POS be) (POS expected) (POS .)) (TOP (POS He) (POS thinks) (POS another) (POS crash) (POS is) (POS ``) (POS unlikely) (POS ,) (POS '') (POS and) (POS says) (POS he) (POS was) (POS ``) (POS nibbling) (POS at) (POS '') (POS selected) (POS stocks) (POS during) (POS Friday) (POS 's) (POS plunge) (POS .)) (TOP (POS ``) (POS Stocks) (POS that) (POS were) (POS thrown) (POS out) (POS just) (POS on) (POS an) (POS emotional) (POS basis) (POS are) (POS a) (POS great) (POS opportunity) (POS -LCB-) (POS this) (POS -RCB-) (POS week) (POS for) (POS guys) (POS like) (POS me) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP(FRAG(NP(NNP Jim)(NNP Rogers))(. .))) (TOP (POS ``) (POS It) (POS seems) (POS to) (POS me) (POS that) (POS this) (POS is) (POS the) (POS pin) (POS that) (POS has) (POS finally) (POS pricked) (POS the) (POS balloon) (POS ,) (POS '') (POS says) (POS Mr.) (POS Rogers) (POS ,) (POS a) (POS professor) (POS of) (POS finance) (POS at) (POS Columbia) (POS University) (POS and) (POS former) (POS co-manager) (POS of) (POS one) (POS of) (POS the) (POS most) (POS successful) (POS hedge) (POS funds) (POS in) (POS history) (POS ,) (POS Quantum) (POS Fund) (POS .)) (TOP (POS He) (POS sees) (POS ``) (POS economic) (POS problems) (POS ,) (POS financial) (POS problems) (POS '') (POS ahead) (POS for) (POS the) (POS U.S.) (POS ,) (POS with) (POS a) (POS fairly) (POS strong) (POS possibility) (POS of) (POS a) (POS recession) (POS .)) (TOP(S(`` ``)(NP(NNP Friday))(S(NP(PRP you))(VP(MD could)(RB n't)(VP(VB sell)(NP(NNS dollars)))))(, ,)('' '')(NP(PRP he))(VP(VBZ says))(. .))) (TOP (POS Dealers) (POS ``) (POS would) (POS give) (POS you) (POS a) (POS quote) (POS ,) (POS but) (POS then) (POS refuse) (POS to) (POS make) (POS the) (POS trade) (POS .) (POS '')) (TOP (POS If) (POS the) (POS dollar) (POS stays) (POS weak) (POS ,) (POS he) (POS says) (POS ,) (POS that) (POS will) (POS add) (POS to) (POS inflationary) (POS pressures) (POS in) (POS the) (POS U.S.) (POS and) (POS make) (POS it) (POS hard) (POS for) (POS the) (POS Federal) (POS Reserve) (POS Board) (POS to) (POS ease) (POS interest) (POS rates) (POS very) (POS much) (POS .)) (TOP (POS Mr.) (POS Rogers) (POS wo) (POS n't) (POS decide) (POS what) (POS to) (POS do) (POS today) (POS until) (POS he) (POS sees) (POS how) (POS the) (POS London) (POS and) (POS Tokyo) (POS markets) (POS go) (POS .)) (TOP (POS He) (POS recommends) (POS that) (POS investors) (POS sell) (POS takeover-related) (POS stocks) (POS ,) (POS but) (POS hang) (POS on) (POS to) (POS some) (POS other) (POS stocks) (POS --) (POS especially) (POS utilities) (POS ,) (POS which) (POS often) (POS do) (POS well) (POS during) (POS periods) (POS of) (POS economic) (POS weakness) (POS .)) (TOP(FRAG(NP(NNP Frank)(NNP Curzio))(. .))) (TOP(S(NP(JJ Many)(NNS people))(ADVP(RB now))(VP(VBP claim)(S(VP(TO to)(VP(VBP have)(VP(VBD predicted)(NP(DT the)(CD 1987)(NN crash)))))))(. .))) (TOP (POS Queens) (POS newsletter) (POS writer) (POS Francis) (POS X.) (POS Curzio) (POS actually) (POS did) (POS it) (POS :) (POS He) (POS stated) (POS in) (POS writing) (POS in) (POS September) (POS 1987) (POS that) (POS the) (POS Dow) (POS Jones) (POS Industrial) (POS Average) (POS was) (POS likely) (POS to) (POS decline) (POS about) (POS 500) (POS points) (POS the) (POS following) (POS month) (POS .)) (TOP (POS Mr.) (POS Curzio) (POS says) (POS what) (POS happens) (POS now) (POS will) (POS depend) (POS a) (POS good) (POS deal) (POS on) (POS the) (POS Federal) (POS Reserve) (POS Board) (POS .)) (TOP (POS If) (POS it) (POS promptly) (POS cuts) (POS the) (POS discount) (POS rate) (POS it) (POS charges) (POS on) (POS loans) (POS to) (POS banks) (POS ,) (POS he) (POS says) (POS ,) (POS ``) (POS That) (POS could) (POS quiet) (POS things) (POS down) (POS .) (POS '')) (TOP(S(PP(IN If)(SBAR(RB not)(, ,)(`` ``)(S(NP(PRP We))(VP(MD could)(VP(VB go)(PP(TO to)(NP(CD 2200))))))))(ADVP(RB very)(RB soon))(. .)('' ''))) (TOP(S(NP(NNP Frank))(NP(NNP W.)(NNP Terrizzi))(. .))) (TOP (POS Stock) (POS prices) (POS ``) (POS would) (POS still) (POS have) (POS to) (POS go) (POS down) (POS some) (POS additional) (POS amount) (POS before) (POS we) (POS become) (POS positive) (POS on) (POS stocks) (POS ,) (POS '') (POS says) (POS Mr.) (POS Terrizzi) (POS ,) (POS president) (POS and) (POS managing) (POS director) (POS of) (POS Renaissance) (POS Investment) (POS Management) (POS Inc.) (POS in) (POS Cincinnati) (POS .)) (TOP (POS Renaissance) (POS ,) (POS which) (POS manages) (POS about) (POS $) (POS 1.8) (POS billion) (POS ,) (POS drew) (POS stiff) (POS criticism) (POS from) (POS many) (POS clients) (POS earlier) (POS this) (POS year) (POS because) (POS it) (POS pulled) (POS entirely) (POS out) (POS of) (POS stocks) (POS at) (POS the) (POS beginning) (POS of) (POS the) (POS year) (POS and) (POS thus) (POS missed) (POS a) (POS strong) (POS rally) (POS .)) (TOP(S(NP(NNP Renaissance))(VP(VBZ is)(S(VP(VBG keeping)(NP(NP(NP(PRP$ its)(NN money))(PP(ADVP(RB entirely)(PP(IN in)(NP(NN cash)(NNS equivalents))))(, ,)(ADVP(RB primarily))))(NNP U.S.)(NNP Treasury)(NNS bills)))))(. .))) (TOP(SINV(`` ``)(S(NP(NNS T-bills))(ADVP(RB probably))(VP(VBP are)(NP(DT the)(JJ right)(NN place))(S(VP(TO to)(VP(VB be))))))(, ,)('' '')(NP(NP(PRP he))(VP(VBZ says)))(. .))) (TOP (POS Regarding) (POS the) (POS Oct.) (POS 3) (POS letter) (POS to) (POS the) (POS editor) (POS from) (POS Rep.) (POS Tom) (POS Lantos) (POS ,) (POS chairman) (POS of) (POS the) (POS House) (POS Subcommittee) (POS on) (POS Employment) (POS and) (POS Housing) (POS ,) (POS alleging) (POS :)) (TOP (POS 1) (POS .) (POS That) (POS your) (POS Sept.) (POS 28) (POS editorial) (POS ``) (POS Kangaroo) (POS Committees) (POS '') (POS was) (POS factually) (POS inaccurate) (POS and) (POS deliberately) (POS misleading) (POS .)) (TOP(S(NP(PRP I))(VP(VBD thought)(SBAR(S(NP(PRP$ your)(NN editorial))(VP(VBD was)(ADJP(RB factually)(JJ accurate))(CC and)(ADVP(RB deliberately))(NP(NNP elucidative))))))(. .))) (TOP (POS 2) (POS .) (POS That) (POS Mr.) (POS Lantos) (POS supported) (POS the) (POS rights) (POS of) (POS the) (POS witnesses) (POS to) (POS take) (POS the) (POS Fifth) (POS Amendment) (POS .)) (TOP(S(INTJ(UH Yes))(, ,)(NP(PRP he))(VP(VBD did))(. .))) (TOP (POS As) (POS I) (POS watched) (POS him) (POS on) (POS C-Span) (POS ,) (POS I) (POS heard) (POS him) (POS speak) (POS those) (POS lovely) (POS words) (POS about) (POS the) (POS Bill) (POS of) (POS Rights) (POS ,) (POS which) (POS he) (POS quotes) (POS from) (POS the) (POS transcript) (POS of) (POS the) (POS hearings) (POS .)) (TOP (POS He) (POS did) (POS repeat) (POS those) (POS nice) (POS platitudes) (POS several) (POS times) (POS as) (POS an) (POS indication) (POS of) (POS his) (POS support) (POS for) (POS the) (POS Constitution) (POS .)) (TOP(S(S(NP(PRP He))(VP(VBN used)(PP(IN about)(NP(CD 56)(NNS words)))))(VP(VBG defending)(NP(NP(DT the)(NNS witnesses)(POS '))(JJ constitutional)(NNS rights)))(. .))) (TOP (POS Unfortunately) (POS ,) (POS by) (POS my) (POS rough) (POS guess) (POS ,) (POS he) (POS used) (POS better) (POS than) (POS 5,000) (POS words) (POS heaping) (POS scorn) (POS on) (POS the) (POS witnesses) (POS for) (POS exercising) (POS the) (POS Fifth) (POS .)) (TOP(S(NP(PRP He))(VP(VBN sandwiched)(NP(PRP$ his)(NN praise))(PP(IN of)(NP(NP(JJ constitutional)(NN meat))(PP(IN between)(NP(NP(JJ large)(NNP(N loaves)))(PP(IN of)(NP(NNP(N bilious))(NN commentary))))))))(. .))) (TOP (POS As) (POS your) (POS editorial) (POS rightly) (POS pointed) (POS out) (POS ,) (POS Samuel) (POS Pierce) (POS ,) (POS former) (POS HUD) (POS secretary) (POS ,) (POS and) (POS Lance) (POS Wilson) (POS ,) (POS Mr.) (POS Pierce) (POS 's) (POS former) (POS aide) (POS ,) (POS ``) (POS are) (POS currently) (POS being) (POS held) (POS up) (POS to) (POS scorn) (POS for) (POS taking) (POS the) (POS Fifth) (POS Amendment) (POS .)) (TOP (POS '') (POS That) (POS certainly) (POS is) (POS not) (POS the) (POS supposed) (POS ``) (POS distorted) (POS reading) (POS '') (POS indicated) (POS by) (POS Mr.) (POS Lantos) (POS .)) (TOP (POS 3) (POS .) (POS That) (POS his) (POS ``) (POS committee) (POS does) (POS not) (POS deal) (POS with) (POS any) (POS possible) (POS criminal) (POS activity) (POS at) (POS HUD) (POS .)) (TOP(S(NP(PRP$ My)(NNS colleagues))(CC and)(NP(PRP I))(ADVP(RB fully))(VP(VBP realize)(SBAR(S(NP(PRP we))(VP(VBP are)(ADVP(RB not))(X(NP(DT a)(NN court))(: ...)(FW etc)(. .)('' '')))))))) (TOP(S(NP(NNP Absolute))(VP(JJ rubbish))(. .))) (TOP (POS By) (POS any) (POS ``) (POS reasonable) (POS man) (POS '') (POS criterion) (POS ,) (POS Mr.) (POS Lantos) (POS and) (POS his) (POS colleagues) (POS have) (POS a) (POS whole) (POS bunch) (POS of) (POS people) (POS tried) (POS and) (POS convicted) (POS .)) (TOP(S(ADVP(RB Apparently))(, ,)(NP(PRP$ their)(NN verdict))(VP(VBZ is)(PRT(RP in)))(. .))) (TOP(S(ADVP(RB Right)(RB now))(NP(PRP they))(VP(VBP 're)(S(VP(VBG pursuing)(NP(NN evidence)))))(. .))) (TOP (POS That) (POS 's) (POS not) (POS a) (POS bad) (POS way) (POS to) (POS proceed) (POS ,) (POS just) (POS somewhat) (POS different) (POS from) (POS standard) (POS American) (POS practice) (POS .)) (TOP(SBARQ(WHADVP(WRB How))(SQ(VBD was)(NP(DT that)(NN practice))(VP(VBN referred)(PP(TO to)(SBAR(WHADVP(WRB when))(S(NP(PRP I))(VP(VBD was)(PP(IN in)(NP(NN school)))))))))(. ?))) (TOP(S(INTJ(UH Ah)(, ,)(UH yes)(, ,)(NN something))(VP(VBD called)(NP(DT a)(NNP Star)(NNP Chamber)))(. .))) (TOP (POS Of) (POS course) (POS ,) (POS Mr.) (POS Lantos) (POS doth) (POS protest) (POS that) (POS his) (POS subcommittee) (POS simply) (POS seeks) (POS information) (POS for) (POS legislative) (POS change) (POS .)) (TOP(S(INTJ(UH No))(VP(VBP doubt)(SBAR(WHNP(WDT that))(S(VP(VBZ 's)(ADJP(RB partially)(JJ true))))))(. .))) (TOP(S(NP(NP(NN Everything))(PP(IN that)(NP(NNP Mr.)(NNP Lantos))))(VP(VBZ says)(SBAR(IN in)(S(NP(PRP$ his)(NN letter))(VP(VBZ is)(ADJP(RB partially)(JJ true)))(. .)))))) (TOP (POS He) (POS 's) (POS right) (POS about) (POS his) (POS subcommittee) (POS 's) (POS responsibilities) (POS when) (POS it) (POS comes) (POS to) (POS obtaining) (POS information) (POS from) (POS prior) (POS HUD) (POS officials) (POS .)) (TOP (POS But) (POS if) (POS his) (POS explanation) (POS of) (POS motivation) (POS is) (POS true) (POS ,) (POS why) (POS is) (POS his) (POS investigation) (POS so) (POS oriented) (POS as) (POS to) (POS identify) (POS criminal) (POS activity) (POS ?)) (TOP(S(SBAR(WHADVP(WRB Why))(S(NP(QP(RB not)(RB simply))(NNS questions))(VP(VBN designed)(S(VP(TO to)(VP(VB identify)(NP(NNS sources))))))))(CC and)(VP(VBZ causes)(PP(IN of)(NP(NN waste)(CC and)(NN inefficiency))))(. ?))) (TOP (POS Such) (POS as) (POS ,) (POS what) (POS happened) (POS when) (POS Congress) (POS wanted) (POS to) (POS know) (POS about) (POS $) (POS 400) (POS toilet) (POS seats) (POS or) (POS whatever) (POS they) (POS supposedly) (POS cost) (POS ?)) (TOP(S(NP(DT No)(, ,)(NNP Mr.)(NNP Lantos)(POS 's))(NP(NNS complaints))(ADVP(RB simply))(VP(MD wo)(RB n't)(VP(VB wash)))(. .))) (TOP (POS 4) (POS .) (POS That) (POS the) (POS Journal) (POS defends) (POS ``) (POS the) (POS sleaze) (POS ,) (POS fraud) (POS ,) (POS waste) (POS ,) (POS embezzlement) (POS ,) (POS influence-peddling) (POS and) (POS abuse) (POS of) (POS the) (POS public) (POS that) (POS took) (POS place) (POS while) (POS Mr.) (POS Pierce) (POS was) (POS secretary) (POS of) (POS HUD) (POS ,) (POS '') (POS etc.) (POS and) (POS so) (POS forth) (POS .)) (TOP (POS No) (POS ,) (POS to) (POS my) (POS mind) (POS ,) (POS the) (POS Journal) (POS did) (POS not) (POS ``) (POS defend) (POS sleaze) (POS ,) (POS fraud) (POS ,) (POS waste) (POS ,) (POS embezzlement) (POS ,) (POS influence-peddling) (POS and) (POS abuse) (POS of) (POS the) (POS public) (POS trust) (POS ...) (POS '')) (TOP(S(NP(PRP it))(VP(VBD defended)(NP(NP(JJ appropriate)(JJ constitutional)(NNS safeguards))(CC and)(JJ practical)(JJ common)(NN sense)))(. .))) (TOP (POS The) (POS problem) (POS ,) (POS which) (POS the) (POS Journal) (POS so) (POS rightly) (POS pointed) (POS out) (POS in) (POS a) (POS number) (POS of) (POS articles) (POS ,) (POS is) (POS not) (POS the) (POS likes) (POS of) (POS Mr.) (POS Lantos) (POS ,) (POS who) (POS after) (POS all) (POS is) (POS really) (POS a) (POS bit) (POS player) (POS on) (POS the) (POS stage) (POS ,) (POS but) (POS the) (POS attempt) (POS by) (POS Congress) (POS to) (POS enhance) (POS itself) (POS into) (POS a) (POS quasi-parliamentary\/judicial) (POS body) (POS .)) (TOP (POS -LRB-) (POS Of) (POS course) (POS ,) (POS we) (POS 've) (POS also) (POS got) (POS a) (POS judiciary) (POS that) (POS seeks) (POS the) (POS same) (POS objective) (POS .) (POS -RRB-)) (TOP(S(NP(DT The)(NN system))(VP(VBZ is)(NP(DT the)(NN problem))(, ,)(ADVP(RB not))(NP(DT an)(JJ individual)(NN member)))(. .))) (TOP(S(NP(NNS Individuals))(VP(MD can)(RB always)(VP(VBP have)(SBAR(S(NP(PRP$ their)(NNS hands))(VP(VBD slapped))))))(. .))) (TOP(S(NP(PRP It))(VP(VBZ 's)(SBAR(WHADVP(WRB when))(S(NP(JJ such)(NN slapping))(VP(VBZ does)(RB n't)(VP(VB occur)(SBAR(IN that)(S(NP(PRP we))(VP(VBP 've)(VP(VBD got)(NP(NN trouble))))))))(. .)))))) (TOP(S(S(NP(PRP I))(VP(VBP do)(ADVP(RB not))(PP(IN by)(NP(DT any)(NNS means)))))(VP(VB defend)(NP(NNP HUD)(NN management)))(. .))) (TOP (POS But) (POS I) (POS think) (POS the) (POS kind) (POS of) (POS congressional) (POS investigation) (POS that) (POS has) (POS been) (POS pursued) (POS is) (POS a) (POS far) (POS greater) (POS danger) (POS to) (POS American) (POS notions) (POS of) (POS liberty) (POS and) (POS freedom) (POS than) (POS any) (POS incompetency) (POS -LRB-) (POS and) (POS ,) (POS yes) (POS ,) (POS maybe) (POS criminality) (POS -RRB-) (POS within) (POS HUD) (POS could) (POS possibly) (POS generate) (POS .)) (TOP (POS The) (POS last) (POS time) (POS I) (POS saw) (POS a) (POS similar) (POS congressional) (POS hearing) (POS was) (POS when) (POS ``) (POS Tail) (POS Gunner) (POS Joe) (POS '') (POS McCarthy) (POS did) (POS his) (POS work) (POS .)) (TOP(NP(NNP Raymond)(NNP(N Weber)))) (TOP (POS Parsippany) (POS ,) (POS N.J) (POS .)) (TOP (POS I) (POS disagree) (POS with) (POS the) (POS statement) (POS by) (POS Mr.) (POS Lantos) (POS that) (POS one) (POS should) (POS not) (POS draw) (POS an) (POS adverse) (POS inference) (POS against) (POS former) (POS HUD) (POS officials) (POS who) (POS assert) (POS their) (POS Fifth) (POS Amendment) (POS privilege) (POS against) (POS self-incrimination) (POS in) (POS congressional) (POS hearings) (POS .)) (TOP (POS The) (POS Fifth) (POS Amendment) (POS states) (POS in) (POS relevant) (POS part) (POS that) (POS no) (POS person) (POS ``) (POS shall) (POS be) (POS compelled) (POS ,) (POS in) (POS any) (POS criminal) (POS case) (POS ,) (POS to) (POS be) (POS a) (POS witness) (POS against) (POS himself) (POS .) (POS '')) (TOP (POS This) (POS privilege) (POS against) (POS self-incrimination) (POS precludes) (POS the) (POS drawing) (POS of) (POS an) (POS adverse) (POS inference) (POS against) (POS a) (POS criminal) (POS defendant) (POS who) (POS chooses) (POS not) (POS to) (POS testify) (POS .)) (TOP (POS Thus) (POS ,) (POS in) (POS a) (POS criminal) (POS case) (POS ,) (POS a) (POS prosecutor) (POS can) (POS not) (POS comment) (POS on) (POS a) (POS defendant) (POS 's) (POS failure) (POS to) (POS testify) (POS nor) (POS can) (POS the) (POS defendant) (POS be) (POS compelled) (POS to) (POS take) (POS the) (POS stand) (POS as) (POS a) (POS witness) (POS ,) (POS thus) (POS forcing) (POS him) (POS to) (POS ``) (POS take) (POS the) (POS Fifth) (POS .) (POS '')) (TOP (POS The) (POS privilege) (POS ,) (POS however) (POS ,) (POS has) (POS been) (POS limited) (POS in) (POS accordance) (POS with) (POS its) (POS plain) (POS language) (POS to) (POS protect) (POS the) (POS defendant) (POS in) (POS criminal) (POS matters) (POS only) (POS .)) (TOP (POS The) (POS Supreme) (POS Court) (POS and) (POS some) (POS states) (POS have) (POS specifically) (POS recognized) (POS that) (POS ``) (POS the) (POS Fifth) (POS Amendment) (POS does) (POS not) (POS preclude) (POS the) (POS inference) (POS where) (POS the) (POS privilege) (POS is) (POS claimed) (POS by) (POS a) (POS party) (POS to) (POS a) (POS civil) (POS cause) (POS .) (POS '')) (TOP(S(NP(NNP Baxter)(CC v.)(NNP Palmingiano)(, ,)(CD 425))(NP(NNP U.S.)(CD 308))(PRN(-LRB- -LRB-)(NP(CD 1976))(-RRB- -RRB-))(. .))) (TOP (POS Thus) (POS ,) (POS in) (POS a) (POS civil) (POS case) (POS ,) (POS a) (POS defendant) (POS may) (POS be) (POS called) (POS as) (POS a) (POS witness) (POS ,) (POS he) (POS may) (POS be) (POS forced) (POS to) (POS testify) (POS or) (POS take) (POS the) (POS Fifth) (POS ,) (POS and) (POS his) (POS taking) (POS of) (POS the) (POS Fifth) (POS may) (POS permit) (POS the) (POS drawing) (POS of) (POS an) (POS adverse) (POS inference) (POS against) (POS him) (POS in) (POS the) (POS civil) (POS matter) (POS .)) (TOP (POS He) (POS may) (POS take) (POS the) (POS Fifth) (POS in) (POS a) (POS civil) (POS matter) (POS only) (POS if) (POS he) (POS has) (POS a) (POS good) (POS faith) (POS and) (POS justifiable) (POS belief) (POS that) (POS his) (POS testimony) (POS may) (POS subject) (POS him) (POS to) (POS criminal) (POS prosecution) (POS .)) (TOP (POS Allowing) (POS the) (POS defendant) (POS to) (POS take) (POS the) (POS Fifth) (POS in) (POS a) (POS civil) (POS matter) (POS is) (POS not) (POS based) (POS on) (POS a) (POS constitutional) (POS right) (POS to) (POS refuse) (POS to) (POS testify) (POS where) (POS one) (POS 's) (POS testimony) (POS harms) (POS him) (POS in) (POS the) (POS civil) (POS matter) (POS ,) (POS but) (POS because) (POS the) (POS testimony) (POS in) (POS the) (POS civil) (POS matter) (POS could) (POS be) (POS unconstitutionally) (POS used) (POS against) (POS him) (POS in) (POS a) (POS subsequent) (POS criminal) (POS prosecution) (POS .)) (TOP (POS Absent) (POS the) (POS risk) (POS of) (POS such) (POS prosecution) (POS ,) (POS a) (POS court) (POS may) (POS order) (POS the) (POS defendant) (POS to) (POS testify) (POS .)) (TOP (POS Thus) (POS ,) (POS when) (POS Mr.) (POS Pierce) (POS asserted) (POS the) (POS Fifth) (POS in) (POS a) (POS noncriminal) (POS proceeding) (POS ,) (POS particularly) (POS after) (POS presumably) (POS receiving) (POS extensive) (POS advice) (POS from) (POS legal) (POS counsel) (POS ,) (POS one) (POS must) (POS conclude) (POS that) (POS he) (POS held) (POS a) (POS good-faith) (POS ,) (POS justifiable) (POS belief) (POS that) (POS his) (POS testimony) (POS could) (POS be) (POS used) (POS against) (POS him) (POS in) (POS a) (POS subsequent) (POS criminal) (POS prosecution) (POS .)) (TOP (POS The) (POS subcommittee) (POS ,) (POS Congress) (POS and) (POS the) (POS American) (POS public) (POS have) (POS every) (POS right) (POS to) (POS draw) (POS the) (POS adverse) (POS inference) (POS and) (POS to) (POS concur) (POS with) (POS Mr.) (POS Pierce) (POS 's) (POS own) (POS belief) (POS that) (POS his) (POS testimony) (POS could) (POS help) (POS convict) (POS him) (POS of) (POS a) (POS crime) (POS .)) (TOP (POS Drawing) (POS the) (POS adverse) (POS inference) (POS in) (POS a) (POS noncriminal) (POS congressional) (POS hearing) (POS does) (POS not) (POS offend) (POS the) (POS Fifth) (POS Amendment) (POS shield) (POS against) (POS self-incrimination) (POS .)) (TOP (POS Clark) (POS S.) (POS Spalsbury) (POS Jr) (POS .)) (TOP(S(NP(NNP(N Estes))(NNP Park))(, ,)(NP(NNP Colo))(. .))) (TOP(S(NP(PRP It))(VP(VBD was)(SBAR(S(NP(NP(NNP Friday)(NP(DT the)(NN 13th))(, ,))(CC and)(NP(DT the)(NN stock)(NN market)))(VP(VBD plummeted)(NP(QP(RB nearly)(CD 200))(NNS points))))))(. .))) (TOP(SINV(ADVP(RB Just))(NP(DT a)(NN coincidence))(. ?))) (TOP(S(CC Or)(VP(VBZ is)(NP(NNP triskaidekaphobia)(: --)(NN fear)(SBAR(IN of)(S(NP(NP(DT the)(NN number))(CD 13)(: --))(VP(VBN justified))))))(. ?))) (TOP (POS In) (POS academia) (POS ,) (POS a) (POS so-called) (POS Friday) (POS the) (POS 13th) (POS effect) (POS has) (POS been) (POS set) (POS up) (POS and) (POS shot) (POS down) (POS by) (POS different) (POS professors) (POS .)) (TOP (POS Robert) (POS Kolb) (POS and) (POS Ricardo) (POS Rodriguez) (POS ,) (POS professors) (POS of) (POS finance) (POS at) (POS the) (POS University) (POS of) (POS Miami) (POS ,) (POS found) (POS evidence) (POS that) (POS the) (POS market) (POS is) (POS spooked) (POS by) (POS Friday) (POS the) (POS 13th) (POS .)) (TOP (POS But) (POS their) (POS study) (POS ,) (POS which) (POS spanned) (POS the) (POS 1962-85) (POS period) (POS ,) (POS has) (POS since) (POS been) (POS shown) (POS to) (POS be) (POS jinxed) (POS by) (POS an) (POS unlucky) (POS choice) (POS of) (POS data) (POS .)) (TOP (POS In) (POS the) (POS '70s) (POS ,) (POS the) (POS market) (POS took) (POS falls) (POS nine) (POS times) (POS in) (POS a) (POS row) (POS on) (POS Friday) (POS the) (POS you-know-what) (POS .)) (TOP (POS But) (POS the) (POS date) (POS tends) (POS to) (POS be) (POS a) (POS plus) (POS ,) (POS not) (POS a) (POS minus) (POS ,) (POS for) (POS stocks) (POS ,) (POS according) (POS to) (POS Yale) (POS Hirsch) (POS ,) (POS a) (POS collector) (POS of) (POS stock) (POS market) (POS lore) (POS .)) (TOP (POS Another) (POS study) (POS found) (POS that) (POS the) (POS 82) (POS Fridays) (POS the) (POS 13th) (POS in) (POS the) (POS 1940-1987) (POS period) (POS had) (POS higher) (POS than) (POS average) (POS returns) (POS --) (POS higher) (POS even) (POS than) (POS Fridays) (POS in) (POS general) (POS ,) (POS which) (POS tend) (POS to) (POS be) (POS strong) (POS days) (POS for) (POS stock) (POS prices) (POS .)) (TOP (POS On) (POS the) (POS only) (POS other) (POS Friday) (POS the) (POS 13th) (POS this) (POS year) (POS ,) (POS the) (POS Dow) (POS Jones) (POS Industrial) (POS Average) (POS rose) (POS about) (POS four) (POS points) (POS .)) (TOP (POS Professor) (POS Kolb) (POS says) (POS the) (POS original) (POS study) (POS ,) (POS titled) (POS Friday) (POS the) (POS 13th) (POS ,) (POS Part) (POS VII) (POS ,) (POS was) (POS published) (POS tongue-in-cheek) (POS .)) (TOP (POS In) (POS a) (POS similar) (POS vein) (POS ,) (POS he) (POS adds) (POS that) (POS the) (POS anniversary) (POS of) (POS the) (POS 1987) (POS crash) (POS and) (POS Saturday) (POS 's) (POS full) (POS moon) (POS could) (POS have) (POS played) (POS a) (POS part) (POS ,) (POS too) (POS ,) (POS in) (POS Friday) (POS 's) (POS market) (POS activity) (POS .)) (TOP (POS reminiscent) (POS of) (POS those) (POS during) (POS the) (POS 1987) (POS crash) (POS --) (POS that) (POS as) (POS stock) (POS prices) (POS plummeted) (POS and) (POS trading) (POS activity) (POS escalated) (POS ,) (POS some) (POS phone) (POS calls) (POS to) (POS market) (POS makers) (POS in) (POS over-the-counter) (POS stocks) (POS went) (POS unanswered) (POS .)) (TOP (POS ``) (POS We) (POS could) (POS n't) (POS get) (POS dealers) (POS to) (POS answer) (POS their) (POS phones) (POS ,) (POS '') (POS said) (POS Robert) (POS King) (POS ,) (POS senior) (POS vice) (POS president) (POS of) (POS OTC) (POS trading) (POS at) (POS Robinson-Humphrey) (POS Co.) (POS in) (POS Atlanta) (POS .)) (TOP (POS ``) (POS It) (POS was) (POS -LCB-) (POS like) (POS -RCB-) (POS the) (POS Friday) (POS before) (POS Black) (POS Monday) (POS '') (POS two) (POS years) (POS ago) (POS .)) (TOP (POS Whether) (POS unanswered) (POS phone) (POS calls) (POS had) (POS any) (POS effect) (POS or) (POS not) (POS ,) (POS Nasdaq) (POS stocks) (POS sank) (POS far) (POS less) (POS than) (POS those) (POS on) (POS the) (POS New) (POS York) (POS and) (POS American) (POS exchanges) (POS .)) (TOP (POS Nonetheless) (POS ,) (POS the) (POS Nasdaq) (POS Composite) (POS Index) (POS suffered) (POS its) (POS biggest) (POS point) (POS decline) (POS of) (POS the) (POS year) (POS and) (POS its) (POS sixth) (POS worst) (POS ever) (POS ,) (POS diving) (POS 14.90) (POS ,) (POS or) (POS 3) (POS %) (POS ,) (POS to) (POS 467.29) (POS .)) (TOP(S(NP(NP(CD Ten)(NNS points))(PP(IN of)(NP(DT the)(NN drop))))(VP(VBD occurred)(PP(IN during)(NP(DT the)(JJ last)(CD 45)(NNS minutes)))(PP(IN of)(NP(NN trading))))(. .))) (TOP (POS By) (POS comparison) (POS ,) (POS the) (POS New) (POS York) (POS Stock) (POS Exchange) (POS Composite) (POS tumbled) (POS 5.8) (POS %) (POS Friday) (POS and) (POS the) (POS American) (POS Stock) (POS Exchange) (POS Composite) (POS fell) (POS 4) (POS %) (POS .)) (TOP (POS On) (POS Oct.) (POS 16) (POS ,) (POS 1987) (POS ,) (POS the) (POS Nasdaq) (POS Composite) (POS fell) (POS 16.18) (POS points) (POS ,) (POS or) (POS 3.8) (POS %) (POS ,) (POS followed) (POS by) (POS its) (POS devastating) (POS 46.12-point) (POS ,) (POS or) (POS 11) (POS %) (POS slide) (POS ,) (POS three) (POS days) (POS later) (POS .)) (TOP (POS Nasdaq) (POS volume) (POS Friday) (POS totaled) (POS 167.7) (POS million) (POS shares) (POS ,) (POS which) (POS was) (POS only) (POS the) (POS fifth) (POS busiest) (POS day) (POS so) (POS far) (POS this) (POS year) (POS .)) (TOP (POS The) (POS single-day) (POS record) (POS of) (POS 288) (POS million) (POS shares) (POS was) (POS set) (POS on) (POS Oct.) (POS 21) (POS ,)) (TOP (POS ``) (POS There) (POS was) (POS n't) (POS a) (POS lot) (POS of) (POS volume) (POS because) (POS it) (POS was) (POS just) (POS impossible) (POS to) (POS get) (POS stock) (POS moved) (POS ,) (POS '') (POS said) (POS E.E.) (POS ``) (POS Buzzy) (POS '') (POS Geduld) (POS ,) (POS president) (POS of) (POS Herzog) (POS ,) (POS Heine) (POS ,) (POS Geduld) (POS ,) (POS a) (POS New) (POS York) (POS company) (POS that) (POS makes) (POS markets) (POS in) (POS thousands) (POS of) (POS OTC) (POS issues) (POS .)) (TOP (POS Most) (POS of) (POS the) (POS complaints) (POS about) (POS unanswered) (POS phone) (POS calls) (POS came) (POS from) (POS regional) (POS brokers) (POS rather) (POS than) (POS individual) (POS investors) (POS .)) (TOP (POS Mr.) (POS King) (POS of) (POS Robinson-Humphrey) (POS and) (POS others) (POS were) (POS quick) (POS to) (POS add) (POS that) (POS they) (POS believe) (POS the) (POS problem) (POS stemmed) (POS more) (POS from) (POS traders) (POS ') (POS inability) (POS to) (POS handle) (POS the) (POS volume) (POS of) (POS calls) (POS ,) (POS rather) (POS than) (POS a) (POS deliberate) (POS attempt) (POS to) (POS avoid) (POS making) (POS trades) (POS .)) (TOP (POS The) (POS subject) (POS is) (POS a) (POS sore) (POS one) (POS for) (POS Nasdaq) (POS and) (POS its) (POS market-making) (POS companies) (POS ,) (POS which) (POS were) (POS widely) (POS criticized) (POS two) (POS years) (POS ago) (POS following) (POS complaints) (POS from) (POS investors) (POS who) (POS could) (POS n't) (POS reach) (POS their) (POS brokers) (POS or) (POS trade) (POS in) (POS the) (POS chaos) (POS of) (POS the) (POS crash) (POS .)) (TOP (POS Peter) (POS DaPuzzo) (POS ,) (POS head) (POS of) (POS retail) (POS equity) (POS trading) (POS at) (POS Shearson) (POS Lehman) (POS Hutton) (POS ,) (POS declared) (POS :) (POS ``) (POS It) (POS was) (POS the) (POS last) (POS hour) (POS of) (POS trading) (POS on) (POS a) (POS Friday) (POS .)) (TOP (POS There) (POS were) (POS too) (POS many) (POS phones) (POS ringing) (POS and) (POS too) (POS many) (POS things) (POS happening) (POS to) (POS expect) (POS market) (POS makers) (POS to) (POS be) (POS as) (POS efficient) (POS as) (POS robots) (POS .)) (TOP(S(S(NP(PRP It))(VP(VBD was)(ADJP(RB n't)(JJ intentional))))(, ,)(S(NP(PRP we))(VP(VBD were)(ADJP(RB all)(JJ busy))))(. .)('' ''))) (TOP (POS James) (POS Tarantino) (POS ,) (POS head) (POS of) (POS OTC) (POS trading) (POS at) (POS Hambrecht) (POS &) (POS Quist) (POS in) (POS San) (POS Francisco) (POS ,) (POS said) (POS ,) (POS ``) (POS It) (POS was) (POS just) (POS like) (POS two) (POS years) (POS ago) (POS .)) (TOP(S(S(NP(NN Everybody))(VP(VBD was)(VP(VBG trying)(S(VP(TO to)(VP(VBP do)(NP(DT the)(JJ same)(NN thing))(PP(IN at)(NP(DT the)(JJ same)(NN time)))))))))(. .)('' ''))) (TOP (POS Jeremiah) (POS Mullins) (POS ,) (POS the) (POS OTC) (POS trading) (POS chief) (POS at) (POS Dean) (POS Witter) (POS Reynolds) (POS in) (POS New) (POS York) (POS ,) (POS said) (POS proudly) (POS that) (POS his) (POS company) (POS executed) (POS every) (POS order) (POS it) (POS received) (POS by) (POS the) (POS close) (POS of) (POS trading) (POS .)) (TOP (POS But) (POS ,) (POS he) (POS added) (POS ,) (POS ``) (POS you) (POS can) (POS only) (POS take) (POS one) (POS call) (POS at) (POS a) (POS time) (POS .) (POS '')) (TOP (POS Market) (POS makers) (POS keep) (POS supplies) (POS of) (POS stock) (POS on) (POS hand) (POS to) (POS maintain) (POS orderly) (POS trading) (POS when) (POS imbalances) (POS occur) (POS .)) (TOP (POS On) (POS days) (POS like) (POS Friday) (POS ,) (POS that) (POS means) (POS they) (POS must) (POS buy) (POS shares) (POS from) (POS sellers) (POS when) (POS no) (POS one) (POS else) (POS is) (POS willing) (POS to) (POS .)) (TOP(S(SBAR(WHADVP(WRB When))(S(NP(NN selling))(VP(VBZ is)(ADJP(RB so)(JJ frenzied)))))(, ,)(NP(NNS prices))(VP(VB fall)(ADJP(RB steeply)(CC and)(JJ fast)))(. .))) (TOP (POS Two) (POS years) (POS ago) (POS ,) (POS faced) (POS with) (POS the) (POS possibility) (POS of) (POS heavy) (POS losses) (POS on) (POS the) (POS stocks) (POS in) (POS their) (POS inventories) (POS ,) (POS market) (POS makers) (POS themselves) (POS began) (POS dumping) (POS shares) (POS ,) (POS exacerbating) (POS the) (POS slide) (POS in) (POS OTC) (POS stock) (POS prices) (POS .)) (TOP(S(PP(IN On)(NP(NNP Friday)(PRN(, ,)(S(NP(DT some)(NN market)(NNS makers))(VP(VBD were)(VP(VBG selling)(ADVP(RB again)))))(, ,))(NNS traders)))(VP(VBD said))(. .))) (TOP (POS But) (POS ,) (POS with) (POS profits) (POS sagging) (POS on) (POS Wall) (POS Street) (POS since) (POS the) (POS crash) (POS ,) (POS companies) (POS have) (POS kept) (POS smaller) (POS share) (POS stockpiles) (POS on) (POS hand) (POS .)) (TOP (POS Mr.) (POS Tarantino) (POS of) (POS Hambrecht) (POS &) (POS Quist) (POS said) (POS some) (POS prices) (POS fell) (POS without) (POS trades) (POS taking) (POS place) (POS ,) (POS as) (POS market) (POS makers) (POS kept) (POS dropping) (POS the) (POS prices) (POS at) (POS which) (POS they) (POS would) (POS buy) (POS shares) (POS .)) (TOP(SINV(`` ``)(S(NP(NN Everyone))(VP(VBD was)(NP(VBG hitting)(NN everyone))(RB else)(VP(VBZ 's)(NP(NN bid)))))(, ,)('' '')(NP(NP(PRP he))(VP(VBD said)))(. .))) (TOP (POS So) (POS ,) (POS while) (POS OTC) (POS companies) (POS incurred) (POS losses) (POS on) (POS Friday) (POS ,) (POS trading) (POS officials) (POS said) (POS the) (POS damage) (POS was) (POS n't) (POS as) (POS bad) (POS as) (POS it) (POS was) (POS in) (POS 1987) (POS .)) (TOP (POS ``) (POS Two) (POS years) (POS ago) (POS we) (POS were) (POS carrying) (POS huge) (POS inventories) (POS and) (POS that) (POS was) (POS the) (POS big) (POS culprit) (POS .)) (TOP (POS I) (POS do) (POS n't) (POS know) (POS of) (POS anyone) (POS carrying) (POS big) (POS inventories) (POS now) (POS ,) (POS '') (POS said) (POS Mr.) (POS King) (POS of) (POS Robinson-Humphrey) (POS .)) (TOP (POS Tony) (POS Cecin) (POS ,) (POS head) (POS of) (POS equity) (POS trading) (POS at) (POS Piper) (POS ,) (POS Jaffray) (POS &) (POS Hopwood) (POS in) (POS Minneapolis) (POS ,) (POS said) (POS that) (POS Piper) (POS Jaffray) (POS actually) (POS made) (POS money) (POS on) (POS Friday) (POS .)) (TOP (POS It) (POS helped) (POS that) (POS his) (POS inventory) (POS is) (POS a) (POS third) (POS smaller) (POS now) (POS than) (POS it) (POS was) (POS two) (POS years) (POS ago) (POS ,) (POS he) (POS said) (POS .)) (TOP (POS Joseph) (POS Hardiman) (POS ,) (POS president) (POS of) (POS the) (POS National) (POS Association) (POS of) (POS Securities) (POS Dealers) (POS ,) (POS which) (POS oversees) (POS the) (POS Nasdaq) (POS computerized) (POS trading) (POS system) (POS ,) (POS said) (POS that) (POS despite) (POS the) (POS rush) (POS of) (POS selling) (POS ,) (POS he) (POS never) (POS considered) (POS the) (POS situation) (POS an) (POS ``) (POS emergency) (POS .) (POS '')) (TOP(SINV(`` ``)(S(NP(NP(DT The)(NN pace))(PP(IN of)(NP(NN trading))))(VP(VBD was)(ADJP(JJ orderly))))(, ,)('' '')(NP(NP(PRP he))(VP(VBD said)))(. .))) (TOP (POS Nasdaq) (POS 's) (POS Small) (POS Order) (POS Execution) (POS System) (POS ``) (POS worked) (POS beautifully) (POS ,) (POS '') (POS as) (POS did) (POS the) (POS automated) (POS system) (POS for) (POS larger) (POS trades) (POS ,) (POS according) (POS to) (POS Mr.) (POS Hardiman) (POS .)) (TOP (POS Nevertheless) (POS ,) (POS the) (POS shock) (POS of) (POS another) (POS steep) (POS plunge) (POS in) (POS stock) (POS prices) (POS undoubtedly) (POS will) (POS shake) (POS many) (POS investors) (POS ') (POS confidence) (POS .)) (TOP (POS In) (POS the) (POS past) (POS ,) (POS the) (POS OTC) (POS market) (POS thrived) (POS on) (POS a) (POS firm) (POS base) (POS of) (POS small-investor) (POS participation) (POS .)) (TOP (POS Because) (POS Nasdaq) (POS 's) (POS trading) (POS volume) (POS has) (POS n't) (POS returned) (POS to) (POS pre-crash) (POS levels) (POS ,) (POS traders) (POS and) (POS OTC) (POS market) (POS officials) (POS hope) (POS the) (POS damage) (POS wo) (POS n't) (POS be) (POS permanent) (POS .)) (TOP(S(CC But)(NP(PRP they))(VP(VBP are)(VP(VBN worried)))(. .))) (TOP (POS ``) (POS We) (POS were) (POS just) (POS starting) (POS to) (POS get) (POS the) (POS public) (POS 's) (POS confidence) (POS back) (POS ,) (POS '') (POS lamented) (POS Mr.) (POS Mullins) (POS of) (POS Dean) (POS Witter) (POS .)) (TOP (POS More) (POS troubling) (POS is) (POS the) (POS prospect) (POS that) (POS the) (POS overall) (POS collapse) (POS in) (POS stock) (POS prices) (POS could) (POS permanently) (POS erode) (POS the) (POS base) (POS of) (POS small-investor) (POS support) (POS the) (POS OTC) (POS market) (POS was) (POS struggling) (POS to) (POS rebuild) (POS in) (POS the) (POS wake) (POS of) (POS the) (POS October) (POS 1987) (POS crash) (POS .)) (TOP (POS Mr.) (POS Cecin) (POS of) (POS Piper) (POS Jaffray) (POS says) (POS some) (POS action) (POS from) (POS government) (POS policy) (POS makers) (POS would) (POS allay) (POS investor) (POS fears) (POS .)) (TOP (POS It) (POS wo) (POS n't) (POS take) (POS much) (POS more) (POS to) (POS ``) (POS scare) (POS the) (POS hell) (POS out) (POS of) (POS retail) (POS investors) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP (POS The) (POS sellers) (POS on) (POS Friday) (POS came) (POS from) (POS all) (POS corners) (POS of) (POS the) (POS OTC) (POS market) (POS --) (POS big) (POS and) (POS small) (POS institutional) (POS investors) (POS ,) (POS as) (POS well) (POS as) (POS individual) (POS investors) (POS and) (POS market) (POS makers) (POS .)) (TOP (POS But) (POS grateful) (POS traders) (POS said) (POS the) (POS sell) (POS orders) (POS generally) (POS ranged) (POS from) (POS 20,000) (POS shares) (POS to) (POS 50,000) (POS shares) (POS ,) (POS compared) (POS with) (POS blocks) (POS of) (POS 500,000) (POS shares) (POS or) (POS more) (POS two) (POS years) (POS ago) (POS .)) (TOP (POS Shearson) (POS 's) (POS Mr.) (POS DaPuzzo) (POS said) (POS retail) (POS investors) (POS nervously) (POS sold) (POS stock) (POS Friday) (POS and) (POS never) (POS returned) (POS to) (POS bargain-hunt) (POS .)) (TOP (POS Institutional) (POS investors) (POS ,) (POS which) (POS had) (POS been) (POS selling) (POS stock) (POS throughout) (POS last) (POS week) (POS to) (POS lock) (POS in) (POS handsome) (POS gains) (POS made) (POS through) (POS the) (POS third) (POS quarter) (POS ,) (POS were) (POS calmer) (POS .)) (TOP (POS ``) (POS We) (POS had) (POS a) (POS good) (POS amount) (POS of) (POS selling) (POS from) (POS institutions) (POS ,) (POS but) (POS not) (POS as) (POS much) (POS panic) (POS ,) (POS '') (POS Mr.) (POS DaPuzzo) (POS said) (POS .)) (TOP (POS ``) (POS If) (POS they) (POS could) (POS n't) (POS sell) (POS ,) (POS some) (POS of) (POS them) (POS put) (POS the) (POS shares) (POS back) (POS on) (POS the) (POS shelf) (POS .) (POS '')) (TOP (POS In) (POS addition) (POS ,) (POS he) (POS said) (POS ,) (POS some) (POS bigger) (POS institutional) (POS investors) (POS placed) (POS bids) (POS to) (POS buy) (POS some) (POS OTC) (POS stocks) (POS whose) (POS prices) (POS were) (POS beaten) (POS down) (POS .)) (TOP (POS In) (POS addition) (POS ,) (POS Mr.) (POS DaPuzzo) (POS said) (POS computer-guided) (POS program) (POS selling) (POS of) (POS OTC) (POS stocks) (POS in) (POS the) (POS Russell) (POS Index) (POS of) (POS 2000) (POS small) (POS stocks) (POS and) (POS the) (POS Standard) (POS &) (POS Poor) (POS 's) (POS 500-stock) (POS Index) (POS sent) (POS occasional) (POS ``) (POS waves) (POS ``) (POS through) (POS the) (POS market) (POS .)) (TOP(S(NP(NP(NNP Nasdaq)(POS 's))(JJS biggest)(NNS stocks))(VP(VBD were)(VP(VBN hammered)))(. .))) (TOP (POS The) (POS Nasdaq) (POS 100) (POS Index) (POS of) (POS the) (POS largest) (POS nonfinancial) (POS issues) (POS ,) (POS including) (POS the) (POS big) (POS OTC) (POS technology) (POS issues) (POS ,) (POS tumbled) (POS 4.2) (POS %) (POS ,) (POS or) (POS 19.76) (POS ,) (POS to) (POS 449.33) (POS .)) (TOP (POS The) (POS Nasdaq) (POS Financial) (POS Index) (POS of) (POS giant) (POS insurance) (POS and) (POS banking) (POS stocks) (POS dropped) (POS 2) (POS %) (POS ,) (POS or) (POS 9.31) (POS ,) (POS to) (POS 462.98) (POS .)) (TOP(S(NP(DT The)(NNP OTC)(NN market))(VP(VBZ has)(ADVP(RB only))(NP(DT a)(NN handful))(PP(IN of)(NP(JJ takeover-related)(NNS stocks))))(. .))) (TOP(S(CC But)(NP(PRP they))(VP(VBD fell)(ADVP(RB sharply)))(. .))) (TOP (POS McCaw) (POS Cellular) (POS Communications) (POS ,) (POS for) (POS instance) (POS ,) (POS has) (POS offered) (POS to) (POS buy) (POS LIN) (POS Broadcasting) (POS as) (POS well) (POS as) (POS Metromedia) (POS 's) (POS New) (POS York) (POS City) (POS cellular) (POS telephone) (POS interests) (POS ,) (POS and) (POS in) (POS a) (POS separate) (POS transaction) (POS ,) (POS sell) (POS certain) (POS McCaw) (POS properties) (POS to) (POS Contel) (POS Cellular) (POS .)) (TOP(S(NP(NNP McCaw))(VP(VBD lost)(NP(NP(CD 8)(NN %))(, ,)(CC or)(NP(CD 3)(CD 1\/2)))(, ,)(PP(TO to)(NP(CD 40))))(. .))) (TOP(S(NP(NNP LIN)(NNP Broadcasting))(, ,)(VP(VBD dropped)(NP(QP(CD 5)(CD 1\/2))(, ,)(CC or)(NP(CD 5)(NN %)))(, ,)(PP(TO to)(NP(QP(CD 107)(CD 1\/2)))))(. .))) (TOP(S(NP(NP(DT The)(NN turnover))(PP(IN in)(NP(DT both)(NNS issues))))(VP(VBD was)(ADJP(RB roughly)(JJ normal)))(. .))) (TOP (POS On) (POS a) (POS day) (POS when) (POS negative) (POS takeover-related) (POS news) (POS did) (POS n't) (POS sit) (POS well) (POS with) (POS investors) (POS ,) (POS Commercial) (POS Intertech) (POS ,) (POS a) (POS maker) (POS of) (POS engineered) (POS metal) (POS parts) (POS ,) (POS said) (POS Haas) (POS &) (POS Partners) (POS advised) (POS it) (POS that) (POS it) (POS does) (POS n't) (POS plan) (POS to) (POS pursue) (POS its) (POS previously) (POS reported) (POS $) (POS 27.50-a-share) (POS bid) (POS to) (POS buy) (POS the) (POS company) (POS .)) (TOP(S(NP(NNP Commercial)(NNP Intertech))(VP(VBD plummeted)(NP(QP(CD 6)(TO to)(CD 26))))(. .))) (TOP(S(NP(NP(DT The)(NNS issues))(PP(IN of)(NP(NP(NP(NNS companies))(PP(IN with)(NP(NNS ties))))(PP(TO to)(NP(NP(DT the)(NN junk))(NN bond)(NN market))))))(ADVP(RB also))(VP(VBD tumbled)(NP(NNP Friday)))(. .))) (TOP (POS On) (POS the) (POS OTC) (POS market) (POS ,) (POS First) (POS Executive) (POS ,) (POS a) (POS big) (POS buyer) (POS of) (POS the) (POS high-risk) (POS ,) (POS high-yield) (POS issues) (POS ,) (POS slid) (POS 2) (POS to) (POS 12) (POS 1\/4) (POS .)) (TOP (POS Among) (POS other) (POS OTC) (POS issues) (POS ,) (POS Intel) (POS ,) (POS dropped) (POS 2) (POS 1\/8) (POS to) (POS 33) (POS 7\/8) (POS ;) (POS Laidlaw) (POS Transportation) (POS lost) (POS 1) (POS 1\/8) (POS to) (POS 19) (POS 1\/2) (POS ;) (POS the) (POS American) (POS depositary) (POS receipts) (POS of) (POS Jaguar) (POS were) (POS off) (POS 1\/4) (POS to) (POS 10) (POS 1\/4) (POS ;) (POS MCI) (POS Communications) (POS slipped) (POS 2) (POS 1\/4) (POS to) (POS 43) (POS 1\/2) (POS ;) (POS Apple) (POS Computer) (POS fell) (POS 3) (POS to) (POS 45) (POS 3\/4) (POS and) (POS Nike) (POS dropped) (POS 2) (POS 1\/4) (POS to) (POS 66) (POS 3\/4) (POS .)) (TOP(NP(NNP Friday)(, ,)(NNP October)(CD 13)(, ,)(CD 1989))) (TOP (POS The) (POS key) (POS U.S.) (POS and) (POS foreign) (POS annual) (POS interest) (POS rates) (POS below) (POS are) (POS a) (POS guide) (POS to) (POS general) (POS levels) (POS but) (POS do) (POS n't) (POS always) (POS represent) (POS actual) (POS transactions) (POS .)) (TOP(INTJ(JJ PRIME)(NNP RATE)(: :))) (TOP(FRAG(NP(QP(CD 10)(CD 1\/2))(NN %))(. .))) (TOP(S(NP(NP(NP(DT The)(NN base)(NN rate))(PP(IN on)(NP(JJ corporate)(NNS loans))))(PP(IN at)(NP(JJ large)(NNP U.S.)(NN money))))(VP(VBP center)(NP(JJ commercial)(NNS banks)))(. .))) (TOP(NP(NNP FEDERAL)(NNS FUNDS)(: :))) (TOP (POS 8) (POS 13\/16) (POS %) (POS high) (POS ,) (POS 8) (POS 1\/2) (POS %) (POS low) (POS ,) (POS 8) (POS 5\/8) (POS %) (POS near) (POS closing) (POS bid) (POS ,) (POS 8) (POS 3\/4) (POS %) (POS offered) (POS .)) (TOP (POS Reserves) (POS traded) (POS among) (POS commercial) (POS banks) (POS for) (POS overnight) (POS use) (POS in) (POS amounts) (POS of) (POS $) (POS 1) (POS million) (POS or) (POS more) (POS .)) (TOP(FRAG(NP(NN Source))(: :)(NP(NNP Fulton)(NNP Prebon))(PRN(-LRB- -LRB-)(NP(NNP U.S.A)(. .))(-RRB- -RRB-))(NP(NNP Inc))(. .))) (TOP(INTJ(JJ DISCOUNT)(NNP RATE)(: :))) (TOP(FRAG(ADJP(CD 7)(NN %))(. .))) (TOP(S(NP(NP(DT The)(NN charge))(PP(IN on)(NP(NNS loans))))(VP(TO to)(NP(JJ depository)(NNS institutions))(PP(IN by)(NP(DT the)(NNP New)(NNP York)(NNP Federal)(NNP Reserve)(NNP Bank))))(. .))) (TOP(INTJ(JJ CALL)(NNP MONEY)(: :))) (TOP(S(NP(QP(CD 9)(CD 3\/4))(NN %))(PP(TO to)(NP(CD 10)(NN %)))(. .))) (TOP(S(NP(NP(DT The)(NN charge))(PP(IN on)(NP(NP(NNS loans))(PP(TO to)(NP(NP(NNS brokers))(PP(IN on)(NP(NN stock))))))))(VP(VB exchange)(NP(NN collateral)))(. .))) (TOP(S(NP(JJ COMMERCIAL)(NN PAPER))(VP(VBN placed)(ADVP(RB directly))(PP(IN by)(NP(NP(NNP General)(NNPS Motors))(NNP Acceptance)(NNP Corp.))))(: :))) (TOP (POS 8.60) (POS %) (POS 30) (POS to) (POS 44) (POS days) (POS ;) (POS 8.55) (POS %) (POS 45) (POS to) (POS 59) (POS days) (POS ;) (POS 8.375) (POS %) (POS 60) (POS to) (POS 79) (POS days) (POS ;) (POS 8.50) (POS %) (POS 80) (POS to) (POS 89) (POS days) (POS ;) (POS 8.25) (POS %) (POS 90) (POS to) (POS 119) (POS days) (POS ;) (POS 8.125) (POS %) (POS 120) (POS to) (POS 149) (POS days) (POS ;) (POS 8) (POS %) (POS 150) (POS to) (POS 179) (POS days) (POS ;) (POS 7.625) (POS %) (POS 180) (POS to) (POS 270) (POS days) (POS .)) (TOP(INTJ(JJ COMMERCIAL)(NNP PAPER)(: :))) (TOP(S(NP(JJ High-grade)(JJ unsecured)(NNS notes))(VP(VBN sold)(PP(IN through)(NP(NP(NNS dealers))(PP(IN by)(NP(NP(NP(JJ major)(NNS corporations))(PP(IN in)(NP(NNS multiples))))(PP(IN of)(NP($ $)(CD 1,000))))))))(: :))) (TOP(FRAG(NP(CD 8.65)(NN %))(NP(CD 30)(NNS days))(: ;)(NP(CD 8.55)(NN %))(NP(CD 60)(NNS days))(: ;)(NP(CD 8.55)(NN %))(NP(CD 90)(NNS days))(. .))) (TOP(S(NP(NNS CERTIFICATES))(PP(IN OF)(NP(NN DEPOSIT)))(: :))) (TOP (POS 8.15) (POS %) (POS one) (POS month) (POS ;) (POS 8.15) (POS %) (POS two) (POS months) (POS ;) (POS 8.13) (POS %) (POS three) (POS months) (POS ;) (POS 8.11) (POS %) (POS six) (POS months) (POS ;) (POS 8.08) (POS %) (POS one) (POS year) (POS .)) (TOP (POS Average) (POS of) (POS top) (POS rates) (POS paid) (POS by) (POS major) (POS New) (POS York) (POS banks) (POS on) (POS primary) (POS new) (POS issues) (POS of) (POS negotiable) (POS C.D.s) (POS ,) (POS usually) (POS on) (POS amounts) (POS of) (POS $) (POS 1) (POS million) (POS and) (POS more) (POS .)) (TOP(S(NP(DT The)(JJ minimum)(NN unit))(VP(VBZ is)(NP($ $)(CD 100,000)))(. .))) (TOP(S(NP(JJ Typical)(NNS rates))(PP(IN in)(NP(DT the)(JJ secondary)(NN market)))(: :))) (TOP(FRAG(NP(CD 8.65)(NN %))(NP(CD one)(NN month))(: ;)(NP(CD 8.65)(NN %))(NP(CD three)(NNS months))(: ;)(NP(CD 8.55)(NN %))(NP(CD six)(NNS months))(. .))) (TOP(NP(NP(NNS BANKERS))(NNPS ACCEPTANCES)(: :))) (TOP (POS 8.52) (POS %) (POS 30) (POS days) (POS ;) (POS 8.37) (POS %) (POS 60) (POS days) (POS ;) (POS 8.15) (POS %) (POS 90) (POS days) (POS ;) (POS 7.98) (POS %) (POS 120) (POS days) (POS ;) (POS 7.92) (POS %) (POS 150) (POS days) (POS ;) (POS 7.80) (POS %) (POS 180) (POS days) (POS .)) (TOP(S(NP(NP(JJ Negotiable)(, ,)(JJ bank-backed)(NN business))(NN credit)(NNS instruments))(ADVP(RB typically))(VP(VBG financing)(NP(DT an)(NN import)(NN order)))(. .))) (TOP(NP(NNP LONDON)(JJ LATE)(NNPS EURODOLLARS)(: :))) (TOP (POS 8) (POS 13\/16) (POS %) (POS to) (POS 8) (POS 11\/16) (POS %) (POS one) (POS month) (POS ;) (POS 8) (POS 13\/16) (POS %) (POS to) (POS 8) (POS 11\/16) (POS %) (POS two) (POS months) (POS ;) (POS 8) (POS 13\/16) (POS %) (POS to) (POS 8) (POS 11\/16) (POS %) (POS three) (POS months) (POS ;) (POS 8) (POS 3\/4) (POS %) (POS to) (POS 8) (POS 5\/8) (POS %) (POS four) (POS months) (POS ;) (POS 8) (POS 11\/16) (POS %) (POS to) (POS 8) (POS 9\/16) (POS %) (POS five) (POS months) (POS ;) (POS 8) (POS 5\/8) (POS %) (POS to) (POS 8) (POS 1\/2) (POS %) (POS six) (POS months) (POS .)) (TOP(S(NP(NNP LONDON)(NNP INTERBANK))(VP(VBN OFFERED)(NP(NP(NNS RATES))(PRN(-LRB- -LRB-)(NP(NNP LIBOR))(-RRB- -RRB-))(: :))))) (TOP (POS 8) (POS 3\/4) (POS %) (POS one) (POS month) (POS ;) (POS 8) (POS 3\/4) (POS %) (POS three) (POS months) (POS ;) (POS 8) (POS 9\/16) (POS %) (POS six) (POS months) (POS ;) (POS 8) (POS 9\/16) (POS %) (POS one) (POS year) (POS .)) (TOP (POS The) (POS average) (POS of) (POS interbank) (POS offered) (POS rates) (POS for) (POS dollar) (POS deposits) (POS in) (POS the) (POS London) (POS market) (POS based) (POS on) (POS quotations) (POS at) (POS five) (POS major) (POS banks) (POS .)) (TOP(NP(JJ FOREIGN)(JJ PRIME)(NNPS RATES)(: :))) (TOP (POS Canada) (POS 13.50) (POS %) (POS ;) (POS Germany) (POS 8.50) (POS %) (POS ;) (POS Japan) (POS 4.875) (POS %) (POS ;) (POS Switzerland) (POS 8.50) (POS %) (POS ;) (POS Britain) (POS 15) (POS %) (POS .)) (TOP(S(S(NP(DT These)(NN rate)(NNS indications))(VP(VBP are)(RB n't)(ADJP(RB directly)(JJ comparable))))(: ;)(NP(NN lending)(NNS practices))(VP(VBP vary)(ADVP(RB widely))(PP(IN by)(NP(NN location))))(. .))) (TOP(NP(NNP TREASURY)(NNPS BILLS)(: :))) (TOP (POS Results) (POS of) (POS the) (POS Tuesday) (POS ,) (POS October) (POS 10) (POS ,) (POS 1989) (POS ,) (POS auction) (POS of) (POS short-term) (POS U.S.) (POS government) (POS bills) (POS ,) (POS sold) (POS at) (POS a) (POS discount) (POS from) (POS face) (POS value) (POS in) (POS units) (POS of) (POS $) (POS 10,000) (POS to) (POS $) (POS 1) (POS million) (POS :)) (TOP(FRAG(NP(CD 7.63)(NN %))(NP(CD 13)(NNS weeks))(: ;)(NP(CD 7.60)(NN %))(NP(CD 26)(NNS weeks))(. .))) (TOP(NP(NP(NP(NNP FEDERAL)(NNP HOME))(NNP LOAN)(NP(NNP MORTGAGE)(NNP CORP))(. .))(PRN(-LRB- -LRB-)(NP(NNP Freddie)(NNP Mac))(-RRB- -RRB-))(: :))) (TOP(S(NP(NP(VBN Posted)(NNS yields))(PP(IN on)(NP(JJ 30-year)(NN mortgage))))(VP(NNS commitments)(PP(IN for)(NP(NP(NN delivery))(PP(IN within)(NP(CD 30)(NNS days))))))(. .))) (TOP (POS 9.91) (POS %) (POS ,) (POS standard) (POS conventional) (POS fixedrate) (POS mortgages) (POS ;) (POS 7.875) (POS %) (POS ,) (POS 2) (POS %) (POS rate) (POS capped) (POS one-year) (POS adjustable) (POS rate) (POS mortgages) (POS .)) (TOP(FRAG(NP(NN Source))(: :)(NP(NNP Telerate)(NNPS Systems)(NNP Inc))(. .))) (TOP(NP(NP(NNP FEDERAL)(NNP NATIONAL))(NNP MORTGAGE)(NNP ASSOCIATION)(PRN(-LRB- -LRB-)(NP(NNP Fannie)(NNP Mae))(-RRB- -RRB-))(: :))) (TOP (POS Posted) (POS yields) (POS on) (POS 30) (POS year) (POS mortgage) (POS commitments) (POS for) (POS delivery) (POS within) (POS 30) (POS days) (POS -LRB-) (POS priced) (POS at) (POS par) (POS -RRB-)) (TOP (POS 9.86) (POS %) (POS ,) (POS standard) (POS conventional) (POS fixed-rate) (POS mortgages) (POS ;) (POS 8.85) (POS %) (POS ,) (POS 6\/2) (POS rate) (POS capped) (POS one-year) (POS adjustable) (POS rate) (POS mortgages) (POS .)) (TOP(FRAG(NP(NN Source))(: :)(NP(NNP Telerate)(NNPS Systems)(NNP Inc))(. .))) (TOP(FRAG(NP(NNP MERRILL)(NNP LYNCH))(NP(NNP READY)(NNPS ASSETS)(NNP TRUST))(: :))) (TOP(FRAG(ADJP(CD 8.33)(NN %))(. .))) (TOP (POS Annualized) (POS average) (POS rate) (POS of) (POS return) (POS after) (POS expenses) (POS for) (POS the) (POS past) (POS 30) (POS days) (POS ;) (POS not) (POS a) (POS forecast) (POS of) (POS future) (POS returns) (POS .)) (TOP (POS Pension) (POS funds) (POS ,) (POS insurers) (POS and) (POS other) (POS behemoths) (POS of) (POS the) (POS investing) (POS world) (POS said) (POS they) (POS began) (POS scooping) (POS up) (POS stocks) (POS during) (POS Friday) (POS 's) (POS market) (POS rout) (POS .)) (TOP(S(CC And)(NP(PRP they))(VP(VBP plan)(S(VP(TO to)(VP(VB buy)(NP(JJR more)(NN today))))))(. .))) (TOP (POS Rightly) (POS or) (POS wrongly) (POS ,) (POS many) (POS giant) (POS institutional) (POS investors) (POS appear) (POS to) (POS be) (POS fighting) (POS the) (POS latest) (POS war) (POS by) (POS applying) (POS the) (POS lesson) (POS they) (POS learned) (POS in) (POS the) (POS October) (POS 1987) (POS crash) (POS :) (POS Buying) (POS at) (POS the) (POS bottom) (POS pays) (POS off) (POS .)) (TOP (POS To) (POS be) (POS sure) (POS ,) (POS big) (POS investors) (POS might) (POS put) (POS away) (POS their) (POS checkbooks) (POS in) (POS a) (POS hurry) (POS if) (POS stocks) (POS open) (POS sharply) (POS lower) (POS today) (POS .)) (TOP(S(NP(PRP They))(VP(MD could)(RB still)(VP(VB panic)(CC and)(VP(VB bail)(PRT(RP out))(PP(IN of)(NP(DT the)(NN market))))))(. .))) (TOP (POS But) (POS their) (POS 1987) (POS performance) (POS indicates) (POS that) (POS they) (POS wo) (POS n't) (POS abandon) (POS stocks) (POS unless) (POS conditions) (POS get) (POS far) (POS worse) (POS .)) (TOP (POS ``) (POS Last) (POS time) (POS ,) (POS we) (POS got) (POS rewarded) (POS for) (POS going) (POS out) (POS and) (POS buying) (POS stocks) (POS when) (POS the) (POS panic) (POS was) (POS the) (POS worst) (POS ,) (POS '') (POS said) (POS John) (POS W.) (POS Rogers) (POS ,) (POS president) (POS of) (POS Chicago-based) (POS Ariel) (POS Capital) (POS Management) (POS Inc.) (POS ,) (POS which) (POS manages) (POS $) (POS 1.1) (POS billion) (POS of) (POS stocks) (POS .)) (TOP (POS Mr.) (POS Rogers) (POS spent) (POS half) (POS his) (POS cash) (POS on) (POS hand) (POS Friday) (POS for) (POS ``) (POS our) (POS favorite) (POS stocks) (POS that) (POS have) (POS fallen) (POS apart) (POS .) (POS '')) (TOP(S(S(NP(PRP He))(VP(VBZ expects)(S(VP(TO to)(VP(VB invest)(NP(DT the)(NN rest))(PP(IN if)(NP(DT the)(NN market))))))))(VP(VBZ weakens)(ADJP(JJ further)))(. .))) (TOP (POS Denver-based) (POS portfolio) (POS manager) (POS James) (POS Craig) (POS was) (POS n't) (POS daunted) (POS when) (POS Friday) (POS 's) (POS rout) (POS shaved) (POS $) (POS 40) (POS million) (POS from) (POS the) (POS value) (POS of) (POS the) (POS $) (POS 752) (POS million) (POS Janus) (POS Fund) (POS he) (POS oversees) (POS .)) (TOP (POS ``) (POS I) (POS waited) (POS to) (POS make) (POS sure) (POS all) (POS the) (POS program) (POS trades) (POS had) (POS kicked) (POS through) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP(S(ADVP(RB Then))(NP(PRP he))(VP(VBD jumped)(PP(IN into)(NP(DT the)(NN market))))(: :))) (TOP(SINV(`` ``)(S(NP(PRP I))(VP(VBD spent)(NP(QP($ $)(CD 30)(CD million)))(PP(IN in)(NP(DT the)(JJ last)(NN half-hour)))))(. .)('' ''))) (TOP(S(NP(JJ Other)(NN money)(NNS managers))(ADVP(RB also))(VP(VBD opened)(NP(PRP$ their)(NNS wallets)))(. .))) (TOP (POS ``) (POS I) (POS was) (POS buying) (POS at) (POS the) (POS close) (POS -LRB-) (POS Friday) (POS -RRB-) (POS and) (POS I) (POS 'll) (POS be) (POS buying) (POS again) (POS because) (POS I) (POS know) (POS we) (POS 're) (POS getting) (POS good) (POS value) (POS ,) (POS '') (POS said) (POS Frederick) (POS A.) (POS Moran) (POS ,) (POS president) (POS of) (POS Moran) (POS Asset) (POS Management) (POS Inc.) (POS ,) (POS Greenwich) (POS ,) (POS Conn) (POS .)) (TOP(SINV(`` ``)(S(NP(EX There))(VP(VBZ is)(NP(NP(DT no)(NN justification))(PP(IN on)(NP(DT the)(JJ fundamental)(NN level))))(PP(IN for)(NP(DT this)(NN crash)))))(. .)('' ''))) (TOP (POS Unlike) (POS mutual) (POS funds) (POS ,) (POS which) (POS can) (POS be) (POS forced) (POS to) (POS sell) (POS stockholdings) (POS when) (POS investors) (POS rush) (POS to) (POS withdraw) (POS money) (POS ,) (POS big) (POS investors) (POS such) (POS as) (POS pension) (POS funds) (POS and) (POS insurance) (POS companies) (POS can) (POS decide) (POS to) (POS ride) (POS out) (POS market) (POS storms) (POS without) (POS jettisoning) (POS stock) (POS .)) (TOP (POS Most) (POS often) (POS ,) (POS they) (POS do) (POS just) (POS that) (POS ,) (POS because) (POS stocks) (POS have) (POS proved) (POS to) (POS be) (POS the) (POS best-performing) (POS long-term) (POS investment) (POS ,) (POS attracting) (POS about) (POS $) (POS 1) (POS trillion) (POS from) (POS pension) (POS funds) (POS alone) (POS .)) (TOP (POS ``) (POS If) (POS you) (POS bought) (POS after) (POS the) (POS crash) (POS ,) (POS you) (POS did) (POS very) (POS very) (POS well) (POS off) (POS the) (POS bottom) (POS ,) (POS '') (POS said) (POS Stephen) (POS B.) (POS Timbers) (POS ,) (POS chief) (POS investment) (POS officer) (POS of) (POS Chicago-based) (POS Kemper) (POS Financial) (POS Services) (POS Inc) (POS .)) (TOP (POS The) (POS $) (POS 56) (POS billion) (POS California) (POS Public) (POS Employees) (POS Retirement) (POS System) (POS ,) (POS for) (POS one) (POS ,) (POS added) (POS $) (POS 1) (POS billion) (POS to) (POS its) (POS stock) (POS portfolio) (POS two) (POS years) (POS ago) (POS .)) (TOP (POS ``) (POS The) (POS last) (POS crash) (POS taught) (POS institutional) (POS investors) (POS that) (POS they) (POS have) (POS to) (POS be) (POS long-term) (POS holders) (POS ,) (POS and) (POS that) (POS they) (POS ca) (POS n't) (POS react) (POS to) (POS short-term) (POS events) (POS ,) (POS good) (POS or) (POS bad) (POS ,) (POS '') (POS said) (POS Stephen) (POS L.) (POS Nesbitt) (POS ,) (POS senior) (POS vice) (POS president) (POS for) (POS the) (POS pension) (POS consultants) (POS Wilshire) (POS Associates) (POS in) (POS Santa) (POS Monica) (POS ,) (POS Calif) (POS .)) (TOP (POS ``) (POS Those) (POS that) (POS pulled) (POS out) (POS -LRB-) (POS of) (POS stocks) (POS -RRB-) (POS regretted) (POS it) (POS ,) (POS '') (POS he) (POS said) (POS ,) (POS ``) (POS so) (POS I) (POS doubt) (POS you) (POS 'll) (POS see) (POS any) (POS significant) (POS changes) (POS '') (POS in) (POS institutional) (POS portfolios) (POS as) (POS a) (POS result) (POS of) (POS Friday) (POS 's) (POS decline) (POS .)) (TOP (POS Stocks) (POS ,) (POS as) (POS measured) (POS by) (POS the) (POS Standard) (POS &) (POS Poor) (POS 's) (POS 500-stock) (POS index) (POS ,) (POS have) (POS been) (POS stellar) (POS performers) (POS this) (POS year) (POS ,) (POS rising) (POS 27.97) (POS %) (POS before) (POS Friday) (POS 's) (POS plunge) (POS ,) (POS excluding) (POS dividends) (POS .)) (TOP (POS Even) (POS Friday) (POS 's) (POS slump) (POS leaves) (POS investors) (POS ahead) (POS more) (POS than) (POS 20) (POS %) (POS ,) (POS well) (POS above) (POS the) (POS annual) (POS average) (POS for) (POS stocks) (POS over) (POS several) (POS decades) (POS .)) (TOP (POS ``) (POS You) (POS could) (POS go) (POS down) (POS 400) (POS points) (POS and) (POS still) (POS have) (POS a) (POS good) (POS year) (POS in) (POS the) (POS market) (POS ,) (POS '') (POS said) (POS James) (POS D.) (POS Awad) (POS ,) (POS president) (POS of) (POS New) (POS York-based) (POS BMI) (POS Capital) (POS Corp) (POS .)) (TOP (POS Mr.) (POS Awad) (POS ,) (POS however) (POS ,) (POS worries) (POS that) (POS the) (POS market) (POS ``) (POS could) (POS go) (POS down) (POS 800) (POS or) (POS 900) (POS points) (POS in) (POS the) (POS next) (POS few) (POS days) (POS .)) (TOP(S(NP(PRP It))(VP(MD can)(VP(VB happen)(SBAR(IN before)(S(S(NP(PRP you))(VP(MD can)(VP(VB turn)(PRT(RP around)))))(. .)('' ''))))))) (TOP (POS He) (POS said) (POS he) (POS discerns) (POS many) (POS parallels) (POS with) (POS 1987) (POS ,) (POS including) (POS the) (POS emphasis) (POS on) (POS takeover) (POS stocks) (POS and) (POS the) (POS re-emergence) (POS of) (POS computerized) (POS program) (POS trading) (POS .)) (TOP (POS ``) (POS The) (POS only) (POS thing) (POS you) (POS do) (POS n't) (POS have) (POS ,) (POS '') (POS he) (POS said) (POS ,) (POS ``) (POS is) (POS the) (POS `) (POS portfolio) (POS insurance) (POS ') (POS phenomenon) (POS overlaid) (POS on) (POS the) (POS rest) (POS .) (POS '')) (TOP (POS Most) (POS institutional) (POS investors) (POS have) (POS abandoned) (POS the) (POS portfolio) (POS insurance) (POS hedging) (POS technique) (POS ,) (POS which) (POS is) (POS widely) (POS thought) (POS to) (POS have) (POS worsened) (POS the) (POS 1987) (POS crash) (POS .)) (TOP (POS Not) (POS really) (POS insurance) (POS ,) (POS this) (POS tactic) (POS was) (POS designed) (POS to) (POS soften) (POS the) (POS blow) (POS of) (POS declining) (POS stock) (POS prices) (POS and) (POS generate) (POS an) (POS offsetting) (POS profit) (POS by) (POS selling) (POS waves) (POS of) (POS S&P) (POS futures) (POS contracts) (POS .)) (TOP (POS In) (POS its) (POS severest) (POS test) (POS ,) (POS the) (POS $) (POS 60) (POS billion) (POS of) (POS portfolio) (POS insurance) (POS in) (POS effect) (POS in) (POS the) (POS 1987) (POS crash) (POS did) (POS n't) (POS work) (POS ,) (POS as) (POS stock) (POS buyers) (POS disappeared) (POS and) (POS stock) (POS and) (POS futures) (POS prices) (POS became) (POS disconnected) (POS .)) (TOP(S(ADVP(RB Even)(PP(IN without)(NP(NN portfolio)(NN insurance))))(, ,)(NP(NN market)(NNS conditions))(VP(VBD were)(SBAR(S(NP(JJ grim)(NNP Friday)(, ,)(NN money)(NNS managers))(VP(VBD said)))))(. .))) (TOP (POS Neil) (POS Weisman) (POS ,) (POS whose) (POS New) (POS York-based) (POS Chilmark) (POS Capital) (POS Partners) (POS had) (POS converted) (POS 85) (POS %) (POS of) (POS its) (POS $) (POS 220) (POS million) (POS investment) (POS pool) (POS to) (POS cash) (POS in) (POS recent) (POS months) (POS ,) (POS said) (POS he) (POS was) (POS besieged) (POS by) (POS Wall) (POS Street) (POS firms) (POS Friday) (POS asking) (POS him) (POS to) (POS take) (POS stock) (POS off) (POS their) (POS hands) (POS .)) (TOP (POS ``) (POS We) (POS got) (POS calls) (POS from) (POS big) (POS block) (POS houses) (POS asking) (POS us) (POS if) (POS we) (POS want) (POS to) (POS make) (POS bids) (POS on) (POS anything) (POS ,) (POS '') (POS said) (POS Mr.) (POS Weisman) (POS ,) (POS who) (POS ,) (POS happy) (POS with) (POS his) (POS returns) (POS on) (POS investments) (POS chalked) (POS up) (POS earlier) (POS ,) (POS declined) (POS the) (POS offers) (POS .)) (TOP (POS Mr.) (POS Weisman) (POS predicts) (POS stocks) (POS will) (POS appear) (POS to) (POS stabilize) (POS in) (POS the) (POS next) (POS few) (POS days) (POS before) (POS declining) (POS again) (POS ,) (POS trapping) (POS more) (POS investors) (POS .)) (TOP(SINV(`` ``)(S(NP(PRP I))(VP(VBP think)(SBAR(S(NP(PRP it))(VP(MD will)(VP(VB be)(NP(NP(DT a)(NN rigor))(NNP(N mortis))(NN rally))))))))(, ,)('' '')(NP(NP(PRP he))(VP(VBD said)))(. .))) (TOP (POS Meanwhile) (POS ,) (POS Friday) (POS brought) (POS a) (POS reprieve) (POS for) (POS money) (POS managers) (POS whose) (POS investment) (POS styles) (POS had) (POS put) (POS them) (POS at) (POS odds) (POS with) (POS the) (POS market) (POS rally) (POS .)) (TOP (POS Especially) (POS gleeful) (POS were) (POS the) (POS short) (POS sellers) (POS ,) (POS who) (POS have) (POS been) (POS pounded) (POS by) (POS this) (POS year) (POS 's) (POS market) (POS climb) (POS .)) (TOP (POS The) (POS shorts) (POS sell) (POS borrowed) (POS shares) (POS ,) (POS hoping) (POS to) (POS profit) (POS by) (POS replacing) (POS them) (POS later) (POS at) (POS a) (POS lower) (POS price) (POS .)) (TOP (POS The) (POS nation) (POS 's) (POS largest) (POS short-selling) (POS operation) (POS is) (POS Feshbach) (POS Brothers) (POS ,) (POS Palo) (POS Alto) (POS ,) (POS Calif.) (POS ,) (POS which) (POS said) (POS last) (POS May) (POS that) (POS its) (POS short) (POS positions) (POS had) (POS shown) (POS losses) (POS of) (POS 10) (POS %) (POS for) (POS the) (POS year) (POS up) (POS to) (POS that) (POS point) (POS .)) (TOP(S(NP(PDT All)(DT that))(ADVP(RB now))(VP(VBZ has)(VP(VBN changed)))(. .))) (TOP (POS ``) (POS We) (POS 're) (POS ahead) (POS for) (POS the) (POS year) (POS because) (POS of) (POS Friday) (POS ,) (POS '') (POS said) (POS the) (POS firm) (POS 's) (POS Kurt) (POS Feshbach) (POS .)) (TOP(S(`` ``)(S(NP(PRP We))(VP(VBP 're)(RB not)(VP(VBG making)(NP(DT a)(NN killing)))))(, ,)(CC but)(NP(PRP we))(VP(VBD had)(NP(DT a)(JJ good)(NN day)))(. .))) (TOP (POS Food) (POS and) (POS Drug) (POS Administration) (POS spokesman) (POS Jeff) (POS Nesbit) (POS said) (POS the) (POS agency) (POS has) (POS turned) (POS over) (POS evidence) (POS in) (POS a) (POS criminal) (POS investigation) (POS concerning) (POS Vitarine) (POS Pharmaceuticals) (POS Inc.) (POS to) (POS the) (POS U.S.) (POS Attorney) (POS 's) (POS office) (POS in) (POS Baltimore) (POS .)) (TOP (POS Neither) (POS Vitarine) (POS nor) (POS any) (POS of) (POS the) (POS Springfield) (POS Gardens) (POS ,) (POS N.Y.) (POS ,) (POS company) (POS 's) (POS officials) (POS or) (POS employees) (POS have) (POS been) (POS charged) (POS with) (POS any) (POS crimes) (POS .)) (TOP (POS Vitarine) (POS won) (POS approval) (POS to) (POS market) (POS a) (POS version) (POS of) (POS a) (POS blood) (POS pressure) (POS medicine) (POS but) (POS acknowledged) (POS that) (POS it) (POS substituted) (POS a) (POS SmithKline) (POS Beecham) (POS PLC) (POS product) (POS as) (POS its) (POS own) (POS in) (POS tests) (POS .)) (TOP (POS Mr.) (POS Nesbit) (POS also) (POS said) (POS the) (POS FDA) (POS has) (POS asked) (POS Bolar) (POS Pharmaceutical) (POS Co.) (POS to) (POS recall) (POS at) (POS the) (POS retail) (POS level) (POS its) (POS urinary) (POS tract) (POS antibiotic) (POS .)) (TOP (POS But) (POS so) (POS far) (POS the) (POS company) (POS has) (POS n't) (POS complied) (POS with) (POS that) (POS request) (POS ,) (POS the) (POS spokesman) (POS said) (POS .)) (TOP (POS Bolar) (POS ,) (POS the) (POS subject) (POS of) (POS a) (POS criminal) (POS investigation) (POS by) (POS the) (POS FDA) (POS and) (POS the) (POS Inspector) (POS General) (POS 's) (POS office) (POS of) (POS the) (POS Health) (POS and) (POS Human) (POS Services) (POS Department) (POS ,) (POS only) (POS agreed) (POS to) (POS recall) (POS two) (POS strengths) (POS of) (POS its) (POS version) (POS of) (POS Macrodantin) (POS ``) (POS as) (POS far) (POS down) (POS as) (POS direct) (POS customers) (POS ,) (POS mostly) (POS wholesalers) (POS ,) (POS '') (POS Mr.) (POS Nesbit) (POS said) (POS .)) (TOP (POS Bolar) (POS ,) (POS of) (POS Copiague) (POS ,) (POS N.Y.) (POS ,) (POS earlier) (POS began) (POS a) (POS voluntary) (POS recall) (POS of) (POS both) (POS its) (POS 100) (POS milligram) (POS and) (POS 50) (POS milligram) (POS versions) (POS of) (POS the) (POS drug) (POS .)) (TOP (POS The) (POS FDA) (POS has) (POS said) (POS it) (POS presented) (POS evidence) (POS it) (POS uncovered) (POS to) (POS the) (POS company) (POS indicating) (POS that) (POS Bolar) (POS substituted) (POS the) (POS brand-name) (POS product) (POS for) (POS its) (POS own) (POS to) (POS gain) (POS government) (POS approval) (POS to) (POS sell) (POS generic) (POS versions) (POS of) (POS Macrodantin) (POS .)) (TOP (POS Bolar) (POS has) (POS denied) (POS that) (POS it) (POS switched) (POS the) (POS brand-name) (POS product) (POS for) (POS its) (POS own) (POS in) (POS such) (POS testing) (POS .)) (TOP (POS The) (POS West) (POS German) (POS retailer) (POS ASKO) (POS Deutsche) (POS Kaufhaus) (POS AG) (POS plans) (POS to) (POS challenge) (POS the) (POS legality) (POS of) (POS a) (POS widely) (POS employed) (POS anti-takeover) (POS defense) (POS of) (POS companies) (POS in) (POS the) (POS Netherlands) (POS .)) (TOP (POS The) (POS eventual) (POS court) (POS decision) (POS could) (POS become) (POS a) (POS landmark) (POS in) (POS Dutch) (POS corporate) (POS law) (POS because) (POS the) (POS lawsuit) (POS ASKO) (POS plans) (POS to) (POS file) (POS would) (POS be) (POS the) (POS first) (POS to) (POS challenge) (POS the) (POS entire) (POS principle) (POS and) (POS practice) (POS of) (POS companies) (POS issuing) (POS voting) (POS preferred) (POS shares) (POS to) (POS management-controlled) (POS trusts) (POS to) (POS dilute) (POS voting) (POS power) (POS of) (POS common) (POS stockholders) (POS .)) (TOP (POS Up) (POS to) (POS now) (POS only) (POS specific) (POS aspects) (POS of) (POS these) (POS defenses) (POS have) (POS been) (POS challenged) (POS ,) (POS though) (POS unsuccessfully) (POS ,) (POS ASKO) (POS 's) (POS Dutch) (POS lawyers) (POS noted) (POS .)) (TOP (POS Should) (POS the) (POS courts) (POS uphold) (POS the) (POS validity) (POS of) (POS this) (POS type) (POS of) (POS defense) (POS ,) (POS ASKO) (POS will) (POS then) (POS ask) (POS the) (POS court) (POS to) (POS overturn) (POS such) (POS a) (POS vote-diluting) (POS maneuver) (POS recently) (POS deployed) (POS by) (POS Koninklijke) (POS Ahold) (POS NV) (POS .)) (TOP (POS ASKO) (POS says) (POS the) (POS Dutch-based) (POS international) (POS food) (POS retailer) (POS had) (POS n't) (POS reasonable) (POS grounds) (POS to) (POS issue) (POS preferred) (POS stock) (POS to) (POS a) (POS friendly) (POS trust) (POS and) (POS thus) (POS dilute) (POS the) (POS worth) (POS and) (POS voting) (POS power) (POS of) (POS ASKO) (POS and) (POS other) (POS shareholders) (POS .)) (TOP (POS Speaking) (POS through) (POS its) (POS Dutch) (POS lawyers) (POS ,) (POS ASKO) (POS also) (POS disclosed) (POS it) (POS holds) (POS a) (POS 15) (POS %) (POS stake) (POS in) (POS Ahold) (POS .)) (TOP (POS It) (POS was) (POS previously) (POS thought) (POS ASKO) (POS held) (POS a) (POS 13.6) (POS %) (POS stake) (POS that) (POS was) (POS accumulated) (POS since) (POS July) (POS .)) (TOP (POS A) (POS spokesman) (POS for) (POS Ahold) (POS said) (POS his) (POS company) (POS is) (POS confident) (POS of) (POS its) (POS own) (POS position) (POS and) (POS the) (POS propriety) (POS of) (POS the) (POS preferred-share) (POS issue) (POS .)) (TOP (POS He) (POS termed) (POS ASKO) (POS 's) (POS legal) (POS actions) (POS as) (POS ``) (POS unproductive) (POS '') (POS to) (POS international) (POS cooperation) (POS among) (POS European) (POS retailers) (POS .)) (TOP (POS Chase) (POS Manhattan) (POS Bank) (POS Chairman) (POS Willard) (POS Butcher) (POS is) (POS a) (POS conservative) (POS banker) (POS and) (POS a) (POS loyal) (POS Republican) (POS ,) (POS but) (POS on) (POS Friday) (POS morning) (POS he) (POS had) (POS few) (POS kind) (POS words) (POS for) (POS President) (POS Bush) (POS 's) (POS economic) (POS policy-making) (POS .)) (TOP (POS ``) (POS There) (POS are) (POS some) (POS very) (POS significant) (POS issues) (POS out) (POS there) (POS ,) (POS such) (POS as) (POS the) (POS fiscal) (POS deficit) (POS ,) (POS the) (POS trade) (POS deficit) (POS ,) (POS our) (POS relations) (POS with) (POS Japan) (POS ,) (POS that) (POS have) (POS to) (POS be) (POS the) (POS subject) (POS of) (POS major) (POS initiatives) (POS ,) (POS '') (POS he) (POS said) (POS in) (POS an) (POS interview) (POS .)) (TOP(S(`` ``)(S(NP(PRP I))(VP(MD 'd)(VP(VB like)(S(VP(TO to)(VP(VB see)(NP(DT that)(NN initiative))))))))(, ,)(CC and)(NP(PRP I))(VP(VBP have)(ADVP(RB n't)))(. .))) (TOP(S(S(NP(EX There))(VP(VBZ is)(ADVP(RB n't))(NP(DT a)(JJ big)(NN shot))))(, ,)(NP(DT an)(NN agenda))(. .)('' ''))) (TOP(S(NP(DT A)(JJ few)(NNS hours))(ADVP(RB later))(, ,)(NP(DT the)(NN stock)(NN market))(VP(VBD dropped)(NP(CD 190)(NNS points)))(. .))) (TOP (POS Politicians) (POS tried) (POS to) (POS finger) (POS each) (POS other) (POS for) (POS the) (POS blame) (POS ,) (POS although) (POS many) (POS analysts) (POS doubt) (POS that) (POS Washington) (POS was) (POS singly) (POS responsible) (POS for) (POS Wall) (POS Street) (POS 's) (POS woes) (POS .)) (TOP (POS But) (POS Mr.) (POS Butcher) (POS 's) (POS comments) (POS make) (POS one) (POS thing) (POS clear) (POS :) (POS Some) (POS on) (POS Wall) (POS Street) (POS wonder) (POS if) (POS anyone) (POS is) (POS in) (POS charge) (POS of) (POS economic) (POS policy) (POS .)) (TOP(S(VP(VB Consider)(NP(DT this)))(: :))) (TOP (POS --) (POS By) (POS 11:59) (POS p.m.) (POS tonight) (POS ,) (POS President) (POS Bush) (POS must) (POS order) (POS $) (POS 16) (POS billion) (POS of) (POS automatic) (POS ,) (POS across-the-board) (POS cuts) (POS in) (POS government) (POS spending) (POS to) (POS comply) (POS with) (POS the) (POS Gramm-Rudman) (POS budget) (POS law) (POS .)) (TOP (POS The) (POS cuts) (POS are) (POS necessary) (POS because) (POS Congress) (POS and) (POS the) (POS administration) (POS have) (POS failed) (POS to) (POS reach) (POS agreement) (POS on) (POS a) (POS deficit-cutting) (POS bill) (POS .)) (TOP (POS ``) (POS We) (POS simply) (POS do) (POS n't) (POS have) (POS strong) (POS leadership) (POS to) (POS try) (POS to) (POS reduce) (POS the) (POS deficit) (POS and) (POS make) (POS tough) (POS choices) (POS ,) (POS '') (POS House) (POS Budget) (POS Committee) (POS Chairman) (POS Leon) (POS Panetta) (POS -LRB-) (POS D.) (POS ,) (POS Calif) (POS .) (POS -RRB-) (POS said) (POS yesterday) (POS on) (POS NBC) (POS News) (POS 's) (POS ``) (POS Meet) (POS the) (POS Press) (POS .) (POS '')) (TOP (POS --) (POS For) (POS the) (POS last) (POS two) (POS weeks) (POS ,) (POS the) (POS Bush) (POS administration) (POS and) (POS the) (POS Federal) (POS Reserve) (POS have) (POS been) (POS engaged) (POS in) (POS a) (POS semi-public) (POS battle) (POS over) (POS international) (POS economic) (POS policy) (POS .)) (TOP (POS The) (POS administration) (POS has) (POS been) (POS trying) (POS to) (POS push) (POS the) (POS dollar) (POS lower) (POS ;) (POS the) (POS Fed) (POS has) (POS been) (POS resisting) (POS .)) (TOP (POS ``) (POS One) (POS of) (POS the) (POS things) (POS that) (POS continues) (POS to) (POS worry) (POS me) (POS is) (POS this) (POS monetary) (POS warfare) (POS between) (POS the) (POS Treasury) (POS Department) (POS and) (POS the) (POS Federal) (POS Reserve) (POS Board) (POS ,) (POS '') (POS said) (POS Lawrence) (POS Kudlow) (POS ,) (POS a) (POS Bear) (POS ,) (POS Stearns) (POS &) (POS Co.) (POS economist) (POS ,) (POS on) (POS ABC) (POS 's) (POS ``) (POS This) (POS Week) (POS .) (POS '')) (TOP (POS --) (POS The) (POS administration) (POS has) (POS sent) (POS out) (POS confusing) (POS signals) (POS about) (POS its) (POS response) (POS to) (POS a) (POS recent) (POS spate) (POS of) (POS airline) (POS takeovers) (POS .)) (TOP (POS Last) (POS month) (POS ,) (POS Transportation) (POS Secretary) (POS Sam) (POS Skinner) (POS forced) (POS Northwest) (POS Airlines) (POS to) (POS reduce) (POS a) (POS stake) (POS held) (POS by) (POS KLM) (POS Royal) (POS Dutch) (POS Airlines) (POS .)) (TOP (POS But) (POS he) (POS has) (POS since) (POS run) (POS into) (POS opposition) (POS from) (POS the) (POS Treasury) (POS and) (POS the) (POS White) (POS House) (POS over) (POS that) (POS decision) (POS .)) (TOP (POS And) (POS he) (POS has) (POS kept) (POS mum) (POS on) (POS how) (POS his) (POS decision) (POS might) (POS affect) (POS a) (POS bid) (POS for) (POS United) (POS Airlines) (POS ,) (POS which) (POS includes) (POS a) (POS big) (POS stake) (POS by) (POS British) (POS Airways) (POS PLC) (POS .)) (TOP (POS Some) (POS analysts) (POS say) (POS uncertainty) (POS about) (POS Washington) (POS 's) (POS anti-takeover) (POS policy) (POS was) (POS one) (POS reason) (POS that) (POS financing) (POS for) (POS the) (POS United) (POS Airlines) (POS takeover) (POS fell) (POS through) (POS --) (POS the) (POS event) (POS that) (POS triggered) (POS the) (POS market) (POS drop) (POS .)) (TOP (POS In) (POS many) (POS ways) (POS ,) (POS the) (POS backdrop) (POS to) (POS Friday) (POS 's) (POS stock) (POS decline) (POS is) (POS eerily) (POS similar) (POS to) (POS that) (POS of) (POS October) (POS 1987) (POS 's) (POS 508-point) (POS crash) (POS .)) (TOP (POS Then) (POS ,) (POS as) (POS now) (POS ,) (POS the) (POS budget) (POS debate) (POS was) (POS behind) (POS schedule) (POS and) (POS automatic) (POS spending) (POS cuts) (POS were) (POS within) (POS days) (POS of) (POS taking) (POS hold) (POS .)) (TOP (POS The) (POS Treasury) (POS was) (POS locked) (POS in) (POS a) (POS battle) (POS over) (POS international) (POS economic) (POS policy) (POS ,) (POS although) (POS at) (POS that) (POS time) (POS it) (POS was) (POS with) (POS West) (POS German) (POS officials) (POS rather) (POS than) (POS the) (POS Federal) (POS Reserve) (POS .)) (TOP (POS And) (POS concern) (POS about) (POS official) (POS actions) (POS aimed) (POS at) (POS takeovers) (POS --) (POS then) (POS by) (POS the) (POS tax-writing) (POS House) (POS Ways) (POS and) (POS Means) (POS Committee) (POS rather) (POS than) (POS the) (POS Transportation) (POS Department) (POS --) (POS were) (POS making) (POS markets) (POS nervous) (POS .)) (TOP (POS The) (POS 1987) (POS crash) (POS brought) (POS the) (POS Reagan) (POS administration) (POS and) (POS Democratic) (POS lawmakers) (POS to) (POS the) (POS table) (POS for) (POS the) (POS first) (POS budget) (POS summit) (POS ,) (POS resulting) (POS in) (POS a) (POS two-year) (POS plan) (POS to) (POS reduce) (POS the) (POS deficit) (POS by) (POS more) (POS than) (POS $) (POS 76) (POS billion) (POS --) (POS even) (POS though) (POS the) (POS deficit) (POS actually) (POS rose) (POS by) (POS nearly) (POS $) (POS 12) (POS billion) (POS during) (POS that) (POS period) (POS .)) (TOP (POS But) (POS ,) (POS barring) (POS further) (POS drops) (POS in) (POS the) (POS market) (POS this) (POS week) (POS ,) (POS a) (POS similar) (POS outcome) (POS does) (POS n't) (POS seem) (POS likely) (POS this) (POS year) (POS .)) (TOP (POS Lawmakers) (POS and) (POS administration) (POS officials) (POS agree) (POS that) (POS Friday) (POS 's) (POS drop) (POS ,) (POS by) (POS itself) (POS ,) (POS is) (POS n't) (POS enough) (POS to) (POS force) (POS both) (POS sides) (POS back) (POS to) (POS the) (POS table) (POS to) (POS try) (POS to) (POS reach) (POS a) (POS deficit-reduction) (POS agreement) (POS that) (POS would) (POS be) (POS more) (POS serious) (POS and) (POS more) (POS far-reaching) (POS than) (POS last) (POS spring) (POS 's) (POS gimmick-ridden) (POS plan) (POS ,) (POS which) (POS still) (POS is) (POS n't) (POS fully) (POS implemented) (POS .)) (TOP (POS One) (POS of) (POS the) (POS biggest) (POS reasons) (POS that) (POS new) (POS talks) (POS are) (POS n't) (POS likely) (POS to) (POS come) (POS about) (POS is) (POS that) (POS ,) (POS as) (POS everyone) (POS learned) (POS in) (POS 1987) (POS ,) (POS the) (POS economy) (POS and) (POS the) (POS market) (POS can) (POS survive) (POS a) (POS one-day) (POS 508-point) (POS tumble) (POS .)) (TOP (POS ``) (POS Everybody) (POS thought) (POS we) (POS were) (POS looking) (POS at) (POS a) (POS repetition) (POS of) (POS 1929) (POS ,) (POS that) (POS we) (POS were) (POS looking) (POS at) (POS a) (POS recession) (POS ,) (POS '') (POS Rep.) (POS Panetta) (POS said) (POS yesterday) (POS in) (POS an) (POS interview) (POS .)) (TOP(S(`` ``)(NP(DT That))(VP(VBD did)(RB not)(VP(VB happen)))(. .))) (TOP(S(S(NP(PRP They))(VP(VBD learned)(SBAR(S(NP(PRP they))(VP(MD could)(VP(VB survive)(NP(PRP it))(PP(IN without)(NP(JJ much)(NN problem)))))))))(. .)('' ''))) (TOP (POS But) (POS administration) (POS officials) (POS privately) (POS agree) (POS with) (POS Mr.) (POS Panetta) (POS ,) (POS who) (POS said) (POS a) (POS precipitous) (POS drop) (POS this) (POS week) (POS ``) (POS is) (POS going) (POS to) (POS force) (POS the) (POS president) (POS and) (POS Congress) (POS to) (POS take) (POS a) (POS much) (POS harder) (POS look) (POS at) (POS fiscal) (POS policy) (POS .) (POS '')) (TOP(S(PP(IN In)(NP(DT that)(NN case)))(, ,)(NP(EX there))(VP(MD will)(VP(VB be)(CONJP(RB plenty)(IN of))(VP(VB blame)(S(VP(TO to)(VP(VB go)(PRT(RP around))))))))(. .))) (TOP (POS ``) (POS There) (POS is) (POS an) (POS underlying) (POS concern) (POS on) (POS the) (POS part) (POS of) (POS the) (POS American) (POS people) (POS --) (POS and) (POS there) (POS should) (POS be) (POS -) (POS that) (POS the) (POS administration) (POS has) (POS not) (POS gone) (POS far) (POS enough) (POS in) (POS cutting) (POS this) (POS deficit) (POS and) (POS that) (POS Congress) (POS has) (POS been) (POS unwilling) (POS to) (POS cut) (POS what) (POS the) (POS administration) (POS asked) (POS us) (POS to) (POS cut) (POS ,) (POS '') (POS said) (POS Senate) (POS Finance) (POS Committee) (POS Chairman) (POS Lloyd) (POS Bentsen) (POS -LRB-) (POS D.) (POS ,) (POS Texas) (POS -RRB-) (POS .)) (TOP (POS Nevertheless) (POS ,) (POS it) (POS clearly) (POS will) (POS take) (POS more) (POS than) (POS Friday) (POS 's) (POS 190-point) (POS decline) (POS to) (POS overcome) (POS the) (POS bitter) (POS feelings) (POS that) (POS have) (POS developed) (POS between) (POS lawmakers) (POS and) (POS White) (POS House) (POS Budget) (POS Director) (POS Richard) (POS Darman) (POS over) (POS the) (POS capital-gains) (POS fight) (POS .)) (TOP (POS Hill) (POS Democrats) (POS are) (POS particularly) (POS angry) (POS over) (POS Mr.) (POS Bush) (POS 's) (POS claim) (POS that) (POS the) (POS capital-gains) (POS cut) (POS was) (POS part) (POS of) (POS April) (POS 's) (POS budget) (POS accord) (POS and) (POS his) (POS insistence) (POS on) (POS combining) (POS it) (POS with) (POS the) (POS deficit-reduction) (POS legislation) (POS .)) (TOP (POS ``) (POS There) (POS is) (POS no) (POS prospect) (POS of) (POS any) (POS so-called) (POS grand) (POS compromise) (POS or) (POS deal) (POS next) (POS year) (POS because) (POS the) (POS administration) (POS simply) (POS did) (POS n't) (POS live) (POS up) (POS to) (POS this) (POS year) (POS 's) (POS deal) (POS ,) (POS '') (POS Senate) (POS Majority) (POS Leader) (POS George) (POS Mitchell) (POS -LRB-) (POS D.) (POS ,) (POS Maine) (POS -RRB-) (POS said) (POS yesterday) (POS on) (POS CBS) (POS News) (POS 's) (POS ``) (POS Face) (POS the) (POS Nation) (POS .) (POS '')) (TOP (POS During) (POS last) (POS week) (POS 's) (POS maneuverings) (POS on) (POS the) (POS deficit-cutting) (POS bill) (POS and) (POS the) (POS capital-gains) (POS issue) (POS ,) (POS there) (POS were) (POS signs) (POS that) (POS Senate) (POS Republicans) (POS and) (POS the) (POS administration) (POS were) (POS at) (POS odds) (POS .)) (TOP (POS At) (POS the) (POS very) (POS moment) (POS that) (POS Senate) (POS Republicans) (POS were) (POS negotiating) (POS a) (POS deal) (POS to) (POS exclude) (POS capital) (POS gains) (POS from) (POS the) (POS deficit-reduction) (POS legislation) (POS ,) (POS White) (POS House) (POS spokesman) (POS Marlin) (POS Fitzwater) (POS told) (POS reporters) (POS that) (POS it) (POS was) (POS the) (POS president) (POS 's) (POS policy) (POS to) (POS include) (POS it) (POS .)) (TOP (POS When) (POS an) (POS agreement) (POS was) (POS reached) (POS to) (POS strip) (POS capital) (POS gains) (POS from) (POS the) (POS legislation) (POS ,) (POS Oregon) (POS Sen.) (POS Bob) (POS Packwood) (POS ,) (POS the) (POS ranking) (POS GOP) (POS member) (POS of) (POS the) (POS tax-writing) (POS Senate) (POS Finance) (POS Committee) (POS ,) (POS hailed) (POS it) (POS .)) (TOP (POS Asked) (POS if) (POS the) (POS administration) (POS agreed) (POS ,) (POS he) (POS curtly) (POS replied) (POS :) (POS ``) (POS The) (POS adminstration) (POS will) (POS have) (POS to) (POS speak) (POS for) (POS itself) (POS .) (POS '')) (TOP (POS Friday) (POS 's) (POS market) (POS tumble) (POS could) (POS spur) (POS action) (POS on) (POS reconciling) (POS the) (POS House) (POS and) (POS Senate) (POS versions) (POS of) (POS the) (POS deficit-reduction) (POS measure) (POS ,) (POS a) (POS process) (POS that) (POS is) (POS n't) (POS expected) (POS to) (POS begin) (POS until) (POS tomorrow) (POS at) (POS the) (POS soonest) (POS .)) (TOP (POS Senate) (POS Republicans) (POS expressed) (POS the) (POS hope) (POS that) (POS the) (POS House) (POS would) (POS follow) (POS the) (POS lead) (POS of) (POS the) (POS Senate) (POS ,) (POS which) (POS on) (POS Friday) (POS agreed) (POS to) (POS drop) (POS a) (POS variety) (POS of) (POS spending) (POS measures) (POS and) (POS tax) (POS breaks) (POS that) (POS would) (POS have) (POS increased) (POS the) (POS fiscal) (POS 1990) (POS deficit) (POS .)) (TOP (POS ``) (POS The) (POS market) (POS needs) (POS a) (POS strong) (POS signal) (POS that) (POS we) (POS 're) (POS serious) (POS about) (POS deficit) (POS reduction) (POS ,) (POS and) (POS the) (POS best) (POS way) (POS to) (POS do) (POS that) (POS is) (POS for) (POS the) (POS House) (POS of) (POS Representatives) (POS to) (POS strip) (POS their) (POS bill) (POS '') (POS of) (POS similar) (POS provisions) (POS ,) (POS Sen.) (POS Warren) (POS Rudman) (POS -LRB-) (POS R.) (POS ,) (POS N.H) (POS .) (POS -RRB-) (POS .) (POS said) (POS yesterday) (POS .)) (TOP (POS The) (POS White) (POS House) (POS Office) (POS of) (POS Management) (POS and) (POS Budget) (POS ,) (POS whose) (POS calculations) (POS determine) (POS whether) (POS the) (POS Gramm-Rudman) (POS targets) (POS are) (POS met) (POS ,) (POS estimated) (POS that) (POS the) (POS House-passed) (POS deficit-reduction) (POS measure) (POS would) (POS cut) (POS the) (POS fiscal) (POS 1990) (POS shortfall) (POS by) (POS $) (POS 6.2) (POS billion) (POS ,) (POS almost) (POS half) (POS of) (POS the) (POS Congressional) (POS Budget) (POS Office) (POS 's) (POS estimate) (POS of) (POS $) (POS 11.0) (POS billion) (POS .)) (TOP (POS Rep.) (POS Panetta) (POS said) (POS that) (POS OMB) (POS 's) (POS figure) (POS would) (POS still) (POS be) (POS enough) (POS to) (POS avoid) (POS permanent) (POS across-the-board) (POS cuts) (POS ,) (POS but) (POS added) (POS :) (POS ``) (POS We) (POS 're) (POS getting) (POS very) (POS close) (POS to) (POS the) (POS margins) (POS here) (POS .) (POS '')) (TOP (POS No) (POS one) (POS in) (POS Washington) (POS was) (POS willing) (POS to) (POS take) (POS the) (POS blame) (POS for) (POS provoking) (POS Friday) (POS 's) (POS drop) (POS in) (POS the) (POS stock) (POS market) (POS .)) (TOP(S(CC But)(NP(DT some)(NNS players))(VP(VBD were)(ADJP(JJ quick)(S(VP(TO to)(VP(VB seize)(NP(DT the)(NN moment)))))))(. .))) (TOP (POS Before) (POS the) (POS sun) (POS had) (POS set) (POS on) (POS Friday) (POS ,) (POS Richard) (POS Rahn) (POS ,) (POS the) (POS supply-side) (POS chief) (POS economist) (POS of) (POS the) (POS U.S.) (POS Chamber) (POS of) (POS Commerce) (POS ,) (POS issued) (POS a) (POS statement) (POS attributing) (POS the) (POS drop) (POS in) (POS stock) (POS prices) (POS to) (POS the) (POS Senate) (POS decision) (POS to) (POS postpone) (POS action) (POS on) (POS capital) (POS gains) (POS .)) (TOP (POS ``) (POS Investors) (POS ,) (POS who) (POS had) (POS been) (POS holding) (POS assets) (POS in) (POS anticipation) (POS of) (POS a) (POS more) (POS favorable) (POS time) (POS to) (POS sell) (POS ,) (POS were) (POS spooked) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS ``) (POS There) (POS have) (POS been) (POS many) (POS preposterous) (POS reasons) (POS advanced) (POS to) (POS support) (POS a) (POS capital-gains) (POS tax) (POS cut) (POS ,) (POS '') (POS Sen.) (POS Mitchell) (POS said) (POS during) (POS his) (POS television) (POS appearance) (POS ,) (POS ``) (POS but) (POS I) (POS suggest) (POS that) (POS is) (POS perhaps) (POS more) (POS than) (POS any) (POS of) (POS the) (POS others) (POS .)) (TOP (POS The) (POS following) (POS U.S.) (POS Treasury) (POS ,) (POS corporate) (POS and) (POS municipal) (POS offerings) (POS are) (POS tentatively) (POS scheduled) (POS for) (POS sale) (POS this) (POS week) (POS ,) (POS according) (POS to) (POS Dow) (POS Jones) (POS Capital) (POS Markets) (POS Report) (POS :)) (TOP(FRAG(NP(QP($ $)(CD 15.2)(CD billion)))(PP(IN of)(NP(JJ three-month)(CC and)(NP(JJ six-month)(NNS bills))))(. .))) (TOP(S(NP(ADJP Two-year)(NNS notes))(, ,)(VP(VBG refinancing)(PP(IN about)(NP(NP(QP($ $)(CD 9.6)(CD billion)))(PP(IN in)(NP(VBG maturing)(NN debt))))))(. .))) (TOP(FRAG(NP(QP($ $)(CD 9.75)(CD billion)))(PP(IN of)(NP(JJ 52-week)(NNS bills)))(. .))) (TOP(FRAG(NP(NNP Connecticut)(NNP Light))(CC &)(NP(NNP Power)(NNP Co.))(: --))) (TOP(S(NP(NP(QP(CD Three)(CD million))(NNS shares))(PP(IN of)(NP($ $)(CD 25))))(VP(VBN preferred)(, ,)(PP(IN via)(NP(JJ competitive)(NN bidding))))(. .))) (TOP(FRAG(NP(NNP B&H)(NNP Crude))(NP(NNP Carriers)(NNP Ltd.))(: --))) (TOP(S(NP(QP(CD Four)(CD million))(JJ common)(NNS shares))(, ,)(PP(IN via)(NP(NNP Salomon)(NNPS Brothers)(NNP Inc)))(. .))) (TOP(NP(NNP Baldwin)(NP(NNP Technology)(NNP Co.))(: --))) (TOP(S(NP(QP(CD 2.6)(CD million))(NN Class))(NP(DT A)(NNS shares))(, ,)(PP(IN via)(NP(NP(NNP Smith)(NNP Barney))(NNP Harris)(NNP Upham)(CC &)(NNP Co)))(. .))) (TOP(NP(NNP Blockbuster)(NP(NNP Entertainment)(NNP Corp.))(: --))) (TOP (POS $) (POS 250) (POS million) (POS -LRB-) (POS face) (POS amount) (POS -RRB-) (POS Liquid) (POS Yield) (POS Option) (POS Notes) (POS ,) (POS via) (POS Merrill) (POS Lynch) (POS Capital) (POS Markets) (POS .)) (TOP(NP(NNP Chase)(NP(NNP Manhattan)(NNP Corp.))(: --))) (TOP(S(NP(QP(CD 14)(CD million))(JJ common)(NNS shares))(, ,)(PP(IN via)(NP(NNP Goldman)(, ,)(NNP Sachs)(CC &)(NNP Co)))(. .))) (TOP(NP(NNP Comcast)(NNP Corp.)(: --))) (TOP(S(NP(NP(QP($ $)(CD 150)(CD million)))(JJ convertible)(NNS debentures))(, ,)(PP(IN via)(NP(NNP Merrill)(NNP Lynch)))(. .))) (TOP(NP(NNP CSS)(NNPS Industries)(: --))) (TOP(S(NP(QP(CD 1.3)(CD million))(JJ common)(NNS shares))(, ,)(PP(IN via)(NP(NNP Merrill)(NNP Lynch)))(. .))) (TOP(NP(NP(NNP Eastern)(NNPS Utilities))(NNPS Associates)(: --))) (TOP(S(NP(QP(CD 1.5)(CD million))(JJ common)(NNS shares))(, ,)(PP(IN via)(NP(NNP PaineWebber)(NNP Inc)))(. .))) (TOP(S(NP(NNP Employee)(NNP Benefit))(VP(VBZ Plans)(NP(NNP Inc.)(: --))))) (TOP(S(NP(QP(CD Two)(CD million))(JJ common)(NNS shares))(, ,)(PP(IN via)(NP(NP(NNP Dean)(NNP Witter))(NNP Capital)(NNPS Markets)))(. .))) (TOP(NP(NNP Exabyte)(NNP Corp.)(: --))) (TOP(S(NP(CD 2,850,000)(JJ common)(NNS shares))(, ,)(PP(IN via)(NP(NNP Goldman)(NNP Sachs)))(. .))) (TOP(NP(NNP Knowledgeware)(NNP Inc.)(: --))) (TOP(S(NP(QP(CD 2.4)(CD million))(JJ common)(NNS shares))(, ,)(PP(IN via)(NP(NNP Montgomery)(NNPS Securities)))(. .))) (TOP(NP(NNP Oregon)(: --))) (TOP (POS $) (POS 100) (POS million) (POS of) (POS general) (POS obligation) (POS veterans) (POS ') (POS tax) (POS notes) (POS ,) (POS Series) (POS 1989) (POS ,) (POS via) (POS competitive) (POS bid) (POS .)) (TOP(INTJ(NNP Washington)(, ,)(NNP D.C.)(: --))) (TOP (POS $) (POS 200) (POS million) (POS of) (POS 1990) (POS general) (POS obligation) (POS tax) (POS revenue) (POS notes) (POS -LRB-) (POS Series) (POS 1990A) (POS -RRB-) (POS ,) (POS via) (POS competitive) (POS bid) (POS .)) (TOP(FRAG(NP(NNP Virginia)(NNP Public))(NP(NNP School)(NNP Authority))(: --))) (TOP (POS $) (POS 55,730,000) (POS of) (POS school) (POS financing) (POS bonds) (POS ,) (POS 1989) (POS Series) (POS B) (POS -LRB-) (POS 1987) (POS resolution) (POS -RRB-) (POS ,) (POS via) (POS competitive) (POS bid) (POS .)) (TOP(INTJ(NNP Austin)(, ,)(NNP Texas)(: --))) (TOP (POS $) (POS 68,230,000) (POS of) (POS various) (POS bonds) (POS ,) (POS including) (POS $) (POS 32) (POS million) (POS hotel) (POS occupancy) (POS tax) (POS revenue) (POS bonds) (POS ,) (POS Series) (POS 1989A) (POS ,) (POS and) (POS $) (POS 36.23) (POS million) (POS convention) (POS center) (POS revenue) (POS bonds) (POS ,) (POS Series) (POS 1989B) (POS ,) (POS via) (POS a) (POS Morgan) (POS Stanley) (POS &) (POS Co.) (POS group) (POS .)) (TOP(FRAG(NP(NNP California)(NNP Health)(NNPS Facilities))(NP(NNP Financing)(NNP Authority))(: --))) (TOP(S(NP(NP(QP($ $)(CD 144.5)(CD million)))(PP(IN of)(NP(NP(NNP Kaiser)(NNP Permanente))(NN revenue)(NNS bonds))))(, ,)(PP(IN via)(NP(DT a)(NNP PaineWebber)(NN group)))(. .))) (TOP(NP(NNP Connecticut)(: --))) (TOP (POS $) (POS 100) (POS million) (POS of) (POS general) (POS obligation) (POS capital) (POS appreciation) (POS bonds) (POS ,) (POS College) (POS Savings) (POS Plan) (POS ,) (POS 1989) (POS Series) (POS B) (POS ,) (POS via) (POS a) (POS Prudential-Bache) (POS Capital) (POS Funding) (POS group) (POS .)) (TOP(FRAG(NP(NNP Pennsylvania)(NNP Higher))(NP(NNP Education)(NNPS Facilities)(NNP Authority))(: --))) (TOP (POS $) (POS 117) (POS million) (POS of) (POS revenue) (POS bonds) (POS for) (POS Hahnemann) (POS University) (POS ,) (POS Series) (POS 1989) (POS ,) (POS via) (POS a) (POS Merrill) (POS Lynch) (POS group) (POS .)) (TOP(NP(NNP Tennessee)(NP(NNP Valley)(NNP Authority))(: --))) (TOP(S(NP(NP(QP(CD Three)(CD billion)))(PP(IN of)(NP(NN power)(NNS bonds))))(, ,)(PP(IN via)(NP(NNP First)(NNP Boston)(NNP Corp)))(. .))) (TOP(NP(NNP University)(PP(IN of)(NP(NP(NNP Medicine)(CC And)(NNP Dentistry))(PP(IN of)(NP(NNP New)(NNP Jersey)))))(: --))) (TOP(S(NP(NP(QP($ $)(CD 55)(CD million)))(PP(IN of)(NP(NNP Series)(NNP C))))(VP(NNS bonds)(, ,)(PP(IN via)(NP(DT a)(NNP Prudential-Bache)(NN group))))(. .))) (TOP(FRAG(NP(NNP West)(NNP Virginia)(NNPS Parkways))(, ,)(NP(NP(NNP Economic)(NNP Development))(CC And)(NP(NNP Tourism)(NNP Authority)))(: --))) (TOP (POS $) (POS 143) (POS million) (POS of) (POS parkway) (POS revenue) (POS bonds) (POS ,) (POS Series) (POS 1989) (POS ,) (POS via) (POS a) (POS PaineWebber) (POS group) (POS .)) (TOP(FRAG(NP(NNP San)(NNP Antonio))(, ,)(NP(NNP Texas))(: --))) (TOP (POS $) (POS 640) (POS million) (POS of) (POS gas) (POS and) (POS electric) (POS revenue) (POS refunding) (POS bonds) (POS ,) (POS via) (POS a) (POS First) (POS Boston) (POS group) (POS .)) (TOP (POS South) (POS Dakota) (POS Health) (POS &) (POS Education) (POS Facility) (POS Authority) (POS --)) (TOP (POS $) (POS 51.1) (POS million) (POS of) (POS Rapid) (POS City) (POS Regional) (POS Hospital) (POS bonds) (POS ,) (POS via) (POS a) (POS Dougherty) (POS ,) (POS Dawkins) (POS ,) (POS Strand) (POS &) (POS Yost) (POS Inc.) (POS group) (POS .)) (TOP (POS Small) (POS investors) (POS matched) (POS their) (POS big) (POS institutional) (POS brethren) (POS in) (POS anxiety) (POS over) (POS the) (POS weekend) (POS ,) (POS but) (POS most) (POS seemed) (POS to) (POS be) (POS taking) (POS a) (POS philosophical) (POS approach) (POS and) (POS said) (POS they) (POS were) (POS resigned) (POS to) (POS riding) (POS out) (POS the) (POS latest) (POS storm) (POS in) (POS the) (POS stock) (POS market) (POS .)) (TOP (POS ``) (POS I) (POS 'm) (POS not) (POS losing) (POS faith) (POS in) (POS the) (POS market) (POS ,) (POS '') (POS said) (POS Boston) (POS lawyer) (POS Christopher) (POS Sullivan) (POS as) (POS he) (POS watched) (POS the) (POS market) (POS plunge) (POS on) (POS a) (POS big) (POS screen) (POS in) (POS front) (POS of) (POS a) (POS brokerage) (POS firm) (POS .)) (TOP(S(CC But)(NP(PRP he))(VP(VBZ 's)(ADJP(RB not)(RB so)(JJ sure)(PP(IN about)(NP(NN everyone))))(ADVP(RB else)))(. .))) (TOP (POS ``) (POS I) (POS think) (POS on) (POS Monday) (POS the) (POS small) (POS -LRB-) (POS investors) (POS -RRB-) (POS are) (POS going) (POS to) (POS panic) (POS and) (POS sell) (POS ,) (POS '') (POS predicted) (POS Mr.) (POS Sullivan) (POS ,) (POS whose) (POS investments) (POS include) (POS AMR) (POS Corp.) (POS 's) (POS American) (POS Airlines) (POS unit) (POS and) (POS several) (POS mutual) (POS funds) (POS .)) (TOP(S(`` ``)(CC And)(S(NP(PRP I))(VP(VBP think)(SBAR(S(NP(NNS institutions))(VP(VBP are)(VP(VBG going)(S(VP(TO to)(VP(VB come)(SBAR(IN in)(S(CC and)(VP(VB buy))(: ...)))))))))))))) (TOP(S(NP(PRP I))(VP(VBP 'm)(VP(VBG going)(S(VP(TO to)(VP(VB hold)(PRT(RP on)))))))(. .))) (TOP(S(SBAR(IN If)(S(NP(PRP I))(VP(VB sell)(ADVP(RB now)))))(, ,)(S(NP(PRP I))(VP(MD 'll)(VP(VB take)(NP(DT a)(JJ big)(NN loss)))))(. .)('' ''))) (TOP (POS Some) (POS evinced) (POS an) (POS optimism) (POS that) (POS had) (POS been) (POS rewarded) (POS when) (POS they) (POS did) (POS n't) (POS flee) (POS the) (POS market) (POS in) (POS 1987) (POS .)) (TOP (POS ``) (POS Oh) (POS ,) (POS I) (POS bet) (POS it) (POS 'll) (POS be) (POS up) (POS 50) (POS points) (POS on) (POS Monday) (POS ,) (POS '') (POS said) (POS Lucy) (POS Crump) (POS ,) (POS a) (POS 78-year-old) (POS retired) (POS housewife) (POS in) (POS Lexington) (POS ,) (POS Ky) (POS .)) (TOP (POS Mrs.) (POS Crump) (POS said) (POS her) (POS Ashwood) (POS Investment) (POS Club) (POS 's) (POS portfolio) (POS lost) (POS about) (POS one-third) (POS of) (POS its) (POS value) (POS following) (POS the) (POS Black) (POS Monday) (POS crash) (POS ,) (POS ``) (POS but) (POS no) (POS one) (POS got) (POS discouraged) (POS ,) (POS and) (POS we) (POS gained) (POS that) (POS back) (POS --) (POS and) (POS more) (POS .) (POS '')) (TOP (POS At) (POS the) (POS annual) (POS congress) (POS of) (POS the) (POS National) (POS Association) (POS of) (POS Investors) (POS Corp.) (POS at) (POS the) (POS Hyatt) (POS Regency) (POS hotel) (POS in) (POS Minneapolis) (POS ,) (POS the) (POS scene) (POS was) (POS calm) (POS .)) (TOP (POS Some) (POS 500) (POS investors) (POS representing) (POS investor) (POS clubs) (POS from) (POS around) (POS the) (POS U.S.) (POS were) (POS attending) (POS when) (POS the) (POS market) (POS started) (POS to) (POS slide) (POS Friday) (POS .)) (TOP (POS But) (POS Robert) (POS Showalter) (POS ,) (POS an) (POS official) (POS of) (POS the) (POS association) (POS ,) (POS said) (POS no) (POS special) (POS bulletins) (POS or) (POS emergency) (POS meetings) (POS of) (POS the) (POS investors) (POS ') (POS clubs) (POS are) (POS planned) (POS .)) (TOP (POS In) (POS fact) (POS ,) (POS some) (POS of) (POS the) (POS association) (POS 's) (POS members) (POS --) (POS long-term) (POS ,) (POS buy-and-hold) (POS investors) (POS --) (POS welcomed) (POS the) (POS drop) (POS in) (POS prices) (POS .)) (TOP (POS ``) (POS We) (POS hope) (POS to) (POS take) (POS advantage) (POS of) (POS it) (POS ,) (POS '') (POS said) (POS John) (POS Snyder) (POS ,) (POS a) (POS member) (POS of) (POS a) (POS Los) (POS Angeles) (POS investors) (POS ') (POS club) (POS .)) (TOP (POS He) (POS has) (POS four) (POS stocks) (POS in) (POS mind) (POS to) (POS buy) (POS if) (POS the) (POS prices) (POS drop) (POS to) (POS the) (POS level) (POS he) (POS wants) (POS .)) (TOP (POS Not) (POS everyone) (POS is) (POS reacting) (POS so) (POS calmly) (POS ,) (POS however) (POS ,) (POS and) (POS many) (POS wonder) (POS about) (POS the) (POS long-term) (POS implications) (POS of) (POS what) (POS is) (POS widely) (POS viewed) (POS as) (POS the) (POS cause) (POS of) (POS Friday) (POS 's) (POS slide) (POS ,) (POS reluctance) (POS by) (POS banks) (POS to) (POS provide) (POS financing) (POS for) (POS a) (POS buy-out) (POS of) (POS UAL) (POS Corp.) (POS ,) (POS parent) (POS of) (POS United) (POS Airlines) (POS .)) (TOP (POS Marc) (POS Perkins) (POS ,) (POS a) (POS Tampa) (POS ,) (POS Fla.) (POS ,) (POS investment) (POS banker) (POS ,) (POS said) (POS the) (POS market) (POS drop) (POS is) (POS one) (POS of) (POS ``) (POS a) (POS tremendous) (POS number) (POS of) (POS signs) (POS that) (POS the) (POS leveraged) (POS take-out) (POS era) (POS is) (POS ending) (POS .)) (TOP(S(NP(EX There))(VP(VBZ 's)(SBAR(S(NP(NP(DT no)(NN question))(PP(IN that)(NP(EX there))))(VP(VBZ 's)(NP(DT a)(JJ general)(NNP distaste)(PP(IN for)(NP(NN leverage)))(PP(IN among)(NP(NNS lenders))))))))(. .))) (TOP (POS '') (POS Mr.) (POS Perkins) (POS believes) (POS ,) (POS however) (POS ,) (POS that) (POS the) (POS market) (POS could) (POS be) (POS stabilized) (POS if) (POS California) (POS investor) (POS Marvin) (POS Davis) (POS steps) (POS back) (POS in) (POS to) (POS the) (POS United) (POS bidding) (POS with) (POS an) (POS offer) (POS of) (POS $) (POS 275) (POS a) (POS share) (POS .)) (TOP (POS Sara) (POS Albert) (POS ,) (POS a) (POS 34-year-old) (POS Dallas) (POS law) (POS student) (POS ,) (POS says) (POS she) (POS 's) (POS generally) (POS skittish) (POS about) (POS the) (POS stock) (POS market) (POS and) (POS the) (POS takeover) (POS activity) (POS that) (POS seems) (POS to) (POS fuel) (POS it) (POS .)) (TOP (POS ``) (POS I) (POS have) (POS this) (POS feeling) (POS that) (POS it) (POS 's) (POS built) (POS on) (POS sand) (POS ,) (POS '') (POS she) (POS says) (POS ,) (POS that) (POS the) (POS market) (POS rises) (POS ``) (POS but) (POS there) (POS 's) (POS no) (POS foundation) (POS to) (POS it) (POS .) (POS '')) (TOP (POS She) (POS and) (POS her) (POS husband) (POS pulled) (POS most) (POS of) (POS their) (POS investments) (POS out) (POS of) (POS the) (POS market) (POS after) (POS the) (POS 1987) (POS crash) (POS ,) (POS although) (POS she) (POS still) (POS owns) (POS some) (POS Texaco) (POS stock) (POS .)) (TOP (POS Partly) (POS because) (POS of) (POS concern) (POS about) (POS the) (POS economy) (POS and) (POS partly) (POS because) (POS she) (POS recently) (POS quit) (POS her) (POS job) (POS as) (POS a) (POS legal) (POS assistant) (POS to) (POS go) (POS to) (POS school) (POS ,) (POS ``) (POS I) (POS think) (POS at) (POS this) (POS point) (POS we) (POS want) (POS to) (POS be) (POS a) (POS lot) (POS more) (POS liquid) (POS .) (POS '')) (TOP(S(NP(NNS Others))(VP(VBP wonder)(SBAR(WHNP(WHADJP(WRB how)(JJ many))(JJR more))(S(PP(IN of)(NP(DT these)(NNS shocks)))(NP(DT the)(JJ small)(NN investor))(VP(MD can)(VP(VB stand)))(. .)))))) (TOP (POS ``) (POS We) (POS all) (POS assumed) (POS October) (POS '87) (POS was) (POS a) (POS one-time) (POS shot) (POS ,) (POS '') (POS said) (POS San) (POS Francisco) (POS attorney) (POS David) (POS Greenberg) (POS .)) (TOP (POS ``) (POS We) (POS told) (POS the) (POS little) (POS guy) (POS it) (POS could) (POS only) (POS happen) (POS once) (POS in) (POS a) (POS lifetime) (POS ,) (POS come) (POS on) (POS back) (POS .)) (TOP(S(ADVP(RB Now))(S(NP(PRP it))(VP(VBZ 's)(VP(VBG happening)(ADVP(RB again)))))(. .)('' ''))) (TOP (POS Mr.) (POS Greenberg) (POS got) (POS out) (POS just) (POS before) (POS the) (POS 1987) (POS crash) (POS and) (POS ,) (POS to) (POS his) (POS regret) (POS ,) (POS never) (POS went) (POS back) (POS even) (POS as) (POS the) (POS market) (POS soared) (POS .)) (TOP (POS This) (POS time) (POS he) (POS 's) (POS ready) (POS to) (POS buy) (POS in) (POS ``) (POS when) (POS the) (POS panic) (POS wears) (POS off) (POS .) (POS '')) (TOP (POS Still) (POS ,) (POS he) (POS adds) (POS :) (POS ``) (POS We) (POS ca) (POS n't) (POS have) (POS this) (POS kind) (POS of) (POS thing) (POS happen) (POS very) (POS often) (POS .)) (TOP(S(SBAR(WHADVP(WRB When))(S(NP(DT the)(JJ little)(NN guy))(VP(VBZ gets)(ADJP(JJ frightened)))))(, ,)(NP(DT the)(JJ big)(NNS guys))(VP(VBN hurt)(ADVP(RB badly)))(. .))) (TOP(S(NP(NNP Merrill)(NNP Lynch))(VP(MD ca)(RB n't)(VP(VB survive)(SBAR(IN without)(S(NP(DT the)(JJ little)(NN guy))(. .)('' ''))))))) (TOP (POS Small) (POS investors) (POS have) (POS tiptoed) (POS back) (POS into) (POS the) (POS market) (POS following) (POS Black) (POS Monday) (POS ,) (POS but) (POS mostly) (POS through) (POS mutual) (POS funds) (POS .)) (TOP (POS Discount) (POS brokerage) (POS customers) (POS ``) (POS have) (POS been) (POS in) (POS the) (POS market) (POS somewhat) (POS but) (POS not) (POS whole) (POS hog) (POS like) (POS they) (POS were) (POS two) (POS years) (POS ago) (POS ,) (POS '') (POS says) (POS Leslie) (POS Quick) (POS Jr.) (POS ,) (POS chairman) (POS of) (POS the) (POS Quick) (POS &) (POS Reilly) (POS discount) (POS brokerage) (POS firm) (POS .)) (TOP (POS Hugo) (POS Quackenbush) (POS ,) (POS senior) (POS vice) (POS president) (POS at) (POS Charles) (POS Scwhab) (POS Corp.) (POS ,) (POS says) (POS Schwab) (POS customers) (POS ``) (POS have) (POS been) (POS neutral) (POS to) (POS cautious) (POS recently) (POS about) (POS stocks) (POS .) (POS '')) (TOP(S(NP(JJ Individual)(NNS investors))(VP(VBP are)(ADJP(RB still)(JJ angry))(SBAR(IN about)(S(NP(NN program)(NN trading))(, ,)(NP(NNP Mr.)(NNP Quackenbush))(VP(VBZ says))(. .)))))) (TOP (POS Avner) (POS Arbel) (POS ,) (POS a) (POS Cornell) (POS University) (POS finance) (POS professor) (POS ,) (POS says) (POS government) (POS regulators) (POS will) (POS have) (POS to) (POS more) (POS closely) (POS control) (POS program) (POS trading) (POS to) (POS ``) (POS win) (POS back) (POS the) (POS confidence) (POS of) (POS the) (POS small) (POS investor) (POS .) (POS '')) (TOP(S(CC But)(S(NP(PRP it))(VP(VBZ 's)(ADVP(RB not)(RB only))(NP(DT the)(NN stock)(NN market))(SBAR(WHNP(WDT that))(S(VP(VBZ has)(NP(DT some)(JJ small)(NNS investors)))))))(VP(VBN worried))(. .))) (TOP (POS Alan) (POS Helfman) (POS ,) (POS general) (POS sales) (POS manager) (POS of) (POS a) (POS Chrysler) (POS dealership) (POS in) (POS Houston) (POS ,) (POS said) (POS he) (POS and) (POS his) (POS mother) (POS have) (POS some) (POS joint) (POS stock) (POS investments) (POS ,) (POS but) (POS the) (POS overall) (POS economy) (POS is) (POS his) (POS chief) (POS worry) (POS .)) (TOP (POS ``) (POS These) (POS high) (POS rollers) (POS took) (POS a) (POS big) (POS bath) (POS today) (POS ,) (POS '') (POS he) (POS said) (POS in) (POS his) (POS showroom) (POS ,) (POS which) (POS is) (POS within) (POS a) (POS few) (POS miles) (POS of) (POS the) (POS multi-million) (POS dollar) (POS homes) (POS of) (POS some) (POS of) (POS Houston) (POS 's) (POS richest) (POS citizens) (POS .)) (TOP (POS ``) (POS And) (POS I) (POS can) (POS tell) (POS you) (POS that) (POS a) (POS high) (POS roller) (POS is) (POS n't) (POS going) (POS to) (POS come) (POS in) (POS tomorrow) (POS and) (POS buy) (POS a) (POS Chrysler) (POS TC) (POS by) (POS Maserati) (POS .) (POS '')) (TOP(S(CC And)(, ,)(ADVP(RB finally))(, ,)(NP(EX there))(VP(VBD were)(NP(DT the)(NNP(N gloaters))))(. .))) (TOP(S(`` ``)(NP(PRP I))(VP(VBD got)(PRT(RP out))(PP(IN in)(NP(CD 1987))))(. .))) (TOP (POS Everything) (POS ,) (POS '') (POS said) (POS Pascal) (POS Antori) (POS ,) (POS an) (POS Akron) (POS ,) (POS Ohio) (POS ,) (POS plumbing) (POS contractor) (POS who) (POS was) (POS visiting) (POS Chicago) (POS and) (POS stopped) (POS by) (POS Fidelity) (POS Investments) (POS ') (POS LaSalle) (POS Street) (POS office) (POS .)) (TOP(S(`` ``)(NP(PRP I))(ADVP(RB just))(VP(VBN stopped)(PP(IN by)(S(VP(TO to)(VP(VB see)(SBAR(WHADVP(WRB how)(RB much))(S(NP(PRP I))(VP(MD would)(VP(VBP have)(VP(VBD lost)))))))))))(. .)('' ''))) (TOP(SQ(MD Would)(NP(NNP Mr.)(NNP Antori))(RB ever)(VP(VB get)(PRT(RP back))(PP(IN in)))(. ?))) (TOP(SINV(`` ``)(VP(VBP Are)(NP(PRP you)))(NP(NNP(N kidding)))(. !))) (TOP(S(SBAR(WHADVP(WRB When))(S(NP(PRP it))(VP(VBZ comes)(PP(TO to)(NP(NN money))))))(: :)(ADVP(RB Once))(NP(NNP bitten)(, ,)(CD 2,000)(NNS times))(VP(VB shy))(. .))) (TOP(S(NP(NP(DT The)(JJ crowded)(NN field))(PP(IN for)(NP(JJ notebook-sized)(NNS computers))))(VP(VBZ is)(PP(IN about)(S(VP(TO to)(VP(VB become)(NP(NP(DT a)(NN lot))(ADJP(RBR more)(JJ crowded))))))))(. .))) (TOP (POS Compaq) (POS Computer) (POS Corp.) (POS 's) (POS long-awaited) (POS entry) (POS today) (POS into) (POS the) (POS notebook) (POS field) (POS is) (POS expected) (POS to) (POS put) (POS immediate) (POS heat) (POS on) (POS others) (POS in) (POS the) (POS market) (POS ,) (POS especially) (POS Zenith) (POS Electronics) (POS Corp.) (POS ,) (POS the) (POS current) (POS market) (POS leader) (POS ,) (POS and) (POS on) (POS a) (POS swarm) (POS of) (POS promising) (POS start-ups) (POS .)) (TOP (POS Compaq) (POS 's) (POS series) (POS of) (POS notebooks) (POS extends) (POS a) (POS trend) (POS toward) (POS downsizing) (POS in) (POS the) (POS personal) (POS computer) (POS market) (POS .)) (TOP (POS One) (POS manufacturer) (POS already) (POS has) (POS produced) (POS a) (POS clipboard-sized) (POS computer) (POS called) (POS a) (POS notepad) (POS ,) (POS and) (POS two) (POS others) (POS have) (POS introduced) (POS even) (POS smaller) (POS ``) (POS palmtops) (POS .) (POS '')) (TOP (POS But) (POS those) (POS machines) (POS are) (POS still) (POS considered) (POS novelties) (POS ,) (POS with) (POS keyboards) (POS only) (POS a) (POS munchkin) (POS could) (POS love) (POS and) (POS screens) (POS to) (POS match) (POS .)) (TOP (POS Compaq) (POS 's) (POS notebooks) (POS ,) (POS by) (POS contrast) (POS ,) (POS may) (POS be) (POS the) (POS first) (POS in) (POS their) (POS weight) (POS class) (POS not) (POS to) (POS skimp) (POS on) (POS features) (POS found) (POS in) (POS much) (POS bigger) (POS machines) (POS .)) (TOP (POS Analysts) (POS say) (POS they) (POS 're) (POS faster) (POS and) (POS carry) (POS more) (POS memory) (POS than) (POS anything) (POS else) (POS of) (POS their) (POS size) (POS on) (POS the) (POS market) (POS --) (POS and) (POS they) (POS 're) (POS priced) (POS aggressively) (POS at) (POS $) (POS 2,400) (POS to) (POS $) (POS 5,000) (POS .)) (TOP (POS All) (POS of) (POS this) (POS comes) (POS in) (POS a) (POS machine) (POS that) (POS weighs) (POS only) (POS six) (POS pounds) (POS and) (POS fits) (POS comfortably) (POS into) (POS most) (POS briefcases) (POS .)) (TOP (POS In) (POS recent) (POS months) (POS ,) (POS Compaq) (POS 's) (POS competition) (POS ,) (POS including) (POS Zenith) (POS ,) (POS Toshiba) (POS Corp.) (POS ,) (POS Tandy) (POS Corp.) (POS and) (POS NEC) (POS Corp.) (POS all) (POS have) (POS introduced) (POS portables) (POS that) (POS weigh) (POS approximately) (POS the) (POS same) (POS and) (POS that) (POS are) (POS called) (POS notebooks) (POS --) (POS perhaps) (POS misleadingly) (POS .)) (TOP (POS One) (POS analyst) (POS ,) (POS noting) (POS that) (POS most) (POS such) (POS machines) (POS are) (POS about) (POS two) (POS inches) (POS thick) (POS ,) (POS takes) (POS exception) (POS to) (POS the) (POS name) (POS .)) (TOP (POS ``) (POS This) (POS is) (POS n't) (POS quite) (POS a) (POS notebook) (POS --) (POS I) (POS call) (POS it) (POS a) (POS phonebook) (POS ,) (POS '') (POS he) (POS says) (POS .)) (TOP (POS That) (POS ca) (POS n't) (POS be) (POS said) (POS of) (POS the) (POS $) (POS 2,400) (POS notepad) (POS computer) (POS introduced) (POS a) (POS few) (POS weeks) (POS ago) (POS by) (POS GRiD) (POS Systems) (POS Corp.) (POS ,) (POS a) (POS unit) (POS of) (POS Tandy) (POS .)) (TOP (POS Instead) (POS of) (POS a) (POS keyboard) (POS ,) (POS it) (POS features) (POS a) (POS writing) (POS surface) (POS ,) (POS an) (POS electronic) (POS pen) (POS and) (POS the) (POS ability) (POS to) (POS ``) (POS read) (POS '') (POS block) (POS printing) (POS .)) (TOP (POS At) (POS 4) (POS 1\/2) (POS pounds) (POS ,) (POS it) (POS may) (POS be) (POS too) (POS ambitiously) (POS named) (POS ,) (POS but) (POS it) (POS nevertheless) (POS opens) (POS up) (POS the) (POS kind) (POS of) (POS marketing) (POS possibilities) (POS that) (POS make) (POS analysts) (POS froth) (POS .)) (TOP(S(NP(NNP(N Palmtops)))(VP(VBP are)(ADVP(RB n't))(ADVP(RB far)(RB behind)))(. .))) (TOP (POS Atari) (POS Corp.) (POS 's) (POS Portfolio) (POS ,) (POS introduced) (POS in) (POS Europe) (POS two) (POS months) (POS ago) (POS and) (POS in) (POS the) (POS U.S.) (POS in) (POS early) (POS September) (POS ,) (POS weighs) (POS less) (POS than) (POS a) (POS pound) (POS ,) (POS costs) (POS a) (POS mere) (POS $) (POS 400) (POS and) (POS runs) (POS on) (POS three) (POS AA) (POS batteries) (POS ,) (POS yet) (POS has) (POS the) (POS power) (POS to) (POS run) (POS some) (POS spreadsheets) (POS and) (POS word) (POS processing) (POS programs) (POS .)) (TOP (POS Some) (POS critics) (POS ,) (POS however) (POS ,) (POS say) (POS its) (POS ability) (POS to) (POS run) (POS commonplace) (POS programs) (POS is) (POS restricted) (POS by) (POS a) (POS limited) (POS memory) (POS .)) (TOP (POS Poquet) (POS Computer) (POS Corp.) (POS ,) (POS meanwhile) (POS ,) (POS has) (POS introduced) (POS a) (POS much) (POS more) (POS sophisticated) (POS palmtop) (POS that) (POS can) (POS run) (POS Lotus) (POS 1-2-3) (POS and) (POS other) (POS sophisticated) (POS software) (POS programs) (POS ,) (POS but) (POS costs) (POS five) (POS times) (POS as) (POS much) (POS .)) (TOP (POS At) (POS stake) (POS is) (POS what) (POS Mike) (POS Swavely) (POS ,) (POS Compaq) (POS 's) (POS president) (POS of) (POS North) (POS America) (POS operations) (POS ,) (POS calls) (POS ``) (POS the) (POS Holy) (POS Grail) (POS of) (POS the) (POS computer) (POS industry) (POS '') (POS --) (POS the) (POS search) (POS for) (POS ``) (POS a) (POS real) (POS computer) (POS in) (POS a) (POS package) (POS so) (POS small) (POS you) (POS can) (POS take) (POS it) (POS everywhere) (POS .) (POS '')) (TOP(S(S(NP(DT The)(NN market))(VP(VBZ is)(ADJP(RB so)(JJ new))))(, ,)(NP(NN nobody))(VP(VBZ knows)(SBAR(WHADJP(RB yet)(WRB how)(JJ big))(S(NP(PRP it))(VP(MD can)(VP(VB be))))))(. .))) (TOP (POS ``) (POS I) (POS 've) (POS had) (POS a) (POS lot) (POS of) (POS people) (POS trying) (POS to) (POS sell) (POS me) (POS services) (POS to) (POS find) (POS out) (POS how) (POS big) (POS it) (POS is) (POS ,) (POS '') (POS says) (POS Tom) (POS Humphries) (POS ,) (POS director) (POS of) (POS marketing) (POS for) (POS GRiD) (POS .)) (TOP (POS ``) (POS Whether) (POS it) (POS 's) (POS $) (POS 5) (POS billion) (POS or) (POS $) (POS 3.5) (POS billion) (POS ,) (POS it) (POS does) (POS n't) (POS matter) (POS .)) (TOP(S(S(NP(PRP It))(VP(VBZ 's)(ADJP(JJ huge))))(. .)('' ''))) (TOP (POS Consider) (POS the) (POS growth) (POS of) (POS portables) (POS ,) (POS which) (POS now) (POS comprise) (POS 12) (POS %) (POS of) (POS all) (POS personal) (POS computer) (POS sales) (POS .)) (TOP (POS Laptops) (POS --) (POS generally) (POS anything) (POS under) (POS 15) (POS pounds) (POS --) (POS have) (POS become) (POS the) (POS fastest-growing) (POS personal) (POS computer) (POS segment) (POS ,) (POS with) (POS sales) (POS doubling) (POS this) (POS year) (POS .)) (TOP(S(PP(VBG Responding)(PP(TO to)(NP(DT that)(NN demand))))(, ,)(ADVP(RB however))(, ,)(VP(VBZ has)(VP(VBN led)(PP(TO to)(NP(NP(DT a)(NN variety))(PP(IN of)(NP(NNS compromises)))))))(. .))) (TOP(S(ADVP(NP(VBG Making)(NNS computers))(JJR smaller))(ADVP(RB often))(VP(VBZ means)(S(VP(VBG sacrificing)(NP(NN memory)))))(. .))) (TOP (POS It) (POS also) (POS has) (POS precluded) (POS use) (POS of) (POS the) (POS faster) (POS ,) (POS more) (POS powerful) (POS microprocessors) (POS found) (POS in) (POS increasing) (POS numbers) (POS of) (POS desktop) (POS machines) (POS .)) (TOP(S(NP(NN Size)(CC and)(NN weight)(NNS considerations))(ADVP(RB also))(VP(VB have)(NP(JJ limited)(NN screen)(NNS displays)))(. .))) (TOP(S(NP(DT The)(JJ competitive)(NNP(N sniping)))(VP(MD can)(VP(VB get)(ADJP(RB pretty)(JJ petty))(PP(IN at)(NP(NNS times)))))(. .))) (TOP (POS A) (POS Poquet) (POS spokesman) (POS ,) (POS for) (POS example) (POS ,) (POS criticizes) (POS the) (POS Atari) (POS Portfolio) (POS because) (POS it) (POS requires) (POS three) (POS batteries) (POS while) (POS the) (POS Poquet) (POS needs) (POS only) (POS two) (POS .)) (TOP (POS Both) (POS palmtops) (POS are) (POS dismissed) (POS by) (POS notebook) (POS makers) (POS ,) (POS who) (POS argue) (POS that) (POS they) (POS 're) (POS too) (POS small) (POS --) (POS a) (POS problem) (POS Poquet) (POS also) (POS encountered) (POS in) (POS focus) (POS groups) (POS ,) (POS admits) (POS Gerry) (POS Purdy) (POS ,) (POS director) (POS of) (POS marketing) (POS .)) (TOP (POS Poquet) (POS ,) (POS trying) (POS to) (POS avoid) (POS the) (POS ``) (POS gadget) (POS '') (POS label) (POS ,) (POS responded) (POS with) (POS the) (POS tag) (POS line) (POS ,) (POS ``) (POS The) (POS Poquet) (POS PC) (POS --) (POS a) (POS Very) (POS Big) (POS Computer) (POS .) (POS '')) (TOP (POS Despite) (POS the) (POS sniping) (POS ,) (POS few) (POS question) (POS the) (POS inevitability) (POS of) (POS the) (POS move) (POS to) (POS small) (POS machines) (POS that) (POS do) (POS n't) (POS make) (POS compromises) (POS .)) (TOP (POS Toward) (POS that) (POS end) (POS ,) (POS experts) (POS say) (POS the) (POS real) (POS battle) (POS will) (POS take) (POS place) (POS between) (POS center-stage) (POS players) (POS like) (POS Toshiba) (POS ,) (POS Zenith) (POS and) (POS now) (POS Compaq) (POS .)) (TOP (POS Compaq) (POS 's) (POS new) (POS machines) (POS are) (POS considered) (POS a) (POS direct) (POS threat) (POS to) (POS start-up) (POS firms) (POS like) (POS Dynabook) (POS Inc.) (POS ,) (POS which) (POS introduced) (POS in) (POS June) (POS a) (POS computer) (POS that) (POS ,) (POS like) (POS Compaq) (POS 's) (POS ,) (POS uses) (POS an) (POS Intel) (POS 286) (POS microprocessor) (POS and) (POS has) (POS a) (POS hard) (POS disk) (POS drive) (POS .)) (TOP(S(CC But)(NP(DT the)(NNP Dynabook)(NN product))(VP(VBZ is)(ADVP(RB twice))(PP(IN as)(NP(JJ heavy)(CC and)(NNS costs)))(ADVP(RBR more))(PP(IN than)(NP(NNP Compaq)(POS 's))))(. .))) (TOP (POS Compaq) (POS 's) (POS announcement) (POS also) (POS spells) (POS trouble) (POS for) (POS Zenith) (POS ,) (POS which) (POS last) (POS year) (POS had) (POS 28) (POS %) (POS of) (POS the) (POS U.S.) (POS laptop) (POS market) (POS but) (POS recently) (POS agreed) (POS to) (POS sell) (POS its) (POS computer) (POS business) (POS to) (POS Cie.) (POS des) (POS Machines) (POS Bull) (POS ,) (POS the) (POS French) (POS government-owned) (POS computer) (POS maker) (POS .)) (TOP (POS Zenith) (POS holders) (POS will) (POS vote) (POS in) (POS December) (POS on) (POS the) (POS proposed) (POS $) (POS 635) (POS million) (POS sale) (POS ,) (POS a) (POS price) (POS that) (POS could) (POS slip) (POS because) (POS it) (POS is) (POS pegged) (POS to) (POS Zenith) (POS 's) (POS share) (POS and) (POS sales) (POS .)) (TOP(S(NP(NNP Compaq))(VP(VBZ is)(RB already)(VP(VBG taking)(NP(NN aim))(PP(IN at)(NP(NP(NNP Zenith)(POS 's))(NN market)(NN share)))))(. .))) (TOP (POS Rod) (POS Canion) (POS ,) (POS Compaq) (POS 's) (POS president) (POS and) (POS chief) (POS executive) (POS officer) (POS ,) (POS notes) (POS pointedly) (POS that) (POS Zenith) (POS 's) (POS $) (POS 2,000) (POS MinisPort) (POS uses) (POS an) (POS ``) (POS unconventional) (POS '') (POS two-inch) (POS floppy) (POS disk) (POS ,) (POS whereas) (POS Compaq) (POS 's) (POS new) (POS machines) (POS use) (POS the) (POS more) (POS common) (POS 3) (POS 1\/2-inch) (POS disk) (POS .)) (TOP (POS John) (POS P.) (POS Frank) (POS ,) (POS president) (POS of) (POS Zenith) (POS Data) (POS Systems) (POS ,) (POS simply) (POS shrugs) (POS off) (POS such) (POS criticism) (POS ,) (POS noting) (POS that) (POS 3) (POS 1\/2-inch) (POS floppies) (POS were) (POS also) (POS ``) (POS unconventional) (POS '') (POS when) (POS they) (POS first) (POS replaced) (POS five-inch) (POS disks) (POS .)) (TOP (POS ``) (POS We) (POS do) (POS n't) (POS look) (POS at) (POS it) (POS as) (POS not) (POS being) (POS a) (POS standard) (POS ,) (POS we) (POS look) (POS at) (POS it) (POS as) (POS a) (POS new) (POS standard) (POS ,) (POS '') (POS he) (POS argues) (POS .)) (TOP(S(NP(NNS Analysts))(VP(VBP do)(RB n't)(VP(VB see)(NP(PRP it))(PP(IN that)(NP(NN way)))))(. .))) (TOP (POS ``) (POS I) (POS ca) (POS n't) (POS imagine) (POS that) (POS you) (POS 'll) (POS talk) (POS to) (POS anyone) (POS who) (POS wo) (POS n't) (POS tell) (POS you) (POS this) (POS is) (POS dynamite) (POS for) (POS Compaq) (POS and) (POS a) (POS stopper) (POS for) (POS everyone) (POS else) (POS ,) (POS '') (POS says) (POS Gene) (POS Talsky) (POS ,) (POS president) (POS of) (POS Professional) (POS Marketing) (POS Management) (POS Inc) (POS .)) (TOP (POS Adds) (POS Bill) (POS Lempesis) (POS ,) (POS senior) (POS industry) (POS analyst) (POS for) (POS DataQuest) (POS ,) (POS a) (POS high-technology) (POS market) (POS research) (POS firm) (POS :) (POS ``) (POS We) (POS basically) (POS think) (POS that) (POS these) (POS are) (POS very) (POS hot) (POS products) (POS .)) (TOP (POS The) (POS problem) (POS Compaq) (POS is) (POS going) (POS to) (POS have) (POS is) (POS that) (POS they) (POS wo) (POS n't) (POS be) (POS able) (POS to) (POS make) (POS enough) (POS of) (POS them) (POS .) (POS '')) (TOP (POS Compaq) (POS 's) (POS machines) (POS include) (POS the) (POS 3) (POS 1\/2-inch) (POS floppy) (POS disk) (POS drive) (POS ,) (POS a) (POS backlit) (POS screen) (POS that) (POS is) (POS only) (POS 1\/4-inch) (POS thick) (POS and) (POS an) (POS internal) (POS expansion) (POS slot) (POS for) (POS a) (POS modem) (POS --) (POS in) (POS other) (POS words) (POS ,) (POS almost) (POS all) (POS the) (POS capabilities) (POS of) (POS a) (POS typical) (POS office) (POS machine) (POS .)) (TOP (POS Others) (POS undoubtedly) (POS will) (POS follow) (POS ,) (POS but) (POS most) (POS analysts) (POS believe) (POS Compaq) (POS has) (POS at) (POS least) (POS a) (POS six-month) (POS lead) (POS on) (POS the) (POS competition) (POS .)) (TOP (POS Toshiba) (POS 's) (POS line) (POS of) (POS portables) (POS ,) (POS for) (POS example) (POS ,) (POS features) (POS the) (POS T-1000) (POS ,) (POS which) (POS is) (POS in) (POS the) (POS same) (POS weight) (POS class) (POS but) (POS is) (POS much) (POS slower) (POS and) (POS has) (POS less) (POS memory) (POS ,) (POS and) (POS the) (POS T-1600) (POS ,) (POS which) (POS also) (POS uses) (POS a) (POS 286) (POS microprocessor) (POS ,) (POS but) (POS which) (POS weighs) (POS almost) (POS twice) (POS as) (POS much) (POS and) (POS is) (POS three) (POS times) (POS the) (POS size) (POS .)) (TOP (POS A) (POS third) (POS model) (POS ,) (POS marketed) (POS in) (POS Japan) (POS ,) (POS may) (POS hit) (POS the) (POS U.S.) (POS by) (POS the) (POS end) (POS of) (POS the) (POS first) (POS quarter) (POS of) (POS 1990) (POS ,) (POS but) (POS by) (POS then) (POS ,) (POS analysts) (POS say) (POS ,) (POS Compaq) (POS will) (POS have) (POS established) (POS itself) (POS as) (POS one) (POS of) (POS three) (POS major) (POS players) (POS .)) (TOP(FRAG(WHNP(WP What))(PP(IN about)(NP(NNP Big)(NNP Blue)))(. ?))) (TOP (POS International) (POS Business) (POS Machines) (POS Corp.) (POS ,) (POS analysts) (POS say) (POS ,) (POS has) (POS been) (POS burned) (POS twice) (POS in) (POS trying) (POS to) (POS enter) (POS the) (POS laptop) (POS market) (POS and) (POS shows) (POS no) (POS signs) (POS of) (POS trying) (POS to) (POS get) (POS into) (POS notebooks) (POS anytime) (POS soon) (POS .)) (TOP (POS Honeywell) (POS Inc.) (POS and) (POS International) (POS Business) (POS Machines) (POS Corp.) (POS received) (POS Air) (POS Force) (POS contracts) (POS to) (POS develop) (POS integrated) (POS circuits) (POS for) (POS use) (POS in) (POS space) (POS .)) (TOP(S(NP(NP(NNP Honeywell)(POS 's))(NN contract))(VP(VBD totaled)(NP(NP(QP($ $)(CD 69.7)(CD million)))(, ,)(CC and)(NP(NNP IBM)(POS 's)))(NP(QP($ $)(CD 68.8)(CD million))))(. .))) (TOP (POS Boeing) (POS Co.) (POS received) (POS a) (POS $) (POS 46.7) (POS million) (POS Air) (POS Force) (POS contract) (POS for) (POS developing) (POS cable) (POS systems) (POS for) (POS the) (POS Minuteman) (POS Missile) (POS .)) (TOP (POS General) (POS Dynamics) (POS Corp.) (POS received) (POS a) (POS $) (POS 29) (POS million) (POS Air) (POS Force) (POS contract) (POS for) (POS electronic-warfare) (POS training) (POS sets) (POS .)) (TOP(S(NP(NNP Grumman)(NNP Corp.))(VP(VBD received)(NP(DT an)(ADJP(QP($ $)(CD 18.1)(CD million)))(NNP Navy)(NN contract))(S(VP(TO to)(VP(VB upgrade)(NP(NN aircraft)(NNS electronics))))))(. .))) (TOP(S(NP(NNP Avco)(NNP Corp.))(VP(VBD received)(NP(DT an)(ADJP(QP($ $)(CD 11.8)(CD million)))(NNP Army)(NN contract))(PP(IN for)(NP(NN helicopter)(NNS engines))))(. .))) (TOP (POS Sharp) (POS increases) (POS in) (POS the) (POS price) (POS of) (POS fresh) (POS produce) (POS caused) (POS Spain) (POS 's) (POS September) (POS consumer) (POS price) (POS index) (POS to) (POS shoot) (POS up) (POS 1.1) (POS %) (POS from) (POS the) (POS previous) (POS month) (POS ,) (POS pushing) (POS the) (POS annual) (POS rate) (POS of) (POS inflation) (POS to) (POS 6.8) (POS %) (POS ,) (POS the) (POS National) (POS Institute) (POS of) (POS Statistics) (POS said) (POS Friday) (POS .)) (TOP(S(NP(DT The)(JJ monthly)(NN increase))(VP(VBZ is)(SBAR(S(NP(DT the)(JJS highest))(VP(VBN recorded)(PP(IN in)(NP(DT the)(JJ past)(CD four)(NNS years)))))))(. .))) (TOP (POS The) (POS index) (POS ,) (POS which) (POS registered) (POS 156.8) (POS at) (POS the) (POS end) (POS of) (POS September) (POS ,) (POS has) (POS a) (POS base) (POS of) (POS 100) (POS set) (POS in) (POS 1983) (POS and) (POS is) (POS n't) (POS seasonally) (POS adjusted) (POS .)) (TOP (POS Prices) (POS have) (POS risen) (POS 5.9) (POS %) (POS in) (POS the) (POS first) (POS nine) (POS months) (POS of) (POS the) (POS year) (POS ,) (POS outstripping) (POS both) (POS the) (POS initial) (POS 3) (POS %) (POS inflation) (POS goal) (POS set) (POS by) (POS the) (POS government) (POS of) (POS Socialist) (POS Prime) (POS Minister) (POS Felipe) (POS Gonzalez) (POS and) (POS the) (POS second) (POS ,) (POS revised) (POS goal) (POS of) (POS 5.8) (POS %) (POS .)) (TOP (POS Japan) (POS 's) (POS wholesale) (POS prices) (POS in) (POS September) (POS rose) (POS 3.3) (POS %) (POS from) (POS a) (POS year) (POS earlier) (POS and) (POS were) (POS up) (POS 0.4) (POS %) (POS from) (POS the) (POS previous) (POS month) (POS ,) (POS the) (POS Bank) (POS of) (POS Japan) (POS announced) (POS Friday) (POS .)) (TOP (POS The) (POS wholesale) (POS price) (POS index) (POS stood) (POS at) (POS 90.1) (POS ,) (POS compared) (POS with) (POS a) (POS 1985) (POS base) (POS of) (POS 100) (POS .)) (TOP(NP(NNP(N Plunge))(. ?))) (TOP(FRAG(WHNP(WP What))(NP(NN plunge))(. ?))) (TOP (POS Twenty-four) (POS New) (POS York) (POS Stock) (POS Exchange) (POS issues) (POS hit) (POS 52-week) (POS highs) (POS during) (POS Friday) (POS 's) (POS trading) (POS ,) (POS despite) (POS the) (POS Dow) (POS Jones) (POS Industrial) (POS Average) (POS 's) (POS 190.58-point) (POS plunge) (POS .)) (TOP(S(NP(NP(NNS Stocks))(PP(IN of)(NP(NNS utilities))))(VP(VBN held)(PRT(RP up))(ADJP(RB relatively)(JJR better))(PP(IN than)(NP(NP(JJ other)(NN market)(NNS sectors))(PP(IN during)(NP(DT the)(NN sell-off))))))(. .))) (TOP (POS And) (POS among) (POS the) (POS issues) (POS hitting) (POS new) (POS highs) (POS were) (POS Detroit) (POS Edison) (POS Co.) (POS and) (POS Niagara) (POS Mohawk) (POS Power) (POS Corp) (POS .)) (TOP (POS Other) (POS major) (POS issues) (POS hitting) (POS highs) (POS included) (POS American) (POS Telephone) (POS &) (POS Telegraph) (POS Co.) (POS ,) (POS Westinghouse) (POS Electric) (POS Corp.) (POS ,) (POS Exxon) (POS Corp.) (POS and) (POS Cigna) (POS Corp.) (POS ,) (POS the) (POS big) (POS insurer) (POS .)) (TOP(S(PP(IN Of)(NP(NN course)(, ,)(JJ many)(JJR more)(NNS issues)))(PRN(: --)(NP(CD 93))(: --))(VP(VBD hit)(NP(JJ new)(NNS lows)))(. .))) (TOP (POS These) (POS included) (POS International) (POS Business) (POS Machines) (POS Corp.) (POS ,) (POS which) (POS during) (POS Friday) (POS 's) (POS session) (POS traded) (POS below) (POS $) (POS 100) (POS a) (POS share) (POS for) (POS the) (POS first) (POS time) (POS since) (POS June) (POS 1984) (POS .)) (TOP(S(NP(NNP IBM))(VP(VBD closed)(PP(IN at)(NP($ $)(CD 102)))(, ,)(PRT(RP down))(NP($ $)(CD 5.625)))(. .))) (TOP (POS Other) (POS new) (POS lows) (POS included) (POS Navistar) (POS International) (POS Corp.) (POS ,) (POS Union) (POS Carbide) (POS Corp.) (POS and) (POS Bethlehem) (POS Steel) (POS Corp.) (POS ,) (POS all) (POS of) (POS which) (POS are) (POS included) (POS in) (POS the) (POS industrial) (POS average) (POS .)) (TOP (POS Meanwhile) (POS ,) (POS two) (POS initial) (POS public) (POS offerings) (POS braved) (POS the) (POS cascading) (POS market) (POS in) (POS their) (POS maiden) (POS day) (POS of) (POS national) (POS over-the-counter) (POS trading) (POS Friday) (POS .)) (TOP (POS Shares) (POS of) (POS Rally) (POS 's) (POS Inc.) (POS ,) (POS an) (POS operator) (POS of) (POS fast-food) (POS restaurants) (POS ,) (POS closed) (POS at) (POS $) (POS 17) (POS each) (POS ,) (POS up) (POS from) (POS its) (POS $) (POS 15) (POS offering) (POS price) (POS and) (POS shares) (POS of) (POS Employee) (POS Benefit) (POS Plans) (POS Inc.) (POS ,) (POS a) (POS health-care) (POS consultant) (POS ,) (POS closed) (POS at) (POS $) (POS 14.125) (POS ,) (POS up) (POS from) (POS its) (POS $) (POS 12) (POS offering) (POS price) (POS .)) (TOP(S(NP(NNP Ford)(NNP Motor)(NNP Co.))(VP(VBD said)(SBAR(S(NP(PRP it))(VP(VBD acquired)(NP(CD 5)(NN %))(PP(IN of)(NP(NP(DT the)(NNS shares))(PP(IN in)(NP(NNP Jaguar)(NNP PLC)))))))))(. .))) (TOP (POS Jaguar) (POS ,) (POS the) (POS London) (POS Stock) (POS Exchange) (POS and) (POS the) (POS U.S.) (POS Securities) (POS and) (POS Exchange) (POS Commission) (POS are) (POS being) (POS notified) (POS of) (POS the) (POS transactions) (POS ,) (POS the) (POS company) (POS said) (POS .)) (TOP (POS The) (POS U.S.) (POS Federal) (POS Trade) (POS Commission) (POS advised) (POS Ford) (POS last) (POS week) (POS that) (POS it) (POS would) (POS n't) (POS raise) (POS any) (POS objection) (POS to) (POS the) (POS acquisition) (POS of) (POS as) (POS much) (POS as) (POS 15) (POS %) (POS of) (POS Jaguar) (POS shares) (POS .)) (TOP (POS The) (POS No.) (POS 2) (POS auto) (POS maker) (POS disclosed) (POS last) (POS month) (POS that) (POS it) (POS wants) (POS to) (POS buy) (POS as) (POS much) (POS as) (POS 15) (POS %) (POS of) (POS the) (POS British) (POS luxury-car) (POS maker) (POS ,) (POS the) (POS maximum) (POS allowed) (POS under) (POS current) (POS United) (POS Kingdom) (POS government) (POS restrictions) (POS .)) (TOP (POS General) (POS Motors) (POS Corp.) (POS said) (POS it) (POS had) (POS discussed) (POS the) (POS possibility) (POS of) (POS a) (POS joint) (POS venture) (POS with) (POS Jaguar) (POS before) (POS Ford) (POS began) (POS buying) (POS shares) (POS .)) (TOP(S(NP(NNP GM))(VP(VBD said)(NP(PRP it))(RB still)(VP(VBZ is)(S(VP(VBG talking)(PP(IN with)(NP(NNP Jaguar)))(PP(IN about)(S(VP(VBG acquiring)(NP(DT a)(NN minority)(NN interest)))))))))(. .))) (TOP (POS Investors) (POS who) (POS bought) (POS stock) (POS with) (POS borrowed) (POS money) (POS --) (POS that) (POS is) (POS ,) (POS ``) (POS on) (POS margin) (POS '') (POS --) (POS may) (POS be) (POS more) (POS worried) (POS than) (POS most) (POS following) (POS Friday) (POS 's) (POS market) (POS drop) (POS .)) (TOP (POS That) (POS 's) (POS because) (POS their) (POS brokers) (POS can) (POS require) (POS them) (POS to) (POS sell) (POS some) (POS shares) (POS or) (POS put) (POS up) (POS more) (POS cash) (POS to) (POS enhance) (POS the) (POS collateral) (POS backing) (POS their) (POS loans) (POS .)) (TOP (POS In) (POS October) (POS 1987) (POS ,) (POS these) (POS margin) (POS calls) (POS were) (POS thought) (POS to) (POS have) (POS contributed) (POS to) (POS the) (POS downward) (POS spiral) (POS of) (POS the) (POS stock) (POS market) (POS .)) (TOP (POS Typically) (POS ,) (POS a) (POS margin) (POS call) (POS occurs) (POS when) (POS the) (POS price) (POS of) (POS a) (POS stock) (POS falls) (POS below) (POS 75) (POS %) (POS of) (POS its) (POS original) (POS value) (POS .)) (TOP (POS If) (POS the) (POS investor) (POS does) (POS n't) (POS put) (POS up) (POS the) (POS extra) (POS cash) (POS to) (POS satisfy) (POS the) (POS call) (POS ,) (POS the) (POS brokerage) (POS firm) (POS may) (POS begin) (POS liquidating) (POS the) (POS securities) (POS .)) (TOP (POS But) (POS some) (POS big) (POS brokerage) (POS firms) (POS said) (POS they) (POS do) (POS n't) (POS expect) (POS major) (POS problems) (POS as) (POS a) (POS result) (POS of) (POS margin) (POS calls) (POS .)) (TOP (POS Margin) (POS calls) (POS since) (POS Friday) (POS ``) (POS have) (POS been) (POS higher) (POS than) (POS usual) (POS ,) (POS but) (POS reasonable) (POS ,) (POS '') (POS a) (POS spokesman) (POS for) (POS Shearson) (POS Lehman) (POS Hutton) (POS Inc.) (POS said) (POS .)) (TOP (POS Merrill) (POS Lynch) (POS &) (POS Co.) (POS officials) (POS ``) (POS do) (POS n't) (POS expect) (POS -LCB-) (POS margin) (POS calls) (POS -RCB-) (POS to) (POS be) (POS as) (POS big) (POS a) (POS factor) (POS as) (POS in) (POS 1987) (POS '') (POS because) (POS fewer) (POS individual) (POS investors) (POS are) (POS buying) (POS stock) (POS on) (POS margin) (POS ,) (POS a) (POS spokesman) (POS said) (POS .)) (TOP (POS Hugo) (POS Quackenbush) (POS ,) (POS senior) (POS vice) (POS president) (POS at) (POS Charles) (POS Schwab) (POS Corp.) (POS ,) (POS the) (POS San) (POS Francisco-based) (POS discount) (POS brokerage) (POS firm) (POS ,) (POS said) (POS he) (POS did) (POS n't) (POS expect) (POS any) (POS immediate) (POS problems) (POS with) (POS margin) (POS calls) (POS for) (POS Schwab) (POS customers) (POS .)) (TOP (POS He) (POS said) (POS Schwab) (POS had) (POS increased) (POS margin) (POS requirements) (POS ``) (POS so) (POS customers) (POS have) (POS more) (POS of) (POS a) (POS cushion) (POS .) (POS '')) (TOP(S(NP(PRP He))(VP(VBD added)(: :)(`` ``)(S(NP(PRP We))(VP(VBD learned)(NP(DT a)(NN lesson))(PP(IN in)(NP(NP(CD 1987))(PP(IN about)(NP(NN volatility))))))(. .))))) (TOP (POS Avis) (POS Inc.) (POS ,) (POS following) (POS rival) (POS Hertz) (POS Corp.) (POS 's) (POS lead) (POS ,) (POS said) (POS it) (POS is) (POS backing) (POS out) (POS of) (POS frequent-flier) (POS programs) (POS with) (POS three) (POS airlines) (POS .)) (TOP (POS The) (POS Garden) (POS City) (POS ,) (POS N.Y.) (POS ,) (POS car-rental) (POS company) (POS said) (POS it) (POS wo) (POS n't) (POS renew) (POS contracts) (POS with) (POS NWA) (POS Inc.) (POS 's) (POS Northwest) (POS Airlines) (POS unit) (POS ,) (POS Pan) (POS Am) (POS Corp.) (POS 's) (POS Pan) (POS American) (POS World) (POS Airways) (POS unit) (POS and) (POS Midway) (POS Airlines) (POS at) (POS the) (POS end) (POS of) (POS this) (POS year) (POS .)) (TOP (POS But) (POS it) (POS remains) (POS involved) (POS in) (POS programs) (POS with) (POS AMR) (POS Corp.) (POS 's) (POS American) (POS Airlines) (POS unit) (POS and) (POS Delta) (POS Air) (POS Lines) (POS .)) (TOP (POS Industry) (POS estimates) (POS put) (POS Avis) (POS 's) (POS annual) (POS cost) (POS of) (POS all) (POS five) (POS programs) (POS at) (POS between) (POS $) (POS 8) (POS million) (POS and) (POS $) (POS 14) (POS million) (POS .)) (TOP (POS A) (POS spokesman) (POS for) (POS Avis) (POS would) (POS n't) (POS specify) (POS the) (POS costs) (POS but) (POS said) (POS the) (POS three) (POS airlines) (POS being) (POS dropped) (POS account) (POS for) (POS ``) (POS far) (POS less) (POS than) (POS half) (POS '') (POS of) (POS the) (POS total) (POS .)) (TOP (POS Budget) (POS Rent) (POS a) (POS Car) (POS Corp.) (POS ,) (POS of) (POS Chicago) (POS ,) (POS and) (POS National) (POS Car) (POS Rental) (POS Systems) (POS Inc.) (POS ,) (POS of) (POS Minneapolis) (POS ,) (POS both) (POS said) (POS they) (POS had) (POS no) (POS plans) (POS to) (POS follow) (POS suit) (POS .)) (TOP (POS In) (POS fact) (POS ,) (POS Budget) (POS indicated) (POS it) (POS saw) (POS some) (POS benefit) (POS to) (POS staying) (POS involved) (POS in) (POS these) (POS programs) (POS ,) (POS in) (POS which) (POS renters) (POS earn) (POS frequent-flier) (POS miles) (POS and) (POS fliers) (POS can) (POS get) (POS car-rental) (POS discounts) (POS .)) (TOP (POS ``) (POS I) (POS can) (POS not) (POS see) (POS how) (POS this) (POS news) (POS by) (POS Hertz) (POS and) (POS Avis) (POS can) (POS not) (POS benefit) (POS Budget) (POS 's) (POS programs) (POS ,) (POS '') (POS said) (POS Bob) (POS Wilson) (POS ,) (POS Budget) (POS 's) (POS vice) (POS president) (POS ,) (POS marketing) (POS planning) (POS .)) (TOP(S(NP(NNP Northwest)(CC and)(NNP Midway))(VP(VBP are)(NP(NP(CD two))(PP(IN of)(NP(DT the)(CD five)(NNS airlines))))(SBAR(WHPP(IN with)(WHNP(WDT which)))(S(NP(NNP Budget))(VP(VBZ has)(NP(NNS agreements)))(. .)))))) (TOP (POS National) (POS also) (POS participates) (POS in) (POS the) (POS Northwest) (POS frequent-flier) (POS program) (POS along) (POS with) (POS four) (POS other) (POS airlines) (POS ,) (POS including) (POS Delta) (POS and) (POS USAir) (POS Group) (POS Inc.) (POS 's) (POS USAir) (POS unit) (POS .)) (TOP (POS A) (POS month) (POS ago) (POS ,) (POS Hertz) (POS ,) (POS of) (POS Park) (POS Ridge) (POS ,) (POS N.J.) (POS ,) (POS said) (POS that) (POS it) (POS would) (POS drop) (POS its) (POS marketing) (POS agreements) (POS at) (POS year) (POS end) (POS with) (POS Delta) (POS ,) (POS America) (POS West) (POS and) (POS Texas) (POS Air) (POS Corp.) (POS 's) (POS Continental) (POS Airlines) (POS and) (POS Eastern) (POS Airlines) (POS ,) (POS and) (POS that) (POS pacts) (POS with) (POS American) (POS Airlines) (POS ,) (POS UAL) (POS Inc) (POS 's) (POS United) (POS Airlines) (POS and) (POS USAir) (POS also) (POS would) (POS be) (POS ended) (POS ...) (POS sometime) (POS after) (POS Dec.) (POS 31) (POS .)) (TOP (POS At) (POS the) (POS time) (POS ,) (POS Hertz) (POS said) (POS its) (POS annual) (POS fees) (POS to) (POS those) (POS airlines) (POS amounted) (POS to) (POS $) (POS 20) (POS million) (POS and) (POS that) (POS the) (POS value) (POS of) (POS redeemed) (POS awards) (POS topped) (POS $) (POS 15) (POS million) (POS .)) (TOP(S(NP(NP(NNS Analysts))(CC and)(NNS competitors))(, ,)(ADVP(RB however))(, ,)(VP(VBP doubt)(SBAR(S(NP(DT the)(NNS numbers))(VP(VBD were)(NP(DT that)(NN high))))))(. .))) (TOP(SINV(S(NP(NNP Budget))(VP(VBD said)(SBAR(S(NP(PRP$ its)(JJ frequent-flier)(NNS costs))(VP(VBP are)(`` ``)(ADVP(RB substantially)(RB below)))))))('' '')(NP(NP(NNP Avis)(POS 's))(NN level))(. .))) (TOP (POS Robert) (POS D.) (POS Cardillo) (POS ,) (POS Avis) (POS vice) (POS president) (POS of) (POS marketing) (POS ,) (POS said) (POS ,) (POS ``) (POS The) (POS proliferation) (POS and) (POS costs) (POS attached) (POS to) (POS -LCB-) (POS frequent-flier) (POS programs) (POS -RCB-) (POS have) (POS significantly) (POS diminished) (POS their) (POS value) (POS .) (POS '')) (TOP (POS This) (POS year) (POS has) (POS been) (POS difficult) (POS for) (POS both) (POS Hertz) (POS and) (POS Avis) (POS ,) (POS said) (POS Charles) (POS Finnie) (POS ,) (POS car-rental) (POS industry) (POS analyst) (POS at) (POS Alex) (POS .) (POS Brown) (POS &) (POS Sons) (POS .)) (TOP (POS ``) (POS They) (POS 've) (POS been) (POS looking) (POS to) (POS get) (POS their) (POS costs) (POS down) (POS ,) (POS and) (POS this) (POS is) (POS a) (POS fairly) (POS sensible) (POS way) (POS to) (POS do) (POS it) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS CBS) (POS Inc.) (POS is) (POS cutting) (POS ``) (POS The) (POS Pat) (POS Sajak) (POS Show) (POS '') (POS down) (POS to) (POS one) (POS hour) (POS from) (POS its) (POS current) (POS 90) (POS minutes) (POS .)) (TOP (POS CBS) (POS insisted) (POS the) (POS move) (POS was) (POS n't) (POS a) (POS setback) (POS for) (POS the) (POS program) (POS ,) (POS which) (POS is) (POS the) (POS network) (POS 's) (POS first) (POS entry) (POS into) (POS the) (POS late-night) (POS talk) (POS show) (POS format) (POS since) (POS 1972) (POS .)) (TOP (POS ``) (POS I) (POS have) (POS every) (POS intention) (POS of) (POS making) (POS this) (POS the) (POS best) (POS possible) (POS show) (POS and) (POS having) (POS it) (POS run) (POS one) (POS hour) (POS is) (POS the) (POS best) (POS way) (POS to) (POS it) (POS ,) (POS '') (POS said) (POS Rod) (POS Perth) (POS ,) (POS who) (POS was) (POS named) (POS vice) (POS president) (POS of) (POS late) (POS night) (POS entertainment) (POS in) (POS August) (POS .)) (TOP(SINV(`` ``)(S(NP(DT This))(VP(MD will)(VP(VB raise)(NP(DT the)(NN energy)(NN level))(PP(IN of)(NP(DT the)(NN show))))))(. .)('' ''))) (TOP(S(NP(NNP CBS))(VP(MD will)(VP(VB continue)(PP(TO to)(NP(NN program)(ADJP action-adventure)(NNS shows)))(S(VP(TO to)(VP(VB follow)(NP(DT the)(NNP Sajak)(NN hour)))))))(. .))) (TOP (POS But) (POS CBS) (POS News) (POS will) (POS extend) (POS its) (POS four-hour) (POS ``) (POS Nightwatch) (POS '') (POS by) (POS 30) (POS minutes) (POS and) (POS begin) (POS at) (POS 1:30) (POS a.m) (POS .)) (TOP (POS The) (POS show) (POS ,) (POS despite) (POS a) (POS promising) (POS start) (POS ,) (POS has) (POS slipped) (POS badly) (POS in) (POS the) (POS weekly) (POS ratings) (POS as) (POS compiled) (POS by) (POS A.C.) (POS Nielsen) (POS Co.) (POS ,) (POS finishing) (POS far) (POS below) (POS ``) (POS Tonight) (POS '') (POS on) (POS NBC) (POS ,) (POS a) (POS unit) (POS of) (POS General) (POS Electric) (POS Co.) (POS ,) (POS and) (POS ``) (POS Nightline) (POS '') (POS on) (POS ABC-TV) (POS ,) (POS a) (POS unit) (POS of) (POS Capital) (POS Cities\/ABC) (POS Inc) (POS .)) (TOP (POS Further) (POS fractioning) (POS the) (POS late-night) (POS audience) (POS is) (POS the) (POS addition) (POS of) (POS the) (POS ``) (POS Arsenio) (POS Hall) (POS Show) (POS ,) (POS '') (POS syndicated) (POS by) (POS Paramount) (POS Communications) (POS Inc) (POS .)) (TOP (POS Tandem) (POS Computers) (POS Inc.) (POS ,) (POS preparing) (POS to) (POS fight) (POS with) (POS International) (POS Business) (POS Machines) (POS Corp.) (POS for) (POS a) (POS piece) (POS of) (POS the) (POS mainframe) (POS business) (POS ,) (POS said) (POS it) (POS expects) (POS to) (POS post) (POS higher) (POS revenue) (POS and) (POS earnings) (POS for) (POS its) (POS fiscal) (POS fourth) (POS quarter) (POS ended) (POS Sept.) (POS 30) (POS .)) (TOP (POS Tandem) (POS said) (POS it) (POS expects) (POS to) (POS report) (POS revenue) (POS of) (POS about) (POS $) (POS 450) (POS million) (POS and) (POS earnings) (POS of) (POS 35) (POS cents) (POS to) (POS 40) (POS cents) (POS a) (POS share) (POS .)) (TOP (POS The) (POS results) (POS ,) (POS which) (POS are) (POS in) (POS line) (POS with) (POS analysts) (POS ') (POS estimates) (POS ,) (POS reflect) (POS ``) (POS a) (POS continued) (POS improvement) (POS in) (POS our) (POS U.S.) (POS business) (POS ,) (POS '') (POS said) (POS James) (POS Treybig) (POS ,) (POS Tandem) (POS 's) (POS chief) (POS executive) (POS officer) (POS .)) (TOP (POS In) (POS the) (POS year-earlier) (POS period) (POS ,) (POS Tandem) (POS reported) (POS net) (POS income) (POS of) (POS $) (POS 30.1) (POS million) (POS ,) (POS or) (POS 31) (POS cents) (POS a) (POS share) (POS ,) (POS on) (POS revenue) (POS of) (POS $) (POS 383.9) (POS million) (POS .)) (TOP(S(NP(NNP Tandem))(VP(VBZ expects)(S(VP(TO to)(VP(VB report)(NP(DT the)(JJ full)(NNS results))(PP(IN for)(NP(NP(DT the)(NN quarter))(JJ next)(NN week)))))))(. .))) (TOP (POS Analysts) (POS have) (POS predicted) (POS that) (POS the) (POS Cupertino) (POS ,) (POS Calif.) (POS ,) (POS company) (POS will) (POS report) (POS revenue) (POS of) (POS $) (POS 430) (POS million) (POS to) (POS $) (POS 460) (POS million) (POS and) (POS earnings) (POS of) (POS 35) (POS cents) (POS to) (POS 40) (POS cents) (POS a) (POS share) (POS .)) (TOP (POS Commenting) (POS on) (POS the) (POS results) (POS for) (POS the) (POS quarter) (POS ,) (POS Mr.) (POS Treybig) (POS said) (POS the) (POS strength) (POS of) (POS the) (POS company) (POS 's) (POS domestic) (POS business) (POS came) (POS as) (POS ``) (POS a) (POS surprise) (POS '') (POS to) (POS him) (POS ,) (POS noting) (POS that) (POS sales) (POS ``) (POS in) (POS every) (POS region) (POS of) (POS the) (POS U.S.) (POS exceeded) (POS our) (POS plan) (POS .) (POS '')) (TOP (POS The) (POS company) (POS 's) (POS U.S.) (POS performance) (POS was) (POS helped) (POS by) (POS ``) (POS a) (POS record) (POS quarter) (POS for) (POS new) (POS customers) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS Tandem) (POS makes) (POS ``) (POS fault-tolerant) (POS '') (POS computers) (POS --) (POS machines) (POS with) (POS built-in) (POS backup) (POS systems) (POS --) (POS that) (POS run) (POS stock) (POS exchanges) (POS ,) (POS networks) (POS of) (POS automatic) (POS tellers) (POS and) (POS other) (POS complex) (POS computer) (POS systems) (POS .)) (TOP (POS Tomorrow) (POS the) (POS company) (POS is) (POS scheduled) (POS to) (POS announce) (POS its) (POS most) (POS powerful) (POS computer) (POS ever) (POS ,) (POS which) (POS for) (POS the) (POS first) (POS time) (POS will) (POS bring) (POS it) (POS into) (POS direct) (POS competition) (POS with) (POS makers) (POS of) (POS mainframe) (POS computers) (POS .)) (TOP(S(NP(NP(NNP Tandem)(POS 's))(JJ new)(JJ high-end)(NN computer))(VP(VBZ is)(VP(VBD called)(NP(NNP Cyclone))))(. .))) (TOP (POS Prices) (POS for) (POS the) (POS machine) (POS ,) (POS which) (POS can) (POS come) (POS in) (POS various) (POS configurations) (POS ,) (POS are) (POS $) (POS 2) (POS million) (POS to) (POS $) (POS 10) (POS million) (POS .)) (TOP (POS Analysts) (POS expect) (POS the) (POS new) (POS computer) (POS to) (POS wrest) (POS a) (POS hefty) (POS slice) (POS of) (POS business) (POS away) (POS from) (POS IBM) (POS ,) (POS the) (POS longtime) (POS leader) (POS in) (POS mainframes) (POS .)) (TOP (POS ``) (POS We) (POS believe) (POS they) (POS could) (POS siphon) (POS perhaps) (POS two) (POS to) (POS three) (POS billion) (POS dollars) (POS from) (POS IBM) (POS '') (POS over) (POS the) (POS next) (POS few) (POS years) (POS ,) (POS said) (POS George) (POS Weiss) (POS ,) (POS an) (POS analyst) (POS at) (POS the) (POS Gartner) (POS group) (POS .)) (TOP(S(NP(DT That))(VP(MD will)(VP(VB spur)(NP(NP(NNP Tandem)(POS 's))(NN growth))))(. .))) (TOP (POS ``) (POS I) (POS 'd) (POS be) (POS disappointed) (POS if) (POS the) (POS company) (POS grew) (POS by) (POS less) (POS than) (POS 20) (POS %) (POS next) (POS year) (POS ,) (POS '') (POS said) (POS John) (POS Levinson) (POS ,) (POS an) (POS analyst) (POS at) (POS Goldman) (POS ,) (POS Sachs) (POS &) (POS Co) (POS .)) (TOP (POS IBM) (POS is) (POS expected) (POS to) (POS respond) (POS to) (POS Tandem) (POS 's) (POS Cyclone) (POS by) (POS discounting) (POS its) (POS own) (POS mainframes) (POS ,) (POS which) (POS analysts) (POS say) (POS are) (POS roughly) (POS three) (POS times) (POS the) (POS price) (POS of) (POS a) (POS comparable) (POS system) (POS from) (POS Tandem) (POS .)) (TOP (POS ``) (POS Obviously) (POS IBM) (POS can) (POS give) (POS bigger) (POS discounts) (POS to) (POS users) (POS immediately) (POS ,) (POS '') (POS said) (POS Mr.) (POS Weiss) (POS .)) (TOP (POS But) (POS Mr.) (POS Treybig) (POS questions) (POS whether) (POS that) (POS will) (POS be) (POS enough) (POS to) (POS stop) (POS Tandem) (POS 's) (POS first) (POS mainframe) (POS from) (POS taking) (POS on) (POS some) (POS of) (POS the) (POS functions) (POS that) (POS large) (POS organizations) (POS previously) (POS sought) (POS from) (POS Big) (POS Blue) (POS 's) (POS machines) (POS .)) (TOP (POS ``) (POS The) (POS answer) (POS is) (POS n't) (POS price) (POS reductions) (POS ,) (POS but) (POS new) (POS systems) (POS ,) (POS '') (POS he) (POS said) (POS .)) (TOP (POS Nevertheless) (POS ,) (POS Tandem) (POS faces) (POS a) (POS variety) (POS of) (POS challenges) (POS ,) (POS the) (POS biggest) (POS being) (POS that) (POS customers) (POS generally) (POS view) (POS the) (POS company) (POS 's) (POS computers) (POS as) (POS complementary) (POS to) (POS IBM) (POS 's) (POS mainframes) (POS .)) (TOP (POS Even) (POS Mr.) (POS Treybig) (POS is) (POS reluctant) (POS to) (POS abandon) (POS this) (POS notion) (POS ,) (POS insisting) (POS that) (POS Tandem) (POS 's) (POS new) (POS machines) (POS are) (POS n't) (POS replacements) (POS for) (POS IBM) (POS 's) (POS mainframes) (POS .)) (TOP(SINV(`` ``)(S(NP(PRP We))(VP(VBP 're)(PP(IN after)(NP(DT a)(ADJP(RB little)(JJR bigger))(NN niche)))))(, ,)('' '')(NP(NP(PRP he))(VP(VBD said)))(. .))) (TOP(SQ(VBP Do)(RB n't)(VP(VB jump)(ADVP(RB yet)))(. .))) (TOP (POS The) (POS stock) (POS market) (POS 's) (POS swoon) (POS may) (POS turn) (POS out) (POS to) (POS be) (POS good) (POS news) (POS for) (POS the) (POS economy) (POS .)) (TOP (POS In) (POS one) (POS wild) (POS hour) (POS of) (POS trading) (POS ,) (POS the) (POS market) (POS managed) (POS to) (POS accomplish) (POS what) (POS the) (POS Bush) (POS administration) (POS has) (POS been) (POS trying) (POS to) (POS do) (POS ,) (POS unsuccessfully) (POS ,) (POS for) (POS weeks) (POS .)) (TOP (POS It) (POS is) (POS forcing) (POS the) (POS Federal) (POS Reserve) (POS to) (POS ease) (POS its) (POS grip) (POS on) (POS credit) (POS and) (POS it) (POS took) (POS the) (POS wind) (POS out) (POS of) (POS a) (POS previously) (POS irrepressible) (POS dollar) (POS .)) (TOP (POS The) (POS resulting) (POS decline) (POS in) (POS interest) (POS rates) (POS and) (POS the) (POS value) (POS of) (POS the) (POS dollar) (POS could) (POS reinvigorate) (POS American) (POS business) (POS --) (POS indeed) (POS ,) (POS the) (POS entire) (POS economy) (POS .)) (TOP (POS This) (POS may) (POS sound) (POS strangely) (POS optimistic) (POS .)) (TOP (POS After) (POS all) (POS ,) (POS until) (POS a) (POS few) (POS years) (POS ago) (POS ,) (POS the) (POS stock) (POS market) (POS was) (POS viewed) (POS as) (POS a) (POS barometer) (POS of) (POS the) (POS national) (POS economy) (POS .)) (TOP(S(SBAR(WHADVP(WRB When))(S(NP(PRP it))(VP(VBD went)(PRT(RP down))(, ,)(PP(IN by)(NP(DT all)(NN tradition))))))(, ,)(NP(DT the)(NN economy))(VP(VBN followed))(. .))) (TOP (POS That) (POS has) (POS changed) (POS ,) (POS partly) (POS because) (POS the) (POS two) (POS years) (POS following) (POS the) (POS worst) (POS stock-market) (POS plunge) (POS in) (POS history) (POS have) (POS been) (POS reasonably) (POS comfortable) (POS .)) (TOP (POS The) (POS 1987) (POS crash) (POS was) (POS ``) (POS a) (POS false) (POS alarm) (POS however) (POS you) (POS view) (POS it) (POS ,) (POS '') (POS says) (POS University) (POS of) (POS Chicago) (POS economist) (POS Victor) (POS Zarnowitz) (POS .)) (TOP(S(NP(DT The)(NN market))(VP(VBZ seems)(RB increasingly)(VP(VBN disconnected)(PP(IN from)(NP(NP(DT the)(NN rest))(PP(IN of)(NP(DT the)(NN nation)))))))(. .))) (TOP (POS Its) (POS spasms) (POS ca) (POS n't) (POS be) (POS traced) (POS to) (POS fundamental) (POS business) (POS conditions) (POS ,) (POS nor) (POS do) (POS they) (POS appear) (POS to) (POS presage) (POS major) (POS shifts) (POS in) (POS the) (POS economy) (POS .)) (TOP (POS ``) (POS The) (POS market) (POS today) (POS has) (POS a) (POS life) (POS of) (POS its) (POS own) (POS ,) (POS '') (POS John) (POS Akers) (POS ,) (POS chairman) (POS of) (POS International) (POS Business) (POS Machines) (POS Corp.) (POS ,) (POS said) (POS Saturday) (POS .)) (TOP(SINV(`` ``)(S(NP(EX There))(VP(VBZ 's)(ADJP(NN nothing)(JJ rational)(PP(IN about)(NP(NP(DT this)(NN kind))(PP(IN of)(NP(NN action))))))))(. .)('' ''))) (TOP (POS Of) (POS course) (POS ,) (POS the) (POS health) (POS of) (POS the) (POS economy) (POS will) (POS be) (POS threatened) (POS if) (POS the) (POS market) (POS continues) (POS to) (POS dive) (POS this) (POS week) (POS .)) (TOP (POS Sharply) (POS falling) (POS stock) (POS prices) (POS do) (POS reduce) (POS consumer) (POS wealth) (POS ,) (POS damage) (POS business) (POS confidence) (POS and) (POS discourage) (POS the) (POS foreign) (POS investors) (POS upon) (POS whom) (POS the) (POS U.S.) (POS now) (POS relies) (POS for) (POS financial) (POS sustenance) (POS .)) (TOP(S(NP(DT The)(JJ financial-services)(NN industry))(VP(VBD was)(VP(VBN battered)(PP(IN by)(NP(DT the)(CD 1987)(NN crash)))))(. .))) (TOP (POS What) (POS 's) (POS more) (POS ,) (POS although) (POS the) (POS stock) (POS market) (POS is) (POS far) (POS less) (POS overvalued) (POS today) (POS than) (POS two) (POS years) (POS ago) (POS ,) (POS the) (POS U.S.) (POS economy) (POS is) (POS weaker) (POS .)) (TOP(S(NP(NN Growth))(VP(VBZ is)(ADJP(JJR slower)))(. .))) (TOP(S(NP(NNS Profits))(VP(VBP are)(ADJP(JJR softer)))(. .))) (TOP(S(NP(NN Debt)(NNS burdens))(VP(VBP are)(ADJP(JJR heavier)))(. .))) (TOP (POS But) (POS if) (POS the) (POS stock) (POS market) (POS does) (POS n't) (POS continue) (POS to) (POS plummet) (POS ,) (POS the) (POS beneficial) (POS effects) (POS of) (POS lower) (POS interest) (POS rates) (POS and) (POS a) (POS lower) (POS dollar) (POS may) (POS well) (POS dominate) (POS .)) (TOP (POS The) (POS Fed) (POS ,) (POS which) (POS until) (POS Friday) (POS had) (POS been) (POS resisting) (POS moves) (POS to) (POS ease) (POS credit) (POS ,) (POS is) (POS now) (POS poised) (POS to) (POS pour) (POS money) (POS into) (POS the) (POS economy) (POS if) (POS needed) (POS to) (POS soothe) (POS the) (POS markets) (POS .)) (TOP (POS Fed) (POS officials) (POS may) (POS protest) (POS that) (POS this) (POS does) (POS n't) (POS necessarily) (POS mean) (POS a) (POS fundamental) (POS change) (POS in) (POS their) (POS interest-rate) (POS policies) (POS .)) (TOP (POS But) (POS the) (POS experience) (POS of) (POS the) (POS 1987) (POS crash) (POS suggests) (POS the) (POS Fed) (POS is) (POS likely) (POS to) (POS bring) (POS down) (POS short-term) (POS interest) (POS rates) (POS in) (POS its) (POS effort) (POS to) (POS calm) (POS markets) (POS .)) (TOP (POS Anticipating) (POS the) (POS Fed) (POS 's) (POS move) (POS ,) (POS money) (POS traders) (POS lowered) (POS a) (POS key) (POS interest) (POS rate) (POS known) (POS as) (POS the) (POS Federal) (POS Funds) (POS rate) (POS to) (POS 8.625) (POS %) (POS late) (POS Friday) (POS ,) (POS down) (POS from) (POS 8.820) (POS %) (POS the) (POS day) (POS before) (POS .)) (TOP (POS Tiny) (POS movements) (POS in) (POS the) (POS rate) (POS ,) (POS which) (POS is) (POS what) (POS banks) (POS charge) (POS each) (POS other) (POS for) (POS overnight) (POS loans) (POS ,) (POS are) (POS usually) (POS among) (POS the) (POS few) (POS visible) (POS tracks) (POS that) (POS the) (POS Fed) (POS leaves) (POS on) (POS the) (POS monetary) (POS markets) (POS .)) (TOP (POS The) (POS dollar) (POS also) (POS began) (POS to) (POS decline) (POS Friday) (POS as) (POS the) (POS stock) (POS market) (POS 's) (POS plunge) (POS caused) (POS some) (POS investors) (POS to) (POS reassess) (POS their) (POS desire) (POS to) (POS invest) (POS in) (POS the) (POS U.S.) (POS .)) (TOP (POS Treasury) (POS officials) (POS have) (POS been) (POS arguing) (POS for) (POS months) (POS that) (POS the) (POS dollar) (POS 's) (POS strength) (POS was) (POS out) (POS of) (POS whack) (POS with) (POS economic) (POS fundamentals) (POS ,) (POS threatening) (POS to) (POS extinguish) (POS the) (POS export) (POS boom) (POS that) (POS has) (POS sustained) (POS manufacturers) (POS for) (POS several) (POS years) (POS .)) (TOP (POS The) (POS market) (POS drop) (POS has) (POS now) (POS apparently) (POS convinced) (POS foreign) (POS investors) (POS that) (POS the) (POS Treasury) (POS was) (POS right) (POS about) (POS the) (POS overpriced) (POS dollar) (POS .)) (TOP (POS A) (POS modest) (POS drop) (POS in) (POS the) (POS dollar) (POS --) (POS only) (POS a) (POS modest) (POS one) (POS ,) (POS mind) (POS you) (POS --) (POS would) (POS be) (POS welcomed) (POS by) (POS the) (POS U.S.) (POS .)) (TOP (POS That) (POS was) (POS n't) (POS the) (POS case) (POS in) (POS 1987) (POS ,) (POS when) (POS the) (POS dollar) (POS was) (POS so) (POS weak) (POS that) (POS some) (POS economists) (POS and) (POS government) (POS officials) (POS seriously) (POS worried) (POS that) (POS it) (POS might) (POS collapse) (POS ,) (POS producing) (POS panic) (POS among) (POS foreign) (POS investors) (POS and) (POS diminishing) (POS the) (POS flow) (POS of) (POS foreign) (POS capital) (POS to) (POS the) (POS U.S.) (POS .)) (TOP(S(NP(NP(DT Another)(JJ big)(NN difference))(PP(IN between)(NP(CD 1987)(CC and)(CD 1989))))(VP(VBZ is)(RB n't)(ADJP(RB so)(JJ comforting)))(. .))) (TOP (POS In) (POS the) (POS third) (POS quarter) (POS of) (POS 1987) (POS ,) (POS the) (POS economy) (POS spurted) (POS at) (POS an) (POS inflation-adjusted) (POS annual) (POS rate) (POS of) (POS 5.3) (POS %) (POS .)) (TOP (POS The) (POS consensus) (POS among) (POS economists) (POS is) (POS that) (POS it) (POS grew) (POS a) (POS much) (POS more) (POS sluggish) (POS 2.3) (POS %) (POS in) (POS the) (POS third) (POS quarter) (POS of) (POS 1989) (POS ,) (POS which) (POS ended) (POS two) (POS weeks) (POS ago) (POS .)) (TOP (POS The) (POS plunge) (POS in) (POS stock) (POS prices) (POS ``) (POS is) (POS happening) (POS at) (POS a) (POS time) (POS when) (POS the) (POS economy) (POS has) (POS already) (POS slowed) (POS down) (POS ,) (POS '') (POS says) (POS economist) (POS Lawrence) (POS Chimerine) (POS of) (POS WEFA) (POS Group) (POS ,) (POS a) (POS Bala) (POS Cynwyd) (POS ,) (POS Pa.) (POS ,) (POS forecasting) (POS company) (POS .)) (TOP(SINV(`` ``)(S(NP(NP(DT A)(NN lot))(PP(IN of)(NP(JJ pent-up)(NN demand))))(VP(VBZ is)(VP(VBN gone))))(. .)('' ''))) (TOP (POS Consumer) (POS spending) (POS did) (POS drop) (POS in) (POS the) (POS months) (POS following) (POS Black) (POS Monday) (POS 1987) (POS --) (POS ``) (POS but) (POS only) (POS slightly) (POS and) (POS for) (POS a) (POS short) (POS period) (POS of) (POS time) (POS ,) (POS '') (POS recalls) (POS Mr.) (POS Zarnowitz) (POS ,) (POS a) (POS longtime) (POS student) (POS of) (POS business) (POS cycles) (POS .)) (TOP(S(`` ``)(NP(DT That))(VP(VBD was)(VP(VB offset)(PP(IN by)(NP(NN strength)))(ADVP(RB elsewhere))))(. .))) (TOP (POS -LCB-) (POS The) (POS effects) (POS -RCB-) (POS were) (POS much) (POS less) (POS severe) (POS and) (POS less) (POS prolonged) (POS than) (POS some) (POS had) (POS feared) (POS or) (POS expected) (POS .)) (TOP (POS '') (POS Today) (POS ,) (POS he) (POS frets) (POS ,) (POS exports) (POS and) (POS business) (POS investment) (POS spending) (POS may) (POS be) (POS insufficient) (POS to) (POS pick) (POS up) (POS the) (POS slack) (POS if) (POS stock) (POS prices) (POS sink) (POS this) (POS week) (POS and) (POS if) (POS consumers) (POS retrench) (POS in) (POS reaction) (POS .)) (TOP (POS What) (POS 's) (POS more) (POS ,) (POS the) (POS corporate) (POS borrowing) (POS binge) (POS has) (POS n't) (POS abated) (POS in) (POS the) (POS past) (POS two) (POS years) (POS .)) (TOP (POS ``) (POS We) (POS 've) (POS had) (POS two) (POS more) (POS years) (POS of) (POS significant) (POS accumulation) (POS of) (POS debt) (POS ...) (POS just) (POS at) (POS the) (POS time) (POS when) (POS earnings) (POS are) (POS being) (POS squeezed) (POS ,) (POS '') (POS Mr.) (POS Chimerine) (POS notes) (POS .)) (TOP (POS The) (POS more) (POS a) (POS company) (POS relies) (POS on) (POS borrowed) (POS money) (POS ,) (POS the) (POS greater) (POS its) (POS sensitivity) (POS to) (POS an) (POS economic) (POS slowdown) (POS .)) (TOP (POS A) (POS company) (POS with) (POS a) (POS strong) (POS balance) (POS sheet) (POS can) (POS withstand) (POS an) (POS unanticipated) (POS storm) (POS ;) (POS a) (POS highly) (POS leveraged) (POS company) (POS may) (POS end) (POS up) (POS in) (POS bankruptcy) (POS court) (POS .)) (TOP (POS The) (POS Fed) (POS ,) (POS of) (POS course) (POS ,) (POS knows) (POS that) (POS very) (POS well) (POS --) (POS hence) (POS its) (POS readiness) (POS to) (POS pump) (POS credit) (POS into) (POS the) (POS economy) (POS this) (POS morning) (POS .)) (TOP(FRAG(CC But)(, ,)(PP(IN in)(NP(DT the)(NN process)))(, ,)(NP(NP(DT the)(NNP Fed)(NNS risks))(NNP(N reigniting))(NN inflation))(. .))) (TOP (POS Even) (POS before) (POS Friday) (POS 's) (POS events) (POS ,) (POS Harvard) (POS University) (POS economist) (POS Benjamin) (POS Friedman) (POS was) (POS arguing) (POS that) (POS the) (POS Fed) (POS wo) (POS n't) (POS be) (POS able) (POS to) (POS live) (POS up) (POS to) (POS its) (POS tough) (POS words) (POS on) (POS eliminating) (POS inflation) (POS because) (POS of) (POS its) (POS responsibility) (POS to) (POS protect) (POS fragile) (POS financial) (POS markets) (POS ,) (POS banks) (POS and) (POS highly) (POS leveraged) (POS corporations) (POS .)) (TOP (POS The) (POS biggest) (POS threat) (POS on) (POS the) (POS economic) (POS horizon) (POS right) (POS now) (POS is) (POS n't) (POS recession) (POS ,) (POS he) (POS reasons) (POS ;) (POS it) (POS 's) (POS an) (POS outbreak) (POS of) (POS uncontrolled) (POS inflation) (POS .)) (TOP (POS In) (POS the) (POS end) (POS ,) (POS the) (POS 1987) (POS collapse) (POS suggested) (POS ,) (POS the) (POS economy) (POS does) (POS n't) (POS move) (POS in) (POS lockstep) (POS with) (POS stock) (POS prices) (POS .)) (TOP (POS The) (POS economy) (POS does) (POS ,) (POS however) (POS ,) (POS depend) (POS on) (POS the) (POS confidence) (POS of) (POS businesses) (POS ,) (POS consumers) (POS and) (POS foreign) (POS investors) (POS .)) (TOP(S(NP(NP(DT A)(NN panic))(PP(IN on)(NP(NNP Wall)(NNP Street))))(VP(VBZ does)(ADVP(RB n't)(RB exactly))(VP(VB inspire)(NP(NN confidence))))(. .))) (TOP(S(NP(NNS Surveys))(VP(VBD suggested)(SBAR(S(NP(DT that)(NN consumer)(NN confidence))(VP(VBD was)(ADJP(JJ high)(PP(IN before)(NP(NNP Friday))))))))(. .))) (TOP (POS A) (POS 190-point) (POS drop) (POS is) (POS n't) (POS likely) (POS to) (POS make) (POS much) (POS of) (POS a) (POS dent) (POS ;) (POS multiply) (POS that) (POS a) (POS few) (POS times) (POS over) (POS ,) (POS though) (POS ,) (POS and) (POS it) (POS will) (POS .)) (TOP (POS If) (POS the) (POS reactions) (POS of) (POS executives) (POS gathered) (POS Saturday) (POS at) (POS Hot) (POS Springs) (POS ,) (POS Va.) (POS ,) (POS for) (POS the) (POS Business) (POS Council) (POS meetings) (POS are) (POS typical) (POS ,) (POS business) (POS leaders) (POS were) (POS n't) (POS overly) (POS rattled) (POS by) (POS Friday) (POS 's) (POS decline) (POS .)) (TOP (POS And) (POS if) (POS foreign) (POS investors) (POS become) (POS a) (POS tad) (POS more) (POS cautious) (POS --) (POS well) (POS ,) (POS the) (POS dollar) (POS 's) (POS recent) (POS strength) (POS suggests) (POS that) (POS the) (POS U.S.) (POS can) (POS stand) (POS it) (POS .)) (TOP (POS On) (POS the) (POS bottom) (POS line) (POS ,) (POS the) (POS most) (POS comforting) (POS fact) (POS for) (POS the) (POS economic) (POS outlook) (POS is) (POS that) (POS we) (POS 've) (POS been) (POS through) (POS this) (POS before) (POS .)) (TOP (POS Two) (POS years) (POS ago) (POS ,) (POS about) (POS the) (POS only) (POS point) (POS of) (POS comparison) (POS was) (POS the) (POS 1929) (POS crash) (POS and) (POS the) (POS subsequent) (POS Depression) (POS .)) (TOP(S(NP(DT The)(NNS doomsayers))(VP(VBD had)(NP(DT a)(JJ receptive)(NN audience)))(. .))) (TOP(S(NP(NP(DT The)(NN prosperity))(SBAR(WHNP(WDT that))(S(VP(VBD followed)(NP(NNP Black)(NNP Monday))))))(VP(VBZ permits)(NP(DT a)(ADJP(RBR more)(JJ optimistic))(NN view)(NN today)))(. .))) (TOP (POS At) (POS the) (POS very) (POS least) (POS ,) (POS the) (POS establishment) (POS here) (POS is) (POS taking) (POS comfort) (POS from) (POS the) (POS nation) (POS 's) (POS success) (POS in) (POS handling) (POS the) (POS last) (POS go-around) (POS .)) (TOP (POS As) (POS Sen.) (POS Lloyd) (POS Bentsen) (POS -LRB-) (POS D.) (POS ,) (POS Texas) (POS -RRB-) (POS observed) (POS yesterday) (POS ,) (POS ``) (POS The) (POS Fed) (POS avoided) (POS a) (POS meltdown) (POS last) (POS time) (POS .)) (TOP(SINV(S(NP(PRP They))(VP(VBP are)(ADJP(RBR more)(JJ sophisticated))))(NP(DT this)(NN time))(. .))) (TOP (POS The) (POS chemical) (POS industry) (POS is) (POS expected) (POS to) (POS report) (POS that) (POS profits) (POS eroded) (POS in) (POS the) (POS third) (POS quarter) (POS because) (POS of) (POS skidding) (POS prices) (POS in) (POS the) (POS commodity) (POS end) (POS of) (POS the) (POS business) (POS .)) (TOP (POS Producers) (POS of) (POS commodity) (POS chemicals) (POS ,) (POS the) (POS basic) (POS chemicals) (POS produced) (POS in) (POS huge) (POS volumes) (POS for) (POS other) (POS manufacturers) (POS ,) (POS have) (POS seen) (POS sharp) (POS inventory) (POS cutting) (POS by) (POS buyers) (POS .)) (TOP (POS Once) (POS the) (POS chief) (POS beneficiaries) (POS of) (POS the) (POS industry) (POS 's) (POS now) (POS fading) (POS boom) (POS ,) (POS these) (POS producers) (POS also) (POS will) (POS be) (POS reporting) (POS against) (POS exceptionally) (POS strong) (POS performances) (POS in) (POS the) (POS 1988) (POS third) (POS quarter) (POS .)) (TOP (POS ``) (POS For) (POS some) (POS of) (POS these) (POS companies) (POS ,) (POS this) (POS will) (POS be) (POS the) (POS first) (POS quarter) (POS with) (POS year-to-year) (POS negative) (POS comparisons) (POS ,) (POS '') (POS says) (POS Leonard) (POS Bogner) (POS ,) (POS a) (POS chemical) (POS industry) (POS analyst) (POS at) (POS Prudential) (POS Bache) (POS Research) (POS .)) (TOP(SINV(`` ``)(S(NP(DT This))(VP(MD could)(VP(VB be)(NP(DT the)(JJ first)(PP(IN of)(NP(CD five)(CC or)(CD six)))(PP(IN down)(NP(NNS quarters)))))))(. .)('' ''))) (TOP (POS Perhaps) (POS most) (POS prominent) (POS ,) (POS Dow) (POS Chemical) (POS Co.) (POS ,) (POS which) (POS as) (POS of) (POS midyear) (POS had) (POS racked) (POS up) (POS eight) (POS consecutive) (POS record) (POS quarters) (POS ,) (POS is) (POS expected) (POS to) (POS report) (POS that) (POS profit) (POS decreased) (POS in) (POS the) (POS latest) (POS quarter) (POS from) (POS a) (POS year) (POS earlier) (POS ,) (POS if) (POS only) (POS by) (POS a) (POS shade) (POS .)) (TOP (POS Though) (POS Dow) (POS has) (POS aggressively) (POS diversified) (POS into) (POS specialty) (POS chemicals) (POS and) (POS pharmaceuticals) (POS ,) (POS the) (POS company) (POS still) (POS has) (POS a) (POS big) (POS stake) (POS in) (POS polyethylene) (POS ,) (POS which) (POS is) (POS used) (POS in) (POS packaging) (POS and) (POS housewares) (POS .)) (TOP (POS Analysts) (POS ') (POS third-quarter) (POS estimates) (POS for) (POS the) (POS Midland) (POS ,) (POS Mich.) (POS ,) (POS company) (POS are) (POS between) (POS $) (POS 3.20) (POS a) (POS share) (POS and) (POS $) (POS 3.30) (POS a) (POS share) (POS ,) (POS compared) (POS with) (POS $) (POS 3.36) (POS a) (POS year) (POS ago) (POS ,) (POS when) (POS profit) (POS was) (POS $) (POS 632) (POS million) (POS on) (POS sales) (POS of) (POS $) (POS 4.15) (POS billion) (POS .)) (TOP(S(NP(DT A)(NNP Dow)(NN spokeswoman))(VP(VBD declined)(S(VP(TO to)(VP(VB comment)(PP(IN on)(NP(DT the)(NNS estimates)))))))(. .))) (TOP (POS At) (POS the) (POS investment) (POS firm) (POS of) (POS Smith) (POS Barney) (POS ,) (POS Harris) (POS Upham) (POS &) (POS Co.) (POS ,) (POS the) (POS commodity-chemical) (POS segment) (POS is) (POS seen) (POS pulling) (POS down) (POS overall) (POS profit) (POS for) (POS 20) (POS companies) (POS representative) (POS of) (POS the) (POS whole) (POS industry) (POS by) (POS 8) (POS %) (POS to) (POS 10) (POS %) (POS .)) (TOP (POS ``) (POS You) (POS will) (POS find) (POS the) (POS commodities) (POS off) (POS more) (POS than) (POS the) (POS others) (POS and) (POS the) (POS diversified) (POS companies) (POS about) (POS even) (POS or) (POS slightly) (POS better) (POS ,) (POS '') (POS says) (POS James) (POS Wilbur) (POS ,) (POS a) (POS Smith) (POS Barney) (POS analyst) (POS .)) (TOP (POS First) (POS Boston) (POS Corp.) (POS projects) (POS that) (POS 10) (POS of) (POS the) (POS 15) (POS companies) (POS it) (POS follows) (POS will) (POS report) (POS lower) (POS profit) (POS .)) (TOP(S(NP(NP(JJS Most))(PP(IN of)(NP(DT the)(CD 10))))(VP(VB have)(NP(JJ big)(ADJP commodity-chemical)(NNS operations)))(. .))) (TOP (POS Still) (POS ,) (POS some) (POS industry) (POS giants) (POS are) (POS expected) (POS to) (POS report) (POS continuing) (POS gains) (POS ,) (POS largely) (POS because) (POS so) (POS much) (POS of) (POS their) (POS business) (POS is) (POS outside) (POS commodity) (POS chemicals) (POS .)) (TOP (POS Du) (POS Pont) (POS Co.) (POS is) (POS thought) (POS to) (POS have) (POS had) (POS steady) (POS profit) (POS growth) (POS in) (POS white) (POS pigments) (POS ,) (POS fibers) (POS and) (POS polymers) (POS .)) (TOP (POS Moreover) (POS ,) (POS the) (POS Wilmington) (POS ,) (POS Del.) (POS ,) (POS company) (POS is) (POS helped) (POS when) (POS prices) (POS weaken) (POS on) (POS the) (POS commodity) (POS chemicals) (POS it) (POS buys) (POS for) (POS its) (POS own) (POS production) (POS needs) (POS ,) (POS such) (POS as) (POS ethylene) (POS .)) (TOP (POS Analysts) (POS are) (POS divided) (POS over) (POS whether) (POS Du) (POS Pont) (POS will) (POS report) (POS much) (POS of) (POS a) (POS gain) (POS in) (POS the) (POS latest) (POS quarter) (POS from) (POS its) (POS Conoco) (POS Inc.) (POS oil) (POS company) (POS .)) (TOP(S(NP(NP(DT The)(NNS estimates))(PP(IN for)(NP(NNP Du)(NNP Pont))))(VP(VBP range)(PP(IN from)(NP(QP($ $)(CD 2.25)(TO to)($ $)(CD 2.45))))(NP(DT a)(NN share)))(. .))) (TOP (POS In) (POS the) (POS 1988) (POS third) (POS quarter) (POS ,) (POS the) (POS company) (POS earned) (POS $) (POS 461) (POS million) (POS ,) (POS or) (POS $) (POS 1.91) (POS a) (POS share) (POS ,) (POS on) (POS sales) (POS of) (POS $) (POS 7.99) (POS billion) (POS .)) (TOP(S(NP(NNP Du)(NNP Pont))(VP(VBD declined)(S(VP(TO to)(VP(VB comment)))))(. .))) (TOP (POS Monsanto) (POS Co.) (POS ,) (POS too) (POS ,) (POS is) (POS expected) (POS to) (POS continue) (POS reporting) (POS higher) (POS profit) (POS ,) (POS even) (POS though) (POS its) (POS sales) (POS of) (POS crop) (POS chemicals) (POS were) (POS hurt) (POS in) (POS the) (POS latest) (POS quarter) (POS by) (POS drought) (POS in) (POS northern) (POS Europe) (POS and) (POS the) (POS western) (POS U.S.) (POS .)) (TOP (POS The) (POS St.) (POS Louis-based) (POS company) (POS is) (POS expected) (POS to) (POS report) (POS again) (POS that) (POS losses) (POS in) (POS its) (POS G.D.) (POS Searle) (POS &) (POS Co.) (POS pharmaceutical) (POS business) (POS are) (POS narrowing) (POS .)) (TOP (POS Searle) (POS continued) (POS to) (POS operate) (POS in) (POS the) (POS red) (POS through) (POS the) (POS first) (POS half) (POS of) (POS the) (POS year) (POS ,) (POS but) (POS Monsanto) (POS has) (POS said) (POS it) (POS expects) (POS Searle) (POS to) (POS post) (POS a) (POS profit) (POS for) (POS all) (POS of) (POS 1989) (POS .)) (TOP(S(NP(NP(JJS Most)(NNS estimates))(PP(IN for)(NP(NNP Monsanto))))(VP(VBN run)(PP(IN between)(NP(NP(QP($ $)(CD 1.70)(CC and)($ $)(CD 2)))(NP(DT a)(NN share)))))(. .))) (TOP (POS A) (POS year) (POS ago) (POS ,) (POS the) (POS company) (POS posted) (POS third-quarter) (POS profit) (POS of) (POS $) (POS 116) (POS million) (POS ,) (POS or) (POS $) (POS 1.67) (POS a) (POS share) (POS ,) (POS on) (POS sales) (POS of) (POS $) (POS 2.02) (POS billion) (POS .)) (TOP(S(NP(NNP Monsanto))(VP(VBD declined)(S(VP(TO to)(VP(VB comment)))))(. .))) (TOP(S(CC But)(NP(DT the)(ADJP commodity-chemical)(NNS producers))(VP(VBP are)(VP(VBN caught)(PP(IN on)(NP(NP(DT the)(NN downside))(PP(IN of)(NP(DT a)(NN pricing)(NN cycle)))))))(. .))) (TOP (POS By) (POS some) (POS accounts) (POS on) (POS Wall) (POS Street) (POS and) (POS in) (POS the) (POS industry) (POS ,) (POS the) (POS inventory) (POS reductions) (POS are) (POS near) (POS an) (POS end) (POS ,) (POS which) (POS may) (POS presage) (POS firmer) (POS demand) (POS .)) (TOP (POS But) (POS doubters) (POS say) (POS growing) (POS production) (POS capacity) (POS could) (POS keep) (POS pressure) (POS on) (POS prices) (POS into) (POS the) (POS early) (POS 1990s) (POS .)) (TOP(S(PP(IN In)(NP(DT the)(JJS latest)(NN quarter)))(, ,)(ADVP(IN at)(JJS least))(, ,)(NP(NN profit))(VP(VBZ is)(VP(VBN expected)(S(VP(TO to)(VP(VB fall)(ADVP(RB sharply)))))))(. .))) (TOP (POS For) (POS Himont) (POS Inc.) (POS ,) (POS ``) (POS how) (POS far) (POS down) (POS it) (POS is) (POS ,) (POS we) (POS do) (POS n't) (POS know) (POS ,) (POS '') (POS says) (POS Leslie) (POS Ravitz) (POS at) (POS Salomon) (POS Brothers) (POS .)) (TOP (POS The) (POS projections) (POS are) (POS in) (POS the) (POS neighborhood) (POS of) (POS 50) (POS cents) (POS a) (POS share) (POS to) (POS 75) (POS cents) (POS ,) (POS compared) (POS with) (POS a) (POS restated) (POS $) (POS 1.65) (POS a) (POS share) (POS a) (POS year) (POS earlier) (POS ,) (POS when) (POS profit) (POS was) (POS $) (POS 107.8) (POS million) (POS on) (POS sales) (POS of) (POS $) (POS 435.5) (POS million) (POS .)) (TOP (POS Himont) (POS faces) (POS lower) (POS prices) (POS for) (POS its) (POS mainstay) (POS product) (POS ,) (POS polypropylene) (POS ,) (POS while) (POS it) (POS goes) (POS forward) (POS with) (POS a) (POS heavy) (POS capital) (POS investment) (POS program) (POS to) (POS bolster) (POS its) (POS raw) (POS material) (POS supply) (POS and) (POS develop) (POS new) (POS uses) (POS for) (POS polypropylene) (POS ,) (POS whose) (POS markets) (POS include) (POS the) (POS packaging) (POS and) (POS automobile) (POS industries) (POS .)) (TOP (POS The) (POS company) (POS ,) (POS based) (POS in) (POS Wilmington) (POS ,) (POS Del.) (POS ,) (POS is) (POS 81%-owned) (POS by) (POS Montedison) (POS S.p) (POS .) (POS A.) (POS ,) (POS Milan) (POS ,) (POS which) (POS has) (POS an) (POS offer) (POS outstanding) (POS for) (POS the) (POS Himont) (POS shares) (POS it) (POS does) (POS n't) (POS already) (POS own) (POS .)) (TOP (POS At) (POS Quantum) (POS Chemical) (POS Corp.) (POS ,) (POS New) (POS York) (POS ,) (POS the) (POS trouble) (POS is) (POS lower) (POS prices) (POS for) (POS polyethylene) (POS ,) (POS higher) (POS debt) (POS costs) (POS and) (POS the) (POS idling) (POS of) (POS an) (POS important) (POS plant) (POS due) (POS to) (POS an) (POS explosion) (POS .)) (TOP (POS Some) (POS analysts) (POS hedge) (POS their) (POS estimates) (POS for) (POS Quantum) (POS ,) (POS because) (POS it) (POS is) (POS n't) (POS known) (POS when) (POS the) (POS company) (POS will) (POS book) (POS certain) (POS one-time) (POS charges) (POS .)) (TOP(S(CC But)(NP(DT the)(NNS estimates))(VP(VBP range)(PP(IN from)(NP(NP(NN break-even))(PP(TO to)(NP(CD 35)(NNS cents)))))(NP(DT a)(NN share)))(. .))) (TOP (POS In) (POS the) (POS 1988) (POS third) (POS quarter) (POS ,) (POS Quantum) (POS earned) (POS $) (POS 99.8) (POS million) (POS ,) (POS or) (POS $) (POS 3.92) (POS a) (POS share) (POS ,) (POS on) (POS sales) (POS of) (POS $) (POS 724.4) (POS million) (POS .)) (TOP (POS Another) (POS big) (POS polyethylene) (POS producer) (POS ,) (POS Union) (POS Carbide) (POS Corp.) (POS ,) (POS is) (POS expected) (POS to) (POS post) (POS profit) (POS of) (POS between) (POS $) (POS 1) (POS a) (POS share) (POS and) (POS $) (POS 1.25) (POS ,) (POS compared) (POS with) (POS $) (POS 1.56) (POS a) (POS share) (POS a) (POS year) (POS earlier) (POS ,) (POS when) (POS the) (POS company) (POS earned) (POS $) (POS 213) (POS million) (POS on) (POS sales) (POS of) (POS $) (POS 2.11) (POS billion) (POS .)) (TOP(S(NP(NNP Himont)(, ,)(NNP Quantum)(CC and)(NP(NNP Union)(NNP Carbide)))(ADVP(RB all))(VP(VBD declined)(S(VP(TO to)(VP(VB comment)))))(. .))) (TOP (POS The) (POS following) (POS were) (POS among) (POS Friday) (POS 's) (POS offerings) (POS and) (POS pricings) (POS in) (POS the) (POS U.S.) (POS and) (POS non-U.S.) (POS capital) (POS markets) (POS ,) (POS with) (POS terms) (POS and) (POS syndicate) (POS manager) (POS ,) (POS as) (POS compiled) (POS by) (POS Dow) (POS Jones) (POS Capital) (POS Markets) (POS Report) (POS :)) (TOP(NP(NNP Dow)(NP(NNP Chemical)(NNP Co.))(: --))) (TOP (POS $) (POS 150) (POS million) (POS of) (POS 8.55) (POS %) (POS senior) (POS notes) (POS due) (POS Oct.) (POS 15) (POS ,) (POS 2009) (POS ,) (POS priced) (POS at) (POS par) (POS .)) (TOP (POS The) (POS issue) (POS ,) (POS which) (POS is) (POS puttable) (POS back) (POS to) (POS the) (POS company) (POS at) (POS par) (POS on) (POS Oct.) (POS 15) (POS ,) (POS 1999) (POS ,) (POS was) (POS priced) (POS at) (POS a) (POS spread) (POS of) (POS 50) (POS basis) (POS points) (POS above) (POS the) (POS Treasury) (POS 's) (POS 10-year) (POS note) (POS .)) (TOP (POS Rated) (POS single-A-1) (POS by) (POS Moody) (POS 's) (POS Investors) (POS Service) (POS Inc.) (POS and) (POS single-A) (POS by) (POS Standard) (POS &) (POS Poor) (POS 's) (POS Corp.) (POS ,) (POS the) (POS non-callable) (POS issue) (POS will) (POS be) (POS sold) (POS through) (POS underwriters) (POS led) (POS by) (POS Merrill) (POS Lynch) (POS Capital) (POS Markets) (POS .)) (TOP(NP(NNP Centel)(NP(NNP Capital)(NNP Corp.))(: --))) (TOP (POS $) (POS 150) (POS million) (POS of) (POS 9) (POS %) (POS debentures) (POS due) (POS Oct.) (POS 15) (POS ,) (POS 2019) (POS ,) (POS priced) (POS at) (POS 99.943) (POS to) (POS yield) (POS 9.008) (POS %) (POS .)) (TOP (POS The) (POS non-callable) (POS issue) (POS ,) (POS which) (POS can) (POS be) (POS put) (POS back) (POS to) (POS the) (POS company) (POS in) (POS 1999) (POS ,) (POS was) (POS priced) (POS at) (POS 99) (POS basis) (POS points) (POS above) (POS the) (POS Treasury) (POS 's) (POS 10-year) (POS note) (POS .)) (TOP (POS Rated) (POS Baa-1) (POS by) (POS Moody) (POS 's) (POS and) (POS triple-B-plus) (POS by) (POS S&P) (POS ,) (POS the) (POS issue) (POS will) (POS be) (POS sold) (POS through) (POS underwriters) (POS led) (POS by) (POS Morgan) (POS Stanley) (POS &) (POS Co) (POS .)) (TOP(FRAG(NP(NNP Federal)(NNP Home))(NP(NNP Loan)(NNP Mortgage)(NNP Corp.))(: --))) (TOP (POS $) (POS 500) (POS million) (POS of) (POS Remic) (POS mortgage) (POS securities) (POS offered) (POS in) (POS 13) (POS classes) (POS by) (POS Prudential-Bache) (POS Securities) (POS Inc) (POS .)) (TOP (POS The) (POS offering) (POS ,) (POS Series) (POS 102) (POS ,) (POS backed) (POS by) (POS Freddie) (POS Mac) (POS 8) (POS 1\/2) (POS %) (POS securities) (POS with) (POS a) (POS weighted) (POS average) (POS remaining) (POS term) (POS to) (POS maturity) (POS of) (POS 28.4) (POS years) (POS ,) (POS was) (POS priced) (POS before) (POS the) (POS market) (POS 's) (POS afternoon) (POS surge) (POS .)) (TOP (POS Among) (POS classes) (POS for) (POS which) (POS details) (POS were) (POS available) (POS ,) (POS yields) (POS ranged) (POS from) (POS 8.78) (POS %) (POS ,) (POS or) (POS 75) (POS basis) (POS points) (POS over) (POS two-year) (POS Treasury) (POS securities) (POS ,) (POS to) (POS 10.05) (POS %) (POS ,) (POS or) (POS 200) (POS basis) (POS points) (POS over) (POS 10-year) (POS Treasurys) (POS .)) (TOP(FRAG(NP(NNP Federal)(NNP Home))(NP(NNP Loan)(NNP Mortgage)(NNP Corp.))(: --))) (TOP(S(NP(NP(QP($ $)(CD 300)(CD million)))(PP(IN of)(NP(NNP Remic)(NN mortgage)(NNS securities))))(VP(VBN offered)(PP(IN by)(NP(NP(NNP Citicorp)(NNPS Securities))(NNPS Markets)(NNP Inc))))(. .))) (TOP (POS The) (POS offering) (POS ,) (POS Series) (POS 101) (POS ,) (POS is) (POS backed) (POS by) (POS Freddie) (POS Mac) (POS 9) (POS 1\/2) (POS %) (POS securities) (POS .)) (TOP(S(NP(NN Pricing)(NNS details))(VP(VBD were)(RB n't)(ADJP(RB immediately)(JJ available)))(. .))) (TOP(FRAG(NP(NNP Federal)(NNP Home))(NP(NNP Loan)(NNP Mortgage)(NNP Corp.))(: --))) (TOP(S(NP(NP(QP($ $)(CD 200)(CD million)))(PP(IN of)(NP(VBN stripped)(NN mortgage)(NNS securities))))(VP(VBN underwritten)(PP(IN by)(NP(NNP BT)(NNPS Securities)(NNP Corp))))(. .))) (TOP (POS The) (POS agency) (POS 's) (POS first) (POS strips) (POS issue) (POS ,) (POS collateralized) (POS by) (POS Freddie) (POS Mac) (POS 8) (POS %) (POS securities) (POS pooled) (POS into) (POS a) (POS single) (POS security) (POS called) (POS a) (POS Giant) (POS ,) (POS will) (POS be) (POS divided) (POS into) (POS interest-only) (POS and) (POS principal-only) (POS securities) (POS .)) (TOP(S(NP(DT The)(NN collateral))(VP(VBZ is)(VP(VBG being)(VP(VBN sold)(PP(IN by)(NP(DT a)(NN thrift)(NN institution))))))(. .))) (TOP (POS The) (POS principal-only) (POS securities) (POS will) (POS be) (POS repackaged) (POS by) (POS BT) (POS Securities) (POS into) (POS a) (POS Freddie) (POS Mac) (POS Remic) (POS ,) (POS Series) (POS 103) (POS ,) (POS that) (POS will) (POS have) (POS six) (POS classes) (POS .)) (TOP (POS The) (POS interest-only) (POS securities) (POS will) (POS be) (POS sold) (POS separately) (POS by) (POS BT) (POS Securities) (POS .)) (TOP (POS The) (POS principal-only) (POS securities) (POS pay) (POS the) (POS principal) (POS from) (POS the) (POS underlying) (POS Freddie) (POS Mac) (POS 8) (POS %) (POS securities) (POS ,) (POS while) (POS the) (POS interest-only) (POS securities) (POS pay) (POS only) (POS interest) (POS .)) (TOP (POS Freddie) (POS Mac) (POS said) (POS the) (POS principal-only) (POS securities) (POS were) (POS priced) (POS at) (POS 58) (POS 1\/4) (POS to) (POS yield) (POS 8.45) (POS %) (POS ,) (POS assuming) (POS an) (POS average) (POS life) (POS of) (POS eight) (POS years) (POS and) (POS a) (POS prepayment) (POS of) (POS 160) (POS %) (POS of) (POS the) (POS PSA) (POS model) (POS .)) (TOP (POS The) (POS interest-only) (POS securities) (POS were) (POS priced) (POS at) (POS 35) (POS 1\/2) (POS to) (POS yield) (POS 10.72) (POS %) (POS .)) (TOP(S(NP(EX There))(VP(VBD were)(NP(NP(DT no)(JJ major)(NN Eurobond))(CC or)(JJ foreign)(NN bond)(NNS offerings))(PP(IN in)(NP(NNP Europe)(NNP Friday))))(. .)))
f53dab09b961ca25bcf63f305d58a2525f12587b
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/X03S.prev.tst
c9abd848d2ee4941028c1e2f95bb454899405a90
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
2,084
tst
X03S.prev.tst
# flat Dutch.X03 - 16*w + 2*w^2 + 72 # flat Dutch.X03 - 8*w + 2*w^2 + 48 # flat Dutch.X03 10*w + w^2 - 60 # flat Dutch.X03 22*w - w^2 - 36 # merg Dutch.X03 - 16*x_y_z + 2*x_y_z^2 + 72 # merg Dutch.X03 - 8*x_y_z + 2*x_y_z^2 + 48 # merg Dutch.X03 10*x_y_z + x_y_z^2 - 60 # merg Dutch.X03 22*x_y_z - x_y_z^2 - 36 # orig Dutch.X03 -(2*(w-3)^2+4*(w-3)+42)^3 # orig Dutch.X03 (1*(w-3)^2+16*(w-3)-21)^3 # orig Dutch.X03 +(-1*(w-3)^2+16*(w-3)+21)^3 # orig Dutch.X03 +(2*(w-3)^2-4*(w-3)+42)^3 # poly Dutch.X03 0 000018 [3,4,5,6] Dutch.X03 factor=12 parm= [0] 000018 [3,4,5,6] Dutch.X03 factor=12 parm= [6] 000018 [3,4,5,6] Dutch.X03 factor=28 parm= [-4] 000018 [3,4,5,6] Dutch.X03 factor=28 parm= [10] 000032 [1,9,10,12] Dutch.X03 factor=4 parm= [2] 000032 [1,9,10,12] Dutch.X03 factor=4 parm= [4] 000058 [7,14,17,20] Dutch.X03 factor=12 parm= [-6] 000058 [7,14,17,20] Dutch.X03 factor=12 parm= [12] 000086 [18,19,21,28] Dutch.X03 factor=4 parm= [-2] 000086 [18,19,21,28] Dutch.X03 factor=4 parm= [8] 000122 [3,36,37,46] Dutch.X03 factor=12 parm= [-12] 000140 [27,30,37,46] Dutch.X03 factor=3 parm= [-3] 000140 [27,30,37,46] Dutch.X03 factor=3 parm= [9] 000164 [15,42,49,58] Dutch.X03 factor=1 parm= [1] 000164 [15,42,49,58] Dutch.X03 factor=1 parm= [5] 000188 [7,54,57,70] Dutch.X03 factor=7 parm= [-11] 000230 [19,60,69,82] Dutch.X03 factor=4 parm= [-8] 000230 [19,60,69,82] Dutch.X03 factor=4 parm= [14] 000276 [58,59,69,90] Dutch.X03 factor=1 parm= [-1] 000276 [58,59,69,90] Dutch.X03 factor=1 parm= [7] 000294 [15,82,89,108] Dutch.X03 factor=4 parm= [-10] 000348 [23,94,105,126] Dutch.X03 factor=3 parm= [-9] 000348 [23,94,105,126] Dutch.X03 factor=3 parm= [15] 000446 [1,135,138,172] Dutch.X03 factor=4 parm= [-14] 000596 [85,138,171,202] Dutch.X03 factor=1 parm= [-5] 000596 [85,138,171,202] Dutch.X03 factor=1 parm= [11] 000662 [5,197,206,254] Dutch.X03 factor=3 parm= [-15] 000804 [81,202,239,282] Dutch.X03 factor=1 parm= [-7] 000804 [81,202,239,282] Dutch.X03 factor=1 parm= [13] 001620 [21,490,491,618] Dutch.X03 factor=1 parm= [-13]
9c00696014d2ad5717ef00120f087ebe46a87708
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/intg.man.tst
de04b9d04fbac2be37f81ad58e64ec027984989d
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
195
tst
intg.man.tst
clear;lines(0); deff('[y]=f(x)','y=x*sin(30*x)/sqrt(1-((x/(2*%pi))^2))') exact=-2.5432596188; abs(exact-intg(0,2*%pi,f)) // See file routines/default/Ex-intg.f abs(exact-intg(0,2*%pi,'intgex'))
f12138a392d5c37cf174ab4e9698d9a969c06db6
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/CreatingPlots/testhandle.sce
dbc3b6c7a8fea404a717e7e7e28ddda3445c0b0f
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
79
sce
testhandle.sce
plot() // Scilab graphics command gcf() // handle of corresponding figure
75574392dd9e97ace6885b9ef6154937b34036be
449d555969bfd7befe906877abab098c6e63a0e8
/374/CH4/EX4.2/42.sci
95fd212c04139f9e55ebb7fa5551e68a7ad4c055
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
425
sci
42.sci
//chapter 4 example 2// clc clear //core radius=r,radiance of the device=Rd,numerical aperture=NA,reflection coeffcient at index matched filter=R,optical power coupled to the fibre=Pc,area=A// r=25*(10^-4); A=%pi*(r*r); R=0.01;//frencel reflection coeffcient// Rd=30//in W sr-1 cm-2// NA=0.18;//numerical aperture// Pc=%pi*(1-R)*A*Rd*NA*NA*(10^6); printf("\n optical power coupled to the fibre=%f microwatt \n",Pc);
8bd62d38e0c696b5658456985feb6aaba7dbaf03
b365b7e2dfd035c0f5e291d927170556ed7c39f9
/main.tst
837635cee9a967fa308bc8e57ff8af368986f7ed
[]
no_license
bharath1729/lab7
27829ec1f7724753cc378e79a4bb49c3a79d3c33
426a17f4c8ef15abed4407e55b44f78fab5b7ac8
refs/heads/master
2023-08-30T22:13:31.471099
2021-11-01T08:56:20
2021-11-01T08:56:20
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,715
tst
main.tst
load main.hdl, output-file main.out, compare-to main.cmp, output-list x%B1.16.1 y%B1.16.1 zx%B1.1.1 nx%B1.1.1 zy%B1.1.1 ny%B1.1.1 f%B1.1.1 n%B1.1.1 ans%B1.16.1 zr%B1.1.1 ng%B1.1.1 ; // Test Case 1 set x %B0000000000011110, set y %B0000000000001111, set zx 1; set nx 0; set zy 1; set ny 0; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 1; set nx 1; set zy 1; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 1; set nx 1; set zy 1; set ny 0; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 0; set zy 1; set ny 1; set f 0; set n 0; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 1; set nx 1; set zy 0; set ny 0; set f 0; set n 0; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 0; set zy 1; set ny 1; set f 0; set n 1; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 1; set nx 1; set zy 0; set ny 0; set f 0; set n 1; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 0; set zy 1; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 1; set nx 1; set zy 0; set ny 0; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 1; set zy 1; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 1; set nx 1; set zy 0; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 0; set zy 1; set ny 1; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 1; set nx 1; set zy 0; set ny 0; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 0; set zy 0; set ny 0; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 1; set zy 0; set ny 0; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 0; set zy 0; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 0; set zy 0; set ny 0; set f 0; set n 0; eval, output; set x %B0000000000011110, set y %B0000000000001111, set zx 0; set nx 1; set zy 0; set ny 1; set f 0; set n 1; eval, output; //Test Case 2 set x %B0000000000011110, set y %B1111111111110001, set zx 1; set nx 0; set zy 1; set ny 0; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 1; set nx 1; set zy 1; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 1; set nx 1; set zy 1; set ny 0; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 0; set zy 1; set ny 1; set f 0; set n 0; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 1; set nx 1; set zy 0; set ny 0; set f 0; set n 0; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 0; set zy 1; set ny 1; set f 0; set n 1; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 1; set nx 1; set zy 0; set ny 0; set f 0; set n 1; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 0; set zy 1; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 1; set nx 1; set zy 0; set ny 0; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 1; set zy 1; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 1; set nx 1; set zy 0; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 0; set zy 1; set ny 1; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 1; set nx 1; set zy 0; set ny 0; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 0; set zy 0; set ny 0; set f 1; set n 0; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 1; set zy 0; set ny 0; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 0; set zy 0; set ny 1; set f 1; set n 1; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 0; set zy 0; set ny 0; set f 0; set n 0; eval, output; set x %B0000000000011110, set y %B1111111111110001, set zx 0; set nx 1; set zy 0; set ny 1; set f 0; set n 1; eval, output;
65a3d4646d9ae44480cf6f91464508f8e7391e66
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/rowshuff.man.tst
13f95f52f794f400607d832b0abac26793cc996b
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
248
tst
rowshuff.man.tst
clear;lines(0); F=randpencil([],[2],[1,2,3],[]); F=rand(5,5)*F*rand(5,5); // 5 x 5 regular pencil with 3 evals at 1,2,3 [Ws,F1]=rowshuff(F,-1); [E1,A1]=pen2ea(F1); svd(E1) //E1 non singular roots(det(Ws)) clean(inv(F)-inv(F1)*Ws,1.d-7)
92f25aab13fb02d3debe1a38aba718ae11d2be24
449d555969bfd7befe906877abab098c6e63a0e8
/476/CH9/EX9.11/Example_9_11.sce
fe90e0481ddee879c6ab512c89b0b48f815fdb2d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
837
sce
Example_9_11.sce
//A Textbook of Chemical Engineering Thermodynamics //Chapter 9 //Chemical Reaction Equilibria //Example 11 clear; clc; //Given: //Reaction: N2(g) + 3H2(g) --> 2NH3(g) T = 500; //temperature in K R = 8.314; //ideal gas constant //Free energy at 500 K (J/mol K) Fn = -177.5; //for nitrogen Fh = -116.9; //for hydrogen Fa = -176.9; //for ammonia //The function (Ho at 298 K - Ho at 0 K) [J/mol] Hn = 8669; //for nitrogen Hh = 8468; //for hydrogen Ha = 9920; //for methanol //Free energy of formation at 298 K (J/mol) Hf = -46100; //To calculate equilibrium constant at 500 K //Using eq. 9.53 (Page no. 414) sum_F = (2*Fa - Fn - 3*Fh) - (2*Ha - Hn - 3*Hh)/T; //(J/mol K) //Using eq. 9.57 (Page no.415) Go = T*(sum_F + 2*Hf/T); K = %e^(-Go/(R*T)); mprintf('Equilibrium constant is %f',K); //end
310700e85d8b3ee100a47b451f04bf1e737c093c
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/fplot2d.man.tst
18d5b6bb302913bcc50fc3be5a71a4c47ba3610a
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
85
tst
fplot2d.man.tst
clear;lines(0); deff("[y]=f(x)","y=sin(x)+cos(x)") x=[0:0.1:10]*%pi/10; fplot2d(x,f)
6ba129481c650fa26e74fd3094daa8c5016e46e9
af301357b0dfd5c5ca0825378008dd7924e7d5db
/bissecao2.sce
29fd6accfcc17b1b318aad46a60c1f6dc7474f80
[]
no_license
fonte-nele/Metodos-Numerico-Scilab
c544f1a9951f33708f62bdee38a7cddf7699625b
62a2be7afb3a1f7901bc5f005500475f52f2caae
refs/heads/master
2020-06-10T11:31:42.291337
2019-07-03T18:10:03
2019-07-03T18:10:03
193,640,719
0
0
null
null
null
null
ISO-8859-1
Scilab
false
false
682
sce
bissecao2.sce
// Método da Bisseção // // encontra uma raiz no intervalo [xa,xb] da função f(x)=x^3-9*x+3 // deff('y=f(x)','y=x^3-9*x+3'); // função f(x) xa= 2.0; // valor inicial de xa xb= 3.0; // valor inicial de xb epsilon=0.0000001; // tolerância Nmax=100; // número máximo de iterações i=0; // contador while (abs(xb-xa)>epsilon) & (i<Nmax) i=i+1; xm=(xa+xb)/2; if f(xa)*f(xm)<0 then xb=xm; else xa=xm; end; end; disp(xm) // exibe o último valor de xm calculado disp(i) // exibe o número de iterações executadas
c315121fdb3089c170166d16d268ce8e7d3e9193
449d555969bfd7befe906877abab098c6e63a0e8
/1862/CH6/EX6.9/C6P9.sce
67f388dcef8f49a6911b07b83e9567ac091a2ff2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,306
sce
C6P9.sce
clc //to find velocity of alpha partical after collision //to find which type of collision is this listed in fig. 6-17 // GIVEN:: //refer to diagram 6-17 from page no. 130 //we consider +ve x direction as initial velocity of alpha partical //mass of alpha partical m1 = 4.0u //assume u = 1 ma = 4.0 //mass of oxygen nucleus m2 = 16.0u //assume u = 1 mo = 16.0 //initial velocity of alpha partical in +ve x direction vaix = 1.52*10^7//in m/s //initial velocity of oxygen nucleus in +ve x direction //as oxygen nucleus is initially at rest voix = 0//in m/s //final velocity of oxygen nucleus after collision vofx = 6.08*10^6//in // SOLUTION: //applying law of conservation of momentum in x direction //final velocity of alpha partical after collision in x direction vafx = ((ma*vaix)-(mo*vofx))/ma//in m/s //applying law of conservation of momentum in x direction //we can find out collision is elstic collision as alpha partical only reverses the direction of momentum after collision //relative velocity vx = (ma*vaix+mo*voix)/(ma+mo)//in m/s printf ("\n\n Final velocity of alpha partical after collision in x direction vafx = \n\n %.2e m/s",vafx); printf ("\n\n Relative velocity vx = \n\n %.3e m/s",vx); printf ("\n\n Collision is elstic collision");
42acaa319b9c9bc283ebaca67c74be273e2608b7
2ba48648eefadee113a7c2f5d608cab5209c3a8b
/Unit&Func Test/单元测试文档/CagOS单元测试结果/THREAD/SYSPRIO/sysPrio.tst
369d8b81a5eddc4d9261b6b6b0793e279d8aea79
[]
no_license
wangdong412/Consen-SIS
879762175575d0a62f26ec1effeb46c3fd62e3e8
bca3fac35c961c3558a3438bca55e6d20825da3a
refs/heads/master
2020-07-11T05:17:18.814104
2019-08-27T09:41:41
2019-08-27T09:41:41
204,450,874
1
5
null
null
null
null
UTF-8
Scilab
false
false
2,551
tst
sysPrio.tst
-- VectorCAST 6.4d (02/29/16) -- Test Case Script -- -- Environment : THREAD1 -- Unit(s) Under Test: sysApi sysCfg sysCore sysMsg sysMutex sysPrio sysQueue sysSem sysTime -- -- Script Features TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS -- -- Unit: sysPrio -- Subprogram: OS_PrioGetHighest -- Test Case: OS_PrioGetHighest.001 TEST.UNIT:sysPrio TEST.SUBPROGRAM:OS_PrioGetHighest TEST.NEW TEST.NAME:OS_PrioGetHighest.001 TEST.VALUE:uut_prototype_stubs.CPU_CntLeadZeros.return:2 TEST.VALUE:sysPrio.<<GLOBAL>>.OSPrioTbl[0]:0 TEST.EXPECTED:sysPrio.OS_PrioGetHighest.return:34 TEST.END -- Test Case: OS_PrioGetHighest1 TEST.UNIT:sysPrio TEST.SUBPROGRAM:OS_PrioGetHighest TEST.NEW TEST.NAME:OS_PrioGetHighest1 TEST.BASIS_PATH:1 of 2 TEST.NOTES: This is an automatically generated test case. Test Path 1 (1) while (*p_tbl == (CPU_DATA)0) ==> FALSE Test Case Generation Notes: Cannot set p_tbl due to assignment Cannot set local variable p_tbl in branch 1 Cannot set local variable p_tbl in branch 2 TEST.END_NOTES: TEST.VALUE:uut_prototype_stubs.CPU_CntLeadZeros.return:1 TEST.VALUE:sysPrio.<<GLOBAL>>.OSPrioTbl[0]:1 TEST.EXPECTED:sysPrio.OS_PrioGetHighest.return:1 TEST.END -- Subprogram: OS_PrioInit -- Test Case: OS_PrioINIT TEST.UNIT:sysPrio TEST.SUBPROGRAM:OS_PrioInit TEST.NEW TEST.NAME:OS_PrioINIT TEST.BASIS_PATH:1 of 2 TEST.NOTES: This is an automatically generated test case. Test Path 1 (1) for (i < (32U - 1U) / (4U * 8U) + 1U) ==> FALSE Test Case Generation Notes: Conflict: Unable to validate expression-to-expression comparison in branch 1 TEST.END_NOTES: TEST.EXPECTED:sysPrio.<<GLOBAL>>.OSPrioTbl[0]:0 TEST.END -- Subprogram: OS_PrioInsert -- Test Case: OS_PrioInsert TEST.UNIT:sysPrio TEST.SUBPROGRAM:OS_PrioInsert TEST.NEW TEST.NAME:OS_PrioInsert TEST.BASIS_PATH:1 of 1 TEST.NOTES: No branches in subprogram TEST.END_NOTES: TEST.VALUE:sysPrio.OS_PrioInsert.prio:<<MIN>> TEST.EXPECTED:sysPrio.<<GLOBAL>>.OSPrioTbl[0]:2147483648 TEST.END -- Subprogram: OS_PrioRemove -- Test Case: OS_PrioRemove TEST.UNIT:sysPrio TEST.SUBPROGRAM:OS_PrioRemove TEST.NEW TEST.NAME:OS_PrioRemove TEST.BASIS_PATH:1 of 1 TEST.NOTES: No branches in subprogram TEST.END_NOTES: TEST.VALUE:sysPrio.<<GLOBAL>>.OSPrioTbl[0]:0 TEST.VALUE:sysPrio.OS_PrioRemove.prio:<<MIN>> TEST.EXPECTED:sysPrio.<<GLOBAL>>.OSPrioTbl[0]:0 TEST.END
c215152dd516bee8a97d54ff9f76b6e07efad25c
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/percent/%r_t.sci
5fa912688c3065b3dd0ca5172675f9147cfa3b34
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
95
sci
%r_t.sci
function f=%r_t(f1) // f=f1' //! // Copyright INRIA f=rlist(f1('num')',f1('den')',f1('dt'))
e52650c3b529ec3a650554906014c8204c69546e
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.7_3.tst
e7e663c7d61ce65111bc8ca83c681264e504037d
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
533,741
tst
5.7_3.tst
7 344:1 412:1 573:1 1322:1 1612:1 1810:1 2014:1 2157:1 2381:1 2423:1 2458:1 2561:1 2570:1 2727:1 3061:1 3147:1 3164:1 3318:2 3689:1 3769:1 3783:1 4276:1 4830:1 4843:1 5246:1 5366:1 5500:1 5668:1 5685:1 5686:1 6076:1 6822:1 7212:1 7240:1 7491:1 7525:2 8074:1 8669:1 8759:1 8786:2 9266:1 9301:1 9326:2 9848:1 10066:1 10122:2 10132:1 10957:1 11277:1 11820:1 11951:1 12216:1 12246:1 12603:1 12695:1 12805:1 13348:1 13863:1 14446:1 14759:1 14816:1 14858:1 14924:1 14943:2 15125:2 15380:1 15410:1 15438:1 15586:1 15648:1 16140:1 16263:1 16322:1 16323:1 17036:1 17419:1 17489:1 17816:1 17845:1 17846:1 18216:1 18467:1 18490:1 18870:1 19017:1 19027:1 19052:2 19832:1 20139:1 20211:1 20372:1 20410:1 20463:1 20566:1 20794:1 21162:1 21176:73 21181:1 21220:1 21361:1 21648:1 21816:1 22347:1 22478:2 22533:1 22661:2 22793:2 22851:1 22984:2 23443:1 23711:1 23735:1 24067:1 24089:1 24095:1 24231:1 24421:1 24469:1 24470:1 24633:1 24805:1 24830:1 24971:1 25091:1 25418:1 25465:1 25548:1 25556:1 25557:2 25629:1 25792:1 26404:1 26446:1 26516:1 26531:1 27273:1 27300:1 27391:1 27694:1 27748:1 27828:1 27851:1 28092:1 28346:1 29063:1 29339:1 29478:1 29546:1 29663:1 29955:1 30116:1 30602:1 30706:1 30754:1 30854:1 31135:1 31182:1 31916:1 32175:1 32969:1 33094:1 33141:1 33159:1 33350:1 33364:1 33419:1 33463:1 7 12:1 344:1 412:1 561:1 573:1 1322:1 1364:1 1612:1 1616:1 1680:1 1810:1 2014:1 2081:1 2131:1 2157:1 2331:1 2381:1 2423:1 2458:1 2466:1 2561:1 2570:2 2584:1 2607:1 2612:1 2727:1 2988:1 3036:1 3061:1 3077:1 3147:1 3164:1 3180:1 3318:2 3661:1 3689:1 3769:1 3783:1 3830:1 4276:1 4587:1 4830:1 4843:1 5074:1 5246:1 5303:2 5321:1 5366:1 5500:1 5523:1 5668:1 5685:1 5686:1 6076:1 6105:1 6114:1 6118:1 6495:1 6733:1 6822:1 6859:1 6919:1 7212:1 7240:1 7263:1 7491:1 7525:2 8074:2 8361:1 8649:1 8669:1 8759:5 8786:2 8843:1 9266:1 9301:1 9326:2 9370:1 9848:1 10066:1 10122:2 10132:1 10277:1 10362:1 10714:2 10957:2 10958:1 10974:1 11038:1 11150:1 11156:1 11264:1 11277:1 11582:1 11820:1 11951:1 12052:1 12121:1 12216:1 12246:1 12603:1 12695:1 12805:1 13275:1 13348:1 13468:1 13532:1 13789:1 13863:1 14446:1 14625:1 14723:1 14759:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15125:2 15380:1 15410:1 15438:1 15576:1 15586:1 15648:1 16140:1 16263:1 16297:1 16322:1 16323:1 16489:1 16669:1 16690:1 16698:1 17036:1 17249:1 17419:1 17489:1 17816:1 17845:1 17846:1 18216:1 18467:1 18490:1 18632:1 18705:1 18870:1 19017:1 19027:1 19052:2 19299:1 19306:1 19395:1 19458:1 19737:1 19758:1 19783:1 19832:1 20139:1 20211:1 20372:1 20410:1 20463:1 20566:1 20794:1 20918:1 21014:1 21162:1 21176:137 21181:1 21220:1 21361:1 21648:1 21816:1 22017:1 22347:1 22478:2 22533:1 22661:2 22793:2 22846:1 22851:1 22984:2 23443:1 23459:1 23702:1 23711:1 23735:1 24067:1 24089:1 24095:1 24231:1 24421:1 24469:1 24470:1 24567:1 24633:2 24712:1 24805:1 24830:1 24971:1 25091:1 25127:1 25149:1 25157:1 25239:1 25418:1 25465:1 25548:1 25556:1 25557:2 25626:1 25629:1 25703:1 25756:1 25792:1 25901:1 26015:1 26207:1 26404:1 26446:1 26516:1 26531:1 26917:1 27273:1 27300:1 27337:1 27391:1 27694:1 27732:1 27748:1 27828:1 27851:1 28031:1 28035:1 28092:1 28346:1 28609:2 28706:1 28749:1 28965:1 29063:1 29103:1 29339:1 29478:1 29546:1 29582:1 29663:1 29748:1 29839:1 29844:1 29913:1 29955:1 30001:1 30116:1 30169:1 30602:1 30706:1 30754:1 30854:1 31135:1 31182:1 31190:1 31254:1 31565:1 31848:1 31916:1 32175:1 32256:1 32504:1 32562:1 32969:1 33094:1 33141:1 33159:1 33350:1 33364:1 33419:1 33461:2 33463:1 7 12:1 191:1 344:1 412:1 515:1 561:1 573:1 816:1 1322:1 1364:1 1529:1 1612:1 1616:1 1668:1 1680:1 1800:1 1810:1 1883:1 2014:1 2081:1 2131:1 2157:1 2331:1 2381:1 2423:1 2458:1 2466:1 2561:1 2570:2 2584:1 2607:1 2612:1 2615:1 2676:1 2727:1 2988:1 3036:1 3061:1 3077:1 3128:1 3147:1 3152:1 3164:1 3180:1 3318:2 3661:1 3689:1 3723:1 3769:1 3783:1 3830:1 4145:1 4276:1 4587:1 4739:1 4830:1 4843:1 4940:1 5074:1 5246:1 5303:2 5321:1 5366:1 5500:1 5523:1 5668:1 5685:1 5686:1 5954:1 6076:1 6105:1 6114:1 6118:1 6484:1 6495:1 6733:1 6822:1 6859:1 6919:1 7212:1 7240:1 7255:1 7263:1 7434:1 7491:1 7525:2 7621:1 8074:2 8158:1 8361:1 8468:1 8649:1 8669:1 8759:6 8786:2 8843:1 9136:1 9166:1 9266:1 9301:1 9326:2 9370:1 9451:1 9650:1 9653:1 9848:1 10043:1 10066:1 10122:2 10132:1 10277:2 10362:1 10714:2 10957:2 10958:1 10974:1 10996:1 11038:1 11150:1 11156:1 11264:1 11277:1 11582:1 11820:1 11918:1 11930:1 11951:1 12052:1 12121:1 12216:1 12246:1 12461:1 12603:1 12695:1 12805:1 13275:1 13319:1 13348:1 13468:1 13532:1 13789:1 13863:1 14446:1 14625:1 14723:1 14759:1 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15125:2 15380:1 15410:1 15438:1 15576:1 15586:1 15648:1 16140:1 16263:1 16297:1 16322:1 16323:1 16489:1 16519:1 16669:1 16690:1 16698:1 17036:1 17249:1 17419:1 17489:1 17521:1 17591:1 17637:1 17816:1 17845:1 17846:1 18100:1 18216:1 18452:1 18467:1 18490:1 18632:1 18705:1 18827:1 18870:1 19017:1 19027:1 19052:2 19299:1 19306:1 19395:1 19458:1 19470:1 19737:1 19758:1 19783:1 19832:1 20139:1 20211:1 20372:1 20410:1 20463:1 20566:1 20592:1 20794:1 20918:1 21014:1 21162:1 21176:172 21180:1 21181:1 21220:1 21361:1 21648:1 21714:1 21816:1 22017:1 22347:1 22478:2 22533:1 22545:1 22661:2 22793:2 22846:1 22851:1 22984:2 23443:1 23459:1 23526:1 23702:1 23711:1 23735:1 24067:1 24089:1 24095:1 24231:1 24421:1 24469:1 24470:1 24567:1 24633:2 24655:1 24712:1 24805:1 24830:1 24971:1 25091:1 25127:1 25149:1 25157:1 25239:1 25418:1 25465:1 25548:1 25556:1 25557:2 25626:1 25629:1 25703:1 25756:1 25792:1 25901:1 26015:1 26207:1 26316:1 26404:1 26446:1 26516:1 26531:1 26917:1 27273:1 27300:1 27337:1 27391:1 27694:1 27732:1 27748:1 27828:1 27851:1 27861:1 28031:1 28035:1 28092:1 28346:1 28609:2 28706:1 28749:1 28965:1 29063:1 29103:1 29339:1 29478:1 29546:1 29582:1 29663:1 29748:1 29839:1 29844:1 29909:1 29913:1 29955:1 30001:1 30116:1 30169:1 30602:1 30706:1 30754:1 30854:1 31135:1 31176:1 31182:1 31190:1 31254:1 31472:1 31565:1 31848:1 31916:1 31985:1 32175:1 32256:1 32463:1 32504:1 32562:1 32621:1 32969:1 33094:1 33141:1 33159:1 33350:1 33364:1 33419:1 33450:1 33461:2 33463:1 7 12:1 191:1 344:1 412:1 515:1 561:1 573:1 670:1 816:1 1322:1 1364:1 1529:1 1612:1 1616:1 1668:1 1680:1 1800:1 1810:1 1883:1 2014:1 2081:1 2131:1 2157:1 2331:1 2381:1 2423:2 2458:1 2466:1 2561:1 2570:2 2584:1 2607:1 2612:1 2615:1 2676:1 2727:1 2988:1 3036:1 3061:1 3077:1 3128:1 3147:1 3152:1 3157:1 3164:1 3180:1 3250:1 3265:1 3318:3 3548:1 3661:1 3689:1 3723:2 3769:1 3783:1 3830:1 4145:1 4276:1 4411:1 4587:1 4739:1 4754:1 4830:1 4843:1 4852:1 4940:1 5040:1 5074:1 5246:1 5303:2 5321:1 5366:1 5500:1 5523:1 5668:1 5685:1 5686:1 5700:1 5717:1 5919:1 5954:1 6065:1 6076:1 6105:1 6114:1 6118:1 6480:1 6484:1 6495:1 6733:1 6822:1 6859:1 6919:1 7020:1 7212:1 7240:1 7255:1 7263:1 7434:1 7491:1 7525:2 7621:1 7735:1 7862:1 8049:1 8074:2 8158:1 8312:1 8361:1 8468:1 8510:1 8526:1 8534:1 8649:1 8669:1 8759:6 8786:3 8843:1 9136:1 9166:1 9266:1 9301:1 9326:3 9370:1 9451:1 9650:1 9653:1 9848:1 10043:1 10066:1 10122:2 10132:1 10277:2 10362:1 10663:1 10714:2 10868:1 10957:2 10958:1 10974:1 10996:1 11038:1 11150:1 11156:1 11264:1 11277:1 11475:1 11582:1 11820:1 11918:1 11930:1 11951:1 12051:1 12052:1 12121:1 12216:1 12246:1 12461:2 12603:1 12695:1 12805:1 12933:1 13275:1 13319:1 13326:1 13348:1 13411:1 13456:1 13468:1 13532:1 13789:1 13863:1 13885:1 14446:1 14474:1 14539:1 14625:1 14723:1 14759:1 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15380:1 15410:1 15438:1 15576:1 15586:1 15648:1 15729:1 15947:1 16140:1 16263:1 16297:1 16322:1 16323:1 16489:1 16502:1 16519:1 16669:1 16690:1 16698:1 16840:1 17036:1 17249:1 17419:1 17489:1 17521:1 17564:1 17591:1 17637:1 17816:1 17845:2 17846:1 18100:1 18216:1 18452:1 18467:1 18487:1 18490:1 18632:1 18705:1 18760:1 18782:1 18827:1 18870:1 19017:1 19027:2 19052:3 19075:1 19155:1 19281:1 19299:1 19306:1 19395:1 19458:1 19470:2 19737:1 19758:1 19783:1 19832:1 20139:1 20211:1 20372:1 20410:1 20463:1 20566:1 20592:1 20794:2 20918:1 21014:1 21109:1 21162:1 21176:237 21180:1 21181:1 21220:1 21361:2 21459:1 21648:1 21714:1 21816:1 21818:1 21917:1 22017:1 22347:1 22478:3 22533:1 22545:1 22661:2 22793:2 22846:1 22851:1 22984:3 23241:1 23443:1 23459:1 23526:1 23702:1 23711:2 23735:1 23881:1 24032:1 24067:1 24089:1 24095:1 24231:1 24421:1 24469:2 24470:1 24567:1 24633:2 24655:2 24712:1 24805:1 24830:1 24856:1 24971:1 24986:1 25060:1 25091:1 25127:1 25149:1 25157:1 25171:1 25239:1 25418:1 25465:1 25548:1 25556:1 25557:2 25626:1 25629:1 25703:1 25756:1 25776:1 25792:1 25901:2 26015:1 26091:1 26207:1 26316:1 26404:1 26446:1 26471:1 26516:1 26531:1 26542:1 26693:1 26917:1 27267:1 27273:1 27300:1 27324:1 27337:1 27391:1 27694:1 27724:1 27725:1 27732:1 27748:1 27828:1 27851:1 27858:1 27861:1 28031:1 28035:1 28092:1 28346:2 28609:2 28706:1 28749:1 28959:1 28965:1 29063:1 29103:1 29157:1 29191:1 29339:1 29396:1 29422:1 29427:1 29478:1 29546:1 29582:1 29663:1 29748:1 29749:1 29839:1 29844:1 29909:1 29913:1 29918:1 29940:1 29955:1 30001:1 30116:1 30126:1 30169:1 30171:1 30319:1 30459:1 30602:1 30696:1 30706:1 30754:1 30854:1 31135:1 31170:1 31176:1 31179:1 31182:1 31190:1 31215:1 31254:1 31472:1 31532:1 31565:1 31705:1 31848:1 31916:2 31940:1 31985:1 32015:1 32020:1 32175:1 32256:1 32293:1 32319:1 32460:1 32463:1 32504:1 32548:1 32562:1 32621:1 32622:1 32726:1 32969:1 33094:1 33108:1 33141:1 33159:1 33233:1 33252:1 33326:1 33350:1 33364:1 33419:1 33450:1 33461:2 33463:1 7 12:1 191:1 344:1 412:1 497:1 515:1 561:1 573:1 670:1 816:2 1207:1 1322:1 1364:1 1462:1 1529:1 1612:1 1616:1 1668:1 1680:1 1800:1 1810:1 1883:1 2014:1 2081:1 2131:1 2157:1 2239:1 2331:1 2381:1 2423:2 2458:1 2466:1 2561:1 2570:2 2580:1 2584:1 2607:1 2612:1 2615:1 2676:1 2727:1 2988:1 3036:1 3061:1 3077:1 3128:1 3147:1 3152:1 3157:2 3164:1 3180:1 3250:1 3265:1 3318:3 3548:1 3661:1 3689:1 3723:2 3769:1 3783:1 3830:1 3899:1 4048:1 4077:1 4145:1 4155:1 4276:1 4317:1 4411:1 4587:1 4739:1 4754:1 4830:1 4843:1 4852:1 4940:1 5040:1 5074:1 5246:1 5260:1 5303:2 5321:1 5366:1 5406:1 5500:1 5523:1 5528:1 5668:1 5685:1 5686:1 5700:1 5708:1 5717:1 5919:1 5954:1 6065:1 6076:1 6105:1 6114:1 6118:1 6480:1 6484:1 6495:1 6733:1 6822:1 6859:1 6919:1 7020:1 7212:1 7232:1 7240:1 7255:1 7263:1 7434:1 7491:1 7525:2 7621:1 7735:1 7862:1 8049:1 8074:2 8158:1 8312:1 8361:1 8468:2 8510:1 8526:1 8534:1 8649:1 8669:1 8759:7 8786:3 8843:1 9136:1 9166:1 9266:1 9301:1 9305:1 9326:3 9370:1 9451:1 9605:1 9650:1 9653:1 9848:1 9868:1 10043:1 10066:1 10122:2 10132:1 10277:2 10362:1 10414:1 10663:1 10714:2 10868:1 10957:2 10958:1 10974:1 10996:1 11038:1 11150:1 11156:1 11264:1 11277:1 11309:1 11475:1 11582:1 11681:1 11820:1 11918:1 11930:1 11951:1 11958:1 12051:2 12052:1 12121:1 12216:1 12246:1 12461:2 12603:1 12695:1 12805:1 12928:1 12933:1 13275:1 13319:1 13326:1 13348:1 13411:1 13456:1 13468:1 13491:1 13532:1 13789:1 13863:1 13885:1 13899:1 14270:1 14446:1 14474:1 14530:1 14539:1 14625:1 14723:1 14759:1 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15148:1 15380:1 15410:1 15438:1 15576:1 15586:1 15648:1 15729:1 15947:1 16140:1 16263:1 16297:1 16322:1 16323:1 16489:1 16502:1 16519:1 16526:1 16669:1 16690:1 16698:1 16840:1 16859:1 17036:1 17249:1 17413:1 17419:1 17489:1 17521:1 17564:1 17591:1 17628:1 17637:2 17816:1 17845:2 17846:1 18020:1 18091:1 18100:1 18216:1 18371:1 18452:1 18467:1 18487:1 18490:1 18632:1 18705:1 18760:1 18782:1 18827:1 18870:1 19017:1 19027:2 19052:3 19075:1 19155:1 19281:1 19299:1 19306:1 19395:1 19458:1 19470:2 19737:1 19758:1 19783:1 19832:1 20139:1 20211:1 20372:1 20410:1 20463:1 20566:1 20592:1 20794:2 20918:1 21014:1 21109:1 21162:1 21176:269 21180:1 21181:1 21220:1 21361:2 21459:1 21648:1 21714:1 21793:1 21816:1 21818:1 21917:1 22017:1 22336:1 22347:1 22478:3 22533:1 22545:1 22661:2 22682:1 22793:2 22846:1 22851:1 22984:3 23164:1 23241:1 23443:1 23459:1 23526:1 23659:1 23702:1 23711:2 23735:1 23881:1 24032:1 24067:1 24089:1 24095:1 24231:1 24421:1 24469:2 24470:1 24567:1 24633:2 24655:2 24712:1 24805:1 24830:1 24856:1 24875:1 24971:1 24986:1 25060:1 25091:1 25127:1 25149:1 25157:1 25171:1 25239:1 25292:1 25314:1 25418:1 25465:1 25548:1 25556:1 25557:2 25626:1 25629:1 25703:1 25756:1 25776:1 25792:1 25901:2 25993:1 26015:1 26091:1 26207:1 26268:1 26316:2 26404:1 26446:1 26471:1 26516:1 26531:1 26542:1 26689:1 26693:1 26912:1 26917:1 27267:1 27273:1 27300:1 27324:1 27337:1 27391:1 27694:1 27724:1 27725:1 27732:1 27737:1 27748:1 27781:1 27828:1 27851:1 27852:3 27858:1 27861:1 28031:1 28035:1 28092:1 28346:2 28609:2 28706:1 28749:1 28850:1 28959:1 28965:1 29063:1 29103:1 29157:2 29191:1 29339:1 29396:1 29422:1 29427:1 29478:1 29546:1 29582:1 29604:1 29663:1 29748:1 29749:1 29839:1 29844:1 29881:1 29909:1 29913:1 29918:1 29940:1 29955:1 30001:1 30116:1 30126:1 30169:1 30171:1 30283:1 30319:1 30412:1 30459:1 30602:1 30696:1 30706:1 30754:1 30854:1 31098:1 31135:1 31170:1 31176:1 31179:1 31182:1 31190:1 31194:1 31215:1 31254:1 31472:1 31477:1 31532:1 31565:1 31705:1 31848:1 31916:2 31940:1 31985:1 32015:1 32020:1 32175:1 32206:1 32256:1 32293:1 32319:1 32460:1 32463:1 32504:1 32548:1 32560:1 32562:1 32621:1 32622:1 32726:1 32969:1 33094:1 33108:1 33141:1 33159:1 33233:1 33252:1 33326:1 33350:1 33364:1 33419:1 33450:1 33461:2 33463:1 7 12:1 191:1 344:1 412:1 497:1 515:1 561:1 573:1 670:1 680:1 816:2 1207:1 1322:1 1364:1 1435:1 1462:1 1529:1 1612:1 1616:1 1668:1 1680:1 1800:1 1810:1 1883:1 2014:1 2081:1 2131:1 2157:1 2239:1 2331:1 2381:1 2423:2 2458:1 2466:1 2470:1 2561:1 2569:1 2570:2 2580:1 2584:1 2607:2 2612:1 2615:1 2676:1 2727:1 2988:1 3036:1 3061:1 3077:2 3128:1 3147:1 3152:1 3157:2 3164:1 3180:1 3250:1 3265:1 3318:3 3548:1 3661:1 3689:1 3723:2 3769:1 3783:1 3830:1 3899:1 4034:1 4048:1 4077:1 4145:1 4153:1 4155:1 4276:1 4317:1 4411:1 4587:1 4739:1 4754:1 4830:1 4843:1 4852:1 4940:1 5031:1 5040:1 5074:1 5246:1 5258:1 5260:1 5303:2 5321:1 5366:1 5406:1 5500:1 5523:1 5528:1 5668:1 5685:1 5686:2 5700:1 5708:1 5716:1 5717:1 5919:1 5954:1 5990:1 6065:1 6076:1 6105:1 6114:1 6118:1 6399:1 6480:1 6484:1 6495:1 6733:1 6822:1 6859:1 6919:1 7020:1 7067:1 7141:1 7212:1 7232:1 7240:1 7255:1 7263:1 7434:1 7491:1 7525:2 7621:2 7735:1 7749:1 7862:1 7990:1 8049:1 8074:2 8158:1 8312:1 8361:1 8468:2 8510:1 8526:1 8534:1 8649:1 8669:1 8759:8 8786:3 8843:1 9136:1 9166:1 9266:1 9301:1 9305:1 9326:3 9370:1 9451:1 9605:1 9650:1 9653:1 9848:1 9868:1 10043:1 10066:1 10122:2 10132:1 10220:1 10270:1 10277:2 10362:1 10414:1 10663:1 10714:2 10868:1 10957:2 10958:1 10974:1 10996:1 11038:1 11150:1 11156:1 11264:1 11277:1 11309:1 11475:1 11536:1 11582:1 11639:1 11681:1 11820:1 11918:1 11930:1 11951:1 11958:1 11980:1 12051:2 12052:1 12121:1 12216:1 12246:1 12461:2 12603:1 12695:1 12805:1 12928:1 12933:1 12948:1 13275:1 13319:1 13326:1 13348:1 13411:1 13456:1 13468:1 13491:1 13532:1 13702:1 13789:1 13863:1 13885:1 13899:1 13970:1 14270:1 14446:1 14474:1 14530:1 14539:1 14542:1 14587:1 14603:1 14625:1 14723:1 14759:1 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15137:1 15148:1 15159:1 15380:1 15410:1 15438:1 15576:1 15586:1 15648:1 15675:1 15729:1 15942:1 15947:1 16140:1 16263:1 16297:1 16322:1 16323:1 16338:1 16451:1 16489:1 16502:1 16511:1 16519:1 16526:1 16669:1 16690:1 16698:1 16840:1 16859:1 16876:1 16978:1 17036:1 17249:1 17362:1 17413:1 17419:1 17489:1 17521:1 17564:1 17591:1 17602:1 17628:1 17637:2 17816:1 17845:2 17846:1 17847:1 17915:1 18020:1 18091:1 18100:1 18185:1 18216:1 18371:1 18386:1 18452:1 18467:1 18487:1 18490:1 18632:1 18705:1 18760:1 18782:1 18827:1 18870:1 19017:1 19027:2 19052:3 19075:1 19155:1 19281:1 19299:1 19306:1 19319:1 19331:1 19395:1 19458:1 19470:2 19737:1 19758:1 19783:1 19786:1 19832:1 20139:1 20211:1 20282:1 20372:1 20410:1 20463:1 20566:1 20592:1 20794:2 20918:2 21014:1 21109:1 21162:1 21176:307 21180:1 21181:1 21220:1 21361:2 21423:1 21459:1 21648:1 21652:1 21713:1 21714:1 21793:1 21816:1 21818:1 21917:1 22017:1 22250:1 22336:1 22347:1 22478:3 22498:1 22533:1 22541:1 22545:1 22661:2 22682:1 22698:1 22762:1 22793:2 22846:1 22851:1 22984:3 23164:1 23241:1 23307:1 23443:1 23459:1 23526:1 23616:1 23659:1 23702:1 23711:2 23735:1 23848:1 23881:1 23913:1 24032:1 24067:1 24089:1 24095:1 24231:1 24421:1 24459:1 24469:2 24470:1 24513:1 24567:1 24633:2 24655:2 24712:1 24805:1 24806:1 24830:1 24856:1 24875:1 24891:1 24971:1 24986:1 25060:1 25076:1 25091:1 25127:1 25149:1 25157:1 25171:1 25239:1 25292:1 25314:1 25321:1 25418:1 25432:1 25465:1 25548:1 25556:1 25557:2 25626:1 25629:1 25703:1 25756:1 25776:1 25792:1 25901:3 25993:1 26015:1 26091:1 26120:1 26157:1 26207:1 26268:1 26316:2 26404:1 26446:1 26471:1 26516:1 26531:1 26542:1 26689:1 26693:1 26871:1 26912:1 26917:1 26969:1 27022:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27391:1 27694:1 27705:1 27724:1 27725:1 27732:1 27737:1 27748:1 27781:1 27828:1 27851:1 27852:3 27858:1 27861:1 27891:1 28031:1 28035:1 28092:1 28346:2 28609:3 28706:1 28749:1 28850:1 28959:1 28965:1 28994:1 29063:1 29103:1 29157:2 29191:1 29339:1 29377:1 29396:1 29422:1 29427:1 29477:1 29478:1 29546:1 29582:1 29604:1 29663:2 29748:2 29749:1 29839:1 29844:1 29881:1 29909:1 29913:1 29918:1 29940:1 29955:1 29995:1 30001:1 30116:1 30126:1 30169:1 30171:1 30283:1 30319:1 30412:1 30459:1 30602:1 30696:1 30706:1 30754:1 30850:1 30854:1 31098:1 31135:1 31170:1 31176:1 31179:1 31182:1 31190:1 31194:1 31215:1 31254:1 31472:1 31477:1 31532:1 31565:1 31705:1 31756:1 31848:1 31916:3 31940:1 31985:1 32015:1 32020:1 32175:1 32206:1 32256:1 32293:1 32300:1 32319:1 32373:1 32460:1 32463:1 32504:1 32548:1 32560:1 32562:1 32621:1 32622:1 32726:1 32969:1 33094:1 33108:1 33141:1 33159:1 33233:1 33252:1 33318:1 33326:1 33350:1 33364:1 33419:1 33424:1 33450:1 33453:1 33461:2 33463:1 33474:1 33516:1 7 12:1 21:1 191:1 344:1 412:1 497:1 515:1 561:1 573:1 670:1 680:1 816:3 1207:1 1322:1 1364:1 1428:1 1435:1 1462:1 1529:1 1612:1 1616:1 1668:1 1680:1 1800:1 1810:1 1883:1 2014:2 2055:1 2081:1 2131:1 2157:2 2239:1 2331:1 2370:1 2381:1 2423:2 2458:1 2466:1 2470:1 2523:1 2561:1 2564:1 2569:1 2570:3 2580:1 2584:1 2607:2 2612:1 2615:1 2676:1 2687:1 2727:1 2795:1 2938:1 2988:1 3036:1 3061:1 3077:2 3128:1 3147:1 3152:1 3157:2 3164:1 3180:1 3250:1 3265:1 3318:3 3542:1 3548:1 3661:1 3689:1 3723:2 3769:1 3783:1 3826:1 3830:1 3899:1 4034:1 4048:1 4077:1 4145:1 4153:1 4155:1 4270:1 4276:1 4317:1 4411:1 4587:1 4739:1 4754:1 4817:1 4830:1 4843:1 4852:1 4891:1 4940:1 5031:1 5040:1 5074:1 5246:1 5258:1 5260:1 5303:2 5321:1 5366:2 5406:1 5500:1 5523:2 5528:1 5668:1 5685:1 5686:3 5700:1 5708:1 5716:1 5717:1 5861:1 5919:1 5954:1 5990:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6362:1 6399:1 6480:1 6484:1 6495:1 6541:1 6733:1 6822:1 6859:1 6880:1 6919:1 7020:1 7067:1 7141:1 7212:2 7232:2 7240:1 7255:1 7263:1 7266:1 7297:1 7434:1 7454:1 7491:1 7525:2 7583:1 7621:2 7735:1 7749:1 7862:1 7990:1 8049:1 8074:2 8158:1 8312:1 8361:1 8468:3 8510:1 8526:1 8534:1 8548:1 8630:1 8649:1 8669:1 8693:1 8759:9 8786:3 8843:1 9136:1 9166:1 9266:1 9301:1 9305:1 9326:3 9370:1 9451:1 9599:1 9605:1 9650:1 9653:1 9780:1 9848:1 9868:1 9888:1 9976:1 10043:1 10066:1 10093:1 10122:2 10132:1 10220:1 10270:1 10277:2 10353:1 10362:1 10414:1 10513:1 10663:1 10714:2 10734:1 10868:1 10927:1 10957:2 10958:1 10974:2 10996:1 11038:1 11150:1 11156:1 11264:1 11277:1 11309:1 11373:1 11440:1 11475:1 11536:1 11551:1 11582:1 11639:1 11681:1 11820:1 11861:1 11918:1 11930:1 11951:1 11957:1 11958:1 11980:1 12051:2 12052:1 12121:1 12165:1 12216:1 12246:1 12248:1 12461:2 12474:1 12603:1 12695:1 12805:1 12928:1 12933:1 12948:1 12970:1 13241:1 13275:1 13289:1 13319:1 13326:1 13348:1 13349:1 13411:1 13456:1 13460:1 13468:1 13491:1 13532:1 13702:1 13789:1 13863:1 13885:1 13899:1 13970:1 14270:1 14446:1 14474:1 14530:1 14539:1 14542:1 14587:1 14603:1 14625:1 14723:1 14759:1 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15137:1 15148:1 15159:1 15380:1 15410:1 15438:1 15464:1 15558:1 15576:1 15586:1 15648:1 15675:1 15729:2 15773:1 15942:1 15947:1 16140:1 16188:1 16263:1 16297:1 16322:1 16323:1 16338:1 16451:1 16489:1 16502:1 16511:1 16519:1 16526:1 16669:1 16690:1 16698:1 16708:1 16840:1 16859:1 16876:1 16978:1 16997:1 17036:1 17232:1 17249:1 17362:1 17384:1 17413:1 17419:1 17489:1 17521:1 17564:1 17591:1 17602:1 17628:1 17637:3 17815:1 17816:1 17845:2 17846:1 17847:1 17915:1 18020:1 18091:1 18100:1 18138:1 18185:1 18216:1 18228:1 18371:1 18386:1 18444:1 18452:1 18467:1 18482:1 18487:1 18490:1 18632:1 18705:1 18760:1 18782:1 18827:1 18870:1 18901:1 19017:1 19027:2 19052:3 19075:1 19155:1 19182:1 19281:1 19299:1 19306:1 19319:1 19331:1 19395:1 19458:1 19470:2 19611:1 19737:1 19758:1 19783:1 19786:1 19832:1 19843:1 20139:1 20211:1 20282:1 20372:1 20410:1 20463:1 20566:1 20592:1 20739:1 20794:2 20918:2 21014:1 21109:1 21110:1 21162:1 21176:368 21180:1 21181:1 21220:2 21361:2 21423:1 21459:1 21648:1 21652:1 21713:1 21714:1 21793:1 21810:1 21816:1 21818:1 21917:1 22017:1 22250:1 22336:1 22347:1 22478:3 22498:1 22533:1 22541:1 22545:1 22661:3 22682:1 22698:1 22762:2 22793:2 22846:1 22851:1 22984:3 23018:1 23164:1 23241:1 23307:1 23443:1 23459:1 23526:1 23616:1 23659:1 23702:1 23711:2 23722:1 23735:1 23848:1 23881:1 23913:1 24032:1 24067:1 24089:1 24095:1 24231:1 24367:1 24421:1 24459:1 24469:2 24470:1 24513:1 24567:1 24589:1 24633:2 24655:2 24693:1 24712:1 24805:1 24806:1 24830:1 24834:1 24856:1 24875:1 24891:1 24943:1 24971:1 24986:1 25060:1 25076:1 25091:1 25127:1 25149:1 25157:1 25171:1 25239:1 25292:1 25314:1 25321:1 25337:1 25348:1 25418:1 25432:1 25465:1 25548:1 25556:1 25557:2 25626:1 25629:1 25655:1 25703:1 25756:1 25776:2 25792:1 25901:3 25947:1 25993:1 26015:1 26091:1 26120:1 26157:1 26207:1 26268:1 26316:2 26404:1 26446:1 26471:1 26516:1 26531:1 26542:1 26648:1 26689:1 26693:1 26781:1 26871:1 26912:1 26917:1 26969:1 27022:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27391:1 27626:1 27694:1 27705:1 27724:1 27725:1 27732:1 27737:1 27748:1 27781:2 27828:1 27851:1 27852:3 27858:1 27861:1 27891:1 28031:1 28035:1 28092:1 28346:2 28421:1 28571:1 28609:3 28706:1 28749:1 28845:1 28850:1 28959:1 28965:1 28994:1 29063:1 29103:1 29157:2 29191:1 29339:1 29377:2 29396:1 29422:1 29427:1 29477:1 29478:2 29546:1 29582:1 29604:1 29663:2 29748:2 29749:1 29839:1 29844:1 29881:1 29909:1 29913:1 29918:1 29940:1 29955:1 29995:1 30001:1 30074:1 30116:1 30126:1 30169:1 30171:1 30209:1 30283:1 30319:1 30412:1 30459:1 30602:1 30696:1 30706:1 30754:1 30798:1 30850:1 30854:2 30949:1 31098:1 31135:1 31170:1 31176:1 31179:1 31182:1 31190:1 31194:1 31215:1 31254:1 31472:1 31477:1 31532:1 31565:1 31577:1 31705:1 31756:1 31848:1 31916:3 31940:1 31985:1 32007:1 32015:1 32020:1 32041:1 32175:1 32206:2 32256:1 32293:1 32300:1 32319:1 32373:1 32460:1 32463:1 32504:1 32548:1 32560:1 32562:1 32621:1 32622:1 32664:1 32726:1 32969:1 33094:1 33108:1 33141:1 33159:1 33184:1 33233:1 33252:1 33318:1 33326:1 33350:1 33364:2 33419:1 33424:1 33450:1 33453:2 33461:2 33463:2 33474:1 33516:1 7 12:1 21:1 191:1 262:1 344:1 412:1 497:1 515:1 561:1 573:1 662:1 670:1 671:1 676:1 680:1 816:3 1066:1 1089:1 1153:1 1207:1 1319:1 1322:1 1364:1 1428:1 1435:1 1462:1 1529:1 1612:1 1616:1 1668:1 1680:1 1800:1 1810:1 1883:1 2014:2 2055:1 2081:1 2131:1 2157:2 2239:1 2331:1 2370:1 2381:1 2423:2 2446:1 2458:1 2466:1 2470:1 2523:1 2561:1 2564:1 2569:1 2570:3 2580:1 2584:1 2607:2 2612:1 2615:1 2676:1 2679:1 2687:1 2727:1 2742:1 2795:1 2938:1 2988:1 3036:1 3061:1 3077:2 3128:1 3147:1 3152:1 3157:2 3164:1 3172:1 3180:1 3250:1 3265:1 3318:3 3542:1 3548:1 3661:1 3689:1 3723:2 3769:1 3783:1 3826:1 3830:1 3899:1 3937:1 4034:1 4048:1 4057:1 4077:1 4081:1 4145:1 4153:1 4155:1 4270:1 4276:1 4317:1 4411:1 4550:1 4587:1 4725:1 4739:1 4754:1 4817:1 4830:1 4843:1 4852:1 4891:1 4940:1 5031:1 5040:1 5074:1 5246:1 5258:1 5260:1 5286:1 5303:2 5321:1 5366:2 5406:1 5500:1 5523:2 5528:1 5567:1 5668:1 5685:1 5686:3 5695:1 5700:1 5708:1 5716:1 5717:1 5861:1 5919:1 5954:1 5990:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6362:2 6399:1 6480:1 6484:1 6495:1 6541:1 6733:1 6822:1 6859:1 6880:1 6914:1 6919:1 7020:1 7067:1 7092:1 7141:1 7212:2 7232:2 7240:1 7255:1 7263:1 7266:1 7297:1 7434:1 7454:1 7491:1 7525:2 7583:1 7621:2 7735:1 7748:1 7749:2 7830:1 7862:1 7874:2 7990:1 8049:1 8074:2 8158:1 8178:1 8187:1 8247:1 8312:1 8361:1 8378:1 8468:3 8481:1 8510:1 8526:1 8534:1 8548:1 8630:1 8649:1 8669:1 8692:1 8693:1 8759:9 8786:3 8843:1 8965:1 9136:1 9166:1 9266:1 9301:1 9305:1 9326:5 9370:1 9392:1 9451:1 9599:1 9605:1 9650:1 9653:1 9780:1 9848:1 9868:1 9888:1 9897:1 9976:1 10043:1 10066:1 10093:1 10122:2 10132:1 10220:1 10270:1 10277:2 10353:2 10362:1 10414:1 10513:1 10514:1 10516:1 10663:1 10714:2 10719:1 10734:1 10868:1 10924:1 10927:1 10957:2 10958:1 10974:2 10996:1 11038:1 11147:1 11150:1 11156:1 11184:1 11264:1 11277:1 11309:1 11373:1 11440:1 11475:1 11536:2 11551:1 11582:1 11639:1 11661:1 11681:1 11754:1 11820:1 11861:1 11918:1 11930:1 11951:1 11957:1 11958:1 11980:1 12051:2 12052:1 12121:1 12165:1 12216:1 12246:1 12248:1 12250:1 12461:2 12474:1 12603:1 12695:1 12805:1 12928:1 12933:1 12948:1 12970:1 13008:1 13036:1 13241:1 13275:1 13289:1 13301:1 13319:1 13326:1 13348:1 13349:1 13411:1 13456:1 13460:1 13468:1 13477:1 13491:1 13532:1 13702:1 13789:1 13863:1 13885:1 13899:1 13970:1 14270:1 14446:1 14474:1 14530:1 14539:1 14542:1 14587:1 14603:1 14625:1 14723:1 14754:1 14759:1 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15137:1 15148:1 15159:1 15380:1 15410:1 15438:1 15464:1 15522:1 15558:1 15575:1 15576:1 15586:2 15648:1 15675:1 15680:1 15726:1 15729:2 15773:1 15942:1 15947:1 15999:1 16136:1 16140:1 16188:1 16263:1 16297:1 16322:1 16323:1 16338:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:1 16526:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16840:1 16859:1 16876:1 16978:1 16997:1 17036:1 17232:1 17249:1 17252:1 17362:1 17384:1 17413:1 17419:1 17489:1 17521:1 17564:1 17591:1 17602:1 17628:1 17637:3 17815:1 17816:1 17845:2 17846:1 17847:1 17848:1 17915:1 18020:1 18069:1 18091:1 18100:1 18138:1 18185:1 18216:1 18228:1 18371:1 18386:1 18404:1 18444:1 18452:1 18467:1 18469:1 18482:1 18487:1 18490:2 18631:1 18632:1 18705:1 18741:1 18760:1 18778:1 18782:1 18827:1 18870:1 18901:1 19017:1 19027:2 19052:3 19075:1 19155:1 19182:1 19281:1 19299:1 19306:1 19319:1 19331:1 19395:1 19458:1 19470:2 19611:1 19737:1 19745:1 19758:1 19783:1 19786:1 19832:1 19838:1 19843:1 19972:1 20139:1 20206:1 20211:1 20282:1 20372:1 20410:1 20463:1 20566:1 20592:1 20624:1 20739:1 20794:2 20918:3 20932:1 21014:1 21109:1 21110:1 21162:1 21176:413 21180:1 21181:1 21220:2 21361:2 21385:1 21423:1 21459:1 21648:1 21652:1 21713:1 21714:1 21793:1 21810:1 21816:1 21818:1 21876:1 21917:1 22017:1 22091:1 22170:1 22250:1 22304:1 22336:1 22347:1 22441:1 22478:3 22498:1 22530:1 22533:1 22541:1 22545:1 22661:3 22682:1 22698:1 22762:2 22793:2 22846:1 22851:1 22984:3 23018:1 23123:1 23164:1 23241:1 23307:1 23443:1 23459:1 23526:1 23616:1 23659:1 23702:1 23711:2 23722:1 23735:1 23772:1 23848:1 23881:1 23913:1 24032:1 24067:1 24089:1 24095:1 24231:1 24317:1 24367:1 24381:1 24421:1 24459:1 24469:2 24470:1 24513:1 24567:1 24589:1 24633:2 24655:2 24693:1 24712:1 24805:1 24806:1 24830:1 24834:1 24840:1 24856:1 24875:1 24891:1 24943:1 24971:1 24986:1 25060:1 25076:1 25091:1 25127:1 25149:1 25157:1 25171:1 25215:1 25239:1 25292:1 25314:1 25321:1 25337:1 25348:1 25406:1 25418:1 25432:1 25465:1 25548:1 25556:1 25557:2 25626:1 25629:1 25655:1 25703:1 25756:1 25776:2 25792:1 25901:3 25947:1 25993:1 26015:1 26091:1 26120:1 26157:1 26207:1 26268:1 26316:2 26404:1 26434:1 26446:2 26471:1 26516:1 26531:1 26542:1 26555:1 26648:1 26689:1 26693:1 26729:1 26781:1 26871:1 26912:1 26917:1 26924:1 26969:1 27022:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27391:1 27474:1 27626:1 27694:1 27705:1 27724:1 27725:1 27731:1 27732:1 27737:1 27748:1 27781:2 27828:1 27851:1 27852:3 27858:1 27861:1 27891:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28346:2 28416:1 28421:1 28571:1 28609:3 28706:1 28749:1 28764:1 28839:1 28845:1 28850:1 28959:1 28965:1 28973:2 28994:1 29063:1 29103:1 29157:2 29191:2 29281:1 29339:1 29377:2 29396:1 29422:1 29427:1 29477:1 29478:2 29546:1 29582:1 29604:1 29663:2 29748:3 29749:1 29839:1 29844:1 29881:1 29909:1 29913:1 29918:1 29940:1 29955:1 29995:1 30001:1 30074:1 30116:1 30126:1 30169:1 30171:1 30209:1 30283:1 30319:1 30412:1 30459:1 30468:1 30503:1 30602:1 30696:1 30706:1 30754:1 30798:1 30850:1 30854:2 30870:1 30949:1 31088:1 31098:1 31101:1 31135:1 31155:1 31170:1 31176:1 31179:1 31182:1 31190:1 31194:1 31215:1 31254:1 31319:1 31472:1 31477:1 31532:1 31565:1 31577:1 31705:1 31756:1 31848:1 31916:3 31940:1 31985:1 32001:1 32007:1 32015:1 32020:1 32041:1 32175:1 32206:2 32246:1 32248:1 32256:1 32293:1 32300:1 32319:1 32343:1 32346:1 32373:1 32460:1 32463:1 32504:1 32548:1 32560:1 32562:1 32621:1 32622:1 32664:1 32726:1 32835:1 32874:1 32969:1 32995:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33233:1 33252:1 33318:1 33326:1 33350:1 33364:2 33419:1 33424:1 33450:1 33453:2 33461:2 33463:2 33467:1 33474:1 33516:1 7 12:1 21:1 191:2 207:1 262:1 344:1 412:1 497:1 515:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 737:1 816:3 1066:1 1089:1 1153:1 1207:1 1319:1 1322:1 1364:1 1428:1 1435:1 1462:1 1529:2 1612:1 1616:1 1668:1 1680:1 1800:1 1810:2 1875:1 1883:2 1905:1 2014:2 2055:1 2081:1 2131:1 2144:1 2157:2 2239:1 2331:1 2370:1 2381:1 2423:3 2446:1 2458:2 2466:1 2470:1 2523:2 2561:1 2564:1 2569:1 2570:3 2580:1 2584:1 2585:1 2607:2 2612:1 2615:1 2676:1 2679:1 2687:1 2727:1 2742:1 2795:1 2938:1 2988:1 3036:1 3061:1 3077:2 3128:1 3147:1 3152:1 3157:2 3164:2 3172:1 3180:1 3250:1 3265:1 3318:4 3542:1 3548:1 3661:1 3689:2 3723:3 3769:1 3783:1 3826:1 3830:1 3893:1 3899:1 3937:1 4034:1 4048:2 4057:1 4077:1 4081:1 4145:1 4153:1 4155:1 4270:2 4276:1 4317:1 4411:1 4550:1 4587:1 4643:1 4725:1 4739:1 4754:1 4817:1 4830:1 4843:1 4852:1 4891:1 4940:1 5031:1 5040:1 5074:1 5077:1 5147:1 5246:1 5258:1 5260:1 5261:1 5286:1 5303:2 5321:1 5366:2 5389:1 5406:1 5500:2 5523:2 5528:1 5567:1 5619:1 5668:2 5685:2 5686:4 5695:1 5700:1 5708:1 5716:1 5717:1 5745:1 5861:1 5919:1 5926:1 5954:2 5990:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6362:2 6399:1 6480:1 6484:1 6495:1 6541:1 6542:1 6733:1 6822:1 6859:1 6880:1 6914:1 6919:1 7020:1 7067:1 7092:1 7141:2 7169:1 7188:1 7212:2 7232:2 7240:2 7255:1 7263:1 7266:2 7297:1 7434:1 7454:1 7491:1 7525:2 7583:1 7621:2 7722:1 7735:1 7748:1 7749:2 7830:1 7862:1 7869:1 7874:2 7990:1 8049:1 8074:2 8158:1 8160:1 8178:1 8187:1 8247:1 8312:1 8361:1 8378:1 8468:3 8481:1 8510:1 8526:1 8534:1 8548:1 8630:2 8649:1 8669:1 8692:1 8693:1 8759:10 8786:4 8843:1 8965:1 9125:1 9136:1 9166:1 9266:2 9301:1 9305:1 9326:5 9370:1 9392:1 9451:1 9599:1 9605:1 9650:1 9653:1 9766:1 9780:1 9848:2 9868:1 9888:1 9897:1 9976:1 10043:1 10066:1 10093:1 10102:1 10122:2 10132:1 10220:1 10270:1 10277:2 10353:2 10362:1 10414:2 10513:1 10514:1 10516:1 10663:1 10714:2 10719:1 10734:1 10868:1 10924:1 10927:1 10957:2 10958:1 10974:2 10996:1 11038:1 11109:1 11147:1 11150:1 11156:1 11184:1 11264:1 11277:1 11309:1 11370:1 11373:1 11440:1 11475:1 11536:2 11551:2 11582:1 11639:1 11661:1 11681:1 11754:1 11820:1 11861:1 11918:1 11930:1 11951:1 11957:1 11958:1 11980:1 12051:2 12052:1 12121:1 12165:1 12216:1 12246:1 12248:1 12250:1 12461:3 12474:1 12603:1 12695:1 12805:1 12919:1 12928:2 12933:1 12948:1 12970:1 13008:1 13036:1 13241:2 13275:1 13289:1 13301:1 13319:1 13326:1 13348:1 13349:1 13411:1 13456:1 13460:1 13468:1 13477:1 13491:1 13532:1 13698:1 13702:1 13713:1 13789:1 13852:1 13863:1 13885:1 13899:1 13970:1 14270:2 14446:1 14474:1 14530:1 14539:1 14542:1 14555:1 14587:1 14591:1 14603:1 14625:1 14634:1 14723:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15137:1 15148:1 15159:1 15380:1 15395:1 15410:2 15438:2 15464:1 15522:1 15558:1 15575:1 15576:1 15586:2 15648:1 15675:1 15680:1 15726:1 15729:2 15773:1 15890:1 15942:1 15947:1 15999:1 16136:1 16140:1 16188:1 16263:1 16297:1 16322:1 16323:2 16338:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:1 16526:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16840:1 16859:1 16876:1 16978:1 16995:1 16997:1 17029:1 17036:1 17232:1 17242:1 17249:1 17252:1 17347:1 17362:1 17384:1 17413:1 17419:1 17489:2 17521:1 17564:1 17591:1 17602:1 17628:2 17637:3 17815:1 17816:2 17845:2 17846:1 17847:1 17848:1 17859:1 17915:1 18020:1 18069:1 18091:1 18100:1 18138:1 18185:1 18216:1 18228:1 18371:1 18386:1 18404:1 18444:1 18452:1 18467:1 18469:1 18482:1 18487:1 18490:2 18631:1 18632:1 18705:1 18741:1 18760:1 18778:1 18782:1 18827:1 18870:1 18901:1 19017:1 19027:3 19052:4 19075:1 19155:1 19182:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19395:1 19458:1 19470:2 19512:1 19611:2 19737:1 19745:1 19758:1 19763:1 19783:1 19786:1 19832:1 19838:1 19843:1 19972:1 20139:1 20206:1 20211:1 20282:1 20330:1 20372:1 20410:1 20463:1 20566:1 20592:1 20624:1 20739:1 20794:3 20918:4 20932:1 21014:1 21034:1 21109:1 21110:1 21144:1 21162:1 21176:449 21180:1 21181:1 21220:2 21361:2 21385:1 21423:1 21459:1 21648:1 21652:1 21713:1 21714:1 21793:1 21810:1 21816:1 21818:1 21876:1 21917:1 22017:1 22091:1 22170:1 22250:1 22279:1 22304:1 22336:1 22347:1 22413:1 22441:1 22478:4 22498:1 22530:1 22533:1 22541:1 22545:1 22661:3 22682:1 22698:1 22762:2 22793:2 22846:1 22851:1 22984:4 22993:1 23018:1 23123:1 23164:1 23241:1 23307:1 23443:2 23459:1 23526:2 23616:1 23626:1 23659:1 23702:1 23711:3 23722:1 23735:1 23772:1 23848:1 23881:1 23913:1 24032:1 24067:1 24089:1 24095:1 24120:1 24231:2 24317:1 24367:1 24375:1 24381:1 24421:1 24459:1 24469:3 24470:1 24513:1 24567:1 24589:2 24633:2 24655:2 24693:1 24712:1 24795:1 24805:1 24806:1 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24943:2 24971:2 24986:1 25019:1 25060:1 25076:1 25091:1 25127:1 25149:1 25157:1 25171:1 25215:1 25239:1 25292:1 25314:1 25321:1 25337:1 25348:1 25406:1 25418:1 25432:1 25464:1 25465:1 25548:1 25556:1 25557:2 25583:1 25626:1 25629:1 25655:2 25703:1 25737:1 25756:1 25776:2 25792:2 25830:1 25901:3 25947:1 25993:1 26015:1 26027:1 26030:1 26091:1 26120:1 26157:1 26207:1 26268:1 26316:2 26404:1 26434:1 26446:2 26471:1 26516:1 26531:1 26542:1 26555:1 26648:1 26689:1 26693:1 26729:1 26781:1 26871:1 26912:1 26917:1 26924:1 26969:1 27022:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27391:1 27474:1 27626:1 27694:1 27705:1 27724:1 27725:1 27731:1 27732:1 27737:1 27748:1 27781:3 27828:1 27842:1 27851:2 27852:3 27858:1 27861:1 27891:1 27949:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28270:1 28336:1 28346:3 28416:1 28421:1 28571:2 28609:3 28706:1 28749:1 28764:1 28806:1 28839:1 28845:1 28850:1 28907:1 28959:1 28965:1 28973:2 28994:1 29063:1 29103:1 29157:2 29191:2 29281:1 29339:1 29377:2 29396:1 29422:1 29427:1 29477:1 29478:2 29546:1 29582:1 29604:1 29663:2 29748:4 29749:1 29839:1 29844:1 29881:1 29909:1 29913:1 29918:1 29940:1 29955:1 29995:1 30001:1 30074:1 30116:1 30126:1 30169:1 30171:1 30209:1 30283:1 30319:1 30369:1 30412:1 30459:1 30468:1 30503:1 30521:1 30602:1 30696:1 30706:2 30754:1 30798:1 30850:1 30854:3 30870:1 30949:1 31088:1 31098:1 31101:1 31135:1 31155:1 31170:1 31176:1 31179:1 31182:1 31190:1 31194:1 31215:1 31254:1 31319:1 31472:1 31477:1 31532:1 31565:1 31577:1 31705:1 31756:1 31848:1 31916:3 31931:1 31940:1 31985:1 32001:1 32007:1 32015:1 32020:1 32041:2 32081:1 32175:1 32206:3 32246:1 32248:1 32256:1 32293:1 32300:1 32319:1 32343:1 32346:1 32354:1 32373:1 32460:1 32463:2 32504:1 32548:1 32560:1 32562:1 32621:1 32622:1 32664:1 32668:1 32726:1 32835:1 32874:1 32969:1 32995:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33233:1 33252:1 33318:1 33326:1 33350:1 33364:2 33409:1 33419:1 33424:1 33448:1 33450:1 33453:2 33461:2 33463:2 33467:1 33474:1 33516:1 33600:1 7 12:1 21:1 42:1 99:1 191:3 207:2 262:1 344:1 393:1 412:1 497:1 515:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 737:1 816:3 831:1 1066:1 1089:1 1153:1 1207:1 1302:1 1319:1 1322:1 1364:1 1407:1 1428:1 1435:1 1462:1 1529:2 1612:1 1616:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1881:1 1883:3 1905:1 2014:2 2055:1 2081:1 2100:1 2131:1 2144:1 2157:2 2239:1 2254:1 2331:1 2370:1 2381:1 2423:3 2446:1 2458:2 2466:1 2470:1 2523:2 2561:1 2564:1 2569:1 2570:3 2580:1 2584:1 2585:1 2607:2 2612:2 2615:1 2676:1 2679:1 2687:1 2727:1 2742:1 2795:1 2904:1 2938:1 2988:1 3034:1 3036:1 3061:1 3077:2 3128:1 3131:1 3147:1 3152:2 3157:2 3164:3 3172:1 3180:1 3250:1 3265:1 3318:4 3465:1 3542:1 3548:1 3661:1 3689:2 3723:4 3769:1 3783:1 3826:1 3830:2 3893:1 3899:1 3937:1 3970:1 4034:1 4038:1 4048:2 4055:1 4057:1 4077:1 4081:1 4145:1 4153:1 4155:1 4209:1 4270:2 4276:1 4317:1 4395:1 4411:1 4512:1 4550:1 4587:1 4643:2 4725:1 4739:1 4754:1 4817:1 4830:1 4843:1 4852:1 4870:1 4891:2 4930:1 4940:1 5031:1 5040:1 5074:1 5077:1 5147:2 5246:1 5258:1 5260:1 5261:1 5286:1 5298:1 5303:2 5321:1 5366:2 5389:1 5406:1 5455:1 5500:2 5523:3 5528:1 5567:1 5619:1 5668:2 5685:2 5686:5 5695:2 5700:1 5708:1 5716:1 5717:1 5745:2 5861:1 5865:1 5919:1 5926:2 5954:2 5990:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6298:1 6362:2 6399:1 6480:1 6484:1 6495:1 6541:1 6542:1 6563:1 6733:1 6821:1 6822:1 6859:1 6880:1 6914:1 6919:1 7020:1 7067:1 7092:1 7141:2 7169:2 7188:2 7212:2 7232:2 7240:2 7255:1 7263:1 7266:2 7297:1 7434:1 7454:1 7491:1 7525:2 7583:1 7587:1 7621:2 7722:1 7735:1 7748:1 7749:2 7830:1 7862:1 7869:1 7874:2 7990:1 8049:1 8051:1 8074:2 8158:1 8160:1 8178:1 8187:1 8247:1 8312:1 8361:1 8372:1 8378:1 8409:1 8468:3 8481:1 8510:1 8526:1 8534:1 8548:1 8630:2 8649:1 8669:1 8692:1 8693:1 8759:11 8786:4 8843:1 8965:1 9080:1 9125:1 9136:1 9166:1 9222:1 9266:2 9301:1 9305:1 9326:6 9370:1 9392:1 9451:2 9542:1 9547:1 9599:1 9605:1 9650:1 9653:1 9766:1 9780:2 9848:2 9868:1 9888:1 9897:1 9976:1 10043:1 10066:1 10093:1 10102:1 10122:2 10132:1 10220:1 10270:1 10277:2 10353:2 10362:1 10414:2 10513:1 10514:1 10516:1 10663:1 10714:2 10719:1 10734:1 10868:1 10924:1 10927:1 10957:2 10958:1 10974:2 10996:1 11038:1 11109:1 11147:1 11150:1 11156:1 11184:1 11264:1 11277:1 11309:1 11370:1 11373:1 11440:1 11475:1 11536:2 11551:2 11582:1 11639:1 11661:1 11681:1 11754:1 11820:1 11861:1 11918:1 11930:1 11951:1 11957:1 11958:1 11980:1 12051:2 12052:1 12121:1 12165:1 12216:1 12246:1 12248:1 12250:1 12439:1 12461:4 12474:1 12603:1 12695:1 12805:1 12919:1 12928:2 12933:1 12948:1 12970:1 13008:1 13036:1 13121:1 13158:1 13241:2 13268:1 13275:1 13289:1 13301:1 13319:2 13326:1 13348:1 13349:1 13411:1 13456:1 13460:1 13468:1 13477:1 13491:1 13532:1 13698:2 13702:1 13713:2 13789:1 13852:1 13863:1 13885:1 13899:1 13956:1 13970:1 14270:2 14446:1 14474:1 14506:1 14528:1 14530:1 14539:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14625:1 14634:1 14665:1 14672:1 14688:1 14723:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15128:1 15137:1 15148:1 15159:1 15380:1 15395:1 15410:2 15438:2 15464:1 15522:1 15558:1 15575:1 15576:1 15586:2 15648:1 15675:1 15680:1 15691:1 15726:1 15729:2 15773:1 15819:1 15890:1 15914:1 15942:1 15947:1 15999:1 16136:1 16140:1 16188:1 16263:1 16297:1 16313:1 16322:1 16323:2 16338:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:2 16526:1 16561:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16840:1 16859:1 16876:1 16913:1 16978:1 16995:1 16997:1 17029:1 17036:1 17184:1 17232:1 17242:1 17249:1 17252:1 17343:1 17347:1 17362:1 17384:1 17413:1 17419:1 17489:2 17521:1 17564:1 17591:2 17602:1 17628:2 17637:3 17646:1 17654:1 17731:1 17809:1 17815:1 17816:2 17842:1 17845:2 17846:1 17847:1 17848:2 17859:1 17915:2 18020:1 18069:1 18091:1 18100:1 18138:1 18185:1 18216:1 18228:1 18371:1 18386:1 18404:1 18444:1 18452:1 18467:1 18469:1 18475:1 18482:1 18487:1 18490:2 18631:1 18632:1 18705:1 18741:1 18760:1 18778:1 18782:1 18827:2 18830:1 18870:1 18901:1 18927:1 19017:1 19027:3 19052:4 19075:1 19155:1 19182:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19360:1 19395:1 19458:1 19470:3 19512:1 19611:2 19737:2 19745:1 19758:2 19763:1 19783:1 19785:1 19786:1 19787:1 19832:1 19838:1 19843:1 19972:1 20139:1 20206:1 20211:1 20282:1 20330:1 20372:1 20410:1 20463:1 20566:1 20592:1 20624:1 20739:1 20794:4 20811:1 20876:1 20918:6 20932:1 21014:1 21034:1 21109:1 21110:1 21144:1 21162:1 21176:532 21180:1 21181:1 21220:2 21301:1 21361:2 21385:1 21393:1 21423:1 21447:1 21459:1 21540:1 21648:1 21652:1 21680:1 21689:1 21713:1 21714:1 21785:1 21793:1 21810:1 21816:1 21818:1 21876:2 21917:1 22002:1 22017:1 22045:2 22074:1 22091:3 22170:1 22250:1 22279:1 22304:1 22336:1 22347:1 22412:1 22413:1 22441:1 22478:4 22498:1 22530:1 22533:1 22541:1 22545:1 22567:1 22661:4 22682:1 22698:1 22762:2 22793:2 22846:1 22851:1 22984:4 22993:1 23018:1 23029:1 23098:1 23123:1 23164:1 23198:1 23241:1 23307:1 23443:2 23459:1 23526:3 23599:1 23616:1 23626:1 23659:1 23702:1 23711:3 23722:1 23725:1 23735:1 23772:1 23816:1 23848:1 23881:1 23913:1 24015:1 24032:1 24067:1 24089:1 24095:1 24120:1 24231:2 24317:1 24367:1 24375:1 24381:1 24395:2 24421:1 24459:1 24469:3 24470:1 24513:1 24567:1 24589:2 24633:2 24655:2 24693:1 24712:1 24743:1 24795:1 24805:1 24806:2 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24943:2 24971:2 24986:1 25019:2 25060:1 25071:1 25076:1 25091:1 25127:1 25133:1 25149:1 25157:1 25171:1 25215:2 25228:1 25239:1 25292:1 25314:1 25321:1 25337:1 25348:1 25406:1 25418:1 25432:1 25464:1 25465:1 25548:1 25556:1 25557:2 25583:1 25626:1 25629:1 25655:2 25703:1 25737:1 25756:1 25776:2 25792:2 25830:1 25901:3 25947:1 25993:1 26015:1 26027:1 26030:1 26091:1 26120:1 26157:1 26207:1 26242:1 26268:1 26316:2 26404:1 26434:1 26446:2 26471:1 26516:1 26531:1 26542:1 26555:1 26561:1 26648:1 26689:1 26693:1 26729:1 26781:1 26871:1 26912:1 26917:1 26924:1 26969:1 27022:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27391:1 27405:1 27474:1 27626:1 27694:1 27705:1 27724:1 27725:1 27731:1 27732:1 27737:2 27748:1 27781:3 27828:1 27842:1 27851:3 27852:3 27858:1 27861:2 27891:1 27949:1 27955:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28270:1 28336:1 28346:4 28416:1 28419:1 28421:1 28571:2 28609:3 28706:1 28749:1 28764:1 28806:1 28839:1 28845:1 28850:1 28907:1 28959:1 28965:1 28967:1 28969:1 28973:2 28994:1 29025:1 29048:1 29063:1 29103:1 29157:2 29191:2 29249:1 29281:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29546:1 29582:1 29604:1 29663:2 29748:6 29749:1 29839:1 29844:1 29881:1 29909:1 29913:1 29918:1 29940:1 29955:1 29995:1 30001:1 30074:1 30116:1 30126:1 30169:1 30171:1 30209:1 30283:1 30319:1 30369:1 30412:1 30459:1 30468:1 30503:1 30521:1 30602:1 30696:1 30706:2 30754:1 30798:1 30813:1 30850:1 30854:4 30870:1 30944:1 30949:1 31039:1 31088:1 31098:1 31101:1 31117:1 31118:1 31135:1 31155:2 31170:1 31176:1 31179:1 31182:1 31190:1 31194:1 31215:1 31254:1 31319:1 31420:1 31472:1 31477:1 31532:1 31562:1 31565:1 31577:1 31705:1 31756:1 31774:1 31848:1 31916:3 31931:1 31940:1 31985:1 32001:1 32007:1 32015:1 32020:1 32041:3 32081:1 32175:1 32206:3 32246:1 32248:1 32256:1 32274:1 32293:1 32300:1 32311:1 32314:1 32319:1 32343:1 32346:1 32354:2 32373:1 32459:1 32460:1 32463:2 32504:1 32548:1 32560:1 32562:1 32621:1 32622:1 32664:1 32668:1 32726:1 32835:1 32874:1 32969:1 32995:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33233:1 33252:1 33268:1 33318:1 33326:1 33350:1 33364:2 33409:1 33419:1 33424:1 33448:1 33450:1 33453:3 33461:2 33463:2 33467:1 33474:1 33516:1 33600:1 7 12:1 21:1 42:1 99:1 191:3 207:2 258:1 262:1 306:1 344:1 372:1 393:1 412:1 497:1 515:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 737:1 816:3 831:1 1066:1 1089:1 1102:1 1111:1 1153:1 1179:1 1207:1 1302:1 1319:1 1322:1 1364:1 1407:1 1428:1 1435:1 1462:1 1471:1 1529:2 1612:1 1616:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1881:1 1883:3 1905:1 2014:2 2055:1 2081:1 2100:1 2131:1 2144:1 2157:2 2239:1 2254:1 2331:1 2333:1 2370:1 2381:1 2423:3 2446:1 2458:2 2466:1 2470:1 2520:1 2523:2 2538:1 2561:1 2564:1 2569:1 2570:3 2580:1 2584:1 2585:1 2607:2 2609:1 2612:2 2615:1 2667:1 2676:1 2679:1 2687:1 2727:1 2742:1 2795:1 2904:1 2938:1 2988:1 3034:1 3036:1 3045:1 3061:1 3077:2 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:2 3164:4 3172:1 3180:1 3222:1 3250:1 3265:2 3318:4 3465:1 3542:1 3548:1 3661:1 3689:2 3723:4 3769:1 3783:1 3826:1 3830:2 3891:1 3893:1 3899:1 3937:1 3970:1 4034:1 4038:1 4048:2 4055:1 4057:1 4077:1 4081:1 4145:1 4153:1 4155:1 4209:1 4270:2 4276:1 4317:1 4395:1 4411:1 4512:1 4550:1 4587:1 4643:3 4725:1 4739:1 4754:1 4817:1 4830:1 4843:1 4852:1 4870:1 4891:2 4894:1 4930:1 4940:1 5030:1 5031:1 5040:1 5074:1 5077:1 5147:3 5175:1 5246:1 5258:1 5260:1 5261:1 5286:1 5298:1 5303:2 5321:1 5332:1 5366:2 5389:1 5406:1 5455:1 5500:2 5523:4 5528:1 5567:1 5619:1 5668:2 5685:2 5686:5 5695:2 5700:1 5708:1 5716:1 5717:1 5745:3 5861:1 5865:1 5919:1 5926:3 5954:2 5990:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6298:1 6362:2 6399:1 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:1 6643:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6914:1 6919:1 7020:1 7059:1 7067:1 7092:1 7141:2 7169:3 7188:3 7193:1 7212:2 7232:2 7240:2 7253:1 7255:1 7263:1 7266:2 7297:1 7434:1 7454:1 7491:1 7525:2 7583:1 7587:1 7621:2 7722:1 7735:1 7748:2 7749:2 7830:1 7862:1 7869:1 7874:2 7892:1 7986:1 7990:1 8049:1 8051:1 8074:2 8158:1 8160:1 8178:1 8187:1 8247:1 8312:1 8361:1 8372:1 8374:1 8378:1 8409:1 8414:1 8468:3 8481:1 8498:1 8510:1 8517:1 8526:1 8534:1 8548:1 8630:2 8649:1 8669:1 8692:1 8693:1 8759:12 8783:1 8786:4 8843:1 8965:1 8978:1 9013:1 9080:1 9125:1 9136:1 9166:1 9222:1 9224:1 9266:2 9301:1 9305:1 9326:6 9370:1 9392:1 9451:2 9542:1 9547:1 9599:1 9605:1 9630:1 9650:1 9653:1 9766:1 9769:1 9780:2 9846:1 9848:2 9868:1 9888:1 9897:1 9917:1 9921:1 9976:1 10043:1 10066:1 10093:1 10102:1 10122:2 10132:1 10220:1 10270:1 10277:2 10353:2 10362:1 10414:2 10513:1 10514:1 10516:1 10530:1 10663:1 10714:2 10719:1 10734:1 10868:1 10924:1 10927:1 10957:2 10958:1 10974:2 10996:1 11038:1 11098:1 11109:1 11147:1 11150:1 11156:1 11184:1 11251:1 11264:1 11277:1 11309:1 11370:1 11373:1 11440:1 11475:1 11536:2 11551:2 11582:1 11639:1 11661:1 11681:1 11719:1 11751:1 11754:1 11820:1 11861:1 11870:1 11918:1 11930:1 11951:1 11957:1 11958:1 11980:1 12051:2 12052:1 12121:1 12165:1 12216:1 12246:1 12248:1 12250:1 12439:1 12453:1 12461:4 12474:1 12512:1 12603:1 12611:1 12649:1 12695:1 12778:1 12805:1 12867:1 12919:1 12928:2 12933:1 12948:1 12970:1 12972:1 13008:1 13036:1 13121:1 13158:1 13241:2 13268:1 13275:1 13277:1 13289:1 13291:1 13301:1 13319:2 13326:1 13348:1 13349:1 13411:1 13456:1 13460:1 13468:1 13477:1 13491:1 13532:1 13629:1 13698:3 13702:1 13713:3 13789:1 13852:1 13863:1 13885:1 13899:1 13956:1 13970:1 14270:2 14446:1 14474:1 14506:1 14528:1 14530:1 14539:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14625:1 14629:1 14634:1 14665:2 14672:1 14688:1 14723:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15128:1 15137:1 15148:1 15159:1 15380:1 15395:1 15399:1 15410:2 15438:2 15464:1 15522:1 15558:1 15575:1 15576:1 15586:2 15648:1 15675:1 15680:1 15691:1 15726:1 15729:2 15772:1 15773:1 15819:1 15890:1 15914:1 15925:1 15942:1 15947:1 15999:1 16136:1 16140:1 16188:1 16263:1 16297:1 16313:1 16322:1 16323:2 16338:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16561:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16840:1 16859:1 16876:1 16913:1 16978:1 16995:1 16997:1 17029:1 17036:1 17184:1 17232:1 17242:1 17249:1 17252:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17521:1 17522:1 17564:1 17591:3 17602:1 17628:3 17637:3 17646:1 17654:1 17675:1 17731:1 17809:1 17815:1 17816:2 17842:1 17845:2 17846:1 17847:1 17848:2 17859:1 17915:2 18020:1 18069:1 18091:1 18100:1 18138:1 18185:1 18216:1 18228:1 18371:1 18386:1 18404:1 18444:1 18452:1 18467:1 18469:1 18475:1 18482:1 18487:1 18490:2 18631:1 18632:1 18705:1 18741:1 18760:1 18778:1 18782:1 18827:2 18830:1 18833:1 18870:1 18901:1 18927:1 19017:1 19027:3 19052:4 19075:1 19100:1 19155:1 19182:1 19250:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19360:1 19395:1 19458:1 19470:3 19512:1 19611:2 19652:1 19737:2 19745:1 19758:2 19763:1 19783:1 19785:1 19786:1 19787:1 19832:1 19838:1 19843:1 19972:1 20139:2 20206:1 20211:1 20282:1 20330:1 20358:1 20372:1 20410:1 20463:1 20566:1 20592:1 20624:1 20642:1 20739:1 20794:4 20811:1 20875:1 20876:1 20918:6 20932:1 21014:1 21034:1 21109:1 21110:1 21144:1 21162:1 21176:613 21180:1 21181:1 21220:2 21301:1 21361:2 21385:1 21393:1 21423:1 21447:1 21459:1 21496:1 21540:1 21641:1 21648:1 21652:1 21680:1 21689:1 21713:1 21714:1 21785:1 21793:1 21810:1 21816:1 21818:1 21876:2 21917:1 21919:1 21959:1 22002:1 22017:1 22045:2 22074:1 22091:3 22170:1 22250:1 22279:1 22295:1 22304:1 22336:1 22347:1 22412:1 22413:1 22423:1 22441:1 22478:4 22498:1 22530:1 22533:1 22541:1 22545:1 22567:1 22622:1 22661:4 22682:1 22698:1 22762:2 22777:1 22793:2 22846:1 22851:1 22984:4 22993:1 23018:1 23029:1 23064:1 23098:1 23123:1 23164:1 23198:1 23241:1 23307:1 23318:1 23443:2 23459:1 23526:3 23599:1 23616:1 23626:1 23659:1 23702:1 23709:1 23711:3 23722:1 23725:1 23735:1 23772:1 23816:1 23848:1 23881:1 23913:1 23931:1 24015:1 24032:1 24038:1 24067:1 24089:1 24095:1 24120:1 24231:2 24317:1 24367:1 24375:1 24381:1 24383:1 24395:2 24421:1 24459:1 24465:1 24469:3 24470:1 24481:1 24513:1 24567:1 24589:2 24633:2 24655:2 24693:1 24712:1 24743:1 24795:1 24805:1 24806:2 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24943:2 24971:2 24986:1 25019:3 25060:1 25071:1 25076:1 25091:1 25127:1 25133:1 25149:1 25157:1 25171:1 25215:2 25228:1 25239:1 25250:1 25292:1 25314:1 25321:1 25337:1 25348:1 25406:1 25418:1 25432:1 25464:1 25465:1 25472:1 25548:1 25556:1 25557:2 25583:1 25626:1 25629:1 25655:2 25703:1 25737:1 25756:1 25776:2 25792:2 25830:1 25901:3 25947:1 25993:1 26015:1 26027:1 26030:1 26091:1 26120:1 26157:1 26207:1 26242:1 26268:1 26316:2 26404:1 26434:1 26446:2 26471:1 26516:1 26531:1 26542:1 26551:1 26555:1 26561:1 26646:1 26648:1 26689:1 26693:1 26729:1 26781:1 26871:1 26912:1 26917:1 26924:1 26969:1 27022:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27474:1 27488:1 27550:1 27626:1 27694:1 27705:1 27724:1 27725:1 27731:1 27732:1 27737:2 27748:1 27781:3 27828:1 27842:1 27851:3 27852:3 27858:1 27861:2 27891:1 27949:1 27955:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28270:1 28336:1 28346:4 28416:1 28419:1 28421:1 28475:1 28521:1 28571:2 28609:3 28706:1 28749:1 28764:1 28795:1 28806:1 28839:1 28845:1 28850:1 28907:1 28959:1 28965:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:1 29103:1 29157:2 29191:2 29193:1 29249:1 29281:1 29285:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29546:1 29582:1 29604:1 29663:2 29748:6 29749:1 29839:1 29844:1 29881:1 29909:1 29913:1 29918:1 29940:1 29955:1 29995:1 30001:1 30074:1 30116:1 30126:1 30169:1 30171:1 30209:1 30283:1 30319:1 30369:1 30412:1 30459:1 30468:1 30503:1 30521:1 30539:1 30602:1 30696:1 30704:1 30706:2 30742:1 30754:1 30769:1 30798:1 30813:1 30850:1 30854:4 30870:1 30944:1 30949:1 31039:1 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31135:1 31155:2 31170:1 31176:1 31179:1 31182:1 31190:1 31194:1 31197:1 31215:1 31254:1 31319:1 31420:1 31472:1 31477:1 31532:1 31562:1 31565:1 31577:1 31705:1 31756:1 31774:1 31848:1 31916:3 31931:1 31940:1 31985:1 32001:1 32007:1 32015:1 32020:1 32041:4 32050:1 32081:1 32175:1 32206:3 32246:1 32248:1 32256:1 32274:1 32293:1 32300:1 32311:1 32314:2 32319:1 32343:1 32346:1 32354:3 32373:1 32459:1 32460:1 32463:2 32504:1 32527:1 32548:1 32560:1 32562:1 32621:1 32622:1 32664:1 32668:1 32726:1 32835:1 32874:1 32969:1 32995:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33233:1 33252:1 33268:1 33318:1 33326:1 33350:1 33364:2 33409:1 33419:1 33424:1 33448:1 33450:1 33453:3 33461:2 33463:2 33467:1 33474:1 33516:1 33600:1 7 12:1 21:1 42:1 99:1 191:3 207:2 249:1 258:1 262:1 306:1 344:1 372:1 393:1 412:1 497:1 515:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 737:1 816:3 831:1 1066:2 1089:1 1102:1 1111:1 1153:1 1179:1 1207:1 1302:1 1319:1 1322:1 1364:1 1407:1 1428:1 1435:1 1462:1 1471:1 1529:2 1612:1 1616:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1881:1 1883:3 1905:1 1952:1 2014:2 2015:1 2055:1 2081:1 2100:1 2131:1 2144:1 2157:2 2239:1 2254:1 2331:1 2333:1 2370:1 2381:1 2423:3 2446:1 2458:2 2466:1 2470:1 2520:1 2523:2 2538:1 2561:1 2564:1 2569:1 2570:3 2580:1 2584:1 2585:1 2607:2 2609:1 2612:2 2615:1 2667:1 2676:1 2679:1 2687:1 2727:2 2742:1 2795:1 2904:1 2938:1 2988:1 3034:1 3036:1 3045:1 3061:1 3077:2 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3222:1 3250:1 3265:2 3306:1 3318:5 3465:1 3542:1 3548:1 3661:1 3689:2 3723:4 3769:1 3783:1 3826:1 3830:2 3891:1 3893:1 3899:1 3937:1 3970:1 4034:1 4038:1 4048:2 4055:1 4057:1 4077:1 4081:1 4145:1 4153:1 4155:1 4209:1 4270:2 4276:1 4317:1 4395:1 4411:1 4413:1 4421:1 4451:1 4512:1 4550:1 4584:1 4587:1 4643:3 4648:1 4725:1 4739:1 4754:1 4817:1 4830:1 4843:1 4852:1 4870:1 4891:2 4894:1 4930:1 4940:1 5030:1 5031:1 5040:1 5074:1 5077:1 5147:3 5175:1 5246:1 5258:1 5260:1 5261:1 5286:1 5298:1 5303:2 5308:1 5321:1 5332:1 5366:2 5389:1 5406:1 5455:1 5500:2 5523:5 5528:1 5567:1 5619:1 5668:2 5685:2 5686:5 5695:2 5700:1 5708:1 5716:1 5717:1 5745:3 5861:1 5865:1 5881:1 5919:1 5926:3 5954:2 5990:1 6057:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6298:1 6362:2 6399:1 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:1 6643:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6914:1 6919:1 7020:1 7059:1 7067:1 7092:1 7141:2 7169:3 7188:3 7193:1 7194:1 7212:2 7232:2 7240:2 7248:1 7253:1 7255:1 7263:1 7266:2 7297:1 7434:1 7454:1 7491:1 7525:2 7583:1 7587:1 7621:2 7722:1 7735:1 7748:2 7749:2 7830:1 7862:1 7869:1 7874:2 7892:1 7976:1 7986:1 7990:1 8049:1 8051:1 8074:2 8158:1 8160:1 8178:1 8187:1 8247:2 8276:1 8312:1 8361:1 8372:1 8374:1 8378:1 8409:1 8414:1 8426:1 8468:3 8481:1 8498:1 8510:1 8517:1 8526:1 8534:1 8548:1 8630:2 8649:1 8669:1 8692:1 8693:1 8759:12 8783:1 8786:5 8843:1 8879:1 8965:1 8978:1 9013:1 9080:1 9125:1 9136:1 9166:1 9222:1 9224:1 9266:2 9301:1 9305:1 9326:6 9370:1 9392:2 9451:2 9542:1 9547:1 9599:1 9605:1 9630:1 9650:1 9653:1 9766:1 9769:1 9780:2 9823:1 9846:1 9848:2 9868:1 9888:1 9897:1 9917:1 9921:1 9976:1 10043:1 10066:1 10093:1 10102:1 10122:2 10132:1 10220:1 10270:1 10277:2 10353:2 10362:1 10414:2 10513:1 10514:1 10516:1 10530:1 10531:1 10600:1 10663:1 10714:2 10719:1 10734:1 10868:1 10924:1 10927:1 10938:1 10957:2 10958:1 10974:2 10996:1 11038:1 11098:1 11109:1 11147:1 11150:1 11156:1 11184:1 11251:1 11264:1 11277:1 11309:1 11370:1 11373:1 11424:1 11440:1 11475:1 11536:2 11551:2 11582:1 11639:1 11661:1 11676:1 11681:1 11719:1 11751:1 11754:1 11820:1 11861:1 11870:1 11918:1 11930:1 11951:1 11957:1 11958:1 11980:1 12051:3 12052:1 12121:1 12165:1 12216:1 12246:1 12248:1 12250:1 12323:1 12439:1 12453:1 12461:4 12474:1 12512:1 12603:1 12611:1 12649:1 12695:1 12778:1 12805:1 12850:1 12867:1 12919:1 12928:2 12933:1 12948:1 12970:1 12972:2 13008:1 13036:1 13121:1 13158:1 13241:2 13268:1 13275:2 13277:1 13289:1 13291:1 13301:1 13319:2 13326:1 13348:1 13349:1 13411:1 13456:1 13460:1 13468:1 13477:1 13491:1 13532:1 13556:1 13629:1 13698:3 13702:1 13713:3 13789:1 13852:1 13863:1 13885:1 13899:1 13956:1 13970:1 14060:1 14248:1 14270:2 14446:1 14474:2 14506:1 14528:1 14530:2 14539:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14625:1 14629:1 14634:1 14665:2 14672:1 14688:1 14723:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15128:1 15137:1 15148:1 15159:1 15380:1 15395:1 15399:1 15410:2 15438:2 15464:1 15522:1 15558:1 15575:1 15576:1 15586:2 15648:1 15675:1 15680:2 15691:1 15726:1 15729:2 15772:1 15773:1 15819:1 15890:1 15914:1 15925:1 15942:1 15947:1 15999:1 16004:1 16136:1 16140:2 16163:1 16188:1 16263:1 16297:1 16313:1 16322:1 16323:2 16338:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16561:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16840:1 16859:1 16876:1 16913:1 16934:1 16978:1 16995:1 16997:2 17029:1 17036:1 17184:1 17232:1 17242:1 17249:1 17252:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17521:1 17522:1 17564:1 17591:3 17602:1 17628:3 17637:3 17646:1 17654:1 17675:1 17688:1 17731:1 17809:1 17815:1 17816:2 17842:1 17845:2 17846:1 17847:1 17848:2 17859:1 17863:1 17915:2 18020:1 18069:1 18091:1 18100:1 18138:1 18185:1 18216:1 18228:1 18371:1 18386:1 18404:1 18444:1 18452:1 18467:1 18469:1 18475:1 18482:1 18487:1 18490:2 18590:1 18631:1 18632:1 18705:1 18741:2 18760:1 18778:1 18782:1 18827:2 18830:1 18833:1 18870:1 18891:1 18901:1 18927:1 19017:1 19027:3 19052:5 19075:1 19100:1 19155:1 19167:1 19182:1 19238:1 19250:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19360:1 19384:1 19395:1 19458:1 19470:3 19512:1 19611:2 19652:1 19737:2 19745:1 19758:2 19763:1 19783:1 19785:1 19786:1 19787:1 19832:1 19838:1 19843:1 19972:1 20139:2 20206:1 20211:1 20282:1 20330:1 20358:1 20372:1 20410:1 20463:1 20554:1 20566:1 20592:1 20624:1 20642:1 20739:1 20794:4 20811:1 20875:1 20876:1 20918:6 20932:2 21014:1 21034:1 21106:1 21109:1 21110:1 21144:1 21162:1 21176:655 21180:1 21181:1 21220:2 21301:1 21361:2 21385:1 21393:1 21411:1 21423:1 21426:1 21447:1 21459:2 21496:1 21540:1 21641:1 21648:1 21652:1 21680:1 21689:1 21713:1 21714:1 21785:1 21793:1 21810:1 21816:1 21818:1 21829:1 21865:1 21876:2 21912:1 21917:1 21919:1 21959:1 22002:1 22017:1 22045:2 22074:1 22091:3 22170:1 22250:1 22252:1 22279:1 22295:1 22304:1 22336:1 22347:1 22412:1 22413:1 22423:1 22441:1 22478:5 22498:1 22530:1 22533:1 22541:1 22545:1 22567:1 22622:1 22661:4 22682:1 22698:1 22762:2 22777:1 22793:2 22821:1 22846:1 22851:1 22884:1 22932:1 22984:5 22993:1 23018:1 23029:1 23064:1 23098:1 23123:1 23164:1 23198:1 23241:1 23298:1 23307:1 23318:1 23443:2 23459:1 23526:3 23582:1 23599:1 23616:1 23626:1 23659:1 23702:1 23709:1 23711:3 23722:1 23725:1 23735:1 23772:1 23816:1 23848:1 23881:1 23913:1 23931:1 24015:1 24018:1 24032:1 24038:1 24067:1 24089:1 24095:1 24120:1 24231:2 24317:1 24367:1 24375:1 24381:1 24383:1 24395:2 24421:1 24459:1 24465:1 24469:3 24470:1 24481:1 24513:1 24515:1 24567:1 24589:2 24599:1 24633:2 24655:2 24693:1 24712:1 24743:1 24795:1 24805:1 24806:2 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 25019:3 25060:1 25071:1 25076:1 25091:1 25127:1 25133:1 25149:1 25157:1 25171:1 25198:1 25215:2 25228:1 25239:1 25250:1 25292:1 25314:1 25321:1 25337:1 25348:1 25406:1 25418:1 25432:1 25464:1 25465:1 25472:1 25522:1 25548:1 25556:1 25557:2 25583:1 25626:1 25629:1 25655:2 25703:1 25737:1 25756:1 25776:2 25792:2 25830:1 25901:3 25947:1 25993:1 26015:1 26027:1 26030:1 26044:1 26091:1 26120:1 26157:1 26207:1 26222:1 26242:1 26268:1 26316:2 26404:1 26434:1 26446:2 26471:1 26516:1 26531:1 26542:1 26551:1 26555:1 26561:1 26646:1 26648:1 26689:1 26693:1 26729:1 26781:1 26856:1 26871:1 26912:1 26917:1 26924:1 26969:1 27022:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27474:1 27488:1 27550:1 27626:1 27694:1 27705:1 27722:1 27724:1 27725:1 27731:1 27732:1 27737:2 27748:1 27781:3 27828:1 27842:1 27851:3 27852:3 27858:1 27861:2 27891:1 27949:1 27953:1 27955:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28270:1 28336:1 28346:4 28416:1 28419:1 28421:1 28475:1 28521:1 28571:2 28609:3 28706:1 28749:1 28764:1 28795:1 28806:1 28818:1 28839:1 28845:1 28850:1 28907:1 28959:1 28965:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:1 29103:1 29157:3 29191:2 29193:1 29249:1 29250:1 29268:1 29281:1 29285:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29500:1 29546:1 29582:1 29604:1 29663:2 29748:6 29749:1 29818:1 29839:1 29844:1 29877:1 29881:1 29909:1 29913:1 29918:1 29940:1 29955:1 29995:1 30001:1 30004:1 30074:1 30116:1 30126:1 30128:1 30169:1 30171:1 30209:1 30283:1 30319:1 30369:1 30412:1 30459:1 30468:1 30503:1 30521:1 30539:1 30602:1 30692:1 30696:1 30704:1 30706:2 30742:1 30754:1 30769:1 30798:1 30813:1 30850:1 30854:5 30870:1 30944:1 30949:2 31039:1 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31135:1 31155:2 31170:2 31176:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31215:1 31254:1 31319:1 31420:1 31472:1 31477:1 31532:1 31562:1 31565:1 31577:1 31638:1 31705:1 31756:1 31774:1 31823:1 31824:1 31848:1 31916:3 31931:1 31940:1 31985:1 32001:1 32007:1 32015:1 32020:1 32041:4 32050:1 32081:1 32175:1 32206:3 32246:1 32248:1 32256:1 32274:1 32293:1 32300:1 32311:1 32314:2 32319:1 32343:1 32346:1 32354:3 32373:1 32438:1 32459:1 32460:1 32463:2 32504:1 32527:1 32548:1 32560:2 32562:1 32621:1 32622:1 32664:1 32668:1 32726:1 32835:1 32874:1 32969:1 32995:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33233:1 33252:1 33268:1 33318:1 33326:2 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33448:1 33450:1 33453:3 33461:2 33463:2 33467:1 33474:1 33516:1 33600:1 7 12:1 21:1 42:1 99:1 191:3 207:2 237:1 249:1 258:2 262:1 306:1 344:1 372:1 393:1 412:1 497:1 515:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 719:1 737:1 816:3 831:1 1066:2 1089:1 1102:1 1111:1 1153:1 1179:1 1207:1 1302:1 1319:1 1322:1 1364:1 1407:1 1428:1 1435:1 1462:1 1471:1 1529:2 1612:1 1616:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1881:1 1883:3 1905:1 1952:1 2014:2 2015:1 2055:1 2058:1 2081:1 2100:2 2131:1 2144:1 2157:2 2239:1 2254:1 2331:1 2333:1 2370:1 2381:1 2423:3 2446:1 2458:2 2466:1 2470:1 2520:1 2523:2 2538:1 2561:1 2564:1 2569:1 2570:3 2580:1 2584:1 2585:1 2607:2 2609:1 2612:2 2615:1 2667:1 2676:1 2679:1 2687:1 2713:1 2727:2 2742:1 2795:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3036:1 3045:1 3061:1 3077:2 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3222:1 3250:1 3265:3 3306:1 3318:6 3400:1 3465:1 3542:1 3548:1 3647:1 3661:1 3689:2 3723:4 3769:1 3783:1 3826:1 3830:2 3891:1 3893:1 3899:1 3937:1 3947:1 3970:1 4034:1 4038:1 4048:2 4055:1 4057:1 4077:1 4081:1 4145:1 4153:1 4155:1 4209:1 4270:2 4276:1 4313:1 4317:1 4395:1 4411:1 4413:1 4421:1 4451:1 4512:1 4521:1 4550:1 4584:1 4587:1 4643:3 4648:1 4725:1 4739:1 4754:2 4768:1 4817:1 4830:1 4843:1 4852:1 4870:1 4891:2 4894:1 4930:1 4940:1 5030:1 5031:1 5040:1 5074:1 5077:1 5147:3 5175:1 5246:1 5258:1 5260:1 5261:1 5286:1 5298:1 5303:2 5308:1 5321:1 5332:1 5366:2 5389:1 5406:1 5455:1 5500:2 5523:6 5528:1 5546:1 5567:1 5619:1 5668:2 5685:2 5686:5 5695:2 5700:1 5708:1 5716:1 5717:1 5745:3 5861:1 5865:1 5881:1 5919:1 5926:3 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6298:1 6362:2 6399:1 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:1 6643:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6914:1 6919:1 7020:2 7059:1 7067:1 7092:1 7141:2 7169:3 7188:3 7193:1 7194:1 7212:2 7232:2 7240:2 7248:1 7253:1 7255:1 7263:1 7266:2 7297:1 7434:1 7454:1 7491:1 7525:2 7583:1 7587:1 7621:2 7722:1 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7892:1 7976:1 7986:1 7990:1 8049:1 8051:1 8074:2 8154:1 8158:1 8160:1 8178:1 8187:1 8247:2 8276:1 8312:1 8361:1 8372:1 8374:1 8378:1 8409:1 8414:1 8426:1 8468:3 8481:1 8498:1 8510:1 8517:1 8526:1 8534:1 8548:1 8597:1 8630:2 8649:1 8669:1 8692:2 8693:1 8704:1 8759:12 8783:1 8786:6 8843:1 8879:1 8965:1 8978:1 8998:1 9013:1 9080:1 9125:1 9136:1 9166:1 9222:1 9224:1 9266:2 9301:1 9305:1 9326:6 9370:1 9392:2 9451:2 9542:1 9547:1 9599:1 9605:1 9630:1 9650:1 9653:1 9766:1 9769:1 9780:2 9823:1 9846:1 9848:3 9868:1 9888:1 9897:1 9917:1 9921:1 9976:1 10043:1 10066:1 10093:1 10102:1 10122:2 10132:1 10220:1 10270:1 10277:2 10353:2 10362:1 10414:2 10513:1 10514:1 10516:1 10530:1 10531:1 10600:1 10663:1 10714:2 10719:1 10734:1 10868:1 10924:1 10927:1 10938:1 10957:2 10958:1 10974:2 10996:1 11038:1 11082:1 11098:1 11109:1 11147:1 11150:1 11156:1 11184:1 11251:1 11264:1 11277:1 11309:1 11370:1 11373:1 11424:1 11440:1 11475:1 11486:1 11502:1 11517:1 11536:2 11551:2 11582:1 11639:1 11661:1 11676:1 11681:1 11719:1 11751:1 11754:1 11820:1 11861:1 11870:1 11918:1 11930:1 11951:1 11957:1 11958:1 11980:1 12051:3 12052:1 12121:1 12165:1 12216:1 12246:1 12248:1 12250:1 12323:1 12439:1 12453:1 12461:4 12474:1 12512:1 12603:1 12610:1 12611:1 12649:1 12678:1 12695:1 12778:2 12805:1 12850:1 12867:1 12919:1 12928:2 12933:1 12948:1 12970:1 12972:2 13008:1 13036:1 13064:1 13121:1 13158:1 13241:2 13268:1 13275:2 13277:1 13286:1 13289:1 13291:1 13292:1 13301:1 13319:2 13326:1 13348:1 13349:1 13382:1 13411:1 13456:1 13460:1 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13629:2 13698:3 13702:1 13713:3 13778:1 13789:1 13852:1 13863:1 13885:1 13899:1 13956:1 13970:1 14060:1 14248:1 14270:2 14429:1 14446:1 14474:3 14506:1 14528:1 14530:2 14539:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14625:1 14629:1 14634:1 14665:2 14672:1 14688:1 14723:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15128:1 15137:1 15148:1 15159:1 15321:1 15380:1 15395:1 15399:1 15410:2 15438:2 15464:1 15522:1 15558:1 15575:1 15576:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:1 15729:2 15772:1 15773:1 15819:1 15890:1 15914:1 15925:1 15942:1 15947:1 15999:1 16004:1 16136:1 16140:2 16163:1 16188:1 16263:1 16297:1 16313:1 16322:1 16323:3 16338:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16561:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16978:1 16995:1 16997:2 17029:1 17036:1 17184:1 17232:1 17242:1 17249:1 17252:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17521:1 17522:1 17564:1 17591:3 17602:1 17628:3 17637:3 17646:1 17654:1 17675:1 17688:2 17731:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:1 17848:2 17859:1 17863:1 17873:1 17915:2 18020:1 18069:1 18091:1 18100:1 18138:1 18185:1 18216:1 18228:1 18371:1 18386:1 18404:1 18444:1 18452:1 18467:1 18469:1 18475:1 18482:1 18487:1 18490:2 18590:1 18631:1 18632:1 18705:1 18711:1 18741:2 18760:1 18762:1 18778:1 18782:1 18827:2 18830:1 18833:1 18870:2 18887:1 18891:1 18901:1 18927:1 19017:1 19027:4 19052:6 19075:1 19100:1 19105:1 19155:1 19167:1 19182:1 19238:1 19250:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19360:1 19384:1 19395:1 19458:1 19470:3 19512:1 19611:2 19652:1 19737:2 19745:1 19758:2 19763:1 19783:1 19785:1 19786:1 19787:1 19832:1 19838:1 19843:1 19972:1 20139:2 20206:1 20211:1 20282:1 20330:1 20358:1 20372:1 20410:1 20463:1 20554:1 20566:1 20592:1 20624:1 20642:1 20739:1 20794:5 20811:1 20875:1 20876:1 20918:6 20932:2 21014:1 21034:1 21106:1 21109:1 21110:1 21144:1 21162:1 21176:714 21180:1 21181:1 21220:2 21301:1 21361:2 21385:1 21393:1 21411:1 21423:1 21426:1 21442:1 21447:1 21459:2 21496:1 21540:1 21641:1 21648:1 21652:1 21680:1 21689:1 21713:1 21714:1 21785:1 21793:1 21810:1 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:1 21917:1 21919:1 21959:1 22002:1 22017:1 22045:2 22074:1 22091:3 22170:1 22250:1 22252:1 22279:1 22295:1 22304:1 22336:1 22347:1 22412:1 22413:1 22423:1 22441:1 22478:6 22498:1 22530:1 22533:1 22541:1 22545:1 22567:1 22622:1 22661:4 22682:1 22698:1 22721:1 22762:3 22777:1 22793:2 22821:1 22846:1 22851:1 22884:1 22932:1 22984:6 22993:1 23018:1 23029:1 23042:1 23064:1 23098:1 23123:1 23164:1 23198:1 23241:1 23298:1 23307:1 23318:1 23443:2 23459:1 23526:3 23582:1 23599:1 23616:1 23626:1 23659:1 23692:1 23702:1 23709:1 23711:4 23722:1 23725:1 23735:1 23758:1 23772:1 23816:1 23848:1 23881:1 23913:1 23931:1 24015:1 24018:1 24032:1 24038:1 24067:2 24089:1 24095:1 24120:1 24231:2 24317:1 24367:1 24375:1 24381:1 24383:1 24395:2 24421:1 24448:1 24459:1 24465:1 24469:4 24470:1 24480:1 24481:1 24513:1 24515:1 24567:1 24589:2 24599:1 24633:2 24655:2 24693:1 24712:1 24743:1 24795:1 24805:1 24806:2 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 25019:3 25060:1 25071:1 25076:1 25091:1 25127:1 25133:1 25149:1 25157:1 25171:1 25198:1 25215:2 25228:1 25239:1 25250:1 25292:1 25314:1 25321:1 25337:1 25348:1 25403:1 25406:1 25418:1 25432:1 25464:1 25465:1 25472:1 25505:1 25522:1 25548:1 25556:1 25557:3 25569:1 25583:1 25626:1 25629:1 25655:2 25703:1 25737:1 25756:1 25776:2 25792:3 25830:1 25901:3 25920:1 25947:1 25993:1 26015:1 26027:1 26030:1 26044:1 26091:1 26120:1 26157:1 26207:1 26222:1 26242:1 26268:1 26316:2 26404:1 26434:1 26446:2 26450:1 26471:1 26516:1 26531:1 26542:1 26551:1 26555:1 26561:1 26646:1 26648:1 26689:1 26693:1 26729:1 26781:1 26856:1 26871:1 26912:1 26917:1 26924:1 26936:1 26969:1 27022:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27474:1 27488:2 27550:1 27570:1 27626:1 27694:1 27705:1 27722:1 27724:1 27725:1 27731:1 27732:1 27737:2 27748:1 27781:3 27828:1 27842:1 27851:4 27852:3 27858:1 27861:2 27891:1 27949:1 27953:1 27955:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28270:1 28336:1 28346:5 28416:1 28419:1 28421:1 28475:1 28521:1 28571:2 28609:3 28706:1 28749:1 28764:1 28795:1 28806:1 28818:1 28836:1 28839:1 28845:1 28850:1 28907:1 28959:1 28965:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:1 29103:1 29157:3 29191:2 29193:1 29214:1 29249:1 29250:1 29268:1 29281:1 29284:1 29285:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29500:1 29546:1 29582:1 29604:1 29663:2 29748:6 29749:1 29818:1 29839:1 29844:1 29877:1 29881:1 29909:1 29913:1 29918:1 29940:1 29955:1 29995:1 30001:1 30004:1 30036:1 30074:1 30116:1 30126:1 30128:1 30169:1 30171:1 30209:1 30283:1 30303:1 30319:1 30369:1 30412:1 30459:1 30468:1 30503:1 30521:1 30539:1 30602:1 30692:1 30696:1 30704:1 30706:3 30742:1 30754:1 30769:1 30798:1 30813:1 30850:1 30854:5 30870:1 30944:1 30949:2 31039:1 31068:1 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31134:1 31135:1 31146:1 31155:2 31170:2 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31215:1 31254:1 31319:1 31356:1 31420:1 31472:1 31477:1 31532:1 31562:1 31565:1 31577:1 31638:1 31705:1 31756:1 31774:1 31823:1 31824:1 31848:1 31916:3 31931:1 31940:1 31985:1 32001:1 32007:1 32015:1 32020:1 32041:4 32050:1 32081:1 32086:1 32175:1 32206:3 32246:1 32248:2 32256:1 32274:1 32293:1 32300:1 32311:1 32314:2 32319:1 32343:1 32346:1 32354:3 32373:1 32438:1 32459:1 32460:1 32463:2 32504:1 32527:1 32532:1 32548:1 32560:2 32562:1 32621:1 32622:1 32647:1 32664:1 32668:1 32726:1 32817:1 32825:1 32835:1 32861:1 32874:1 32969:1 32976:1 32995:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33233:1 33252:1 33268:1 33318:1 33326:3 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33448:1 33450:1 33453:3 33461:2 33463:2 33467:1 33474:1 33516:1 33600:1 7 12:1 21:1 42:1 99:1 191:3 207:2 237:1 249:1 258:2 262:1 306:1 344:1 369:1 372:1 393:1 412:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 719:1 737:1 816:3 831:1 999:1 1026:1 1066:2 1089:1 1098:1 1102:1 1111:1 1144:1 1153:1 1179:1 1207:1 1302:1 1319:1 1322:1 1364:1 1407:1 1428:1 1435:1 1462:1 1471:1 1529:2 1612:1 1616:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1880:1 1881:1 1883:3 1905:1 1952:1 2014:2 2015:1 2055:1 2058:1 2081:1 2100:2 2131:1 2144:1 2157:2 2239:1 2254:1 2331:1 2333:1 2370:1 2381:1 2423:3 2446:1 2458:2 2466:1 2470:1 2515:1 2520:1 2523:2 2538:1 2561:1 2564:1 2569:1 2570:3 2580:1 2584:1 2585:1 2607:2 2609:1 2612:2 2615:1 2667:1 2676:1 2679:1 2687:1 2703:1 2713:1 2727:2 2742:1 2795:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3036:1 3045:1 3061:1 3077:2 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3222:1 3250:1 3265:3 3306:1 3318:7 3351:1 3400:1 3465:1 3542:1 3548:1 3647:1 3661:1 3689:2 3697:1 3723:4 3769:1 3783:1 3826:1 3830:2 3891:1 3893:1 3899:1 3937:1 3947:1 3970:1 4034:1 4038:1 4048:2 4055:1 4057:1 4077:1 4081:1 4145:1 4153:1 4155:1 4209:1 4270:2 4276:1 4313:1 4317:1 4395:1 4396:1 4411:1 4413:1 4421:1 4437:1 4451:1 4472:1 4512:1 4521:1 4536:1 4550:1 4584:1 4587:1 4643:4 4648:1 4725:1 4739:1 4754:3 4768:1 4782:1 4817:1 4830:1 4843:1 4852:1 4870:1 4891:2 4894:1 4930:1 4940:1 5030:1 5031:1 5040:1 5074:1 5077:1 5147:4 5175:1 5246:1 5258:1 5260:1 5261:1 5286:1 5298:1 5303:2 5308:1 5321:1 5332:1 5366:2 5389:1 5406:1 5455:1 5500:2 5523:6 5528:1 5546:1 5567:1 5619:1 5668:2 5685:2 5686:5 5689:1 5694:1 5695:2 5700:1 5708:1 5716:1 5717:1 5745:4 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6298:1 6362:2 6399:1 6436:1 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:1 6643:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6884:1 6914:1 6919:1 7020:3 7059:1 7067:1 7092:1 7141:3 7169:4 7188:4 7193:1 7194:1 7212:2 7232:2 7240:2 7248:1 7253:1 7254:1 7255:1 7263:1 7266:2 7297:1 7434:1 7454:1 7476:1 7491:1 7525:2 7583:1 7587:1 7621:2 7722:1 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7892:1 7949:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8154:1 8158:1 8160:1 8178:1 8187:1 8247:2 8276:1 8311:1 8312:1 8361:1 8372:1 8374:1 8378:1 8409:1 8414:1 8426:1 8468:3 8481:1 8498:1 8510:1 8517:1 8526:1 8534:1 8548:1 8597:1 8630:2 8649:1 8669:2 8692:2 8693:1 8704:1 8716:1 8759:12 8783:1 8786:6 8843:1 8879:1 8965:1 8978:1 8998:1 9013:1 9080:1 9125:1 9136:1 9166:1 9222:1 9224:1 9266:2 9301:1 9305:1 9326:6 9370:1 9392:2 9451:2 9524:1 9542:1 9547:1 9599:1 9605:1 9630:1 9650:1 9653:1 9766:1 9769:1 9780:2 9823:1 9831:1 9846:1 9848:4 9868:1 9888:1 9897:1 9917:1 9921:1 9950:1 9976:1 10043:1 10066:2 10093:1 10102:1 10122:2 10132:1 10220:1 10245:1 10270:1 10277:2 10353:3 10362:1 10414:2 10513:1 10514:1 10516:1 10530:1 10531:1 10600:1 10663:1 10714:2 10719:1 10734:1 10809:1 10868:2 10879:1 10924:1 10927:1 10938:1 10957:2 10958:2 10974:2 10996:1 11038:1 11082:1 11098:1 11109:1 11147:1 11150:1 11156:1 11184:1 11251:1 11264:1 11277:1 11309:1 11370:1 11373:1 11385:1 11424:1 11440:1 11475:2 11486:1 11502:1 11517:1 11536:2 11551:2 11578:1 11582:1 11639:1 11661:1 11676:1 11681:1 11719:1 11751:1 11754:1 11820:1 11861:1 11870:1 11918:1 11930:1 11951:1 11957:1 11958:1 11980:1 12051:3 12052:1 12121:1 12165:1 12216:1 12246:1 12248:1 12250:1 12323:1 12439:1 12453:1 12461:4 12474:1 12512:1 12603:1 12610:1 12611:1 12649:1 12678:1 12695:1 12778:2 12802:1 12805:1 12850:1 12867:1 12919:1 12928:2 12933:1 12948:1 12970:1 12972:2 13008:1 13036:1 13064:1 13121:1 13158:1 13241:2 13268:1 13275:2 13277:1 13286:1 13289:1 13291:1 13292:1 13301:1 13319:2 13326:1 13348:1 13349:1 13382:1 13411:1 13456:1 13460:2 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13629:2 13698:4 13702:1 13713:4 13778:1 13789:1 13852:1 13863:1 13883:1 13885:1 13899:1 13956:1 13970:1 14060:1 14248:1 14270:2 14429:1 14446:1 14474:3 14506:1 14528:1 14530:2 14539:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14625:1 14629:1 14634:1 14665:2 14672:1 14688:1 14723:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14924:1 14943:2 15027:1 15103:1 15125:2 15128:1 15137:1 15148:1 15159:1 15229:1 15321:1 15380:1 15395:1 15399:1 15410:2 15438:2 15464:1 15522:1 15558:1 15559:1 15575:1 15576:1 15584:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:1 15729:2 15772:1 15773:1 15819:1 15890:1 15914:1 15925:1 15942:1 15947:1 15999:1 16004:1 16136:1 16140:2 16156:1 16163:1 16188:1 16211:1 16263:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16978:1 16995:1 16997:2 17029:1 17036:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17521:1 17522:1 17564:1 17578:1 17591:3 17602:1 17606:1 17628:3 17637:3 17646:1 17654:1 17675:1 17688:2 17731:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:1 17848:2 17859:1 17863:1 17873:1 17915:2 18020:1 18069:1 18091:1 18100:1 18138:1 18185:1 18216:1 18228:1 18371:1 18386:1 18404:1 18444:1 18452:1 18467:1 18469:1 18475:1 18482:1 18487:1 18490:2 18590:1 18631:1 18632:1 18705:1 18711:1 18741:2 18760:1 18762:1 18778:1 18782:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:1 18891:1 18901:1 18927:1 19017:1 19027:4 19052:6 19075:1 19100:1 19105:1 19134:1 19155:1 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19360:1 19384:1 19395:1 19458:1 19470:3 19512:1 19611:2 19652:1 19737:2 19745:1 19758:2 19763:1 19783:1 19785:1 19786:1 19787:1 19832:1 19838:1 19843:1 19972:1 20139:2 20206:1 20211:1 20282:1 20330:1 20358:1 20372:1 20410:1 20463:1 20530:1 20554:1 20566:1 20592:1 20624:1 20642:1 20739:1 20794:5 20811:1 20875:1 20876:1 20918:6 20932:2 21014:1 21034:1 21106:1 21109:1 21110:1 21144:1 21162:1 21176:831 21180:1 21181:1 21220:2 21301:1 21361:2 21385:1 21393:1 21411:1 21423:1 21426:1 21442:1 21447:1 21459:2 21496:1 21540:1 21591:1 21641:1 21648:1 21652:1 21680:1 21689:1 21713:1 21714:1 21785:1 21793:1 21810:1 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:1 21917:1 21919:1 21959:1 22002:1 22017:1 22045:2 22074:1 22091:3 22170:1 22250:1 22252:1 22279:1 22295:1 22304:1 22336:1 22347:1 22412:1 22413:1 22423:1 22441:1 22450:1 22478:6 22498:1 22530:1 22533:1 22541:1 22545:1 22567:1 22568:1 22622:1 22661:4 22682:1 22698:1 22721:1 22762:3 22777:1 22793:2 22821:1 22846:1 22851:1 22884:1 22932:1 22984:7 22993:1 23018:1 23029:1 23042:1 23064:1 23098:1 23123:1 23133:1 23164:1 23198:1 23241:1 23298:1 23307:1 23318:1 23443:2 23459:1 23526:3 23582:1 23599:1 23616:1 23626:1 23659:1 23692:1 23702:1 23709:1 23711:4 23722:1 23725:1 23735:1 23758:2 23772:1 23799:1 23816:1 23848:1 23881:1 23913:1 23931:1 24015:1 24018:1 24032:1 24038:1 24067:2 24084:1 24089:1 24095:1 24120:1 24231:2 24317:1 24367:1 24375:1 24381:1 24383:1 24395:2 24421:1 24448:1 24459:1 24465:1 24469:4 24470:1 24480:1 24481:1 24513:1 24515:1 24567:1 24589:2 24599:1 24633:2 24644:1 24655:2 24693:1 24712:1 24743:1 24795:1 24805:1 24806:2 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 25019:4 25060:1 25071:1 25076:1 25091:1 25127:1 25133:1 25149:1 25157:1 25171:1 25198:1 25215:2 25228:1 25239:1 25250:1 25272:1 25292:1 25293:1 25314:1 25321:1 25335:1 25337:1 25348:1 25403:1 25406:1 25418:1 25432:1 25464:1 25465:1 25472:1 25505:2 25522:1 25548:1 25556:1 25557:3 25569:1 25583:1 25626:1 25629:1 25655:2 25703:1 25737:1 25756:1 25776:2 25792:3 25830:1 25901:3 25920:1 25947:1 25993:1 26015:1 26027:1 26030:1 26044:1 26091:1 26120:1 26157:1 26207:1 26222:1 26242:1 26268:1 26316:2 26404:1 26434:1 26446:2 26450:1 26471:1 26516:1 26531:1 26542:1 26551:1 26555:1 26561:1 26646:1 26648:1 26689:1 26693:1 26729:1 26781:1 26856:1 26871:1 26912:1 26917:1 26924:1 26936:1 26969:1 27022:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27439:1 27474:1 27488:2 27550:1 27570:1 27626:1 27694:1 27705:1 27722:1 27724:1 27725:1 27731:1 27732:1 27737:2 27748:1 27756:1 27781:3 27828:1 27842:1 27851:4 27852:3 27858:1 27861:2 27891:1 27949:1 27953:1 27955:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28270:1 28336:1 28346:5 28356:1 28416:1 28419:1 28421:1 28475:1 28521:1 28571:2 28609:3 28706:1 28749:1 28764:1 28795:1 28806:1 28818:1 28836:1 28839:1 28845:1 28850:1 28907:1 28912:1 28959:1 28965:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:1 29103:1 29157:3 29183:1 29191:2 29193:1 29214:2 29249:1 29250:1 29268:1 29281:1 29284:1 29285:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29500:1 29546:1 29582:1 29604:1 29663:2 29713:1 29748:6 29749:1 29818:1 29839:1 29844:1 29877:1 29881:1 29909:1 29913:1 29918:1 29940:2 29955:1 29995:1 30001:1 30004:1 30036:1 30074:1 30116:1 30126:1 30128:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30412:1 30459:1 30468:1 30503:1 30521:1 30539:1 30602:1 30692:1 30696:1 30704:1 30706:3 30742:1 30754:1 30769:1 30798:1 30813:1 30850:1 30854:5 30870:1 30944:1 30949:2 31011:1 31039:1 31068:1 31072:1 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31134:1 31135:1 31146:1 31155:2 31170:2 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31319:1 31356:1 31420:1 31472:1 31477:1 31506:1 31532:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31756:1 31774:1 31823:1 31824:1 31848:1 31916:3 31924:1 31931:1 31933:1 31938:1 31940:1 31985:1 32001:1 32007:1 32015:1 32020:1 32041:4 32050:1 32081:1 32086:1 32175:1 32206:3 32246:1 32248:2 32256:1 32274:1 32293:1 32300:1 32311:1 32314:2 32319:1 32343:1 32346:1 32354:4 32373:1 32438:1 32459:1 32460:1 32463:2 32504:1 32527:1 32532:1 32548:2 32560:2 32562:1 32621:1 32622:1 32647:1 32664:1 32668:1 32726:1 32736:1 32817:1 32825:1 32835:1 32861:1 32874:1 32876:1 32969:1 32976:1 32995:1 33019:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33233:1 33252:1 33268:1 33318:1 33326:3 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33448:1 33450:1 33453:3 33461:2 33463:2 33467:1 33474:1 33516:1 33600:1 7 12:1 21:1 42:1 89:1 99:1 191:4 207:2 237:1 249:1 258:2 262:1 306:1 344:1 369:1 372:1 393:1 412:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 719:1 737:1 816:4 831:1 999:1 1000:1 1022:1 1026:2 1066:2 1089:1 1098:1 1102:1 1111:1 1144:1 1153:1 1179:1 1185:1 1207:1 1302:2 1319:1 1322:1 1364:1 1407:1 1428:1 1435:1 1462:1 1471:1 1529:2 1612:1 1616:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2014:2 2015:2 2055:1 2058:1 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2239:1 2254:2 2331:1 2333:1 2338:1 2370:2 2381:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:1 2523:3 2538:1 2546:1 2561:1 2564:1 2569:1 2570:4 2580:1 2584:2 2585:1 2599:1 2607:2 2609:1 2612:2 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2713:1 2727:2 2742:1 2795:1 2809:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3036:1 3045:1 3061:1 3077:2 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3222:1 3250:1 3265:3 3306:1 3318:8 3351:1 3400:1 3465:1 3483:1 3487:1 3542:2 3548:1 3647:1 3661:1 3669:1 3689:2 3697:1 3723:5 3769:1 3783:1 3826:1 3830:2 3891:1 3893:1 3899:1 3937:1 3947:1 3970:1 4034:1 4038:1 4048:2 4055:1 4057:1 4077:1 4081:1 4084:1 4100:1 4145:1 4153:1 4155:1 4209:1 4270:2 4276:1 4313:1 4317:1 4395:1 4396:1 4411:1 4413:1 4421:1 4437:1 4441:1 4451:1 4472:1 4512:2 4521:1 4536:1 4550:1 4584:1 4587:1 4643:4 4648:1 4705:1 4725:1 4739:1 4754:3 4768:1 4782:1 4817:1 4830:1 4843:1 4852:1 4855:1 4870:1 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5014:1 5030:1 5031:1 5040:1 5074:1 5077:1 5147:4 5154:1 5175:1 5184:1 5197:1 5246:1 5258:1 5260:1 5261:2 5286:1 5298:1 5303:2 5308:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5500:2 5523:7 5528:1 5546:1 5567:1 5619:1 5668:2 5685:2 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:1 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6643:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6884:2 6914:1 6919:1 7020:4 7059:1 7067:1 7092:1 7141:3 7169:4 7188:4 7193:1 7194:1 7212:2 7232:2 7240:2 7242:2 7248:1 7253:1 7254:1 7255:1 7257:1 7263:1 7266:2 7297:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7491:1 7525:2 7583:1 7587:1 7621:2 7722:1 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7881:1 7892:1 7949:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:1 8154:1 8158:1 8160:1 8162:1 8169:1 8178:1 8187:1 8247:2 8276:1 8311:1 8312:1 8361:1 8372:1 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:1 8526:1 8534:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:15 8783:1 8786:7 8843:1 8879:1 8965:1 8978:1 8998:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9222:1 9224:1 9266:2 9301:1 9305:1 9326:6 9370:1 9392:2 9420:1 9431:1 9451:2 9524:1 9542:2 9547:1 9599:1 9605:1 9630:1 9650:1 9653:1 9662:1 9763:1 9766:1 9768:1 9769:1 9780:2 9823:1 9831:1 9846:1 9848:4 9868:2 9888:1 9897:1 9917:1 9921:1 9950:1 9957:1 9976:1 10043:1 10066:2 10093:1 10102:1 10122:2 10132:1 10145:1 10220:1 10245:1 10270:1 10277:2 10353:4 10362:1 10414:2 10513:1 10514:1 10516:1 10530:1 10531:1 10600:1 10660:1 10663:1 10714:2 10719:1 10734:1 10790:1 10792:1 10798:1 10809:1 10836:1 10868:2 10879:1 10924:1 10927:1 10938:1 10957:2 10958:2 10974:2 10996:1 11019:1 11038:1 11082:1 11098:1 11109:1 11147:1 11150:1 11156:1 11184:1 11251:1 11264:1 11277:1 11309:1 11326:1 11370:1 11373:1 11385:1 11424:1 11440:1 11475:3 11486:1 11502:1 11517:1 11536:2 11551:2 11559:1 11578:1 11582:1 11639:1 11661:1 11676:1 11681:1 11719:1 11749:1 11751:1 11754:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:1 12216:1 12242:1 12246:1 12248:1 12250:1 12323:1 12395:1 12439:1 12453:1 12461:5 12474:1 12512:1 12572:1 12603:1 12610:1 12611:1 12649:1 12678:1 12695:1 12744:1 12778:2 12802:1 12805:1 12850:1 12867:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:2 13008:1 13036:1 13046:1 13051:1 13064:1 13121:1 13158:2 13241:2 13268:1 13275:2 13277:1 13286:1 13288:1 13289:1 13291:1 13292:1 13301:1 13319:2 13326:1 13348:1 13349:1 13382:1 13411:1 13456:1 13460:3 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13629:2 13698:4 13702:1 13713:4 13728:1 13766:1 13778:1 13789:1 13835:1 13852:1 13863:1 13883:1 13885:1 13899:1 13956:1 13970:1 14060:1 14096:1 14248:2 14270:2 14288:1 14429:1 14446:1 14474:3 14506:1 14528:1 14530:2 14539:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14625:1 14629:1 14634:1 14665:2 14672:2 14688:1 14708:1 14723:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14885:1 14924:1 14943:2 15027:1 15103:1 15125:2 15128:2 15137:1 15148:1 15159:1 15229:1 15321:1 15328:1 15380:1 15395:1 15399:1 15410:2 15438:2 15464:1 15522:1 15555:2 15558:1 15559:1 15575:1 15576:1 15584:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:2 15729:2 15772:1 15773:1 15774:1 15819:1 15890:2 15914:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16069:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16978:1 16995:1 16997:2 17029:1 17036:1 17108:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17521:1 17522:3 17543:1 17564:1 17578:1 17591:3 17602:1 17606:1 17628:3 17637:4 17646:1 17654:1 17675:1 17688:2 17731:1 17772:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:1 17848:2 17859:1 17863:1 17873:1 17890:1 17915:2 18020:2 18069:1 18091:1 18100:1 18138:1 18185:1 18216:1 18228:1 18291:1 18371:1 18386:1 18404:1 18444:1 18452:1 18467:1 18469:1 18475:1 18481:1 18482:1 18487:1 18490:2 18582:1 18590:1 18631:1 18632:1 18705:1 18711:1 18741:2 18760:1 18762:1 18778:1 18782:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18901:2 18927:1 19017:1 19027:4 19052:6 19075:1 19100:1 19105:1 19134:1 19155:1 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19347:1 19360:1 19384:1 19395:1 19440:1 19458:1 19470:3 19512:1 19611:3 19646:1 19652:1 19722:1 19737:2 19745:1 19758:2 19763:1 19783:1 19785:1 19786:1 19787:1 19832:1 19838:1 19843:1 19895:1 19972:1 20139:2 20206:1 20211:1 20282:1 20330:1 20358:1 20372:1 20410:1 20463:1 20530:1 20554:2 20566:1 20592:1 20624:1 20642:1 20666:1 20726:1 20739:1 20794:5 20811:1 20875:1 20876:1 20918:6 20928:1 20932:2 21014:1 21034:1 21106:1 21109:1 21110:1 21144:1 21162:1 21176:939 21180:1 21181:1 21220:2 21301:1 21361:2 21385:1 21393:1 21411:1 21423:1 21426:1 21442:1 21447:1 21459:2 21472:1 21496:1 21540:1 21591:2 21641:1 21648:1 21652:1 21680:1 21689:1 21713:1 21714:1 21785:1 21793:1 21810:1 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:1 21917:1 21919:1 21941:1 21959:1 21993:1 22002:1 22017:1 22045:2 22050:1 22074:1 22077:1 22091:3 22170:1 22250:1 22252:1 22279:1 22295:1 22304:1 22336:1 22347:1 22412:1 22413:1 22423:1 22441:1 22450:1 22478:6 22498:1 22530:1 22533:1 22541:1 22545:1 22567:1 22568:1 22622:1 22661:5 22682:1 22693:1 22698:1 22721:1 22762:3 22777:2 22793:2 22811:1 22821:1 22846:1 22851:1 22884:1 22932:1 22984:8 22993:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23198:1 23241:1 23246:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:1 23599:1 23603:1 23616:1 23626:1 23659:1 23692:1 23702:1 23709:1 23711:4 23722:1 23725:1 23733:1 23735:1 23758:2 23772:1 23799:1 23816:1 23848:1 23881:1 23913:1 23931:1 24015:2 24018:1 24032:1 24038:1 24039:1 24067:2 24084:2 24089:1 24095:1 24120:1 24228:1 24231:2 24261:1 24265:1 24317:1 24367:1 24375:1 24381:1 24383:1 24395:2 24421:1 24448:1 24459:1 24465:1 24469:4 24470:1 24480:1 24481:1 24513:1 24515:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25071:1 25076:1 25091:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25215:2 25228:1 25239:1 25250:1 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25396:1 25403:1 25406:1 25418:1 25432:1 25464:1 25465:1 25472:1 25505:2 25522:1 25548:1 25556:1 25557:3 25569:1 25583:1 25600:1 25626:1 25629:1 25655:2 25703:1 25712:1 25737:1 25744:1 25756:1 25776:2 25792:3 25795:1 25830:1 25901:3 25920:1 25931:1 25946:1 25947:1 25993:1 26015:1 26027:1 26030:1 26044:1 26091:1 26120:1 26157:1 26207:1 26222:1 26242:1 26268:1 26316:2 26404:1 26434:1 26446:2 26450:1 26471:1 26516:1 26531:1 26542:1 26551:2 26555:1 26561:1 26646:1 26648:1 26689:1 26693:1 26729:1 26763:1 26779:1 26781:1 26856:2 26871:1 26912:1 26917:1 26924:1 26936:1 26969:1 26976:1 27022:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27439:1 27474:1 27488:2 27550:1 27570:1 27626:1 27694:1 27705:1 27722:1 27723:1 27724:1 27725:1 27731:1 27732:1 27737:2 27748:1 27756:1 27781:3 27828:1 27842:1 27844:1 27851:4 27852:3 27858:1 27861:2 27891:1 27910:1 27949:1 27953:1 27955:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28270:1 28336:1 28346:5 28356:1 28416:1 28419:1 28421:1 28475:1 28521:1 28571:2 28609:3 28706:1 28749:1 28764:1 28795:1 28806:2 28818:1 28836:1 28839:1 28845:1 28850:1 28907:1 28912:1 28959:1 28965:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:1 29103:1 29157:3 29183:1 29191:2 29193:1 29214:2 29249:1 29250:1 29268:1 29281:1 29284:1 29285:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29500:1 29509:1 29546:1 29582:1 29604:1 29663:2 29701:1 29713:1 29748:6 29749:1 29818:1 29839:1 29844:1 29877:1 29881:1 29909:1 29913:1 29918:1 29940:2 29955:1 29995:1 30001:1 30004:1 30036:1 30074:1 30116:1 30126:1 30128:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30412:1 30431:1 30459:1 30468:1 30480:1 30503:1 30521:1 30539:1 30598:1 30602:1 30692:1 30696:1 30704:1 30706:3 30742:1 30753:1 30754:1 30769:1 30773:1 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30944:1 30949:2 31011:1 31039:1 31068:1 31072:1 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31134:1 31135:1 31146:1 31155:2 31170:2 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31356:1 31420:1 31472:1 31477:1 31506:1 31532:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31756:1 31774:1 31823:1 31824:1 31848:1 31916:3 31920:1 31924:1 31931:1 31933:1 31938:1 31940:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:5 32050:1 32081:1 32086:1 32099:1 32175:1 32206:3 32219:1 32246:1 32248:3 32256:1 32274:1 32293:1 32300:1 32311:1 32314:2 32319:1 32327:1 32343:1 32346:1 32354:4 32355:1 32373:1 32438:1 32459:2 32460:1 32463:2 32504:1 32527:1 32532:1 32548:2 32560:2 32562:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32736:1 32817:1 32825:1 32835:1 32861:1 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33233:1 33252:1 33268:1 33318:1 33326:3 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:2 33479:1 33516:1 33585:1 33600:1 7 12:1 21:1 42:1 89:1 99:1 138:1 191:4 207:3 237:1 249:1 258:2 262:1 306:1 344:1 369:1 372:1 393:1 412:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 719:1 737:1 816:4 831:1 999:1 1000:1 1022:1 1026:2 1066:2 1089:1 1098:3 1102:1 1111:1 1144:1 1153:1 1179:1 1185:1 1207:1 1302:2 1319:1 1322:1 1364:1 1407:1 1428:1 1435:1 1462:1 1471:1 1529:2 1612:1 1616:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2014:2 2015:2 2055:1 2058:1 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2239:1 2254:2 2261:1 2290:1 2331:1 2333:1 2338:1 2370:3 2381:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:1 2523:3 2538:1 2546:1 2561:1 2564:1 2569:1 2570:5 2575:1 2577:1 2580:1 2584:2 2585:1 2599:2 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2795:1 2809:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3222:1 3250:1 3265:3 3306:1 3318:9 3351:1 3385:1 3400:1 3430:1 3465:1 3483:1 3487:1 3542:2 3548:1 3647:1 3661:1 3663:1 3669:1 3689:3 3697:1 3723:6 3769:1 3783:1 3826:1 3830:2 3891:1 3893:1 3899:1 3937:1 3947:1 3970:1 4034:1 4038:1 4048:2 4055:1 4057:1 4077:1 4081:1 4084:1 4100:1 4145:1 4153:1 4155:1 4209:1 4270:2 4276:1 4313:1 4317:1 4395:1 4396:1 4411:1 4413:1 4421:1 4437:1 4441:1 4451:1 4472:1 4505:1 4512:2 4521:1 4536:1 4550:1 4584:1 4587:1 4643:4 4648:1 4705:1 4725:1 4739:1 4754:3 4768:1 4782:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:1 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5014:1 5030:1 5031:1 5040:1 5074:1 5077:1 5147:4 5154:1 5175:1 5184:1 5196:1 5197:1 5246:1 5258:1 5260:1 5261:2 5286:1 5298:1 5303:2 5308:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5500:2 5511:1 5523:8 5528:1 5546:1 5567:1 5619:1 5668:2 5685:2 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:1 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:1 6643:1 6716:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6884:2 6914:1 6919:1 7020:4 7059:1 7067:1 7092:1 7141:3 7169:4 7188:4 7193:1 7194:1 7212:2 7232:2 7233:1 7240:3 7242:2 7248:1 7253:1 7254:2 7255:1 7257:1 7263:1 7266:2 7297:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7491:1 7525:2 7583:1 7587:1 7621:2 7722:2 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7881:1 7892:1 7949:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:1 8154:1 8158:1 8160:1 8162:1 8169:1 8178:1 8187:1 8247:2 8276:1 8311:1 8312:1 8361:1 8372:1 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:1 8526:1 8534:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:19 8783:1 8786:8 8843:1 8879:1 8965:1 8978:1 8998:2 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9222:1 9224:1 9266:2 9301:1 9305:1 9326:7 9370:1 9392:2 9420:1 9431:1 9451:2 9518:1 9524:1 9542:2 9547:1 9560:1 9599:1 9605:1 9630:1 9650:1 9653:1 9662:1 9763:1 9766:1 9768:1 9769:1 9780:2 9823:1 9831:2 9846:1 9848:4 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9950:1 9957:1 9976:1 10043:1 10066:2 10093:1 10102:1 10122:2 10132:1 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10353:4 10362:1 10414:2 10513:1 10514:1 10516:1 10530:1 10531:1 10560:1 10600:1 10660:1 10663:1 10714:2 10719:1 10734:1 10790:1 10792:1 10798:1 10809:1 10836:1 10868:2 10879:1 10903:1 10924:1 10927:1 10938:1 10957:2 10958:2 10974:2 10996:1 11019:1 11038:1 11082:1 11098:1 11109:1 11111:1 11147:1 11150:1 11156:1 11184:1 11251:1 11264:1 11277:1 11309:1 11326:1 11370:1 11373:1 11385:1 11424:1 11440:1 11475:3 11486:1 11502:1 11517:1 11536:2 11551:2 11559:1 11578:1 11582:1 11639:1 11661:1 11676:2 11681:1 11719:1 11749:1 11751:1 11754:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:1 12216:1 12242:1 12246:1 12248:1 12250:1 12323:1 12395:1 12439:1 12453:1 12461:6 12474:1 12512:1 12572:1 12603:1 12610:1 12611:1 12649:1 12678:1 12695:1 12744:1 12778:2 12802:1 12805:1 12850:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:3 13008:1 13036:1 13046:1 13051:1 13064:1 13121:1 13158:2 13241:2 13268:1 13275:2 13277:1 13286:2 13288:1 13289:1 13291:1 13292:1 13296:1 13301:1 13319:2 13326:1 13348:1 13349:1 13382:1 13411:1 13440:1 13456:1 13460:3 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13574:1 13629:2 13698:4 13702:1 13713:4 13728:1 13766:1 13778:1 13789:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14096:1 14248:2 14270:2 14288:1 14429:1 14446:1 14474:3 14506:1 14528:1 14530:2 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14625:1 14629:1 14634:1 14665:2 14672:2 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14885:1 14924:1 14943:2 15027:1 15103:1 15125:2 15128:2 15137:1 15148:1 15159:2 15229:2 15321:1 15328:1 15380:1 15395:1 15399:1 15410:2 15438:2 15464:1 15522:1 15555:2 15558:1 15559:1 15575:1 15576:1 15584:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:2 15729:2 15772:1 15773:1 15774:1 15819:1 15890:2 15914:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16069:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16978:1 16995:1 16997:2 17029:1 17036:1 17108:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17510:1 17521:1 17522:3 17543:1 17564:1 17578:1 17591:3 17602:1 17605:1 17606:1 17628:3 17637:4 17646:2 17654:1 17675:1 17688:2 17731:1 17772:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:1 17848:2 17859:1 17863:1 17873:1 17890:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:1 18185:1 18216:1 18228:1 18291:1 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:2 18582:1 18590:1 18631:1 18632:1 18705:1 18711:1 18741:2 18760:1 18762:1 18778:1 18782:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18901:2 18927:1 19017:1 19027:4 19052:7 19075:1 19100:1 19105:1 19134:1 19155:1 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:1 19360:1 19384:1 19395:1 19440:1 19458:1 19470:3 19492:1 19512:1 19611:3 19646:1 19652:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19783:1 19785:1 19786:1 19787:1 19832:1 19838:1 19843:1 19895:1 19972:1 20139:2 20206:1 20211:1 20277:1 20282:1 20330:1 20358:1 20372:1 20410:1 20463:1 20530:1 20554:2 20566:1 20592:1 20624:1 20642:1 20666:1 20724:1 20726:1 20739:1 20794:5 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 21014:1 21034:1 21070:1 21106:1 21109:1 21110:1 21144:1 21162:1 21176:974 21180:1 21181:1 21220:2 21301:1 21361:2 21385:1 21393:1 21411:1 21423:1 21426:1 21442:1 21447:1 21459:2 21472:1 21496:1 21540:1 21591:2 21641:1 21648:1 21652:1 21680:1 21689:1 21713:1 21714:1 21785:1 21793:1 21810:1 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:1 21917:1 21919:1 21941:1 21959:2 21993:1 22002:1 22017:1 22045:2 22050:1 22074:1 22077:1 22091:3 22170:1 22213:1 22250:1 22252:1 22279:1 22295:1 22304:1 22336:1 22347:1 22374:1 22412:1 22413:1 22423:1 22441:1 22450:1 22478:6 22498:1 22530:1 22533:1 22541:1 22545:1 22567:1 22568:1 22622:1 22661:5 22682:1 22693:1 22698:1 22721:1 22762:3 22777:2 22793:2 22811:1 22821:1 22846:1 22851:1 22884:1 22890:1 22932:1 22984:9 22993:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23198:1 23241:1 23246:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:1 23599:1 23603:1 23616:1 23622:1 23626:1 23659:1 23689:1 23692:1 23702:1 23709:1 23711:5 23722:1 23725:1 23733:1 23735:1 23758:2 23772:1 23799:1 23816:1 23848:1 23881:1 23913:1 23931:1 24015:2 24018:1 24032:1 24038:1 24039:1 24067:2 24084:2 24089:1 24095:1 24120:1 24228:1 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24375:1 24381:1 24383:1 24395:2 24421:1 24448:1 24459:1 24465:1 24469:4 24470:1 24480:1 24481:1 24513:1 24515:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25071:1 25076:1 25091:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25215:2 25228:1 25239:1 25250:1 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25396:1 25403:1 25406:1 25418:1 25432:1 25464:1 25465:1 25472:1 25505:2 25522:1 25548:1 25556:1 25557:3 25569:1 25583:1 25600:1 25626:2 25629:1 25655:2 25703:1 25712:1 25737:1 25744:1 25756:1 25776:2 25792:3 25795:1 25803:1 25830:1 25901:4 25915:1 25920:1 25931:1 25946:1 25947:1 25993:1 26015:1 26027:1 26030:1 26044:1 26091:1 26120:1 26157:1 26207:1 26222:1 26235:1 26242:1 26268:1 26316:2 26404:1 26434:1 26446:2 26450:1 26471:1 26516:1 26530:1 26531:1 26542:1 26551:2 26555:1 26561:1 26615:1 26646:1 26648:1 26652:1 26689:1 26693:1 26729:1 26763:1 26773:1 26779:1 26781:1 26856:2 26871:2 26912:1 26917:1 26924:1 26936:1 26969:1 26976:1 27022:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27439:1 27474:1 27488:2 27550:1 27570:1 27626:1 27694:1 27705:1 27722:1 27723:1 27724:1 27725:1 27731:1 27732:1 27737:2 27748:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:4 27852:3 27858:1 27861:2 27891:1 27910:1 27912:1 27949:1 27953:1 27955:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28270:1 28336:1 28346:5 28356:2 28416:1 28419:1 28421:1 28475:1 28521:1 28571:2 28609:3 28638:1 28706:1 28749:1 28764:1 28795:1 28806:2 28818:1 28836:1 28839:1 28845:1 28850:1 28907:1 28912:1 28959:1 28965:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:1 29103:1 29157:3 29183:1 29191:2 29193:1 29214:2 29249:1 29250:1 29268:1 29281:1 29284:1 29285:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29500:1 29509:1 29546:1 29582:1 29604:1 29663:2 29701:1 29713:1 29748:7 29749:1 29761:1 29818:2 29839:1 29844:1 29877:1 29881:1 29909:1 29913:1 29918:1 29940:2 29955:1 29995:1 30001:1 30004:1 30036:1 30074:1 30116:1 30126:1 30128:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30431:1 30455:1 30459:1 30468:1 30480:1 30503:1 30521:1 30539:1 30598:1 30602:1 30692:1 30696:1 30704:1 30706:3 30742:1 30753:1 30754:1 30769:1 30773:1 30794:1 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30944:1 30949:2 31011:1 31033:1 31039:1 31068:1 31072:2 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31134:1 31135:1 31146:1 31155:2 31170:2 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31356:1 31399:1 31420:1 31472:1 31477:1 31506:1 31532:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31756:1 31774:1 31823:1 31824:1 31848:1 31916:3 31920:1 31924:1 31931:1 31933:1 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:5 32050:1 32081:1 32086:1 32099:1 32175:1 32206:3 32219:1 32246:1 32248:3 32256:1 32274:1 32293:1 32300:1 32311:1 32314:2 32319:1 32327:1 32343:1 32346:1 32354:4 32355:1 32373:1 32438:1 32459:2 32460:1 32461:1 32463:2 32480:1 32504:1 32527:1 32532:1 32548:2 32560:2 32562:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32736:1 32817:1 32825:1 32835:1 32861:1 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33233:1 33252:1 33268:1 33318:1 33326:3 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:2 33479:1 33516:1 33585:1 33600:1 7 12:1 21:1 42:1 89:1 95:1 99:1 127:1 138:1 191:4 207:3 237:1 249:1 258:2 262:1 306:1 311:1 344:1 369:1 372:1 393:1 412:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 719:2 737:1 816:4 831:1 883:1 999:3 1000:1 1022:1 1026:2 1064:1 1066:2 1089:1 1098:3 1102:1 1111:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:1 1322:1 1364:1 1407:1 1428:1 1435:1 1453:1 1462:1 1471:1 1529:2 1612:1 1616:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2014:2 2015:2 2055:1 2058:1 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2239:1 2254:2 2261:1 2290:1 2331:1 2333:1 2338:1 2370:3 2381:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:1 2523:3 2538:1 2546:1 2561:1 2564:1 2569:1 2570:5 2575:1 2577:1 2580:1 2584:2 2585:1 2599:2 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3222:1 3250:1 3265:4 3306:1 3318:10 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3542:2 3548:1 3647:1 3661:1 3663:1 3669:1 3689:3 3697:1 3723:6 3769:1 3783:1 3826:1 3830:2 3891:1 3893:1 3899:1 3937:1 3947:1 3970:1 3980:1 4000:1 4034:1 4038:1 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4153:1 4155:1 4209:1 4270:2 4276:1 4313:1 4317:1 4395:1 4396:1 4411:1 4413:1 4421:1 4437:1 4441:1 4451:1 4472:1 4505:2 4512:2 4521:1 4536:1 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4725:1 4739:1 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:1 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5014:1 5030:1 5031:1 5040:1 5074:1 5077:1 5147:4 5154:1 5175:1 5184:1 5196:1 5197:1 5246:1 5258:1 5260:1 5261:2 5286:1 5298:1 5303:2 5308:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:10 5528:1 5546:1 5567:1 5608:1 5619:1 5668:2 5685:2 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:1 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6105:1 6114:1 6118:1 6147:1 6283:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:1 6643:1 6716:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6884:2 6914:1 6919:1 6967:1 7020:4 7059:1 7067:1 7092:1 7141:3 7169:4 7188:4 7193:1 7194:1 7212:2 7232:2 7233:1 7240:3 7242:2 7248:1 7253:1 7254:2 7255:1 7257:1 7263:2 7266:2 7297:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7491:1 7525:3 7583:1 7587:1 7621:2 7722:2 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7881:1 7892:1 7949:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:1 8154:1 8158:1 8160:1 8162:1 8169:1 8178:1 8187:1 8247:2 8276:1 8311:1 8312:1 8347:1 8361:1 8372:1 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:1 8526:1 8534:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:19 8783:1 8786:9 8843:1 8879:1 8965:1 8978:1 8998:2 9002:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:9 9370:1 9392:2 9420:1 9431:1 9451:2 9518:1 9524:1 9542:2 9547:1 9560:1 9599:1 9605:1 9630:1 9650:1 9653:1 9662:1 9763:1 9766:1 9768:1 9769:1 9780:2 9823:1 9831:2 9846:1 9848:4 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9950:1 9957:1 9976:1 10043:1 10066:2 10093:1 10102:1 10122:3 10132:1 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10353:4 10362:1 10414:2 10497:1 10513:1 10514:1 10516:1 10530:1 10531:1 10560:1 10600:1 10660:1 10663:1 10714:2 10719:1 10734:1 10790:1 10792:1 10798:1 10809:1 10836:1 10868:2 10879:1 10903:1 10924:1 10927:1 10938:1 10957:2 10958:2 10974:2 10996:1 11019:1 11038:1 11082:1 11098:1 11109:1 11111:1 11147:1 11150:1 11156:1 11184:1 11251:1 11264:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11373:1 11385:1 11424:1 11440:1 11475:3 11486:1 11502:1 11517:1 11536:2 11542:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:1 11676:2 11681:1 11719:1 11749:1 11751:1 11754:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:1 12216:1 12242:1 12246:1 12248:1 12250:1 12323:1 12395:1 12439:1 12453:1 12461:6 12474:1 12512:1 12572:2 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:2 12802:1 12805:1 12850:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:3 13008:1 13036:1 13046:1 13051:1 13064:1 13121:1 13158:2 13169:1 13216:1 13241:2 13268:1 13275:2 13277:1 13286:2 13288:2 13289:1 13291:1 13292:1 13296:1 13301:1 13319:2 13326:1 13348:1 13349:1 13382:1 13411:1 13419:1 13440:1 13456:1 13460:3 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13574:1 13629:2 13698:4 13702:1 13713:4 13728:1 13766:1 13778:1 13789:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14096:1 14248:2 14270:2 14288:1 14399:1 14429:1 14446:1 14474:5 14506:1 14528:1 14530:2 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14885:1 14924:1 14943:3 15015:1 15027:1 15103:1 15125:3 15128:2 15137:1 15148:1 15159:2 15229:2 15321:1 15328:1 15356:1 15380:1 15395:1 15399:1 15410:2 15438:2 15464:1 15522:1 15555:2 15558:1 15559:1 15575:1 15576:1 15584:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:2 15729:2 15772:1 15773:1 15774:1 15819:1 15890:2 15914:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16069:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16615:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16978:1 16995:1 16997:2 17029:1 17036:1 17108:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17510:1 17521:1 17522:3 17543:1 17564:1 17578:1 17591:3 17602:1 17605:1 17606:1 17628:3 17637:5 17646:2 17654:1 17675:1 17688:3 17731:1 17772:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:1 17848:2 17859:1 17863:1 17873:1 17890:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:1 18185:1 18216:1 18224:1 18228:1 18291:1 18364:1 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:2 18582:1 18590:1 18631:1 18632:1 18705:1 18711:1 18741:2 18760:1 18762:1 18778:1 18782:1 18819:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18896:1 18901:2 18927:1 19017:1 19027:5 19052:8 19075:1 19100:1 19105:1 19134:1 19155:1 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:1 19360:1 19384:1 19395:1 19440:1 19458:1 19470:3 19492:1 19512:1 19611:3 19646:1 19652:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19972:1 20139:2 20206:1 20211:1 20277:1 20282:1 20330:1 20358:1 20372:1 20410:1 20463:1 20490:1 20530:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20724:1 20726:1 20739:1 20794:6 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 21014:1 21034:1 21070:1 21106:1 21109:1 21110:1 21144:1 21162:1 21176:1025 21178:1 21180:1 21181:1 21220:2 21243:1 21301:1 21361:2 21385:1 21393:1 21411:1 21414:1 21423:1 21426:1 21442:1 21447:1 21459:3 21472:1 21496:1 21512:1 21540:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21785:1 21793:1 21810:1 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:2 21917:1 21919:1 21941:1 21959:2 21993:1 22002:1 22017:1 22045:2 22050:1 22074:1 22077:1 22091:3 22170:1 22213:1 22250:1 22252:1 22279:1 22295:1 22304:1 22336:1 22347:1 22374:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:7 22498:1 22530:1 22533:1 22541:1 22545:1 22567:1 22568:1 22622:1 22661:5 22682:1 22693:1 22698:1 22721:1 22756:1 22762:3 22777:2 22793:3 22811:1 22821:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22932:1 22984:10 22993:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23192:1 23198:1 23241:1 23246:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:1 23599:1 23603:1 23616:1 23622:1 23626:1 23659:1 23689:1 23692:1 23702:1 23709:1 23711:6 23722:1 23725:1 23733:2 23735:1 23758:2 23772:1 23799:1 23816:1 23848:1 23881:1 23913:1 23931:1 24015:2 24018:1 24032:1 24038:1 24039:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24228:1 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24375:1 24381:1 24383:1 24395:2 24398:1 24421:1 24448:1 24459:1 24465:1 24466:1 24469:5 24470:1 24480:1 24481:1 24513:1 24515:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25071:1 25076:1 25091:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25215:2 25228:1 25239:1 25250:1 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25396:2 25403:1 25406:1 25418:1 25432:1 25464:1 25465:1 25472:1 25505:2 25507:1 25521:1 25522:1 25548:1 25556:1 25557:4 25569:1 25583:1 25600:1 25626:2 25629:1 25655:2 25703:1 25712:1 25737:1 25744:1 25756:1 25776:2 25792:3 25795:1 25803:1 25830:1 25872:1 25882:1 25901:4 25915:1 25920:1 25931:1 25946:1 25947:2 25993:1 26015:1 26027:1 26030:1 26044:1 26085:1 26091:1 26120:1 26157:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26404:1 26434:1 26446:2 26450:1 26471:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26615:1 26646:2 26648:1 26652:1 26689:1 26693:1 26729:1 26763:1 26773:1 26779:1 26781:1 26856:2 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27439:1 27474:1 27488:2 27550:1 27570:1 27626:1 27694:1 27705:1 27722:1 27723:1 27724:1 27725:1 27731:1 27732:1 27737:2 27748:1 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:5 27852:3 27858:1 27861:3 27891:1 27910:1 27912:2 27949:1 27953:1 27955:1 28031:1 28035:1 28092:1 28142:1 28162:1 28218:1 28270:1 28336:1 28346:6 28356:2 28416:1 28419:1 28421:1 28475:1 28521:1 28571:2 28609:3 28638:1 28706:1 28749:1 28764:1 28795:1 28806:2 28818:1 28836:1 28839:1 28845:1 28850:1 28851:1 28907:1 28912:1 28959:1 28965:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:1 29103:1 29157:3 29183:1 29191:2 29193:1 29214:2 29249:1 29250:1 29268:1 29281:1 29284:1 29285:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29500:1 29509:1 29546:1 29582:1 29604:1 29663:2 29701:1 29713:1 29748:7 29749:1 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29909:1 29913:1 29918:1 29940:2 29955:1 29995:1 30001:1 30004:1 30036:1 30074:1 30116:1 30126:1 30128:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30431:1 30455:1 30459:1 30468:1 30480:1 30503:1 30521:1 30539:1 30598:1 30602:1 30689:1 30692:1 30696:1 30704:1 30706:3 30742:1 30753:1 30754:1 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30926:1 30944:1 30949:2 31011:1 31033:1 31039:1 31068:1 31072:2 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31134:1 31135:1 31146:1 31155:2 31170:2 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31356:1 31399:1 31420:1 31472:1 31477:1 31506:1 31532:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31756:2 31774:1 31823:1 31824:1 31848:1 31916:3 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:5 32050:1 32081:1 32086:1 32099:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32274:1 32293:1 32300:1 32311:1 32314:2 32319:1 32327:1 32343:1 32346:1 32354:4 32355:1 32373:1 32438:1 32459:2 32460:1 32461:1 32463:2 32480:1 32504:1 32527:1 32532:1 32548:2 32560:2 32562:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32736:1 32817:1 32825:1 32835:1 32861:1 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33233:1 33252:1 33268:1 33318:1 33326:3 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:2 33479:1 33516:1 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:3 237:2 249:1 258:2 262:1 306:1 311:1 344:1 369:1 372:1 393:1 412:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 719:2 737:1 816:4 831:1 883:1 999:3 1000:1 1022:1 1026:2 1050:1 1064:1 1066:2 1089:1 1098:3 1102:1 1111:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:2 1322:1 1364:1 1407:1 1428:1 1435:1 1453:1 1462:1 1471:1 1529:2 1612:1 1616:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2014:2 2015:2 2055:1 2058:1 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2239:1 2254:2 2261:2 2290:1 2331:1 2333:1 2338:1 2359:1 2370:4 2381:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:1 2523:3 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2575:2 2577:1 2580:1 2584:2 2585:1 2592:1 2599:3 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:1 3250:1 3265:4 3306:1 3318:12 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3542:2 3548:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:3 3697:1 3723:6 3769:1 3783:1 3826:1 3830:2 3891:1 3893:1 3899:1 3937:1 3947:1 3970:1 3980:1 4000:1 4034:1 4038:1 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4153:1 4155:1 4209:1 4270:2 4276:1 4313:1 4317:1 4395:1 4396:1 4411:1 4413:1 4421:1 4424:1 4437:1 4441:1 4451:1 4472:1 4505:2 4512:2 4521:1 4536:1 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4725:1 4739:1 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5014:1 5030:1 5031:1 5040:1 5074:1 5077:1 5147:4 5154:1 5175:1 5184:1 5196:1 5197:1 5246:1 5258:1 5260:1 5261:2 5286:1 5298:1 5303:2 5308:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:10 5528:1 5546:1 5567:1 5608:1 5619:1 5668:2 5685:2 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:1 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6096:1 6105:1 6114:1 6118:1 6147:1 6283:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:1 6716:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6884:2 6914:1 6919:1 6949:1 6967:1 7020:5 7059:1 7067:1 7092:1 7141:3 7169:4 7188:4 7193:1 7194:1 7212:2 7232:2 7233:1 7240:3 7242:2 7248:1 7253:1 7254:2 7255:1 7257:1 7263:2 7266:2 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7491:1 7525:3 7583:1 7587:1 7621:2 7722:2 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7881:1 7892:1 7949:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:1 8154:1 8158:1 8160:1 8162:1 8169:1 8178:1 8187:1 8247:2 8276:1 8311:1 8312:1 8347:1 8361:1 8372:1 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:1 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:22 8783:1 8786:11 8843:1 8879:1 8965:1 8978:1 8998:2 9002:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:10 9370:1 9392:2 9420:1 9431:1 9451:2 9518:1 9524:1 9542:2 9547:1 9560:1 9568:1 9599:1 9605:1 9626:1 9630:1 9650:1 9653:1 9662:1 9763:1 9766:1 9768:1 9769:1 9780:2 9823:1 9831:2 9846:2 9848:5 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9940:1 9950:1 9957:1 9976:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:1 10122:3 10132:1 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10353:4 10362:1 10414:2 10497:1 10513:1 10514:1 10516:1 10530:1 10531:1 10560:1 10600:1 10660:1 10663:1 10714:2 10719:1 10734:1 10790:1 10792:1 10798:1 10809:1 10836:1 10868:2 10879:1 10903:1 10924:1 10927:1 10938:1 10957:2 10958:2 10974:2 10996:1 11019:1 11038:1 11082:1 11098:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11373:1 11385:1 11424:1 11440:1 11475:3 11486:1 11502:2 11517:1 11536:2 11542:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11719:1 11749:1 11751:1 11754:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:1 12216:1 12242:1 12246:1 12248:1 12250:1 12323:1 12395:1 12439:1 12453:1 12461:6 12474:1 12512:1 12572:2 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:2 12802:1 12805:1 12850:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:3 13008:1 13036:1 13046:1 13051:1 13064:1 13121:1 13158:2 13169:1 13216:1 13241:2 13268:1 13275:2 13277:1 13286:2 13288:2 13289:1 13291:1 13292:1 13296:1 13301:1 13319:2 13326:1 13348:1 13349:1 13382:1 13411:1 13419:1 13440:1 13456:1 13460:3 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13574:1 13629:2 13698:4 13702:1 13713:4 13728:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14096:1 14248:2 14256:1 14270:2 14288:1 14366:1 14399:1 14429:1 14446:1 14474:5 14506:1 14528:1 14530:2 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14885:1 14924:1 14943:3 15015:1 15027:1 15103:1 15125:3 15128:2 15137:1 15148:1 15159:2 15229:2 15321:1 15328:1 15356:1 15380:1 15395:1 15399:1 15410:2 15438:2 15464:1 15522:1 15555:2 15558:1 15559:1 15575:2 15576:1 15584:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:2 15729:2 15772:1 15773:1 15774:1 15819:1 15890:2 15914:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16069:1 16132:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16582:1 16615:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16978:1 16995:1 16997:2 17029:1 17036:1 17108:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:1 17591:3 17602:1 17605:1 17606:1 17628:3 17637:5 17646:2 17654:1 17675:1 17688:3 17731:1 17772:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:1 18185:1 18216:1 18224:1 18228:1 18291:1 18364:1 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:3 18582:1 18590:1 18631:1 18632:1 18705:1 18711:2 18741:2 18760:1 18762:1 18778:1 18782:1 18819:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18896:1 18901:2 18927:1 19017:1 19027:5 19052:10 19075:1 19100:1 19105:2 19134:1 19155:1 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:1 19360:1 19384:1 19395:1 19440:1 19458:1 19470:3 19492:2 19512:1 19611:3 19627:1 19646:1 19652:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19972:1 20139:2 20206:1 20211:1 20277:1 20282:1 20330:1 20358:1 20372:1 20410:1 20463:1 20490:1 20530:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20724:1 20726:1 20739:1 20794:6 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 21014:1 21034:1 21070:1 21106:1 21109:1 21110:1 21144:1 21162:1 21176:1096 21178:1 21180:1 21181:1 21220:2 21243:1 21301:1 21361:3 21385:1 21393:1 21411:1 21414:1 21423:1 21426:1 21442:1 21447:1 21459:3 21472:1 21496:1 21512:1 21540:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21785:1 21793:1 21810:1 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:2 21917:1 21919:1 21941:1 21959:2 21993:1 22002:1 22017:1 22045:2 22050:1 22074:1 22077:1 22091:3 22170:1 22213:1 22250:1 22252:1 22279:1 22295:1 22304:1 22336:1 22347:1 22374:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:9 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22622:1 22636:1 22661:5 22682:1 22693:1 22698:1 22721:2 22756:1 22762:4 22777:2 22793:3 22811:1 22821:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22932:1 22984:12 22993:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23192:1 23198:1 23241:1 23246:2 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:1 23599:1 23603:1 23616:1 23622:1 23626:1 23659:1 23689:1 23692:2 23702:2 23709:1 23711:8 23722:1 23725:1 23733:2 23735:1 23758:2 23772:1 23799:1 23816:1 23848:1 23881:1 23913:1 23931:1 24015:2 24018:1 24032:1 24038:1 24039:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24228:1 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24375:2 24381:1 24383:1 24395:2 24398:1 24421:1 24448:1 24459:1 24465:1 24466:1 24469:5 24470:1 24480:1 24481:1 24513:1 24515:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25067:1 25071:1 25076:1 25091:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25215:2 25228:1 25239:1 25242:1 25250:1 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25396:2 25403:1 25406:1 25418:1 25432:1 25464:1 25465:2 25472:1 25505:2 25507:1 25521:1 25522:1 25548:1 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25655:2 25703:1 25712:1 25737:1 25744:1 25756:1 25776:2 25792:3 25795:1 25803:1 25830:1 25872:1 25882:1 25901:4 25913:1 25915:1 25920:1 25931:1 25946:1 25947:2 25993:1 26015:1 26027:1 26030:1 26044:1 26085:1 26091:1 26120:1 26157:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26404:1 26434:2 26446:2 26450:1 26471:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26615:1 26646:2 26648:1 26652:1 26689:1 26693:1 26729:1 26763:1 26773:2 26779:1 26781:1 26856:2 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27439:1 27474:1 27488:2 27550:1 27570:2 27626:1 27694:1 27705:1 27722:1 27723:1 27724:2 27725:1 27731:1 27732:1 27737:2 27748:2 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:5 27852:3 27858:1 27861:3 27891:1 27910:1 27912:2 27949:1 27953:1 27955:1 28031:1 28035:1 28045:1 28092:1 28142:1 28162:1 28193:1 28218:1 28270:1 28336:1 28346:6 28356:2 28416:1 28419:1 28421:1 28475:1 28521:1 28571:2 28609:4 28638:1 28706:1 28749:1 28764:1 28780:1 28795:1 28806:2 28818:1 28836:1 28839:1 28845:1 28850:1 28851:1 28907:1 28912:1 28959:1 28965:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29103:1 29157:3 29183:1 29191:2 29193:1 29214:2 29249:1 29250:1 29268:1 29281:1 29284:2 29285:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29500:1 29509:1 29546:1 29582:1 29604:1 29652:1 29663:2 29701:1 29713:1 29748:7 29749:1 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29909:1 29913:1 29918:1 29940:2 29955:1 29995:1 30001:1 30004:1 30036:1 30074:1 30116:1 30126:1 30128:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30598:1 30602:1 30689:1 30691:1 30692:1 30696:1 30704:1 30706:3 30742:1 30753:1 30754:1 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30926:1 30944:1 30949:2 31011:1 31033:1 31039:1 31068:1 31072:2 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31134:1 31135:1 31146:1 31155:2 31170:2 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31356:1 31399:1 31420:1 31472:1 31477:1 31506:1 31532:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31756:2 31774:1 31823:1 31824:1 31848:1 31916:4 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:5 32050:1 32081:1 32086:1 32099:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32274:1 32293:1 32300:1 32303:1 32311:1 32314:2 32319:1 32327:1 32343:1 32346:1 32354:4 32355:1 32373:1 32388:1 32438:1 32459:2 32460:1 32461:1 32463:2 32480:1 32504:1 32527:1 32532:1 32548:2 32552:1 32560:3 32562:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32736:1 32817:1 32825:1 32835:1 32861:2 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33229:1 33233:1 33252:1 33268:1 33318:1 33326:3 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:2 33479:1 33516:1 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 249:1 258:2 262:1 306:1 311:1 341:1 344:1 369:1 372:1 393:1 412:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:2 719:2 737:1 816:4 831:1 883:1 999:3 1000:1 1022:1 1026:2 1050:1 1064:1 1066:2 1089:1 1098:3 1102:1 1111:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:2 1322:1 1364:1 1407:1 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1612:1 1616:1 1663:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2014:2 2015:2 2055:1 2058:1 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2239:1 2254:2 2261:2 2290:1 2331:1 2333:1 2338:1 2359:1 2370:4 2381:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:1 2523:3 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2575:2 2577:1 2580:1 2584:2 2585:1 2592:1 2599:3 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:1 3250:1 3265:4 3306:1 3318:13 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3542:2 3548:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:3 3697:1 3723:6 3769:1 3783:1 3826:1 3830:2 3891:1 3893:1 3899:1 3937:1 3947:1 3970:1 3980:1 4000:1 4034:1 4038:1 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4152:1 4153:1 4155:1 4209:1 4270:2 4276:1 4313:1 4317:1 4395:1 4396:1 4410:1 4411:1 4413:1 4421:1 4424:1 4437:1 4441:1 4451:1 4463:1 4472:1 4505:2 4512:2 4521:1 4536:2 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4725:1 4739:1 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5014:1 5030:1 5031:1 5040:1 5074:1 5077:1 5147:4 5154:1 5175:1 5184:1 5196:1 5197:1 5246:1 5258:1 5260:1 5261:2 5286:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:11 5528:1 5546:1 5567:1 5608:1 5619:1 5668:2 5685:2 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:2 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6096:1 6105:1 6114:1 6118:1 6147:1 6283:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:1 6716:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6884:2 6914:1 6919:1 6949:1 6967:1 7020:5 7059:1 7067:1 7092:1 7141:3 7169:4 7188:4 7193:1 7194:1 7212:2 7232:2 7233:1 7240:3 7242:2 7248:1 7253:1 7254:3 7255:1 7257:1 7263:2 7266:2 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7491:1 7525:3 7583:1 7587:1 7621:2 7722:2 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7881:1 7892:1 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:1 8112:1 8150:1 8154:1 8158:1 8160:1 8162:1 8169:1 8178:1 8187:1 8247:2 8276:1 8311:1 8312:1 8347:1 8361:1 8372:1 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:2 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:22 8783:1 8786:12 8843:1 8879:1 8965:1 8978:1 8998:2 9002:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:10 9370:1 9392:2 9420:1 9431:1 9451:2 9518:1 9524:1 9542:2 9547:1 9560:1 9568:1 9599:1 9605:1 9626:1 9630:1 9650:1 9653:1 9662:1 9763:1 9766:1 9768:1 9769:1 9780:2 9799:1 9823:1 9831:3 9846:2 9848:5 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9940:1 9950:1 9957:1 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:1 10122:3 10132:1 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10353:4 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10530:1 10531:1 10560:1 10600:2 10660:1 10663:1 10714:2 10719:1 10734:1 10790:1 10792:1 10798:1 10809:1 10836:1 10868:3 10879:1 10903:1 10924:1 10927:1 10938:1 10957:2 10958:2 10974:2 10996:1 11019:1 11038:1 11082:2 11098:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11372:1 11373:1 11385:1 11424:1 11440:1 11475:3 11486:1 11502:2 11517:1 11536:2 11542:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:1 11754:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:1 12216:1 12242:1 12246:1 12248:1 12250:1 12323:1 12395:1 12439:1 12453:1 12461:6 12474:1 12512:1 12572:2 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:2 12802:1 12805:1 12850:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:3 13008:1 13036:1 13046:1 13051:1 13064:1 13121:1 13158:2 13169:1 13214:1 13216:1 13241:2 13268:1 13275:2 13277:1 13286:2 13288:2 13289:1 13291:2 13292:1 13296:1 13301:1 13319:2 13326:1 13348:1 13349:1 13382:1 13411:1 13419:1 13440:1 13456:1 13460:3 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13574:1 13629:2 13698:4 13702:1 13713:4 13728:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14096:1 14248:2 14256:1 14270:2 14288:1 14366:1 14399:1 14429:1 14446:1 14474:5 14506:1 14528:1 14530:2 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14858:1 14885:1 14924:1 14943:3 14976:1 15015:1 15027:1 15103:1 15125:3 15128:2 15137:1 15148:1 15159:2 15229:2 15321:1 15328:1 15356:1 15380:1 15395:1 15399:2 15410:2 15438:2 15464:1 15522:1 15555:2 15558:1 15559:1 15575:2 15576:1 15580:1 15584:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:2 15729:2 15772:1 15773:1 15774:1 15819:1 15890:2 15914:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16069:1 16116:1 16132:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16582:1 16615:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16978:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:1 17591:3 17602:1 17605:1 17606:1 17628:3 17637:5 17646:2 17654:1 17675:1 17688:3 17731:1 17772:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:1 18185:1 18216:1 18224:1 18228:1 18291:1 18298:1 18364:2 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:3 18582:1 18590:1 18631:1 18632:1 18705:1 18711:2 18715:1 18741:2 18760:2 18762:1 18778:1 18782:1 18819:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18896:1 18901:2 18927:1 19017:1 19027:5 19052:11 19075:1 19100:1 19105:2 19134:2 19155:1 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:1 19360:1 19384:1 19395:1 19440:1 19458:1 19470:3 19492:2 19512:1 19611:3 19627:1 19646:1 19652:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19965:1 19972:1 20093:1 20139:2 20206:1 20211:1 20277:1 20282:1 20330:1 20358:1 20372:1 20410:1 20447:1 20463:1 20490:1 20530:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20794:6 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 20947:1 21014:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21144:1 21162:1 21176:1178 21178:1 21180:1 21181:1 21220:2 21243:1 21281:1 21301:1 21313:1 21361:3 21385:1 21393:1 21411:1 21414:1 21423:1 21426:1 21442:1 21447:1 21459:3 21472:1 21496:1 21512:1 21540:1 21547:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21785:1 21793:1 21810:1 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:3 21917:1 21919:1 21941:1 21959:2 21993:1 22002:1 22017:1 22045:2 22050:1 22074:1 22077:1 22091:3 22170:1 22213:1 22250:1 22252:1 22279:1 22295:1 22304:1 22336:1 22347:1 22374:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:10 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22693:1 22698:1 22721:2 22756:1 22762:4 22777:2 22793:3 22811:1 22821:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22932:1 22984:13 22993:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23192:1 23198:1 23241:1 23246:2 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:1 23585:1 23599:1 23603:1 23616:1 23622:1 23626:1 23659:1 23684:1 23689:1 23692:2 23702:2 23709:1 23711:9 23722:1 23725:1 23733:2 23735:1 23758:2 23772:1 23799:1 23816:1 23847:1 23848:1 23881:1 23913:1 23931:1 24015:2 24018:1 24032:1 24038:1 24039:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24228:1 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24375:2 24381:1 24383:1 24395:2 24398:1 24421:1 24448:1 24453:1 24459:1 24465:1 24466:1 24469:5 24470:1 24480:1 24481:1 24513:1 24515:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24807:1 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25067:1 25071:1 25076:1 25091:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25215:2 25228:1 25239:1 25242:1 25250:1 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25396:2 25403:1 25406:1 25418:1 25432:1 25464:1 25465:2 25472:1 25505:2 25507:1 25521:1 25522:1 25548:1 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25655:2 25703:1 25712:1 25737:1 25744:1 25756:1 25776:2 25792:3 25795:1 25803:1 25830:1 25869:1 25872:1 25882:1 25901:4 25913:1 25915:1 25920:1 25931:1 25946:1 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26404:1 26434:2 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26609:1 26615:1 26646:2 26648:1 26652:1 26689:1 26693:2 26729:1 26763:1 26773:2 26779:1 26781:1 26856:2 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27429:1 27439:1 27474:1 27488:2 27550:1 27570:2 27626:1 27694:1 27705:1 27722:1 27723:1 27724:2 27725:1 27731:1 27732:1 27737:2 27748:2 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:5 27852:3 27858:1 27861:3 27891:1 27910:1 27912:2 27949:1 27953:1 27955:1 28031:1 28035:1 28045:1 28092:1 28112:1 28142:1 28162:1 28193:1 28218:1 28270:1 28336:1 28346:6 28356:2 28416:1 28419:1 28421:1 28475:1 28521:1 28571:3 28609:4 28638:1 28706:1 28749:1 28764:1 28780:1 28795:1 28806:2 28818:1 28836:1 28839:1 28845:1 28850:1 28851:1 28907:1 28912:1 28959:1 28965:1 28966:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29103:1 29157:3 29183:1 29191:2 29193:1 29214:2 29249:1 29250:1 29268:1 29281:1 29284:2 29285:1 29339:1 29377:2 29396:1 29410:1 29422:1 29427:1 29477:1 29478:2 29500:1 29509:1 29546:1 29556:1 29582:1 29604:1 29652:1 29663:2 29701:1 29713:1 29748:8 29749:2 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29909:1 29913:1 29918:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30074:1 30116:1 30126:1 30128:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30598:1 30602:1 30689:1 30691:1 30692:1 30696:2 30704:1 30706:3 30742:1 30752:1 30753:1 30754:1 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30926:1 30944:1 30949:2 31011:1 31033:1 31039:1 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31134:1 31135:1 31146:1 31155:2 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:1 31472:1 31477:1 31506:1 31532:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31916:4 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:5 32050:1 32081:1 32086:2 32099:1 32168:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32274:1 32293:1 32300:1 32303:1 32311:1 32314:2 32319:1 32327:1 32343:1 32346:1 32354:4 32355:1 32373:1 32388:1 32438:1 32459:2 32460:1 32461:1 32463:2 32480:1 32504:1 32527:1 32532:1 32548:3 32552:1 32560:3 32562:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32736:1 32817:1 32825:1 32835:1 32861:2 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33229:1 33233:1 33252:1 33268:1 33318:1 33326:3 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:2 33479:1 33508:1 33516:1 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 249:1 258:2 262:1 286:1 306:1 311:1 341:1 344:1 369:1 372:2 393:1 412:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:3 719:2 737:1 816:4 831:1 851:1 883:1 999:3 1000:1 1022:1 1026:2 1050:1 1064:1 1066:2 1089:1 1098:3 1102:1 1111:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:3 1322:1 1364:1 1405:1 1407:1 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1612:1 1616:1 1621:1 1663:1 1668:1 1672:1 1680:1 1763:1 1800:1 1810:2 1852:1 1869:1 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2014:2 2015:2 2055:1 2058:2 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2178:1 2223:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2359:1 2370:4 2381:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:1 2523:4 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:1 2575:2 2577:1 2580:3 2584:2 2585:1 2592:1 2599:3 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:1 3250:1 3265:4 3306:2 3314:1 3318:13 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:3 3697:1 3723:6 3769:1 3783:2 3826:1 3830:2 3890:1 3891:1 3893:1 3899:1 3937:1 3947:2 3970:1 3980:1 4000:1 4034:1 4038:1 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4152:1 4153:2 4155:1 4209:1 4270:2 4276:1 4313:1 4317:1 4359:1 4395:1 4396:1 4410:1 4411:1 4413:1 4421:1 4424:1 4437:1 4441:1 4451:1 4463:1 4472:1 4505:2 4512:2 4521:1 4536:2 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4725:1 4739:1 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5011:1 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5175:1 5184:1 5196:1 5197:1 5246:1 5258:1 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:11 5528:1 5546:1 5567:1 5608:1 5619:1 5668:2 5685:2 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:2 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6283:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:1 6716:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6884:2 6914:1 6919:1 6949:1 6967:1 6986:1 7020:5 7059:1 7067:1 7092:1 7141:4 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:3 7242:2 7248:1 7253:1 7254:3 7255:1 7257:1 7263:2 7266:2 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7491:1 7525:3 7583:1 7587:1 7621:2 7722:2 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7881:1 7892:2 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:2 8112:1 8150:2 8154:1 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8247:2 8276:1 8311:1 8312:1 8347:1 8361:1 8372:2 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:2 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:25 8783:1 8786:13 8843:1 8879:1 8965:1 8978:1 8998:2 9002:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9191:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:11 9360:1 9370:1 9392:2 9420:1 9431:1 9451:3 9518:1 9524:2 9542:2 9547:1 9560:1 9568:1 9599:1 9605:1 9624:1 9626:1 9630:1 9650:1 9653:1 9662:1 9763:1 9766:1 9768:2 9769:2 9780:2 9799:1 9823:1 9831:3 9846:2 9848:5 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9940:1 9950:1 9957:2 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:2 10122:3 10125:2 10132:1 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10353:4 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10530:1 10531:1 10560:1 10600:2 10660:1 10663:1 10714:2 10719:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10836:2 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10996:1 11019:1 11038:1 11082:2 11098:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11372:1 11373:1 11385:1 11424:1 11440:1 11475:3 11486:1 11502:2 11517:1 11521:1 11536:2 11542:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:1 11754:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:3 12216:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12395:1 12439:1 12453:1 12461:6 12474:1 12496:1 12512:1 12572:2 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:2 12802:1 12805:1 12850:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:3 13008:1 13036:1 13046:1 13051:1 13064:1 13121:2 13158:2 13169:1 13214:1 13216:1 13240:1 13241:2 13268:1 13275:2 13277:1 13286:2 13288:2 13289:1 13291:2 13292:1 13296:1 13301:1 13319:2 13326:1 13330:1 13348:1 13349:1 13379:1 13382:2 13411:1 13419:1 13440:1 13456:1 13460:3 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13574:1 13629:2 13698:4 13702:1 13713:4 13728:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14096:1 14216:1 14248:2 14256:1 14270:2 14288:1 14366:1 14399:1 14429:1 14446:1 14474:5 14506:1 14528:1 14530:2 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14857:1 14858:1 14885:1 14924:2 14943:3 14976:1 15015:1 15027:1 15103:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:2 15301:1 15321:1 15328:1 15356:1 15380:2 15395:1 15399:2 15410:2 15438:2 15464:1 15522:1 15525:1 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15584:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:2 15729:2 15772:1 15773:1 15774:1 15778:1 15819:1 15876:1 15890:2 15914:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16069:1 16116:1 16132:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16582:1 16615:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:1 17591:3 17602:1 17605:1 17606:1 17628:3 17637:5 17646:2 17654:1 17675:1 17688:3 17731:1 17760:1 17772:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:1 18185:1 18216:1 18224:1 18228:1 18287:1 18291:1 18298:1 18364:2 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:4 18582:1 18590:1 18631:1 18632:1 18705:1 18711:2 18715:1 18741:2 18760:2 18762:1 18778:1 18782:1 18819:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18896:1 18901:2 18927:1 19007:1 19011:1 19017:1 19027:5 19052:11 19074:1 19075:1 19100:1 19105:2 19134:2 19155:1 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:2 19360:1 19384:1 19395:1 19440:1 19458:1 19470:3 19492:2 19512:1 19611:3 19627:1 19646:1 19652:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19965:1 19972:1 20093:1 20139:2 20206:1 20211:1 20277:1 20282:1 20330:1 20358:1 20372:1 20410:1 20423:1 20447:1 20463:1 20490:1 20530:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20794:6 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 20947:1 21014:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21162:1 21176:1230 21178:1 21180:1 21181:1 21220:2 21243:1 21257:1 21281:1 21298:1 21301:1 21313:1 21361:3 21385:1 21393:1 21411:1 21414:1 21423:1 21426:1 21442:1 21447:1 21457:1 21459:3 21472:1 21496:1 21512:1 21540:2 21547:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21785:1 21793:1 21810:2 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:3 21917:1 21919:1 21941:1 21959:2 21993:1 21998:1 22002:1 22017:1 22045:3 22050:2 22074:1 22077:1 22091:3 22170:1 22213:1 22250:1 22252:1 22279:1 22295:1 22304:1 22336:1 22347:1 22374:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:10 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22693:1 22698:1 22721:2 22756:1 22762:4 22777:2 22793:3 22811:1 22821:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:2 22895:1 22932:1 22984:13 22993:1 23012:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23192:1 23198:1 23241:1 23246:2 23247:1 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:1 23585:1 23599:1 23603:1 23616:1 23622:1 23626:1 23659:1 23684:1 23689:1 23692:2 23702:2 23709:1 23711:10 23722:1 23725:1 23733:2 23735:1 23758:2 23772:1 23799:1 23816:1 23847:1 23848:1 23881:1 23913:1 23931:2 24015:2 24018:1 24032:1 24035:1 24038:1 24039:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:2 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24375:2 24381:1 24383:1 24395:3 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:1 24513:1 24515:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24807:1 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25067:1 25071:1 25076:1 25091:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25215:2 25228:1 25239:1 25242:1 25250:2 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25396:2 25403:1 25406:1 25418:1 25432:1 25464:1 25465:2 25472:1 25505:2 25507:1 25521:1 25522:1 25548:2 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25655:2 25703:1 25712:1 25737:1 25744:1 25756:1 25776:2 25792:3 25795:1 25803:1 25830:1 25869:1 25872:1 25882:1 25901:4 25913:1 25915:1 25920:1 25931:1 25946:1 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26377:1 26404:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26609:1 26615:1 26646:2 26648:1 26652:1 26689:1 26693:2 26701:1 26729:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:1 27429:1 27439:1 27474:1 27488:2 27550:1 27570:2 27626:2 27694:1 27705:2 27722:1 27723:1 27724:2 27725:1 27731:1 27732:1 27737:2 27748:2 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:5 27852:3 27858:1 27861:3 27891:1 27910:2 27912:2 27949:1 27953:1 27955:1 28031:1 28035:1 28045:1 28074:1 28092:1 28112:1 28142:1 28162:1 28193:1 28218:1 28270:1 28336:1 28346:6 28356:2 28416:1 28419:1 28421:1 28475:1 28521:1 28571:3 28609:4 28638:1 28706:1 28749:1 28764:1 28780:1 28795:1 28806:2 28818:1 28822:1 28836:1 28839:1 28845:2 28850:1 28851:1 28907:2 28912:1 28959:1 28965:1 28966:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29103:1 29119:1 29157:3 29183:1 29191:3 29193:2 29214:2 29249:1 29250:1 29268:1 29271:1 29281:1 29284:2 29285:1 29339:1 29360:1 29377:2 29396:1 29410:1 29422:1 29427:1 29456:1 29477:1 29478:2 29500:1 29509:1 29546:1 29556:1 29582:1 29604:1 29652:1 29663:2 29701:1 29713:1 29748:8 29749:2 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29909:1 29913:1 29918:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30074:2 30116:1 30126:1 30128:1 30140:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30574:1 30598:1 30602:1 30689:1 30691:1 30692:1 30696:2 30704:2 30706:3 30742:1 30752:1 30753:1 30754:1 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30926:1 30944:1 30949:2 31011:1 31033:1 31039:1 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31134:1 31135:1 31146:1 31155:2 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:1 31472:1 31477:1 31506:1 31532:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31916:4 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:7 32050:1 32081:1 32086:2 32099:1 32168:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32274:1 32293:1 32300:1 32303:1 32311:1 32314:2 32319:1 32327:1 32343:1 32346:1 32354:4 32355:1 32373:1 32388:1 32400:1 32438:1 32459:2 32460:1 32461:1 32463:2 32480:1 32504:1 32527:2 32532:1 32543:1 32548:3 32552:1 32560:3 32562:1 32584:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32736:1 32743:1 32817:1 32825:1 32835:1 32841:1 32861:2 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33141:1 33159:1 33184:1 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33318:1 33326:3 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:2 33479:1 33508:1 33516:2 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 258:2 262:1 286:1 306:1 311:1 341:1 344:1 369:1 372:2 393:1 412:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:3 719:2 737:1 816:5 831:1 851:1 883:1 999:3 1000:1 1022:1 1026:2 1050:1 1064:1 1066:2 1089:1 1098:3 1102:1 1111:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:3 1322:1 1364:1 1405:1 1407:1 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1612:1 1616:1 1621:1 1663:1 1668:1 1672:1 1680:1 1763:2 1800:1 1810:2 1852:1 1869:1 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2014:2 2015:2 2055:1 2058:2 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2178:1 2223:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2359:1 2370:4 2381:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:1 2523:4 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:1 2575:2 2577:1 2580:3 2584:2 2585:1 2592:1 2599:3 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:1 3250:1 3265:4 3306:2 3314:1 3318:16 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:3 3697:1 3723:6 3769:1 3783:2 3826:1 3830:2 3890:1 3891:1 3893:1 3899:1 3937:1 3947:2 3970:1 3980:1 4000:1 4034:1 4038:1 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4152:1 4153:2 4155:1 4209:1 4270:2 4276:1 4313:1 4317:1 4359:1 4395:1 4396:1 4410:1 4411:1 4413:1 4421:1 4424:1 4437:1 4441:1 4451:1 4463:1 4472:1 4505:2 4512:2 4521:1 4536:2 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4725:1 4739:1 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5011:1 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5175:1 5184:1 5196:1 5197:1 5246:1 5258:1 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:12 5528:1 5546:1 5567:1 5608:1 5619:1 5668:2 5685:2 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:2 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6283:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:1 6716:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:1 6884:2 6914:1 6919:1 6949:1 6967:1 6986:1 7020:5 7059:1 7067:1 7092:1 7141:4 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:3 7242:2 7248:1 7253:1 7254:3 7255:1 7257:1 7263:2 7266:2 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7491:1 7525:3 7583:1 7587:1 7621:2 7722:2 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7881:1 7892:2 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:2 8112:1 8150:2 8154:1 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8223:1 8247:2 8276:1 8311:1 8312:1 8347:1 8361:1 8372:2 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:2 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:25 8783:1 8786:15 8843:1 8879:1 8965:1 8978:1 8983:1 8998:2 9002:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9191:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:11 9360:1 9370:1 9392:2 9420:1 9431:1 9451:3 9518:1 9524:2 9542:2 9547:1 9560:1 9568:1 9599:1 9605:1 9624:1 9626:1 9630:1 9650:1 9653:1 9662:1 9763:1 9766:1 9768:2 9769:2 9780:2 9799:1 9823:1 9831:3 9846:2 9848:5 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9940:1 9950:1 9957:2 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:2 10122:3 10125:2 10132:1 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10530:1 10531:1 10560:1 10600:2 10660:1 10663:1 10703:1 10714:2 10719:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10836:2 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10996:1 11019:1 11038:1 11082:2 11098:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11372:1 11373:1 11385:1 11424:1 11440:1 11475:3 11486:1 11502:2 11517:1 11521:1 11536:2 11542:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:1 11754:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:3 12216:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12395:1 12439:1 12453:1 12461:6 12474:1 12496:1 12512:1 12572:2 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:2 12802:1 12805:1 12850:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:3 13008:1 13036:1 13046:1 13051:1 13064:1 13121:2 13158:2 13169:1 13214:1 13216:1 13240:1 13241:2 13268:1 13275:2 13277:1 13284:1 13286:2 13288:2 13289:1 13291:2 13292:1 13296:1 13301:1 13319:2 13326:1 13330:1 13348:1 13349:1 13379:1 13382:2 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13574:1 13629:2 13698:4 13702:1 13713:4 13728:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14096:1 14216:1 14248:2 14256:1 14270:2 14286:1 14288:1 14355:1 14366:1 14399:1 14429:1 14446:1 14474:5 14506:1 14528:1 14530:2 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14857:1 14858:1 14885:1 14924:2 14943:3 14976:1 15015:1 15027:1 15070:1 15103:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:2 15301:1 15321:1 15328:1 15356:1 15380:2 15395:1 15399:2 15410:2 15438:2 15464:1 15522:1 15525:1 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15584:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:2 15729:2 15772:1 15773:1 15774:1 15778:1 15819:1 15876:1 15890:2 15914:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16069:1 16116:1 16132:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16582:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17461:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:1 17591:3 17602:1 17605:1 17606:1 17628:3 17637:6 17646:2 17654:1 17675:1 17688:3 17731:1 17760:1 17772:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:1 18185:1 18206:1 18216:1 18224:1 18228:1 18287:1 18291:1 18298:1 18356:1 18364:2 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:4 18582:1 18590:1 18631:1 18632:1 18705:1 18711:2 18715:1 18741:2 18760:2 18762:1 18778:1 18782:1 18819:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18896:1 18901:2 18927:1 19007:1 19011:1 19017:1 19027:5 19052:14 19074:1 19075:1 19100:1 19105:2 19134:2 19155:2 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:2 19360:1 19384:1 19395:1 19440:1 19458:1 19470:3 19492:2 19512:1 19611:3 19627:1 19646:1 19652:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19965:1 19972:1 20093:1 20139:2 20206:1 20211:1 20277:1 20282:1 20330:1 20358:1 20372:1 20410:1 20423:1 20447:1 20463:1 20490:1 20530:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20794:6 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 20947:1 21014:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21162:1 21176:1253 21178:1 21180:1 21181:1 21220:2 21243:1 21257:1 21281:1 21298:1 21301:1 21313:1 21361:3 21385:1 21393:1 21411:1 21414:1 21423:1 21426:1 21442:1 21447:1 21457:1 21459:3 21472:1 21496:1 21512:1 21540:2 21547:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21785:1 21793:1 21810:2 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:3 21917:1 21919:1 21941:1 21959:2 21993:1 21998:1 22002:1 22017:1 22045:3 22050:2 22074:1 22077:1 22091:3 22170:1 22177:1 22213:1 22250:1 22252:1 22279:1 22295:1 22304:1 22327:1 22336:1 22347:1 22374:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:13 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22693:1 22695:1 22698:1 22721:2 22756:1 22762:4 22777:2 22793:3 22811:1 22821:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:2 22895:1 22932:1 22984:16 22993:1 23012:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23192:1 23198:1 23241:1 23246:2 23247:1 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:2 23585:1 23599:1 23603:1 23616:1 23622:1 23626:1 23659:1 23684:1 23689:1 23692:2 23702:2 23709:1 23711:12 23722:1 23725:1 23733:2 23735:2 23758:2 23772:1 23799:1 23816:1 23847:1 23848:1 23881:1 23913:1 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:1 24039:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:2 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24375:2 24381:1 24383:1 24395:3 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:1 24513:1 24515:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24807:1 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25067:1 25071:1 25076:1 25091:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25228:1 25239:1 25242:1 25250:2 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25396:2 25403:1 25406:1 25418:1 25432:1 25464:1 25465:2 25472:1 25505:2 25507:1 25521:1 25522:2 25548:2 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25655:2 25703:1 25712:1 25737:1 25744:1 25756:1 25776:2 25781:1 25792:3 25795:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25901:5 25913:1 25915:1 25920:1 25931:1 25946:2 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26377:1 26404:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26609:1 26615:1 26646:2 26648:1 26652:1 26689:1 26693:2 26701:1 26729:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:2 27429:1 27439:1 27474:1 27488:2 27550:1 27570:2 27626:2 27694:1 27705:2 27722:1 27723:1 27724:2 27725:1 27731:1 27732:1 27737:2 27748:2 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:5 27852:3 27858:1 27861:3 27891:1 27897:1 27910:2 27912:2 27949:1 27953:1 27955:1 28031:1 28035:1 28045:1 28074:1 28092:1 28112:1 28142:1 28162:1 28193:1 28218:1 28270:1 28336:1 28346:6 28356:2 28416:1 28419:1 28421:1 28475:1 28521:1 28571:3 28609:4 28638:1 28706:1 28749:1 28764:1 28780:1 28795:1 28806:2 28818:1 28822:1 28836:1 28839:1 28845:2 28850:1 28851:1 28907:2 28912:1 28959:1 28965:1 28966:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29103:1 29119:1 29157:3 29183:1 29191:3 29193:2 29214:2 29249:1 29250:1 29268:1 29271:1 29281:1 29284:2 29285:1 29339:1 29360:1 29377:2 29396:1 29410:1 29422:1 29427:1 29456:1 29477:1 29478:2 29500:1 29509:1 29546:1 29556:1 29582:1 29604:1 29652:1 29663:2 29701:1 29713:1 29748:8 29749:2 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29909:1 29913:1 29918:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30074:2 30116:1 30126:1 30128:1 30140:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30574:1 30598:1 30602:1 30689:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:1 30752:1 30753:1 30754:2 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30926:1 30944:1 30949:2 31011:1 31033:1 31039:1 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31134:1 31135:1 31146:1 31155:2 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:1 31472:1 31477:1 31506:1 31532:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31916:4 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:7 32050:1 32081:1 32086:2 32099:1 32168:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32274:1 32293:1 32300:1 32303:1 32311:1 32314:2 32319:1 32327:1 32343:1 32346:1 32354:4 32355:1 32373:1 32388:1 32400:1 32438:1 32459:2 32460:1 32461:1 32463:2 32480:1 32504:1 32527:2 32532:1 32543:1 32548:3 32552:1 32560:3 32562:1 32584:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32736:1 32743:1 32817:1 32825:1 32835:1 32841:1 32861:2 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33141:1 33159:1 33184:1 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33276:1 33318:1 33326:3 33350:1 33364:2 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:2 33479:1 33508:1 33516:2 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 258:2 262:1 286:1 306:1 311:1 341:1 344:1 369:1 372:2 393:1 412:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:3 719:2 737:1 816:5 831:1 851:1 883:1 999:3 1000:1 1022:1 1026:2 1050:1 1064:1 1066:2 1089:1 1098:3 1102:1 1111:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:3 1322:1 1364:1 1405:1 1407:1 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1612:1 1616:1 1621:1 1663:1 1668:1 1672:1 1680:1 1763:2 1800:1 1810:2 1852:1 1864:1 1869:2 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2014:2 2015:2 2055:1 2058:2 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2178:1 2223:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2359:1 2370:4 2381:1 2400:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:1 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:1 2575:2 2577:1 2580:3 2584:2 2585:1 2592:1 2599:3 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:1 3250:1 3265:4 3306:2 3314:1 3318:18 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:3 3697:1 3723:6 3769:1 3783:2 3826:1 3830:2 3890:1 3891:1 3893:1 3899:1 3937:1 3947:2 3970:1 3980:1 4000:1 4034:1 4038:1 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4152:1 4153:2 4155:1 4156:1 4209:1 4262:1 4270:2 4276:1 4313:1 4317:1 4359:1 4395:1 4396:1 4410:1 4411:1 4413:1 4421:1 4424:1 4437:1 4441:1 4451:1 4463:1 4472:1 4505:2 4512:2 4521:1 4536:2 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4725:1 4739:1 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5011:1 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5184:1 5196:1 5197:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:12 5528:1 5546:1 5567:1 5608:1 5619:1 5668:2 5685:2 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:2 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:1 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6283:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:1 6716:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:2 6884:2 6914:1 6919:1 6949:1 6967:1 6986:1 7020:5 7059:1 7067:1 7092:1 7141:5 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:3 7242:2 7248:1 7253:2 7254:3 7255:1 7257:1 7263:2 7266:2 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7491:1 7525:3 7583:1 7587:1 7621:2 7715:1 7722:2 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7881:1 7892:2 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:2 8112:1 8150:2 8154:1 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8223:1 8247:2 8276:1 8311:1 8312:1 8347:1 8361:1 8372:2 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:2 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:25 8783:1 8786:17 8843:1 8879:1 8965:1 8978:1 8983:1 8998:2 9002:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9191:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:11 9360:1 9370:1 9392:2 9420:1 9431:1 9451:3 9518:1 9524:2 9542:2 9547:1 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:1 9662:1 9763:1 9766:1 9768:2 9769:2 9780:2 9799:1 9823:1 9831:3 9846:2 9848:5 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9940:1 9950:1 9957:2 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:2 10122:3 10125:2 10132:1 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10530:1 10531:1 10560:1 10600:2 10660:1 10663:1 10703:1 10714:2 10719:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10836:2 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10996:1 11019:1 11038:1 11082:2 11098:1 11104:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11372:1 11373:1 11385:1 11424:1 11440:1 11475:3 11486:1 11502:2 11517:1 11521:1 11536:2 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:2 11754:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:3 12216:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12395:1 12439:1 12453:1 12461:6 12474:1 12496:1 12512:1 12572:2 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:2 12802:1 12805:1 12850:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:3 13008:1 13036:1 13046:1 13051:1 13064:1 13121:2 13158:2 13169:1 13214:1 13216:1 13240:1 13241:2 13268:1 13275:2 13277:1 13284:1 13286:2 13288:2 13289:1 13291:2 13292:1 13296:1 13301:1 13319:2 13326:1 13330:1 13348:1 13349:1 13379:1 13382:2 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13574:1 13629:2 13698:4 13702:1 13713:4 13728:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14061:1 14096:1 14216:1 14248:2 14256:1 14270:2 14286:1 14288:1 14355:1 14366:1 14399:1 14429:1 14446:1 14474:5 14506:1 14528:1 14530:2 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14857:1 14858:1 14885:1 14924:2 14943:3 14976:1 15015:1 15027:1 15041:1 15070:1 15103:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:2 15301:1 15321:1 15328:1 15356:1 15380:2 15395:1 15399:2 15410:2 15438:2 15458:1 15464:1 15522:1 15525:1 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15584:1 15586:2 15648:1 15675:1 15680:2 15691:1 15715:1 15726:2 15729:2 15772:1 15773:1 15774:1 15778:1 15819:1 15876:1 15890:2 15914:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16069:1 16116:1 16132:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16582:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17461:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:1 17591:3 17602:1 17605:1 17606:1 17628:3 17637:6 17646:2 17654:1 17675:1 17688:3 17731:1 17760:1 17772:1 17809:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:1 18185:1 18206:1 18216:1 18224:1 18228:1 18287:1 18291:1 18298:1 18356:1 18364:2 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:4 18582:1 18590:1 18631:1 18632:1 18705:1 18711:2 18715:1 18741:2 18760:2 18762:1 18778:1 18782:1 18819:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18896:1 18901:2 18927:1 19007:1 19011:1 19017:1 19027:5 19045:1 19052:16 19074:1 19075:1 19100:1 19105:2 19134:2 19155:2 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:2 19360:1 19384:1 19395:1 19440:1 19458:1 19470:3 19492:2 19512:1 19611:4 19627:1 19646:1 19652:1 19654:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19965:1 19972:1 20093:1 20139:2 20206:1 20211:1 20277:1 20282:1 20330:1 20358:1 20372:1 20410:1 20423:1 20447:1 20463:1 20490:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20794:6 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 20947:1 21014:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21162:1 21176:1281 21178:1 21180:1 21181:1 21220:2 21243:1 21257:1 21281:1 21298:1 21301:1 21313:1 21361:3 21385:1 21393:1 21411:1 21414:1 21423:1 21426:1 21442:1 21447:1 21457:1 21459:3 21472:1 21496:1 21512:1 21540:2 21547:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21785:1 21793:1 21810:2 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:3 21917:1 21919:1 21941:1 21959:2 21993:1 21998:1 22002:1 22017:1 22045:3 22050:2 22074:1 22077:1 22091:3 22170:1 22177:1 22213:1 22250:1 22252:1 22279:1 22295:1 22304:1 22327:1 22336:1 22347:1 22374:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:15 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22693:1 22695:1 22698:1 22721:2 22756:1 22762:4 22777:2 22793:3 22811:1 22821:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:2 22895:1 22932:1 22984:18 22993:1 23012:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23192:1 23198:1 23241:1 23246:2 23247:1 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:2 23585:1 23599:1 23603:1 23616:1 23622:1 23626:1 23659:1 23684:1 23689:1 23692:2 23702:2 23709:1 23711:13 23722:1 23725:1 23733:2 23735:2 23758:2 23772:1 23799:1 23816:1 23847:1 23848:1 23881:1 23913:1 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:1 24039:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:2 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24375:2 24381:1 24383:1 24395:3 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:1 24513:1 24515:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24807:1 24829:1 24830:2 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25067:1 25071:1 25076:1 25091:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:2 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25396:2 25403:1 25406:1 25418:1 25432:1 25464:1 25465:2 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:1 25744:1 25756:1 25776:2 25781:1 25792:3 25795:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25901:5 25913:1 25915:1 25920:1 25931:1 25946:2 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26377:1 26404:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26609:1 26615:1 26646:2 26648:1 26652:1 26689:1 26693:2 26701:1 26729:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27060:1 27065:1 27204:1 27267:1 27273:1 27300:1 27324:1 27337:1 27376:1 27391:1 27405:2 27429:1 27439:1 27474:1 27488:2 27550:1 27570:2 27626:2 27694:1 27705:2 27722:1 27723:1 27724:2 27725:1 27731:1 27732:1 27737:3 27748:2 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:5 27852:3 27858:1 27861:3 27891:1 27897:1 27910:2 27912:2 27949:1 27953:1 27955:1 28031:1 28035:1 28045:1 28071:1 28074:1 28092:1 28112:1 28142:1 28162:1 28193:1 28218:1 28270:1 28336:1 28346:6 28356:2 28416:1 28419:1 28421:1 28475:1 28521:1 28571:3 28609:4 28638:1 28706:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:1 28822:1 28836:1 28839:1 28845:2 28850:1 28851:1 28907:2 28912:1 28959:1 28965:1 28966:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29103:1 29119:1 29157:3 29183:1 29191:3 29193:2 29214:2 29249:1 29250:1 29268:1 29271:1 29281:1 29284:2 29285:1 29339:1 29360:1 29377:2 29396:1 29410:1 29422:1 29427:1 29456:1 29477:1 29478:2 29500:1 29509:1 29546:1 29556:1 29582:1 29604:1 29652:1 29663:2 29701:1 29713:1 29748:8 29749:2 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29909:1 29913:1 29918:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30073:1 30074:2 30116:1 30126:1 30128:1 30140:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30574:1 30598:1 30602:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:1 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30926:1 30944:1 30949:2 31011:1 31033:1 31039:1 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31134:1 31135:1 31146:1 31155:2 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:1 31472:1 31477:1 31506:1 31532:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31916:5 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:7 32050:1 32081:1 32086:2 32099:1 32168:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32266:1 32274:1 32293:1 32300:1 32303:1 32311:1 32314:2 32319:1 32327:1 32343:1 32346:1 32354:4 32355:1 32373:1 32388:1 32400:1 32438:1 32459:2 32460:1 32461:1 32463:2 32480:1 32504:1 32527:2 32532:1 32543:1 32548:3 32552:1 32560:3 32562:1 32584:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32736:1 32743:1 32779:1 32817:1 32825:1 32835:1 32841:1 32861:2 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33141:1 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33276:1 33318:1 33326:3 33350:1 33364:3 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33508:1 33516:2 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 258:2 262:1 286:1 306:1 311:1 341:1 344:1 369:1 372:2 393:1 412:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:3 719:2 737:1 816:5 831:1 851:1 883:1 999:3 1000:1 1022:1 1026:2 1050:1 1064:1 1066:2 1089:1 1098:3 1102:1 1111:1 1142:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:3 1322:1 1364:1 1405:1 1407:1 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1612:1 1616:1 1621:1 1663:1 1668:1 1672:1 1680:1 1763:2 1800:1 1810:2 1852:1 1864:1 1869:2 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2013:1 2014:2 2015:2 2055:1 2058:3 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2178:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2359:1 2370:4 2381:1 2400:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:1 2575:2 2577:1 2580:4 2584:2 2585:1 2592:1 2599:3 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:2 3250:1 3265:4 3306:2 3314:1 3318:18 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3636:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:3 3697:1 3723:6 3769:1 3783:2 3826:1 3830:2 3890:1 3891:1 3893:1 3899:1 3937:1 3947:2 3970:1 3980:1 4000:1 4034:1 4038:1 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4152:1 4153:2 4155:1 4156:1 4209:1 4262:1 4270:2 4276:1 4313:1 4317:1 4359:1 4395:1 4396:1 4410:1 4411:1 4413:1 4421:1 4424:1 4437:1 4441:1 4451:1 4463:1 4472:1 4505:2 4512:2 4521:1 4536:2 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4714:1 4725:1 4739:1 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5000:1 5011:1 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5184:1 5196:1 5197:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:14 5528:1 5546:1 5567:1 5608:1 5619:1 5668:2 5685:3 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:2 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6283:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:1 6716:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:2 6884:2 6914:1 6919:1 6949:1 6967:1 6986:1 7020:5 7059:1 7067:1 7092:1 7141:5 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:3 7242:2 7248:1 7253:2 7254:3 7255:1 7257:1 7263:2 7266:2 7279:1 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7479:1 7491:1 7525:3 7583:1 7587:1 7621:2 7715:1 7722:2 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:2 8112:1 8150:2 8154:1 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8223:1 8247:2 8276:1 8311:1 8312:1 8347:1 8361:1 8372:2 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:26 8783:1 8786:17 8843:1 8879:1 8965:1 8978:1 8983:1 8998:3 9002:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9191:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:11 9360:1 9370:1 9392:2 9420:1 9431:1 9451:3 9518:1 9524:2 9542:2 9547:1 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:1 9662:1 9730:1 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9799:1 9823:1 9831:3 9846:2 9848:5 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9940:1 9950:2 9957:2 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:2 10122:3 10125:2 10132:2 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10530:1 10531:1 10560:1 10600:2 10660:1 10663:1 10703:1 10714:2 10719:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10836:2 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10996:1 11019:1 11038:1 11082:3 11098:1 11104:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11372:1 11373:1 11385:1 11424:1 11440:1 11475:3 11480:1 11486:1 11502:2 11517:1 11521:1 11536:2 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:3 12216:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12377:1 12395:1 12439:1 12453:1 12461:6 12474:1 12496:1 12512:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12850:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:3 13008:1 13036:1 13046:1 13051:1 13064:1 13121:2 13158:2 13162:1 13169:1 13214:1 13216:1 13240:1 13241:2 13268:1 13275:2 13277:1 13284:1 13286:3 13288:2 13289:1 13291:3 13292:1 13296:2 13301:1 13319:2 13326:1 13330:1 13348:1 13349:1 13360:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13574:1 13629:3 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14061:1 14096:1 14216:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14355:1 14366:1 14399:1 14429:1 14446:1 14474:5 14506:1 14528:1 14530:2 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14857:1 14858:1 14885:1 14924:2 14943:3 14976:1 15015:1 15027:1 15041:1 15070:1 15103:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:3 15301:1 15321:1 15328:1 15356:1 15380:2 15395:1 15399:3 15410:2 15438:2 15458:1 15464:1 15522:1 15525:1 15530:1 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15584:1 15586:2 15609:1 15648:1 15675:1 15680:2 15691:1 15703:1 15715:1 15726:2 15729:2 15772:1 15773:1 15774:1 15778:1 15819:1 15876:1 15890:2 15914:1 15923:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16042:2 16069:1 16116:1 16132:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16582:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17150:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17461:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:6 17646:2 17654:1 17675:1 17688:3 17731:1 17760:1 17772:1 17809:1 17812:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:2 18185:1 18206:1 18216:1 18224:1 18228:1 18287:1 18291:1 18298:1 18356:1 18364:2 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:4 18582:1 18590:1 18631:1 18632:1 18705:1 18711:2 18715:1 18741:2 18760:2 18762:1 18778:1 18782:1 18819:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18896:1 18901:2 18923:1 18927:1 19007:1 19011:1 19017:1 19027:5 19045:1 19052:16 19074:1 19075:1 19100:1 19105:2 19134:2 19155:2 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:2 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19458:1 19470:3 19492:2 19512:1 19611:4 19627:1 19646:1 19652:1 19654:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19965:1 19972:1 19996:1 20093:1 20139:2 20206:1 20211:1 20277:1 20282:2 20330:1 20358:2 20372:1 20410:1 20423:1 20447:1 20463:1 20490:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20794:6 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 20947:1 21014:1 21030:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21162:1 21176:1370 21178:1 21180:1 21181:1 21220:2 21243:1 21257:1 21281:1 21298:1 21301:1 21313:1 21361:3 21385:1 21393:1 21411:1 21414:1 21423:1 21426:1 21442:1 21447:1 21457:1 21459:3 21472:1 21496:1 21512:1 21540:2 21547:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21785:1 21793:1 21801:1 21810:2 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:3 21917:1 21919:1 21941:1 21959:2 21993:1 21998:1 22002:1 22017:1 22045:3 22050:2 22074:1 22077:1 22091:3 22170:1 22177:1 22213:1 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22327:1 22336:1 22347:1 22374:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:15 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22693:1 22695:1 22698:1 22721:2 22756:1 22762:4 22777:2 22793:3 22811:1 22821:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:2 22895:1 22932:1 22984:18 22993:1 23012:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23192:1 23198:1 23241:1 23246:2 23247:1 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:2 23585:1 23599:1 23603:1 23616:1 23622:1 23626:1 23659:1 23684:1 23689:1 23692:2 23702:2 23709:1 23711:13 23722:1 23725:1 23733:2 23735:2 23758:2 23772:1 23799:1 23816:1 23847:1 23848:1 23881:1 23913:1 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:1 24039:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:2 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24375:2 24381:1 24383:1 24395:3 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:1 24513:1 24515:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24807:1 24829:1 24830:3 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25067:1 25071:1 25076:1 25079:1 25091:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:2 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25376:1 25387:1 25396:2 25403:1 25406:1 25418:1 25432:1 25464:1 25465:2 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:1 25744:1 25756:1 25776:2 25781:1 25792:3 25795:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25901:5 25913:1 25915:1 25920:1 25931:1 25946:2 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26377:1 26404:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26609:1 26615:1 26646:4 26648:1 26652:1 26689:1 26693:2 26701:1 26729:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27060:1 27065:1 27204:1 27267:1 27273:1 27300:2 27324:1 27337:1 27376:1 27391:1 27405:2 27429:1 27439:1 27474:1 27488:3 27550:1 27570:2 27626:2 27694:2 27705:2 27722:1 27723:1 27724:2 27725:1 27731:1 27732:1 27737:3 27748:2 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:5 27852:3 27858:1 27861:3 27891:1 27897:1 27910:2 27912:2 27949:1 27953:1 27955:1 28031:1 28035:1 28045:1 28071:1 28074:1 28092:1 28112:1 28142:1 28162:1 28193:1 28218:1 28270:1 28336:1 28346:6 28356:2 28416:1 28419:1 28421:1 28475:1 28521:1 28571:3 28609:4 28638:1 28706:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:1 28822:1 28836:1 28839:1 28845:2 28850:1 28851:1 28907:2 28912:1 28959:1 28965:1 28966:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29103:1 29119:1 29157:3 29183:1 29191:3 29193:2 29214:2 29249:1 29250:1 29268:1 29271:1 29276:1 29281:1 29284:2 29285:1 29339:1 29360:1 29377:2 29396:1 29410:1 29422:1 29427:1 29454:1 29456:1 29477:1 29478:2 29500:1 29509:1 29546:1 29556:1 29582:1 29604:1 29652:1 29663:2 29701:1 29713:1 29748:8 29749:2 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:1 30126:1 30128:1 30140:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30556:1 30574:1 30598:1 30602:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:1 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30926:1 30944:1 30949:2 30994:1 31011:1 31033:1 31039:1 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31134:1 31135:1 31146:1 31155:2 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:1 31472:1 31477:1 31506:1 31532:1 31542:1 31560:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31916:5 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:8 32050:1 32081:1 32086:3 32099:1 32168:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32266:1 32274:1 32293:1 32300:1 32303:1 32311:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32388:1 32400:1 32438:1 32459:2 32460:1 32461:1 32463:2 32480:1 32504:1 32527:2 32532:1 32543:1 32548:3 32552:1 32560:3 32562:1 32584:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32779:1 32817:1 32825:1 32835:1 32841:1 32861:2 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33141:1 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33276:1 33318:1 33326:3 33350:1 33364:3 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:2 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 258:2 262:1 286:1 306:1 311:1 341:1 344:1 369:1 372:2 393:1 412:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:3 719:2 737:1 816:5 831:1 851:1 883:1 999:3 1000:1 1022:1 1026:2 1050:1 1064:1 1066:2 1089:1 1098:3 1102:1 1111:1 1142:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:3 1322:1 1364:1 1405:1 1407:1 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1612:1 1616:1 1621:1 1663:1 1668:1 1672:1 1680:1 1763:2 1800:1 1810:2 1852:1 1864:1 1869:2 1875:1 1880:1 1881:1 1883:3 1905:2 1952:1 2013:1 2014:2 2015:2 2055:1 2058:3 2078:1 2081:1 2100:2 2131:2 2144:1 2157:2 2178:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2359:1 2370:4 2381:1 2400:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:1 2575:2 2577:1 2580:4 2584:2 2585:1 2592:1 2599:3 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:1 3147:1 3148:1 3152:2 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:2 3250:1 3265:4 3306:2 3314:1 3318:18 3333:1 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3636:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:3 3697:1 3723:6 3769:1 3783:2 3826:1 3830:2 3890:1 3891:1 3893:1 3899:1 3937:1 3947:2 3970:1 3980:1 4000:1 4034:1 4038:1 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4152:1 4153:2 4155:1 4156:1 4209:1 4262:1 4270:2 4276:1 4313:1 4317:1 4359:1 4395:1 4396:1 4410:1 4411:1 4413:1 4421:1 4424:1 4437:1 4441:1 4451:1 4463:1 4472:1 4505:2 4512:2 4521:1 4536:2 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4714:1 4725:1 4739:1 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:1 4940:1 4967:1 5000:1 5011:1 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:14 5528:1 5546:1 5567:1 5608:1 5619:1 5668:2 5685:3 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5716:2 5717:2 5745:4 5819:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6283:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:1 6716:1 6733:1 6748:1 6821:1 6822:1 6859:1 6880:2 6884:2 6914:1 6919:1 6949:1 6967:1 6986:1 7020:5 7059:1 7067:1 7092:1 7141:5 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:3 7242:2 7248:1 7253:2 7254:3 7255:1 7257:1 7263:2 7266:2 7279:1 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7525:3 7583:1 7587:1 7603:1 7621:2 7715:1 7722:2 7735:1 7748:3 7749:2 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:2 8112:1 8150:2 8154:1 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8223:1 8247:2 8276:1 8311:1 8312:1 8347:1 8361:1 8372:2 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:26 8783:1 8786:17 8843:1 8879:1 8965:1 8978:1 8983:1 8998:3 9002:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9191:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:11 9360:1 9370:1 9392:2 9420:1 9431:1 9451:3 9518:1 9524:2 9542:2 9547:1 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:1 9662:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9799:1 9823:1 9831:3 9846:2 9848:5 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9940:1 9950:2 9957:2 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:2 10122:3 10125:2 10132:2 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10530:1 10531:1 10532:1 10560:1 10600:2 10660:1 10663:1 10703:1 10714:2 10719:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10836:2 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10996:1 11019:1 11032:1 11038:1 11082:3 11098:1 11104:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11372:1 11373:1 11385:1 11424:1 11440:1 11475:3 11480:1 11486:1 11502:2 11517:1 11521:1 11536:2 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12051:3 12052:1 12121:1 12165:1 12175:3 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12377:1 12395:1 12439:1 12453:1 12461:6 12474:1 12496:1 12512:1 12541:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12850:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:4 13008:1 13036:1 13046:1 13051:1 13064:1 13121:2 13158:2 13162:1 13169:1 13214:1 13216:1 13240:1 13241:2 13268:1 13275:2 13277:1 13284:1 13286:3 13288:2 13289:1 13291:3 13292:1 13296:2 13301:1 13319:2 13326:1 13330:1 13348:1 13349:1 13360:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14061:1 14096:1 14216:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14355:1 14366:1 14399:1 14429:1 14446:1 14474:5 14506:1 14528:1 14530:2 14533:1 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14857:1 14858:1 14885:1 14924:2 14943:3 14976:1 15015:1 15027:1 15041:1 15070:1 15103:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:3 15301:1 15321:1 15328:1 15356:1 15380:2 15395:1 15399:3 15410:2 15438:2 15458:1 15464:1 15522:1 15525:1 15530:1 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15584:1 15586:2 15609:1 15648:1 15675:1 15680:2 15691:1 15703:2 15715:1 15726:2 15729:2 15772:2 15773:1 15774:1 15778:1 15819:1 15876:1 15890:2 15914:1 15923:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16042:2 16069:1 16116:1 16132:1 16136:1 16140:2 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16519:2 16521:1 16526:1 16533:1 16561:1 16582:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17150:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17461:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:6 17646:2 17654:1 17675:1 17688:3 17731:1 17760:1 17772:1 17809:1 17812:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:2 18185:1 18206:1 18216:1 18224:1 18228:1 18287:1 18291:1 18298:1 18356:1 18364:2 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:4 18582:1 18590:1 18631:1 18632:1 18640:1 18705:1 18711:2 18715:1 18741:2 18760:2 18762:1 18778:1 18782:1 18819:1 18827:2 18830:1 18833:1 18870:2 18887:1 18888:2 18891:1 18896:1 18901:2 18923:1 18927:1 19007:1 19011:1 19017:1 19027:5 19045:1 19052:16 19074:1 19075:1 19100:1 19105:2 19134:2 19155:2 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:2 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19458:1 19470:3 19492:2 19512:1 19611:4 19627:1 19646:1 19652:1 19654:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19965:1 19972:1 19996:1 20093:1 20139:2 20206:1 20211:1 20277:1 20282:2 20330:1 20358:2 20372:1 20410:1 20423:1 20447:1 20463:1 20490:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20794:6 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 20947:1 21014:1 21030:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21162:1 21176:1412 21178:1 21180:2 21181:1 21220:2 21243:1 21257:1 21281:1 21298:1 21301:1 21313:1 21361:3 21385:1 21393:1 21411:1 21414:1 21423:1 21426:1 21442:1 21447:1 21457:1 21459:3 21472:1 21496:1 21512:1 21540:2 21547:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21785:1 21793:1 21801:1 21810:2 21816:1 21818:1 21829:1 21865:1 21876:2 21903:1 21912:3 21917:1 21919:1 21941:1 21959:2 21993:1 21998:1 22002:1 22017:1 22045:3 22050:2 22074:1 22077:1 22091:3 22170:1 22177:1 22213:1 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22327:1 22336:1 22347:1 22374:1 22381:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:15 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22693:1 22695:1 22698:1 22721:2 22756:1 22762:4 22777:2 22793:3 22811:1 22821:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:2 22895:1 22932:1 22984:18 22993:1 23012:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:1 23123:1 23133:1 23164:1 23192:1 23198:1 23241:1 23246:2 23247:1 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:2 23585:1 23599:1 23603:1 23616:1 23622:1 23626:1 23659:1 23684:1 23689:1 23692:2 23702:2 23709:1 23711:13 23722:1 23725:1 23733:2 23735:2 23744:1 23758:2 23772:1 23799:1 23816:1 23847:1 23848:1 23881:1 23913:1 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:1 24039:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:2 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24375:2 24381:1 24383:1 24395:3 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:1 24513:1 24515:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24807:1 24829:1 24830:3 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:1 25067:1 25071:1 25076:1 25079:1 25091:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:2 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25376:1 25387:1 25396:2 25403:1 25406:1 25418:1 25432:1 25464:1 25465:2 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:1 25744:1 25756:1 25776:2 25781:1 25792:3 25795:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25901:5 25913:1 25915:1 25920:1 25931:1 25946:2 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26377:1 26404:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26609:1 26615:1 26646:4 26648:1 26652:1 26689:1 26693:2 26701:1 26729:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27060:1 27065:1 27204:1 27267:1 27273:1 27300:2 27324:1 27337:1 27376:1 27391:1 27405:2 27429:1 27439:1 27474:1 27488:3 27550:1 27570:2 27626:2 27694:2 27705:2 27722:1 27723:1 27724:2 27725:1 27731:1 27732:1 27737:3 27748:2 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:5 27852:3 27858:1 27861:3 27891:1 27897:1 27910:2 27912:2 27949:1 27953:1 27955:1 28031:1 28035:1 28045:1 28071:1 28074:1 28092:1 28112:1 28142:1 28162:1 28193:1 28218:1 28270:1 28336:1 28346:6 28356:2 28416:1 28419:1 28421:1 28475:1 28521:1 28571:3 28609:4 28638:1 28706:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:1 28822:1 28836:1 28839:1 28845:2 28850:1 28851:1 28907:2 28912:1 28914:1 28959:1 28965:1 28966:1 28967:2 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29103:1 29119:1 29157:3 29183:1 29191:3 29193:2 29214:2 29249:1 29250:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29360:1 29377:2 29396:1 29410:1 29422:1 29427:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29546:1 29556:1 29582:1 29604:1 29652:1 29663:2 29701:1 29713:1 29748:8 29749:2 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:1 30126:1 30128:1 30140:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30556:1 30574:1 30598:1 30602:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:1 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30926:1 30944:1 30949:2 30994:1 31011:1 31033:1 31039:1 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31134:1 31135:1 31146:1 31155:2 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:1 31472:1 31477:1 31506:1 31532:1 31542:1 31560:1 31562:1 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31916:5 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:8 32050:1 32081:1 32086:3 32099:1 32168:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32266:1 32274:1 32293:1 32300:1 32303:1 32311:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32388:1 32400:1 32438:1 32459:2 32460:1 32461:1 32463:2 32465:1 32480:1 32504:1 32527:2 32532:1 32543:1 32548:3 32552:1 32560:3 32562:1 32584:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32779:1 32817:1 32825:1 32835:1 32841:1 32861:2 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33141:1 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33276:1 33318:1 33326:3 33350:1 33364:3 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:2 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 252:1 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 393:1 412:2 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:3 719:2 737:1 816:5 831:1 851:1 883:1 909:1 924:1 999:3 1000:1 1022:1 1026:3 1050:1 1064:1 1066:2 1089:1 1098:3 1102:1 1111:1 1142:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:3 1322:1 1364:1 1405:1 1407:1 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1575:1 1585:1 1612:1 1616:1 1621:1 1663:1 1668:1 1672:1 1680:1 1763:2 1800:1 1810:2 1852:1 1864:1 1869:2 1875:1 1880:1 1881:1 1883:3 1905:2 1943:1 1952:1 2013:1 2014:2 2015:2 2055:1 2058:3 2078:1 2081:1 2100:3 2131:2 2144:1 2157:2 2178:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2359:1 2370:4 2381:1 2400:1 2423:4 2446:1 2458:2 2466:1 2470:1 2515:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:1 2575:2 2577:1 2580:4 2584:2 2585:1 2592:1 2599:3 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:2 3147:1 3148:1 3152:3 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:2 3250:1 3265:4 3306:2 3314:1 3318:18 3333:1 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3636:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:3 3697:1 3723:7 3769:1 3783:2 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3899:1 3937:1 3947:2 3970:1 3980:1 4000:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4152:1 4153:2 4155:2 4156:1 4173:1 4209:1 4244:1 4262:1 4270:2 4276:1 4313:1 4317:1 4359:1 4395:2 4396:1 4410:1 4411:1 4413:1 4421:1 4424:1 4437:1 4441:1 4451:1 4463:1 4472:1 4505:2 4512:2 4521:1 4536:2 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4714:1 4725:1 4726:1 4739:1 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:2 4940:1 4967:1 5000:1 5011:1 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:16 5528:1 5546:1 5567:1 5608:1 5619:1 5668:2 5685:3 5686:5 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5715:1 5716:2 5717:2 5719:1 5745:4 5819:1 5822:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6283:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:1 6716:1 6733:1 6748:1 6773:1 6821:1 6822:1 6859:1 6880:2 6884:2 6914:1 6919:1 6949:1 6967:1 6982:1 6986:1 7020:5 7059:1 7067:1 7092:1 7141:5 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:3 7242:2 7248:1 7253:2 7254:3 7255:1 7257:1 7263:2 7266:2 7279:1 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7525:3 7583:1 7587:1 7603:1 7621:2 7715:1 7722:2 7735:1 7748:4 7749:2 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:2 8112:1 8150:2 8154:1 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8223:1 8247:2 8276:1 8311:1 8312:1 8347:1 8361:1 8372:2 8374:1 8378:1 8409:1 8414:1 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8649:1 8650:1 8669:2 8673:1 8692:3 8693:1 8704:1 8716:1 8759:26 8783:1 8786:17 8843:1 8857:1 8879:1 8880:1 8965:1 8978:1 8983:1 8989:1 8998:3 9002:1 9013:1 9022:1 9080:1 9125:1 9136:1 9145:1 9166:1 9191:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:11 9360:2 9370:1 9392:2 9420:1 9431:1 9451:3 9485:1 9518:1 9524:2 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:1 9662:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9799:1 9823:1 9831:3 9846:2 9848:5 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9940:1 9950:2 9957:2 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:2 10122:3 10125:2 10132:2 10145:1 10220:1 10245:2 10270:1 10277:2 10294:1 10339:1 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:1 10532:1 10560:1 10600:2 10660:1 10663:1 10703:1 10714:2 10719:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10836:2 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10996:1 11019:1 11032:1 11038:1 11082:3 11098:1 11104:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:1 11424:1 11432:1 11440:1 11475:3 11480:1 11486:1 11502:2 11517:1 11521:1 11536:2 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12025:1 12051:3 12052:1 12121:1 12165:1 12175:3 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12377:1 12395:1 12399:1 12439:1 12453:1 12461:6 12474:1 12496:1 12512:1 12541:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12850:1 12853:1 12867:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:4 13008:1 13036:1 13046:1 13051:1 13064:1 13066:1 13121:2 13158:2 13162:1 13169:1 13214:1 13216:1 13240:1 13241:2 13266:1 13268:1 13274:1 13275:2 13277:1 13284:1 13286:3 13288:2 13289:1 13291:3 13292:1 13296:2 13301:1 13319:3 13326:1 13330:1 13347:1 13348:1 13349:1 13360:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13956:1 13970:2 14060:1 14061:1 14096:1 14128:1 14216:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14355:1 14360:1 14366:1 14399:1 14429:1 14446:1 14474:5 14506:1 14528:2 14530:2 14533:1 14539:1 14540:1 14542:1 14555:1 14582:1 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14787:1 14816:1 14857:1 14858:1 14885:1 14924:2 14943:3 14976:1 15015:1 15027:1 15041:1 15070:1 15103:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:3 15301:1 15321:1 15328:1 15356:1 15380:2 15395:1 15399:3 15410:2 15438:2 15458:1 15464:1 15522:1 15525:1 15530:1 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15648:1 15675:1 15680:2 15691:1 15703:2 15715:1 15726:2 15729:2 15772:2 15773:1 15774:1 15778:1 15793:1 15819:1 15831:1 15876:1 15890:2 15914:1 15923:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16042:2 16069:1 16116:1 16132:1 16136:1 16140:2 16148:1 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16333:1 16338:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16519:3 16521:1 16526:1 16533:1 16561:1 16582:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17150:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:1 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17461:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:6 17646:2 17654:1 17675:1 17688:3 17731:1 17760:1 17772:1 17809:1 17812:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:3 18185:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:1 18291:1 18298:1 18356:1 18364:2 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:4 18582:1 18590:1 18631:1 18632:1 18640:1 18705:1 18711:2 18715:1 18741:2 18760:2 18762:1 18778:1 18782:1 18819:1 18827:2 18830:1 18833:1 18870:2 18879:1 18887:1 18888:2 18891:1 18896:1 18901:2 18923:1 18927:1 19007:1 19011:1 19017:1 19027:5 19045:1 19052:16 19074:1 19075:1 19100:1 19105:2 19134:2 19155:2 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19341:1 19347:2 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19458:1 19470:3 19492:2 19512:1 19611:4 19627:1 19646:1 19652:1 19654:1 19722:1 19737:2 19745:1 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19965:1 19972:1 19996:1 20093:1 20139:2 20177:1 20203:1 20206:1 20211:1 20277:1 20282:2 20330:1 20358:2 20372:1 20410:1 20423:1 20447:1 20463:1 20490:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20783:1 20794:7 20811:1 20875:1 20876:1 20918:7 20928:1 20932:2 20947:1 21014:1 21030:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21162:1 21176:1474 21178:1 21180:2 21181:1 21220:2 21243:1 21257:1 21281:1 21298:1 21301:1 21313:1 21361:3 21385:1 21393:1 21411:1 21414:1 21423:1 21426:1 21442:1 21447:1 21457:1 21459:3 21472:1 21496:1 21512:1 21540:2 21547:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21785:1 21793:1 21801:1 21810:2 21816:1 21818:1 21829:1 21857:1 21865:1 21876:2 21903:1 21912:3 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:3 22050:2 22058:1 22074:1 22077:1 22091:3 22170:1 22177:1 22213:2 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:15 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22693:1 22695:1 22698:1 22721:2 22756:1 22762:4 22777:2 22793:3 22811:1 22821:1 22827:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:2 22895:1 22932:1 22984:18 22993:1 23012:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:2 23123:1 23133:1 23164:1 23192:1 23198:1 23241:1 23246:2 23247:1 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23659:1 23684:1 23689:1 23692:2 23702:2 23709:1 23711:13 23722:1 23725:1 23733:2 23735:2 23744:1 23758:2 23772:1 23799:1 23816:1 23847:1 23848:1 23881:1 23913:1 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:1 24039:1 24043:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:2 24231:3 24261:1 24265:1 24298:1 24317:1 24367:1 24368:1 24375:2 24381:1 24383:1 24395:3 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:1 24513:1 24515:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:2 24807:1 24829:1 24830:3 24834:1 24840:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:2 25067:1 25071:2 25076:1 25079:1 25091:1 25112:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:3 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25376:1 25387:1 25396:2 25403:1 25406:1 25418:1 25432:1 25464:1 25465:2 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:1 25744:1 25756:1 25776:2 25781:1 25792:3 25795:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25901:5 25913:1 25915:1 25920:1 25931:1 25946:2 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26377:2 26399:1 26404:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26609:1 26615:1 26646:4 26648:1 26652:1 26689:1 26693:2 26701:1 26729:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27060:1 27065:1 27204:1 27267:1 27273:1 27300:2 27324:1 27337:1 27376:1 27391:1 27405:2 27429:1 27439:1 27474:1 27488:3 27550:1 27570:2 27574:1 27626:2 27663:1 27694:2 27703:1 27705:2 27721:1 27722:1 27723:1 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:6 27852:3 27858:1 27861:3 27891:1 27897:1 27910:2 27912:2 27949:1 27953:1 27955:1 27993:1 28031:1 28035:1 28045:1 28071:1 28074:1 28092:1 28112:1 28142:1 28162:1 28193:1 28218:1 28270:1 28336:1 28346:7 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28521:1 28571:3 28609:4 28638:1 28706:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:1 28822:1 28836:1 28839:1 28845:2 28850:1 28851:1 28907:2 28912:1 28914:1 28959:1 28965:1 28966:1 28967:3 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29076:1 29103:1 29119:1 29157:3 29183:1 29191:3 29193:3 29214:2 29249:1 29250:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29360:1 29377:2 29396:1 29410:1 29422:1 29427:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29546:1 29556:1 29576:1 29582:1 29604:1 29652:1 29663:2 29701:1 29713:1 29748:8 29749:2 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:1 30126:1 30128:1 30140:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30541:1 30556:1 30574:1 30598:1 30602:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:1 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:1 30872:1 30873:1 30888:1 30926:1 30944:1 30949:2 30994:1 30997:1 31011:1 31033:1 31039:1 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31134:1 31135:1 31146:1 31155:2 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:2 31472:1 31477:1 31506:1 31532:1 31542:1 31560:2 31562:2 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31916:5 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:8 32050:1 32081:1 32086:3 32099:1 32168:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32382:1 32388:1 32400:1 32414:1 32438:1 32459:2 32460:1 32461:1 32463:2 32465:1 32480:1 32504:1 32527:2 32532:1 32543:1 32548:3 32552:1 32560:3 32562:1 32584:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32779:1 32817:1 32825:1 32835:1 32841:1 32861:2 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33141:1 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33276:1 33318:1 33326:3 33350:1 33364:3 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:2 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 393:1 412:2 423:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:3 719:2 737:1 816:5 831:1 851:1 883:1 885:1 909:1 924:1 999:3 1000:1 1022:1 1026:3 1050:1 1064:1 1066:3 1089:1 1098:3 1102:1 1111:1 1142:1 1144:1 1153:1 1179:1 1185:1 1207:1 1287:1 1302:2 1319:3 1322:1 1364:1 1405:1 1407:1 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1575:1 1585:1 1597:1 1612:1 1616:1 1621:1 1663:1 1668:1 1672:3 1680:1 1763:2 1800:1 1810:2 1852:1 1864:1 1869:2 1875:1 1880:1 1881:2 1883:3 1905:2 1917:1 1943:1 1952:1 2013:1 2014:2 2015:2 2055:1 2058:3 2078:1 2081:1 2100:3 2131:2 2144:1 2157:2 2178:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2359:1 2370:4 2381:1 2400:1 2423:5 2446:1 2458:2 2466:1 2470:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:1 2575:2 2577:1 2580:4 2584:2 2585:1 2592:1 2599:3 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2888:1 2904:1 2911:1 2938:1 2988:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:2 3250:1 3265:4 3306:2 3314:1 3318:18 3333:1 3351:1 3385:1 3387:1 3400:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3636:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:4 3697:1 3723:8 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3899:1 3937:1 3947:2 3970:1 3980:1 4000:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:1 4077:1 4081:1 4084:1 4100:1 4145:1 4152:1 4153:2 4155:2 4156:1 4173:1 4209:1 4244:1 4262:1 4270:2 4276:1 4313:1 4317:1 4359:1 4395:2 4396:1 4410:1 4411:1 4413:1 4421:1 4424:1 4437:1 4441:1 4451:1 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4629:1 4643:4 4648:1 4705:2 4714:1 4725:1 4726:1 4739:2 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:2 4940:1 4967:1 4968:1 5000:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:17 5528:1 5546:1 5567:1 5571:1 5608:1 5619:1 5668:2 5685:3 5686:6 5689:1 5694:1 5695:2 5700:1 5702:1 5708:1 5715:1 5716:2 5717:2 5719:1 5745:4 5819:1 5822:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6283:1 6292:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6716:1 6733:1 6739:1 6748:1 6773:1 6821:1 6822:1 6859:1 6880:2 6884:2 6914:1 6919:1 6949:1 6967:1 6982:1 6986:1 6998:1 7020:5 7059:1 7067:1 7092:1 7141:5 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:4 7242:2 7248:1 7249:1 7253:2 7254:3 7255:1 7257:1 7263:2 7266:2 7279:1 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7525:3 7583:1 7587:1 7603:1 7621:2 7715:1 7722:3 7735:1 7748:4 7749:2 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:2 8112:1 8150:2 8154:1 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8347:1 8361:1 8372:2 8374:1 8378:1 8409:1 8414:2 8426:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:3 8693:1 8704:1 8716:1 8759:26 8783:1 8786:17 8843:1 8857:1 8879:1 8880:2 8965:1 8978:1 8983:1 8989:1 8998:3 9002:1 9013:1 9022:1 9028:1 9080:1 9125:1 9136:1 9145:1 9166:1 9191:1 9222:1 9224:1 9266:2 9287:1 9301:1 9305:1 9326:12 9360:2 9370:1 9392:3 9420:1 9431:1 9451:3 9485:1 9504:1 9518:1 9524:2 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:1 9662:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9799:1 9823:1 9831:3 9846:3 9848:5 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:2 10122:3 10125:2 10132:2 10145:1 10171:1 10220:1 10245:2 10270:1 10277:2 10294:1 10339:2 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:1 10532:1 10560:1 10600:2 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10836:2 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10996:1 11019:1 11032:1 11038:1 11082:3 11098:1 11104:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:1 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:1 11424:1 11432:1 11440:1 11475:3 11480:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12025:1 12051:3 12052:1 12121:1 12165:1 12175:3 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12377:1 12395:1 12397:1 12399:1 12439:1 12453:1 12461:7 12474:1 12496:1 12512:1 12541:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12850:1 12853:1 12867:1 12877:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:4 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:1 13121:2 13123:1 13158:2 13162:1 13169:1 13214:2 13216:1 13240:1 13241:2 13266:2 13268:1 13274:1 13275:2 13277:1 13284:1 13286:3 13288:2 13289:1 13291:3 13292:1 13296:2 13301:1 13319:3 13326:1 13330:1 13347:1 13348:1 13349:1 13360:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13923:1 13956:1 13970:2 14060:1 14061:1 14096:1 14128:1 14136:1 14210:1 14216:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14355:1 14360:1 14366:1 14399:1 14429:1 14446:1 14474:5 14506:1 14514:1 14528:2 14530:2 14533:1 14539:1 14540:1 14542:1 14555:1 14582:2 14587:1 14591:1 14603:1 14606:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:1 14857:1 14858:1 14885:1 14924:2 14943:3 14976:1 15015:1 15027:1 15041:1 15070:1 15103:1 15110:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:3 15301:1 15321:1 15328:1 15356:1 15380:2 15395:1 15399:3 15410:2 15438:2 15458:1 15464:1 15522:1 15525:1 15530:1 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15648:1 15675:2 15680:3 15691:1 15703:2 15715:1 15726:2 15729:2 15772:2 15773:1 15774:1 15778:1 15793:1 15819:1 15831:1 15876:1 15890:2 15914:1 15923:1 15925:1 15942:1 15947:1 15963:2 15999:1 16004:1 16028:1 16042:2 16069:1 16116:1 16132:1 16136:1 16140:2 16148:1 16149:1 16156:1 16163:1 16188:1 16211:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16332:1 16333:1 16338:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16515:1 16519:3 16521:1 16526:1 16533:1 16561:1 16582:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16702:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17111:1 17150:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:1 17319:1 17343:2 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17461:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:6 17646:2 17654:1 17675:1 17688:3 17731:1 17760:1 17772:1 17809:1 17812:1 17815:1 17816:2 17828:1 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:3 18185:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:1 18291:1 18298:1 18356:1 18364:2 18371:1 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:2 18484:1 18487:1 18490:4 18495:1 18582:1 18590:1 18631:1 18632:1 18640:1 18705:1 18711:2 18715:1 18741:3 18760:2 18762:1 18778:2 18782:1 18819:1 18827:2 18830:2 18833:1 18870:2 18879:1 18887:1 18888:2 18891:1 18896:1 18901:2 18923:1 18927:1 19007:1 19011:1 19017:1 19027:5 19045:1 19052:16 19074:1 19075:1 19100:1 19105:2 19134:2 19155:2 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19441:1 19458:1 19470:3 19492:2 19512:1 19611:4 19627:1 19646:1 19652:2 19654:1 19722:1 19737:2 19743:1 19745:1 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19816:1 19832:1 19838:1 19843:1 19895:1 19965:1 19972:1 19982:1 19996:1 20093:1 20095:1 20139:2 20177:1 20203:1 20206:1 20211:1 20213:1 20277:1 20282:2 20330:1 20358:2 20372:1 20410:1 20423:2 20447:1 20463:1 20490:1 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20783:1 20794:7 20811:1 20875:1 20876:1 20918:8 20928:1 20932:3 20947:1 21014:1 21030:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21162:1 21176:1520 21178:1 21180:2 21181:1 21220:2 21243:1 21257:1 21281:1 21298:1 21301:1 21313:1 21361:3 21385:1 21393:2 21411:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:1 21540:2 21547:1 21549:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21734:1 21785:1 21793:1 21801:1 21810:2 21816:1 21818:1 21829:1 21857:1 21865:1 21876:2 21903:1 21912:3 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:5 22050:3 22058:1 22074:2 22077:1 22091:3 22162:1 22170:1 22173:1 22177:1 22213:2 22224:1 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:1 22461:1 22478:15 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22693:1 22695:1 22698:1 22721:2 22756:1 22762:4 22769:1 22777:2 22793:3 22811:1 22821:1 22827:1 22837:1 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:2 22895:1 22932:1 22984:18 22993:1 23012:1 23014:1 23018:1 23029:1 23042:1 23061:1 23064:1 23098:2 23123:1 23133:1 23164:1 23192:1 23198:1 23240:1 23241:2 23246:2 23247:2 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23659:1 23684:1 23689:1 23692:2 23702:2 23709:1 23711:13 23722:1 23725:1 23733:2 23735:3 23744:1 23758:2 23772:1 23799:1 23816:1 23847:1 23848:1 23881:1 23913:2 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:3 24231:4 24261:1 24265:1 24298:1 24317:1 24338:1 24367:1 24368:1 24375:2 24381:1 24383:1 24395:5 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:1 24513:1 24515:1 24541:1 24559:1 24567:1 24589:2 24599:1 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:1 24795:1 24805:1 24806:3 24807:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:2 25067:1 25071:2 25076:1 25079:1 25089:1 25091:1 25112:1 25125:1 25127:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:4 25272:1 25292:1 25293:1 25314:1 25317:1 25321:1 25335:1 25337:1 25348:1 25376:1 25387:1 25396:2 25403:1 25406:1 25418:1 25432:1 25447:1 25464:1 25465:2 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:1 25744:1 25756:1 25776:2 25781:1 25792:3 25795:1 25796:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25901:5 25913:1 25915:1 25920:1 25931:1 25946:2 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26222:1 26235:1 26242:1 26249:1 26268:1 26316:2 26377:2 26399:1 26404:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:1 26542:1 26551:3 26555:1 26561:1 26609:1 26615:1 26646:4 26648:1 26652:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:2 26976:1 27022:1 27060:1 27065:1 27157:1 27204:1 27267:1 27273:1 27300:2 27324:1 27337:1 27345:1 27376:1 27391:1 27405:2 27429:1 27439:2 27474:1 27488:3 27550:1 27570:2 27574:1 27626:2 27663:1 27694:2 27703:1 27705:2 27721:1 27722:1 27723:1 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27781:3 27828:1 27842:1 27844:1 27851:7 27852:3 27858:1 27861:3 27891:1 27897:1 27910:2 27912:2 27949:1 27953:1 27955:1 27993:1 28031:1 28035:1 28045:1 28071:1 28074:1 28092:1 28112:1 28142:1 28162:1 28193:1 28218:1 28270:1 28336:1 28346:8 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28496:1 28521:1 28571:4 28609:4 28638:1 28706:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:1 28822:1 28836:1 28839:1 28845:2 28850:1 28851:1 28907:2 28912:1 28914:1 28959:1 28965:1 28966:1 28967:3 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29076:1 29103:1 29119:1 29157:3 29183:1 29191:3 29193:4 29214:2 29249:1 29250:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29576:1 29582:1 29604:1 29652:1 29663:2 29701:1 29713:1 29748:9 29749:2 29761:1 29787:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29892:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:1 30126:1 30128:1 30140:1 30169:1 30171:1 30209:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30541:2 30556:1 30574:1 30598:1 30602:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:2 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:2 30872:1 30873:1 30888:1 30926:1 30944:2 30949:2 30994:1 30997:1 31011:1 31033:1 31039:2 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31134:1 31135:1 31146:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31206:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:2 31472:1 31477:1 31506:1 31532:1 31542:1 31560:2 31562:2 31565:1 31575:1 31577:1 31638:1 31705:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:1 31916:5 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:8 32050:1 32081:1 32086:3 32099:1 32168:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32382:1 32388:1 32400:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32552:1 32560:3 32562:1 32584:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32779:1 32817:1 32825:1 32835:1 32841:1 32861:2 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33141:2 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33276:1 33318:1 33326:3 33350:1 33364:3 33379:1 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:2 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 393:1 412:2 423:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:3 719:3 737:1 816:5 831:1 851:1 883:1 885:1 909:1 924:1 999:4 1000:1 1022:1 1026:3 1050:1 1064:1 1066:3 1089:1 1093:1 1098:3 1102:1 1111:1 1142:2 1144:1 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1364:1 1405:1 1407:1 1421:2 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:1 1672:3 1680:1 1727:1 1763:2 1800:1 1810:2 1852:1 1854:1 1864:1 1869:2 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 2013:1 2014:2 2015:2 2055:1 2058:3 2078:1 2081:1 2100:4 2131:2 2144:1 2157:2 2159:1 2178:1 2185:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2359:1 2370:4 2381:1 2400:1 2423:5 2446:1 2458:2 2466:1 2470:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:1 2575:2 2577:1 2580:4 2584:2 2585:1 2592:1 2599:3 2604:1 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2888:1 2904:1 2911:1 2938:1 2988:1 2995:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:2 3250:1 3265:4 3306:2 3314:1 3318:18 3333:1 3351:1 3355:1 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3636:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:4 3697:1 3723:8 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4138:1 4145:1 4152:1 4153:2 4155:2 4156:1 4173:1 4209:1 4227:1 4244:1 4262:1 4270:2 4276:1 4313:1 4317:1 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4629:1 4643:4 4648:2 4705:2 4714:1 4725:1 4726:1 4739:2 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:2 4940:1 4967:1 4968:1 5000:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:21 5528:1 5546:1 5567:1 5571:1 5608:1 5619:1 5668:2 5685:3 5686:6 5689:2 5694:1 5695:2 5700:1 5702:2 5708:1 5715:1 5716:2 5717:2 5719:1 5745:4 5784:1 5819:1 5822:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6163:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6716:1 6733:1 6739:1 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6982:1 6986:1 6998:1 7020:5 7043:1 7059:1 7067:1 7092:1 7141:5 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:4 7242:2 7248:1 7249:1 7253:2 7254:3 7255:1 7257:1 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7525:3 7583:1 7587:1 7603:1 7621:2 7715:2 7722:3 7735:1 7748:4 7749:2 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:2 8112:1 8150:2 8154:2 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8347:1 8361:1 8372:2 8374:1 8378:1 8409:1 8414:2 8426:1 8430:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:3 8693:1 8704:1 8716:1 8759:27 8783:1 8786:17 8816:1 8843:1 8857:1 8879:1 8880:2 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9022:1 9028:1 9059:1 9080:1 9125:1 9136:1 9145:1 9166:1 9191:1 9196:1 9222:1 9224:2 9266:2 9287:1 9301:1 9305:1 9326:13 9360:2 9370:1 9392:3 9420:1 9431:1 9451:3 9485:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:1 9662:3 9680:2 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9799:1 9823:2 9831:3 9846:3 9848:6 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:2 10122:3 10125:2 10132:2 10145:1 10171:1 10220:1 10245:2 10270:1 10277:2 10294:1 10309:1 10339:2 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:1 10532:1 10560:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10996:1 11019:1 11032:1 11038:1 11054:1 11082:3 11098:1 11104:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:1 11424:1 11432:1 11440:1 11475:3 11480:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12025:1 12033:1 12051:3 12052:1 12062:1 12101:1 12121:1 12165:1 12175:3 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12377:1 12395:1 12397:1 12399:1 12439:2 12453:1 12461:7 12474:1 12496:1 12512:1 12541:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12651:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12850:1 12853:1 12867:1 12877:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:4 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13121:2 13123:1 13158:2 13162:1 13169:1 13214:2 13216:1 13240:1 13241:2 13252:1 13266:2 13268:1 13273:1 13274:1 13275:2 13277:1 13284:2 13286:4 13288:2 13289:1 13291:3 13292:1 13296:3 13301:1 13319:3 13326:1 13330:1 13347:1 13348:1 13349:1 13360:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13923:1 13956:1 13970:2 14012:1 14060:1 14061:1 14096:1 14128:1 14136:1 14210:1 14216:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14355:1 14360:1 14366:1 14399:2 14429:1 14446:1 14474:5 14496:1 14506:1 14514:1 14528:2 14530:2 14533:1 14539:1 14540:1 14542:1 14555:1 14582:2 14587:1 14591:1 14603:1 14606:1 14613:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:1 14857:1 14858:1 14885:1 14924:2 14929:1 14943:4 14976:1 15015:1 15027:1 15041:1 15070:1 15103:1 15110:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:3 15301:1 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:3 15410:2 15438:2 15458:1 15464:1 15522:1 15525:1 15530:1 15548:1 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15648:1 15675:2 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15772:2 15773:1 15774:1 15778:1 15793:1 15819:1 15831:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15947:1 15963:2 15999:1 16004:1 16012:2 16028:2 16042:2 16069:1 16116:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16211:1 16231:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16332:1 16333:1 16338:1 16353:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16515:1 16519:3 16521:1 16526:1 16533:1 16561:1 16572:1 16582:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16702:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:1 16992:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17111:1 17150:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17319:1 17343:2 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17461:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:7 17646:2 17654:1 17675:1 17688:4 17731:1 17760:1 17772:1 17809:1 17812:1 17815:1 17816:2 17828:2 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:3 18185:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:1 18291:1 18298:1 18356:1 18364:3 18371:2 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:3 18484:1 18487:1 18490:4 18495:1 18582:1 18590:1 18631:1 18632:1 18634:1 18640:1 18643:1 18705:1 18711:2 18715:1 18741:3 18760:2 18762:1 18778:2 18782:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:2 18891:1 18896:2 18901:2 18923:1 18927:1 19007:1 19011:1 19017:1 19027:5 19045:1 19046:1 19052:16 19074:1 19075:1 19100:1 19105:2 19134:2 19155:2 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19441:1 19458:1 19470:3 19492:2 19512:1 19591:1 19611:4 19627:1 19646:1 19652:2 19654:1 19722:2 19737:2 19743:1 19745:1 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19816:1 19832:1 19837:1 19838:1 19843:1 19895:1 19965:1 19972:1 19982:1 19996:1 20093:1 20095:1 20139:2 20177:1 20203:1 20206:1 20211:1 20213:2 20277:1 20282:2 20320:1 20330:1 20358:2 20372:1 20410:1 20423:2 20447:1 20463:1 20490:2 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20619:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20783:1 20794:7 20811:1 20875:1 20876:1 20918:8 20928:1 20932:3 20947:1 21014:1 21030:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21162:1 21176:1611 21178:1 21180:2 21181:1 21220:2 21243:2 21257:1 21281:1 21298:1 21301:1 21313:1 21361:3 21385:1 21393:2 21411:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:2 21547:1 21549:1 21591:2 21641:1 21648:1 21652:1 21668:1 21680:1 21689:1 21713:1 21714:1 21726:1 21734:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:1 21818:1 21829:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:5 22050:3 22058:1 22074:2 22077:1 22091:3 22162:1 22170:1 22173:1 22177:1 22213:2 22224:1 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:2 22461:1 22478:15 22493:1 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22721:2 22756:1 22762:4 22769:1 22777:2 22793:3 22811:1 22821:1 22827:1 22837:2 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:2 22895:1 22932:1 22984:18 22993:1 23001:1 23012:1 23014:1 23018:1 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23133:1 23164:1 23192:1 23198:1 23214:1 23240:1 23241:2 23246:2 23247:2 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23659:1 23679:1 23684:1 23689:1 23692:2 23702:2 23709:1 23711:13 23722:1 23725:1 23733:2 23735:3 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:1 23881:1 23913:2 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:3 24231:4 24261:1 24265:1 24298:1 24317:1 24338:1 24367:1 24368:1 24375:2 24381:1 24383:1 24395:5 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:2 24513:1 24515:1 24541:1 24545:1 24550:1 24559:1 24567:1 24589:2 24599:2 24633:2 24634:1 24644:1 24655:2 24673:1 24684:1 24693:1 24712:1 24743:1 24794:2 24795:1 24805:1 24806:3 24807:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:2 25067:1 25071:2 25076:1 25079:1 25089:1 25091:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:4 25272:1 25292:1 25293:1 25297:1 25314:2 25317:1 25321:1 25335:1 25337:1 25347:1 25348:1 25376:1 25387:3 25396:2 25403:1 25406:1 25418:1 25427:1 25432:1 25447:1 25464:1 25465:3 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:1 25744:1 25756:1 25776:2 25781:1 25792:3 25795:1 25796:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25901:5 25913:1 25915:1 25920:1 25931:1 25946:3 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26213:1 26222:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26377:2 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:2 26542:1 26551:3 26555:1 26561:1 26609:1 26615:1 26639:1 26646:4 26648:1 26652:1 26653:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27022:1 27025:1 27054:1 27060:1 27065:1 27157:1 27204:1 27267:1 27273:1 27300:2 27324:1 27337:1 27345:2 27376:1 27391:1 27405:2 27429:1 27439:2 27474:1 27488:3 27515:1 27550:1 27570:2 27574:1 27626:2 27663:1 27694:2 27703:1 27705:2 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:3 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27910:2 27912:2 27949:1 27953:1 27955:1 27993:1 28031:1 28035:1 28045:1 28071:1 28074:1 28092:1 28098:1 28112:1 28142:1 28162:1 28193:1 28218:1 28234:1 28270:1 28290:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28496:1 28521:1 28571:4 28609:4 28638:1 28706:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28836:1 28839:1 28845:2 28850:2 28851:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:1 28967:3 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29076:2 29103:1 29119:1 29157:3 29183:1 29191:3 29193:4 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29567:1 29576:2 29582:1 29604:1 29652:1 29654:1 29663:3 29701:1 29713:1 29748:9 29749:2 29761:1 29787:1 29799:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29892:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:1 30126:1 30128:1 30140:1 30169:1 30171:1 30209:1 30218:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30541:3 30556:1 30574:1 30598:1 30602:1 30625:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:2 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:2 30872:1 30873:1 30882:1 30888:1 30926:1 30944:2 30949:2 30994:1 30997:1 31011:1 31033:1 31039:2 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31131:1 31134:1 31135:1 31146:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31206:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:2 31453:1 31472:1 31477:1 31506:1 31532:1 31542:2 31560:2 31562:2 31565:1 31575:1 31577:1 31622:1 31638:1 31705:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31916:5 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:8 32050:1 32081:1 32086:3 32099:2 32106:1 32168:1 32175:1 32206:3 32219:1 32246:1 32248:4 32256:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32382:1 32388:1 32400:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32552:1 32560:3 32562:1 32584:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32779:1 32817:1 32825:1 32835:1 32841:1 32861:2 32863:1 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33140:1 33141:2 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33269:1 33275:1 33276:1 33318:1 33326:3 33350:1 33364:3 33379:2 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:2 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 393:1 412:2 423:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 662:1 670:1 671:1 676:1 680:3 719:4 737:1 816:5 831:1 851:1 883:1 885:1 909:1 924:1 999:4 1000:1 1022:1 1026:3 1050:1 1064:1 1066:3 1089:1 1093:1 1098:3 1102:1 1111:1 1142:2 1144:3 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1364:1 1405:1 1407:1 1421:2 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:1 1672:3 1680:1 1727:1 1763:2 1800:1 1810:2 1852:1 1854:1 1864:3 1869:2 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 2013:1 2014:2 2015:2 2055:1 2058:3 2078:1 2081:1 2100:4 2131:2 2144:1 2157:2 2159:1 2178:1 2185:1 2208:2 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2446:1 2458:2 2466:1 2470:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2584:2 2585:1 2592:1 2599:4 2604:1 2607:2 2609:1 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2863:1 2877:1 2888:1 2904:1 2911:1 2938:1 2988:1 2995:1 3034:1 3035:1 3036:1 3045:1 3061:1 3077:2 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:2 3250:1 3265:4 3306:2 3314:1 3318:18 3333:1 3351:1 3355:1 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3636:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:4 3691:1 3697:1 3723:8 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4138:1 4145:1 4152:1 4153:2 4155:2 4156:1 4173:1 4209:1 4227:1 4244:1 4262:3 4270:2 4276:1 4313:1 4317:1 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4629:1 4643:4 4648:2 4705:2 4714:1 4725:1 4726:1 4739:2 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:2 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:21 5528:1 5546:1 5567:1 5571:1 5608:1 5619:1 5668:2 5685:3 5686:6 5689:2 5694:1 5695:2 5700:1 5702:2 5708:1 5715:1 5716:2 5717:2 5719:1 5745:4 5784:1 5811:2 5819:1 5822:1 5861:1 5865:1 5881:1 5919:1 5926:4 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6163:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6716:1 6733:1 6739:1 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6982:1 6986:1 6998:1 7020:5 7043:1 7059:1 7067:1 7092:1 7141:7 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:4 7242:2 7248:1 7249:1 7253:2 7254:3 7255:1 7257:1 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7525:3 7583:1 7587:1 7603:1 7621:2 7715:2 7722:3 7735:1 7748:4 7749:3 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8110:2 8112:1 8150:2 8154:2 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8347:1 8361:1 8372:2 8374:1 8378:1 8409:1 8414:2 8426:1 8430:1 8443:1 8468:3 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:3 8693:3 8704:1 8716:3 8759:28 8783:1 8786:17 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9022:1 9028:1 9059:1 9080:1 9125:1 9136:1 9145:1 9166:1 9191:1 9196:1 9222:1 9224:2 9266:2 9287:1 9301:1 9305:1 9326:15 9360:2 9370:1 9392:3 9420:1 9431:1 9451:3 9485:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:1 9662:3 9680:2 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9799:1 9823:2 9831:3 9846:3 9848:6 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9976:1 9998:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10102:2 10122:3 10125:2 10132:2 10145:1 10171:1 10220:1 10245:2 10270:1 10277:2 10294:1 10309:1 10339:2 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:1 10532:1 10560:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10996:1 11019:1 11032:1 11038:1 11054:1 11082:3 11098:1 11104:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:1 11424:1 11432:1 11440:1 11475:3 11480:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:1 11980:1 12008:1 12025:1 12033:1 12051:3 12052:1 12062:1 12101:1 12121:1 12165:1 12175:3 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12377:1 12395:1 12397:1 12399:1 12439:2 12453:1 12461:7 12474:1 12496:1 12512:1 12541:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12651:1 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12850:1 12853:1 12867:1 12877:1 12897:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:4 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13121:2 13123:1 13158:2 13162:1 13169:1 13214:2 13216:1 13240:1 13241:2 13252:1 13266:2 13268:1 13273:1 13274:1 13275:2 13277:1 13284:2 13286:4 13288:2 13289:1 13291:3 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:1 13360:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13923:1 13956:1 13970:2 14012:1 14060:1 14061:1 14096:1 14128:1 14136:1 14210:1 14216:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14355:1 14360:1 14366:1 14399:2 14429:1 14446:1 14474:5 14496:1 14506:1 14514:1 14528:2 14530:2 14533:1 14539:1 14540:1 14542:1 14555:1 14582:2 14587:1 14591:1 14603:1 14606:1 14613:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:1 14857:1 14858:1 14885:1 14924:2 14929:1 14943:4 14976:1 15015:1 15027:1 15041:1 15070:1 15103:1 15110:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:3 15301:1 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:3 15410:2 15438:2 15443:1 15458:1 15464:1 15522:1 15525:1 15530:1 15548:1 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15648:1 15675:2 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15772:2 15773:1 15774:1 15778:1 15793:1 15819:1 15831:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15947:1 15963:2 15999:1 16004:1 16012:2 16028:2 16042:2 16069:1 16116:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16211:1 16231:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16332:1 16333:1 16338:1 16353:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16515:1 16519:3 16521:1 16526:1 16533:1 16561:1 16572:1 16582:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16702:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:1 16992:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17111:1 17150:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17319:1 17343:2 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17461:1 17489:2 17510:1 17521:1 17522:4 17543:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:7 17646:2 17654:1 17675:1 17688:5 17731:1 17760:1 17772:1 17809:1 17812:1 17815:1 17816:2 17828:2 17842:1 17845:2 17846:1 17847:2 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:3 18185:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:1 18291:1 18298:1 18356:1 18364:3 18371:2 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:1 18475:1 18481:1 18482:3 18484:2 18487:1 18490:4 18494:1 18495:1 18582:1 18590:1 18631:1 18632:1 18634:1 18640:1 18643:1 18705:1 18711:2 18715:1 18741:3 18760:2 18762:1 18778:2 18782:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:2 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 19007:1 19011:1 19017:1 19027:5 19045:1 19046:1 19052:16 19074:1 19075:1 19100:1 19105:2 19134:2 19155:2 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19441:1 19458:1 19470:3 19492:2 19512:1 19590:1 19591:1 19611:4 19627:1 19646:1 19652:2 19654:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19816:1 19832:1 19837:1 19838:1 19843:1 19895:1 19965:1 19972:1 19982:1 19996:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20277:1 20282:3 20320:1 20330:1 20358:2 20372:1 20410:1 20423:2 20447:1 20463:1 20490:2 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20619:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20783:1 20794:7 20811:1 20875:1 20876:1 20918:8 20928:1 20932:3 20947:1 21014:1 21030:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21162:1 21176:1648 21178:1 21180:2 21181:1 21220:2 21243:2 21257:1 21281:1 21298:1 21301:1 21313:1 21361:3 21385:1 21393:2 21411:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:2 21547:1 21549:1 21591:2 21641:1 21648:1 21652:1 21668:3 21680:1 21689:1 21713:1 21714:1 21726:1 21734:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:1 21818:1 21829:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:5 22050:3 22058:1 22074:2 22077:1 22091:3 22162:1 22170:1 22173:1 22177:1 22213:2 22224:1 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:1 22413:1 22423:1 22441:1 22450:1 22459:2 22461:1 22478:15 22493:1 22498:1 22530:1 22533:1 22541:2 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22721:2 22756:1 22762:4 22769:1 22777:2 22793:3 22811:1 22821:1 22827:1 22837:2 22846:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:2 22895:1 22932:1 22984:18 22993:1 23001:1 23012:1 23014:1 23018:1 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23133:1 23164:1 23192:1 23198:1 23214:1 23240:1 23241:2 23246:2 23247:2 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23659:1 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23711:13 23722:1 23725:1 23733:2 23735:3 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:1 23881:1 23913:2 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:3 24231:4 24261:1 24265:1 24298:1 24317:1 24338:1 24351:1 24367:1 24368:1 24375:2 24381:1 24383:1 24395:5 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:2 24513:1 24515:1 24541:1 24545:1 24550:1 24559:1 24567:1 24589:2 24599:2 24633:2 24634:1 24644:1 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24794:2 24795:1 24805:1 24806:3 24807:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:2 25067:1 25071:2 25076:1 25079:1 25089:1 25091:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:4 25272:1 25292:1 25293:1 25297:1 25314:2 25317:1 25321:1 25335:1 25337:1 25347:1 25348:1 25376:1 25387:3 25396:2 25403:1 25406:1 25418:1 25427:1 25432:1 25447:1 25464:1 25465:3 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:4 25569:1 25583:2 25600:1 25626:2 25629:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:1 25744:1 25756:1 25776:2 25781:1 25792:3 25795:1 25796:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25901:5 25913:1 25915:1 25920:1 25931:1 25946:3 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26213:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26377:2 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:2 26542:1 26551:3 26555:1 26561:1 26609:1 26615:2 26639:1 26646:4 26648:1 26652:1 26653:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27022:1 27025:1 27054:1 27060:1 27065:1 27157:1 27203:3 27204:1 27267:1 27273:1 27300:2 27324:1 27337:1 27345:2 27376:1 27391:1 27405:2 27423:1 27429:1 27439:2 27474:1 27488:3 27515:1 27550:1 27560:2 27570:2 27574:1 27626:2 27663:1 27694:2 27703:1 27705:2 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:3 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27910:2 27912:2 27949:1 27953:1 27955:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28112:1 28142:1 28162:1 28193:1 28218:1 28234:1 28270:1 28290:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28496:1 28521:1 28571:4 28609:4 28638:1 28706:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28836:1 28839:1 28845:2 28850:2 28851:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:1 28967:3 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29076:2 29103:1 29119:1 29157:3 29183:1 29191:3 29193:4 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29567:1 29576:2 29582:1 29604:1 29652:1 29654:1 29663:3 29701:1 29713:1 29748:9 29749:2 29761:1 29787:1 29799:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29892:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:1 30126:1 30128:1 30140:1 30169:1 30171:1 30209:1 30218:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30541:3 30556:1 30574:1 30598:1 30602:1 30625:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:2 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:5 30870:2 30872:1 30873:1 30878:1 30882:1 30888:1 30926:1 30944:2 30949:2 30994:1 30997:1 31011:1 31033:1 31039:2 31068:1 31072:3 31088:1 31098:1 31101:1 31107:1 31117:1 31118:1 31126:1 31131:1 31134:1 31135:1 31146:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31188:1 31190:1 31194:1 31197:1 31206:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:1 31356:1 31399:1 31420:2 31453:1 31472:1 31477:1 31506:1 31532:1 31542:2 31560:2 31562:2 31565:1 31575:1 31577:1 31622:1 31638:1 31705:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31916:5 31920:1 31924:1 31931:1 31933:2 31938:1 31940:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32041:8 32050:1 32081:1 32086:3 32099:2 32106:1 32168:1 32175:1 32206:5 32219:1 32246:1 32248:4 32256:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32382:1 32388:1 32400:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32552:1 32560:3 32562:1 32584:1 32607:1 32621:1 32622:1 32647:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32779:1 32817:1 32825:1 32835:1 32841:1 32861:2 32863:1 32874:1 32876:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33140:1 33141:2 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33269:1 33275:1 33276:1 33318:1 33326:3 33350:1 33364:3 33379:2 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:2 33525:1 33585:1 33600:1 7 12:1 21:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 435:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 616:1 619:1 662:1 670:1 671:1 676:1 680:4 719:4 737:1 816:5 831:1 851:1 883:1 885:1 909:1 924:1 973:1 999:6 1000:1 1022:1 1026:3 1050:1 1064:1 1066:3 1089:1 1093:1 1098:4 1102:1 1111:1 1142:2 1144:3 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1346:1 1361:1 1364:1 1405:1 1407:1 1421:2 1428:1 1435:1 1438:1 1453:1 1462:1 1471:1 1529:3 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:1 1672:3 1680:1 1727:1 1763:2 1800:1 1810:2 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1986:1 2013:1 2014:2 2015:2 2020:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2446:1 2458:2 2466:1 2470:1 2505:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2599:4 2604:1 2607:2 2609:2 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2727:2 2742:1 2763:1 2795:1 2809:1 2853:1 2863:1 2877:1 2888:1 2904:1 2911:1 2938:1 2988:1 2995:1 3034:1 3035:1 3036:1 3045:2 3061:1 3077:2 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3222:3 3250:1 3265:5 3306:2 3314:1 3318:18 3333:1 3351:1 3355:1 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3636:1 3647:1 3661:1 3663:1 3667:1 3669:1 3689:4 3691:1 3697:1 3723:8 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4209:1 4227:1 4244:1 4262:3 4270:2 4276:1 4313:1 4317:1 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4590:1 4629:1 4643:4 4646:1 4648:2 4705:2 4714:1 4725:1 4726:1 4739:2 4754:3 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:2 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:22 5528:1 5546:1 5567:1 5571:1 5608:1 5619:1 5668:2 5685:3 5686:6 5689:2 5694:1 5695:2 5700:1 5702:2 5708:1 5715:1 5716:2 5717:2 5719:1 5745:4 5784:1 5811:2 5819:1 5822:1 5861:1 5865:2 5881:1 5919:1 5926:4 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6163:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6716:1 6733:1 6739:1 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6982:1 6986:1 6998:1 7002:1 7020:5 7043:1 7059:1 7067:1 7092:1 7141:8 7169:4 7188:4 7193:1 7194:1 7212:2 7232:3 7233:1 7240:4 7242:2 7248:1 7249:1 7253:2 7254:3 7255:1 7257:1 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7525:3 7583:1 7587:1 7603:1 7621:2 7715:2 7722:3 7735:1 7748:4 7749:3 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7971:1 7976:1 7986:1 7990:1 8049:1 8051:1 8055:1 8074:2 8104:1 8110:2 8112:1 8150:2 8154:2 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8347:1 8361:1 8372:3 8374:1 8378:1 8409:1 8414:2 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:3 8693:4 8704:1 8716:3 8745:1 8759:31 8783:1 8786:17 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9022:1 9028:1 9059:1 9080:1 9125:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:1 9224:2 9229:1 9266:2 9287:1 9301:1 9305:1 9326:16 9360:2 9370:1 9392:3 9420:1 9431:1 9438:1 9451:3 9485:1 9495:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9976:1 9998:1 10008:1 10012:1 10025:1 10043:1 10066:2 10071:1 10093:1 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10220:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10309:1 10339:2 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:1 10532:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10722:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:1 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10994:1 10996:1 11019:1 11032:1 11038:1 11043:1 11054:1 11082:3 11098:1 11104:1 11109:1 11111:1 11147:1 11150:1 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:1 11424:1 11432:1 11440:1 11475:3 11480:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11820:1 11861:1 11870:1 11875:1 11880:1 11918:1 11930:1 11951:1 11953:1 11957:1 11958:1 11974:2 11980:1 12008:1 12025:1 12033:1 12051:3 12052:1 12062:1 12101:1 12121:1 12129:1 12165:1 12175:4 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12323:1 12359:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:1 12453:1 12461:7 12474:1 12496:1 12512:1 12541:1 12563:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12651:1 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12850:1 12853:1 12867:1 12871:1 12877:1 12897:1 12904:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:4 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:3 13216:2 13240:1 13241:2 13252:1 13266:2 13268:1 13273:1 13274:1 13275:2 13277:1 13284:2 13286:4 13288:2 13289:1 13291:3 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:1 13360:1 13361:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13692:1 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13863:2 13883:1 13885:1 13899:1 13923:1 13956:1 13970:2 14003:1 14012:1 14060:1 14061:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14355:1 14360:1 14366:1 14399:2 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14528:2 14530:2 14533:1 14539:1 14540:1 14542:1 14555:1 14582:2 14587:1 14591:2 14603:1 14606:1 14613:1 14625:1 14629:1 14634:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:1 14857:2 14858:1 14885:1 14924:2 14929:1 14943:5 14976:1 15015:1 15027:1 15041:1 15070:1 15103:1 15110:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:4 15301:2 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:3 15404:1 15410:2 15438:2 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15548:2 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15648:1 15675:2 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:1 15793:1 15819:1 15831:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15947:1 15963:2 15999:1 16004:1 16012:2 16028:2 16042:2 16069:1 16116:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16211:1 16231:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16332:1 16333:1 16338:1 16353:1 16366:1 16451:1 16457:1 16486:1 16489:1 16502:1 16511:1 16515:1 16519:3 16521:1 16524:1 16526:1 16533:1 16561:1 16572:1 16582:1 16597:2 16613:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16690:1 16698:1 16702:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:2 16992:1 16995:1 16997:2 17029:1 17030:1 17036:1 17108:1 17111:1 17150:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17319:1 17343:2 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:2 17510:1 17521:1 17522:4 17543:1 17548:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:7 17646:3 17654:1 17675:1 17683:1 17688:5 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17809:1 17812:1 17815:1 17816:2 17828:2 17842:1 17845:2 17846:1 17847:3 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17928:1 17947:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:4 18185:1 18186:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18356:1 18364:3 18371:2 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:2 18487:1 18490:4 18494:1 18495:1 18582:1 18590:1 18631:1 18632:1 18634:1 18640:1 18643:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18778:2 18782:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:2 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 19007:1 19011:1 19017:1 19027:5 19045:1 19046:1 19052:16 19074:1 19075:1 19100:1 19105:2 19134:2 19155:3 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19441:1 19458:1 19470:3 19492:2 19512:1 19590:1 19591:1 19611:4 19627:1 19646:1 19652:2 19654:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:1 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19816:1 19832:1 19837:1 19838:1 19843:1 19895:1 19965:1 19972:1 19982:1 19996:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20277:1 20282:3 20320:1 20330:1 20358:2 20372:1 20410:1 20423:2 20447:3 20456:1 20463:1 20490:2 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20666:1 20706:1 20724:1 20726:1 20739:1 20783:1 20794:7 20811:1 20875:1 20876:1 20918:8 20928:1 20932:3 20947:3 20966:1 21014:1 21023:1 21030:1 21033:1 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21162:1 21176:1771 21178:1 21180:2 21181:1 21220:2 21243:2 21257:1 21281:1 21298:1 21300:1 21301:1 21313:1 21361:3 21365:1 21385:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:3 21547:1 21549:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:1 21818:1 21829:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:5 22050:3 22058:1 22074:2 22077:1 22091:3 22162:1 22170:1 22172:1 22173:1 22177:1 22211:1 22213:2 22224:1 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:1 22413:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:2 22461:1 22469:1 22478:15 22493:1 22498:1 22518:1 22530:1 22533:1 22541:3 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:2 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:2 22846:1 22847:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22984:18 22993:1 23001:1 23012:1 23014:1 23018:1 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23164:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23526:3 23546:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23659:1 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23711:13 23722:1 23725:1 23733:2 23735:3 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:1 23881:1 23913:2 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24228:3 24231:4 24261:1 24265:1 24298:1 24317:1 24338:1 24351:1 24367:1 24368:1 24375:2 24381:1 24383:1 24395:5 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:2 24513:1 24515:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:2 24634:1 24644:1 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24794:2 24795:1 24805:1 24806:3 24807:1 24809:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:2 25067:1 25071:2 25076:1 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:4 25272:1 25292:1 25293:1 25297:1 25314:2 25317:1 25321:1 25335:1 25337:1 25347:1 25348:1 25376:1 25387:3 25396:2 25403:1 25406:1 25418:1 25427:1 25432:1 25447:1 25464:1 25465:4 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:1 25744:1 25756:1 25776:3 25781:1 25792:3 25795:1 25796:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25890:1 25901:5 25913:1 25915:1 25920:1 25931:1 25946:3 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26213:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:2 26542:1 26551:3 26555:1 26561:1 26609:1 26615:2 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27022:1 27025:1 27054:1 27060:1 27065:1 27157:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27316:1 27324:1 27337:1 27345:2 27376:1 27391:1 27405:2 27423:1 27429:1 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27550:1 27560:2 27570:2 27574:1 27626:2 27663:1 27694:2 27703:1 27705:2 27717:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:3 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27910:3 27912:2 27949:1 27953:1 27955:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28112:1 28142:1 28162:1 28193:1 28218:1 28234:1 28245:1 28270:1 28290:1 28302:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28496:1 28521:1 28571:5 28595:1 28609:4 28638:1 28706:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28836:1 28839:1 28845:2 28850:2 28851:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:1 28967:3 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29076:2 29103:1 29119:1 29153:1 29157:3 29183:1 29191:3 29193:4 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29604:1 29652:1 29654:1 29663:3 29692:1 29701:1 29713:1 29714:1 29748:11 29749:2 29761:1 29787:1 29799:1 29818:2 29839:1 29844:1 29877:1 29881:1 29886:1 29892:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:1 30126:1 30128:1 30140:2 30169:1 30171:1 30209:1 30218:1 30243:1 30283:1 30303:1 30319:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30541:3 30556:1 30574:1 30598:1 30602:1 30625:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:2 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30813:2 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30882:1 30888:1 30926:1 30944:2 30949:2 30994:1 30997:1 31011:1 31033:1 31039:2 31068:1 31072:3 31088:1 31098:1 31101:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:1 31190:2 31194:2 31197:1 31206:1 31209:1 31215:1 31254:1 31260:1 31319:1 31330:3 31356:1 31399:1 31420:2 31422:1 31429:1 31453:1 31472:1 31477:1 31506:1 31532:1 31542:2 31560:2 31562:2 31565:1 31575:1 31577:1 31622:1 31631:1 31638:1 31705:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32026:1 32041:8 32050:1 32081:1 32086:3 32099:2 32106:1 32168:1 32175:1 32200:1 32206:5 32219:1 32246:1 32248:4 32256:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32382:1 32388:1 32400:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32551:1 32552:1 32560:3 32562:1 32584:1 32607:1 32621:1 32622:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32779:1 32817:1 32825:1 32835:1 32841:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33140:1 33141:2 33146:1 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33269:1 33275:1 33276:1 33318:1 33326:4 33350:1 33364:3 33379:2 33409:1 33419:1 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:3 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 616:1 619:1 633:1 662:1 670:1 671:1 676:1 680:4 719:4 737:1 745:1 816:6 831:1 851:1 883:1 885:1 909:1 924:1 973:1 999:6 1000:1 1022:1 1026:3 1050:1 1064:1 1066:3 1089:1 1093:1 1098:4 1102:1 1111:1 1142:2 1144:3 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1346:1 1349:1 1354:1 1361:1 1364:1 1405:1 1407:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1529:3 1554:1 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:2 1672:3 1680:1 1727:1 1763:2 1800:2 1810:2 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:1 1986:1 2013:1 2014:2 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2446:1 2458:2 2466:1 2470:1 2505:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2599:5 2604:1 2607:2 2609:2 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2742:1 2763:1 2795:1 2809:1 2822:1 2853:1 2863:1 2877:1 2888:1 2904:1 2911:1 2938:1 2988:1 2995:1 3034:1 3035:1 3036:1 3045:2 3061:1 3077:2 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3265:5 3306:2 3314:1 3318:18 3333:1 3351:1 3355:1 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3590:1 3636:1 3647:1 3648:1 3661:1 3663:1 3667:1 3669:1 3689:4 3691:1 3697:1 3723:8 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3997:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4209:1 4227:1 4244:1 4262:3 4270:2 4276:1 4288:1 4313:1 4317:1 4341:1 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4590:1 4629:1 4643:4 4646:1 4648:2 4705:2 4714:1 4725:1 4726:1 4739:3 4754:3 4765:1 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:2 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:23 5528:1 5546:1 5567:1 5571:1 5608:1 5619:1 5645:1 5668:2 5685:3 5686:7 5689:2 5694:2 5695:2 5700:1 5702:2 5708:1 5715:1 5716:2 5717:2 5719:1 5745:4 5784:1 5811:2 5819:1 5822:1 5861:1 5865:2 5881:1 5919:1 5926:4 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6163:1 6185:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6481:1 6484:1 6495:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6716:1 6733:1 6739:1 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6982:1 6986:1 6998:1 7002:1 7020:5 7043:1 7059:1 7062:1 7067:1 7092:1 7141:8 7169:4 7188:4 7193:1 7194:1 7212:2 7232:4 7233:1 7240:4 7242:2 7248:2 7249:1 7253:2 7254:3 7255:1 7257:2 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7524:1 7525:3 7583:1 7587:1 7603:1 7621:3 7698:1 7715:2 7722:3 7735:1 7748:4 7749:3 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7986:1 7987:1 7990:1 8049:1 8051:1 8055:1 8074:2 8104:1 8110:2 8112:1 8150:2 8154:2 8158:1 8160:1 8162:1 8169:1 8171:1 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:3 8693:4 8704:1 8716:3 8745:1 8746:1 8759:31 8783:1 8786:17 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9022:1 9028:1 9059:1 9080:1 9125:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:1 9224:2 9229:1 9266:2 9287:1 9301:1 9305:1 9326:18 9360:2 9370:1 9392:3 9420:1 9431:1 9438:1 9451:3 9485:1 9495:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9976:1 9998:1 10008:1 10012:1 10025:1 10043:1 10066:2 10067:2 10071:1 10093:1 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10220:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10309:1 10339:2 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10722:1 10734:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:1 10916:2 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10994:1 10996:1 11019:1 11032:1 11038:1 11043:1 11054:1 11082:3 11098:1 11104:1 11109:1 11111:1 11147:1 11150:2 11156:1 11171:1 11184:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:2 11424:1 11432:1 11440:1 11467:1 11475:3 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11639:1 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11820:1 11861:1 11867:1 11870:1 11875:1 11880:1 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:2 11980:1 12008:1 12025:1 12033:1 12051:3 12052:1 12062:1 12101:1 12121:1 12129:1 12165:1 12175:4 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12323:1 12355:1 12359:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:1 12453:1 12461:7 12474:1 12496:1 12507:1 12512:1 12541:1 12563:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12651:1 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12807:1 12813:1 12833:1 12850:1 12853:1 12867:1 12871:1 12877:1 12897:1 12904:1 12907:1 12919:1 12928:2 12933:1 12943:1 12948:1 12970:1 12972:5 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:2 13240:1 13241:2 13252:1 13266:2 13268:1 13273:1 13274:1 13275:2 13277:1 13284:3 13286:4 13288:2 13289:1 13291:3 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:1 13360:1 13361:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13692:1 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13858:1 13863:2 13883:1 13885:1 13899:1 13923:1 13956:1 13970:2 14003:1 14012:1 14060:1 14061:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14355:1 14360:1 14366:1 14399:2 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14528:2 14530:2 14533:1 14539:1 14540:1 14542:1 14555:1 14582:2 14585:1 14587:1 14591:2 14596:1 14603:1 14606:1 14613:1 14625:1 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:1 14857:2 14858:1 14885:1 14924:2 14929:1 14943:5 14976:1 15015:1 15027:1 15041:1 15070:1 15103:1 15110:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:4 15301:2 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:3 15404:1 15410:2 15438:2 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15548:2 15555:3 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15648:1 15675:2 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:1 15793:1 15819:1 15831:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15947:1 15963:2 15999:1 16004:1 16012:2 16028:2 16042:2 16069:1 16116:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16189:1 16211:1 16231:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:1 16323:3 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:1 16511:1 16515:1 16519:3 16521:1 16524:1 16526:1 16533:1 16561:1 16572:1 16582:1 16597:2 16613:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16672:1 16690:1 16698:1 16702:1 16708:1 16725:1 16742:1 16747:1 16773:1 16806:1 16827:1 16838:1 16840:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:2 16992:1 16995:1 16997:3 17029:1 17030:1 17036:1 17108:1 17111:1 17150:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:2 17510:1 17520:1 17521:1 17522:4 17543:1 17548:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:7 17646:3 17654:1 17675:1 17683:1 17684:1 17688:5 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17803:1 17809:1 17812:1 17815:1 17816:2 17828:2 17842:1 17845:2 17846:1 17847:3 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17928:1 17947:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:4 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18356:1 18357:1 18364:3 18371:3 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18678:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18778:2 18782:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:2 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 19007:1 19011:1 19017:1 19027:5 19045:1 19046:1 19052:16 19074:1 19075:1 19100:1 19105:2 19134:2 19155:3 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19441:1 19447:1 19458:1 19470:3 19492:2 19512:1 19590:1 19591:1 19611:4 19627:1 19646:1 19652:2 19654:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:1 19771:1 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20277:1 20282:3 20320:1 20330:1 20358:2 20372:1 20410:1 20423:2 20447:3 20456:1 20463:1 20490:2 20500:1 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:1 20706:1 20724:1 20726:1 20739:1 20783:1 20794:7 20811:1 20875:1 20876:1 20918:8 20928:1 20932:3 20947:3 20966:1 21014:1 21023:1 21030:1 21033:2 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21162:1 21176:1863 21178:1 21180:2 21181:1 21220:2 21243:2 21257:1 21281:1 21298:1 21300:1 21301:1 21313:1 21361:3 21365:1 21385:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:3 21547:1 21549:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:6 22050:3 22058:1 22074:2 22077:1 22091:3 22162:1 22170:1 22172:1 22173:1 22177:1 22211:1 22213:2 22224:1 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:2 22413:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:2 22461:1 22469:1 22478:15 22493:1 22498:1 22503:1 22518:1 22530:1 22533:1 22541:3 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:2 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:2 22846:1 22847:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22984:18 22993:1 23001:1 23012:1 23014:1 23018:1 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23164:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23471:1 23518:1 23526:3 23546:1 23554:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23659:1 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23711:13 23722:1 23725:1 23733:2 23735:3 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:2 23881:1 23913:2 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24228:3 24231:4 24261:1 24265:1 24298:1 24317:1 24338:1 24351:1 24367:1 24368:1 24375:2 24381:1 24383:1 24384:1 24395:6 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:2 24513:1 24515:2 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:2 24634:1 24644:2 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:2 25067:1 25071:2 25076:1 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:4 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25347:1 25348:1 25376:1 25387:3 25396:2 25401:1 25403:1 25406:1 25418:1 25427:1 25432:1 25440:1 25447:1 25464:1 25465:4 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:1 25744:1 25756:1 25776:3 25781:1 25792:3 25795:1 25796:1 25803:1 25830:1 25862:1 25869:1 25872:1 25882:1 25890:1 25901:6 25913:1 25915:1 25920:1 25931:1 25946:3 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26085:1 26091:1 26120:1 26157:1 26168:1 26207:1 26213:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:2 26542:1 26551:3 26555:1 26561:1 26609:1 26615:3 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26856:2 26863:1 26871:2 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27008:1 27022:1 27025:1 27048:1 27054:1 27060:1 27065:1 27147:1 27157:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27316:1 27324:2 27337:1 27345:2 27376:1 27391:1 27405:2 27423:1 27428:1 27429:1 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27550:1 27560:2 27570:2 27574:1 27626:2 27663:1 27694:2 27703:1 27705:2 27717:2 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:4 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:2 27949:1 27953:1 27955:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28112:1 28142:1 28162:1 28193:1 28218:1 28234:1 28245:1 28270:1 28290:1 28302:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28496:1 28521:1 28571:5 28595:1 28609:4 28638:1 28705:2 28706:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28836:1 28839:1 28845:2 28850:3 28851:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:1 28967:3 28969:1 28973:2 28994:1 29025:1 29048:1 29063:2 29076:2 29103:1 29119:1 29153:1 29157:3 29183:1 29191:4 29193:4 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29604:1 29638:1 29652:1 29654:1 29663:3 29692:1 29701:1 29713:1 29714:1 29748:11 29749:2 29761:1 29787:1 29799:1 29818:2 29839:2 29844:1 29877:1 29881:1 29886:1 29892:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:2 30126:1 30128:1 30140:2 30169:1 30171:1 30209:1 30218:1 30243:1 30283:1 30303:1 30319:1 30320:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30541:3 30556:1 30574:1 30598:1 30602:1 30625:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:3 30707:1 30742:2 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30813:2 30839:1 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30882:1 30888:1 30926:1 30944:2 30949:2 30994:1 30997:1 31011:1 31033:1 31039:3 31068:1 31072:3 31088:1 31092:1 31098:1 31101:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31194:2 31197:1 31206:1 31209:1 31215:1 31243:1 31254:1 31260:1 31319:1 31330:3 31356:1 31399:1 31420:2 31422:1 31429:1 31453:1 31472:1 31474:1 31477:1 31506:1 31532:1 31542:2 31560:2 31562:2 31565:1 31575:1 31577:1 31622:1 31631:1 31638:1 31705:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32081:1 32086:3 32099:2 32106:1 32155:1 32168:1 32175:1 32200:1 32206:5 32219:1 32246:1 32248:4 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32382:1 32388:1 32400:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32551:1 32552:1 32560:3 32562:2 32574:1 32584:1 32607:1 32621:1 32622:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32758:1 32774:1 32779:1 32817:1 32825:1 32835:1 32841:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32967:1 32969:1 32976:1 32995:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33140:1 33141:2 33146:1 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33269:1 33275:1 33276:1 33318:1 33326:4 33332:1 33350:1 33364:3 33379:2 33409:1 33419:2 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:4 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 76:1 89:1 95:1 99:1 120:1 127:1 138:1 191:4 207:4 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 616:1 619:1 633:1 662:1 670:1 671:1 676:1 680:4 719:4 737:1 745:1 816:6 831:1 851:1 883:1 885:1 909:1 924:1 973:1 999:6 1000:1 1022:1 1026:3 1050:1 1064:1 1066:3 1089:1 1093:1 1098:4 1102:1 1111:1 1142:2 1144:3 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1346:1 1349:1 1354:1 1361:1 1364:1 1383:1 1405:1 1407:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1529:3 1554:2 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:2 1672:3 1680:1 1727:1 1763:2 1800:2 1810:2 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:1 1986:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2446:1 2458:2 2466:1 2470:1 2495:1 2505:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2599:5 2604:1 2607:2 2609:2 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2742:1 2763:1 2795:1 2809:1 2822:1 2853:1 2863:1 2877:1 2888:1 2904:1 2911:1 2938:1 2988:1 2995:1 3034:1 3035:1 3036:1 3045:2 3061:1 3077:2 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3265:5 3306:2 3314:1 3318:19 3333:1 3351:1 3355:1 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3590:1 3636:1 3647:1 3648:2 3661:1 3663:1 3667:1 3669:1 3689:4 3691:1 3697:1 3723:8 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3997:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4209:1 4227:1 4244:1 4262:3 4270:2 4276:1 4288:1 4313:1 4317:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4590:1 4629:1 4643:4 4646:1 4648:2 4653:1 4705:2 4714:1 4725:1 4726:1 4739:3 4754:3 4765:2 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4870:2 4891:2 4894:1 4907:1 4930:2 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:23 5528:1 5546:1 5567:1 5571:1 5608:1 5619:1 5645:1 5668:2 5685:3 5686:7 5689:2 5694:2 5695:2 5700:1 5702:2 5708:1 5715:1 5716:2 5717:2 5718:1 5719:1 5745:4 5784:1 5811:2 5819:1 5822:1 5861:1 5865:2 5881:1 5919:1 5926:4 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6114:1 6118:1 6138:1 6147:1 6163:1 6185:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6481:2 6484:1 6495:1 6532:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6716:1 6733:1 6739:1 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:1 6982:1 6986:1 6998:1 7002:1 7020:5 7043:1 7059:1 7062:1 7067:1 7092:1 7141:8 7169:4 7188:4 7193:1 7194:1 7212:2 7232:4 7233:1 7240:4 7242:2 7248:2 7249:1 7253:2 7254:3 7255:1 7257:2 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:1 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7524:1 7525:3 7583:1 7587:1 7603:1 7621:3 7698:1 7715:2 7722:3 7735:1 7748:4 7749:3 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7986:1 7987:1 7990:1 8049:1 8051:1 8055:1 8074:3 8104:1 8110:2 8112:1 8150:2 8154:2 8158:1 8160:1 8162:1 8169:1 8171:2 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:3 8693:4 8704:1 8716:3 8745:1 8746:1 8759:31 8783:1 8786:18 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9022:1 9028:1 9059:1 9080:1 9125:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:1 9224:2 9229:1 9266:2 9287:1 9301:1 9305:1 9326:18 9360:2 9370:1 9392:3 9420:1 9431:1 9438:1 9451:3 9485:1 9495:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9624:1 9626:1 9630:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9976:1 9998:1 10008:1 10012:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:1 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10220:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10309:1 10339:2 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10722:1 10734:1 10787:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:1 10916:2 10924:1 10927:1 10938:2 10957:2 10958:2 10974:2 10994:1 10996:1 11019:1 11032:1 11038:1 11043:1 11054:1 11082:3 11098:1 11104:1 11109:1 11111:1 11129:1 11147:1 11150:2 11156:1 11171:1 11184:1 11248:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:2 11424:1 11432:1 11440:1 11467:1 11475:3 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11635:1 11639:1 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11814:1 11820:1 11861:1 11867:1 11870:1 11875:1 11880:1 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:2 11980:1 12000:1 12008:1 12025:1 12033:1 12051:3 12052:1 12062:1 12101:1 12121:1 12129:1 12165:1 12175:4 12204:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12323:1 12355:2 12359:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:1 12453:1 12455:1 12461:7 12474:1 12496:1 12507:1 12512:1 12541:1 12563:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12651:1 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12807:1 12813:2 12833:1 12850:1 12853:1 12867:1 12871:1 12877:1 12897:1 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:1 12972:5 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:2 13240:1 13241:2 13252:1 13266:2 13268:1 13273:1 13274:1 13275:2 13277:1 13284:3 13286:4 13288:2 13289:1 13291:3 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:1 13360:1 13361:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13692:1 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13818:1 13835:1 13852:1 13858:1 13863:2 13883:1 13885:1 13899:1 13923:1 13956:1 13970:2 14003:1 14012:1 14060:1 14061:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14307:1 14353:1 14355:2 14360:1 14366:1 14399:2 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:1 14582:2 14585:1 14587:1 14591:2 14596:1 14603:1 14606:1 14613:1 14625:1 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:2 14857:2 14858:1 14885:1 14924:2 14929:1 14943:5 14976:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:1 15125:3 15128:2 15137:1 15148:1 15159:2 15199:1 15229:4 15301:2 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:3 15404:1 15410:2 15438:2 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15547:1 15548:2 15555:3 15556:1 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15648:1 15664:1 15675:2 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:1 15793:1 15819:1 15831:1 15858:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15947:1 15963:2 15967:1 15999:1 16004:1 16012:2 16028:2 16042:2 16069:1 16116:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:1 16297:1 16313:1 16322:2 16323:3 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:2 16511:1 16515:1 16519:3 16521:1 16524:1 16526:1 16533:1 16561:1 16572:1 16582:1 16597:2 16613:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16672:1 16690:1 16698:1 16702:1 16708:1 16720:1 16725:1 16736:1 16742:1 16747:1 16773:1 16800:1 16806:1 16827:1 16838:1 16840:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17108:1 17111:1 17150:1 17184:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:2 17510:1 17520:1 17521:1 17522:4 17543:1 17548:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:7 17646:3 17654:1 17675:1 17683:1 17684:1 17688:5 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17803:1 17808:1 17809:1 17812:1 17815:1 17816:2 17828:2 17842:1 17845:2 17846:1 17847:3 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17928:1 17947:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:4 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18356:1 18357:2 18364:3 18371:3 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18678:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18778:2 18782:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:2 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:1 19007:1 19011:1 19017:1 19027:5 19045:1 19046:1 19052:17 19074:1 19075:1 19100:1 19105:2 19134:2 19155:3 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19441:1 19447:1 19458:1 19470:3 19492:2 19511:1 19512:1 19590:1 19591:1 19611:4 19627:1 19646:1 19652:2 19654:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:1 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20218:1 20276:1 20277:1 20282:3 20320:1 20330:1 20358:2 20372:2 20410:1 20423:2 20447:3 20456:1 20463:1 20490:2 20500:1 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:1 20706:1 20724:1 20726:1 20739:1 20783:1 20794:7 20811:1 20875:1 20876:1 20918:8 20928:1 20932:3 20947:3 20966:1 21014:1 21023:1 21030:1 21033:2 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21162:1 21176:1901 21178:1 21180:2 21181:1 21220:2 21243:2 21257:1 21281:1 21298:1 21300:1 21301:1 21313:1 21361:3 21365:1 21385:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:3 21547:1 21549:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:3 22162:1 22170:1 22172:1 22173:1 22177:1 22211:1 22213:2 22224:1 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:2 22413:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:2 22461:1 22469:1 22478:16 22493:1 22498:1 22503:1 22518:1 22530:1 22533:1 22541:3 22545:1 22567:1 22568:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22712:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:2 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:2 22846:1 22847:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22984:19 22993:1 23001:1 23012:1 23014:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23164:1 23187:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23294:1 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23471:2 23518:1 23526:3 23546:1 23554:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:1 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:14 23722:1 23725:1 23733:2 23735:3 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:2 23881:1 23913:2 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24228:3 24231:4 24261:1 24265:1 24298:1 24317:1 24338:1 24351:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24395:6 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:2 24513:1 24515:2 24536:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:3 24634:1 24644:2 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24752:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:2 25067:1 25071:2 25076:1 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:4 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25347:1 25348:1 25376:1 25387:3 25396:2 25401:1 25403:1 25406:1 25418:2 25427:1 25432:1 25440:1 25447:1 25458:1 25464:1 25465:4 25472:2 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:1 25756:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25901:6 25913:1 25915:1 25920:1 25931:1 25946:3 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26055:1 26063:1 26085:1 26091:1 26120:1 26157:1 26168:1 26185:1 26207:1 26213:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:3 26555:1 26561:1 26609:1 26615:3 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26863:1 26871:2 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27008:1 27022:1 27025:1 27048:1 27054:1 27060:1 27065:1 27147:1 27157:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27316:1 27324:2 27337:1 27345:2 27376:1 27391:1 27405:2 27423:1 27428:1 27429:1 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27550:1 27560:2 27570:2 27574:1 27626:2 27663:1 27694:2 27703:1 27705:2 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:4 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:2 27949:1 27953:1 27955:1 27956:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28112:1 28119:1 28142:1 28162:1 28193:1 28218:1 28234:2 28245:1 28270:1 28290:1 28302:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28496:1 28521:1 28546:1 28571:5 28595:1 28609:4 28638:1 28705:2 28706:1 28712:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28836:1 28839:1 28845:2 28850:3 28851:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:1 28967:3 28969:1 28973:2 28994:1 28997:1 29025:1 29048:1 29063:2 29076:2 29103:1 29119:1 29153:1 29157:3 29183:1 29191:4 29193:4 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29748:11 29749:2 29761:1 29787:1 29799:1 29818:2 29839:2 29844:1 29877:1 29881:1 29886:1 29892:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:2 30126:1 30128:1 30140:2 30169:1 30171:1 30209:1 30218:1 30243:1 30283:1 30303:1 30319:1 30320:1 30369:1 30386:1 30412:1 30415:1 30431:1 30455:1 30459:2 30468:1 30480:1 30503:1 30521:1 30539:1 30541:3 30556:1 30574:1 30598:1 30602:1 30625:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:3 30769:1 30773:1 30794:2 30798:2 30801:1 30813:2 30839:1 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30882:1 30888:2 30926:1 30935:1 30944:2 30949:2 30994:1 30997:1 31011:1 31033:1 31039:3 31068:1 31072:3 31088:1 31092:1 31098:1 31101:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31194:2 31197:1 31206:1 31209:1 31215:1 31243:1 31254:1 31260:1 31319:1 31330:3 31356:1 31399:1 31420:2 31422:1 31429:1 31453:1 31472:1 31474:1 31477:1 31506:1 31532:1 31542:2 31560:2 31562:2 31565:1 31575:1 31577:1 31622:1 31631:1 31638:1 31705:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32081:1 32086:3 32099:2 32106:1 32155:1 32168:1 32175:1 32200:1 32206:5 32219:1 32246:1 32248:4 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32382:1 32388:1 32400:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32551:1 32552:1 32560:3 32562:2 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32934:1 32967:1 32969:2 32976:1 32995:1 33014:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33140:1 33141:2 33146:1 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33269:1 33275:1 33276:1 33318:1 33326:4 33332:1 33350:1 33364:3 33379:2 33409:1 33419:2 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:4 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 76:1 89:1 95:1 99:1 120:2 127:1 138:1 191:4 207:4 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 616:1 619:1 633:1 662:1 670:1 671:1 676:1 680:4 719:4 737:1 745:1 816:6 831:1 851:1 883:1 885:1 909:1 924:1 973:1 999:6 1000:1 1022:1 1026:3 1050:1 1064:1 1066:3 1089:1 1093:1 1098:4 1102:1 1111:1 1142:2 1144:3 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1346:1 1349:1 1354:1 1361:1 1364:1 1383:1 1389:1 1405:1 1407:1 1419:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1529:3 1554:2 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:2 1672:3 1680:1 1727:1 1763:2 1800:2 1810:2 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:1 1986:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2446:1 2458:2 2466:1 2470:2 2495:1 2505:1 2511:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2599:5 2604:1 2607:3 2609:2 2612:3 2615:1 2667:1 2676:1 2679:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2742:1 2763:1 2795:1 2809:1 2822:1 2853:1 2863:1 2877:1 2888:1 2898:1 2904:1 2911:1 2938:1 2988:1 2995:1 3034:1 3035:1 3036:1 3045:2 3061:1 3077:3 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:4 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3265:5 3306:2 3314:1 3318:19 3333:1 3337:1 3351:1 3355:1 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3462:1 3465:1 3483:1 3487:1 3534:1 3542:2 3548:1 3590:1 3636:1 3647:1 3648:2 3661:1 3663:1 3667:1 3669:1 3689:5 3691:1 3697:1 3723:8 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3997:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4200:1 4209:1 4227:1 4244:1 4262:3 4270:2 4276:1 4288:1 4313:1 4317:1 4332:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4590:1 4629:1 4643:4 4646:1 4648:2 4653:1 4705:2 4714:1 4725:1 4726:1 4739:3 4754:3 4765:2 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4859:1 4870:2 4891:2 4894:1 4907:1 4914:1 4930:2 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5074:1 5077:1 5147:4 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:2 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5500:2 5511:1 5523:24 5528:1 5546:1 5567:1 5571:1 5608:1 5619:1 5645:1 5668:2 5685:3 5686:7 5689:2 5694:2 5695:2 5700:1 5702:2 5708:1 5715:1 5716:2 5717:2 5718:1 5719:1 5745:4 5784:1 5811:2 5819:1 5822:1 5861:1 5865:2 5881:1 5919:1 5926:4 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6111:1 6114:1 6118:1 6138:1 6147:1 6163:1 6185:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6399:1 6436:2 6480:1 6481:2 6484:1 6495:1 6532:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6716:1 6733:1 6739:1 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:1 6982:1 6986:1 6998:1 7002:1 7020:5 7043:1 7059:1 7062:1 7067:1 7092:1 7110:1 7141:8 7169:4 7188:4 7193:1 7194:1 7212:2 7232:4 7233:1 7240:5 7242:2 7248:2 7249:1 7253:2 7254:3 7255:1 7257:2 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:2 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7524:1 7525:3 7559:1 7583:1 7587:1 7603:1 7621:4 7698:1 7715:2 7722:3 7735:1 7748:4 7749:3 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7979:1 7986:1 7987:1 7990:1 8049:1 8051:1 8055:1 8074:3 8104:1 8110:2 8112:1 8150:2 8154:2 8158:1 8160:1 8162:1 8169:1 8171:2 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:3 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:3 8693:4 8704:1 8716:3 8745:1 8746:1 8759:32 8783:1 8786:18 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9022:1 9028:1 9040:1 9059:1 9080:1 9125:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:1 9224:2 9229:1 9266:2 9287:1 9301:1 9305:1 9326:19 9360:2 9370:1 9392:3 9420:1 9431:1 9438:1 9451:3 9485:1 9495:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9619:1 9624:1 9626:1 9630:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9958:1 9976:1 9998:1 10008:1 10012:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:1 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10220:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10309:1 10339:2 10353:5 10362:1 10414:2 10434:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10722:1 10732:1 10734:1 10758:1 10787:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:1 10916:2 10924:1 10927:1 10938:3 10957:2 10958:2 10974:3 10994:1 10996:1 11019:1 11032:1 11038:1 11043:1 11054:1 11082:3 11098:1 11100:1 11104:1 11109:1 11111:1 11129:1 11147:1 11150:2 11156:1 11171:1 11184:1 11248:1 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:2 11424:1 11432:1 11440:1 11454:1 11467:1 11475:3 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11635:1 11639:2 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11814:1 11820:1 11861:1 11867:1 11870:1 11875:1 11880:1 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:2 11980:1 12000:1 12008:1 12025:1 12033:1 12051:3 12052:1 12062:1 12101:1 12121:1 12129:1 12165:1 12175:4 12204:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12323:1 12355:2 12359:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:2 12453:1 12455:1 12461:7 12474:1 12496:1 12507:1 12512:1 12541:1 12563:1 12566:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12651:1 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12807:1 12813:2 12833:1 12850:1 12853:1 12867:1 12871:1 12877:1 12897:1 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:1 12972:5 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:2 13240:1 13241:2 13252:1 13266:2 13268:2 13273:1 13274:1 13275:2 13277:1 13284:3 13286:4 13288:2 13289:1 13291:3 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:2 13360:1 13361:1 13379:1 13382:3 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13692:1 13698:4 13702:1 13713:4 13728:1 13744:1 13766:1 13778:1 13789:1 13809:1 13818:1 13835:1 13852:1 13858:1 13863:2 13883:1 13885:1 13899:1 13923:1 13956:1 13970:2 14003:1 14012:1 14060:1 14061:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14307:1 14353:1 14355:2 14360:1 14366:1 14399:2 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:1 14582:2 14585:1 14587:1 14591:2 14596:1 14603:1 14606:1 14613:1 14625:1 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:2 14857:2 14858:1 14885:1 14924:2 14929:1 14943:5 14976:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:1 15125:3 15128:2 15137:1 15148:1 15159:2 15164:1 15199:1 15229:4 15301:2 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:3 15404:1 15410:2 15438:2 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15547:1 15548:2 15554:1 15555:3 15556:1 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15648:1 15664:1 15675:2 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:2 15793:1 15819:1 15831:1 15858:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15947:1 15963:2 15967:1 15999:1 16004:1 16012:2 16028:2 16042:2 16069:1 16116:1 16121:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:1 16297:1 16304:1 16313:1 16322:2 16323:3 16330:1 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:2 16511:1 16515:1 16519:3 16521:1 16524:1 16526:1 16533:1 16554:1 16561:1 16572:1 16582:1 16597:2 16613:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16672:1 16690:1 16698:1 16702:1 16708:1 16720:1 16725:1 16736:1 16742:1 16747:1 16773:1 16781:1 16800:1 16806:1 16827:1 16838:1 16840:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17108:1 17111:1 17150:1 17184:1 17211:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:2 17510:1 17520:1 17521:1 17522:5 17543:1 17548:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:7 17646:3 17654:1 17675:1 17683:1 17684:1 17688:5 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17803:1 17808:1 17809:1 17812:1 17815:1 17816:2 17828:2 17842:1 17845:2 17846:1 17847:4 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17928:1 17947:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:4 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18356:1 18357:2 18364:3 18371:3 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18489:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18678:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18769:1 18778:2 18782:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:2 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:1 19007:1 19011:1 19017:1 19027:5 19034:1 19045:1 19046:1 19052:17 19074:1 19075:1 19100:1 19105:2 19134:2 19136:1 19155:3 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:1 19441:1 19447:1 19458:1 19470:3 19492:2 19511:1 19512:1 19576:1 19590:1 19591:1 19611:4 19627:1 19646:1 19652:2 19654:1 19699:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:1 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20218:1 20276:1 20277:1 20282:3 20320:1 20330:1 20358:2 20372:3 20410:1 20423:2 20447:3 20456:1 20463:1 20490:2 20500:1 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:1 20706:1 20724:1 20726:1 20739:1 20759:1 20783:1 20794:7 20811:1 20862:1 20875:1 20876:1 20918:8 20928:1 20932:3 20947:3 20957:1 20966:1 21014:1 21023:1 21030:1 21033:2 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21162:1 21176:1936 21178:1 21180:2 21181:1 21220:2 21243:2 21257:1 21281:1 21298:1 21300:1 21301:1 21313:1 21361:3 21365:1 21385:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:3 21547:1 21549:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:3 22162:1 22170:1 22172:1 22173:1 22177:1 22211:1 22213:2 22224:1 22246:1 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:2 22413:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:2 22461:1 22469:1 22478:16 22493:1 22498:1 22503:1 22518:1 22530:1 22533:1 22541:4 22545:1 22567:1 22568:1 22590:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22712:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:2 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:2 22846:1 22847:1 22851:1 22852:1 22866:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22984:19 22993:1 23001:1 23012:1 23014:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23164:1 23187:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23294:2 23298:1 23300:1 23307:1 23318:1 23443:2 23459:1 23471:2 23518:1 23526:3 23546:1 23554:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:1 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:14 23722:1 23725:1 23733:2 23735:3 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:3 23881:1 23913:2 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:2 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24228:3 24231:5 24261:1 24265:1 24298:1 24317:1 24338:1 24351:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24395:6 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:1 24466:1 24469:5 24470:1 24477:1 24480:1 24481:2 24513:1 24515:2 24536:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:3 24634:1 24644:2 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24752:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:1 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:4 25060:2 25067:1 25071:2 25076:2 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25215:2 25221:1 25228:1 25239:1 25242:1 25250:4 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25347:1 25348:1 25376:1 25387:3 25391:1 25396:2 25401:1 25403:1 25406:1 25418:2 25427:1 25432:1 25440:1 25442:1 25447:1 25458:1 25464:1 25465:4 25472:2 25482:1 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:1 25756:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25901:6 25906:1 25913:1 25915:1 25920:1 25931:1 25946:3 25947:2 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26055:1 26063:1 26085:1 26091:1 26120:1 26157:2 26168:1 26185:1 26207:1 26213:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26476:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:3 26555:1 26561:1 26609:1 26615:3 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26863:1 26871:2 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27008:1 27022:1 27025:1 27048:1 27054:1 27060:1 27065:1 27147:1 27157:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27316:1 27324:2 27337:1 27345:2 27376:1 27391:1 27405:2 27423:1 27428:1 27429:1 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27550:1 27560:2 27570:2 27574:1 27626:2 27633:1 27663:1 27694:2 27703:1 27705:2 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:4 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:2 27949:1 27953:1 27955:1 27956:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28112:1 28119:1 28142:1 28146:1 28162:1 28193:1 28218:1 28234:2 28245:1 28270:1 28290:1 28302:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28496:1 28521:1 28546:1 28571:5 28595:1 28609:5 28638:1 28705:2 28706:1 28712:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28836:1 28839:1 28845:2 28850:3 28851:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:1 28967:3 28969:1 28973:2 28994:2 28997:1 29025:1 29048:1 29063:2 29076:2 29103:1 29119:1 29153:1 29157:3 29183:1 29191:5 29193:4 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29748:11 29749:2 29761:1 29787:1 29799:1 29818:2 29839:2 29844:1 29877:1 29881:1 29886:1 29892:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:2 30118:1 30126:1 30128:1 30140:2 30169:1 30171:1 30209:1 30218:1 30243:1 30283:1 30303:1 30319:1 30320:1 30369:1 30386:1 30412:1 30415:1 30431:2 30455:1 30459:2 30468:1 30480:1 30503:1 30505:1 30521:1 30539:1 30541:3 30556:1 30574:1 30598:1 30602:1 30625:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:3 30769:1 30773:2 30794:2 30798:2 30801:1 30813:2 30839:1 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30882:1 30888:2 30926:1 30935:1 30944:2 30949:2 30994:1 30997:1 31011:1 31033:1 31039:3 31068:1 31072:3 31088:1 31092:1 31098:1 31101:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31194:2 31197:1 31206:1 31209:1 31215:1 31243:1 31254:1 31260:1 31319:1 31330:3 31356:1 31399:1 31420:2 31422:1 31429:1 31453:1 31472:1 31474:1 31477:1 31506:1 31532:1 31542:2 31560:2 31562:2 31565:1 31575:1 31577:2 31622:1 31631:2 31638:1 31705:1 31714:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32081:1 32086:3 32099:2 32106:1 32155:1 32168:1 32175:1 32200:1 32206:5 32219:1 32246:1 32248:4 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:4 32355:1 32373:1 32382:1 32388:1 32400:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32551:1 32552:1 32560:3 32562:2 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32736:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32934:1 32967:1 32969:2 32976:1 32995:1 33014:1 33019:2 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33140:1 33141:2 33146:1 33159:1 33184:2 33219:1 33229:1 33233:1 33240:1 33252:1 33268:1 33269:1 33275:1 33276:1 33318:1 33326:4 33332:1 33350:1 33364:3 33379:2 33400:1 33409:1 33419:2 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:2 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:4 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 76:1 89:1 95:1 99:1 120:2 127:1 138:1 191:4 207:5 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 616:1 619:1 628:1 633:1 662:1 670:1 671:2 676:1 680:4 719:4 737:1 745:1 816:6 831:1 851:1 883:1 885:1 909:1 924:1 973:1 999:7 1000:1 1022:1 1026:3 1030:1 1050:1 1064:1 1066:3 1089:1 1093:1 1098:4 1102:1 1111:1 1142:2 1144:3 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1346:1 1349:1 1354:1 1361:1 1364:1 1383:1 1389:1 1405:1 1407:1 1419:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1523:1 1529:3 1554:2 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:2 1672:3 1680:1 1727:1 1763:2 1800:2 1810:2 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:1 1986:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2446:2 2458:2 2466:1 2470:2 2495:1 2505:1 2507:1 2511:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2599:5 2604:1 2607:3 2609:2 2612:3 2615:1 2667:1 2676:1 2679:1 2680:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2742:1 2763:1 2769:1 2795:1 2809:1 2822:1 2853:1 2863:1 2875:1 2877:1 2888:1 2898:1 2904:1 2911:1 2938:1 2988:1 2995:1 3013:1 3034:1 3035:1 3036:1 3045:2 3061:1 3077:3 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:7 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3265:5 3306:2 3314:1 3318:19 3333:1 3337:1 3351:1 3355:1 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3462:1 3465:1 3483:1 3487:1 3511:1 3534:2 3542:2 3548:1 3590:1 3636:1 3647:1 3648:2 3661:1 3663:1 3667:1 3669:1 3689:5 3691:1 3697:1 3723:8 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3997:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4200:1 4209:1 4227:1 4237:1 4244:1 4262:3 4270:2 4276:1 4288:1 4313:1 4317:2 4332:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4590:1 4629:1 4643:5 4646:1 4648:2 4653:1 4705:2 4714:1 4725:1 4726:1 4729:1 4739:3 4754:3 4765:2 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:1 4855:1 4859:1 4870:2 4891:2 4894:1 4907:1 4914:1 4930:2 4937:1 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5061:1 5074:1 5077:1 5093:1 5118:1 5147:5 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:1 5290:1 5298:1 5303:3 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5461:1 5500:2 5511:1 5523:26 5528:1 5546:1 5567:1 5571:1 5608:1 5617:1 5619:1 5645:1 5656:1 5668:2 5685:3 5686:7 5689:2 5694:2 5695:2 5700:1 5702:2 5708:2 5715:1 5716:2 5717:2 5718:1 5719:1 5745:5 5784:1 5811:2 5819:1 5822:1 5861:1 5865:2 5881:1 5919:1 5926:5 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6107:1 6111:1 6114:1 6118:1 6138:1 6147:1 6163:1 6185:1 6202:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6399:1 6436:3 6480:1 6481:2 6484:1 6495:1 6532:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6716:1 6733:1 6739:2 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:1 6982:1 6986:1 6998:1 7002:1 7020:5 7043:1 7059:1 7062:1 7067:1 7092:1 7100:1 7110:1 7141:8 7169:5 7188:5 7193:1 7194:1 7212:2 7232:4 7233:1 7240:5 7242:2 7248:2 7249:1 7253:2 7254:3 7255:1 7257:2 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:2 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7524:1 7525:3 7559:1 7583:1 7587:1 7603:1 7613:1 7621:5 7698:1 7715:2 7722:4 7735:1 7748:4 7749:3 7830:1 7862:1 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7979:1 7986:1 7987:1 7990:1 8049:1 8051:1 8055:1 8074:3 8104:1 8110:2 8112:1 8150:2 8154:2 8158:1 8160:1 8162:1 8169:1 8171:2 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:4 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:5 8693:5 8704:1 8716:3 8745:1 8746:1 8759:32 8783:1 8786:18 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9019:1 9022:1 9028:1 9040:1 9059:1 9080:1 9125:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:4 9224:2 9229:1 9266:2 9287:1 9301:1 9305:1 9326:19 9360:2 9370:1 9392:3 9420:1 9431:1 9438:1 9451:3 9485:1 9495:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9619:1 9624:1 9626:1 9630:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9958:1 9976:1 9998:1 10008:1 10012:1 10015:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:2 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10220:1 10231:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10309:1 10339:2 10353:5 10362:1 10398:1 10404:1 10414:2 10434:1 10477:1 10489:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10722:1 10732:1 10734:1 10758:1 10787:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:1 10916:2 10924:1 10927:1 10938:3 10957:2 10958:2 10974:3 10994:1 10996:1 11019:1 11032:1 11038:1 11043:1 11054:1 11082:3 11098:1 11100:1 11104:1 11109:1 11111:1 11129:1 11147:1 11148:1 11150:2 11156:1 11171:1 11184:1 11248:2 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11300:1 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:2 11424:1 11432:1 11440:1 11454:1 11467:1 11475:3 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:1 11549:1 11551:2 11559:1 11578:1 11582:1 11635:1 11639:2 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11814:1 11820:1 11861:1 11867:1 11870:1 11875:1 11880:1 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:2 11980:1 12000:1 12008:1 12025:1 12033:1 12049:1 12051:3 12052:1 12062:1 12101:1 12121:1 12129:1 12165:1 12175:4 12204:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12323:1 12355:2 12359:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:2 12453:1 12455:2 12461:7 12474:1 12496:1 12507:1 12512:1 12541:1 12563:1 12566:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12651:1 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12807:1 12813:2 12833:1 12850:1 12853:1 12867:1 12871:1 12877:1 12897:1 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:1 12972:5 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:3 13240:1 13241:2 13252:1 13266:2 13268:2 13273:1 13274:1 13275:2 13277:1 13284:3 13286:4 13288:2 13289:1 13291:4 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:2 13360:1 13361:1 13379:1 13382:3 13387:1 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13692:1 13698:5 13702:1 13713:5 13728:1 13744:1 13766:1 13778:1 13789:1 13809:1 13818:1 13835:1 13852:1 13855:1 13858:1 13863:2 13883:1 13885:1 13899:1 13907:1 13923:1 13956:1 13970:2 13979:1 14003:1 14012:1 14060:1 14061:1 14084:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:1 14307:1 14326:1 14353:1 14355:2 14360:1 14366:1 14399:2 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:1 14582:2 14585:1 14587:1 14591:2 14596:1 14603:1 14606:1 14613:1 14625:2 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:2 14857:2 14858:1 14885:1 14924:2 14929:1 14943:5 14976:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:1 15125:3 15128:2 15137:1 15148:1 15159:2 15164:1 15199:1 15229:6 15301:2 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:4 15404:1 15410:2 15438:2 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15547:1 15548:2 15554:1 15555:3 15556:1 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15628:1 15648:1 15650:2 15664:1 15675:2 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:2 15793:1 15819:1 15831:1 15858:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15946:1 15947:1 15963:2 15967:1 15999:1 16004:1 16012:2 16028:2 16042:2 16055:1 16069:1 16116:1 16121:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:1 16297:1 16304:1 16313:1 16322:2 16323:3 16330:1 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:2 16511:1 16515:1 16519:3 16521:1 16524:1 16526:2 16533:2 16554:1 16561:1 16572:1 16582:1 16597:2 16613:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16672:1 16690:1 16698:1 16702:1 16708:1 16720:1 16725:1 16736:1 16742:2 16747:1 16769:1 16773:2 16781:1 16800:1 16806:1 16827:1 16838:1 16840:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17108:1 17111:1 17150:1 17184:1 17211:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17304:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:2 17510:1 17520:1 17521:1 17522:5 17543:1 17548:1 17564:1 17578:2 17591:3 17602:1 17605:1 17606:1 17628:3 17636:1 17637:7 17646:3 17654:1 17675:1 17683:1 17684:1 17688:5 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17803:1 17808:1 17809:1 17812:1 17815:1 17816:2 17828:2 17842:1 17845:2 17846:1 17847:4 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17928:1 17947:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:6 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18356:1 18357:2 18364:4 18371:3 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18489:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18678:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18769:1 18778:2 18782:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:3 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:1 19007:1 19011:1 19017:1 19027:5 19034:1 19045:1 19046:1 19052:17 19074:1 19075:1 19100:1 19105:2 19134:2 19136:1 19155:3 19159:1 19167:1 19182:1 19238:1 19250:1 19281:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:2 19441:1 19447:1 19458:1 19465:1 19470:3 19492:2 19511:1 19512:1 19525:1 19576:1 19590:1 19591:1 19611:4 19627:1 19646:1 19652:2 19654:1 19699:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:2 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20054:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20218:1 20276:1 20277:1 20282:3 20315:1 20320:1 20330:1 20358:2 20372:3 20410:1 20423:2 20447:3 20456:1 20463:1 20490:2 20500:1 20504:1 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:1 20671:1 20706:1 20724:1 20726:1 20739:1 20746:1 20759:1 20783:1 20794:7 20811:1 20862:1 20875:1 20876:1 20918:9 20928:1 20932:3 20947:3 20957:1 20966:1 21014:1 21023:1 21030:3 21033:2 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21160:1 21162:1 21176:1997 21178:1 21180:2 21181:1 21220:2 21243:3 21257:1 21281:1 21298:1 21300:1 21301:1 21313:1 21361:3 21365:1 21385:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:3 21547:1 21549:1 21570:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:3 22112:1 22162:1 22170:1 22172:1 22173:1 22177:1 22211:1 22213:2 22224:1 22246:3 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:2 22413:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:3 22461:1 22469:1 22478:16 22481:1 22493:1 22498:1 22503:1 22518:1 22530:1 22533:1 22541:4 22545:1 22567:1 22568:1 22590:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22712:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:2 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:3 22846:1 22847:1 22851:1 22852:1 22866:1 22873:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22959:1 22984:19 22993:1 23001:1 23012:1 23014:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23164:1 23187:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23294:2 23298:1 23300:1 23307:1 23318:1 23442:1 23443:2 23459:1 23471:2 23518:1 23526:3 23546:1 23554:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:2 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:14 23722:1 23725:1 23733:2 23735:5 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:3 23881:1 23913:2 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:3 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24228:3 24231:5 24261:1 24265:1 24298:1 24317:1 24338:1 24351:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24395:6 24398:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:2 24466:1 24467:1 24469:5 24470:1 24477:1 24480:1 24481:2 24494:1 24513:1 24515:2 24536:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:3 24634:1 24644:2 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24752:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:2 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:5 25060:2 25067:1 25071:2 25076:2 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25215:2 25221:1 25222:1 25228:1 25239:1 25242:1 25246:1 25250:4 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25347:1 25348:1 25376:1 25387:3 25391:1 25396:2 25401:1 25403:1 25406:1 25418:2 25427:1 25432:1 25440:1 25442:2 25447:1 25458:1 25464:1 25465:4 25472:2 25482:1 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:1 25756:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25892:1 25901:6 25906:1 25913:1 25915:1 25920:1 25931:1 25946:3 25947:2 25980:1 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26055:1 26063:1 26085:1 26091:1 26118:1 26120:1 26157:2 26168:1 26185:1 26207:1 26213:1 26215:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26476:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:3 26555:2 26561:1 26609:1 26615:3 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26857:1 26863:1 26871:2 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27008:1 27022:1 27025:1 27048:1 27054:1 27060:1 27065:1 27138:1 27147:1 27157:1 27191:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27316:1 27324:2 27337:1 27345:2 27376:1 27391:1 27405:2 27423:1 27428:1 27429:1 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27526:1 27550:1 27560:2 27570:2 27574:1 27626:2 27633:1 27663:1 27694:2 27703:1 27705:2 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:4 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:2 27949:1 27953:1 27955:1 27956:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28101:2 28112:1 28119:2 28142:1 28146:1 28162:1 28193:1 28218:1 28234:2 28245:1 28270:1 28290:2 28302:1 28316:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28496:1 28521:1 28546:1 28569:1 28571:5 28595:1 28609:5 28638:1 28705:2 28706:1 28712:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28834:1 28836:1 28839:1 28845:2 28850:3 28851:2 28875:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:2 28967:3 28969:1 28973:2 28994:2 28997:1 29025:1 29048:1 29063:2 29076:2 29103:1 29119:1 29123:1 29153:1 29157:3 29183:1 29191:5 29193:4 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29440:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29748:12 29749:2 29761:1 29787:1 29799:1 29818:2 29839:2 29844:1 29877:1 29881:1 29886:2 29892:2 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:2 30118:1 30120:1 30126:1 30128:1 30140:2 30169:1 30171:1 30209:1 30218:1 30233:1 30243:1 30283:1 30303:1 30319:1 30320:1 30369:1 30386:1 30412:1 30415:1 30431:2 30455:1 30459:2 30468:1 30480:1 30503:1 30505:1 30521:1 30539:1 30541:3 30556:1 30574:1 30579:1 30598:1 30602:1 30625:1 30676:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:3 30769:1 30773:2 30794:2 30798:2 30801:1 30813:2 30839:1 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30882:1 30888:2 30926:1 30935:1 30944:2 30949:2 30959:1 30994:1 30997:1 31011:1 31033:1 31039:3 31068:1 31072:3 31088:2 31092:1 31098:1 31101:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31194:2 31197:1 31206:1 31207:1 31209:2 31215:1 31243:1 31254:1 31260:1 31319:1 31330:3 31345:1 31356:1 31399:1 31420:2 31422:1 31429:1 31453:1 31472:1 31474:1 31477:1 31506:1 31532:1 31542:2 31560:2 31562:2 31565:1 31575:1 31577:2 31604:2 31622:1 31631:2 31638:1 31700:1 31705:1 31714:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31897:1 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32051:1 32065:1 32069:1 32081:1 32086:3 32099:2 32106:1 32155:1 32168:1 32175:1 32200:2 32206:5 32219:1 32246:1 32248:6 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:5 32355:1 32362:1 32373:1 32382:1 32388:1 32400:1 32404:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32551:1 32552:1 32560:4 32562:2 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32630:1 32633:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32735:1 32736:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32923:1 32934:1 32967:1 32969:2 32976:2 32995:1 33014:1 33019:3 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33139:2 33140:1 33141:2 33146:1 33159:1 33184:2 33193:1 33210:1 33219:1 33222:1 33229:1 33233:1 33240:1 33252:1 33268:1 33269:1 33275:1 33276:1 33318:1 33326:4 33332:1 33350:1 33364:3 33379:2 33400:1 33409:1 33419:2 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:3 33463:2 33465:1 33467:1 33469:1 33474:3 33479:1 33499:1 33508:1 33516:4 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 54:1 76:1 89:1 95:1 99:1 120:2 127:1 138:1 191:4 207:5 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:1 616:1 619:1 628:1 633:1 662:1 670:1 671:2 676:1 680:4 719:4 737:1 745:1 816:6 831:1 851:1 883:1 885:1 909:1 924:1 973:1 999:7 1000:1 1022:2 1026:3 1030:1 1050:1 1064:2 1066:3 1089:1 1093:1 1098:4 1102:1 1111:1 1142:2 1144:3 1151:1 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1346:1 1349:1 1354:1 1361:1 1364:1 1383:1 1389:1 1405:1 1407:1 1410:1 1419:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1523:1 1529:3 1554:2 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:2 1672:3 1680:1 1727:1 1763:2 1800:2 1810:2 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:1 1986:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2446:2 2458:2 2466:1 2470:2 2495:1 2505:1 2507:2 2511:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2599:5 2604:1 2607:3 2609:2 2612:3 2615:1 2667:1 2676:1 2679:1 2680:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2737:1 2742:1 2763:1 2769:1 2795:1 2809:1 2822:1 2853:1 2863:1 2875:1 2877:1 2888:1 2898:1 2904:1 2911:1 2938:1 2988:1 2995:1 3013:1 3034:1 3035:1 3036:1 3045:2 3061:1 3077:3 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:7 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3265:5 3306:2 3314:1 3318:20 3333:1 3337:1 3351:1 3355:1 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3462:1 3465:1 3483:1 3487:1 3511:1 3534:2 3542:3 3548:1 3590:1 3636:1 3647:1 3648:2 3661:1 3663:1 3667:1 3669:1 3689:5 3691:1 3697:1 3723:8 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3997:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4200:1 4209:1 4227:1 4237:1 4244:1 4262:3 4270:2 4276:1 4288:1 4313:1 4317:2 4332:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4590:1 4629:1 4643:5 4646:1 4648:2 4653:1 4705:2 4714:1 4725:1 4726:1 4729:1 4739:3 4754:3 4765:2 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:2 4855:1 4859:1 4870:2 4891:2 4894:1 4907:1 4914:1 4930:2 4937:1 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5061:1 5074:1 5077:1 5093:1 5118:1 5147:5 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:2 5290:1 5298:1 5303:3 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5406:1 5416:1 5455:1 5459:1 5461:1 5500:2 5511:1 5523:26 5528:1 5546:1 5567:1 5571:1 5608:1 5617:1 5619:1 5645:1 5656:1 5668:2 5685:3 5686:7 5689:2 5694:2 5695:2 5700:1 5702:2 5708:2 5715:1 5716:2 5717:2 5718:1 5719:1 5745:5 5784:1 5811:2 5819:1 5822:1 5861:1 5865:2 5881:1 5919:1 5926:5 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6107:1 6111:1 6114:1 6118:1 6138:1 6147:1 6163:1 6185:1 6202:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6399:1 6436:3 6480:1 6481:2 6484:1 6495:1 6532:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6716:1 6733:1 6739:2 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:1 6982:1 6986:1 6998:1 7002:1 7020:5 7043:1 7059:1 7062:1 7067:1 7092:1 7100:1 7110:1 7141:8 7169:5 7188:5 7193:1 7194:1 7212:2 7232:4 7233:1 7240:5 7242:3 7248:2 7249:1 7253:2 7254:3 7255:1 7257:2 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:2 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7524:1 7525:3 7559:1 7583:1 7587:1 7603:1 7613:1 7621:5 7698:1 7715:2 7722:4 7735:1 7748:4 7749:3 7830:1 7862:2 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7979:1 7986:1 7987:1 7990:1 8049:1 8051:1 8055:1 8074:3 8104:1 8110:2 8112:1 8150:2 8154:2 8158:2 8160:1 8162:1 8169:1 8171:2 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:4 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:6 8693:5 8704:1 8716:3 8745:1 8746:1 8759:32 8783:1 8786:19 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9019:1 9022:1 9028:1 9040:1 9059:1 9080:1 9125:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:4 9224:2 9229:1 9266:2 9287:1 9301:1 9305:1 9326:20 9360:2 9370:1 9379:1 9392:3 9420:1 9431:1 9438:1 9451:3 9485:1 9495:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9619:1 9624:1 9626:1 9630:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9958:1 9976:1 9998:1 10008:1 10012:1 10015:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:2 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10220:1 10231:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10309:1 10339:2 10353:5 10362:1 10398:1 10404:1 10414:2 10434:1 10477:1 10489:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10722:1 10732:1 10734:1 10758:1 10787:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:1 10916:2 10924:1 10927:1 10938:4 10957:2 10958:2 10974:4 10994:1 10996:1 11019:1 11032:1 11038:1 11043:1 11054:1 11082:3 11098:1 11100:1 11104:1 11109:1 11111:1 11129:1 11147:1 11148:1 11150:3 11156:1 11171:1 11184:1 11248:2 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11300:1 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:2 11424:1 11432:1 11440:1 11454:1 11467:1 11475:3 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:2 11549:1 11551:2 11559:1 11578:1 11582:1 11635:1 11639:2 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11814:1 11820:1 11861:1 11867:1 11870:1 11875:1 11880:1 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:2 11980:1 12000:1 12008:1 12025:1 12033:1 12049:1 12051:3 12052:1 12062:1 12101:1 12121:1 12129:1 12165:1 12175:4 12204:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12323:1 12355:2 12359:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:2 12453:1 12455:2 12461:7 12474:1 12496:1 12507:1 12512:1 12541:1 12563:1 12566:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12651:1 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12778:3 12802:1 12805:1 12807:1 12813:2 12833:1 12850:1 12853:1 12867:1 12871:1 12877:1 12897:2 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:1 12972:5 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:3 13240:1 13241:2 13252:1 13266:2 13268:2 13273:1 13274:1 13275:2 13277:1 13284:3 13286:4 13288:2 13289:1 13291:4 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:2 13360:1 13361:2 13379:1 13382:3 13387:1 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13692:1 13698:5 13702:1 13713:5 13728:1 13744:1 13766:1 13778:1 13789:1 13809:1 13818:1 13835:1 13852:1 13855:1 13858:1 13863:2 13883:1 13885:1 13899:1 13907:1 13923:1 13956:1 13970:2 13979:1 14003:1 14012:1 14060:1 14061:1 14084:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:2 14307:1 14311:1 14326:1 14353:1 14355:2 14360:1 14366:1 14399:2 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:1 14582:2 14585:1 14587:1 14591:2 14596:1 14603:1 14606:1 14613:1 14625:2 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:2 14857:2 14858:1 14885:1 14924:2 14929:1 14943:5 14976:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:1 15125:3 15128:2 15137:2 15148:1 15159:2 15164:1 15199:1 15229:6 15301:2 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:4 15404:1 15410:2 15438:2 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15547:1 15548:2 15554:1 15555:3 15556:1 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15628:1 15648:1 15650:2 15664:1 15675:3 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:2 15793:1 15819:1 15831:1 15858:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15946:1 15947:1 15963:2 15967:1 15999:1 16004:1 16012:2 16028:2 16042:2 16055:1 16069:1 16116:1 16121:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:2 16297:1 16304:1 16313:1 16322:2 16323:3 16330:1 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:2 16511:1 16515:1 16519:3 16521:1 16524:1 16526:2 16533:2 16554:1 16561:1 16572:1 16582:1 16597:2 16613:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16672:1 16690:1 16698:1 16702:1 16708:1 16720:1 16725:1 16736:1 16742:2 16747:1 16769:1 16773:2 16781:1 16800:1 16806:1 16827:1 16838:1 16840:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17091:1 17108:1 17111:1 17150:1 17184:1 17211:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17304:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:2 17510:1 17520:1 17521:1 17522:6 17543:1 17548:1 17564:1 17578:2 17591:3 17592:1 17602:1 17605:1 17606:1 17628:3 17636:1 17637:7 17646:3 17654:1 17675:1 17683:1 17684:1 17688:5 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17803:2 17808:1 17809:1 17812:1 17815:1 17816:2 17828:2 17842:1 17845:2 17846:1 17847:5 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17916:1 17928:1 17947:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:6 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18300:1 18356:1 18357:2 18364:4 18371:3 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18489:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18678:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18769:1 18778:2 18782:1 18808:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:3 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:1 19007:1 19011:1 19017:1 19027:5 19034:1 19045:1 19046:1 19052:18 19074:1 19075:1 19100:1 19105:2 19134:2 19136:1 19155:3 19159:1 19167:1 19182:1 19197:1 19238:1 19250:1 19281:1 19283:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:3 19441:1 19447:1 19458:1 19465:1 19470:3 19492:2 19511:1 19512:1 19525:1 19576:1 19590:1 19591:1 19611:4 19627:1 19646:2 19652:2 19654:1 19699:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:2 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20054:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20218:1 20276:1 20277:1 20282:3 20315:1 20320:1 20330:1 20358:2 20372:3 20410:1 20423:2 20431:1 20447:3 20456:1 20463:1 20490:2 20500:1 20504:1 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:1 20671:1 20706:1 20724:1 20726:1 20739:1 20746:1 20759:1 20783:1 20787:1 20794:7 20811:1 20862:1 20875:1 20876:1 20918:9 20928:1 20932:3 20947:3 20957:1 20966:1 21014:1 21023:1 21030:3 21033:2 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21160:1 21162:1 21176:2040 21178:1 21180:2 21181:1 21220:2 21243:3 21257:1 21281:1 21298:1 21300:1 21301:1 21313:1 21361:3 21365:1 21385:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:3 21547:1 21549:1 21570:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:3 22112:1 22162:1 22170:1 22172:1 22173:1 22177:1 22211:1 22213:2 22224:1 22246:3 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:2 22413:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:3 22461:1 22469:1 22478:17 22481:1 22493:1 22498:1 22503:1 22518:1 22530:1 22533:1 22541:5 22545:1 22567:1 22568:1 22590:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22712:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:2 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:3 22846:1 22847:1 22851:1 22852:1 22866:1 22873:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22944:1 22959:1 22984:20 22993:1 23001:1 23012:1 23014:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23164:1 23187:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23294:3 23298:1 23300:1 23307:1 23318:1 23442:1 23443:2 23459:1 23471:2 23518:1 23526:3 23546:1 23554:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:2 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:15 23722:1 23725:1 23733:3 23735:5 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:3 23881:1 23913:3 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:3 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24228:3 24231:5 24261:2 24265:1 24298:1 24317:1 24338:1 24351:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24395:6 24398:2 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:3 24466:1 24467:1 24469:5 24470:1 24477:2 24480:1 24481:2 24494:1 24513:1 24515:2 24536:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:3 24634:1 24644:2 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24752:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:2 24891:1 24920:1 24943:2 24971:2 24986:1 24992:1 25019:5 25060:2 25067:1 25071:2 25076:2 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25215:2 25221:1 25222:1 25228:2 25239:1 25242:1 25246:1 25250:4 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25347:1 25348:1 25376:1 25387:3 25391:1 25396:2 25401:1 25403:1 25406:1 25417:1 25418:2 25427:1 25432:1 25440:1 25442:2 25447:1 25458:1 25464:1 25465:4 25472:2 25482:1 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:1 25756:1 25759:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25892:1 25901:7 25906:1 25913:1 25915:1 25920:1 25931:1 25946:3 25947:2 25980:1 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26055:1 26063:1 26085:1 26091:1 26118:1 26120:1 26157:2 26168:1 26184:1 26185:1 26207:1 26213:1 26215:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26476:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:3 26555:2 26561:1 26609:1 26615:3 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26857:1 26863:1 26871:2 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27008:1 27022:1 27025:1 27048:1 27054:1 27060:1 27065:1 27068:1 27138:1 27147:1 27157:1 27191:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27316:1 27324:2 27337:1 27345:2 27376:1 27391:1 27405:2 27423:1 27428:1 27429:1 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27526:1 27550:1 27560:2 27570:2 27574:1 27626:2 27633:1 27663:1 27694:2 27703:1 27705:2 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:4 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:2 27949:1 27953:1 27955:1 27956:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28101:2 28112:1 28119:2 28142:1 28146:1 28162:1 28193:1 28218:1 28234:2 28245:1 28270:1 28290:2 28302:1 28316:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28475:1 28496:1 28521:1 28546:1 28569:2 28571:5 28595:1 28609:5 28638:1 28705:2 28706:1 28712:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28834:1 28836:1 28839:1 28845:2 28850:3 28851:2 28875:1 28878:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:2 28967:3 28969:1 28973:2 28994:2 28997:1 29025:1 29048:1 29063:2 29076:2 29103:1 29119:1 29123:1 29153:1 29157:3 29183:1 29191:6 29193:4 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29440:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29748:12 29749:2 29761:1 29787:1 29799:1 29818:3 29839:2 29844:1 29877:1 29881:1 29886:2 29892:2 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:2 30118:1 30120:1 30126:1 30128:1 30140:2 30169:1 30171:1 30209:1 30218:1 30233:1 30243:1 30283:1 30303:1 30319:1 30320:1 30369:1 30386:1 30412:1 30415:1 30431:2 30455:1 30459:2 30468:1 30480:1 30503:1 30505:1 30521:1 30539:1 30541:3 30556:1 30574:1 30579:1 30598:1 30602:1 30625:1 30676:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:4 30769:1 30773:2 30794:2 30798:3 30801:1 30813:2 30839:1 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30882:1 30888:2 30926:1 30935:1 30944:2 30949:2 30959:1 30994:1 30997:1 31011:1 31033:1 31039:3 31068:1 31072:3 31088:2 31092:1 31098:1 31101:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31193:1 31194:2 31197:1 31206:1 31207:1 31209:2 31215:1 31243:1 31254:1 31260:1 31319:2 31330:3 31345:1 31356:1 31399:1 31420:2 31422:1 31429:1 31453:1 31472:1 31474:1 31477:1 31506:1 31532:1 31542:2 31560:2 31562:2 31565:1 31575:1 31577:3 31604:2 31622:1 31631:2 31638:1 31700:1 31705:1 31714:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31897:1 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32051:1 32065:1 32069:1 32081:1 32086:3 32099:2 32106:1 32155:1 32168:1 32175:1 32200:2 32206:5 32219:1 32246:1 32248:7 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:5 32355:1 32362:1 32373:1 32382:1 32388:1 32400:1 32404:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32551:1 32552:1 32560:4 32562:2 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32630:1 32633:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32735:1 32736:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32923:1 32934:1 32967:1 32969:2 32976:2 32995:1 33014:1 33019:3 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33139:2 33140:1 33141:2 33146:1 33159:1 33184:2 33193:1 33210:1 33219:1 33222:1 33229:1 33233:1 33240:1 33252:2 33268:1 33269:1 33275:1 33276:1 33318:1 33326:4 33332:1 33350:1 33364:3 33379:2 33400:1 33409:1 33419:2 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:3 33463:2 33465:1 33467:2 33469:1 33474:3 33479:1 33499:1 33508:1 33516:4 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 54:1 76:1 89:1 95:1 99:1 120:2 127:1 138:1 191:4 207:5 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 561:1 573:1 580:2 616:1 619:1 628:1 633:1 662:1 670:1 671:2 676:1 680:4 719:4 737:1 745:1 816:6 831:1 851:1 883:1 885:1 909:1 924:1 973:1 996:1 999:7 1000:1 1022:2 1026:3 1030:1 1050:1 1064:2 1066:3 1089:1 1093:1 1098:4 1102:1 1111:1 1142:2 1144:3 1151:1 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1346:1 1349:1 1354:1 1361:1 1364:1 1383:1 1389:1 1405:1 1407:1 1410:1 1419:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1523:1 1529:3 1554:2 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:2 1672:3 1680:1 1727:1 1763:2 1800:2 1810:2 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:1 1986:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2433:1 2446:2 2458:2 2466:1 2470:2 2495:1 2505:1 2507:2 2511:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2555:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2599:5 2604:1 2607:3 2609:2 2612:3 2615:1 2667:1 2676:1 2679:1 2680:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2737:1 2742:1 2763:1 2769:1 2795:1 2809:1 2822:1 2853:1 2863:1 2875:1 2877:1 2888:1 2898:1 2904:1 2911:1 2938:1 2988:1 2995:1 3013:1 3034:1 3035:1 3036:1 3045:2 3061:1 3077:3 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:7 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3265:5 3306:2 3314:1 3318:20 3333:1 3337:1 3351:1 3355:2 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3462:1 3465:1 3483:1 3487:1 3511:1 3534:2 3542:3 3548:1 3590:1 3636:1 3647:1 3648:2 3661:1 3663:1 3667:1 3669:1 3689:5 3691:1 3697:1 3723:8 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3997:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4200:2 4209:1 4227:1 4237:1 4244:1 4262:3 4270:2 4276:1 4288:1 4313:1 4317:2 4332:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4590:1 4629:1 4643:5 4646:1 4648:2 4653:1 4705:2 4714:1 4725:1 4726:1 4729:1 4739:3 4754:3 4765:2 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:2 4855:1 4859:1 4870:2 4891:2 4894:1 4907:1 4914:1 4930:2 4937:1 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5061:1 5074:1 5077:1 5093:1 5118:1 5147:5 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:2 5290:1 5298:1 5303:3 5308:1 5315:1 5321:1 5332:1 5366:2 5389:1 5400:1 5406:1 5416:1 5455:1 5459:1 5461:1 5500:2 5511:1 5523:26 5528:1 5546:1 5567:1 5571:1 5608:1 5617:1 5619:1 5645:1 5656:1 5668:2 5685:3 5686:7 5689:2 5694:2 5695:2 5700:1 5702:2 5708:2 5715:1 5716:2 5717:2 5718:1 5719:1 5745:5 5784:1 5811:2 5819:1 5822:1 5861:1 5865:2 5881:1 5919:1 5926:5 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6107:1 6111:1 6114:1 6118:1 6138:1 6147:1 6163:1 6185:1 6202:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6391:1 6399:1 6436:3 6480:1 6481:2 6484:1 6495:1 6532:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6716:1 6733:1 6739:2 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:1 6982:1 6986:1 6998:1 7002:1 7020:5 7043:1 7059:1 7062:1 7067:1 7092:1 7100:1 7110:1 7141:8 7169:5 7188:5 7193:1 7194:1 7212:2 7232:4 7233:1 7240:5 7242:3 7248:2 7249:1 7253:2 7254:3 7255:1 7257:2 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:2 7423:1 7434:1 7454:1 7459:1 7476:1 7479:2 7491:1 7524:1 7525:3 7559:1 7583:1 7587:1 7603:1 7613:1 7621:5 7698:1 7715:2 7722:4 7735:1 7748:4 7749:3 7830:1 7862:2 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7979:1 7986:1 7987:1 7990:1 8049:1 8051:1 8055:1 8074:3 8104:1 8110:2 8112:1 8150:2 8154:2 8158:2 8160:1 8162:1 8169:1 8171:2 8178:1 8187:1 8217:1 8223:1 8247:2 8260:1 8276:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:4 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:6 8693:5 8704:1 8716:3 8745:1 8746:1 8759:32 8783:1 8786:19 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9019:1 9022:1 9028:1 9040:1 9059:1 9080:1 9125:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:4 9224:2 9229:1 9266:2 9287:1 9301:1 9305:1 9326:20 9360:2 9370:1 9379:1 9392:3 9420:1 9431:1 9438:1 9451:3 9485:1 9495:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9619:1 9624:1 9626:1 9630:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9958:1 9976:1 9998:1 10008:1 10012:1 10015:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:2 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10220:1 10231:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10309:1 10339:2 10353:5 10362:1 10398:1 10404:1 10414:2 10434:1 10477:1 10489:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10722:1 10732:1 10734:1 10758:1 10787:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:1 10916:2 10924:1 10927:1 10938:4 10957:2 10958:3 10974:4 10994:1 10996:1 11019:1 11032:1 11038:1 11043:1 11054:1 11082:3 11098:1 11100:1 11104:1 11109:1 11111:1 11129:1 11147:1 11148:1 11150:3 11156:1 11171:1 11184:1 11248:2 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11300:1 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:2 11424:1 11432:1 11440:1 11454:1 11467:1 11475:3 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:2 11549:1 11551:2 11559:1 11578:1 11582:1 11635:1 11639:2 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:1 11751:2 11754:1 11782:1 11814:1 11820:1 11861:1 11867:1 11870:1 11875:1 11880:1 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:2 11980:1 12000:1 12008:1 12025:1 12033:1 12049:1 12051:3 12052:1 12062:1 12101:1 12121:1 12129:1 12165:1 12169:1 12175:4 12204:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12323:1 12355:2 12359:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:2 12453:1 12455:2 12461:7 12474:1 12496:1 12507:1 12512:1 12541:1 12563:1 12566:1 12572:2 12582:1 12603:1 12610:1 12611:1 12649:1 12651:1 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12772:1 12778:3 12802:1 12805:1 12807:1 12813:2 12833:1 12850:1 12853:1 12867:1 12871:1 12877:1 12897:2 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:1 12972:5 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13089:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:3 13240:1 13241:2 13252:1 13266:2 13268:2 13273:1 13274:1 13275:2 13277:1 13284:3 13286:4 13288:2 13289:1 13291:4 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:2 13360:1 13361:2 13379:1 13382:3 13387:1 13411:1 13419:1 13440:1 13456:1 13457:1 13460:4 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13692:1 13698:5 13702:1 13713:5 13728:1 13744:1 13766:1 13778:1 13789:1 13809:1 13818:1 13835:1 13852:1 13855:1 13858:1 13863:2 13883:1 13885:1 13899:1 13907:1 13923:1 13956:1 13970:2 13979:1 14003:1 14012:1 14060:1 14061:1 14084:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:2 14307:1 14311:1 14326:1 14353:1 14355:2 14360:1 14366:1 14399:2 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:1 14582:2 14585:1 14587:1 14591:2 14596:1 14603:1 14606:1 14613:1 14625:2 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:2 14761:1 14774:1 14787:1 14816:2 14857:2 14858:1 14885:1 14924:2 14929:2 14943:5 14976:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:2 15125:3 15128:2 15137:3 15148:1 15159:2 15164:1 15199:1 15229:6 15298:1 15301:2 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:4 15404:1 15410:2 15438:2 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15547:1 15548:2 15554:1 15555:3 15556:1 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15628:1 15648:1 15650:2 15664:1 15675:4 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:2 15793:1 15819:1 15831:1 15858:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15946:1 15947:1 15963:2 15967:1 15999:1 16004:1 16012:2 16028:2 16042:2 16055:1 16069:1 16116:1 16121:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:2 16297:1 16304:1 16313:1 16322:2 16323:3 16330:1 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:2 16511:1 16515:1 16519:3 16521:1 16524:1 16526:2 16533:2 16554:1 16561:1 16572:1 16582:1 16597:2 16613:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16672:1 16690:1 16698:1 16702:1 16708:1 16720:1 16725:1 16736:1 16742:2 16747:1 16769:1 16773:2 16781:1 16800:1 16806:1 16827:1 16838:1 16840:1 16841:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17091:1 17108:1 17111:1 17150:1 17184:1 17211:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17304:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:2 17510:1 17520:1 17521:1 17522:6 17543:1 17548:1 17564:1 17578:2 17591:3 17592:1 17602:2 17605:1 17606:1 17628:3 17636:1 17637:7 17646:3 17654:1 17675:1 17683:1 17684:1 17688:5 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17803:2 17808:1 17809:1 17812:1 17815:1 17816:2 17817:1 17828:2 17842:1 17845:2 17846:1 17847:5 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17916:1 17928:1 17947:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:6 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18300:1 18356:1 18357:2 18364:4 18371:3 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18489:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18678:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18769:1 18778:2 18782:1 18808:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:3 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:1 19007:1 19011:1 19017:1 19027:5 19034:1 19045:1 19046:1 19052:18 19074:1 19075:1 19100:1 19105:2 19134:2 19136:2 19155:3 19159:1 19167:1 19182:1 19197:1 19238:1 19250:1 19281:1 19283:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:3 19441:1 19447:1 19458:1 19465:1 19470:3 19492:2 19511:1 19512:1 19525:1 19576:1 19590:1 19591:1 19611:4 19627:1 19646:2 19652:2 19654:1 19699:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:2 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19839:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20054:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20218:1 20276:1 20277:1 20282:3 20315:1 20320:1 20330:1 20358:2 20372:3 20410:1 20423:2 20431:1 20447:3 20456:1 20463:1 20490:2 20500:1 20504:1 20517:1 20530:1 20531:1 20554:2 20566:1 20567:1 20577:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:1 20671:1 20706:1 20724:1 20726:1 20739:1 20746:1 20759:1 20783:1 20787:1 20794:7 20811:1 20862:1 20875:1 20876:1 20918:9 20928:1 20932:3 20947:3 20957:1 20966:1 21014:1 21023:1 21030:3 21033:2 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21160:1 21162:1 21176:2050 21178:1 21180:2 21181:1 21220:2 21243:3 21257:1 21281:1 21298:1 21300:1 21301:1 21313:1 21361:3 21365:1 21385:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:3 21547:1 21549:1 21570:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:3 22112:1 22162:1 22170:1 22172:1 22173:2 22177:1 22211:1 22213:2 22224:2 22246:3 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22374:1 22381:1 22412:2 22413:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:3 22461:1 22469:1 22478:17 22481:1 22493:1 22498:1 22503:1 22518:1 22530:1 22533:1 22541:5 22545:1 22567:1 22568:1 22590:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22712:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:2 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:3 22846:1 22847:1 22851:1 22852:1 22866:1 22873:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22944:1 22959:1 22984:20 22993:1 23001:1 23012:1 23014:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23164:1 23187:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23294:3 23298:1 23300:1 23307:1 23318:1 23442:1 23443:2 23459:1 23471:2 23518:1 23526:3 23546:1 23554:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:2 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:15 23722:1 23725:1 23733:3 23735:5 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:3 23881:1 23913:4 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:3 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24228:3 24231:5 24261:2 24265:1 24298:1 24317:1 24338:1 24351:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24395:6 24398:2 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:3 24466:1 24467:1 24469:5 24470:1 24477:2 24480:1 24481:2 24494:1 24513:1 24515:2 24536:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:3 24634:1 24644:2 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24752:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:2 24891:1 24920:1 24943:2 24957:1 24971:2 24986:1 24992:1 25019:5 25060:2 25067:1 25071:2 25076:2 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25215:2 25221:1 25222:1 25228:2 25239:1 25242:1 25246:1 25250:5 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25347:1 25348:1 25376:1 25387:3 25391:1 25396:2 25401:1 25403:1 25406:1 25417:1 25418:2 25427:1 25429:1 25432:1 25440:1 25442:2 25447:1 25458:1 25464:1 25465:4 25472:2 25482:1 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25630:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:1 25756:1 25759:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25828:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25892:1 25901:7 25906:1 25913:1 25915:1 25920:1 25931:1 25946:3 25947:2 25980:1 25993:1 26015:1 26027:1 26030:1 26041:1 26044:1 26055:1 26063:1 26085:1 26091:1 26118:1 26120:1 26157:2 26168:1 26184:1 26185:1 26207:1 26208:1 26213:1 26215:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26473:1 26476:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:3 26555:2 26561:1 26609:1 26615:3 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26857:1 26863:1 26871:2 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27008:1 27022:1 27025:1 27048:1 27054:1 27060:1 27065:1 27068:1 27138:1 27147:1 27157:2 27191:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27316:1 27324:2 27337:1 27345:2 27376:1 27391:1 27405:2 27423:1 27428:1 27429:1 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27526:1 27550:1 27560:2 27570:2 27574:1 27626:2 27633:1 27663:1 27694:2 27703:1 27705:2 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:4 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:2 27949:1 27953:1 27955:1 27956:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28101:2 28112:1 28119:2 28142:1 28146:1 28162:1 28193:1 28218:1 28234:2 28245:1 28270:1 28290:2 28302:1 28316:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28443:1 28475:1 28496:1 28521:1 28546:1 28569:2 28571:5 28595:1 28609:5 28638:1 28705:2 28706:1 28712:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28834:1 28836:1 28839:1 28845:2 28850:3 28851:2 28875:1 28878:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:2 28967:3 28969:1 28973:2 28994:2 28997:1 29025:1 29048:1 29063:2 29076:2 29103:1 29119:1 29123:1 29153:1 29157:3 29183:1 29191:6 29193:5 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29440:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29594:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29748:12 29749:2 29761:1 29787:1 29799:1 29818:3 29839:2 29844:1 29877:1 29881:1 29886:2 29892:2 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:2 30118:1 30120:1 30126:1 30128:1 30140:2 30169:1 30171:1 30209:1 30218:1 30233:1 30243:1 30283:1 30303:1 30319:1 30320:1 30369:1 30386:1 30412:1 30415:1 30431:2 30455:1 30459:2 30468:1 30480:1 30503:1 30505:1 30508:1 30521:1 30539:1 30541:3 30547:1 30556:1 30574:1 30579:1 30598:1 30602:1 30625:1 30676:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:4 30769:1 30773:2 30794:2 30798:3 30801:1 30813:2 30839:1 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30882:1 30888:2 30926:1 30935:1 30944:2 30949:2 30959:1 30994:1 30997:1 31011:1 31033:1 31039:3 31068:1 31072:3 31088:2 31092:1 31098:1 31101:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31193:1 31194:2 31197:1 31206:2 31207:1 31209:2 31215:1 31243:1 31254:1 31260:1 31319:2 31330:3 31345:1 31356:1 31399:1 31420:2 31422:1 31429:1 31453:1 31472:1 31474:1 31477:1 31506:1 31532:1 31542:2 31559:1 31560:2 31562:2 31565:1 31575:1 31577:3 31604:2 31622:1 31631:2 31638:1 31700:1 31705:1 31714:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31897:1 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32051:1 32065:1 32069:1 32081:1 32086:3 32099:2 32106:1 32155:1 32168:1 32175:1 32200:2 32206:5 32219:1 32246:1 32248:7 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:5 32355:1 32362:1 32373:1 32382:1 32388:1 32400:1 32404:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32551:1 32552:1 32560:4 32562:2 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32630:1 32633:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32735:1 32736:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32847:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32923:1 32934:1 32967:1 32969:2 32976:2 32995:1 33014:1 33019:3 33036:1 33039:1 33091:1 33094:1 33108:1 33133:1 33139:2 33140:1 33141:2 33146:1 33159:1 33184:2 33193:1 33210:1 33219:1 33222:1 33229:1 33233:1 33240:1 33252:2 33268:1 33269:1 33275:1 33276:1 33318:1 33326:4 33332:1 33350:1 33364:3 33379:2 33400:1 33409:1 33419:2 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:3 33463:2 33465:1 33467:2 33469:1 33474:3 33479:1 33499:1 33508:1 33516:4 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 54:1 76:1 89:1 95:1 99:1 120:2 127:1 138:1 191:4 207:5 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 524:1 561:1 573:1 580:2 616:1 619:1 628:1 633:1 662:1 670:1 671:2 676:1 680:4 719:4 737:1 745:1 816:6 831:1 851:1 883:1 885:1 909:1 924:1 973:1 996:1 999:7 1000:1 1022:2 1026:3 1030:1 1050:1 1064:2 1066:3 1089:1 1093:1 1098:4 1102:1 1111:1 1142:2 1144:3 1151:1 1153:1 1179:1 1185:1 1207:1 1249:1 1287:2 1302:2 1319:3 1322:1 1346:1 1349:1 1354:2 1361:1 1364:1 1383:1 1389:1 1405:1 1407:1 1410:1 1419:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1523:1 1529:3 1554:2 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:1 1663:1 1668:2 1672:3 1680:1 1692:1 1727:1 1763:2 1800:2 1810:2 1813:1 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:1 1986:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2433:1 2446:2 2458:3 2466:1 2470:2 2495:1 2505:1 2507:2 2511:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2555:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2599:5 2604:1 2607:3 2609:2 2612:3 2615:1 2667:1 2676:1 2679:1 2680:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2737:1 2742:1 2763:1 2769:1 2795:1 2809:1 2822:1 2853:1 2863:1 2875:1 2877:1 2888:1 2898:1 2904:1 2911:1 2922:1 2935:1 2938:1 2988:1 2995:1 3013:1 3034:1 3035:1 3036:1 3045:2 3061:1 3077:3 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:7 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3265:5 3306:2 3314:1 3318:21 3333:1 3337:1 3351:1 3355:2 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3462:1 3465:1 3483:1 3487:1 3511:1 3534:2 3542:3 3548:1 3590:1 3636:1 3647:1 3648:2 3661:1 3663:1 3667:1 3669:1 3689:6 3691:1 3697:1 3723:8 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3997:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4200:2 4209:1 4227:1 4237:1 4244:1 4262:3 4270:2 4276:1 4288:1 4313:1 4317:2 4332:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4590:1 4629:1 4643:5 4646:1 4648:2 4653:1 4705:2 4714:1 4725:1 4726:1 4729:1 4739:3 4754:3 4765:2 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:2 4855:1 4859:1 4870:2 4891:2 4894:1 4907:1 4914:1 4930:2 4937:1 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5061:1 5074:1 5077:1 5093:1 5118:1 5147:5 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5213:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:2 5290:1 5298:1 5303:3 5308:1 5315:1 5316:2 5321:1 5332:1 5366:2 5389:1 5400:1 5406:1 5416:1 5455:1 5459:1 5461:1 5471:1 5500:3 5508:1 5511:1 5523:26 5528:1 5546:1 5567:1 5571:1 5608:1 5617:1 5619:1 5645:1 5656:1 5668:3 5685:3 5686:7 5689:2 5694:2 5695:2 5700:1 5702:2 5708:2 5715:1 5716:2 5717:2 5718:1 5719:1 5745:5 5784:1 5811:2 5819:1 5822:1 5861:1 5865:2 5881:1 5919:1 5926:5 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6107:1 6111:1 6114:1 6118:1 6138:1 6147:1 6163:1 6185:1 6202:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6391:1 6399:1 6436:3 6480:1 6481:2 6484:1 6495:1 6532:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6707:1 6716:1 6733:1 6739:2 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:1 6982:1 6986:1 6998:1 7002:1 7020:6 7043:1 7059:1 7062:1 7067:1 7092:1 7100:1 7110:1 7141:8 7169:5 7188:5 7193:1 7194:1 7212:2 7232:4 7233:1 7240:6 7242:3 7248:2 7249:1 7253:2 7254:3 7255:1 7257:2 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:2 7423:1 7434:1 7454:1 7459:1 7476:2 7479:2 7491:1 7524:1 7525:3 7559:1 7583:1 7587:1 7603:1 7613:1 7621:5 7698:1 7715:2 7722:4 7735:1 7748:4 7749:3 7830:1 7862:2 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7979:1 7986:1 7987:1 7990:1 8049:1 8051:1 8055:1 8074:3 8104:1 8110:2 8112:1 8150:2 8154:2 8158:2 8160:1 8162:1 8169:1 8171:2 8178:1 8187:1 8217:1 8220:1 8223:1 8247:2 8260:1 8276:1 8280:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:4 8526:1 8534:1 8544:1 8548:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:6 8693:5 8704:1 8716:3 8745:1 8746:1 8749:1 8759:32 8783:1 8786:20 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8893:1 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9019:1 9022:1 9028:1 9040:1 9059:1 9080:1 9125:1 9127:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:4 9224:2 9229:1 9266:3 9287:1 9301:2 9305:1 9326:20 9360:2 9370:1 9379:1 9392:3 9420:1 9431:1 9435:1 9438:1 9451:3 9485:1 9495:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9619:1 9624:1 9626:1 9630:1 9641:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9958:1 9976:1 9998:1 10008:1 10012:1 10015:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:2 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10220:1 10231:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10302:1 10309:1 10339:2 10353:6 10362:1 10398:1 10404:1 10414:2 10434:1 10477:1 10489:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10722:1 10732:2 10734:1 10758:1 10787:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:2 10916:2 10924:1 10927:1 10938:4 10957:2 10958:3 10974:4 10994:1 10996:1 11019:3 11032:1 11038:1 11043:1 11054:1 11082:3 11098:1 11100:1 11104:1 11109:1 11111:1 11129:1 11147:1 11148:1 11150:3 11156:1 11171:1 11184:1 11248:2 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11300:1 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:2 11424:1 11432:1 11440:1 11454:1 11467:1 11475:4 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:2 11549:1 11551:2 11559:1 11578:1 11582:1 11635:1 11639:2 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:3 11751:2 11754:1 11782:1 11814:1 11820:1 11861:1 11867:1 11870:1 11875:1 11880:3 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:2 11980:1 12000:1 12008:1 12025:1 12033:1 12049:1 12051:3 12052:1 12062:1 12101:1 12121:1 12129:1 12165:1 12169:1 12175:4 12204:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12323:1 12355:2 12359:1 12375:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:2 12453:1 12455:2 12461:7 12474:1 12496:1 12507:1 12512:1 12541:1 12563:1 12566:1 12572:2 12582:1 12603:1 12610:1 12611:1 12622:1 12649:1 12651:1 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12772:1 12778:3 12802:1 12805:1 12807:1 12813:2 12833:1 12850:1 12853:1 12867:1 12871:1 12877:1 12897:2 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:1 12972:5 12981:1 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13089:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:3 13240:1 13241:2 13252:1 13266:2 13268:2 13273:1 13274:1 13275:2 13277:1 13284:3 13286:4 13288:2 13289:1 13291:4 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:2 13360:1 13361:2 13379:1 13382:3 13387:1 13411:1 13419:1 13440:1 13456:1 13457:1 13460:5 13468:1 13477:1 13491:1 13532:1 13535:1 13556:1 13564:1 13574:1 13629:3 13631:1 13688:1 13692:1 13698:5 13702:1 13713:5 13728:1 13744:1 13766:1 13778:1 13789:1 13809:1 13818:1 13835:1 13852:1 13855:1 13857:1 13858:1 13863:2 13883:1 13885:1 13899:1 13907:1 13923:1 13956:1 13970:2 13979:1 14003:1 14012:1 14060:1 14061:1 14084:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:2 14307:1 14311:1 14326:1 14353:1 14355:2 14360:1 14366:1 14399:2 14414:1 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:1 14582:2 14585:1 14587:1 14591:2 14596:1 14603:2 14606:1 14613:1 14625:2 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:3 14761:1 14774:1 14787:1 14816:2 14857:2 14858:1 14885:1 14924:2 14929:2 14943:5 14976:1 14986:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:2 15125:3 15128:2 15137:3 15148:1 15159:2 15164:1 15199:1 15229:6 15298:1 15301:2 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:4 15404:1 15410:3 15438:3 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15547:1 15548:2 15554:1 15555:3 15556:1 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15628:1 15648:1 15650:2 15664:1 15675:4 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:2 15793:1 15819:1 15831:1 15858:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15946:1 15947:1 15963:2 15967:1 15999:1 16004:1 16012:2 16028:2 16042:2 16055:1 16067:1 16069:1 16116:1 16121:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:2 16297:1 16304:2 16313:1 16320:2 16322:2 16323:3 16330:1 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:3 16511:1 16515:1 16519:3 16521:1 16524:1 16526:2 16533:2 16554:1 16561:1 16572:1 16582:1 16597:2 16613:1 16615:1 16632:1 16634:1 16649:1 16657:1 16669:1 16672:1 16690:1 16698:1 16702:1 16708:1 16720:1 16725:1 16736:1 16742:2 16747:1 16769:1 16773:2 16781:1 16800:1 16806:1 16827:1 16838:1 16840:1 16841:1 16857:1 16859:1 16876:1 16913:1 16934:1 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17091:1 17108:1 17111:1 17150:1 17184:1 17211:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17304:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:3 17510:1 17520:1 17521:1 17522:6 17543:1 17548:1 17564:1 17578:2 17591:3 17592:2 17602:2 17605:1 17606:1 17628:3 17636:1 17637:7 17646:3 17654:1 17675:1 17683:1 17684:1 17688:5 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17803:2 17808:1 17809:1 17812:1 17815:1 17816:2 17817:1 17828:2 17842:1 17845:2 17846:1 17847:5 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17916:1 17928:1 17934:1 17947:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:6 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18300:1 18356:1 18357:2 18364:4 18371:3 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18489:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18666:1 18678:1 18684:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18769:1 18778:2 18782:1 18808:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:3 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:1 19007:1 19011:1 19017:1 19027:5 19034:1 19045:1 19046:1 19052:19 19074:1 19075:1 19100:1 19105:2 19134:2 19136:2 19155:3 19159:1 19167:1 19182:1 19197:1 19238:1 19250:1 19281:1 19283:1 19284:1 19289:1 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:1 19395:1 19398:1 19424:1 19440:3 19441:1 19447:1 19458:1 19465:1 19470:3 19492:2 19511:1 19512:1 19525:1 19576:1 19590:1 19591:1 19611:4 19627:1 19646:2 19652:2 19654:1 19699:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:2 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19839:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20002:1 20054:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20218:1 20225:1 20270:1 20276:1 20277:1 20282:3 20315:1 20320:1 20330:1 20358:2 20372:3 20410:1 20423:2 20431:1 20447:3 20456:1 20463:1 20490:2 20500:1 20504:1 20517:1 20530:1 20531:1 20554:2 20566:2 20567:1 20577:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:2 20671:1 20706:1 20724:1 20726:1 20739:1 20746:1 20759:1 20783:1 20787:1 20794:7 20811:1 20862:1 20875:1 20876:1 20918:9 20928:1 20932:3 20947:3 20957:1 20966:1 21014:1 21023:1 21030:3 21033:2 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21160:1 21162:2 21176:2102 21178:1 21180:2 21181:1 21220:2 21243:3 21257:1 21281:1 21298:1 21300:1 21301:1 21313:1 21361:3 21365:1 21385:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:3 21547:1 21549:1 21570:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:3 22112:1 22162:1 22170:1 22172:1 22173:2 22177:1 22211:1 22213:2 22224:2 22246:3 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22358:1 22374:2 22381:1 22412:2 22413:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:3 22461:1 22469:1 22478:18 22481:1 22493:1 22498:1 22503:1 22518:1 22525:1 22530:1 22533:1 22541:5 22545:1 22567:1 22568:1 22590:1 22591:1 22622:1 22636:1 22637:1 22661:5 22682:1 22691:1 22693:1 22695:1 22698:1 22712:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:2 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:3 22846:1 22847:1 22851:1 22852:1 22866:1 22873:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22944:1 22959:1 22984:21 22993:1 23001:1 23012:1 23014:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23154:1 23164:1 23187:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23285:1 23294:3 23298:1 23300:1 23307:1 23318:1 23442:1 23443:2 23459:1 23471:2 23518:1 23526:3 23546:1 23554:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:2 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:16 23722:1 23725:1 23733:3 23735:5 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:3 23881:1 23913:4 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:3 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24228:3 24231:6 24261:2 24265:1 24298:1 24317:1 24338:1 24351:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24395:6 24398:2 24406:1 24408:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:3 24466:1 24467:1 24469:5 24470:1 24477:2 24480:1 24481:2 24494:1 24513:1 24515:2 24536:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:3 24634:1 24644:2 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24752:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:2 24891:1 24920:1 24943:2 24957:1 24971:2 24986:1 24992:1 25019:5 25060:2 25067:1 25071:2 25076:2 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25215:2 25221:1 25222:1 25228:2 25239:1 25242:1 25246:1 25250:5 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25338:1 25347:1 25348:1 25376:1 25387:3 25391:1 25396:2 25401:1 25403:1 25406:1 25417:1 25418:2 25427:1 25429:1 25432:1 25440:1 25442:2 25447:1 25458:1 25464:1 25465:4 25472:2 25482:1 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25630:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:3 25756:1 25759:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25828:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25892:1 25901:8 25906:1 25913:1 25915:1 25918:1 25920:1 25931:2 25946:3 25947:2 25980:1 25993:1 26015:1 26027:1 26030:2 26041:1 26044:1 26055:1 26063:1 26085:1 26091:1 26118:1 26120:2 26157:2 26168:1 26184:1 26185:1 26207:1 26208:1 26213:1 26215:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26473:1 26476:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:3 26555:2 26561:1 26609:1 26615:3 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26857:1 26863:1 26871:2 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27008:1 27022:1 27025:1 27043:1 27048:1 27054:1 27060:1 27065:1 27068:1 27076:1 27138:1 27147:1 27157:2 27191:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27316:1 27324:2 27337:1 27345:2 27376:1 27391:1 27403:1 27405:2 27423:1 27428:1 27429:1 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27526:1 27550:1 27560:2 27570:2 27574:1 27626:2 27633:1 27663:1 27694:2 27703:1 27705:2 27710:1 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:4 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:3 27949:1 27953:1 27955:1 27956:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28101:2 28112:1 28119:2 28142:1 28146:1 28162:1 28193:1 28218:1 28234:2 28245:1 28270:1 28276:1 28289:1 28290:2 28302:1 28316:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28443:1 28450:2 28475:1 28496:1 28521:1 28546:1 28569:2 28571:5 28595:1 28609:5 28638:1 28705:2 28706:1 28712:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28834:1 28836:1 28839:1 28845:2 28850:3 28851:2 28875:1 28878:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:2 28967:3 28969:1 28973:2 28994:2 28997:1 29025:1 29048:1 29063:2 29076:2 29103:1 29107:1 29119:1 29123:1 29153:1 29157:3 29183:1 29191:6 29193:5 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29440:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29594:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29748:12 29749:2 29761:1 29787:1 29794:1 29799:1 29818:3 29839:2 29844:1 29877:1 29881:1 29886:2 29892:2 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:2 30118:1 30120:1 30126:1 30128:1 30140:2 30169:1 30171:1 30209:1 30211:1 30218:1 30233:1 30243:1 30257:1 30283:1 30303:1 30319:1 30320:1 30369:1 30386:1 30412:1 30415:1 30431:2 30455:1 30459:2 30468:1 30480:1 30503:1 30505:1 30508:1 30521:1 30539:1 30541:3 30547:1 30556:1 30574:1 30579:1 30598:1 30602:1 30625:1 30676:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:5 30769:1 30773:2 30794:2 30798:3 30801:1 30813:2 30839:2 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30882:1 30888:2 30926:1 30935:1 30944:2 30949:2 30959:1 30994:1 30997:1 31011:1 31033:1 31039:3 31068:1 31072:3 31088:2 31092:1 31098:1 31101:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31193:1 31194:2 31197:1 31206:2 31207:1 31209:2 31215:1 31243:1 31254:1 31260:1 31319:2 31330:3 31345:1 31356:1 31399:1 31420:2 31422:1 31429:1 31453:1 31472:1 31474:1 31477:1 31506:1 31532:1 31542:2 31559:1 31560:2 31562:2 31565:1 31575:1 31577:3 31604:2 31622:1 31631:2 31638:1 31700:1 31705:1 31714:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31897:1 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31941:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32051:1 32065:1 32069:1 32081:1 32086:3 32099:2 32106:1 32155:1 32168:1 32173:1 32175:1 32200:2 32206:5 32219:1 32246:1 32248:7 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:5 32355:1 32362:1 32373:1 32382:1 32388:1 32400:1 32404:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32549:1 32551:1 32552:1 32560:4 32562:2 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32630:1 32633:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32735:1 32736:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32847:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32923:1 32934:1 32967:1 32969:2 32976:2 32995:1 33014:1 33019:3 33036:1 33039:1 33091:1 33094:1 33105:1 33108:1 33133:1 33139:2 33140:1 33141:2 33146:1 33159:1 33184:2 33193:1 33210:1 33219:1 33222:1 33229:1 33233:1 33240:1 33252:2 33268:1 33269:2 33275:1 33276:1 33318:1 33326:4 33327:1 33332:1 33350:1 33364:4 33379:2 33400:1 33409:1 33419:2 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:3 33463:2 33465:1 33467:2 33469:1 33471:1 33474:3 33479:1 33499:1 33508:1 33516:4 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 54:1 76:1 89:1 95:1 99:1 120:2 127:1 138:1 191:4 207:5 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 430:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 524:1 561:1 573:1 580:2 616:1 619:1 628:1 633:1 662:1 670:1 671:2 676:1 680:4 709:2 719:5 737:1 745:1 816:6 831:1 851:1 883:1 885:1 909:1 922:1 924:1 973:1 996:1 999:7 1000:1 1022:2 1026:3 1030:1 1050:1 1064:2 1066:3 1089:1 1093:1 1098:4 1102:1 1111:1 1142:2 1144:3 1151:1 1153:1 1179:1 1185:1 1207:1 1249:1 1267:1 1287:2 1302:2 1319:3 1322:2 1346:1 1349:1 1354:2 1361:1 1364:1 1383:1 1389:1 1405:1 1407:1 1410:1 1419:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1523:1 1529:3 1554:2 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:2 1663:1 1668:2 1672:3 1680:1 1692:1 1727:1 1763:2 1800:2 1810:2 1813:1 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:1 1986:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2433:1 2446:2 2458:3 2466:1 2470:2 2495:1 2505:1 2507:2 2511:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2546:1 2555:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2599:5 2604:1 2607:3 2609:2 2612:4 2615:1 2667:1 2676:1 2679:1 2680:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2737:1 2742:1 2763:1 2769:1 2795:1 2809:1 2822:1 2853:1 2863:1 2875:1 2877:1 2888:1 2898:1 2904:1 2911:1 2922:1 2935:1 2938:1 2988:1 2995:1 3013:1 3034:1 3035:1 3036:1 3038:1 3045:2 3061:1 3077:3 3083:1 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:7 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3265:5 3306:2 3314:1 3318:21 3333:1 3337:1 3351:1 3355:2 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3462:1 3465:1 3483:1 3487:1 3511:1 3534:2 3542:3 3548:1 3590:1 3636:1 3647:1 3648:2 3661:1 3663:1 3667:1 3669:1 3689:6 3691:1 3697:1 3723:8 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3997:1 4000:1 4027:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4200:2 4209:1 4227:1 4237:1 4244:1 4262:3 4270:2 4276:1 4288:1 4313:1 4317:2 4332:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4584:1 4587:1 4590:1 4629:1 4643:5 4646:1 4648:2 4653:1 4705:2 4714:1 4725:1 4726:1 4729:1 4739:3 4754:3 4765:2 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:2 4855:1 4859:1 4870:2 4891:2 4894:1 4907:1 4914:1 4930:2 4937:1 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5061:1 5074:1 5077:1 5093:1 5118:1 5147:5 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5213:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:2 5290:1 5298:1 5303:3 5308:1 5315:1 5316:2 5321:1 5332:1 5366:2 5389:1 5400:1 5406:1 5416:1 5455:1 5459:1 5461:1 5471:1 5500:3 5508:1 5511:1 5523:26 5528:1 5546:1 5567:1 5571:1 5608:1 5617:1 5619:1 5645:1 5656:1 5668:3 5685:3 5686:7 5689:2 5694:2 5695:2 5700:1 5702:2 5708:2 5715:1 5716:2 5717:2 5718:1 5719:1 5745:5 5784:1 5811:2 5819:1 5822:1 5861:1 5865:3 5881:1 5919:1 5926:5 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6107:1 6111:1 6114:1 6118:1 6138:1 6147:1 6163:1 6185:1 6202:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6391:1 6399:1 6436:3 6480:1 6481:2 6484:1 6495:1 6532:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6707:1 6716:1 6733:1 6739:2 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:1 6982:1 6986:1 6998:1 7002:1 7020:6 7043:1 7059:1 7062:1 7067:1 7092:1 7100:1 7110:1 7141:8 7169:5 7188:5 7193:1 7194:1 7212:2 7232:4 7233:1 7240:6 7242:3 7248:2 7249:1 7253:2 7254:3 7255:1 7257:2 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:2 7423:1 7434:1 7454:1 7459:1 7476:2 7479:2 7491:1 7524:1 7525:3 7559:1 7583:1 7587:1 7603:1 7613:1 7621:5 7698:1 7715:2 7722:4 7735:1 7748:4 7749:3 7830:1 7862:2 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7979:1 7986:1 7987:1 7990:1 8049:1 8051:1 8055:1 8074:3 8104:1 8110:2 8112:1 8150:2 8154:2 8158:2 8160:1 8162:1 8169:1 8171:2 8178:1 8187:1 8217:1 8220:1 8223:1 8247:2 8260:1 8276:1 8280:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:4 8526:1 8534:1 8544:1 8548:1 8586:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:6 8693:5 8704:1 8716:3 8745:1 8746:1 8749:1 8759:33 8783:1 8786:20 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8893:1 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9019:1 9022:1 9028:1 9040:1 9059:1 9080:1 9125:1 9127:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:4 9224:2 9229:1 9266:3 9287:1 9301:3 9305:1 9326:20 9360:2 9370:1 9379:1 9392:3 9420:1 9431:1 9435:1 9438:1 9451:3 9485:1 9495:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9619:1 9624:1 9626:1 9630:1 9641:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9958:1 9976:1 9998:1 10008:1 10012:1 10015:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:2 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10220:1 10231:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10302:1 10309:1 10339:2 10353:6 10362:1 10398:1 10404:1 10414:2 10434:1 10477:1 10489:1 10494:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10542:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:1 10714:2 10719:1 10722:1 10732:2 10734:1 10758:1 10787:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:2 10916:2 10924:1 10927:1 10938:4 10957:2 10958:3 10974:4 10994:1 10996:1 11019:3 11032:1 11038:1 11043:1 11054:1 11082:3 11098:1 11100:1 11104:1 11109:1 11111:1 11129:1 11147:1 11148:1 11150:3 11156:1 11160:1 11171:1 11184:1 11248:2 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11300:1 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11385:2 11424:1 11432:1 11440:1 11454:1 11467:1 11475:4 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:2 11549:1 11551:2 11559:1 11578:1 11582:1 11635:1 11639:2 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:3 11751:2 11754:1 11782:1 11814:1 11820:1 11861:1 11867:1 11870:1 11875:1 11880:3 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:2 11980:1 12000:1 12008:1 12025:1 12033:1 12049:1 12051:3 12052:1 12062:1 12101:1 12121:1 12129:1 12165:1 12169:1 12175:4 12204:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12323:1 12355:2 12359:1 12375:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:2 12453:1 12455:2 12461:7 12474:1 12496:1 12507:1 12512:1 12541:1 12563:1 12566:1 12572:2 12582:1 12603:1 12610:1 12611:1 12622:1 12649:1 12651:2 12669:1 12674:1 12678:1 12695:1 12740:1 12744:1 12772:1 12778:3 12802:1 12805:1 12807:1 12813:2 12833:1 12850:2 12853:1 12867:1 12871:1 12877:1 12897:2 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:1 12972:6 12981:1 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13089:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:3 13240:1 13241:2 13252:1 13266:2 13268:2 13273:1 13274:1 13275:2 13277:1 13284:3 13286:4 13288:2 13289:1 13291:4 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13347:1 13348:1 13349:2 13360:1 13361:2 13379:1 13382:3 13387:1 13411:1 13419:1 13440:1 13456:1 13457:1 13460:5 13468:1 13477:1 13491:1 13532:1 13535:1 13536:1 13556:2 13564:1 13574:1 13629:3 13631:1 13688:1 13692:1 13698:5 13702:1 13713:5 13728:1 13744:1 13766:1 13778:1 13789:1 13809:1 13818:1 13835:1 13852:1 13855:1 13857:1 13858:1 13863:2 13883:1 13885:1 13899:1 13907:1 13923:1 13956:1 13970:2 13979:1 14003:1 14012:1 14060:2 14061:1 14071:1 14084:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14256:1 14270:2 14283:1 14286:1 14288:2 14307:1 14311:5 14326:1 14353:1 14355:2 14360:1 14366:1 14399:2 14414:1 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:1 14582:2 14585:1 14587:1 14591:2 14596:1 14603:2 14606:1 14613:1 14625:2 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:3 14761:1 14774:1 14787:1 14816:2 14857:2 14858:1 14885:1 14924:2 14929:2 14943:5 14976:1 14986:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:2 15125:3 15128:2 15137:3 15148:1 15159:2 15164:1 15199:1 15229:6 15298:1 15301:2 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:4 15404:1 15410:3 15438:3 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15547:1 15548:2 15554:1 15555:3 15556:1 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15586:2 15609:1 15628:1 15648:1 15650:2 15664:1 15675:4 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:2 15793:1 15819:1 15831:1 15858:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15946:1 15947:1 15963:2 15967:1 15999:1 16004:1 16012:2 16028:2 16042:2 16055:1 16067:1 16069:1 16116:1 16121:1 16132:1 16136:1 16140:2 16148:1 16149:2 16156:1 16163:1 16188:1 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:2 16297:1 16304:2 16313:1 16320:2 16322:2 16323:3 16330:1 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:3 16509:1 16511:1 16515:1 16519:3 16521:1 16524:1 16526:2 16533:2 16554:1 16561:1 16572:1 16582:1 16597:2 16613:1 16615:1 16632:1 16634:1 16649:2 16657:1 16669:1 16672:1 16690:1 16698:1 16702:1 16708:1 16720:1 16725:1 16736:1 16742:2 16747:1 16769:1 16773:2 16781:1 16800:1 16806:1 16827:1 16838:1 16840:1 16841:1 16857:1 16859:1 16876:1 16913:1 16934:2 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17091:1 17108:1 17111:1 17150:1 17184:1 17211:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17304:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:3 17510:1 17520:1 17521:1 17522:6 17543:1 17548:1 17564:1 17578:2 17591:3 17592:2 17602:2 17605:1 17606:1 17628:3 17636:1 17637:7 17646:3 17654:1 17675:1 17683:1 17684:1 17688:6 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17803:2 17808:1 17809:1 17812:1 17815:1 17816:3 17817:1 17828:2 17842:1 17845:2 17846:1 17847:5 17848:2 17859:1 17863:1 17873:1 17890:1 17911:1 17915:2 17916:1 17928:1 17934:1 17947:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:6 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18300:1 18356:1 18357:2 18364:4 18371:3 18386:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18489:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18666:1 18678:1 18684:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18769:1 18778:2 18782:1 18808:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:3 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:1 19007:1 19011:1 19017:1 19027:5 19034:1 19045:1 19046:1 19052:19 19074:1 19075:1 19100:1 19105:2 19134:2 19136:2 19155:3 19159:1 19167:1 19182:1 19197:1 19238:1 19250:1 19281:1 19283:1 19284:1 19289:2 19299:1 19306:1 19319:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:2 19395:1 19398:1 19424:1 19440:3 19441:1 19447:1 19458:1 19465:1 19470:3 19492:2 19511:1 19512:1 19525:1 19576:1 19590:1 19591:1 19611:4 19627:1 19646:2 19652:2 19654:1 19699:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:2 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19839:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20002:1 20054:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:1 20211:1 20213:2 20218:1 20225:1 20270:1 20276:1 20277:1 20282:3 20300:1 20315:1 20320:1 20330:1 20358:2 20372:3 20410:1 20423:2 20431:1 20447:3 20456:1 20463:1 20490:2 20500:1 20504:1 20517:1 20530:1 20531:1 20554:2 20566:3 20567:1 20577:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:2 20671:1 20706:1 20724:1 20726:1 20739:1 20746:1 20759:1 20783:1 20787:1 20794:7 20811:1 20862:1 20875:1 20876:1 20918:9 20928:1 20932:3 20947:3 20957:1 20966:1 21014:1 21023:1 21030:3 21033:2 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21160:1 21162:3 21176:2135 21178:1 21180:2 21181:1 21220:2 21243:3 21257:1 21281:1 21298:1 21300:1 21301:1 21313:1 21361:3 21365:1 21385:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21496:1 21512:2 21540:3 21547:1 21549:1 21570:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:3 22112:1 22162:1 22170:1 22172:1 22173:2 22177:1 22211:1 22213:2 22224:2 22246:3 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22358:1 22374:2 22381:1 22412:2 22413:1 22418:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:3 22461:1 22469:1 22478:18 22481:1 22493:1 22498:1 22503:1 22518:1 22525:1 22530:1 22533:1 22541:5 22545:1 22567:1 22568:1 22590:1 22591:1 22622:1 22636:1 22637:1 22661:6 22682:1 22691:1 22693:1 22695:1 22698:1 22712:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:3 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:3 22846:1 22847:1 22851:1 22852:1 22866:1 22873:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22944:1 22959:1 22984:21 22993:1 23001:1 23012:1 23014:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23154:1 23164:1 23187:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23285:1 23294:3 23298:1 23300:1 23307:1 23318:1 23441:1 23442:1 23443:2 23459:1 23471:2 23518:1 23526:3 23546:1 23554:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:2 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:16 23722:1 23725:1 23733:3 23735:5 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:3 23881:1 23913:4 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:3 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24228:3 24231:6 24261:2 24265:1 24298:1 24317:1 24338:1 24351:1 24362:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24395:6 24398:2 24406:1 24408:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:3 24466:1 24467:1 24469:5 24470:1 24477:2 24480:1 24481:2 24494:1 24513:1 24515:2 24536:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:3 24634:1 24644:2 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24752:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24829:1 24830:3 24834:1 24840:1 24845:1 24856:1 24875:2 24891:1 24920:1 24943:2 24957:1 24971:2 24986:1 24992:1 25019:5 25060:2 25067:1 25071:2 25076:2 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25215:2 25221:1 25222:1 25228:2 25239:1 25242:1 25246:1 25250:5 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25338:1 25347:1 25348:1 25376:1 25387:3 25391:1 25396:2 25401:1 25403:1 25406:1 25417:1 25418:2 25427:1 25429:1 25432:1 25440:1 25442:2 25447:1 25458:1 25464:1 25465:4 25472:2 25482:1 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25630:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:3 25756:1 25759:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25828:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25892:1 25901:8 25906:1 25913:1 25915:1 25918:1 25920:1 25931:2 25946:3 25947:2 25980:1 25993:1 26015:1 26027:1 26030:2 26041:1 26044:1 26055:1 26063:1 26085:1 26091:1 26118:1 26120:2 26157:2 26168:1 26184:1 26185:1 26207:1 26208:1 26213:1 26215:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26473:1 26476:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:3 26555:2 26561:2 26609:1 26615:3 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26857:1 26863:1 26871:2 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27008:1 27022:1 27025:1 27043:1 27048:1 27054:1 27060:1 27065:1 27068:1 27076:1 27138:1 27147:1 27157:2 27191:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27316:1 27324:2 27337:1 27345:2 27376:1 27391:1 27403:1 27405:2 27423:1 27428:1 27429:1 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27526:1 27550:1 27560:2 27570:2 27574:1 27620:1 27626:2 27633:1 27663:1 27694:2 27703:1 27705:2 27710:1 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:4 27748:2 27749:1 27756:2 27776:1 27781:4 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:3 27949:1 27953:1 27955:1 27956:1 27993:1 28031:1 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28101:2 28112:1 28119:2 28142:1 28146:1 28162:1 28193:1 28218:1 28234:2 28245:1 28270:1 28276:1 28289:1 28290:2 28302:1 28316:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28443:1 28450:2 28475:1 28496:1 28521:1 28546:1 28569:2 28571:5 28595:1 28609:5 28638:1 28705:2 28706:1 28712:1 28715:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28834:1 28836:1 28839:1 28845:2 28850:3 28851:2 28875:1 28878:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:2 28967:3 28969:1 28973:2 28994:2 28997:1 29025:1 29048:1 29063:2 29076:2 29103:1 29107:1 29119:1 29123:1 29153:1 29157:3 29183:1 29191:6 29193:5 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29440:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29594:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29748:12 29749:2 29761:1 29787:1 29794:1 29799:1 29818:3 29839:2 29844:1 29877:1 29881:1 29886:2 29892:2 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:2 30118:1 30120:1 30126:1 30128:1 30140:2 30169:1 30171:1 30177:1 30209:1 30211:1 30218:1 30233:1 30243:1 30257:1 30283:1 30303:1 30319:1 30320:1 30369:1 30384:1 30386:1 30412:1 30415:1 30431:2 30455:1 30459:2 30468:1 30480:1 30503:1 30505:1 30508:1 30521:1 30539:1 30541:3 30547:1 30556:1 30574:1 30579:1 30598:1 30602:1 30625:1 30676:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:5 30769:1 30773:2 30794:2 30798:3 30801:1 30813:2 30839:2 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30882:1 30888:2 30926:1 30935:1 30944:2 30949:2 30959:1 30994:1 30997:1 31011:1 31033:1 31039:3 31068:1 31072:3 31088:2 31092:1 31098:1 31101:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31193:1 31194:2 31197:1 31206:2 31207:1 31209:2 31215:1 31243:1 31254:1 31260:1 31319:2 31330:3 31345:1 31356:1 31399:1 31420:2 31422:1 31429:1 31453:1 31472:1 31474:1 31477:1 31506:1 31532:1 31542:2 31559:1 31560:3 31562:2 31565:1 31575:1 31577:3 31604:2 31622:1 31631:2 31638:1 31700:1 31705:1 31714:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31873:2 31897:1 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31941:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32051:1 32065:1 32069:1 32081:1 32086:4 32099:2 32106:1 32155:1 32168:1 32173:1 32175:1 32200:2 32206:5 32219:1 32246:1 32248:7 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:5 32355:1 32362:1 32373:1 32382:1 32388:1 32400:1 32404:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32549:1 32551:1 32552:1 32560:4 32562:2 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32630:1 32633:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32735:1 32736:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32847:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32923:1 32934:1 32967:1 32969:2 32976:2 32995:1 33014:1 33019:3 33036:1 33039:1 33091:1 33094:1 33105:1 33108:1 33133:1 33139:2 33140:1 33141:2 33146:1 33159:1 33184:2 33193:1 33210:1 33219:1 33222:1 33229:1 33233:1 33240:1 33252:2 33268:1 33269:2 33275:1 33276:1 33318:1 33326:4 33327:1 33332:1 33350:1 33364:4 33379:2 33400:1 33409:1 33419:2 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:3 33463:2 33465:1 33467:2 33469:1 33471:1 33474:3 33479:1 33499:1 33508:1 33516:4 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 54:1 76:1 89:1 95:1 99:1 120:2 127:1 138:1 191:4 207:5 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 311:1 341:1 344:1 369:1 372:2 377:1 393:1 412:2 423:1 430:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 524:1 561:1 568:1 573:1 580:2 616:1 619:1 628:1 633:1 662:1 670:1 671:2 676:1 680:4 709:2 719:5 737:1 745:1 774:1 816:6 831:1 851:1 883:1 885:1 909:1 922:1 924:1 973:1 996:1 999:7 1000:1 1022:2 1026:3 1030:1 1050:1 1064:2 1066:3 1089:1 1093:1 1098:4 1102:1 1109:1 1111:1 1142:2 1144:3 1151:1 1153:1 1179:1 1185:1 1207:1 1225:1 1249:1 1267:1 1287:2 1302:2 1319:3 1322:2 1346:1 1349:1 1354:2 1359:1 1361:1 1364:1 1383:1 1389:1 1405:1 1407:1 1410:1 1419:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1523:1 1529:3 1554:2 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:2 1628:1 1663:1 1668:2 1672:3 1675:1 1680:1 1692:1 1727:1 1763:2 1800:2 1810:2 1813:1 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:1 1986:1 1996:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:2 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2433:1 2446:2 2458:3 2466:1 2470:2 2495:1 2505:1 2507:2 2510:1 2511:1 2515:1 2516:1 2520:2 2523:5 2536:1 2538:1 2543:1 2546:1 2555:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:2 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2595:1 2599:5 2604:1 2607:3 2609:2 2612:4 2615:1 2667:1 2676:1 2679:1 2680:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2737:1 2742:1 2763:1 2769:1 2795:1 2809:1 2822:1 2853:1 2863:2 2875:1 2877:1 2888:1 2898:1 2904:1 2911:1 2922:1 2935:1 2938:1 2988:1 2995:1 3013:1 3034:1 3035:1 3036:1 3038:1 3045:2 3061:1 3077:3 3083:2 3098:1 3128:1 3131:2 3147:3 3148:1 3152:3 3157:3 3164:7 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3265:5 3287:1 3306:2 3314:1 3318:21 3333:1 3337:1 3346:2 3350:1 3351:1 3355:2 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3462:1 3465:1 3483:1 3487:1 3511:1 3534:2 3542:3 3548:1 3590:1 3636:1 3647:1 3648:2 3661:1 3663:1 3667:1 3669:1 3689:6 3691:1 3697:1 3723:9 3730:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3997:1 4000:1 4027:1 4031:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4200:2 4209:1 4227:1 4237:1 4244:1 4262:3 4270:2 4276:1 4288:1 4313:1 4317:2 4332:1 4340:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4581:1 4584:1 4587:1 4590:1 4593:1 4629:1 4643:5 4646:1 4648:2 4653:1 4705:2 4714:1 4725:1 4726:1 4729:1 4739:3 4754:3 4765:2 4768:1 4782:1 4785:1 4817:1 4830:1 4843:1 4851:1 4852:2 4855:1 4859:1 4870:2 4891:2 4894:1 4907:1 4914:1 4930:2 4937:1 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5061:1 5074:1 5077:1 5093:1 5118:1 5147:5 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5213:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:2 5290:1 5292:1 5298:1 5303:3 5308:1 5315:1 5316:3 5321:1 5332:1 5366:2 5389:1 5400:1 5406:1 5416:1 5455:1 5459:1 5461:1 5471:1 5500:3 5508:1 5511:1 5523:26 5528:1 5546:1 5567:1 5571:1 5608:1 5617:1 5619:1 5645:1 5656:1 5668:3 5685:4 5686:8 5689:2 5694:2 5695:2 5700:1 5702:2 5708:2 5715:1 5716:2 5717:2 5718:1 5719:1 5745:5 5784:1 5811:2 5819:1 5822:1 5861:1 5865:4 5881:1 5919:1 5926:5 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6107:1 6111:1 6114:1 6118:1 6138:1 6147:1 6163:1 6185:1 6187:1 6202:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:2 6391:1 6394:1 6399:1 6436:3 6480:1 6481:2 6484:1 6495:1 6532:1 6533:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6707:1 6716:1 6733:1 6739:2 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6847:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:1 6982:1 6986:1 6998:1 7002:1 7020:6 7043:1 7059:1 7062:1 7064:1 7067:1 7092:1 7100:1 7110:1 7141:8 7169:5 7188:5 7193:1 7194:1 7212:2 7232:4 7233:1 7240:6 7242:3 7248:2 7249:1 7253:2 7254:3 7255:1 7257:2 7263:2 7266:2 7279:1 7282:1 7297:1 7397:1 7418:2 7423:1 7434:1 7454:1 7459:1 7476:2 7479:2 7491:1 7524:1 7525:3 7559:1 7583:1 7587:1 7603:1 7613:1 7621:5 7698:1 7715:2 7722:4 7735:1 7748:4 7749:3 7788:1 7830:1 7862:2 7869:1 7874:2 7875:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7979:1 7986:1 7987:1 7990:1 8049:1 8050:1 8051:1 8055:1 8074:3 8104:1 8110:2 8112:1 8150:2 8154:2 8158:2 8160:1 8162:1 8169:1 8171:2 8178:1 8187:1 8217:1 8220:1 8223:1 8247:2 8260:1 8276:1 8280:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:4 8526:1 8534:1 8544:1 8548:1 8586:1 8597:1 8630:2 8646:1 8649:1 8650:1 8669:3 8673:1 8692:6 8693:5 8704:1 8716:3 8745:1 8746:1 8749:2 8759:34 8783:1 8786:21 8816:1 8828:1 8843:1 8857:1 8879:1 8880:2 8893:1 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9019:1 9022:1 9028:1 9040:1 9059:1 9080:1 9125:1 9127:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:4 9224:2 9225:1 9229:1 9266:3 9276:1 9287:1 9301:3 9305:1 9326:20 9339:1 9360:2 9370:1 9379:1 9392:3 9420:1 9431:1 9435:1 9438:1 9451:3 9485:1 9495:1 9500:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:1 9619:1 9624:1 9626:1 9630:1 9641:1 9650:1 9653:2 9662:3 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9792:1 9799:1 9823:2 9831:3 9846:3 9848:7 9868:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9958:1 9976:1 9998:1 10008:1 10012:1 10015:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:2 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10207:1 10220:1 10231:1 10232:1 10245:2 10254:1 10270:1 10277:2 10294:1 10302:2 10309:1 10339:2 10353:6 10362:1 10365:1 10398:1 10404:1 10414:2 10434:2 10456:1 10477:1 10489:1 10494:1 10497:2 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10542:1 10560:1 10563:1 10584:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:2 10714:2 10719:1 10722:1 10732:3 10734:1 10758:1 10787:1 10790:2 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:2 10916:2 10924:1 10927:1 10938:4 10957:2 10958:3 10974:4 10994:1 10996:1 11019:3 11032:1 11038:1 11043:1 11054:1 11082:4 11098:1 11100:1 11104:1 11109:1 11111:1 11129:1 11147:1 11148:1 11150:3 11156:1 11160:1 11171:1 11184:1 11248:2 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11300:1 11309:1 11326:1 11370:1 11371:1 11372:1 11373:1 11379:1 11385:2 11424:1 11432:1 11440:1 11454:1 11467:1 11475:4 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:2 11549:1 11551:2 11557:1 11559:1 11578:1 11582:1 11619:1 11635:1 11639:2 11661:2 11676:2 11681:1 11685:1 11687:1 11704:1 11719:1 11749:3 11751:2 11754:1 11782:1 11814:2 11820:1 11861:1 11867:1 11870:1 11875:1 11880:3 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:3 11980:1 12000:1 12008:1 12025:1 12033:1 12049:1 12051:3 12052:1 12062:1 12080:1 12101:1 12121:1 12129:1 12165:1 12169:1 12175:4 12204:1 12212:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12323:1 12355:2 12359:1 12375:1 12377:1 12395:1 12397:1 12399:1 12439:2 12447:2 12453:1 12455:2 12461:8 12474:1 12496:1 12507:1 12512:1 12537:1 12540:1 12541:1 12563:1 12566:1 12572:2 12582:1 12603:1 12610:1 12611:1 12622:2 12649:1 12651:2 12669:1 12674:1 12678:1 12695:1 12698:1 12740:1 12744:1 12772:1 12778:3 12802:1 12805:1 12807:1 12813:2 12833:1 12850:2 12853:1 12867:1 12871:1 12877:1 12897:2 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:2 12972:6 12981:1 13008:1 13036:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13089:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:3 13218:1 13240:1 13241:2 13252:1 13266:2 13268:2 13273:1 13274:1 13275:2 13277:1 13284:3 13286:4 13287:1 13288:2 13289:1 13291:4 13292:1 13296:4 13301:3 13319:3 13326:1 13330:1 13333:1 13347:1 13348:1 13349:2 13360:1 13361:2 13379:1 13382:3 13387:1 13411:1 13419:1 13440:1 13456:1 13457:1 13460:5 13468:1 13474:1 13477:1 13491:1 13532:1 13535:1 13536:1 13556:2 13564:1 13574:1 13629:3 13631:1 13688:1 13692:1 13698:5 13702:1 13713:5 13728:1 13744:1 13766:1 13778:1 13789:1 13809:1 13810:1 13818:1 13835:1 13852:1 13855:1 13857:1 13858:1 13863:2 13883:1 13885:1 13899:1 13907:1 13923:1 13956:1 13970:2 13979:1 14003:1 14012:1 14060:2 14061:1 14071:1 14084:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14256:1 14270:2 14277:1 14283:1 14286:1 14288:2 14307:1 14311:5 14326:1 14353:1 14355:2 14360:1 14366:1 14399:2 14414:1 14416:1 14429:1 14446:1 14474:7 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:1 14582:2 14585:1 14587:1 14591:2 14596:1 14603:2 14606:1 14613:1 14617:1 14625:2 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:3 14761:1 14774:1 14787:1 14816:2 14857:2 14858:1 14863:1 14885:1 14924:2 14929:2 14943:5 14976:1 14986:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:2 15125:3 15128:2 15137:3 15148:1 15159:2 15164:1 15199:1 15229:6 15273:1 15298:1 15301:2 15304:1 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:4 15404:1 15410:3 15438:3 15443:1 15458:1 15464:1 15522:1 15525:2 15530:1 15547:1 15548:2 15554:1 15555:3 15556:1 15558:1 15559:1 15575:2 15576:1 15580:1 15582:1 15584:1 15585:1 15586:2 15609:1 15628:1 15648:1 15650:2 15664:1 15675:4 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:2 15793:1 15819:1 15831:1 15858:1 15867:1 15876:1 15890:2 15914:1 15923:1 15925:1 15928:1 15942:1 15946:1 15947:1 15963:2 15967:1 15999:2 16004:1 16012:2 16028:2 16038:1 16042:2 16055:1 16067:1 16069:1 16116:1 16121:1 16132:2 16136:1 16140:2 16148:1 16149:2 16154:1 16156:1 16163:1 16188:1 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:2 16297:1 16304:3 16313:1 16320:2 16322:2 16323:3 16330:1 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:3 16509:1 16511:1 16515:1 16519:3 16521:1 16524:1 16526:2 16527:1 16533:2 16554:1 16561:1 16572:1 16582:1 16583:1 16597:2 16613:1 16615:1 16632:1 16634:1 16646:1 16649:2 16657:1 16669:1 16672:1 16690:1 16698:1 16702:1 16708:1 16720:1 16725:1 16736:1 16742:2 16747:1 16769:1 16773:2 16781:1 16800:1 16806:1 16827:1 16838:1 16840:1 16841:1 16857:1 16859:1 16876:1 16913:1 16934:2 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17091:1 17108:1 17111:1 17141:1 17150:1 17184:1 17211:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17304:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:1 17416:1 17419:1 17441:1 17461:1 17489:3 17510:1 17520:1 17521:1 17522:6 17543:1 17548:1 17564:1 17578:2 17591:3 17592:2 17602:2 17605:1 17606:1 17628:3 17636:1 17637:7 17646:4 17654:1 17675:1 17683:1 17684:1 17688:6 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17803:2 17808:1 17809:1 17812:1 17815:2 17816:4 17817:1 17828:2 17842:1 17845:2 17846:1 17847:5 17848:2 17859:1 17863:1 17873:1 17890:1 17896:1 17911:1 17915:2 17916:1 17928:1 17934:1 17947:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:6 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18300:1 18356:1 18357:2 18364:4 18371:3 18386:1 18394:1 18402:1 18404:1 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18489:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18666:1 18678:2 18684:1 18705:1 18711:2 18715:3 18741:3 18760:2 18762:1 18769:1 18778:2 18782:1 18808:1 18819:1 18827:2 18830:2 18833:1 18840:1 18870:2 18879:1 18887:1 18888:3 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:1 19007:1 19011:1 19017:1 19027:5 19034:1 19045:1 19046:1 19052:19 19074:1 19075:1 19100:1 19105:2 19134:2 19136:2 19155:3 19159:1 19167:1 19182:1 19197:1 19238:1 19250:1 19281:1 19283:1 19284:1 19289:2 19299:1 19306:1 19319:1 19323:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:2 19395:1 19398:1 19417:1 19424:1 19440:3 19441:1 19447:1 19458:1 19465:1 19470:3 19492:2 19511:1 19512:1 19525:1 19576:1 19590:1 19591:1 19611:4 19627:1 19632:1 19646:2 19652:2 19654:1 19688:1 19699:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:2 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19839:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20002:1 20054:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:2 20211:1 20213:2 20218:1 20225:1 20270:1 20276:1 20277:1 20282:3 20300:1 20315:1 20320:1 20330:1 20358:2 20372:3 20410:1 20423:2 20431:1 20447:3 20456:1 20463:1 20490:2 20500:1 20504:1 20517:1 20530:1 20531:1 20554:2 20557:1 20566:3 20567:1 20577:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:2 20671:1 20706:1 20724:1 20726:1 20739:1 20746:1 20759:1 20768:1 20783:1 20787:1 20794:7 20811:1 20862:1 20875:1 20876:1 20918:9 20928:1 20932:3 20947:3 20957:1 20966:1 21014:1 21023:1 21030:3 21033:2 21034:1 21070:1 21106:1 21109:1 21110:1 21124:1 21135:1 21144:1 21156:1 21160:1 21162:3 21176:2228 21178:1 21180:2 21181:1 21220:2 21243:3 21257:1 21281:1 21298:1 21300:1 21301:1 21313:2 21361:3 21365:1 21385:1 21392:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21484:1 21496:1 21512:2 21540:3 21547:1 21549:1 21570:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:2 21965:1 21993:1 21998:1 22002:1 22017:1 22036:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:4 22112:1 22162:1 22170:1 22172:1 22173:2 22177:1 22211:1 22213:2 22224:2 22246:3 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22358:1 22374:2 22381:1 22412:2 22413:1 22418:1 22423:1 22436:1 22438:1 22441:1 22446:1 22450:1 22459:3 22461:1 22469:1 22478:18 22481:1 22489:1 22493:1 22498:1 22503:1 22518:1 22525:1 22530:1 22533:1 22541:5 22545:1 22567:1 22568:1 22590:1 22591:1 22622:1 22636:1 22637:1 22661:7 22682:1 22691:1 22693:1 22695:1 22698:1 22712:1 22721:2 22748:1 22756:1 22762:4 22769:1 22777:3 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:3 22846:1 22847:1 22851:1 22852:1 22866:1 22873:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22944:1 22959:1 22984:21 22993:1 23001:1 23012:1 23014:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23154:1 23164:1 23187:1 23192:1 23198:1 23214:2 23240:1 23241:2 23246:2 23247:2 23285:1 23294:3 23298:1 23300:1 23307:1 23318:1 23441:1 23442:1 23443:2 23459:1 23471:2 23518:1 23526:3 23546:1 23554:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:2 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:16 23722:1 23725:1 23733:3 23735:5 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:3 23881:1 23892:1 23913:4 23931:2 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:3 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24223:1 24228:3 24231:6 24254:1 24261:2 24265:1 24298:2 24317:1 24338:1 24351:1 24362:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24395:6 24398:2 24406:2 24408:1 24421:1 24448:2 24452:1 24453:1 24459:1 24461:1 24465:3 24466:1 24467:1 24469:5 24470:1 24477:2 24480:1 24481:2 24494:1 24513:1 24515:2 24536:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:3 24634:1 24644:2 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24752:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24829:1 24830:4 24834:1 24840:1 24845:1 24856:1 24875:2 24891:1 24920:1 24943:2 24957:1 24971:2 24977:1 24986:1 24992:1 25019:5 25060:2 25067:1 25071:2 25076:2 25079:1 25089:1 25091:1 25098:1 25102:1 25112:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25215:2 25221:1 25222:1 25228:2 25239:1 25242:1 25246:1 25250:5 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25338:1 25347:1 25348:1 25376:1 25387:3 25391:1 25396:2 25401:1 25403:1 25406:1 25417:1 25418:2 25427:1 25429:1 25432:1 25440:1 25442:2 25447:1 25458:1 25464:1 25465:4 25472:2 25482:1 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:1 25626:2 25629:1 25630:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:3 25756:1 25759:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25828:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25892:1 25901:8 25906:1 25913:1 25915:1 25918:1 25920:1 25927:1 25931:2 25946:3 25947:2 25980:1 25993:1 25998:1 26015:1 26027:2 26030:2 26041:1 26044:1 26055:1 26063:1 26081:1 26085:1 26087:1 26091:1 26118:2 26120:2 26157:2 26168:1 26184:1 26185:1 26207:2 26208:1 26213:1 26215:1 26222:1 26223:1 26235:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26471:1 26473:1 26476:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:3 26555:2 26561:3 26609:1 26615:3 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26857:1 26863:1 26871:2 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26976:1 27008:1 27022:1 27025:1 27043:1 27048:1 27054:1 27060:1 27065:1 27068:1 27076:1 27138:1 27147:1 27157:2 27191:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27302:1 27316:1 27324:2 27337:1 27345:2 27348:1 27376:1 27391:1 27403:1 27405:2 27423:1 27428:1 27429:2 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27526:1 27550:1 27560:2 27570:2 27574:1 27620:1 27626:2 27633:1 27663:1 27694:2 27703:1 27705:2 27710:1 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:5 27748:2 27749:1 27756:2 27768:1 27776:1 27781:4 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:3 27949:1 27953:1 27955:1 27956:1 27993:1 28031:2 28035:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28101:2 28112:1 28119:2 28142:1 28146:1 28162:1 28192:1 28193:1 28197:1 28218:1 28234:2 28245:1 28270:1 28276:1 28289:1 28290:2 28302:1 28316:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28443:1 28450:3 28475:1 28496:1 28521:1 28546:1 28569:2 28571:5 28595:1 28609:5 28638:1 28705:2 28706:1 28712:1 28715:1 28749:1 28753:1 28764:1 28780:1 28795:1 28806:2 28818:2 28822:1 28834:1 28836:1 28839:1 28845:2 28850:3 28851:2 28875:1 28878:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:2 28967:3 28969:1 28973:2 28994:2 28997:1 29025:3 29048:1 29060:1 29063:2 29076:2 29103:1 29107:1 29119:1 29123:1 29153:1 29157:3 29183:1 29191:6 29193:5 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:1 29284:2 29285:1 29339:1 29348:1 29356:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29440:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:1 29567:1 29576:2 29582:1 29594:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29728:1 29748:12 29749:2 29761:1 29787:1 29794:1 29799:1 29818:3 29839:2 29844:1 29849:1 29877:1 29881:1 29886:2 29892:2 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30116:2 30118:1 30120:1 30126:1 30128:1 30140:2 30169:1 30171:1 30177:1 30209:1 30211:1 30218:1 30233:1 30243:1 30257:1 30283:1 30303:1 30319:1 30320:1 30369:1 30384:1 30386:1 30412:1 30415:1 30431:2 30455:1 30459:2 30468:1 30480:1 30503:1 30505:1 30508:1 30521:1 30539:1 30541:3 30547:1 30556:1 30574:1 30579:1 30598:1 30602:1 30625:1 30676:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:5 30769:1 30773:2 30794:2 30798:3 30801:1 30813:2 30839:2 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30880:1 30882:1 30888:2 30926:1 30935:1 30944:2 30949:2 30959:1 30994:1 30997:1 31011:1 31033:1 31039:3 31068:1 31072:3 31088:2 31092:1 31098:1 31101:1 31103:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31146:1 31149:1 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31193:1 31194:2 31197:1 31206:2 31207:1 31209:2 31215:1 31243:1 31254:1 31260:1 31319:2 31330:3 31345:1 31356:1 31399:1 31420:2 31422:1 31429:1 31442:1 31453:1 31472:1 31474:1 31477:1 31501:1 31506:1 31532:1 31542:2 31559:1 31560:4 31562:2 31565:1 31575:1 31577:3 31604:2 31622:1 31631:2 31638:1 31700:1 31705:1 31714:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31868:1 31873:2 31897:1 31916:5 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31941:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32051:1 32065:1 32069:1 32081:1 32086:5 32099:2 32106:1 32155:1 32168:1 32173:1 32175:1 32200:2 32206:5 32219:1 32246:1 32248:7 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32307:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:5 32355:1 32362:1 32373:1 32382:1 32388:1 32400:1 32404:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32549:1 32551:1 32552:1 32560:4 32562:2 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32625:1 32630:1 32633:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32735:1 32736:1 32741:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32847:1 32853:1 32861:2 32863:1 32874:1 32876:1 32915:1 32923:1 32934:1 32967:1 32969:2 32976:2 32995:1 33014:1 33019:3 33036:1 33039:1 33091:1 33094:1 33105:1 33108:1 33133:1 33139:2 33140:1 33141:2 33146:1 33159:1 33184:2 33193:1 33210:1 33219:1 33222:1 33229:1 33233:1 33240:1 33252:2 33268:2 33269:2 33275:1 33276:1 33282:1 33318:1 33326:4 33327:1 33332:1 33350:1 33364:4 33379:2 33400:1 33409:1 33419:2 33424:1 33436:1 33444:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:3 33463:2 33465:1 33467:2 33469:1 33471:1 33474:3 33479:1 33499:1 33508:1 33516:4 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 54:1 76:1 89:1 95:1 99:1 120:2 127:1 138:1 191:4 207:5 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 310:1 311:1 341:1 344:1 369:1 372:2 377:3 393:1 412:2 413:1 423:1 430:1 435:1 436:1 437:1 455:1 497:1 515:1 520:1 524:2 530:1 561:1 568:1 573:1 580:2 616:1 619:1 628:1 633:1 662:1 670:1 671:2 676:1 680:4 709:2 719:5 737:1 745:1 774:1 816:6 831:1 851:1 883:1 885:1 909:1 922:1 924:1 973:1 996:1 999:8 1000:1 1022:2 1026:4 1030:1 1050:1 1064:2 1066:3 1089:1 1093:1 1098:5 1102:1 1109:1 1111:1 1142:2 1144:3 1151:1 1153:2 1179:1 1185:1 1207:1 1225:1 1249:1 1267:1 1287:2 1302:2 1319:3 1322:2 1346:1 1349:1 1354:2 1359:1 1361:1 1364:1 1383:1 1389:1 1405:1 1407:1 1410:1 1419:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1511:1 1523:1 1529:3 1554:2 1559:1 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:2 1628:1 1663:1 1668:2 1672:3 1675:1 1680:1 1692:1 1727:1 1763:2 1800:2 1810:2 1813:1 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:2 1986:1 1996:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:3 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2266:1 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2433:1 2446:2 2458:3 2466:1 2470:2 2495:1 2505:1 2507:2 2510:1 2511:1 2515:1 2516:1 2520:2 2523:5 2536:2 2538:1 2543:1 2546:1 2555:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:3 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2593:1 2595:1 2599:5 2604:1 2607:3 2609:2 2612:6 2615:1 2667:1 2676:1 2679:1 2680:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2737:1 2742:1 2762:1 2763:1 2769:1 2795:1 2809:1 2822:1 2853:1 2863:2 2875:1 2877:1 2888:1 2898:1 2903:1 2904:1 2911:1 2922:1 2935:1 2938:1 2988:1 2995:1 3013:1 3034:3 3035:1 3036:1 3038:1 3045:2 3061:1 3077:3 3083:2 3090:1 3098:1 3128:1 3131:2 3147:4 3148:1 3152:3 3157:3 3164:8 3172:1 3180:1 3215:1 3219:1 3221:1 3222:3 3250:1 3258:1 3262:1 3265:5 3287:1 3304:1 3306:2 3314:1 3318:22 3333:1 3337:1 3346:2 3350:1 3351:1 3355:2 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3445:1 3462:1 3465:1 3483:1 3487:1 3511:1 3534:2 3542:3 3548:1 3590:1 3607:1 3636:1 3647:1 3648:2 3661:1 3663:1 3667:1 3669:1 3689:6 3691:1 3697:1 3723:10 3730:1 3756:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3991:1 3997:1 4000:1 4027:1 4031:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4200:2 4209:1 4227:1 4237:1 4244:1 4262:3 4264:1 4270:2 4276:1 4288:1 4313:1 4317:2 4332:1 4334:1 4340:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:2 4538:1 4550:1 4581:1 4584:1 4587:1 4590:1 4593:1 4629:1 4634:1 4643:5 4646:1 4648:2 4653:1 4705:2 4714:1 4725:1 4726:1 4729:1 4739:3 4754:3 4765:2 4768:1 4777:1 4782:1 4785:1 4817:1 4830:2 4843:2 4851:1 4852:2 4855:1 4859:1 4870:2 4891:2 4894:1 4907:1 4914:1 4930:2 4937:1 4940:1 4967:1 4968:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5061:1 5074:1 5077:1 5093:1 5118:1 5147:5 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5213:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:2 5290:1 5292:1 5298:1 5303:3 5308:1 5315:1 5316:3 5321:1 5332:1 5366:2 5389:1 5400:1 5403:1 5406:1 5416:1 5455:1 5459:1 5461:1 5471:1 5500:3 5508:1 5511:1 5523:27 5528:1 5546:1 5567:1 5571:1 5608:1 5617:1 5619:1 5645:1 5656:1 5668:4 5685:5 5686:8 5689:2 5694:2 5695:2 5700:1 5702:2 5708:2 5715:1 5716:2 5717:2 5718:1 5719:2 5745:5 5784:1 5811:2 5819:1 5822:1 5861:1 5865:4 5881:1 5919:1 5926:5 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6107:1 6111:1 6114:1 6118:2 6138:1 6147:1 6163:1 6185:1 6187:1 6202:1 6206:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:3 6391:1 6394:1 6399:1 6436:3 6480:1 6481:2 6484:1 6495:1 6532:1 6533:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6707:1 6716:1 6733:1 6739:2 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6847:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:1 6982:1 6986:1 6998:1 7002:1 7020:6 7043:1 7059:1 7062:2 7064:1 7067:1 7092:1 7100:1 7110:1 7141:8 7169:5 7188:5 7193:1 7194:1 7212:2 7232:4 7233:1 7240:6 7242:3 7248:2 7249:1 7253:2 7254:3 7255:1 7257:4 7263:2 7266:2 7279:1 7282:1 7297:1 7316:1 7377:1 7397:1 7418:2 7423:1 7434:1 7454:1 7459:1 7476:2 7479:2 7491:1 7524:1 7525:3 7559:1 7583:1 7587:1 7603:1 7613:1 7621:5 7698:1 7715:2 7722:4 7735:1 7748:4 7749:3 7788:1 7830:1 7862:2 7864:1 7869:1 7874:2 7875:1 7878:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7979:1 7986:1 7987:1 7990:1 8049:1 8050:1 8051:1 8055:1 8074:3 8104:1 8110:2 8112:1 8150:2 8154:2 8158:2 8160:1 8162:1 8169:1 8171:2 8178:1 8187:2 8217:1 8220:1 8223:1 8247:2 8260:1 8276:1 8280:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:4 8526:1 8534:1 8544:1 8548:1 8586:1 8595:1 8597:1 8630:2 8644:1 8646:1 8649:1 8650:1 8669:4 8673:1 8692:6 8693:7 8704:1 8716:3 8745:1 8746:1 8748:1 8749:2 8759:37 8783:2 8786:22 8807:1 8816:1 8828:1 8843:2 8857:1 8879:1 8880:2 8893:1 8935:2 8964:1 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9019:1 9022:1 9028:1 9040:1 9059:1 9080:1 9125:1 9127:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:5 9224:2 9225:1 9229:1 9266:3 9276:1 9287:1 9301:3 9305:2 9326:20 9339:1 9360:2 9370:1 9379:1 9392:3 9420:1 9431:1 9435:1 9438:1 9451:3 9485:1 9495:1 9500:1 9504:1 9518:1 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:2 9619:1 9624:1 9626:1 9630:1 9641:1 9650:1 9653:2 9662:3 9672:2 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9788:1 9792:1 9799:1 9823:2 9829:1 9831:3 9846:3 9848:7 9868:2 9885:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9958:1 9976:1 9998:1 10008:1 10012:1 10014:1 10015:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:2 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10207:1 10220:1 10226:1 10231:1 10232:1 10245:2 10247:1 10254:1 10270:1 10277:2 10294:1 10302:2 10309:1 10339:2 10353:6 10362:1 10365:1 10398:1 10404:1 10414:2 10434:2 10456:1 10477:1 10489:1 10494:1 10497:2 10500:1 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10542:1 10560:1 10563:1 10584:1 10596:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:2 10714:2 10719:1 10722:1 10732:3 10734:1 10758:1 10787:1 10790:4 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:2 10916:2 10924:1 10927:1 10938:4 10953:1 10957:2 10958:3 10974:4 10994:1 10996:1 11019:3 11032:1 11038:1 11043:1 11054:1 11082:4 11098:1 11100:1 11104:1 11109:1 11111:1 11129:1 11147:1 11148:1 11150:3 11156:1 11160:1 11171:1 11184:1 11248:2 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11300:1 11309:1 11326:1 11328:1 11370:1 11371:1 11372:1 11373:1 11379:1 11385:3 11424:1 11432:1 11440:1 11454:1 11467:1 11475:4 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:2 11549:1 11551:2 11557:1 11559:1 11578:1 11582:1 11619:1 11635:1 11639:2 11661:2 11667:1 11676:2 11681:1 11682:1 11685:1 11687:1 11704:1 11719:1 11749:3 11751:2 11754:1 11782:1 11814:2 11820:1 11861:1 11867:1 11870:1 11875:1 11880:3 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:3 11980:1 12000:1 12008:1 12025:1 12033:1 12049:1 12051:3 12052:1 12062:1 12080:1 12101:1 12121:1 12129:1 12165:1 12169:1 12175:4 12204:1 12212:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12278:1 12295:2 12323:1 12355:2 12359:1 12375:1 12377:1 12395:1 12396:1 12397:1 12399:1 12439:2 12447:2 12453:1 12455:2 12460:1 12461:8 12474:1 12496:1 12507:1 12512:1 12537:1 12540:1 12541:1 12563:1 12566:1 12572:2 12582:1 12603:1 12610:1 12611:1 12622:2 12649:2 12651:2 12654:1 12657:1 12669:1 12674:1 12678:1 12695:1 12698:1 12740:1 12744:1 12772:1 12778:3 12802:1 12805:1 12807:1 12813:2 12833:1 12850:2 12853:1 12867:1 12871:1 12877:1 12878:1 12879:1 12897:2 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:2 12972:6 12981:1 13008:1 13036:1 13040:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13089:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:4 13216:3 13218:1 13240:1 13241:2 13242:1 13252:1 13266:2 13268:2 13273:1 13274:1 13275:3 13277:1 13281:1 13284:3 13286:4 13287:1 13288:2 13289:1 13291:4 13292:2 13296:4 13301:3 13319:3 13326:1 13330:1 13333:1 13347:1 13348:1 13349:2 13360:1 13361:2 13364:1 13379:1 13382:3 13387:1 13388:1 13411:1 13419:1 13440:1 13456:1 13457:1 13460:5 13468:1 13474:1 13477:1 13491:1 13532:1 13535:1 13536:1 13556:2 13564:1 13574:1 13629:3 13631:1 13688:1 13692:1 13698:5 13702:1 13713:5 13728:1 13729:1 13743:1 13744:1 13766:1 13778:1 13789:1 13809:1 13810:1 13818:1 13835:1 13852:1 13855:1 13857:1 13858:1 13863:2 13883:1 13885:1 13899:1 13907:1 13923:1 13956:1 13970:2 13979:1 14003:1 14012:1 14060:2 14061:1 14071:1 14084:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14251:1 14253:1 14256:1 14270:2 14277:1 14283:1 14286:1 14288:2 14307:1 14311:5 14326:1 14329:1 14353:1 14355:2 14360:1 14366:1 14399:2 14414:1 14416:1 14429:1 14446:1 14474:7 14484:1 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:1 14572:1 14582:2 14583:1 14585:1 14587:1 14591:2 14596:1 14603:2 14606:1 14613:1 14617:1 14625:2 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:1 14723:1 14737:1 14754:1 14759:3 14761:1 14774:1 14787:1 14816:2 14824:1 14857:2 14858:1 14863:1 14885:1 14924:2 14929:2 14943:5 14976:1 14986:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:2 15125:3 15128:2 15129:1 15137:3 15148:1 15159:2 15164:1 15199:1 15229:6 15273:1 15298:1 15301:2 15304:1 15321:1 15328:1 15356:1 15374:1 15380:2 15395:1 15399:4 15404:1 15410:3 15438:3 15443:1 15458:1 15464:1 15508:1 15522:1 15525:2 15530:1 15547:1 15548:2 15554:1 15555:5 15556:1 15558:1 15559:1 15570:1 15575:3 15576:1 15580:1 15582:1 15584:1 15585:1 15586:2 15589:1 15609:1 15628:1 15642:1 15648:1 15650:2 15664:1 15675:4 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:1 15774:1 15778:2 15793:1 15819:1 15831:1 15858:1 15867:1 15876:3 15890:2 15914:1 15923:1 15925:1 15928:1 15929:1 15942:1 15946:1 15947:1 15963:2 15967:1 15999:2 16004:1 16012:2 16028:2 16038:1 16042:2 16055:1 16063:1 16067:1 16069:1 16116:1 16121:1 16132:2 16136:1 16140:2 16148:1 16149:2 16154:1 16156:1 16163:1 16166:1 16188:2 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:2 16297:1 16302:1 16304:3 16313:1 16320:2 16322:2 16323:3 16330:1 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:3 16509:1 16511:1 16515:1 16519:3 16521:1 16524:1 16526:2 16527:1 16533:2 16554:1 16561:1 16572:1 16582:1 16583:1 16597:2 16613:1 16615:1 16632:1 16634:1 16646:1 16649:2 16657:1 16669:1 16672:2 16690:2 16698:1 16702:1 16708:1 16720:1 16725:1 16736:1 16742:2 16747:1 16769:1 16773:2 16781:2 16800:1 16806:1 16827:1 16838:1 16840:1 16841:1 16857:1 16859:1 16876:1 16913:1 16934:2 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17091:1 17108:1 17111:1 17141:1 17150:1 17184:1 17211:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17304:1 17315:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:2 17416:1 17419:1 17441:1 17461:1 17489:3 17510:1 17520:1 17521:1 17522:6 17543:1 17548:1 17564:1 17578:2 17591:3 17592:2 17602:2 17605:1 17606:1 17621:1 17623:1 17628:3 17636:1 17637:7 17646:4 17654:1 17675:1 17683:1 17684:1 17688:6 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17788:1 17803:2 17808:1 17809:1 17812:2 17815:2 17816:4 17817:1 17828:2 17842:1 17845:2 17846:1 17847:5 17848:2 17859:1 17863:1 17873:1 17890:1 17896:1 17911:1 17915:2 17916:1 17921:1 17928:1 17934:1 17947:1 17970:1 17979:1 17984:1 18011:1 18020:2 18069:1 18091:1 18100:1 18138:1 18180:6 18185:1 18186:1 18205:1 18206:1 18216:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18300:1 18356:1 18357:2 18364:4 18371:3 18386:1 18394:1 18402:1 18404:2 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18489:1 18490:4 18494:2 18495:1 18527:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:1 18634:1 18640:1 18643:1 18666:1 18678:2 18684:1 18705:1 18711:2 18715:3 18741:3 18744:1 18760:2 18762:1 18769:1 18778:2 18782:1 18808:1 18819:1 18827:2 18830:2 18833:1 18839:1 18840:1 18870:3 18879:1 18887:1 18888:3 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:2 18997:1 19007:1 19011:1 19017:1 19027:5 19034:1 19045:1 19046:1 19052:19 19062:1 19074:1 19075:1 19100:1 19105:2 19119:1 19134:2 19136:2 19155:3 19159:1 19167:1 19182:1 19197:1 19238:1 19250:1 19281:1 19283:1 19284:1 19289:2 19299:1 19306:1 19319:1 19323:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:2 19395:1 19398:1 19417:1 19424:1 19440:3 19441:1 19447:2 19451:1 19458:1 19465:1 19470:3 19492:2 19511:1 19512:1 19525:1 19576:1 19590:1 19591:1 19611:4 19627:1 19632:1 19646:2 19652:2 19654:1 19688:1 19699:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:2 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19839:1 19843:1 19858:2 19895:1 19965:1 19972:1 19982:1 19996:1 20002:1 20054:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:3 20211:1 20213:2 20218:1 20225:1 20270:1 20274:1 20276:1 20277:1 20282:3 20300:1 20315:1 20320:1 20330:1 20358:2 20372:3 20410:1 20423:2 20431:1 20447:3 20456:1 20463:1 20490:2 20500:1 20504:1 20517:1 20530:1 20531:1 20554:2 20557:1 20566:3 20567:1 20577:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:2 20671:1 20706:1 20724:1 20726:1 20739:1 20746:1 20759:1 20768:1 20783:1 20787:1 20794:7 20811:1 20862:1 20875:1 20876:1 20897:1 20918:9 20928:1 20932:3 20947:3 20957:1 20966:1 21014:1 21023:1 21030:3 21033:2 21034:1 21070:1 21106:1 21109:1 21110:3 21124:1 21135:1 21140:1 21144:1 21156:1 21160:1 21162:3 21176:2303 21178:1 21180:2 21181:1 21220:2 21243:3 21257:1 21281:1 21298:1 21300:1 21301:1 21313:2 21361:3 21365:2 21385:1 21392:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21484:1 21496:1 21512:2 21540:3 21547:1 21549:1 21561:1 21570:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:3 21965:1 21993:1 21998:1 22002:1 22017:1 22024:1 22036:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:4 22112:1 22162:1 22170:1 22172:1 22173:2 22177:1 22211:1 22213:2 22224:2 22246:3 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22349:1 22358:1 22374:2 22381:1 22412:2 22413:1 22418:1 22423:1 22436:2 22438:1 22441:1 22446:2 22450:1 22459:3 22461:1 22469:2 22478:18 22481:1 22489:1 22493:1 22498:1 22503:1 22518:1 22525:1 22530:1 22533:1 22541:5 22545:1 22556:1 22567:1 22568:1 22590:1 22591:1 22621:1 22622:1 22636:2 22637:1 22661:7 22682:1 22687:1 22691:1 22693:1 22695:1 22698:1 22710:1 22712:1 22721:2 22748:1 22756:1 22761:1 22762:4 22769:1 22777:3 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:3 22846:1 22847:1 22851:1 22852:1 22866:2 22873:1 22884:1 22890:1 22893:3 22895:1 22907:1 22911:1 22932:1 22944:1 22959:1 22984:22 22993:1 22996:1 23001:1 23012:1 23014:1 23015:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23154:1 23164:1 23187:1 23192:1 23198:1 23214:2 23222:1 23226:1 23240:1 23241:2 23246:2 23247:2 23285:1 23294:3 23298:1 23300:1 23306:1 23307:1 23318:1 23441:1 23442:1 23443:2 23459:1 23471:2 23518:1 23524:1 23526:3 23532:1 23546:1 23554:1 23566:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:2 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:17 23722:1 23725:1 23733:3 23735:5 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:3 23881:1 23892:1 23913:4 23931:2 23998:1 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:3 24088:1 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24223:1 24225:1 24228:3 24231:6 24254:1 24261:2 24265:1 24298:2 24317:1 24338:1 24351:1 24362:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24395:6 24398:2 24406:2 24408:1 24421:1 24448:2 24450:1 24452:1 24453:1 24459:1 24461:1 24465:3 24466:1 24467:1 24469:5 24470:1 24477:2 24480:1 24481:2 24494:1 24513:1 24515:2 24536:1 24540:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:3 24634:2 24644:3 24655:2 24658:1 24673:1 24684:1 24693:1 24712:1 24743:1 24752:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24821:1 24829:1 24830:5 24834:1 24840:1 24845:1 24856:1 24875:2 24891:1 24920:1 24943:2 24957:1 24971:2 24977:1 24986:1 24992:1 25019:5 25060:2 25067:1 25071:2 25076:2 25079:1 25089:1 25090:1 25091:1 25098:1 25102:1 25112:1 25122:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25211:1 25215:2 25221:1 25222:1 25228:2 25239:1 25242:1 25246:1 25250:6 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25338:1 25347:1 25348:1 25376:1 25387:3 25391:1 25396:2 25401:1 25403:1 25406:1 25407:1 25417:1 25418:2 25427:1 25429:1 25432:1 25440:1 25442:2 25447:1 25458:1 25464:1 25465:4 25472:2 25482:1 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:2 25626:2 25629:1 25630:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:3 25756:1 25759:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25828:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25892:1 25901:8 25906:1 25913:1 25915:1 25918:1 25920:1 25927:1 25931:2 25946:3 25947:2 25980:1 25993:1 25998:1 26011:1 26015:1 26027:2 26030:2 26041:1 26044:1 26055:1 26063:1 26081:1 26085:1 26087:1 26091:1 26118:2 26120:2 26157:2 26168:1 26184:1 26185:1 26207:2 26208:1 26213:1 26215:1 26222:1 26223:1 26235:1 26240:1 26242:1 26249:1 26268:1 26279:1 26290:1 26316:2 26317:1 26377:2 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26460:1 26466:1 26471:1 26473:1 26476:1 26480:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:3 26555:2 26561:3 26609:1 26615:3 26636:1 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26857:1 26863:1 26871:2 26872:1 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26974:1 26976:1 27008:1 27022:1 27025:1 27043:1 27048:1 27054:1 27060:1 27065:1 27068:1 27076:1 27138:1 27147:1 27157:2 27180:1 27191:1 27197:1 27203:3 27204:1 27267:1 27273:1 27277:1 27300:2 27302:1 27316:1 27324:2 27337:1 27345:2 27348:1 27376:1 27391:1 27403:1 27405:2 27423:1 27428:1 27429:2 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27526:2 27550:1 27560:2 27570:2 27574:1 27620:1 27626:2 27633:1 27659:1 27660:1 27663:1 27694:2 27703:2 27705:2 27710:1 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:5 27748:2 27749:1 27756:2 27768:1 27776:1 27781:5 27797:1 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:3 27918:2 27949:1 27953:1 27955:1 27956:1 27993:1 28031:2 28035:1 28036:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28101:2 28112:1 28119:2 28142:1 28146:1 28162:1 28192:1 28193:1 28197:1 28218:2 28234:3 28245:1 28270:1 28276:1 28289:1 28290:2 28302:1 28316:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28443:1 28450:3 28475:1 28496:1 28521:1 28546:1 28560:1 28569:2 28571:5 28595:1 28609:5 28638:1 28705:2 28706:1 28712:1 28715:1 28749:1 28753:1 28764:1 28780:1 28795:1 28797:1 28806:2 28818:2 28822:1 28834:1 28836:1 28839:1 28845:4 28850:3 28851:2 28875:1 28878:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:2 28967:3 28969:1 28973:2 28994:2 28997:1 29025:3 29048:1 29060:1 29063:2 29076:2 29103:1 29107:1 29119:1 29123:1 29153:1 29157:3 29183:1 29191:6 29193:6 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:2 29284:2 29285:1 29339:1 29348:1 29356:1 29360:1 29377:2 29385:1 29396:1 29410:1 29422:1 29427:2 29440:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29546:1 29556:1 29557:2 29567:1 29576:2 29582:1 29594:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29728:1 29748:12 29749:2 29761:1 29787:1 29794:1 29799:1 29818:3 29839:3 29844:1 29849:1 29877:1 29881:1 29886:2 29892:2 29906:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30094:1 30099:1 30116:2 30118:1 30120:1 30126:1 30128:1 30140:2 30169:1 30171:1 30177:1 30209:1 30211:1 30218:1 30233:1 30243:1 30257:1 30283:1 30303:1 30319:1 30320:1 30356:1 30369:1 30384:1 30386:1 30412:1 30415:1 30431:2 30455:1 30459:2 30468:1 30480:1 30503:1 30505:1 30508:1 30521:1 30539:1 30541:3 30547:1 30556:1 30574:1 30579:1 30598:1 30602:1 30625:1 30676:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:5 30769:1 30773:2 30794:2 30798:3 30801:1 30807:1 30813:2 30839:2 30850:1 30854:6 30870:2 30872:1 30873:1 30878:1 30880:1 30882:1 30888:2 30926:1 30935:1 30944:2 30949:2 30959:1 30994:1 30997:1 31011:3 31033:1 31039:3 31068:1 31072:3 31088:2 31092:1 31098:1 31101:1 31103:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31139:1 31146:1 31149:2 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31193:1 31194:2 31197:1 31206:2 31207:1 31209:2 31215:1 31243:1 31254:1 31260:1 31319:2 31325:1 31330:3 31345:1 31356:1 31399:1 31420:2 31422:1 31429:1 31442:1 31453:1 31472:2 31474:1 31477:1 31501:1 31506:1 31532:1 31542:2 31559:1 31560:4 31562:2 31565:1 31575:1 31577:3 31604:2 31622:1 31631:2 31638:1 31700:1 31705:1 31714:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31868:1 31873:2 31897:1 31916:6 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31941:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32051:1 32065:1 32069:1 32081:1 32086:5 32099:2 32106:1 32155:1 32168:1 32173:1 32175:2 32200:4 32206:6 32219:1 32246:1 32248:7 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32307:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:5 32355:1 32362:1 32373:1 32382:1 32385:1 32388:1 32400:1 32404:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32472:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32549:1 32551:1 32552:1 32560:4 32562:3 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32625:1 32630:1 32633:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32735:1 32736:1 32741:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32847:1 32853:1 32861:3 32863:1 32874:1 32876:1 32904:1 32915:1 32923:1 32934:1 32967:1 32969:2 32976:2 32995:1 33014:1 33019:3 33036:1 33039:1 33091:1 33094:1 33099:1 33105:1 33108:1 33133:1 33139:2 33140:1 33141:2 33146:1 33159:1 33184:2 33193:1 33210:1 33219:1 33220:1 33222:1 33229:1 33233:1 33240:1 33252:2 33268:2 33269:2 33275:1 33276:1 33282:1 33318:1 33326:4 33327:1 33332:1 33350:1 33364:4 33379:2 33400:1 33409:1 33419:2 33424:1 33436:1 33444:1 33445:1 33446:1 33448:1 33450:1 33453:3 33454:1 33461:3 33463:2 33465:1 33467:2 33469:1 33471:1 33474:3 33479:1 33499:1 33508:1 33516:6 33525:1 33585:1 33600:1 7 12:1 21:1 24:1 42:1 54:1 76:1 89:1 95:1 99:1 120:2 127:1 138:1 191:5 207:6 237:2 244:1 249:1 252:2 258:2 262:2 286:1 306:1 310:1 311:1 319:1 341:1 344:1 369:1 372:2 377:3 393:1 412:2 413:1 423:1 430:1 435:1 436:1 437:1 455:2 497:1 515:1 520:1 521:1 524:2 530:1 561:1 568:1 573:1 580:2 616:1 619:1 628:1 633:1 662:1 670:1 671:2 676:1 680:4 709:2 719:5 737:1 745:1 774:1 816:6 831:1 851:1 883:1 885:1 909:1 922:1 924:1 973:1 996:1 999:8 1000:1 1022:2 1026:4 1030:2 1050:1 1064:2 1066:3 1089:1 1093:1 1094:1 1098:5 1102:1 1109:1 1111:1 1142:2 1144:3 1151:1 1153:2 1179:1 1182:1 1185:1 1207:1 1225:1 1249:1 1258:1 1267:1 1287:2 1302:2 1319:3 1322:2 1346:1 1349:1 1354:2 1359:1 1361:1 1364:1 1383:1 1389:1 1405:1 1407:1 1410:1 1419:1 1421:2 1428:1 1435:1 1438:1 1441:1 1453:1 1462:1 1471:1 1491:1 1511:1 1523:1 1529:3 1554:2 1559:1 1575:1 1585:1 1597:1 1601:1 1612:1 1616:1 1621:2 1628:1 1638:1 1663:1 1668:2 1672:3 1675:1 1680:1 1692:1 1727:1 1763:2 1800:2 1802:1 1810:2 1813:1 1852:1 1854:1 1864:3 1869:3 1875:1 1880:1 1881:3 1883:3 1905:2 1906:1 1917:1 1943:1 1952:1 1960:2 1986:1 1996:1 2013:1 2014:3 2015:2 2020:1 2028:1 2055:1 2058:3 2078:1 2081:1 2100:4 2103:1 2131:2 2144:2 2157:3 2159:1 2160:1 2175:1 2178:1 2185:1 2208:2 2218:1 2223:1 2225:1 2234:1 2239:1 2254:2 2261:2 2266:1 2290:1 2331:1 2332:1 2333:1 2338:1 2341:1 2359:1 2370:4 2381:1 2400:1 2423:5 2433:1 2446:2 2458:3 2466:1 2470:2 2474:1 2495:1 2505:1 2507:2 2510:1 2511:1 2515:1 2516:1 2520:2 2523:5 2536:2 2538:1 2543:1 2546:1 2555:1 2561:1 2564:1 2569:1 2570:6 2573:2 2575:3 2577:1 2580:4 2583:1 2584:2 2585:2 2592:1 2593:1 2595:1 2599:5 2604:1 2607:3 2609:2 2612:6 2615:1 2667:1 2676:1 2679:1 2680:1 2682:1 2687:1 2703:1 2704:1 2713:1 2723:1 2727:2 2737:1 2742:1 2762:1 2763:1 2769:1 2795:1 2809:1 2822:1 2845:1 2853:1 2863:2 2875:1 2877:1 2888:1 2898:1 2903:1 2904:1 2911:1 2919:1 2922:1 2935:1 2938:1 2988:1 2995:1 3013:1 3018:1 3034:3 3035:1 3036:1 3038:1 3045:2 3061:1 3077:3 3083:2 3090:1 3098:1 3128:1 3131:2 3147:4 3148:1 3152:3 3157:3 3164:8 3172:1 3180:2 3215:1 3219:1 3221:1 3222:3 3250:1 3258:1 3262:1 3265:5 3287:1 3304:1 3306:2 3314:1 3318:22 3333:1 3337:1 3346:2 3350:1 3351:1 3355:2 3384:1 3385:1 3387:1 3400:1 3417:1 3430:1 3445:1 3462:1 3465:1 3483:2 3487:1 3511:1 3534:3 3542:3 3548:1 3590:1 3607:1 3636:1 3647:1 3648:3 3661:1 3663:1 3667:1 3669:1 3689:6 3691:1 3697:1 3723:11 3730:1 3756:1 3769:1 3783:2 3795:1 3826:1 3830:2 3879:1 3890:1 3891:1 3893:1 3897:1 3898:1 3899:1 3937:1 3941:1 3947:2 3970:1 3980:1 3985:1 3991:1 3997:1 4000:1 4027:1 4031:1 4034:1 4038:2 4048:2 4055:1 4057:1 4069:2 4077:1 4081:1 4084:1 4100:1 4112:1 4138:1 4145:1 4152:1 4153:3 4155:2 4156:1 4173:1 4200:2 4209:1 4227:1 4237:1 4244:1 4262:3 4264:1 4270:2 4273:1 4276:1 4288:1 4313:1 4317:3 4332:1 4334:2 4340:1 4341:2 4359:1 4382:1 4395:2 4396:1 4410:1 4411:1 4413:2 4421:1 4424:1 4437:1 4441:1 4451:2 4463:1 4472:1 4490:1 4505:2 4512:2 4521:1 4536:3 4538:1 4550:1 4581:1 4584:1 4587:1 4590:1 4593:1 4616:1 4629:1 4634:1 4643:6 4646:1 4648:2 4653:1 4697:1 4705:2 4714:1 4725:1 4726:1 4729:1 4739:3 4754:3 4765:2 4768:1 4777:1 4782:1 4785:1 4817:3 4830:3 4843:3 4851:1 4852:2 4855:1 4859:1 4870:2 4891:2 4894:1 4907:2 4914:1 4930:2 4937:1 4940:1 4967:1 4968:1 4991:1 5000:1 5007:1 5011:2 5014:1 5030:1 5031:1 5040:1 5052:1 5061:1 5074:1 5077:1 5093:1 5118:1 5147:6 5154:1 5165:1 5175:1 5176:1 5184:1 5196:1 5197:1 5213:1 5228:1 5244:1 5246:1 5258:2 5260:1 5261:2 5286:2 5290:1 5292:1 5298:2 5303:3 5308:1 5315:1 5316:3 5321:1 5332:1 5366:2 5389:1 5400:1 5403:1 5406:1 5416:1 5455:1 5459:1 5461:1 5471:1 5500:3 5508:1 5511:1 5523:27 5528:1 5546:1 5567:1 5571:1 5608:1 5617:1 5619:3 5645:1 5656:1 5668:5 5685:5 5686:9 5689:2 5694:3 5695:2 5700:1 5702:2 5708:2 5715:1 5716:2 5717:2 5718:1 5719:3 5745:6 5784:1 5811:2 5819:1 5822:1 5861:1 5865:4 5881:1 5919:1 5926:6 5954:2 5979:1 5990:1 6024:1 6056:1 6057:1 6065:1 6076:2 6085:1 6096:1 6105:1 6107:1 6111:1 6114:1 6118:2 6138:1 6147:1 6163:1 6185:1 6187:1 6202:1 6206:1 6283:1 6291:1 6292:1 6298:2 6311:1 6362:3 6363:1 6391:1 6394:2 6399:1 6436:4 6460:1 6480:1 6481:2 6484:1 6486:1 6495:1 6532:1 6533:1 6541:1 6542:1 6561:1 6563:2 6566:1 6574:2 6643:2 6657:1 6666:1 6691:1 6707:1 6716:1 6733:1 6739:2 6748:1 6753:1 6773:1 6807:1 6821:1 6822:1 6847:1 6859:1 6880:2 6884:2 6912:1 6914:1 6919:1 6949:1 6967:1 6979:2 6982:1 6986:1 6998:1 7002:1 7020:6 7043:1 7059:1 7062:2 7064:1 7067:1 7087:1 7092:1 7100:1 7110:1 7141:8 7169:6 7188:6 7193:1 7194:1 7212:2 7213:1 7232:4 7233:1 7240:7 7242:3 7248:2 7249:1 7251:1 7253:2 7254:3 7255:1 7257:4 7263:2 7266:2 7276:1 7279:1 7282:1 7297:1 7316:1 7347:1 7377:1 7397:1 7418:2 7423:1 7434:1 7454:1 7459:1 7476:2 7479:2 7491:1 7524:1 7525:3 7559:1 7583:1 7587:1 7603:1 7613:1 7621:5 7698:1 7715:2 7722:4 7735:1 7748:4 7749:3 7788:1 7830:1 7862:2 7864:1 7869:1 7874:2 7875:1 7878:1 7881:1 7892:2 7920:1 7928:1 7949:1 7965:1 7971:1 7976:1 7979:1 7986:1 7987:1 7990:1 8049:1 8050:1 8051:1 8055:1 8074:5 8104:1 8110:2 8112:1 8150:2 8154:2 8158:2 8160:1 8162:1 8169:1 8171:2 8178:1 8187:2 8217:1 8220:1 8223:1 8247:2 8260:1 8276:1 8280:1 8311:1 8312:1 8333:1 8347:1 8361:1 8372:3 8374:1 8378:1 8388:1 8409:1 8414:2 8415:1 8426:1 8430:1 8443:1 8468:4 8481:1 8498:1 8510:1 8517:4 8526:1 8534:1 8544:1 8548:1 8586:1 8595:1 8597:1 8630:2 8644:1 8646:1 8649:1 8650:1 8669:4 8673:1 8692:8 8693:7 8704:1 8716:3 8745:1 8746:1 8748:1 8749:2 8759:37 8783:2 8786:22 8807:1 8816:1 8828:1 8843:2 8857:1 8879:1 8880:2 8893:1 8935:2 8964:1 8965:1 8968:1 8978:1 8983:1 8989:1 8998:4 9002:1 9012:1 9013:1 9018:1 9019:1 9022:1 9028:1 9040:1 9059:1 9080:1 9125:3 9127:1 9136:2 9145:1 9166:1 9191:1 9196:1 9222:5 9224:2 9225:1 9229:1 9266:3 9276:1 9287:1 9301:3 9305:2 9326:20 9339:1 9360:2 9370:2 9379:1 9392:3 9420:1 9431:1 9435:1 9438:1 9451:3 9485:1 9495:1 9500:1 9504:1 9518:2 9524:4 9542:2 9547:2 9560:1 9568:1 9599:2 9605:2 9619:1 9624:1 9626:1 9630:1 9641:1 9650:1 9653:2 9662:3 9672:2 9680:2 9697:1 9724:1 9730:2 9763:1 9766:1 9768:2 9769:2 9774:1 9780:2 9785:1 9788:1 9792:1 9799:1 9823:2 9829:1 9831:3 9846:3 9848:7 9868:2 9885:2 9888:1 9897:1 9917:1 9921:1 9931:1 9933:1 9940:1 9950:2 9957:2 9958:1 9976:1 9998:1 10008:1 10012:1 10014:1 10015:1 10025:1 10043:1 10066:2 10067:2 10071:1 10087:1 10093:2 10094:1 10102:2 10122:3 10125:3 10132:2 10145:1 10171:1 10207:1 10220:1 10226:1 10231:1 10232:1 10242:1 10245:2 10247:1 10254:1 10269:1 10270:1 10277:2 10294:1 10302:2 10309:1 10339:2 10353:6 10362:1 10365:1 10398:1 10404:1 10414:2 10434:2 10456:1 10477:1 10489:1 10494:1 10497:2 10500:1 10513:1 10514:1 10516:1 10525:1 10530:1 10531:2 10532:1 10542:1 10559:1 10560:1 10563:1 10584:1 10596:1 10600:3 10605:1 10625:1 10660:1 10663:1 10703:2 10714:2 10719:1 10722:1 10732:3 10734:1 10758:1 10787:2 10790:4 10792:1 10798:1 10809:1 10821:1 10828:1 10836:2 10839:1 10868:3 10879:1 10903:2 10916:2 10924:1 10927:1 10938:4 10953:1 10957:3 10958:3 10974:4 10994:1 10996:1 11019:3 11032:1 11038:1 11043:1 11054:1 11082:4 11098:1 11100:1 11104:1 11109:1 11111:1 11129:1 11140:1 11147:1 11148:1 11150:3 11156:1 11160:1 11171:1 11184:1 11248:2 11251:1 11264:1 11276:1 11277:1 11288:1 11295:2 11300:1 11309:1 11326:1 11328:1 11370:1 11371:1 11372:1 11373:1 11379:1 11385:3 11424:1 11432:1 11440:1 11454:1 11467:1 11475:4 11478:1 11480:1 11482:1 11486:1 11502:2 11517:1 11521:1 11536:3 11542:2 11549:1 11551:2 11557:1 11559:1 11578:1 11582:1 11619:1 11635:1 11639:2 11661:2 11667:1 11674:1 11676:2 11681:1 11682:1 11685:1 11687:1 11704:1 11719:1 11749:3 11751:2 11754:1 11782:1 11814:2 11820:1 11861:1 11867:1 11870:1 11875:1 11880:3 11918:2 11930:1 11951:1 11953:1 11957:1 11958:2 11974:3 11980:1 12000:1 12008:1 12024:1 12025:1 12033:1 12049:1 12051:3 12052:1 12062:1 12080:1 12101:1 12121:1 12129:1 12165:1 12169:1 12175:4 12204:2 12212:1 12216:1 12238:1 12242:1 12246:1 12248:1 12250:1 12253:1 12278:1 12295:3 12323:1 12355:2 12359:1 12375:1 12377:1 12395:1 12396:1 12397:1 12399:1 12439:2 12447:2 12453:1 12455:2 12460:1 12461:9 12469:1 12474:1 12496:1 12507:1 12512:1 12519:1 12537:1 12540:1 12541:1 12563:1 12566:1 12572:2 12582:1 12603:1 12610:1 12611:2 12622:2 12649:2 12651:2 12654:1 12657:1 12669:1 12674:1 12678:1 12695:1 12698:1 12740:1 12744:1 12772:1 12778:3 12802:1 12805:1 12807:1 12813:3 12833:1 12850:2 12853:1 12867:1 12871:1 12877:1 12878:1 12879:1 12897:2 12904:1 12907:1 12919:2 12928:2 12933:1 12943:1 12948:1 12970:2 12972:7 12981:1 13008:1 13036:1 13040:1 13042:1 13046:1 13051:1 13064:1 13066:2 13077:1 13089:1 13101:1 13103:1 13109:1 13121:3 13123:1 13158:2 13162:1 13169:1 13214:5 13216:3 13218:1 13240:1 13241:2 13242:1 13252:1 13266:2 13268:2 13273:1 13274:1 13275:3 13277:1 13281:1 13284:3 13286:4 13287:1 13288:2 13289:1 13291:4 13292:2 13296:4 13301:4 13319:3 13326:1 13330:1 13333:1 13347:1 13348:1 13349:2 13360:1 13361:2 13364:1 13370:1 13379:1 13382:3 13387:1 13388:1 13411:1 13419:1 13440:1 13456:1 13457:1 13460:5 13468:1 13474:1 13477:1 13491:1 13532:1 13535:1 13536:1 13556:2 13564:1 13568:1 13574:1 13629:3 13631:1 13672:1 13688:1 13692:1 13698:6 13702:1 13713:6 13726:1 13728:1 13729:1 13743:1 13744:1 13766:2 13778:1 13789:1 13809:1 13810:1 13818:1 13827:1 13835:1 13852:1 13855:2 13857:1 13858:1 13863:2 13883:1 13885:1 13898:1 13899:1 13907:1 13923:1 13956:1 13970:2 13979:1 13987:1 14003:1 14012:1 14060:2 14061:1 14071:1 14084:1 14096:1 14109:1 14128:1 14136:1 14210:1 14216:1 14246:1 14248:2 14251:1 14253:1 14256:1 14270:2 14277:1 14283:1 14286:1 14288:2 14301:1 14307:1 14311:5 14326:2 14329:1 14353:1 14355:2 14360:1 14366:1 14396:1 14399:2 14414:1 14416:1 14429:1 14446:1 14454:1 14474:7 14484:1 14496:1 14506:1 14514:1 14522:1 14528:2 14530:2 14533:1 14536:1 14539:1 14540:1 14542:1 14555:4 14572:1 14582:2 14583:1 14585:1 14587:1 14591:2 14596:1 14603:2 14606:1 14613:1 14617:1 14619:1 14625:2 14629:1 14634:1 14648:1 14665:2 14672:2 14673:1 14674:1 14688:1 14708:2 14723:1 14737:1 14754:1 14759:3 14761:1 14774:1 14787:1 14798:1 14816:3 14824:1 14857:2 14858:1 14863:1 14885:1 14924:2 14929:2 14943:5 14976:1 14986:1 15015:1 15027:1 15029:1 15041:1 15070:1 15103:1 15110:2 15125:3 15128:2 15129:1 15137:3 15148:1 15159:2 15164:1 15199:1 15229:7 15273:1 15298:1 15301:2 15304:1 15321:1 15328:1 15349:1 15356:1 15374:1 15380:2 15395:3 15399:4 15404:1 15410:3 15438:3 15443:1 15444:1 15458:1 15464:1 15468:1 15508:1 15522:1 15525:2 15530:1 15547:1 15548:2 15554:1 15555:5 15556:2 15558:1 15559:1 15570:1 15575:3 15576:1 15580:1 15582:1 15584:1 15585:1 15586:2 15589:1 15609:1 15628:1 15642:1 15648:1 15650:2 15664:1 15675:4 15680:3 15691:1 15703:2 15715:1 15726:3 15729:2 15735:1 15772:2 15773:3 15774:1 15778:2 15793:1 15819:1 15831:1 15858:2 15867:1 15876:3 15890:2 15914:1 15923:1 15925:1 15928:1 15929:1 15942:1 15946:1 15947:1 15963:2 15967:2 15999:3 16004:1 16012:2 16028:2 16038:1 16042:2 16055:2 16063:1 16067:1 16069:1 16116:1 16121:1 16132:2 16136:1 16140:2 16148:1 16149:2 16154:1 16156:1 16163:1 16166:1 16188:2 16189:1 16211:1 16231:1 16237:1 16263:1 16278:1 16295:2 16297:1 16302:1 16304:3 16313:1 16320:2 16322:2 16323:3 16330:1 16332:1 16333:1 16338:1 16353:1 16366:1 16418:1 16425:1 16451:1 16457:1 16486:1 16489:1 16502:1 16506:3 16509:1 16511:1 16515:1 16519:3 16521:1 16524:1 16526:2 16527:1 16533:2 16554:1 16561:1 16572:1 16582:1 16583:1 16597:2 16613:1 16615:1 16632:1 16634:1 16646:1 16649:2 16657:1 16669:1 16672:2 16690:2 16698:1 16702:1 16708:3 16720:1 16725:1 16736:1 16742:2 16745:1 16747:1 16769:1 16773:2 16781:2 16800:1 16806:1 16827:1 16835:1 16838:1 16840:1 16841:1 16857:1 16859:1 16876:1 16913:1 16934:2 16959:1 16978:2 16992:1 16995:1 16997:3 17029:2 17030:1 17036:1 17091:1 17108:1 17111:1 17141:1 17150:1 17184:1 17211:1 17219:1 17232:1 17242:1 17249:1 17252:1 17278:2 17280:1 17304:1 17315:1 17319:1 17343:3 17347:1 17362:1 17384:1 17413:2 17416:1 17419:1 17441:1 17461:1 17489:3 17510:1 17520:1 17521:1 17522:6 17543:1 17548:1 17564:1 17578:2 17591:3 17592:2 17602:2 17605:1 17606:1 17621:1 17623:1 17628:3 17636:1 17637:7 17646:4 17654:1 17675:1 17683:1 17684:1 17688:6 17690:1 17724:1 17731:1 17757:1 17760:1 17772:1 17788:1 17803:2 17808:1 17809:1 17812:2 17815:2 17816:4 17817:1 17828:2 17842:1 17845:2 17846:1 17847:5 17848:2 17859:1 17863:1 17873:1 17890:1 17896:1 17898:1 17911:1 17915:2 17916:1 17921:1 17928:1 17934:1 17947:1 17970:1 17979:1 17984:1 18011:1 18020:2 18069:1 18085:1 18091:1 18100:1 18138:1 18180:7 18185:1 18186:1 18205:1 18206:1 18216:1 18220:1 18224:1 18228:1 18247:1 18287:2 18291:1 18298:1 18300:1 18356:1 18357:3 18364:4 18371:3 18386:1 18394:1 18402:1 18404:2 18444:1 18452:1 18467:1 18469:1 18473:2 18475:1 18481:1 18482:3 18484:3 18487:1 18489:1 18490:4 18494:2 18495:1 18527:1 18572:1 18582:1 18588:1 18590:1 18593:1 18631:1 18632:2 18634:1 18640:1 18643:1 18666:1 18678:2 18684:1 18705:1 18711:2 18715:3 18741:3 18744:1 18760:2 18762:1 18769:1 18778:2 18782:1 18808:1 18819:1 18827:2 18830:2 18833:1 18839:1 18840:1 18870:3 18872:1 18879:1 18887:1 18888:4 18891:1 18896:2 18901:2 18923:1 18927:1 18959:1 18961:2 18997:1 19007:1 19011:1 19017:1 19027:5 19034:1 19045:1 19046:1 19052:19 19062:1 19074:1 19075:1 19100:1 19105:2 19119:1 19134:2 19136:2 19155:3 19159:1 19167:1 19182:2 19183:1 19197:1 19238:1 19250:1 19281:1 19283:1 19284:1 19289:2 19299:1 19306:2 19319:1 19323:1 19325:1 19331:1 19334:1 19341:1 19347:3 19360:1 19384:2 19395:1 19398:1 19417:1 19424:1 19440:3 19441:1 19447:2 19451:1 19458:1 19465:1 19470:3 19492:2 19511:1 19512:1 19525:1 19576:1 19590:1 19591:1 19611:4 19627:1 19632:1 19646:2 19652:2 19654:1 19688:1 19699:1 19719:1 19722:2 19737:2 19743:1 19745:1 19753:2 19758:2 19763:1 19766:2 19771:2 19781:1 19783:1 19785:1 19786:1 19787:1 19807:1 19813:1 19816:1 19832:1 19837:1 19838:1 19839:1 19843:1 19858:2 19867:1 19895:1 19965:2 19972:1 19982:1 19990:1 19996:1 20002:1 20054:1 20093:1 20095:1 20139:2 20154:1 20177:1 20203:1 20206:3 20211:1 20213:2 20218:1 20225:1 20247:1 20270:1 20274:1 20276:1 20277:1 20282:3 20300:1 20315:1 20320:1 20330:1 20358:2 20372:3 20410:1 20423:2 20431:1 20447:3 20456:1 20463:1 20490:2 20500:1 20504:1 20517:1 20530:1 20531:1 20554:2 20557:1 20566:3 20567:1 20577:1 20592:1 20604:1 20619:1 20624:1 20639:1 20642:1 20651:1 20666:2 20671:1 20692:1 20706:1 20724:1 20726:1 20739:1 20746:1 20759:1 20768:1 20783:1 20787:1 20794:7 20804:1 20811:1 20862:1 20875:1 20876:1 20897:1 20918:10 20928:1 20932:3 20947:3 20957:1 20966:1 21014:1 21023:1 21030:4 21033:2 21034:1 21070:1 21106:1 21109:1 21110:3 21122:2 21124:1 21135:1 21140:1 21144:1 21156:1 21160:1 21162:3 21176:2402 21178:1 21180:2 21181:1 21220:2 21243:3 21247:1 21257:1 21281:1 21298:1 21300:1 21301:1 21313:2 21361:3 21365:2 21385:1 21392:1 21393:2 21411:1 21413:1 21414:1 21423:1 21426:1 21442:1 21447:2 21457:1 21459:3 21472:1 21484:1 21486:1 21496:1 21512:2 21540:3 21547:1 21549:1 21561:1 21570:1 21584:1 21591:2 21595:1 21641:1 21648:1 21652:1 21668:3 21680:1 21685:2 21689:1 21713:1 21714:1 21716:1 21726:1 21734:1 21746:1 21754:1 21769:1 21785:1 21793:1 21800:1 21801:1 21810:2 21816:2 21818:1 21829:1 21839:1 21845:1 21855:1 21857:1 21865:1 21876:2 21903:1 21912:4 21917:1 21919:1 21941:1 21959:3 21965:1 21993:1 21998:1 22002:1 22017:1 22024:1 22036:1 22045:6 22047:1 22050:3 22058:1 22074:2 22077:1 22091:4 22112:2 22162:1 22163:1 22170:1 22172:1 22173:2 22177:1 22211:1 22213:2 22224:2 22246:4 22250:1 22252:1 22279:1 22295:1 22304:1 22320:1 22327:1 22336:2 22347:1 22349:1 22358:1 22374:2 22381:1 22412:2 22413:1 22418:1 22423:1 22436:2 22438:1 22441:1 22446:2 22450:1 22459:3 22461:1 22469:2 22478:18 22481:1 22489:1 22493:1 22498:1 22503:1 22518:1 22525:1 22526:1 22530:1 22533:1 22541:5 22545:1 22556:1 22567:2 22568:1 22590:1 22591:1 22621:1 22622:1 22636:2 22637:1 22661:7 22682:1 22687:1 22691:1 22693:1 22695:1 22698:1 22710:1 22712:1 22721:2 22748:1 22756:1 22761:1 22762:4 22769:1 22777:3 22793:3 22796:1 22797:1 22811:1 22821:1 22827:1 22837:3 22846:1 22847:1 22851:1 22852:1 22857:1 22866:2 22873:2 22884:1 22890:1 22893:3 22895:1 22907:1 22909:1 22911:1 22932:1 22944:1 22959:1 22984:22 22993:1 22996:1 23001:1 23012:1 23014:1 23015:1 23018:2 23029:1 23042:1 23061:1 23064:1 23080:1 23098:2 23123:1 23131:1 23133:1 23154:1 23164:1 23187:1 23192:1 23198:1 23214:2 23222:1 23226:1 23240:1 23241:2 23246:2 23247:2 23285:1 23294:3 23298:1 23300:1 23306:1 23307:1 23318:1 23441:1 23442:1 23443:2 23459:1 23471:2 23499:1 23518:1 23524:1 23526:3 23532:1 23546:1 23554:1 23566:1 23582:2 23585:1 23599:2 23603:1 23616:1 23622:1 23626:1 23627:1 23659:3 23679:1 23684:1 23689:1 23692:2 23702:3 23709:1 23710:1 23711:17 23722:1 23725:1 23733:3 23735:6 23744:1 23758:2 23762:1 23772:1 23799:1 23816:1 23835:1 23843:1 23847:1 23848:3 23881:1 23892:1 23913:4 23931:2 23989:1 23998:1 24015:2 24018:1 24031:1 24032:1 24035:1 24038:2 24039:1 24043:1 24049:1 24067:2 24070:1 24084:4 24088:1 24089:1 24095:1 24120:1 24127:1 24132:1 24167:1 24203:1 24211:1 24219:1 24223:1 24225:2 24228:3 24231:6 24254:1 24261:2 24265:1 24298:2 24317:1 24338:1 24351:1 24362:1 24367:1 24368:1 24375:2 24377:1 24381:1 24383:1 24384:1 24393:1 24395:6 24398:2 24406:2 24408:1 24421:1 24448:2 24450:1 24452:1 24453:1 24459:1 24461:1 24465:3 24466:1 24467:1 24469:5 24470:1 24477:2 24480:1 24481:2 24494:1 24513:1 24515:2 24536:1 24540:1 24541:1 24545:1 24550:1 24559:1 24567:2 24589:2 24599:2 24633:5 24634:2 24644:3 24655:2 24658:1 24673:1 24684:1 24693:3 24712:1 24743:1 24752:1 24774:1 24794:2 24795:1 24805:1 24806:4 24807:2 24809:1 24821:1 24829:1 24830:5 24834:1 24840:1 24843:1 24845:1 24856:1 24875:2 24891:1 24920:1 24943:2 24957:1 24971:2 24977:1 24986:1 24992:1 25019:6 25060:2 25067:1 25071:2 25076:2 25079:1 25089:1 25090:2 25091:1 25098:1 25102:1 25112:1 25116:1 25122:1 25125:1 25127:1 25132:1 25133:2 25134:1 25149:1 25157:1 25171:1 25183:1 25198:1 25199:1 25211:1 25215:2 25221:1 25222:2 25228:2 25239:1 25242:1 25245:1 25246:1 25250:6 25272:2 25292:1 25293:1 25297:1 25314:3 25317:1 25321:1 25335:1 25337:1 25338:1 25347:1 25348:1 25376:1 25387:3 25391:1 25396:3 25401:1 25403:1 25406:1 25407:1 25417:1 25418:2 25427:1 25429:1 25432:1 25440:1 25442:2 25447:1 25458:1 25464:1 25465:4 25472:2 25482:1 25505:2 25507:1 25521:1 25522:2 25538:1 25548:2 25556:1 25557:5 25569:1 25583:2 25600:1 25607:1 25617:2 25626:2 25629:1 25630:1 25638:1 25655:2 25694:1 25703:1 25712:1 25728:1 25737:2 25744:3 25753:1 25756:1 25759:1 25776:3 25781:1 25792:3 25795:1 25796:2 25803:1 25828:1 25830:1 25848:1 25862:1 25869:1 25872:1 25882:1 25890:1 25892:1 25901:8 25906:1 25913:1 25915:1 25918:1 25920:1 25927:1 25931:2 25946:3 25947:2 25980:1 25993:1 25998:1 26000:1 26011:1 26015:1 26027:2 26030:2 26041:1 26044:1 26055:1 26058:1 26063:1 26081:1 26085:1 26087:1 26091:1 26118:2 26120:2 26157:2 26168:1 26184:1 26185:2 26207:2 26208:1 26213:1 26215:1 26222:1 26223:1 26235:1 26240:1 26242:1 26249:1 26268:1 26279:1 26290:1 26293:1 26316:2 26317:1 26377:3 26386:1 26399:1 26404:1 26431:1 26434:3 26446:2 26450:1 26460:1 26466:1 26471:1 26473:1 26476:1 26480:1 26483:1 26516:1 26530:1 26531:3 26542:1 26551:4 26555:3 26561:3 26577:1 26609:1 26615:3 26636:1 26639:1 26646:4 26648:1 26652:1 26653:1 26670:1 26689:1 26693:2 26701:1 26729:1 26744:1 26763:1 26773:2 26779:1 26781:1 26793:1 26856:2 26857:1 26863:1 26871:2 26872:1 26874:1 26912:1 26917:1 26924:1 26936:1 26969:3 26974:1 26976:1 27008:1 27022:1 27025:1 27043:1 27048:1 27054:1 27060:1 27065:1 27068:1 27076:1 27138:1 27147:1 27157:2 27180:1 27191:1 27197:1 27203:3 27204:1 27225:1 27267:1 27273:1 27277:1 27300:2 27302:1 27316:1 27324:2 27337:2 27345:2 27348:1 27365:1 27376:1 27391:1 27403:1 27405:2 27423:1 27428:1 27429:2 27439:2 27474:1 27484:1 27488:3 27515:1 27516:1 27526:2 27550:1 27560:2 27570:2 27574:1 27620:1 27626:2 27633:1 27659:1 27660:1 27663:1 27664:1 27694:2 27703:2 27705:2 27710:1 27717:2 27719:1 27721:1 27722:1 27723:3 27724:2 27725:1 27731:1 27732:1 27737:5 27748:2 27749:1 27756:2 27768:1 27776:1 27781:5 27793:1 27797:1 27828:1 27842:1 27844:1 27851:8 27852:3 27858:1 27861:3 27891:2 27897:1 27901:1 27910:3 27912:3 27918:2 27949:1 27953:1 27955:1 27956:1 27993:1 28031:2 28035:1 28036:1 28040:1 28045:1 28071:1 28074:1 28092:1 28098:1 28101:3 28112:1 28119:2 28142:1 28146:1 28162:1 28192:1 28193:1 28197:1 28218:2 28234:3 28245:1 28270:1 28276:1 28289:2 28290:2 28302:1 28316:1 28336:1 28346:9 28356:2 28416:1 28419:1 28421:1 28437:1 28443:1 28450:3 28475:1 28495:1 28496:1 28521:1 28546:1 28560:1 28569:2 28571:6 28595:1 28609:5 28638:1 28705:2 28706:1 28712:1 28715:1 28749:1 28753:1 28764:1 28780:1 28795:1 28797:1 28806:2 28818:2 28822:1 28834:1 28836:1 28839:1 28845:4 28850:3 28851:2 28875:1 28876:1 28878:1 28891:1 28907:2 28912:1 28914:1 28933:1 28959:1 28965:1 28966:2 28967:3 28969:1 28973:2 28987:1 28994:2 28997:1 29025:4 29048:1 29060:1 29063:2 29076:2 29103:1 29107:1 29119:1 29123:1 29153:1 29157:3 29183:1 29191:6 29193:6 29214:2 29249:1 29250:1 29254:1 29268:1 29271:1 29276:2 29281:2 29284:2 29285:1 29339:1 29348:1 29356:1 29359:1 29360:1 29377:2 29385:1 29393:1 29396:1 29410:1 29422:1 29427:2 29438:1 29440:1 29454:2 29456:1 29477:1 29478:2 29500:1 29509:1 29517:1 29529:1 29546:1 29556:1 29557:2 29567:1 29576:2 29582:1 29594:1 29604:1 29638:1 29652:1 29654:1 29663:4 29692:1 29701:1 29713:1 29714:1 29728:1 29748:13 29749:2 29761:1 29787:1 29794:1 29799:1 29818:3 29839:3 29844:1 29849:1 29871:1 29877:1 29881:1 29886:2 29892:2 29906:1 29909:1 29913:1 29918:1 29935:1 29940:3 29955:1 29995:1 30001:1 30004:1 30036:1 30046:1 30073:1 30074:2 30075:1 30094:1 30099:1 30116:2 30118:1 30120:1 30126:1 30128:1 30140:2 30169:1 30171:1 30177:1 30209:1 30211:2 30218:1 30233:1 30243:1 30257:1 30283:1 30303:1 30319:1 30320:1 30356:1 30369:1 30384:1 30386:1 30412:1 30415:1 30431:2 30455:1 30459:2 30468:1 30480:1 30503:1 30505:1 30508:1 30521:1 30539:1 30541:3 30547:1 30556:1 30574:1 30579:2 30598:1 30602:1 30625:1 30676:1 30689:1 30690:1 30691:1 30692:2 30696:2 30704:2 30706:4 30707:1 30742:2 30752:1 30753:1 30754:5 30769:1 30773:2 30794:2 30798:3 30801:1 30807:1 30813:2 30839:2 30850:1 30854:6 30870:2 30872:2 30873:1 30878:1 30880:1 30882:1 30888:2 30926:1 30935:2 30944:2 30949:2 30959:1 30994:1 30997:1 31011:3 31033:1 31039:3 31068:1 31072:3 31088:2 31092:1 31098:1 31101:1 31103:1 31104:1 31107:1 31117:1 31118:1 31120:1 31126:1 31131:1 31134:1 31135:1 31139:1 31146:1 31149:2 31155:2 31166:1 31168:1 31170:2 31171:1 31176:1 31178:1 31179:1 31182:1 31186:1 31188:2 31190:2 31193:1 31194:2 31197:1 31206:2 31207:1 31209:2 31215:1 31243:1 31254:1 31260:1 31306:1 31319:2 31325:1 31330:3 31345:1 31356:1 31399:1 31420:2 31422:2 31429:1 31442:1 31453:1 31472:2 31474:1 31477:1 31501:1 31506:1 31532:1 31542:2 31559:1 31560:4 31562:2 31565:1 31575:1 31577:3 31604:2 31612:1 31622:1 31631:2 31638:1 31700:1 31705:1 31714:1 31742:1 31749:1 31756:2 31774:1 31823:1 31824:1 31826:1 31848:1 31868:1 31873:2 31897:1 31916:6 31920:1 31924:1 31931:1 31933:4 31938:1 31940:1 31941:1 31958:1 31964:1 31982:1 31985:1 31994:1 32001:1 32007:1 32015:1 32020:1 32023:1 32026:1 32041:8 32050:1 32051:1 32065:1 32069:1 32081:1 32085:1 32086:5 32099:2 32106:1 32155:1 32168:1 32173:1 32175:3 32200:4 32206:6 32219:1 32246:1 32248:9 32256:1 32258:1 32266:1 32274:2 32293:1 32300:1 32303:1 32307:1 32311:1 32312:1 32314:2 32319:1 32327:1 32339:1 32343:1 32346:1 32354:6 32355:1 32362:1 32373:1 32382:1 32385:1 32388:1 32400:1 32404:1 32414:1 32438:1 32459:2 32460:2 32461:1 32463:2 32465:1 32472:1 32480:1 32504:1 32526:1 32527:2 32532:1 32543:1 32548:3 32549:1 32551:1 32552:1 32560:4 32562:3 32574:1 32584:1 32588:1 32607:1 32621:1 32622:1 32625:1 32630:1 32633:1 32647:1 32648:1 32664:1 32668:1 32698:1 32726:1 32727:1 32735:1 32736:1 32741:1 32743:1 32758:1 32767:1 32774:1 32779:1 32802:1 32817:1 32825:1 32835:1 32841:1 32847:1 32853:1 32861:3 32863:1 32874:1 32876:1 32904:1 32915:1 32923:1 32934:1 32967:1 32969:2 32976:2 32995:1 33014:1 33019:4 33036:2 33039:1 33091:1 33094:1 33099:1 33105:1 33108:1 33133:1 33139:3 33140:1 33141:2 33146:1 33159:1 33184:2 33193:1 33210:1 33219:1 33220:1 33222:1 33229:1 33233:1 33240:1 33252:2 33268:2 33269:2 33275:1 33276:1 33282:1 33318:1 33326:4 33327:1 33332:1 33350:1 33364:4 33379:2 33400:1 33409:1 33419:2 33424:1 33436:1 33444:1 33445:1 33446:1 33448:1 33450:1 33453:3 33454:2 33461:3 33463:2 33465:1 33467:2 33469:1 33471:1 33474:3 33479:1 33499:1 33508:1 33516:6 33525:1 33585:1 33600:1
c5e64e13b4ff4f63674fcabcb373c7bd8841c33e
449d555969bfd7befe906877abab098c6e63a0e8
/2615/CH13/EX61.6/61.sce
0d279ecc714b79fe4b9b93fbdc108d92a83e8f3d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
223
sce
61.sce
clc //initialisation of variables d=80//mm p=400//kg n=477//kg h=1000//mm t=60//sec //CALCULATIONS V=(%pi*d*n)/(h*t)//m/sec N=p*V/75//hp //RESULTS printf('the peripheral velocity of the workpicece=% f m/sec',N)
aa93efaf009a4b539897a60726501016e58c7ddf
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH5/EX5.2/example_5_2.sce
5f0e3e32975d28154fb3d0e4398a9b9984d4273d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
334
sce
example_5_2.sce
clear; clc; disp("--------------Example 5.2---------------") S=1000; // baud rate N= 8000; // bit rate in bps r= N/S; // data elements/signal element L= 2^r ; // number of signal elements printf("The number of data elements per signal element is %d bits/baud and the number of signal elements is %d .",r,L); // display result
a12af6a0ed47c6863e0e7eea9c31a1bb5b5487d7
449d555969bfd7befe906877abab098c6e63a0e8
/52/CH2/EX2.53.c/Example2_53_c.sce
cf0d921ae08613141eb43717c37d3022f206aea1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
166
sce
Example2_53_c.sce
//Example 2.53 (c) //MAXIMA SCILAB TOOLBOX REQUIRED FOR THIS PROGRAM //Z transform of delta(n) clc; syms n z k; x=1; X=symsum(x*z^(-n),n,k,k); disp(X,'X(z)=');
becb1a34d2d01948540521c94790d85158ab9b98
449d555969bfd7befe906877abab098c6e63a0e8
/23/CH1/EX1.2/Example_1_2.sce
f00566b9d94ae609bfc8b42ab75959c2e86ead8c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
660
sce
Example_1_2.sce
clear; clc; //To find Approx Value function[A]=approx(V,n) A=round(V*10^n)/10^n;//V-Value n-To what place funcprot(0) endfunction //Example 1.2 //Caption : Program To Find Gauge Pressure and absolute Pressure //Given values d=0.01;//Diameter(m) m=6.14;//Mass(Kg) g=9.82;//Acceleration of gravity Pb=748;//Barometric Pressure(Torr) //Solution F=approx(m*g,3);//Force(N) A=(%pi/4)*d*d;//Area(m^2) Pg=approx(F/A,-2);//Gauge Pressure(N/m^2) Pa=approx(Pg+(Pb*0.013332*(10^4)),-2);//Absolute Pressure(Pa) disp('N',F,'Force '); disp('(X 10^4) N/m^2',Pg/10^4,'Gauge Pressure '); disp('KPa',Pa/1000,'Absolute Pressure'); //End
7f1211b5d6d336af36594f729bf73c857a991094
4c888070ef0e5ac657898d54a469c6587077d0f9
/tests/error/minus-in-name.tst
da49c5bebec674ed399789f1d92ffb6088e895e3
[]
no_license
Vezyr68/Tests4lemin
047babbbdd269de9841cfda1f0bd229e9761838f
426cf85358a1879c039f06d2de595451126d746e
refs/heads/master
2023-01-06T19:39:28.329496
2020-11-10T12:28:17
2020-11-10T12:28:17
310,910,849
0
0
null
null
null
null
UTF-8
Scilab
false
false
95
tst
minus-in-name.tst
123 #rooms room-0 0 0 ##end end 1 1 ##start start 2 2 #links start-end start-room-0 room-0-end
f886420ceb4148ebebd76d1caf33c2639675ea33
449d555969bfd7befe906877abab098c6e63a0e8
/1055/CH17/EX17.1/ch17_1.sce
40680dda4fb76f783c7fde61811f53ac64fe8854
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
558
sce
ch17_1.sce
// To determine the acceleration . Also determine the change in torque angle and r.p.mat the end of 15 cycles clear clc; H=9; G=20;// machine Rating(MVA) KE=H*G; mprintf("(a)K.E stored in the rotor =%.0f MJ\n",KE); Pi=25000*.735; PG=15000; Pa=(Pi-PG)/(1000); f=50; M=G*H/(%pi*f); a=Pa/M; mprintf("(b) The accelerating power =%.3f MW\n",Pa); mprintf("Acceleration =%.3f rad/sec_2\n",a); t=15/50; del=sqrt(5.89)*t/2; Del=del^2; k=2.425*sqrt(Del)*60/4*%pi; speed=1504.2; mprintf("(c)Rotor speed at the end of 15 cycles =%.1f r.p.m",speed);
2e36910dd345bdeb2d68fe149dcb296e4b1922b6
449d555969bfd7befe906877abab098c6e63a0e8
/1076/CH11/EX11.1/11_1.sce
e01eac16ab2f93ab101eeddeb6b2ee9831773689
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
875
sce
11_1.sce
clear; clc; n=5;//no of elements Z=0; z=[ 4 1 1 1; 4 2 1 1; 4 3 1 1; 1 2 1 4; 1 3 1 4]; // z = [ from node | to node| z between nodes | type modification] type modification should be in ascending order for(i=1:n) mcase=z(i,4) znew=z(i,3) n1=z(i,1) n2=z(i,2) dim=max(size(Z)) select mcase case 1 then if Z(1,1)==0 then dim=dim-1 end Z(dim+1, dim+1)=znew case 2 then Z(1:dim,dim+1)=Z(1:dim, n1) Z(dim+1,1:dim)=Z(n1,1:dim) Z(dim+1, dim+1)=znew+Z(n1,n1) case 3 then Z=Z-((Z(1:dim, n2)*Z(n2,1:dim))/(znew+Z(n2,n2))) case 4 then Z=Z-(((Z(1:dim, n1)-Z(1:dim, n2))*(Z(n1,1:dim)-Z(n2,1:dim)))/(znew+Z(n2,n2)+Z(n1,n1)-(2*+Z(n1,n2)))) else break end end disp(Z)
090ec5fe08fbea269cd6a7aa7719760ec7373aa2
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH21/EX21.8/example21_8.sce
d23f351bf114b600e0b251911e0158b3b7b18baa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
309
sce
example21_8.sce
c1=40*10^(-6); v1=450; c2=20*10^(-6); v2=500; v=400; disp("Part a"); w1=0.5*c1*v^2; disp("energy stored (in J) in 40 μF capacitor is"); disp(w1); w2=0.5*c2*v^2; disp("energy stored (in J) in 20 μF capacitor is"); disp(w2); disp("Part b"); w=w1+w2; disp("total energy stored (in J) is"); disp(w);
51faac238719dc0104358e7da88753395284a736
3c47dba28e5d43bda9b77dca3b741855c25d4802
/microdaq/macros/mdaqLog.sci
7cde906deef2f60760d9134270b65136228dc128
[ "BSD-3-Clause" ]
permissive
microdaq/Scilab
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
refs/heads/master
2021-09-29T11:55:21.963637
2019-10-18T09:47:29
2019-10-18T09:47:29
35,049,912
6
3
BSD-3-Clause
2019-10-18T09:47:30
2015-05-04T17:48:48
Scilab
UTF-8
Scilab
false
false
1,902
sci
mdaqLog.sci
function mdaqLog(filepath) mdaq_ip = mdaq_get_ip(); if mdaq_system_ping() then try [filename, mlog] = getURL(mdaq_ip + "/log/mlink-server.log", TMPDIR + filesep()); catch end else mprintf("ERROR: Unable to connect to MicroDAQ device!\n"); return; end sci = ver(); [version, opts] = getversion(); lib_ver = mdaq_lib_version(); try fw_ver = mdaq_fw_version(); catch fw_ver = [0 0 0 0]; mprintf("WARNING: Unable to read MicroDAQ firmware version!\n"); end if argn(2) == 0 then // print mprintf('Log generated on: %s\n',date()); mprintf('Toolbox ver: %s\n',mdaq_version()); mprintf('MLink library ver: %d.%d.%d.%d\n', lib_ver(1), lib_ver(2), lib_ver(3), lib_ver(4)); mprintf('MicroDAQ firmware ver: %d.%d.%d.%d\n\n', fw_ver(1), fw_ver(2), fw_ver(3), fw_ver(4)); mprintf('---- MLink log:\n%s\n\n', mlog); mprintf('---- Scilab environment info:\n'); mprintf('Scilab architecture: %s\n', opts(2)); for i=1:6 mprintf('%s %s\n', sci(i, 1), sci(i, 2)); end else // save to file fd = mopen(filepath,'wt'); mfprintf(fd,'Log generated on: %s\n',date()); mfprintf(fd,'Toolbox ver: %s\n',mdaq_version()); mfprintf(fd,'MLink library ver: %d.%d.%d.%d\n', lib_ver(1), lib_ver(2), lib_ver(3), lib_ver(4)); mfprintf(fd,'MicroDAQ firmware ver: %d.%d.%d.%d\n\n', fw_ver(1), fw_ver(2), fw_ver(3), fw_ver(4)); mfprintf(fd,'---- MLink log:\n%s\n\n', mlog); mfprintf(fd,'---- Scilab environment info:\n'); mfprintf(fd,'Scilab architecture: %s\n', opts(2)); for i=1:6 mfprintf(fd,'%s %s\n', sci(i, 1), sci(i, 2)); end mclose(fd); end endfunction
debedcbe956692f63e6630938fa6f7d8391e02de
449d555969bfd7befe906877abab098c6e63a0e8
/767/CH1/EX1.4.1/Ch1Exa1_4_1.sci
15b3a12f73155b5cc2d4e067003d748d83dbb623
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
354
sci
Ch1Exa1_4_1.sci
// Scilab code Exa1.4.1: To calculate the energy of electron at rest : Page 33 (2011) m = 9.1e-031; // Mass of the electron, Kg C = 3e+08; // Velocity of the light,m/s E = m*C^2/1.6e-013; // Energy of the electron at rest, MeV printf("\nEnergy of the electron at rest : %5.3f MeV", E) // Result // Energy of the electron at rest : 0.512 MeV
e984ffe0ba8991e86c1b0e16939d368b0fa466b7
91bba043768342a4e23ee3a4ff1aa52fe67f7826
/cs/142/3/tests/test25.tst
5901e0d531b0eb476d5e92771c0c9cab243afa9e
[]
no_license
MaxNanasy/old-homework
6beecc3881c953c93b847f1d0d93a64ec991d6de
48b7997a49a8f111344f30787c178e1661db04bd
refs/heads/master
2016-09-08T04:37:44.932977
2010-03-02T00:48:59
2010-03-02T00:48:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
150
tst
test25.tst
type newType = short; const newType2 = 10; var newType : newType; newType2 newType (int a, short b, newType2 c) { PRINT SYMBOL TABLE }
de9741331eb2af19925c8d31937a36a5572ce3e5
9ad712cefe61d85b01d2448a5b74c34296ee7e5f
/second_order_time.sce
2ab5077918b4823f6929a5cb13b411870f799056
[]
no_license
CoE-Warintorn/Control
a50f7cf26d0e80e3b90ea9dc3cac097b67f94d49
9572040e0e41d8d355f51032cd2ac98b1d04db64
refs/heads/master
2020-03-16T06:56:11.148006
2018-05-08T07:02:35
2018-05-08T07:02:35
132,565,771
0
0
null
null
null
null
UTF-8
Scilab
false
false
501
sce
second_order_time.sce
s = poly(0,'s'); t = 0:0.01:5; Gs1 = syslin('c', 9/(s^2+9*s+9)); Gs2 = syslin('c', 9/(s^2+2*s+9)); Gs3 = syslin('c', 9/(s^2+9)); Gs4 = syslin('c', 9/(s^2+6*s+9)); den1 = denom(Gs1); den2 = denom(Gs2); den3 = denom(Gs3); den4 = denom(Gs4); Poles1 = roots(den1) Poles2 = roots(den2) Poles3 = roots(den3) Poles4 = roots(den4) plot(t,csim('step',t,Gs1),t,csim('step',t,Gs2),t,csim('step',t,Gs3),t,csim('step',t,Gs4)) xtitle('Output Respose', 'time (s)', 'output(degree)') xgrid()
cbef3b413bba856679e224195890b598a16bd5de
449d555969bfd7befe906877abab098c6e63a0e8
/2102/CH2/EX2.11/exa_2_11.sce
9aad4e45ad3e7ec22cc39151c0bba8ccc42237d0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
337
sce
exa_2_11.sce
// Exa 2.11 clc; clear; close; // Given data miu_n= 1700;//in cm^2/Vs miu_p= 560;//in cm^2/Vs ni= 2.5*10^10;// in /cm^3 q=1.6*10^-19;// in C sigma= q*ni*(miu_n+miu_p);//in (Ωcm)^-1 rho= 1/sigma;// in Ωcm disp(sigma,"Conductivity of intrinsic sample in (Ωcm)^-1 is : ") disp(rho,"Resistivity of intrinsic sample in Ωcm")
b9a4eb953f93be7081490fb6506dac70df04bba8
f7378eec5e8815bdba8a29ea1beec900bbac11b1
/lab1/questao31.sce
3c900a2786ae8168c31247592aa842c050802196
[ "MIT" ]
permissive
andersoncordeiro/ComputerVision
dba8ed6a1a6c890b2aa7b8d4159b07cf311e8c70
163bd0e9cbcb7f0046e5f46f78d3967785b0e8b4
refs/heads/main
2023-03-05T18:35:06.740972
2021-02-16T14:16:09
2021-02-16T14:16:09
339,419,765
0
0
null
null
null
null
UTF-8
Scilab
false
false
746
sce
questao31.sce
//Funcao que recebe caminho da imagem e o I (Questao 3.1 - Brightness/Clipping) function [ImgAumentaBrilho, ImgDiminuiBrilho, map1, map2]=brilho(imagem, I); info = imfinfo(imagem); [ImgAumentaBrilho, map1] = imread(imagem); [ImgDiminuiBrilho, map2] = imread(imagem); for i=1:info.Height for j=1:info.Width ImgAumentaBrilho(i,j)=ImgAumentaBrilho(i,j)+I; ImgDiminuiBrilho(i,j)=ImgDiminuiBrilho(i,j)-I; end end endfunction // Digite o caminho com as aspas Caminho = input('Digite o caminho da imagem: ') i = input('Digite i: ') [ImgAumentaBrilho, ImgDiminuiBrilho, map1, map2] = brilho(Caminho,i); xset("window",0); imshow(ImgAumentaBrilho,map1) xset("window",1); imshow(ImgDiminuiBrilho,map2)
47b4b0b630c30060e7f8f333fec44fea84a977ae
449d555969bfd7befe906877abab098c6e63a0e8
/833/CH7/EX7.9/Ex7_9.txt
b41e432ba5fc929e8d83cf412c7b5e171528156d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
573
txt
Ex7_9.txt
//Caption:Find the speed at which it will run as a motor //Exa:7.9 clc; clear; close; P_g=110000//Power of generator(in watts) n=400//Speed of generator(in r.p.m) V=220//Voltage of busbars(in volts) P_m=10900//Power of motor(in watt) r_a=0.025//Armature resistance(in ohms) r_f=55//Field resistance(in ohms) v_b=1//Voltage drop at each brush(in volt) i_l=P_g/V i_f=V/r_f I_a=i_l+i_f V_a=I_a*r_a E=V+V_a+(2*v_b) I_1=P_m/V i_a=I_1-i_f v_a=i_a*r_a E_b=V-(i_a*r_a)-(2*v_b) N_m=(n*E_b)/E disp(N_m,'Speed at which generator will run as motor is(in r.p.m)=')
415bfa464ab7bdb85d0ef67b91b79ff18041249b
449d555969bfd7befe906877abab098c6e63a0e8
/1475/CH6/EX6.40/Example_6_40.sce
13a7215dd0e72558d80a67d346fb6d12a3045661
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
985
sce
Example_6_40.sce
// Example 6.40 Compute Seasonal Indices from the data clc; clear; Output=[65 58 56 61 68 63 63 67 70 59 56 52 60 55 51 58]; LR1=0; LR2=Output(2)/Output(1); LR3=Output(3)/Output(2) LR4=Output(4)/Output(3); LR5=Output(5)/Output(4); LR6=Output(6)/Output(5); LR7=Output(7)/Output(6); LR8=Output(8)/Output(7); LR9=Output(9)/Output(8); LR10=Output(10)/Output(9) LR11=Output(11)/Output(10); LR12=Output(12)/Output(11); LR13=Output(13)/Output(12); LR14=Output(14)/Output(13); LR15=Output(15)/Output(14); LR16=Output(16)/Output(15); LRT=[LR1 LR2 LR3 LR4 LR5 LR6 LR7 LR8 LR9 LR10 LR11 LR12 LR13 LR14 LR15 LR16]*100; disp(,LRT,"Link relatives = ",Output,"Output ="); P1=[0 LRT(5) LRT(9) LRT(13)]; P2=[LRT(2) LRT(6) LRT(10) LRT(14)]; P3=[LRT(3)LRT(7) LRT(11) LRT(15)]; P4=[LRT(4) LRT(8) LRT(12) LRT(16)]; RT1=sum(P1); RT2=sum(P2); RT3=sum(P3); RT4=sum(P4); RT=[RT1 RT2 RT3 RT4]; AM=RT./[3 4 4 4]; disp(AM,"Seasonal Index Movement =",RT,"Total = ");
f0b92be44c559b75fa390bb9fd47642dd9e4a771
449d555969bfd7befe906877abab098c6e63a0e8
/416/CH10/EX10.16/exp10_16.sce
50bda3bb42857f19e2d197c5271c81526afce6b8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
677
sce
exp10_16.sce
clc clear disp("example 10.16") //given ia=32;ib=32;ic=1.68;f=10^5 wt=18;rt=24-wt p=30 function [in]=inpu(a,b,c,f,t,p) in=(a+b*p+c*p^2)*f*t endfunction hi1=inpu(ia,ib,ic,f,wt,p);hi2=inpu(ia,ib,ic,f,rt,p/2) disp("(a)") printf("for full load condition for %d hours is %ekj \n for half load condition for%d s %ekj \n total load %ekj",wt,hi1,rt,hi2,hi1+hi2) disp("(b)") te=p*wt+(p/2)*rt ul=te/24 hin=inpu(ia,ib,ic,f,24,ul) sav=hi1+hi2-hin savp=sav/(te*1000) printf("\n total energy produced\t%dMW \n unifor load\t%dMW \n heat input under uniform load condition %ekj \n saving in heat energy %ekj \n saving in heat energy per kWh %dkj/kWh",te,ul,hin,sav,savp)
64ce07b079eb608c5910ada19999edfd4e1629eb
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/pow2db/pow2db6.sce
e1de07d77683a5e2a80dffc5572367d4c3b17052
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
212
sce
pow2db6.sce
//Checking the output of the function when a matrix of negative values is given as an input y=[0 0; 0 0;0 0]; y1=pow2db(y); disp(y1); //Output // // - Inf - Inf // - Inf - Inf // - Inf - Inf
7926755a8f6ddc7e5bd00c2956f291a33d981b7b
449d555969bfd7befe906877abab098c6e63a0e8
/689/CH3/EX3.7/7.sce
0f48b741cb4dd42586a413b5d45e5fdf4f6dfc2e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
275
sce
7.sce
clc; funcprot(0); //Example 3.7 Similar Flows // Initialisation of variables c = 3/12; //chord length in feet V = 100*1.467; // velocity in ft/sec R = 0.002378; mu = 0.000000373; // Calculations RN = rho*V*c/mu; //Results disp(RN , "Reynolds no:");
65f6f31af3da3a30718350fb8940f8da183d3e08
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH5/EX5.8/example5_8.sce
5c3db5e9f45ca4d4dd602804dcf06c222350219c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
430
sce
example5_8.sce
r=5*10^3; v=6; disp("Part a"); disp("the minimum voltage is 0 V and the maximum output voltage is 6 V"); disp("Part b"); v1=0.25*v; v2=0.75*v; disp("the two possible output voltages (in V) are"); disp(v1); disp(v2); disp("Part c"); i=v/r; disp("the current (in mA) throught the potentiometer in this position is"); disp(i*10^3); disp("Part d"); p=r*i^2; disp("he potentiometer power rating (in mW) is"); disp(p*10^3);
94a7f0c7025d224fd52d2ae30a7bdc415e433098
449d555969bfd7befe906877abab098c6e63a0e8
/147/CH1/EX1.17/Example1_17.sce
67db58c14047bf0dd8bc8c95a1cd8614e08c0085
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
189
sce
Example1_17.sce
close(); clear; clc; I1 = -1; //A I2 = 3; //A I3 = 5; //A I4 = -4; //A I5 = -2; //A I6 = -6; //A //current assumed out of the node I = (I1+I2+I3+I4+I5+I6); mprintf("I = %d A",I);
c12aba6995ccebc2fb5aa6e976ab199e8b1941c9
08ee8059476493a308f8e13adcbace48d7bcfc92
/Scilab_packetTracer_codes/diff_manchester.sce
bd5f2901d7595bd1384739cfb3f9ccf78147bc49
[]
no_license
Rushi-Bhatt/Self-Study
7ed44b7821154b7906c7d532255ea648ec9d6299
90cc75440328ba21769ffac878f46feadeb2f06f
refs/heads/master
2021-01-11T15:29:31.739065
2017-02-08T22:17:57
2017-02-08T22:17:57
80,360,471
0
0
null
null
null
null
UTF-8
Scilab
false
false
466
sce
diff_manchester.sce
x=[1,1,0,0,1,1,1] l=length(x); a=gca(); q=1; a.data_bounds=[0,-2;10,+2]; for i=1:l if(x(i)==0) q=q; plot2d3(i-1,-1:1) plot((i-1:0.00001:i-0.5),q) plot2d3(i-0.5,-1:1) plot(i-0.5:0.00001:i,-q) end if(x(i)==1) q=-q; plot(i-1:0.00001:i-0.5,q) plot2d3(i-0.5,-1:1) plot(i-0.5:0.00001:i,-q) end end xgrid(5)
9a938540309cfae4b7a0a2c56f69ee4baf0343ef
449d555969bfd7befe906877abab098c6e63a0e8
/1040/CH3/EX3.1/Chapter3_Ex1.sce
fa16b2c9b713c2f2a60f4f9f46781a17966fa1ef
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,182
sce
Chapter3_Ex1.sce
//Harriot P.,2003,Chemical Reactor Design (I-Edition) Marcel Dekker,Inc.,USA,pp 436. //Chapter-1 Ex3.1 Pg No.84 //Title:Time to reach desired conversion for bimolecular batch reaction //======================================================================================== clear clc //INPUT C_A0=1;//Assuming 1mol basis for the limiting reactant C_B0_old=1.02;//2% Excess of reactant B is supplied R_old=C_B0_old/C_A0;//Refer equation 3.7 Pg No. X_A=0.995;// Conversion interms of limiting reactant t_old=6.5;//Time required for the given conversion (hr) C_B0_new=1.05;//5% Excess of reactant B R_new=C_B0_new/C_A0;//Refer equation 3.7 Pg No.83 //CALCULATION k=(log((R_old-X_A)/(R_old*(1-X_A)))/((R_old-1)*t_old *C_A0)); t_new=log((R_new-X_A)/(R_new*(1-X_A)))/((R_new-1)*k*C_A0); //OUTPUT mprintf('\nTime required to achieve required conversion for 5%% excess of B= %f hr',t_new); //FILE OUTPUT fid=mopen('.\Chapter3-Ex1-Output.txt','w'); mfprintf(fid,'\nTime required to achieve required conversion for 5%% excess of B= %f hr',t_new); mclose(fid); //=================================================END OF PROGRAM==================================
b4f55ed40816e4d8c604baf666a629ed9d39610c
449d555969bfd7befe906877abab098c6e63a0e8
/2129/CH2/EX2.21.4/ex2_21_4.sce
f2a2304e64319de3f0b953aca18e89d9ba667e61
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
410
sce
ex2_21_4.sce
// Exa 2.21.4 clc; clear; close; // Given data K = 1.38 * 10^-23;// in J/K T = 27;// in degree T = T + 273;// in K e = 1.6 * 10^-19;// in C Mu_e = 0.17;// in m^2/v-s Mu_e1 = 0.025;// in m^2/v-s D_n = ((K * T)/e) * Mu_e;// in m^2/s disp(D_n,"The diffusion coefficient of electrons in m^2/s is"); D_p = ((K * T)/e) * Mu_e1;// in m^2/s disp(D_p,"The diffusion coefficient of holes in m^2/s is ");
f1182b743e3a9f27c81134440c941459628e3c44
b4bbf9b2a475b5cf299b30bf5e0c621e32f6c832
/test/assign1/fullboard.tst
a4edeb43bb2f1d4c3b7a51821b0ada210c95e0af
[]
no_license
apetresc/castro
1ec1ac1307542487aa1be14c335170f7a1347bf2
843165af7c946188a2dd772384cd2d579723c99d
refs/heads/master
2022-02-20T14:28:41.962893
2019-10-07T08:41:59
2019-10-07T08:41:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
439
tst
fullboard.tst
boardsize 4 play w g4 play b g3 play w g2 play b g1 play w f1 play b e1 play w d1 play b c1 play w b1 play b a1 play w a2 play b a3 play w a4 play b b5 play w c6 play b d7 play w e6 play b f5 play w f4 play b f3 play w f2 play b e2 play w d2 play b c2 play w b2 play b b3 play w b4 play b c5 play w d6 play b e5 play w e4 play b e3 play w d3 play b c3 play w c4 play b d5 1 havannah_winner #? [none] play w d4 2 havannah_winner #? [white]
bda7909d8f6b3daf37af5d6a30a6d5283cf17b25
c908c5ec283c57c29da044966fce0fee1f659873
/codes/Algoritmo do Método de Newton(Interpolação).sce
d5d1a740a0a83efd72df763dced65e796dc6717c
[]
no_license
marialago/numerical-computation
3ca0e95c637c1d4d3ea79789d1bda0b84ca29ca5
c88c0ddc6f7501ed115556f72f5f5db3a8610f6b
refs/heads/master
2022-10-30T01:42:21.032196
2020-06-14T18:33:45
2020-06-14T18:33:45
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
456
sce
Algoritmo do Método de Newton(Interpolação).sce
function y=f(x) y=sin(x) endfunction function tdd=ctdd(x,y) n=length(x) tdd(:,1)=y for i=1:n-1 for j=1:n-i tdd(j,i+1)=(tdd(j+1,i)-tdd(j,i))/(x(j+i)-x(j)) end end endfunction function s=newton(x,p) n=length(x) y=f(x) tdd=ctdd(x,y) s=y(1) for i=2:n m=1 for j=1:i-1 m=m*(p-x(j)) end s=s+tdd(1,i)*m end endfunction
0ffc15b9bddd574738208ddff78c3bc448efd07e
9e8ee5cada387d28d7b64dd58a1d43add9abf855
/Test/CanNotProve/CanNotProve.tst
6909f99b296f86e51952c69178523843c85c84a6
[ "MIT" ]
permissive
nvitucci/pyke
2804504666cdf0bd3219daa6a1aca8a58d4bfdb8
dc4fc6056a3d2bb701cda645359dcb92332d7f51
refs/heads/master
2023-04-01T17:21:59.906819
2021-04-16T23:20:00
2021-04-16T23:20:00
267,141,385
7
3
MIT
2021-04-20T21:26:38
2020-05-26T20:09:55
Python
UTF-8
Scilab
false
false
85
tst
CanNotProve.tst
# CanNotProve.tst >>> from Test.CanNotProve import test >>> test.dotests()
f8c2eecf2bf93b96ac2dd0ef3eb95a7e0228260a
30ad7dd5146dfff03b7639186330ec527bfc0524
/Control Systems Programs/Lab2DeriveProgram.sce
334495b8704c770d0866919d88e1fd063ac6c679
[]
no_license
boberae/Other-Small-Projects
fcc79d8fd69c6d39de68a8b83360b32b28216d73
63d668d2f2c022f653cf44f55992dd05420437e3
refs/heads/master
2020-06-11T10:07:44.474211
2016-12-06T06:42:33
2016-12-06T06:42:33
75,697,420
0
0
null
null
null
null
UTF-8
Scilab
false
false
880
sce
Lab2DeriveProgram.sce
//Define X as array of 101 equally spaced data pts from 0 to 2*pi x_start = 0; x_end = 2*%pi; points = 101; X = linspace(x_start, x_end, points); //Variable "F" represents a function vs. X //In this case, F is set as array of sin(X)for every point of X for i = 1:101 F(i) = sin(X(i)); end; //Variable Fdot represents first derivative of function F, vs. X //Use Forward Difference Method to approximate first point of derivative Fdot(1) = (F(2)-F(1))/(X(2)-X(1)); //Use Central Difference Method to approximate points 2-100 of derivative for j = 2:points-1 Fdot(j) = ((F(j+1)-F(j-1))/(X(j+1)-X(j-1))); end; //Use Backward Difference Method to approximate final point of derivative Fdot(points) = ((F(points)-F(points-1))/(X(points)-X(points-1))); //Plot both the original function, and the derivative of the original function, against X plot2d(X,F); plot2d(X,Fdot);
2f21e0632489b7c8c419dbe9e8a41bbdb0279dbd
449d555969bfd7befe906877abab098c6e63a0e8
/45/CH10/EX10.10/example_10_10.sce
1dde98ea02488ced91e119e6bffe09a1d078b367
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
90
sce
example_10_10.sce
//example 10.10 clc; clear; printf('The correct expresion is ""8"" = Qd Qc'' Qb Qa''');
afb711bb4824310104ae5ad0a9017ff14616ff0c
449d555969bfd7befe906877abab098c6e63a0e8
/1364/CH14/EX14.2.1/14_2_1.sce
4c65f27fe8687ec131409df0c4eef644ffa14f82
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
312
sce
14_2_1.sce
clc //initialisation of variables d= 0.96 H1= 300 //ft g= 32.2 //ft/sec^2 u= 60 //ft/sec dw= 118 //ft/sec w= 62.3 //lbf/ft^3 n= 0.95 //CALCULATIONS W= u*dw/g V= d*sqrt(2*g*H1) P= w*V*220*(%pi/144)/550 nh= W/H1 nm= 0.5/nh no= nh*nm*100 //RESULTS printf (' Hydraulic efficiency= %.f percent',no)
3f9be8bcf46bf63e97de4a3f4d653967ae44e197
449d555969bfd7befe906877abab098c6e63a0e8
/2777/CH2/EX2.2/Ex2_2.sce
d8992bba4862fa2135cbbf3c856da6945821f0c2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,862
sce
Ex2_2.sce
// ELECTRICAL MACHINES // R.K.Srivastava // First Impression 2011 // CENGAGE LEARNING INDIA PVT. LTD // CHAPTER : 2 : FORCES IN AN ELECTROMAGNETIC SYSTEMS // EXAMPLE : 2.2 clear ; clc ; close ; // Clear the work space and console // GIVEN DATA N = 100; // Number of turns La = 0.3; // Mean arc length of material "a" is a Nickel-iron alloy in Metre Lb = 0.2; // Mean arc length of material "b" is a Steel in Metre Lc = 0.1; // Mean arc length of material "c" is a Cast Steel in Metre a = 0.001; // Area of the all Materials "a,b,c" in Metre-Square phi = 6*10^-4; // Magnetic Flux in Weber mue_0 = 4*%pi*10^ -7; // Permeability of the air in Henry/Meter // CALCULATIONS B = phi/a; // Flux Density in Telsa (Here Flux Density same for all the Materials "a,b,c" because Area of Cross Section is Same) Ha = 10; // Fileld Intensity in Amphere-Turn/Meter Correspounding to Flux density (B) of material "a" obtained from the Standard B-H curve Hb = 77; // Fileld Intensity in Amphere-Turn/Meter Correspounding to Flux density (B) of material "b" obtained from the Standard B-H curve Hc = 270; // Fileld Intensity in Amphere-Turn/Meter Correspounding to Flux density (B) of material "c" obtained from the Standard B-H curve F = (Ha*La)+(Hb*Lb)+(Hc*Lc); // The Total MMF Required in Amphere-Turns I = F/N; // Current flowing through the Coil in Amphere mue_r_a = B/(Ha*mue_0); // Relatative permeability of the Material "a" mue_r_b = B/(Hb*mue_0); // Relatative permeability of the Material "a" mue_r_c = B/(Hc*mue_0); // Relatative permeability of the Material "a" Ra = (Ha*La)/phi; // Relucatnce of the Material "a" in MKS unit Rb = (Hb*Lb)/phi; // Relucatnce of the Material "b" in MKS unit Rc = (Hc*Lc)/phi; // Relucatnce of the Material "c" in MKS unit L = (N*phi)/I; // Inductance of the Coil in Henry // DISPLAY RESULTS disp("EXAMPLE : 2.2 : SOLUTION :-") ; printf("\n (a) The Total MMF , F = %.1f At \n ",F); printf("\n (b) Current flowing through the Coil , I = %.3f A \n",I); printf("\n (c.1) Relatative permeability of the Material a, mue_r_a = %.f \n ",mue_r_a); printf("\n (c.2) Relatative permeability of the Material b, mue_r_b = %.f \n ",mue_r_b); printf("\n (c.3) Relatative permeability of the Material c, mue_r_c = %.f \n ",mue_r_c); printf("\n (c.4) Relucatnce of the Material a, Ra= %.f MKS unit \n",Ra); printf("\n (c.5) Relucatnce of the Material b, Rb= %.1f MKS unit \n",Rb); printf("\n (c.6) Relucatnce of the Material c, Rc= %.f MKS unit \n",Rc); printf("\n (d) Inductance of the Coil , L = %.4f H \n",L);
1874d74eba25120ac0b549f33eb4f8a933892e77
2a39d29b2cb27e98632f6810ed3c2a22a56fa8eb
/Materias/LabCalcNum/Rafael/simpson38simplesTab.sci
071d33c198a73f2b61d87a719285d19709f484e0
[]
no_license
rafael747/my-stuff
74358384bc1a5b381d1951dfaef87efdf4cb53c2
8614aefdc3ca9afdc1534557f73719af8494f7fa
refs/heads/master
2021-01-17T12:47:48.206860
2020-06-04T15:10:20
2020-06-04T15:10:20
57,989,835
2
0
null
null
null
null
UTF-8
Scilab
false
false
343
sci
simpson38simplesTab.sci
function [I] = simpson38simplesTab(x,fx) nx=size(x,2) nfx=size(fx,2) if nx ~= nfx then error("vetores de tamanhos diferentes") end if nx ~= 4 then error("O número de pontos deve ser igual a 4") end h = x(2)-x(1) soma=fx(1)+ 3*fx(2)+3*fx(3) + fx(4) I=(3*h/8)*soma endfunction
e4d1638a229c3d0f4698f8eccebe541b06f7284f
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH20/EX20.16/20_16.sce
baeb8bf998b4cd755b61cd835df1768d1c9fe722
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
365
sce
20_16.sce
//Chapter 20, Problem 16 clc P=12e3 //total power pf=0.6 //power factor ang=acos(pf) ta=tan(ang) P12=P*ta/3^(1/2) //solving two equation by matrix method A=[1 1;1 -1] B=[12000;P12] x=linsolve(A,-B) printf("wattmeter 1 read = %.2f kW\n\n",x(1)/1000) printf("wattmeter 2 read = %.2f kW\n\n",x(2)/1000)
14bb0dc29b3bd9dad2731115419948ca6423f3f9
57af31f8edca423b6c1c37a40e7a3b18c9689d9e
/Test/animation.sce
d2b9111bc6a3aaf9972566eebe1060fa3c09429b
[]
no_license
Nandish82/Scilab
9531c3430f141fce5193fbb206aaf48c4a7bfa43
26bd720a86c88601f0c4b913f4e973027ab8bbf9
refs/heads/master
2021-01-23T15:42:37.495141
2015-04-14T21:30:04
2015-04-14T21:30:04
31,420,748
0
0
null
null
null
null
UTF-8
Scilab
false
false
822
sce
animation.sce
// animation_point.sce clear; xdel(winsid()); // Create data t = 0:0.005:1; // Time data x = sin(2*%pi*t); // Position data //Model Parameters m=0.5 A=[0 1;0 0] B=[0;1/m] C=[1 0] D=0 Ts=0.01 s1=syslin('c',A,B,C,D) //creates continous LTI system sld=dscr(s1,Ts) //discretize the system //Assign them to matrices. Ad=sld.A Bd=sld.B Cd=sld.C Dd=sld.D sim_time=5 time_vec=0:Ts:sim_time xdata=length // Draw initial figure figure(1); plot(x(1),0,'o'); h_compound = gce(); h_compound.children.mark_size = 20; h_compound.children.mark_background = 2; h_axes = gca(); h_axes.data_bounds = [-1.5,-1.5;1.5,1.5]; // Animation Loop i = 1; while i<=length(x) drawlater(); h_compound.children.data = [t(i),x(i)]; //h_compound.children.data = [t(1:i),x(1:i)]; drawnow(); i = i+1; end